@scrabble-solver/scrabble-solver 2.8.11 → 2.9.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 (71) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/InjectManifest.js.nft.json +1 -0
  3. package/.next/build-manifest.json +6 -6
  4. package/.next/cache/.tsbuildinfo +1 -1
  5. package/.next/cache/eslint/.cache_8dgz12 +1 -1
  6. package/.next/cache/next-server.js.nft.json +1 -1
  7. package/.next/cache/webpack/client-production/0.pack +0 -0
  8. package/.next/cache/webpack/client-production/index.pack +0 -0
  9. package/.next/cache/webpack/edge-server-production/0.pack +0 -0
  10. package/.next/cache/webpack/edge-server-production/index.pack +0 -0
  11. package/.next/cache/webpack/server-production/0.pack +0 -0
  12. package/.next/cache/webpack/server-production/index.pack +0 -0
  13. package/.next/next-server.js.nft.json +1 -1
  14. package/.next/prerender-manifest.json +1 -1
  15. package/.next/routes-manifest.json +1 -1
  16. package/.next/server/InjectManifest.js.nft.json +1 -0
  17. package/.next/server/chunks/413.js +36 -13
  18. package/.next/server/chunks/452.js +894 -0
  19. package/.next/server/chunks/515.js +4 -1
  20. package/.next/server/chunks/911.js +0 -887
  21. package/.next/server/middleware-build-manifest.js +1 -1
  22. package/.next/server/pages/404.html +3 -3
  23. package/.next/server/pages/404.js.nft.json +1 -1
  24. package/.next/server/pages/500.html +2 -2
  25. package/.next/server/pages/_app.js.nft.json +1 -1
  26. package/.next/server/pages/_error.js.nft.json +1 -1
  27. package/.next/server/pages/api/dictionary/[locale]/[word].js +1 -1
  28. package/.next/server/pages/api/dictionary/[locale]/[word].js.nft.json +1 -1
  29. package/.next/server/pages/api/dictionary/[locale].js +200 -0
  30. package/.next/server/pages/api/dictionary/[locale].js.nft.json +1 -0
  31. package/.next/server/pages/api/solve.js +7 -1
  32. package/.next/server/pages/api/solve.js.nft.json +1 -1
  33. package/.next/server/pages/api/verify.js +1 -1
  34. package/.next/server/pages/api/verify.js.nft.json +1 -1
  35. package/.next/server/pages/index.html +7 -7
  36. package/.next/server/pages/index.js +74 -29
  37. package/.next/server/pages/index.js.nft.json +1 -1
  38. package/.next/server/pages/index.json +1 -1
  39. package/.next/server/pages-manifest.json +1 -0
  40. package/.next/static/{VJkrGviICslA_8zNVJ-g- → BiJ0RS1mh1CdONVQg_p20}/_buildManifest.js +1 -1
  41. package/.next/static/{VJkrGviICslA_8zNVJ-g- → BiJ0RS1mh1CdONVQg_p20}/_ssgManifest.js +0 -0
  42. package/.next/static/chunks/317-c5d262202c17d519.js +1 -0
  43. package/.next/static/chunks/pages/_app-1878e12521f2d115.js +1 -0
  44. package/.next/static/chunks/pages/index-14d33636a0746c22.js +1 -0
  45. package/.next/trace +52 -42
  46. package/next.config.js +11 -0
  47. package/package.json +17 -11
  48. package/src/components/SvgFontCss/SvgFontCss.tsx +2 -1
  49. package/src/pages/api/dictionary/[locale]/index.ts +53 -0
  50. package/src/pages/api/solve.ts +6 -0
  51. package/src/pages/index.tsx +8 -1
  52. package/src/sdk/fetch.ts +30 -0
  53. package/src/sdk/fetchJson.ts +10 -31
  54. package/src/sdk/getDictionary.ts +11 -0
  55. package/src/service-worker/dictionaries/constants.ts +3 -0
  56. package/src/service-worker/dictionaries/expirationManager.ts +9 -0
  57. package/src/service-worker/dictionaries/getDictionary.ts +22 -0
  58. package/src/service-worker/dictionaries/getDictionaryUrl.ts +7 -0
  59. package/src/service-worker/dictionaries/index.ts +2 -0
  60. package/src/service-worker/dictionaries/revalidateDictionary.ts +35 -0
  61. package/src/service-worker/getTrie.ts +26 -0
  62. package/src/service-worker/index.ts +22 -0
  63. package/src/service-worker/routeSolveRequests.ts +37 -0
  64. package/src/service-worker/routeVerifyRequests.ts +35 -0
  65. package/src/serviceWorkerManager.ts +26 -0
  66. package/src/state/sagas.ts +1 -0
  67. package/src/state/slices/settingsInitialState.ts +20 -1
  68. package/tsconfig.json +1 -0
  69. package/.next/static/chunks/317-8e8909dd2f587b64.js +0 -1
  70. package/.next/static/chunks/pages/_app-57c77cad0f197d93.js +0 -1
  71. package/.next/static/chunks/pages/index-d3360e075ca3c222.js +0 -1
@@ -132,6 +132,7 @@ __webpack_require__.r(__webpack_exports__);
132
132
 
133
133
  // EXPORTS
134
134
  __webpack_require__.d(__webpack_exports__, {
135
+ "config": () => (/* binding */ config),
135
136
  "default": () => (/* binding */ api_solve)
136
137
  });
137
138
 
@@ -544,6 +545,11 @@ const parseRequest = (request)=>{
544
545
  locale
545
546
  };
546
547
  };
548
+ const config = {
549
+ api: {
550
+ responseLimit: "25mb"
551
+ }
552
+ };
547
553
  /* harmony default export */ const api_solve = (solve);
548
554
 
549
555
 
@@ -931,7 +937,7 @@ exports["default"] = solve;
931
937
  var __webpack_require__ = require("../../webpack-api-runtime.js");
932
938
  __webpack_require__.C(exports);
933
939
  var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
934
- var __webpack_exports__ = __webpack_require__.X(0, [50,429,939,911,44], () => (__webpack_exec__(62316)));
940
+ var __webpack_exports__ = __webpack_require__.X(0, [50,429,939,452,911,44], () => (__webpack_exec__(62316)));
935
941
  module.exports = __webpack_exports__;
936
942
 
937
943
  })();
@@ -1 +1 @@
1
- {"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/429.js","../../chunks/939.js","../../chunks/911.js","../../chunks/44.js","../../../package.json"]}
1
+ {"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/429.js","../../chunks/939.js","../../chunks/452.js","../../chunks/911.js","../../chunks/44.js","../../../package.json"]}
@@ -211,7 +211,7 @@ const parseRequest = (request)=>{
211
211
  var __webpack_require__ = require("../../webpack-api-runtime.js");
212
212
  __webpack_require__.C(exports);
213
213
  var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
214
- var __webpack_exports__ = __webpack_require__.X(0, [50,429,939,911,44], () => (__webpack_exec__(21623)));
214
+ var __webpack_exports__ = __webpack_require__.X(0, [50,429,939,452,911,44], () => (__webpack_exec__(21623)));
215
215
  module.exports = __webpack_exports__;
216
216
 
217
217
  })();
@@ -1 +1 @@
1
- {"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/429.js","../../chunks/939.js","../../chunks/911.js","../../chunks/44.js","../../../package.json"]}
1
+ {"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/429.js","../../chunks/939.js","../../chunks/452.js","../../chunks/911.js","../../chunks/44.js","../../../package.json"]}
@@ -1,13 +1,13 @@
1
- <!DOCTYPE html><html lang="en"><head><title>Scrabble Solver 2 by Kamil Mielnik</title><meta charSet="utf-8"/><meta name="author" content="Kamil Mielnik"/><meta name="description" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="keywords" content="Scrabble,Solver,Open-source,Finder,Cheating,Literaki,Word,English,Français,Deutsch,Polski,Español,SOWPODS,TWL06,SJP,FISE-2017,FISE-2,CNRTL,Kamil Mielnik"/><meta name="robots" content="index, follow, notranslate, noimageindex"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta property="og:type" content="website"/><meta property="og:url" content="https://scrabble-solver.org"/><meta property="og:image" content="https://scrabble-solver.org/og.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="next-head-count" content="15"/><link crossorigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect"/><link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152.png"/><link rel="icon" type="image/png" href="icons/favicon-196x196.png" sizes="196x196"/><link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96"/><link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32"/><link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16"/><link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128"/><meta name="application-name" content="Scrabble Solver"/><meta name="msapplication-TileColor" content="#EFE3AE"/><meta name="msapplication-TileImage" content="icons/mstile-144x144.png"/><meta name="msapplication-square70x70logo" content="icons/mstile-70x70.png"/><meta name="msapplication-square150x150logo" content="icons/mstile-150x150.png"/><meta name="msapplication-wide310x150logo" content="icons/mstile-310x150.png"/><meta name="msapplication-square310x310logo" content="icons/mstile-310x310.png"/><link rel="preload" href="/_next/static/css/ad2a08918868cad8.css" as="style"/><link rel="stylesheet" href="/_next/static/css/ad2a08918868cad8.css" data-n-g=""/><link rel="preload" href="/_next/static/css/9ac903004135f4b1.css" as="style"/><link rel="stylesheet" href="/_next/static/css/9ac903004135f4b1.css" data-n-p=""/><link rel="preload" href="/_next/static/css/751e8a14776d05d8.css" as="style"/><link rel="stylesheet" href="/_next/static/css/751e8a14776d05d8.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-5752944655d749a0.js" defer=""></script><script src="/_next/static/chunks/framework-4556c45dd113b893.js" defer=""></script><script src="/_next/static/chunks/main-a75cf611e061d8f8.js" defer=""></script><script src="/_next/static/chunks/pages/_app-57c77cad0f197d93.js" defer=""></script><script src="/_next/static/chunks/546-447e243fc9de2c59.js" defer=""></script><script src="/_next/static/chunks/317-8e8909dd2f587b64.js" defer=""></script><script src="/_next/static/chunks/pages/index-d3360e075ca3c222.js" defer=""></script><script src="/_next/static/VJkrGviICslA_8zNVJ-g-/_buildManifest.js" defer=""></script><script src="/_next/static/VJkrGviICslA_8zNVJ-g-/_ssgManifest.js" defer=""></script></head><body><div id="__next"><p style="font-size:0">Scrabble Solver 2 is a free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish. Source code is available on GitHub - contributions are welcome!</p><div class="index_index__5hyIO"><div class="index_nav__FjsLl"><div class="index_navLogo__dBrd4"><a class="index_logoContainer___rrXU" href="/" title="v2.8.10"><svg class="index_logo__IeyQD" viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg"><style type="text/css">@import url(&#x27;https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&amp;family=Open+Sans:wght@400;700&amp;family=Roboto+Mono&amp;display=swap&#x27;);
1
+ <!DOCTYPE html><html lang="en"><head><title>Scrabble Solver 2 by Kamil Mielnik</title><meta charSet="utf-8"/><meta name="author" content="Kamil Mielnik"/><meta name="description" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="keywords" content="Scrabble,Solver,Open-source,Finder,Cheating,Literaki,Word,English,Français,Deutsch,Polski,Español,SOWPODS,TWL06,SJP,FISE-2017,FISE-2,CNRTL,Kamil Mielnik"/><meta name="robots" content="index, follow, notranslate, noimageindex"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta property="og:type" content="website"/><meta property="og:url" content="https://scrabble-solver.org"/><meta property="og:image" content="https://scrabble-solver.org/og.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="next-head-count" content="15"/><link crossorigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect"/><link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152.png"/><link rel="icon" type="image/png" href="icons/favicon-196x196.png" sizes="196x196"/><link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96"/><link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32"/><link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16"/><link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128"/><meta name="application-name" content="Scrabble Solver"/><meta name="msapplication-TileColor" content="#EFE3AE"/><meta name="msapplication-TileImage" content="icons/mstile-144x144.png"/><meta name="msapplication-square70x70logo" content="icons/mstile-70x70.png"/><meta name="msapplication-square150x150logo" content="icons/mstile-150x150.png"/><meta name="msapplication-wide310x150logo" content="icons/mstile-310x150.png"/><meta name="msapplication-square310x310logo" content="icons/mstile-310x310.png"/><link rel="preload" href="/_next/static/css/ad2a08918868cad8.css" as="style"/><link rel="stylesheet" href="/_next/static/css/ad2a08918868cad8.css" data-n-g=""/><link rel="preload" href="/_next/static/css/9ac903004135f4b1.css" as="style"/><link rel="stylesheet" href="/_next/static/css/9ac903004135f4b1.css" data-n-p=""/><link rel="preload" href="/_next/static/css/751e8a14776d05d8.css" as="style"/><link rel="stylesheet" href="/_next/static/css/751e8a14776d05d8.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-5752944655d749a0.js" defer=""></script><script src="/_next/static/chunks/framework-4556c45dd113b893.js" defer=""></script><script src="/_next/static/chunks/main-a75cf611e061d8f8.js" defer=""></script><script src="/_next/static/chunks/pages/_app-1878e12521f2d115.js" defer=""></script><script src="/_next/static/chunks/546-447e243fc9de2c59.js" defer=""></script><script src="/_next/static/chunks/317-c5d262202c17d519.js" defer=""></script><script src="/_next/static/chunks/pages/index-14d33636a0746c22.js" defer=""></script><script src="/_next/static/BiJ0RS1mh1CdONVQg_p20/_buildManifest.js" defer=""></script><script src="/_next/static/BiJ0RS1mh1CdONVQg_p20/_ssgManifest.js" defer=""></script></head><body><div id="__next"><p style="font-size:0">Scrabble Solver 2 is a free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish. Source code is available on GitHub - contributions are welcome!</p><div class="index_index__5hyIO"><div class="index_nav__FjsLl"><div class="index_navLogo__dBrd4"><a class="index_logoContainer___rrXU" href="/" title="v2.8.11"><svg class="index_logo__IeyQD" viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg"><style type="text/css">@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;700&family=Roboto+Mono&display=swap');
2
2
 
3
3
  text {
4
- font-family: &#x27;Open Sans&#x27;;
5
- }</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></svg></a></div><div class="NavButtons_navButtons__2jdaO"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8.086 2.207a2 2 0 0 1 2.828 0l3.879 3.879a2 2 0 0 1 0 2.828l-5.5 5.5A2 2 0 0 1 7.879 15H5.12a2 2 0 0 1-1.414-.586l-2.5-2.5a2 2 0 0 1 0-2.828l6.879-6.879zm.66 11.34L3.453 8.254 1.914 9.793a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 .707.293H7.88a1 1 0 0 0 .707-.293l.16-.16z" fill="currentColor"></path></svg></span></button><div class="NavButtons_separator__4FwOF"></div><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M16 9c4 2 5 9 5 9s1 4-5 4H8c-6 0-5-4-5-4s1-7 5-9m6-5-2-2-2 2-4-2 2 5h8l2-5-4 2Z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8.5 2.687c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492V2.687zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783z" fill="currentColor"></path></svg></span></button><div class="NavButtons_separator__4FwOF"></div><a class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" href="https://github.com/kamilmielnik/scrabble-solver" rel="noopener noreferrer" target="_blank"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" fill="currentColor"></path></svg></span></a><div class="NavButtons_separator__4FwOF"></div><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M0 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6zm13 .25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM2.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 3 8.75v-.5A.25.25 0 0 0 2.75 8h-.5zM4 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 5 8.75v-.5A.25.25 0 0 0 4.75 8h-.5a.25.25 0 0 0-.25.25zM6.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 7 8.75v-.5A.25.25 0 0 0 6.75 8h-.5zM8 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 9 8.75v-.5A.25.25 0 0 0 8.75 8h-.5a.25.25 0 0 0-.25.25zM13.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm0 2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm-3-2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-1.5zm.75 2.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM11.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zM9 6.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5A.25.25 0 0 0 9.75 6h-.5a.25.25 0 0 0-.25.25zM7.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 8 6.75v-.5A.25.25 0 0 0 7.75 6h-.5zM5 6.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 6 6.75v-.5A.25.25 0 0 0 5.75 6h-.5a.25.25 0 0 0-.25.25zM2.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5A.25.25 0 0 0 4 6.75v-.5A.25.25 0 0 0 3.75 6h-1.5zM2 10.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM4.25 10a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-5.5z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z" fill="currentColor"></path></svg></span></button></div></div><div class="index_contentWrapper__o0SKW"><div class="index_content__8u6Oo"><form class="index_boardContainer__O1DyN"><input class="index_submitInput__jPA3B" tabindex="-1" type="submit"/></form><div class="index_sidebar__i_2dV" style="height:1px"><div class="Well_well__WTn5e index_resultsContainer__yBEuy"></div><div class="Well_well__WTn5e"><div class="index_dictionary__Umhfc" style="height:220px"><div class="Dictionary_dictionary__0CM4j index_dictionaryOutput__vSlhp"></div><form class="DictionaryInput_dictionaryInput__fsGZD index_dictionaryInput__iCFs7"><input class="DictionaryInput_input__0ed6F" placeholder="Search dictionary..." required="" type="text" value=""/></form></div></div></div></div></div><form class="index_rackContainer__Az99V"><div class="Rack_rack__uEE8X index_rack__XHWIp"><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" autofocus="" class="Tile_character__2XzcR" placeholder="L" spellcheck="false" style="font-size:48px" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="e" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="t" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="t" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="e" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="r" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="s" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div></div><input class="index_submitInput__jPA3B" tabindex="-1" type="submit"/></form></div><div class="Screen_screen__VnMC9 Splash_splash__DJBx_"><div class="Screen_content__t2VCW"><div class="Splash_logos__pFer4"><svg class="Splash_logoGrayscale__qe_QT" viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg"><style type="text/css">@import url(&#x27;https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&amp;family=Open+Sans:wght@400;700&amp;family=Roboto+Mono&amp;display=swap&#x27;);
4
+ font-family: 'Open Sans';
5
+ }</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></svg></a></div><div class="NavButtons_navButtons__2jdaO"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8.086 2.207a2 2 0 0 1 2.828 0l3.879 3.879a2 2 0 0 1 0 2.828l-5.5 5.5A2 2 0 0 1 7.879 15H5.12a2 2 0 0 1-1.414-.586l-2.5-2.5a2 2 0 0 1 0-2.828l6.879-6.879zm.66 11.34L3.453 8.254 1.914 9.793a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 .707.293H7.88a1 1 0 0 0 .707-.293l.16-.16z" fill="currentColor"></path></svg></span></button><div class="NavButtons_separator__4FwOF"></div><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M16 9c4 2 5 9 5 9s1 4-5 4H8c-6 0-5-4-5-4s1-7 5-9m6-5-2-2-2 2-4-2 2 5h8l2-5-4 2Z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8.5 2.687c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492V2.687zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783z" fill="currentColor"></path></svg></span></button><div class="NavButtons_separator__4FwOF"></div><a class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" href="https://github.com/kamilmielnik/scrabble-solver" rel="noopener noreferrer" target="_blank"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" fill="currentColor"></path></svg></span></a><div class="NavButtons_separator__4FwOF"></div><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M0 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6zm13 .25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM2.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 3 8.75v-.5A.25.25 0 0 0 2.75 8h-.5zM4 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 5 8.75v-.5A.25.25 0 0 0 4.75 8h-.5a.25.25 0 0 0-.25.25zM6.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 7 8.75v-.5A.25.25 0 0 0 6.75 8h-.5zM8 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 9 8.75v-.5A.25.25 0 0 0 8.75 8h-.5a.25.25 0 0 0-.25.25zM13.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm0 2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm-3-2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-1.5zm.75 2.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM11.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zM9 6.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5A.25.25 0 0 0 9.75 6h-.5a.25.25 0 0 0-.25.25zM7.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 8 6.75v-.5A.25.25 0 0 0 7.75 6h-.5zM5 6.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 6 6.75v-.5A.25.25 0 0 0 5.75 6h-.5a.25.25 0 0 0-.25.25zM2.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5A.25.25 0 0 0 4 6.75v-.5A.25.25 0 0 0 3.75 6h-1.5zM2 10.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM4.25 10a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-5.5z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z" fill="currentColor"></path></svg></span></button></div></div><div class="index_contentWrapper__o0SKW"><div class="index_content__8u6Oo"><form class="index_boardContainer__O1DyN"><input class="index_submitInput__jPA3B" tabindex="-1" type="submit"/></form><div class="index_sidebar__i_2dV" style="height:1px"><div class="Well_well__WTn5e index_resultsContainer__yBEuy"></div><div class="Well_well__WTn5e"><div class="index_dictionary__Umhfc" style="height:220px"><div class="Dictionary_dictionary__0CM4j index_dictionaryOutput__vSlhp"></div><form class="DictionaryInput_dictionaryInput__fsGZD index_dictionaryInput__iCFs7"><input class="DictionaryInput_input__0ed6F" placeholder="Search dictionary..." required="" type="text" value=""/></form></div></div></div></div></div><form class="index_rackContainer__Az99V"><div class="Rack_rack__uEE8X index_rack__XHWIp"><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" autofocus="" class="Tile_character__2XzcR" placeholder="L" spellcheck="false" style="font-size:48px" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="e" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="t" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="t" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="e" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="r" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="s" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div></div><input class="index_submitInput__jPA3B" tabindex="-1" type="submit"/></form></div><div class="Screen_screen__VnMC9 Splash_splash__DJBx_"><div class="Screen_content__t2VCW"><div class="Splash_logos__pFer4"><svg class="Splash_logoGrayscale__qe_QT" viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg"><style type="text/css">@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;700&family=Roboto+Mono&display=swap');
6
6
 
7
7
  text {
8
- font-family: &#x27;Open Sans&#x27;;
9
- }</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></svg><svg class="Splash_logoColor__InOR_" viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg"><style type="text/css">@import url(&#x27;https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&amp;family=Open+Sans:wght@400;700&amp;family=Roboto+Mono&amp;display=swap&#x27;);
8
+ font-family: 'Open Sans';
9
+ }</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></svg><svg class="Splash_logoColor__InOR_" viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg"><style type="text/css">@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;700&family=Roboto+Mono&display=swap');
10
10
 
11
11
  text {
12
- font-family: &#x27;Open Sans&#x27;;
13
- }</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></svg></div><h1 class="Splash_author__0gDgp">by Kamil Mielnik</h1></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"version":"v2.8.10"},"__N_SSG":true},"page":"/","query":{},"buildId":"VJkrGviICslA_8zNVJ-g-","isFallback":false,"gsp":true,"scriptLoader":[]}</script></body></html>
12
+ font-family: 'Open Sans';
13
+ }</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></svg></div><h1 class="Splash_author__0gDgp">by Kamil Mielnik</h1></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"version":"v2.8.11"},"__N_SSG":true},"page":"/","query":{},"buildId":"BiJ0RS1mh1CdONVQg_p20","isFallback":false,"gsp":true,"scriptLoader":[]}</script></body></html>
@@ -61,11 +61,13 @@ __webpack_require__.r(__webpack_exports__);
61
61
  /* harmony import */ var hooks__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(26183);
62
62
  /* harmony import */ var lib__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(75558);
63
63
  /* harmony import */ var parameters__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(90485);
64
- /* harmony import */ var state__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(51413);
65
- /* harmony import */ var _index_module_scss__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(46173);
66
- /* harmony import */ var _index_module_scss__WEBPACK_IMPORTED_MODULE_13___default = /*#__PURE__*/__webpack_require__.n(_index_module_scss__WEBPACK_IMPORTED_MODULE_13__);
67
- var __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([components__WEBPACK_IMPORTED_MODULE_8__, hooks__WEBPACK_IMPORTED_MODULE_9__, state__WEBPACK_IMPORTED_MODULE_12__]);
68
- ([components__WEBPACK_IMPORTED_MODULE_8__, hooks__WEBPACK_IMPORTED_MODULE_9__, state__WEBPACK_IMPORTED_MODULE_12__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);
64
+ /* harmony import */ var serviceWorkerManager__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(86554);
65
+ /* harmony import */ var state__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(51413);
66
+ /* harmony import */ var _index_module_scss__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(46173);
67
+ /* harmony import */ var _index_module_scss__WEBPACK_IMPORTED_MODULE_14___default = /*#__PURE__*/__webpack_require__.n(_index_module_scss__WEBPACK_IMPORTED_MODULE_14__);
68
+ var __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([components__WEBPACK_IMPORTED_MODULE_8__, hooks__WEBPACK_IMPORTED_MODULE_9__, state__WEBPACK_IMPORTED_MODULE_13__]);
69
+ ([components__WEBPACK_IMPORTED_MODULE_8__, hooks__WEBPACK_IMPORTED_MODULE_9__, state__WEBPACK_IMPORTED_MODULE_13__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);
70
+
69
71
 
70
72
 
71
73
 
@@ -91,45 +93,50 @@ const Index = ({ version })=>{
91
93
  const [boardRef, { height: boardHeight }] = (0,react_use__WEBPACK_IMPORTED_MODULE_7__.useMeasure)();
92
94
  const [contentRef, { height: contentHeight , width: contentWidth }] = (0,react_use__WEBPACK_IMPORTED_MODULE_7__.useMeasure)();
93
95
  const [resultsContainerRef, { height: resultsContainerHeight , width: resultsContainerWidth }] = (0,react_use__WEBPACK_IMPORTED_MODULE_7__.useMeasure)();
94
- const config = (0,state__WEBPACK_IMPORTED_MODULE_12__/* .useTypedSelector */ .ix)(state__WEBPACK_IMPORTED_MODULE_12__/* .selectConfig */ .$o);
96
+ const config = (0,state__WEBPACK_IMPORTED_MODULE_13__/* .useTypedSelector */ .ix)(state__WEBPACK_IMPORTED_MODULE_13__/* .selectConfig */ .$o);
95
97
  const cellSize = (0,lib__WEBPACK_IMPORTED_MODULE_10__/* .getCellSize */ .Dz)(config, contentWidth - resultsContainerWidth, contentHeight);
96
98
  const isInitialized = contentWidth > 0 && boardHeight > 0 && resultsContainerWidth > 0;
97
99
  const resultsHeight = boardHeight - parameters__WEBPACK_IMPORTED_MODULE_11__/* .DICTIONARY_HEIGHT */ .n6 - (isTablet ? parameters__WEBPACK_IMPORTED_MODULE_11__/* .COMPONENTS_SPACING_MOBILE */ .Sg : parameters__WEBPACK_IMPORTED_MODULE_11__/* .COMPONENTS_SPACING */ .tr);
98
100
  const handleClear = ()=>{
99
- dispatch((0,state__WEBPACK_IMPORTED_MODULE_12__/* .reset */ .mc)());
101
+ dispatch((0,state__WEBPACK_IMPORTED_MODULE_13__/* .reset */ .mc)());
100
102
  };
101
103
  const handleSubmit = (event)=>{
102
104
  event.preventDefault();
103
- dispatch(state__WEBPACK_IMPORTED_MODULE_12__/* .solveSlice.actions.submit */ .TP.actions.submit());
105
+ dispatch(state__WEBPACK_IMPORTED_MODULE_13__/* .solveSlice.actions.submit */ .TP.actions.submit());
104
106
  };
105
107
  const handleSplashAnimationEnd = (event)=>{
106
- if (event.target === event.currentTarget && !state__WEBPACK_IMPORTED_MODULE_12__/* .localStorage.getHasVisited */ .Xb.getHasVisited()) {
108
+ if (event.target === event.currentTarget && !state__WEBPACK_IMPORTED_MODULE_13__/* .localStorage.getHasVisited */ .Xb.getHasVisited()) {
107
109
  setShowSettings(true);
108
- state__WEBPACK_IMPORTED_MODULE_12__/* .localStorage.setHasVisited */ .Xb.setHasVisited(true);
110
+ state__WEBPACK_IMPORTED_MODULE_13__/* .localStorage.setHasVisited */ .Xb.setHasVisited(true);
109
111
  }
110
112
  };
111
113
  (0,hooks__WEBPACK_IMPORTED_MODULE_9__/* .useLocalStorage */ ._)();
112
114
  (0,react_use__WEBPACK_IMPORTED_MODULE_7__.useEffectOnce)(()=>{
113
- dispatch((0,state__WEBPACK_IMPORTED_MODULE_12__/* .initialize */ .j2)());
115
+ dispatch((0,state__WEBPACK_IMPORTED_MODULE_13__/* .initialize */ .j2)());
114
116
  });
117
+ (0,react__WEBPACK_IMPORTED_MODULE_4__.useEffect)(()=>{
118
+ if (true) {
119
+ (0,serviceWorkerManager__WEBPACK_IMPORTED_MODULE_12__/* .registerServiceWorker */ .$)();
120
+ }
121
+ }, []);
115
122
  return /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.Fragment, {
116
123
  children: [
117
124
  /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
118
- className: classnames__WEBPACK_IMPORTED_MODULE_1___default()((_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().index), {
119
- [(_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().initialized)]: isInitialized
125
+ className: classnames__WEBPACK_IMPORTED_MODULE_1___default()((_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().index), {
126
+ [(_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().initialized)]: isInitialized
120
127
  }),
121
128
  children: [
122
129
  /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
123
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().nav),
130
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().nav),
124
131
  children: [
125
132
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx("div", {
126
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().navLogo),
133
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().navLogo),
127
134
  children: /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx("a", {
128
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().logoContainer),
135
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().logoContainer),
129
136
  href: "/",
130
137
  title: version,
131
138
  children: /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Logo */ .TR, {
132
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().logo)
139
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().logo)
133
140
  })
134
141
  })
135
142
  }),
@@ -143,13 +150,13 @@ const Index = ({ version })=>{
143
150
  ]
144
151
  }),
145
152
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx("div", {
146
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().contentWrapper),
153
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().contentWrapper),
147
154
  children: /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
148
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().content),
155
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().content),
149
156
  ref: contentRef,
150
157
  children: [
151
158
  /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("form", {
152
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().boardContainer),
159
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().boardContainer),
153
160
  onSubmit: handleSubmit,
154
161
  children: [
155
162
  contentWidth > 0 && /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Board */ .$l, {
@@ -157,20 +164,20 @@ const Index = ({ version })=>{
157
164
  innerRef: boardRef
158
165
  }),
159
166
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx("input", {
160
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().submitInput),
167
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().submitInput),
161
168
  tabIndex: -1,
162
169
  type: "submit"
163
170
  })
164
171
  ]
165
172
  }),
166
173
  /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
167
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().sidebar),
174
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().sidebar),
168
175
  style: {
169
176
  height: boardHeight + 1
170
177
  },
171
178
  children: [
172
179
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Well */ .tW, {
173
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().resultsContainer),
180
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().resultsContainer),
174
181
  ref: resultsContainerRef,
175
182
  children: resultsContainerWidth > 0 && resultsContainerHeight > 0 && /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Results */ .u9, {
176
183
  height: resultsHeight,
@@ -179,16 +186,16 @@ const Index = ({ version })=>{
179
186
  }),
180
187
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Well */ .tW, {
181
188
  children: /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
182
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().dictionary),
189
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().dictionary),
183
190
  style: {
184
191
  height: parameters__WEBPACK_IMPORTED_MODULE_11__/* .DICTIONARY_HEIGHT */ .n6
185
192
  },
186
193
  children: [
187
194
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Dictionary */ .Xy, {
188
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().dictionaryOutput)
195
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().dictionaryOutput)
189
196
  }),
190
197
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .DictionaryInput */ .Z$, {
191
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().dictionaryInput)
198
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().dictionaryInput)
192
199
  })
193
200
  ]
194
201
  })
@@ -199,14 +206,14 @@ const Index = ({ version })=>{
199
206
  })
200
207
  }),
201
208
  /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("form", {
202
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().rackContainer),
209
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().rackContainer),
203
210
  onSubmit: handleSubmit,
204
211
  children: [
205
212
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Rack */ .F4, {
206
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().rack)
213
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().rack)
207
214
  }),
208
215
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx("input", {
209
- className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_13___default().submitInput),
216
+ className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().submitInput),
210
217
  tabIndex: -1,
211
218
  type: "submit"
212
219
  })
@@ -256,6 +263,44 @@ const readVersion = async ()=>{
256
263
  __webpack_async_result__();
257
264
  } catch(e) { __webpack_async_result__(e); } });
258
265
 
266
+ /***/ }),
267
+
268
+ /***/ 86554:
269
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
270
+
271
+ "use strict";
272
+
273
+ // EXPORTS
274
+ __webpack_require__.d(__webpack_exports__, {
275
+ "$": () => (/* binding */ registerServiceWorker)
276
+ });
277
+
278
+ // UNUSED EXPORTS: getServiceWorker
279
+
280
+ ;// CONCATENATED MODULE: external "workbox-window"
281
+ const external_workbox_window_namespaceObject = require("workbox-window");
282
+ ;// CONCATENATED MODULE: ./src/serviceWorkerManager.ts
283
+
284
+ let serviceWorker = null;
285
+ const registerServiceWorker = ()=>{
286
+ if (!globalThis.navigator || !("serviceWorker" in globalThis.navigator)) {
287
+ return;
288
+ }
289
+ serviceWorker = new external_workbox_window_namespaceObject.Workbox("/service-worker.js");
290
+ serviceWorker.register({
291
+ immediate: true
292
+ });
293
+ };
294
+ const getServiceWorker = ()=>{
295
+ if (false) {}
296
+ if (serviceWorker) {
297
+ return serviceWorker;
298
+ }
299
+ registerServiceWorker();
300
+ return serviceWorker;
301
+ };
302
+
303
+
259
304
  /***/ }),
260
305
 
261
306
  /***/ 75184: