artscii 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +188 -0
  3. package/arts/animals/bird.32w.txt +10 -0
  4. package/arts/animals/bird.txt +21 -0
  5. package/arts/animals/cat.32w.txt +15 -0
  6. package/arts/animals/cat.txt +29 -0
  7. package/arts/animals/fish.32w.txt +11 -0
  8. package/arts/animals/fish.txt +23 -0
  9. package/arts/emoji/alien.32w.txt +16 -0
  10. package/arts/emoji/alien.txt +32 -0
  11. package/arts/emoji/angry.32w.txt +16 -0
  12. package/arts/emoji/angry.txt +32 -0
  13. package/arts/emoji/fire.32w.txt +16 -0
  14. package/arts/emoji/fire.txt +32 -0
  15. package/arts/emoji/ghost.32w.txt +16 -0
  16. package/arts/emoji/ghost.txt +32 -0
  17. package/arts/emoji/lightning.32w.txt +16 -0
  18. package/arts/emoji/lightning.txt +32 -0
  19. package/arts/emoji/masks.32w.txt +12 -0
  20. package/arts/emoji/masks.txt +25 -0
  21. package/arts/emoji/poop.32w.txt +16 -0
  22. package/arts/emoji/poop.txt +32 -0
  23. package/arts/emoji/skull.32w.txt +16 -0
  24. package/arts/emoji/skull.txt +32 -0
  25. package/arts/emoji/smiley.32w.txt +16 -0
  26. package/arts/emoji/smiley.txt +32 -0
  27. package/arts/emoji/thumbsup.32w.txt +16 -0
  28. package/arts/emoji/thumbsup.txt +32 -0
  29. package/arts/index.json +339 -0
  30. package/arts/nature/mountain.32w.txt +7 -0
  31. package/arts/nature/mountain.txt +14 -0
  32. package/arts/nature/sun.32w.txt +16 -0
  33. package/arts/nature/sun.txt +32 -0
  34. package/arts/nature/tree.32w.txt +16 -0
  35. package/arts/nature/tree.txt +32 -0
  36. package/arts/objects/book.32w.txt +13 -0
  37. package/arts/objects/book.txt +25 -0
  38. package/arts/objects/coffee.32w.txt +12 -0
  39. package/arts/objects/coffee.txt +25 -0
  40. package/arts/symbols/heart.32w.txt +15 -0
  41. package/arts/symbols/heart.txt +30 -0
  42. package/arts/symbols/star.32w.txt +15 -0
  43. package/arts/symbols/star.txt +30 -0
  44. package/dist/constants.d.ts +9 -0
  45. package/dist/constants.js +9 -0
  46. package/dist/index.d.ts +1 -0
  47. package/dist/index.js +153 -0
  48. package/dist/mcp.d.ts +2 -0
  49. package/dist/mcp.js +78 -0
  50. package/dist/store.d.ts +20 -0
  51. package/dist/store.js +158 -0
  52. package/dist/types.d.ts +23 -0
  53. package/dist/types.js +1 -0
  54. package/package.json +42 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 artscii contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,188 @@
1
+ # artscii
2
+
3
+ ASCII art search API for AI agents. Built-in silhouette arts in two sizes (64w / 32w), served via REST API and MCP. Users can submit their own arts via POST.
4
+
5
+ ```
6
+ :%%:
7
+ -+- .%@@%. -+-
8
+ *@@%*--#@@@@#--*%@@*
9
+ :%@@@@@#****#@@@@@%:
10
+ .%@@*-...::...-*@@%.
11
+ .#%%%%%@#: :*%%@@%%*: :#@%%%%%#.
12
+ -*@@@@%. +@@@@@@@@@@+ .%@@@@*-
13
+ .+@@+ -@@@@@@@@@@@@- +@@+.
14
+ .+@@+ -@@@@@@@@@@@@- +@@+.
15
+ -*@@@@%. +@@@@@@@@@@+ .%@@@@*-
16
+ .#%%%%%@#: :*%%@@%%*: :#@%%%%%#.
17
+ .%@@*-...::...-*@@%.
18
+ :%@@@@@#****#@@@@@%:
19
+ *@@%*--#@@@@#--*%@@*
20
+ -+- .%@@%. -+-
21
+ :%%:
22
+ ```
23
+
24
+ ## Quick Start
25
+
26
+ ```bash
27
+ npm install
28
+ npm run build
29
+ npm run start # REST API on :3001
30
+ ```
31
+
32
+ ## REST API
33
+
34
+ All content endpoints accept `?width=32` for the compact variant (default: 64).
35
+
36
+ | Endpoint | Description |
37
+ |---|---|
38
+ | `GET /search?q={query}&width=64\|32` | Search by keyword |
39
+ | `GET /art/:id?width=64\|32` | Get art by ID (JSON) |
40
+ | `GET /art/:id/raw?width=64\|32` | Get raw ASCII text |
41
+ | `GET /random?width=64\|32` | Random art |
42
+ | `GET /categories` | List categories |
43
+ | `GET /categories/:name?width=64\|32` | Arts in category |
44
+ | `GET /list` | All arts with metadata |
45
+ | `POST /art` | Submit new art (JSON body) |
46
+ | `DELETE /art/:id` | Delete user-submitted art |
47
+
48
+ ### Example
49
+
50
+ ```bash
51
+ # 64w (default)
52
+ curl http://localhost:3001/art/cat/raw
53
+
54
+ # 32w compact
55
+ curl 'http://localhost:3001/art/cat/raw?width=32'
56
+ ```
57
+
58
+ Response (`GET /art/cat`):
59
+
60
+ ```json
61
+ {
62
+ "id": "cat",
63
+ "name": "Cat",
64
+ "category": "animals",
65
+ "tags": ["cat", "pet", "animal", "cute"],
66
+ "width": 58,
67
+ "height": 29,
68
+ "art": "..."
69
+ }
70
+ ```
71
+
72
+ ### Submitting Art
73
+
74
+ ```bash
75
+ curl -X POST http://localhost:3001/art \
76
+ -H 'Content-Type: application/json' \
77
+ -d '{
78
+ "name": "Robot",
79
+ "category": "objects",
80
+ "tags": ["robot", "tech"],
81
+ "art": " [o_o]\n /| |\\\n d b"
82
+ }'
83
+ ```
84
+
85
+ Response: `201` with `ArtResult` JSON.
86
+
87
+ **Constraints:**
88
+ - `name`: max 30 chars
89
+ - `tags`: max 5, each max 20 chars
90
+ - `art`: max 64 chars wide, 32 lines tall
91
+ - `art32` (optional): max 32 chars wide, 16 lines tall
92
+ - Rate limit: 5 requests/min per IP
93
+ - Max 100 user-submitted arts total
94
+
95
+ **Errors:** `400` (validation), `409` (duplicate ID), `429` (rate limit), `507` (limit reached)
96
+
97
+ ### Deleting Art
98
+
99
+ ```bash
100
+ curl -X DELETE http://localhost:3001/art/robot
101
+ ```
102
+
103
+ - `204`: deleted
104
+ - `403`: cannot delete built-in art
105
+ - `404`: not found
106
+
107
+ ## MCP Server
108
+
109
+ Add to your MCP client config:
110
+
111
+ ```json
112
+ {
113
+ "mcpServers": {
114
+ "artscii": {
115
+ "command": "npx",
116
+ "args": ["-y", "artscii"]
117
+ }
118
+ }
119
+ }
120
+ ```
121
+
122
+ <details>
123
+ <summary>Local development (from source)</summary>
124
+
125
+ ```json
126
+ {
127
+ "mcpServers": {
128
+ "artscii": {
129
+ "command": "npx",
130
+ "args": ["tsx", "src/mcp.ts"],
131
+ "cwd": "/path/to/artscii"
132
+ }
133
+ }
134
+ }
135
+ ```
136
+
137
+ </details>
138
+
139
+ ### Tools
140
+
141
+ | Tool | Parameters | Description |
142
+ |---|---|---|
143
+ | `search` | `query`, `width?` | Search arts by keyword |
144
+ | `get` | `id`, `width?` | Get art by ID |
145
+ | `random` | `width?` | Random art |
146
+ | `list` | — | List all arts with metadata |
147
+ | `categories` | — | List categories |
148
+ | `submit` | `name`, `category`, `tags`, `art`, `art32?` | Submit new art |
149
+ | `delete` | `id` | Delete user-submitted art |
150
+
151
+ `width` accepts `"64"` (default) or `"32"` (compact).
152
+
153
+ ## Available Arts
154
+
155
+ | ID | Category | 64w | 32w |
156
+ |---|---|---|---|
157
+ | cat | animals | 58x29 | 29x15 |
158
+ | bird | animals | 64x21 | 32x10 |
159
+ | fish | animals | 62x23 | 31x11 |
160
+ | tree | nature | 53x32 | 26x16 |
161
+ | mountain | nature | 64x14 | 32x7 |
162
+ | sun | nature | 63x32 | 32x16 |
163
+ | coffee | objects | 62x25 | 31x12 |
164
+ | book | objects | 58x25 | 29x13 |
165
+ | heart | symbols | 64x30 | 32x15 |
166
+ | star | symbols | 64x30 | 32x15 |
167
+
168
+ ## Regenerating Arts
169
+
170
+ Arts are converted from public domain silhouette images using Pillow.
171
+
172
+ ```bash
173
+ pip3 install Pillow
174
+ npm run convert # download + convert all 10 arts
175
+ ```
176
+
177
+ Single image conversion:
178
+
179
+ ```bash
180
+ python3 scripts/img2ascii.py <image-or-url> --width 64 --height 32
181
+ python3 scripts/img2ascii.py photo.jpg --width 32 --height 16 --invert --gamma 1.2
182
+ ```
183
+
184
+ Options: `--width`, `--height`, `--invert`, `--no-contrast`, `--gamma`
185
+
186
+ ## License
187
+
188
+ MIT
@@ -0,0 +1,10 @@
1
+ =#%%%*=-:
2
+ -#@@@@%+.
3
+ :=*%@@@@@@*
4
+ :+#@@@@@@@@@@+
5
+ .-*%@@@@@@@@@@@@@=
6
+ ..::-=*#%@@@@@@@@@@@@@@%*
7
+ .:::.....-#@%%@@@@@@@@%#+:
8
+ .-:..:+#++*-:.
9
+ :- :-
10
+ .:-=-+=:.
@@ -0,0 +1,21 @@
1
+ -*#%%%%#=.
2
+ =%@@@@@@@@@%%##*+-
3
+ -#@@@@@@@@@@@#=:.
4
+ -*@@@@@@@@@@@@*
5
+ .-+%@@@@@@@@@@@@@*
6
+ :+#%@@@@@@@@@@@@@@@@-
7
+ -+%@@@@@@@@@@@@@@@@@@@@:
8
+ .-*%@@@@@@@@@@@@@@@@@@@@@@@:
9
+ .-*%@@@@@@@@@@@@@@@@@@@@@@@@@@:
10
+ :=#%@@@@@@@@@@@@@@@@@@@@@@@@@@@@%
11
+ :-+#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@=
12
+ ..:-=+*#%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+
13
+ .:-=+*****+++*##%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*-
14
+ .::--:. .-#@@@@@@@@@@@@@@@@@@@@@@@@@@%+:
15
+ :#@@@%%##@@@@@@@@@@@@@@@@%%+-
16
+ :==--:. :-=%%##%%%%**+-:.
17
+ :#- .*-
18
+ .#- +=
19
+ #= **.
20
+ .---+#***=+##=:..
21
+ .:. .-----=-==-..
@@ -0,0 +1,15 @@
1
+ .:
2
+ +#+=+%@:
3
+ -@@@@@@+
4
+ #@@@@#.
5
+ :-=+*%@@@@*
6
+ -*%@@@@@@@@@@%
7
+ .#@@@@@@@@@@@@%-
8
+ .%@@@@@@@@@@@@+
9
+ #@@@@@@@@@@@@#
10
+ -@@@@@@@@@%+#@*
11
+ -%@@@@@@@@* %%.
12
+ .-+#%##%%%%%%%+= :#%=
13
+ -##+-: ......... ..
14
+ =%-
15
+ .:
@@ -0,0 +1,29 @@
1
+
2
+ :+=
3
+ :#*=: :*@@@=
4
+ -@@@@%##%@@@@@*
5
+ .%@@@@@@@@@@@@%
6
+ -@@@@@@@@@@@@@-
7
+ *@@@@@@@@@@%+.
8
+ -@@@@@@@@@@=
9
+ ..:-#@@@@@@@@@@:
10
+ .-=+*#%%%@@@@@@@@@@@@@*
11
+ :+#%@@@@@@@@@@@@@@@@@@@@@%.
12
+ =#@@@@@@@@@@@@@@@@@@@@@@@@@%.
13
+ -#@@@@@@@@@@@@@@@@@@@@@@@@@@%-
14
+ +@@@@@@@@@@@@@@@@@@@@@@@@@@%*.
15
+ *@@@@@@@@@@@@@@@@@@@@@@@@@@#:
16
+ *@@@@@@@@@@@@@@@@@@@@@@@@@@*
17
+ -@@@@@@@@@@@@@@@@@@@@@@@@@@%.
18
+ %@@@@@@@@@@@@@@@@@@@@@@@@@@*
19
+ =@@@@@@@@@@@@@@@@@@@@@@@@@@@=
20
+ .%@@@@@@@@@@@@@@@@@@@*-:-#@@@=
21
+ .*@@@@@@@@@@@@@@@@@@%: :@@@#
22
+ =%@@@@@@@@@@@@@@@@@@#. #@@@+
23
+ :+%@@@@@@@@@@@@@@@@@@@%-:. .*@@@#:
24
+ .:=*%@@@%#***%@@@@@@@@@@@@@@@@@%. -#@@@=
25
+ .+#%@@%#*=:. :::::::::::::::::: :==.
26
+ .%@@%+:.
27
+ -@@%.
28
+ =%@*:
29
+ :=+.
@@ -0,0 +1,11 @@
1
+
2
+
3
+
4
+
5
+
6
+ #*-.
7
+ =#+-. ..:=+%@@%%%##*+=-:.
8
+ #@@@%%#%%@@@@@@@@@@@@@@@@#*#=
9
+ -%@%%#**##%@@@@@@@@@@@@@@@%%#=
10
+ =-:. ..-=*@@%%%%%##*=-.
11
+ -#=.
@@ -0,0 +1,23 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+ .
11
+ *%+:
12
+ *@@@#+-...
13
+ -#+=:. ..*@@@@@@@%%%##**+=--:.
14
+ #@@@%#*=:. .:-+*#%%@@@@@@@@@@@@@@@@@@@@@%%#*+=:.
15
+ .#@@@@@@@%%#***##%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%#+-
16
+ :%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%-:%@@@*
17
+ +%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%@@@%*
18
+ :#@@@@@@%#*+====+*##%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#=:
19
+ .###*+-:.. .:-+*#%@@@@@@@@@@@@@@@@@@@@@@%%#+-.
20
+ .:+%@@@@%%%%%#####**+=-.
21
+ +@@%#=:
22
+ #%+.
23
+ :.
@@ -0,0 +1,16 @@
1
+ :=+*####*+=:
2
+ :+%@@@@@@@@@@@@%+:
3
+ .*@@@@@@@@@@@@@@@@@@*.
4
+ :%@@@@@@@@@@@@@@@@@@@@%:
5
+ #@@@@@@@@@@@@@@@@@@@@@@#
6
+ :%@@@@@@@@@@@@@@@@@@@@@@@:
7
+ :%++*#%@@@@@@@@@@@@%#*+=%:
8
+ #. :+%@@@@@@%+: *.
9
+ =+ .*@@@@*. -=
10
+ *- +@@* :*
11
+ .#*. %% .+#.
12
+ .#@#=-:. ## ..-=*%#.
13
+ +@@@@%%%%%%@@@@+
14
+ :#@@@@@@@@@@#:
15
+ -#@@@@@@#-
16
+ -*##*-
@@ -0,0 +1,32 @@
1
+ .:-=++*****++=-:.
2
+ .:=*#%%@@@@@@@@@@@@@@%#*=:.
3
+ .=*%@@@@@@@@@@@@@@@@@@@@@@@@@%*=.
4
+ :*%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*:
5
+ :*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*:
6
+ =%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%=
7
+ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*
8
+ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*
9
+ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@-
10
+ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#
11
+ :@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:
12
+ -@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@-
13
+ =@%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%@=
14
+ -@%....:-=+#%@@@@@@@@@@@@@@@@@@@@@@@@@%#*=-::...*@-
15
+ .%%. .:+#@@@@@@@@@@@@@@@@@@@%+-. *%.
16
+ *@- :*%@@@@@@@@@@@@@@*- %*
17
+ :@# :*@@@@@@@@@@@#: =@:
18
+ *@= =%@@@@@@@@+ .%*
19
+ #%- -%@@@@@%- .#%
20
+ :%%- =@@@@@= :#%:
21
+ -%@*. #@@@# =%%-
22
+ -%@%+: -@@@- .=%@%-
23
+ :%@@@#=: %@% :=*%@@%:
24
+ .#@@@@@%#+=-::...%@%...::-=+*%@@@@@#:
25
+ *@@@@@@@@@@@%%%%@%%%%@@@@@@@@@@@*
26
+ -%@@@@@@@@@@@@@@@@@@@@@@@@@@@%=
27
+ .*@@@@@@@@@@@@@@@@@@@@@@@@@*.
28
+ -#@@@@@@@@@@@@@@@@@@@@@#-
29
+ =%@@@@@@@@@@@@@@@@@%=
30
+ =#@@@@@@@@@@@@@#=
31
+ :+%@@@@@@@%+:
32
+ :=***=:
@@ -0,0 +1,16 @@
1
+ .:=+**##**+=:.
2
+ :+#%@@@@@@@@@@@@%#+:
3
+ -#@@@@@@@@@@@@@@@@@@@@#-
4
+ .#@@@@@@@@@@@@@@@@@@@@@@@@#.
5
+ :%@@@@@@@@@@@@@@@@@@@@@@@@@@%:
6
+ .%@@@@%==*#%%@@@@@@%%#*==%@@@@%.
7
+ *@@@@@%=: .=%@@%=. :=%@@@@@*
8
+ %@@@@@@@# .#%@@%#. #@@@@@@@%
9
+ %@@@@@@@%*=+#@@@@@@#+=*%@@@@@@@%
10
+ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*
11
+ .%@@@@@@@@@@#*====*#@@@@@@@@@@%.
12
+ :%@@@@@@@#: .:--:. :#@@@@@@@%:
13
+ .*@@@@@@#=*%@@@@%*=#@@@@@@*.
14
+ -#%@@@@@@@@@@@@@@@@@@%#-
15
+ :=#%@@@@@@@@@@@@%#=:
16
+ .:=+******+=:.
@@ -0,0 +1,32 @@
1
+ .::-=======-::.
2
+ :=+##%%@@@@@@@@@@@%%##+=:
3
+ :=*%@@@@@@@@@@@@@@@@@@@@@@@@@%*=:
4
+ .=#%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#=.
5
+ :*%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*:
6
+ :*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*:
7
+ +%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+
8
+ .#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#.
9
+ :%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%:
10
+ :%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%:
11
+ .%@@@@@@@@@@@%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%@@@@@@@@@@@%.
12
+ *@@@@@@@@@@%: .-=+#%%@@@@@@@@@@@@@@@%%#+=-: :%@@@@@@@@@@*
13
+ :%@@@@@@@@@@%: .:-+%@@@@@@@%+-:. :%@@@@@@@@@@%:
14
+ +@@@@@@@@@@@@@%#*- =@@@@@@@+ -*#%@@@@@@@@@@@@@+
15
+ %@@@@@@@@@@@@@@@# :+%@@@@@@@%+: #@@@@@@@@@@@@@@@%
16
+ %@@@@@@@@@@@@@@@# +@@@@@@@@@@@+ #@@@@@@@@@@@@@@@%
17
+ %@@@@@@@@@@@@@@@@#-. .:+%@@@@@@@@@@@%+:. .-#@@@@@@@@@@@@@@@@%
18
+ %@@@@@@@@@@@@@@@@@@%%%@@@@@@@@@@@@@@@@@%%%@@@@@@@@@@@@@@@@@@%
19
+ +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+
20
+ :%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%:
21
+ +@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@+
22
+ #@@@@@@@@@@@@@@@@@@@@%*=:. .:=*%@@@@@@@@@@@@@@@@@@@@#
23
+ :%@@@@@@@@@@@@@@@@@#- -#@@@@@@@@@@@@@@@@@%:
24
+ :%@@@@@@@@@@@@@@%- :=*##%##*=: -%@@@@@@@@@@@@@@%:
25
+ .*@@@@@@@@@@@@@%=..-#@@@@@@@@@@@#-..=%@@@@@@@@@@@@@*.
26
+ =%@@@@@@@@@@@@@%%@@@@@@@@@@@@@@@%%@@@@@@@@@@@@@%=
27
+ .*%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*.
28
+ :+%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+:
29
+ .=#%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#=.
30
+ .=*%@@@@@@@@@@@@@@@@@@@@@@@@@%*=.
31
+ .-+*#%%@@@@@@@@@@@%%#*+-:
32
+ .:--=====--:..
@@ -0,0 +1,16 @@
1
+ .#%*
2
+ .#@@%.
3
+ #@@@@#:
4
+ :@@@@@@%+.
5
+ .%@@@@@@@%+.
6
+ :-. -%@@@@@@@@%+
7
+ *@@* .=%@@@@@@@@#:
8
+ #@@@* .+@@@@@@@@%.
9
+ +@@@@* *@@@@@@@@*
10
+ %@@@@# *@@@@@@@@%
11
+ %@@@@@#-. .:*@@@@@@@@@%
12
+ +@@@@@@@%%%@@@@@@@@@@@+
13
+ #@@@@@@@@@@@@@@@@@@@#
14
+ *@@@@@@@@@@@@@@@@@*
15
+ :*%@@@@@@@@@@@%*:
16
+ .-*#%%%%%#*-.
@@ -0,0 +1,32 @@
1
+ +%%%+
2
+ .#@@@@@-
3
+ :%@@@@@@+
4
+ :%@@@@@@@%:
5
+ .%@@@@@@@@@%:
6
+ *@@@@@@@@@@@%=
7
+ .%@@@@@@@@@@@@@#-
8
+ -@@@@@@@@@@@@@@@@#-
9
+ :@@@@@@@@@@@@@@@@@@#-
10
+ *@@@@@@@@@@@@@@@@@@@#=
11
+ *@@@@@@@@@@@@@@@@@@@@#-
12
+ -*##+. =%@@@@@@@@@@@@@@@@@@@@#:
13
+ .*@@@@@* .+%@@@@@@@@@@@@@@@@@@@%=
14
+ :%@@@@@@* .+%@@@@@@@@@@@@@@@@@@@*
15
+ -%@@@@@@@* .+@@@@@@@@@@@@@@@@@@@*
16
+ :%@@@@@@@@* -%@@@@@@@@@@@@@@@@@@=
17
+ #@@@@@@@@@* :%@@@@@@@@@@@@@@@@@%.
18
+ =@@@@@@@@@@* +@@@@@@@@@@@@@@@@@@+
19
+ #@@@@@@@@@@# +@@@@@@@@@@@@@@@@@@%
20
+ %@@@@@@@@@@%- :%@@@@@@@@@@@@@@@@@@%
21
+ %@@@@@@@@@@@%= -%@@@@@@@@@@@@@@@@@@@%
22
+ #@@@@@@@@@@@@@%+-.. .:=#@@@@@@@@@@@@@@@@@@@@@#
23
+ =@@@@@@@@@@@@@@@@%%%%%@@@@@@@@@@@@@@@@@@@@@@@@=
24
+ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#
25
+ :%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%:
26
+ -%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%-
27
+ :%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%:
28
+ .+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+.
29
+ :*%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*:
30
+ :+%@@@@@@@@@@@@@@@@@@@@@@@@@%+:
31
+ :+#%@@@@@@@@@@@@@@@@@%#+:
32
+ .:=+*#%%%%%%%#*+=:.
@@ -0,0 +1,16 @@
1
+ .-+#%%@%%#*-.
2
+ :*%@@@@@@@@@@@%*:
3
+ +%@@@@@@@@@@@@@@@@*
4
+ *@@@@@@@@@@@@@@@@@@@#
5
+ +@@@@@@%%@@@@@%%@@@@@@*
6
+ %@@@@#: .*@@@*. :#@@@@%
7
+ @@@@@%: .*@@@*. :%@@@@@
8
+ @@@@@@@%%@@@@@%%@@@@@@@
9
+ @@@@@@@@@@@@@@@@@@@@@@@
10
+ @@@@@@@@@@@@@@@@@@@@@@@
11
+ @@@@@@@@@@@@@@@@@@@@@@@
12
+ @@@@@@@@@@@@@@@@@@@@@@@
13
+ @@@@@@@@@@@@@@@@@@@@@@@
14
+ @@@@@@@@@@@@@@@@@@@@@@@
15
+ ##=:-#@@@%+:+%@@@#-:=##
16
+ +%#: :#%+
@@ -0,0 +1,32 @@
1
+ .:=+*#%%%@%%%##+=:.
2
+ :=*%@@@@@@@@@@@@@@@@@%#+:
3
+ .=#@@@@@@@@@@@@@@@@@@@@@@@@@%+:
4
+ .+%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*:
5
+ =%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*.
6
+ .*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%-
7
+ .#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%-
8
+ .#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%:
9
+ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#
10
+ :@@@@@@@@@@@@@%%%@@@@@@@@@@@@@%%%@@@@@@@@@@@@@=
11
+ *@@@@@@@@@@@#-. :+%@@@@@@@%+: .-#@@@@@@@@@@@#
12
+ %@@@@@@@@@@# +@@@@@@@+ #@@@@@@@@@@%
13
+ @@@@@@@@@@@# +@@@@@@@+ #@@@@@@@@@@@
14
+ @@@@@@@@@@@@#-. .:+%@@@@@@@%+:. .-#@@@@@@@@@@@@
15
+ @@@@@@@@@@@@@@%%%@@@@@@@@@@@@@%%%@@@@@@@@@@@@@@
16
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
17
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
18
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
19
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
20
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
21
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
22
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
23
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
24
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
25
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
26
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
27
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
28
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
29
+ @@@@@#=-=#@@@@@@@@@@@%+=+%@@@@@@@@@@@#=-=#@@@@@
30
+ +##+: =%@@@@@@@@*. .*@@@@@@@@%= :+##+
31
+ .+%@@@@#: :#@@@@%+.
32
+ :#%%= =%%#:
@@ -0,0 +1,16 @@
1
+ *%@@@@@@@@%-
2
+ :@@@@@@@@@@%.
3
+ =@@@@@@@@@@+
4
+ *@@@@@@@@@%.
5
+ %@@@@@@@@@+
6
+ :@@@@@@@@@@%%%%%%%%*
7
+ +@@@@@@@@@@@@@@@@@%=
8
+ %@@@@@@@@@@@@@@@@%:
9
+ *%%%%%%%%%@@@@@@#.
10
+ -%@@@@@*.
11
+ *@@@@@+
12
+ :%@@@@=
13
+ *@@@%-
14
+ :%@@%:
15
+ *@@#:
16
+ *%#.
@@ -0,0 +1,32 @@
1
+ -#%@@@@@@@@@@@@@@@@@%#-
2
+ %@@@@@@@@@@@@@@@@@@@@@%
3
+ :@@@@@@@@@@@@@@@@@@@@@@+
4
+ +@@@@@@@@@@@@@@@@@@@@@%.
5
+ #@@@@@@@@@@@@@@@@@@@@@=
6
+ .%@@@@@@@@@@@@@@@@@@@@%
7
+ -@@@@@@@@@@@@@@@@@@@@@-
8
+ +@@@@@@@@@@@@@@@@@@@@#
9
+ #@@@@@@@@@@@@@@@@@@@@-
10
+ .%@@@@@@@@@@@@@@@@@@@#
11
+ -@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%*-
12
+ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%
13
+ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%-
14
+ :%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%:
15
+ =@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#.
16
+ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*
17
+ %@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+
18
+ -*%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@@=
19
+ =@@@@@@@@@@@@@%-
20
+ #@@@@@@@@@@@@%:
21
+ -@@@@@@@@@@@@#.
22
+ #@@@@@@@@@@@*.
23
+ :@@@@@@@@@@@+
24
+ *@@@@@@@@@@=
25
+ :%@@@@@@@@%-
26
+ *@@@@@@@@%:
27
+ .%@@@@@@@#:
28
+ +@@@@@@@#.
29
+ .%@@@@@@*
30
+ +@@@@@@+
31
+ %@@@@%=
32
+ -#%%#-
@@ -0,0 +1,12 @@
1
+ .:=+#%%@@@@#*+-
2
+ .+#%@@%#*++==::--=====-::.
3
+ %@@+-. =%@@@@@@@@@@%%*+-.
4
+ #@@= ..:- .@@@@@@@@@@@@@@@@@%+
5
+ -@@# +**: +@@@%=:-#@@%##%@@@@%
6
+ %@%: . #@@@%**=+@%=:.-%@@@+
7
+ +@@+ .** :@@@%@@@@@@%%@%#%@@%.
8
+ .%@%= .. +@@@#-*%@@@@@@%%@@@*
9
+ .*%@%*-: :%@@%- .:---:=%@@@-
10
+ .=*%@@#.:#@@@#=:..:-*%@@%+
11
+ .:=- =#@@@@@@@@@@#+:
12
+ -*#%%%#*=:
@@ -0,0 +1,25 @@
1
+ .:-=+*##%%%%%@%%%%%##*=.
2
+ :-+*#%%@@@@@@@@@@@@@@@%##***=.
3
+ :=*%@@@@@@@@@@@@@@@%%%%#=:
4
+ =#@@@@@@@@@%%#*+=--::.... :=+***########**+==-:.
5
+ +@@@@@@@%*+-. =#@@@@@@@@@@@@@@@@@@@@@%%#+=:.
6
+ @@@@@@*: +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+-.
7
+ #@@@@@* .%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#-
8
+ =@@@@@%. . .-+: =@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@=
9
+ .%@@@@@- -%%%%%@@: #@@@@@@@@@@%%%@@@@@@@@@@@@@@@@@@@@@@@@%
10
+ *@@@@@# -*#%#*: .%@@@@@@@%+: .-#@@@@@@@@%%@@@@@@@@@@@@#
11
+ -@@@@@%. =@@@@@@@@= #@@@@%=:..:+%@@@@@@@@@=
12
+ %@@@@@= #@@@@@@@@#%%%%#+:#@@@%. :%@@@@@@@%.
13
+ +@@@@@# :=#- :%@@@@@@@@@@@@@@@@@@@@%##%%#*--%@@@@@@@*
14
+ :%@@@@%: *@@%. +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@-
15
+ #@@@@@+ *%+-. %@@@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%
16
+ -@@@@@@+. : :@@@@@@@@=:*%@@@@@@@@@@@@@@@@@@@@@@@@@@+
17
+ =@@@@@@%+: .%@@@@@@@* .-*#%@@@@@@@@@@@%##@@@@@@@@:
18
+ :#@@@@@@%#+:. +@@@@@@@@+ .:-==++++=-:.:#@@@@@@@#
19
+ -#@@@@@@@@%#+= *@@@@@@@@*. -%@@@@@@@@=
20
+ :+#%@@@@@@@@+ +@@@@@@@@%*-. :=#@@@@@@@@@+
21
+ .=*#%@@@@@*. -%@@@@@@@@@%#*++++*#%@@@@@@@@@@%-
22
+ .:=+**#*. .+%@@@@@@@@@@@@@@@@@@@@@@@@@#=
23
+ .+%@@@@@@@@@@@@@@@@@@@@%*-
24
+ -*%@@@@@@@@@@@@%%*+:
25
+ .-+#%%%%%#*+=:
@@ -0,0 +1,16 @@
1
+ -%%*=
2
+ %@@@#:
3
+ =%@@@@#
4
+ .-*@@@@@@#
5
+ =#%%%%@@@@@@@@%%#=
6
+ #@@@@@@@@@@@@@@@@@@#
7
+ *%@@@@@@@@@@@@@@@@%*
8
+ :-+%@@@@@@@@@@@@@@@@%+-:
9
+ :#@@@@@@@@@@@@@@@@@@@@@@@@#:
10
+ %@@@@@@@@@@@@@@@@@@@@@@@@@@%
11
+ +%@@@@@@@@@@@@@@@@@@@@@@@@%+
12
+ :#@@@@@@@@@@@@@@@@@@@@@@@@#:
13
+ :#@@@@@@@@@@@@@@@@@@@@@@@@@@@@#:
14
+ %@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%
15
+ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*
16
+ =#%%@@@@@@@@@@@@@@@@@@@@@@%%#=
@@ -0,0 +1,32 @@
1
+ -%%%%#+-.
2
+ =@@@@@@%+:
3
+ .%@@@@@@@%+
4
+ %@@@@@@@@@#
5
+ =@@@@@@@@@@@+
6
+ -%@@@@@@@@@@@%
7
+ :*@@@@@@@@@@@@@#
8
+ ..:=#%@@@@@@@@@@@@@@+
9
+ :+*#%%%%%%@@@@@@@@@@@@@@@@@@%%#*+:
10
+ -#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#-
11
+ -%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%-
12
+ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#
13
+ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#
14
+ -%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%-
15
+ -%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%-
16
+ .-+##%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%##+-.
17
+ +%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+
18
+ .#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#.
19
+ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*
20
+ %@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%
21
+ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*
22
+ .#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#.
23
+ +%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+
24
+ .-+*%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+-.
25
+ +%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+
26
+ .#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#.
27
+ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#
28
+ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
29
+ #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#
30
+ .#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#.
31
+ +%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+
32
+ .-*#%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%#*-.