@ghostmind-dev/sketch 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -22,7 +22,7 @@ SOFTWARE.
22
22
 
23
23
  ---
24
24
 
25
- Bundled glyph data (dist/potion-sketch.iife.js):
25
+ Bundled glyph data (dist/sketch.iife.js):
26
26
 
27
27
  - Latin letters: EMS Felix, by Sheldon B. Michaels, SVG conversion by
28
28
  Windell H. Oskay; a derivative of Felipa by Fontstage. Licensed under the
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @ghostmind-dev/sketch
2
2
 
3
- Hand-written explainer boards for Potion `html` blocks — the look of a maths video
4
- recorded on an iPad. One scene (JSON) renders two ways:
3
+ Hand-written explainer boards for the browser — the look of a maths video recorded on an
4
+ iPad. One scene (JSON) renders two ways:
5
5
 
6
6
  - **animation** — handwriting, brackets, circles and arrows written stroke by stroke,
7
7
  with a play / scrub bar;
@@ -12,15 +12,15 @@ Every mark is an open pen stroke: Latin text uses a single-line handwriting font
12
12
  hand's wobble and overshoot. Nothing is a filled outline, so everything can be revealed
13
13
  along the path the pen took.
14
14
 
15
- One IIFE file (`dist/sketch.iife.js`, ~60 KB) defines `PotionSketch`. It needs no
16
- network, no workers and no fonts, and does nothing until called — it fits the Potion
17
- block sandbox as-is.
15
+ One IIFE file (`dist/sketch.iife.js`, ~60 KB) defines the global `Sketch`. It needs no
16
+ network, no workers and no web fonts, and does nothing until called — so it also runs in
17
+ sandboxed iframes and under a strict Content-Security-Policy (inline it there).
18
18
 
19
- ## In a note
19
+ ## Use it in a page
20
20
 
21
- ````
22
21
  ```html
23
- <!-- potion:use @ghostmind-dev/sketch@0.1.0 -->
22
+ <script src="https://cdn.jsdelivr.net/npm/@ghostmind-dev/sketch@0.2.0/dist/sketch.iife.js"></script>
23
+
24
24
  <script type="text/sketch">
25
25
  {
26
26
  "mode": "animation",
@@ -34,26 +34,27 @@ block sandbox as-is.
34
34
  ]
35
35
  }
36
36
  </script>
37
- <script>PotionSketch.mount();</script>
37
+ <script>Sketch.mount();</script>
38
38
  ```
39
- ````
40
39
 
41
40
  Change `"mode"` to `"static"` for the finished board with no animation.
42
41
 
43
- `mount()` renders every `<script type="text/sketch">` in place. `PotionSketch.board(el, scene, options)`
44
- does the same for one element and returns a controller (`play`, `pause`, `seek(ms)`, `restart`,
45
- `duration`); options (`mode`, `autoplay`, `controls`) override the scene's. A static board's
46
- controller does nothing.
42
+ `Sketch.mount(root?)` renders every `<script type="text/sketch">` in place.
43
+ `Sketch.board(el, scene, options)` does the same for one element (or a selector) and returns a
44
+ controller (`play`, `pause`, `seek(ms)`, `restart`, `duration`); options (`mode`, `autoplay`,
45
+ `controls`) override the scene's. A static board's controller does nothing.
46
+
47
+ The board fills its container's width and sizes its own height, so no `100vh` or fixed height is needed.
47
48
 
48
49
  ## Scene
49
50
 
50
51
  ```jsonc
51
52
  {
52
53
  "mode": "animation", // "animation" (written stroke by stroke) | "static" (finished board)
53
- "width": 1000, // board units across; the board scales to the note's width
54
+ "width": 1000, // board units across; the board scales to its container's width
54
55
  "height": 600, // optional — defaults to the ink's extent plus padding
55
- "background": "#0c0c0e",// or "none" to write on the note itself
56
- "color": "white", // default ink
56
+ "background": "#0c0c0e",// or "none" to draw on the page itself
57
+ "color": "white", // default ink; with "background": "none", white follows the page's text colour
57
58
  "speed": 1, // animation: playback speed multiplier
58
59
  "autoplay": "visible", // animation: true | false | "visible" (first time it scrolls into view)
59
60
  "controls": true, // animation: play / scrub bar under the board
@@ -87,6 +88,8 @@ item); static boards ignore these.
87
88
  edge), an id with a side — `eq.bottom`, `.top`, `.left`, `.right`, `.center`, `.topLeft` … —
88
89
  or `{ "at": "eq.bottom", "dx": 0, "dy": 8 }`.
89
90
 
91
+ An id can only be referenced once the item that defines it has been drawn (earlier in `items`).
92
+
90
93
  ### Text markup
91
94
 
92
95
  | write | get |
@@ -97,6 +100,7 @@ or `{ "at": "eq.bottom", "dx": 0, "dy": 8 }`.
97
100
  | `\sqrt{x}` · `\ul{x}` | root · underline |
98
101
  | `\id{name}{…}` | names part of the text: target it as `textId.name` |
99
102
  | `\alpha` `\partial` `\nabla` `\to` `\approx` … | symbols (or type ρ ∂ ∇ → directly) |
103
+ | `\sin` `\cos` `\log` `\lim` … | written as the plain word |
100
104
  | `\n` | new line |
101
105
 
102
106
  In JSON, backslashes double: `"\\frac{a}{b}"`.
@@ -107,38 +111,21 @@ In JSON, backslashes double: `"\\frac{a}{b}"`.
107
111
  npm install
108
112
  npm run build # glyphs → src/glyphs.generated.ts, bundle → dist/
109
113
  npm run check # typecheck
110
- npm run harness # harness/index.html: every example under the block CSP
114
+ npm run harness # harness/index.html: every example under a strict CSP
111
115
  npm run render -- examples/navier-stokes.json # renders/navier-stokes.png, the finished board
112
116
  npm run render -- scene.json --at=2000,6000,end --debug --width=700
113
117
  ```
114
118
 
115
- `render` screenshots the board in headless Chrome under the sandbox's CSP (set `CHROME` if
116
- Chrome is not at the macOS default path). It is how a scene gets checked before it goes into
117
- a note.
119
+ `render` screenshots the board in headless Chrome under a no-network CSP (set `CHROME` if
120
+ Chrome is not at the macOS default path). It is the quickest way to check a scene's layout.
118
121
 
119
- ## Publishing and registering
122
+ ## Publishing
120
123
 
121
124
  ```bash
122
- npm publish # scoped, public (publishConfig); prepublishOnly checks and builds
123
- ```
124
-
125
- Later releases: `npm version patch && npm publish`. Never republish a version.
126
-
127
- Then add to `BLOCK_LIBRARIES` in Potion's `ui/app/src/lib/block-libraries.ts` (the key is what notes
128
- write; the directive parser splits on the last `@`, so a scoped name works):
129
-
130
- ```ts
131
- '@ghostmind-dev/sketch': {
132
- pkg: '@ghostmind-dev/sketch',
133
- global: 'PotionSketch',
134
- summary: 'Hand-written explainer boards: one scene renders as handwriting written stroke by stroke, or as the finished board.',
135
- when: 'Explaining an equation or an idea the way a teacher would on a board. Plain HTML or mermaid stay the default for ordinary diagrams.',
136
- builds: ['dist/sketch.iife.js'],
137
- },
125
+ npm version <patch|minor> && npm publish # scoped, public (publishConfig); prepublishOnly checks and builds
138
126
  ```
139
127
 
140
- and check `curl -s https://potion.run/api/vendor/@ghostmind-dev/sketch/0.1.0 | head -c 200`
141
- (the exact route shape for scoped names depends on Potion's vendor route).
128
+ Never republish a version. jsDelivr picks new versions up from npm within minutes.
142
129
 
143
130
  ## Licences
144
131
 
@@ -1,23 +1,23 @@
1
- "use strict";var PotionSketch=(()=>{var f3=Object.defineProperty;var R3=Object.getOwnPropertyDescriptor;var T3=Object.getOwnPropertyNames;var C3=Object.prototype.hasOwnProperty;var O3=(e,t)=>{for(var o in t)f3(e,o,{get:t[o],enumerable:!0})},N3=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of T3(t))!C3.call(e,a)&&a!==o&&f3(e,a,{get:()=>t[a],enumerable:!(r=R3(t,a))||r.enumerable});return e};var A3=e=>N3(f3({},"__esModule",{value:!0}),e);var K3={};O3(K3,{board:()=>L3,colors:()=>$3,mount:()=>Z3,version:()=>B3});var x3={0:[728,"397,-644 243,-582 151,-449 110,-318 124,-168 182,-48 309,-18 469,-79 574,-207 618,-371 604,-529 539,-622 463,-644 397,-644"],1:[401,"110,-517 291,-648 194,-18"],2:[697,"172,-564 283,-617 402,-636 484,-595 507,-490 468,-365 361,-238 234,-119 110,-18 230,-18 437,-26 494,-22 525,-26 587,-66"],3:[600,"164,-556 277,-613 406,-622 463,-568 490,-480 459,-392 388,-322 304,-265 398,-256 463,-207 490,-128 480,-40 437,35 357,106 246,119 132,102 44,66"],4:[736,"388,172 511,-644 402,-511 304,-326 168,-164 79,-40 414,-40 529,-48 626,-75"],5:[696,"110,115 268,168 401,164 506,88 547,-44 542,-154 479,-225 374,-252 295,-225 206,-199 268,-578 321,-622 586,-617"],6:[749,"225,-384 313,-433 415,-445 499,-410 534,-340 543,-234 512,-141 436,-44 327,-9 208,-40 147,-106 110,-234 128,-388 190,-542 287,-675 411,-759 534,-794 639,-785"],7:[618,"194,154 274,-123 379,-361 463,-517 508,-609 309,-605 110,-626"],8:[634,"286,-26 163,-75 124,-123 110,-211 171,-344 415,-547 499,-661 516,-763 446,-820 327,-806 239,-755 194,-671 243,-552 423,-398 507,-300 524,-195 467,-88 388,-40 286,-26"],9:[665,"120,115 270,88 401,9 494,-93 534,-238 555,-361 543,-490 498,-582 397,-644 251,-617 159,-533 110,-414 128,-300 198,-221 321,-207 389,-225 436,-265"]," ":[423,""],"!":[460,"356,-1063 330,-816 268,-533 225,-340 184,-234;153,-101 110,-57 149,0 194,-48 153,-101"],'"':[501,"167,-1098 110,-860;391,-1107 344,-851"],"#":[828,"238,40 348,-771;572,-771 467,44;691,-230 110,-234;110,-547 718,-547"],$:[551,"428,-605 441,-622 322,-622 344,-785 322,-630 225,-605 168,-552 150,-490 199,-410 260,-349 335,-256 384,-172 388,-115 353,-62 291,-35 238,-26 216,164 238,-26 154,-26 97,-57"],"%":[1094,"141,-22 357,-277 609,-609 890,-1001;287,-983 184,-935 127,-843 110,-750 145,-648 215,-591 303,-609 418,-693 455,-794 449,-886 410,-948 371,-979 287,-983;807,-423 697,-365 639,-260 631,-168 662,-75 750,-31 865,-62 943,-146 984,-252 957,-353 896,-410 807,-423"],"&":[1054,"502,-150 406,-57 340,-18 221,-48 141,-158 110,-326 133,-521 221,-728 340,-869 481,-935 551,-913 564,-847 521,-767 445,-697 367,-644 176,-547 287,-595 410,-609 591,-609 754,-617 834,-609 621,-613 570,-449 551,-330 539,-199 564,-88 617,-18 648,4 750,-79 865,-207 1011,-388"],"'":[277,"167,-1112 110,-855"],"(":[521,"411,-1040 260,-874 181,-724 120,-517 110,-291 137,-132 190,-22 300,102"],")":[542,"238,-1036 349,-900 415,-736 432,-556 397,-335 327,-141 243,-26 110,102"],"*":[600,"260,-582 344,-966;110,-679 490,-874;162,-909 427,-661"],"+":[816,"110,-406 706,-406;409,-706 409,-101"],",":[335,"180,-4 110,-75 157,-128 225,-57 184,40 118,141"],"-":[569,"110,-410 309,-414 459,-445"],".":[323,"159,-132 110,-84 164,-26 213,-71 159,-132"],"/":[638,"528,-1040 327,-472 110,62"],":":[375,"212,-622 159,-560 212,-503 265,-556 212,-622;163,-119 110,-66 163,-18 208,-62 163,-119"],";":[370,"215,-609 168,-560 215,-511 260,-556 215,-609;184,-4 119,-71 172,-123 229,-62 198,18 110,132"],"<":[759,"622,-582 348,-472 110,-330 415,-150 649,-40"],"=":[862,"162,-441 752,-441;110,-185 709,-185"],">":[745,"110,-44 366,-168 635,-326 410,-463 133,-582"],"?":[585,"157,-110 110,-62 171,0 215,-44 157,-110;132,-246 114,-353 153,-454 255,-560 360,-657 436,-755 475,-878 458,-970 397,-1028 290,-1023 206,-974"],"@":[1098,"926,-84 793,22 627,84 401,62 211,-48 110,-211 119,-484 194,-648 322,-790 502,-874 746,-878 900,-802 988,-626 974,-428 877,-277 754,-207 617,-195 701,-609 635,-459 555,-349 436,-256 375,-225 375,-353 414,-507 502,-599 609,-613 701,-605"],A:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57"],B:[960,"110,-480 136,-640 194,-771 303,-869 436,-921 577,-931 701,-917 815,-864 846,-763 828,-687 776,-599 701,-547 631,-529 604,-533 713,-517 807,-463 850,-379 842,-260 789,-164 692,-84 582,-40 295,-35 255,-18 325,-97 379,-199 506,-917"],C:[758,"692,-895 559,-935 357,-874 224,-710 145,-547 110,-398 114,-256 185,-106 259,-26 383,-9 462,-57 573,-154"],D:[934,"110,-494 128,-657 229,-825 362,-900 498,-935 666,-927 803,-874 899,-728 912,-556 873,-375 793,-234 688,-110 573,-57 477,-31 264,-40 233,-26 290,-79 352,-189 485,-917"],E:[947,"106,-564 137,-750 181,-820 252,-886 349,-921 837,-921 480,-921 433,-724 406,-538 714,-538 402,-538 375,-344 349,-203 300,-101 273,-53 221,-13 283,-44 693,-40 776,-93"],F:[833,"110,-13 233,-18 304,-62 352,-158 413,-533 700,-533 413,-533 481,-931 833,-931 432,-931 313,-913 237,-869 167,-806 124,-706 124,-644 128,-574"],G:[807,"762,-927 590,-958 432,-917 286,-802 198,-661 128,-503 110,-353 132,-172 206,-62 308,-18 423,-44 524,-128 586,-195;467,-517 651,-517 616,-414 569,-101 532,13 481,110 427,185 378,234 657,234"],H:[1115,"57,-560 53,-675 93,-781 164,-869 246,-913 322,-927 476,-931 503,-939 468,-904 428,-763 388,-468 353,-203 308,-101 252,-35 185,-9 93,-18;790,-931 983,-931 948,-917 900,-728 878,-529 410,-529 874,-529 851,-375 829,-242 806,-168 790,-123 750,-71 693,-18 724,-35 909,-35 1005,-101"],I:[631,"40,-560 40,-675 88,-790 168,-878 265,-927 357,-931 476,-935 449,-927 406,-755 357,-490 326,-273 304,-168 265,-101 216,-44 176,0 221,-35 441,-31 521,-97"],J:[630,"-48,150 44,211 164,230 283,146 344,9 476,-820 498,-890 538,-944 517,-927 322,-921 203,-860 137,-767 115,-693 110,-564"],K:[1054,"71,-564 75,-697 154,-851 269,-927 371,-935 517,-935 494,-917 433,-714 392,-392 344,-132 304,-62 252,-18 176,-4 97,-13;944,-904 864,-921 776,-904 648,-816 574,-683 552,-574 552,-476 697,-211 935,123"],L:[803,"648,-895 547,-944 449,-921 349,-837 295,-741 246,-365 221,-176 189,-119 79,-18 146,-44 242,-31 365,48 507,150 661,221 776,225 843,164"],M:[1318,"106,-564 119,-701 181,-833 269,-900 365,-927 494,-931 648,-921;31,-13 150,-13 256,-66 304,-123 626,-921 661,-913 652,-66 755,-277 869,-538 974,-741 1032,-837 1128,-927 1112,-820 1085,-507 1081,-277 1098,-18 1208,-88"],N:[1019,"88,-568 106,-706 158,-829 242,-904 344,-931 533,-931;132,-35 242,-35 304,-71 357,-150 379,-260 410,-441 494,-931 538,-927 617,-697 806,-106 820,-66 802,-13 851,-101 882,-221 974,-732 988,-837 1028,-931 1054,-948 997,-931 843,-931"],O:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31"],P:[767,"26,-517 53,-697 141,-816 283,-904 402,-931 533,-935 666,-909 755,-837 785,-724 741,-605 640,-507 568,-490 517,-494;437,-931 384,-781 353,-542 283,-185 260,-119 221,-57 146,-4 189,-26 398,-31 476,-75"],Q:[851,"225,-326 154,-388 115,-538 154,-697 221,-798 322,-886 441,-917 533,-927 640,-864 697,-750 710,-626 687,-463 630,-349 511,-207 414,-128 318,-75 221,-53 62,-48 88,-62 277,-40 388,18 494,75 582,102 693,84 785,35"],R:[958,"498,-84 414,-35 246,-44 207,-18 256,-75 326,-172 441,-833 472,-927;62,-498 71,-626 137,-771 230,-864 340,-913 459,-927 560,-931 697,-909 776,-855 820,-755 806,-661 745,-578 671,-525 605,-511 517,-511 644,-291 816,-31 944,128"],S:[706,"84,-66 195,-18 371,-26 441,-88 494,-172 517,-277 494,-375 269,-675 242,-767 269,-869 349,-917 437,-944 538,-935 640,-913"],T:[864,"48,-568 48,-683 97,-798 168,-878 252,-921 829,-921 503,-921 463,-771 423,-454 379,-207 322,-93 287,-48 225,-9 273,-26 484,-35 560,-88"],U:[1103,"48,-560 48,-679 93,-790 172,-886 246,-921 419,-927 490,-931 468,-921 410,-741 371,-441 344,-199 375,-75 423,-35 498,-35 582,-88 675,-221 736,-326 794,-433 816,-472 904,-909 931,-931 904,-904 798,-398 781,-207 794,-115 837,-48 882,-40 939,-35 993,-88"],V:[993,"22,-560 40,-687 97,-820 195,-895 300,-927 392,-913 441,-825 476,-679 490,-507 494,-335 498,-176 490,-31 599,-230 728,-468 864,-741 921,-882 900,-917 806,-917"],W:[1358,"48,-564 71,-693 137,-829 256,-913 361,-931 433,-895 484,-794 511,-661 511,-168 503,-44 578,-181 706,-419 820,-701 882,-847 944,-890 895,-825 878,-657 882,-414 927,-40 1050,-269 1147,-463 1235,-661 1280,-794 1288,-874 1266,-904 1182,-904"],X:[1124,"48,-35 181,-31 265,-71 375,-172 503,-353 697,-679 806,-851 864,-913 909,-931 979,-931 1040,-909;150,-622 158,-718 203,-829 265,-904 365,-931 433,-935 480,-874 517,-806 636,-318 728,-88 776,-31 825,-9 890,-40 979,-106"],Y:[979,"57,-636 79,-763 128,-869 189,-927 295,-931 353,-874 406,-714 449,-564 503,-365 552,-211;776,-909 878,-904 895,-869 851,-759 578,-260 445,-26 318,132 238,189 168,195 22,115"],Z:[979,"176,-683 176,-767 225,-878 273,-935 388,-958 480,-935 582,-909 675,-890 767,-890 833,-927 750,-847 542,-574 375,-361 256,-230 84,-88 115,-97 225,-88 326,-35 599,132 718,164 790,150 869,57"],"[":[577,"467,-1046 264,-1046 110,106 313,102"],"\\":[577,"110,-1023 317,-357 467,62"],"]":[568,"265,-1046 458,-1046 304,97 110,106"],"^":[854,"110,-433 444,-860 744,-428"],_:[868,"110,35 758,35"],"`":[454,"110,-962 202,-927 260,-878 344,-781"],a:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353"],b:[463,"353,-1063 234,-1050 123,-958 71,-837 4,-260 -13,-132 -22,-62 -4,-4 84,-18 225,-115 295,-269 326,-406 330,-525 322,-622 203,-503 79,-326 -9,-137"],c:[433,"335,-609 277,-640 185,-622 84,-511 44,-423 9,-330 4,-225 13,-123 44,-48 106,9 207,-84 318,-203 433,-357"],d:[626,"666,-1054 560,-1054 463,-997 406,-900 375,-767 353,-605 340,-517 273,-388 181,-225 93,-101 0,-18 -18,-181 4,-375 57,-498 102,-560 168,-595 238,-613 308,-605 340,-568 322,-406 304,-211 265,-9 365,-88 484,-234 578,-357"],e:[406,"4,-300 102,-361 221,-480 265,-542 277,-609 252,-636 195,-640 102,-578 31,-476 -9,-326 -26,-207 -4,-110 44,-40 88,4 238,-150 335,-260 402,-357"],f:[458,"-189,242 -110,252 -26,221 53,132 84,31 132,-340 164,-605 53,-605 349,-617 164,-609 176,-736 203,-874 269,-993 330,-1050 410,-1067 441,-1063 498,-1050"],g:[440,"-88,234 -75,234 48,238 141,211 199,154 252,26 330,-609 181,-613 106,-574 35,-490 0,-365 -22,-242 -31,-181 -31,-115 -22,-22 57,-84 158,-221 238,-335 291,-459 330,-556"],h:[556,"344,-1063 252,-1063 168,-1023 75,-900 53,-763 26,-595 0,-392 -22,-230 -57,-31 13,-195 115,-371 216,-517 295,-599 330,-609 344,-533 304,-357 269,-195 246,-97 234,0 361,-110 490,-260 552,-357"],i:[273,"-48,-538 22,-605 57,-622 -4,-252 -31,-123 -31,-18 75,-110 158,-203 277,-357;93,-890 93,-816 79,-802"],j:[181,"-335,238 -216,234 -128,168 -75,79 -40,-62 -4,-265 18,-454 40,-630 -35,-578 -66,-542;102,-900 88,-847 66,-825"],k:[582,"357,-1058 260,-1058 168,-1009 97,-927 62,-806 -44,-13 31,-344 128,-517 199,-599 283,-636 340,-636 365,-605 361,-529 304,-449 246,-398 150,-340 277,-13 402,-128 498,-238 582,-357"],l:[313,"353,-1054 287,-1067 185,-1028 97,-921 66,-790 -31,-150 -44,-4 62,-97 199,-260 269,-357"],m:[806,"-71,-552 40,-636 18,-468 -13,-283 -35,-123 -48,-44 40,-238 128,-410 211,-533 283,-609 318,-622 340,-595 308,-459 260,-221 221,-13 265,-158 340,-308 441,-468 517,-578 578,-626 609,-609 564,-384 521,-199 498,-84 494,-4 617,-110 718,-234 806,-357"],n:[626,"-4,-547 79,-617 119,-644 97,-538 71,-353 44,-225 26,-106 18,-31 22,-9 18,-101 110,-230 181,-365 260,-480 344,-578 388,-630 410,-630 423,-538 388,-365 357,-234 330,-132 308,-4 388,-71 503,-189 564,-277 626,-357"],o:[441,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4"],p:[406,"-62,-556 48,-636 -66,115 -101,225 -234,318 13,185;0,-234 13,-242 53,-379 146,-507 230,-595 277,-630 300,-507 295,-379 265,-242 221,-123 168,-48 97,-22 40,-31 4,-57 -31,-115"],q:[419,"398,-630 330,-533 260,-375 154,-185 88,-97 -4,-18 -22,-195 9,-392 53,-503 119,-582 238,-617 322,-622 365,-609 277,-132 225,181 199,238 75,322 322,195"],r:[322,"-71,-542 9,-609 53,-640 9,-402 -26,-185 -31,-79 -31,-35 9,-176 71,-314 123,-454 189,-564 225,-609 273,-630 330,-626"],s:[445,"365,-609 283,-648 211,-636 141,-582 115,-517 141,-433 207,-353 265,-273 300,-195 295,-123 242,-57 168,-13 106,4 26,-31"],t:[256,"40,-706 35,-622 -66,-613 35,-626 221,-630 35,-626 9,-384 -18,-221 -44,-123 -75,-4 26,-88 154,-230 246,-357"],u:[552,"-66,-556 26,-622 53,-640 13,-463 -4,-295 -18,-195 -18,-66 -18,-18 57,-88 158,-221 225,-344 295,-484 357,-626 314,-449 277,-269 256,-119 246,-13 353,-101 454,-225 556,-357"],v:[353,"-128,-547 -123,-547 -66,-609 -4,-640 9,-164 22,-44 88,-123 158,-252 221,-402 246,-484 265,-640"],w:[574,"-137,-552 -66,-613 -13,-640 4,-626 -4,-221 4,-62 9,-26 93,-132 158,-260 211,-402 238,-459 295,-640 260,-605 273,-132 283,-35 361,-123 433,-256 490,-392 521,-498 533,-609 525,-640"],x:[599,"84,-552 154,-609 211,-640 414,-9 484,-48 529,-101;40,-22 106,-31 141,-62 189,-123 353,-384 449,-564 498,-609 568,-622"],y:[398,"-71,-556 -57,-560 9,-609 53,-640 9,-392 -18,-168 -4,-31 106,-150 199,-295 265,-419 353,-617 308,-410 269,-115 234,79 195,168 141,216 62,242 -84,230"],z:[547,"123,-547 216,-609 273,-617 388,-605 468,-605 53,-9 141,-44 256,-35 375,-13 423,-4 480,-48"],"{":[546,"436,-1050 335,-1005 278,-904 251,-741 237,-595 212,-517 180,-498 110,-476 163,-445 225,-379 225,-291 176,-101 159,22 180,93 251,146"],"|":[220,"110,-1128 110,234"],"}":[538,"256,-1050 344,-1001 361,-948 353,-812 334,-687 330,-578 344,-517 383,-490 428,-468 361,-445 309,-402 273,-318 260,-181 260,-48 246,44 203,102 141,150 110,154"],"~":[930,"110,-335 217,-392 313,-414 420,-392 533,-357 617,-326 715,-322 820,-371"],"\xA0":[529,""],"\xA1":[468,"110,0 137,-246 198,-529 243,-724 282,-829;313,-962 358,-1005 319,-1063 274,-1014 313,-962"],"\xA2":[543,"335,-609 277,-640 185,-622 84,-511 44,-423 9,-330 4,-225 13,-123 44,-48 106,9 207,-84 318,-203 433,-357;379,-952 176,-384 -40,150"],"\xA3":[803,"88,-410 287,-414 437,-445;648,-895 547,-944 449,-921 349,-837 295,-741 246,-365 221,-176 189,-119 79,-18 146,-44 242,-31 365,48 507,150 661,221 776,225 843,164"],"\xA5":[647,"110,-983 66,-970 71,-909 137,-697 211,-511 230,-454 199,-269 164,-158 132,-93 150,-88 189,-164 185,-207;230,-472 238,-472 384,-599 547,-771 630,-886 687,-1001;75,-242 48,-211 318,-221;75,-419 48,-388 318,-398"],"\xA6":[70,"110,-339 110,70;110,-1000 110,-591"],"\xA8":[661,"157,-1040 110,-991 161,-934 210,-979 157,-1040;497,-1056 450,-1007 502,-949 551,-994 497,-1056"],"\xA9":[953,"137,-630 110,-480 128,-340 190,-195 313,-71 475,-13 652,-31 772,-101 873,-242 908,-402 908,-560 869,-710 811,-825 736,-890 621,-931 489,-944 352,-909 237,-812 137,-630;652,-283 620,-252 580,-231 516,-223 439,-245 377,-293 340,-357 326,-426 331,-498 344,-563 390,-636 452,-678 509,-687 554,-690 593,-679 621,-661 642,-645"],\u00AA:[356,"296,-1113 219,-1119 165,-1093 126,-1023 110,-932 110,-862 116,-827 158,-869 218,-952 256,-1014 284,-1074 296,-1105 266,-967 250,-900 246,-862 242,-825 287,-854 364,-946 396,-993"],"\xAB":[611,"314,-466 204,-378 109,-265 231,-120 325,-32;490,-466 381,-378 286,-265 407,-120 501,-32"],"\xAE":[953,"137,-630 110,-480 128,-340 190,-195 313,-71 475,-13 652,-31 772,-101 873,-242 908,-402 908,-560 869,-710 811,-825 736,-890 621,-931 489,-944 352,-909 237,-812 137,-630;359,-227 363,-678 324,-659 383,-683 439,-693 509,-693 569,-657 601,-606 611,-549 582,-490 544,-454 513,-441 445,-454 368,-441 429,-430 508,-438 529,-372 571,-298 608,-242 624,-231 648,-234"],"\xB0":[243,"171,-763 150,-771 134,-784 113,-825 110,-876 124,-928 145,-967 172,-998 196,-1021 228,-1032 255,-1018 278,-976 283,-921 276,-875 257,-834 228,-797 201,-776 171,-763"],"\xB1":[920,"460,-567 460,0;193,-300 727,-300;193,0 727,0"],"\xB2":[308,"141,-1098 197,-1124 256,-1134 298,-1113 309,-1061 289,-998 236,-935 172,-875 110,-825 170,-825 274,-829 302,-827 317,-829 348,-848"],"\xB3":[292,"169,-1093 226,-1123 290,-1127 318,-1100 332,-1056 317,-1012 282,-977 240,-948 286,-944 318,-920 332,-879 328,-836 306,-798 267,-763 211,-756 153,-766 110,-783"],"\xB4":[306,"207,-1068 198,-1015 172,-949 141,-900 110,-861"],"\xB7":[342,"169,-582 110,-524 173,-455 232,-508 169,-582"],"\xB9":[160,"110,-1074 200,-1140 152,-825"],\u00BA:[243,"171,-763 150,-771 134,-784 113,-825 110,-876 124,-928 145,-967 172,-998 196,-1021 228,-1032 255,-1018 278,-976 283,-921 276,-875 257,-834 228,-797 201,-776 171,-763"],"\xBB":[579,"83,-35 185,-134 293,-260 203,-371 92,-466;259,-35 361,-134 469,-260 379,-371 269,-466"],"\xBC":[997,"101,-839 209,-918 151,-540;820,-1040 617,-472 402,62;895,103 969,-386 902,-307 844,-196 762,-98 710,-24 910,-24 979,-29 1037,-45"],"\xBD":[974,"101,-839 209,-918 151,-540;820,-1040 617,-472 402,62;764,-339 830,-371 902,-381 952,-357 966,-294 942,-220 878,-143 802,-71 728,-11 799,-11 924,-16 958,-13 976,-16 1014,-40"],"\xBE":[997,"98,-862 167,-897 244,-902 277,-871 294,-818 276,-764 232,-722 182,-687 238,-683 277,-654 294,-606 288,-553 262,-508 214,-466 148,-458 79,-469 26,-490;820,-1040 617,-472 402,62;895,103 969,-386 902,-307 844,-196 762,-98 710,-24 910,-24 979,-29 1037,-45"],"\xBF":[585,"427,-917 475,-966 413,-1028 370,-983 427,-917;454,-781 471,-675 432,-574 329,-468 224,-371 149,-273 110,-150 126,-57 188,0 294,-4 378,-53"],\u00C0:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;476,-1294 511,-1228 587,-1158"],\u00C1:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;841,-1427 833,-1375 806,-1308 776,-1260 745,-1219"],\u00C2:[1055,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;603,-1166 769,-1298 945,-1166"],\u00C3:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;398,-1159 473,-1201 545,-1218 622,-1201 704,-1176 764,-1154 836,-1151 911,-1186"],\u00C4:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;511,-1298 462,-1249 515,-1191 563,-1236 511,-1298;820,-1291 771,-1242 825,-1186 874,-1229 820,-1291"],\u00C5:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;680,-1200 659,-1208 644,-1221 623,-1261 620,-1312 634,-1365 655,-1404 682,-1434 706,-1457 736,-1468 763,-1454 787,-1413 792,-1358 784,-1310 767,-1271 736,-1233 710,-1212 680,-1200"],\u00C8:[947,"106,-564 137,-750 181,-820 252,-886 349,-921 837,-921 480,-921 433,-724 406,-538 714,-538 402,-538 375,-344 349,-203 300,-101 273,-53 221,-13 283,-44 693,-40 776,-93;419,-1259 455,-1193 529,-1123"],\u00C9:[947,"106,-564 137,-750 181,-820 252,-886 349,-921 837,-921 480,-921 433,-724 406,-538 714,-538 402,-538 375,-344 349,-203 300,-101 273,-53 221,-13 283,-44 693,-40 776,-93;783,-1394 773,-1341 746,-1275 715,-1226 685,-1187"],\u00CA:[947,"106,-564 137,-750 181,-820 252,-886 349,-921 837,-921 480,-921 433,-724 406,-538 714,-538 402,-538 375,-344 349,-203 300,-101 273,-53 221,-13 283,-44 693,-40 776,-93;392,-1102 547,-1226 713,-1102"],\u00CB:[948,"106,-564 137,-750 181,-820 252,-886 349,-921 837,-921 480,-921 433,-724 406,-538 714,-538 402,-538 375,-344 349,-203 300,-101 273,-53 221,-13 283,-44 693,-40 776,-93;409,-1303 361,-1254 413,-1197 462,-1242 409,-1303;808,-1340 759,-1292 812,-1235 860,-1278 808,-1340"],\u00CC:[631,"40,-560 40,-675 88,-790 168,-878 265,-927 357,-931 476,-935 449,-927 406,-755 357,-490 326,-273 304,-168 265,-101 216,-44 176,0 221,-35 441,-31 521,-97;252,-1271 287,-1204 361,-1134"],\u00CD:[640,"40,-560 40,-675 88,-790 168,-878 265,-927 357,-931 476,-935 449,-927 406,-755 357,-490 326,-273 304,-168 265,-101 216,-44 176,0 221,-35 441,-31 521,-97;605,-1417 596,-1364 570,-1298 539,-1249 508,-1210"],\u00CE:[640,"40,-560 40,-675 88,-790 168,-878 265,-927 357,-931 476,-935 449,-927 406,-755 357,-490 326,-273 304,-168 265,-101 216,-44 176,0 221,-35 441,-31 521,-97;281,-1158 444,-1288 619,-1158"],\u00CF:[671,"40,-560 40,-675 88,-790 168,-878 265,-927 357,-931 476,-935 449,-927 406,-755 357,-490 326,-273 304,-168 265,-101 216,-44 176,0 221,-35 441,-31 521,-97;277,-1294 230,-1246 281,-1189 330,-1232 277,-1294;658,-1302 609,-1253 662,-1196 711,-1240 658,-1302"],\u00D0:[934,"225,-410 423,-414 573,-445;110,-494 128,-657 229,-825 362,-900 498,-935 666,-927 803,-874 899,-728 912,-556 873,-375 793,-234 688,-110 573,-57 477,-31 264,-40 233,-26 290,-79 352,-189 485,-917"],\u00D1:[1019,"88,-568 106,-706 158,-829 242,-904 344,-931 533,-931;132,-35 242,-35 304,-71 357,-150 379,-260 410,-441 494,-931 538,-927 617,-697 806,-106 820,-66 802,-13 851,-101 882,-221 974,-732 988,-837 1028,-931 1054,-948 997,-931 843,-931;482,-1133 556,-1172 623,-1187 696,-1172 776,-1148 834,-1126 902,-1123 974,-1156"],\u00D2:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;304,-1259 339,-1193 413,-1121"],\u00D3:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;679,-1449 671,-1396 644,-1330 613,-1281 582,-1242"],\u00D4:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;314,-1084 465,-1204 626,-1084"],\u00D5:[751,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;265,-1184 343,-1226 414,-1243 493,-1226 578,-1201 641,-1177 713,-1175 791,-1211"],\u00D6:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;309,-1331 260,-1282 314,-1225 361,-1270 309,-1331;686,-1354 638,-1305 690,-1247 739,-1292 686,-1354"],"\xD7":[853,"193,-533 660,-67;660,-533 193,-67"],\u00D8:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;601,-1077 381,-462 147,114"],\u00D9:[1103,"48,-560 48,-679 93,-790 172,-886 246,-921 419,-927 490,-931 468,-921 410,-741 371,-441 344,-199 375,-75 423,-35 498,-35 582,-88 675,-221 736,-326 794,-433 816,-472 904,-909 931,-931 904,-904 798,-398 781,-207 794,-115 837,-48 882,-40 939,-35 993,-88;479,-1291 514,-1225 589,-1155"],\u00DA:[1103,"48,-560 48,-679 93,-790 172,-886 246,-921 419,-927 490,-931 468,-921 410,-741 371,-441 344,-199 375,-75 423,-35 498,-35 582,-88 675,-221 736,-326 794,-433 816,-472 904,-909 931,-931 904,-904 798,-398 781,-207 794,-115 837,-48 882,-40 939,-35 993,-88;865,-1444 857,-1392 830,-1326 799,-1277 769,-1238"],\u00DB:[1103,"48,-560 48,-679 93,-790 172,-886 246,-921 419,-927 490,-931 468,-921 410,-741 371,-441 344,-199 375,-75 423,-35 498,-35 582,-88 675,-221 736,-326 794,-433 816,-472 904,-909 931,-931 904,-904 798,-398 781,-207 794,-115 837,-48 882,-40 939,-35 993,-88;472,-1081 623,-1201 784,-1081"],\u00DC:[1103,"48,-560 48,-679 93,-790 172,-886 246,-921 419,-927 490,-931 468,-921 410,-741 371,-441 344,-199 375,-75 423,-35 498,-35 582,-88 675,-221 736,-326 794,-433 816,-472 904,-909 931,-931 904,-904 798,-398 781,-207 794,-115 837,-48 882,-40 939,-35 993,-88;494,-1309 447,-1260 500,-1203 547,-1247 494,-1309;854,-1347 805,-1298 858,-1240 907,-1285 854,-1347"],\u00DD:[979,"57,-636 79,-763 128,-869 189,-927 295,-931 353,-874 406,-714 449,-564 503,-365 552,-211;776,-909 878,-904 895,-869 851,-759 578,-260 445,-26 318,132 238,189 168,195 22,115;797,-1399 788,-1345 762,-1280 731,-1231 700,-1191"],\u00E0:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;72,-956 107,-890 182,-819"],\u00E1:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;444,-1049 434,-997 407,-930 377,-882 346,-841"],\u00E2:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;88,-847 252,-979 426,-847"],\u00E3:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;32,-819 104,-858 171,-874 244,-858 322,-833 379,-812 447,-809 519,-843"],\u00E4:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;227,-1043 179,-994 232,-937 280,-980 227,-1043;526,-998 479,-949 531,-892 580,-937 526,-998"],\u00E5:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;225,-869 204,-878 189,-890 168,-930 165,-981 179,-1035 200,-1072 227,-1103 251,-1126 281,-1138 308,-1123 332,-1082 337,-1026 329,-980 312,-941 281,-902 255,-881 225,-869"],\u00E8:[406,"4,-300 102,-361 221,-480 265,-542 277,-609 252,-636 195,-640 102,-578 31,-476 -9,-326 -26,-207 -4,-110 44,-40 88,4 238,-150 335,-260 402,-357;-17,-966 19,-900 94,-829"],\u00E9:[406,"4,-300 102,-361 221,-480 265,-542 277,-609 252,-636 195,-640 102,-578 31,-476 -9,-326 -26,-207 -4,-110 44,-40 88,4 238,-150 335,-260 402,-357;367,-1085 358,-1032 332,-966 301,-917 270,-878"],\u00EA:[406,"4,-300 102,-361 221,-480 265,-542 277,-609 252,-636 195,-640 102,-578 31,-476 -9,-326 -26,-207 -4,-110 44,-40 88,4 238,-150 335,-260 402,-357;26,-813 188,-942 360,-813"],\u00EB:[443,"4,-300 102,-361 221,-480 265,-542 277,-609 252,-636 195,-640 102,-578 31,-476 -9,-326 -26,-207 -4,-110 44,-40 88,4 238,-150 335,-260 402,-357;59,-1002 10,-953 63,-897 112,-941 59,-1002;431,-1022 382,-974 435,-917 483,-960 431,-1022"],\u00EC:[273,"-48,-538 22,-605 57,-622 -4,-252 -31,-123 -31,-18 75,-110 158,-203 277,-357;-71,-952 -35,-886 40,-816"],\u00ED:[273,"-48,-538 22,-605 57,-622 -4,-252 -31,-123 -31,-18 75,-110 158,-203 277,-357;294,-1089 286,-1036 259,-970 228,-921 197,-882"],\u00EE:[273,"-48,-538 22,-605 57,-622 -4,-252 -31,-123 -31,-18 75,-110 158,-203 277,-357;-31,-783 121,-904 284,-783"],\u00EF:[407,"-48,-538 22,-605 57,-622 -4,-252 -31,-123 -31,-18 75,-110 158,-203 277,-357;63,-1035 14,-987 67,-930 116,-973 63,-1035;393,-1057 344,-1008 398,-951 447,-995 393,-1057"],\u00F1:[626,"-4,-547 79,-617 119,-644 97,-538 71,-353 44,-225 26,-106 18,-31 22,-9 18,-101 110,-230 181,-365 260,-480 344,-578 388,-630 410,-630 423,-538 388,-365 357,-234 330,-132 308,-4 388,-71 503,-189 564,-277 626,-357;33,-815 108,-855 176,-871 251,-855 332,-830 391,-809 459,-805 533,-840"],\u00F2:[441,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;10,-967 45,-900 120,-830"],\u00F3:[441,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;392,-1106 384,-1053 357,-987 326,-938 295,-899"],\u00F4:[441,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;37,-819 200,-951 374,-819"],\u00F5:[486,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;6,-868 83,-910 154,-925 232,-910 316,-883 378,-861 448,-858 526,-893"],\u00F6:[516,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;122,-974 73,-927 126,-869 175,-913 122,-974;504,-979 455,-930 508,-872 556,-917 504,-979"],"\xF7":[987,"493,-600 460,-567 493,-533 527,-567 493,-600;193,-300 793,-300;493,-67 460,-33 493,0 527,-33 493,-67"],\u00F8:[441,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;328,-728 185,-330 34,43"],\u00F9:[552,"-66,-556 26,-622 53,-640 13,-463 -4,-295 -18,-195 -18,-66 -18,-18 57,-88 158,-221 225,-344 295,-484 357,-626 314,-449 277,-269 256,-119 246,-13 353,-101 454,-225 556,-357;77,-962 112,-895 186,-825"],\u00FA:[552,"-66,-556 26,-622 53,-640 13,-463 -4,-295 -18,-195 -18,-66 -18,-18 57,-88 158,-221 225,-344 295,-484 357,-626 314,-449 277,-269 256,-119 246,-13 353,-101 454,-225 556,-357;423,-1082 414,-1029 388,-963 357,-914 326,-875"],\u00FB:[552,"-66,-556 26,-622 53,-640 13,-463 -4,-295 -18,-195 -18,-66 -18,-18 57,-88 158,-221 225,-344 295,-484 357,-626 314,-449 277,-269 256,-119 246,-13 353,-101 454,-225 556,-357;61,-797 214,-918 378,-797"],\u00FC:[590,"-66,-556 26,-622 53,-640 13,-463 -4,-295 -18,-195 -18,-66 -18,-18 57,-88 158,-221 225,-344 295,-484 357,-626 314,-449 277,-269 256,-119 246,-13 353,-101 454,-225 556,-357;130,-974 82,-925 135,-868 183,-913 130,-974;577,-984 528,-937 581,-879 630,-923 577,-984"],\u00FD:[398,"-71,-556 -57,-560 9,-609 53,-640 9,-392 -18,-168 -4,-31 106,-150 199,-295 265,-419 353,-617 308,-410 269,-115 234,79 195,168 141,216 62,242 -84,230;370,-1102 361,-1049 335,-983 304,-934 273,-895"],\u00FF:[488,"-71,-556 -57,-560 9,-609 53,-640 9,-392 -18,-168 -4,-31 106,-150 199,-295 265,-419 353,-617 308,-410 269,-115 234,79 195,168 141,216 62,242 -84,230;162,-1047 113,-998 167,-941 214,-986 162,-1047;476,-1015 427,-966 480,-910 528,-953 476,-1015"],"\u2013":[742,"110,-410 408,-414 632,-445"],"\u2014":[917,"110,-410 507,-414 807,-445"],"\u201C":[461,"101,-988 105,-952 119,-904 153,-837;300,-988 304,-952 318,-904 351,-837"],"\u201D":[462,"154,-1004 150,-956 138,-897 124,-854 110,-818;352,-1004 349,-956 336,-897 322,-854 308,-818"],"\u2039":[434,"314,-466 204,-378 109,-265 231,-120 325,-32"],"\u203A":[403,"83,-35 185,-134 293,-260 203,-371 92,-466"],"\u20AC":[763,"697,-895 564,-935 362,-874 229,-710 150,-547 115,-398 119,-256 190,-106 264,-26 388,-9 467,-57 578,-154;110,-322 309,-326 459,-357;110,-498 309,-503 459,-533"],\u0178:[979,"57,-636 79,-763 128,-869 189,-927 295,-931 353,-874 406,-714 449,-564 503,-365 552,-211;776,-909 878,-904 895,-869 851,-759 578,-260 445,-26 318,132 238,189 168,195 22,115;444,-1301 395,-1252 448,-1196 497,-1239 444,-1301;811,-1345 763,-1296 815,-1239 864,-1284 811,-1345"],\u00DF:[490,"-176,78 -176,78 -38,40 -31,-32 0,-307 32,-377 79,-852 152,-1119 381,-994 376,-787 370,-579 123,-452 189,-479 254,-506 380,-424 278,-211 176,1 30,-15 30,-15"],"\xB8":[360,"249,-20 249,11 249,23 250,34 248,46 245,64 221,115 208,129 191,146 140,167 110,159"],\u00E7:[433,"106,9 106,40 106,51 107,63 105,74 102,92 78,143 65,157 48,174 -3,195 -33,188;335,-609 277,-640 185,-622 84,-511 44,-423 9,-330 4,-225 13,-123 44,-48 106,9 207,-84 318,-203 433,-357"],\u00C7:[758,"403,-20 403,11 403,23 404,34 402,46 399,64 375,115 362,129 345,146 294,167 264,159;692,-895 559,-935 357,-874 224,-710 145,-547 110,-398 114,-256 185,-106 259,-26 383,-9 462,-57 573,-154"],\u0391:[720,"360,-700 93,0;360,-700 627,0;193,-233 527,-233"],\u0392:[787,"193,-700 193,0;193,-700 493,-700 593,-667 627,-633 660,-567 660,-500 627,-433 593,-400 493,-367;193,-367 493,-367 593,-333 627,-300 660,-233 660,-133 627,-67 593,-33 493,0 193,0"],\u03A7:[787,"160,-700 627,0;160,0 627,-700"],\u0394:[720,"360,-700 93,0;360,-700 627,0;93,0 627,0"],\u0395:[720,"193,-700 193,0;193,-700 627,-700;193,-367 460,-367;193,0 627,0"],\u03A6:[787,"393,-700 393,0;327,-533 227,-500 193,-467 160,-400 160,-300 193,-233 227,-200 327,-167 460,-167 560,-200 593,-233 627,-300 627,-400 593,-467 560,-500 460,-533 327,-533"],\u0393:[587,"193,-700 193,0;193,-700 593,-700"],\u0397:[853,"193,-700 193,0;660,-700 660,0;193,-367 660,-367"],\u0399:[387,"193,-700 193,0"],\u039A:[787,"193,-700 193,0;660,-700 193,-233;360,-400 660,0"],\u039B:[720,"360,-700 93,0;360,-700 627,0"],\u039C:[920,"193,-700 193,0;193,-700 460,0;727,-700 460,0;727,-700 727,0"],\u039D:[853,"193,-700 193,0;193,-700 660,0;660,-700 660,0"],\u039F:[853,"360,-700 293,-667 227,-600 193,-533 160,-433 160,-267 193,-167 227,-100 293,-33 360,0 493,0 560,-33 627,-100 660,-167 693,-267 693,-433 660,-533 627,-600 560,-667 493,-700 360,-700"],\u03A0:[853,"193,-700 193,0;660,-700 660,0;193,-700 660,-700"],\u0398:[853,"360,-700 293,-667 227,-600 193,-533 160,-433 160,-267 193,-167 227,-100 293,-33 360,0 493,0 560,-33 627,-100 660,-167 693,-267 693,-433 660,-533 627,-600 560,-667 493,-700 360,-700;327,-367 527,-367"],\u03A1:[787,"193,-700 193,0;193,-700 493,-700 593,-667 627,-633 660,-567 660,-467 627,-400 593,-367 493,-333 193,-333"],\u03A3:[720,"127,-700 360,-367 127,0;127,-700 593,-700;127,0 593,0"],\u03A4:[653,"327,-700 327,0;93,-700 560,-700"],\u03A5:[720,"127,-533 127,-600 160,-667 193,-700 260,-700 293,-667 327,-600 360,-467 360,0;593,-533 593,-600 560,-667 527,-700 460,-700 427,-667 393,-600 360,-467"],\u03A9:[787,"160,0 293,0 193,-233 160,-367 160,-500 193,-600 260,-667 360,-700 427,-700 527,-667 593,-600 627,-500 627,-367 593,-233 493,0 627,0"],\u039E:[720,"127,-700 593,-700;260,-367 460,-367;127,0 593,0"],\u03A8:[853,"427,-700 427,0;127,-500 160,-500 193,-467 227,-333 260,-267 293,-233 393,-200 460,-200 560,-233 593,-267 627,-333 660,-467 693,-500 727,-500"],\u0396:[787,"627,-700 160,0;160,-700 627,-700;160,0 627,0"],\u03B1:[853,"360,-467 293,-433 227,-367 193,-300 160,-200 160,-100 193,-33 260,0 327,0 393,-33 493,-133 560,-233 627,-367 660,-467;360,-467 427,-467 460,-433 493,-367 560,-100 593,-33 627,0 660,0"],\u03B2:[787,"460,-700 393,-667 327,-600 260,-467 227,-367 193,-233 160,-33 127,233;460,-700 527,-700 593,-633 593,-533 560,-467 527,-433 460,-400 360,-400;360,-400 427,-367 493,-300 527,-233 527,-133 493,-67 460,-33 393,0 327,0 260,-33 227,-67 193,-167"],\u03C7:[720,"127,-467 193,-467 260,-400 460,167 527,233 593,233;627,-467 593,-400 527,-300 193,67 127,167 93,233"],\u03B4:[720,"427,-467 327,-467 260,-433 193,-367 160,-267 160,-167 193,-67 227,-33 293,0 360,0 427,-33 493,-100 527,-200 527,-300 493,-400 427,-467 360,-533 327,-600 327,-667 360,-700 427,-700 493,-667 560,-600"],\u03B5:[653,"493,-400 460,-433 393,-467 293,-467 227,-433 227,-367 260,-300 360,-267;360,-267 227,-233 160,-167 160,-100 193,-33 260,0 360,0 427,-33 493,-100"],\u03C6:[853,"327,-433 260,-400 193,-333 160,-233 160,-133 193,-67 227,-33 293,0 393,0 493,-33 593,-100 660,-200 693,-300 693,-400 627,-467 560,-467 493,-400 427,-267 360,-100 260,233"],\u03B3:[787,"93,-367 160,-433 227,-467 260,-467 327,-433 360,-400 393,-300 393,-167 360,0;627,-467 593,-367 560,-300 360,0 293,133 260,233"],\u03B7:[787,"93,-333 127,-400 193,-467 260,-467 293,-433 293,-367 260,-233 193,0;260,-233 327,-367 393,-433 460,-467 527,-467 593,-400 593,-300 560,-133 460,233"],\u03B9:[453,"260,-467 193,-233 160,-100 160,-33 193,0 260,0 327,-67 360,-133"],\u03BA:[720,"260,-467 127,0;593,-433 560,-467 527,-467 460,-433 327,-300 260,-267 227,-267;227,-267 293,-233 327,-200 393,-33 427,0 460,0 493,-33"],\u03BB:[653,"93,-700 160,-700 227,-667 260,-633 527,0;327,-467 127,0"],\u03BC:[853,"293,-467 93,233;260,-333 227,-167 227,-67 293,0 360,0 427,-33 493,-100 560,-233;627,-467 560,-233 527,-100 527,-33 560,0 627,0 693,-67 727,-133"],\u03BD:[720,"160,-467 260,-467 227,-267 193,-100 160,0;593,-467 560,-367 527,-300 460,-200 360,-100 260,-33 160,0"],\u03BF:[720,"327,-467 260,-433 193,-367 160,-267 160,-167 193,-67 227,-33 293,0 360,0 427,-33 493,-100 527,-200 527,-300 493,-400 460,-433 393,-467 327,-467"],\u03C0:[853,"360,-467 227,0;527,-467 560,-267 593,-100 627,0;127,-367 193,-433 293,-467 727,-467"],\u03B8:[787,"93,-333 127,-400 193,-467 260,-467 293,-433 293,-367 260,-200 260,-100 293,-33 327,0 393,0 460,-33 527,-133 560,-200 593,-300 627,-467 627,-567 593,-667 527,-700 460,-700 427,-633 427,-567 460,-467 527,-367 593,-300 693,-233"],\u03C1:[720,"193,-267 193,-167 227,-67 260,-33 327,0 393,0 460,-33 527,-100 560,-200 560,-300 527,-400 493,-433 427,-467 360,-467 293,-433 227,-367 193,-267 60,233"],\u03C3:[853,"660,-467 327,-467 260,-433 193,-367 160,-267 160,-167 193,-67 227,-33 293,0 360,0 427,-33 493,-100 527,-200 527,-300 493,-400 460,-433 393,-467"],\u03C4:[787,"427,-467 327,0;127,-367 193,-433 293,-467 660,-467"],\u03C5:[787,"93,-333 127,-400 193,-467 260,-467 293,-433 293,-367 227,-167 227,-67 293,0 360,0 460,-33 527,-100 593,-233 627,-367 627,-467"],\u03C9:[853,"327,-467 260,-433 193,-333 160,-233 160,-133 193,-33 227,0 293,0 360,-33 427,-133;460,-267 427,-133 460,-33 493,0 560,0 627,-33 693,-133 727,-233 727,-333 693,-433 660,-467"],\u03BE:[653,"393,-700 327,-667 293,-633 293,-600 327,-567 427,-533 527,-533;427,-533 327,-500 260,-467 227,-400 227,-333 293,-267 393,-233 460,-233;393,-233 260,-200 193,-167 160,-100 160,-33 227,33 360,100 393,133 393,200 327,233 260,233"],\u03C8:[853,"593,-700 327,233;93,-333 127,-400 193,-467 260,-467 293,-433 293,-367 260,-200 260,-100 293,-33 360,0 427,0 527,-33 593,-100 660,-200 727,-367 760,-467"],\u03B6:[587,"393,-700 327,-667 293,-633 293,-600 327,-567 427,-533 527,-533;527,-533 393,-467 293,-400 193,-300 160,-200 160,-133 193,-67 260,0 360,67 393,133 393,200 360,233 293,233 260,167"],\u03D1:[787,"93,-333 127,-400 193,-467 260,-467 293,-433 293,-367 260,-200 260,-100 293,-33 327,0 393,0 460,-33 527,-133 560,-200 593,-300 627,-467 627,-567 593,-667 527,-700 460,-700 427,-633 427,-567 460,-467 527,-367 593,-300 693,-233"],"\u2213":[920,"460,-567 460,0;193,-567 727,-567;193,-300 727,-300"],"\u22C5":[320,"127,-333 127,-300 160,-300 160,-333 127,-333"],"\u2264":[920,"727,-700 193,-467 727,-233;193,-167 727,-167;193,0 727,0"],"\u2265":[920,"193,-700 727,-467 193,-233;193,-167 727,-167;193,0 727,0"],"\u220F":[1253,"293,-833 293,233;327,-833 327,233;927,-833 927,233;960,-833 960,233;160,-833 1093,-833;160,233 460,233;793,233 1093,233"],"\u2211":[1120,"227,-833 560,-367 193,233;193,-833 527,-367;160,-833 527,-333;160,-833 927,-833 993,-600 893,-833;227,200 927,200;193,233 927,233 993,0 893,233"],"\u2260":[987,"727,-600 260,0;193,-400 793,-400;193,-200 793,-200"],"\u2261":[987,"193,-467 793,-467;193,-300 793,-300;193,-133 793,-133"],"\u221D":[987,"760,-133 693,-133 627,-167 560,-233 460,-367 427,-400 360,-433 293,-433 227,-400 193,-333 193,-267 227,-200 293,-167 360,-167 427,-200 460,-233 560,-367 627,-433 693,-467 760,-467"],"\u221E":[987,"793,-267 760,-200 693,-167 627,-167 560,-200 527,-233 427,-367 393,-400 327,-433 260,-433 193,-400 160,-333 160,-267 193,-200 260,-167 327,-167 393,-200 427,-233 527,-367 560,-400 627,-433 693,-433 760,-400 793,-333 793,-267"],"\u221A":[720,"160,-467 293,-467 493,-67;260,-467 493,0;793,-833 493,0"],"\u2282":[920,"727,-567 493,-567 360,-533 293,-500 227,-433 193,-333 193,-267 227,-167 293,-100 360,-67 493,-33 727,-33"],"\u222A":[920,"193,-567 193,-333 227,-200 260,-133 327,-67 427,-33 493,-33 593,-67 660,-133 693,-200 727,-333 727,-567"],"\u2283":[920,"193,-567 427,-567 560,-533 627,-500 693,-433 727,-333 727,-267 693,-167 627,-100 560,-67 427,-33 193,-33"],"\u2229":[920,"193,-33 193,-267 227,-400 260,-467 327,-533 427,-567 493,-567 593,-533 660,-467 693,-400 727,-267 727,-33"],"\u2208":[920,"727,-567 493,-567 360,-533 293,-500 227,-433 193,-333 193,-267 227,-167 293,-100 360,-67 493,-33 727,-33;193,-300 593,-300"],"\u2192":[987,"693,-367 793,-300 693,-233;593,-467 760,-300 593,-133;193,-300 760,-300"],"\u2191":[653,"260,-500 327,-600 393,-500;160,-400 327,-567 493,-400;327,-567 327,0"],"\u2190":[987,"293,-367 193,-300 293,-233;393,-467 227,-300 393,-133;227,-300 793,-300"],"\u2193":[653,"260,-100 327,0 393,-100;160,-200 327,-33 493,-200;327,-600 327,-33"],"\u2202":[787,"560,-300 527,-400 493,-433 427,-467 360,-467 260,-433 193,-333 160,-233 160,-133 193,-67 227,-33 293,0 360,0 460,-33 527,-100 560,-200 593,-367 593,-533 560,-633 527,-667 460,-700 360,-700 293,-667 260,-633 260,-600 293,-600 293,-633;360,-467 293,-433 227,-333 193,-233 193,-100 227,-33;360,0 427,-33 493,-100 527,-200 560,-367 560,-533 527,-633 460,-700"],"\u2207":[787,"127,-700 393,0;160,-700 393,-67;660,-700 393,0;127,-700 660,-700;160,-667 627,-667"],"\u222B":[920,"760,-800 727,-767 760,-733 793,-767 793,-800 760,-833 693,-833 627,-800 560,-733 527,-667 493,-567 460,-433 393,-33 360,100 327,167;593,-767 560,-700 527,-567 460,-167 427,-33 393,67 360,133 293,200 227,233 160,233 127,200 127,167 160,133 193,167 160,200"],"\u2203":[787,"560,-700 560,0;127,-700 560,-700;293,-367 560,-367;127,0 560,0"],\u2135:[787,"160,-600 193,-533 593,-133 627,-67 627,0;193,-500 593,-100;160,-600 160,-533 193,-467 593,-67 627,0;327,-367 193,-233 160,-167 160,-100 193,-33 160,0;160,-167 227,-33;193,-233 193,-167 227,-100 227,-33 160,0;427,-267 593,-433;527,-600 527,-500 560,-433 627,-433 627,-500 560,-533 527,-600;527,-600 560,-500 627,-433"],"\u2016":[587,"193,-833 193,233;393,-833 393,233"],"\u22A5":[920,"460,-833 460,0;160,0 760,0"],"\u2220":[920,"760,-833 160,0 760,0"],"\u2234":[987,"493,-600 460,-567 493,-533 527,-567 493,-600;193,-67 160,-33 193,0 227,-33 193,-67;793,-67 760,-33 793,0 827,-33 793,-67"],"\u2212":[569,"110,-410 309,-414 459,-445"],"\u2248":[930,"110,-425 217,-482 313,-504 420,-482 533,-447 617,-416 715,-412 820,-461;110,-245 217,-302 313,-324 420,-302 533,-267 617,-236 715,-232 820,-281"]};var B3="0.1.0",$3={white:"#f1f0ea",chalk:"#f1f0ea",yellow:"#f2ea72",lime:"#ddf27c",green:"#8fe07a",blue:"#8288ff",cyan:"#72d3ef",purple:"#b877ee",violet:"#b877ee",magenta:"#e06ade",pink:"#f27dc9",red:"#f45b73",orange:"#f5a04c",grey:"#9d9d9d",gray:"#9d9d9d"};function q3(e){let t=e>>>0,o=()=>{t=t+1831565813|0;let r=Math.imul(t^t>>>15,1|t);return r=r+Math.imul(r^r>>>7,61|r)^r,((r^r>>>14)>>>0)/4294967296};return{r:o,n:r=>(o()*2-1)*r}}function H3(e){let t=2166136261;for(let o=0;o<e.length;o++)t^=e.charCodeAt(o),t=Math.imul(t,16777619);return t>>>0}var t3=e=>e[e.length-1],d3=(e,t)=>Math.hypot(t[0]-e[0],t[1]-e[1]),p3=(e,t,o)=>[e[0]+(t[0]-e[0])*o,e[1]+(t[1]-e[1])*o],c3=(e,t,o)=>Math.min(o,Math.max(t,e)),D3=e=>e*e*(3-2*e);function w3(e){let t=0;for(let o=1;o<e.length;o++)t+=d3(e[o-1],e[o]);return t}function i3(e){let t=1/0,o=1/0,r=-1/0,a=-1/0;for(let s of e)for(let[c,l]of s.pts)c<t&&(t=c),c>r&&(r=c),l<o&&(o=l),l>a&&(a=l);return t===1/0?null:{x:t,y:o,w:r-t,h:a-o}}function G3(e){let t=Math.min(...e.map(s=>s.x)),o=Math.min(...e.map(s=>s.y)),r=Math.max(...e.map(s=>s.x+s.w)),a=Math.max(...e.map(s=>s.y+s.h));return{x:t,y:o,w:r-t,h:a-o}}function Z(e,t,o,r=6){let a=d3(e,t),s=-(t[1]-e[1])/(a||1),c=(t[0]-e[0])/(a||1),l=o.n(a*.018),h=[];for(let f=0;f<=r;f++){let d=f/r,g=l*Math.sin(Math.PI*d)+(f&&f<r?o.n(a*.002):0),M=p3(e,t,d);h.push([M[0]+s*g,M[1]+c*g])}return h}function a3(e,t,o,r=16){let a=[];for(let s=0;s<=r;s++){let c=s/r,l=1-c;a.push([l*l*e[0]+2*l*c*t[0]+c*c*o[0],l*l*e[1]+2*l*c*t[1]+c*c*o[1]])}return a}function k3(e,t=10){if(e.length<3)return e.length===2?a3(e[0],p3(e[0],e[1],.5),e[1],t):e;let o=[e[0]];for(let r=0;r<e.length-1;r++){let a=e[r-1]??e[r],s=e[r],c=e[r+1],l=e[r+2]??c;for(let h=1;h<=t;h++){let f=h/t,d=f*f,g=d*f,M=w=>.5*(2*s[w]+(-a[w]+c[w])*f+(2*a[w]-5*s[w]+4*c[w]-l[w])*d+(-a[w]+3*s[w]-3*c[w]+l[w])*g);o.push([M(0),M(1)])}}return o}function j3(e,t){let o=s=>Math.round(s*10)/10;if(e.length===1)return`M${o(e[0][0])} ${o(e[0][1])}l0.01 0`;if(!t||e.length<3)return"M"+e.map(s=>`${o(s[0])} ${o(s[1])}`).join("L");let r=[[e[0]]];for(let s=1;s<e.length;s++)if(t3(r).push(e[s]),s<e.length-1){let c=Math.atan2(e[s][1]-e[s-1][1],e[s][0]-e[s-1][0]),l=Math.atan2(e[s+1][1]-e[s][1],e[s+1][0]-e[s][0]),h=Math.abs(l-c);h>Math.PI&&(h=2*Math.PI-h),h>1.1&&r.push([e[s]])}let a=`M${o(e[0][0])} ${o(e[0][1])}`;for(let s of r){if(s.length<3){a+=s.slice(1).map(c=>`L${o(c[0])} ${o(c[1])}`).join("");continue}for(let c=0;c<s.length-1;c++){let l=s[c-1]??s[c],h=s[c],f=s[c+1],d=s[c+2]??f,g=[h[0]+(f[0]-l[0])/6,h[1]+(f[1]-l[1])/6],M=[f[0]-(d[0]-h[0])/6,f[1]-(d[1]-h[1])/6];a+=`C${o(g[0])} ${o(g[1])} ${o(M[0])} ${o(M[1])} ${o(f[0])} ${o(f[1])}`}}return a}var m3=new Map;function h3(e){if(m3.has(e))return m3.get(e);let t=x3[e],o=null;if(t){let r=t[1]?t[1].split(";").map(c=>c.split(" ").map(l=>l.split(",").map(Number))):[],a=0,s=0;for(let c of r)for(let[,l]of c)a=Math.min(a,l),s=Math.max(s,l);o={adv:t[0],strokes:r,top:a,bottom:s}}return m3.set(e,o),o}var M3={alpha:"\u03B1",beta:"\u03B2",gamma:"\u03B3",delta:"\u03B4",epsilon:"\u03B5",varepsilon:"\u03B5",zeta:"\u03B6",eta:"\u03B7",theta:"\u03B8",vartheta:"\u03D1",iota:"\u03B9",kappa:"\u03BA",lambda:"\u03BB",mu:"\u03BC",nu:"\u03BD",xi:"\u03BE",pi:"\u03C0",rho:"\u03C1",sigma:"\u03C3",tau:"\u03C4",upsilon:"\u03C5",phi:"\u03C6",varphi:"\u03C6",chi:"\u03C7",psi:"\u03C8",omega:"\u03C9",Gamma:"\u0393",Delta:"\u0394",Theta:"\u0398",Lambda:"\u039B",Xi:"\u039E",Pi:"\u03A0",Sigma:"\u03A3",Upsilon:"\u03A5",Phi:"\u03A6",Psi:"\u03A8",Omega:"\u03A9",partial:"\u2202",nabla:"\u2207",int:"\u222B",sum:"\u2211",prod:"\u220F",infty:"\u221E",pm:"\xB1",mp:"\u2213",times:"\xD7",cdot:"\u22C5",div:"\xF7",leq:"\u2264",le:"\u2264",geq:"\u2265",ge:"\u2265",neq:"\u2260",ne:"\u2260",equiv:"\u2261",approx:"\u2248",propto:"\u221D",to:"\u2192",rightarrow:"\u2192",leftarrow:"\u2190",uparrow:"\u2191",downarrow:"\u2193",in:"\u2208",subset:"\u2282",supset:"\u2283",cup:"\u222A",cap:"\u2229",exists:"\u2203",aleph:"\u2135",therefore:"\u2234",perp:"\u22A5",angle:"\u2220",deg:"\xB0",parallel:"\u2016"},F3=["vec","bar","hat","dot","sqrt","ul"],W3=["sin","cos","tan","cot","sec","csc","arcsin","arccos","arctan","sinh","cosh","tanh","log","ln","exp","lim","max","min","sup","inf","det","dim","ker","deg","gcd","mod"];function Y3(e){let t=0,o=()=>{let s=String.fromCodePoint(e.codePointAt(t));return t+=s.length,s},r=()=>{if(e[t]==="{"){t++;let s=a("}");return t++,s}return t>=e.length?[]:e[t]==="\\"?a(void 0,1):[{k:"ch",c:o()}]};function a(s,c=1/0){let l=[];for(;t<e.length&&e[t]!==s&&l.length<c;){let h=e[t];if(h==="^"||h==="_")t++,l.push({k:h==="^"?"sup":"sub",n:r()});else if(h===`
2
- `)t++,l.push({k:"nl"});else if(h==="\\"){let f=/^\\([a-zA-Z]+)/.exec(e.slice(t));if(!f){t++,l.push({k:"ch",c:t<e.length?o():"\\"});continue}t+=f[0].length;let d=f[1];if(d==="frac"){let g=r();l.push({k:"frac",a:g,b:r()})}else if(F3.includes(d))l.push({k:"deco",d,n:r()});else if(d==="id"){let g=r().map(M=>M.k==="ch"?M.c:"").join("");l.push({k:"mark",name:g,n:r()})}else if(M3[d])l.push({k:"ch",c:M3[d]}),e[t]===" "&&t++;else if(W3.includes(d))for(let g of d)l.push({k:"ch",c:g});else for(let g of"\\"+d)l.push({k:"ch",c:g})}else l.push({k:"ch",c:o()})}return l}return a()}var B={stroke:35,letter:70,word:190},b3=()=>({s:[],w:0,asc:0,desc:0,marks:[]});function r3(e,t,o,r,a){let s=e.s.length;for(let c of t.s)e.s.push({lift:c.lift,pts:c.pts.map(([l,h])=>[l+o,h+r])});for(let[c,l]of t.marks)e.marks.push([c,{...l,x:l.x+o,y:l.y+r}]);e.asc=Math.max(e.asc,t.asc-r),e.desc=Math.max(e.desc,t.desc+r),a!==void 0&&e.s[s]&&(e.s[s].lift=Math.max(e.s[s].lift,a))}function e3(e,t,o,r=0){let a=b3(),s=o.R,c=0,l=B.letter;for(let h of e)if(h.k==="ch"){if(h.c===" "||h.c===" "){c+=(h3(" ")?.adv??300)*(t/1e3)*(1+s.n(.18)),l=B.word;continue}let f=h3(h.c)??h3("?"),d=t/1e3*(1+s.n(.04)),g=s.n(.045),M=f.adv*d/2,w=-.32*t,q=o.amp*Math.sin((r+c)/o.wl*2*Math.PI+o.phase)+s.n(.014*t),Y=Math.cos(g),H=Math.sin(g);f.strokes.forEach((J,K)=>{let _=s.n(.009*t),D=s.n(.009*t),A=J.map(([n3,n])=>{let E=n3*d-M,u=n*d-w;return[c+M+E*Y-u*H+_,w+E*H+u*Y+q+D]});A.length===1&&(A=[A[0],[A[0][0]+.02*t,A[0][1]+.01*t]]),a.s.push({pts:A,lift:K===0?l:B.stroke})}),f.strokes.length&&(l=B.letter),a.asc=Math.max(a.asc,-f.top*d-q),a.desc=Math.max(a.desc,f.bottom*d+q),c+=f.adv*d*(1+s.n(.035))}else if(h.k==="sup"||h.k==="sub"){let f=e3(h.n,t*.62,o,r+c);r3(a,f,c+.02*t,h.k==="sup"?-.44*t:.2*t,l),c+=f.w+.06*t,l=B.letter}else if(h.k==="frac"){let f=t*.78,d=e3(h.a,f,o,r+c),g=e3(h.b,f,o,r+c),M=Math.max(d.w,g.w)+.28*t,w=-.3*t;r3(a,d,c+(M-d.w)/2,w-.14*t-Math.max(d.desc,.02*t),l),a.s.push({pts:Z([c+.04*t,w+s.n(.02*t)],[c+M-.04*t,w+s.n(.02*t)],s,4),lift:B.letter}),r3(a,g,c+(M-g.w)/2,w+.18*t+Math.max(g.asc,.5*f)),c+=M+.06*t,l=B.letter}else if(h.k==="deco"){let f=a.s.length;if(h.d==="sqrt"){let d=.6*t,g=e3(h.n,t,o,r+c+d),M=-Math.max(g.asc,.55*t)-.14*t,w=c+d+g.w+.08*t;a.s.push({pts:[[c,-.26*t],[c+.13*t,-.34*t],[c+.3*t,.05*t],[c+.52*t,M],[w,M+s.n(.03*t)]],lift:l}),r3(a,g,c+d,0),a.asc=Math.max(a.asc,-M+.03*t),c=w+.06*t}else{let d=e3(h.n,t,o,r+c);r3(a,d,c,0,l);let g=c+.03*t,M=c+Math.max(d.w,.42*t),w=h.d==="ul"?Math.max(d.desc,.08*t)+.1*t:-Math.max(d.asc,.5*t)-.14*t;if(h.d==="hat"){let q=(g+M)/2;a.s.push({pts:[[q-.15*t,w+.05*t],[q,w-.1*t],[q+.15*t,w+.05*t]],lift:B.letter})}else if(h.d==="dot"){let q=(g+M)/2;a.s.push({pts:[[q,w],[q+.025*t,w+.01*t]],lift:B.letter})}else{let q=Z([g,w],[M,w+s.n(.025*t)],s,4);if(a.s.push({pts:q,lift:B.letter}),h.d==="vec"){let Y=t3(q),H=.13*t;a.s.push({pts:[[Y[0]-H,Y[1]-H*.62],Y,[Y[0]-H,Y[1]+H*.62]],lift:B.stroke})}}a.asc=Math.max(a.asc,-w+.12*t),c+=d.w}a.s[f]&&(a.s[f].lift=Math.max(a.s[f].lift,l)),l=B.letter}else if(h.k==="mark"){let f=a.s.length,d=e3(h.n,t,o,r+c);r3(a,d,c,0,l),a.marks.push([h.name,i3(a.s.slice(f))??{x:c,y:-.7*t,w:d.w,h:.7*t}]),c+=d.w,l=B.letter}return a.w=c,a}var _3=["top","bottom","left","right","center","topLeft","topRight","bottomLeft","bottomRight"],X3=620,l3=1050;function J3(e){let t=e.width??1e3,o=new Map,r=[],a=[],s=e.background==="none",c=e.color??"white",l=n=>{let E=n??c;return s&&(E==="white"||E==="chalk")?"currentColor":$3[E]??E},h=n=>{if(Array.isArray(n))return G3(n.map(h));if(typeof n!="string")return n;let E=o.get(n);if(!E)throw new Error(`nothing with id "${n}" has been drawn yet`);return E},f=(n,E,u)=>{let I=n.x+n.w/2,R=n.y+n.h/2,p=n.x-u,i=n.y-u,k=n.x+n.w+u,b=n.y+n.h+u;switch(E){case"top":return[I,i];case"bottom":return[I,b];case"left":return[p,R];case"right":return[k,R];case"topLeft":return[p,i];case"topRight":return[k,i];case"bottomLeft":return[p,b];case"bottomRight":return[k,b];default:return[I,R]}},d=(n,E,u)=>{let I=n.x+n.w/2,R=n.y+n.h/2,p=E[0]-I,i=E[1]-R;if(!p&&!i)return[I,n.y+n.h+u];let k=Math.min(p?(n.w/2+u)/Math.abs(p):1/0,i?(n.h/2+u)/Math.abs(i):1/0);return[I+p*k,R+i*k]},g=(n,E,u)=>{if(Array.isArray(n))return n;let I,R=0,p=0;typeof n=="object"?(I=n.at,R=n.dx??0,p=n.dy??0):I=n;let i,k=o.get(I);if(k)i=E?d(k,E,u):[k.x+k.w/2,k.y+k.h/2];else{let b=I.lastIndexOf("."),G=b>0?o.get(I.slice(0,b)):void 0,m=I.slice(b+1);if(!G||!_3.includes(m))throw new Error(`can't find "${I}" \u2014 use an id drawn earlier, optionally with .top .bottom .left .right .center or a corner`);i=f(G,m,u)}return[i[0]+R,i[1]+p]};e.items.forEach((n,E)=>{let u=q3(H3(`${e.seed??0}:${E}:${JSON.stringify(n)}`)),I=[],R=(p,i,k,b,G)=>I.push({pts:p,lift:i,color:l(k.color),width:k.width??b,item:E,pen:G*(k.speed??1),len:w3(p)});try{if(n.type==="pause"){a.push({strokes:I,item:n});return}if(n.type==="text"){let p=n.size??32,i=Y3(n.text),k=[[]];for(let P of i)P.k==="nl"?k.push([]):t3(k).push(P);let b=(n.lineHeight??1.45)*p,G=(h3(" ")?.adv??300)*(p/1e3),m=[];for(let P of k){let z={R:u,phase:u.r()*6.283,amp:.022*p,wl:8*p};if(!n.maxWidth){m.push(e3(P,p,z));continue}let V=[[]];for(let N of P)N.k==="ch"&&N.c===" "?V.push([]):t3(V).push(N);let X=b3(),F=0;for(let N of V){if(!N.length)continue;let W=e3(N,p,z,F);F>0&&F+W.w>n.maxWidth&&(m.push(X),X=b3(),F=0),r3(X,W,F,0,F>0?B.word:void 0),F+=W.w+G*(1+u.n(.15)),X.w=F-G}m.push(X)}let y=Math.max(0,...m.map(P=>P.w)),$=.78*p,x=$+(m.length-1)*b+.28*p,C=n.align??"left",v=n.x,O=n.y,L=n.gap??.5*p,j=n.below??n.above;if(j){let P=h(j);O=n.below?P.y+P.h+L:P.y-L-x,v===void 0&&(v=C==="center"?P.x+P.w/2:C==="right"?P.x+P.w:P.x)}let T=n.rightOf??n.leftOf;if(T){let P=h(T);n.rightOf?(v=P.x+P.w+L,C="left"):(v=P.x-L,C="right"),O===void 0&&(O=P.y+P.h/2-x/2+.08*p)}v=(v??40)+(n.dx??0),O=(O??40)+(n.dy??0);let S=u.n(.007),s3=n.width??c3(p*.07,1.4,6),U=[];m.forEach((P,z)=>{let V=C==="center"?v-P.w/2:C==="right"?v-P.w:v,X=O+$+z*b,F=([N,W])=>[V+N-W*S,X+W+N*S];P.s.forEach((N,W)=>{let o3=W===0&&z>0?B.word*1.6:N.lift;U.push({pts:N.pts.map(F),lift:o3}),R(t3(U).pts,o3,n,s3,X3)});for(let[N,W]of P.marks){let o3=F([W.x,W.y]),g3=F([W.x+W.w,W.y+W.h]),y3={x:o3[0],y:o3[1],w:g3[0]-o3[0],h:g3[1]-o3[1]};o.set(n.id?`${n.id}.${N}`:N,y3),r.push([n.id?`${n.id}.${N}`:N,y3])}});let Q=i3(U)??{x:v,y:O,w:y,h:x};n.id&&(o.set(n.id,Q),r.push([n.id,Q]))}else if(n.type==="arrow"){let p=n.gap??10,i=n.via??[],k=L=>g(L,null,0),b=i.length?k(i[0]):k(n.to),G=g(n.from,b,p),m=i.map(L=>k(L)),y=g(n.to,m.length?t3(m):G,p),$=d3(G,y),x;if(m.length)x=k3([G,...m,y],12).map(([L,j])=>[L+u.n(.6),j+u.n(.6)]);else{let L=n.bend??u.n(.05),j=-(y[1]-G[1])/($||1),T=(y[0]-G[0])/($||1),S=p3(G,y,.5);x=a3(G,[S[0]+j*L*$,S[1]+T*L*$],y,18)}let C=2.4;R(x,B.letter,n,C,l3);let v=(L,j)=>{let T=Math.atan2(L[1]-j[1],L[0]-j[0]),S=c3(w3(x)*.18,9,17)*((n.width??C)/2.4)**.5,s3=.46+u.n(.06),U=Q=>[L[0]-S*Math.cos(T+Q)+u.n(1),L[1]-S*Math.sin(T+Q)+u.n(1)];R([U(s3),L,U(-s3)],B.letter,n,C,l3)},O=n.head??"end";(O==="end"||O==="both")&&v(t3(x),x[Math.max(0,x.length-4)]),(O==="start"||O==="both")&&v(x[0],x[Math.min(x.length-1,3)])}else if(n.type==="line"){let p=n.points.map((k,b)=>g(k,null,0)),i=n.smooth===!1?p:k3(p,10);R(i.map(([k,b])=>[k+u.n(.5),b+u.n(.5)]),B.letter,n,2.4,l3)}else{let p=n.around??n.under??n.over??n.target;if(p===void 0)throw new Error(`${n.type} needs "around" (an id, a list of ids, or {x,y,w,h})`);let i=h(p),k=2.4,b=(m,y=B.letter)=>R(m,y,n,k,l3),G=n.double?2:1;for(let m=0;m<G;m++){let y=m*7;if(n.type==="circle"){let $=(n.pad??14)+y,x=i.x+i.w/2,C=i.y+i.h/2,v=i.w/2*1.12+$,O=i.h/2*1.2+$,L=3.2,j=u.n(.03),T=u.r()*6,S=Math.PI*1.08+u.n(.25),s3=Math.PI*2+.38+u.n(.12),U=P=>Math.sign(P)*Math.abs(P)**(2/L),Q=[];for(let P=0;P<=80;P++){let z=P/80,V=S+s3*z,X=1+.025*Math.sin(3*V+T)+(z-.5)*.07,F=v*X*U(Math.cos(V)),N=O*X*U(Math.sin(V));Q.push([x+F*Math.cos(j)-N*Math.sin(j),C+F*Math.sin(j)+N*Math.cos(j)])}b(Q)}else if(n.type==="box"){let $=(n.pad??12)+y,x=()=>u.n(3),C=[i.x-$+x(),i.y-$+x()],v=[i.x+i.w+$+x(),i.y-$+x()],O=[i.x+i.w+$+x(),i.y+i.h+$+x()],L=[i.x-$+x(),i.y+i.h+$+x()],j=p3(C,v,.06+u.r()*.04),T=[...Z(C,v,u),...Z(v,O,u).slice(1),...Z(O,L,u).slice(1),...Z(L,[C[0]+u.n(2),C[1]+u.n(2)],u).slice(1),j];b(T)}else if(n.type==="underline"){let $=i.y+i.h+(n.pad??6)+y;b(Z([i.x-4+u.n(3),$+u.n(2)],[i.x+i.w+4+u.n(3),$+u.n(3)],u,8))}else if(n.type==="strike"){let $=i.y+i.h*.55+y;b(Z([i.x-5,$+u.n(3)],[i.x+i.w+5,$+u.n(3)],u,8))}else{let $=n.side??"bottom",x=(n.pad??8)+y,v=$==="top"||$==="bottom"?i.w+6:i.h+6,O=n.type==="bracket"?c3(v*.12,6,14):c3(v*.08,7,16),L;if(n.type==="bracket")L=[[0,-O+u.n(1.5)],[u.n(1),u.n(1)],...Z([0,0],[v,u.n(1.5)],u,6).slice(1,-1),[v+u.n(1),u.n(1)],[v,-O+u.n(1.5)]];else{let T=v/2,S=O;L=[...a3([0,-S*.3],[0,S*.5],[S,S*.5],6),...a3([T-S,S*.5],[T,S*.5],[T,S*1.2],6),...a3([T,S*1.2],[T,S*.5],[T+S,S*.5],6).slice(1),...a3([v-S,S*.5],[v,S*.5],[v,-S*.3],6)]}let j=([T,S])=>{switch($){case"top":return[i.x-3+T,i.y-x-S];case"left":return[i.x-x-S,i.y-3+T];case"right":return[i.x+i.w+x+S,i.y-3+T];default:return[i.x-3+T,i.y+i.h+x+S]}};b(L.map(j))}}if(n.id){let m=i3(I)??i;o.set(n.id,m),r.push([n.id,m])}}if(n.type!=="text"&&n.id&&!o.has(n.id)){let p=i3(I);p&&(o.set(n.id,p),r.push([n.id,p]))}}catch(p){throw new Error(`items[${E}] (${n.type}${"id"in n&&n.id?` "${n.id}"`:""}): ${p.message}`)}a.push({strokes:I,item:n})});let M=e.speed??1,w=700,q=380,Y=[],H=w,J=w,K=null,_=!0;for(let{strokes:n,item:E}of a){if(E.type==="pause"){H+=E.ms/M;continue}if(!n.length)continue;let u=E,I=u.with==="prev"?J:H+(_?0:q/M)+(u.wait??0)/M;J=I,_=!1;for(let R of n){let p=K?d3(K,R.pts[0]):0;I+=(R.lift+Math.min(420,p/(R.pen*2.4)*1e3))/M;let i=Math.max(40,R.len/R.pen*1e3)/M;Y.push({...R,t0:I,dur:i}),I+=i,K=t3(R.pts)}H=Math.max(H,I)}let D=i3(Y),A=e.padding??40,n3=e.height??Math.max(160,Math.ceil((D?D.y+D.h:0)+A));return{strokes:Y,width:t,height:n3,end:H,debug:r}}var U3=`
3
- .psk{display:block;width:100%;-webkit-user-select:none;user-select:none}
4
- .psk-board{position:relative;border-radius:12px;overflow:hidden;line-height:0}
5
- .psk-animated .psk-board{cursor:pointer;-webkit-tap-highlight-color:transparent}
6
- .psk-board svg{display:block;width:100%;height:auto}
7
- .psk-bar{display:flex;align-items:center;gap:8px;padding:8px 2px 0;font:12px/1 system-ui,-apple-system,sans-serif;opacity:.7}
8
- .psk-bar:hover{opacity:1}
9
- .psk-bar button{all:unset;cursor:pointer;width:28px;height:28px;display:grid;place-items:center;border-radius:7px;color:inherit}
10
- .psk-bar button:hover{background:rgba(127,127,127,.18)}
11
- .psk-bar svg{width:16px;height:16px;fill:currentColor}
12
- .psk-bar input{flex:1;min-width:0;accent-color:currentColor;margin:0}
13
- .psk-time{font-variant-numeric:tabular-nums;min-width:72px;text-align:right}
14
- .psk-error{font:13px/1.45 ui-monospace,Menlo,monospace;color:#f45b73;padding:10px 12px;border:1px solid rgba(244,91,115,.45);border-radius:8px;white-space:pre-wrap}`,u3={play:'<svg viewBox="0 0 16 16"><path d="M4 2.5v11l9.5-5.5z"/></svg>',pause:'<svg viewBox="0 0 16 16"><path d="M3.5 2.5h3v11h-3zM9.5 2.5h3v11h-3z"/></svg>',replay:'<svg viewBox="0 0 16 16"><path d="M8 2.5a5.5 5.5 0 1 1-5.2 3.7l1.4.5A4 4 0 1 0 8 4v2L4.8 3.3 8 .5z"/></svg>'},P3=!1;function S3(){if(P3)return;let e=document.createElement("style");e.textContent=U3,(document.head||document.documentElement).appendChild(e),P3=!0}var v3=e=>{let t=Math.max(0,Math.round(e/1e3));return`${Math.floor(t/60)}:${String(t%60).padStart(2,"0")}`};function E3(e){let t=()=>{};return{el:e,duration:0,time:0,playing:!1,play:t,pause:t,seek:t,restart:t,destroy:t}}function I3(e,t){S3();let o=document.createElement("div");o.className="psk-error",o.textContent=`potion-sketch: ${t?.message??t}`,e.replaceChildren(o)}function L3(e,t,o={}){let r=typeof e=="string"?document.querySelector(e):e;if(!r)throw new Error(`potion-sketch: no element matches ${e}`);S3();try{return V3(r,t,o)}catch(a){return I3(r,a),E3(r)}}function V3(e,t,o){if(!t||!Array.isArray(t.items))throw new Error('a scene needs an "items" array');let r={mode:o.mode??t.mode??"animation",autoplay:o.autoplay??t.autoplay??"visible",controls:o.controls??t.controls??!0};if(r.mode!=="animation"&&r.mode!=="static")throw new Error(`mode must be "animation" or "static", not "${r.mode}"`);let a=r.mode==="animation",{strokes:s,width:c,height:l,end:h,debug:f}=J3(t),d=t.background??"#0c0c0e",g=s.map(m=>`<path d="${j3(m.pts,!0)}" stroke="${m.color}" stroke-width="${m.width}"/>`).join(""),M=t.debug?f.map(([m,y])=>`<rect x="${y.x}" y="${y.y}" width="${y.w}" height="${y.h}" fill="none" stroke="#0ff" stroke-width="1" stroke-dasharray="4 3" opacity=".7"/><text x="${y.x}" y="${y.y-4}" fill="#0ff" font-size="12" font-family="monospace">${m.replace(/[<&]/g,"")}</text>`).join(""):"";if(e.innerHTML=`<div class="psk${a?" psk-animated":""}">
15
- <div class="psk-board" role="img" aria-label="Hand-drawn board">
1
+ "use strict";var Sketch=(()=>{var f3=Object.defineProperty;var R3=Object.getOwnPropertyDescriptor;var T3=Object.getOwnPropertyNames;var C3=Object.prototype.hasOwnProperty;var O3=(e,t)=>{for(var o in t)f3(e,o,{get:t[o],enumerable:!0})},N3=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of T3(t))!C3.call(e,a)&&a!==o&&f3(e,a,{get:()=>t[a],enumerable:!(r=R3(t,a))||r.enumerable});return e};var A3=e=>N3(f3({},"__esModule",{value:!0}),e);var K3={};O3(K3,{board:()=>L3,colors:()=>$3,mount:()=>Z3,version:()=>B3});var x3={0:[728,"397,-644 243,-582 151,-449 110,-318 124,-168 182,-48 309,-18 469,-79 574,-207 618,-371 604,-529 539,-622 463,-644 397,-644"],1:[401,"110,-517 291,-648 194,-18"],2:[697,"172,-564 283,-617 402,-636 484,-595 507,-490 468,-365 361,-238 234,-119 110,-18 230,-18 437,-26 494,-22 525,-26 587,-66"],3:[600,"164,-556 277,-613 406,-622 463,-568 490,-480 459,-392 388,-322 304,-265 398,-256 463,-207 490,-128 480,-40 437,35 357,106 246,119 132,102 44,66"],4:[736,"388,172 511,-644 402,-511 304,-326 168,-164 79,-40 414,-40 529,-48 626,-75"],5:[696,"110,115 268,168 401,164 506,88 547,-44 542,-154 479,-225 374,-252 295,-225 206,-199 268,-578 321,-622 586,-617"],6:[749,"225,-384 313,-433 415,-445 499,-410 534,-340 543,-234 512,-141 436,-44 327,-9 208,-40 147,-106 110,-234 128,-388 190,-542 287,-675 411,-759 534,-794 639,-785"],7:[618,"194,154 274,-123 379,-361 463,-517 508,-609 309,-605 110,-626"],8:[634,"286,-26 163,-75 124,-123 110,-211 171,-344 415,-547 499,-661 516,-763 446,-820 327,-806 239,-755 194,-671 243,-552 423,-398 507,-300 524,-195 467,-88 388,-40 286,-26"],9:[665,"120,115 270,88 401,9 494,-93 534,-238 555,-361 543,-490 498,-582 397,-644 251,-617 159,-533 110,-414 128,-300 198,-221 321,-207 389,-225 436,-265"]," ":[423,""],"!":[460,"356,-1063 330,-816 268,-533 225,-340 184,-234;153,-101 110,-57 149,0 194,-48 153,-101"],'"':[501,"167,-1098 110,-860;391,-1107 344,-851"],"#":[828,"238,40 348,-771;572,-771 467,44;691,-230 110,-234;110,-547 718,-547"],$:[551,"428,-605 441,-622 322,-622 344,-785 322,-630 225,-605 168,-552 150,-490 199,-410 260,-349 335,-256 384,-172 388,-115 353,-62 291,-35 238,-26 216,164 238,-26 154,-26 97,-57"],"%":[1094,"141,-22 357,-277 609,-609 890,-1001;287,-983 184,-935 127,-843 110,-750 145,-648 215,-591 303,-609 418,-693 455,-794 449,-886 410,-948 371,-979 287,-983;807,-423 697,-365 639,-260 631,-168 662,-75 750,-31 865,-62 943,-146 984,-252 957,-353 896,-410 807,-423"],"&":[1054,"502,-150 406,-57 340,-18 221,-48 141,-158 110,-326 133,-521 221,-728 340,-869 481,-935 551,-913 564,-847 521,-767 445,-697 367,-644 176,-547 287,-595 410,-609 591,-609 754,-617 834,-609 621,-613 570,-449 551,-330 539,-199 564,-88 617,-18 648,4 750,-79 865,-207 1011,-388"],"'":[277,"167,-1112 110,-855"],"(":[521,"411,-1040 260,-874 181,-724 120,-517 110,-291 137,-132 190,-22 300,102"],")":[542,"238,-1036 349,-900 415,-736 432,-556 397,-335 327,-141 243,-26 110,102"],"*":[600,"260,-582 344,-966;110,-679 490,-874;162,-909 427,-661"],"+":[816,"110,-406 706,-406;409,-706 409,-101"],",":[335,"180,-4 110,-75 157,-128 225,-57 184,40 118,141"],"-":[569,"110,-410 309,-414 459,-445"],".":[323,"159,-132 110,-84 164,-26 213,-71 159,-132"],"/":[638,"528,-1040 327,-472 110,62"],":":[375,"212,-622 159,-560 212,-503 265,-556 212,-622;163,-119 110,-66 163,-18 208,-62 163,-119"],";":[370,"215,-609 168,-560 215,-511 260,-556 215,-609;184,-4 119,-71 172,-123 229,-62 198,18 110,132"],"<":[759,"622,-582 348,-472 110,-330 415,-150 649,-40"],"=":[862,"162,-441 752,-441;110,-185 709,-185"],">":[745,"110,-44 366,-168 635,-326 410,-463 133,-582"],"?":[585,"157,-110 110,-62 171,0 215,-44 157,-110;132,-246 114,-353 153,-454 255,-560 360,-657 436,-755 475,-878 458,-970 397,-1028 290,-1023 206,-974"],"@":[1098,"926,-84 793,22 627,84 401,62 211,-48 110,-211 119,-484 194,-648 322,-790 502,-874 746,-878 900,-802 988,-626 974,-428 877,-277 754,-207 617,-195 701,-609 635,-459 555,-349 436,-256 375,-225 375,-353 414,-507 502,-599 609,-613 701,-605"],A:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57"],B:[960,"110,-480 136,-640 194,-771 303,-869 436,-921 577,-931 701,-917 815,-864 846,-763 828,-687 776,-599 701,-547 631,-529 604,-533 713,-517 807,-463 850,-379 842,-260 789,-164 692,-84 582,-40 295,-35 255,-18 325,-97 379,-199 506,-917"],C:[758,"692,-895 559,-935 357,-874 224,-710 145,-547 110,-398 114,-256 185,-106 259,-26 383,-9 462,-57 573,-154"],D:[934,"110,-494 128,-657 229,-825 362,-900 498,-935 666,-927 803,-874 899,-728 912,-556 873,-375 793,-234 688,-110 573,-57 477,-31 264,-40 233,-26 290,-79 352,-189 485,-917"],E:[947,"106,-564 137,-750 181,-820 252,-886 349,-921 837,-921 480,-921 433,-724 406,-538 714,-538 402,-538 375,-344 349,-203 300,-101 273,-53 221,-13 283,-44 693,-40 776,-93"],F:[833,"110,-13 233,-18 304,-62 352,-158 413,-533 700,-533 413,-533 481,-931 833,-931 432,-931 313,-913 237,-869 167,-806 124,-706 124,-644 128,-574"],G:[807,"762,-927 590,-958 432,-917 286,-802 198,-661 128,-503 110,-353 132,-172 206,-62 308,-18 423,-44 524,-128 586,-195;467,-517 651,-517 616,-414 569,-101 532,13 481,110 427,185 378,234 657,234"],H:[1115,"57,-560 53,-675 93,-781 164,-869 246,-913 322,-927 476,-931 503,-939 468,-904 428,-763 388,-468 353,-203 308,-101 252,-35 185,-9 93,-18;790,-931 983,-931 948,-917 900,-728 878,-529 410,-529 874,-529 851,-375 829,-242 806,-168 790,-123 750,-71 693,-18 724,-35 909,-35 1005,-101"],I:[631,"40,-560 40,-675 88,-790 168,-878 265,-927 357,-931 476,-935 449,-927 406,-755 357,-490 326,-273 304,-168 265,-101 216,-44 176,0 221,-35 441,-31 521,-97"],J:[630,"-48,150 44,211 164,230 283,146 344,9 476,-820 498,-890 538,-944 517,-927 322,-921 203,-860 137,-767 115,-693 110,-564"],K:[1054,"71,-564 75,-697 154,-851 269,-927 371,-935 517,-935 494,-917 433,-714 392,-392 344,-132 304,-62 252,-18 176,-4 97,-13;944,-904 864,-921 776,-904 648,-816 574,-683 552,-574 552,-476 697,-211 935,123"],L:[803,"648,-895 547,-944 449,-921 349,-837 295,-741 246,-365 221,-176 189,-119 79,-18 146,-44 242,-31 365,48 507,150 661,221 776,225 843,164"],M:[1318,"106,-564 119,-701 181,-833 269,-900 365,-927 494,-931 648,-921;31,-13 150,-13 256,-66 304,-123 626,-921 661,-913 652,-66 755,-277 869,-538 974,-741 1032,-837 1128,-927 1112,-820 1085,-507 1081,-277 1098,-18 1208,-88"],N:[1019,"88,-568 106,-706 158,-829 242,-904 344,-931 533,-931;132,-35 242,-35 304,-71 357,-150 379,-260 410,-441 494,-931 538,-927 617,-697 806,-106 820,-66 802,-13 851,-101 882,-221 974,-732 988,-837 1028,-931 1054,-948 997,-931 843,-931"],O:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31"],P:[767,"26,-517 53,-697 141,-816 283,-904 402,-931 533,-935 666,-909 755,-837 785,-724 741,-605 640,-507 568,-490 517,-494;437,-931 384,-781 353,-542 283,-185 260,-119 221,-57 146,-4 189,-26 398,-31 476,-75"],Q:[851,"225,-326 154,-388 115,-538 154,-697 221,-798 322,-886 441,-917 533,-927 640,-864 697,-750 710,-626 687,-463 630,-349 511,-207 414,-128 318,-75 221,-53 62,-48 88,-62 277,-40 388,18 494,75 582,102 693,84 785,35"],R:[958,"498,-84 414,-35 246,-44 207,-18 256,-75 326,-172 441,-833 472,-927;62,-498 71,-626 137,-771 230,-864 340,-913 459,-927 560,-931 697,-909 776,-855 820,-755 806,-661 745,-578 671,-525 605,-511 517,-511 644,-291 816,-31 944,128"],S:[706,"84,-66 195,-18 371,-26 441,-88 494,-172 517,-277 494,-375 269,-675 242,-767 269,-869 349,-917 437,-944 538,-935 640,-913"],T:[864,"48,-568 48,-683 97,-798 168,-878 252,-921 829,-921 503,-921 463,-771 423,-454 379,-207 322,-93 287,-48 225,-9 273,-26 484,-35 560,-88"],U:[1103,"48,-560 48,-679 93,-790 172,-886 246,-921 419,-927 490,-931 468,-921 410,-741 371,-441 344,-199 375,-75 423,-35 498,-35 582,-88 675,-221 736,-326 794,-433 816,-472 904,-909 931,-931 904,-904 798,-398 781,-207 794,-115 837,-48 882,-40 939,-35 993,-88"],V:[993,"22,-560 40,-687 97,-820 195,-895 300,-927 392,-913 441,-825 476,-679 490,-507 494,-335 498,-176 490,-31 599,-230 728,-468 864,-741 921,-882 900,-917 806,-917"],W:[1358,"48,-564 71,-693 137,-829 256,-913 361,-931 433,-895 484,-794 511,-661 511,-168 503,-44 578,-181 706,-419 820,-701 882,-847 944,-890 895,-825 878,-657 882,-414 927,-40 1050,-269 1147,-463 1235,-661 1280,-794 1288,-874 1266,-904 1182,-904"],X:[1124,"48,-35 181,-31 265,-71 375,-172 503,-353 697,-679 806,-851 864,-913 909,-931 979,-931 1040,-909;150,-622 158,-718 203,-829 265,-904 365,-931 433,-935 480,-874 517,-806 636,-318 728,-88 776,-31 825,-9 890,-40 979,-106"],Y:[979,"57,-636 79,-763 128,-869 189,-927 295,-931 353,-874 406,-714 449,-564 503,-365 552,-211;776,-909 878,-904 895,-869 851,-759 578,-260 445,-26 318,132 238,189 168,195 22,115"],Z:[979,"176,-683 176,-767 225,-878 273,-935 388,-958 480,-935 582,-909 675,-890 767,-890 833,-927 750,-847 542,-574 375,-361 256,-230 84,-88 115,-97 225,-88 326,-35 599,132 718,164 790,150 869,57"],"[":[577,"467,-1046 264,-1046 110,106 313,102"],"\\":[577,"110,-1023 317,-357 467,62"],"]":[568,"265,-1046 458,-1046 304,97 110,106"],"^":[854,"110,-433 444,-860 744,-428"],_:[868,"110,35 758,35"],"`":[454,"110,-962 202,-927 260,-878 344,-781"],a:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353"],b:[463,"353,-1063 234,-1050 123,-958 71,-837 4,-260 -13,-132 -22,-62 -4,-4 84,-18 225,-115 295,-269 326,-406 330,-525 322,-622 203,-503 79,-326 -9,-137"],c:[433,"335,-609 277,-640 185,-622 84,-511 44,-423 9,-330 4,-225 13,-123 44,-48 106,9 207,-84 318,-203 433,-357"],d:[626,"666,-1054 560,-1054 463,-997 406,-900 375,-767 353,-605 340,-517 273,-388 181,-225 93,-101 0,-18 -18,-181 4,-375 57,-498 102,-560 168,-595 238,-613 308,-605 340,-568 322,-406 304,-211 265,-9 365,-88 484,-234 578,-357"],e:[406,"4,-300 102,-361 221,-480 265,-542 277,-609 252,-636 195,-640 102,-578 31,-476 -9,-326 -26,-207 -4,-110 44,-40 88,4 238,-150 335,-260 402,-357"],f:[458,"-189,242 -110,252 -26,221 53,132 84,31 132,-340 164,-605 53,-605 349,-617 164,-609 176,-736 203,-874 269,-993 330,-1050 410,-1067 441,-1063 498,-1050"],g:[440,"-88,234 -75,234 48,238 141,211 199,154 252,26 330,-609 181,-613 106,-574 35,-490 0,-365 -22,-242 -31,-181 -31,-115 -22,-22 57,-84 158,-221 238,-335 291,-459 330,-556"],h:[556,"344,-1063 252,-1063 168,-1023 75,-900 53,-763 26,-595 0,-392 -22,-230 -57,-31 13,-195 115,-371 216,-517 295,-599 330,-609 344,-533 304,-357 269,-195 246,-97 234,0 361,-110 490,-260 552,-357"],i:[273,"-48,-538 22,-605 57,-622 -4,-252 -31,-123 -31,-18 75,-110 158,-203 277,-357;93,-890 93,-816 79,-802"],j:[181,"-335,238 -216,234 -128,168 -75,79 -40,-62 -4,-265 18,-454 40,-630 -35,-578 -66,-542;102,-900 88,-847 66,-825"],k:[582,"357,-1058 260,-1058 168,-1009 97,-927 62,-806 -44,-13 31,-344 128,-517 199,-599 283,-636 340,-636 365,-605 361,-529 304,-449 246,-398 150,-340 277,-13 402,-128 498,-238 582,-357"],l:[313,"353,-1054 287,-1067 185,-1028 97,-921 66,-790 -31,-150 -44,-4 62,-97 199,-260 269,-357"],m:[806,"-71,-552 40,-636 18,-468 -13,-283 -35,-123 -48,-44 40,-238 128,-410 211,-533 283,-609 318,-622 340,-595 308,-459 260,-221 221,-13 265,-158 340,-308 441,-468 517,-578 578,-626 609,-609 564,-384 521,-199 498,-84 494,-4 617,-110 718,-234 806,-357"],n:[626,"-4,-547 79,-617 119,-644 97,-538 71,-353 44,-225 26,-106 18,-31 22,-9 18,-101 110,-230 181,-365 260,-480 344,-578 388,-630 410,-630 423,-538 388,-365 357,-234 330,-132 308,-4 388,-71 503,-189 564,-277 626,-357"],o:[441,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4"],p:[406,"-62,-556 48,-636 -66,115 -101,225 -234,318 13,185;0,-234 13,-242 53,-379 146,-507 230,-595 277,-630 300,-507 295,-379 265,-242 221,-123 168,-48 97,-22 40,-31 4,-57 -31,-115"],q:[419,"398,-630 330,-533 260,-375 154,-185 88,-97 -4,-18 -22,-195 9,-392 53,-503 119,-582 238,-617 322,-622 365,-609 277,-132 225,181 199,238 75,322 322,195"],r:[322,"-71,-542 9,-609 53,-640 9,-402 -26,-185 -31,-79 -31,-35 9,-176 71,-314 123,-454 189,-564 225,-609 273,-630 330,-626"],s:[445,"365,-609 283,-648 211,-636 141,-582 115,-517 141,-433 207,-353 265,-273 300,-195 295,-123 242,-57 168,-13 106,4 26,-31"],t:[256,"40,-706 35,-622 -66,-613 35,-626 221,-630 35,-626 9,-384 -18,-221 -44,-123 -75,-4 26,-88 154,-230 246,-357"],u:[552,"-66,-556 26,-622 53,-640 13,-463 -4,-295 -18,-195 -18,-66 -18,-18 57,-88 158,-221 225,-344 295,-484 357,-626 314,-449 277,-269 256,-119 246,-13 353,-101 454,-225 556,-357"],v:[353,"-128,-547 -123,-547 -66,-609 -4,-640 9,-164 22,-44 88,-123 158,-252 221,-402 246,-484 265,-640"],w:[574,"-137,-552 -66,-613 -13,-640 4,-626 -4,-221 4,-62 9,-26 93,-132 158,-260 211,-402 238,-459 295,-640 260,-605 273,-132 283,-35 361,-123 433,-256 490,-392 521,-498 533,-609 525,-640"],x:[599,"84,-552 154,-609 211,-640 414,-9 484,-48 529,-101;40,-22 106,-31 141,-62 189,-123 353,-384 449,-564 498,-609 568,-622"],y:[398,"-71,-556 -57,-560 9,-609 53,-640 9,-392 -18,-168 -4,-31 106,-150 199,-295 265,-419 353,-617 308,-410 269,-115 234,79 195,168 141,216 62,242 -84,230"],z:[547,"123,-547 216,-609 273,-617 388,-605 468,-605 53,-9 141,-44 256,-35 375,-13 423,-4 480,-48"],"{":[546,"436,-1050 335,-1005 278,-904 251,-741 237,-595 212,-517 180,-498 110,-476 163,-445 225,-379 225,-291 176,-101 159,22 180,93 251,146"],"|":[220,"110,-1128 110,234"],"}":[538,"256,-1050 344,-1001 361,-948 353,-812 334,-687 330,-578 344,-517 383,-490 428,-468 361,-445 309,-402 273,-318 260,-181 260,-48 246,44 203,102 141,150 110,154"],"~":[930,"110,-335 217,-392 313,-414 420,-392 533,-357 617,-326 715,-322 820,-371"],"\xA0":[529,""],"\xA1":[468,"110,0 137,-246 198,-529 243,-724 282,-829;313,-962 358,-1005 319,-1063 274,-1014 313,-962"],"\xA2":[543,"335,-609 277,-640 185,-622 84,-511 44,-423 9,-330 4,-225 13,-123 44,-48 106,9 207,-84 318,-203 433,-357;379,-952 176,-384 -40,150"],"\xA3":[803,"88,-410 287,-414 437,-445;648,-895 547,-944 449,-921 349,-837 295,-741 246,-365 221,-176 189,-119 79,-18 146,-44 242,-31 365,48 507,150 661,221 776,225 843,164"],"\xA5":[647,"110,-983 66,-970 71,-909 137,-697 211,-511 230,-454 199,-269 164,-158 132,-93 150,-88 189,-164 185,-207;230,-472 238,-472 384,-599 547,-771 630,-886 687,-1001;75,-242 48,-211 318,-221;75,-419 48,-388 318,-398"],"\xA6":[70,"110,-339 110,70;110,-1000 110,-591"],"\xA8":[661,"157,-1040 110,-991 161,-934 210,-979 157,-1040;497,-1056 450,-1007 502,-949 551,-994 497,-1056"],"\xA9":[953,"137,-630 110,-480 128,-340 190,-195 313,-71 475,-13 652,-31 772,-101 873,-242 908,-402 908,-560 869,-710 811,-825 736,-890 621,-931 489,-944 352,-909 237,-812 137,-630;652,-283 620,-252 580,-231 516,-223 439,-245 377,-293 340,-357 326,-426 331,-498 344,-563 390,-636 452,-678 509,-687 554,-690 593,-679 621,-661 642,-645"],\u00AA:[356,"296,-1113 219,-1119 165,-1093 126,-1023 110,-932 110,-862 116,-827 158,-869 218,-952 256,-1014 284,-1074 296,-1105 266,-967 250,-900 246,-862 242,-825 287,-854 364,-946 396,-993"],"\xAB":[611,"314,-466 204,-378 109,-265 231,-120 325,-32;490,-466 381,-378 286,-265 407,-120 501,-32"],"\xAE":[953,"137,-630 110,-480 128,-340 190,-195 313,-71 475,-13 652,-31 772,-101 873,-242 908,-402 908,-560 869,-710 811,-825 736,-890 621,-931 489,-944 352,-909 237,-812 137,-630;359,-227 363,-678 324,-659 383,-683 439,-693 509,-693 569,-657 601,-606 611,-549 582,-490 544,-454 513,-441 445,-454 368,-441 429,-430 508,-438 529,-372 571,-298 608,-242 624,-231 648,-234"],"\xB0":[243,"171,-763 150,-771 134,-784 113,-825 110,-876 124,-928 145,-967 172,-998 196,-1021 228,-1032 255,-1018 278,-976 283,-921 276,-875 257,-834 228,-797 201,-776 171,-763"],"\xB1":[920,"460,-567 460,0;193,-300 727,-300;193,0 727,0"],"\xB2":[308,"141,-1098 197,-1124 256,-1134 298,-1113 309,-1061 289,-998 236,-935 172,-875 110,-825 170,-825 274,-829 302,-827 317,-829 348,-848"],"\xB3":[292,"169,-1093 226,-1123 290,-1127 318,-1100 332,-1056 317,-1012 282,-977 240,-948 286,-944 318,-920 332,-879 328,-836 306,-798 267,-763 211,-756 153,-766 110,-783"],"\xB4":[306,"207,-1068 198,-1015 172,-949 141,-900 110,-861"],"\xB7":[342,"169,-582 110,-524 173,-455 232,-508 169,-582"],"\xB9":[160,"110,-1074 200,-1140 152,-825"],\u00BA:[243,"171,-763 150,-771 134,-784 113,-825 110,-876 124,-928 145,-967 172,-998 196,-1021 228,-1032 255,-1018 278,-976 283,-921 276,-875 257,-834 228,-797 201,-776 171,-763"],"\xBB":[579,"83,-35 185,-134 293,-260 203,-371 92,-466;259,-35 361,-134 469,-260 379,-371 269,-466"],"\xBC":[997,"101,-839 209,-918 151,-540;820,-1040 617,-472 402,62;895,103 969,-386 902,-307 844,-196 762,-98 710,-24 910,-24 979,-29 1037,-45"],"\xBD":[974,"101,-839 209,-918 151,-540;820,-1040 617,-472 402,62;764,-339 830,-371 902,-381 952,-357 966,-294 942,-220 878,-143 802,-71 728,-11 799,-11 924,-16 958,-13 976,-16 1014,-40"],"\xBE":[997,"98,-862 167,-897 244,-902 277,-871 294,-818 276,-764 232,-722 182,-687 238,-683 277,-654 294,-606 288,-553 262,-508 214,-466 148,-458 79,-469 26,-490;820,-1040 617,-472 402,62;895,103 969,-386 902,-307 844,-196 762,-98 710,-24 910,-24 979,-29 1037,-45"],"\xBF":[585,"427,-917 475,-966 413,-1028 370,-983 427,-917;454,-781 471,-675 432,-574 329,-468 224,-371 149,-273 110,-150 126,-57 188,0 294,-4 378,-53"],\u00C0:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;476,-1294 511,-1228 587,-1158"],\u00C1:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;841,-1427 833,-1375 806,-1308 776,-1260 745,-1219"],\u00C2:[1055,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;603,-1166 769,-1298 945,-1166"],\u00C3:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;398,-1159 473,-1201 545,-1218 622,-1201 704,-1176 764,-1154 836,-1151 911,-1186"],\u00C4:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;511,-1298 462,-1249 515,-1191 563,-1236 511,-1298;820,-1291 771,-1242 825,-1186 874,-1229 820,-1291"],\u00C5:[1041,"26,-13 146,-13 211,-44 287,-115 736,-927 494,-927 344,-869 256,-771 225,-679 216,-568;755,-931 736,-398 454,-398 736,-398 741,-181 759,-71 802,-18 837,-9 931,-57;680,-1200 659,-1208 644,-1221 623,-1261 620,-1312 634,-1365 655,-1404 682,-1434 706,-1457 736,-1468 763,-1454 787,-1413 792,-1358 784,-1310 767,-1271 736,-1233 710,-1212 680,-1200"],\u00C8:[947,"106,-564 137,-750 181,-820 252,-886 349,-921 837,-921 480,-921 433,-724 406,-538 714,-538 402,-538 375,-344 349,-203 300,-101 273,-53 221,-13 283,-44 693,-40 776,-93;419,-1259 455,-1193 529,-1123"],\u00C9:[947,"106,-564 137,-750 181,-820 252,-886 349,-921 837,-921 480,-921 433,-724 406,-538 714,-538 402,-538 375,-344 349,-203 300,-101 273,-53 221,-13 283,-44 693,-40 776,-93;783,-1394 773,-1341 746,-1275 715,-1226 685,-1187"],\u00CA:[947,"106,-564 137,-750 181,-820 252,-886 349,-921 837,-921 480,-921 433,-724 406,-538 714,-538 402,-538 375,-344 349,-203 300,-101 273,-53 221,-13 283,-44 693,-40 776,-93;392,-1102 547,-1226 713,-1102"],\u00CB:[948,"106,-564 137,-750 181,-820 252,-886 349,-921 837,-921 480,-921 433,-724 406,-538 714,-538 402,-538 375,-344 349,-203 300,-101 273,-53 221,-13 283,-44 693,-40 776,-93;409,-1303 361,-1254 413,-1197 462,-1242 409,-1303;808,-1340 759,-1292 812,-1235 860,-1278 808,-1340"],\u00CC:[631,"40,-560 40,-675 88,-790 168,-878 265,-927 357,-931 476,-935 449,-927 406,-755 357,-490 326,-273 304,-168 265,-101 216,-44 176,0 221,-35 441,-31 521,-97;252,-1271 287,-1204 361,-1134"],\u00CD:[640,"40,-560 40,-675 88,-790 168,-878 265,-927 357,-931 476,-935 449,-927 406,-755 357,-490 326,-273 304,-168 265,-101 216,-44 176,0 221,-35 441,-31 521,-97;605,-1417 596,-1364 570,-1298 539,-1249 508,-1210"],\u00CE:[640,"40,-560 40,-675 88,-790 168,-878 265,-927 357,-931 476,-935 449,-927 406,-755 357,-490 326,-273 304,-168 265,-101 216,-44 176,0 221,-35 441,-31 521,-97;281,-1158 444,-1288 619,-1158"],\u00CF:[671,"40,-560 40,-675 88,-790 168,-878 265,-927 357,-931 476,-935 449,-927 406,-755 357,-490 326,-273 304,-168 265,-101 216,-44 176,0 221,-35 441,-31 521,-97;277,-1294 230,-1246 281,-1189 330,-1232 277,-1294;658,-1302 609,-1253 662,-1196 711,-1240 658,-1302"],\u00D0:[934,"225,-410 423,-414 573,-445;110,-494 128,-657 229,-825 362,-900 498,-935 666,-927 803,-874 899,-728 912,-556 873,-375 793,-234 688,-110 573,-57 477,-31 264,-40 233,-26 290,-79 352,-189 485,-917"],\u00D1:[1019,"88,-568 106,-706 158,-829 242,-904 344,-931 533,-931;132,-35 242,-35 304,-71 357,-150 379,-260 410,-441 494,-931 538,-927 617,-697 806,-106 820,-66 802,-13 851,-101 882,-221 974,-732 988,-837 1028,-931 1054,-948 997,-931 843,-931;482,-1133 556,-1172 623,-1187 696,-1172 776,-1148 834,-1126 902,-1123 974,-1156"],\u00D2:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;304,-1259 339,-1193 413,-1121"],\u00D3:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;679,-1449 671,-1396 644,-1330 613,-1281 582,-1242"],\u00D4:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;314,-1084 465,-1204 626,-1084"],\u00D5:[751,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;265,-1184 343,-1226 414,-1243 493,-1226 578,-1201 641,-1177 713,-1175 791,-1211"],\u00D6:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;309,-1331 260,-1282 314,-1225 361,-1270 309,-1331;686,-1354 638,-1305 690,-1247 739,-1292 686,-1354"],"\xD7":[853,"193,-533 660,-67;660,-533 193,-67"],\u00D8:[724,"308,-31 238,-57 189,-101 119,-234 110,-406 154,-582 225,-710 314,-812 392,-886 498,-927 587,-878 666,-741 683,-556 657,-402 599,-269 498,-141 410,-71 308,-31;601,-1077 381,-462 147,114"],\u00D9:[1103,"48,-560 48,-679 93,-790 172,-886 246,-921 419,-927 490,-931 468,-921 410,-741 371,-441 344,-199 375,-75 423,-35 498,-35 582,-88 675,-221 736,-326 794,-433 816,-472 904,-909 931,-931 904,-904 798,-398 781,-207 794,-115 837,-48 882,-40 939,-35 993,-88;479,-1291 514,-1225 589,-1155"],\u00DA:[1103,"48,-560 48,-679 93,-790 172,-886 246,-921 419,-927 490,-931 468,-921 410,-741 371,-441 344,-199 375,-75 423,-35 498,-35 582,-88 675,-221 736,-326 794,-433 816,-472 904,-909 931,-931 904,-904 798,-398 781,-207 794,-115 837,-48 882,-40 939,-35 993,-88;865,-1444 857,-1392 830,-1326 799,-1277 769,-1238"],\u00DB:[1103,"48,-560 48,-679 93,-790 172,-886 246,-921 419,-927 490,-931 468,-921 410,-741 371,-441 344,-199 375,-75 423,-35 498,-35 582,-88 675,-221 736,-326 794,-433 816,-472 904,-909 931,-931 904,-904 798,-398 781,-207 794,-115 837,-48 882,-40 939,-35 993,-88;472,-1081 623,-1201 784,-1081"],\u00DC:[1103,"48,-560 48,-679 93,-790 172,-886 246,-921 419,-927 490,-931 468,-921 410,-741 371,-441 344,-199 375,-75 423,-35 498,-35 582,-88 675,-221 736,-326 794,-433 816,-472 904,-909 931,-931 904,-904 798,-398 781,-207 794,-115 837,-48 882,-40 939,-35 993,-88;494,-1309 447,-1260 500,-1203 547,-1247 494,-1309;854,-1347 805,-1298 858,-1240 907,-1285 854,-1347"],\u00DD:[979,"57,-636 79,-763 128,-869 189,-927 295,-931 353,-874 406,-714 449,-564 503,-365 552,-211;776,-909 878,-904 895,-869 851,-759 578,-260 445,-26 318,132 238,189 168,195 22,115;797,-1399 788,-1345 762,-1280 731,-1231 700,-1191"],\u00E0:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;72,-956 107,-890 182,-819"],\u00E1:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;444,-1049 434,-997 407,-930 377,-882 346,-841"],\u00E2:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;88,-847 252,-979 426,-847"],\u00E3:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;32,-819 104,-858 171,-874 244,-858 322,-833 379,-812 447,-809 519,-843"],\u00E4:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;227,-1043 179,-994 232,-937 280,-980 227,-1043;526,-998 479,-949 531,-892 580,-937 526,-998"],\u00E5:[578,"379,-595 225,-605 115,-556 35,-414 4,-234 4,-93 18,-22 102,-106 221,-273 295,-398 353,-517 379,-578 318,-304 287,-168 277,-93 269,-18 357,-75 511,-260 578,-353;225,-869 204,-878 189,-890 168,-930 165,-981 179,-1035 200,-1072 227,-1103 251,-1126 281,-1138 308,-1123 332,-1082 337,-1026 329,-980 312,-941 281,-902 255,-881 225,-869"],\u00E8:[406,"4,-300 102,-361 221,-480 265,-542 277,-609 252,-636 195,-640 102,-578 31,-476 -9,-326 -26,-207 -4,-110 44,-40 88,4 238,-150 335,-260 402,-357;-17,-966 19,-900 94,-829"],\u00E9:[406,"4,-300 102,-361 221,-480 265,-542 277,-609 252,-636 195,-640 102,-578 31,-476 -9,-326 -26,-207 -4,-110 44,-40 88,4 238,-150 335,-260 402,-357;367,-1085 358,-1032 332,-966 301,-917 270,-878"],\u00EA:[406,"4,-300 102,-361 221,-480 265,-542 277,-609 252,-636 195,-640 102,-578 31,-476 -9,-326 -26,-207 -4,-110 44,-40 88,4 238,-150 335,-260 402,-357;26,-813 188,-942 360,-813"],\u00EB:[443,"4,-300 102,-361 221,-480 265,-542 277,-609 252,-636 195,-640 102,-578 31,-476 -9,-326 -26,-207 -4,-110 44,-40 88,4 238,-150 335,-260 402,-357;59,-1002 10,-953 63,-897 112,-941 59,-1002;431,-1022 382,-974 435,-917 483,-960 431,-1022"],\u00EC:[273,"-48,-538 22,-605 57,-622 -4,-252 -31,-123 -31,-18 75,-110 158,-203 277,-357;-71,-952 -35,-886 40,-816"],\u00ED:[273,"-48,-538 22,-605 57,-622 -4,-252 -31,-123 -31,-18 75,-110 158,-203 277,-357;294,-1089 286,-1036 259,-970 228,-921 197,-882"],\u00EE:[273,"-48,-538 22,-605 57,-622 -4,-252 -31,-123 -31,-18 75,-110 158,-203 277,-357;-31,-783 121,-904 284,-783"],\u00EF:[407,"-48,-538 22,-605 57,-622 -4,-252 -31,-123 -31,-18 75,-110 158,-203 277,-357;63,-1035 14,-987 67,-930 116,-973 63,-1035;393,-1057 344,-1008 398,-951 447,-995 393,-1057"],\u00F1:[626,"-4,-547 79,-617 119,-644 97,-538 71,-353 44,-225 26,-106 18,-31 22,-9 18,-101 110,-230 181,-365 260,-480 344,-578 388,-630 410,-630 423,-538 388,-365 357,-234 330,-132 308,-4 388,-71 503,-189 564,-277 626,-357;33,-815 108,-855 176,-871 251,-855 332,-830 391,-809 459,-805 533,-840"],\u00F2:[441,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;10,-967 45,-900 120,-830"],\u00F3:[441,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;392,-1106 384,-1053 357,-987 326,-938 295,-899"],\u00F4:[441,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;37,-819 200,-951 374,-819"],\u00F5:[486,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;6,-868 83,-910 154,-925 232,-910 316,-883 378,-861 448,-858 526,-893"],\u00F6:[516,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;122,-974 73,-927 126,-869 175,-913 122,-974;504,-979 455,-930 508,-872 556,-917 504,-979"],"\xF7":[987,"493,-600 460,-567 493,-533 527,-567 493,-600;193,-300 793,-300;493,-67 460,-33 493,0 527,-33 493,-67"],\u00F8:[441,"75,-4 93,-4 172,-44 246,-128 314,-252 349,-379 340,-503 300,-568 269,-630 137,-568 53,-459 -4,-335 -13,-225 4,-115 31,-62 75,-4;328,-728 185,-330 34,43"],\u00F9:[552,"-66,-556 26,-622 53,-640 13,-463 -4,-295 -18,-195 -18,-66 -18,-18 57,-88 158,-221 225,-344 295,-484 357,-626 314,-449 277,-269 256,-119 246,-13 353,-101 454,-225 556,-357;77,-962 112,-895 186,-825"],\u00FA:[552,"-66,-556 26,-622 53,-640 13,-463 -4,-295 -18,-195 -18,-66 -18,-18 57,-88 158,-221 225,-344 295,-484 357,-626 314,-449 277,-269 256,-119 246,-13 353,-101 454,-225 556,-357;423,-1082 414,-1029 388,-963 357,-914 326,-875"],\u00FB:[552,"-66,-556 26,-622 53,-640 13,-463 -4,-295 -18,-195 -18,-66 -18,-18 57,-88 158,-221 225,-344 295,-484 357,-626 314,-449 277,-269 256,-119 246,-13 353,-101 454,-225 556,-357;61,-797 214,-918 378,-797"],\u00FC:[590,"-66,-556 26,-622 53,-640 13,-463 -4,-295 -18,-195 -18,-66 -18,-18 57,-88 158,-221 225,-344 295,-484 357,-626 314,-449 277,-269 256,-119 246,-13 353,-101 454,-225 556,-357;130,-974 82,-925 135,-868 183,-913 130,-974;577,-984 528,-937 581,-879 630,-923 577,-984"],\u00FD:[398,"-71,-556 -57,-560 9,-609 53,-640 9,-392 -18,-168 -4,-31 106,-150 199,-295 265,-419 353,-617 308,-410 269,-115 234,79 195,168 141,216 62,242 -84,230;370,-1102 361,-1049 335,-983 304,-934 273,-895"],\u00FF:[488,"-71,-556 -57,-560 9,-609 53,-640 9,-392 -18,-168 -4,-31 106,-150 199,-295 265,-419 353,-617 308,-410 269,-115 234,79 195,168 141,216 62,242 -84,230;162,-1047 113,-998 167,-941 214,-986 162,-1047;476,-1015 427,-966 480,-910 528,-953 476,-1015"],"\u2013":[742,"110,-410 408,-414 632,-445"],"\u2014":[917,"110,-410 507,-414 807,-445"],"\u201C":[461,"101,-988 105,-952 119,-904 153,-837;300,-988 304,-952 318,-904 351,-837"],"\u201D":[462,"154,-1004 150,-956 138,-897 124,-854 110,-818;352,-1004 349,-956 336,-897 322,-854 308,-818"],"\u2039":[434,"314,-466 204,-378 109,-265 231,-120 325,-32"],"\u203A":[403,"83,-35 185,-134 293,-260 203,-371 92,-466"],"\u20AC":[763,"697,-895 564,-935 362,-874 229,-710 150,-547 115,-398 119,-256 190,-106 264,-26 388,-9 467,-57 578,-154;110,-322 309,-326 459,-357;110,-498 309,-503 459,-533"],\u0178:[979,"57,-636 79,-763 128,-869 189,-927 295,-931 353,-874 406,-714 449,-564 503,-365 552,-211;776,-909 878,-904 895,-869 851,-759 578,-260 445,-26 318,132 238,189 168,195 22,115;444,-1301 395,-1252 448,-1196 497,-1239 444,-1301;811,-1345 763,-1296 815,-1239 864,-1284 811,-1345"],\u00DF:[490,"-176,78 -176,78 -38,40 -31,-32 0,-307 32,-377 79,-852 152,-1119 381,-994 376,-787 370,-579 123,-452 189,-479 254,-506 380,-424 278,-211 176,1 30,-15 30,-15"],"\xB8":[360,"249,-20 249,11 249,23 250,34 248,46 245,64 221,115 208,129 191,146 140,167 110,159"],\u00E7:[433,"106,9 106,40 106,51 107,63 105,74 102,92 78,143 65,157 48,174 -3,195 -33,188;335,-609 277,-640 185,-622 84,-511 44,-423 9,-330 4,-225 13,-123 44,-48 106,9 207,-84 318,-203 433,-357"],\u00C7:[758,"403,-20 403,11 403,23 404,34 402,46 399,64 375,115 362,129 345,146 294,167 264,159;692,-895 559,-935 357,-874 224,-710 145,-547 110,-398 114,-256 185,-106 259,-26 383,-9 462,-57 573,-154"],\u0391:[720,"360,-700 93,0;360,-700 627,0;193,-233 527,-233"],\u0392:[787,"193,-700 193,0;193,-700 493,-700 593,-667 627,-633 660,-567 660,-500 627,-433 593,-400 493,-367;193,-367 493,-367 593,-333 627,-300 660,-233 660,-133 627,-67 593,-33 493,0 193,0"],\u03A7:[787,"160,-700 627,0;160,0 627,-700"],\u0394:[720,"360,-700 93,0;360,-700 627,0;93,0 627,0"],\u0395:[720,"193,-700 193,0;193,-700 627,-700;193,-367 460,-367;193,0 627,0"],\u03A6:[787,"393,-700 393,0;327,-533 227,-500 193,-467 160,-400 160,-300 193,-233 227,-200 327,-167 460,-167 560,-200 593,-233 627,-300 627,-400 593,-467 560,-500 460,-533 327,-533"],\u0393:[587,"193,-700 193,0;193,-700 593,-700"],\u0397:[853,"193,-700 193,0;660,-700 660,0;193,-367 660,-367"],\u0399:[387,"193,-700 193,0"],\u039A:[787,"193,-700 193,0;660,-700 193,-233;360,-400 660,0"],\u039B:[720,"360,-700 93,0;360,-700 627,0"],\u039C:[920,"193,-700 193,0;193,-700 460,0;727,-700 460,0;727,-700 727,0"],\u039D:[853,"193,-700 193,0;193,-700 660,0;660,-700 660,0"],\u039F:[853,"360,-700 293,-667 227,-600 193,-533 160,-433 160,-267 193,-167 227,-100 293,-33 360,0 493,0 560,-33 627,-100 660,-167 693,-267 693,-433 660,-533 627,-600 560,-667 493,-700 360,-700"],\u03A0:[853,"193,-700 193,0;660,-700 660,0;193,-700 660,-700"],\u0398:[853,"360,-700 293,-667 227,-600 193,-533 160,-433 160,-267 193,-167 227,-100 293,-33 360,0 493,0 560,-33 627,-100 660,-167 693,-267 693,-433 660,-533 627,-600 560,-667 493,-700 360,-700;327,-367 527,-367"],\u03A1:[787,"193,-700 193,0;193,-700 493,-700 593,-667 627,-633 660,-567 660,-467 627,-400 593,-367 493,-333 193,-333"],\u03A3:[720,"127,-700 360,-367 127,0;127,-700 593,-700;127,0 593,0"],\u03A4:[653,"327,-700 327,0;93,-700 560,-700"],\u03A5:[720,"127,-533 127,-600 160,-667 193,-700 260,-700 293,-667 327,-600 360,-467 360,0;593,-533 593,-600 560,-667 527,-700 460,-700 427,-667 393,-600 360,-467"],\u03A9:[787,"160,0 293,0 193,-233 160,-367 160,-500 193,-600 260,-667 360,-700 427,-700 527,-667 593,-600 627,-500 627,-367 593,-233 493,0 627,0"],\u039E:[720,"127,-700 593,-700;260,-367 460,-367;127,0 593,0"],\u03A8:[853,"427,-700 427,0;127,-500 160,-500 193,-467 227,-333 260,-267 293,-233 393,-200 460,-200 560,-233 593,-267 627,-333 660,-467 693,-500 727,-500"],\u0396:[787,"627,-700 160,0;160,-700 627,-700;160,0 627,0"],\u03B1:[853,"360,-467 293,-433 227,-367 193,-300 160,-200 160,-100 193,-33 260,0 327,0 393,-33 493,-133 560,-233 627,-367 660,-467;360,-467 427,-467 460,-433 493,-367 560,-100 593,-33 627,0 660,0"],\u03B2:[787,"460,-700 393,-667 327,-600 260,-467 227,-367 193,-233 160,-33 127,233;460,-700 527,-700 593,-633 593,-533 560,-467 527,-433 460,-400 360,-400;360,-400 427,-367 493,-300 527,-233 527,-133 493,-67 460,-33 393,0 327,0 260,-33 227,-67 193,-167"],\u03C7:[720,"127,-467 193,-467 260,-400 460,167 527,233 593,233;627,-467 593,-400 527,-300 193,67 127,167 93,233"],\u03B4:[720,"427,-467 327,-467 260,-433 193,-367 160,-267 160,-167 193,-67 227,-33 293,0 360,0 427,-33 493,-100 527,-200 527,-300 493,-400 427,-467 360,-533 327,-600 327,-667 360,-700 427,-700 493,-667 560,-600"],\u03B5:[653,"493,-400 460,-433 393,-467 293,-467 227,-433 227,-367 260,-300 360,-267;360,-267 227,-233 160,-167 160,-100 193,-33 260,0 360,0 427,-33 493,-100"],\u03C6:[853,"327,-433 260,-400 193,-333 160,-233 160,-133 193,-67 227,-33 293,0 393,0 493,-33 593,-100 660,-200 693,-300 693,-400 627,-467 560,-467 493,-400 427,-267 360,-100 260,233"],\u03B3:[787,"93,-367 160,-433 227,-467 260,-467 327,-433 360,-400 393,-300 393,-167 360,0;627,-467 593,-367 560,-300 360,0 293,133 260,233"],\u03B7:[787,"93,-333 127,-400 193,-467 260,-467 293,-433 293,-367 260,-233 193,0;260,-233 327,-367 393,-433 460,-467 527,-467 593,-400 593,-300 560,-133 460,233"],\u03B9:[453,"260,-467 193,-233 160,-100 160,-33 193,0 260,0 327,-67 360,-133"],\u03BA:[720,"260,-467 127,0;593,-433 560,-467 527,-467 460,-433 327,-300 260,-267 227,-267;227,-267 293,-233 327,-200 393,-33 427,0 460,0 493,-33"],\u03BB:[653,"93,-700 160,-700 227,-667 260,-633 527,0;327,-467 127,0"],\u03BC:[853,"293,-467 93,233;260,-333 227,-167 227,-67 293,0 360,0 427,-33 493,-100 560,-233;627,-467 560,-233 527,-100 527,-33 560,0 627,0 693,-67 727,-133"],\u03BD:[720,"160,-467 260,-467 227,-267 193,-100 160,0;593,-467 560,-367 527,-300 460,-200 360,-100 260,-33 160,0"],\u03BF:[720,"327,-467 260,-433 193,-367 160,-267 160,-167 193,-67 227,-33 293,0 360,0 427,-33 493,-100 527,-200 527,-300 493,-400 460,-433 393,-467 327,-467"],\u03C0:[853,"360,-467 227,0;527,-467 560,-267 593,-100 627,0;127,-367 193,-433 293,-467 727,-467"],\u03B8:[787,"93,-333 127,-400 193,-467 260,-467 293,-433 293,-367 260,-200 260,-100 293,-33 327,0 393,0 460,-33 527,-133 560,-200 593,-300 627,-467 627,-567 593,-667 527,-700 460,-700 427,-633 427,-567 460,-467 527,-367 593,-300 693,-233"],\u03C1:[720,"193,-267 193,-167 227,-67 260,-33 327,0 393,0 460,-33 527,-100 560,-200 560,-300 527,-400 493,-433 427,-467 360,-467 293,-433 227,-367 193,-267 60,233"],\u03C3:[853,"660,-467 327,-467 260,-433 193,-367 160,-267 160,-167 193,-67 227,-33 293,0 360,0 427,-33 493,-100 527,-200 527,-300 493,-400 460,-433 393,-467"],\u03C4:[787,"427,-467 327,0;127,-367 193,-433 293,-467 660,-467"],\u03C5:[787,"93,-333 127,-400 193,-467 260,-467 293,-433 293,-367 227,-167 227,-67 293,0 360,0 460,-33 527,-100 593,-233 627,-367 627,-467"],\u03C9:[853,"327,-467 260,-433 193,-333 160,-233 160,-133 193,-33 227,0 293,0 360,-33 427,-133;460,-267 427,-133 460,-33 493,0 560,0 627,-33 693,-133 727,-233 727,-333 693,-433 660,-467"],\u03BE:[653,"393,-700 327,-667 293,-633 293,-600 327,-567 427,-533 527,-533;427,-533 327,-500 260,-467 227,-400 227,-333 293,-267 393,-233 460,-233;393,-233 260,-200 193,-167 160,-100 160,-33 227,33 360,100 393,133 393,200 327,233 260,233"],\u03C8:[853,"593,-700 327,233;93,-333 127,-400 193,-467 260,-467 293,-433 293,-367 260,-200 260,-100 293,-33 360,0 427,0 527,-33 593,-100 660,-200 727,-367 760,-467"],\u03B6:[587,"393,-700 327,-667 293,-633 293,-600 327,-567 427,-533 527,-533;527,-533 393,-467 293,-400 193,-300 160,-200 160,-133 193,-67 260,0 360,67 393,133 393,200 360,233 293,233 260,167"],\u03D1:[787,"93,-333 127,-400 193,-467 260,-467 293,-433 293,-367 260,-200 260,-100 293,-33 327,0 393,0 460,-33 527,-133 560,-200 593,-300 627,-467 627,-567 593,-667 527,-700 460,-700 427,-633 427,-567 460,-467 527,-367 593,-300 693,-233"],"\u2213":[920,"460,-567 460,0;193,-567 727,-567;193,-300 727,-300"],"\u22C5":[320,"127,-333 127,-300 160,-300 160,-333 127,-333"],"\u2264":[920,"727,-700 193,-467 727,-233;193,-167 727,-167;193,0 727,0"],"\u2265":[920,"193,-700 727,-467 193,-233;193,-167 727,-167;193,0 727,0"],"\u220F":[1253,"293,-833 293,233;327,-833 327,233;927,-833 927,233;960,-833 960,233;160,-833 1093,-833;160,233 460,233;793,233 1093,233"],"\u2211":[1120,"227,-833 560,-367 193,233;193,-833 527,-367;160,-833 527,-333;160,-833 927,-833 993,-600 893,-833;227,200 927,200;193,233 927,233 993,0 893,233"],"\u2260":[987,"727,-600 260,0;193,-400 793,-400;193,-200 793,-200"],"\u2261":[987,"193,-467 793,-467;193,-300 793,-300;193,-133 793,-133"],"\u221D":[987,"760,-133 693,-133 627,-167 560,-233 460,-367 427,-400 360,-433 293,-433 227,-400 193,-333 193,-267 227,-200 293,-167 360,-167 427,-200 460,-233 560,-367 627,-433 693,-467 760,-467"],"\u221E":[987,"793,-267 760,-200 693,-167 627,-167 560,-200 527,-233 427,-367 393,-400 327,-433 260,-433 193,-400 160,-333 160,-267 193,-200 260,-167 327,-167 393,-200 427,-233 527,-367 560,-400 627,-433 693,-433 760,-400 793,-333 793,-267"],"\u221A":[720,"160,-467 293,-467 493,-67;260,-467 493,0;793,-833 493,0"],"\u2282":[920,"727,-567 493,-567 360,-533 293,-500 227,-433 193,-333 193,-267 227,-167 293,-100 360,-67 493,-33 727,-33"],"\u222A":[920,"193,-567 193,-333 227,-200 260,-133 327,-67 427,-33 493,-33 593,-67 660,-133 693,-200 727,-333 727,-567"],"\u2283":[920,"193,-567 427,-567 560,-533 627,-500 693,-433 727,-333 727,-267 693,-167 627,-100 560,-67 427,-33 193,-33"],"\u2229":[920,"193,-33 193,-267 227,-400 260,-467 327,-533 427,-567 493,-567 593,-533 660,-467 693,-400 727,-267 727,-33"],"\u2208":[920,"727,-567 493,-567 360,-533 293,-500 227,-433 193,-333 193,-267 227,-167 293,-100 360,-67 493,-33 727,-33;193,-300 593,-300"],"\u2192":[987,"693,-367 793,-300 693,-233;593,-467 760,-300 593,-133;193,-300 760,-300"],"\u2191":[653,"260,-500 327,-600 393,-500;160,-400 327,-567 493,-400;327,-567 327,0"],"\u2190":[987,"293,-367 193,-300 293,-233;393,-467 227,-300 393,-133;227,-300 793,-300"],"\u2193":[653,"260,-100 327,0 393,-100;160,-200 327,-33 493,-200;327,-600 327,-33"],"\u2202":[787,"560,-300 527,-400 493,-433 427,-467 360,-467 260,-433 193,-333 160,-233 160,-133 193,-67 227,-33 293,0 360,0 460,-33 527,-100 560,-200 593,-367 593,-533 560,-633 527,-667 460,-700 360,-700 293,-667 260,-633 260,-600 293,-600 293,-633;360,-467 293,-433 227,-333 193,-233 193,-100 227,-33;360,0 427,-33 493,-100 527,-200 560,-367 560,-533 527,-633 460,-700"],"\u2207":[787,"127,-700 393,0;160,-700 393,-67;660,-700 393,0;127,-700 660,-700;160,-667 627,-667"],"\u222B":[920,"760,-800 727,-767 760,-733 793,-767 793,-800 760,-833 693,-833 627,-800 560,-733 527,-667 493,-567 460,-433 393,-33 360,100 327,167;593,-767 560,-700 527,-567 460,-167 427,-33 393,67 360,133 293,200 227,233 160,233 127,200 127,167 160,133 193,167 160,200"],"\u2203":[787,"560,-700 560,0;127,-700 560,-700;293,-367 560,-367;127,0 560,0"],\u2135:[787,"160,-600 193,-533 593,-133 627,-67 627,0;193,-500 593,-100;160,-600 160,-533 193,-467 593,-67 627,0;327,-367 193,-233 160,-167 160,-100 193,-33 160,0;160,-167 227,-33;193,-233 193,-167 227,-100 227,-33 160,0;427,-267 593,-433;527,-600 527,-500 560,-433 627,-433 627,-500 560,-533 527,-600;527,-600 560,-500 627,-433"],"\u2016":[587,"193,-833 193,233;393,-833 393,233"],"\u22A5":[920,"460,-833 460,0;160,0 760,0"],"\u2220":[920,"760,-833 160,0 760,0"],"\u2234":[987,"493,-600 460,-567 493,-533 527,-567 493,-600;193,-67 160,-33 193,0 227,-33 193,-67;793,-67 760,-33 793,0 827,-33 793,-67"],"\u2212":[569,"110,-410 309,-414 459,-445"],"\u2248":[930,"110,-425 217,-482 313,-504 420,-482 533,-447 617,-416 715,-412 820,-461;110,-245 217,-302 313,-324 420,-302 533,-267 617,-236 715,-232 820,-281"]};var B3="0.2.0",$3={white:"#f1f0ea",chalk:"#f1f0ea",yellow:"#f2ea72",lime:"#ddf27c",green:"#8fe07a",blue:"#8288ff",cyan:"#72d3ef",purple:"#b877ee",violet:"#b877ee",magenta:"#e06ade",pink:"#f27dc9",red:"#f45b73",orange:"#f5a04c",grey:"#9d9d9d",gray:"#9d9d9d"};function q3(e){let t=e>>>0,o=()=>{t=t+1831565813|0;let r=Math.imul(t^t>>>15,1|t);return r=r+Math.imul(r^r>>>7,61|r)^r,((r^r>>>14)>>>0)/4294967296};return{r:o,n:r=>(o()*2-1)*r}}function H3(e){let t=2166136261;for(let o=0;o<e.length;o++)t^=e.charCodeAt(o),t=Math.imul(t,16777619);return t>>>0}var t3=e=>e[e.length-1],d3=(e,t)=>Math.hypot(t[0]-e[0],t[1]-e[1]),p3=(e,t,o)=>[e[0]+(t[0]-e[0])*o,e[1]+(t[1]-e[1])*o],c3=(e,t,o)=>Math.min(o,Math.max(t,e)),D3=e=>e*e*(3-2*e);function w3(e){let t=0;for(let o=1;o<e.length;o++)t+=d3(e[o-1],e[o]);return t}function i3(e){let t=1/0,o=1/0,r=-1/0,a=-1/0;for(let s of e)for(let[c,l]of s.pts)c<t&&(t=c),c>r&&(r=c),l<o&&(o=l),l>a&&(a=l);return t===1/0?null:{x:t,y:o,w:r-t,h:a-o}}function G3(e){let t=Math.min(...e.map(s=>s.x)),o=Math.min(...e.map(s=>s.y)),r=Math.max(...e.map(s=>s.x+s.w)),a=Math.max(...e.map(s=>s.y+s.h));return{x:t,y:o,w:r-t,h:a-o}}function Z(e,t,o,r=6){let a=d3(e,t),s=-(t[1]-e[1])/(a||1),c=(t[0]-e[0])/(a||1),l=o.n(a*.018),u=[];for(let f=0;f<=r;f++){let d=f/r,g=l*Math.sin(Math.PI*d)+(f&&f<r?o.n(a*.002):0),M=p3(e,t,d);u.push([M[0]+s*g,M[1]+c*g])}return u}function a3(e,t,o,r=16){let a=[];for(let s=0;s<=r;s++){let c=s/r,l=1-c;a.push([l*l*e[0]+2*l*c*t[0]+c*c*o[0],l*l*e[1]+2*l*c*t[1]+c*c*o[1]])}return a}function k3(e,t=10){if(e.length<3)return e.length===2?a3(e[0],p3(e[0],e[1],.5),e[1],t):e;let o=[e[0]];for(let r=0;r<e.length-1;r++){let a=e[r-1]??e[r],s=e[r],c=e[r+1],l=e[r+2]??c;for(let u=1;u<=t;u++){let f=u/t,d=f*f,g=d*f,M=w=>.5*(2*s[w]+(-a[w]+c[w])*f+(2*a[w]-5*s[w]+4*c[w]-l[w])*d+(-a[w]+3*s[w]-3*c[w]+l[w])*g);o.push([M(0),M(1)])}}return o}function j3(e,t){let o=s=>Math.round(s*10)/10;if(e.length===1)return`M${o(e[0][0])} ${o(e[0][1])}l0.01 0`;if(!t||e.length<3)return"M"+e.map(s=>`${o(s[0])} ${o(s[1])}`).join("L");let r=[[e[0]]];for(let s=1;s<e.length;s++)if(t3(r).push(e[s]),s<e.length-1){let c=Math.atan2(e[s][1]-e[s-1][1],e[s][0]-e[s-1][0]),l=Math.atan2(e[s+1][1]-e[s][1],e[s+1][0]-e[s][0]),u=Math.abs(l-c);u>Math.PI&&(u=2*Math.PI-u),u>1.1&&r.push([e[s]])}let a=`M${o(e[0][0])} ${o(e[0][1])}`;for(let s of r){if(s.length<3){a+=s.slice(1).map(c=>`L${o(c[0])} ${o(c[1])}`).join("");continue}for(let c=0;c<s.length-1;c++){let l=s[c-1]??s[c],u=s[c],f=s[c+1],d=s[c+2]??f,g=[u[0]+(f[0]-l[0])/6,u[1]+(f[1]-l[1])/6],M=[f[0]-(d[0]-u[0])/6,f[1]-(d[1]-u[1])/6];a+=`C${o(g[0])} ${o(g[1])} ${o(M[0])} ${o(M[1])} ${o(f[0])} ${o(f[1])}`}}return a}var m3=new Map;function u3(e){if(m3.has(e))return m3.get(e);let t=x3[e],o=null;if(t){let r=t[1]?t[1].split(";").map(c=>c.split(" ").map(l=>l.split(",").map(Number))):[],a=0,s=0;for(let c of r)for(let[,l]of c)a=Math.min(a,l),s=Math.max(s,l);o={adv:t[0],strokes:r,top:a,bottom:s}}return m3.set(e,o),o}var M3={alpha:"\u03B1",beta:"\u03B2",gamma:"\u03B3",delta:"\u03B4",epsilon:"\u03B5",varepsilon:"\u03B5",zeta:"\u03B6",eta:"\u03B7",theta:"\u03B8",vartheta:"\u03D1",iota:"\u03B9",kappa:"\u03BA",lambda:"\u03BB",mu:"\u03BC",nu:"\u03BD",xi:"\u03BE",pi:"\u03C0",rho:"\u03C1",sigma:"\u03C3",tau:"\u03C4",upsilon:"\u03C5",phi:"\u03C6",varphi:"\u03C6",chi:"\u03C7",psi:"\u03C8",omega:"\u03C9",Gamma:"\u0393",Delta:"\u0394",Theta:"\u0398",Lambda:"\u039B",Xi:"\u039E",Pi:"\u03A0",Sigma:"\u03A3",Upsilon:"\u03A5",Phi:"\u03A6",Psi:"\u03A8",Omega:"\u03A9",partial:"\u2202",nabla:"\u2207",int:"\u222B",sum:"\u2211",prod:"\u220F",infty:"\u221E",pm:"\xB1",mp:"\u2213",times:"\xD7",cdot:"\u22C5",div:"\xF7",leq:"\u2264",le:"\u2264",geq:"\u2265",ge:"\u2265",neq:"\u2260",ne:"\u2260",equiv:"\u2261",approx:"\u2248",propto:"\u221D",to:"\u2192",rightarrow:"\u2192",leftarrow:"\u2190",uparrow:"\u2191",downarrow:"\u2193",in:"\u2208",subset:"\u2282",supset:"\u2283",cup:"\u222A",cap:"\u2229",exists:"\u2203",aleph:"\u2135",therefore:"\u2234",perp:"\u22A5",angle:"\u2220",deg:"\xB0",parallel:"\u2016"},F3=["vec","bar","hat","dot","sqrt","ul"],W3=["sin","cos","tan","cot","sec","csc","arcsin","arccos","arctan","sinh","cosh","tanh","log","ln","exp","lim","max","min","sup","inf","det","dim","ker","deg","gcd","mod"];function Y3(e){let t=0,o=()=>{let s=String.fromCodePoint(e.codePointAt(t));return t+=s.length,s},r=()=>{if(e[t]==="{"){t++;let s=a("}");return t++,s}return t>=e.length?[]:e[t]==="\\"?a(void 0,1):[{k:"ch",c:o()}]};function a(s,c=1/0){let l=[];for(;t<e.length&&e[t]!==s&&l.length<c;){let u=e[t];if(u==="^"||u==="_")t++,l.push({k:u==="^"?"sup":"sub",n:r()});else if(u===`
2
+ `)t++,l.push({k:"nl"});else if(u==="\\"){let f=/^\\([a-zA-Z]+)/.exec(e.slice(t));if(!f){t++,l.push({k:"ch",c:t<e.length?o():"\\"});continue}t+=f[0].length;let d=f[1];if(d==="frac"){let g=r();l.push({k:"frac",a:g,b:r()})}else if(F3.includes(d))l.push({k:"deco",d,n:r()});else if(d==="id"){let g=r().map(M=>M.k==="ch"?M.c:"").join("");l.push({k:"mark",name:g,n:r()})}else if(M3[d])l.push({k:"ch",c:M3[d]}),e[t]===" "&&t++;else if(W3.includes(d))for(let g of d)l.push({k:"ch",c:g});else for(let g of"\\"+d)l.push({k:"ch",c:g})}else l.push({k:"ch",c:o()})}return l}return a()}var B={stroke:35,letter:70,word:190},b3=()=>({s:[],w:0,asc:0,desc:0,marks:[]});function r3(e,t,o,r,a){let s=e.s.length;for(let c of t.s)e.s.push({lift:c.lift,pts:c.pts.map(([l,u])=>[l+o,u+r])});for(let[c,l]of t.marks)e.marks.push([c,{...l,x:l.x+o,y:l.y+r}]);e.asc=Math.max(e.asc,t.asc-r),e.desc=Math.max(e.desc,t.desc+r),a!==void 0&&e.s[s]&&(e.s[s].lift=Math.max(e.s[s].lift,a))}function e3(e,t,o,r=0){let a=b3(),s=o.R,c=0,l=B.letter;for(let u of e)if(u.k==="ch"){if(u.c===" "||u.c===" "){c+=(u3(" ")?.adv??300)*(t/1e3)*(1+s.n(.18)),l=B.word;continue}let f=u3(u.c)??u3("?"),d=t/1e3*(1+s.n(.04)),g=s.n(.045),M=f.adv*d/2,w=-.32*t,q=o.amp*Math.sin((r+c)/o.wl*2*Math.PI+o.phase)+s.n(.014*t),Y=Math.cos(g),H=Math.sin(g);f.strokes.forEach((J,K)=>{let _=s.n(.009*t),D=s.n(.009*t),A=J.map(([n3,n])=>{let E=n3*d-M,h=n*d-w;return[c+M+E*Y-h*H+_,w+E*H+h*Y+q+D]});A.length===1&&(A=[A[0],[A[0][0]+.02*t,A[0][1]+.01*t]]),a.s.push({pts:A,lift:K===0?l:B.stroke})}),f.strokes.length&&(l=B.letter),a.asc=Math.max(a.asc,-f.top*d-q),a.desc=Math.max(a.desc,f.bottom*d+q),c+=f.adv*d*(1+s.n(.035))}else if(u.k==="sup"||u.k==="sub"){let f=e3(u.n,t*.62,o,r+c);r3(a,f,c+.02*t,u.k==="sup"?-.44*t:.2*t,l),c+=f.w+.06*t,l=B.letter}else if(u.k==="frac"){let f=t*.78,d=e3(u.a,f,o,r+c),g=e3(u.b,f,o,r+c),M=Math.max(d.w,g.w)+.28*t,w=-.3*t;r3(a,d,c+(M-d.w)/2,w-.14*t-Math.max(d.desc,.02*t),l),a.s.push({pts:Z([c+.04*t,w+s.n(.02*t)],[c+M-.04*t,w+s.n(.02*t)],s,4),lift:B.letter}),r3(a,g,c+(M-g.w)/2,w+.18*t+Math.max(g.asc,.5*f)),c+=M+.06*t,l=B.letter}else if(u.k==="deco"){let f=a.s.length;if(u.d==="sqrt"){let d=.6*t,g=e3(u.n,t,o,r+c+d),M=-Math.max(g.asc,.55*t)-.14*t,w=c+d+g.w+.08*t;a.s.push({pts:[[c,-.26*t],[c+.13*t,-.34*t],[c+.3*t,.05*t],[c+.52*t,M],[w,M+s.n(.03*t)]],lift:l}),r3(a,g,c+d,0),a.asc=Math.max(a.asc,-M+.03*t),c=w+.06*t}else{let d=e3(u.n,t,o,r+c);r3(a,d,c,0,l);let g=c+.03*t,M=c+Math.max(d.w,.42*t),w=u.d==="ul"?Math.max(d.desc,.08*t)+.1*t:-Math.max(d.asc,.5*t)-.14*t;if(u.d==="hat"){let q=(g+M)/2;a.s.push({pts:[[q-.15*t,w+.05*t],[q,w-.1*t],[q+.15*t,w+.05*t]],lift:B.letter})}else if(u.d==="dot"){let q=(g+M)/2;a.s.push({pts:[[q,w],[q+.025*t,w+.01*t]],lift:B.letter})}else{let q=Z([g,w],[M,w+s.n(.025*t)],s,4);if(a.s.push({pts:q,lift:B.letter}),u.d==="vec"){let Y=t3(q),H=.13*t;a.s.push({pts:[[Y[0]-H,Y[1]-H*.62],Y,[Y[0]-H,Y[1]+H*.62]],lift:B.stroke})}}a.asc=Math.max(a.asc,-w+.12*t),c+=d.w}a.s[f]&&(a.s[f].lift=Math.max(a.s[f].lift,l)),l=B.letter}else if(u.k==="mark"){let f=a.s.length,d=e3(u.n,t,o,r+c);r3(a,d,c,0,l),a.marks.push([u.name,i3(a.s.slice(f))??{x:c,y:-.7*t,w:d.w,h:.7*t}]),c+=d.w,l=B.letter}return a.w=c,a}var _3=["top","bottom","left","right","center","topLeft","topRight","bottomLeft","bottomRight"],X3=620,l3=1050;function J3(e){let t=e.width??1e3,o=new Map,r=[],a=[],s=e.background==="none",c=e.color??"white",l=n=>{let E=n??c;return s&&(E==="white"||E==="chalk")?"currentColor":$3[E]??E},u=n=>{if(Array.isArray(n))return G3(n.map(u));if(typeof n!="string")return n;let E=o.get(n);if(!E)throw new Error(`nothing with id "${n}" has been drawn yet`);return E},f=(n,E,h)=>{let I=n.x+n.w/2,R=n.y+n.h/2,p=n.x-h,i=n.y-h,k=n.x+n.w+h,b=n.y+n.h+h;switch(E){case"top":return[I,i];case"bottom":return[I,b];case"left":return[p,R];case"right":return[k,R];case"topLeft":return[p,i];case"topRight":return[k,i];case"bottomLeft":return[p,b];case"bottomRight":return[k,b];default:return[I,R]}},d=(n,E,h)=>{let I=n.x+n.w/2,R=n.y+n.h/2,p=E[0]-I,i=E[1]-R;if(!p&&!i)return[I,n.y+n.h+h];let k=Math.min(p?(n.w/2+h)/Math.abs(p):1/0,i?(n.h/2+h)/Math.abs(i):1/0);return[I+p*k,R+i*k]},g=(n,E,h)=>{if(Array.isArray(n))return n;let I,R=0,p=0;typeof n=="object"?(I=n.at,R=n.dx??0,p=n.dy??0):I=n;let i,k=o.get(I);if(k)i=E?d(k,E,h):[k.x+k.w/2,k.y+k.h/2];else{let b=I.lastIndexOf("."),G=b>0?o.get(I.slice(0,b)):void 0,m=I.slice(b+1);if(!G||!_3.includes(m))throw new Error(`can't find "${I}" \u2014 use an id drawn earlier, optionally with .top .bottom .left .right .center or a corner`);i=f(G,m,h)}return[i[0]+R,i[1]+p]};e.items.forEach((n,E)=>{let h=q3(H3(`${e.seed??0}:${E}:${JSON.stringify(n)}`)),I=[],R=(p,i,k,b,G)=>I.push({pts:p,lift:i,color:l(k.color),width:k.width??b,item:E,pen:G*(k.speed??1),len:w3(p)});try{if(n.type==="pause"){a.push({strokes:I,item:n});return}if(n.type==="text"){let p=n.size??32,i=Y3(n.text),k=[[]];for(let P of i)P.k==="nl"?k.push([]):t3(k).push(P);let b=(n.lineHeight??1.45)*p,G=(u3(" ")?.adv??300)*(p/1e3),m=[];for(let P of k){let z={R:h,phase:h.r()*6.283,amp:.022*p,wl:8*p};if(!n.maxWidth){m.push(e3(P,p,z));continue}let V=[[]];for(let N of P)N.k==="ch"&&N.c===" "?V.push([]):t3(V).push(N);let X=b3(),F=0;for(let N of V){if(!N.length)continue;let W=e3(N,p,z,F);F>0&&F+W.w>n.maxWidth&&(m.push(X),X=b3(),F=0),r3(X,W,F,0,F>0?B.word:void 0),F+=W.w+G*(1+h.n(.15)),X.w=F-G}m.push(X)}let y=Math.max(0,...m.map(P=>P.w)),$=.78*p,x=$+(m.length-1)*b+.28*p,C=n.align??"left",v=n.x,O=n.y,L=n.gap??.5*p,j=n.below??n.above;if(j){let P=u(j);O=n.below?P.y+P.h+L:P.y-L-x,v===void 0&&(v=C==="center"?P.x+P.w/2:C==="right"?P.x+P.w:P.x)}let T=n.rightOf??n.leftOf;if(T){let P=u(T);n.rightOf?(v=P.x+P.w+L,C="left"):(v=P.x-L,C="right"),O===void 0&&(O=P.y+P.h/2-x/2+.08*p)}v=(v??40)+(n.dx??0),O=(O??40)+(n.dy??0);let S=h.n(.007),s3=n.width??c3(p*.07,1.4,6),U=[];m.forEach((P,z)=>{let V=C==="center"?v-P.w/2:C==="right"?v-P.w:v,X=O+$+z*b,F=([N,W])=>[V+N-W*S,X+W+N*S];P.s.forEach((N,W)=>{let o3=W===0&&z>0?B.word*1.6:N.lift;U.push({pts:N.pts.map(F),lift:o3}),R(t3(U).pts,o3,n,s3,X3)});for(let[N,W]of P.marks){let o3=F([W.x,W.y]),g3=F([W.x+W.w,W.y+W.h]),y3={x:o3[0],y:o3[1],w:g3[0]-o3[0],h:g3[1]-o3[1]};o.set(n.id?`${n.id}.${N}`:N,y3),r.push([n.id?`${n.id}.${N}`:N,y3])}});let Q=i3(U)??{x:v,y:O,w:y,h:x};n.id&&(o.set(n.id,Q),r.push([n.id,Q]))}else if(n.type==="arrow"){let p=n.gap??10,i=n.via??[],k=L=>g(L,null,0),b=i.length?k(i[0]):k(n.to),G=g(n.from,b,p),m=i.map(L=>k(L)),y=g(n.to,m.length?t3(m):G,p),$=d3(G,y),x;if(m.length)x=k3([G,...m,y],12).map(([L,j])=>[L+h.n(.6),j+h.n(.6)]);else{let L=n.bend??h.n(.05),j=-(y[1]-G[1])/($||1),T=(y[0]-G[0])/($||1),S=p3(G,y,.5);x=a3(G,[S[0]+j*L*$,S[1]+T*L*$],y,18)}let C=2.4;R(x,B.letter,n,C,l3);let v=(L,j)=>{let T=Math.atan2(L[1]-j[1],L[0]-j[0]),S=c3(w3(x)*.18,9,17)*((n.width??C)/2.4)**.5,s3=.46+h.n(.06),U=Q=>[L[0]-S*Math.cos(T+Q)+h.n(1),L[1]-S*Math.sin(T+Q)+h.n(1)];R([U(s3),L,U(-s3)],B.letter,n,C,l3)},O=n.head??"end";(O==="end"||O==="both")&&v(t3(x),x[Math.max(0,x.length-4)]),(O==="start"||O==="both")&&v(x[0],x[Math.min(x.length-1,3)])}else if(n.type==="line"){let p=n.points.map((k,b)=>g(k,null,0)),i=n.smooth===!1?p:k3(p,10);R(i.map(([k,b])=>[k+h.n(.5),b+h.n(.5)]),B.letter,n,2.4,l3)}else{let p=n.around??n.under??n.over??n.target;if(p===void 0)throw new Error(`${n.type} needs "around" (an id, a list of ids, or {x,y,w,h})`);let i=u(p),k=2.4,b=(m,y=B.letter)=>R(m,y,n,k,l3),G=n.double?2:1;for(let m=0;m<G;m++){let y=m*7;if(n.type==="circle"){let $=(n.pad??14)+y,x=i.x+i.w/2,C=i.y+i.h/2,v=i.w/2*1.12+$,O=i.h/2*1.2+$,L=3.2,j=h.n(.03),T=h.r()*6,S=Math.PI*1.08+h.n(.25),s3=Math.PI*2+.38+h.n(.12),U=P=>Math.sign(P)*Math.abs(P)**(2/L),Q=[];for(let P=0;P<=80;P++){let z=P/80,V=S+s3*z,X=1+.025*Math.sin(3*V+T)+(z-.5)*.07,F=v*X*U(Math.cos(V)),N=O*X*U(Math.sin(V));Q.push([x+F*Math.cos(j)-N*Math.sin(j),C+F*Math.sin(j)+N*Math.cos(j)])}b(Q)}else if(n.type==="box"){let $=(n.pad??12)+y,x=()=>h.n(3),C=[i.x-$+x(),i.y-$+x()],v=[i.x+i.w+$+x(),i.y-$+x()],O=[i.x+i.w+$+x(),i.y+i.h+$+x()],L=[i.x-$+x(),i.y+i.h+$+x()],j=p3(C,v,.06+h.r()*.04),T=[...Z(C,v,h),...Z(v,O,h).slice(1),...Z(O,L,h).slice(1),...Z(L,[C[0]+h.n(2),C[1]+h.n(2)],h).slice(1),j];b(T)}else if(n.type==="underline"){let $=i.y+i.h+(n.pad??6)+y;b(Z([i.x-4+h.n(3),$+h.n(2)],[i.x+i.w+4+h.n(3),$+h.n(3)],h,8))}else if(n.type==="strike"){let $=i.y+i.h*.55+y;b(Z([i.x-5,$+h.n(3)],[i.x+i.w+5,$+h.n(3)],h,8))}else{let $=n.side??"bottom",x=(n.pad??8)+y,v=$==="top"||$==="bottom"?i.w+6:i.h+6,O=n.type==="bracket"?c3(v*.12,6,14):c3(v*.08,7,16),L;if(n.type==="bracket")L=[[0,-O+h.n(1.5)],[h.n(1),h.n(1)],...Z([0,0],[v,h.n(1.5)],h,6).slice(1,-1),[v+h.n(1),h.n(1)],[v,-O+h.n(1.5)]];else{let T=v/2,S=O;L=[...a3([0,-S*.3],[0,S*.5],[S,S*.5],6),...a3([T-S,S*.5],[T,S*.5],[T,S*1.2],6),...a3([T,S*1.2],[T,S*.5],[T+S,S*.5],6).slice(1),...a3([v-S,S*.5],[v,S*.5],[v,-S*.3],6)]}let j=([T,S])=>{switch($){case"top":return[i.x-3+T,i.y-x-S];case"left":return[i.x-x-S,i.y-3+T];case"right":return[i.x+i.w+x+S,i.y-3+T];default:return[i.x-3+T,i.y+i.h+x+S]}};b(L.map(j))}}if(n.id){let m=i3(I)??i;o.set(n.id,m),r.push([n.id,m])}}if(n.type!=="text"&&n.id&&!o.has(n.id)){let p=i3(I);p&&(o.set(n.id,p),r.push([n.id,p]))}}catch(p){throw new Error(`items[${E}] (${n.type}${"id"in n&&n.id?` "${n.id}"`:""}): ${p.message}`)}a.push({strokes:I,item:n})});let M=e.speed??1,w=700,q=380,Y=[],H=w,J=w,K=null,_=!0;for(let{strokes:n,item:E}of a){if(E.type==="pause"){H+=E.ms/M;continue}if(!n.length)continue;let h=E,I=h.with==="prev"?J:H+(_?0:q/M)+(h.wait??0)/M;J=I,_=!1;for(let R of n){let p=K?d3(K,R.pts[0]):0;I+=(R.lift+Math.min(420,p/(R.pen*2.4)*1e3))/M;let i=Math.max(40,R.len/R.pen*1e3)/M;Y.push({...R,t0:I,dur:i}),I+=i,K=t3(R.pts)}H=Math.max(H,I)}let D=i3(Y),A=e.padding??40,n3=e.height??Math.max(160,Math.ceil((D?D.y+D.h:0)+A));return{strokes:Y,width:t,height:n3,end:H,debug:r}}var U3=`
3
+ .sketch{display:block;width:100%;-webkit-user-select:none;user-select:none}
4
+ .sketch-board{position:relative;border-radius:12px;overflow:hidden;line-height:0}
5
+ .sketch-animated .sketch-board{cursor:pointer;-webkit-tap-highlight-color:transparent}
6
+ .sketch-board svg{display:block;width:100%;height:auto}
7
+ .sketch-bar{display:flex;align-items:center;gap:8px;padding:8px 2px 0;font:12px/1 system-ui,-apple-system,sans-serif;opacity:.7}
8
+ .sketch-bar:hover{opacity:1}
9
+ .sketch-bar button{all:unset;cursor:pointer;width:28px;height:28px;display:grid;place-items:center;border-radius:7px;color:inherit}
10
+ .sketch-bar button:hover{background:rgba(127,127,127,.18)}
11
+ .sketch-bar svg{width:16px;height:16px;fill:currentColor}
12
+ .sketch-bar input{flex:1;min-width:0;accent-color:currentColor;margin:0}
13
+ .sketch-time{font-variant-numeric:tabular-nums;min-width:72px;text-align:right}
14
+ .sketch-error{font:13px/1.45 ui-monospace,Menlo,monospace;color:#f45b73;padding:10px 12px;border:1px solid rgba(244,91,115,.45);border-radius:8px;white-space:pre-wrap}`,h3={play:'<svg viewBox="0 0 16 16"><path d="M4 2.5v11l9.5-5.5z"/></svg>',pause:'<svg viewBox="0 0 16 16"><path d="M3.5 2.5h3v11h-3zM9.5 2.5h3v11h-3z"/></svg>',replay:'<svg viewBox="0 0 16 16"><path d="M8 2.5a5.5 5.5 0 1 1-5.2 3.7l1.4.5A4 4 0 1 0 8 4v2L4.8 3.3 8 .5z"/></svg>'},P3=!1;function S3(){if(P3)return;let e=document.createElement("style");e.textContent=U3,(document.head||document.documentElement).appendChild(e),P3=!0}var v3=e=>{let t=Math.max(0,Math.round(e/1e3));return`${Math.floor(t/60)}:${String(t%60).padStart(2,"0")}`};function E3(e){let t=()=>{};return{el:e,duration:0,time:0,playing:!1,play:t,pause:t,seek:t,restart:t,destroy:t}}function I3(e,t){S3();let o=document.createElement("div");o.className="sketch-error",o.textContent=`sketch: ${t?.message??t}`,e.replaceChildren(o)}function L3(e,t,o={}){let r=typeof e=="string"?document.querySelector(e):e;if(!r)throw new Error(`sketch: no element matches ${e}`);S3();try{return V3(r,t,o)}catch(a){return I3(r,a),E3(r)}}function V3(e,t,o){if(!t||!Array.isArray(t.items))throw new Error('a scene needs an "items" array');let r={mode:o.mode??t.mode??"animation",autoplay:o.autoplay??t.autoplay??"visible",controls:o.controls??t.controls??!0};if(r.mode!=="animation"&&r.mode!=="static")throw new Error(`mode must be "animation" or "static", not "${r.mode}"`);let a=r.mode==="animation",{strokes:s,width:c,height:l,end:u,debug:f}=J3(t),d=t.background??"#0c0c0e",g=s.map(m=>`<path d="${j3(m.pts,!0)}" stroke="${m.color}" stroke-width="${m.width}"/>`).join(""),M=t.debug?f.map(([m,y])=>`<rect x="${y.x}" y="${y.y}" width="${y.w}" height="${y.h}" fill="none" stroke="#0ff" stroke-width="1" stroke-dasharray="4 3" opacity=".7"/><text x="${y.x}" y="${y.y-4}" fill="#0ff" font-size="12" font-family="monospace">${m.replace(/[<&]/g,"")}</text>`).join(""):"";if(e.innerHTML=`<div class="sketch${a?" sketch-animated":""}">
15
+ <div class="sketch-board" role="img" aria-label="Hand-drawn board">
16
16
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 ${c} ${l}">
17
17
  ${d==="none"?"":`<rect width="${c}" height="${l}" fill="${d}"/>`}
18
18
  <g fill="none" stroke-linecap="round" stroke-linejoin="round">${g}</g>
19
19
  ${M}
20
20
  </svg>
21
21
  </div>
22
- ${a&&r.controls?`<div class="psk-bar"><button class="psk-play" aria-label="Play">${u3.play}</button><input class="psk-seek" type="range" min="0" max="1000" value="0" aria-label="Scrub"><span class="psk-time">0:00 / 0:00</span></div>`:""}
23
- </div>`,!a)return E3(e);let w=e.querySelector("svg"),q=Array.from(w.querySelectorAll('g[fill="none"] > path')),Y=q.map(m=>m.getTotalLength()||.01),H=e.querySelector(".psk-play"),J=e.querySelector(".psk-seek"),K=e.querySelector(".psk-time"),_=h+600,D=0,A=!1,n3=0,n=0,E=!1,u=[],I=m=>.5*m+.5*D3(m);function R(m){for(let y=0;y<s.length;y++){let $=s[y],x=q[y],C=Y[y],v=(m-$.t0)/$.dur;v<=0?u[y]!==!1&&(x.style.visibility="hidden",u[y]=!1):v>=1?u[y]!==!0&&(x.style.visibility="",x.style.strokeDasharray="",x.style.strokeDashoffset="",u[y]=!0):(u[y]=void 0,x.style.visibility="",x.style.strokeDasharray=`${C} ${C+1}`,x.style.strokeDashoffset=String(C*(1-I(v))))}}function p(){if(H){let m=!A&&D>=_;H.innerHTML=A?u3.pause:m?u3.replay:u3.play,H.setAttribute("aria-label",A?"Pause":m?"Replay":"Play")}J&&!E&&(J.value=String(Math.round(D/_*1e3))),K&&(K.textContent=`${v3(Math.min(D,h))} / ${v3(h)}`)}function i(m){let y=n?m-n:16;if(n=m,D=Math.min(_,D+y),R(D),p(),D>=_){A=!1,n=0,p();return}n3=requestAnimationFrame(i)}let k,b={el:e,duration:_,get time(){return D},get playing(){return A},play(){A||(D>=_&&(D=0),A=!0,n=0,n3=requestAnimationFrame(i),p())},pause(){A=!1,cancelAnimationFrame(n3),p()},seek(m){D=c3(m,0,_),R(D),p()},restart(){b.pause(),b.seek(0),b.play()},destroy(){b.pause(),k?.disconnect(),e.innerHTML=""}};return w.parentElement.addEventListener("click",()=>A?b.pause():b.play()),H?.addEventListener("click",()=>A?b.pause():b.play()),J?.addEventListener("input",()=>{E=!0,b.pause(),b.seek(+J.value/1e3*_),E=!1}),typeof matchMedia=="function"&&matchMedia("(prefers-reduced-motion: reduce)").matches?b.seek(_):(b.seek(0),r.autoplay===!0?b.play():r.autoplay==="visible"&&typeof IntersectionObserver=="function"&&(k=new IntersectionObserver(m=>{m.some(y=>y.isIntersecting)&&(k.disconnect(),b.play())},{threshold:.35}),k.observe(e))),b}function Z3(e=document){let t=[];return e.querySelectorAll('script[type="text/sketch"], script[type="application/sketch+json"]').forEach(o=>{let r=document.createElement("div");o.after(r);try{t.push(L3(r,JSON.parse(o.textContent||"")))}catch(a){I3(r,a)}}),t}return A3(K3);})();
22
+ ${a&&r.controls?`<div class="sketch-bar"><button class="sketch-play" aria-label="Play">${h3.play}</button><input class="sketch-seek" type="range" min="0" max="1000" value="0" aria-label="Scrub"><span class="sketch-time">0:00 / 0:00</span></div>`:""}
23
+ </div>`,!a)return E3(e);let w=e.querySelector("svg"),q=Array.from(w.querySelectorAll('g[fill="none"] > path')),Y=q.map(m=>m.getTotalLength()||.01),H=e.querySelector(".sketch-play"),J=e.querySelector(".sketch-seek"),K=e.querySelector(".sketch-time"),_=u+600,D=0,A=!1,n3=0,n=0,E=!1,h=[],I=m=>.5*m+.5*D3(m);function R(m){for(let y=0;y<s.length;y++){let $=s[y],x=q[y],C=Y[y],v=(m-$.t0)/$.dur;v<=0?h[y]!==!1&&(x.style.visibility="hidden",h[y]=!1):v>=1?h[y]!==!0&&(x.style.visibility="",x.style.strokeDasharray="",x.style.strokeDashoffset="",h[y]=!0):(h[y]=void 0,x.style.visibility="",x.style.strokeDasharray=`${C} ${C+1}`,x.style.strokeDashoffset=String(C*(1-I(v))))}}function p(){if(H){let m=!A&&D>=_;H.innerHTML=A?h3.pause:m?h3.replay:h3.play,H.setAttribute("aria-label",A?"Pause":m?"Replay":"Play")}J&&!E&&(J.value=String(Math.round(D/_*1e3))),K&&(K.textContent=`${v3(Math.min(D,u))} / ${v3(u)}`)}function i(m){let y=n?m-n:16;if(n=m,D=Math.min(_,D+y),R(D),p(),D>=_){A=!1,n=0,p();return}n3=requestAnimationFrame(i)}let k,b={el:e,duration:_,get time(){return D},get playing(){return A},play(){A||(D>=_&&(D=0),A=!0,n=0,n3=requestAnimationFrame(i),p())},pause(){A=!1,cancelAnimationFrame(n3),p()},seek(m){D=c3(m,0,_),R(D),p()},restart(){b.pause(),b.seek(0),b.play()},destroy(){b.pause(),k?.disconnect(),e.innerHTML=""}};return w.parentElement.addEventListener("click",()=>A?b.pause():b.play()),H?.addEventListener("click",()=>A?b.pause():b.play()),J?.addEventListener("input",()=>{E=!0,b.pause(),b.seek(+J.value/1e3*_),E=!1}),typeof matchMedia=="function"&&matchMedia("(prefers-reduced-motion: reduce)").matches?b.seek(_):(b.seek(0),r.autoplay===!0?b.play():r.autoplay==="visible"&&typeof IntersectionObserver=="function"&&(k=new IntersectionObserver(m=>{m.some(y=>y.isIntersecting)&&(k.disconnect(),b.play())},{threshold:.35}),k.observe(e))),b}function Z3(e=document){let t=[];return e.querySelectorAll('script[type="text/sketch"], script[type="application/sketch+json"]').forEach(o=>{let r=document.createElement("div");o.after(r);try{t.push(L3(r,JSON.parse(o.textContent||"")))}catch(a){I3(r,a)}}),t}return A3(K3);})();
package/fonts/OFL.txt CHANGED
@@ -1,4 +1,4 @@
1
- EMS Felix — single-stroke glyph data bundled in potion-sketch.
1
+ EMS Felix — single-stroke glyph data bundled in @ghostmind-dev/sketch.
2
2
  Created by Sheldon B. Michaels; SVG font conversion by Windell H. Oskay.
3
3
  A derivative of Felipa, designed by Fontstage (https://fonts.google.com/specimen/Felipa).
4
4
  Converted here from SVG-font strokes to compact stroke coordinates.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ghostmind-dev/sketch",
3
- "version": "0.1.0",
4
- "description": "Hand-written explainer boards for Potion html blocks: one scene renders as a stroke-by-stroke animation or a static board.",
3
+ "version": "0.2.0",
4
+ "description": "Hand-written explainer boards for the browser: one scene renders as a stroke-by-stroke animation or a static board.",
5
5
  "license": "MIT",
6
6
  "files": [
7
7
  "dist",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "scripts": {
16
16
  "glyphs": "node scripts/build-glyphs.mjs",
17
- "build": "npm run glyphs && esbuild src/index.ts --bundle --format=iife --global-name=PotionSketch --minify --target=es2020 --outfile=dist/sketch.iife.js",
17
+ "build": "npm run glyphs && esbuild src/index.ts --bundle --format=iife --global-name=Sketch --minify --target=es2020 --outfile=dist/sketch.iife.js",
18
18
  "check": "tsc --noEmit",
19
19
  "harness": "node harness/build-harness.mjs",
20
20
  "render": "node scripts/render.mjs",