@scrabble-solver/scrabble-solver 2.10.1 → 2.10.3

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 (112) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +26 -26
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/eslint/.cache_8dgz12 +1 -1
  5. package/.next/cache/next-server.js.nft.json +1 -1
  6. package/.next/cache/webpack/client-development/7.pack_ +0 -0
  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/images-manifest.json +1 -1
  14. package/.next/next-server.js.nft.json +1 -1
  15. package/.next/prerender-manifest.json +1 -1
  16. package/.next/required-server-files.json +1 -1
  17. package/.next/routes-manifest.json +1 -1
  18. package/.next/server/chunks/131.js +1399 -117
  19. package/.next/server/chunks/{515.js → 176.js} +771 -679
  20. package/.next/server/chunks/210.js +122 -0
  21. package/.next/server/chunks/{939.js → 290.js} +3 -3
  22. package/.next/server/chunks/44.js +33 -33
  23. package/.next/server/chunks/50.js +5 -9
  24. package/.next/server/chunks/{413.js → 579.js} +136 -87
  25. package/.next/server/chunks/664.js +537 -350
  26. package/.next/server/chunks/859.js +56 -23
  27. package/.next/server/chunks/865.js +1 -1
  28. package/.next/server/middleware-build-manifest.js +1 -1
  29. package/.next/server/pages/404.html +2 -2
  30. package/.next/server/pages/404.js.nft.json +1 -1
  31. package/.next/server/pages/500.html +2 -2
  32. package/.next/server/pages/_app.js +23 -5
  33. package/.next/server/pages/_app.js.nft.json +1 -1
  34. package/.next/server/pages/_document.js +2 -2
  35. package/.next/server/pages/_error.js +206 -25
  36. package/.next/server/pages/_error.js.nft.json +1 -1
  37. package/.next/server/pages/api/dictionary/[locale]/[word].js +12 -11
  38. package/.next/server/pages/api/dictionary/[locale]/[word].js.nft.json +1 -1
  39. package/.next/server/pages/api/dictionary/[locale].js +10 -10
  40. package/.next/server/pages/api/dictionary/[locale].js.nft.json +1 -1
  41. package/.next/server/pages/api/solve.js +14 -13
  42. package/.next/server/pages/api/solve.js.nft.json +1 -1
  43. package/.next/server/pages/api/verify.js +10 -10
  44. package/.next/server/pages/api/verify.js.nft.json +1 -1
  45. package/.next/server/pages/api/visit.js +3 -3
  46. package/.next/server/pages/api/visit.js.nft.json +1 -1
  47. package/.next/server/pages/index.html +2 -2
  48. package/.next/server/pages/index.js +44 -128
  49. package/.next/server/pages/index.js.nft.json +1 -1
  50. package/.next/server/pages/index.json +1 -1
  51. package/.next/server/pages-manifest.json +4 -4
  52. package/.next/static/FJkPF91uL-OCAJKTTpVSP/_buildManifest.js +1 -0
  53. package/.next/static/{hf94cues-LcXZRCpAzQ6w → FJkPF91uL-OCAJKTTpVSP}/_ssgManifest.js +0 -0
  54. package/.next/static/chunks/361-d16f336a9752a55a.js +1 -0
  55. package/.next/static/chunks/724-eb48df4d1ba3df8b.js +5 -0
  56. package/.next/static/chunks/framework-2c79e2a64abdb08b.js +33 -0
  57. package/.next/static/chunks/main-f11614d8aa7ee555.js +1 -0
  58. package/.next/static/chunks/pages/404-24f9617eeb8d6dc1.js +1 -0
  59. package/.next/static/chunks/pages/_app-959e495f0f221247.js +24 -0
  60. package/.next/static/chunks/pages/_error-8353112a01355ec2.js +1 -0
  61. package/.next/static/chunks/pages/index-1e30dafa41bddb80.js +1 -0
  62. package/.next/static/chunks/webpack-59c5c889f52620d6.js +1 -0
  63. package/.next/static/css/aafd07997120f1e4.css +1 -0
  64. package/.next/static/css/cb5b206454513f3c.css +1 -0
  65. package/.next/static/css/eb9d57f7103525ab.css +1 -0
  66. package/.next/trace +52 -52
  67. package/package.json +21 -21
  68. package/public/og.png +0 -0
  69. package/src/components/Board/Board.module.scss +1 -2
  70. package/src/components/Board/BoardPure.tsx +2 -0
  71. package/src/components/Board/components/Cell/Cell.module.scss +77 -54
  72. package/src/components/Board/components/Cell/Cell.tsx +9 -0
  73. package/src/components/Board/components/Cell/CellPure.tsx +11 -2
  74. package/src/components/NavButtons/NavButtons.tsx +11 -1
  75. package/src/components/Rack/RackTile.tsx +10 -1
  76. package/src/components/RemainingTiles/Character.module.scss +0 -1
  77. package/src/components/RemainingTiles/Character.tsx +1 -0
  78. package/src/components/Solver/Solver.module.scss +85 -0
  79. package/src/components/Solver/Solver.tsx +75 -0
  80. package/src/components/Solver/index.ts +1 -0
  81. package/src/components/Tile/Tile.module.scss +51 -7
  82. package/src/components/Tile/Tile.tsx +3 -0
  83. package/src/components/Tile/TilePure.tsx +8 -1
  84. package/src/components/index.ts +1 -0
  85. package/src/hooks/index.ts +1 -0
  86. package/src/hooks/useIsTouchDevice.ts +7 -0
  87. package/src/icons/ExclamationSquareFill.svg +4 -0
  88. package/src/icons/index.ts +1 -0
  89. package/src/pages/api/dictionary/[locale]/[word].ts +2 -1
  90. package/src/pages/index.module.scss +1 -75
  91. package/src/pages/index.tsx +11 -73
  92. package/src/parameters/index.ts +2 -0
  93. package/src/service-worker/average.ts +9 -0
  94. package/src/service-worker/routeSolveRequests.ts +46 -7
  95. package/src/state/selectors.ts +20 -0
  96. package/src/state/slices/boardInitialState.ts +27 -0
  97. package/src/styles/mixins.scss +6 -1
  98. package/src/styles/variables.scss +6 -3
  99. package/.next/InjectManifest.js.nft.json +0 -1
  100. package/.next/static/chunks/368-8b386c3106556f62.js +0 -1
  101. package/.next/static/chunks/546-447e243fc9de2c59.js +0 -1
  102. package/.next/static/chunks/framework-4556c45dd113b893.js +0 -1
  103. package/.next/static/chunks/main-a75cf611e061d8f8.js +0 -1
  104. package/.next/static/chunks/pages/404-932294135c3206dd.js +0 -1
  105. package/.next/static/chunks/pages/_app-8f0df20f771045ed.js +0 -1
  106. package/.next/static/chunks/pages/_error-a4ba2246ff8fb532.js +0 -1
  107. package/.next/static/chunks/pages/index-8af7a9d7a2cd98a7.js +0 -1
  108. package/.next/static/chunks/webpack-5752944655d749a0.js +0 -1
  109. package/.next/static/css/6b1833fd19d3a74a.css +0 -1
  110. package/.next/static/css/a6154e4ca046ca13.css +0 -1
  111. package/.next/static/css/bad53af6f8616677.css +0 -1
  112. package/.next/static/hf94cues-LcXZRCpAzQ6w/_buildManifest.js +0 -1
@@ -12,13 +12,6 @@ module.exports = require("buffer");
12
12
 
13
13
  /***/ }),
14
14
 
15
- /***/ 96974:
16
- /***/ ((module) => {
17
-
18
- module.exports = require("debug");
19
-
20
- /***/ }),
21
-
22
15
  /***/ 39491:
23
16
  /***/ ((module) => {
24
17
 
@@ -96,6 +89,13 @@ module.exports = require("string_decoder");
96
89
 
97
90
  /***/ }),
98
91
 
92
+ /***/ 76224:
93
+ /***/ ((module) => {
94
+
95
+ module.exports = require("tty");
96
+
97
+ /***/ }),
98
+
99
99
  /***/ 57310:
100
100
  /***/ ((module) => {
101
101
 
@@ -117,7 +117,7 @@ module.exports = require("zlib");
117
117
 
118
118
  /***/ }),
119
119
 
120
- /***/ 77859:
120
+ /***/ 85785:
121
121
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
122
122
 
123
123
  // ESM COMPAT FLAG
@@ -143,7 +143,7 @@ var solver_build = __webpack_require__(40368);
143
143
  // EXTERNAL MODULE: ../types/build/index.js
144
144
  var types_build = __webpack_require__(46452);
145
145
  // EXTERNAL MODULE: ./src/api/index.ts + 4 modules
146
- var api = __webpack_require__(81025);
146
+ var api = __webpack_require__(81087);
147
147
  ;// CONCATENATED MODULE: ./src/lib/canUseDom.ts
148
148
  const canUseDom = Boolean( false && 0);
149
149
  /* harmony default export */ const lib_canUseDom = ((/* unused pure expression or super */ null && (canUseDom)));
@@ -190,6 +190,7 @@ const extractCharacters = (config, value)=>{
190
190
 
191
191
  ;// CONCATENATED MODULE: ./src/parameters/index.ts
192
192
  const GITHUB_PROJECT_URL = "https://github.com/kamilmielnik/scrabble-solver";
193
+ const INITIALIZATION_DURATION = 100;
193
194
  const TRANSITION_DURATION = 100;
194
195
  const TRANSITION_DURATION_LONG = 250;
195
196
  const COLOR_BLUE = "#c7d8f9";
@@ -262,7 +263,7 @@ const getRemainingTiles = (config, board, characters, locale)=>{
262
263
  };
263
264
  const letters = [
264
265
  ...letterCells.map((cell)=>cell.tile.character),
265
- ...characters.filter((letter)=>letter !== BLANK),
266
+ ...characters.filter((letter)=>letter !== BLANK)
266
267
  ];
267
268
  const unknownLetters = letters.filter((letter)=>typeof remainingTiles[letter] === "undefined");
268
269
  for (const letter of unknownLetters){
@@ -273,8 +274,8 @@ const getRemainingTiles = (config, board, characters, locale)=>{
273
274
  usedCount: 0
274
275
  };
275
276
  }
276
- for (const letter1 of letters){
277
- ++remainingTiles[letter1].usedCount;
277
+ for (const letter of letters){
278
+ ++remainingTiles[letter].usedCount;
278
279
  }
279
280
  const comparator = createKeyComparator("character", locale);
280
281
  return [
@@ -947,7 +948,7 @@ exports["default"] = solve;
947
948
  var __webpack_require__ = require("../../webpack-api-runtime.js");
948
949
  __webpack_require__.C(exports);
949
950
  var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
950
- var __webpack_exports__ = __webpack_require__.X(0, [50,131,939,44,911], () => (__webpack_exec__(77859)));
951
+ var __webpack_exports__ = __webpack_require__.X(0, [50,131,290,44,911], () => (__webpack_exec__(85785)));
951
952
  module.exports = __webpack_exports__;
952
953
 
953
954
  })();
@@ -1 +1 @@
1
- {"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/131.js","../../chunks/939.js","../../chunks/44.js","../../chunks/911.js","../../../package.json"]}
1
+ {"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/131.js","../../chunks/290.js","../../chunks/44.js","../../chunks/911.js","../../../package.json","../../../../package.json"]}
@@ -12,13 +12,6 @@ module.exports = require("buffer");
12
12
 
13
13
  /***/ }),
14
14
 
15
- /***/ 96974:
16
- /***/ ((module) => {
17
-
18
- module.exports = require("debug");
19
-
20
- /***/ }),
21
-
22
15
  /***/ 39491:
23
16
  /***/ ((module) => {
24
17
 
@@ -96,6 +89,13 @@ module.exports = require("string_decoder");
96
89
 
97
90
  /***/ }),
98
91
 
92
+ /***/ 76224:
93
+ /***/ ((module) => {
94
+
95
+ module.exports = require("tty");
96
+
97
+ /***/ }),
98
+
99
99
  /***/ 57310:
100
100
  /***/ ((module) => {
101
101
 
@@ -117,7 +117,7 @@ module.exports = require("zlib");
117
117
 
118
118
  /***/ }),
119
119
 
120
- /***/ 21623:
120
+ /***/ 13562:
121
121
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
122
122
 
123
123
  __webpack_require__.r(__webpack_exports__);
@@ -132,7 +132,7 @@ __webpack_require__.r(__webpack_exports__);
132
132
  /* harmony import */ var _scrabble_solver_logger__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_scrabble_solver_logger__WEBPACK_IMPORTED_MODULE_2__);
133
133
  /* harmony import */ var _scrabble_solver_types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(46452);
134
134
  /* harmony import */ var _scrabble_solver_types__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_scrabble_solver_types__WEBPACK_IMPORTED_MODULE_3__);
135
- /* harmony import */ var api__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(81025);
135
+ /* harmony import */ var api__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(81087);
136
136
 
137
137
 
138
138
 
@@ -204,7 +204,7 @@ const parseRequest = (request)=>{
204
204
  var __webpack_require__ = require("../../webpack-api-runtime.js");
205
205
  __webpack_require__.C(exports);
206
206
  var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
207
- var __webpack_exports__ = __webpack_require__.X(0, [50,131,939,44,911], () => (__webpack_exec__(21623)));
207
+ var __webpack_exports__ = __webpack_require__.X(0, [50,131,290,44,911], () => (__webpack_exec__(13562)));
208
208
  module.exports = __webpack_exports__;
209
209
 
210
210
  })();
@@ -1 +1 @@
1
- {"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/131.js","../../chunks/939.js","../../chunks/44.js","../../chunks/911.js","../../../package.json"]}
1
+ {"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/131.js","../../chunks/290.js","../../chunks/44.js","../../chunks/911.js","../../../package.json","../../../../package.json"]}
@@ -82,7 +82,7 @@ module.exports = require("zlib");
82
82
 
83
83
  /***/ }),
84
84
 
85
- /***/ 6666:
85
+ /***/ 65129:
86
86
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
87
87
 
88
88
  __webpack_require__.r(__webpack_exports__);
@@ -91,7 +91,7 @@ __webpack_require__.r(__webpack_exports__);
91
91
  /* harmony export */ });
92
92
  /* harmony import */ var _scrabble_solver_logger__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(52954);
93
93
  /* harmony import */ var _scrabble_solver_logger__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_scrabble_solver_logger__WEBPACK_IMPORTED_MODULE_0__);
94
- /* harmony import */ var api__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(81025);
94
+ /* harmony import */ var api__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(81087);
95
95
 
96
96
 
97
97
  const visit = async (request, response)=>{
@@ -126,7 +126,7 @@ const visit = async (request, response)=>{
126
126
  var __webpack_require__ = require("../../webpack-api-runtime.js");
127
127
  __webpack_require__.C(exports);
128
128
  var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
129
- var __webpack_exports__ = __webpack_require__.X(0, [50,939], () => (__webpack_exec__(6666)));
129
+ var __webpack_exports__ = __webpack_require__.X(0, [50,290], () => (__webpack_exec__(65129)));
130
130
  module.exports = __webpack_exports__;
131
131
 
132
132
  })();
@@ -1 +1 @@
1
- {"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/939.js","../../../package.json"]}
1
+ {"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/290.js","../../../package.json","../../../../package.json"]}
@@ -1,4 +1,4 @@
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/bad53af6f8616677.css" as="style"/><link rel="stylesheet" href="/_next/static/css/bad53af6f8616677.css" data-n-g=""/><link rel="preload" href="/_next/static/css/a6154e4ca046ca13.css" as="style"/><link rel="stylesheet" href="/_next/static/css/a6154e4ca046ca13.css" data-n-p=""/><link rel="preload" href="/_next/static/css/6b1833fd19d3a74a.css" as="style"/><link rel="stylesheet" href="/_next/static/css/6b1833fd19d3a74a.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-8f0df20f771045ed.js" defer=""></script><script src="/_next/static/chunks/546-447e243fc9de2c59.js" defer=""></script><script src="/_next/static/chunks/368-8b386c3106556f62.js" defer=""></script><script src="/_next/static/chunks/pages/index-8af7a9d7a2cd98a7.js" defer=""></script><script src="/_next/static/hf94cues-LcXZRCpAzQ6w/_buildManifest.js" defer=""></script><script src="/_next/static/hf94cues-LcXZRCpAzQ6w/_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><svg class="SvgFontFix_svgFontFix__nlq_B" 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=Vazirmatn:wght@300;400;700&family=Roboto+Mono&display=swap');
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/eb9d57f7103525ab.css" as="style"/><link rel="stylesheet" href="/_next/static/css/eb9d57f7103525ab.css" data-n-g=""/><link rel="preload" href="/_next/static/css/cb5b206454513f3c.css" as="style"/><link rel="stylesheet" href="/_next/static/css/cb5b206454513f3c.css" data-n-p=""/><link rel="preload" href="/_next/static/css/aafd07997120f1e4.css" as="style"/><link rel="stylesheet" href="/_next/static/css/aafd07997120f1e4.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-59c5c889f52620d6.js" defer=""></script><script src="/_next/static/chunks/framework-2c79e2a64abdb08b.js" defer=""></script><script src="/_next/static/chunks/main-f11614d8aa7ee555.js" defer=""></script><script src="/_next/static/chunks/pages/_app-959e495f0f221247.js" defer=""></script><script src="/_next/static/chunks/724-eb48df4d1ba3df8b.js" defer=""></script><script src="/_next/static/chunks/361-d16f336a9752a55a.js" defer=""></script><script src="/_next/static/chunks/pages/index-1e30dafa41bddb80.js" defer=""></script><script src="/_next/static/FJkPF91uL-OCAJKTTpVSP/_buildManifest.js" defer=""></script><script src="/_next/static/FJkPF91uL-OCAJKTTpVSP/_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><svg class="SvgFontFix_svgFontFix__nlq_B" 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=Vazirmatn:wght@300;400;700&family=Roboto+Mono&display=swap');
2
2
 
3
3
  text {
4
4
  font-family: 'Open Sans';
@@ -6,4 +6,4 @@ text {
6
6
 
7
7
  text {
8
8
  font-family: 'Vazirmatn';
9
- }</style></svg><div class="index_index__5hyIO"><div class="index_nav__FjsLl"><div class="index_navLogo__dBrd4"><a class="index_logoContainer___rrXU" href="/" title="v2.10.0"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" role="img" class="index_logo__IeyQD"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg></a></div><div class="NavButtons_navButtons__2jdaO"><div class="NavButtons_group__kSDjM"><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><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><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><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><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><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><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><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 viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" role="img" class="Splash_logoGrayscale__qe_QT"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" role="img" class="Splash_logoColor__InOR_"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></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.10.0"},"__N_SSG":true},"page":"/","query":{},"buildId":"hf94cues-LcXZRCpAzQ6w","isFallback":false,"gsp":true,"scriptLoader":[]}</script></body></html>
9
+ }</style></svg><div class="index_index__5hyIO"><div class="index_nav__FjsLl"><div class="index_navLogo__dBrd4"><a class="index_logoContainer___rrXU" href="/" title="v2.10.2"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" class="index_logo__IeyQD"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg></a></div><div class="NavButtons_navButtons__2jdaO"><div class="NavButtons_group__kSDjM"><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" 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><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><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" 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" 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><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><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" 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><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><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" 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" 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><div class="Solver_solver__o9miv index_solver__pzfzn"><div class="Solver_contentWrapper__qtqKN"><div class="Solver_content__s1fWW"><form class="Solver_boardContainer__GBRcW"><input class="Solver_submitInput__eic0t" tabindex="-1" type="submit"/></form><div class="Solver_sidebar__mhxCh" style="height:1px"><div class="Well_well__WTn5e Solver_resultsContainer__DruEg"></div><div class="Well_well__WTn5e"><div class="Solver_dictionary__09LYB" style="height:220px"><div class="Dictionary_dictionary__0CM4j Solver_dictionaryOutput__KWOcA"></div><form class="DictionaryInput_dictionaryInput__fsGZD Solver_dictionaryInput__9BLNF"><input class="DictionaryInput_input__0ed6F" placeholder="Search dictionary..." required="" type="text" value=""/></form></div></div></div></div></div><form class="Solver_rackContainer__2QSoB"><div class="Rack_rack__uEE8X Solver_rack__9DDCR"><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="Solver_submitInput__eic0t" tabindex="-1" type="submit"/></form></div></div><div class="Screen_screen__VnMC9 Splash_splash__DJBx_"><div class="Screen_content__t2VCW"><div class="Splash_logos__pFer4"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" class="Splash_logoGrayscale__qe_QT"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" class="Splash_logoColor__InOR_"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></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.10.2"},"__N_SSG":true},"page":"/","query":{},"buildId":"FJkPF91uL-OCAJKTTpVSP","isFallback":false,"gsp":true,"scriptLoader":[]}</script></body></html>