diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..451b913 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.replit +replit.nix +Planning/ +.lesson/ \ No newline at end of file diff --git a/.lesson/assets/logo.png b/.lesson/assets/logo.png deleted file mode 100644 index aafbada..0000000 Binary files a/.lesson/assets/logo.png and /dev/null differ diff --git a/.lesson/instructions.md b/.lesson/instructions.md deleted file mode 100644 index 7139f4f..0000000 --- a/.lesson/instructions.md +++ /dev/null @@ -1,134 +0,0 @@ -# ICS4U - Rich Summative Task -## Description and Requirements - -### General Outline: - -The final project encompasses your understanding of the course material. It should include one _**or more**_ of the following: -- Sorting or Searching -- Recursion (with or without divide & conquer) -- Complex Data Structures (multi-dimensional arrays / matrices) -- Abstract Data Types (pseudo-objects using key,value pairs) -- Object Oriented Programming (Classes) -- The Model-View-Controller (MVC) design pattern - - Back-to-Front-End Development (HTML) - - (_optional_) Usage of the `` element - - (_optional_) Animation through either `setInterval()` or `requestAnimationFrame()` - - (_optional_) Collisions & movement - -Note that OOP is highly recommended, mostly if you plan on continuing with computer science in your future. - -This final project will be an application built using JavaScript, HTML, & CSS through the Replit IDE. It is worth 30% of your final grade. - ---- - -### If you wish to complete your final project using Unity or some other system, contact your teacher ASAP. - ---- - -### Requirements: -(see rubric further below) -- Per-Project proposal including minimum expectations -- Draft User Interface (storyboarding) -- Obvious entry to the application or game - - Instructions available, if required (do not assume the user understands) - - User does not need to speak to developer at all to use the application -- Proper commenting and structure of code -- Student does not utilize tutorial or pre-baked code to create final project - - Simple algorithms (ie. randInt) or CSS examples excluded -- **Due no later than Tuesday, Jan 23rd @ 8:30am** - -### Project Ideas (in no particular order) - -- Minesweeper (add your own twist?) -- Battleship -- Backgammon -- Solitaire (or other card games) -- Side-scroller similar to Flappy-Bird -- Chess or Checkers (a good challenge) -- Snake (fairly simple but involves animation) -- Tetris -- 2048 (harder than you think) -- Space Invaders or Similar -- [Crossword puzzle generator](https://crosswordlabs.com/) -- [Word search generator](https://thewordsearch.com/maker/) -- [Maze generator](https://www.mazegenerator.net/) (and solver?) - -### _Suggested_ Timeline (Descriptions below the table) - -| Proposal Submission | Draft GUI (Storyboarding) | Data structure & Pseudocode | Code | Test & Fix | Submit _by_| -|:----:|:----:|:----:|:----:|:----:|:----:| -|Dec. 12th| Dec 13-15th|Dec. 18-19th|Dec. 20th - Jan. 17th|Jan 18-22nd|Jan 23rd @ 8:30am| - -### Step 1: Proposal -[Complete this Google Form](https://docs.google.com/forms/d/e/1FAIpQLSfYXBfspLdxx4dWfqBpX3bY1Ffq9Ng47MlwBIFt5-fb1eI8zg/viewform?usp=sf_link) to the best of your ability. Expect potential changes or discussion with your teacher within a day or two. - -### Step 2: Draft GUI (Storyboarding) -On paper, a whiteboard, or a digital image (you could use [`Storyboards.draw`](#Planning/Storyboards.draw) if you wish). Create and submit a draft design for the front-end of the program. This will include any and all input/control from the user as well as extra pages or information panels. Try to be detailed and as complete as possible here in order to make your coding portion simpler. (It is **ok** if the final product does _not_ match your draft. Do not modify it afterward.) - -### Step 3: Data Structure & Pseudocode -Now that you have a front-end, you can begin designing the data structure and functions for your program. -- What sort of data structure will you need - arrays? A matrix? Classes? - - Do any need to be _global_ variables? - - Does your OOP involve _inheritance_? - - Are you over-complicating your data structure? (don't do that) -- Are you using a canvas or other HTML elements? -- Do you need event listeners? - - What are the listeners? - - If keys or mouse, what information do you need like keyCodes or mouse buttons? - - What function(s) will those listeners be calling? -- What is the functional structure of the program? - - What helper functions do you think you'll need? - -Inside the [Planning](#Planning) folder, upload a text file or image of your planning and pseudocode. Try to work in an organized fashion so you can read your own work! - -(It is ok if your code structure changes - especially your data structurer or major algorithms, this is all part of the planning.) - -### Step 4: Code, code, code -If you planned the GUI and the code structure properly, the coding should be easier at this point. -- Create the basic GUI. **Don't worry about colours, fonts, design** - don't even worry about specific photos (you can replace them later). Give your elements meaningful IDs and create a layout that mimics your storyboards. - - Have you noticed changes you'll need to make? That's ok, make them! -- I cannot stress enough how important it is to avoid making it _look good_ at this point. **Get it working first!** -- Connect your HTML to the JavaScript file. - - Enable the event listeners and make sure they work. - - Create the data structure you decided upon. -- Write the functions one-by-one, testing as necessary. -- Keep notes on changes you foresee or extra functions and algorithms you did not realize you would need during your planning stages. (_Do not change your storyboards or pseudocode for these adjustments_) -- Test, test, test... -- **COMMENT YOUR CODE AS YOU GO!** - - -### Step 5: Testing & Final Fixes -Test your program extensively and often. Have _someone else_ test your program extensively. Make the appropriate bug fixes or changes to your program. Listen to your tester(s) and consider their input. Just because you thought of it, doesn't mean it's best layout or setup. -Then test it again. And again. - -### Submit! - - -## Rubric: -This rubric is a work in progress and _input from the class is encouraged_ - -|Expectation Description|Level 1|Level 2|Level 3|Level 4| -|---|---|---|---|---| -|**Project proposal**|Proposal is vague, incomplete, and/or not submitted on time.|Proposal includes some description and/or some final expectations and is submitted on or near the due date.|Proposal is submitted on-time, includes a description of the program and final expectations.|Proposal is submitted on-time (or early) and includes description, expectations, UI examples, and more.| -|**Draft User Interface**|Draft UI is not representative of the chosen application, is incomplete or missing key features.|x | x|x | -|**Data structure, plan, pseudocode**|Data structure and planning is incomplete or missing key details/features.|x|x|x| -|**Code**| Code is... | x | x | Code is clean & structured, functions and data are named clearly & appropriately. Code is structured neatly, tabbed properly, and easy to read or follow. Globals and listeners are declared at the top with functions declared in an appropriate style and order. -Code Documentation | x | x | x | Developer has supplied a thorough documentation of code including file header(s) and algorithm descriptions. Variables and data structure are explained, along with functions and helper-functions or classes. Comments are concise but give detail, written in a grammatically correct and pleasing style.| -|Application Instructions| x | x | x | The application includes how-to instructions for the user, clearly identifying how to use the program, along with the various modes or functions of the application. Instructions are not obtrusive or in-your-face, they are easy to read and easy to understand.| -|Application Usability| x | x | x | x | -|Application Completion| x | x | x | x | - ---- - -### Resources: -(updated when new ones are found or made) -- [Replit](https://replit.com/teams) -- [Class website](https://school.brash.ca) -- [w3schools](http://w3schools.com) - -- [Regular deck of 54 cards PNG files](https://drive.google.com/drive/folders/1hYgBIqgznqmL_cvZnpEsaWlCR1SjDxnD?usp=sharing) -- [Low-Res Battleship graphics](https://drive.google.com/drive/folders/0BzyP6cTwQ57eQWFLRjJ0TnFkUXc?resourcekey=0-T7t2LVthJId6vlsmrtwKUg&usp=sharing) -- [Canvas Element & 2D Arrays slideshow](https://docs.google.com/presentation/d/e/2PACX-1vS-hC9xZtpAwELck59sNa1Syq5JqAfhQe2ixrD6VnvXH4KUNTU5f_hIPCxnAdx2YAVNrVaRmxJ44lsm/pub?start=false&loop=false&delayms=3000) - - -











\ No newline at end of file diff --git a/.lesson/lessonplan.md b/.lesson/lessonplan.md deleted file mode 100644 index 0370d23..0000000 --- a/.lesson/lessonplan.md +++ /dev/null @@ -1,27 +0,0 @@ -# Lesson plan - - ** this file should contain teacher lesson plan details ** - - __ students will never see this __ - - ## Learning Objectives - 1. - 2. - 3. - - Use [Markdown](https://gist.github.com/cuonggt/9b7d08a597b167299f0d) to format your lesson plan. - - For example, here is a code block in python3 -```python -def hello_world(): - print("hello world!") -``` - - - Include an image by placing it in the `assets` folder. - - For example, here is the Replit logo: - - ![alt text](assets/logo.png) - - \ No newline at end of file diff --git a/.replit b/.replit deleted file mode 100644 index 11650c3..0000000 --- a/.replit +++ /dev/null @@ -1,178 +0,0 @@ -hidden=[".config"] - -# hosting is currently hardcoded for this language -# [hosting] -# route = "/" -# directory= "/" - -[nix] -channel = "stable-21_11" - -[languages.html] -pattern = "**/*.html" - [languages.html.languageServer] - start = ["vscode-html-language-server", "--stdio"] - [languages.html.languageServer.initializationOptions] - provideFormatter = true - [languages.html.languageServer.configuration.html] - customData = [ ] - autoCreateQuotes = true - autoClosingTags = true - mirrorCursorOnMatchingTag = false - - [languages.html.languageServer.configuration.html.completion] - attributeDefaultValue = "doublequotes" - - [languages.html.languageServer.configuration.html.format] - enable = true - wrapLineLength = 120 - unformatted = "wbr" - contentUnformatted = "pre,code,textarea" - indentInnerHtml = false - preserveNewLines = true - indentHandlebars = false - endWithNewline = false - extraLiners = "head, body, /html" - wrapAttributes = "auto" - templating = false - unformattedContentDelimiter = "" - - [languages.html.languageServer.configuration.html.suggest] - html5 = true - - [languages.html.languageServer.configuration.html.validate] - scripts = true - styles = true - - [languages.html.languageServer.configuration.html.hover] - documentation = true - references = true - - [languages.html.languageServer.configuration.html.trace] - server = "off" - -[languages.javascript] -pattern = "**/{*.js,*.jsx,*.ts,*.tsx,*.mjs,*.cjs}" - [languages.javascript.languageServer] - start = ["typescript-language-server", "--stdio"] - -# TODO autocomplete relies on snippet support, which we don't advertise to LSP servers. -# For now CSS autocomplete will use built-in codemirror, which is not perfect but good enough -[languages.css] -pattern = "**/{*.less,*.scss,*.css}" - [languages.css.languageServer] - start = ["vscode-css-language-server", "--stdio"] - [languages.css.languageServer.configuration.css] - customData = [ ] - validate = true - - [languages.css.languageServer.configuration.css.completion] - triggerPropertyValueCompletion = true - completePropertyWithSemicolon = true - - [languages.css.languageServer.configuration.css.hover] - documentation = true - references = true - - [languages.css.languageServer.configuration.css.lint] - # Configure linting - # ignore = don't show any warning or error - # warning = show yellow underline - # error = show red underline - argumentsInColorFunction = "error" # Invalid number of parameters - boxModel = "ignore" # Do not use width or height when using padding or border - compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties" - duplicateProperties = "warning" # Do not use duplicate style definitions - emptyRules = "warning" # Do not use empty rulesets - float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes. - fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties - hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers - idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML. - ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older - important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored. - importStatement = "ignore" # Import statements do not load in parallel - propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display - universalSelector = "ignore" # The universal selector (*) is known to be slow - unknownAtRules = "warning" # Unknown at-rule - unknownProperties = "warning" # Unknown property. - validProperties = [ ] # add some properties that the linter doesn't know about - unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property. - vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property - zeroUnits = "ignore" # No unit for zero needed - - [languages.css.languageServer.configuration.css.trace] - server = "off" - - [languages.css.languageServer.configuration.scss] - validate = true - - [languages.css.languageServer.configuration.scss.completion] - triggerPropertyValueCompletion = true - completePropertyWithSemicolon = true - - [languages.css.languageServer.configuration.scss.hover] - documentation = true - references = true - - [languages.css.languageServer.configuration.scss.lint] - # Configure linting - # ignore = don't show any warning or error - # warning = show yellow underline - # error = show red underline - argumentsInColorFunction = "error" # Invalid number of parameters - boxModel = "ignore" # Do not use width or height when using padding or border - compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties" - duplicateProperties = "warning" # Do not use duplicate style definitions - emptyRules = "warning" # Do not use empty rulesets - float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes. - fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties - hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers - idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML. - ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older - important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored. - importStatement = "ignore" # Import statements do not load in parallel - propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display - universalSelector = "ignore" # The universal selector (*) is known to be slow - unknownAtRules = "warning" # Unknown at-rule - unknownProperties = "warning" # Unknown property. - validProperties = [ ] # add some properties that the linter doesn't know about - unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property. - vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property - zeroUnits = "ignore" # No unit for zero needed" - - [languages.css.languageServer.configuration.less] - validate = true - - [languages.css.languageServer.configuration.less.completion] - triggerPropertyValueCompletion = true - completePropertyWithSemicolon = true - - [languages.css.languageServer.configuration.less.hover] - documentation = true - references = true - - [languages.css.languageServer.configuration.less.lint] - # Configure linting - # ignore = don't show any warning or error - # warning = show yellow underline - # error = show red underline - argumentsInColorFunction = "error" # Invalid number of parameters - boxModel = "ignore" # Do not use width or height when using padding or border - compatibleVendorPrefixes = "ignore" # When using a vendor-specific prefix make sure to also include all other vendor-specific properties" - duplicateProperties = "warning" # Do not use duplicate style definitions - emptyRules = "warning" # Do not use empty rulesets - float = "ignore" # Avoid using 'float'. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes. - fontFaceProperties = "warning" # @font-face rule must define 'src' and 'font-family' properties - hexColorLength = "error" # Hex colors must consist of three, four, six or eight hex numbers - idSelector = "ignore" # Selectors should not contain IDs because these rules are too tightly coupled with the HTML. - ieHack = "ignore" # IE hacks are only necessary when supporting IE7 and older - important = "ignore" # Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored. - importStatement = "ignore" # Import statements do not load in parallel - propertyIgnoredDueToDisplay = "warning" # Property is ignored due to the display - universalSelector = "ignore" # The universal selector (*) is known to be slow - unknownAtRules = "warning" # Unknown at-rule - unknownProperties = "warning" # Unknown property. - validProperties = [ ] # add some properties that the linter doesn't know about - unknownVendorSpecificProperties = "ignore" # Unknown vendor specific property. - vendorPrefix = "warning" # When using a vendor-specific prefix also include the standard property - zeroUnits = "ignore" # No unit for zero needed" diff --git a/Planning/Pseudocode.md b/Planning/Pseudocode.md deleted file mode 100644 index f27b2fe..0000000 --- a/Planning/Pseudocode.md +++ /dev/null @@ -1,121 +0,0 @@ -# Pseudocode - -## Data Structures - -### The Board - -The board can be represented by a class, which will contain a 2D array of Pieces -as well as some other data about the board. - -#### Properties - -| Name | Type | Description | -| -------: | ---------------------- | -------------------------------------------------------------------------------------------------------- | -| `moves` | `string[]` | A history of moves made by each player. This will just be a list of strings (i.e. `g4`, `e6`, and so on) | -| `turn` | `"white"` or `"black"` | The player whose turn it is | -| `pieces` | `Piece[][]` | The state of the board (8x8 2D array) | - -#### Methods - -##### `movePiece(sourceRow: number, sourceCol: number, destRow: number, destCol: number): boolean` - -Move a piece from one location on the board to another. -Returns whether or not the move was successful. -This method should also check for whether the target move is valid, -using the source piece's `getMoves` function. - -- `sourceRow`: The row of the source piece -- `sourceCol`: The column of the source piece -- `destRow`: The row of the destination on the board -- `destCol`: The column of the destination on the board - -##### `isThreatened(row: number, col: number): boolean` - -Checks whether a piece at a given coordinate is threatened (i.e. an enemy piece can move to capture it). -This will be most useful for determining if the King is in check. - -##### `isMated(row: number, col: number): boolean` - -Check if a piece is in checkmate (is currently threatened and no valid moves will stop it from being threatened). - -### Pieces - -Each piece on the board will be represented by a class. -A base `Piece` class will be made from which other pieces will inerhit. -Child classes will override the base methods, -providing their own logic to determine valid moves. - -#### Properties - -Properties will vary based on the specific class. - -Some properties that might exist: - -| Name | Type | Description | -| ---------: | ---------------------- | ------------------------------------------------------------------------------------------------------ | -| `hasMoved` | `boolean` | Whether the piece has moved yet. Can be used to determine valid pawn moves or whether kings can castle | -| `colour` | `"white"` or `"black"` | The colour of the piece | - -#### Methods - -##### `getMoves(board: Board, row: number, col: number): Array<[row: number, col: number]>` - -> **Note** -> It also might make more sense to just take the pieces as an array `Piece[][]`, -> since it's unlikely that the pieces will need to know other data about the board. - -Get a list of valid moves, formatted as an array of valid rows and columns -(indices in the board array). - -- `board`: The board the game is being played on -- `row`: The row of the piece -- `col`: The column of the piece - -## Global Variables - -### `board: Board` - -Self-explanatory; stores an instance of the `Board` class. - -### Elements - -Global variables should be made for different UI components (canvas, buttons, dropdowns, etc.). - -## Helper Functions - -### `coordsInLine(board: Board, startRow: number, startCol:, rowDirection: number, colDirection: number, team: "white" | "black"): Array<[row: number, col: number]>` - -The name might be changed if I can think of a better one. - -This method will return all the valid moves in a straight path in a given direction, -until it encounters a piece blocking its path. - -This will be used to find valid moves for pieces such as the rook, bishop, and queen. - -### `resetGame(): void` - -This function will be responsible for resetting the board. -This should include resetting the pieces to their default positions, -resetting the timers for both players, -resetting the orientation for both players, -and any other changes that need to be made between games. - -## Interface - -The visuals can be found in the `Storyboards.draw` file. - -The board will be drawn with the HTML canvas. -Other UI elements, such as the timers and popups, -will be made with regular HTML and styled with CSS. - -### Inputs - -Pieces will be moved by first clicking on a piece to select it, -then clicking on one of the highlighted valid locations. -Clicking and dragging to move pieces is not a priority. - -A `click` event listener can be added to the canvas element, -which will be used to find the locations of clicks. - -Buttons and other UI elements can be made with their relevant listeners, -such as `click` for buttons or `change` for certain `` elements. diff --git a/Planning/Storyboards.draw b/Planning/Storyboards.draw deleted file mode 100644 index 71a0cb0..0000000 --- a/Planning/Storyboards.draw +++ /dev/null @@ -1 +0,0 @@ -{"elements":[{"type":"rectangle","version":221,"versionNonce":908197809,"isDeleted":false,"id":"kvoPg_rLar9xhrjG8EG7B","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":405.0996678547647,"y":158.39117234510417,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":424064036,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":258,"versionNonce":885247967,"isDeleted":false,"id":"hA5u33mOvxvW06dZWc4d3","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":494.5996678547647,"y":158.89117234510417,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":774148004,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":192,"versionNonce":1174987153,"isDeleted":false,"id":"X5tBcfIGqUtOr62wHpDvJ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":582.956544860218,"y":160.27328925264953,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1676723868,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":277,"versionNonce":614235135,"isDeleted":false,"id":"_Up--CDwl0MKPM7NAIRs0","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":672.456544860218,"y":160.77328925264953,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":626622756,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":265,"versionNonce":1584957297,"isDeleted":false,"id":"FdG3wUNwaICB-2ZnONHMq","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":762.6715634563599,"y":160.6282097587296,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":142767260,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":303,"versionNonce":1221239839,"isDeleted":false,"id":"WoVjDQ54lW2es5mqQw51n","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":852.1715634563599,"y":161.1282097587296,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":243381028,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"XQNBzUHMhBReXv8SxYSYW","type":"arrow"}],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":234,"versionNonce":2042130769,"isDeleted":false,"id":"QFMnInjScZUeWmXyLPXqz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":940.5284404618131,"y":162.51032666627498,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1510048028,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":299,"versionNonce":1899939903,"isDeleted":false,"id":"_ZK5FjgvRd7jMMgncq1cR","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1030.028440461813,"y":163.01032666627498,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1638379172,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":370,"versionNonce":1562386225,"isDeleted":false,"id":"ClZf-7rT_EH7vsMxxlYC1","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":1030.5079125901107,"y":252.4359412909766,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":709243300,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":407,"versionNonce":467232863,"isDeleted":false,"id":"NYJJbmdrs2dgJt4iJDQ74","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":941.0079125901101,"y":251.93594129097733,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":699017884,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":341,"versionNonce":924258577,"isDeleted":false,"id":"xo9haE5IP9CbrEqA7I0GA","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":852.651035584657,"y":250.5538243834328,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1029201188,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":385,"versionNonce":912983167,"isDeleted":false,"id":"DnS_IxRKVU4khsAx9nX7W","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":763.1510355846566,"y":250.05382438343457,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":683833116,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589954,"link":null,"locked":false},{"type":"rectangle","version":387,"versionNonce":2098513649,"isDeleted":false,"id":"qiW_PUYMe4mk7AFhP4CTd","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":672.936016988514,"y":250.19890387735524,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":337189028,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":445,"versionNonce":548674719,"isDeleted":false,"id":"eiLKUbi03xW1-amAqBPtg","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":583.4360169885151,"y":249.69890387735666,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":673002396,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":379,"versionNonce":161530065,"isDeleted":false,"id":"VO9jPAfnUz3soOMu0vJqF","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":495.0791399830613,"y":248.3167869698123,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1513514020,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":444,"versionNonce":1852125375,"isDeleted":false,"id":"hsS53o5uRZ47xNkDPllWN","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":405.57913998306117,"y":247.8167869698134,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1441554460,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":274,"versionNonce":2052226737,"isDeleted":false,"id":"kT5YZooFVAL9qw2Tj9UI3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":404.1615988819116,"y":336.70280115500157,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1190761508,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":311,"versionNonce":1763623135,"isDeleted":false,"id":"tAYSY0bmouSycjy0aTcMh","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":493.6615988819116,"y":337.20280115500157,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1848913948,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":245,"versionNonce":1305575569,"isDeleted":false,"id":"Kq4pFE0Fi4bVilveeFh09","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":582.0184758873648,"y":338.58491806254693,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1652256676,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":310,"versionNonce":1383156991,"isDeleted":false,"id":"5gnMBCg7MzAj-CX0Tzycg","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":671.5184758873648,"y":339.08491806254693,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":686804124,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":316,"versionNonce":1104496241,"isDeleted":false,"id":"LFBbbS4mwyjR0Qst_vDOG","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":761.7334944835068,"y":338.939838568627,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":2016795428,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":353,"versionNonce":1709004063,"isDeleted":false,"id":"KKi9rWpvF_zE2t8y3XPTu","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":851.2334944835069,"y":339.439838568627,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":855890204,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":287,"versionNonce":1898270801,"isDeleted":false,"id":"-oQV_NjIgUk2duITtdf64","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":939.5903714889599,"y":340.8219554761724,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1385617060,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":352,"versionNonce":450058559,"isDeleted":false,"id":"Lm_75RHmrAypIwaqZ6pPY","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1029.0903714889591,"y":341.3219554761724,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1742886300,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":423,"versionNonce":832118321,"isDeleted":false,"id":"fRSIOQUPbdGQ26O0C5xc7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":1029.569843617257,"y":430.747570100874,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1045193252,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":460,"versionNonce":649320799,"isDeleted":false,"id":"vBo8ghuei9dmCAch-VRGD","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":940.0698436172569,"y":430.2475701008747,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1690124828,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":394,"versionNonce":840445969,"isDeleted":false,"id":"GeyyV52NguRAeOk82bRFC","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":851.7129666118038,"y":428.8654531933302,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1111784868,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":438,"versionNonce":1053775231,"isDeleted":false,"id":"-5Ff_ptitnb0-QdOEsh4_","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":762.2129666118035,"y":428.365453193332,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1350999708,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":440,"versionNonce":1486489073,"isDeleted":false,"id":"qHAkI9ST78GEKGjmL0l1k","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":671.9979480156609,"y":428.51053268725263,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1470966052,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":498,"versionNonce":442912159,"isDeleted":false,"id":"MxrxPDsb1luw31E7waf27","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":582.497948015662,"y":428.01053268725406,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":602958620,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":432,"versionNonce":1613111249,"isDeleted":false,"id":"O4Zj2T6lyXiDPvCqKlNJ3","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":494.1410710102082,"y":426.6284157797097,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":569664676,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":497,"versionNonce":883507647,"isDeleted":false,"id":"uwcZDpYoXhv2HmyB95cnS","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":404.64107101020807,"y":426.1284157797108,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1902946204,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":309,"versionNonce":919862705,"isDeleted":false,"id":"eBoH5fmdP4BNsY2F9k_JH","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":405.319313403078,"y":516.241925358236,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":902398372,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":346,"versionNonce":1320727007,"isDeleted":false,"id":"QnEW1RXwQTA-d4i3uGvk3","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":494.819313403078,"y":516.741925358236,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":113498780,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":280,"versionNonce":466296721,"isDeleted":false,"id":"jKwNXiJ8DA-8BdO2IdZAt","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":583.1761904085313,"y":518.1240422657814,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":468823332,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":345,"versionNonce":832904703,"isDeleted":false,"id":"rK4sm-c8SG9t1yXmCeAp-","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":672.6761904085313,"y":518.6240422657814,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":388376348,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":351,"versionNonce":2101544305,"isDeleted":false,"id":"jw3F9vmxZr7EA8fDR1edp","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":762.8912090046731,"y":518.4789627718615,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1929930916,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":388,"versionNonce":812582431,"isDeleted":false,"id":"_rHs0ThcIaKPm0nQ7F_TE","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":852.3912090046731,"y":518.9789627718615,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1854595996,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":322,"versionNonce":377696081,"isDeleted":false,"id":"FFxZtm_PWySWcog9CJBIE","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":940.7480860101264,"y":520.3610796794069,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1052488740,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":387,"versionNonce":1778838079,"isDeleted":false,"id":"Y9kyT5xPF8kC5Xorg6yWN","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1030.2480860101257,"y":520.8610796794069,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1663307804,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":458,"versionNonce":1306729777,"isDeleted":false,"id":"tkwq5n-ufQbbG_STBDhd6","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":1030.7275581384235,"y":610.2866943041083,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1559859108,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":495,"versionNonce":1263356511,"isDeleted":false,"id":"vMY9_Y3AnWnZySpskmsqO","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":941.2275581384233,"y":609.7866943041092,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":887336092,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":429,"versionNonce":1388990225,"isDeleted":false,"id":"twZq4lnR3kw5ngPIZyumN","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":852.8706811329703,"y":608.4045773965647,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1039137572,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":473,"versionNonce":1360176767,"isDeleted":false,"id":"dd6D7XS0LkrfH-9SOFgSJ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":763.3706811329698,"y":607.9045773965663,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1434171676,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":475,"versionNonce":2075149553,"isDeleted":false,"id":"Bix_5ZMlzboBNDD34Zuu7","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":673.1556625368273,"y":608.0496568904871,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":470611620,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":533,"versionNonce":169311903,"isDeleted":false,"id":"5lRERAJ57RknYEiFeQ7y_","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":583.6556625368285,"y":607.5496568904884,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":811480476,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":467,"versionNonce":1679589073,"isDeleted":false,"id":"FVjOorvyC12jaCxvsGMpz","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":495.2987855313745,"y":606.1675399829442,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":872317476,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":532,"versionNonce":1493979839,"isDeleted":false,"id":"9R8tyV5c3fEJK7yvj5m-u","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":405.7987855313745,"y":605.6675399829453,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1924997660,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":362,"versionNonce":1252424881,"isDeleted":false,"id":"eVV6RH-vH1hQSmViiCQfA","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":404.3812444302248,"y":694.5535541681336,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":2092080548,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":399,"versionNonce":1989255903,"isDeleted":false,"id":"kOa-YpVlJkdWGua64d65z","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":493.8812444302248,"y":695.0535541681336,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1401585308,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":333,"versionNonce":787857041,"isDeleted":false,"id":"8XB6N1Pv6FVefkRoxb7Gm","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":582.2381214356781,"y":696.4356710756788,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1599555876,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":398,"versionNonce":859303679,"isDeleted":false,"id":"fNRPoaNbtqCnoCjbu-r7f","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":671.7381214356781,"y":696.9356710756788,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1534610204,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":404,"versionNonce":801227889,"isDeleted":false,"id":"VJKSJicihNq-X82wpgEE9","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":761.9531400318201,"y":696.7905915817589,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":1868203172,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":441,"versionNonce":2038413087,"isDeleted":false,"id":"u8RjKcWeFPGMMLvGSQ7g6","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":851.4531400318201,"y":697.2905915817589,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":754485148,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":375,"versionNonce":684854865,"isDeleted":false,"id":"kmNKx1MZmRo4MAK_cyKUf","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":939.8100170372732,"y":698.6727084893043,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":577392676,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":440,"versionNonce":265911103,"isDeleted":false,"id":"DG1QDyqKFMLfQskKzguWh","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1029.310017037272,"y":699.1727084893043,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1279079452,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":511,"versionNonce":285088817,"isDeleted":false,"id":"B2ZeY2UNGOpyr9LZjw07z","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":1029.7894891655699,"y":788.598323114006,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":141863844,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589955,"link":null,"locked":false},{"type":"rectangle","version":548,"versionNonce":447069023,"isDeleted":false,"id":"SMFmSnRUlX8HYUXTKBjqX","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":940.2894891655701,"y":788.0983231140067,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1731743900,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"rectangle","version":482,"versionNonce":405630481,"isDeleted":false,"id":"3j__jXmR0rGkwus-6Suvu","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":851.9326121601171,"y":786.7162062064622,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":61314852,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"rectangle","version":539,"versionNonce":1580529535,"isDeleted":false,"id":"GCnL3jQRDkMfHC6ALlGE-","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":762.4326121601168,"y":786.216206206464,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":496753948,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"rectangle","version":528,"versionNonce":89621489,"isDeleted":false,"id":"MLCAoa6hJPJ3jQJYzZK2j","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":672.2175935639741,"y":786.3612857003845,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":7410340,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"rectangle","version":586,"versionNonce":1086828447,"isDeleted":false,"id":"9pjO2iUHuVlcEucbZQzka","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":582.7175935639752,"y":785.8612857003859,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1222236572,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"rectangle","version":520,"versionNonce":1417928145,"isDeleted":false,"id":"osLnSRcaK7dRYNaNTG9oQ","fillStyle":"solid","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":494.3607165585215,"y":784.4791687928416,"strokeColor":"#000000","backgroundColor":"#000000","width":89,"height":89,"seed":763305508,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"rectangle","version":585,"versionNonce":210658239,"isDeleted":false,"id":"GifRVwVJ7Hpw0WRjR5iKl","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":3.141592653589793,"x":404.8607165585213,"y":783.9791687928428,"strokeColor":"#000000","backgroundColor":"transparent","width":89,"height":89,"seed":1143227932,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":164,"versionNonce":348781489,"isDeleted":false,"id":"z5kXbTG8e0F3tVpjFPRvB","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1255.9601372755524,"y":62.35930112523212,"strokeColor":"#000000","backgroundColor":"transparent","width":343,"height":46,"seed":167682596,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"E3Ow6WCT8jVeT__wwwvt6","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"Turn indicator here","baseline":33,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Turn indicator here"},{"type":"text","version":96,"versionNonce":1906938847,"isDeleted":false,"id":"uwHvekVyFt1RgyNew-2Wu","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1148.3547960891972,"y":176.26644680767652,"strokeColor":"#000000","backgroundColor":"transparent","width":530,"height":43,"seed":1729553956,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"Black to move [or] White to move","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Black to move [or] White to move"},{"type":"arrow","version":227,"versionNonce":105995665,"isDeleted":false,"id":"E3Ow6WCT8jVeT__wwwvt6","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1452.4565968689049,"y":114.23966455014167,"strokeColor":"#000000","backgroundColor":"transparent","width":68.0663484553586,"height":42.21215989404419,"seed":1569431580,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"z5kXbTG8e0F3tVpjFPRvB","focus":-0.27700166076227245,"gap":5.880363424909547},"endBinding":{"elementId":"uSc_XlU3mKqgJFVrHs0NE","focus":-0.3497499953433906,"gap":7.615193439131673},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[-22.504935423507504,22.504935423507533],[-68.0663484553586,42.21215989404419]]},{"type":"rectangle","version":90,"versionNonce":1210695679,"isDeleted":false,"id":"BqcD0_lq5orYF_ScedJ28","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1159.390577271969,"y":813.8840020091351,"strokeColor":"#000000","backgroundColor":"transparent","width":304.26444449252676,"height":52.91555556391768,"seed":1712919708,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":110,"versionNonce":2018607985,"isDeleted":false,"id":"UyHgnDG3CyqX3vDaA60Op","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1216.0858153761667,"y":818.8925734403944,"strokeColor":"#000000","backgroundColor":"transparent","width":186,"height":43,"seed":703414684,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"uz1mEz9pxhWtPMxylGTMs","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"Instructions","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Instructions"},{"type":"rectangle","version":280,"versionNonce":302999583,"isDeleted":false,"id":"89u3F_UBVQKvqOEP4vfPo","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":988.3599423243063,"y":1041.7909976730243,"strokeColor":"#000000","backgroundColor":"transparent","width":687.9022223309298,"height":366.62920640714407,"seed":1150649892,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":249,"versionNonce":1729228113,"isDeleted":false,"id":"LFwtngQkspPaP6mViyTU5","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1013.8727994711955,"y":1056.9182992654028,"strokeColor":"#000000","backgroundColor":"transparent","width":648,"height":258,"seed":1247939364,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"uz1mEz9pxhWtPMxylGTMs","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"Pieces are moved by clicking on them\nand then selecting a valid target\ndestination.\n\nValid locations will be marked on the\nboard. To deselect a piece, click it again.","baseline":249,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Pieces are moved by clicking on them\nand then selecting a valid target\ndestination.\n\nValid locations will be marked on the\nboard. To deselect a piece, click it again."},{"type":"rectangle","version":177,"versionNonce":1028328511,"isDeleted":false,"id":"pxuuV6BxfJJ5vo3x1ewA4","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1175.4542280681585,"y":1336.6062358148513,"strokeColor":"#000000","backgroundColor":"transparent","width":304.26444449252676,"height":52.91555556391768,"seed":2380444,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":225,"versionNonce":1508514609,"isDeleted":false,"id":"i7_fzR9mMIGwwPibym3rv","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1281.2853391959936,"y":1339.7249659759707,"strokeColor":"#000000","backgroundColor":"transparent","width":94,"height":43,"seed":1089778980,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"Close","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Close"},{"type":"arrow","version":122,"versionNonce":633154655,"isDeleted":false,"id":"uz1mEz9pxhWtPMxylGTMs","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1310.5659023002122,"y":870.5792401133326,"strokeColor":"#000000","backgroundColor":"transparent","width":0.006008453437516437,"height":163.65239247913178,"seed":199303708,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"UyHgnDG3CyqX3vDaA60Op","focus":-0.016043693623612035,"gap":8.686666672938259},"endBinding":{"elementId":"LFwtngQkspPaP6mViyTU5","focus":-0.08424358206183007,"gap":22.686666672938316},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[0.006008453437516437,163.65239247913178]]},{"type":"text","version":23,"versionNonce":21073169,"isDeleted":false,"id":"2z0DJAXoOCU7gZ4nb-eJ2","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1558.1470852714917,"y":723.1801924736783,"strokeColor":"#000000","backgroundColor":"transparent","width":146,"height":46,"seed":451579420,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"Buttons","baseline":33,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Buttons"},{"type":"arrow","version":141,"versionNonce":1463175295,"isDeleted":false,"id":"_92-HTqBbotpeos-stRzh","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1611.0626408354094,"y":789.3160654973162,"strokeColor":"#000000","backgroundColor":"transparent","width":127.95825040929594,"height":51.44043826696145,"seed":696401052,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[-46.541343878898715,46.541343878898715],[-127.95825040929594,51.44043826696145]]},{"type":"text","version":128,"versionNonce":344965873,"isDeleted":false,"id":"SfSQL2bHppeCG1UZeoS5f","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1327.2517247078906,"y":885.4288847343307,"strokeColor":"#000000","backgroundColor":"transparent","width":364,"height":138,"seed":1631180452,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"GnAYgD3hLxTW12_N30mmB","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"Modal popup,\nprobably centered on\nboard","baseline":125,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Modal popup,\nprobably centered on\nboard"},{"type":"text","version":317,"versionNonce":259448991,"isDeleted":false,"id":"IP_J4RvKmSL24sK9aQsge","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":940.6194018275182,"y":-402.0185181918554,"strokeColor":"#000000","backgroundColor":"transparent","width":741,"height":230,"seed":2029132444,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"The board should automatically rotate\nonce a player has played their move,\nmoving the active player's perspective\nto the bottom of the screen. White plays\nfirst and starts at the bottom.","baseline":217,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"The board should automatically rotate\nonce a player has played their move,\nmoving the active player's perspective\nto the bottom of the screen. White plays\nfirst and starts at the bottom."},{"type":"rectangle","version":71,"versionNonce":1885093073,"isDeleted":false,"id":"uSc_XlU3mKqgJFVrHs0NE","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1133.6681617042882,"y":164.06701788331753,"strokeColor":"#000000","backgroundColor":"transparent","width":562.668411149999,"height":66.75726911949141,"seed":815276708,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"E3Ow6WCT8jVeT__wwwvt6","type":"arrow"},{"id":"0To_g7REXHfgkt5f9Gdyi","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":226,"versionNonce":3110079,"isDeleted":false,"id":"pUtnS2yR8cWMii_U5k-q0","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1881.745035950867,"y":130.8725743851671,"strokeColor":"#000000","backgroundColor":"transparent","width":673,"height":230,"seed":650859684,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"0To_g7REXHfgkt5f9Gdyi","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"Could also change background + font\ncolour to match the active player\n(i.e. background colour matches player\ncolour, font colour is opposite for\nlegibility)","baseline":217,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Could also change background + font\ncolour to match the active player\n(i.e. background colour matches player\ncolour, font colour is opposite for\nlegibility)"},{"type":"arrow","version":322,"versionNonce":1950251697,"isDeleted":false,"id":"0To_g7REXHfgkt5f9Gdyi","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1861.082071699596,"y":252.82103900097812,"strokeColor":"#000000","backgroundColor":"transparent","width":165.85396067834813,"height":44.605275477537276,"seed":1837159580,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"pUtnS2yR8cWMii_U5k-q0","focus":0.4325937907232862,"gap":20.662964251270978},"endBinding":{"elementId":"nGZmAuCkdIu6CMSTKrnxk","focus":-1.0818523864319651,"gap":26.265269744628398},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[-85.74217912951985,22.974547655039515],[-165.85396067834813,-21.63072782249776]]},{"type":"rectangle","version":115,"versionNonce":1358988511,"isDeleted":false,"id":"_DRN9yMG8F3y6b9Dl2Fkn","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1157.9599615092743,"y":734.9991726842883,"strokeColor":"#000000","backgroundColor":"transparent","width":304.26444449252676,"height":52.91555556391768,"seed":1069976476,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":160,"versionNonce":551419025,"isDeleted":false,"id":"lTecpvQWSAH_zEG8ESjwy","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1251.6848729347712,"y":738.636274733277,"strokeColor":"#000000","backgroundColor":"transparent","width":118,"height":43,"seed":1852738596,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"uz1mEz9pxhWtPMxylGTMs","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"Restart","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Restart"},{"type":"arrow","version":189,"versionNonce":1635422463,"isDeleted":false,"id":"WATFWOiQNMTOJxBX-5hMO","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1611.4273437917282,"y":791.2294173573727,"strokeColor":"#000000","backgroundColor":"transparent","width":128.14191380683747,"height":12.914974785059258,"seed":1852380444,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":null,"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[-65.86878014637523,0],[-128.14191380683747,-12.914974785059258]]},{"type":"text","version":139,"versionNonce":1978810993,"isDeleted":false,"id":"Y3TxGdXd01J9PmEDpzU13","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":656.4860750271214,"y":-116.08559711620626,"strokeColor":"#000000","backgroundColor":"transparent","width":724,"height":46,"seed":903861916,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"HTML canvas for displaying board/pieces","baseline":33,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"HTML canvas for displaying board/pieces"},{"type":"arrow","version":224,"versionNonce":1260263711,"isDeleted":false,"id":"XQNBzUHMhBReXv8SxYSYW","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":977.5290763513331,"y":-59.81298503036595,"strokeColor":"#000000","backgroundColor":"transparent","width":129.158840078107,"height":201.24719701564374,"seed":1323915036,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":null,"endBinding":{"elementId":"WoVjDQ54lW2es5mqQw51n","focus":-1.2642042061038905,"gap":19.693997773451827},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[-42.287753372386874,114.58193184115518],[-129.158840078107,201.24719701564374]]},{"type":"text","version":208,"versionNonce":272813137,"isDeleted":false,"id":"YDNCbXXBwRi-YfcxlvLqu","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1729.4106642056813,"y":782.4806753590951,"strokeColor":"#000000","backgroundColor":"transparent","width":752,"height":184,"seed":2023960860,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"GnAYgD3hLxTW12_N30mmB","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"It might be worth putting the instructions\nbutton somewhere a bit more noticeable,\nor maybe giving it a unique colour to draw\nthe user's attention","baseline":171,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"It might be worth putting the instructions\nbutton somewhere a bit more noticeable,\nor maybe giving it a unique colour to draw\nthe user's attention"},{"type":"arrow","version":76,"versionNonce":593206591,"isDeleted":false,"id":"GnAYgD3hLxTW12_N30mmB","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1717.71083183897,"y":893.7324284697504,"strokeColor":"#000000","backgroundColor":"transparent","width":227.94566342783855,"height":27.739419358943223,"seed":2011400996,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"YDNCbXXBwRi-YfcxlvLqu","focus":-0.4822429513883927,"gap":11.699832366711234},"endBinding":{"elementId":"SfSQL2bHppeCG1UZeoS5f","focus":-0.9442264873756608,"gap":19.435875623523543},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[-227.94566342783855,-27.739419358943223]]},{"type":"text","version":245,"versionNonce":128391729,"isDeleted":false,"id":"F2L9rXDfMIJ4ldqg7bQIF","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-50.36828369167165,"y":1064.8630913112795,"strokeColor":"#000000","backgroundColor":"transparent","width":624,"height":222,"seed":926325796,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"rmRBE-1nsSjL7mGIFNX3p","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":58,"fontFamily":1,"text":"This modal should\nbe visible on the first\npage visit","baseline":200,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"This modal should\nbe visible on the first\npage visit"},{"type":"arrow","version":70,"versionNonce":2106826079,"isDeleted":false,"id":"rmRBE-1nsSjL7mGIFNX3p","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":215.4571592723412,"y":1293.6397858897728,"strokeColor":"#000000","backgroundColor":"transparent","width":734.4640617980347,"height":93.64406706890782,"seed":547209252,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"F2L9rXDfMIJ4ldqg7bQIF","focus":0.6688028306196102,"gap":6.776694578493334},"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[349.4844161285512,93.64406706890782],[734.4640617980347,65.05742272336897]]},{"type":"rectangle","version":85,"versionNonce":218541073,"isDeleted":false,"id":"c2CtO1C2RtEq0VI2m5MyT","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-1928.1013146024466,"y":-32.27445582426867,"strokeColor":"#000000","backgroundColor":"transparent","width":1495.9554166297457,"height":946.8517813491802,"seed":88438564,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"6GB7NSt84XMyRBROQvUjO","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":116,"versionNonce":756455807,"isDeleted":false,"id":"DjrPdEWG-RJ4kA7rnyrEV","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-1481.0746371624991,"y":124.33704710987115,"strokeColor":"#000000","backgroundColor":"transparent","width":626,"height":254,"seed":383572892,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":220,"fontFamily":2,"text":"Chess","baseline":203,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Chess"},{"type":"rectangle","version":47,"versionNonce":1213792753,"isDeleted":false,"id":"K_m4cv0zuWbuY9cgxsAox","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-1449.395581280928,"y":502.74959906448737,"strokeColor":"#000000","backgroundColor":"transparent","width":566.7031107703272,"height":204.15391568123596,"seed":211285788,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":101,"versionNonce":1665412127,"isDeleted":false,"id":"gZbFjUmhq0HhzpdnHS95Y","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-1329.7191479505486,"y":523.7121911113186,"strokeColor":"#000000","backgroundColor":"transparent","width":350.885874514669,"height":162.63688344293058,"seed":1292682396,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661601727,"link":null,"locked":false,"fontSize":140.8665919584438,"fontFamily":2,"text":"PLAY","baseline":130.63688344293058,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"PLAY"},{"type":"arrow","version":64,"versionNonce":1990564817,"isDeleted":false,"id":"6GB7NSt84XMyRBROQvUjO","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-424.6260028747474,"y":456.9909627911069,"strokeColor":"#000000","backgroundColor":"transparent","width":774.3769215495154,"height":0,"seed":31283492,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"c2CtO1C2RtEq0VI2m5MyT","focus":0.033457249070631766,"gap":7.519895097953395},"endBinding":null,"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[774.3769215495154,0]]},{"type":"text","version":344,"versionNonce":1693418943,"isDeleted":false,"id":"hqn0IJrGoFoIT4OVPuo4H","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":-313.47303319143873,"y":380.66589838342713,"strokeColor":"#000000","backgroundColor":"transparent","width":580,"height":74,"seed":1436595228,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"rmRBE-1nsSjL7mGIFNX3p","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":58,"fontFamily":1,"text":"User presses \"PLAY\"","baseline":52,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"User presses \"PLAY\""},{"type":"text","version":88,"versionNonce":1208220081,"isDeleted":false,"id":"Nrc--wVYuqYoNm3ADi_kF","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":100,"angle":0,"x":414.6436456822579,"y":106.1103428278712,"strokeColor":"#000000","backgroundColor":"transparent","width":134,"height":43,"seed":828038766,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"Player 2","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Player 2"},{"type":"text","version":89,"versionNonce":630617567,"isDeleted":false,"id":"Jg7aZiHYVnr_I2NcRY4X6","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":100,"angle":0,"x":1036.8936456822576,"y":106.8603428278712,"strokeColor":"#000000","backgroundColor":"transparent","width":72,"height":43,"seed":315611246,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"0:00","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"0:00"},{"type":"rectangle","version":107,"versionNonce":2107349905,"isDeleted":false,"id":"wOOAedKcYMuQiE098Pwzs","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1025.6436456822576,"y":98.8603428278712,"strokeColor":"#000000","backgroundColor":"transparent","width":91.25,"height":55,"seed":673518898,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"qXU7QrOdwj3woYnx-P0tr","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":119,"versionNonce":1881825791,"isDeleted":false,"id":"pn_nHYIV8yQbiNYTYBg6V","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":100,"angle":0,"x":413.4829313965437,"y":884.5627237802522,"strokeColor":"#000000","backgroundColor":"transparent","width":134,"height":43,"seed":690331506,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"Player 1","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Player 1"},{"type":"text","version":131,"versionNonce":1201930609,"isDeleted":false,"id":"utXYV1safku_SRvkSmhyx","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":1,"opacity":100,"angle":0,"x":1041.7329313965433,"y":899.3127237802522,"strokeColor":"#000000","backgroundColor":"transparent","width":72,"height":43,"seed":488360110,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"0:00","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"0:00"},{"type":"rectangle","version":139,"versionNonce":1974192671,"isDeleted":false,"id":"UH5QPmggze14OSeZasiwN","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1030.4829313965433,"y":891.3127237802522,"strokeColor":"#000000","backgroundColor":"transparent","width":91.25,"height":55,"seed":702865714,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"N2TAxS-hYboFrIYRIazQV","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":105,"versionNonce":1667541841,"isDeleted":false,"id":"1-q3K5UZXtmJQmSG8ooQp","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":984.7507885394007,"y":-37.187276219747815,"strokeColor":"#000000","backgroundColor":"transparent","width":97,"height":46,"seed":918480818,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"qXU7QrOdwj3woYnx-P0tr","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"Timer","baseline":33,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Timer"},{"type":"arrow","version":238,"versionNonce":1930112575,"isDeleted":false,"id":"qXU7QrOdwj3woYnx-P0tr","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1033.3222171108291,"y":16.955580923109324,"strokeColor":"#000000","backgroundColor":"transparent","width":45.714285714285666,"height":75.71428571428572,"seed":350412270,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"1-q3K5UZXtmJQmSG8ooQp","focus":0.1513510119067033,"gap":8.142857142857139},"endBinding":{"elementId":"wOOAedKcYMuQiE098Pwzs","focus":0.5790936660464973,"gap":6.190476190476147},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[11.57555097567149,43.200544366809346],[45.714285714285666,75.71428571428572]]},{"type":"text","version":178,"versionNonce":2033522993,"isDeleted":false,"id":"WKv9CaLtBiylCHIjnT19x","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":863.6793599679719,"y":947.9555809231089,"strokeColor":"#000000","backgroundColor":"transparent","width":97,"height":46,"seed":2017478062,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"qXU7QrOdwj3woYnx-P0tr","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"Timer","baseline":33,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Timer"},{"type":"arrow","version":211,"versionNonce":858328671,"isDeleted":false,"id":"N2TAxS-hYboFrIYRIazQV","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":981.036502825115,"y":978.3841523516803,"strokeColor":"#000000","backgroundColor":"transparent","width":101.142857142857,"height":24.571428571428555,"seed":1324412526,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":null,"endBinding":{"elementId":"UH5QPmggze14OSeZasiwN","focus":-0.7097745938492837,"gap":7.499999999999545},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[59.38095238095218,0],[101.142857142857,-24.571428571428555]]},{"type":"rectangle","version":74,"versionNonce":981256977,"isDeleted":false,"id":"nGZmAuCkdIu6CMSTKrnxk","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1139.5841218727337,"y":257.45558092310876,"strokeColor":"#000000","backgroundColor":"transparent","width":552,"height":383.9999999999999,"seed":1376482734,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"0To_g7REXHfgkt5f9Gdyi","type":"arrow"},{"id":"X0PBsBCjtuQFvBJk8xKrc","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false},{"type":"rectangle","version":57,"versionNonce":1356196479,"isDeleted":false,"id":"tO5FZwcxtpATF0HmvAcz-","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1173.5841218727335,"y":290.02700949453725,"strokeColor":"#000000","backgroundColor":"transparent","width":185.71428571428555,"height":72.85714285714283,"seed":1618785390,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"Z_6oEVlNFY7lJEX9_xYhp","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":36,"versionNonce":1068712177,"isDeleted":false,"id":"A22f9FVL4mTXz-Iom2XAc","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1230.7269790155906,"y":304.95558092310864,"strokeColor":"#000000","backgroundColor":"transparent","width":72,"height":43,"seed":1807808814,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"5:00","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"5:00"},{"type":"rectangle","version":79,"versionNonce":953303711,"isDeleted":false,"id":"qMorxlvx8CzRg-JAZynbQ","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1173.584121872733,"y":389.31272378025153,"strokeColor":"#000000","backgroundColor":"transparent","width":185.71428571428555,"height":72.85714285714283,"seed":1757235758,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"9u1NdMWjuwLVg-6MW0vAy","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":80,"versionNonce":643824337,"isDeleted":false,"id":"Pu4WIVZ6NSchCPXbsxmWK","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1220.7269790155904,"y":404.24129520882286,"strokeColor":"#000000","backgroundColor":"transparent","width":92,"height":43,"seed":70662066,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"10:00","baseline":34,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"10:00"},{"type":"text","version":162,"versionNonce":1808701119,"isDeleted":false,"id":"43R22yBWDtn48yXSpLpAi","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1257.8698361584477,"y":504.4555809231087,"strokeColor":"#000000","backgroundColor":"transparent","width":352,"height":92,"seed":3929454,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"Z_6oEVlNFY7lJEX9_xYhp","type":"arrow"},{"id":"9u1NdMWjuwLVg-6MW0vAy","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"Mode selector.\nSpecific modes TBD","baseline":79,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Mode selector.\nSpecific modes TBD"},{"type":"arrow","version":53,"versionNonce":1864005809,"isDeleted":false,"id":"Z_6oEVlNFY7lJEX9_xYhp","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1486.4412647298764,"y":504.31272378025153,"strokeColor":"#000000","backgroundColor":"transparent","width":115.71428571428578,"height":174.28571428571428,"seed":1137239534,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"43R22yBWDtn48yXSpLpAi","focus":0.34480361781819907,"gap":1},"endBinding":{"elementId":"tO5FZwcxtpATF0HmvAcz-","focus":-0.7460440922152546,"gap":11.428571428571445},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[-25.45970967103517,-95.01693003825534],[-115.71428571428578,-174.28571428571428]]},{"type":"arrow","version":60,"versionNonce":7038687,"isDeleted":false,"id":"9u1NdMWjuwLVg-6MW0vAy","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1487.8698361584477,"y":500.0270094945372,"strokeColor":"#000000","backgroundColor":"transparent","width":117.14285714285711,"height":74.28571428571428,"seed":693808946,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"43R22yBWDtn48yXSpLpAi","focus":0.47039897039897105,"gap":4.42857142857153},"endBinding":{"elementId":"qMorxlvx8CzRg-JAZynbQ","focus":-0.33486238532110185,"gap":11.4285714285719},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[-65.71428571428578,-65.71428571428578],[-117.14285714285711,-74.28571428571428]]},{"type":"rectangle","version":51,"versionNonce":462043793,"isDeleted":false,"id":"-pEr_i5e_lTEreHTpHs-j","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1129.4239782558013,"y":152.72373587406412,"strokeColor":"#000000","backgroundColor":"transparent","width":587.8292600668085,"height":726.3890142254133,"seed":253029042,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false},{"type":"arrow","version":44,"versionNonce":1698247423,"isDeleted":false,"id":"X0PBsBCjtuQFvBJk8xKrc","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":1996.472136854344,"y":553.7072668482085,"strokeColor":"#000000","backgroundColor":"transparent","width":293.91463003340436,"height":100.77073029716718,"seed":991697394,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"VR_sTjVGVZLPedz-PfO2l","focus":-0.7185829438770548,"gap":10.496951072621528},"endBinding":{"elementId":"nGZmAuCkdIu6CMSTKrnxk","focus":-0.37770400509001306,"gap":10.973384948205876},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[-145.12638732917003,-38.88649828529742],[-293.91463003340436,-100.77073029716718]]},{"type":"text","version":103,"versionNonce":208060529,"isDeleted":false,"id":"VR_sTjVGVZLPedz-PfO2l","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":2006.9690879269654,"y":507.815803844868,"strokeColor":"#000000","backgroundColor":"transparent","width":805,"height":92,"seed":1054664366,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"X0PBsBCjtuQFvBJk8xKrc","type":"arrow"},{"id":"8uIsDiTX4XbI5R1QkIucP","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":1,"text":"This panel can be replaced with something\nto show move history after the game starts","baseline":79,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"This panel can be replaced with something\nto show move history after the game starts"},{"type":"rectangle","version":123,"versionNonce":1656257311,"isDeleted":false,"id":"uyCcuZWa4rDc_9FPq7hCc","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":2943.404023271656,"y":324.4985005318212,"strokeColor":"#000000","backgroundColor":"transparent","width":552,"height":383.9999999999999,"seed":1324800626,"groupIds":[],"strokeSharpness":"sharp","boundElements":[{"id":"0To_g7REXHfgkt5f9Gdyi","type":"arrow"},{"id":"X0PBsBCjtuQFvBJk8xKrc","type":"arrow"},{"id":"8uIsDiTX4XbI5R1QkIucP","type":"arrow"}],"updated":1702661589956,"link":null,"locked":false},{"type":"text","version":148,"versionNonce":527927889,"isDeleted":false,"id":"9YjuE-2tyIRi6KKKkL3pO","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":2958.0352522328517,"y":404.87244502266725,"strokeColor":"#000000","backgroundColor":"transparent","width":390,"height":86,"seed":381021678,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":36,"fontFamily":2,"text":"1. g4 e6\n2. f3 Qh4#","baseline":77,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"1. g4 e6\n2. f3 Qh4#"},{"type":"arrow","version":39,"versionNonce":1566162751,"isDeleted":false,"id":"8uIsDiTX4XbI5R1QkIucP","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":2812.285115330622,"y":551.3220469889753,"strokeColor":"#000000","backgroundColor":"transparent","width":130.13405080556277,"height":76.34530980593013,"seed":1380932722,"groupIds":[],"strokeSharpness":"round","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"startBinding":{"elementId":"VR_sTjVGVZLPedz-PfO2l","focus":0.6853479416552114,"gap":1},"endBinding":{"elementId":"uyCcuZWa4rDc_9FPq7hCc","focus":0.6842090277570333,"gap":1},"lastCommittedPoint":null,"startArrowhead":null,"endArrowhead":"arrow","points":[[0,0],[74.93384722578548,-20.078463849906484],[130.13405080556277,-76.34530980593013]]},{"type":"text","version":59,"versionNonce":227809329,"isDeleted":false,"id":"I09c4EMCvvE12Glyt8ZHC","fillStyle":"hachure","strokeWidth":1,"strokeStyle":"solid","roughness":0,"opacity":100,"angle":0,"x":3139.7526820058247,"y":335.7236517967424,"strokeColor":"#000000","backgroundColor":"transparent","width":143,"height":55,"seed":959890738,"groupIds":[],"strokeSharpness":"sharp","boundElements":[],"updated":1702661589956,"link":null,"locked":false,"fontSize":48,"fontFamily":2,"text":"Moves","baseline":44,"textAlign":"left","verticalAlign":"top","containerId":null,"originalText":"Moves"}],"files":{}} \ No newline at end of file diff --git a/replit.nix b/replit.nix deleted file mode 100644 index 82dea6f..0000000 --- a/replit.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ pkgs }: { - deps = [ - pkgs.nodePackages.vscode-langservers-extracted - pkgs.nodePackages.typescript-language-server - ]; -} \ No newline at end of file