task-tree 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ad1aa275827ccf59a96fa1b1f98986498c773e02
4
+ data.tar.gz: c959e76c52549a183f83efe7d6b93c8ff57e41d7
5
+ SHA512:
6
+ metadata.gz: f9210e1d3bc18da87ecd049d493a3778840acdc4c705f107e9168c66146d2229fdc4b3f00c328c429864f063576bf239a60c676f60b89639840f931389bb86b3
7
+ data.tar.gz: 88e0e5ca3e0a40c697c749e71d6d1a3d69047055acafa03d3ea7833c16b04f0389952945a5a1069630bc800ea9afd1d19df8e7b0680ee4d523d377210a8817bc
data/.gitignore ADDED
@@ -0,0 +1,61 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+
13
+ # Used by dotenv library to load environment variables.
14
+ # .env
15
+
16
+ ## Specific to RubyMotion:
17
+ .dat*
18
+ .repl_history
19
+ build/
20
+ *.bridgesupport
21
+ build-iPhoneOS/
22
+ build-iPhoneSimulator/
23
+
24
+ ## Specific to RubyMotion (use of CocoaPods):
25
+ #
26
+ # We recommend against adding the Pods directory to your .gitignore. However
27
+ # you should judge for yourself, the pros and cons are mentioned at:
28
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
29
+ #
30
+ # vendor/Pods/
31
+
32
+ ## Documentation cache and generated files:
33
+ /.yardoc/
34
+ /_yardoc/
35
+ /doc/
36
+ /rdoc/
37
+
38
+ ## Environment normalization:
39
+ /.bundle/
40
+ /vendor/bundle
41
+ /lib/bundler/man/
42
+
43
+ # for a library or gem, you might want to ignore these files since the code is
44
+ # intended to run in multiple environments; otherwise, check them in:
45
+ # Gemfile.lock
46
+ # .ruby-version
47
+ # .ruby-gemset
48
+
49
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
50
+ .rvmrc
51
+
52
+ *.json
53
+ =======
54
+ /.bundle/
55
+ /.yardoc
56
+ /_yardoc/
57
+ /coverage/
58
+ /doc/
59
+ /pkg/
60
+ /spec/reports/
61
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in task-tree.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,124 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ task-tree (0.1.0)
5
+ bundler (~> 1.16)
6
+ commander
7
+ rake (~> 10.0)
8
+ rubytree
9
+ tty
10
+ tty-screen
11
+
12
+ GEM
13
+ remote: https://rubygems.org/
14
+ specs:
15
+ byebug (10.0.2)
16
+ commander (4.4.7)
17
+ highline (~> 2.0.0)
18
+ diff-lcs (1.3)
19
+ equatable (0.5.0)
20
+ highline (2.0.0)
21
+ json (2.1.0)
22
+ kramdown (1.16.2)
23
+ necromancer (0.4.0)
24
+ pastel (0.7.2)
25
+ equatable (~> 0.5.0)
26
+ tty-color (~> 0.4.0)
27
+ rake (10.5.0)
28
+ rouge (3.1.1)
29
+ rubytree (1.0.0)
30
+ json (~> 2.1)
31
+ structured_warnings (~> 0.3)
32
+ strings (0.1.4)
33
+ strings-ansi (~> 0.1.0)
34
+ unicode-display_width (~> 1.4.0)
35
+ unicode_utils (~> 1.4.0)
36
+ strings-ansi (0.1.0)
37
+ structured_warnings (0.3.0)
38
+ thor (0.20.3)
39
+ timers (4.2.0)
40
+ tty (0.8.1)
41
+ bundler (~> 1.16, < 2.0)
42
+ equatable (~> 0.5.0)
43
+ pastel (~> 0.7.2)
44
+ thor (~> 0.20.0)
45
+ tty-color (~> 0.4.2)
46
+ tty-command (~> 0.8.0)
47
+ tty-config (~> 0.2.0)
48
+ tty-cursor (~> 0.5.0)
49
+ tty-editor (~> 0.4.0)
50
+ tty-file (~> 0.6.0)
51
+ tty-font (~> 0.2.0)
52
+ tty-markdown (~> 0.4.0)
53
+ tty-pager (~> 0.11.0)
54
+ tty-platform (~> 0.1.0)
55
+ tty-progressbar (~> 0.15.0)
56
+ tty-prompt (~> 0.16.1)
57
+ tty-screen (~> 0.6.4)
58
+ tty-spinner (~> 0.8.0)
59
+ tty-table (~> 0.10.0)
60
+ tty-tree (~> 0.1.0)
61
+ tty-which (~> 0.3.0)
62
+ tty-color (0.4.3)
63
+ tty-command (0.8.2)
64
+ pastel (~> 0.7.0)
65
+ tty-config (0.2.0)
66
+ tty-cursor (0.5.0)
67
+ tty-editor (0.4.0)
68
+ tty-prompt (~> 0.16.0)
69
+ tty-which (~> 0.3.0)
70
+ tty-file (0.6.0)
71
+ diff-lcs (~> 1.3.0)
72
+ pastel (~> 0.7.2)
73
+ tty-prompt (~> 0.16.1)
74
+ tty-font (0.2.0)
75
+ tty-markdown (0.4.0)
76
+ kramdown (~> 1.16.2)
77
+ pastel (~> 0.7.2)
78
+ rouge (~> 3.1.0)
79
+ strings (~> 0.1.0)
80
+ tty-color (~> 0.4.2)
81
+ tty-screen (~> 0.6.4)
82
+ tty-pager (0.11.0)
83
+ strings (~> 0.1.0)
84
+ tty-screen (~> 0.6.4)
85
+ tty-which (~> 0.3.0)
86
+ tty-platform (0.1.0)
87
+ tty-progressbar (0.15.1)
88
+ tty-cursor (~> 0.5.0)
89
+ tty-screen (~> 0.6.4)
90
+ unicode-display_width (~> 1.3)
91
+ tty-prompt (0.16.1)
92
+ necromancer (~> 0.4.0)
93
+ pastel (~> 0.7.0)
94
+ timers (~> 4.0)
95
+ tty-cursor (~> 0.5.0)
96
+ tty-reader (~> 0.3.0)
97
+ tty-reader (0.3.0)
98
+ tty-cursor (~> 0.5.0)
99
+ tty-screen (~> 0.6.4)
100
+ wisper (~> 2.0.0)
101
+ tty-screen (0.6.5)
102
+ tty-spinner (0.8.0)
103
+ tty-cursor (>= 0.5.0)
104
+ tty-table (0.10.0)
105
+ equatable (~> 0.5.0)
106
+ necromancer (~> 0.4.0)
107
+ pastel (~> 0.7.2)
108
+ strings (~> 0.1.0)
109
+ tty-screen (~> 0.6.4)
110
+ tty-tree (0.1.0)
111
+ tty-which (0.3.0)
112
+ unicode-display_width (1.4.0)
113
+ unicode_utils (1.4.0)
114
+ wisper (2.0.0)
115
+
116
+ PLATFORMS
117
+ ruby
118
+
119
+ DEPENDENCIES
120
+ byebug
121
+ task-tree!
122
+
123
+ BUNDLED WITH
124
+ 1.16.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Ewoudt Kellerman
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
13
+ all 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
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # task-tree
2
+ Task Tree is a CLI tool that helps you keep track of your tasks in a tree structure
3
+
4
+ ## Disclaimer
5
+ This project is still in early development, any suggestions, pull requests are more than welcome!
6
+ Don't be too surprised if things go wrong!
7
+
8
+ ## Dependencies
9
+ - Figlet
10
+ - Figlet fonts, there are many fonts readily available for figlet the best place is probably [figlet.org](http://www.figlet.org/fontdb.cgi)
11
+ - The default is larry3d.
12
+
13
+ ## Installation
14
+
15
+ Add this line to your application's Gemfile:
16
+
17
+ $ gem install task-tree
18
+
19
+ ## Usage
20
+
21
+ task-tree
22
+
23
+
24
+ ## Development
25
+
26
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
27
+
28
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
29
+
30
+ ## Contributing
31
+
32
+ Bug reports and pull requests are welcome on GitHub at https://github.com/hellola/task-tree.
33
+
34
+ ## License
35
+
36
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "task/tree"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/exe/task-tree ADDED
@@ -0,0 +1,22 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'commander/import'
4
+ require 'tasktree/tasky'
5
+
6
+ program :name, 'task-tree'
7
+ program :version, '0.0.1'
8
+ program :description, 'Lets you keep track of what your doing and your stack, allowing you to traverse back when tasks are complete'
9
+
10
+ command :start do |c|
11
+ c.syntax = 'task-tree start [options]'
12
+ c.summary = ''
13
+ c.description = ''
14
+ c.example 'start --output=file.json', 'run tasky with a custom output / store file'
15
+ c.option '--output=<output>', 'Set a custom output file'
16
+ c.option '--animations', 'Set a custom output file'
17
+ c.option '--figlet-font=<figlet_font>', 'Path to figlet font to use'
18
+ c.action do |args, options|
19
+ t = TaskTree::Tasky.new(options)
20
+ t.start
21
+ end
22
+ end
data/fonts/larry3d.flf ADDED
@@ -0,0 +1,924 @@
1
+ flf2a$ 9 6 30 1 5
2
+ larry3d.flf by Larry Gelberg (larryg@avs.com)
3
+ (stolen liberally from Juan Car's puffy.flf)
4
+ tweaked by Glenn Chappell <ggc@uiuc.edu>
5
+ Version 1.2 2/24/94
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
+ @
33
+ @@
34
+ __ __ @
35
+ _\ \\ \__ @
36
+ /\__ _ _\ @
37
+ \/_L\ \\ \L_ @
38
+ /\_ _ _\@
39
+ \/_/\_\\_\/@
40
+ \/_//_/ @
41
+ @
42
+ @@
43
+ __ @
44
+ /\ \_ @
45
+ \/'__`\ @
46
+ /\ \_\_\ @
47
+ \ \____ \ @
48
+ \/\ \_\ \@
49
+ \ `\_ _/@
50
+ `\_/\_\@
51
+ \/_/@@
52
+ __ __ @
53
+ /\_\ / / @
54
+ \/_/ / / @
55
+ / / @
56
+ / / __ @
57
+ /_/ /\_\@
58
+ /_/ \/_/@
59
+ @
60
+ @@
61
+ ____ @
62
+ /| _ \ @
63
+ |/\ | @
64
+ \// __`\/\ @
65
+ /| \L> <_@
66
+ | \_____/\/@
67
+ \/____/\/ @
68
+ @
69
+ @@
70
+ __ @
71
+ /\ \ @
72
+ \ \/$ @
73
+ \/ $ @
74
+ $ $ @
75
+ $ $@
76
+ @
77
+ @
78
+ @@
79
+ _ @
80
+ /' \ @
81
+ /\ ,/' @
82
+ \ \ \ @
83
+ \ \ `\ @
84
+ \ `\__\@
85
+ `\/_/ @
86
+ @
87
+ @@
88
+ __ @
89
+ /\ `\ @
90
+ \`\ \ @
91
+ `\`\ \ @
92
+ `\/' \@
93
+ /\__/@
94
+ \/_/ @
95
+ @
96
+ @@
97
+ __ @
98
+ _\ \ _ @
99
+ /\_` ' \ @
100
+ \/_> <_ @
101
+ /\_, ,_\@
102
+ \/_/\_\/@
103
+ \/_/ @
104
+ @
105
+ @@
106
+ __ @
107
+ /\ \ @
108
+ \_\ \___ @
109
+ /\___ __\@
110
+ \/__/\ \_/@
111
+ \ \_\ @
112
+ \/_/ @
113
+ @
114
+ @@
115
+ @
116
+ @
117
+ @
118
+ @
119
+ __ @
120
+ /\ \@
121
+ \ \/@
122
+ \/ @
123
+ @@
124
+ @
125
+ @
126
+ @
127
+ _______ @
128
+ /\______\@
129
+ \/______/@
130
+ @
131
+ @
132
+ @@
133
+ @
134
+ @
135
+ @
136
+ @
137
+ __ @
138
+ /\_\@
139
+ \/_/@
140
+ @
141
+ @@
142
+ __@
143
+ / /@
144
+ / / @
145
+ / / @
146
+ / / @
147
+ /_/ @
148
+ /_/ @
149
+ @
150
+ @@
151
+ __ @
152
+ /'__`\ @
153
+ /\ \/\ \ @
154
+ \ \ \ \ \ @
155
+ \ \ \_\ \@
156
+ \ \____/@
157
+ \/___/ @
158
+ @
159
+ @@
160
+ _ @
161
+ /' \ @
162
+ /\_, \ @
163
+ \/_/\ \ @
164
+ \ \ \ @
165
+ \ \_\@
166
+ \/_/@
167
+ @
168
+ @@
169
+ ___ @
170
+ /'___`\ @
171
+ /\_\ /\ \ @
172
+ \/_/// /__ @
173
+ // /_\ \@
174
+ /\______/@
175
+ \/_____/ @
176
+ @
177
+ @@
178
+ __ @
179
+ /'__`\ @
180
+ /\_\L\ \ @
181
+ \/_/_\_<_ @
182
+ /\ \L\ \@
183
+ \ \____/@
184
+ \/___/ @
185
+ @
186
+ @@
187
+ __ __ @
188
+ /\ \\ \ @
189
+ \ \ \\ \ @
190
+ \ \ \\ \_ @
191
+ \ \__ ,__\@
192
+ \/_/\_\_/@
193
+ \/_/ @
194
+ @
195
+ @@
196
+ ______ @
197
+ /\ ___\ @
198
+ \ \ \__/ @
199
+ \ \___``\ @
200
+ \/\ \L\ \@
201
+ \ \____/@
202
+ \/___/ @
203
+ @
204
+ @@
205
+ ____ @
206
+ /'___\ @
207
+ /\ \__/ @
208
+ \ \ _``\ @
209
+ \ \ \L\ \@
210
+ \ \____/@
211
+ \/___/ @
212
+ @
213
+ @@
214
+ ________ @
215
+ /\_____ \@
216
+ \/___//'/'@
217
+ /' /' @
218
+ /' /' @
219
+ /\_/ @
220
+ \// @
221
+ @
222
+ @@
223
+ __ @
224
+ /'_ `\ @
225
+ /\ \L\ \ @
226
+ \/_> _ <_ @
227
+ /\ \L\ \@
228
+ \ \____/@
229
+ \/___/ @
230
+ @
231
+ @@
232
+ __ @
233
+ /'_ `\ @
234
+ /\ \L\ \ @
235
+ \ \___, \ @
236
+ \/__,/\ \ @
237
+ \ \_\@
238
+ \/_/@
239
+ @
240
+ @@
241
+ @
242
+ @
243
+ __ @
244
+ /\_\ @
245
+ \/_/_ @
246
+ /\_\@
247
+ \/_/@
248
+ @
249
+ @@
250
+ @
251
+ @
252
+ __ @
253
+ /\_\ @
254
+ \/_/_ @
255
+ /\ \@
256
+ \ \/@
257
+ \/ @
258
+ @@
259
+ ___ @
260
+ / / @
261
+ / / @
262
+ /< < @
263
+ \ `\ `\ @
264
+ `\ `\_|@
265
+ `\// @
266
+ @
267
+ @@
268
+ @
269
+ _______ @
270
+ /\______\ @
271
+ \/______/_ @
272
+ /\______\@
273
+ \/______/@
274
+ @
275
+ @
276
+ @@
277
+ __ @
278
+ /\ `\ @
279
+ \ `\ `\ @
280
+ `\ > >@
281
+ / / @
282
+ /\_/ @
283
+ \// @
284
+ @
285
+ @@
286
+ _ @
287
+ /'_`\ @
288
+ /\_\/\`\@
289
+ \/_//'/'@
290
+ /\_\ @
291
+ \/\_\@
292
+ \/_/@
293
+ @
294
+ @@
295
+ @
296
+ __ @
297
+ /'_`\_ @
298
+ /'/'_` \ @
299
+ /\ \ \L\ \ @
300
+ \ \ `\__,_\@
301
+ \ `\_____\@
302
+ `\/_____/@
303
+ @@
304
+ ______ @
305
+ /\ _ \ @
306
+ \ \ \L\ \ @
307
+ \ \ __ \ @
308
+ \ \ \/\ \ @
309
+ \ \_\ \_\@
310
+ \/_/\/_/@
311
+ @
312
+ @@
313
+ ____ @
314
+ /\ _`\ @
315
+ \ \ \L\ \ @
316
+ \ \ _ <' @
317
+ \ \ \L\ \@
318
+ \ \____/@
319
+ \/___/ @
320
+ @
321
+ @@
322
+ ____ @
323
+ /\ _`\ @
324
+ \ \ \/\_\ @
325
+ \ \ \/_/_ @
326
+ \ \ \L\ \@
327
+ \ \____/@
328
+ \/___/ @
329
+ @
330
+ @@
331
+ ____ @
332
+ /\ _`\ @
333
+ \ \ \/\ \ @
334
+ \ \ \ \ \ @
335
+ \ \ \_\ \@
336
+ \ \____/@
337
+ \/___/ @
338
+ @
339
+ @@
340
+ ____ @
341
+ /\ _`\ @
342
+ \ \ \L\_\ @
343
+ \ \ _\L @
344
+ \ \ \L\ \@
345
+ \ \____/@
346
+ \/___/ @
347
+ @
348
+ @@
349
+ ____ @
350
+ /\ _`\ @
351
+ \ \ \L\_\@
352
+ \ \ _\/@
353
+ \ \ \/ @
354
+ \ \_\ @
355
+ \/_/ @
356
+ @
357
+ @@
358
+ ____ @
359
+ /\ _`\ @
360
+ \ \ \L\_\ @
361
+ \ \ \L_L @
362
+ \ \ \/, \@
363
+ \ \____/@
364
+ \/___/ @
365
+ @
366
+ @@
367
+ __ __ @
368
+ /\ \/\ \ @
369
+ \ \ \_\ \ @
370
+ \ \ _ \ @
371
+ \ \ \ \ \ @
372
+ \ \_\ \_\@
373
+ \/_/\/_/@
374
+ @
375
+ @@
376
+ ______ @
377
+ /\__ _\ @
378
+ \/_/\ \/ @
379
+ \ \ \ @
380
+ \_\ \__ @
381
+ /\_____\@
382
+ \/_____/@
383
+ @
384
+ @@
385
+ _____ @
386
+ /\___ \ @
387
+ \/__/\ \ @
388
+ _\ \ \ @
389
+ /\ \_\ \@
390
+ \ \____/@
391
+ \/___/ @
392
+ @
393
+ @@
394
+ __ __ @
395
+ /\ \/\ \ @
396
+ \ \ \/'/' @
397
+ \ \ , < @
398
+ \ \ \\`\ @
399
+ \ \_\ \_\@
400
+ \/_/\/_/@
401
+ @
402
+ @@
403
+ __ @
404
+ /\ \ @
405
+ \ \ \ @
406
+ \ \ \ __ @
407
+ \ \ \L\ \@
408
+ \ \____/@
409
+ \/___/ @
410
+ @
411
+ @@
412
+ @
413
+ /'\_/`\ @
414
+ /\ \ @
415
+ \ \ \__\ \ @
416
+ \ \ \_/\ \ @
417
+ \ \_\\ \_\@
418
+ \/_/ \/_/@
419
+ @
420
+ @@
421
+ __ __ @
422
+ /\ \/\ \ @
423
+ \ \ `\\ \ @
424
+ \ \ , ` \ @
425
+ \ \ \`\ \ @
426
+ \ \_\ \_\@
427
+ \/_/\/_/@
428
+ @
429
+ @@
430
+ _____ @
431
+ /\ __`\ @
432
+ \ \ \/\ \ @
433
+ \ \ \ \ \ @
434
+ \ \ \_\ \ @
435
+ \ \_____\@
436
+ \/_____/@
437
+ @
438
+ @@
439
+ ____ @
440
+ /\ _`\ @
441
+ \ \ \L\ \@
442
+ \ \ ,__/@
443
+ \ \ \/ @
444
+ \ \_\ @
445
+ \/_/ @
446
+ @
447
+ @@
448
+ _____ @
449
+ /\ __`\ @
450
+ \ \ \/\ \ @
451
+ \ \ \ \ \ @
452
+ \ \ \\'\\ @
453
+ \ \___\_\@
454
+ \/__//_/@
455
+ @
456
+ @@
457
+ ____ @
458
+ /\ _`\ @
459
+ \ \ \L\ \ @
460
+ \ \ , / @
461
+ \ \ \\ \ @
462
+ \ \_\ \_\@
463
+ \/_/\/ /@
464
+ @
465
+ @@
466
+ ____ @
467
+ /\ _`\ @
468
+ \ \,\L\_\ @
469
+ \/_\__ \ @
470
+ /\ \L\ \ @
471
+ \ `\____\@
472
+ \/_____/@
473
+ @
474
+ @@
475
+ ______ @
476
+ /\__ _\ @
477
+ \/_/\ \/ @
478
+ \ \ \ @
479
+ \ \ \ @
480
+ \ \_\@
481
+ \/_/@
482
+ @
483
+ @@
484
+ __ __ @
485
+ /\ \/\ \ @
486
+ \ \ \ \ \ @
487
+ \ \ \ \ \ @
488
+ \ \ \_\ \ @
489
+ \ \_____\@
490
+ \/_____/@
491
+ @
492
+ @@
493
+ __ __ @
494
+ /\ \/\ \ @
495
+ \ \ \ \ \ @
496
+ \ \ \ \ \ @
497
+ \ \ \_/ \@
498
+ \ `\___/@
499
+ `\/__/ @
500
+ @
501
+ @@
502
+ __ __ @
503
+ /\ \ __/\ \ @
504
+ \ \ \/\ \ \ \ @
505
+ \ \ \ \ \ \ \ @
506
+ \ \ \_/ \_\ \@
507
+ \ `\___x___/@
508
+ '\/__//__/ @
509
+ @
510
+ @@
511
+ __ __ @
512
+ /\ \ /\ \ @
513
+ \ `\`\/'/' @
514
+ `\/ > < @
515
+ \/'/\`\ @
516
+ /\_\\ \_\@
517
+ \/_/ \/_/@
518
+ @
519
+ @@
520
+ __ __ @
521
+ /\ \ /\ \@
522
+ \ `\`\\/'/@
523
+ `\ `\ /' @
524
+ `\ \ \ @
525
+ \ \_\@
526
+ \/_/@
527
+ @
528
+ @@
529
+ ________ @
530
+ /\_____ \ @
531
+ \/____//'/' @
532
+ //'/' @
533
+ //'/'___ @
534
+ /\_______\@
535
+ \/_______/@
536
+ @
537
+ @@
538
+ ____ @
539
+ /\ _\ @
540
+ \ \ \/ @
541
+ \ \ \ @
542
+ \ \ \_ @
543
+ \ \___\@
544
+ \/___/@
545
+ @
546
+ @@
547
+ __ @
548
+ /\ `\ @
549
+ \`\ `\ @
550
+ `\`\ `\ @
551
+ `\`\ `\ @
552
+ `\`\__\@
553
+ `\/__/@
554
+ @
555
+ @@
556
+ ____ @
557
+ /\__ \ @
558
+ \/_/\ \ @
559
+ \ \ \ @
560
+ \_\ \ @
561
+ /\___\@
562
+ \/___/@
563
+ @
564
+ @@
565
+ __ @
566
+ / `\ @
567
+ /\_/\_\ @
568
+ \//\// $ @
569
+ $ $ @
570
+ $ $@
571
+ @
572
+ @
573
+ @@
574
+ @
575
+ @
576
+ @
577
+ @
578
+ @
579
+ $ $ @
580
+ $_______ @
581
+ /\______\@
582
+ \/______/@@
583
+ __ @
584
+ /\ \ @
585
+ \ \\$ @
586
+ \// $ @
587
+ $ $ @
588
+ $ $@
589
+ @
590
+ @
591
+ @@
592
+ @
593
+ @
594
+ __ @
595
+ /'__`\ @
596
+ /\ \L\.\_ @
597
+ \ \__/.\_\@
598
+ \/__/\/_/@
599
+ @
600
+ @@
601
+ __ @
602
+ /\ \ @
603
+ \ \ \____ @
604
+ \ \ '__`\ @
605
+ \ \ \L\ \@
606
+ \ \_,__/@
607
+ \/___/ @
608
+ @
609
+ @@
610
+ @
611
+ @
612
+ ___ @
613
+ /'___\ @
614
+ /\ \__/ @
615
+ \ \____\@
616
+ \/____/@
617
+ @
618
+ @@
619
+ __ @
620
+ /\ \ @
621
+ \_\ \ @
622
+ /'_` \ @
623
+ /\ \L\ \ @
624
+ \ \___,_\@
625
+ \/__,_ /@
626
+ @
627
+ @@
628
+ @
629
+ @
630
+ __ @
631
+ /'__`\ @
632
+ /\ __/ @
633
+ \ \____\@
634
+ \/____/@
635
+ @
636
+ @@
637
+ ___ @
638
+ /'___\ @
639
+ /\ \__/ @
640
+ \ \ ,__\@
641
+ \ \ \_/@
642
+ \ \_\ @
643
+ \/_/ @
644
+ @
645
+ @@
646
+ @
647
+ @
648
+ __ @
649
+ /'_ `\ @
650
+ /\ \L\ \ @
651
+ \ \____ \ @
652
+ \/___L\ \@
653
+ /\____/@
654
+ \_/__/ @@
655
+ __ @
656
+ /\ \ @
657
+ \ \ \___ @
658
+ \ \ _ `\ @
659
+ \ \ \ \ \ @
660
+ \ \_\ \_\@
661
+ \/_/\/_/@
662
+ @
663
+ @@
664
+ @
665
+ __ @
666
+ /\_\ @
667
+ \/\ \ @
668
+ \ \ \ @
669
+ \ \_\@
670
+ \/_/@
671
+ @
672
+ @@
673
+ @
674
+ __ @
675
+ /\_\ @
676
+ \/\ \ @
677
+ \ \ \ @
678
+ _\ \ \ @
679
+ /\ \_\ \@
680
+ \ \____/@
681
+ \/___/ @@
682
+ __ @
683
+ /\ \ @
684
+ \ \ \/'\ @
685
+ \ \ , < @
686
+ \ \ \\`\ @
687
+ \ \_\ \_\@
688
+ \/_/\/_/@
689
+ @
690
+ @@
691
+ ___ @
692
+ /\_ \ @
693
+ \//\ \ @
694
+ \ \ \ @
695
+ \_\ \_ @
696
+ /\____\@
697
+ \/____/@
698
+ @
699
+ @@
700
+ @
701
+ @
702
+ ___ ___ @
703
+ /' __` __`\ @
704
+ /\ \/\ \/\ \ @
705
+ \ \_\ \_\ \_\@
706
+ \/_/\/_/\/_/@
707
+ @
708
+ @@
709
+ @
710
+ @
711
+ ___ @
712
+ /' _ `\ @
713
+ /\ \/\ \ @
714
+ \ \_\ \_\@
715
+ \/_/\/_/@
716
+ @
717
+ @@
718
+ @
719
+ @
720
+ ___ @
721
+ / __`\ @
722
+ /\ \L\ \@
723
+ \ \____/@
724
+ \/___/ @
725
+ @
726
+ @@
727
+ @
728
+ @
729
+ _____ @
730
+ /\ '__`\ @
731
+ \ \ \L\ \@
732
+ \ \ ,__/@
733
+ \ \ \/ @
734
+ \ \_\ @
735
+ \/_/ @@
736
+ @
737
+ @
738
+ __ @
739
+ /'__`\ @
740
+ /\ \L\ \ @
741
+ \ \___, \ @
742
+ \/___/\ \ @
743
+ \ \_\@
744
+ \/_/@@
745
+ @
746
+ @
747
+ _ __ @
748
+ /\`'__\@
749
+ \ \ \/ @
750
+ \ \_\ @
751
+ \/_/ @
752
+ @
753
+ @@
754
+ @
755
+ @
756
+ ____ @
757
+ /',__\ @
758
+ /\__, `\@
759
+ \/\____/@
760
+ \/___/ @
761
+ @
762
+ @@
763
+ __ @
764
+ /\ \__ @
765
+ \ \ ,_\ @
766
+ \ \ \/ @
767
+ \ \ \_ @
768
+ \ \__\@
769
+ \/__/@
770
+ @
771
+ @@
772
+ @
773
+ @
774
+ __ __ @
775
+ /\ \/\ \ @
776
+ \ \ \_\ \@
777
+ \ \____/@
778
+ \/___/ @
779
+ @
780
+ @@
781
+ @
782
+ @
783
+ __ __ @
784
+ /\ \/\ \ @
785
+ \ \ \_/ |@
786
+ \ \___/ @
787
+ \/__/ @
788
+ @
789
+ @@
790
+ @
791
+ @
792
+ __ __ __ @
793
+ /\ \/\ \/\ \ @
794
+ \ \ \_/ \_/ \@
795
+ \ \___x___/'@
796
+ \/__//__/ @
797
+ @
798
+ @@
799
+ @
800
+ @
801
+ __ _ @
802
+ /\ \/'\ @
803
+ \/> </ @
804
+ /\_/\_\@
805
+ \//\/_/@
806
+ @
807
+ @@
808
+ @
809
+ @
810
+ __ __ @
811
+ /\ \/\ \ @
812
+ \ \ \_\ \ @
813
+ \/`____ \ @
814
+ `/___/> \@
815
+ /\___/@
816
+ \/__/ @@
817
+ @
818
+ @
819
+ ____ @
820
+ /\_ ,`\ @
821
+ \/_/ /_ @
822
+ /\____\@
823
+ \/____/@
824
+ @
825
+ @@
826
+ _ @
827
+ /' \@
828
+ \ ,/'@
829
+ <' \ @
830
+ < \ `\ @
831
+ \`\__\@
832
+ \/__/@
833
+ @
834
+ @@
835
+ __ @
836
+ /\ \ @
837
+ \ \ \ @
838
+ \ \ \ @
839
+ \ \ \ @
840
+ \ \ \ @
841
+ \ \ \ @
842
+ \ \_\@
843
+ \/_/@@
844
+ __ @
845
+ /\ `\ @
846
+ \`\ \ @
847
+ \ \ `>@
848
+ //' \ @
849
+ /\__/' @
850
+ \/_/ @
851
+ @
852
+ @@
853
+ _ _ @
854
+ /' \/' \ @
855
+ /\_/\__//$ @
856
+ \//\/__/ $ @
857
+ $ $@
858
+ @
859
+ @
860
+ @
861
+ @@
862
+ __ __ @
863
+ /\_\/\_\ @
864
+ \/\ _ \ @
865
+ \ \ \L\ \ @
866
+ \ \ __ \ @
867
+ \ \_\/\_\@
868
+ \/_/\/_/@
869
+ @
870
+ @@
871
+ __ __ @
872
+ /\_\/\_\ @
873
+ \/\ __ \ @
874
+ \ \ \/\ \ @
875
+ \ \ \_\ \ @
876
+ \ \_____\@
877
+ \/_____/@
878
+ @
879
+ @@
880
+ __ __ @
881
+ /\_\/\_\ @
882
+ \/\ \/\ \ @
883
+ \ \ \ \ \ @
884
+ \ \ \_\ \ @
885
+ \ \_____\@
886
+ \/_____/@
887
+ @
888
+ @@
889
+ __ __ @
890
+ /\_\/\_\ @
891
+ \/_/\/_/_ @
892
+ /'_` \ @
893
+ /\ \L\ \ @
894
+ \ `\__,_\@
895
+ `\/_,__/@
896
+ @
897
+ @@
898
+ __ __ @
899
+ /\_\/\_\ @
900
+ \/_/\/_/ @
901
+ /'_`\ @
902
+ /\ \L\ \@
903
+ \ `\___/@
904
+ `\/__/ @
905
+ @
906
+ @@
907
+ __ __ @
908
+ /\_\ \_\ @
909
+ \/_/\/_/_ @
910
+ /\ \/\ \ @
911
+ \ \ \_\ \@
912
+ \ `\___/@
913
+ `\/__/ @
914
+ @
915
+ @@
916
+ ______ @
917
+ /\ __ \ @
918
+ \ \ \/\ \ @
919
+ \ \ \<_<_ @
920
+ \ \ \ \ \@
921
+ \ \ \\_/@
922
+ \ \_\/ @
923
+ \/_/ @
924
+ @@