choose-your-day 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4078) hide show
  1. package/day1/backend-project/.env +0 -0
  2. package/day1/backend-project/node_modules/.bin/bcrypt +16 -0
  3. package/day1/backend-project/node_modules/.bin/bcrypt.cmd +17 -0
  4. package/day1/backend-project/node_modules/.bin/bcrypt.ps1 +28 -0
  5. package/day1/backend-project/node_modules/.bin/nodemon +16 -0
  6. package/day1/backend-project/node_modules/.bin/nodemon.cmd +17 -0
  7. package/day1/backend-project/node_modules/.bin/nodemon.ps1 +28 -0
  8. package/day1/backend-project/node_modules/.bin/nodetouch +16 -0
  9. package/day1/backend-project/node_modules/.bin/nodetouch.cmd +17 -0
  10. package/day1/backend-project/node_modules/.bin/nodetouch.ps1 +28 -0
  11. package/day1/backend-project/node_modules/.bin/semver +16 -0
  12. package/day1/backend-project/node_modules/.bin/semver.cmd +17 -0
  13. package/day1/backend-project/node_modules/.bin/semver.ps1 +28 -0
  14. package/day1/backend-project/node_modules/.package-lock.json +1430 -0
  15. package/day1/backend-project/node_modules/@types/node/LICENSE +21 -0
  16. package/day1/backend-project/node_modules/@types/node/README.md +15 -0
  17. package/day1/backend-project/node_modules/@types/node/assert/strict.d.ts +59 -0
  18. package/day1/backend-project/node_modules/@types/node/assert.d.ts +950 -0
  19. package/day1/backend-project/node_modules/@types/node/async_hooks.d.ts +711 -0
  20. package/day1/backend-project/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  21. package/day1/backend-project/node_modules/@types/node/buffer.d.ts +1765 -0
  22. package/day1/backend-project/node_modules/@types/node/child_process.d.ts +1366 -0
  23. package/day1/backend-project/node_modules/@types/node/cluster.d.ts +432 -0
  24. package/day1/backend-project/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  25. package/day1/backend-project/node_modules/@types/node/console.d.ts +93 -0
  26. package/day1/backend-project/node_modules/@types/node/constants.d.ts +14 -0
  27. package/day1/backend-project/node_modules/@types/node/crypto.d.ts +4058 -0
  28. package/day1/backend-project/node_modules/@types/node/dgram.d.ts +537 -0
  29. package/day1/backend-project/node_modules/@types/node/diagnostics_channel.d.ts +552 -0
  30. package/day1/backend-project/node_modules/@types/node/dns/promises.d.ts +497 -0
  31. package/day1/backend-project/node_modules/@types/node/dns.d.ts +876 -0
  32. package/day1/backend-project/node_modules/@types/node/domain.d.ts +150 -0
  33. package/day1/backend-project/node_modules/@types/node/events.d.ts +1008 -0
  34. package/day1/backend-project/node_modules/@types/node/fs/promises.d.ts +1468 -0
  35. package/day1/backend-project/node_modules/@types/node/fs.d.ts +4780 -0
  36. package/day1/backend-project/node_modules/@types/node/globals.d.ts +150 -0
  37. package/day1/backend-project/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  38. package/day1/backend-project/node_modules/@types/node/http.d.ts +2147 -0
  39. package/day1/backend-project/node_modules/@types/node/http2.d.ts +2485 -0
  40. package/day1/backend-project/node_modules/@types/node/https.d.ts +400 -0
  41. package/day1/backend-project/node_modules/@types/node/index.d.ts +117 -0
  42. package/day1/backend-project/node_modules/@types/node/inspector/promises.d.ts +35 -0
  43. package/day1/backend-project/node_modules/@types/node/inspector.d.ts +264 -0
  44. package/day1/backend-project/node_modules/@types/node/inspector.generated.d.ts +4406 -0
  45. package/day1/backend-project/node_modules/@types/node/module.d.ts +755 -0
  46. package/day1/backend-project/node_modules/@types/node/net.d.ts +970 -0
  47. package/day1/backend-project/node_modules/@types/node/os.d.ts +498 -0
  48. package/day1/backend-project/node_modules/@types/node/package.json +155 -0
  49. package/day1/backend-project/node_modules/@types/node/path/posix.d.ts +8 -0
  50. package/day1/backend-project/node_modules/@types/node/path/win32.d.ts +8 -0
  51. package/day1/backend-project/node_modules/@types/node/path.d.ts +178 -0
  52. package/day1/backend-project/node_modules/@types/node/perf_hooks.d.ts +612 -0
  53. package/day1/backend-project/node_modules/@types/node/process.d.ts +2204 -0
  54. package/day1/backend-project/node_modules/@types/node/punycode.d.ts +89 -0
  55. package/day1/backend-project/node_modules/@types/node/querystring.d.ts +139 -0
  56. package/day1/backend-project/node_modules/@types/node/quic.d.ts +897 -0
  57. package/day1/backend-project/node_modules/@types/node/readline/promises.d.ts +158 -0
  58. package/day1/backend-project/node_modules/@types/node/readline.d.ts +507 -0
  59. package/day1/backend-project/node_modules/@types/node/repl.d.ts +420 -0
  60. package/day1/backend-project/node_modules/@types/node/sea.d.ts +47 -0
  61. package/day1/backend-project/node_modules/@types/node/sqlite.d.ts +1068 -0
  62. package/day1/backend-project/node_modules/@types/node/stream/consumers.d.ts +114 -0
  63. package/day1/backend-project/node_modules/@types/node/stream/iter.d.ts +301 -0
  64. package/day1/backend-project/node_modules/@types/node/stream/promises.d.ts +211 -0
  65. package/day1/backend-project/node_modules/@types/node/stream/web.d.ts +300 -0
  66. package/day1/backend-project/node_modules/@types/node/stream.d.ts +1774 -0
  67. package/day1/backend-project/node_modules/@types/node/string_decoder.d.ts +27 -0
  68. package/day1/backend-project/node_modules/@types/node/test/reporters.d.ts +59 -0
  69. package/day1/backend-project/node_modules/@types/node/test.d.ts +2279 -0
  70. package/day1/backend-project/node_modules/@types/node/timers/promises.d.ts +93 -0
  71. package/day1/backend-project/node_modules/@types/node/timers.d.ts +149 -0
  72. package/day1/backend-project/node_modules/@types/node/tls.d.ts +1193 -0
  73. package/day1/backend-project/node_modules/@types/node/trace_events.d.ts +103 -0
  74. package/day1/backend-project/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  75. package/day1/backend-project/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  76. package/day1/backend-project/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  77. package/day1/backend-project/node_modules/@types/node/ts5.6/index.d.ts +119 -0
  78. package/day1/backend-project/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  79. package/day1/backend-project/node_modules/@types/node/ts5.7/index.d.ts +119 -0
  80. package/day1/backend-project/node_modules/@types/node/tty.d.ts +225 -0
  81. package/day1/backend-project/node_modules/@types/node/url.d.ts +556 -0
  82. package/day1/backend-project/node_modules/@types/node/util/types.d.ts +558 -0
  83. package/day1/backend-project/node_modules/@types/node/util.d.ts +1677 -0
  84. package/day1/backend-project/node_modules/@types/node/v8.d.ts +980 -0
  85. package/day1/backend-project/node_modules/@types/node/vm.d.ts +1136 -0
  86. package/day1/backend-project/node_modules/@types/node/wasi.d.ts +131 -0
  87. package/day1/backend-project/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  88. package/day1/backend-project/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  89. package/day1/backend-project/node_modules/@types/node/web-globals/console.d.ts +9 -0
  90. package/day1/backend-project/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  91. package/day1/backend-project/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  92. package/day1/backend-project/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  93. package/day1/backend-project/node_modules/@types/node/web-globals/events.d.ts +106 -0
  94. package/day1/backend-project/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
  95. package/day1/backend-project/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  96. package/day1/backend-project/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  97. package/day1/backend-project/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  98. package/day1/backend-project/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  99. package/day1/backend-project/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  100. package/day1/backend-project/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  101. package/day1/backend-project/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  102. package/day1/backend-project/node_modules/@types/node/web-globals/url.d.ts +24 -0
  103. package/day1/backend-project/node_modules/@types/node/worker_threads.d.ts +671 -0
  104. package/day1/backend-project/node_modules/@types/node/zlib/iter.d.ts +131 -0
  105. package/day1/backend-project/node_modules/@types/node/zlib.d.ts +589 -0
  106. package/day1/backend-project/node_modules/accepts/HISTORY.md +250 -0
  107. package/day1/backend-project/node_modules/accepts/LICENSE +23 -0
  108. package/day1/backend-project/node_modules/accepts/README.md +140 -0
  109. package/day1/backend-project/node_modules/accepts/index.js +238 -0
  110. package/day1/backend-project/node_modules/accepts/package.json +47 -0
  111. package/day1/backend-project/node_modules/anymatch/LICENSE +15 -0
  112. package/day1/backend-project/node_modules/anymatch/README.md +87 -0
  113. package/day1/backend-project/node_modules/anymatch/index.d.ts +20 -0
  114. package/day1/backend-project/node_modules/anymatch/index.js +104 -0
  115. package/day1/backend-project/node_modules/anymatch/package.json +48 -0
  116. package/day1/backend-project/node_modules/aws-ssl-profiles/LICENSE +19 -0
  117. package/day1/backend-project/node_modules/aws-ssl-profiles/README.md +146 -0
  118. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.d.ts +4 -0
  119. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.js +2 -0
  120. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/index.d.ts +8 -0
  121. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/index.js +13 -0
  122. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.d.ts +9 -0
  123. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.js +2888 -0
  124. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.d.ts +8 -0
  125. package/day1/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.js +111 -0
  126. package/day1/backend-project/node_modules/aws-ssl-profiles/package.json +52 -0
  127. package/day1/backend-project/node_modules/balanced-match/LICENSE.md +23 -0
  128. package/day1/backend-project/node_modules/balanced-match/README.md +57 -0
  129. package/day1/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
  130. package/day1/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
  131. package/day1/backend-project/node_modules/balanced-match/dist/commonjs/index.js +59 -0
  132. package/day1/backend-project/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
  133. package/day1/backend-project/node_modules/balanced-match/dist/commonjs/package.json +3 -0
  134. package/day1/backend-project/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
  135. package/day1/backend-project/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
  136. package/day1/backend-project/node_modules/balanced-match/dist/esm/index.js +54 -0
  137. package/day1/backend-project/node_modules/balanced-match/dist/esm/index.js.map +1 -0
  138. package/day1/backend-project/node_modules/balanced-match/dist/esm/package.json +3 -0
  139. package/day1/backend-project/node_modules/balanced-match/package.json +68 -0
  140. package/day1/backend-project/node_modules/bcryptjs/LICENSE +27 -0
  141. package/day1/backend-project/node_modules/bcryptjs/README.md +201 -0
  142. package/day1/backend-project/node_modules/bcryptjs/bin/bcrypt +23 -0
  143. package/day1/backend-project/node_modules/bcryptjs/index.d.ts +3 -0
  144. package/day1/backend-project/node_modules/bcryptjs/index.js +1159 -0
  145. package/day1/backend-project/node_modules/bcryptjs/package.json +76 -0
  146. package/day1/backend-project/node_modules/bcryptjs/types.d.ts +157 -0
  147. package/day1/backend-project/node_modules/bcryptjs/umd/index.d.ts +3 -0
  148. package/day1/backend-project/node_modules/bcryptjs/umd/index.js +1220 -0
  149. package/day1/backend-project/node_modules/bcryptjs/umd/package.json +3 -0
  150. package/day1/backend-project/node_modules/bcryptjs/umd/types.d.ts +157 -0
  151. package/day1/backend-project/node_modules/binary-extensions/binary-extensions.json +263 -0
  152. package/day1/backend-project/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
  153. package/day1/backend-project/node_modules/binary-extensions/index.d.ts +14 -0
  154. package/day1/backend-project/node_modules/binary-extensions/index.js +1 -0
  155. package/day1/backend-project/node_modules/binary-extensions/license +10 -0
  156. package/day1/backend-project/node_modules/binary-extensions/package.json +40 -0
  157. package/day1/backend-project/node_modules/binary-extensions/readme.md +25 -0
  158. package/day1/backend-project/node_modules/body-parser/LICENSE +23 -0
  159. package/day1/backend-project/node_modules/body-parser/README.md +494 -0
  160. package/day1/backend-project/node_modules/body-parser/index.js +71 -0
  161. package/day1/backend-project/node_modules/body-parser/lib/read.js +247 -0
  162. package/day1/backend-project/node_modules/body-parser/lib/types/json.js +158 -0
  163. package/day1/backend-project/node_modules/body-parser/lib/types/raw.js +42 -0
  164. package/day1/backend-project/node_modules/body-parser/lib/types/text.js +36 -0
  165. package/day1/backend-project/node_modules/body-parser/lib/types/urlencoded.js +142 -0
  166. package/day1/backend-project/node_modules/body-parser/lib/utils.js +98 -0
  167. package/day1/backend-project/node_modules/body-parser/package.json +52 -0
  168. package/day1/backend-project/node_modules/brace-expansion/LICENSE +23 -0
  169. package/day1/backend-project/node_modules/brace-expansion/README.md +94 -0
  170. package/day1/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
  171. package/day1/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
  172. package/day1/backend-project/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
  173. package/day1/backend-project/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
  174. package/day1/backend-project/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
  175. package/day1/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
  176. package/day1/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
  177. package/day1/backend-project/node_modules/brace-expansion/dist/esm/index.js +197 -0
  178. package/day1/backend-project/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
  179. package/day1/backend-project/node_modules/brace-expansion/dist/esm/package.json +3 -0
  180. package/day1/backend-project/node_modules/brace-expansion/package.json +64 -0
  181. package/day1/backend-project/node_modules/braces/LICENSE +21 -0
  182. package/day1/backend-project/node_modules/braces/README.md +586 -0
  183. package/day1/backend-project/node_modules/braces/index.js +170 -0
  184. package/day1/backend-project/node_modules/braces/lib/compile.js +60 -0
  185. package/day1/backend-project/node_modules/braces/lib/constants.js +57 -0
  186. package/day1/backend-project/node_modules/braces/lib/expand.js +113 -0
  187. package/day1/backend-project/node_modules/braces/lib/parse.js +331 -0
  188. package/day1/backend-project/node_modules/braces/lib/stringify.js +32 -0
  189. package/day1/backend-project/node_modules/braces/lib/utils.js +122 -0
  190. package/day1/backend-project/node_modules/braces/package.json +77 -0
  191. package/day1/backend-project/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
  192. package/day1/backend-project/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
  193. package/day1/backend-project/node_modules/buffer-equal-constant-time/README.md +50 -0
  194. package/day1/backend-project/node_modules/buffer-equal-constant-time/index.js +41 -0
  195. package/day1/backend-project/node_modules/buffer-equal-constant-time/package.json +21 -0
  196. package/day1/backend-project/node_modules/buffer-equal-constant-time/test.js +42 -0
  197. package/day1/backend-project/node_modules/bytes/History.md +97 -0
  198. package/day1/backend-project/node_modules/bytes/LICENSE +23 -0
  199. package/day1/backend-project/node_modules/bytes/Readme.md +152 -0
  200. package/day1/backend-project/node_modules/bytes/index.js +170 -0
  201. package/day1/backend-project/node_modules/bytes/package.json +42 -0
  202. package/day1/backend-project/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  203. package/day1/backend-project/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  204. package/day1/backend-project/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  205. package/day1/backend-project/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  206. package/day1/backend-project/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  207. package/day1/backend-project/node_modules/call-bind-apply-helpers/README.md +62 -0
  208. package/day1/backend-project/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  209. package/day1/backend-project/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  210. package/day1/backend-project/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  211. package/day1/backend-project/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  212. package/day1/backend-project/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  213. package/day1/backend-project/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  214. package/day1/backend-project/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  215. package/day1/backend-project/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  216. package/day1/backend-project/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  217. package/day1/backend-project/node_modules/call-bind-apply-helpers/index.js +15 -0
  218. package/day1/backend-project/node_modules/call-bind-apply-helpers/package.json +85 -0
  219. package/day1/backend-project/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  220. package/day1/backend-project/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  221. package/day1/backend-project/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  222. package/day1/backend-project/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  223. package/day1/backend-project/node_modules/call-bound/.eslintrc +13 -0
  224. package/day1/backend-project/node_modules/call-bound/.github/FUNDING.yml +12 -0
  225. package/day1/backend-project/node_modules/call-bound/.nycrc +9 -0
  226. package/day1/backend-project/node_modules/call-bound/CHANGELOG.md +42 -0
  227. package/day1/backend-project/node_modules/call-bound/LICENSE +21 -0
  228. package/day1/backend-project/node_modules/call-bound/README.md +53 -0
  229. package/day1/backend-project/node_modules/call-bound/index.d.ts +94 -0
  230. package/day1/backend-project/node_modules/call-bound/index.js +19 -0
  231. package/day1/backend-project/node_modules/call-bound/package.json +99 -0
  232. package/day1/backend-project/node_modules/call-bound/test/index.js +61 -0
  233. package/day1/backend-project/node_modules/call-bound/tsconfig.json +10 -0
  234. package/day1/backend-project/node_modules/chokidar/LICENSE +21 -0
  235. package/day1/backend-project/node_modules/chokidar/README.md +308 -0
  236. package/day1/backend-project/node_modules/chokidar/index.js +973 -0
  237. package/day1/backend-project/node_modules/chokidar/lib/constants.js +66 -0
  238. package/day1/backend-project/node_modules/chokidar/lib/fsevents-handler.js +526 -0
  239. package/day1/backend-project/node_modules/chokidar/lib/nodefs-handler.js +654 -0
  240. package/day1/backend-project/node_modules/chokidar/package.json +70 -0
  241. package/day1/backend-project/node_modules/chokidar/types/index.d.ts +192 -0
  242. package/day1/backend-project/node_modules/content-disposition/LICENSE +22 -0
  243. package/day1/backend-project/node_modules/content-disposition/README.md +141 -0
  244. package/day1/backend-project/node_modules/content-disposition/index.js +536 -0
  245. package/day1/backend-project/node_modules/content-disposition/package.json +40 -0
  246. package/day1/backend-project/node_modules/content-type/HISTORY.md +29 -0
  247. package/day1/backend-project/node_modules/content-type/LICENSE +22 -0
  248. package/day1/backend-project/node_modules/content-type/README.md +94 -0
  249. package/day1/backend-project/node_modules/content-type/index.js +225 -0
  250. package/day1/backend-project/node_modules/content-type/package.json +42 -0
  251. package/day1/backend-project/node_modules/cookie/LICENSE +24 -0
  252. package/day1/backend-project/node_modules/cookie/README.md +317 -0
  253. package/day1/backend-project/node_modules/cookie/SECURITY.md +25 -0
  254. package/day1/backend-project/node_modules/cookie/index.js +335 -0
  255. package/day1/backend-project/node_modules/cookie/package.json +44 -0
  256. package/day1/backend-project/node_modules/cookie-signature/History.md +70 -0
  257. package/day1/backend-project/node_modules/cookie-signature/LICENSE +22 -0
  258. package/day1/backend-project/node_modules/cookie-signature/Readme.md +23 -0
  259. package/day1/backend-project/node_modules/cookie-signature/index.js +47 -0
  260. package/day1/backend-project/node_modules/cookie-signature/package.json +24 -0
  261. package/day1/backend-project/node_modules/cors/LICENSE +22 -0
  262. package/day1/backend-project/node_modules/cors/README.md +277 -0
  263. package/day1/backend-project/node_modules/cors/lib/index.js +238 -0
  264. package/day1/backend-project/node_modules/cors/package.json +42 -0
  265. package/day1/backend-project/node_modules/debug/LICENSE +20 -0
  266. package/day1/backend-project/node_modules/debug/README.md +481 -0
  267. package/day1/backend-project/node_modules/debug/package.json +64 -0
  268. package/day1/backend-project/node_modules/debug/src/browser.js +272 -0
  269. package/day1/backend-project/node_modules/debug/src/common.js +292 -0
  270. package/day1/backend-project/node_modules/debug/src/index.js +10 -0
  271. package/day1/backend-project/node_modules/debug/src/node.js +263 -0
  272. package/day1/backend-project/node_modules/denque/CHANGELOG.md +29 -0
  273. package/day1/backend-project/node_modules/denque/LICENSE +201 -0
  274. package/day1/backend-project/node_modules/denque/README.md +77 -0
  275. package/day1/backend-project/node_modules/denque/index.d.ts +47 -0
  276. package/day1/backend-project/node_modules/denque/index.js +481 -0
  277. package/day1/backend-project/node_modules/denque/package.json +58 -0
  278. package/day1/backend-project/node_modules/depd/History.md +103 -0
  279. package/day1/backend-project/node_modules/depd/LICENSE +22 -0
  280. package/day1/backend-project/node_modules/depd/Readme.md +280 -0
  281. package/day1/backend-project/node_modules/depd/index.js +538 -0
  282. package/day1/backend-project/node_modules/depd/lib/browser/index.js +77 -0
  283. package/day1/backend-project/node_modules/depd/package.json +45 -0
  284. package/day1/backend-project/node_modules/dotenv/CHANGELOG.md +643 -0
  285. package/day1/backend-project/node_modules/dotenv/LICENSE +23 -0
  286. package/day1/backend-project/node_modules/dotenv/README-es.md +757 -0
  287. package/day1/backend-project/node_modules/dotenv/README.md +812 -0
  288. package/day1/backend-project/node_modules/dotenv/SECURITY.md +1 -0
  289. package/day1/backend-project/node_modules/dotenv/config.d.ts +1 -0
  290. package/day1/backend-project/node_modules/dotenv/config.js +9 -0
  291. package/day1/backend-project/node_modules/dotenv/lib/cli-options.js +17 -0
  292. package/day1/backend-project/node_modules/dotenv/lib/env-options.js +28 -0
  293. package/day1/backend-project/node_modules/dotenv/lib/main.d.ts +179 -0
  294. package/day1/backend-project/node_modules/dotenv/lib/main.js +423 -0
  295. package/day1/backend-project/node_modules/dotenv/package.json +62 -0
  296. package/day1/backend-project/node_modules/dotenv/skills/dotenv/SKILL.md +200 -0
  297. package/day1/backend-project/node_modules/dotenv/skills/dotenvx/SKILL.md +118 -0
  298. package/day1/backend-project/node_modules/dunder-proto/.eslintrc +5 -0
  299. package/day1/backend-project/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  300. package/day1/backend-project/node_modules/dunder-proto/.nycrc +13 -0
  301. package/day1/backend-project/node_modules/dunder-proto/CHANGELOG.md +24 -0
  302. package/day1/backend-project/node_modules/dunder-proto/LICENSE +21 -0
  303. package/day1/backend-project/node_modules/dunder-proto/README.md +54 -0
  304. package/day1/backend-project/node_modules/dunder-proto/get.d.ts +5 -0
  305. package/day1/backend-project/node_modules/dunder-proto/get.js +30 -0
  306. package/day1/backend-project/node_modules/dunder-proto/package.json +76 -0
  307. package/day1/backend-project/node_modules/dunder-proto/set.d.ts +5 -0
  308. package/day1/backend-project/node_modules/dunder-proto/set.js +35 -0
  309. package/day1/backend-project/node_modules/dunder-proto/test/get.js +34 -0
  310. package/day1/backend-project/node_modules/dunder-proto/test/index.js +4 -0
  311. package/day1/backend-project/node_modules/dunder-proto/test/set.js +50 -0
  312. package/day1/backend-project/node_modules/dunder-proto/tsconfig.json +9 -0
  313. package/day1/backend-project/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  314. package/day1/backend-project/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  315. package/day1/backend-project/node_modules/ecdsa-sig-formatter/README.md +65 -0
  316. package/day1/backend-project/node_modules/ecdsa-sig-formatter/package.json +46 -0
  317. package/day1/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  318. package/day1/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  319. package/day1/backend-project/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  320. package/day1/backend-project/node_modules/ee-first/LICENSE +22 -0
  321. package/day1/backend-project/node_modules/ee-first/README.md +80 -0
  322. package/day1/backend-project/node_modules/ee-first/index.js +95 -0
  323. package/day1/backend-project/node_modules/ee-first/package.json +29 -0
  324. package/day1/backend-project/node_modules/encodeurl/LICENSE +22 -0
  325. package/day1/backend-project/node_modules/encodeurl/README.md +109 -0
  326. package/day1/backend-project/node_modules/encodeurl/index.js +60 -0
  327. package/day1/backend-project/node_modules/encodeurl/package.json +40 -0
  328. package/day1/backend-project/node_modules/es-define-property/.eslintrc +13 -0
  329. package/day1/backend-project/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  330. package/day1/backend-project/node_modules/es-define-property/.nycrc +9 -0
  331. package/day1/backend-project/node_modules/es-define-property/CHANGELOG.md +29 -0
  332. package/day1/backend-project/node_modules/es-define-property/LICENSE +21 -0
  333. package/day1/backend-project/node_modules/es-define-property/README.md +49 -0
  334. package/day1/backend-project/node_modules/es-define-property/index.d.ts +3 -0
  335. package/day1/backend-project/node_modules/es-define-property/index.js +14 -0
  336. package/day1/backend-project/node_modules/es-define-property/package.json +81 -0
  337. package/day1/backend-project/node_modules/es-define-property/test/index.js +56 -0
  338. package/day1/backend-project/node_modules/es-define-property/tsconfig.json +10 -0
  339. package/day1/backend-project/node_modules/es-errors/.eslintrc +5 -0
  340. package/day1/backend-project/node_modules/es-errors/.github/FUNDING.yml +12 -0
  341. package/day1/backend-project/node_modules/es-errors/CHANGELOG.md +40 -0
  342. package/day1/backend-project/node_modules/es-errors/LICENSE +21 -0
  343. package/day1/backend-project/node_modules/es-errors/README.md +55 -0
  344. package/day1/backend-project/node_modules/es-errors/eval.d.ts +3 -0
  345. package/day1/backend-project/node_modules/es-errors/eval.js +4 -0
  346. package/day1/backend-project/node_modules/es-errors/index.d.ts +3 -0
  347. package/day1/backend-project/node_modules/es-errors/index.js +4 -0
  348. package/day1/backend-project/node_modules/es-errors/package.json +80 -0
  349. package/day1/backend-project/node_modules/es-errors/range.d.ts +3 -0
  350. package/day1/backend-project/node_modules/es-errors/range.js +4 -0
  351. package/day1/backend-project/node_modules/es-errors/ref.d.ts +3 -0
  352. package/day1/backend-project/node_modules/es-errors/ref.js +4 -0
  353. package/day1/backend-project/node_modules/es-errors/syntax.d.ts +3 -0
  354. package/day1/backend-project/node_modules/es-errors/syntax.js +4 -0
  355. package/day1/backend-project/node_modules/es-errors/test/index.js +19 -0
  356. package/day1/backend-project/node_modules/es-errors/tsconfig.json +49 -0
  357. package/day1/backend-project/node_modules/es-errors/type.d.ts +3 -0
  358. package/day1/backend-project/node_modules/es-errors/type.js +4 -0
  359. package/day1/backend-project/node_modules/es-errors/uri.d.ts +3 -0
  360. package/day1/backend-project/node_modules/es-errors/uri.js +4 -0
  361. package/day1/backend-project/node_modules/es-object-atoms/.eslintrc +16 -0
  362. package/day1/backend-project/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  363. package/day1/backend-project/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  364. package/day1/backend-project/node_modules/es-object-atoms/LICENSE +21 -0
  365. package/day1/backend-project/node_modules/es-object-atoms/README.md +63 -0
  366. package/day1/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  367. package/day1/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  368. package/day1/backend-project/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  369. package/day1/backend-project/node_modules/es-object-atoms/ToObject.js +10 -0
  370. package/day1/backend-project/node_modules/es-object-atoms/index.d.ts +3 -0
  371. package/day1/backend-project/node_modules/es-object-atoms/index.js +4 -0
  372. package/day1/backend-project/node_modules/es-object-atoms/isObject.d.ts +3 -0
  373. package/day1/backend-project/node_modules/es-object-atoms/isObject.js +6 -0
  374. package/day1/backend-project/node_modules/es-object-atoms/package.json +79 -0
  375. package/day1/backend-project/node_modules/es-object-atoms/test/index.js +38 -0
  376. package/day1/backend-project/node_modules/es-object-atoms/tsconfig.json +7 -0
  377. package/day1/backend-project/node_modules/escape-html/LICENSE +24 -0
  378. package/day1/backend-project/node_modules/escape-html/Readme.md +43 -0
  379. package/day1/backend-project/node_modules/escape-html/index.js +78 -0
  380. package/day1/backend-project/node_modules/escape-html/package.json +24 -0
  381. package/day1/backend-project/node_modules/etag/HISTORY.md +83 -0
  382. package/day1/backend-project/node_modules/etag/LICENSE +22 -0
  383. package/day1/backend-project/node_modules/etag/README.md +159 -0
  384. package/day1/backend-project/node_modules/etag/index.js +131 -0
  385. package/day1/backend-project/node_modules/etag/package.json +47 -0
  386. package/day1/backend-project/node_modules/express/LICENSE +24 -0
  387. package/day1/backend-project/node_modules/express/Readme.md +276 -0
  388. package/day1/backend-project/node_modules/express/index.js +11 -0
  389. package/day1/backend-project/node_modules/express/lib/application.js +631 -0
  390. package/day1/backend-project/node_modules/express/lib/express.js +81 -0
  391. package/day1/backend-project/node_modules/express/lib/request.js +514 -0
  392. package/day1/backend-project/node_modules/express/lib/response.js +1053 -0
  393. package/day1/backend-project/node_modules/express/lib/utils.js +271 -0
  394. package/day1/backend-project/node_modules/express/lib/view.js +205 -0
  395. package/day1/backend-project/node_modules/express/package.json +99 -0
  396. package/day1/backend-project/node_modules/fill-range/LICENSE +21 -0
  397. package/day1/backend-project/node_modules/fill-range/README.md +237 -0
  398. package/day1/backend-project/node_modules/fill-range/index.js +248 -0
  399. package/day1/backend-project/node_modules/fill-range/package.json +74 -0
  400. package/day1/backend-project/node_modules/finalhandler/HISTORY.md +239 -0
  401. package/day1/backend-project/node_modules/finalhandler/LICENSE +22 -0
  402. package/day1/backend-project/node_modules/finalhandler/README.md +150 -0
  403. package/day1/backend-project/node_modules/finalhandler/index.js +293 -0
  404. package/day1/backend-project/node_modules/finalhandler/package.json +47 -0
  405. package/day1/backend-project/node_modules/forwarded/HISTORY.md +21 -0
  406. package/day1/backend-project/node_modules/forwarded/LICENSE +22 -0
  407. package/day1/backend-project/node_modules/forwarded/README.md +57 -0
  408. package/day1/backend-project/node_modules/forwarded/index.js +90 -0
  409. package/day1/backend-project/node_modules/forwarded/package.json +45 -0
  410. package/day1/backend-project/node_modules/fresh/HISTORY.md +80 -0
  411. package/day1/backend-project/node_modules/fresh/LICENSE +23 -0
  412. package/day1/backend-project/node_modules/fresh/README.md +117 -0
  413. package/day1/backend-project/node_modules/fresh/index.js +136 -0
  414. package/day1/backend-project/node_modules/fresh/package.json +46 -0
  415. package/day1/backend-project/node_modules/function-bind/.eslintrc +21 -0
  416. package/day1/backend-project/node_modules/function-bind/.github/FUNDING.yml +12 -0
  417. package/day1/backend-project/node_modules/function-bind/.github/SECURITY.md +3 -0
  418. package/day1/backend-project/node_modules/function-bind/.nycrc +13 -0
  419. package/day1/backend-project/node_modules/function-bind/CHANGELOG.md +136 -0
  420. package/day1/backend-project/node_modules/function-bind/LICENSE +20 -0
  421. package/day1/backend-project/node_modules/function-bind/README.md +46 -0
  422. package/day1/backend-project/node_modules/function-bind/implementation.js +84 -0
  423. package/day1/backend-project/node_modules/function-bind/index.js +5 -0
  424. package/day1/backend-project/node_modules/function-bind/package.json +87 -0
  425. package/day1/backend-project/node_modules/function-bind/test/.eslintrc +9 -0
  426. package/day1/backend-project/node_modules/function-bind/test/index.js +252 -0
  427. package/day1/backend-project/node_modules/generate-function/.travis.yml +3 -0
  428. package/day1/backend-project/node_modules/generate-function/LICENSE +21 -0
  429. package/day1/backend-project/node_modules/generate-function/README.md +89 -0
  430. package/day1/backend-project/node_modules/generate-function/example.js +27 -0
  431. package/day1/backend-project/node_modules/generate-function/index.js +181 -0
  432. package/day1/backend-project/node_modules/generate-function/package.json +32 -0
  433. package/day1/backend-project/node_modules/generate-function/test.js +49 -0
  434. package/day1/backend-project/node_modules/get-intrinsic/.eslintrc +42 -0
  435. package/day1/backend-project/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  436. package/day1/backend-project/node_modules/get-intrinsic/.nycrc +9 -0
  437. package/day1/backend-project/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  438. package/day1/backend-project/node_modules/get-intrinsic/LICENSE +21 -0
  439. package/day1/backend-project/node_modules/get-intrinsic/README.md +71 -0
  440. package/day1/backend-project/node_modules/get-intrinsic/index.js +378 -0
  441. package/day1/backend-project/node_modules/get-intrinsic/package.json +97 -0
  442. package/day1/backend-project/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  443. package/day1/backend-project/node_modules/get-proto/.eslintrc +10 -0
  444. package/day1/backend-project/node_modules/get-proto/.github/FUNDING.yml +12 -0
  445. package/day1/backend-project/node_modules/get-proto/.nycrc +9 -0
  446. package/day1/backend-project/node_modules/get-proto/CHANGELOG.md +21 -0
  447. package/day1/backend-project/node_modules/get-proto/LICENSE +21 -0
  448. package/day1/backend-project/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  449. package/day1/backend-project/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  450. package/day1/backend-project/node_modules/get-proto/README.md +50 -0
  451. package/day1/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  452. package/day1/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  453. package/day1/backend-project/node_modules/get-proto/index.d.ts +5 -0
  454. package/day1/backend-project/node_modules/get-proto/index.js +27 -0
  455. package/day1/backend-project/node_modules/get-proto/package.json +81 -0
  456. package/day1/backend-project/node_modules/get-proto/test/index.js +68 -0
  457. package/day1/backend-project/node_modules/get-proto/tsconfig.json +9 -0
  458. package/day1/backend-project/node_modules/glob-parent/CHANGELOG.md +110 -0
  459. package/day1/backend-project/node_modules/glob-parent/LICENSE +15 -0
  460. package/day1/backend-project/node_modules/glob-parent/README.md +137 -0
  461. package/day1/backend-project/node_modules/glob-parent/index.js +42 -0
  462. package/day1/backend-project/node_modules/glob-parent/package.json +48 -0
  463. package/day1/backend-project/node_modules/gopd/.eslintrc +16 -0
  464. package/day1/backend-project/node_modules/gopd/.github/FUNDING.yml +12 -0
  465. package/day1/backend-project/node_modules/gopd/CHANGELOG.md +45 -0
  466. package/day1/backend-project/node_modules/gopd/LICENSE +21 -0
  467. package/day1/backend-project/node_modules/gopd/README.md +40 -0
  468. package/day1/backend-project/node_modules/gopd/gOPD.d.ts +1 -0
  469. package/day1/backend-project/node_modules/gopd/gOPD.js +4 -0
  470. package/day1/backend-project/node_modules/gopd/index.d.ts +5 -0
  471. package/day1/backend-project/node_modules/gopd/index.js +15 -0
  472. package/day1/backend-project/node_modules/gopd/package.json +77 -0
  473. package/day1/backend-project/node_modules/gopd/test/index.js +36 -0
  474. package/day1/backend-project/node_modules/gopd/tsconfig.json +9 -0
  475. package/day1/backend-project/node_modules/has-flag/index.js +8 -0
  476. package/day1/backend-project/node_modules/has-flag/license +9 -0
  477. package/day1/backend-project/node_modules/has-flag/package.json +44 -0
  478. package/day1/backend-project/node_modules/has-flag/readme.md +70 -0
  479. package/day1/backend-project/node_modules/has-symbols/.eslintrc +11 -0
  480. package/day1/backend-project/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  481. package/day1/backend-project/node_modules/has-symbols/.nycrc +9 -0
  482. package/day1/backend-project/node_modules/has-symbols/CHANGELOG.md +91 -0
  483. package/day1/backend-project/node_modules/has-symbols/LICENSE +21 -0
  484. package/day1/backend-project/node_modules/has-symbols/README.md +46 -0
  485. package/day1/backend-project/node_modules/has-symbols/index.d.ts +3 -0
  486. package/day1/backend-project/node_modules/has-symbols/index.js +14 -0
  487. package/day1/backend-project/node_modules/has-symbols/package.json +111 -0
  488. package/day1/backend-project/node_modules/has-symbols/shams.d.ts +3 -0
  489. package/day1/backend-project/node_modules/has-symbols/shams.js +45 -0
  490. package/day1/backend-project/node_modules/has-symbols/test/index.js +22 -0
  491. package/day1/backend-project/node_modules/has-symbols/test/shams/core-js.js +29 -0
  492. package/day1/backend-project/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  493. package/day1/backend-project/node_modules/has-symbols/test/tests.js +58 -0
  494. package/day1/backend-project/node_modules/has-symbols/tsconfig.json +10 -0
  495. package/day1/backend-project/node_modules/hasown/.github/FUNDING.yml +12 -0
  496. package/day1/backend-project/node_modules/hasown/.nycrc +13 -0
  497. package/day1/backend-project/node_modules/hasown/CHANGELOG.md +58 -0
  498. package/day1/backend-project/node_modules/hasown/LICENSE +21 -0
  499. package/day1/backend-project/node_modules/hasown/README.md +40 -0
  500. package/day1/backend-project/node_modules/hasown/eslint.config.mjs +6 -0
  501. package/day1/backend-project/node_modules/hasown/index.d.ts +3 -0
  502. package/day1/backend-project/node_modules/hasown/index.js +8 -0
  503. package/day1/backend-project/node_modules/hasown/package.json +91 -0
  504. package/day1/backend-project/node_modules/hasown/tsconfig.json +6 -0
  505. package/day1/backend-project/node_modules/http-errors/HISTORY.md +186 -0
  506. package/day1/backend-project/node_modules/http-errors/LICENSE +23 -0
  507. package/day1/backend-project/node_modules/http-errors/README.md +169 -0
  508. package/day1/backend-project/node_modules/http-errors/index.js +290 -0
  509. package/day1/backend-project/node_modules/http-errors/package.json +54 -0
  510. package/day1/backend-project/node_modules/iconv-lite/LICENSE +21 -0
  511. package/day1/backend-project/node_modules/iconv-lite/README.md +138 -0
  512. package/day1/backend-project/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  513. package/day1/backend-project/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  514. package/day1/backend-project/node_modules/iconv-lite/encodings/index.js +23 -0
  515. package/day1/backend-project/node_modules/iconv-lite/encodings/internal.js +218 -0
  516. package/day1/backend-project/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  517. package/day1/backend-project/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  518. package/day1/backend-project/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  519. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  520. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  521. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  522. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  523. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  524. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  525. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  526. package/day1/backend-project/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  527. package/day1/backend-project/node_modules/iconv-lite/encodings/utf16.js +187 -0
  528. package/day1/backend-project/node_modules/iconv-lite/encodings/utf32.js +307 -0
  529. package/day1/backend-project/node_modules/iconv-lite/encodings/utf7.js +283 -0
  530. package/day1/backend-project/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  531. package/day1/backend-project/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  532. package/day1/backend-project/node_modules/iconv-lite/lib/index.d.ts +129 -0
  533. package/day1/backend-project/node_modules/iconv-lite/lib/index.js +182 -0
  534. package/day1/backend-project/node_modules/iconv-lite/lib/streams.js +105 -0
  535. package/day1/backend-project/node_modules/iconv-lite/package.json +70 -0
  536. package/day1/backend-project/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  537. package/day1/backend-project/node_modules/ignore-by-default/LICENSE +14 -0
  538. package/day1/backend-project/node_modules/ignore-by-default/README.md +26 -0
  539. package/day1/backend-project/node_modules/ignore-by-default/index.js +12 -0
  540. package/day1/backend-project/node_modules/ignore-by-default/package.json +34 -0
  541. package/day1/backend-project/node_modules/inherits/LICENSE +16 -0
  542. package/day1/backend-project/node_modules/inherits/README.md +42 -0
  543. package/day1/backend-project/node_modules/inherits/inherits.js +9 -0
  544. package/day1/backend-project/node_modules/inherits/inherits_browser.js +27 -0
  545. package/day1/backend-project/node_modules/inherits/package.json +29 -0
  546. package/day1/backend-project/node_modules/ipaddr.js/LICENSE +19 -0
  547. package/day1/backend-project/node_modules/ipaddr.js/README.md +233 -0
  548. package/day1/backend-project/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  549. package/day1/backend-project/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  550. package/day1/backend-project/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  551. package/day1/backend-project/node_modules/ipaddr.js/package.json +35 -0
  552. package/day1/backend-project/node_modules/is-binary-path/index.d.ts +17 -0
  553. package/day1/backend-project/node_modules/is-binary-path/index.js +7 -0
  554. package/day1/backend-project/node_modules/is-binary-path/license +9 -0
  555. package/day1/backend-project/node_modules/is-binary-path/package.json +40 -0
  556. package/day1/backend-project/node_modules/is-binary-path/readme.md +34 -0
  557. package/day1/backend-project/node_modules/is-extglob/LICENSE +21 -0
  558. package/day1/backend-project/node_modules/is-extglob/README.md +107 -0
  559. package/day1/backend-project/node_modules/is-extglob/index.js +20 -0
  560. package/day1/backend-project/node_modules/is-extglob/package.json +69 -0
  561. package/day1/backend-project/node_modules/is-glob/LICENSE +21 -0
  562. package/day1/backend-project/node_modules/is-glob/README.md +206 -0
  563. package/day1/backend-project/node_modules/is-glob/index.js +150 -0
  564. package/day1/backend-project/node_modules/is-glob/package.json +81 -0
  565. package/day1/backend-project/node_modules/is-number/LICENSE +21 -0
  566. package/day1/backend-project/node_modules/is-number/README.md +187 -0
  567. package/day1/backend-project/node_modules/is-number/index.js +18 -0
  568. package/day1/backend-project/node_modules/is-number/package.json +82 -0
  569. package/day1/backend-project/node_modules/is-promise/LICENSE +19 -0
  570. package/day1/backend-project/node_modules/is-promise/index.d.ts +2 -0
  571. package/day1/backend-project/node_modules/is-promise/index.js +6 -0
  572. package/day1/backend-project/node_modules/is-promise/index.mjs +3 -0
  573. package/day1/backend-project/node_modules/is-promise/package.json +30 -0
  574. package/day1/backend-project/node_modules/is-promise/readme.md +33 -0
  575. package/day1/backend-project/node_modules/is-property/LICENSE +22 -0
  576. package/day1/backend-project/node_modules/is-property/README.md +28 -0
  577. package/day1/backend-project/node_modules/is-property/is-property.js +5 -0
  578. package/day1/backend-project/node_modules/is-property/package.json +36 -0
  579. package/day1/backend-project/node_modules/jsonwebtoken/LICENSE +21 -0
  580. package/day1/backend-project/node_modules/jsonwebtoken/README.md +396 -0
  581. package/day1/backend-project/node_modules/jsonwebtoken/decode.js +30 -0
  582. package/day1/backend-project/node_modules/jsonwebtoken/index.js +8 -0
  583. package/day1/backend-project/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
  584. package/day1/backend-project/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
  585. package/day1/backend-project/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
  586. package/day1/backend-project/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
  587. package/day1/backend-project/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
  588. package/day1/backend-project/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
  589. package/day1/backend-project/node_modules/jsonwebtoken/lib/timespan.js +18 -0
  590. package/day1/backend-project/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
  591. package/day1/backend-project/node_modules/jsonwebtoken/package.json +70 -0
  592. package/day1/backend-project/node_modules/jsonwebtoken/sign.js +253 -0
  593. package/day1/backend-project/node_modules/jsonwebtoken/verify.js +263 -0
  594. package/day1/backend-project/node_modules/jwa/LICENSE +17 -0
  595. package/day1/backend-project/node_modules/jwa/README.md +150 -0
  596. package/day1/backend-project/node_modules/jwa/index.js +266 -0
  597. package/day1/backend-project/node_modules/jwa/opslevel.yml +6 -0
  598. package/day1/backend-project/node_modules/jwa/package.json +37 -0
  599. package/day1/backend-project/node_modules/jws/CHANGELOG.md +56 -0
  600. package/day1/backend-project/node_modules/jws/LICENSE +17 -0
  601. package/day1/backend-project/node_modules/jws/index.js +22 -0
  602. package/day1/backend-project/node_modules/jws/lib/data-stream.js +55 -0
  603. package/day1/backend-project/node_modules/jws/lib/sign-stream.js +83 -0
  604. package/day1/backend-project/node_modules/jws/lib/tostring.js +10 -0
  605. package/day1/backend-project/node_modules/jws/lib/verify-stream.js +125 -0
  606. package/day1/backend-project/node_modules/jws/opslevel.yml +6 -0
  607. package/day1/backend-project/node_modules/jws/package.json +34 -0
  608. package/day1/backend-project/node_modules/jws/readme.md +255 -0
  609. package/day1/backend-project/node_modules/lodash.includes/LICENSE +47 -0
  610. package/day1/backend-project/node_modules/lodash.includes/README.md +18 -0
  611. package/day1/backend-project/node_modules/lodash.includes/index.js +745 -0
  612. package/day1/backend-project/node_modules/lodash.includes/package.json +17 -0
  613. package/day1/backend-project/node_modules/lodash.isboolean/LICENSE +22 -0
  614. package/day1/backend-project/node_modules/lodash.isboolean/README.md +18 -0
  615. package/day1/backend-project/node_modules/lodash.isboolean/index.js +70 -0
  616. package/day1/backend-project/node_modules/lodash.isboolean/package.json +17 -0
  617. package/day1/backend-project/node_modules/lodash.isinteger/LICENSE +47 -0
  618. package/day1/backend-project/node_modules/lodash.isinteger/README.md +18 -0
  619. package/day1/backend-project/node_modules/lodash.isinteger/index.js +265 -0
  620. package/day1/backend-project/node_modules/lodash.isinteger/package.json +17 -0
  621. package/day1/backend-project/node_modules/lodash.isnumber/LICENSE +22 -0
  622. package/day1/backend-project/node_modules/lodash.isnumber/README.md +18 -0
  623. package/day1/backend-project/node_modules/lodash.isnumber/index.js +79 -0
  624. package/day1/backend-project/node_modules/lodash.isnumber/package.json +17 -0
  625. package/day1/backend-project/node_modules/lodash.isplainobject/LICENSE +47 -0
  626. package/day1/backend-project/node_modules/lodash.isplainobject/README.md +18 -0
  627. package/day1/backend-project/node_modules/lodash.isplainobject/index.js +139 -0
  628. package/day1/backend-project/node_modules/lodash.isplainobject/package.json +17 -0
  629. package/day1/backend-project/node_modules/lodash.isstring/LICENSE +22 -0
  630. package/day1/backend-project/node_modules/lodash.isstring/README.md +18 -0
  631. package/day1/backend-project/node_modules/lodash.isstring/index.js +95 -0
  632. package/day1/backend-project/node_modules/lodash.isstring/package.json +17 -0
  633. package/day1/backend-project/node_modules/lodash.once/LICENSE +47 -0
  634. package/day1/backend-project/node_modules/lodash.once/README.md +18 -0
  635. package/day1/backend-project/node_modules/lodash.once/index.js +294 -0
  636. package/day1/backend-project/node_modules/lodash.once/package.json +17 -0
  637. package/day1/backend-project/node_modules/long/LICENSE +202 -0
  638. package/day1/backend-project/node_modules/long/README.md +286 -0
  639. package/day1/backend-project/node_modules/long/index.d.ts +2 -0
  640. package/day1/backend-project/node_modules/long/index.js +1581 -0
  641. package/day1/backend-project/node_modules/long/package.json +58 -0
  642. package/day1/backend-project/node_modules/long/types.d.ts +474 -0
  643. package/day1/backend-project/node_modules/long/umd/index.d.ts +3 -0
  644. package/day1/backend-project/node_modules/long/umd/index.js +1622 -0
  645. package/day1/backend-project/node_modules/long/umd/package.json +3 -0
  646. package/day1/backend-project/node_modules/long/umd/types.d.ts +474 -0
  647. package/day1/backend-project/node_modules/lru.min/LICENSE +21 -0
  648. package/day1/backend-project/node_modules/lru.min/README.md +392 -0
  649. package/day1/backend-project/node_modules/lru.min/browser/lru.min.js +1 -0
  650. package/day1/backend-project/node_modules/lru.min/lib/index.d.ts +38 -0
  651. package/day1/backend-project/node_modules/lru.min/lib/index.js +248 -0
  652. package/day1/backend-project/node_modules/lru.min/lib/index.mjs +227 -0
  653. package/day1/backend-project/node_modules/lru.min/package.json +87 -0
  654. package/day1/backend-project/node_modules/math-intrinsics/.eslintrc +16 -0
  655. package/day1/backend-project/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  656. package/day1/backend-project/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  657. package/day1/backend-project/node_modules/math-intrinsics/LICENSE +21 -0
  658. package/day1/backend-project/node_modules/math-intrinsics/README.md +50 -0
  659. package/day1/backend-project/node_modules/math-intrinsics/abs.d.ts +1 -0
  660. package/day1/backend-project/node_modules/math-intrinsics/abs.js +4 -0
  661. package/day1/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  662. package/day1/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  663. package/day1/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  664. package/day1/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  665. package/day1/backend-project/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  666. package/day1/backend-project/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  667. package/day1/backend-project/node_modules/math-intrinsics/floor.d.ts +1 -0
  668. package/day1/backend-project/node_modules/math-intrinsics/floor.js +4 -0
  669. package/day1/backend-project/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  670. package/day1/backend-project/node_modules/math-intrinsics/isFinite.js +12 -0
  671. package/day1/backend-project/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  672. package/day1/backend-project/node_modules/math-intrinsics/isInteger.js +16 -0
  673. package/day1/backend-project/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  674. package/day1/backend-project/node_modules/math-intrinsics/isNaN.js +6 -0
  675. package/day1/backend-project/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  676. package/day1/backend-project/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  677. package/day1/backend-project/node_modules/math-intrinsics/max.d.ts +1 -0
  678. package/day1/backend-project/node_modules/math-intrinsics/max.js +4 -0
  679. package/day1/backend-project/node_modules/math-intrinsics/min.d.ts +1 -0
  680. package/day1/backend-project/node_modules/math-intrinsics/min.js +4 -0
  681. package/day1/backend-project/node_modules/math-intrinsics/mod.d.ts +3 -0
  682. package/day1/backend-project/node_modules/math-intrinsics/mod.js +9 -0
  683. package/day1/backend-project/node_modules/math-intrinsics/package.json +86 -0
  684. package/day1/backend-project/node_modules/math-intrinsics/pow.d.ts +1 -0
  685. package/day1/backend-project/node_modules/math-intrinsics/pow.js +4 -0
  686. package/day1/backend-project/node_modules/math-intrinsics/round.d.ts +1 -0
  687. package/day1/backend-project/node_modules/math-intrinsics/round.js +4 -0
  688. package/day1/backend-project/node_modules/math-intrinsics/sign.d.ts +3 -0
  689. package/day1/backend-project/node_modules/math-intrinsics/sign.js +11 -0
  690. package/day1/backend-project/node_modules/math-intrinsics/test/index.js +192 -0
  691. package/day1/backend-project/node_modules/math-intrinsics/tsconfig.json +3 -0
  692. package/day1/backend-project/node_modules/media-typer/HISTORY.md +50 -0
  693. package/day1/backend-project/node_modules/media-typer/LICENSE +22 -0
  694. package/day1/backend-project/node_modules/media-typer/README.md +93 -0
  695. package/day1/backend-project/node_modules/media-typer/index.js +143 -0
  696. package/day1/backend-project/node_modules/media-typer/package.json +33 -0
  697. package/day1/backend-project/node_modules/merge-descriptors/index.d.ts +11 -0
  698. package/day1/backend-project/node_modules/merge-descriptors/index.js +26 -0
  699. package/day1/backend-project/node_modules/merge-descriptors/license +11 -0
  700. package/day1/backend-project/node_modules/merge-descriptors/package.json +50 -0
  701. package/day1/backend-project/node_modules/merge-descriptors/readme.md +55 -0
  702. package/day1/backend-project/node_modules/mime-db/HISTORY.md +541 -0
  703. package/day1/backend-project/node_modules/mime-db/LICENSE +23 -0
  704. package/day1/backend-project/node_modules/mime-db/README.md +109 -0
  705. package/day1/backend-project/node_modules/mime-db/db.json +9342 -0
  706. package/day1/backend-project/node_modules/mime-db/index.js +12 -0
  707. package/day1/backend-project/node_modules/mime-db/package.json +56 -0
  708. package/day1/backend-project/node_modules/mime-types/HISTORY.md +428 -0
  709. package/day1/backend-project/node_modules/mime-types/LICENSE +23 -0
  710. package/day1/backend-project/node_modules/mime-types/README.md +126 -0
  711. package/day1/backend-project/node_modules/mime-types/index.js +211 -0
  712. package/day1/backend-project/node_modules/mime-types/mimeScore.js +57 -0
  713. package/day1/backend-project/node_modules/mime-types/package.json +49 -0
  714. package/day1/backend-project/node_modules/minimatch/LICENSE.md +55 -0
  715. package/day1/backend-project/node_modules/minimatch/README.md +528 -0
  716. package/day1/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  717. package/day1/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  718. package/day1/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  719. package/day1/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  720. package/day1/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
  721. package/day1/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  722. package/day1/backend-project/node_modules/minimatch/dist/commonjs/ast.js +845 -0
  723. package/day1/backend-project/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  724. package/day1/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  725. package/day1/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  726. package/day1/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
  727. package/day1/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  728. package/day1/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
  729. package/day1/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  730. package/day1/backend-project/node_modules/minimatch/dist/commonjs/escape.js +30 -0
  731. package/day1/backend-project/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  732. package/day1/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
  733. package/day1/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  734. package/day1/backend-project/node_modules/minimatch/dist/commonjs/index.js +1127 -0
  735. package/day1/backend-project/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  736. package/day1/backend-project/node_modules/minimatch/dist/commonjs/package.json +3 -0
  737. package/day1/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
  738. package/day1/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  739. package/day1/backend-project/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
  740. package/day1/backend-project/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  741. package/day1/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  742. package/day1/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  743. package/day1/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  744. package/day1/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  745. package/day1/backend-project/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
  746. package/day1/backend-project/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  747. package/day1/backend-project/node_modules/minimatch/dist/esm/ast.js +841 -0
  748. package/day1/backend-project/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  749. package/day1/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  750. package/day1/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  751. package/day1/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
  752. package/day1/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  753. package/day1/backend-project/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
  754. package/day1/backend-project/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  755. package/day1/backend-project/node_modules/minimatch/dist/esm/escape.js +26 -0
  756. package/day1/backend-project/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  757. package/day1/backend-project/node_modules/minimatch/dist/esm/index.d.ts +174 -0
  758. package/day1/backend-project/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  759. package/day1/backend-project/node_modules/minimatch/dist/esm/index.js +1114 -0
  760. package/day1/backend-project/node_modules/minimatch/dist/esm/index.js.map +1 -0
  761. package/day1/backend-project/node_modules/minimatch/dist/esm/package.json +3 -0
  762. package/day1/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
  763. package/day1/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  764. package/day1/backend-project/node_modules/minimatch/dist/esm/unescape.js +34 -0
  765. package/day1/backend-project/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  766. package/day1/backend-project/node_modules/minimatch/package.json +73 -0
  767. package/day1/backend-project/node_modules/ms/index.js +162 -0
  768. package/day1/backend-project/node_modules/ms/license.md +21 -0
  769. package/day1/backend-project/node_modules/ms/package.json +38 -0
  770. package/day1/backend-project/node_modules/ms/readme.md +59 -0
  771. package/day1/backend-project/node_modules/mysql2/License +19 -0
  772. package/day1/backend-project/node_modules/mysql2/README.md +114 -0
  773. package/day1/backend-project/node_modules/mysql2/index.d.ts +1 -0
  774. package/day1/backend-project/node_modules/mysql2/index.js +77 -0
  775. package/day1/backend-project/node_modules/mysql2/lib/auth_41.js +95 -0
  776. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.js +115 -0
  777. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +18 -0
  778. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/index.js +8 -0
  779. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_clear_password.js +17 -0
  780. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_native_password.js +34 -0
  781. package/day1/backend-project/node_modules/mysql2/lib/auth_plugins/sha256_password.js +74 -0
  782. package/day1/backend-project/node_modules/mysql2/lib/base/connection.js +1139 -0
  783. package/day1/backend-project/node_modules/mysql2/lib/base/pool.js +347 -0
  784. package/day1/backend-project/node_modules/mysql2/lib/commands/auth_switch.js +151 -0
  785. package/day1/backend-project/node_modules/mysql2/lib/commands/binlog_dump.js +109 -0
  786. package/day1/backend-project/node_modules/mysql2/lib/commands/change_user.js +68 -0
  787. package/day1/backend-project/node_modules/mysql2/lib/commands/client_handshake.js +386 -0
  788. package/day1/backend-project/node_modules/mysql2/lib/commands/close_statement.js +18 -0
  789. package/day1/backend-project/node_modules/mysql2/lib/commands/command.js +54 -0
  790. package/day1/backend-project/node_modules/mysql2/lib/commands/execute.js +116 -0
  791. package/day1/backend-project/node_modules/mysql2/lib/commands/index.js +29 -0
  792. package/day1/backend-project/node_modules/mysql2/lib/commands/ping.js +36 -0
  793. package/day1/backend-project/node_modules/mysql2/lib/commands/prepare.js +143 -0
  794. package/day1/backend-project/node_modules/mysql2/lib/commands/query.js +365 -0
  795. package/day1/backend-project/node_modules/mysql2/lib/commands/quit.js +29 -0
  796. package/day1/backend-project/node_modules/mysql2/lib/commands/register_slave.js +27 -0
  797. package/day1/backend-project/node_modules/mysql2/lib/commands/reset_connection.js +29 -0
  798. package/day1/backend-project/node_modules/mysql2/lib/commands/server_handshake.js +205 -0
  799. package/day1/backend-project/node_modules/mysql2/lib/compressed_protocol.js +153 -0
  800. package/day1/backend-project/node_modules/mysql2/lib/connection.js +12 -0
  801. package/day1/backend-project/node_modules/mysql2/lib/connection_config.js +300 -0
  802. package/day1/backend-project/node_modules/mysql2/lib/constants/charset_encodings.js +317 -0
  803. package/day1/backend-project/node_modules/mysql2/lib/constants/charsets.js +317 -0
  804. package/day1/backend-project/node_modules/mysql2/lib/constants/client.js +39 -0
  805. package/day1/backend-project/node_modules/mysql2/lib/constants/commands.js +37 -0
  806. package/day1/backend-project/node_modules/mysql2/lib/constants/cursor.js +9 -0
  807. package/day1/backend-project/node_modules/mysql2/lib/constants/encoding_charset.js +50 -0
  808. package/day1/backend-project/node_modules/mysql2/lib/constants/errors.js +3973 -0
  809. package/day1/backend-project/node_modules/mysql2/lib/constants/field_flags.js +20 -0
  810. package/day1/backend-project/node_modules/mysql2/lib/constants/server_status.js +44 -0
  811. package/day1/backend-project/node_modules/mysql2/lib/constants/session_track.js +11 -0
  812. package/day1/backend-project/node_modules/mysql2/lib/constants/ssl_profiles.js +11 -0
  813. package/day1/backend-project/node_modules/mysql2/lib/constants/types.js +64 -0
  814. package/day1/backend-project/node_modules/mysql2/lib/create_connection.js +10 -0
  815. package/day1/backend-project/node_modules/mysql2/lib/create_pool.js +10 -0
  816. package/day1/backend-project/node_modules/mysql2/lib/create_pool_cluster.js +9 -0
  817. package/day1/backend-project/node_modules/mysql2/lib/helpers.js +83 -0
  818. package/day1/backend-project/node_modules/mysql2/lib/packet_parser.js +195 -0
  819. package/day1/backend-project/node_modules/mysql2/lib/packets/auth_next_factor.js +35 -0
  820. package/day1/backend-project/node_modules/mysql2/lib/packets/auth_switch_request.js +38 -0
  821. package/day1/backend-project/node_modules/mysql2/lib/packets/auth_switch_request_more_data.js +33 -0
  822. package/day1/backend-project/node_modules/mysql2/lib/packets/auth_switch_response.js +30 -0
  823. package/day1/backend-project/node_modules/mysql2/lib/packets/binary_row.js +95 -0
  824. package/day1/backend-project/node_modules/mysql2/lib/packets/binlog_dump.js +33 -0
  825. package/day1/backend-project/node_modules/mysql2/lib/packets/binlog_query_statusvars.js +115 -0
  826. package/day1/backend-project/node_modules/mysql2/lib/packets/change_user.js +97 -0
  827. package/day1/backend-project/node_modules/mysql2/lib/packets/close_statement.js +21 -0
  828. package/day1/backend-project/node_modules/mysql2/lib/packets/column_definition.js +291 -0
  829. package/day1/backend-project/node_modules/mysql2/lib/packets/encode_parameter.js +69 -0
  830. package/day1/backend-project/node_modules/mysql2/lib/packets/execute.js +177 -0
  831. package/day1/backend-project/node_modules/mysql2/lib/packets/handshake.js +112 -0
  832. package/day1/backend-project/node_modules/mysql2/lib/packets/handshake_response.js +173 -0
  833. package/day1/backend-project/node_modules/mysql2/lib/packets/index.js +154 -0
  834. package/day1/backend-project/node_modules/mysql2/lib/packets/packet.js +978 -0
  835. package/day1/backend-project/node_modules/mysql2/lib/packets/prepare_statement.js +27 -0
  836. package/day1/backend-project/node_modules/mysql2/lib/packets/prepared_statement_header.js +16 -0
  837. package/day1/backend-project/node_modules/mysql2/lib/packets/query.js +102 -0
  838. package/day1/backend-project/node_modules/mysql2/lib/packets/register_slave.js +46 -0
  839. package/day1/backend-project/node_modules/mysql2/lib/packets/reset_connection.js +17 -0
  840. package/day1/backend-project/node_modules/mysql2/lib/packets/resultset_header.js +124 -0
  841. package/day1/backend-project/node_modules/mysql2/lib/packets/ssl_request.js +25 -0
  842. package/day1/backend-project/node_modules/mysql2/lib/packets/text_row.js +47 -0
  843. package/day1/backend-project/node_modules/mysql2/lib/parsers/binary_parser.js +235 -0
  844. package/day1/backend-project/node_modules/mysql2/lib/parsers/parser_cache.js +68 -0
  845. package/day1/backend-project/node_modules/mysql2/lib/parsers/static_binary_parser.js +213 -0
  846. package/day1/backend-project/node_modules/mysql2/lib/parsers/static_text_parser.js +152 -0
  847. package/day1/backend-project/node_modules/mysql2/lib/parsers/string.js +50 -0
  848. package/day1/backend-project/node_modules/mysql2/lib/parsers/text_parser.js +214 -0
  849. package/day1/backend-project/node_modules/mysql2/lib/pool.js +12 -0
  850. package/day1/backend-project/node_modules/mysql2/lib/pool_cluster.js +375 -0
  851. package/day1/backend-project/node_modules/mysql2/lib/pool_config.js +34 -0
  852. package/day1/backend-project/node_modules/mysql2/lib/pool_connection.js +81 -0
  853. package/day1/backend-project/node_modules/mysql2/lib/promise/capture_local_err.js +25 -0
  854. package/day1/backend-project/node_modules/mysql2/lib/promise/connection.js +237 -0
  855. package/day1/backend-project/node_modules/mysql2/lib/promise/inherit_events.js +27 -0
  856. package/day1/backend-project/node_modules/mysql2/lib/promise/make_done_cb.js +16 -0
  857. package/day1/backend-project/node_modules/mysql2/lib/promise/pool.js +118 -0
  858. package/day1/backend-project/node_modules/mysql2/lib/promise/pool_cluster.js +59 -0
  859. package/day1/backend-project/node_modules/mysql2/lib/promise/pool_connection.js +19 -0
  860. package/day1/backend-project/node_modules/mysql2/lib/promise/prepared_statement_info.js +35 -0
  861. package/day1/backend-project/node_modules/mysql2/lib/results_stream.js +38 -0
  862. package/day1/backend-project/node_modules/mysql2/lib/server.js +37 -0
  863. package/day1/backend-project/node_modules/mysql2/lib/tracing.js +81 -0
  864. package/day1/backend-project/node_modules/mysql2/package.json +95 -0
  865. package/day1/backend-project/node_modules/mysql2/promise.d.ts +141 -0
  866. package/day1/backend-project/node_modules/mysql2/promise.js +209 -0
  867. package/day1/backend-project/node_modules/mysql2/typings/mysql/LICENSE.txt +15 -0
  868. package/day1/backend-project/node_modules/mysql2/typings/mysql/index.d.ts +93 -0
  869. package/day1/backend-project/node_modules/mysql2/typings/mysql/info.txt +1 -0
  870. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/Auth.d.ts +30 -0
  871. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/Connection.d.ts +456 -0
  872. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/Pool.d.ts +78 -0
  873. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/PoolCluster.d.ts +92 -0
  874. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/PoolConnection.d.ts +11 -0
  875. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/Server.d.ts +11 -0
  876. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/Tracing.d.ts +71 -0
  877. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/constants/CharsetToEncoding.d.ts +8 -0
  878. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Charsets.d.ts +326 -0
  879. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Types.d.ts +70 -0
  880. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/constants/index.d.ts +5 -0
  881. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/ParserCache.d.ts +4 -0
  882. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/index.d.ts +18 -0
  883. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/typeCast.d.ts +54 -0
  884. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts +10 -0
  885. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +27 -0
  886. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/OkPacket.d.ts +23 -0
  887. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +13 -0
  888. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ResultSetHeader.d.ts +18 -0
  889. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/RowDataPacket.d.ts +9 -0
  890. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/index.d.ts +28 -0
  891. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/ErrorPacketParams.d.ts +6 -0
  892. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/OkPacketParams.d.ts +9 -0
  893. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +41 -0
  894. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Prepare.d.ts +65 -0
  895. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Query.d.ts +235 -0
  896. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +41 -0
  897. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Sequence.d.ts +5 -0
  898. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +17 -0
  899. package/day1/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +18 -0
  900. package/day1/backend-project/node_modules/named-placeholders/LICENSE +21 -0
  901. package/day1/backend-project/node_modules/named-placeholders/README.md +27 -0
  902. package/day1/backend-project/node_modules/named-placeholders/index.js +179 -0
  903. package/day1/backend-project/node_modules/named-placeholders/package.json +36 -0
  904. package/day1/backend-project/node_modules/negotiator/HISTORY.md +114 -0
  905. package/day1/backend-project/node_modules/negotiator/LICENSE +24 -0
  906. package/day1/backend-project/node_modules/negotiator/README.md +212 -0
  907. package/day1/backend-project/node_modules/negotiator/index.js +83 -0
  908. package/day1/backend-project/node_modules/negotiator/lib/charset.js +169 -0
  909. package/day1/backend-project/node_modules/negotiator/lib/encoding.js +205 -0
  910. package/day1/backend-project/node_modules/negotiator/lib/language.js +179 -0
  911. package/day1/backend-project/node_modules/negotiator/lib/mediaType.js +294 -0
  912. package/day1/backend-project/node_modules/negotiator/package.json +43 -0
  913. package/day1/backend-project/node_modules/nodemon/.prettierrc.json +3 -0
  914. package/day1/backend-project/node_modules/nodemon/LICENSE +21 -0
  915. package/day1/backend-project/node_modules/nodemon/README.md +439 -0
  916. package/day1/backend-project/node_modules/nodemon/bin/nodemon.js +16 -0
  917. package/day1/backend-project/node_modules/nodemon/bin/windows-kill.exe +0 -0
  918. package/day1/backend-project/node_modules/nodemon/doc/cli/authors.txt +8 -0
  919. package/day1/backend-project/node_modules/nodemon/doc/cli/config.txt +44 -0
  920. package/day1/backend-project/node_modules/nodemon/doc/cli/help.txt +29 -0
  921. package/day1/backend-project/node_modules/nodemon/doc/cli/logo.txt +20 -0
  922. package/day1/backend-project/node_modules/nodemon/doc/cli/options.txt +36 -0
  923. package/day1/backend-project/node_modules/nodemon/doc/cli/topics.txt +8 -0
  924. package/day1/backend-project/node_modules/nodemon/doc/cli/usage.txt +3 -0
  925. package/day1/backend-project/node_modules/nodemon/doc/cli/whoami.txt +9 -0
  926. package/day1/backend-project/node_modules/nodemon/index.d.ts +124 -0
  927. package/day1/backend-project/node_modules/nodemon/jsconfig.json +7 -0
  928. package/day1/backend-project/node_modules/nodemon/lib/cli/index.js +49 -0
  929. package/day1/backend-project/node_modules/nodemon/lib/cli/parse.js +230 -0
  930. package/day1/backend-project/node_modules/nodemon/lib/config/command.js +43 -0
  931. package/day1/backend-project/node_modules/nodemon/lib/config/defaults.js +34 -0
  932. package/day1/backend-project/node_modules/nodemon/lib/config/exec.js +240 -0
  933. package/day1/backend-project/node_modules/nodemon/lib/config/index.js +93 -0
  934. package/day1/backend-project/node_modules/nodemon/lib/config/load.js +225 -0
  935. package/day1/backend-project/node_modules/nodemon/lib/help/index.js +27 -0
  936. package/day1/backend-project/node_modules/nodemon/lib/index.js +1 -0
  937. package/day1/backend-project/node_modules/nodemon/lib/monitor/index.js +4 -0
  938. package/day1/backend-project/node_modules/nodemon/lib/monitor/match.js +288 -0
  939. package/day1/backend-project/node_modules/nodemon/lib/monitor/run.js +562 -0
  940. package/day1/backend-project/node_modules/nodemon/lib/monitor/signals.js +34 -0
  941. package/day1/backend-project/node_modules/nodemon/lib/monitor/watch.js +244 -0
  942. package/day1/backend-project/node_modules/nodemon/lib/nodemon.js +317 -0
  943. package/day1/backend-project/node_modules/nodemon/lib/rules/add.js +89 -0
  944. package/day1/backend-project/node_modules/nodemon/lib/rules/index.js +53 -0
  945. package/day1/backend-project/node_modules/nodemon/lib/rules/parse.js +43 -0
  946. package/day1/backend-project/node_modules/nodemon/lib/spawn.js +74 -0
  947. package/day1/backend-project/node_modules/nodemon/lib/utils/bus.js +44 -0
  948. package/day1/backend-project/node_modules/nodemon/lib/utils/clone.js +40 -0
  949. package/day1/backend-project/node_modules/nodemon/lib/utils/colour.js +26 -0
  950. package/day1/backend-project/node_modules/nodemon/lib/utils/index.js +103 -0
  951. package/day1/backend-project/node_modules/nodemon/lib/utils/log.js +82 -0
  952. package/day1/backend-project/node_modules/nodemon/lib/utils/merge.js +47 -0
  953. package/day1/backend-project/node_modules/nodemon/lib/version.js +100 -0
  954. package/day1/backend-project/node_modules/nodemon/package.json +78 -0
  955. package/day1/backend-project/node_modules/normalize-path/LICENSE +21 -0
  956. package/day1/backend-project/node_modules/normalize-path/README.md +127 -0
  957. package/day1/backend-project/node_modules/normalize-path/index.js +35 -0
  958. package/day1/backend-project/node_modules/normalize-path/package.json +77 -0
  959. package/day1/backend-project/node_modules/object-assign/index.js +90 -0
  960. package/day1/backend-project/node_modules/object-assign/license +21 -0
  961. package/day1/backend-project/node_modules/object-assign/package.json +42 -0
  962. package/day1/backend-project/node_modules/object-assign/readme.md +61 -0
  963. package/day1/backend-project/node_modules/object-inspect/.eslintrc +53 -0
  964. package/day1/backend-project/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  965. package/day1/backend-project/node_modules/object-inspect/.nycrc +13 -0
  966. package/day1/backend-project/node_modules/object-inspect/CHANGELOG.md +424 -0
  967. package/day1/backend-project/node_modules/object-inspect/LICENSE +21 -0
  968. package/day1/backend-project/node_modules/object-inspect/example/all.js +23 -0
  969. package/day1/backend-project/node_modules/object-inspect/example/circular.js +6 -0
  970. package/day1/backend-project/node_modules/object-inspect/example/fn.js +5 -0
  971. package/day1/backend-project/node_modules/object-inspect/example/inspect.js +10 -0
  972. package/day1/backend-project/node_modules/object-inspect/index.js +544 -0
  973. package/day1/backend-project/node_modules/object-inspect/package-support.json +20 -0
  974. package/day1/backend-project/node_modules/object-inspect/package.json +105 -0
  975. package/day1/backend-project/node_modules/object-inspect/readme.markdown +84 -0
  976. package/day1/backend-project/node_modules/object-inspect/test/bigint.js +58 -0
  977. package/day1/backend-project/node_modules/object-inspect/test/browser/dom.js +15 -0
  978. package/day1/backend-project/node_modules/object-inspect/test/circular.js +16 -0
  979. package/day1/backend-project/node_modules/object-inspect/test/deep.js +12 -0
  980. package/day1/backend-project/node_modules/object-inspect/test/element.js +53 -0
  981. package/day1/backend-project/node_modules/object-inspect/test/err.js +48 -0
  982. package/day1/backend-project/node_modules/object-inspect/test/fakes.js +29 -0
  983. package/day1/backend-project/node_modules/object-inspect/test/fn.js +76 -0
  984. package/day1/backend-project/node_modules/object-inspect/test/global.js +17 -0
  985. package/day1/backend-project/node_modules/object-inspect/test/has.js +15 -0
  986. package/day1/backend-project/node_modules/object-inspect/test/holes.js +15 -0
  987. package/day1/backend-project/node_modules/object-inspect/test/indent-option.js +271 -0
  988. package/day1/backend-project/node_modules/object-inspect/test/inspect.js +139 -0
  989. package/day1/backend-project/node_modules/object-inspect/test/lowbyte.js +12 -0
  990. package/day1/backend-project/node_modules/object-inspect/test/number.js +58 -0
  991. package/day1/backend-project/node_modules/object-inspect/test/quoteStyle.js +26 -0
  992. package/day1/backend-project/node_modules/object-inspect/test/toStringTag.js +40 -0
  993. package/day1/backend-project/node_modules/object-inspect/test/undef.js +12 -0
  994. package/day1/backend-project/node_modules/object-inspect/test/values.js +261 -0
  995. package/day1/backend-project/node_modules/object-inspect/test-core-js.js +26 -0
  996. package/day1/backend-project/node_modules/object-inspect/util.inspect.js +1 -0
  997. package/day1/backend-project/node_modules/on-finished/HISTORY.md +98 -0
  998. package/day1/backend-project/node_modules/on-finished/LICENSE +23 -0
  999. package/day1/backend-project/node_modules/on-finished/README.md +162 -0
  1000. package/day1/backend-project/node_modules/on-finished/index.js +234 -0
  1001. package/day1/backend-project/node_modules/on-finished/package.json +39 -0
  1002. package/day1/backend-project/node_modules/once/LICENSE +15 -0
  1003. package/day1/backend-project/node_modules/once/README.md +79 -0
  1004. package/day1/backend-project/node_modules/once/once.js +42 -0
  1005. package/day1/backend-project/node_modules/once/package.json +33 -0
  1006. package/day1/backend-project/node_modules/parseurl/HISTORY.md +58 -0
  1007. package/day1/backend-project/node_modules/parseurl/LICENSE +24 -0
  1008. package/day1/backend-project/node_modules/parseurl/README.md +133 -0
  1009. package/day1/backend-project/node_modules/parseurl/index.js +158 -0
  1010. package/day1/backend-project/node_modules/parseurl/package.json +40 -0
  1011. package/day1/backend-project/node_modules/path-to-regexp/LICENSE +21 -0
  1012. package/day1/backend-project/node_modules/path-to-regexp/Readme.md +224 -0
  1013. package/day1/backend-project/node_modules/path-to-regexp/dist/index.d.ts +147 -0
  1014. package/day1/backend-project/node_modules/path-to-regexp/dist/index.js +431 -0
  1015. package/day1/backend-project/node_modules/path-to-regexp/dist/index.js.map +1 -0
  1016. package/day1/backend-project/node_modules/path-to-regexp/package.json +64 -0
  1017. package/day1/backend-project/node_modules/picomatch/LICENSE +21 -0
  1018. package/day1/backend-project/node_modules/picomatch/README.md +716 -0
  1019. package/day1/backend-project/node_modules/picomatch/index.js +3 -0
  1020. package/day1/backend-project/node_modules/picomatch/lib/constants.js +184 -0
  1021. package/day1/backend-project/node_modules/picomatch/lib/parse.js +1392 -0
  1022. package/day1/backend-project/node_modules/picomatch/lib/picomatch.js +342 -0
  1023. package/day1/backend-project/node_modules/picomatch/lib/scan.js +391 -0
  1024. package/day1/backend-project/node_modules/picomatch/lib/utils.js +64 -0
  1025. package/day1/backend-project/node_modules/picomatch/package.json +81 -0
  1026. package/day1/backend-project/node_modules/proxy-addr/HISTORY.md +161 -0
  1027. package/day1/backend-project/node_modules/proxy-addr/LICENSE +22 -0
  1028. package/day1/backend-project/node_modules/proxy-addr/README.md +139 -0
  1029. package/day1/backend-project/node_modules/proxy-addr/index.js +327 -0
  1030. package/day1/backend-project/node_modules/proxy-addr/package.json +47 -0
  1031. package/day1/backend-project/node_modules/pstree.remy/.travis.yml +8 -0
  1032. package/day1/backend-project/node_modules/pstree.remy/LICENSE +7 -0
  1033. package/day1/backend-project/node_modules/pstree.remy/README.md +26 -0
  1034. package/day1/backend-project/node_modules/pstree.remy/lib/index.js +37 -0
  1035. package/day1/backend-project/node_modules/pstree.remy/lib/tree.js +37 -0
  1036. package/day1/backend-project/node_modules/pstree.remy/lib/utils.js +53 -0
  1037. package/day1/backend-project/node_modules/pstree.remy/package.json +33 -0
  1038. package/day1/backend-project/node_modules/pstree.remy/tests/fixtures/index.js +13 -0
  1039. package/day1/backend-project/node_modules/pstree.remy/tests/fixtures/out1 +10 -0
  1040. package/day1/backend-project/node_modules/pstree.remy/tests/fixtures/out2 +29 -0
  1041. package/day1/backend-project/node_modules/pstree.remy/tests/index.test.js +51 -0
  1042. package/day1/backend-project/node_modules/qs/.editorconfig +46 -0
  1043. package/day1/backend-project/node_modules/qs/.github/FUNDING.yml +12 -0
  1044. package/day1/backend-project/node_modules/qs/.github/SECURITY.md +11 -0
  1045. package/day1/backend-project/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  1046. package/day1/backend-project/node_modules/qs/.nycrc +13 -0
  1047. package/day1/backend-project/node_modules/qs/CHANGELOG.md +822 -0
  1048. package/day1/backend-project/node_modules/qs/LICENSE.md +29 -0
  1049. package/day1/backend-project/node_modules/qs/README.md +758 -0
  1050. package/day1/backend-project/node_modules/qs/dist/qs.js +141 -0
  1051. package/day1/backend-project/node_modules/qs/eslint.config.mjs +57 -0
  1052. package/day1/backend-project/node_modules/qs/lib/formats.js +23 -0
  1053. package/day1/backend-project/node_modules/qs/lib/index.js +11 -0
  1054. package/day1/backend-project/node_modules/qs/lib/parse.js +403 -0
  1055. package/day1/backend-project/node_modules/qs/lib/stringify.js +363 -0
  1056. package/day1/backend-project/node_modules/qs/lib/utils.js +342 -0
  1057. package/day1/backend-project/node_modules/qs/package.json +94 -0
  1058. package/day1/backend-project/node_modules/qs/test/empty-keys-cases.js +267 -0
  1059. package/day1/backend-project/node_modules/qs/test/parse.js +1703 -0
  1060. package/day1/backend-project/node_modules/qs/test/stringify.js +1448 -0
  1061. package/day1/backend-project/node_modules/qs/test/utils.js +432 -0
  1062. package/day1/backend-project/node_modules/range-parser/HISTORY.md +56 -0
  1063. package/day1/backend-project/node_modules/range-parser/LICENSE +23 -0
  1064. package/day1/backend-project/node_modules/range-parser/README.md +84 -0
  1065. package/day1/backend-project/node_modules/range-parser/index.js +162 -0
  1066. package/day1/backend-project/node_modules/range-parser/package.json +44 -0
  1067. package/day1/backend-project/node_modules/raw-body/LICENSE +22 -0
  1068. package/day1/backend-project/node_modules/raw-body/README.md +223 -0
  1069. package/day1/backend-project/node_modules/raw-body/index.d.ts +85 -0
  1070. package/day1/backend-project/node_modules/raw-body/index.js +336 -0
  1071. package/day1/backend-project/node_modules/raw-body/package.json +46 -0
  1072. package/day1/backend-project/node_modules/readdirp/LICENSE +21 -0
  1073. package/day1/backend-project/node_modules/readdirp/README.md +122 -0
  1074. package/day1/backend-project/node_modules/readdirp/index.d.ts +43 -0
  1075. package/day1/backend-project/node_modules/readdirp/index.js +287 -0
  1076. package/day1/backend-project/node_modules/readdirp/package.json +122 -0
  1077. package/day1/backend-project/node_modules/router/HISTORY.md +228 -0
  1078. package/day1/backend-project/node_modules/router/LICENSE +23 -0
  1079. package/day1/backend-project/node_modules/router/README.md +416 -0
  1080. package/day1/backend-project/node_modules/router/index.js +748 -0
  1081. package/day1/backend-project/node_modules/router/lib/layer.js +247 -0
  1082. package/day1/backend-project/node_modules/router/lib/route.js +242 -0
  1083. package/day1/backend-project/node_modules/router/package.json +44 -0
  1084. package/day1/backend-project/node_modules/safe-buffer/LICENSE +21 -0
  1085. package/day1/backend-project/node_modules/safe-buffer/README.md +584 -0
  1086. package/day1/backend-project/node_modules/safe-buffer/index.d.ts +187 -0
  1087. package/day1/backend-project/node_modules/safe-buffer/index.js +65 -0
  1088. package/day1/backend-project/node_modules/safe-buffer/package.json +51 -0
  1089. package/day1/backend-project/node_modules/safer-buffer/LICENSE +21 -0
  1090. package/day1/backend-project/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  1091. package/day1/backend-project/node_modules/safer-buffer/Readme.md +156 -0
  1092. package/day1/backend-project/node_modules/safer-buffer/dangerous.js +58 -0
  1093. package/day1/backend-project/node_modules/safer-buffer/package.json +34 -0
  1094. package/day1/backend-project/node_modules/safer-buffer/safer.js +77 -0
  1095. package/day1/backend-project/node_modules/safer-buffer/tests.js +406 -0
  1096. package/day1/backend-project/node_modules/semver/LICENSE +15 -0
  1097. package/day1/backend-project/node_modules/semver/README.md +680 -0
  1098. package/day1/backend-project/node_modules/semver/bin/semver.js +195 -0
  1099. package/day1/backend-project/node_modules/semver/classes/comparator.js +143 -0
  1100. package/day1/backend-project/node_modules/semver/classes/index.js +7 -0
  1101. package/day1/backend-project/node_modules/semver/classes/range.js +564 -0
  1102. package/day1/backend-project/node_modules/semver/classes/semver.js +333 -0
  1103. package/day1/backend-project/node_modules/semver/functions/clean.js +8 -0
  1104. package/day1/backend-project/node_modules/semver/functions/cmp.js +54 -0
  1105. package/day1/backend-project/node_modules/semver/functions/coerce.js +62 -0
  1106. package/day1/backend-project/node_modules/semver/functions/compare-build.js +9 -0
  1107. package/day1/backend-project/node_modules/semver/functions/compare-loose.js +5 -0
  1108. package/day1/backend-project/node_modules/semver/functions/compare.js +7 -0
  1109. package/day1/backend-project/node_modules/semver/functions/diff.js +60 -0
  1110. package/day1/backend-project/node_modules/semver/functions/eq.js +5 -0
  1111. package/day1/backend-project/node_modules/semver/functions/gt.js +5 -0
  1112. package/day1/backend-project/node_modules/semver/functions/gte.js +5 -0
  1113. package/day1/backend-project/node_modules/semver/functions/inc.js +21 -0
  1114. package/day1/backend-project/node_modules/semver/functions/lt.js +5 -0
  1115. package/day1/backend-project/node_modules/semver/functions/lte.js +5 -0
  1116. package/day1/backend-project/node_modules/semver/functions/major.js +5 -0
  1117. package/day1/backend-project/node_modules/semver/functions/minor.js +5 -0
  1118. package/day1/backend-project/node_modules/semver/functions/neq.js +5 -0
  1119. package/day1/backend-project/node_modules/semver/functions/parse.js +18 -0
  1120. package/day1/backend-project/node_modules/semver/functions/patch.js +5 -0
  1121. package/day1/backend-project/node_modules/semver/functions/prerelease.js +8 -0
  1122. package/day1/backend-project/node_modules/semver/functions/rcompare.js +5 -0
  1123. package/day1/backend-project/node_modules/semver/functions/rsort.js +5 -0
  1124. package/day1/backend-project/node_modules/semver/functions/satisfies.js +12 -0
  1125. package/day1/backend-project/node_modules/semver/functions/sort.js +5 -0
  1126. package/day1/backend-project/node_modules/semver/functions/truncate.js +48 -0
  1127. package/day1/backend-project/node_modules/semver/functions/valid.js +8 -0
  1128. package/day1/backend-project/node_modules/semver/index.js +93 -0
  1129. package/day1/backend-project/node_modules/semver/internal/constants.js +37 -0
  1130. package/day1/backend-project/node_modules/semver/internal/debug.js +11 -0
  1131. package/day1/backend-project/node_modules/semver/internal/identifiers.js +29 -0
  1132. package/day1/backend-project/node_modules/semver/internal/lrucache.js +42 -0
  1133. package/day1/backend-project/node_modules/semver/internal/parse-options.js +17 -0
  1134. package/day1/backend-project/node_modules/semver/internal/re.js +223 -0
  1135. package/day1/backend-project/node_modules/semver/package.json +78 -0
  1136. package/day1/backend-project/node_modules/semver/preload.js +4 -0
  1137. package/day1/backend-project/node_modules/semver/range.bnf +17 -0
  1138. package/day1/backend-project/node_modules/semver/ranges/gtr.js +6 -0
  1139. package/day1/backend-project/node_modules/semver/ranges/intersects.js +9 -0
  1140. package/day1/backend-project/node_modules/semver/ranges/ltr.js +6 -0
  1141. package/day1/backend-project/node_modules/semver/ranges/max-satisfying.js +27 -0
  1142. package/day1/backend-project/node_modules/semver/ranges/min-satisfying.js +26 -0
  1143. package/day1/backend-project/node_modules/semver/ranges/min-version.js +63 -0
  1144. package/day1/backend-project/node_modules/semver/ranges/outside.js +82 -0
  1145. package/day1/backend-project/node_modules/semver/ranges/simplify.js +49 -0
  1146. package/day1/backend-project/node_modules/semver/ranges/subset.js +249 -0
  1147. package/day1/backend-project/node_modules/semver/ranges/to-comparators.js +10 -0
  1148. package/day1/backend-project/node_modules/semver/ranges/valid.js +13 -0
  1149. package/day1/backend-project/node_modules/send/LICENSE +23 -0
  1150. package/day1/backend-project/node_modules/send/README.md +317 -0
  1151. package/day1/backend-project/node_modules/send/index.js +997 -0
  1152. package/day1/backend-project/node_modules/send/package.json +63 -0
  1153. package/day1/backend-project/node_modules/serve-static/LICENSE +25 -0
  1154. package/day1/backend-project/node_modules/serve-static/README.md +253 -0
  1155. package/day1/backend-project/node_modules/serve-static/index.js +208 -0
  1156. package/day1/backend-project/node_modules/serve-static/package.json +44 -0
  1157. package/day1/backend-project/node_modules/setprototypeof/LICENSE +13 -0
  1158. package/day1/backend-project/node_modules/setprototypeof/README.md +31 -0
  1159. package/day1/backend-project/node_modules/setprototypeof/index.d.ts +2 -0
  1160. package/day1/backend-project/node_modules/setprototypeof/index.js +17 -0
  1161. package/day1/backend-project/node_modules/setprototypeof/package.json +38 -0
  1162. package/day1/backend-project/node_modules/setprototypeof/test/index.js +24 -0
  1163. package/day1/backend-project/node_modules/side-channel/.editorconfig +9 -0
  1164. package/day1/backend-project/node_modules/side-channel/.eslintrc +12 -0
  1165. package/day1/backend-project/node_modules/side-channel/.github/FUNDING.yml +12 -0
  1166. package/day1/backend-project/node_modules/side-channel/.nycrc +13 -0
  1167. package/day1/backend-project/node_modules/side-channel/CHANGELOG.md +110 -0
  1168. package/day1/backend-project/node_modules/side-channel/LICENSE +21 -0
  1169. package/day1/backend-project/node_modules/side-channel/README.md +61 -0
  1170. package/day1/backend-project/node_modules/side-channel/index.d.ts +14 -0
  1171. package/day1/backend-project/node_modules/side-channel/index.js +43 -0
  1172. package/day1/backend-project/node_modules/side-channel/package.json +85 -0
  1173. package/day1/backend-project/node_modules/side-channel/test/index.js +104 -0
  1174. package/day1/backend-project/node_modules/side-channel/tsconfig.json +9 -0
  1175. package/day1/backend-project/node_modules/side-channel-list/.editorconfig +9 -0
  1176. package/day1/backend-project/node_modules/side-channel-list/.eslintrc +11 -0
  1177. package/day1/backend-project/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  1178. package/day1/backend-project/node_modules/side-channel-list/.nycrc +13 -0
  1179. package/day1/backend-project/node_modules/side-channel-list/CHANGELOG.md +36 -0
  1180. package/day1/backend-project/node_modules/side-channel-list/LICENSE +21 -0
  1181. package/day1/backend-project/node_modules/side-channel-list/README.md +62 -0
  1182. package/day1/backend-project/node_modules/side-channel-list/index.d.ts +13 -0
  1183. package/day1/backend-project/node_modules/side-channel-list/index.js +111 -0
  1184. package/day1/backend-project/node_modules/side-channel-list/list.d.ts +14 -0
  1185. package/day1/backend-project/node_modules/side-channel-list/package.json +77 -0
  1186. package/day1/backend-project/node_modules/side-channel-list/test/index.js +154 -0
  1187. package/day1/backend-project/node_modules/side-channel-list/tsconfig.json +9 -0
  1188. package/day1/backend-project/node_modules/side-channel-map/.editorconfig +9 -0
  1189. package/day1/backend-project/node_modules/side-channel-map/.eslintrc +11 -0
  1190. package/day1/backend-project/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  1191. package/day1/backend-project/node_modules/side-channel-map/.nycrc +13 -0
  1192. package/day1/backend-project/node_modules/side-channel-map/CHANGELOG.md +22 -0
  1193. package/day1/backend-project/node_modules/side-channel-map/LICENSE +21 -0
  1194. package/day1/backend-project/node_modules/side-channel-map/README.md +62 -0
  1195. package/day1/backend-project/node_modules/side-channel-map/index.d.ts +15 -0
  1196. package/day1/backend-project/node_modules/side-channel-map/index.js +68 -0
  1197. package/day1/backend-project/node_modules/side-channel-map/package.json +80 -0
  1198. package/day1/backend-project/node_modules/side-channel-map/test/index.js +114 -0
  1199. package/day1/backend-project/node_modules/side-channel-map/tsconfig.json +9 -0
  1200. package/day1/backend-project/node_modules/side-channel-weakmap/.editorconfig +9 -0
  1201. package/day1/backend-project/node_modules/side-channel-weakmap/.eslintrc +12 -0
  1202. package/day1/backend-project/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  1203. package/day1/backend-project/node_modules/side-channel-weakmap/.nycrc +13 -0
  1204. package/day1/backend-project/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  1205. package/day1/backend-project/node_modules/side-channel-weakmap/LICENSE +21 -0
  1206. package/day1/backend-project/node_modules/side-channel-weakmap/README.md +62 -0
  1207. package/day1/backend-project/node_modules/side-channel-weakmap/index.d.ts +15 -0
  1208. package/day1/backend-project/node_modules/side-channel-weakmap/index.js +84 -0
  1209. package/day1/backend-project/node_modules/side-channel-weakmap/package.json +87 -0
  1210. package/day1/backend-project/node_modules/side-channel-weakmap/test/index.js +114 -0
  1211. package/day1/backend-project/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  1212. package/day1/backend-project/node_modules/simple-update-notifier/LICENSE +21 -0
  1213. package/day1/backend-project/node_modules/simple-update-notifier/README.md +82 -0
  1214. package/day1/backend-project/node_modules/simple-update-notifier/build/index.d.ts +13 -0
  1215. package/day1/backend-project/node_modules/simple-update-notifier/build/index.js +210 -0
  1216. package/day1/backend-project/node_modules/simple-update-notifier/package.json +100 -0
  1217. package/day1/backend-project/node_modules/simple-update-notifier/src/borderedText.ts +12 -0
  1218. package/day1/backend-project/node_modules/simple-update-notifier/src/cache.spec.ts +17 -0
  1219. package/day1/backend-project/node_modules/simple-update-notifier/src/cache.ts +44 -0
  1220. package/day1/backend-project/node_modules/simple-update-notifier/src/getDistVersion.spec.ts +35 -0
  1221. package/day1/backend-project/node_modules/simple-update-notifier/src/getDistVersion.ts +29 -0
  1222. package/day1/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts +82 -0
  1223. package/day1/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.ts +40 -0
  1224. package/day1/backend-project/node_modules/simple-update-notifier/src/index.spec.ts +27 -0
  1225. package/day1/backend-project/node_modules/simple-update-notifier/src/index.ts +34 -0
  1226. package/day1/backend-project/node_modules/simple-update-notifier/src/isNpmOrYarn.ts +12 -0
  1227. package/day1/backend-project/node_modules/simple-update-notifier/src/types.ts +8 -0
  1228. package/day1/backend-project/node_modules/sql-escaper/LICENSE +21 -0
  1229. package/day1/backend-project/node_modules/sql-escaper/README.md +424 -0
  1230. package/day1/backend-project/node_modules/sql-escaper/lib/index.d.ts +15 -0
  1231. package/day1/backend-project/node_modules/sql-escaper/lib/index.js +398 -0
  1232. package/day1/backend-project/node_modules/sql-escaper/lib/index.mjs +305 -0
  1233. package/day1/backend-project/node_modules/sql-escaper/lib/types.d.ts +5 -0
  1234. package/day1/backend-project/node_modules/sql-escaper/lib/types.js +2 -0
  1235. package/day1/backend-project/node_modules/sql-escaper/package.json +81 -0
  1236. package/day1/backend-project/node_modules/statuses/HISTORY.md +87 -0
  1237. package/day1/backend-project/node_modules/statuses/LICENSE +23 -0
  1238. package/day1/backend-project/node_modules/statuses/README.md +139 -0
  1239. package/day1/backend-project/node_modules/statuses/codes.json +65 -0
  1240. package/day1/backend-project/node_modules/statuses/index.js +146 -0
  1241. package/day1/backend-project/node_modules/statuses/package.json +49 -0
  1242. package/day1/backend-project/node_modules/supports-color/browser.js +5 -0
  1243. package/day1/backend-project/node_modules/supports-color/index.js +131 -0
  1244. package/day1/backend-project/node_modules/supports-color/license +9 -0
  1245. package/day1/backend-project/node_modules/supports-color/package.json +53 -0
  1246. package/day1/backend-project/node_modules/supports-color/readme.md +66 -0
  1247. package/day1/backend-project/node_modules/to-regex-range/LICENSE +21 -0
  1248. package/day1/backend-project/node_modules/to-regex-range/README.md +305 -0
  1249. package/day1/backend-project/node_modules/to-regex-range/index.js +288 -0
  1250. package/day1/backend-project/node_modules/to-regex-range/package.json +88 -0
  1251. package/day1/backend-project/node_modules/toidentifier/HISTORY.md +9 -0
  1252. package/day1/backend-project/node_modules/toidentifier/LICENSE +21 -0
  1253. package/day1/backend-project/node_modules/toidentifier/README.md +61 -0
  1254. package/day1/backend-project/node_modules/toidentifier/index.js +32 -0
  1255. package/day1/backend-project/node_modules/toidentifier/package.json +38 -0
  1256. package/day1/backend-project/node_modules/touch/LICENSE +15 -0
  1257. package/day1/backend-project/node_modules/touch/README.md +52 -0
  1258. package/day1/backend-project/node_modules/touch/bin/nodetouch.js +112 -0
  1259. package/day1/backend-project/node_modules/touch/index.js +224 -0
  1260. package/day1/backend-project/node_modules/touch/package.json +25 -0
  1261. package/day1/backend-project/node_modules/type-is/HISTORY.md +292 -0
  1262. package/day1/backend-project/node_modules/type-is/LICENSE +23 -0
  1263. package/day1/backend-project/node_modules/type-is/README.md +198 -0
  1264. package/day1/backend-project/node_modules/type-is/index.js +240 -0
  1265. package/day1/backend-project/node_modules/type-is/node_modules/content-type/LICENSE +22 -0
  1266. package/day1/backend-project/node_modules/type-is/node_modules/content-type/README.md +69 -0
  1267. package/day1/backend-project/node_modules/type-is/node_modules/content-type/dist/index.d.ts +26 -0
  1268. package/day1/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js +170 -0
  1269. package/day1/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js.map +1 -0
  1270. package/day1/backend-project/node_modules/type-is/node_modules/content-type/package.json +52 -0
  1271. package/day1/backend-project/node_modules/type-is/package.json +51 -0
  1272. package/day1/backend-project/node_modules/undefsafe/.github/workflows/release.yml +25 -0
  1273. package/day1/backend-project/node_modules/undefsafe/.jscsrc +13 -0
  1274. package/day1/backend-project/node_modules/undefsafe/.jshintrc +16 -0
  1275. package/day1/backend-project/node_modules/undefsafe/.travis.yml +18 -0
  1276. package/day1/backend-project/node_modules/undefsafe/LICENSE +22 -0
  1277. package/day1/backend-project/node_modules/undefsafe/README.md +63 -0
  1278. package/day1/backend-project/node_modules/undefsafe/example.js +14 -0
  1279. package/day1/backend-project/node_modules/undefsafe/lib/undefsafe.js +125 -0
  1280. package/day1/backend-project/node_modules/undefsafe/package.json +34 -0
  1281. package/day1/backend-project/node_modules/undici-types/LICENSE +21 -0
  1282. package/day1/backend-project/node_modules/undici-types/README.md +6 -0
  1283. package/day1/backend-project/node_modules/undici-types/agent.d.ts +32 -0
  1284. package/day1/backend-project/node_modules/undici-types/api.d.ts +43 -0
  1285. package/day1/backend-project/node_modules/undici-types/balanced-pool.d.ts +30 -0
  1286. package/day1/backend-project/node_modules/undici-types/cache-interceptor.d.ts +179 -0
  1287. package/day1/backend-project/node_modules/undici-types/cache.d.ts +36 -0
  1288. package/day1/backend-project/node_modules/undici-types/client-stats.d.ts +15 -0
  1289. package/day1/backend-project/node_modules/undici-types/client.d.ts +123 -0
  1290. package/day1/backend-project/node_modules/undici-types/connector.d.ts +36 -0
  1291. package/day1/backend-project/node_modules/undici-types/content-type.d.ts +21 -0
  1292. package/day1/backend-project/node_modules/undici-types/cookies.d.ts +30 -0
  1293. package/day1/backend-project/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  1294. package/day1/backend-project/node_modules/undici-types/dispatcher.d.ts +279 -0
  1295. package/day1/backend-project/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  1296. package/day1/backend-project/node_modules/undici-types/errors.d.ts +177 -0
  1297. package/day1/backend-project/node_modules/undici-types/eventsource.d.ts +66 -0
  1298. package/day1/backend-project/node_modules/undici-types/fetch.d.ts +211 -0
  1299. package/day1/backend-project/node_modules/undici-types/formdata.d.ts +108 -0
  1300. package/day1/backend-project/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  1301. package/day1/backend-project/node_modules/undici-types/global-origin.d.ts +7 -0
  1302. package/day1/backend-project/node_modules/undici-types/h2c-client.d.ts +73 -0
  1303. package/day1/backend-project/node_modules/undici-types/handlers.d.ts +15 -0
  1304. package/day1/backend-project/node_modules/undici-types/header.d.ts +160 -0
  1305. package/day1/backend-project/node_modules/undici-types/index.d.ts +91 -0
  1306. package/day1/backend-project/node_modules/undici-types/interceptors.d.ts +80 -0
  1307. package/day1/backend-project/node_modules/undici-types/mock-agent.d.ts +68 -0
  1308. package/day1/backend-project/node_modules/undici-types/mock-call-history.d.ts +111 -0
  1309. package/day1/backend-project/node_modules/undici-types/mock-client.d.ts +27 -0
  1310. package/day1/backend-project/node_modules/undici-types/mock-errors.d.ts +12 -0
  1311. package/day1/backend-project/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  1312. package/day1/backend-project/node_modules/undici-types/mock-pool.d.ts +27 -0
  1313. package/day1/backend-project/node_modules/undici-types/package.json +55 -0
  1314. package/day1/backend-project/node_modules/undici-types/patch.d.ts +29 -0
  1315. package/day1/backend-project/node_modules/undici-types/pool-stats.d.ts +19 -0
  1316. package/day1/backend-project/node_modules/undici-types/pool.d.ts +41 -0
  1317. package/day1/backend-project/node_modules/undici-types/proxy-agent.d.ts +29 -0
  1318. package/day1/backend-project/node_modules/undici-types/readable.d.ts +68 -0
  1319. package/day1/backend-project/node_modules/undici-types/retry-agent.d.ts +8 -0
  1320. package/day1/backend-project/node_modules/undici-types/retry-handler.d.ts +125 -0
  1321. package/day1/backend-project/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  1322. package/day1/backend-project/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  1323. package/day1/backend-project/node_modules/undici-types/socks5-proxy-agent.d.ts +25 -0
  1324. package/day1/backend-project/node_modules/undici-types/util.d.ts +18 -0
  1325. package/day1/backend-project/node_modules/undici-types/utility.d.ts +7 -0
  1326. package/day1/backend-project/node_modules/undici-types/webidl.d.ts +347 -0
  1327. package/day1/backend-project/node_modules/undici-types/websocket.d.ts +188 -0
  1328. package/day1/backend-project/node_modules/unpipe/HISTORY.md +4 -0
  1329. package/day1/backend-project/node_modules/unpipe/LICENSE +22 -0
  1330. package/day1/backend-project/node_modules/unpipe/README.md +43 -0
  1331. package/day1/backend-project/node_modules/unpipe/index.js +69 -0
  1332. package/day1/backend-project/node_modules/unpipe/package.json +27 -0
  1333. package/day1/backend-project/node_modules/vary/HISTORY.md +39 -0
  1334. package/day1/backend-project/node_modules/vary/LICENSE +22 -0
  1335. package/day1/backend-project/node_modules/vary/README.md +101 -0
  1336. package/day1/backend-project/node_modules/vary/index.js +149 -0
  1337. package/day1/backend-project/node_modules/vary/package.json +43 -0
  1338. package/day1/backend-project/node_modules/wrappy/LICENSE +15 -0
  1339. package/day1/backend-project/node_modules/wrappy/README.md +36 -0
  1340. package/day1/backend-project/node_modules/wrappy/package.json +29 -0
  1341. package/day1/backend-project/node_modules/wrappy/wrappy.js +33 -0
  1342. package/day1/backend-project/package-lock.json +1458 -0
  1343. package/day1/backend-project/package.json +23 -0
  1344. package/day1/backend-project/src/server.js +15 -0
  1345. package/day1/frontend-project/README.md +18 -0
  1346. package/day1/frontend-project/eslint.config.js +21 -0
  1347. package/day1/frontend-project/index.html +13 -0
  1348. package/day1/frontend-project/package-lock.json +3088 -0
  1349. package/day1/frontend-project/package.json +34 -0
  1350. package/day1/frontend-project/public/favicon.svg +1 -0
  1351. package/day1/frontend-project/public/icons.svg +24 -0
  1352. package/day1/frontend-project/src/App.css +184 -0
  1353. package/day1/frontend-project/src/App.jsx +50 -0
  1354. package/day1/frontend-project/src/assets/hero.png +0 -0
  1355. package/day1/frontend-project/src/assets/react.svg +1 -0
  1356. package/day1/frontend-project/src/assets/vite.svg +1 -0
  1357. package/day1/frontend-project/src/index.css +1 -0
  1358. package/day1/frontend-project/src/main.jsx +10 -0
  1359. package/day1/frontend-project/vite.config.js +12 -0
  1360. package/day2/backend-project/.env +0 -0
  1361. package/day2/backend-project/node_modules/.bin/bcrypt +16 -0
  1362. package/day2/backend-project/node_modules/.bin/bcrypt.cmd +17 -0
  1363. package/day2/backend-project/node_modules/.bin/bcrypt.ps1 +28 -0
  1364. package/day2/backend-project/node_modules/.bin/nodemon +16 -0
  1365. package/day2/backend-project/node_modules/.bin/nodemon.cmd +17 -0
  1366. package/day2/backend-project/node_modules/.bin/nodemon.ps1 +28 -0
  1367. package/day2/backend-project/node_modules/.bin/nodetouch +16 -0
  1368. package/day2/backend-project/node_modules/.bin/nodetouch.cmd +17 -0
  1369. package/day2/backend-project/node_modules/.bin/nodetouch.ps1 +28 -0
  1370. package/day2/backend-project/node_modules/.bin/semver +16 -0
  1371. package/day2/backend-project/node_modules/.bin/semver.cmd +17 -0
  1372. package/day2/backend-project/node_modules/.bin/semver.ps1 +28 -0
  1373. package/day2/backend-project/node_modules/.package-lock.json +1430 -0
  1374. package/day2/backend-project/node_modules/@types/node/LICENSE +21 -0
  1375. package/day2/backend-project/node_modules/@types/node/README.md +15 -0
  1376. package/day2/backend-project/node_modules/@types/node/assert/strict.d.ts +59 -0
  1377. package/day2/backend-project/node_modules/@types/node/assert.d.ts +950 -0
  1378. package/day2/backend-project/node_modules/@types/node/async_hooks.d.ts +711 -0
  1379. package/day2/backend-project/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  1380. package/day2/backend-project/node_modules/@types/node/buffer.d.ts +1765 -0
  1381. package/day2/backend-project/node_modules/@types/node/child_process.d.ts +1366 -0
  1382. package/day2/backend-project/node_modules/@types/node/cluster.d.ts +432 -0
  1383. package/day2/backend-project/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  1384. package/day2/backend-project/node_modules/@types/node/console.d.ts +93 -0
  1385. package/day2/backend-project/node_modules/@types/node/constants.d.ts +14 -0
  1386. package/day2/backend-project/node_modules/@types/node/crypto.d.ts +4058 -0
  1387. package/day2/backend-project/node_modules/@types/node/dgram.d.ts +537 -0
  1388. package/day2/backend-project/node_modules/@types/node/diagnostics_channel.d.ts +552 -0
  1389. package/day2/backend-project/node_modules/@types/node/dns/promises.d.ts +497 -0
  1390. package/day2/backend-project/node_modules/@types/node/dns.d.ts +876 -0
  1391. package/day2/backend-project/node_modules/@types/node/domain.d.ts +150 -0
  1392. package/day2/backend-project/node_modules/@types/node/events.d.ts +1008 -0
  1393. package/day2/backend-project/node_modules/@types/node/fs/promises.d.ts +1468 -0
  1394. package/day2/backend-project/node_modules/@types/node/fs.d.ts +4780 -0
  1395. package/day2/backend-project/node_modules/@types/node/globals.d.ts +150 -0
  1396. package/day2/backend-project/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  1397. package/day2/backend-project/node_modules/@types/node/http.d.ts +2147 -0
  1398. package/day2/backend-project/node_modules/@types/node/http2.d.ts +2485 -0
  1399. package/day2/backend-project/node_modules/@types/node/https.d.ts +400 -0
  1400. package/day2/backend-project/node_modules/@types/node/index.d.ts +117 -0
  1401. package/day2/backend-project/node_modules/@types/node/inspector/promises.d.ts +35 -0
  1402. package/day2/backend-project/node_modules/@types/node/inspector.d.ts +264 -0
  1403. package/day2/backend-project/node_modules/@types/node/inspector.generated.d.ts +4406 -0
  1404. package/day2/backend-project/node_modules/@types/node/module.d.ts +755 -0
  1405. package/day2/backend-project/node_modules/@types/node/net.d.ts +970 -0
  1406. package/day2/backend-project/node_modules/@types/node/os.d.ts +498 -0
  1407. package/day2/backend-project/node_modules/@types/node/package.json +155 -0
  1408. package/day2/backend-project/node_modules/@types/node/path/posix.d.ts +8 -0
  1409. package/day2/backend-project/node_modules/@types/node/path/win32.d.ts +8 -0
  1410. package/day2/backend-project/node_modules/@types/node/path.d.ts +178 -0
  1411. package/day2/backend-project/node_modules/@types/node/perf_hooks.d.ts +612 -0
  1412. package/day2/backend-project/node_modules/@types/node/process.d.ts +2204 -0
  1413. package/day2/backend-project/node_modules/@types/node/punycode.d.ts +89 -0
  1414. package/day2/backend-project/node_modules/@types/node/querystring.d.ts +139 -0
  1415. package/day2/backend-project/node_modules/@types/node/quic.d.ts +897 -0
  1416. package/day2/backend-project/node_modules/@types/node/readline/promises.d.ts +158 -0
  1417. package/day2/backend-project/node_modules/@types/node/readline.d.ts +507 -0
  1418. package/day2/backend-project/node_modules/@types/node/repl.d.ts +420 -0
  1419. package/day2/backend-project/node_modules/@types/node/sea.d.ts +47 -0
  1420. package/day2/backend-project/node_modules/@types/node/sqlite.d.ts +1068 -0
  1421. package/day2/backend-project/node_modules/@types/node/stream/consumers.d.ts +114 -0
  1422. package/day2/backend-project/node_modules/@types/node/stream/iter.d.ts +301 -0
  1423. package/day2/backend-project/node_modules/@types/node/stream/promises.d.ts +211 -0
  1424. package/day2/backend-project/node_modules/@types/node/stream/web.d.ts +300 -0
  1425. package/day2/backend-project/node_modules/@types/node/stream.d.ts +1774 -0
  1426. package/day2/backend-project/node_modules/@types/node/string_decoder.d.ts +27 -0
  1427. package/day2/backend-project/node_modules/@types/node/test/reporters.d.ts +59 -0
  1428. package/day2/backend-project/node_modules/@types/node/test.d.ts +2279 -0
  1429. package/day2/backend-project/node_modules/@types/node/timers/promises.d.ts +93 -0
  1430. package/day2/backend-project/node_modules/@types/node/timers.d.ts +149 -0
  1431. package/day2/backend-project/node_modules/@types/node/tls.d.ts +1193 -0
  1432. package/day2/backend-project/node_modules/@types/node/trace_events.d.ts +103 -0
  1433. package/day2/backend-project/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  1434. package/day2/backend-project/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  1435. package/day2/backend-project/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  1436. package/day2/backend-project/node_modules/@types/node/ts5.6/index.d.ts +119 -0
  1437. package/day2/backend-project/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  1438. package/day2/backend-project/node_modules/@types/node/ts5.7/index.d.ts +119 -0
  1439. package/day2/backend-project/node_modules/@types/node/tty.d.ts +225 -0
  1440. package/day2/backend-project/node_modules/@types/node/url.d.ts +556 -0
  1441. package/day2/backend-project/node_modules/@types/node/util/types.d.ts +558 -0
  1442. package/day2/backend-project/node_modules/@types/node/util.d.ts +1677 -0
  1443. package/day2/backend-project/node_modules/@types/node/v8.d.ts +980 -0
  1444. package/day2/backend-project/node_modules/@types/node/vm.d.ts +1136 -0
  1445. package/day2/backend-project/node_modules/@types/node/wasi.d.ts +131 -0
  1446. package/day2/backend-project/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  1447. package/day2/backend-project/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  1448. package/day2/backend-project/node_modules/@types/node/web-globals/console.d.ts +9 -0
  1449. package/day2/backend-project/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  1450. package/day2/backend-project/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  1451. package/day2/backend-project/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  1452. package/day2/backend-project/node_modules/@types/node/web-globals/events.d.ts +106 -0
  1453. package/day2/backend-project/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
  1454. package/day2/backend-project/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  1455. package/day2/backend-project/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  1456. package/day2/backend-project/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  1457. package/day2/backend-project/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  1458. package/day2/backend-project/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  1459. package/day2/backend-project/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  1460. package/day2/backend-project/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  1461. package/day2/backend-project/node_modules/@types/node/web-globals/url.d.ts +24 -0
  1462. package/day2/backend-project/node_modules/@types/node/worker_threads.d.ts +671 -0
  1463. package/day2/backend-project/node_modules/@types/node/zlib/iter.d.ts +131 -0
  1464. package/day2/backend-project/node_modules/@types/node/zlib.d.ts +589 -0
  1465. package/day2/backend-project/node_modules/accepts/HISTORY.md +250 -0
  1466. package/day2/backend-project/node_modules/accepts/LICENSE +23 -0
  1467. package/day2/backend-project/node_modules/accepts/README.md +140 -0
  1468. package/day2/backend-project/node_modules/accepts/index.js +238 -0
  1469. package/day2/backend-project/node_modules/accepts/package.json +47 -0
  1470. package/day2/backend-project/node_modules/anymatch/LICENSE +15 -0
  1471. package/day2/backend-project/node_modules/anymatch/README.md +87 -0
  1472. package/day2/backend-project/node_modules/anymatch/index.d.ts +20 -0
  1473. package/day2/backend-project/node_modules/anymatch/index.js +104 -0
  1474. package/day2/backend-project/node_modules/anymatch/package.json +48 -0
  1475. package/day2/backend-project/node_modules/aws-ssl-profiles/LICENSE +19 -0
  1476. package/day2/backend-project/node_modules/aws-ssl-profiles/README.md +146 -0
  1477. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.d.ts +4 -0
  1478. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.js +2 -0
  1479. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/index.d.ts +8 -0
  1480. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/index.js +13 -0
  1481. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.d.ts +9 -0
  1482. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.js +2888 -0
  1483. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.d.ts +8 -0
  1484. package/day2/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.js +111 -0
  1485. package/day2/backend-project/node_modules/aws-ssl-profiles/package.json +52 -0
  1486. package/day2/backend-project/node_modules/balanced-match/LICENSE.md +23 -0
  1487. package/day2/backend-project/node_modules/balanced-match/README.md +57 -0
  1488. package/day2/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
  1489. package/day2/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
  1490. package/day2/backend-project/node_modules/balanced-match/dist/commonjs/index.js +59 -0
  1491. package/day2/backend-project/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
  1492. package/day2/backend-project/node_modules/balanced-match/dist/commonjs/package.json +3 -0
  1493. package/day2/backend-project/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
  1494. package/day2/backend-project/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
  1495. package/day2/backend-project/node_modules/balanced-match/dist/esm/index.js +54 -0
  1496. package/day2/backend-project/node_modules/balanced-match/dist/esm/index.js.map +1 -0
  1497. package/day2/backend-project/node_modules/balanced-match/dist/esm/package.json +3 -0
  1498. package/day2/backend-project/node_modules/balanced-match/package.json +68 -0
  1499. package/day2/backend-project/node_modules/bcryptjs/LICENSE +27 -0
  1500. package/day2/backend-project/node_modules/bcryptjs/README.md +201 -0
  1501. package/day2/backend-project/node_modules/bcryptjs/bin/bcrypt +23 -0
  1502. package/day2/backend-project/node_modules/bcryptjs/index.d.ts +3 -0
  1503. package/day2/backend-project/node_modules/bcryptjs/index.js +1159 -0
  1504. package/day2/backend-project/node_modules/bcryptjs/package.json +76 -0
  1505. package/day2/backend-project/node_modules/bcryptjs/types.d.ts +157 -0
  1506. package/day2/backend-project/node_modules/bcryptjs/umd/index.d.ts +3 -0
  1507. package/day2/backend-project/node_modules/bcryptjs/umd/index.js +1220 -0
  1508. package/day2/backend-project/node_modules/bcryptjs/umd/package.json +3 -0
  1509. package/day2/backend-project/node_modules/bcryptjs/umd/types.d.ts +157 -0
  1510. package/day2/backend-project/node_modules/binary-extensions/binary-extensions.json +263 -0
  1511. package/day2/backend-project/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
  1512. package/day2/backend-project/node_modules/binary-extensions/index.d.ts +14 -0
  1513. package/day2/backend-project/node_modules/binary-extensions/index.js +1 -0
  1514. package/day2/backend-project/node_modules/binary-extensions/license +10 -0
  1515. package/day2/backend-project/node_modules/binary-extensions/package.json +40 -0
  1516. package/day2/backend-project/node_modules/binary-extensions/readme.md +25 -0
  1517. package/day2/backend-project/node_modules/body-parser/LICENSE +23 -0
  1518. package/day2/backend-project/node_modules/body-parser/README.md +494 -0
  1519. package/day2/backend-project/node_modules/body-parser/index.js +71 -0
  1520. package/day2/backend-project/node_modules/body-parser/lib/read.js +247 -0
  1521. package/day2/backend-project/node_modules/body-parser/lib/types/json.js +158 -0
  1522. package/day2/backend-project/node_modules/body-parser/lib/types/raw.js +42 -0
  1523. package/day2/backend-project/node_modules/body-parser/lib/types/text.js +36 -0
  1524. package/day2/backend-project/node_modules/body-parser/lib/types/urlencoded.js +142 -0
  1525. package/day2/backend-project/node_modules/body-parser/lib/utils.js +98 -0
  1526. package/day2/backend-project/node_modules/body-parser/package.json +52 -0
  1527. package/day2/backend-project/node_modules/brace-expansion/LICENSE +23 -0
  1528. package/day2/backend-project/node_modules/brace-expansion/README.md +94 -0
  1529. package/day2/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
  1530. package/day2/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
  1531. package/day2/backend-project/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
  1532. package/day2/backend-project/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
  1533. package/day2/backend-project/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
  1534. package/day2/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
  1535. package/day2/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
  1536. package/day2/backend-project/node_modules/brace-expansion/dist/esm/index.js +197 -0
  1537. package/day2/backend-project/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
  1538. package/day2/backend-project/node_modules/brace-expansion/dist/esm/package.json +3 -0
  1539. package/day2/backend-project/node_modules/brace-expansion/package.json +64 -0
  1540. package/day2/backend-project/node_modules/braces/LICENSE +21 -0
  1541. package/day2/backend-project/node_modules/braces/README.md +586 -0
  1542. package/day2/backend-project/node_modules/braces/index.js +170 -0
  1543. package/day2/backend-project/node_modules/braces/lib/compile.js +60 -0
  1544. package/day2/backend-project/node_modules/braces/lib/constants.js +57 -0
  1545. package/day2/backend-project/node_modules/braces/lib/expand.js +113 -0
  1546. package/day2/backend-project/node_modules/braces/lib/parse.js +331 -0
  1547. package/day2/backend-project/node_modules/braces/lib/stringify.js +32 -0
  1548. package/day2/backend-project/node_modules/braces/lib/utils.js +122 -0
  1549. package/day2/backend-project/node_modules/braces/package.json +77 -0
  1550. package/day2/backend-project/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
  1551. package/day2/backend-project/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
  1552. package/day2/backend-project/node_modules/buffer-equal-constant-time/README.md +50 -0
  1553. package/day2/backend-project/node_modules/buffer-equal-constant-time/index.js +41 -0
  1554. package/day2/backend-project/node_modules/buffer-equal-constant-time/package.json +21 -0
  1555. package/day2/backend-project/node_modules/buffer-equal-constant-time/test.js +42 -0
  1556. package/day2/backend-project/node_modules/bytes/History.md +97 -0
  1557. package/day2/backend-project/node_modules/bytes/LICENSE +23 -0
  1558. package/day2/backend-project/node_modules/bytes/Readme.md +152 -0
  1559. package/day2/backend-project/node_modules/bytes/index.js +170 -0
  1560. package/day2/backend-project/node_modules/bytes/package.json +42 -0
  1561. package/day2/backend-project/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  1562. package/day2/backend-project/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  1563. package/day2/backend-project/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  1564. package/day2/backend-project/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  1565. package/day2/backend-project/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  1566. package/day2/backend-project/node_modules/call-bind-apply-helpers/README.md +62 -0
  1567. package/day2/backend-project/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  1568. package/day2/backend-project/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  1569. package/day2/backend-project/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  1570. package/day2/backend-project/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  1571. package/day2/backend-project/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  1572. package/day2/backend-project/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  1573. package/day2/backend-project/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  1574. package/day2/backend-project/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  1575. package/day2/backend-project/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  1576. package/day2/backend-project/node_modules/call-bind-apply-helpers/index.js +15 -0
  1577. package/day2/backend-project/node_modules/call-bind-apply-helpers/package.json +85 -0
  1578. package/day2/backend-project/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  1579. package/day2/backend-project/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  1580. package/day2/backend-project/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  1581. package/day2/backend-project/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  1582. package/day2/backend-project/node_modules/call-bound/.eslintrc +13 -0
  1583. package/day2/backend-project/node_modules/call-bound/.github/FUNDING.yml +12 -0
  1584. package/day2/backend-project/node_modules/call-bound/.nycrc +9 -0
  1585. package/day2/backend-project/node_modules/call-bound/CHANGELOG.md +42 -0
  1586. package/day2/backend-project/node_modules/call-bound/LICENSE +21 -0
  1587. package/day2/backend-project/node_modules/call-bound/README.md +53 -0
  1588. package/day2/backend-project/node_modules/call-bound/index.d.ts +94 -0
  1589. package/day2/backend-project/node_modules/call-bound/index.js +19 -0
  1590. package/day2/backend-project/node_modules/call-bound/package.json +99 -0
  1591. package/day2/backend-project/node_modules/call-bound/test/index.js +61 -0
  1592. package/day2/backend-project/node_modules/call-bound/tsconfig.json +10 -0
  1593. package/day2/backend-project/node_modules/chokidar/LICENSE +21 -0
  1594. package/day2/backend-project/node_modules/chokidar/README.md +308 -0
  1595. package/day2/backend-project/node_modules/chokidar/index.js +973 -0
  1596. package/day2/backend-project/node_modules/chokidar/lib/constants.js +66 -0
  1597. package/day2/backend-project/node_modules/chokidar/lib/fsevents-handler.js +526 -0
  1598. package/day2/backend-project/node_modules/chokidar/lib/nodefs-handler.js +654 -0
  1599. package/day2/backend-project/node_modules/chokidar/package.json +70 -0
  1600. package/day2/backend-project/node_modules/chokidar/types/index.d.ts +192 -0
  1601. package/day2/backend-project/node_modules/content-disposition/LICENSE +22 -0
  1602. package/day2/backend-project/node_modules/content-disposition/README.md +141 -0
  1603. package/day2/backend-project/node_modules/content-disposition/index.js +536 -0
  1604. package/day2/backend-project/node_modules/content-disposition/package.json +40 -0
  1605. package/day2/backend-project/node_modules/content-type/HISTORY.md +29 -0
  1606. package/day2/backend-project/node_modules/content-type/LICENSE +22 -0
  1607. package/day2/backend-project/node_modules/content-type/README.md +94 -0
  1608. package/day2/backend-project/node_modules/content-type/index.js +225 -0
  1609. package/day2/backend-project/node_modules/content-type/package.json +42 -0
  1610. package/day2/backend-project/node_modules/cookie/LICENSE +24 -0
  1611. package/day2/backend-project/node_modules/cookie/README.md +317 -0
  1612. package/day2/backend-project/node_modules/cookie/SECURITY.md +25 -0
  1613. package/day2/backend-project/node_modules/cookie/index.js +335 -0
  1614. package/day2/backend-project/node_modules/cookie/package.json +44 -0
  1615. package/day2/backend-project/node_modules/cookie-signature/History.md +70 -0
  1616. package/day2/backend-project/node_modules/cookie-signature/LICENSE +22 -0
  1617. package/day2/backend-project/node_modules/cookie-signature/Readme.md +23 -0
  1618. package/day2/backend-project/node_modules/cookie-signature/index.js +47 -0
  1619. package/day2/backend-project/node_modules/cookie-signature/package.json +24 -0
  1620. package/day2/backend-project/node_modules/cors/LICENSE +22 -0
  1621. package/day2/backend-project/node_modules/cors/README.md +277 -0
  1622. package/day2/backend-project/node_modules/cors/lib/index.js +238 -0
  1623. package/day2/backend-project/node_modules/cors/package.json +42 -0
  1624. package/day2/backend-project/node_modules/debug/LICENSE +20 -0
  1625. package/day2/backend-project/node_modules/debug/README.md +481 -0
  1626. package/day2/backend-project/node_modules/debug/package.json +64 -0
  1627. package/day2/backend-project/node_modules/debug/src/browser.js +272 -0
  1628. package/day2/backend-project/node_modules/debug/src/common.js +292 -0
  1629. package/day2/backend-project/node_modules/debug/src/index.js +10 -0
  1630. package/day2/backend-project/node_modules/debug/src/node.js +263 -0
  1631. package/day2/backend-project/node_modules/denque/CHANGELOG.md +29 -0
  1632. package/day2/backend-project/node_modules/denque/LICENSE +201 -0
  1633. package/day2/backend-project/node_modules/denque/README.md +77 -0
  1634. package/day2/backend-project/node_modules/denque/index.d.ts +47 -0
  1635. package/day2/backend-project/node_modules/denque/index.js +481 -0
  1636. package/day2/backend-project/node_modules/denque/package.json +58 -0
  1637. package/day2/backend-project/node_modules/depd/History.md +103 -0
  1638. package/day2/backend-project/node_modules/depd/LICENSE +22 -0
  1639. package/day2/backend-project/node_modules/depd/Readme.md +280 -0
  1640. package/day2/backend-project/node_modules/depd/index.js +538 -0
  1641. package/day2/backend-project/node_modules/depd/lib/browser/index.js +77 -0
  1642. package/day2/backend-project/node_modules/depd/package.json +45 -0
  1643. package/day2/backend-project/node_modules/dotenv/CHANGELOG.md +643 -0
  1644. package/day2/backend-project/node_modules/dotenv/LICENSE +23 -0
  1645. package/day2/backend-project/node_modules/dotenv/README-es.md +757 -0
  1646. package/day2/backend-project/node_modules/dotenv/README.md +812 -0
  1647. package/day2/backend-project/node_modules/dotenv/SECURITY.md +1 -0
  1648. package/day2/backend-project/node_modules/dotenv/config.d.ts +1 -0
  1649. package/day2/backend-project/node_modules/dotenv/config.js +9 -0
  1650. package/day2/backend-project/node_modules/dotenv/lib/cli-options.js +17 -0
  1651. package/day2/backend-project/node_modules/dotenv/lib/env-options.js +28 -0
  1652. package/day2/backend-project/node_modules/dotenv/lib/main.d.ts +179 -0
  1653. package/day2/backend-project/node_modules/dotenv/lib/main.js +423 -0
  1654. package/day2/backend-project/node_modules/dotenv/package.json +62 -0
  1655. package/day2/backend-project/node_modules/dotenv/skills/dotenv/SKILL.md +200 -0
  1656. package/day2/backend-project/node_modules/dotenv/skills/dotenvx/SKILL.md +118 -0
  1657. package/day2/backend-project/node_modules/dunder-proto/.eslintrc +5 -0
  1658. package/day2/backend-project/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  1659. package/day2/backend-project/node_modules/dunder-proto/.nycrc +13 -0
  1660. package/day2/backend-project/node_modules/dunder-proto/CHANGELOG.md +24 -0
  1661. package/day2/backend-project/node_modules/dunder-proto/LICENSE +21 -0
  1662. package/day2/backend-project/node_modules/dunder-proto/README.md +54 -0
  1663. package/day2/backend-project/node_modules/dunder-proto/get.d.ts +5 -0
  1664. package/day2/backend-project/node_modules/dunder-proto/get.js +30 -0
  1665. package/day2/backend-project/node_modules/dunder-proto/package.json +76 -0
  1666. package/day2/backend-project/node_modules/dunder-proto/set.d.ts +5 -0
  1667. package/day2/backend-project/node_modules/dunder-proto/set.js +35 -0
  1668. package/day2/backend-project/node_modules/dunder-proto/test/get.js +34 -0
  1669. package/day2/backend-project/node_modules/dunder-proto/test/index.js +4 -0
  1670. package/day2/backend-project/node_modules/dunder-proto/test/set.js +50 -0
  1671. package/day2/backend-project/node_modules/dunder-proto/tsconfig.json +9 -0
  1672. package/day2/backend-project/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  1673. package/day2/backend-project/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  1674. package/day2/backend-project/node_modules/ecdsa-sig-formatter/README.md +65 -0
  1675. package/day2/backend-project/node_modules/ecdsa-sig-formatter/package.json +46 -0
  1676. package/day2/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  1677. package/day2/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  1678. package/day2/backend-project/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  1679. package/day2/backend-project/node_modules/ee-first/LICENSE +22 -0
  1680. package/day2/backend-project/node_modules/ee-first/README.md +80 -0
  1681. package/day2/backend-project/node_modules/ee-first/index.js +95 -0
  1682. package/day2/backend-project/node_modules/ee-first/package.json +29 -0
  1683. package/day2/backend-project/node_modules/encodeurl/LICENSE +22 -0
  1684. package/day2/backend-project/node_modules/encodeurl/README.md +109 -0
  1685. package/day2/backend-project/node_modules/encodeurl/index.js +60 -0
  1686. package/day2/backend-project/node_modules/encodeurl/package.json +40 -0
  1687. package/day2/backend-project/node_modules/es-define-property/.eslintrc +13 -0
  1688. package/day2/backend-project/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  1689. package/day2/backend-project/node_modules/es-define-property/.nycrc +9 -0
  1690. package/day2/backend-project/node_modules/es-define-property/CHANGELOG.md +29 -0
  1691. package/day2/backend-project/node_modules/es-define-property/LICENSE +21 -0
  1692. package/day2/backend-project/node_modules/es-define-property/README.md +49 -0
  1693. package/day2/backend-project/node_modules/es-define-property/index.d.ts +3 -0
  1694. package/day2/backend-project/node_modules/es-define-property/index.js +14 -0
  1695. package/day2/backend-project/node_modules/es-define-property/package.json +81 -0
  1696. package/day2/backend-project/node_modules/es-define-property/test/index.js +56 -0
  1697. package/day2/backend-project/node_modules/es-define-property/tsconfig.json +10 -0
  1698. package/day2/backend-project/node_modules/es-errors/.eslintrc +5 -0
  1699. package/day2/backend-project/node_modules/es-errors/.github/FUNDING.yml +12 -0
  1700. package/day2/backend-project/node_modules/es-errors/CHANGELOG.md +40 -0
  1701. package/day2/backend-project/node_modules/es-errors/LICENSE +21 -0
  1702. package/day2/backend-project/node_modules/es-errors/README.md +55 -0
  1703. package/day2/backend-project/node_modules/es-errors/eval.d.ts +3 -0
  1704. package/day2/backend-project/node_modules/es-errors/eval.js +4 -0
  1705. package/day2/backend-project/node_modules/es-errors/index.d.ts +3 -0
  1706. package/day2/backend-project/node_modules/es-errors/index.js +4 -0
  1707. package/day2/backend-project/node_modules/es-errors/package.json +80 -0
  1708. package/day2/backend-project/node_modules/es-errors/range.d.ts +3 -0
  1709. package/day2/backend-project/node_modules/es-errors/range.js +4 -0
  1710. package/day2/backend-project/node_modules/es-errors/ref.d.ts +3 -0
  1711. package/day2/backend-project/node_modules/es-errors/ref.js +4 -0
  1712. package/day2/backend-project/node_modules/es-errors/syntax.d.ts +3 -0
  1713. package/day2/backend-project/node_modules/es-errors/syntax.js +4 -0
  1714. package/day2/backend-project/node_modules/es-errors/test/index.js +19 -0
  1715. package/day2/backend-project/node_modules/es-errors/tsconfig.json +49 -0
  1716. package/day2/backend-project/node_modules/es-errors/type.d.ts +3 -0
  1717. package/day2/backend-project/node_modules/es-errors/type.js +4 -0
  1718. package/day2/backend-project/node_modules/es-errors/uri.d.ts +3 -0
  1719. package/day2/backend-project/node_modules/es-errors/uri.js +4 -0
  1720. package/day2/backend-project/node_modules/es-object-atoms/.eslintrc +16 -0
  1721. package/day2/backend-project/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  1722. package/day2/backend-project/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  1723. package/day2/backend-project/node_modules/es-object-atoms/LICENSE +21 -0
  1724. package/day2/backend-project/node_modules/es-object-atoms/README.md +63 -0
  1725. package/day2/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  1726. package/day2/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  1727. package/day2/backend-project/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  1728. package/day2/backend-project/node_modules/es-object-atoms/ToObject.js +10 -0
  1729. package/day2/backend-project/node_modules/es-object-atoms/index.d.ts +3 -0
  1730. package/day2/backend-project/node_modules/es-object-atoms/index.js +4 -0
  1731. package/day2/backend-project/node_modules/es-object-atoms/isObject.d.ts +3 -0
  1732. package/day2/backend-project/node_modules/es-object-atoms/isObject.js +6 -0
  1733. package/day2/backend-project/node_modules/es-object-atoms/package.json +79 -0
  1734. package/day2/backend-project/node_modules/es-object-atoms/test/index.js +38 -0
  1735. package/day2/backend-project/node_modules/es-object-atoms/tsconfig.json +7 -0
  1736. package/day2/backend-project/node_modules/escape-html/LICENSE +24 -0
  1737. package/day2/backend-project/node_modules/escape-html/Readme.md +43 -0
  1738. package/day2/backend-project/node_modules/escape-html/index.js +78 -0
  1739. package/day2/backend-project/node_modules/escape-html/package.json +24 -0
  1740. package/day2/backend-project/node_modules/etag/HISTORY.md +83 -0
  1741. package/day2/backend-project/node_modules/etag/LICENSE +22 -0
  1742. package/day2/backend-project/node_modules/etag/README.md +159 -0
  1743. package/day2/backend-project/node_modules/etag/index.js +131 -0
  1744. package/day2/backend-project/node_modules/etag/package.json +47 -0
  1745. package/day2/backend-project/node_modules/express/LICENSE +24 -0
  1746. package/day2/backend-project/node_modules/express/Readme.md +276 -0
  1747. package/day2/backend-project/node_modules/express/index.js +11 -0
  1748. package/day2/backend-project/node_modules/express/lib/application.js +631 -0
  1749. package/day2/backend-project/node_modules/express/lib/express.js +81 -0
  1750. package/day2/backend-project/node_modules/express/lib/request.js +514 -0
  1751. package/day2/backend-project/node_modules/express/lib/response.js +1053 -0
  1752. package/day2/backend-project/node_modules/express/lib/utils.js +271 -0
  1753. package/day2/backend-project/node_modules/express/lib/view.js +205 -0
  1754. package/day2/backend-project/node_modules/express/package.json +99 -0
  1755. package/day2/backend-project/node_modules/fill-range/LICENSE +21 -0
  1756. package/day2/backend-project/node_modules/fill-range/README.md +237 -0
  1757. package/day2/backend-project/node_modules/fill-range/index.js +248 -0
  1758. package/day2/backend-project/node_modules/fill-range/package.json +74 -0
  1759. package/day2/backend-project/node_modules/finalhandler/HISTORY.md +239 -0
  1760. package/day2/backend-project/node_modules/finalhandler/LICENSE +22 -0
  1761. package/day2/backend-project/node_modules/finalhandler/README.md +150 -0
  1762. package/day2/backend-project/node_modules/finalhandler/index.js +293 -0
  1763. package/day2/backend-project/node_modules/finalhandler/package.json +47 -0
  1764. package/day2/backend-project/node_modules/forwarded/HISTORY.md +21 -0
  1765. package/day2/backend-project/node_modules/forwarded/LICENSE +22 -0
  1766. package/day2/backend-project/node_modules/forwarded/README.md +57 -0
  1767. package/day2/backend-project/node_modules/forwarded/index.js +90 -0
  1768. package/day2/backend-project/node_modules/forwarded/package.json +45 -0
  1769. package/day2/backend-project/node_modules/fresh/HISTORY.md +80 -0
  1770. package/day2/backend-project/node_modules/fresh/LICENSE +23 -0
  1771. package/day2/backend-project/node_modules/fresh/README.md +117 -0
  1772. package/day2/backend-project/node_modules/fresh/index.js +136 -0
  1773. package/day2/backend-project/node_modules/fresh/package.json +46 -0
  1774. package/day2/backend-project/node_modules/function-bind/.eslintrc +21 -0
  1775. package/day2/backend-project/node_modules/function-bind/.github/FUNDING.yml +12 -0
  1776. package/day2/backend-project/node_modules/function-bind/.github/SECURITY.md +3 -0
  1777. package/day2/backend-project/node_modules/function-bind/.nycrc +13 -0
  1778. package/day2/backend-project/node_modules/function-bind/CHANGELOG.md +136 -0
  1779. package/day2/backend-project/node_modules/function-bind/LICENSE +20 -0
  1780. package/day2/backend-project/node_modules/function-bind/README.md +46 -0
  1781. package/day2/backend-project/node_modules/function-bind/implementation.js +84 -0
  1782. package/day2/backend-project/node_modules/function-bind/index.js +5 -0
  1783. package/day2/backend-project/node_modules/function-bind/package.json +87 -0
  1784. package/day2/backend-project/node_modules/function-bind/test/.eslintrc +9 -0
  1785. package/day2/backend-project/node_modules/function-bind/test/index.js +252 -0
  1786. package/day2/backend-project/node_modules/generate-function/.travis.yml +3 -0
  1787. package/day2/backend-project/node_modules/generate-function/LICENSE +21 -0
  1788. package/day2/backend-project/node_modules/generate-function/README.md +89 -0
  1789. package/day2/backend-project/node_modules/generate-function/example.js +27 -0
  1790. package/day2/backend-project/node_modules/generate-function/index.js +181 -0
  1791. package/day2/backend-project/node_modules/generate-function/package.json +32 -0
  1792. package/day2/backend-project/node_modules/generate-function/test.js +49 -0
  1793. package/day2/backend-project/node_modules/get-intrinsic/.eslintrc +42 -0
  1794. package/day2/backend-project/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  1795. package/day2/backend-project/node_modules/get-intrinsic/.nycrc +9 -0
  1796. package/day2/backend-project/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  1797. package/day2/backend-project/node_modules/get-intrinsic/LICENSE +21 -0
  1798. package/day2/backend-project/node_modules/get-intrinsic/README.md +71 -0
  1799. package/day2/backend-project/node_modules/get-intrinsic/index.js +378 -0
  1800. package/day2/backend-project/node_modules/get-intrinsic/package.json +97 -0
  1801. package/day2/backend-project/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  1802. package/day2/backend-project/node_modules/get-proto/.eslintrc +10 -0
  1803. package/day2/backend-project/node_modules/get-proto/.github/FUNDING.yml +12 -0
  1804. package/day2/backend-project/node_modules/get-proto/.nycrc +9 -0
  1805. package/day2/backend-project/node_modules/get-proto/CHANGELOG.md +21 -0
  1806. package/day2/backend-project/node_modules/get-proto/LICENSE +21 -0
  1807. package/day2/backend-project/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  1808. package/day2/backend-project/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  1809. package/day2/backend-project/node_modules/get-proto/README.md +50 -0
  1810. package/day2/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  1811. package/day2/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  1812. package/day2/backend-project/node_modules/get-proto/index.d.ts +5 -0
  1813. package/day2/backend-project/node_modules/get-proto/index.js +27 -0
  1814. package/day2/backend-project/node_modules/get-proto/package.json +81 -0
  1815. package/day2/backend-project/node_modules/get-proto/test/index.js +68 -0
  1816. package/day2/backend-project/node_modules/get-proto/tsconfig.json +9 -0
  1817. package/day2/backend-project/node_modules/glob-parent/CHANGELOG.md +110 -0
  1818. package/day2/backend-project/node_modules/glob-parent/LICENSE +15 -0
  1819. package/day2/backend-project/node_modules/glob-parent/README.md +137 -0
  1820. package/day2/backend-project/node_modules/glob-parent/index.js +42 -0
  1821. package/day2/backend-project/node_modules/glob-parent/package.json +48 -0
  1822. package/day2/backend-project/node_modules/gopd/.eslintrc +16 -0
  1823. package/day2/backend-project/node_modules/gopd/.github/FUNDING.yml +12 -0
  1824. package/day2/backend-project/node_modules/gopd/CHANGELOG.md +45 -0
  1825. package/day2/backend-project/node_modules/gopd/LICENSE +21 -0
  1826. package/day2/backend-project/node_modules/gopd/README.md +40 -0
  1827. package/day2/backend-project/node_modules/gopd/gOPD.d.ts +1 -0
  1828. package/day2/backend-project/node_modules/gopd/gOPD.js +4 -0
  1829. package/day2/backend-project/node_modules/gopd/index.d.ts +5 -0
  1830. package/day2/backend-project/node_modules/gopd/index.js +15 -0
  1831. package/day2/backend-project/node_modules/gopd/package.json +77 -0
  1832. package/day2/backend-project/node_modules/gopd/test/index.js +36 -0
  1833. package/day2/backend-project/node_modules/gopd/tsconfig.json +9 -0
  1834. package/day2/backend-project/node_modules/has-flag/index.js +8 -0
  1835. package/day2/backend-project/node_modules/has-flag/license +9 -0
  1836. package/day2/backend-project/node_modules/has-flag/package.json +44 -0
  1837. package/day2/backend-project/node_modules/has-flag/readme.md +70 -0
  1838. package/day2/backend-project/node_modules/has-symbols/.eslintrc +11 -0
  1839. package/day2/backend-project/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  1840. package/day2/backend-project/node_modules/has-symbols/.nycrc +9 -0
  1841. package/day2/backend-project/node_modules/has-symbols/CHANGELOG.md +91 -0
  1842. package/day2/backend-project/node_modules/has-symbols/LICENSE +21 -0
  1843. package/day2/backend-project/node_modules/has-symbols/README.md +46 -0
  1844. package/day2/backend-project/node_modules/has-symbols/index.d.ts +3 -0
  1845. package/day2/backend-project/node_modules/has-symbols/index.js +14 -0
  1846. package/day2/backend-project/node_modules/has-symbols/package.json +111 -0
  1847. package/day2/backend-project/node_modules/has-symbols/shams.d.ts +3 -0
  1848. package/day2/backend-project/node_modules/has-symbols/shams.js +45 -0
  1849. package/day2/backend-project/node_modules/has-symbols/test/index.js +22 -0
  1850. package/day2/backend-project/node_modules/has-symbols/test/shams/core-js.js +29 -0
  1851. package/day2/backend-project/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  1852. package/day2/backend-project/node_modules/has-symbols/test/tests.js +58 -0
  1853. package/day2/backend-project/node_modules/has-symbols/tsconfig.json +10 -0
  1854. package/day2/backend-project/node_modules/hasown/.github/FUNDING.yml +12 -0
  1855. package/day2/backend-project/node_modules/hasown/.nycrc +13 -0
  1856. package/day2/backend-project/node_modules/hasown/CHANGELOG.md +58 -0
  1857. package/day2/backend-project/node_modules/hasown/LICENSE +21 -0
  1858. package/day2/backend-project/node_modules/hasown/README.md +40 -0
  1859. package/day2/backend-project/node_modules/hasown/eslint.config.mjs +6 -0
  1860. package/day2/backend-project/node_modules/hasown/index.d.ts +3 -0
  1861. package/day2/backend-project/node_modules/hasown/index.js +8 -0
  1862. package/day2/backend-project/node_modules/hasown/package.json +91 -0
  1863. package/day2/backend-project/node_modules/hasown/tsconfig.json +6 -0
  1864. package/day2/backend-project/node_modules/http-errors/HISTORY.md +186 -0
  1865. package/day2/backend-project/node_modules/http-errors/LICENSE +23 -0
  1866. package/day2/backend-project/node_modules/http-errors/README.md +169 -0
  1867. package/day2/backend-project/node_modules/http-errors/index.js +290 -0
  1868. package/day2/backend-project/node_modules/http-errors/package.json +54 -0
  1869. package/day2/backend-project/node_modules/iconv-lite/LICENSE +21 -0
  1870. package/day2/backend-project/node_modules/iconv-lite/README.md +138 -0
  1871. package/day2/backend-project/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  1872. package/day2/backend-project/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  1873. package/day2/backend-project/node_modules/iconv-lite/encodings/index.js +23 -0
  1874. package/day2/backend-project/node_modules/iconv-lite/encodings/internal.js +218 -0
  1875. package/day2/backend-project/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  1876. package/day2/backend-project/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  1877. package/day2/backend-project/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  1878. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1879. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1880. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1881. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1882. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1883. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1884. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  1885. package/day2/backend-project/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1886. package/day2/backend-project/node_modules/iconv-lite/encodings/utf16.js +187 -0
  1887. package/day2/backend-project/node_modules/iconv-lite/encodings/utf32.js +307 -0
  1888. package/day2/backend-project/node_modules/iconv-lite/encodings/utf7.js +283 -0
  1889. package/day2/backend-project/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  1890. package/day2/backend-project/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  1891. package/day2/backend-project/node_modules/iconv-lite/lib/index.d.ts +129 -0
  1892. package/day2/backend-project/node_modules/iconv-lite/lib/index.js +182 -0
  1893. package/day2/backend-project/node_modules/iconv-lite/lib/streams.js +105 -0
  1894. package/day2/backend-project/node_modules/iconv-lite/package.json +70 -0
  1895. package/day2/backend-project/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  1896. package/day2/backend-project/node_modules/ignore-by-default/LICENSE +14 -0
  1897. package/day2/backend-project/node_modules/ignore-by-default/README.md +26 -0
  1898. package/day2/backend-project/node_modules/ignore-by-default/index.js +12 -0
  1899. package/day2/backend-project/node_modules/ignore-by-default/package.json +34 -0
  1900. package/day2/backend-project/node_modules/inherits/LICENSE +16 -0
  1901. package/day2/backend-project/node_modules/inherits/README.md +42 -0
  1902. package/day2/backend-project/node_modules/inherits/inherits.js +9 -0
  1903. package/day2/backend-project/node_modules/inherits/inherits_browser.js +27 -0
  1904. package/day2/backend-project/node_modules/inherits/package.json +29 -0
  1905. package/day2/backend-project/node_modules/ipaddr.js/LICENSE +19 -0
  1906. package/day2/backend-project/node_modules/ipaddr.js/README.md +233 -0
  1907. package/day2/backend-project/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  1908. package/day2/backend-project/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  1909. package/day2/backend-project/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  1910. package/day2/backend-project/node_modules/ipaddr.js/package.json +35 -0
  1911. package/day2/backend-project/node_modules/is-binary-path/index.d.ts +17 -0
  1912. package/day2/backend-project/node_modules/is-binary-path/index.js +7 -0
  1913. package/day2/backend-project/node_modules/is-binary-path/license +9 -0
  1914. package/day2/backend-project/node_modules/is-binary-path/package.json +40 -0
  1915. package/day2/backend-project/node_modules/is-binary-path/readme.md +34 -0
  1916. package/day2/backend-project/node_modules/is-extglob/LICENSE +21 -0
  1917. package/day2/backend-project/node_modules/is-extglob/README.md +107 -0
  1918. package/day2/backend-project/node_modules/is-extglob/index.js +20 -0
  1919. package/day2/backend-project/node_modules/is-extglob/package.json +69 -0
  1920. package/day2/backend-project/node_modules/is-glob/LICENSE +21 -0
  1921. package/day2/backend-project/node_modules/is-glob/README.md +206 -0
  1922. package/day2/backend-project/node_modules/is-glob/index.js +150 -0
  1923. package/day2/backend-project/node_modules/is-glob/package.json +81 -0
  1924. package/day2/backend-project/node_modules/is-number/LICENSE +21 -0
  1925. package/day2/backend-project/node_modules/is-number/README.md +187 -0
  1926. package/day2/backend-project/node_modules/is-number/index.js +18 -0
  1927. package/day2/backend-project/node_modules/is-number/package.json +82 -0
  1928. package/day2/backend-project/node_modules/is-promise/LICENSE +19 -0
  1929. package/day2/backend-project/node_modules/is-promise/index.d.ts +2 -0
  1930. package/day2/backend-project/node_modules/is-promise/index.js +6 -0
  1931. package/day2/backend-project/node_modules/is-promise/index.mjs +3 -0
  1932. package/day2/backend-project/node_modules/is-promise/package.json +30 -0
  1933. package/day2/backend-project/node_modules/is-promise/readme.md +33 -0
  1934. package/day2/backend-project/node_modules/is-property/LICENSE +22 -0
  1935. package/day2/backend-project/node_modules/is-property/README.md +28 -0
  1936. package/day2/backend-project/node_modules/is-property/is-property.js +5 -0
  1937. package/day2/backend-project/node_modules/is-property/package.json +36 -0
  1938. package/day2/backend-project/node_modules/jsonwebtoken/LICENSE +21 -0
  1939. package/day2/backend-project/node_modules/jsonwebtoken/README.md +396 -0
  1940. package/day2/backend-project/node_modules/jsonwebtoken/decode.js +30 -0
  1941. package/day2/backend-project/node_modules/jsonwebtoken/index.js +8 -0
  1942. package/day2/backend-project/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
  1943. package/day2/backend-project/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
  1944. package/day2/backend-project/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
  1945. package/day2/backend-project/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
  1946. package/day2/backend-project/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
  1947. package/day2/backend-project/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
  1948. package/day2/backend-project/node_modules/jsonwebtoken/lib/timespan.js +18 -0
  1949. package/day2/backend-project/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
  1950. package/day2/backend-project/node_modules/jsonwebtoken/package.json +70 -0
  1951. package/day2/backend-project/node_modules/jsonwebtoken/sign.js +253 -0
  1952. package/day2/backend-project/node_modules/jsonwebtoken/verify.js +263 -0
  1953. package/day2/backend-project/node_modules/jwa/LICENSE +17 -0
  1954. package/day2/backend-project/node_modules/jwa/README.md +150 -0
  1955. package/day2/backend-project/node_modules/jwa/index.js +266 -0
  1956. package/day2/backend-project/node_modules/jwa/opslevel.yml +6 -0
  1957. package/day2/backend-project/node_modules/jwa/package.json +37 -0
  1958. package/day2/backend-project/node_modules/jws/CHANGELOG.md +56 -0
  1959. package/day2/backend-project/node_modules/jws/LICENSE +17 -0
  1960. package/day2/backend-project/node_modules/jws/index.js +22 -0
  1961. package/day2/backend-project/node_modules/jws/lib/data-stream.js +55 -0
  1962. package/day2/backend-project/node_modules/jws/lib/sign-stream.js +83 -0
  1963. package/day2/backend-project/node_modules/jws/lib/tostring.js +10 -0
  1964. package/day2/backend-project/node_modules/jws/lib/verify-stream.js +125 -0
  1965. package/day2/backend-project/node_modules/jws/opslevel.yml +6 -0
  1966. package/day2/backend-project/node_modules/jws/package.json +34 -0
  1967. package/day2/backend-project/node_modules/jws/readme.md +255 -0
  1968. package/day2/backend-project/node_modules/lodash.includes/LICENSE +47 -0
  1969. package/day2/backend-project/node_modules/lodash.includes/README.md +18 -0
  1970. package/day2/backend-project/node_modules/lodash.includes/index.js +745 -0
  1971. package/day2/backend-project/node_modules/lodash.includes/package.json +17 -0
  1972. package/day2/backend-project/node_modules/lodash.isboolean/LICENSE +22 -0
  1973. package/day2/backend-project/node_modules/lodash.isboolean/README.md +18 -0
  1974. package/day2/backend-project/node_modules/lodash.isboolean/index.js +70 -0
  1975. package/day2/backend-project/node_modules/lodash.isboolean/package.json +17 -0
  1976. package/day2/backend-project/node_modules/lodash.isinteger/LICENSE +47 -0
  1977. package/day2/backend-project/node_modules/lodash.isinteger/README.md +18 -0
  1978. package/day2/backend-project/node_modules/lodash.isinteger/index.js +265 -0
  1979. package/day2/backend-project/node_modules/lodash.isinteger/package.json +17 -0
  1980. package/day2/backend-project/node_modules/lodash.isnumber/LICENSE +22 -0
  1981. package/day2/backend-project/node_modules/lodash.isnumber/README.md +18 -0
  1982. package/day2/backend-project/node_modules/lodash.isnumber/index.js +79 -0
  1983. package/day2/backend-project/node_modules/lodash.isnumber/package.json +17 -0
  1984. package/day2/backend-project/node_modules/lodash.isplainobject/LICENSE +47 -0
  1985. package/day2/backend-project/node_modules/lodash.isplainobject/README.md +18 -0
  1986. package/day2/backend-project/node_modules/lodash.isplainobject/index.js +139 -0
  1987. package/day2/backend-project/node_modules/lodash.isplainobject/package.json +17 -0
  1988. package/day2/backend-project/node_modules/lodash.isstring/LICENSE +22 -0
  1989. package/day2/backend-project/node_modules/lodash.isstring/README.md +18 -0
  1990. package/day2/backend-project/node_modules/lodash.isstring/index.js +95 -0
  1991. package/day2/backend-project/node_modules/lodash.isstring/package.json +17 -0
  1992. package/day2/backend-project/node_modules/lodash.once/LICENSE +47 -0
  1993. package/day2/backend-project/node_modules/lodash.once/README.md +18 -0
  1994. package/day2/backend-project/node_modules/lodash.once/index.js +294 -0
  1995. package/day2/backend-project/node_modules/lodash.once/package.json +17 -0
  1996. package/day2/backend-project/node_modules/long/LICENSE +202 -0
  1997. package/day2/backend-project/node_modules/long/README.md +286 -0
  1998. package/day2/backend-project/node_modules/long/index.d.ts +2 -0
  1999. package/day2/backend-project/node_modules/long/index.js +1581 -0
  2000. package/day2/backend-project/node_modules/long/package.json +58 -0
  2001. package/day2/backend-project/node_modules/long/types.d.ts +474 -0
  2002. package/day2/backend-project/node_modules/long/umd/index.d.ts +3 -0
  2003. package/day2/backend-project/node_modules/long/umd/index.js +1622 -0
  2004. package/day2/backend-project/node_modules/long/umd/package.json +3 -0
  2005. package/day2/backend-project/node_modules/long/umd/types.d.ts +474 -0
  2006. package/day2/backend-project/node_modules/lru.min/LICENSE +21 -0
  2007. package/day2/backend-project/node_modules/lru.min/README.md +392 -0
  2008. package/day2/backend-project/node_modules/lru.min/browser/lru.min.js +1 -0
  2009. package/day2/backend-project/node_modules/lru.min/lib/index.d.ts +38 -0
  2010. package/day2/backend-project/node_modules/lru.min/lib/index.js +248 -0
  2011. package/day2/backend-project/node_modules/lru.min/lib/index.mjs +227 -0
  2012. package/day2/backend-project/node_modules/lru.min/package.json +87 -0
  2013. package/day2/backend-project/node_modules/math-intrinsics/.eslintrc +16 -0
  2014. package/day2/backend-project/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  2015. package/day2/backend-project/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  2016. package/day2/backend-project/node_modules/math-intrinsics/LICENSE +21 -0
  2017. package/day2/backend-project/node_modules/math-intrinsics/README.md +50 -0
  2018. package/day2/backend-project/node_modules/math-intrinsics/abs.d.ts +1 -0
  2019. package/day2/backend-project/node_modules/math-intrinsics/abs.js +4 -0
  2020. package/day2/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  2021. package/day2/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  2022. package/day2/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  2023. package/day2/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  2024. package/day2/backend-project/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  2025. package/day2/backend-project/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  2026. package/day2/backend-project/node_modules/math-intrinsics/floor.d.ts +1 -0
  2027. package/day2/backend-project/node_modules/math-intrinsics/floor.js +4 -0
  2028. package/day2/backend-project/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  2029. package/day2/backend-project/node_modules/math-intrinsics/isFinite.js +12 -0
  2030. package/day2/backend-project/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  2031. package/day2/backend-project/node_modules/math-intrinsics/isInteger.js +16 -0
  2032. package/day2/backend-project/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  2033. package/day2/backend-project/node_modules/math-intrinsics/isNaN.js +6 -0
  2034. package/day2/backend-project/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  2035. package/day2/backend-project/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  2036. package/day2/backend-project/node_modules/math-intrinsics/max.d.ts +1 -0
  2037. package/day2/backend-project/node_modules/math-intrinsics/max.js +4 -0
  2038. package/day2/backend-project/node_modules/math-intrinsics/min.d.ts +1 -0
  2039. package/day2/backend-project/node_modules/math-intrinsics/min.js +4 -0
  2040. package/day2/backend-project/node_modules/math-intrinsics/mod.d.ts +3 -0
  2041. package/day2/backend-project/node_modules/math-intrinsics/mod.js +9 -0
  2042. package/day2/backend-project/node_modules/math-intrinsics/package.json +86 -0
  2043. package/day2/backend-project/node_modules/math-intrinsics/pow.d.ts +1 -0
  2044. package/day2/backend-project/node_modules/math-intrinsics/pow.js +4 -0
  2045. package/day2/backend-project/node_modules/math-intrinsics/round.d.ts +1 -0
  2046. package/day2/backend-project/node_modules/math-intrinsics/round.js +4 -0
  2047. package/day2/backend-project/node_modules/math-intrinsics/sign.d.ts +3 -0
  2048. package/day2/backend-project/node_modules/math-intrinsics/sign.js +11 -0
  2049. package/day2/backend-project/node_modules/math-intrinsics/test/index.js +192 -0
  2050. package/day2/backend-project/node_modules/math-intrinsics/tsconfig.json +3 -0
  2051. package/day2/backend-project/node_modules/media-typer/HISTORY.md +50 -0
  2052. package/day2/backend-project/node_modules/media-typer/LICENSE +22 -0
  2053. package/day2/backend-project/node_modules/media-typer/README.md +93 -0
  2054. package/day2/backend-project/node_modules/media-typer/index.js +143 -0
  2055. package/day2/backend-project/node_modules/media-typer/package.json +33 -0
  2056. package/day2/backend-project/node_modules/merge-descriptors/index.d.ts +11 -0
  2057. package/day2/backend-project/node_modules/merge-descriptors/index.js +26 -0
  2058. package/day2/backend-project/node_modules/merge-descriptors/license +11 -0
  2059. package/day2/backend-project/node_modules/merge-descriptors/package.json +50 -0
  2060. package/day2/backend-project/node_modules/merge-descriptors/readme.md +55 -0
  2061. package/day2/backend-project/node_modules/mime-db/HISTORY.md +541 -0
  2062. package/day2/backend-project/node_modules/mime-db/LICENSE +23 -0
  2063. package/day2/backend-project/node_modules/mime-db/README.md +109 -0
  2064. package/day2/backend-project/node_modules/mime-db/db.json +9342 -0
  2065. package/day2/backend-project/node_modules/mime-db/index.js +12 -0
  2066. package/day2/backend-project/node_modules/mime-db/package.json +56 -0
  2067. package/day2/backend-project/node_modules/mime-types/HISTORY.md +428 -0
  2068. package/day2/backend-project/node_modules/mime-types/LICENSE +23 -0
  2069. package/day2/backend-project/node_modules/mime-types/README.md +126 -0
  2070. package/day2/backend-project/node_modules/mime-types/index.js +211 -0
  2071. package/day2/backend-project/node_modules/mime-types/mimeScore.js +57 -0
  2072. package/day2/backend-project/node_modules/mime-types/package.json +49 -0
  2073. package/day2/backend-project/node_modules/minimatch/LICENSE.md +55 -0
  2074. package/day2/backend-project/node_modules/minimatch/README.md +528 -0
  2075. package/day2/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  2076. package/day2/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  2077. package/day2/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  2078. package/day2/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  2079. package/day2/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
  2080. package/day2/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  2081. package/day2/backend-project/node_modules/minimatch/dist/commonjs/ast.js +845 -0
  2082. package/day2/backend-project/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  2083. package/day2/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  2084. package/day2/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  2085. package/day2/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
  2086. package/day2/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  2087. package/day2/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
  2088. package/day2/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  2089. package/day2/backend-project/node_modules/minimatch/dist/commonjs/escape.js +30 -0
  2090. package/day2/backend-project/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  2091. package/day2/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
  2092. package/day2/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  2093. package/day2/backend-project/node_modules/minimatch/dist/commonjs/index.js +1127 -0
  2094. package/day2/backend-project/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  2095. package/day2/backend-project/node_modules/minimatch/dist/commonjs/package.json +3 -0
  2096. package/day2/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
  2097. package/day2/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  2098. package/day2/backend-project/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
  2099. package/day2/backend-project/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  2100. package/day2/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  2101. package/day2/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  2102. package/day2/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  2103. package/day2/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  2104. package/day2/backend-project/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
  2105. package/day2/backend-project/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  2106. package/day2/backend-project/node_modules/minimatch/dist/esm/ast.js +841 -0
  2107. package/day2/backend-project/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  2108. package/day2/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  2109. package/day2/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  2110. package/day2/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
  2111. package/day2/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  2112. package/day2/backend-project/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
  2113. package/day2/backend-project/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  2114. package/day2/backend-project/node_modules/minimatch/dist/esm/escape.js +26 -0
  2115. package/day2/backend-project/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  2116. package/day2/backend-project/node_modules/minimatch/dist/esm/index.d.ts +174 -0
  2117. package/day2/backend-project/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  2118. package/day2/backend-project/node_modules/minimatch/dist/esm/index.js +1114 -0
  2119. package/day2/backend-project/node_modules/minimatch/dist/esm/index.js.map +1 -0
  2120. package/day2/backend-project/node_modules/minimatch/dist/esm/package.json +3 -0
  2121. package/day2/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
  2122. package/day2/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  2123. package/day2/backend-project/node_modules/minimatch/dist/esm/unescape.js +34 -0
  2124. package/day2/backend-project/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  2125. package/day2/backend-project/node_modules/minimatch/package.json +73 -0
  2126. package/day2/backend-project/node_modules/ms/index.js +162 -0
  2127. package/day2/backend-project/node_modules/ms/license.md +21 -0
  2128. package/day2/backend-project/node_modules/ms/package.json +38 -0
  2129. package/day2/backend-project/node_modules/ms/readme.md +59 -0
  2130. package/day2/backend-project/node_modules/mysql2/License +19 -0
  2131. package/day2/backend-project/node_modules/mysql2/README.md +114 -0
  2132. package/day2/backend-project/node_modules/mysql2/index.d.ts +1 -0
  2133. package/day2/backend-project/node_modules/mysql2/index.js +77 -0
  2134. package/day2/backend-project/node_modules/mysql2/lib/auth_41.js +95 -0
  2135. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.js +115 -0
  2136. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +18 -0
  2137. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/index.js +8 -0
  2138. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_clear_password.js +17 -0
  2139. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_native_password.js +34 -0
  2140. package/day2/backend-project/node_modules/mysql2/lib/auth_plugins/sha256_password.js +74 -0
  2141. package/day2/backend-project/node_modules/mysql2/lib/base/connection.js +1139 -0
  2142. package/day2/backend-project/node_modules/mysql2/lib/base/pool.js +347 -0
  2143. package/day2/backend-project/node_modules/mysql2/lib/commands/auth_switch.js +151 -0
  2144. package/day2/backend-project/node_modules/mysql2/lib/commands/binlog_dump.js +109 -0
  2145. package/day2/backend-project/node_modules/mysql2/lib/commands/change_user.js +68 -0
  2146. package/day2/backend-project/node_modules/mysql2/lib/commands/client_handshake.js +386 -0
  2147. package/day2/backend-project/node_modules/mysql2/lib/commands/close_statement.js +18 -0
  2148. package/day2/backend-project/node_modules/mysql2/lib/commands/command.js +54 -0
  2149. package/day2/backend-project/node_modules/mysql2/lib/commands/execute.js +116 -0
  2150. package/day2/backend-project/node_modules/mysql2/lib/commands/index.js +29 -0
  2151. package/day2/backend-project/node_modules/mysql2/lib/commands/ping.js +36 -0
  2152. package/day2/backend-project/node_modules/mysql2/lib/commands/prepare.js +143 -0
  2153. package/day2/backend-project/node_modules/mysql2/lib/commands/query.js +365 -0
  2154. package/day2/backend-project/node_modules/mysql2/lib/commands/quit.js +29 -0
  2155. package/day2/backend-project/node_modules/mysql2/lib/commands/register_slave.js +27 -0
  2156. package/day2/backend-project/node_modules/mysql2/lib/commands/reset_connection.js +29 -0
  2157. package/day2/backend-project/node_modules/mysql2/lib/commands/server_handshake.js +205 -0
  2158. package/day2/backend-project/node_modules/mysql2/lib/compressed_protocol.js +153 -0
  2159. package/day2/backend-project/node_modules/mysql2/lib/connection.js +12 -0
  2160. package/day2/backend-project/node_modules/mysql2/lib/connection_config.js +300 -0
  2161. package/day2/backend-project/node_modules/mysql2/lib/constants/charset_encodings.js +317 -0
  2162. package/day2/backend-project/node_modules/mysql2/lib/constants/charsets.js +317 -0
  2163. package/day2/backend-project/node_modules/mysql2/lib/constants/client.js +39 -0
  2164. package/day2/backend-project/node_modules/mysql2/lib/constants/commands.js +37 -0
  2165. package/day2/backend-project/node_modules/mysql2/lib/constants/cursor.js +9 -0
  2166. package/day2/backend-project/node_modules/mysql2/lib/constants/encoding_charset.js +50 -0
  2167. package/day2/backend-project/node_modules/mysql2/lib/constants/errors.js +3973 -0
  2168. package/day2/backend-project/node_modules/mysql2/lib/constants/field_flags.js +20 -0
  2169. package/day2/backend-project/node_modules/mysql2/lib/constants/server_status.js +44 -0
  2170. package/day2/backend-project/node_modules/mysql2/lib/constants/session_track.js +11 -0
  2171. package/day2/backend-project/node_modules/mysql2/lib/constants/ssl_profiles.js +11 -0
  2172. package/day2/backend-project/node_modules/mysql2/lib/constants/types.js +64 -0
  2173. package/day2/backend-project/node_modules/mysql2/lib/create_connection.js +10 -0
  2174. package/day2/backend-project/node_modules/mysql2/lib/create_pool.js +10 -0
  2175. package/day2/backend-project/node_modules/mysql2/lib/create_pool_cluster.js +9 -0
  2176. package/day2/backend-project/node_modules/mysql2/lib/helpers.js +83 -0
  2177. package/day2/backend-project/node_modules/mysql2/lib/packet_parser.js +195 -0
  2178. package/day2/backend-project/node_modules/mysql2/lib/packets/auth_next_factor.js +35 -0
  2179. package/day2/backend-project/node_modules/mysql2/lib/packets/auth_switch_request.js +38 -0
  2180. package/day2/backend-project/node_modules/mysql2/lib/packets/auth_switch_request_more_data.js +33 -0
  2181. package/day2/backend-project/node_modules/mysql2/lib/packets/auth_switch_response.js +30 -0
  2182. package/day2/backend-project/node_modules/mysql2/lib/packets/binary_row.js +95 -0
  2183. package/day2/backend-project/node_modules/mysql2/lib/packets/binlog_dump.js +33 -0
  2184. package/day2/backend-project/node_modules/mysql2/lib/packets/binlog_query_statusvars.js +115 -0
  2185. package/day2/backend-project/node_modules/mysql2/lib/packets/change_user.js +97 -0
  2186. package/day2/backend-project/node_modules/mysql2/lib/packets/close_statement.js +21 -0
  2187. package/day2/backend-project/node_modules/mysql2/lib/packets/column_definition.js +291 -0
  2188. package/day2/backend-project/node_modules/mysql2/lib/packets/encode_parameter.js +69 -0
  2189. package/day2/backend-project/node_modules/mysql2/lib/packets/execute.js +177 -0
  2190. package/day2/backend-project/node_modules/mysql2/lib/packets/handshake.js +112 -0
  2191. package/day2/backend-project/node_modules/mysql2/lib/packets/handshake_response.js +173 -0
  2192. package/day2/backend-project/node_modules/mysql2/lib/packets/index.js +154 -0
  2193. package/day2/backend-project/node_modules/mysql2/lib/packets/packet.js +978 -0
  2194. package/day2/backend-project/node_modules/mysql2/lib/packets/prepare_statement.js +27 -0
  2195. package/day2/backend-project/node_modules/mysql2/lib/packets/prepared_statement_header.js +16 -0
  2196. package/day2/backend-project/node_modules/mysql2/lib/packets/query.js +102 -0
  2197. package/day2/backend-project/node_modules/mysql2/lib/packets/register_slave.js +46 -0
  2198. package/day2/backend-project/node_modules/mysql2/lib/packets/reset_connection.js +17 -0
  2199. package/day2/backend-project/node_modules/mysql2/lib/packets/resultset_header.js +124 -0
  2200. package/day2/backend-project/node_modules/mysql2/lib/packets/ssl_request.js +25 -0
  2201. package/day2/backend-project/node_modules/mysql2/lib/packets/text_row.js +47 -0
  2202. package/day2/backend-project/node_modules/mysql2/lib/parsers/binary_parser.js +235 -0
  2203. package/day2/backend-project/node_modules/mysql2/lib/parsers/parser_cache.js +68 -0
  2204. package/day2/backend-project/node_modules/mysql2/lib/parsers/static_binary_parser.js +213 -0
  2205. package/day2/backend-project/node_modules/mysql2/lib/parsers/static_text_parser.js +152 -0
  2206. package/day2/backend-project/node_modules/mysql2/lib/parsers/string.js +50 -0
  2207. package/day2/backend-project/node_modules/mysql2/lib/parsers/text_parser.js +214 -0
  2208. package/day2/backend-project/node_modules/mysql2/lib/pool.js +12 -0
  2209. package/day2/backend-project/node_modules/mysql2/lib/pool_cluster.js +375 -0
  2210. package/day2/backend-project/node_modules/mysql2/lib/pool_config.js +34 -0
  2211. package/day2/backend-project/node_modules/mysql2/lib/pool_connection.js +81 -0
  2212. package/day2/backend-project/node_modules/mysql2/lib/promise/capture_local_err.js +25 -0
  2213. package/day2/backend-project/node_modules/mysql2/lib/promise/connection.js +237 -0
  2214. package/day2/backend-project/node_modules/mysql2/lib/promise/inherit_events.js +27 -0
  2215. package/day2/backend-project/node_modules/mysql2/lib/promise/make_done_cb.js +16 -0
  2216. package/day2/backend-project/node_modules/mysql2/lib/promise/pool.js +118 -0
  2217. package/day2/backend-project/node_modules/mysql2/lib/promise/pool_cluster.js +59 -0
  2218. package/day2/backend-project/node_modules/mysql2/lib/promise/pool_connection.js +19 -0
  2219. package/day2/backend-project/node_modules/mysql2/lib/promise/prepared_statement_info.js +35 -0
  2220. package/day2/backend-project/node_modules/mysql2/lib/results_stream.js +38 -0
  2221. package/day2/backend-project/node_modules/mysql2/lib/server.js +37 -0
  2222. package/day2/backend-project/node_modules/mysql2/lib/tracing.js +81 -0
  2223. package/day2/backend-project/node_modules/mysql2/package.json +95 -0
  2224. package/day2/backend-project/node_modules/mysql2/promise.d.ts +141 -0
  2225. package/day2/backend-project/node_modules/mysql2/promise.js +209 -0
  2226. package/day2/backend-project/node_modules/mysql2/typings/mysql/LICENSE.txt +15 -0
  2227. package/day2/backend-project/node_modules/mysql2/typings/mysql/index.d.ts +93 -0
  2228. package/day2/backend-project/node_modules/mysql2/typings/mysql/info.txt +1 -0
  2229. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/Auth.d.ts +30 -0
  2230. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/Connection.d.ts +456 -0
  2231. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/Pool.d.ts +78 -0
  2232. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/PoolCluster.d.ts +92 -0
  2233. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/PoolConnection.d.ts +11 -0
  2234. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/Server.d.ts +11 -0
  2235. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/Tracing.d.ts +71 -0
  2236. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/constants/CharsetToEncoding.d.ts +8 -0
  2237. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Charsets.d.ts +326 -0
  2238. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Types.d.ts +70 -0
  2239. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/constants/index.d.ts +5 -0
  2240. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/ParserCache.d.ts +4 -0
  2241. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/index.d.ts +18 -0
  2242. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/typeCast.d.ts +54 -0
  2243. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts +10 -0
  2244. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +27 -0
  2245. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/OkPacket.d.ts +23 -0
  2246. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +13 -0
  2247. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ResultSetHeader.d.ts +18 -0
  2248. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/RowDataPacket.d.ts +9 -0
  2249. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/index.d.ts +28 -0
  2250. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/ErrorPacketParams.d.ts +6 -0
  2251. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/OkPacketParams.d.ts +9 -0
  2252. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +41 -0
  2253. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Prepare.d.ts +65 -0
  2254. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Query.d.ts +235 -0
  2255. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +41 -0
  2256. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Sequence.d.ts +5 -0
  2257. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +17 -0
  2258. package/day2/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +18 -0
  2259. package/day2/backend-project/node_modules/named-placeholders/LICENSE +21 -0
  2260. package/day2/backend-project/node_modules/named-placeholders/README.md +27 -0
  2261. package/day2/backend-project/node_modules/named-placeholders/index.js +179 -0
  2262. package/day2/backend-project/node_modules/named-placeholders/package.json +36 -0
  2263. package/day2/backend-project/node_modules/negotiator/HISTORY.md +114 -0
  2264. package/day2/backend-project/node_modules/negotiator/LICENSE +24 -0
  2265. package/day2/backend-project/node_modules/negotiator/README.md +212 -0
  2266. package/day2/backend-project/node_modules/negotiator/index.js +83 -0
  2267. package/day2/backend-project/node_modules/negotiator/lib/charset.js +169 -0
  2268. package/day2/backend-project/node_modules/negotiator/lib/encoding.js +205 -0
  2269. package/day2/backend-project/node_modules/negotiator/lib/language.js +179 -0
  2270. package/day2/backend-project/node_modules/negotiator/lib/mediaType.js +294 -0
  2271. package/day2/backend-project/node_modules/negotiator/package.json +43 -0
  2272. package/day2/backend-project/node_modules/nodemon/.prettierrc.json +3 -0
  2273. package/day2/backend-project/node_modules/nodemon/LICENSE +21 -0
  2274. package/day2/backend-project/node_modules/nodemon/README.md +439 -0
  2275. package/day2/backend-project/node_modules/nodemon/bin/nodemon.js +16 -0
  2276. package/day2/backend-project/node_modules/nodemon/bin/windows-kill.exe +0 -0
  2277. package/day2/backend-project/node_modules/nodemon/doc/cli/authors.txt +8 -0
  2278. package/day2/backend-project/node_modules/nodemon/doc/cli/config.txt +44 -0
  2279. package/day2/backend-project/node_modules/nodemon/doc/cli/help.txt +29 -0
  2280. package/day2/backend-project/node_modules/nodemon/doc/cli/logo.txt +20 -0
  2281. package/day2/backend-project/node_modules/nodemon/doc/cli/options.txt +36 -0
  2282. package/day2/backend-project/node_modules/nodemon/doc/cli/topics.txt +8 -0
  2283. package/day2/backend-project/node_modules/nodemon/doc/cli/usage.txt +3 -0
  2284. package/day2/backend-project/node_modules/nodemon/doc/cli/whoami.txt +9 -0
  2285. package/day2/backend-project/node_modules/nodemon/index.d.ts +124 -0
  2286. package/day2/backend-project/node_modules/nodemon/jsconfig.json +7 -0
  2287. package/day2/backend-project/node_modules/nodemon/lib/cli/index.js +49 -0
  2288. package/day2/backend-project/node_modules/nodemon/lib/cli/parse.js +230 -0
  2289. package/day2/backend-project/node_modules/nodemon/lib/config/command.js +43 -0
  2290. package/day2/backend-project/node_modules/nodemon/lib/config/defaults.js +34 -0
  2291. package/day2/backend-project/node_modules/nodemon/lib/config/exec.js +240 -0
  2292. package/day2/backend-project/node_modules/nodemon/lib/config/index.js +93 -0
  2293. package/day2/backend-project/node_modules/nodemon/lib/config/load.js +225 -0
  2294. package/day2/backend-project/node_modules/nodemon/lib/help/index.js +27 -0
  2295. package/day2/backend-project/node_modules/nodemon/lib/index.js +1 -0
  2296. package/day2/backend-project/node_modules/nodemon/lib/monitor/index.js +4 -0
  2297. package/day2/backend-project/node_modules/nodemon/lib/monitor/match.js +288 -0
  2298. package/day2/backend-project/node_modules/nodemon/lib/monitor/run.js +562 -0
  2299. package/day2/backend-project/node_modules/nodemon/lib/monitor/signals.js +34 -0
  2300. package/day2/backend-project/node_modules/nodemon/lib/monitor/watch.js +244 -0
  2301. package/day2/backend-project/node_modules/nodemon/lib/nodemon.js +317 -0
  2302. package/day2/backend-project/node_modules/nodemon/lib/rules/add.js +89 -0
  2303. package/day2/backend-project/node_modules/nodemon/lib/rules/index.js +53 -0
  2304. package/day2/backend-project/node_modules/nodemon/lib/rules/parse.js +43 -0
  2305. package/day2/backend-project/node_modules/nodemon/lib/spawn.js +74 -0
  2306. package/day2/backend-project/node_modules/nodemon/lib/utils/bus.js +44 -0
  2307. package/day2/backend-project/node_modules/nodemon/lib/utils/clone.js +40 -0
  2308. package/day2/backend-project/node_modules/nodemon/lib/utils/colour.js +26 -0
  2309. package/day2/backend-project/node_modules/nodemon/lib/utils/index.js +103 -0
  2310. package/day2/backend-project/node_modules/nodemon/lib/utils/log.js +82 -0
  2311. package/day2/backend-project/node_modules/nodemon/lib/utils/merge.js +47 -0
  2312. package/day2/backend-project/node_modules/nodemon/lib/version.js +100 -0
  2313. package/day2/backend-project/node_modules/nodemon/package.json +78 -0
  2314. package/day2/backend-project/node_modules/normalize-path/LICENSE +21 -0
  2315. package/day2/backend-project/node_modules/normalize-path/README.md +127 -0
  2316. package/day2/backend-project/node_modules/normalize-path/index.js +35 -0
  2317. package/day2/backend-project/node_modules/normalize-path/package.json +77 -0
  2318. package/day2/backend-project/node_modules/object-assign/index.js +90 -0
  2319. package/day2/backend-project/node_modules/object-assign/license +21 -0
  2320. package/day2/backend-project/node_modules/object-assign/package.json +42 -0
  2321. package/day2/backend-project/node_modules/object-assign/readme.md +61 -0
  2322. package/day2/backend-project/node_modules/object-inspect/.eslintrc +53 -0
  2323. package/day2/backend-project/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  2324. package/day2/backend-project/node_modules/object-inspect/.nycrc +13 -0
  2325. package/day2/backend-project/node_modules/object-inspect/CHANGELOG.md +424 -0
  2326. package/day2/backend-project/node_modules/object-inspect/LICENSE +21 -0
  2327. package/day2/backend-project/node_modules/object-inspect/example/all.js +23 -0
  2328. package/day2/backend-project/node_modules/object-inspect/example/circular.js +6 -0
  2329. package/day2/backend-project/node_modules/object-inspect/example/fn.js +5 -0
  2330. package/day2/backend-project/node_modules/object-inspect/example/inspect.js +10 -0
  2331. package/day2/backend-project/node_modules/object-inspect/index.js +544 -0
  2332. package/day2/backend-project/node_modules/object-inspect/package-support.json +20 -0
  2333. package/day2/backend-project/node_modules/object-inspect/package.json +105 -0
  2334. package/day2/backend-project/node_modules/object-inspect/readme.markdown +84 -0
  2335. package/day2/backend-project/node_modules/object-inspect/test/bigint.js +58 -0
  2336. package/day2/backend-project/node_modules/object-inspect/test/browser/dom.js +15 -0
  2337. package/day2/backend-project/node_modules/object-inspect/test/circular.js +16 -0
  2338. package/day2/backend-project/node_modules/object-inspect/test/deep.js +12 -0
  2339. package/day2/backend-project/node_modules/object-inspect/test/element.js +53 -0
  2340. package/day2/backend-project/node_modules/object-inspect/test/err.js +48 -0
  2341. package/day2/backend-project/node_modules/object-inspect/test/fakes.js +29 -0
  2342. package/day2/backend-project/node_modules/object-inspect/test/fn.js +76 -0
  2343. package/day2/backend-project/node_modules/object-inspect/test/global.js +17 -0
  2344. package/day2/backend-project/node_modules/object-inspect/test/has.js +15 -0
  2345. package/day2/backend-project/node_modules/object-inspect/test/holes.js +15 -0
  2346. package/day2/backend-project/node_modules/object-inspect/test/indent-option.js +271 -0
  2347. package/day2/backend-project/node_modules/object-inspect/test/inspect.js +139 -0
  2348. package/day2/backend-project/node_modules/object-inspect/test/lowbyte.js +12 -0
  2349. package/day2/backend-project/node_modules/object-inspect/test/number.js +58 -0
  2350. package/day2/backend-project/node_modules/object-inspect/test/quoteStyle.js +26 -0
  2351. package/day2/backend-project/node_modules/object-inspect/test/toStringTag.js +40 -0
  2352. package/day2/backend-project/node_modules/object-inspect/test/undef.js +12 -0
  2353. package/day2/backend-project/node_modules/object-inspect/test/values.js +261 -0
  2354. package/day2/backend-project/node_modules/object-inspect/test-core-js.js +26 -0
  2355. package/day2/backend-project/node_modules/object-inspect/util.inspect.js +1 -0
  2356. package/day2/backend-project/node_modules/on-finished/HISTORY.md +98 -0
  2357. package/day2/backend-project/node_modules/on-finished/LICENSE +23 -0
  2358. package/day2/backend-project/node_modules/on-finished/README.md +162 -0
  2359. package/day2/backend-project/node_modules/on-finished/index.js +234 -0
  2360. package/day2/backend-project/node_modules/on-finished/package.json +39 -0
  2361. package/day2/backend-project/node_modules/once/LICENSE +15 -0
  2362. package/day2/backend-project/node_modules/once/README.md +79 -0
  2363. package/day2/backend-project/node_modules/once/once.js +42 -0
  2364. package/day2/backend-project/node_modules/once/package.json +33 -0
  2365. package/day2/backend-project/node_modules/parseurl/HISTORY.md +58 -0
  2366. package/day2/backend-project/node_modules/parseurl/LICENSE +24 -0
  2367. package/day2/backend-project/node_modules/parseurl/README.md +133 -0
  2368. package/day2/backend-project/node_modules/parseurl/index.js +158 -0
  2369. package/day2/backend-project/node_modules/parseurl/package.json +40 -0
  2370. package/day2/backend-project/node_modules/path-to-regexp/LICENSE +21 -0
  2371. package/day2/backend-project/node_modules/path-to-regexp/Readme.md +224 -0
  2372. package/day2/backend-project/node_modules/path-to-regexp/dist/index.d.ts +147 -0
  2373. package/day2/backend-project/node_modules/path-to-regexp/dist/index.js +431 -0
  2374. package/day2/backend-project/node_modules/path-to-regexp/dist/index.js.map +1 -0
  2375. package/day2/backend-project/node_modules/path-to-regexp/package.json +64 -0
  2376. package/day2/backend-project/node_modules/picomatch/LICENSE +21 -0
  2377. package/day2/backend-project/node_modules/picomatch/README.md +716 -0
  2378. package/day2/backend-project/node_modules/picomatch/index.js +3 -0
  2379. package/day2/backend-project/node_modules/picomatch/lib/constants.js +184 -0
  2380. package/day2/backend-project/node_modules/picomatch/lib/parse.js +1392 -0
  2381. package/day2/backend-project/node_modules/picomatch/lib/picomatch.js +342 -0
  2382. package/day2/backend-project/node_modules/picomatch/lib/scan.js +391 -0
  2383. package/day2/backend-project/node_modules/picomatch/lib/utils.js +64 -0
  2384. package/day2/backend-project/node_modules/picomatch/package.json +81 -0
  2385. package/day2/backend-project/node_modules/proxy-addr/HISTORY.md +161 -0
  2386. package/day2/backend-project/node_modules/proxy-addr/LICENSE +22 -0
  2387. package/day2/backend-project/node_modules/proxy-addr/README.md +139 -0
  2388. package/day2/backend-project/node_modules/proxy-addr/index.js +327 -0
  2389. package/day2/backend-project/node_modules/proxy-addr/package.json +47 -0
  2390. package/day2/backend-project/node_modules/pstree.remy/.travis.yml +8 -0
  2391. package/day2/backend-project/node_modules/pstree.remy/LICENSE +7 -0
  2392. package/day2/backend-project/node_modules/pstree.remy/README.md +26 -0
  2393. package/day2/backend-project/node_modules/pstree.remy/lib/index.js +37 -0
  2394. package/day2/backend-project/node_modules/pstree.remy/lib/tree.js +37 -0
  2395. package/day2/backend-project/node_modules/pstree.remy/lib/utils.js +53 -0
  2396. package/day2/backend-project/node_modules/pstree.remy/package.json +33 -0
  2397. package/day2/backend-project/node_modules/pstree.remy/tests/fixtures/index.js +13 -0
  2398. package/day2/backend-project/node_modules/pstree.remy/tests/fixtures/out1 +10 -0
  2399. package/day2/backend-project/node_modules/pstree.remy/tests/fixtures/out2 +29 -0
  2400. package/day2/backend-project/node_modules/pstree.remy/tests/index.test.js +51 -0
  2401. package/day2/backend-project/node_modules/qs/.editorconfig +46 -0
  2402. package/day2/backend-project/node_modules/qs/.github/FUNDING.yml +12 -0
  2403. package/day2/backend-project/node_modules/qs/.github/SECURITY.md +11 -0
  2404. package/day2/backend-project/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  2405. package/day2/backend-project/node_modules/qs/.nycrc +13 -0
  2406. package/day2/backend-project/node_modules/qs/CHANGELOG.md +822 -0
  2407. package/day2/backend-project/node_modules/qs/LICENSE.md +29 -0
  2408. package/day2/backend-project/node_modules/qs/README.md +758 -0
  2409. package/day2/backend-project/node_modules/qs/dist/qs.js +141 -0
  2410. package/day2/backend-project/node_modules/qs/eslint.config.mjs +57 -0
  2411. package/day2/backend-project/node_modules/qs/lib/formats.js +23 -0
  2412. package/day2/backend-project/node_modules/qs/lib/index.js +11 -0
  2413. package/day2/backend-project/node_modules/qs/lib/parse.js +403 -0
  2414. package/day2/backend-project/node_modules/qs/lib/stringify.js +363 -0
  2415. package/day2/backend-project/node_modules/qs/lib/utils.js +342 -0
  2416. package/day2/backend-project/node_modules/qs/package.json +94 -0
  2417. package/day2/backend-project/node_modules/qs/test/empty-keys-cases.js +267 -0
  2418. package/day2/backend-project/node_modules/qs/test/parse.js +1703 -0
  2419. package/day2/backend-project/node_modules/qs/test/stringify.js +1448 -0
  2420. package/day2/backend-project/node_modules/qs/test/utils.js +432 -0
  2421. package/day2/backend-project/node_modules/range-parser/HISTORY.md +56 -0
  2422. package/day2/backend-project/node_modules/range-parser/LICENSE +23 -0
  2423. package/day2/backend-project/node_modules/range-parser/README.md +84 -0
  2424. package/day2/backend-project/node_modules/range-parser/index.js +162 -0
  2425. package/day2/backend-project/node_modules/range-parser/package.json +44 -0
  2426. package/day2/backend-project/node_modules/raw-body/LICENSE +22 -0
  2427. package/day2/backend-project/node_modules/raw-body/README.md +223 -0
  2428. package/day2/backend-project/node_modules/raw-body/index.d.ts +85 -0
  2429. package/day2/backend-project/node_modules/raw-body/index.js +336 -0
  2430. package/day2/backend-project/node_modules/raw-body/package.json +46 -0
  2431. package/day2/backend-project/node_modules/readdirp/LICENSE +21 -0
  2432. package/day2/backend-project/node_modules/readdirp/README.md +122 -0
  2433. package/day2/backend-project/node_modules/readdirp/index.d.ts +43 -0
  2434. package/day2/backend-project/node_modules/readdirp/index.js +287 -0
  2435. package/day2/backend-project/node_modules/readdirp/package.json +122 -0
  2436. package/day2/backend-project/node_modules/router/HISTORY.md +228 -0
  2437. package/day2/backend-project/node_modules/router/LICENSE +23 -0
  2438. package/day2/backend-project/node_modules/router/README.md +416 -0
  2439. package/day2/backend-project/node_modules/router/index.js +748 -0
  2440. package/day2/backend-project/node_modules/router/lib/layer.js +247 -0
  2441. package/day2/backend-project/node_modules/router/lib/route.js +242 -0
  2442. package/day2/backend-project/node_modules/router/package.json +44 -0
  2443. package/day2/backend-project/node_modules/safe-buffer/LICENSE +21 -0
  2444. package/day2/backend-project/node_modules/safe-buffer/README.md +584 -0
  2445. package/day2/backend-project/node_modules/safe-buffer/index.d.ts +187 -0
  2446. package/day2/backend-project/node_modules/safe-buffer/index.js +65 -0
  2447. package/day2/backend-project/node_modules/safe-buffer/package.json +51 -0
  2448. package/day2/backend-project/node_modules/safer-buffer/LICENSE +21 -0
  2449. package/day2/backend-project/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  2450. package/day2/backend-project/node_modules/safer-buffer/Readme.md +156 -0
  2451. package/day2/backend-project/node_modules/safer-buffer/dangerous.js +58 -0
  2452. package/day2/backend-project/node_modules/safer-buffer/package.json +34 -0
  2453. package/day2/backend-project/node_modules/safer-buffer/safer.js +77 -0
  2454. package/day2/backend-project/node_modules/safer-buffer/tests.js +406 -0
  2455. package/day2/backend-project/node_modules/semver/LICENSE +15 -0
  2456. package/day2/backend-project/node_modules/semver/README.md +680 -0
  2457. package/day2/backend-project/node_modules/semver/bin/semver.js +195 -0
  2458. package/day2/backend-project/node_modules/semver/classes/comparator.js +143 -0
  2459. package/day2/backend-project/node_modules/semver/classes/index.js +7 -0
  2460. package/day2/backend-project/node_modules/semver/classes/range.js +564 -0
  2461. package/day2/backend-project/node_modules/semver/classes/semver.js +333 -0
  2462. package/day2/backend-project/node_modules/semver/functions/clean.js +8 -0
  2463. package/day2/backend-project/node_modules/semver/functions/cmp.js +54 -0
  2464. package/day2/backend-project/node_modules/semver/functions/coerce.js +62 -0
  2465. package/day2/backend-project/node_modules/semver/functions/compare-build.js +9 -0
  2466. package/day2/backend-project/node_modules/semver/functions/compare-loose.js +5 -0
  2467. package/day2/backend-project/node_modules/semver/functions/compare.js +7 -0
  2468. package/day2/backend-project/node_modules/semver/functions/diff.js +60 -0
  2469. package/day2/backend-project/node_modules/semver/functions/eq.js +5 -0
  2470. package/day2/backend-project/node_modules/semver/functions/gt.js +5 -0
  2471. package/day2/backend-project/node_modules/semver/functions/gte.js +5 -0
  2472. package/day2/backend-project/node_modules/semver/functions/inc.js +21 -0
  2473. package/day2/backend-project/node_modules/semver/functions/lt.js +5 -0
  2474. package/day2/backend-project/node_modules/semver/functions/lte.js +5 -0
  2475. package/day2/backend-project/node_modules/semver/functions/major.js +5 -0
  2476. package/day2/backend-project/node_modules/semver/functions/minor.js +5 -0
  2477. package/day2/backend-project/node_modules/semver/functions/neq.js +5 -0
  2478. package/day2/backend-project/node_modules/semver/functions/parse.js +18 -0
  2479. package/day2/backend-project/node_modules/semver/functions/patch.js +5 -0
  2480. package/day2/backend-project/node_modules/semver/functions/prerelease.js +8 -0
  2481. package/day2/backend-project/node_modules/semver/functions/rcompare.js +5 -0
  2482. package/day2/backend-project/node_modules/semver/functions/rsort.js +5 -0
  2483. package/day2/backend-project/node_modules/semver/functions/satisfies.js +12 -0
  2484. package/day2/backend-project/node_modules/semver/functions/sort.js +5 -0
  2485. package/day2/backend-project/node_modules/semver/functions/truncate.js +48 -0
  2486. package/day2/backend-project/node_modules/semver/functions/valid.js +8 -0
  2487. package/day2/backend-project/node_modules/semver/index.js +93 -0
  2488. package/day2/backend-project/node_modules/semver/internal/constants.js +37 -0
  2489. package/day2/backend-project/node_modules/semver/internal/debug.js +11 -0
  2490. package/day2/backend-project/node_modules/semver/internal/identifiers.js +29 -0
  2491. package/day2/backend-project/node_modules/semver/internal/lrucache.js +42 -0
  2492. package/day2/backend-project/node_modules/semver/internal/parse-options.js +17 -0
  2493. package/day2/backend-project/node_modules/semver/internal/re.js +223 -0
  2494. package/day2/backend-project/node_modules/semver/package.json +78 -0
  2495. package/day2/backend-project/node_modules/semver/preload.js +4 -0
  2496. package/day2/backend-project/node_modules/semver/range.bnf +17 -0
  2497. package/day2/backend-project/node_modules/semver/ranges/gtr.js +6 -0
  2498. package/day2/backend-project/node_modules/semver/ranges/intersects.js +9 -0
  2499. package/day2/backend-project/node_modules/semver/ranges/ltr.js +6 -0
  2500. package/day2/backend-project/node_modules/semver/ranges/max-satisfying.js +27 -0
  2501. package/day2/backend-project/node_modules/semver/ranges/min-satisfying.js +26 -0
  2502. package/day2/backend-project/node_modules/semver/ranges/min-version.js +63 -0
  2503. package/day2/backend-project/node_modules/semver/ranges/outside.js +82 -0
  2504. package/day2/backend-project/node_modules/semver/ranges/simplify.js +49 -0
  2505. package/day2/backend-project/node_modules/semver/ranges/subset.js +249 -0
  2506. package/day2/backend-project/node_modules/semver/ranges/to-comparators.js +10 -0
  2507. package/day2/backend-project/node_modules/semver/ranges/valid.js +13 -0
  2508. package/day2/backend-project/node_modules/send/LICENSE +23 -0
  2509. package/day2/backend-project/node_modules/send/README.md +317 -0
  2510. package/day2/backend-project/node_modules/send/index.js +997 -0
  2511. package/day2/backend-project/node_modules/send/package.json +63 -0
  2512. package/day2/backend-project/node_modules/serve-static/LICENSE +25 -0
  2513. package/day2/backend-project/node_modules/serve-static/README.md +253 -0
  2514. package/day2/backend-project/node_modules/serve-static/index.js +208 -0
  2515. package/day2/backend-project/node_modules/serve-static/package.json +44 -0
  2516. package/day2/backend-project/node_modules/setprototypeof/LICENSE +13 -0
  2517. package/day2/backend-project/node_modules/setprototypeof/README.md +31 -0
  2518. package/day2/backend-project/node_modules/setprototypeof/index.d.ts +2 -0
  2519. package/day2/backend-project/node_modules/setprototypeof/index.js +17 -0
  2520. package/day2/backend-project/node_modules/setprototypeof/package.json +38 -0
  2521. package/day2/backend-project/node_modules/setprototypeof/test/index.js +24 -0
  2522. package/day2/backend-project/node_modules/side-channel/.editorconfig +9 -0
  2523. package/day2/backend-project/node_modules/side-channel/.eslintrc +12 -0
  2524. package/day2/backend-project/node_modules/side-channel/.github/FUNDING.yml +12 -0
  2525. package/day2/backend-project/node_modules/side-channel/.nycrc +13 -0
  2526. package/day2/backend-project/node_modules/side-channel/CHANGELOG.md +110 -0
  2527. package/day2/backend-project/node_modules/side-channel/LICENSE +21 -0
  2528. package/day2/backend-project/node_modules/side-channel/README.md +61 -0
  2529. package/day2/backend-project/node_modules/side-channel/index.d.ts +14 -0
  2530. package/day2/backend-project/node_modules/side-channel/index.js +43 -0
  2531. package/day2/backend-project/node_modules/side-channel/package.json +85 -0
  2532. package/day2/backend-project/node_modules/side-channel/test/index.js +104 -0
  2533. package/day2/backend-project/node_modules/side-channel/tsconfig.json +9 -0
  2534. package/day2/backend-project/node_modules/side-channel-list/.editorconfig +9 -0
  2535. package/day2/backend-project/node_modules/side-channel-list/.eslintrc +11 -0
  2536. package/day2/backend-project/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  2537. package/day2/backend-project/node_modules/side-channel-list/.nycrc +13 -0
  2538. package/day2/backend-project/node_modules/side-channel-list/CHANGELOG.md +36 -0
  2539. package/day2/backend-project/node_modules/side-channel-list/LICENSE +21 -0
  2540. package/day2/backend-project/node_modules/side-channel-list/README.md +62 -0
  2541. package/day2/backend-project/node_modules/side-channel-list/index.d.ts +13 -0
  2542. package/day2/backend-project/node_modules/side-channel-list/index.js +111 -0
  2543. package/day2/backend-project/node_modules/side-channel-list/list.d.ts +14 -0
  2544. package/day2/backend-project/node_modules/side-channel-list/package.json +77 -0
  2545. package/day2/backend-project/node_modules/side-channel-list/test/index.js +154 -0
  2546. package/day2/backend-project/node_modules/side-channel-list/tsconfig.json +9 -0
  2547. package/day2/backend-project/node_modules/side-channel-map/.editorconfig +9 -0
  2548. package/day2/backend-project/node_modules/side-channel-map/.eslintrc +11 -0
  2549. package/day2/backend-project/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  2550. package/day2/backend-project/node_modules/side-channel-map/.nycrc +13 -0
  2551. package/day2/backend-project/node_modules/side-channel-map/CHANGELOG.md +22 -0
  2552. package/day2/backend-project/node_modules/side-channel-map/LICENSE +21 -0
  2553. package/day2/backend-project/node_modules/side-channel-map/README.md +62 -0
  2554. package/day2/backend-project/node_modules/side-channel-map/index.d.ts +15 -0
  2555. package/day2/backend-project/node_modules/side-channel-map/index.js +68 -0
  2556. package/day2/backend-project/node_modules/side-channel-map/package.json +80 -0
  2557. package/day2/backend-project/node_modules/side-channel-map/test/index.js +114 -0
  2558. package/day2/backend-project/node_modules/side-channel-map/tsconfig.json +9 -0
  2559. package/day2/backend-project/node_modules/side-channel-weakmap/.editorconfig +9 -0
  2560. package/day2/backend-project/node_modules/side-channel-weakmap/.eslintrc +12 -0
  2561. package/day2/backend-project/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  2562. package/day2/backend-project/node_modules/side-channel-weakmap/.nycrc +13 -0
  2563. package/day2/backend-project/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  2564. package/day2/backend-project/node_modules/side-channel-weakmap/LICENSE +21 -0
  2565. package/day2/backend-project/node_modules/side-channel-weakmap/README.md +62 -0
  2566. package/day2/backend-project/node_modules/side-channel-weakmap/index.d.ts +15 -0
  2567. package/day2/backend-project/node_modules/side-channel-weakmap/index.js +84 -0
  2568. package/day2/backend-project/node_modules/side-channel-weakmap/package.json +87 -0
  2569. package/day2/backend-project/node_modules/side-channel-weakmap/test/index.js +114 -0
  2570. package/day2/backend-project/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  2571. package/day2/backend-project/node_modules/simple-update-notifier/LICENSE +21 -0
  2572. package/day2/backend-project/node_modules/simple-update-notifier/README.md +82 -0
  2573. package/day2/backend-project/node_modules/simple-update-notifier/build/index.d.ts +13 -0
  2574. package/day2/backend-project/node_modules/simple-update-notifier/build/index.js +210 -0
  2575. package/day2/backend-project/node_modules/simple-update-notifier/package.json +100 -0
  2576. package/day2/backend-project/node_modules/simple-update-notifier/src/borderedText.ts +12 -0
  2577. package/day2/backend-project/node_modules/simple-update-notifier/src/cache.spec.ts +17 -0
  2578. package/day2/backend-project/node_modules/simple-update-notifier/src/cache.ts +44 -0
  2579. package/day2/backend-project/node_modules/simple-update-notifier/src/getDistVersion.spec.ts +35 -0
  2580. package/day2/backend-project/node_modules/simple-update-notifier/src/getDistVersion.ts +29 -0
  2581. package/day2/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts +82 -0
  2582. package/day2/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.ts +40 -0
  2583. package/day2/backend-project/node_modules/simple-update-notifier/src/index.spec.ts +27 -0
  2584. package/day2/backend-project/node_modules/simple-update-notifier/src/index.ts +34 -0
  2585. package/day2/backend-project/node_modules/simple-update-notifier/src/isNpmOrYarn.ts +12 -0
  2586. package/day2/backend-project/node_modules/simple-update-notifier/src/types.ts +8 -0
  2587. package/day2/backend-project/node_modules/sql-escaper/LICENSE +21 -0
  2588. package/day2/backend-project/node_modules/sql-escaper/README.md +424 -0
  2589. package/day2/backend-project/node_modules/sql-escaper/lib/index.d.ts +15 -0
  2590. package/day2/backend-project/node_modules/sql-escaper/lib/index.js +398 -0
  2591. package/day2/backend-project/node_modules/sql-escaper/lib/index.mjs +305 -0
  2592. package/day2/backend-project/node_modules/sql-escaper/lib/types.d.ts +5 -0
  2593. package/day2/backend-project/node_modules/sql-escaper/lib/types.js +2 -0
  2594. package/day2/backend-project/node_modules/sql-escaper/package.json +81 -0
  2595. package/day2/backend-project/node_modules/statuses/HISTORY.md +87 -0
  2596. package/day2/backend-project/node_modules/statuses/LICENSE +23 -0
  2597. package/day2/backend-project/node_modules/statuses/README.md +139 -0
  2598. package/day2/backend-project/node_modules/statuses/codes.json +65 -0
  2599. package/day2/backend-project/node_modules/statuses/index.js +146 -0
  2600. package/day2/backend-project/node_modules/statuses/package.json +49 -0
  2601. package/day2/backend-project/node_modules/supports-color/browser.js +5 -0
  2602. package/day2/backend-project/node_modules/supports-color/index.js +131 -0
  2603. package/day2/backend-project/node_modules/supports-color/license +9 -0
  2604. package/day2/backend-project/node_modules/supports-color/package.json +53 -0
  2605. package/day2/backend-project/node_modules/supports-color/readme.md +66 -0
  2606. package/day2/backend-project/node_modules/to-regex-range/LICENSE +21 -0
  2607. package/day2/backend-project/node_modules/to-regex-range/README.md +305 -0
  2608. package/day2/backend-project/node_modules/to-regex-range/index.js +288 -0
  2609. package/day2/backend-project/node_modules/to-regex-range/package.json +88 -0
  2610. package/day2/backend-project/node_modules/toidentifier/HISTORY.md +9 -0
  2611. package/day2/backend-project/node_modules/toidentifier/LICENSE +21 -0
  2612. package/day2/backend-project/node_modules/toidentifier/README.md +61 -0
  2613. package/day2/backend-project/node_modules/toidentifier/index.js +32 -0
  2614. package/day2/backend-project/node_modules/toidentifier/package.json +38 -0
  2615. package/day2/backend-project/node_modules/touch/LICENSE +15 -0
  2616. package/day2/backend-project/node_modules/touch/README.md +52 -0
  2617. package/day2/backend-project/node_modules/touch/bin/nodetouch.js +112 -0
  2618. package/day2/backend-project/node_modules/touch/index.js +224 -0
  2619. package/day2/backend-project/node_modules/touch/package.json +25 -0
  2620. package/day2/backend-project/node_modules/type-is/HISTORY.md +292 -0
  2621. package/day2/backend-project/node_modules/type-is/LICENSE +23 -0
  2622. package/day2/backend-project/node_modules/type-is/README.md +198 -0
  2623. package/day2/backend-project/node_modules/type-is/index.js +240 -0
  2624. package/day2/backend-project/node_modules/type-is/node_modules/content-type/LICENSE +22 -0
  2625. package/day2/backend-project/node_modules/type-is/node_modules/content-type/README.md +69 -0
  2626. package/day2/backend-project/node_modules/type-is/node_modules/content-type/dist/index.d.ts +26 -0
  2627. package/day2/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js +170 -0
  2628. package/day2/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js.map +1 -0
  2629. package/day2/backend-project/node_modules/type-is/node_modules/content-type/package.json +52 -0
  2630. package/day2/backend-project/node_modules/type-is/package.json +51 -0
  2631. package/day2/backend-project/node_modules/undefsafe/.github/workflows/release.yml +25 -0
  2632. package/day2/backend-project/node_modules/undefsafe/.jscsrc +13 -0
  2633. package/day2/backend-project/node_modules/undefsafe/.jshintrc +16 -0
  2634. package/day2/backend-project/node_modules/undefsafe/.travis.yml +18 -0
  2635. package/day2/backend-project/node_modules/undefsafe/LICENSE +22 -0
  2636. package/day2/backend-project/node_modules/undefsafe/README.md +63 -0
  2637. package/day2/backend-project/node_modules/undefsafe/example.js +14 -0
  2638. package/day2/backend-project/node_modules/undefsafe/lib/undefsafe.js +125 -0
  2639. package/day2/backend-project/node_modules/undefsafe/package.json +34 -0
  2640. package/day2/backend-project/node_modules/undici-types/LICENSE +21 -0
  2641. package/day2/backend-project/node_modules/undici-types/README.md +6 -0
  2642. package/day2/backend-project/node_modules/undici-types/agent.d.ts +32 -0
  2643. package/day2/backend-project/node_modules/undici-types/api.d.ts +43 -0
  2644. package/day2/backend-project/node_modules/undici-types/balanced-pool.d.ts +30 -0
  2645. package/day2/backend-project/node_modules/undici-types/cache-interceptor.d.ts +179 -0
  2646. package/day2/backend-project/node_modules/undici-types/cache.d.ts +36 -0
  2647. package/day2/backend-project/node_modules/undici-types/client-stats.d.ts +15 -0
  2648. package/day2/backend-project/node_modules/undici-types/client.d.ts +123 -0
  2649. package/day2/backend-project/node_modules/undici-types/connector.d.ts +36 -0
  2650. package/day2/backend-project/node_modules/undici-types/content-type.d.ts +21 -0
  2651. package/day2/backend-project/node_modules/undici-types/cookies.d.ts +30 -0
  2652. package/day2/backend-project/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  2653. package/day2/backend-project/node_modules/undici-types/dispatcher.d.ts +279 -0
  2654. package/day2/backend-project/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  2655. package/day2/backend-project/node_modules/undici-types/errors.d.ts +177 -0
  2656. package/day2/backend-project/node_modules/undici-types/eventsource.d.ts +66 -0
  2657. package/day2/backend-project/node_modules/undici-types/fetch.d.ts +211 -0
  2658. package/day2/backend-project/node_modules/undici-types/formdata.d.ts +108 -0
  2659. package/day2/backend-project/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  2660. package/day2/backend-project/node_modules/undici-types/global-origin.d.ts +7 -0
  2661. package/day2/backend-project/node_modules/undici-types/h2c-client.d.ts +73 -0
  2662. package/day2/backend-project/node_modules/undici-types/handlers.d.ts +15 -0
  2663. package/day2/backend-project/node_modules/undici-types/header.d.ts +160 -0
  2664. package/day2/backend-project/node_modules/undici-types/index.d.ts +91 -0
  2665. package/day2/backend-project/node_modules/undici-types/interceptors.d.ts +80 -0
  2666. package/day2/backend-project/node_modules/undici-types/mock-agent.d.ts +68 -0
  2667. package/day2/backend-project/node_modules/undici-types/mock-call-history.d.ts +111 -0
  2668. package/day2/backend-project/node_modules/undici-types/mock-client.d.ts +27 -0
  2669. package/day2/backend-project/node_modules/undici-types/mock-errors.d.ts +12 -0
  2670. package/day2/backend-project/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  2671. package/day2/backend-project/node_modules/undici-types/mock-pool.d.ts +27 -0
  2672. package/day2/backend-project/node_modules/undici-types/package.json +55 -0
  2673. package/day2/backend-project/node_modules/undici-types/patch.d.ts +29 -0
  2674. package/day2/backend-project/node_modules/undici-types/pool-stats.d.ts +19 -0
  2675. package/day2/backend-project/node_modules/undici-types/pool.d.ts +41 -0
  2676. package/day2/backend-project/node_modules/undici-types/proxy-agent.d.ts +29 -0
  2677. package/day2/backend-project/node_modules/undici-types/readable.d.ts +68 -0
  2678. package/day2/backend-project/node_modules/undici-types/retry-agent.d.ts +8 -0
  2679. package/day2/backend-project/node_modules/undici-types/retry-handler.d.ts +125 -0
  2680. package/day2/backend-project/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  2681. package/day2/backend-project/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  2682. package/day2/backend-project/node_modules/undici-types/socks5-proxy-agent.d.ts +25 -0
  2683. package/day2/backend-project/node_modules/undici-types/util.d.ts +18 -0
  2684. package/day2/backend-project/node_modules/undici-types/utility.d.ts +7 -0
  2685. package/day2/backend-project/node_modules/undici-types/webidl.d.ts +347 -0
  2686. package/day2/backend-project/node_modules/undici-types/websocket.d.ts +188 -0
  2687. package/day2/backend-project/node_modules/unpipe/HISTORY.md +4 -0
  2688. package/day2/backend-project/node_modules/unpipe/LICENSE +22 -0
  2689. package/day2/backend-project/node_modules/unpipe/README.md +43 -0
  2690. package/day2/backend-project/node_modules/unpipe/index.js +69 -0
  2691. package/day2/backend-project/node_modules/unpipe/package.json +27 -0
  2692. package/day2/backend-project/node_modules/vary/HISTORY.md +39 -0
  2693. package/day2/backend-project/node_modules/vary/LICENSE +22 -0
  2694. package/day2/backend-project/node_modules/vary/README.md +101 -0
  2695. package/day2/backend-project/node_modules/vary/index.js +149 -0
  2696. package/day2/backend-project/node_modules/vary/package.json +43 -0
  2697. package/day2/backend-project/node_modules/wrappy/LICENSE +15 -0
  2698. package/day2/backend-project/node_modules/wrappy/README.md +36 -0
  2699. package/day2/backend-project/node_modules/wrappy/package.json +29 -0
  2700. package/day2/backend-project/node_modules/wrappy/wrappy.js +33 -0
  2701. package/day2/backend-project/package-lock.json +1458 -0
  2702. package/day2/backend-project/package.json +23 -0
  2703. package/day2/backend-project/src/server.js +15 -0
  2704. package/day2/frontend-project/README.md +18 -0
  2705. package/day2/frontend-project/eslint.config.js +21 -0
  2706. package/day2/frontend-project/index.html +13 -0
  2707. package/day2/frontend-project/package-lock.json +2722 -0
  2708. package/day2/frontend-project/package.json +32 -0
  2709. package/day2/frontend-project/public/favicon.svg +1 -0
  2710. package/day2/frontend-project/public/icons.svg +24 -0
  2711. package/day2/frontend-project/src/App.css +184 -0
  2712. package/day2/frontend-project/src/App.jsx +50 -0
  2713. package/day2/frontend-project/src/assets/hero.png +0 -0
  2714. package/day2/frontend-project/src/assets/react.svg +1 -0
  2715. package/day2/frontend-project/src/assets/vite.svg +1 -0
  2716. package/day2/frontend-project/src/index.css +1 -0
  2717. package/day2/frontend-project/src/main.jsx +10 -0
  2718. package/day2/frontend-project/vite.config.js +12 -0
  2719. package/day3/backend-project/.env +0 -0
  2720. package/day3/backend-project/node_modules/.bin/bcrypt +16 -0
  2721. package/day3/backend-project/node_modules/.bin/bcrypt.cmd +17 -0
  2722. package/day3/backend-project/node_modules/.bin/bcrypt.ps1 +28 -0
  2723. package/day3/backend-project/node_modules/.bin/nodemon +16 -0
  2724. package/day3/backend-project/node_modules/.bin/nodemon.cmd +17 -0
  2725. package/day3/backend-project/node_modules/.bin/nodemon.ps1 +28 -0
  2726. package/day3/backend-project/node_modules/.bin/nodetouch +16 -0
  2727. package/day3/backend-project/node_modules/.bin/nodetouch.cmd +17 -0
  2728. package/day3/backend-project/node_modules/.bin/nodetouch.ps1 +28 -0
  2729. package/day3/backend-project/node_modules/.bin/semver +16 -0
  2730. package/day3/backend-project/node_modules/.bin/semver.cmd +17 -0
  2731. package/day3/backend-project/node_modules/.bin/semver.ps1 +28 -0
  2732. package/day3/backend-project/node_modules/.package-lock.json +1430 -0
  2733. package/day3/backend-project/node_modules/@types/node/LICENSE +21 -0
  2734. package/day3/backend-project/node_modules/@types/node/README.md +15 -0
  2735. package/day3/backend-project/node_modules/@types/node/assert/strict.d.ts +59 -0
  2736. package/day3/backend-project/node_modules/@types/node/assert.d.ts +950 -0
  2737. package/day3/backend-project/node_modules/@types/node/async_hooks.d.ts +711 -0
  2738. package/day3/backend-project/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  2739. package/day3/backend-project/node_modules/@types/node/buffer.d.ts +1765 -0
  2740. package/day3/backend-project/node_modules/@types/node/child_process.d.ts +1366 -0
  2741. package/day3/backend-project/node_modules/@types/node/cluster.d.ts +432 -0
  2742. package/day3/backend-project/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  2743. package/day3/backend-project/node_modules/@types/node/console.d.ts +93 -0
  2744. package/day3/backend-project/node_modules/@types/node/constants.d.ts +14 -0
  2745. package/day3/backend-project/node_modules/@types/node/crypto.d.ts +4058 -0
  2746. package/day3/backend-project/node_modules/@types/node/dgram.d.ts +537 -0
  2747. package/day3/backend-project/node_modules/@types/node/diagnostics_channel.d.ts +552 -0
  2748. package/day3/backend-project/node_modules/@types/node/dns/promises.d.ts +497 -0
  2749. package/day3/backend-project/node_modules/@types/node/dns.d.ts +876 -0
  2750. package/day3/backend-project/node_modules/@types/node/domain.d.ts +150 -0
  2751. package/day3/backend-project/node_modules/@types/node/events.d.ts +1008 -0
  2752. package/day3/backend-project/node_modules/@types/node/fs/promises.d.ts +1468 -0
  2753. package/day3/backend-project/node_modules/@types/node/fs.d.ts +4780 -0
  2754. package/day3/backend-project/node_modules/@types/node/globals.d.ts +150 -0
  2755. package/day3/backend-project/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  2756. package/day3/backend-project/node_modules/@types/node/http.d.ts +2147 -0
  2757. package/day3/backend-project/node_modules/@types/node/http2.d.ts +2485 -0
  2758. package/day3/backend-project/node_modules/@types/node/https.d.ts +400 -0
  2759. package/day3/backend-project/node_modules/@types/node/index.d.ts +117 -0
  2760. package/day3/backend-project/node_modules/@types/node/inspector/promises.d.ts +35 -0
  2761. package/day3/backend-project/node_modules/@types/node/inspector.d.ts +264 -0
  2762. package/day3/backend-project/node_modules/@types/node/inspector.generated.d.ts +4406 -0
  2763. package/day3/backend-project/node_modules/@types/node/module.d.ts +755 -0
  2764. package/day3/backend-project/node_modules/@types/node/net.d.ts +970 -0
  2765. package/day3/backend-project/node_modules/@types/node/os.d.ts +498 -0
  2766. package/day3/backend-project/node_modules/@types/node/package.json +155 -0
  2767. package/day3/backend-project/node_modules/@types/node/path/posix.d.ts +8 -0
  2768. package/day3/backend-project/node_modules/@types/node/path/win32.d.ts +8 -0
  2769. package/day3/backend-project/node_modules/@types/node/path.d.ts +178 -0
  2770. package/day3/backend-project/node_modules/@types/node/perf_hooks.d.ts +612 -0
  2771. package/day3/backend-project/node_modules/@types/node/process.d.ts +2204 -0
  2772. package/day3/backend-project/node_modules/@types/node/punycode.d.ts +89 -0
  2773. package/day3/backend-project/node_modules/@types/node/querystring.d.ts +139 -0
  2774. package/day3/backend-project/node_modules/@types/node/quic.d.ts +897 -0
  2775. package/day3/backend-project/node_modules/@types/node/readline/promises.d.ts +158 -0
  2776. package/day3/backend-project/node_modules/@types/node/readline.d.ts +507 -0
  2777. package/day3/backend-project/node_modules/@types/node/repl.d.ts +420 -0
  2778. package/day3/backend-project/node_modules/@types/node/sea.d.ts +47 -0
  2779. package/day3/backend-project/node_modules/@types/node/sqlite.d.ts +1068 -0
  2780. package/day3/backend-project/node_modules/@types/node/stream/consumers.d.ts +114 -0
  2781. package/day3/backend-project/node_modules/@types/node/stream/iter.d.ts +301 -0
  2782. package/day3/backend-project/node_modules/@types/node/stream/promises.d.ts +211 -0
  2783. package/day3/backend-project/node_modules/@types/node/stream/web.d.ts +300 -0
  2784. package/day3/backend-project/node_modules/@types/node/stream.d.ts +1774 -0
  2785. package/day3/backend-project/node_modules/@types/node/string_decoder.d.ts +27 -0
  2786. package/day3/backend-project/node_modules/@types/node/test/reporters.d.ts +59 -0
  2787. package/day3/backend-project/node_modules/@types/node/test.d.ts +2279 -0
  2788. package/day3/backend-project/node_modules/@types/node/timers/promises.d.ts +93 -0
  2789. package/day3/backend-project/node_modules/@types/node/timers.d.ts +149 -0
  2790. package/day3/backend-project/node_modules/@types/node/tls.d.ts +1193 -0
  2791. package/day3/backend-project/node_modules/@types/node/trace_events.d.ts +103 -0
  2792. package/day3/backend-project/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  2793. package/day3/backend-project/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  2794. package/day3/backend-project/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  2795. package/day3/backend-project/node_modules/@types/node/ts5.6/index.d.ts +119 -0
  2796. package/day3/backend-project/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  2797. package/day3/backend-project/node_modules/@types/node/ts5.7/index.d.ts +119 -0
  2798. package/day3/backend-project/node_modules/@types/node/tty.d.ts +225 -0
  2799. package/day3/backend-project/node_modules/@types/node/url.d.ts +556 -0
  2800. package/day3/backend-project/node_modules/@types/node/util/types.d.ts +558 -0
  2801. package/day3/backend-project/node_modules/@types/node/util.d.ts +1677 -0
  2802. package/day3/backend-project/node_modules/@types/node/v8.d.ts +980 -0
  2803. package/day3/backend-project/node_modules/@types/node/vm.d.ts +1136 -0
  2804. package/day3/backend-project/node_modules/@types/node/wasi.d.ts +131 -0
  2805. package/day3/backend-project/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  2806. package/day3/backend-project/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  2807. package/day3/backend-project/node_modules/@types/node/web-globals/console.d.ts +9 -0
  2808. package/day3/backend-project/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  2809. package/day3/backend-project/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  2810. package/day3/backend-project/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  2811. package/day3/backend-project/node_modules/@types/node/web-globals/events.d.ts +106 -0
  2812. package/day3/backend-project/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
  2813. package/day3/backend-project/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  2814. package/day3/backend-project/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  2815. package/day3/backend-project/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  2816. package/day3/backend-project/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  2817. package/day3/backend-project/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  2818. package/day3/backend-project/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  2819. package/day3/backend-project/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  2820. package/day3/backend-project/node_modules/@types/node/web-globals/url.d.ts +24 -0
  2821. package/day3/backend-project/node_modules/@types/node/worker_threads.d.ts +671 -0
  2822. package/day3/backend-project/node_modules/@types/node/zlib/iter.d.ts +131 -0
  2823. package/day3/backend-project/node_modules/@types/node/zlib.d.ts +589 -0
  2824. package/day3/backend-project/node_modules/accepts/HISTORY.md +250 -0
  2825. package/day3/backend-project/node_modules/accepts/LICENSE +23 -0
  2826. package/day3/backend-project/node_modules/accepts/README.md +140 -0
  2827. package/day3/backend-project/node_modules/accepts/index.js +238 -0
  2828. package/day3/backend-project/node_modules/accepts/package.json +47 -0
  2829. package/day3/backend-project/node_modules/anymatch/LICENSE +15 -0
  2830. package/day3/backend-project/node_modules/anymatch/README.md +87 -0
  2831. package/day3/backend-project/node_modules/anymatch/index.d.ts +20 -0
  2832. package/day3/backend-project/node_modules/anymatch/index.js +104 -0
  2833. package/day3/backend-project/node_modules/anymatch/package.json +48 -0
  2834. package/day3/backend-project/node_modules/aws-ssl-profiles/LICENSE +19 -0
  2835. package/day3/backend-project/node_modules/aws-ssl-profiles/README.md +146 -0
  2836. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.d.ts +4 -0
  2837. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.js +2 -0
  2838. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/index.d.ts +8 -0
  2839. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/index.js +13 -0
  2840. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.d.ts +9 -0
  2841. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.js +2888 -0
  2842. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.d.ts +8 -0
  2843. package/day3/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.js +111 -0
  2844. package/day3/backend-project/node_modules/aws-ssl-profiles/package.json +52 -0
  2845. package/day3/backend-project/node_modules/balanced-match/LICENSE.md +23 -0
  2846. package/day3/backend-project/node_modules/balanced-match/README.md +57 -0
  2847. package/day3/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
  2848. package/day3/backend-project/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
  2849. package/day3/backend-project/node_modules/balanced-match/dist/commonjs/index.js +59 -0
  2850. package/day3/backend-project/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
  2851. package/day3/backend-project/node_modules/balanced-match/dist/commonjs/package.json +3 -0
  2852. package/day3/backend-project/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
  2853. package/day3/backend-project/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
  2854. package/day3/backend-project/node_modules/balanced-match/dist/esm/index.js +54 -0
  2855. package/day3/backend-project/node_modules/balanced-match/dist/esm/index.js.map +1 -0
  2856. package/day3/backend-project/node_modules/balanced-match/dist/esm/package.json +3 -0
  2857. package/day3/backend-project/node_modules/balanced-match/package.json +68 -0
  2858. package/day3/backend-project/node_modules/bcryptjs/LICENSE +27 -0
  2859. package/day3/backend-project/node_modules/bcryptjs/README.md +201 -0
  2860. package/day3/backend-project/node_modules/bcryptjs/bin/bcrypt +23 -0
  2861. package/day3/backend-project/node_modules/bcryptjs/index.d.ts +3 -0
  2862. package/day3/backend-project/node_modules/bcryptjs/index.js +1159 -0
  2863. package/day3/backend-project/node_modules/bcryptjs/package.json +76 -0
  2864. package/day3/backend-project/node_modules/bcryptjs/types.d.ts +157 -0
  2865. package/day3/backend-project/node_modules/bcryptjs/umd/index.d.ts +3 -0
  2866. package/day3/backend-project/node_modules/bcryptjs/umd/index.js +1220 -0
  2867. package/day3/backend-project/node_modules/bcryptjs/umd/package.json +3 -0
  2868. package/day3/backend-project/node_modules/bcryptjs/umd/types.d.ts +157 -0
  2869. package/day3/backend-project/node_modules/binary-extensions/binary-extensions.json +263 -0
  2870. package/day3/backend-project/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
  2871. package/day3/backend-project/node_modules/binary-extensions/index.d.ts +14 -0
  2872. package/day3/backend-project/node_modules/binary-extensions/index.js +1 -0
  2873. package/day3/backend-project/node_modules/binary-extensions/license +10 -0
  2874. package/day3/backend-project/node_modules/binary-extensions/package.json +40 -0
  2875. package/day3/backend-project/node_modules/binary-extensions/readme.md +25 -0
  2876. package/day3/backend-project/node_modules/body-parser/LICENSE +23 -0
  2877. package/day3/backend-project/node_modules/body-parser/README.md +494 -0
  2878. package/day3/backend-project/node_modules/body-parser/index.js +71 -0
  2879. package/day3/backend-project/node_modules/body-parser/lib/read.js +247 -0
  2880. package/day3/backend-project/node_modules/body-parser/lib/types/json.js +158 -0
  2881. package/day3/backend-project/node_modules/body-parser/lib/types/raw.js +42 -0
  2882. package/day3/backend-project/node_modules/body-parser/lib/types/text.js +36 -0
  2883. package/day3/backend-project/node_modules/body-parser/lib/types/urlencoded.js +142 -0
  2884. package/day3/backend-project/node_modules/body-parser/lib/utils.js +98 -0
  2885. package/day3/backend-project/node_modules/body-parser/package.json +52 -0
  2886. package/day3/backend-project/node_modules/brace-expansion/LICENSE +23 -0
  2887. package/day3/backend-project/node_modules/brace-expansion/README.md +94 -0
  2888. package/day3/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
  2889. package/day3/backend-project/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
  2890. package/day3/backend-project/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
  2891. package/day3/backend-project/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
  2892. package/day3/backend-project/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
  2893. package/day3/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
  2894. package/day3/backend-project/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
  2895. package/day3/backend-project/node_modules/brace-expansion/dist/esm/index.js +197 -0
  2896. package/day3/backend-project/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
  2897. package/day3/backend-project/node_modules/brace-expansion/dist/esm/package.json +3 -0
  2898. package/day3/backend-project/node_modules/brace-expansion/package.json +64 -0
  2899. package/day3/backend-project/node_modules/braces/LICENSE +21 -0
  2900. package/day3/backend-project/node_modules/braces/README.md +586 -0
  2901. package/day3/backend-project/node_modules/braces/index.js +170 -0
  2902. package/day3/backend-project/node_modules/braces/lib/compile.js +60 -0
  2903. package/day3/backend-project/node_modules/braces/lib/constants.js +57 -0
  2904. package/day3/backend-project/node_modules/braces/lib/expand.js +113 -0
  2905. package/day3/backend-project/node_modules/braces/lib/parse.js +331 -0
  2906. package/day3/backend-project/node_modules/braces/lib/stringify.js +32 -0
  2907. package/day3/backend-project/node_modules/braces/lib/utils.js +122 -0
  2908. package/day3/backend-project/node_modules/braces/package.json +77 -0
  2909. package/day3/backend-project/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
  2910. package/day3/backend-project/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
  2911. package/day3/backend-project/node_modules/buffer-equal-constant-time/README.md +50 -0
  2912. package/day3/backend-project/node_modules/buffer-equal-constant-time/index.js +41 -0
  2913. package/day3/backend-project/node_modules/buffer-equal-constant-time/package.json +21 -0
  2914. package/day3/backend-project/node_modules/buffer-equal-constant-time/test.js +42 -0
  2915. package/day3/backend-project/node_modules/bytes/History.md +97 -0
  2916. package/day3/backend-project/node_modules/bytes/LICENSE +23 -0
  2917. package/day3/backend-project/node_modules/bytes/Readme.md +152 -0
  2918. package/day3/backend-project/node_modules/bytes/index.js +170 -0
  2919. package/day3/backend-project/node_modules/bytes/package.json +42 -0
  2920. package/day3/backend-project/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  2921. package/day3/backend-project/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  2922. package/day3/backend-project/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  2923. package/day3/backend-project/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  2924. package/day3/backend-project/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  2925. package/day3/backend-project/node_modules/call-bind-apply-helpers/README.md +62 -0
  2926. package/day3/backend-project/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  2927. package/day3/backend-project/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  2928. package/day3/backend-project/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  2929. package/day3/backend-project/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  2930. package/day3/backend-project/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  2931. package/day3/backend-project/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  2932. package/day3/backend-project/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  2933. package/day3/backend-project/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  2934. package/day3/backend-project/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  2935. package/day3/backend-project/node_modules/call-bind-apply-helpers/index.js +15 -0
  2936. package/day3/backend-project/node_modules/call-bind-apply-helpers/package.json +85 -0
  2937. package/day3/backend-project/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  2938. package/day3/backend-project/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  2939. package/day3/backend-project/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  2940. package/day3/backend-project/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  2941. package/day3/backend-project/node_modules/call-bound/.eslintrc +13 -0
  2942. package/day3/backend-project/node_modules/call-bound/.github/FUNDING.yml +12 -0
  2943. package/day3/backend-project/node_modules/call-bound/.nycrc +9 -0
  2944. package/day3/backend-project/node_modules/call-bound/CHANGELOG.md +42 -0
  2945. package/day3/backend-project/node_modules/call-bound/LICENSE +21 -0
  2946. package/day3/backend-project/node_modules/call-bound/README.md +53 -0
  2947. package/day3/backend-project/node_modules/call-bound/index.d.ts +94 -0
  2948. package/day3/backend-project/node_modules/call-bound/index.js +19 -0
  2949. package/day3/backend-project/node_modules/call-bound/package.json +99 -0
  2950. package/day3/backend-project/node_modules/call-bound/test/index.js +61 -0
  2951. package/day3/backend-project/node_modules/call-bound/tsconfig.json +10 -0
  2952. package/day3/backend-project/node_modules/chokidar/LICENSE +21 -0
  2953. package/day3/backend-project/node_modules/chokidar/README.md +308 -0
  2954. package/day3/backend-project/node_modules/chokidar/index.js +973 -0
  2955. package/day3/backend-project/node_modules/chokidar/lib/constants.js +66 -0
  2956. package/day3/backend-project/node_modules/chokidar/lib/fsevents-handler.js +526 -0
  2957. package/day3/backend-project/node_modules/chokidar/lib/nodefs-handler.js +654 -0
  2958. package/day3/backend-project/node_modules/chokidar/package.json +70 -0
  2959. package/day3/backend-project/node_modules/chokidar/types/index.d.ts +192 -0
  2960. package/day3/backend-project/node_modules/content-disposition/LICENSE +22 -0
  2961. package/day3/backend-project/node_modules/content-disposition/README.md +141 -0
  2962. package/day3/backend-project/node_modules/content-disposition/index.js +536 -0
  2963. package/day3/backend-project/node_modules/content-disposition/package.json +40 -0
  2964. package/day3/backend-project/node_modules/content-type/HISTORY.md +29 -0
  2965. package/day3/backend-project/node_modules/content-type/LICENSE +22 -0
  2966. package/day3/backend-project/node_modules/content-type/README.md +94 -0
  2967. package/day3/backend-project/node_modules/content-type/index.js +225 -0
  2968. package/day3/backend-project/node_modules/content-type/package.json +42 -0
  2969. package/day3/backend-project/node_modules/cookie/LICENSE +24 -0
  2970. package/day3/backend-project/node_modules/cookie/README.md +317 -0
  2971. package/day3/backend-project/node_modules/cookie/SECURITY.md +25 -0
  2972. package/day3/backend-project/node_modules/cookie/index.js +335 -0
  2973. package/day3/backend-project/node_modules/cookie/package.json +44 -0
  2974. package/day3/backend-project/node_modules/cookie-signature/History.md +70 -0
  2975. package/day3/backend-project/node_modules/cookie-signature/LICENSE +22 -0
  2976. package/day3/backend-project/node_modules/cookie-signature/Readme.md +23 -0
  2977. package/day3/backend-project/node_modules/cookie-signature/index.js +47 -0
  2978. package/day3/backend-project/node_modules/cookie-signature/package.json +24 -0
  2979. package/day3/backend-project/node_modules/cors/LICENSE +22 -0
  2980. package/day3/backend-project/node_modules/cors/README.md +277 -0
  2981. package/day3/backend-project/node_modules/cors/lib/index.js +238 -0
  2982. package/day3/backend-project/node_modules/cors/package.json +42 -0
  2983. package/day3/backend-project/node_modules/debug/LICENSE +20 -0
  2984. package/day3/backend-project/node_modules/debug/README.md +481 -0
  2985. package/day3/backend-project/node_modules/debug/package.json +64 -0
  2986. package/day3/backend-project/node_modules/debug/src/browser.js +272 -0
  2987. package/day3/backend-project/node_modules/debug/src/common.js +292 -0
  2988. package/day3/backend-project/node_modules/debug/src/index.js +10 -0
  2989. package/day3/backend-project/node_modules/debug/src/node.js +263 -0
  2990. package/day3/backend-project/node_modules/denque/CHANGELOG.md +29 -0
  2991. package/day3/backend-project/node_modules/denque/LICENSE +201 -0
  2992. package/day3/backend-project/node_modules/denque/README.md +77 -0
  2993. package/day3/backend-project/node_modules/denque/index.d.ts +47 -0
  2994. package/day3/backend-project/node_modules/denque/index.js +481 -0
  2995. package/day3/backend-project/node_modules/denque/package.json +58 -0
  2996. package/day3/backend-project/node_modules/depd/History.md +103 -0
  2997. package/day3/backend-project/node_modules/depd/LICENSE +22 -0
  2998. package/day3/backend-project/node_modules/depd/Readme.md +280 -0
  2999. package/day3/backend-project/node_modules/depd/index.js +538 -0
  3000. package/day3/backend-project/node_modules/depd/lib/browser/index.js +77 -0
  3001. package/day3/backend-project/node_modules/depd/package.json +45 -0
  3002. package/day3/backend-project/node_modules/dotenv/CHANGELOG.md +643 -0
  3003. package/day3/backend-project/node_modules/dotenv/LICENSE +23 -0
  3004. package/day3/backend-project/node_modules/dotenv/README-es.md +757 -0
  3005. package/day3/backend-project/node_modules/dotenv/README.md +812 -0
  3006. package/day3/backend-project/node_modules/dotenv/SECURITY.md +1 -0
  3007. package/day3/backend-project/node_modules/dotenv/config.d.ts +1 -0
  3008. package/day3/backend-project/node_modules/dotenv/config.js +9 -0
  3009. package/day3/backend-project/node_modules/dotenv/lib/cli-options.js +17 -0
  3010. package/day3/backend-project/node_modules/dotenv/lib/env-options.js +28 -0
  3011. package/day3/backend-project/node_modules/dotenv/lib/main.d.ts +179 -0
  3012. package/day3/backend-project/node_modules/dotenv/lib/main.js +423 -0
  3013. package/day3/backend-project/node_modules/dotenv/package.json +62 -0
  3014. package/day3/backend-project/node_modules/dotenv/skills/dotenv/SKILL.md +200 -0
  3015. package/day3/backend-project/node_modules/dotenv/skills/dotenvx/SKILL.md +118 -0
  3016. package/day3/backend-project/node_modules/dunder-proto/.eslintrc +5 -0
  3017. package/day3/backend-project/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  3018. package/day3/backend-project/node_modules/dunder-proto/.nycrc +13 -0
  3019. package/day3/backend-project/node_modules/dunder-proto/CHANGELOG.md +24 -0
  3020. package/day3/backend-project/node_modules/dunder-proto/LICENSE +21 -0
  3021. package/day3/backend-project/node_modules/dunder-proto/README.md +54 -0
  3022. package/day3/backend-project/node_modules/dunder-proto/get.d.ts +5 -0
  3023. package/day3/backend-project/node_modules/dunder-proto/get.js +30 -0
  3024. package/day3/backend-project/node_modules/dunder-proto/package.json +76 -0
  3025. package/day3/backend-project/node_modules/dunder-proto/set.d.ts +5 -0
  3026. package/day3/backend-project/node_modules/dunder-proto/set.js +35 -0
  3027. package/day3/backend-project/node_modules/dunder-proto/test/get.js +34 -0
  3028. package/day3/backend-project/node_modules/dunder-proto/test/index.js +4 -0
  3029. package/day3/backend-project/node_modules/dunder-proto/test/set.js +50 -0
  3030. package/day3/backend-project/node_modules/dunder-proto/tsconfig.json +9 -0
  3031. package/day3/backend-project/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  3032. package/day3/backend-project/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  3033. package/day3/backend-project/node_modules/ecdsa-sig-formatter/README.md +65 -0
  3034. package/day3/backend-project/node_modules/ecdsa-sig-formatter/package.json +46 -0
  3035. package/day3/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  3036. package/day3/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  3037. package/day3/backend-project/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  3038. package/day3/backend-project/node_modules/ee-first/LICENSE +22 -0
  3039. package/day3/backend-project/node_modules/ee-first/README.md +80 -0
  3040. package/day3/backend-project/node_modules/ee-first/index.js +95 -0
  3041. package/day3/backend-project/node_modules/ee-first/package.json +29 -0
  3042. package/day3/backend-project/node_modules/encodeurl/LICENSE +22 -0
  3043. package/day3/backend-project/node_modules/encodeurl/README.md +109 -0
  3044. package/day3/backend-project/node_modules/encodeurl/index.js +60 -0
  3045. package/day3/backend-project/node_modules/encodeurl/package.json +40 -0
  3046. package/day3/backend-project/node_modules/es-define-property/.eslintrc +13 -0
  3047. package/day3/backend-project/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  3048. package/day3/backend-project/node_modules/es-define-property/.nycrc +9 -0
  3049. package/day3/backend-project/node_modules/es-define-property/CHANGELOG.md +29 -0
  3050. package/day3/backend-project/node_modules/es-define-property/LICENSE +21 -0
  3051. package/day3/backend-project/node_modules/es-define-property/README.md +49 -0
  3052. package/day3/backend-project/node_modules/es-define-property/index.d.ts +3 -0
  3053. package/day3/backend-project/node_modules/es-define-property/index.js +14 -0
  3054. package/day3/backend-project/node_modules/es-define-property/package.json +81 -0
  3055. package/day3/backend-project/node_modules/es-define-property/test/index.js +56 -0
  3056. package/day3/backend-project/node_modules/es-define-property/tsconfig.json +10 -0
  3057. package/day3/backend-project/node_modules/es-errors/.eslintrc +5 -0
  3058. package/day3/backend-project/node_modules/es-errors/.github/FUNDING.yml +12 -0
  3059. package/day3/backend-project/node_modules/es-errors/CHANGELOG.md +40 -0
  3060. package/day3/backend-project/node_modules/es-errors/LICENSE +21 -0
  3061. package/day3/backend-project/node_modules/es-errors/README.md +55 -0
  3062. package/day3/backend-project/node_modules/es-errors/eval.d.ts +3 -0
  3063. package/day3/backend-project/node_modules/es-errors/eval.js +4 -0
  3064. package/day3/backend-project/node_modules/es-errors/index.d.ts +3 -0
  3065. package/day3/backend-project/node_modules/es-errors/index.js +4 -0
  3066. package/day3/backend-project/node_modules/es-errors/package.json +80 -0
  3067. package/day3/backend-project/node_modules/es-errors/range.d.ts +3 -0
  3068. package/day3/backend-project/node_modules/es-errors/range.js +4 -0
  3069. package/day3/backend-project/node_modules/es-errors/ref.d.ts +3 -0
  3070. package/day3/backend-project/node_modules/es-errors/ref.js +4 -0
  3071. package/day3/backend-project/node_modules/es-errors/syntax.d.ts +3 -0
  3072. package/day3/backend-project/node_modules/es-errors/syntax.js +4 -0
  3073. package/day3/backend-project/node_modules/es-errors/test/index.js +19 -0
  3074. package/day3/backend-project/node_modules/es-errors/tsconfig.json +49 -0
  3075. package/day3/backend-project/node_modules/es-errors/type.d.ts +3 -0
  3076. package/day3/backend-project/node_modules/es-errors/type.js +4 -0
  3077. package/day3/backend-project/node_modules/es-errors/uri.d.ts +3 -0
  3078. package/day3/backend-project/node_modules/es-errors/uri.js +4 -0
  3079. package/day3/backend-project/node_modules/es-object-atoms/.eslintrc +16 -0
  3080. package/day3/backend-project/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  3081. package/day3/backend-project/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  3082. package/day3/backend-project/node_modules/es-object-atoms/LICENSE +21 -0
  3083. package/day3/backend-project/node_modules/es-object-atoms/README.md +63 -0
  3084. package/day3/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  3085. package/day3/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  3086. package/day3/backend-project/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  3087. package/day3/backend-project/node_modules/es-object-atoms/ToObject.js +10 -0
  3088. package/day3/backend-project/node_modules/es-object-atoms/index.d.ts +3 -0
  3089. package/day3/backend-project/node_modules/es-object-atoms/index.js +4 -0
  3090. package/day3/backend-project/node_modules/es-object-atoms/isObject.d.ts +3 -0
  3091. package/day3/backend-project/node_modules/es-object-atoms/isObject.js +6 -0
  3092. package/day3/backend-project/node_modules/es-object-atoms/package.json +79 -0
  3093. package/day3/backend-project/node_modules/es-object-atoms/test/index.js +38 -0
  3094. package/day3/backend-project/node_modules/es-object-atoms/tsconfig.json +7 -0
  3095. package/day3/backend-project/node_modules/escape-html/LICENSE +24 -0
  3096. package/day3/backend-project/node_modules/escape-html/Readme.md +43 -0
  3097. package/day3/backend-project/node_modules/escape-html/index.js +78 -0
  3098. package/day3/backend-project/node_modules/escape-html/package.json +24 -0
  3099. package/day3/backend-project/node_modules/etag/HISTORY.md +83 -0
  3100. package/day3/backend-project/node_modules/etag/LICENSE +22 -0
  3101. package/day3/backend-project/node_modules/etag/README.md +159 -0
  3102. package/day3/backend-project/node_modules/etag/index.js +131 -0
  3103. package/day3/backend-project/node_modules/etag/package.json +47 -0
  3104. package/day3/backend-project/node_modules/express/LICENSE +24 -0
  3105. package/day3/backend-project/node_modules/express/Readme.md +276 -0
  3106. package/day3/backend-project/node_modules/express/index.js +11 -0
  3107. package/day3/backend-project/node_modules/express/lib/application.js +631 -0
  3108. package/day3/backend-project/node_modules/express/lib/express.js +81 -0
  3109. package/day3/backend-project/node_modules/express/lib/request.js +514 -0
  3110. package/day3/backend-project/node_modules/express/lib/response.js +1053 -0
  3111. package/day3/backend-project/node_modules/express/lib/utils.js +271 -0
  3112. package/day3/backend-project/node_modules/express/lib/view.js +205 -0
  3113. package/day3/backend-project/node_modules/express/package.json +99 -0
  3114. package/day3/backend-project/node_modules/fill-range/LICENSE +21 -0
  3115. package/day3/backend-project/node_modules/fill-range/README.md +237 -0
  3116. package/day3/backend-project/node_modules/fill-range/index.js +248 -0
  3117. package/day3/backend-project/node_modules/fill-range/package.json +74 -0
  3118. package/day3/backend-project/node_modules/finalhandler/HISTORY.md +239 -0
  3119. package/day3/backend-project/node_modules/finalhandler/LICENSE +22 -0
  3120. package/day3/backend-project/node_modules/finalhandler/README.md +150 -0
  3121. package/day3/backend-project/node_modules/finalhandler/index.js +293 -0
  3122. package/day3/backend-project/node_modules/finalhandler/package.json +47 -0
  3123. package/day3/backend-project/node_modules/forwarded/HISTORY.md +21 -0
  3124. package/day3/backend-project/node_modules/forwarded/LICENSE +22 -0
  3125. package/day3/backend-project/node_modules/forwarded/README.md +57 -0
  3126. package/day3/backend-project/node_modules/forwarded/index.js +90 -0
  3127. package/day3/backend-project/node_modules/forwarded/package.json +45 -0
  3128. package/day3/backend-project/node_modules/fresh/HISTORY.md +80 -0
  3129. package/day3/backend-project/node_modules/fresh/LICENSE +23 -0
  3130. package/day3/backend-project/node_modules/fresh/README.md +117 -0
  3131. package/day3/backend-project/node_modules/fresh/index.js +136 -0
  3132. package/day3/backend-project/node_modules/fresh/package.json +46 -0
  3133. package/day3/backend-project/node_modules/function-bind/.eslintrc +21 -0
  3134. package/day3/backend-project/node_modules/function-bind/.github/FUNDING.yml +12 -0
  3135. package/day3/backend-project/node_modules/function-bind/.github/SECURITY.md +3 -0
  3136. package/day3/backend-project/node_modules/function-bind/.nycrc +13 -0
  3137. package/day3/backend-project/node_modules/function-bind/CHANGELOG.md +136 -0
  3138. package/day3/backend-project/node_modules/function-bind/LICENSE +20 -0
  3139. package/day3/backend-project/node_modules/function-bind/README.md +46 -0
  3140. package/day3/backend-project/node_modules/function-bind/implementation.js +84 -0
  3141. package/day3/backend-project/node_modules/function-bind/index.js +5 -0
  3142. package/day3/backend-project/node_modules/function-bind/package.json +87 -0
  3143. package/day3/backend-project/node_modules/function-bind/test/.eslintrc +9 -0
  3144. package/day3/backend-project/node_modules/function-bind/test/index.js +252 -0
  3145. package/day3/backend-project/node_modules/generate-function/.travis.yml +3 -0
  3146. package/day3/backend-project/node_modules/generate-function/LICENSE +21 -0
  3147. package/day3/backend-project/node_modules/generate-function/README.md +89 -0
  3148. package/day3/backend-project/node_modules/generate-function/example.js +27 -0
  3149. package/day3/backend-project/node_modules/generate-function/index.js +181 -0
  3150. package/day3/backend-project/node_modules/generate-function/package.json +32 -0
  3151. package/day3/backend-project/node_modules/generate-function/test.js +49 -0
  3152. package/day3/backend-project/node_modules/get-intrinsic/.eslintrc +42 -0
  3153. package/day3/backend-project/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  3154. package/day3/backend-project/node_modules/get-intrinsic/.nycrc +9 -0
  3155. package/day3/backend-project/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  3156. package/day3/backend-project/node_modules/get-intrinsic/LICENSE +21 -0
  3157. package/day3/backend-project/node_modules/get-intrinsic/README.md +71 -0
  3158. package/day3/backend-project/node_modules/get-intrinsic/index.js +378 -0
  3159. package/day3/backend-project/node_modules/get-intrinsic/package.json +97 -0
  3160. package/day3/backend-project/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  3161. package/day3/backend-project/node_modules/get-proto/.eslintrc +10 -0
  3162. package/day3/backend-project/node_modules/get-proto/.github/FUNDING.yml +12 -0
  3163. package/day3/backend-project/node_modules/get-proto/.nycrc +9 -0
  3164. package/day3/backend-project/node_modules/get-proto/CHANGELOG.md +21 -0
  3165. package/day3/backend-project/node_modules/get-proto/LICENSE +21 -0
  3166. package/day3/backend-project/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  3167. package/day3/backend-project/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  3168. package/day3/backend-project/node_modules/get-proto/README.md +50 -0
  3169. package/day3/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  3170. package/day3/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  3171. package/day3/backend-project/node_modules/get-proto/index.d.ts +5 -0
  3172. package/day3/backend-project/node_modules/get-proto/index.js +27 -0
  3173. package/day3/backend-project/node_modules/get-proto/package.json +81 -0
  3174. package/day3/backend-project/node_modules/get-proto/test/index.js +68 -0
  3175. package/day3/backend-project/node_modules/get-proto/tsconfig.json +9 -0
  3176. package/day3/backend-project/node_modules/glob-parent/CHANGELOG.md +110 -0
  3177. package/day3/backend-project/node_modules/glob-parent/LICENSE +15 -0
  3178. package/day3/backend-project/node_modules/glob-parent/README.md +137 -0
  3179. package/day3/backend-project/node_modules/glob-parent/index.js +42 -0
  3180. package/day3/backend-project/node_modules/glob-parent/package.json +48 -0
  3181. package/day3/backend-project/node_modules/gopd/.eslintrc +16 -0
  3182. package/day3/backend-project/node_modules/gopd/.github/FUNDING.yml +12 -0
  3183. package/day3/backend-project/node_modules/gopd/CHANGELOG.md +45 -0
  3184. package/day3/backend-project/node_modules/gopd/LICENSE +21 -0
  3185. package/day3/backend-project/node_modules/gopd/README.md +40 -0
  3186. package/day3/backend-project/node_modules/gopd/gOPD.d.ts +1 -0
  3187. package/day3/backend-project/node_modules/gopd/gOPD.js +4 -0
  3188. package/day3/backend-project/node_modules/gopd/index.d.ts +5 -0
  3189. package/day3/backend-project/node_modules/gopd/index.js +15 -0
  3190. package/day3/backend-project/node_modules/gopd/package.json +77 -0
  3191. package/day3/backend-project/node_modules/gopd/test/index.js +36 -0
  3192. package/day3/backend-project/node_modules/gopd/tsconfig.json +9 -0
  3193. package/day3/backend-project/node_modules/has-flag/index.js +8 -0
  3194. package/day3/backend-project/node_modules/has-flag/license +9 -0
  3195. package/day3/backend-project/node_modules/has-flag/package.json +44 -0
  3196. package/day3/backend-project/node_modules/has-flag/readme.md +70 -0
  3197. package/day3/backend-project/node_modules/has-symbols/.eslintrc +11 -0
  3198. package/day3/backend-project/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  3199. package/day3/backend-project/node_modules/has-symbols/.nycrc +9 -0
  3200. package/day3/backend-project/node_modules/has-symbols/CHANGELOG.md +91 -0
  3201. package/day3/backend-project/node_modules/has-symbols/LICENSE +21 -0
  3202. package/day3/backend-project/node_modules/has-symbols/README.md +46 -0
  3203. package/day3/backend-project/node_modules/has-symbols/index.d.ts +3 -0
  3204. package/day3/backend-project/node_modules/has-symbols/index.js +14 -0
  3205. package/day3/backend-project/node_modules/has-symbols/package.json +111 -0
  3206. package/day3/backend-project/node_modules/has-symbols/shams.d.ts +3 -0
  3207. package/day3/backend-project/node_modules/has-symbols/shams.js +45 -0
  3208. package/day3/backend-project/node_modules/has-symbols/test/index.js +22 -0
  3209. package/day3/backend-project/node_modules/has-symbols/test/shams/core-js.js +29 -0
  3210. package/day3/backend-project/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  3211. package/day3/backend-project/node_modules/has-symbols/test/tests.js +58 -0
  3212. package/day3/backend-project/node_modules/has-symbols/tsconfig.json +10 -0
  3213. package/day3/backend-project/node_modules/hasown/.github/FUNDING.yml +12 -0
  3214. package/day3/backend-project/node_modules/hasown/.nycrc +13 -0
  3215. package/day3/backend-project/node_modules/hasown/CHANGELOG.md +58 -0
  3216. package/day3/backend-project/node_modules/hasown/LICENSE +21 -0
  3217. package/day3/backend-project/node_modules/hasown/README.md +40 -0
  3218. package/day3/backend-project/node_modules/hasown/eslint.config.mjs +6 -0
  3219. package/day3/backend-project/node_modules/hasown/index.d.ts +3 -0
  3220. package/day3/backend-project/node_modules/hasown/index.js +8 -0
  3221. package/day3/backend-project/node_modules/hasown/package.json +91 -0
  3222. package/day3/backend-project/node_modules/hasown/tsconfig.json +6 -0
  3223. package/day3/backend-project/node_modules/http-errors/HISTORY.md +186 -0
  3224. package/day3/backend-project/node_modules/http-errors/LICENSE +23 -0
  3225. package/day3/backend-project/node_modules/http-errors/README.md +169 -0
  3226. package/day3/backend-project/node_modules/http-errors/index.js +290 -0
  3227. package/day3/backend-project/node_modules/http-errors/package.json +54 -0
  3228. package/day3/backend-project/node_modules/iconv-lite/LICENSE +21 -0
  3229. package/day3/backend-project/node_modules/iconv-lite/README.md +138 -0
  3230. package/day3/backend-project/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  3231. package/day3/backend-project/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  3232. package/day3/backend-project/node_modules/iconv-lite/encodings/index.js +23 -0
  3233. package/day3/backend-project/node_modules/iconv-lite/encodings/internal.js +218 -0
  3234. package/day3/backend-project/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  3235. package/day3/backend-project/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  3236. package/day3/backend-project/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  3237. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  3238. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  3239. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  3240. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  3241. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  3242. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  3243. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  3244. package/day3/backend-project/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  3245. package/day3/backend-project/node_modules/iconv-lite/encodings/utf16.js +187 -0
  3246. package/day3/backend-project/node_modules/iconv-lite/encodings/utf32.js +307 -0
  3247. package/day3/backend-project/node_modules/iconv-lite/encodings/utf7.js +283 -0
  3248. package/day3/backend-project/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  3249. package/day3/backend-project/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  3250. package/day3/backend-project/node_modules/iconv-lite/lib/index.d.ts +129 -0
  3251. package/day3/backend-project/node_modules/iconv-lite/lib/index.js +182 -0
  3252. package/day3/backend-project/node_modules/iconv-lite/lib/streams.js +105 -0
  3253. package/day3/backend-project/node_modules/iconv-lite/package.json +70 -0
  3254. package/day3/backend-project/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  3255. package/day3/backend-project/node_modules/ignore-by-default/LICENSE +14 -0
  3256. package/day3/backend-project/node_modules/ignore-by-default/README.md +26 -0
  3257. package/day3/backend-project/node_modules/ignore-by-default/index.js +12 -0
  3258. package/day3/backend-project/node_modules/ignore-by-default/package.json +34 -0
  3259. package/day3/backend-project/node_modules/inherits/LICENSE +16 -0
  3260. package/day3/backend-project/node_modules/inherits/README.md +42 -0
  3261. package/day3/backend-project/node_modules/inherits/inherits.js +9 -0
  3262. package/day3/backend-project/node_modules/inherits/inherits_browser.js +27 -0
  3263. package/day3/backend-project/node_modules/inherits/package.json +29 -0
  3264. package/day3/backend-project/node_modules/ipaddr.js/LICENSE +19 -0
  3265. package/day3/backend-project/node_modules/ipaddr.js/README.md +233 -0
  3266. package/day3/backend-project/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  3267. package/day3/backend-project/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  3268. package/day3/backend-project/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  3269. package/day3/backend-project/node_modules/ipaddr.js/package.json +35 -0
  3270. package/day3/backend-project/node_modules/is-binary-path/index.d.ts +17 -0
  3271. package/day3/backend-project/node_modules/is-binary-path/index.js +7 -0
  3272. package/day3/backend-project/node_modules/is-binary-path/license +9 -0
  3273. package/day3/backend-project/node_modules/is-binary-path/package.json +40 -0
  3274. package/day3/backend-project/node_modules/is-binary-path/readme.md +34 -0
  3275. package/day3/backend-project/node_modules/is-extglob/LICENSE +21 -0
  3276. package/day3/backend-project/node_modules/is-extglob/README.md +107 -0
  3277. package/day3/backend-project/node_modules/is-extglob/index.js +20 -0
  3278. package/day3/backend-project/node_modules/is-extglob/package.json +69 -0
  3279. package/day3/backend-project/node_modules/is-glob/LICENSE +21 -0
  3280. package/day3/backend-project/node_modules/is-glob/README.md +206 -0
  3281. package/day3/backend-project/node_modules/is-glob/index.js +150 -0
  3282. package/day3/backend-project/node_modules/is-glob/package.json +81 -0
  3283. package/day3/backend-project/node_modules/is-number/LICENSE +21 -0
  3284. package/day3/backend-project/node_modules/is-number/README.md +187 -0
  3285. package/day3/backend-project/node_modules/is-number/index.js +18 -0
  3286. package/day3/backend-project/node_modules/is-number/package.json +82 -0
  3287. package/day3/backend-project/node_modules/is-promise/LICENSE +19 -0
  3288. package/day3/backend-project/node_modules/is-promise/index.d.ts +2 -0
  3289. package/day3/backend-project/node_modules/is-promise/index.js +6 -0
  3290. package/day3/backend-project/node_modules/is-promise/index.mjs +3 -0
  3291. package/day3/backend-project/node_modules/is-promise/package.json +30 -0
  3292. package/day3/backend-project/node_modules/is-promise/readme.md +33 -0
  3293. package/day3/backend-project/node_modules/is-property/LICENSE +22 -0
  3294. package/day3/backend-project/node_modules/is-property/README.md +28 -0
  3295. package/day3/backend-project/node_modules/is-property/is-property.js +5 -0
  3296. package/day3/backend-project/node_modules/is-property/package.json +36 -0
  3297. package/day3/backend-project/node_modules/jsonwebtoken/LICENSE +21 -0
  3298. package/day3/backend-project/node_modules/jsonwebtoken/README.md +396 -0
  3299. package/day3/backend-project/node_modules/jsonwebtoken/decode.js +30 -0
  3300. package/day3/backend-project/node_modules/jsonwebtoken/index.js +8 -0
  3301. package/day3/backend-project/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
  3302. package/day3/backend-project/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
  3303. package/day3/backend-project/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
  3304. package/day3/backend-project/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
  3305. package/day3/backend-project/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
  3306. package/day3/backend-project/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
  3307. package/day3/backend-project/node_modules/jsonwebtoken/lib/timespan.js +18 -0
  3308. package/day3/backend-project/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
  3309. package/day3/backend-project/node_modules/jsonwebtoken/package.json +70 -0
  3310. package/day3/backend-project/node_modules/jsonwebtoken/sign.js +253 -0
  3311. package/day3/backend-project/node_modules/jsonwebtoken/verify.js +263 -0
  3312. package/day3/backend-project/node_modules/jwa/LICENSE +17 -0
  3313. package/day3/backend-project/node_modules/jwa/README.md +150 -0
  3314. package/day3/backend-project/node_modules/jwa/index.js +266 -0
  3315. package/day3/backend-project/node_modules/jwa/opslevel.yml +6 -0
  3316. package/day3/backend-project/node_modules/jwa/package.json +37 -0
  3317. package/day3/backend-project/node_modules/jws/CHANGELOG.md +56 -0
  3318. package/day3/backend-project/node_modules/jws/LICENSE +17 -0
  3319. package/day3/backend-project/node_modules/jws/index.js +22 -0
  3320. package/day3/backend-project/node_modules/jws/lib/data-stream.js +55 -0
  3321. package/day3/backend-project/node_modules/jws/lib/sign-stream.js +83 -0
  3322. package/day3/backend-project/node_modules/jws/lib/tostring.js +10 -0
  3323. package/day3/backend-project/node_modules/jws/lib/verify-stream.js +125 -0
  3324. package/day3/backend-project/node_modules/jws/opslevel.yml +6 -0
  3325. package/day3/backend-project/node_modules/jws/package.json +34 -0
  3326. package/day3/backend-project/node_modules/jws/readme.md +255 -0
  3327. package/day3/backend-project/node_modules/lodash.includes/LICENSE +47 -0
  3328. package/day3/backend-project/node_modules/lodash.includes/README.md +18 -0
  3329. package/day3/backend-project/node_modules/lodash.includes/index.js +745 -0
  3330. package/day3/backend-project/node_modules/lodash.includes/package.json +17 -0
  3331. package/day3/backend-project/node_modules/lodash.isboolean/LICENSE +22 -0
  3332. package/day3/backend-project/node_modules/lodash.isboolean/README.md +18 -0
  3333. package/day3/backend-project/node_modules/lodash.isboolean/index.js +70 -0
  3334. package/day3/backend-project/node_modules/lodash.isboolean/package.json +17 -0
  3335. package/day3/backend-project/node_modules/lodash.isinteger/LICENSE +47 -0
  3336. package/day3/backend-project/node_modules/lodash.isinteger/README.md +18 -0
  3337. package/day3/backend-project/node_modules/lodash.isinteger/index.js +265 -0
  3338. package/day3/backend-project/node_modules/lodash.isinteger/package.json +17 -0
  3339. package/day3/backend-project/node_modules/lodash.isnumber/LICENSE +22 -0
  3340. package/day3/backend-project/node_modules/lodash.isnumber/README.md +18 -0
  3341. package/day3/backend-project/node_modules/lodash.isnumber/index.js +79 -0
  3342. package/day3/backend-project/node_modules/lodash.isnumber/package.json +17 -0
  3343. package/day3/backend-project/node_modules/lodash.isplainobject/LICENSE +47 -0
  3344. package/day3/backend-project/node_modules/lodash.isplainobject/README.md +18 -0
  3345. package/day3/backend-project/node_modules/lodash.isplainobject/index.js +139 -0
  3346. package/day3/backend-project/node_modules/lodash.isplainobject/package.json +17 -0
  3347. package/day3/backend-project/node_modules/lodash.isstring/LICENSE +22 -0
  3348. package/day3/backend-project/node_modules/lodash.isstring/README.md +18 -0
  3349. package/day3/backend-project/node_modules/lodash.isstring/index.js +95 -0
  3350. package/day3/backend-project/node_modules/lodash.isstring/package.json +17 -0
  3351. package/day3/backend-project/node_modules/lodash.once/LICENSE +47 -0
  3352. package/day3/backend-project/node_modules/lodash.once/README.md +18 -0
  3353. package/day3/backend-project/node_modules/lodash.once/index.js +294 -0
  3354. package/day3/backend-project/node_modules/lodash.once/package.json +17 -0
  3355. package/day3/backend-project/node_modules/long/LICENSE +202 -0
  3356. package/day3/backend-project/node_modules/long/README.md +286 -0
  3357. package/day3/backend-project/node_modules/long/index.d.ts +2 -0
  3358. package/day3/backend-project/node_modules/long/index.js +1581 -0
  3359. package/day3/backend-project/node_modules/long/package.json +58 -0
  3360. package/day3/backend-project/node_modules/long/types.d.ts +474 -0
  3361. package/day3/backend-project/node_modules/long/umd/index.d.ts +3 -0
  3362. package/day3/backend-project/node_modules/long/umd/index.js +1622 -0
  3363. package/day3/backend-project/node_modules/long/umd/package.json +3 -0
  3364. package/day3/backend-project/node_modules/long/umd/types.d.ts +474 -0
  3365. package/day3/backend-project/node_modules/lru.min/LICENSE +21 -0
  3366. package/day3/backend-project/node_modules/lru.min/README.md +392 -0
  3367. package/day3/backend-project/node_modules/lru.min/browser/lru.min.js +1 -0
  3368. package/day3/backend-project/node_modules/lru.min/lib/index.d.ts +38 -0
  3369. package/day3/backend-project/node_modules/lru.min/lib/index.js +248 -0
  3370. package/day3/backend-project/node_modules/lru.min/lib/index.mjs +227 -0
  3371. package/day3/backend-project/node_modules/lru.min/package.json +87 -0
  3372. package/day3/backend-project/node_modules/math-intrinsics/.eslintrc +16 -0
  3373. package/day3/backend-project/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  3374. package/day3/backend-project/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  3375. package/day3/backend-project/node_modules/math-intrinsics/LICENSE +21 -0
  3376. package/day3/backend-project/node_modules/math-intrinsics/README.md +50 -0
  3377. package/day3/backend-project/node_modules/math-intrinsics/abs.d.ts +1 -0
  3378. package/day3/backend-project/node_modules/math-intrinsics/abs.js +4 -0
  3379. package/day3/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  3380. package/day3/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  3381. package/day3/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  3382. package/day3/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  3383. package/day3/backend-project/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  3384. package/day3/backend-project/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  3385. package/day3/backend-project/node_modules/math-intrinsics/floor.d.ts +1 -0
  3386. package/day3/backend-project/node_modules/math-intrinsics/floor.js +4 -0
  3387. package/day3/backend-project/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  3388. package/day3/backend-project/node_modules/math-intrinsics/isFinite.js +12 -0
  3389. package/day3/backend-project/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  3390. package/day3/backend-project/node_modules/math-intrinsics/isInteger.js +16 -0
  3391. package/day3/backend-project/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  3392. package/day3/backend-project/node_modules/math-intrinsics/isNaN.js +6 -0
  3393. package/day3/backend-project/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  3394. package/day3/backend-project/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  3395. package/day3/backend-project/node_modules/math-intrinsics/max.d.ts +1 -0
  3396. package/day3/backend-project/node_modules/math-intrinsics/max.js +4 -0
  3397. package/day3/backend-project/node_modules/math-intrinsics/min.d.ts +1 -0
  3398. package/day3/backend-project/node_modules/math-intrinsics/min.js +4 -0
  3399. package/day3/backend-project/node_modules/math-intrinsics/mod.d.ts +3 -0
  3400. package/day3/backend-project/node_modules/math-intrinsics/mod.js +9 -0
  3401. package/day3/backend-project/node_modules/math-intrinsics/package.json +86 -0
  3402. package/day3/backend-project/node_modules/math-intrinsics/pow.d.ts +1 -0
  3403. package/day3/backend-project/node_modules/math-intrinsics/pow.js +4 -0
  3404. package/day3/backend-project/node_modules/math-intrinsics/round.d.ts +1 -0
  3405. package/day3/backend-project/node_modules/math-intrinsics/round.js +4 -0
  3406. package/day3/backend-project/node_modules/math-intrinsics/sign.d.ts +3 -0
  3407. package/day3/backend-project/node_modules/math-intrinsics/sign.js +11 -0
  3408. package/day3/backend-project/node_modules/math-intrinsics/test/index.js +192 -0
  3409. package/day3/backend-project/node_modules/math-intrinsics/tsconfig.json +3 -0
  3410. package/day3/backend-project/node_modules/media-typer/HISTORY.md +50 -0
  3411. package/day3/backend-project/node_modules/media-typer/LICENSE +22 -0
  3412. package/day3/backend-project/node_modules/media-typer/README.md +93 -0
  3413. package/day3/backend-project/node_modules/media-typer/index.js +143 -0
  3414. package/day3/backend-project/node_modules/media-typer/package.json +33 -0
  3415. package/day3/backend-project/node_modules/merge-descriptors/index.d.ts +11 -0
  3416. package/day3/backend-project/node_modules/merge-descriptors/index.js +26 -0
  3417. package/day3/backend-project/node_modules/merge-descriptors/license +11 -0
  3418. package/day3/backend-project/node_modules/merge-descriptors/package.json +50 -0
  3419. package/day3/backend-project/node_modules/merge-descriptors/readme.md +55 -0
  3420. package/day3/backend-project/node_modules/mime-db/HISTORY.md +541 -0
  3421. package/day3/backend-project/node_modules/mime-db/LICENSE +23 -0
  3422. package/day3/backend-project/node_modules/mime-db/README.md +109 -0
  3423. package/day3/backend-project/node_modules/mime-db/db.json +9342 -0
  3424. package/day3/backend-project/node_modules/mime-db/index.js +12 -0
  3425. package/day3/backend-project/node_modules/mime-db/package.json +56 -0
  3426. package/day3/backend-project/node_modules/mime-types/HISTORY.md +428 -0
  3427. package/day3/backend-project/node_modules/mime-types/LICENSE +23 -0
  3428. package/day3/backend-project/node_modules/mime-types/README.md +126 -0
  3429. package/day3/backend-project/node_modules/mime-types/index.js +211 -0
  3430. package/day3/backend-project/node_modules/mime-types/mimeScore.js +57 -0
  3431. package/day3/backend-project/node_modules/mime-types/package.json +49 -0
  3432. package/day3/backend-project/node_modules/minimatch/LICENSE.md +55 -0
  3433. package/day3/backend-project/node_modules/minimatch/README.md +528 -0
  3434. package/day3/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  3435. package/day3/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  3436. package/day3/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  3437. package/day3/backend-project/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  3438. package/day3/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
  3439. package/day3/backend-project/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  3440. package/day3/backend-project/node_modules/minimatch/dist/commonjs/ast.js +845 -0
  3441. package/day3/backend-project/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  3442. package/day3/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  3443. package/day3/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  3444. package/day3/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
  3445. package/day3/backend-project/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  3446. package/day3/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
  3447. package/day3/backend-project/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  3448. package/day3/backend-project/node_modules/minimatch/dist/commonjs/escape.js +30 -0
  3449. package/day3/backend-project/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  3450. package/day3/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
  3451. package/day3/backend-project/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  3452. package/day3/backend-project/node_modules/minimatch/dist/commonjs/index.js +1127 -0
  3453. package/day3/backend-project/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  3454. package/day3/backend-project/node_modules/minimatch/dist/commonjs/package.json +3 -0
  3455. package/day3/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
  3456. package/day3/backend-project/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  3457. package/day3/backend-project/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
  3458. package/day3/backend-project/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  3459. package/day3/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  3460. package/day3/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  3461. package/day3/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  3462. package/day3/backend-project/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  3463. package/day3/backend-project/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
  3464. package/day3/backend-project/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  3465. package/day3/backend-project/node_modules/minimatch/dist/esm/ast.js +841 -0
  3466. package/day3/backend-project/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  3467. package/day3/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  3468. package/day3/backend-project/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  3469. package/day3/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
  3470. package/day3/backend-project/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  3471. package/day3/backend-project/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
  3472. package/day3/backend-project/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  3473. package/day3/backend-project/node_modules/minimatch/dist/esm/escape.js +26 -0
  3474. package/day3/backend-project/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  3475. package/day3/backend-project/node_modules/minimatch/dist/esm/index.d.ts +174 -0
  3476. package/day3/backend-project/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  3477. package/day3/backend-project/node_modules/minimatch/dist/esm/index.js +1114 -0
  3478. package/day3/backend-project/node_modules/minimatch/dist/esm/index.js.map +1 -0
  3479. package/day3/backend-project/node_modules/minimatch/dist/esm/package.json +3 -0
  3480. package/day3/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
  3481. package/day3/backend-project/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  3482. package/day3/backend-project/node_modules/minimatch/dist/esm/unescape.js +34 -0
  3483. package/day3/backend-project/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  3484. package/day3/backend-project/node_modules/minimatch/package.json +73 -0
  3485. package/day3/backend-project/node_modules/ms/index.js +162 -0
  3486. package/day3/backend-project/node_modules/ms/license.md +21 -0
  3487. package/day3/backend-project/node_modules/ms/package.json +38 -0
  3488. package/day3/backend-project/node_modules/ms/readme.md +59 -0
  3489. package/day3/backend-project/node_modules/mysql2/License +19 -0
  3490. package/day3/backend-project/node_modules/mysql2/README.md +114 -0
  3491. package/day3/backend-project/node_modules/mysql2/index.d.ts +1 -0
  3492. package/day3/backend-project/node_modules/mysql2/index.js +77 -0
  3493. package/day3/backend-project/node_modules/mysql2/lib/auth_41.js +95 -0
  3494. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.js +115 -0
  3495. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +18 -0
  3496. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/index.js +8 -0
  3497. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_clear_password.js +17 -0
  3498. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_native_password.js +34 -0
  3499. package/day3/backend-project/node_modules/mysql2/lib/auth_plugins/sha256_password.js +74 -0
  3500. package/day3/backend-project/node_modules/mysql2/lib/base/connection.js +1139 -0
  3501. package/day3/backend-project/node_modules/mysql2/lib/base/pool.js +347 -0
  3502. package/day3/backend-project/node_modules/mysql2/lib/commands/auth_switch.js +151 -0
  3503. package/day3/backend-project/node_modules/mysql2/lib/commands/binlog_dump.js +109 -0
  3504. package/day3/backend-project/node_modules/mysql2/lib/commands/change_user.js +68 -0
  3505. package/day3/backend-project/node_modules/mysql2/lib/commands/client_handshake.js +386 -0
  3506. package/day3/backend-project/node_modules/mysql2/lib/commands/close_statement.js +18 -0
  3507. package/day3/backend-project/node_modules/mysql2/lib/commands/command.js +54 -0
  3508. package/day3/backend-project/node_modules/mysql2/lib/commands/execute.js +116 -0
  3509. package/day3/backend-project/node_modules/mysql2/lib/commands/index.js +29 -0
  3510. package/day3/backend-project/node_modules/mysql2/lib/commands/ping.js +36 -0
  3511. package/day3/backend-project/node_modules/mysql2/lib/commands/prepare.js +143 -0
  3512. package/day3/backend-project/node_modules/mysql2/lib/commands/query.js +365 -0
  3513. package/day3/backend-project/node_modules/mysql2/lib/commands/quit.js +29 -0
  3514. package/day3/backend-project/node_modules/mysql2/lib/commands/register_slave.js +27 -0
  3515. package/day3/backend-project/node_modules/mysql2/lib/commands/reset_connection.js +29 -0
  3516. package/day3/backend-project/node_modules/mysql2/lib/commands/server_handshake.js +205 -0
  3517. package/day3/backend-project/node_modules/mysql2/lib/compressed_protocol.js +153 -0
  3518. package/day3/backend-project/node_modules/mysql2/lib/connection.js +12 -0
  3519. package/day3/backend-project/node_modules/mysql2/lib/connection_config.js +300 -0
  3520. package/day3/backend-project/node_modules/mysql2/lib/constants/charset_encodings.js +317 -0
  3521. package/day3/backend-project/node_modules/mysql2/lib/constants/charsets.js +317 -0
  3522. package/day3/backend-project/node_modules/mysql2/lib/constants/client.js +39 -0
  3523. package/day3/backend-project/node_modules/mysql2/lib/constants/commands.js +37 -0
  3524. package/day3/backend-project/node_modules/mysql2/lib/constants/cursor.js +9 -0
  3525. package/day3/backend-project/node_modules/mysql2/lib/constants/encoding_charset.js +50 -0
  3526. package/day3/backend-project/node_modules/mysql2/lib/constants/errors.js +3973 -0
  3527. package/day3/backend-project/node_modules/mysql2/lib/constants/field_flags.js +20 -0
  3528. package/day3/backend-project/node_modules/mysql2/lib/constants/server_status.js +44 -0
  3529. package/day3/backend-project/node_modules/mysql2/lib/constants/session_track.js +11 -0
  3530. package/day3/backend-project/node_modules/mysql2/lib/constants/ssl_profiles.js +11 -0
  3531. package/day3/backend-project/node_modules/mysql2/lib/constants/types.js +64 -0
  3532. package/day3/backend-project/node_modules/mysql2/lib/create_connection.js +10 -0
  3533. package/day3/backend-project/node_modules/mysql2/lib/create_pool.js +10 -0
  3534. package/day3/backend-project/node_modules/mysql2/lib/create_pool_cluster.js +9 -0
  3535. package/day3/backend-project/node_modules/mysql2/lib/helpers.js +83 -0
  3536. package/day3/backend-project/node_modules/mysql2/lib/packet_parser.js +195 -0
  3537. package/day3/backend-project/node_modules/mysql2/lib/packets/auth_next_factor.js +35 -0
  3538. package/day3/backend-project/node_modules/mysql2/lib/packets/auth_switch_request.js +38 -0
  3539. package/day3/backend-project/node_modules/mysql2/lib/packets/auth_switch_request_more_data.js +33 -0
  3540. package/day3/backend-project/node_modules/mysql2/lib/packets/auth_switch_response.js +30 -0
  3541. package/day3/backend-project/node_modules/mysql2/lib/packets/binary_row.js +95 -0
  3542. package/day3/backend-project/node_modules/mysql2/lib/packets/binlog_dump.js +33 -0
  3543. package/day3/backend-project/node_modules/mysql2/lib/packets/binlog_query_statusvars.js +115 -0
  3544. package/day3/backend-project/node_modules/mysql2/lib/packets/change_user.js +97 -0
  3545. package/day3/backend-project/node_modules/mysql2/lib/packets/close_statement.js +21 -0
  3546. package/day3/backend-project/node_modules/mysql2/lib/packets/column_definition.js +291 -0
  3547. package/day3/backend-project/node_modules/mysql2/lib/packets/encode_parameter.js +69 -0
  3548. package/day3/backend-project/node_modules/mysql2/lib/packets/execute.js +177 -0
  3549. package/day3/backend-project/node_modules/mysql2/lib/packets/handshake.js +112 -0
  3550. package/day3/backend-project/node_modules/mysql2/lib/packets/handshake_response.js +173 -0
  3551. package/day3/backend-project/node_modules/mysql2/lib/packets/index.js +154 -0
  3552. package/day3/backend-project/node_modules/mysql2/lib/packets/packet.js +978 -0
  3553. package/day3/backend-project/node_modules/mysql2/lib/packets/prepare_statement.js +27 -0
  3554. package/day3/backend-project/node_modules/mysql2/lib/packets/prepared_statement_header.js +16 -0
  3555. package/day3/backend-project/node_modules/mysql2/lib/packets/query.js +102 -0
  3556. package/day3/backend-project/node_modules/mysql2/lib/packets/register_slave.js +46 -0
  3557. package/day3/backend-project/node_modules/mysql2/lib/packets/reset_connection.js +17 -0
  3558. package/day3/backend-project/node_modules/mysql2/lib/packets/resultset_header.js +124 -0
  3559. package/day3/backend-project/node_modules/mysql2/lib/packets/ssl_request.js +25 -0
  3560. package/day3/backend-project/node_modules/mysql2/lib/packets/text_row.js +47 -0
  3561. package/day3/backend-project/node_modules/mysql2/lib/parsers/binary_parser.js +235 -0
  3562. package/day3/backend-project/node_modules/mysql2/lib/parsers/parser_cache.js +68 -0
  3563. package/day3/backend-project/node_modules/mysql2/lib/parsers/static_binary_parser.js +213 -0
  3564. package/day3/backend-project/node_modules/mysql2/lib/parsers/static_text_parser.js +152 -0
  3565. package/day3/backend-project/node_modules/mysql2/lib/parsers/string.js +50 -0
  3566. package/day3/backend-project/node_modules/mysql2/lib/parsers/text_parser.js +214 -0
  3567. package/day3/backend-project/node_modules/mysql2/lib/pool.js +12 -0
  3568. package/day3/backend-project/node_modules/mysql2/lib/pool_cluster.js +375 -0
  3569. package/day3/backend-project/node_modules/mysql2/lib/pool_config.js +34 -0
  3570. package/day3/backend-project/node_modules/mysql2/lib/pool_connection.js +81 -0
  3571. package/day3/backend-project/node_modules/mysql2/lib/promise/capture_local_err.js +25 -0
  3572. package/day3/backend-project/node_modules/mysql2/lib/promise/connection.js +237 -0
  3573. package/day3/backend-project/node_modules/mysql2/lib/promise/inherit_events.js +27 -0
  3574. package/day3/backend-project/node_modules/mysql2/lib/promise/make_done_cb.js +16 -0
  3575. package/day3/backend-project/node_modules/mysql2/lib/promise/pool.js +118 -0
  3576. package/day3/backend-project/node_modules/mysql2/lib/promise/pool_cluster.js +59 -0
  3577. package/day3/backend-project/node_modules/mysql2/lib/promise/pool_connection.js +19 -0
  3578. package/day3/backend-project/node_modules/mysql2/lib/promise/prepared_statement_info.js +35 -0
  3579. package/day3/backend-project/node_modules/mysql2/lib/results_stream.js +38 -0
  3580. package/day3/backend-project/node_modules/mysql2/lib/server.js +37 -0
  3581. package/day3/backend-project/node_modules/mysql2/lib/tracing.js +81 -0
  3582. package/day3/backend-project/node_modules/mysql2/package.json +95 -0
  3583. package/day3/backend-project/node_modules/mysql2/promise.d.ts +141 -0
  3584. package/day3/backend-project/node_modules/mysql2/promise.js +209 -0
  3585. package/day3/backend-project/node_modules/mysql2/typings/mysql/LICENSE.txt +15 -0
  3586. package/day3/backend-project/node_modules/mysql2/typings/mysql/index.d.ts +93 -0
  3587. package/day3/backend-project/node_modules/mysql2/typings/mysql/info.txt +1 -0
  3588. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/Auth.d.ts +30 -0
  3589. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/Connection.d.ts +456 -0
  3590. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/Pool.d.ts +78 -0
  3591. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/PoolCluster.d.ts +92 -0
  3592. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/PoolConnection.d.ts +11 -0
  3593. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/Server.d.ts +11 -0
  3594. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/Tracing.d.ts +71 -0
  3595. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/constants/CharsetToEncoding.d.ts +8 -0
  3596. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Charsets.d.ts +326 -0
  3597. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Types.d.ts +70 -0
  3598. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/constants/index.d.ts +5 -0
  3599. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/ParserCache.d.ts +4 -0
  3600. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/index.d.ts +18 -0
  3601. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/typeCast.d.ts +54 -0
  3602. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts +10 -0
  3603. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +27 -0
  3604. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/OkPacket.d.ts +23 -0
  3605. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +13 -0
  3606. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ResultSetHeader.d.ts +18 -0
  3607. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/RowDataPacket.d.ts +9 -0
  3608. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/index.d.ts +28 -0
  3609. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/ErrorPacketParams.d.ts +6 -0
  3610. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/OkPacketParams.d.ts +9 -0
  3611. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +41 -0
  3612. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Prepare.d.ts +65 -0
  3613. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Query.d.ts +235 -0
  3614. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +41 -0
  3615. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Sequence.d.ts +5 -0
  3616. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +17 -0
  3617. package/day3/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +18 -0
  3618. package/day3/backend-project/node_modules/named-placeholders/LICENSE +21 -0
  3619. package/day3/backend-project/node_modules/named-placeholders/README.md +27 -0
  3620. package/day3/backend-project/node_modules/named-placeholders/index.js +179 -0
  3621. package/day3/backend-project/node_modules/named-placeholders/package.json +36 -0
  3622. package/day3/backend-project/node_modules/negotiator/HISTORY.md +114 -0
  3623. package/day3/backend-project/node_modules/negotiator/LICENSE +24 -0
  3624. package/day3/backend-project/node_modules/negotiator/README.md +212 -0
  3625. package/day3/backend-project/node_modules/negotiator/index.js +83 -0
  3626. package/day3/backend-project/node_modules/negotiator/lib/charset.js +169 -0
  3627. package/day3/backend-project/node_modules/negotiator/lib/encoding.js +205 -0
  3628. package/day3/backend-project/node_modules/negotiator/lib/language.js +179 -0
  3629. package/day3/backend-project/node_modules/negotiator/lib/mediaType.js +294 -0
  3630. package/day3/backend-project/node_modules/negotiator/package.json +43 -0
  3631. package/day3/backend-project/node_modules/nodemon/.prettierrc.json +3 -0
  3632. package/day3/backend-project/node_modules/nodemon/LICENSE +21 -0
  3633. package/day3/backend-project/node_modules/nodemon/README.md +439 -0
  3634. package/day3/backend-project/node_modules/nodemon/bin/nodemon.js +16 -0
  3635. package/day3/backend-project/node_modules/nodemon/bin/windows-kill.exe +0 -0
  3636. package/day3/backend-project/node_modules/nodemon/doc/cli/authors.txt +8 -0
  3637. package/day3/backend-project/node_modules/nodemon/doc/cli/config.txt +44 -0
  3638. package/day3/backend-project/node_modules/nodemon/doc/cli/help.txt +29 -0
  3639. package/day3/backend-project/node_modules/nodemon/doc/cli/logo.txt +20 -0
  3640. package/day3/backend-project/node_modules/nodemon/doc/cli/options.txt +36 -0
  3641. package/day3/backend-project/node_modules/nodemon/doc/cli/topics.txt +8 -0
  3642. package/day3/backend-project/node_modules/nodemon/doc/cli/usage.txt +3 -0
  3643. package/day3/backend-project/node_modules/nodemon/doc/cli/whoami.txt +9 -0
  3644. package/day3/backend-project/node_modules/nodemon/index.d.ts +124 -0
  3645. package/day3/backend-project/node_modules/nodemon/jsconfig.json +7 -0
  3646. package/day3/backend-project/node_modules/nodemon/lib/cli/index.js +49 -0
  3647. package/day3/backend-project/node_modules/nodemon/lib/cli/parse.js +230 -0
  3648. package/day3/backend-project/node_modules/nodemon/lib/config/command.js +43 -0
  3649. package/day3/backend-project/node_modules/nodemon/lib/config/defaults.js +34 -0
  3650. package/day3/backend-project/node_modules/nodemon/lib/config/exec.js +240 -0
  3651. package/day3/backend-project/node_modules/nodemon/lib/config/index.js +93 -0
  3652. package/day3/backend-project/node_modules/nodemon/lib/config/load.js +225 -0
  3653. package/day3/backend-project/node_modules/nodemon/lib/help/index.js +27 -0
  3654. package/day3/backend-project/node_modules/nodemon/lib/index.js +1 -0
  3655. package/day3/backend-project/node_modules/nodemon/lib/monitor/index.js +4 -0
  3656. package/day3/backend-project/node_modules/nodemon/lib/monitor/match.js +288 -0
  3657. package/day3/backend-project/node_modules/nodemon/lib/monitor/run.js +562 -0
  3658. package/day3/backend-project/node_modules/nodemon/lib/monitor/signals.js +34 -0
  3659. package/day3/backend-project/node_modules/nodemon/lib/monitor/watch.js +244 -0
  3660. package/day3/backend-project/node_modules/nodemon/lib/nodemon.js +317 -0
  3661. package/day3/backend-project/node_modules/nodemon/lib/rules/add.js +89 -0
  3662. package/day3/backend-project/node_modules/nodemon/lib/rules/index.js +53 -0
  3663. package/day3/backend-project/node_modules/nodemon/lib/rules/parse.js +43 -0
  3664. package/day3/backend-project/node_modules/nodemon/lib/spawn.js +74 -0
  3665. package/day3/backend-project/node_modules/nodemon/lib/utils/bus.js +44 -0
  3666. package/day3/backend-project/node_modules/nodemon/lib/utils/clone.js +40 -0
  3667. package/day3/backend-project/node_modules/nodemon/lib/utils/colour.js +26 -0
  3668. package/day3/backend-project/node_modules/nodemon/lib/utils/index.js +103 -0
  3669. package/day3/backend-project/node_modules/nodemon/lib/utils/log.js +82 -0
  3670. package/day3/backend-project/node_modules/nodemon/lib/utils/merge.js +47 -0
  3671. package/day3/backend-project/node_modules/nodemon/lib/version.js +100 -0
  3672. package/day3/backend-project/node_modules/nodemon/package.json +78 -0
  3673. package/day3/backend-project/node_modules/normalize-path/LICENSE +21 -0
  3674. package/day3/backend-project/node_modules/normalize-path/README.md +127 -0
  3675. package/day3/backend-project/node_modules/normalize-path/index.js +35 -0
  3676. package/day3/backend-project/node_modules/normalize-path/package.json +77 -0
  3677. package/day3/backend-project/node_modules/object-assign/index.js +90 -0
  3678. package/day3/backend-project/node_modules/object-assign/license +21 -0
  3679. package/day3/backend-project/node_modules/object-assign/package.json +42 -0
  3680. package/day3/backend-project/node_modules/object-assign/readme.md +61 -0
  3681. package/day3/backend-project/node_modules/object-inspect/.eslintrc +53 -0
  3682. package/day3/backend-project/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  3683. package/day3/backend-project/node_modules/object-inspect/.nycrc +13 -0
  3684. package/day3/backend-project/node_modules/object-inspect/CHANGELOG.md +424 -0
  3685. package/day3/backend-project/node_modules/object-inspect/LICENSE +21 -0
  3686. package/day3/backend-project/node_modules/object-inspect/example/all.js +23 -0
  3687. package/day3/backend-project/node_modules/object-inspect/example/circular.js +6 -0
  3688. package/day3/backend-project/node_modules/object-inspect/example/fn.js +5 -0
  3689. package/day3/backend-project/node_modules/object-inspect/example/inspect.js +10 -0
  3690. package/day3/backend-project/node_modules/object-inspect/index.js +544 -0
  3691. package/day3/backend-project/node_modules/object-inspect/package-support.json +20 -0
  3692. package/day3/backend-project/node_modules/object-inspect/package.json +105 -0
  3693. package/day3/backend-project/node_modules/object-inspect/readme.markdown +84 -0
  3694. package/day3/backend-project/node_modules/object-inspect/test/bigint.js +58 -0
  3695. package/day3/backend-project/node_modules/object-inspect/test/browser/dom.js +15 -0
  3696. package/day3/backend-project/node_modules/object-inspect/test/circular.js +16 -0
  3697. package/day3/backend-project/node_modules/object-inspect/test/deep.js +12 -0
  3698. package/day3/backend-project/node_modules/object-inspect/test/element.js +53 -0
  3699. package/day3/backend-project/node_modules/object-inspect/test/err.js +48 -0
  3700. package/day3/backend-project/node_modules/object-inspect/test/fakes.js +29 -0
  3701. package/day3/backend-project/node_modules/object-inspect/test/fn.js +76 -0
  3702. package/day3/backend-project/node_modules/object-inspect/test/global.js +17 -0
  3703. package/day3/backend-project/node_modules/object-inspect/test/has.js +15 -0
  3704. package/day3/backend-project/node_modules/object-inspect/test/holes.js +15 -0
  3705. package/day3/backend-project/node_modules/object-inspect/test/indent-option.js +271 -0
  3706. package/day3/backend-project/node_modules/object-inspect/test/inspect.js +139 -0
  3707. package/day3/backend-project/node_modules/object-inspect/test/lowbyte.js +12 -0
  3708. package/day3/backend-project/node_modules/object-inspect/test/number.js +58 -0
  3709. package/day3/backend-project/node_modules/object-inspect/test/quoteStyle.js +26 -0
  3710. package/day3/backend-project/node_modules/object-inspect/test/toStringTag.js +40 -0
  3711. package/day3/backend-project/node_modules/object-inspect/test/undef.js +12 -0
  3712. package/day3/backend-project/node_modules/object-inspect/test/values.js +261 -0
  3713. package/day3/backend-project/node_modules/object-inspect/test-core-js.js +26 -0
  3714. package/day3/backend-project/node_modules/object-inspect/util.inspect.js +1 -0
  3715. package/day3/backend-project/node_modules/on-finished/HISTORY.md +98 -0
  3716. package/day3/backend-project/node_modules/on-finished/LICENSE +23 -0
  3717. package/day3/backend-project/node_modules/on-finished/README.md +162 -0
  3718. package/day3/backend-project/node_modules/on-finished/index.js +234 -0
  3719. package/day3/backend-project/node_modules/on-finished/package.json +39 -0
  3720. package/day3/backend-project/node_modules/once/LICENSE +15 -0
  3721. package/day3/backend-project/node_modules/once/README.md +79 -0
  3722. package/day3/backend-project/node_modules/once/once.js +42 -0
  3723. package/day3/backend-project/node_modules/once/package.json +33 -0
  3724. package/day3/backend-project/node_modules/parseurl/HISTORY.md +58 -0
  3725. package/day3/backend-project/node_modules/parseurl/LICENSE +24 -0
  3726. package/day3/backend-project/node_modules/parseurl/README.md +133 -0
  3727. package/day3/backend-project/node_modules/parseurl/index.js +158 -0
  3728. package/day3/backend-project/node_modules/parseurl/package.json +40 -0
  3729. package/day3/backend-project/node_modules/path-to-regexp/LICENSE +21 -0
  3730. package/day3/backend-project/node_modules/path-to-regexp/Readme.md +224 -0
  3731. package/day3/backend-project/node_modules/path-to-regexp/dist/index.d.ts +147 -0
  3732. package/day3/backend-project/node_modules/path-to-regexp/dist/index.js +431 -0
  3733. package/day3/backend-project/node_modules/path-to-regexp/dist/index.js.map +1 -0
  3734. package/day3/backend-project/node_modules/path-to-regexp/package.json +64 -0
  3735. package/day3/backend-project/node_modules/picomatch/LICENSE +21 -0
  3736. package/day3/backend-project/node_modules/picomatch/README.md +716 -0
  3737. package/day3/backend-project/node_modules/picomatch/index.js +3 -0
  3738. package/day3/backend-project/node_modules/picomatch/lib/constants.js +184 -0
  3739. package/day3/backend-project/node_modules/picomatch/lib/parse.js +1392 -0
  3740. package/day3/backend-project/node_modules/picomatch/lib/picomatch.js +342 -0
  3741. package/day3/backend-project/node_modules/picomatch/lib/scan.js +391 -0
  3742. package/day3/backend-project/node_modules/picomatch/lib/utils.js +64 -0
  3743. package/day3/backend-project/node_modules/picomatch/package.json +81 -0
  3744. package/day3/backend-project/node_modules/proxy-addr/HISTORY.md +161 -0
  3745. package/day3/backend-project/node_modules/proxy-addr/LICENSE +22 -0
  3746. package/day3/backend-project/node_modules/proxy-addr/README.md +139 -0
  3747. package/day3/backend-project/node_modules/proxy-addr/index.js +327 -0
  3748. package/day3/backend-project/node_modules/proxy-addr/package.json +47 -0
  3749. package/day3/backend-project/node_modules/pstree.remy/.travis.yml +8 -0
  3750. package/day3/backend-project/node_modules/pstree.remy/LICENSE +7 -0
  3751. package/day3/backend-project/node_modules/pstree.remy/README.md +26 -0
  3752. package/day3/backend-project/node_modules/pstree.remy/lib/index.js +37 -0
  3753. package/day3/backend-project/node_modules/pstree.remy/lib/tree.js +37 -0
  3754. package/day3/backend-project/node_modules/pstree.remy/lib/utils.js +53 -0
  3755. package/day3/backend-project/node_modules/pstree.remy/package.json +33 -0
  3756. package/day3/backend-project/node_modules/pstree.remy/tests/fixtures/index.js +13 -0
  3757. package/day3/backend-project/node_modules/pstree.remy/tests/fixtures/out1 +10 -0
  3758. package/day3/backend-project/node_modules/pstree.remy/tests/fixtures/out2 +29 -0
  3759. package/day3/backend-project/node_modules/pstree.remy/tests/index.test.js +51 -0
  3760. package/day3/backend-project/node_modules/qs/.editorconfig +46 -0
  3761. package/day3/backend-project/node_modules/qs/.github/FUNDING.yml +12 -0
  3762. package/day3/backend-project/node_modules/qs/.github/SECURITY.md +11 -0
  3763. package/day3/backend-project/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  3764. package/day3/backend-project/node_modules/qs/.nycrc +13 -0
  3765. package/day3/backend-project/node_modules/qs/CHANGELOG.md +822 -0
  3766. package/day3/backend-project/node_modules/qs/LICENSE.md +29 -0
  3767. package/day3/backend-project/node_modules/qs/README.md +758 -0
  3768. package/day3/backend-project/node_modules/qs/dist/qs.js +141 -0
  3769. package/day3/backend-project/node_modules/qs/eslint.config.mjs +57 -0
  3770. package/day3/backend-project/node_modules/qs/lib/formats.js +23 -0
  3771. package/day3/backend-project/node_modules/qs/lib/index.js +11 -0
  3772. package/day3/backend-project/node_modules/qs/lib/parse.js +403 -0
  3773. package/day3/backend-project/node_modules/qs/lib/stringify.js +363 -0
  3774. package/day3/backend-project/node_modules/qs/lib/utils.js +342 -0
  3775. package/day3/backend-project/node_modules/qs/package.json +94 -0
  3776. package/day3/backend-project/node_modules/qs/test/empty-keys-cases.js +267 -0
  3777. package/day3/backend-project/node_modules/qs/test/parse.js +1703 -0
  3778. package/day3/backend-project/node_modules/qs/test/stringify.js +1448 -0
  3779. package/day3/backend-project/node_modules/qs/test/utils.js +432 -0
  3780. package/day3/backend-project/node_modules/range-parser/HISTORY.md +56 -0
  3781. package/day3/backend-project/node_modules/range-parser/LICENSE +23 -0
  3782. package/day3/backend-project/node_modules/range-parser/README.md +84 -0
  3783. package/day3/backend-project/node_modules/range-parser/index.js +162 -0
  3784. package/day3/backend-project/node_modules/range-parser/package.json +44 -0
  3785. package/day3/backend-project/node_modules/raw-body/LICENSE +22 -0
  3786. package/day3/backend-project/node_modules/raw-body/README.md +223 -0
  3787. package/day3/backend-project/node_modules/raw-body/index.d.ts +85 -0
  3788. package/day3/backend-project/node_modules/raw-body/index.js +336 -0
  3789. package/day3/backend-project/node_modules/raw-body/package.json +46 -0
  3790. package/day3/backend-project/node_modules/readdirp/LICENSE +21 -0
  3791. package/day3/backend-project/node_modules/readdirp/README.md +122 -0
  3792. package/day3/backend-project/node_modules/readdirp/index.d.ts +43 -0
  3793. package/day3/backend-project/node_modules/readdirp/index.js +287 -0
  3794. package/day3/backend-project/node_modules/readdirp/package.json +122 -0
  3795. package/day3/backend-project/node_modules/router/HISTORY.md +228 -0
  3796. package/day3/backend-project/node_modules/router/LICENSE +23 -0
  3797. package/day3/backend-project/node_modules/router/README.md +416 -0
  3798. package/day3/backend-project/node_modules/router/index.js +748 -0
  3799. package/day3/backend-project/node_modules/router/lib/layer.js +247 -0
  3800. package/day3/backend-project/node_modules/router/lib/route.js +242 -0
  3801. package/day3/backend-project/node_modules/router/package.json +44 -0
  3802. package/day3/backend-project/node_modules/safe-buffer/LICENSE +21 -0
  3803. package/day3/backend-project/node_modules/safe-buffer/README.md +584 -0
  3804. package/day3/backend-project/node_modules/safe-buffer/index.d.ts +187 -0
  3805. package/day3/backend-project/node_modules/safe-buffer/index.js +65 -0
  3806. package/day3/backend-project/node_modules/safe-buffer/package.json +51 -0
  3807. package/day3/backend-project/node_modules/safer-buffer/LICENSE +21 -0
  3808. package/day3/backend-project/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  3809. package/day3/backend-project/node_modules/safer-buffer/Readme.md +156 -0
  3810. package/day3/backend-project/node_modules/safer-buffer/dangerous.js +58 -0
  3811. package/day3/backend-project/node_modules/safer-buffer/package.json +34 -0
  3812. package/day3/backend-project/node_modules/safer-buffer/safer.js +77 -0
  3813. package/day3/backend-project/node_modules/safer-buffer/tests.js +406 -0
  3814. package/day3/backend-project/node_modules/semver/LICENSE +15 -0
  3815. package/day3/backend-project/node_modules/semver/README.md +680 -0
  3816. package/day3/backend-project/node_modules/semver/bin/semver.js +195 -0
  3817. package/day3/backend-project/node_modules/semver/classes/comparator.js +143 -0
  3818. package/day3/backend-project/node_modules/semver/classes/index.js +7 -0
  3819. package/day3/backend-project/node_modules/semver/classes/range.js +564 -0
  3820. package/day3/backend-project/node_modules/semver/classes/semver.js +333 -0
  3821. package/day3/backend-project/node_modules/semver/functions/clean.js +8 -0
  3822. package/day3/backend-project/node_modules/semver/functions/cmp.js +54 -0
  3823. package/day3/backend-project/node_modules/semver/functions/coerce.js +62 -0
  3824. package/day3/backend-project/node_modules/semver/functions/compare-build.js +9 -0
  3825. package/day3/backend-project/node_modules/semver/functions/compare-loose.js +5 -0
  3826. package/day3/backend-project/node_modules/semver/functions/compare.js +7 -0
  3827. package/day3/backend-project/node_modules/semver/functions/diff.js +60 -0
  3828. package/day3/backend-project/node_modules/semver/functions/eq.js +5 -0
  3829. package/day3/backend-project/node_modules/semver/functions/gt.js +5 -0
  3830. package/day3/backend-project/node_modules/semver/functions/gte.js +5 -0
  3831. package/day3/backend-project/node_modules/semver/functions/inc.js +21 -0
  3832. package/day3/backend-project/node_modules/semver/functions/lt.js +5 -0
  3833. package/day3/backend-project/node_modules/semver/functions/lte.js +5 -0
  3834. package/day3/backend-project/node_modules/semver/functions/major.js +5 -0
  3835. package/day3/backend-project/node_modules/semver/functions/minor.js +5 -0
  3836. package/day3/backend-project/node_modules/semver/functions/neq.js +5 -0
  3837. package/day3/backend-project/node_modules/semver/functions/parse.js +18 -0
  3838. package/day3/backend-project/node_modules/semver/functions/patch.js +5 -0
  3839. package/day3/backend-project/node_modules/semver/functions/prerelease.js +8 -0
  3840. package/day3/backend-project/node_modules/semver/functions/rcompare.js +5 -0
  3841. package/day3/backend-project/node_modules/semver/functions/rsort.js +5 -0
  3842. package/day3/backend-project/node_modules/semver/functions/satisfies.js +12 -0
  3843. package/day3/backend-project/node_modules/semver/functions/sort.js +5 -0
  3844. package/day3/backend-project/node_modules/semver/functions/truncate.js +48 -0
  3845. package/day3/backend-project/node_modules/semver/functions/valid.js +8 -0
  3846. package/day3/backend-project/node_modules/semver/index.js +93 -0
  3847. package/day3/backend-project/node_modules/semver/internal/constants.js +37 -0
  3848. package/day3/backend-project/node_modules/semver/internal/debug.js +11 -0
  3849. package/day3/backend-project/node_modules/semver/internal/identifiers.js +29 -0
  3850. package/day3/backend-project/node_modules/semver/internal/lrucache.js +42 -0
  3851. package/day3/backend-project/node_modules/semver/internal/parse-options.js +17 -0
  3852. package/day3/backend-project/node_modules/semver/internal/re.js +223 -0
  3853. package/day3/backend-project/node_modules/semver/package.json +78 -0
  3854. package/day3/backend-project/node_modules/semver/preload.js +4 -0
  3855. package/day3/backend-project/node_modules/semver/range.bnf +17 -0
  3856. package/day3/backend-project/node_modules/semver/ranges/gtr.js +6 -0
  3857. package/day3/backend-project/node_modules/semver/ranges/intersects.js +9 -0
  3858. package/day3/backend-project/node_modules/semver/ranges/ltr.js +6 -0
  3859. package/day3/backend-project/node_modules/semver/ranges/max-satisfying.js +27 -0
  3860. package/day3/backend-project/node_modules/semver/ranges/min-satisfying.js +26 -0
  3861. package/day3/backend-project/node_modules/semver/ranges/min-version.js +63 -0
  3862. package/day3/backend-project/node_modules/semver/ranges/outside.js +82 -0
  3863. package/day3/backend-project/node_modules/semver/ranges/simplify.js +49 -0
  3864. package/day3/backend-project/node_modules/semver/ranges/subset.js +249 -0
  3865. package/day3/backend-project/node_modules/semver/ranges/to-comparators.js +10 -0
  3866. package/day3/backend-project/node_modules/semver/ranges/valid.js +13 -0
  3867. package/day3/backend-project/node_modules/send/LICENSE +23 -0
  3868. package/day3/backend-project/node_modules/send/README.md +317 -0
  3869. package/day3/backend-project/node_modules/send/index.js +997 -0
  3870. package/day3/backend-project/node_modules/send/package.json +63 -0
  3871. package/day3/backend-project/node_modules/serve-static/LICENSE +25 -0
  3872. package/day3/backend-project/node_modules/serve-static/README.md +253 -0
  3873. package/day3/backend-project/node_modules/serve-static/index.js +208 -0
  3874. package/day3/backend-project/node_modules/serve-static/package.json +44 -0
  3875. package/day3/backend-project/node_modules/setprototypeof/LICENSE +13 -0
  3876. package/day3/backend-project/node_modules/setprototypeof/README.md +31 -0
  3877. package/day3/backend-project/node_modules/setprototypeof/index.d.ts +2 -0
  3878. package/day3/backend-project/node_modules/setprototypeof/index.js +17 -0
  3879. package/day3/backend-project/node_modules/setprototypeof/package.json +38 -0
  3880. package/day3/backend-project/node_modules/setprototypeof/test/index.js +24 -0
  3881. package/day3/backend-project/node_modules/side-channel/.editorconfig +9 -0
  3882. package/day3/backend-project/node_modules/side-channel/.eslintrc +12 -0
  3883. package/day3/backend-project/node_modules/side-channel/.github/FUNDING.yml +12 -0
  3884. package/day3/backend-project/node_modules/side-channel/.nycrc +13 -0
  3885. package/day3/backend-project/node_modules/side-channel/CHANGELOG.md +110 -0
  3886. package/day3/backend-project/node_modules/side-channel/LICENSE +21 -0
  3887. package/day3/backend-project/node_modules/side-channel/README.md +61 -0
  3888. package/day3/backend-project/node_modules/side-channel/index.d.ts +14 -0
  3889. package/day3/backend-project/node_modules/side-channel/index.js +43 -0
  3890. package/day3/backend-project/node_modules/side-channel/package.json +85 -0
  3891. package/day3/backend-project/node_modules/side-channel/test/index.js +104 -0
  3892. package/day3/backend-project/node_modules/side-channel/tsconfig.json +9 -0
  3893. package/day3/backend-project/node_modules/side-channel-list/.editorconfig +9 -0
  3894. package/day3/backend-project/node_modules/side-channel-list/.eslintrc +11 -0
  3895. package/day3/backend-project/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  3896. package/day3/backend-project/node_modules/side-channel-list/.nycrc +13 -0
  3897. package/day3/backend-project/node_modules/side-channel-list/CHANGELOG.md +36 -0
  3898. package/day3/backend-project/node_modules/side-channel-list/LICENSE +21 -0
  3899. package/day3/backend-project/node_modules/side-channel-list/README.md +62 -0
  3900. package/day3/backend-project/node_modules/side-channel-list/index.d.ts +13 -0
  3901. package/day3/backend-project/node_modules/side-channel-list/index.js +111 -0
  3902. package/day3/backend-project/node_modules/side-channel-list/list.d.ts +14 -0
  3903. package/day3/backend-project/node_modules/side-channel-list/package.json +77 -0
  3904. package/day3/backend-project/node_modules/side-channel-list/test/index.js +154 -0
  3905. package/day3/backend-project/node_modules/side-channel-list/tsconfig.json +9 -0
  3906. package/day3/backend-project/node_modules/side-channel-map/.editorconfig +9 -0
  3907. package/day3/backend-project/node_modules/side-channel-map/.eslintrc +11 -0
  3908. package/day3/backend-project/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  3909. package/day3/backend-project/node_modules/side-channel-map/.nycrc +13 -0
  3910. package/day3/backend-project/node_modules/side-channel-map/CHANGELOG.md +22 -0
  3911. package/day3/backend-project/node_modules/side-channel-map/LICENSE +21 -0
  3912. package/day3/backend-project/node_modules/side-channel-map/README.md +62 -0
  3913. package/day3/backend-project/node_modules/side-channel-map/index.d.ts +15 -0
  3914. package/day3/backend-project/node_modules/side-channel-map/index.js +68 -0
  3915. package/day3/backend-project/node_modules/side-channel-map/package.json +80 -0
  3916. package/day3/backend-project/node_modules/side-channel-map/test/index.js +114 -0
  3917. package/day3/backend-project/node_modules/side-channel-map/tsconfig.json +9 -0
  3918. package/day3/backend-project/node_modules/side-channel-weakmap/.editorconfig +9 -0
  3919. package/day3/backend-project/node_modules/side-channel-weakmap/.eslintrc +12 -0
  3920. package/day3/backend-project/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  3921. package/day3/backend-project/node_modules/side-channel-weakmap/.nycrc +13 -0
  3922. package/day3/backend-project/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  3923. package/day3/backend-project/node_modules/side-channel-weakmap/LICENSE +21 -0
  3924. package/day3/backend-project/node_modules/side-channel-weakmap/README.md +62 -0
  3925. package/day3/backend-project/node_modules/side-channel-weakmap/index.d.ts +15 -0
  3926. package/day3/backend-project/node_modules/side-channel-weakmap/index.js +84 -0
  3927. package/day3/backend-project/node_modules/side-channel-weakmap/package.json +87 -0
  3928. package/day3/backend-project/node_modules/side-channel-weakmap/test/index.js +114 -0
  3929. package/day3/backend-project/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  3930. package/day3/backend-project/node_modules/simple-update-notifier/LICENSE +21 -0
  3931. package/day3/backend-project/node_modules/simple-update-notifier/README.md +82 -0
  3932. package/day3/backend-project/node_modules/simple-update-notifier/build/index.d.ts +13 -0
  3933. package/day3/backend-project/node_modules/simple-update-notifier/build/index.js +210 -0
  3934. package/day3/backend-project/node_modules/simple-update-notifier/package.json +100 -0
  3935. package/day3/backend-project/node_modules/simple-update-notifier/src/borderedText.ts +12 -0
  3936. package/day3/backend-project/node_modules/simple-update-notifier/src/cache.spec.ts +17 -0
  3937. package/day3/backend-project/node_modules/simple-update-notifier/src/cache.ts +44 -0
  3938. package/day3/backend-project/node_modules/simple-update-notifier/src/getDistVersion.spec.ts +35 -0
  3939. package/day3/backend-project/node_modules/simple-update-notifier/src/getDistVersion.ts +29 -0
  3940. package/day3/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts +82 -0
  3941. package/day3/backend-project/node_modules/simple-update-notifier/src/hasNewVersion.ts +40 -0
  3942. package/day3/backend-project/node_modules/simple-update-notifier/src/index.spec.ts +27 -0
  3943. package/day3/backend-project/node_modules/simple-update-notifier/src/index.ts +34 -0
  3944. package/day3/backend-project/node_modules/simple-update-notifier/src/isNpmOrYarn.ts +12 -0
  3945. package/day3/backend-project/node_modules/simple-update-notifier/src/types.ts +8 -0
  3946. package/day3/backend-project/node_modules/sql-escaper/LICENSE +21 -0
  3947. package/day3/backend-project/node_modules/sql-escaper/README.md +424 -0
  3948. package/day3/backend-project/node_modules/sql-escaper/lib/index.d.ts +15 -0
  3949. package/day3/backend-project/node_modules/sql-escaper/lib/index.js +398 -0
  3950. package/day3/backend-project/node_modules/sql-escaper/lib/index.mjs +305 -0
  3951. package/day3/backend-project/node_modules/sql-escaper/lib/types.d.ts +5 -0
  3952. package/day3/backend-project/node_modules/sql-escaper/lib/types.js +2 -0
  3953. package/day3/backend-project/node_modules/sql-escaper/package.json +81 -0
  3954. package/day3/backend-project/node_modules/statuses/HISTORY.md +87 -0
  3955. package/day3/backend-project/node_modules/statuses/LICENSE +23 -0
  3956. package/day3/backend-project/node_modules/statuses/README.md +139 -0
  3957. package/day3/backend-project/node_modules/statuses/codes.json +65 -0
  3958. package/day3/backend-project/node_modules/statuses/index.js +146 -0
  3959. package/day3/backend-project/node_modules/statuses/package.json +49 -0
  3960. package/day3/backend-project/node_modules/supports-color/browser.js +5 -0
  3961. package/day3/backend-project/node_modules/supports-color/index.js +131 -0
  3962. package/day3/backend-project/node_modules/supports-color/license +9 -0
  3963. package/day3/backend-project/node_modules/supports-color/package.json +53 -0
  3964. package/day3/backend-project/node_modules/supports-color/readme.md +66 -0
  3965. package/day3/backend-project/node_modules/to-regex-range/LICENSE +21 -0
  3966. package/day3/backend-project/node_modules/to-regex-range/README.md +305 -0
  3967. package/day3/backend-project/node_modules/to-regex-range/index.js +288 -0
  3968. package/day3/backend-project/node_modules/to-regex-range/package.json +88 -0
  3969. package/day3/backend-project/node_modules/toidentifier/HISTORY.md +9 -0
  3970. package/day3/backend-project/node_modules/toidentifier/LICENSE +21 -0
  3971. package/day3/backend-project/node_modules/toidentifier/README.md +61 -0
  3972. package/day3/backend-project/node_modules/toidentifier/index.js +32 -0
  3973. package/day3/backend-project/node_modules/toidentifier/package.json +38 -0
  3974. package/day3/backend-project/node_modules/touch/LICENSE +15 -0
  3975. package/day3/backend-project/node_modules/touch/README.md +52 -0
  3976. package/day3/backend-project/node_modules/touch/bin/nodetouch.js +112 -0
  3977. package/day3/backend-project/node_modules/touch/index.js +224 -0
  3978. package/day3/backend-project/node_modules/touch/package.json +25 -0
  3979. package/day3/backend-project/node_modules/type-is/HISTORY.md +292 -0
  3980. package/day3/backend-project/node_modules/type-is/LICENSE +23 -0
  3981. package/day3/backend-project/node_modules/type-is/README.md +198 -0
  3982. package/day3/backend-project/node_modules/type-is/index.js +240 -0
  3983. package/day3/backend-project/node_modules/type-is/node_modules/content-type/LICENSE +22 -0
  3984. package/day3/backend-project/node_modules/type-is/node_modules/content-type/README.md +69 -0
  3985. package/day3/backend-project/node_modules/type-is/node_modules/content-type/dist/index.d.ts +26 -0
  3986. package/day3/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js +170 -0
  3987. package/day3/backend-project/node_modules/type-is/node_modules/content-type/dist/index.js.map +1 -0
  3988. package/day3/backend-project/node_modules/type-is/node_modules/content-type/package.json +52 -0
  3989. package/day3/backend-project/node_modules/type-is/package.json +51 -0
  3990. package/day3/backend-project/node_modules/undefsafe/.github/workflows/release.yml +25 -0
  3991. package/day3/backend-project/node_modules/undefsafe/.jscsrc +13 -0
  3992. package/day3/backend-project/node_modules/undefsafe/.jshintrc +16 -0
  3993. package/day3/backend-project/node_modules/undefsafe/.travis.yml +18 -0
  3994. package/day3/backend-project/node_modules/undefsafe/LICENSE +22 -0
  3995. package/day3/backend-project/node_modules/undefsafe/README.md +63 -0
  3996. package/day3/backend-project/node_modules/undefsafe/example.js +14 -0
  3997. package/day3/backend-project/node_modules/undefsafe/lib/undefsafe.js +125 -0
  3998. package/day3/backend-project/node_modules/undefsafe/package.json +34 -0
  3999. package/day3/backend-project/node_modules/undici-types/LICENSE +21 -0
  4000. package/day3/backend-project/node_modules/undici-types/README.md +6 -0
  4001. package/day3/backend-project/node_modules/undici-types/agent.d.ts +32 -0
  4002. package/day3/backend-project/node_modules/undici-types/api.d.ts +43 -0
  4003. package/day3/backend-project/node_modules/undici-types/balanced-pool.d.ts +30 -0
  4004. package/day3/backend-project/node_modules/undici-types/cache-interceptor.d.ts +179 -0
  4005. package/day3/backend-project/node_modules/undici-types/cache.d.ts +36 -0
  4006. package/day3/backend-project/node_modules/undici-types/client-stats.d.ts +15 -0
  4007. package/day3/backend-project/node_modules/undici-types/client.d.ts +123 -0
  4008. package/day3/backend-project/node_modules/undici-types/connector.d.ts +36 -0
  4009. package/day3/backend-project/node_modules/undici-types/content-type.d.ts +21 -0
  4010. package/day3/backend-project/node_modules/undici-types/cookies.d.ts +30 -0
  4011. package/day3/backend-project/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  4012. package/day3/backend-project/node_modules/undici-types/dispatcher.d.ts +279 -0
  4013. package/day3/backend-project/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  4014. package/day3/backend-project/node_modules/undici-types/errors.d.ts +177 -0
  4015. package/day3/backend-project/node_modules/undici-types/eventsource.d.ts +66 -0
  4016. package/day3/backend-project/node_modules/undici-types/fetch.d.ts +211 -0
  4017. package/day3/backend-project/node_modules/undici-types/formdata.d.ts +108 -0
  4018. package/day3/backend-project/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  4019. package/day3/backend-project/node_modules/undici-types/global-origin.d.ts +7 -0
  4020. package/day3/backend-project/node_modules/undici-types/h2c-client.d.ts +73 -0
  4021. package/day3/backend-project/node_modules/undici-types/handlers.d.ts +15 -0
  4022. package/day3/backend-project/node_modules/undici-types/header.d.ts +160 -0
  4023. package/day3/backend-project/node_modules/undici-types/index.d.ts +91 -0
  4024. package/day3/backend-project/node_modules/undici-types/interceptors.d.ts +80 -0
  4025. package/day3/backend-project/node_modules/undici-types/mock-agent.d.ts +68 -0
  4026. package/day3/backend-project/node_modules/undici-types/mock-call-history.d.ts +111 -0
  4027. package/day3/backend-project/node_modules/undici-types/mock-client.d.ts +27 -0
  4028. package/day3/backend-project/node_modules/undici-types/mock-errors.d.ts +12 -0
  4029. package/day3/backend-project/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  4030. package/day3/backend-project/node_modules/undici-types/mock-pool.d.ts +27 -0
  4031. package/day3/backend-project/node_modules/undici-types/package.json +55 -0
  4032. package/day3/backend-project/node_modules/undici-types/patch.d.ts +29 -0
  4033. package/day3/backend-project/node_modules/undici-types/pool-stats.d.ts +19 -0
  4034. package/day3/backend-project/node_modules/undici-types/pool.d.ts +41 -0
  4035. package/day3/backend-project/node_modules/undici-types/proxy-agent.d.ts +29 -0
  4036. package/day3/backend-project/node_modules/undici-types/readable.d.ts +68 -0
  4037. package/day3/backend-project/node_modules/undici-types/retry-agent.d.ts +8 -0
  4038. package/day3/backend-project/node_modules/undici-types/retry-handler.d.ts +125 -0
  4039. package/day3/backend-project/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  4040. package/day3/backend-project/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  4041. package/day3/backend-project/node_modules/undici-types/socks5-proxy-agent.d.ts +25 -0
  4042. package/day3/backend-project/node_modules/undici-types/util.d.ts +18 -0
  4043. package/day3/backend-project/node_modules/undici-types/utility.d.ts +7 -0
  4044. package/day3/backend-project/node_modules/undici-types/webidl.d.ts +347 -0
  4045. package/day3/backend-project/node_modules/undici-types/websocket.d.ts +188 -0
  4046. package/day3/backend-project/node_modules/unpipe/HISTORY.md +4 -0
  4047. package/day3/backend-project/node_modules/unpipe/LICENSE +22 -0
  4048. package/day3/backend-project/node_modules/unpipe/README.md +43 -0
  4049. package/day3/backend-project/node_modules/unpipe/index.js +69 -0
  4050. package/day3/backend-project/node_modules/unpipe/package.json +27 -0
  4051. package/day3/backend-project/node_modules/vary/HISTORY.md +39 -0
  4052. package/day3/backend-project/node_modules/vary/LICENSE +22 -0
  4053. package/day3/backend-project/node_modules/vary/README.md +101 -0
  4054. package/day3/backend-project/node_modules/vary/index.js +149 -0
  4055. package/day3/backend-project/node_modules/vary/package.json +43 -0
  4056. package/day3/backend-project/node_modules/wrappy/LICENSE +15 -0
  4057. package/day3/backend-project/node_modules/wrappy/README.md +36 -0
  4058. package/day3/backend-project/node_modules/wrappy/package.json +29 -0
  4059. package/day3/backend-project/node_modules/wrappy/wrappy.js +33 -0
  4060. package/day3/backend-project/package-lock.json +1458 -0
  4061. package/day3/backend-project/package.json +23 -0
  4062. package/day3/backend-project/src/server.js +15 -0
  4063. package/day3/frontend-backend/README.md +18 -0
  4064. package/day3/frontend-backend/eslint.config.js +21 -0
  4065. package/day3/frontend-backend/index.html +13 -0
  4066. package/day3/frontend-backend/package-lock.json +2722 -0
  4067. package/day3/frontend-backend/package.json +32 -0
  4068. package/day3/frontend-backend/public/favicon.svg +1 -0
  4069. package/day3/frontend-backend/public/icons.svg +24 -0
  4070. package/day3/frontend-backend/src/App.css +184 -0
  4071. package/day3/frontend-backend/src/App.jsx +50 -0
  4072. package/day3/frontend-backend/src/assets/hero.png +0 -0
  4073. package/day3/frontend-backend/src/assets/react.svg +1 -0
  4074. package/day3/frontend-backend/src/assets/vite.svg +1 -0
  4075. package/day3/frontend-backend/src/index.css +1 -0
  4076. package/day3/frontend-backend/src/main.jsx +10 -0
  4077. package/day3/frontend-backend/vite.config.js +12 -0
  4078. package/package.json +13 -0
@@ -0,0 +1,1127 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.unescape = exports.escape = exports.AST = exports.Minimatch = exports.match = exports.makeRe = exports.braceExpand = exports.defaults = exports.filter = exports.GLOBSTAR = exports.sep = exports.minimatch = void 0;
4
+ const brace_expansion_1 = require("brace-expansion");
5
+ const assert_valid_pattern_js_1 = require("./assert-valid-pattern.js");
6
+ const ast_js_1 = require("./ast.js");
7
+ const escape_js_1 = require("./escape.js");
8
+ const unescape_js_1 = require("./unescape.js");
9
+ const minimatch = (p, pattern, options = {}) => {
10
+ (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);
11
+ // shortcut: comments match nothing.
12
+ if (!options.nocomment && pattern.charAt(0) === '#') {
13
+ return false;
14
+ }
15
+ return new Minimatch(pattern, options).match(p);
16
+ };
17
+ exports.minimatch = minimatch;
18
+ // Optimized checking for the most common glob patterns.
19
+ const starDotExtRE = /^\*+([^+@!?*[(]*)$/;
20
+ const starDotExtTest = (ext) => (f) => !f.startsWith('.') && f.endsWith(ext);
21
+ const starDotExtTestDot = (ext) => (f) => f.endsWith(ext);
22
+ const starDotExtTestNocase = (ext) => {
23
+ ext = ext.toLowerCase();
24
+ return (f) => !f.startsWith('.') && f.toLowerCase().endsWith(ext);
25
+ };
26
+ const starDotExtTestNocaseDot = (ext) => {
27
+ ext = ext.toLowerCase();
28
+ return (f) => f.toLowerCase().endsWith(ext);
29
+ };
30
+ const starDotStarRE = /^\*+\.\*+$/;
31
+ const starDotStarTest = (f) => !f.startsWith('.') && f.includes('.');
32
+ const starDotStarTestDot = (f) => f !== '.' && f !== '..' && f.includes('.');
33
+ const dotStarRE = /^\.\*+$/;
34
+ const dotStarTest = (f) => f !== '.' && f !== '..' && f.startsWith('.');
35
+ const starRE = /^\*+$/;
36
+ const starTest = (f) => f.length !== 0 && !f.startsWith('.');
37
+ const starTestDot = (f) => f.length !== 0 && f !== '.' && f !== '..';
38
+ const qmarksRE = /^\?+([^+@!?*[(]*)?$/;
39
+ const qmarksTestNocase = ([$0, ext = '']) => {
40
+ const noext = qmarksTestNoExt([$0]);
41
+ if (!ext)
42
+ return noext;
43
+ ext = ext.toLowerCase();
44
+ return (f) => noext(f) && f.toLowerCase().endsWith(ext);
45
+ };
46
+ const qmarksTestNocaseDot = ([$0, ext = '']) => {
47
+ const noext = qmarksTestNoExtDot([$0]);
48
+ if (!ext)
49
+ return noext;
50
+ ext = ext.toLowerCase();
51
+ return (f) => noext(f) && f.toLowerCase().endsWith(ext);
52
+ };
53
+ const qmarksTestDot = ([$0, ext = '']) => {
54
+ const noext = qmarksTestNoExtDot([$0]);
55
+ return !ext ? noext : (f) => noext(f) && f.endsWith(ext);
56
+ };
57
+ const qmarksTest = ([$0, ext = '']) => {
58
+ const noext = qmarksTestNoExt([$0]);
59
+ return !ext ? noext : (f) => noext(f) && f.endsWith(ext);
60
+ };
61
+ const qmarksTestNoExt = ([$0]) => {
62
+ const len = $0.length;
63
+ return (f) => f.length === len && !f.startsWith('.');
64
+ };
65
+ const qmarksTestNoExtDot = ([$0]) => {
66
+ const len = $0.length;
67
+ return (f) => f.length === len && f !== '.' && f !== '..';
68
+ };
69
+ /* c8 ignore start */
70
+ const defaultPlatform = (typeof process === 'object' && process ?
71
+ (typeof process.env === 'object' &&
72
+ process.env &&
73
+ process.env.__MINIMATCH_TESTING_PLATFORM__) ||
74
+ process.platform
75
+ : 'posix');
76
+ const path = {
77
+ win32: { sep: '\\' },
78
+ posix: { sep: '/' },
79
+ };
80
+ /* c8 ignore stop */
81
+ exports.sep = defaultPlatform === 'win32' ? path.win32.sep : path.posix.sep;
82
+ exports.minimatch.sep = exports.sep;
83
+ exports.GLOBSTAR = Symbol('globstar **');
84
+ exports.minimatch.GLOBSTAR = exports.GLOBSTAR;
85
+ // any single thing other than /
86
+ // don't need to escape / when using new RegExp()
87
+ const qmark = '[^/]';
88
+ // * => any number of characters
89
+ const star = qmark + '*?';
90
+ // ** when dots are allowed. Anything goes, except .. and .
91
+ // not (^ or / followed by one or two dots followed by $ or /),
92
+ // followed by anything, any number of times.
93
+ const twoStarDot = '(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?';
94
+ // not a ^ or / followed by a dot,
95
+ // followed by anything, any number of times.
96
+ const twoStarNoDot = '(?:(?!(?:\\/|^)\\.).)*?';
97
+ const filter = (pattern, options = {}) => (p) => (0, exports.minimatch)(p, pattern, options);
98
+ exports.filter = filter;
99
+ exports.minimatch.filter = exports.filter;
100
+ const ext = (a, b = {}) => Object.assign({}, a, b);
101
+ const defaults = (def) => {
102
+ if (!def || typeof def !== 'object' || !Object.keys(def).length) {
103
+ return exports.minimatch;
104
+ }
105
+ const orig = exports.minimatch;
106
+ const m = (p, pattern, options = {}) => orig(p, pattern, ext(def, options));
107
+ return Object.assign(m, {
108
+ Minimatch: class Minimatch extends orig.Minimatch {
109
+ constructor(pattern, options = {}) {
110
+ super(pattern, ext(def, options));
111
+ }
112
+ static defaults(options) {
113
+ return orig.defaults(ext(def, options)).Minimatch;
114
+ }
115
+ },
116
+ AST: class AST extends orig.AST {
117
+ /* c8 ignore start */
118
+ constructor(type, parent, options = {}) {
119
+ super(type, parent, ext(def, options));
120
+ }
121
+ /* c8 ignore stop */
122
+ static fromGlob(pattern, options = {}) {
123
+ return orig.AST.fromGlob(pattern, ext(def, options));
124
+ }
125
+ },
126
+ unescape: (s, options = {}) => orig.unescape(s, ext(def, options)),
127
+ escape: (s, options = {}) => orig.escape(s, ext(def, options)),
128
+ filter: (pattern, options = {}) => orig.filter(pattern, ext(def, options)),
129
+ defaults: (options) => orig.defaults(ext(def, options)),
130
+ makeRe: (pattern, options = {}) => orig.makeRe(pattern, ext(def, options)),
131
+ braceExpand: (pattern, options = {}) => orig.braceExpand(pattern, ext(def, options)),
132
+ match: (list, pattern, options = {}) => orig.match(list, pattern, ext(def, options)),
133
+ sep: orig.sep,
134
+ GLOBSTAR: exports.GLOBSTAR,
135
+ });
136
+ };
137
+ exports.defaults = defaults;
138
+ exports.minimatch.defaults = exports.defaults;
139
+ // Brace expansion:
140
+ // a{b,c}d -> abd acd
141
+ // a{b,}c -> abc ac
142
+ // a{0..3}d -> a0d a1d a2d a3d
143
+ // a{b,c{d,e}f}g -> abg acdfg acefg
144
+ // a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg
145
+ //
146
+ // Invalid sets are not expanded.
147
+ // a{2..}b -> a{2..}b
148
+ // a{b}c -> a{b}c
149
+ const braceExpand = (pattern, options = {}) => {
150
+ (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);
151
+ // Thanks to Yeting Li <https://github.com/yetingli> for
152
+ // improving this regexp to avoid a ReDOS vulnerability.
153
+ if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
154
+ // shortcut. no need to expand.
155
+ return [pattern];
156
+ }
157
+ return (0, brace_expansion_1.expand)(pattern, { max: options.braceExpandMax });
158
+ };
159
+ exports.braceExpand = braceExpand;
160
+ exports.minimatch.braceExpand = exports.braceExpand;
161
+ // parse a component of the expanded set.
162
+ // At this point, no pattern may contain "/" in it
163
+ // so we're going to return a 2d array, where each entry is the full
164
+ // pattern, split on '/', and then turned into a regular expression.
165
+ // A regexp is made at the end which joins each array with an
166
+ // escaped /, and another full one which joins each regexp with |.
167
+ //
168
+ // Following the lead of Bash 4.1, note that "**" only has special meaning
169
+ // when it is the *only* thing in a path portion. Otherwise, any series
170
+ // of * is equivalent to a single *. Globstar behavior is enabled by
171
+ // default, and can be disabled by setting options.noglobstar.
172
+ const makeRe = (pattern, options = {}) => new Minimatch(pattern, options).makeRe();
173
+ exports.makeRe = makeRe;
174
+ exports.minimatch.makeRe = exports.makeRe;
175
+ const match = (list, pattern, options = {}) => {
176
+ const mm = new Minimatch(pattern, options);
177
+ list = list.filter(f => mm.match(f));
178
+ if (mm.options.nonull && !list.length) {
179
+ list.push(pattern);
180
+ }
181
+ return list;
182
+ };
183
+ exports.match = match;
184
+ exports.minimatch.match = exports.match;
185
+ // replace stuff like \* with *
186
+ const globMagic = /[?*]|[+@!]\(.*?\)|\[|\]/;
187
+ const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
188
+ class Minimatch {
189
+ options;
190
+ set;
191
+ pattern;
192
+ windowsPathsNoEscape;
193
+ nonegate;
194
+ negate;
195
+ comment;
196
+ empty;
197
+ preserveMultipleSlashes;
198
+ partial;
199
+ globSet;
200
+ globParts;
201
+ nocase;
202
+ isWindows;
203
+ platform;
204
+ windowsNoMagicRoot;
205
+ maxGlobstarRecursion;
206
+ regexp;
207
+ constructor(pattern, options = {}) {
208
+ (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);
209
+ options = options || {};
210
+ this.options = options;
211
+ this.maxGlobstarRecursion = options.maxGlobstarRecursion ?? 200;
212
+ this.pattern = pattern;
213
+ this.platform = options.platform || defaultPlatform;
214
+ this.isWindows = this.platform === 'win32';
215
+ // avoid the annoying deprecation flag lol
216
+ const awe = ('allowWindow' + 'sEscape');
217
+ this.windowsPathsNoEscape =
218
+ !!options.windowsPathsNoEscape || options[awe] === false;
219
+ if (this.windowsPathsNoEscape) {
220
+ this.pattern = this.pattern.replace(/\\/g, '/');
221
+ }
222
+ this.preserveMultipleSlashes = !!options.preserveMultipleSlashes;
223
+ this.regexp = null;
224
+ this.negate = false;
225
+ this.nonegate = !!options.nonegate;
226
+ this.comment = false;
227
+ this.empty = false;
228
+ this.partial = !!options.partial;
229
+ this.nocase = !!this.options.nocase;
230
+ this.windowsNoMagicRoot =
231
+ options.windowsNoMagicRoot !== undefined ?
232
+ options.windowsNoMagicRoot
233
+ : !!(this.isWindows && this.nocase);
234
+ this.globSet = [];
235
+ this.globParts = [];
236
+ this.set = [];
237
+ // make the set of regexps etc.
238
+ this.make();
239
+ }
240
+ hasMagic() {
241
+ if (this.options.magicalBraces && this.set.length > 1) {
242
+ return true;
243
+ }
244
+ for (const pattern of this.set) {
245
+ for (const part of pattern) {
246
+ if (typeof part !== 'string')
247
+ return true;
248
+ }
249
+ }
250
+ return false;
251
+ }
252
+ debug(..._) { }
253
+ make() {
254
+ const pattern = this.pattern;
255
+ const options = this.options;
256
+ // empty patterns and comments match nothing.
257
+ if (!options.nocomment && pattern.charAt(0) === '#') {
258
+ this.comment = true;
259
+ return;
260
+ }
261
+ if (!pattern) {
262
+ this.empty = true;
263
+ return;
264
+ }
265
+ // step 1: figure out negation, etc.
266
+ this.parseNegate();
267
+ // step 2: expand braces
268
+ this.globSet = [...new Set(this.braceExpand())];
269
+ if (options.debug) {
270
+ //oxlint-disable-next-line no-console
271
+ this.debug = (...args) => console.error(...args);
272
+ }
273
+ this.debug(this.pattern, this.globSet);
274
+ // step 3: now we have a set, so turn each one into a series of
275
+ // path-portion matching patterns.
276
+ // These will be regexps, except in the case of "**", which is
277
+ // set to the GLOBSTAR object for globstar behavior,
278
+ // and will not contain any / characters
279
+ //
280
+ // First, we preprocess to make the glob pattern sets a bit simpler
281
+ // and deduped. There are some perf-killing patterns that can cause
282
+ // problems with a glob walk, but we can simplify them down a bit.
283
+ const rawGlobParts = this.globSet.map(s => this.slashSplit(s));
284
+ this.globParts = this.preprocess(rawGlobParts);
285
+ this.debug(this.pattern, this.globParts);
286
+ // glob --> regexps
287
+ let set = this.globParts.map((s, _, __) => {
288
+ if (this.isWindows && this.windowsNoMagicRoot) {
289
+ // check if it's a drive or unc path.
290
+ const isUNC = s[0] === '' &&
291
+ s[1] === '' &&
292
+ (s[2] === '?' || !globMagic.test(s[2])) &&
293
+ !globMagic.test(s[3]);
294
+ const isDrive = /^[a-z]:/i.test(s[0]);
295
+ if (isUNC) {
296
+ return [
297
+ ...s.slice(0, 4),
298
+ ...s.slice(4).map(ss => this.parse(ss)),
299
+ ];
300
+ }
301
+ else if (isDrive) {
302
+ return [s[0], ...s.slice(1).map(ss => this.parse(ss))];
303
+ }
304
+ }
305
+ return s.map(ss => this.parse(ss));
306
+ });
307
+ this.debug(this.pattern, set);
308
+ // filter out everything that didn't compile properly.
309
+ this.set = set.filter(s => s.indexOf(false) === -1);
310
+ // do not treat the ? in UNC paths as magic
311
+ if (this.isWindows) {
312
+ for (let i = 0; i < this.set.length; i++) {
313
+ const p = this.set[i];
314
+ if (p[0] === '' &&
315
+ p[1] === '' &&
316
+ this.globParts[i][2] === '?' &&
317
+ typeof p[3] === 'string' &&
318
+ /^[a-z]:$/i.test(p[3])) {
319
+ p[2] = '?';
320
+ }
321
+ }
322
+ }
323
+ this.debug(this.pattern, this.set);
324
+ }
325
+ // various transforms to equivalent pattern sets that are
326
+ // faster to process in a filesystem walk. The goal is to
327
+ // eliminate what we can, and push all ** patterns as far
328
+ // to the right as possible, even if it increases the number
329
+ // of patterns that we have to process.
330
+ preprocess(globParts) {
331
+ // if we're not in globstar mode, then turn ** into *
332
+ if (this.options.noglobstar) {
333
+ for (const partset of globParts) {
334
+ for (let j = 0; j < partset.length; j++) {
335
+ if (partset[j] === '**') {
336
+ partset[j] = '*';
337
+ }
338
+ }
339
+ }
340
+ }
341
+ const { optimizationLevel = 1 } = this.options;
342
+ if (optimizationLevel >= 2) {
343
+ // aggressive optimization for the purpose of fs walking
344
+ globParts = this.firstPhasePreProcess(globParts);
345
+ globParts = this.secondPhasePreProcess(globParts);
346
+ }
347
+ else if (optimizationLevel >= 1) {
348
+ // just basic optimizations to remove some .. parts
349
+ globParts = this.levelOneOptimize(globParts);
350
+ }
351
+ else {
352
+ // just collapse multiple ** portions into one
353
+ globParts = this.adjascentGlobstarOptimize(globParts);
354
+ }
355
+ return globParts;
356
+ }
357
+ // just get rid of adjascent ** portions
358
+ adjascentGlobstarOptimize(globParts) {
359
+ return globParts.map(parts => {
360
+ let gs = -1;
361
+ while (-1 !== (gs = parts.indexOf('**', gs + 1))) {
362
+ let i = gs;
363
+ while (parts[i + 1] === '**') {
364
+ i++;
365
+ }
366
+ if (i !== gs) {
367
+ parts.splice(gs, i - gs);
368
+ }
369
+ }
370
+ return parts;
371
+ });
372
+ }
373
+ // get rid of adjascent ** and resolve .. portions
374
+ levelOneOptimize(globParts) {
375
+ return globParts.map(parts => {
376
+ parts = parts.reduce((set, part) => {
377
+ const prev = set[set.length - 1];
378
+ if (part === '**' && prev === '**') {
379
+ return set;
380
+ }
381
+ if (part === '..') {
382
+ if (prev && prev !== '..' && prev !== '.' && prev !== '**') {
383
+ set.pop();
384
+ return set;
385
+ }
386
+ }
387
+ set.push(part);
388
+ return set;
389
+ }, []);
390
+ return parts.length === 0 ? [''] : parts;
391
+ });
392
+ }
393
+ levelTwoFileOptimize(parts) {
394
+ if (!Array.isArray(parts)) {
395
+ parts = this.slashSplit(parts);
396
+ }
397
+ let didSomething = false;
398
+ do {
399
+ didSomething = false;
400
+ // <pre>/<e>/<rest> -> <pre>/<rest>
401
+ if (!this.preserveMultipleSlashes) {
402
+ for (let i = 1; i < parts.length - 1; i++) {
403
+ const p = parts[i];
404
+ // don't squeeze out UNC patterns
405
+ if (i === 1 && p === '' && parts[0] === '')
406
+ continue;
407
+ if (p === '.' || p === '') {
408
+ didSomething = true;
409
+ parts.splice(i, 1);
410
+ i--;
411
+ }
412
+ }
413
+ if (parts[0] === '.' &&
414
+ parts.length === 2 &&
415
+ (parts[1] === '.' || parts[1] === '')) {
416
+ didSomething = true;
417
+ parts.pop();
418
+ }
419
+ }
420
+ // <pre>/<p>/../<rest> -> <pre>/<rest>
421
+ let dd = 0;
422
+ while (-1 !== (dd = parts.indexOf('..', dd + 1))) {
423
+ const p = parts[dd - 1];
424
+ if (p &&
425
+ p !== '.' &&
426
+ p !== '..' &&
427
+ p !== '**' &&
428
+ !(this.isWindows && /^[a-z]:$/i.test(p))) {
429
+ didSomething = true;
430
+ parts.splice(dd - 1, 2);
431
+ dd -= 2;
432
+ }
433
+ }
434
+ } while (didSomething);
435
+ return parts.length === 0 ? [''] : parts;
436
+ }
437
+ // First phase: single-pattern processing
438
+ // <pre> is 1 or more portions
439
+ // <rest> is 1 or more portions
440
+ // <p> is any portion other than ., .., '', or **
441
+ // <e> is . or ''
442
+ //
443
+ // **/.. is *brutal* for filesystem walking performance, because
444
+ // it effectively resets the recursive walk each time it occurs,
445
+ // and ** cannot be reduced out by a .. pattern part like a regexp
446
+ // or most strings (other than .., ., and '') can be.
447
+ //
448
+ // <pre>/**/../<p>/<p>/<rest> -> {<pre>/../<p>/<p>/<rest>,<pre>/**/<p>/<p>/<rest>}
449
+ // <pre>/<e>/<rest> -> <pre>/<rest>
450
+ // <pre>/<p>/../<rest> -> <pre>/<rest>
451
+ // **/**/<rest> -> **/<rest>
452
+ //
453
+ // **/*/<rest> -> */**/<rest> <== not valid because ** doesn't follow
454
+ // this WOULD be allowed if ** did follow symlinks, or * didn't
455
+ firstPhasePreProcess(globParts) {
456
+ let didSomething = false;
457
+ do {
458
+ didSomething = false;
459
+ // <pre>/**/../<p>/<p>/<rest> -> {<pre>/../<p>/<p>/<rest>,<pre>/**/<p>/<p>/<rest>}
460
+ for (let parts of globParts) {
461
+ let gs = -1;
462
+ while (-1 !== (gs = parts.indexOf('**', gs + 1))) {
463
+ let gss = gs;
464
+ while (parts[gss + 1] === '**') {
465
+ // <pre>/**/**/<rest> -> <pre>/**/<rest>
466
+ gss++;
467
+ }
468
+ // eg, if gs is 2 and gss is 4, that means we have 3 **
469
+ // parts, and can remove 2 of them.
470
+ if (gss > gs) {
471
+ parts.splice(gs + 1, gss - gs);
472
+ }
473
+ let next = parts[gs + 1];
474
+ const p = parts[gs + 2];
475
+ const p2 = parts[gs + 3];
476
+ if (next !== '..')
477
+ continue;
478
+ if (!p ||
479
+ p === '.' ||
480
+ p === '..' ||
481
+ !p2 ||
482
+ p2 === '.' ||
483
+ p2 === '..') {
484
+ continue;
485
+ }
486
+ didSomething = true;
487
+ // edit parts in place, and push the new one
488
+ parts.splice(gs, 1);
489
+ const other = parts.slice(0);
490
+ other[gs] = '**';
491
+ globParts.push(other);
492
+ gs--;
493
+ }
494
+ // <pre>/<e>/<rest> -> <pre>/<rest>
495
+ if (!this.preserveMultipleSlashes) {
496
+ for (let i = 1; i < parts.length - 1; i++) {
497
+ const p = parts[i];
498
+ // don't squeeze out UNC patterns
499
+ if (i === 1 && p === '' && parts[0] === '')
500
+ continue;
501
+ if (p === '.' || p === '') {
502
+ didSomething = true;
503
+ parts.splice(i, 1);
504
+ i--;
505
+ }
506
+ }
507
+ if (parts[0] === '.' &&
508
+ parts.length === 2 &&
509
+ (parts[1] === '.' || parts[1] === '')) {
510
+ didSomething = true;
511
+ parts.pop();
512
+ }
513
+ }
514
+ // <pre>/<p>/../<rest> -> <pre>/<rest>
515
+ let dd = 0;
516
+ while (-1 !== (dd = parts.indexOf('..', dd + 1))) {
517
+ const p = parts[dd - 1];
518
+ if (p && p !== '.' && p !== '..' && p !== '**') {
519
+ didSomething = true;
520
+ const needDot = dd === 1 && parts[dd + 1] === '**';
521
+ const splin = needDot ? ['.'] : [];
522
+ parts.splice(dd - 1, 2, ...splin);
523
+ if (parts.length === 0)
524
+ parts.push('');
525
+ dd -= 2;
526
+ }
527
+ }
528
+ }
529
+ } while (didSomething);
530
+ return globParts;
531
+ }
532
+ // second phase: multi-pattern dedupes
533
+ // {<pre>/*/<rest>,<pre>/<p>/<rest>} -> <pre>/*/<rest>
534
+ // {<pre>/<rest>,<pre>/<rest>} -> <pre>/<rest>
535
+ // {<pre>/**/<rest>,<pre>/<rest>} -> <pre>/**/<rest>
536
+ //
537
+ // {<pre>/**/<rest>,<pre>/**/<p>/<rest>} -> <pre>/**/<rest>
538
+ // ^-- not valid because ** doens't follow symlinks
539
+ secondPhasePreProcess(globParts) {
540
+ for (let i = 0; i < globParts.length - 1; i++) {
541
+ for (let j = i + 1; j < globParts.length; j++) {
542
+ const matched = this.partsMatch(globParts[i], globParts[j], !this.preserveMultipleSlashes);
543
+ if (matched) {
544
+ globParts[i] = [];
545
+ globParts[j] = matched;
546
+ break;
547
+ }
548
+ }
549
+ }
550
+ return globParts.filter(gs => gs.length);
551
+ }
552
+ partsMatch(a, b, emptyGSMatch = false) {
553
+ let ai = 0;
554
+ let bi = 0;
555
+ let result = [];
556
+ let which = '';
557
+ while (ai < a.length && bi < b.length) {
558
+ if (a[ai] === b[bi]) {
559
+ result.push(which === 'b' ? b[bi] : a[ai]);
560
+ ai++;
561
+ bi++;
562
+ }
563
+ else if (emptyGSMatch && a[ai] === '**' && b[bi] === a[ai + 1]) {
564
+ result.push(a[ai]);
565
+ ai++;
566
+ }
567
+ else if (emptyGSMatch && b[bi] === '**' && a[ai] === b[bi + 1]) {
568
+ result.push(b[bi]);
569
+ bi++;
570
+ }
571
+ else if (a[ai] === '*' &&
572
+ b[bi] &&
573
+ (this.options.dot || !b[bi].startsWith('.')) &&
574
+ b[bi] !== '**') {
575
+ if (which === 'b')
576
+ return false;
577
+ which = 'a';
578
+ result.push(a[ai]);
579
+ ai++;
580
+ bi++;
581
+ }
582
+ else if (b[bi] === '*' &&
583
+ a[ai] &&
584
+ (this.options.dot || !a[ai].startsWith('.')) &&
585
+ a[ai] !== '**') {
586
+ if (which === 'a')
587
+ return false;
588
+ which = 'b';
589
+ result.push(b[bi]);
590
+ ai++;
591
+ bi++;
592
+ }
593
+ else {
594
+ return false;
595
+ }
596
+ }
597
+ // if we fall out of the loop, it means they two are identical
598
+ // as long as their lengths match
599
+ return a.length === b.length && result;
600
+ }
601
+ parseNegate() {
602
+ if (this.nonegate)
603
+ return;
604
+ const pattern = this.pattern;
605
+ let negate = false;
606
+ let negateOffset = 0;
607
+ for (let i = 0; i < pattern.length && pattern.charAt(i) === '!'; i++) {
608
+ negate = !negate;
609
+ negateOffset++;
610
+ }
611
+ if (negateOffset)
612
+ this.pattern = pattern.slice(negateOffset);
613
+ this.negate = negate;
614
+ }
615
+ // set partial to true to test if, for example,
616
+ // "/a/b" matches the start of "/*/b/*/d"
617
+ // Partial means, if you run out of file before you run
618
+ // out of pattern, then that's fine, as long as all
619
+ // the parts match.
620
+ matchOne(file, pattern, partial = false) {
621
+ let fileStartIndex = 0;
622
+ let patternStartIndex = 0;
623
+ // UNC paths like //?/X:/... can match X:/... and vice versa
624
+ // Drive letters in absolute drive or unc paths are always compared
625
+ // case-insensitively.
626
+ if (this.isWindows) {
627
+ const fileDrive = typeof file[0] === 'string' && /^[a-z]:$/i.test(file[0]);
628
+ const fileUNC = !fileDrive &&
629
+ file[0] === '' &&
630
+ file[1] === '' &&
631
+ file[2] === '?' &&
632
+ /^[a-z]:$/i.test(file[3]);
633
+ const patternDrive = typeof pattern[0] === 'string' && /^[a-z]:$/i.test(pattern[0]);
634
+ const patternUNC = !patternDrive &&
635
+ pattern[0] === '' &&
636
+ pattern[1] === '' &&
637
+ pattern[2] === '?' &&
638
+ typeof pattern[3] === 'string' &&
639
+ /^[a-z]:$/i.test(pattern[3]);
640
+ const fdi = fileUNC ? 3
641
+ : fileDrive ? 0
642
+ : undefined;
643
+ const pdi = patternUNC ? 3
644
+ : patternDrive ? 0
645
+ : undefined;
646
+ if (typeof fdi === 'number' && typeof pdi === 'number') {
647
+ const [fd, pd] = [
648
+ file[fdi],
649
+ pattern[pdi],
650
+ ];
651
+ // start matching at the drive letter index of each
652
+ if (fd.toLowerCase() === pd.toLowerCase()) {
653
+ pattern[pdi] = fd;
654
+ patternStartIndex = pdi;
655
+ fileStartIndex = fdi;
656
+ }
657
+ }
658
+ }
659
+ // resolve and reduce . and .. portions in the file as well.
660
+ // don't need to do the second phase, because it's only one string[]
661
+ const { optimizationLevel = 1 } = this.options;
662
+ if (optimizationLevel >= 2) {
663
+ file = this.levelTwoFileOptimize(file);
664
+ }
665
+ if (pattern.includes(exports.GLOBSTAR)) {
666
+ return this.#matchGlobstar(file, pattern, partial, fileStartIndex, patternStartIndex);
667
+ }
668
+ return this.#matchOne(file, pattern, partial, fileStartIndex, patternStartIndex);
669
+ }
670
+ #matchGlobstar(file, pattern, partial, fileIndex, patternIndex) {
671
+ // split the pattern into head, tail, and middle of ** delimited parts
672
+ const firstgs = pattern.indexOf(exports.GLOBSTAR, patternIndex);
673
+ const lastgs = pattern.lastIndexOf(exports.GLOBSTAR);
674
+ // split the pattern up into globstar-delimited sections
675
+ // the tail has to be at the end, and the others just have
676
+ // to be found in order from the head.
677
+ const [head, body, tail] = partial ?
678
+ [
679
+ pattern.slice(patternIndex, firstgs),
680
+ pattern.slice(firstgs + 1),
681
+ [],
682
+ ]
683
+ : [
684
+ pattern.slice(patternIndex, firstgs),
685
+ pattern.slice(firstgs + 1, lastgs),
686
+ pattern.slice(lastgs + 1),
687
+ ];
688
+ // check the head, from the current file/pattern index.
689
+ if (head.length) {
690
+ const fileHead = file.slice(fileIndex, fileIndex + head.length);
691
+ if (!this.#matchOne(fileHead, head, partial, 0, 0)) {
692
+ return false;
693
+ }
694
+ fileIndex += head.length;
695
+ patternIndex += head.length;
696
+ }
697
+ // now we know the head matches!
698
+ // if the last portion is not empty, it MUST match the end
699
+ // check the tail
700
+ let fileTailMatch = 0;
701
+ if (tail.length) {
702
+ // if head + tail > file, then we cannot possibly match
703
+ if (tail.length + fileIndex > file.length)
704
+ return false;
705
+ // try to match the tail
706
+ let tailStart = file.length - tail.length;
707
+ if (this.#matchOne(file, tail, partial, tailStart, 0)) {
708
+ fileTailMatch = tail.length;
709
+ }
710
+ else {
711
+ // affordance for stuff like a/**/* matching a/b/
712
+ // if the last file portion is '', and there's more to the pattern
713
+ // then try without the '' bit.
714
+ if (file[file.length - 1] !== '' ||
715
+ fileIndex + tail.length === file.length) {
716
+ return false;
717
+ }
718
+ tailStart--;
719
+ if (!this.#matchOne(file, tail, partial, tailStart, 0)) {
720
+ return false;
721
+ }
722
+ fileTailMatch = tail.length + 1;
723
+ }
724
+ }
725
+ // now we know the tail matches!
726
+ // the middle is zero or more portions wrapped in **, possibly
727
+ // containing more ** sections.
728
+ // so a/**/b/**/c/**/d has become **/b/**/c/**
729
+ // if it's empty, it means a/**/b, just verify we have no bad dots
730
+ // if there's no tail, so it ends on /**, then we must have *something*
731
+ // after the head, or it's not a matc
732
+ if (!body.length) {
733
+ let sawSome = !!fileTailMatch;
734
+ for (let i = fileIndex; i < file.length - fileTailMatch; i++) {
735
+ const f = String(file[i]);
736
+ sawSome = true;
737
+ if (f === '.' ||
738
+ f === '..' ||
739
+ (!this.options.dot && f.startsWith('.'))) {
740
+ return false;
741
+ }
742
+ }
743
+ // in partial mode, we just need to get past all file parts
744
+ return partial || sawSome;
745
+ }
746
+ // now we know that there's one or more body sections, which can
747
+ // be matched anywhere from the 0 index (because the head was pruned)
748
+ // through to the length-fileTailMatch index.
749
+ // split the body up into sections, and note the minimum index it can
750
+ // be found at (start with the length of all previous segments)
751
+ // [section, before, after]
752
+ const bodySegments = [[[], 0]];
753
+ let currentBody = bodySegments[0];
754
+ let nonGsParts = 0;
755
+ const nonGsPartsSums = [0];
756
+ for (const b of body) {
757
+ if (b === exports.GLOBSTAR) {
758
+ nonGsPartsSums.push(nonGsParts);
759
+ currentBody = [[], 0];
760
+ bodySegments.push(currentBody);
761
+ }
762
+ else {
763
+ currentBody[0].push(b);
764
+ nonGsParts++;
765
+ }
766
+ }
767
+ let i = bodySegments.length - 1;
768
+ const fileLength = file.length - fileTailMatch;
769
+ for (const b of bodySegments) {
770
+ b[1] = fileLength - (nonGsPartsSums[i--] + b[0].length);
771
+ }
772
+ return !!this.#matchGlobStarBodySections(file, bodySegments, fileIndex, 0, partial, 0, !!fileTailMatch);
773
+ }
774
+ // return false for "nope, not matching"
775
+ // return null for "not matching, cannot keep trying"
776
+ #matchGlobStarBodySections(file,
777
+ // pattern section, last possible position for it
778
+ bodySegments, fileIndex, bodyIndex, partial, globStarDepth, sawTail) {
779
+ // take the first body segment, and walk from fileIndex to its "after"
780
+ // value at the end
781
+ // If it doesn't match at that position, we increment, until we hit
782
+ // that final possible position, and give up.
783
+ // If it does match, then advance and try to rest.
784
+ // If any of them fail we keep walking forward.
785
+ // this is still a bit recursively painful, but it's more constrained
786
+ // than previous implementations, because we never test something that
787
+ // can't possibly be a valid matching condition.
788
+ const bs = bodySegments[bodyIndex];
789
+ if (!bs) {
790
+ // just make sure that there's no bad dots
791
+ for (let i = fileIndex; i < file.length; i++) {
792
+ sawTail = true;
793
+ const f = file[i];
794
+ if (f === '.' ||
795
+ f === '..' ||
796
+ (!this.options.dot && f.startsWith('.'))) {
797
+ return false;
798
+ }
799
+ }
800
+ return sawTail;
801
+ }
802
+ // have a non-globstar body section to test
803
+ const [body, after] = bs;
804
+ while (fileIndex <= after) {
805
+ const m = this.#matchOne(file.slice(0, fileIndex + body.length), body, partial, fileIndex, 0);
806
+ // if limit exceeded, no match. intentional false negative,
807
+ // acceptable break in correctness for security.
808
+ if (m && globStarDepth < this.maxGlobstarRecursion) {
809
+ // match! see if the rest match. if so, we're done!
810
+ const sub = this.#matchGlobStarBodySections(file, bodySegments, fileIndex + body.length, bodyIndex + 1, partial, globStarDepth + 1, sawTail);
811
+ if (sub !== false) {
812
+ return sub;
813
+ }
814
+ }
815
+ const f = file[fileIndex];
816
+ if (f === '.' ||
817
+ f === '..' ||
818
+ (!this.options.dot && f.startsWith('.'))) {
819
+ return false;
820
+ }
821
+ fileIndex++;
822
+ }
823
+ // walked off. no point continuing
824
+ return partial || null;
825
+ }
826
+ #matchOne(file, pattern, partial, fileIndex, patternIndex) {
827
+ let fi;
828
+ let pi;
829
+ let pl;
830
+ let fl;
831
+ for (fi = fileIndex,
832
+ pi = patternIndex,
833
+ fl = file.length,
834
+ pl = pattern.length; fi < fl && pi < pl; fi++, pi++) {
835
+ this.debug('matchOne loop');
836
+ let p = pattern[pi];
837
+ let f = file[fi];
838
+ this.debug(pattern, p, f);
839
+ // should be impossible.
840
+ // some invalid regexp stuff in the set.
841
+ /* c8 ignore start */
842
+ if (p === false || p === exports.GLOBSTAR) {
843
+ return false;
844
+ }
845
+ /* c8 ignore stop */
846
+ // something other than **
847
+ // non-magic patterns just have to match exactly
848
+ // patterns with magic have been turned into regexps.
849
+ let hit;
850
+ if (typeof p === 'string') {
851
+ hit = f === p;
852
+ this.debug('string match', p, f, hit);
853
+ }
854
+ else {
855
+ hit = p.test(f);
856
+ this.debug('pattern match', p, f, hit);
857
+ }
858
+ if (!hit)
859
+ return false;
860
+ }
861
+ // Note: ending in / means that we'll get a final ""
862
+ // at the end of the pattern. This can only match a
863
+ // corresponding "" at the end of the file.
864
+ // If the file ends in /, then it can only match a
865
+ // a pattern that ends in /, unless the pattern just
866
+ // doesn't have any more for it. But, a/b/ should *not*
867
+ // match "a/b/*", even though "" matches against the
868
+ // [^/]*? pattern, except in partial mode, where it might
869
+ // simply not be reached yet.
870
+ // However, a/b/ should still satisfy a/*
871
+ // now either we fell off the end of the pattern, or we're done.
872
+ if (fi === fl && pi === pl) {
873
+ // ran out of pattern and filename at the same time.
874
+ // an exact hit!
875
+ return true;
876
+ }
877
+ else if (fi === fl) {
878
+ // ran out of file, but still had pattern left.
879
+ // this is ok if we're doing the match as part of
880
+ // a glob fs traversal.
881
+ return partial;
882
+ }
883
+ else if (pi === pl) {
884
+ // ran out of pattern, still have file left.
885
+ // this is only acceptable if we're on the very last
886
+ // empty segment of a file with a trailing slash.
887
+ // a/* should match a/b/
888
+ return fi === fl - 1 && file[fi] === '';
889
+ /* c8 ignore start */
890
+ }
891
+ else {
892
+ // should be unreachable.
893
+ throw new Error('wtf?');
894
+ }
895
+ /* c8 ignore stop */
896
+ }
897
+ braceExpand() {
898
+ return (0, exports.braceExpand)(this.pattern, this.options);
899
+ }
900
+ parse(pattern) {
901
+ (0, assert_valid_pattern_js_1.assertValidPattern)(pattern);
902
+ const options = this.options;
903
+ // shortcuts
904
+ if (pattern === '**')
905
+ return exports.GLOBSTAR;
906
+ if (pattern === '')
907
+ return '';
908
+ // far and away, the most common glob pattern parts are
909
+ // *, *.*, and *.<ext> Add a fast check method for those.
910
+ let m;
911
+ let fastTest = null;
912
+ if ((m = pattern.match(starRE))) {
913
+ fastTest = options.dot ? starTestDot : starTest;
914
+ }
915
+ else if ((m = pattern.match(starDotExtRE))) {
916
+ fastTest = (options.nocase ?
917
+ options.dot ?
918
+ starDotExtTestNocaseDot
919
+ : starDotExtTestNocase
920
+ : options.dot ? starDotExtTestDot
921
+ : starDotExtTest)(m[1]);
922
+ }
923
+ else if ((m = pattern.match(qmarksRE))) {
924
+ fastTest = (options.nocase ?
925
+ options.dot ?
926
+ qmarksTestNocaseDot
927
+ : qmarksTestNocase
928
+ : options.dot ? qmarksTestDot
929
+ : qmarksTest)(m);
930
+ }
931
+ else if ((m = pattern.match(starDotStarRE))) {
932
+ fastTest = options.dot ? starDotStarTestDot : starDotStarTest;
933
+ }
934
+ else if ((m = pattern.match(dotStarRE))) {
935
+ fastTest = dotStarTest;
936
+ }
937
+ const re = ast_js_1.AST.fromGlob(pattern, this.options).toMMPattern();
938
+ if (fastTest && typeof re === 'object') {
939
+ // Avoids overriding in frozen environments
940
+ Reflect.defineProperty(re, 'test', { value: fastTest });
941
+ }
942
+ return re;
943
+ }
944
+ makeRe() {
945
+ if (this.regexp || this.regexp === false)
946
+ return this.regexp;
947
+ // at this point, this.set is a 2d array of partial
948
+ // pattern strings, or "**".
949
+ //
950
+ // It's better to use .match(). This function shouldn't
951
+ // be used, really, but it's pretty convenient sometimes,
952
+ // when you just want to work with a regex.
953
+ const set = this.set;
954
+ if (!set.length) {
955
+ this.regexp = false;
956
+ return this.regexp;
957
+ }
958
+ const options = this.options;
959
+ const twoStar = options.noglobstar ? star
960
+ : options.dot ? twoStarDot
961
+ : twoStarNoDot;
962
+ const flags = new Set(options.nocase ? ['i'] : []);
963
+ // regexpify non-globstar patterns
964
+ // if ** is only item, then we just do one twoStar
965
+ // if ** is first, and there are more, prepend (\/|twoStar\/)? to next
966
+ // if ** is last, append (\/twoStar|) to previous
967
+ // if ** is in the middle, append (\/|\/twoStar\/) to previous
968
+ // then filter out GLOBSTAR symbols
969
+ let re = set
970
+ .map(pattern => {
971
+ const pp = pattern.map(p => {
972
+ if (p instanceof RegExp) {
973
+ for (const f of p.flags.split(''))
974
+ flags.add(f);
975
+ }
976
+ return (typeof p === 'string' ? regExpEscape(p)
977
+ : p === exports.GLOBSTAR ? exports.GLOBSTAR
978
+ : p._src);
979
+ });
980
+ pp.forEach((p, i) => {
981
+ const next = pp[i + 1];
982
+ const prev = pp[i - 1];
983
+ if (p !== exports.GLOBSTAR || prev === exports.GLOBSTAR) {
984
+ return;
985
+ }
986
+ if (prev === undefined) {
987
+ if (next !== undefined && next !== exports.GLOBSTAR) {
988
+ pp[i + 1] = '(?:\\/|' + twoStar + '\\/)?' + next;
989
+ }
990
+ else {
991
+ pp[i] = twoStar;
992
+ }
993
+ }
994
+ else if (next === undefined) {
995
+ pp[i - 1] = prev + '(?:\\/|\\/' + twoStar + ')?';
996
+ }
997
+ else if (next !== exports.GLOBSTAR) {
998
+ pp[i - 1] = prev + '(?:\\/|\\/' + twoStar + '\\/)' + next;
999
+ pp[i + 1] = exports.GLOBSTAR;
1000
+ }
1001
+ });
1002
+ const filtered = pp.filter(p => p !== exports.GLOBSTAR);
1003
+ // For partial matches, we need to make the pattern match
1004
+ // any prefix of the full path. We do this by generating
1005
+ // alternative patterns that match progressively longer prefixes.
1006
+ if (this.partial && filtered.length >= 1) {
1007
+ const prefixes = [];
1008
+ for (let i = 1; i <= filtered.length; i++) {
1009
+ prefixes.push(filtered.slice(0, i).join('/'));
1010
+ }
1011
+ return '(?:' + prefixes.join('|') + ')';
1012
+ }
1013
+ return filtered.join('/');
1014
+ })
1015
+ .join('|');
1016
+ // need to wrap in parens if we had more than one thing with |,
1017
+ // otherwise only the first will be anchored to ^ and the last to $
1018
+ const [open, close] = set.length > 1 ? ['(?:', ')'] : ['', ''];
1019
+ // must match entire pattern
1020
+ // ending in a * or ** will make it less strict.
1021
+ re = '^' + open + re + close + '$';
1022
+ // In partial mode, '/' should always match as it's a valid prefix for any pattern
1023
+ if (this.partial) {
1024
+ re = '^(?:\\/|' + open + re.slice(1, -1) + close + ')$';
1025
+ }
1026
+ // can match anything, as long as it's not this.
1027
+ if (this.negate)
1028
+ re = '^(?!' + re + ').+$';
1029
+ try {
1030
+ this.regexp = new RegExp(re, [...flags].join(''));
1031
+ /* c8 ignore start */
1032
+ }
1033
+ catch {
1034
+ // should be impossible
1035
+ this.regexp = false;
1036
+ }
1037
+ /* c8 ignore stop */
1038
+ return this.regexp;
1039
+ }
1040
+ slashSplit(p) {
1041
+ // if p starts with // on windows, we preserve that
1042
+ // so that UNC paths aren't broken. Otherwise, any number of
1043
+ // / characters are coalesced into one, unless
1044
+ // preserveMultipleSlashes is set to true.
1045
+ if (this.preserveMultipleSlashes) {
1046
+ return p.split('/');
1047
+ }
1048
+ else if (this.isWindows && /^\/\/[^/]+/.test(p)) {
1049
+ // add an extra '' for the one we lose
1050
+ return ['', ...p.split(/\/+/)];
1051
+ }
1052
+ else {
1053
+ return p.split(/\/+/);
1054
+ }
1055
+ }
1056
+ match(f, partial = this.partial) {
1057
+ this.debug('match', f, this.pattern);
1058
+ // short-circuit in the case of busted things.
1059
+ // comments, etc.
1060
+ if (this.comment) {
1061
+ return false;
1062
+ }
1063
+ if (this.empty) {
1064
+ return f === '';
1065
+ }
1066
+ if (f === '/' && partial) {
1067
+ return true;
1068
+ }
1069
+ const options = this.options;
1070
+ // windows: need to use /, not \
1071
+ if (this.isWindows) {
1072
+ f = f.split('\\').join('/');
1073
+ }
1074
+ // treat the test path as a set of pathparts.
1075
+ const ff = this.slashSplit(f);
1076
+ this.debug(this.pattern, 'split', ff);
1077
+ // just ONE of the pattern sets in this.set needs to match
1078
+ // in order for it to be valid. If negating, then just one
1079
+ // match means that we have failed.
1080
+ // Either way, return on the first hit.
1081
+ const set = this.set;
1082
+ this.debug(this.pattern, 'set', set);
1083
+ // Find the basename of the path by looking for the last non-empty segment
1084
+ let filename = ff[ff.length - 1];
1085
+ if (!filename) {
1086
+ for (let i = ff.length - 2; !filename && i >= 0; i--) {
1087
+ filename = ff[i];
1088
+ }
1089
+ }
1090
+ for (const pattern of set) {
1091
+ let file = ff;
1092
+ if (options.matchBase && pattern.length === 1) {
1093
+ file = [filename];
1094
+ }
1095
+ const hit = this.matchOne(file, pattern, partial);
1096
+ if (hit) {
1097
+ if (options.flipNegate) {
1098
+ return true;
1099
+ }
1100
+ return !this.negate;
1101
+ }
1102
+ }
1103
+ // didn't get any hits. this is success if it's a negative
1104
+ // pattern, failure otherwise.
1105
+ if (options.flipNegate) {
1106
+ return false;
1107
+ }
1108
+ return this.negate;
1109
+ }
1110
+ static defaults(def) {
1111
+ return exports.minimatch.defaults(def).Minimatch;
1112
+ }
1113
+ }
1114
+ exports.Minimatch = Minimatch;
1115
+ /* c8 ignore start */
1116
+ var ast_js_2 = require("./ast.js");
1117
+ Object.defineProperty(exports, "AST", { enumerable: true, get: function () { return ast_js_2.AST; } });
1118
+ var escape_js_2 = require("./escape.js");
1119
+ Object.defineProperty(exports, "escape", { enumerable: true, get: function () { return escape_js_2.escape; } });
1120
+ var unescape_js_2 = require("./unescape.js");
1121
+ Object.defineProperty(exports, "unescape", { enumerable: true, get: function () { return unescape_js_2.unescape; } });
1122
+ /* c8 ignore stop */
1123
+ exports.minimatch.AST = ast_js_1.AST;
1124
+ exports.minimatch.Minimatch = Minimatch;
1125
+ exports.minimatch.escape = escape_js_1.escape;
1126
+ exports.minimatch.unescape = unescape_js_1.unescape;
1127
+ //# sourceMappingURL=index.js.map