about summary refs log tree commit diff stats
path: root/sandbox/007-sandbox-delete.mu
Commit message (Collapse)AuthorAgeFilesLines
* 4261 - start using literals for 'true' and 'false'Kartik Agaram2018-06-171-3/+3
| | | | | | | | | They uncovered one bug: in edit/003-shortcuts.mu <scroll-down> was returning 0 for an address in one place where I thought it was returning 0 for a boolean. Now we've eliminated this bad interaction between tangling and punning literals.
* 4134 - 'input' = 'ingredient'Kartik K. Agaram2017-12-031-3/+3
|
* 3902 - drop redundant redraw of recipe side on F4Kartik K. Agaram2017-06-091-0/+1
| | | | | | This change is interesting because I only updated one test to gain confidence that F4 will never redraw the recipe side. (Most of the changes are to explicitly render-all before each scenario.)
* 3860 - stop buffering the screen in termboxKartik K. Agaram2017-05-181-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To achieve this we have to switch to a model of the screen in termbox that is closer to the underlying terminal. Before: a screen is a grid of characters writing out of bounds does nothing After: a screen is a scrolling raster of characters writing out of bounds wraps to next line and scrolls if necessary To move to the new model, it was essential that I migrate my fake screen at the same time to mimic it. This is why the first attempt (commit 3824) failed (commit 3858). This is also why this commit can't be split into smaller pieces. The fake screen now 'scrolls' by rotating screen lines from top to bottom. There's still no notion of a scrollback buffer. The newer model is richer; it permits repl-like apps that upstream termbox can't do easily. It also permits us to simply use `printf` or `cout` to write to the screen, and everything mostly works as you would expect. Exceptions: a) '\n' won't do what you expect. You need to explicitly print both '\n' and '\r'. b) backspace won't do what you expect. It only moves the cursor back, without erasing the previous character. It does not wrap. Both behaviors exactly mimic my existing terminal's emulation of vt100. The catch: it's easy to accidentally scroll in apps. Out-of-bounds prints didn't matter before, but they're bugs now. To help track them down, use the `save-top-idx`, `assert-no-scroll` pair of helpers. An important trick is to wrap the cursor before rather after printing a character. Otherwise we end up scrolling every time we print to the bottom-right character. This means that the cursor position can be invalid at the start of a print, and we need to handle that. In the process we also lose the ability to hide and show the screen. We have to show the prints happening. Seems apt for a "white-box" platform like Mu.
* 3854Kartik K. Agaram2017-05-131-0/+2
| | | | Revert commits 3824, 3850 and 3852. We'll redo them more carefully.
* 3824 - experiment: stop buffering in termboxKartik K. Agaram2017-04-161-2/+0
| | | | | | | | | | | | | | | | Now it's much more apparent why things are slow. You can see each repaint happening. Already I fixed one performance bug -- in clear-rest-of-screen. Since this subverts Mu's fake screen there may be bugs. Another salubrious side effect: I've finally internalized that switching to raw mode doesn't have to clear the screen. That was just an artifact of how termbox abstracted operations. Now I can conceive of using termbox to build a repl as well. (I was inspired to poke into termbox internals by http://viewsourcecode.org/snaptoken/kilo and https://github.com/antirez/linenoise)
* 3705 - switch to tested file-system primitivesKartik K. Agaram2016-12-111-16/+26
|
* 3656Kartik K. Agaram2016-11-101-1/+1
| | | | | | | | | | | | | | Periodic cleanup to replace 'reply' with 'return' everywhere in the repo. I use 'reply' for students to help reinforce the metaphor of function calls as being like messages through a pipe. But that causes 'reply' to get into my muscle memory when writing Mu code for myself, and I worry that that makes Mu seem unnecessarily alien to anybody reading on Github. Perhaps I should just give it up? I'll try using 'return' with my next student.
* 3552Kartik K. Agaram2016-10-221-1/+1
| | | | | | | | | | | | | | | | | | Stop requiring jump instructions to explicitly provide a ':label' type for jump targets. This has been a source of repeated confusion for my students: a) They'd add the ':label' to the label definition rather than the jump target (label use) b) They'd spend time thinking about whether the initial '+' prefix was part of the label name. In the process I cleaned up a couple of things: - the space of names is more cleanly partitioned into labels and non-labels (clarifying that '_' and '-' are non-label prefixes) - you can't use label names as regular variables anymore - you can infer the type of a label just from its name
* 3490Kartik K. Agaram2016-10-091-24/+24
| | | | | | | | | | | | | | | Redo commit 3457. Basically there were 3 unicode characters we changed back then: solid horizontal line: 9473 -> 9472 fuzzy horizontal line: 9480 -> 9548 fuzzy vertical line: 9482 -> 9550 The solid horizontal line has no issues, so we just redo it here. For the other two, we'll perform the substitution only when rendering html. That gives us the best of both worlds: the scenario screens render right in html, and alt-tabbing continues to be snappy when running the edit/ app.
* 3489Kartik K. Agaram2016-10-081-24/+24
| | | | | | | | | | Revert commit 3457, where I switched the unicode characters used in the edit/ app to something that doesn't render double-wide in html. It turns out that the new unicode characters made iTerm2 sluggish in alt-tabbing between windows. (Commit 3488 only fixed the screen-clearing issue.) I haven't reverted the html files. I'm going to redo commit 3457 next so the html files continue to render like they do now.
* 3457Kartik K. Agaram2016-10-061-24/+24
| | | | | Switch around some unicode characters in the edit/ app so that it renders more cleanly in html (with monospace fonts).
* 3445Kartik K. Agaram2016-10-061-16/+16
| | | | | | | Ugly that we didn't need 'screen' to provide a type in scenarios (because assume-screen expands to a definition of 'screen') but we did need a type for 'console'. Just never require types for special names in scenarios.
* 3429 - standardize Mu scenariosKartik K. Agaram2016-09-281-25/+25
| | | | | | | | | | | | | A long-standing problem has been that I couldn't spread code across 'run' blocks because they were separate scopes, so I've ended up making them effectively comments. Running code inside a 'run' block is identical in every way to simply running the code directly. The 'run' block is merely a visual aid to separate setup from the component under test. In the process I've also standardized all Mu scenarios to always run in a local scope, and only use (raw) numeric addresses for values they want to check later.
* 3396Kartik K. Agaram2016-09-171-29/+29
|
* 3391 - type abbreviations everywhereKartik K. Agaram2016-09-171-39/+39
| | | | | | | | | Well, almost. I can't use them in some places in C++ where I'm just creating a temporary reagent without passing it through transforms. Like in some unit tests. I can't use them in memory-should-contain. And there's one remaining bug: I can't use abbreviations in a couple of places in 075channel.mu.
* 3337 - first use of type abbreviations: textKartik K. Agaram2016-09-121-10/+10
| | | | | In the process I've uncover a couple of situations we don't support type abbreviations yet. They're next.
* 3054 - keep cursor stable on resize in sandbox/Kartik K. Agaram2016-06-121-5/+5
| | | | This ports commits 3052 and 3053 from the edit/ app.
* 2983 - migrate buttons over to sandbox/Kartik K. Agaram2016-05-191-127/+133
|
* 2953 - use pgup/pgdn to scroll through sandboxesKartik K. Agaram2016-05-111-6/+6
| | | | | | In the process I've also simplified the sandbox/ app. Since it's impossible for sandbox editors to span multiple pages, we can drop all scroll support altogether.
* 2864 - replace all address:shared with just addressKartik K. Agaram2016-04-241-33/+33
| | | | | | | Now that we no longer have non-shared addresses, we can just always track refcounts for all addresses. Phew!
* 2861 - 'maybe-convert' no longer returns addressKartik K. Agaram2016-04-231-1/+1
|
* 2854 - purge get-address from sandbox/ appKartik K. Agaram2016-04-221-15/+36
|
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-4/+4
| | | | | | | | | | | | I'm dropping all mention of 'recipe' terminology from the Readme. That way I hope to avoid further bike-shedding discussions while I very slowly decide on the right terminology with my students. I could be smarter in my error messages and use 'recipe' when code uses it and 'function' otherwise. But what about other words like ingredient? It would all add complexity that I'm not yet sure is worthwhile. But I do want separate experiences for veteran programmers reading about Mu on github and for people learning programming using Mu.
* 2608 - fix-up tests in sandbox/ appKartik K. Agaram2016-01-271-12/+4
| | | | | | | | | | When I first forked it from the edit/ app, I wasn't sure how to deal with changing the recipe side when the only way the program accesses it is with the untestable 'restore' hack. Now we introduce a little hook into event-loop and pass in any updated recipe side directly. In the process I've cleaned up several minor stylistic inconsistencies between edit/ and sandbox/ apps.
* 2594 - bugfixes: managing state when deletingKartik K. Agaram2016-01-231-2/+213
| | | | This required completely redesigning scrolling.
* 2590 - support scrolling through sandboxesKartik K. Agaram2016-01-221-1/+1
|
* 2585 - label sandboxes with a numberKartik K. Agaram2016-01-221-3/+3
| | | | | | | | | It also seems useful that the number maps to the name of the file the sandbox is saved in. However this mapping is currently a happy accident and not actually tested. I'm starting to switch gears and help make the editor useable with many many sandboxes. This is just the first step of several.
* 2576 - distinguish allocated addresses from othersKartik K. Agaram2016-01-191-9/+9
| | | | | | | | | | | | | | | | This is the one major refinement on the C programming model I'm planning to introduce in mu. Instead of Rust's menagerie of pointer types and static checking, I want to introduce just one new type, and use it to perform ref-counting at runtime. So far all we're doing is updating new's interface. The actual ref-counting implementation is next. One implication: I might sometimes need duplicate implementations for a recipe with allocated vs vanilla addresses of the same type. So far it seems I can get away with just always passing in allocated addresses; the situations when you want to pass an unallocated address to a recipe should be few and far between.
* support immutability checks in sandbox/ appKartik K. Agaram2015-12-151-1/+1
|
* 2428 - sandbox/ working againKartik K. Agaram2015-11-121-4/+2
|
* 2309Kartik K. Agaram2015-10-281-4/+4
|
* 2260 - start tracing by depth rather than labelKartik K. Agaram2015-10-061-1/+1
| | | | Now we can collect all traces, just modulating the depth.
* 2183 - environment + external editor using tmuxKartik K. Agaram2015-09-121-0/+108
Thanks Jack and Caleb Couch for the idea.
re>
e30a3ee9 ^
3fe5f929 ^

d1a1173d ^





56278294 ^
d1a1173d ^
51ec08da ^
d1a1173d ^


51ec08da ^

d1a1173d ^
d1a1173d ^






b3d031a9 ^
d1a1173d ^











82836b1f ^
d7692e55 ^



d1a1173d ^

54bd26be ^
82836b1f ^
d1a1173d ^




d7692e55 ^



d1a1173d ^

1687e0f4 ^
d1a1173d ^
91d784a6 ^


d1a1173d ^
1687e0f4 ^
d7692e55 ^



1687e0f4 ^
f6de1679 ^
1687e0f4 ^

d1a1173d ^
1687e0f4 ^












d1a1173d ^

76791a70 ^
d1a1173d ^



d7692e55 ^



d1a1173d ^

1687e0f4 ^
d1a1173d ^





b3d031a9 ^

d1a1173d ^



d7692e55 ^



d1a1173d ^

b3d031a9 ^

d7692e55 ^



d1a1173d ^


b3d031a9 ^

d7692e55 ^



a65efba9 ^
c377b481 ^
d1a1173d ^

18223912 ^
71a5fa56 ^


d4598be6 ^
b3d031a9 ^
d1a1173d ^


71a5fa56 ^

b3d031a9 ^
f6de1679 ^
d1a1173d ^
b108f821 ^
71a5fa56 ^

d1a1173d ^
71a5fa56 ^
1687e0f4 ^
f6de1679 ^
d1a1173d ^
b108f821 ^
18223912 ^
d1a1173d ^
b3d031a9 ^

185c022e ^
b3d031a9 ^

d1a1173d ^














185c022e ^
d1a1173d ^


14f6e996 ^

f7199d8e ^
fabab01b ^
d1a1173d ^

64cac629 ^
d1a1173d ^



18f25ff7 ^
76791a70 ^
64cac629 ^
d1a1173d ^
a090d85e ^
d1a1173d ^







64cac629 ^
b3d031a9 ^
d1a1173d ^







a090d85e ^
c256b5d0 ^
d1a1173d ^

1687e0f4 ^
d1a1173d ^






18f25ff7 ^
76791a70 ^
d1a1173d ^

a090d85e ^
d1a1173d ^





a090d85e ^
d1a1173d ^





















18f25ff7 ^
76791a70 ^
d1a1173d ^

a090d85e ^
d1a1173d ^








d7692e55 ^



d1a1173d ^
b3d031a9 ^


3964c22d ^
e50e61b2 ^



1687e0f4 ^
f6de1679 ^
e50e61b2 ^
b108f821 ^
d1a1173d ^

70f95d4f ^
b68d28c1 ^
70f95d4f ^








d1a1173d ^




f6de1679 ^

d1a1173d ^
f6de1679 ^
cc8f5270 ^








d1a1173d ^
f6de1679 ^
1687e0f4 ^
d1a1173d ^


b3d031a9 ^
d1a1173d ^






cc8f5270 ^
d1a1173d ^









3fe5f929 ^

b68d28c1 ^
d1a1173d ^










206bc1c4 ^
d1a1173d ^

2841f7b8 ^
e2f72291 ^
d1a1173d ^




1687e0f4 ^
d1a1173d ^

0280ea6e ^














3fe5f929 ^
0280ea6e ^




3fe5f929 ^
0280ea6e ^
3fe5f929 ^







2df81152 ^
3fe5f929 ^
2df81152 ^

3fe5f929 ^

2df81152 ^
3fe5f929 ^
2df81152 ^

3fe5f929 ^



0280ea6e ^

0280ea6e ^
3fe5f929 ^
0280ea6e ^

3fe5f929 ^



0280ea6e ^
3fe5f929 ^

0280ea6e ^

bd8ca128 ^
d1a1173d ^








e2325c56 ^
d1a1173d ^





















a5bf7552 ^

d1a1173d ^
83d3b482 ^
b3d031a9 ^

04681ff7 ^


d1a1173d ^





b3d031a9 ^
d1a1173d ^




b3d031a9 ^
d1a1173d ^
b3d031a9 ^

d1a1173d ^


















89413ffe ^
d1a1173d ^









c78ee48d ^
d1a1173d ^










916c2390 ^
d1a1173d ^








b3d031a9 ^
d7692e55 ^



d1a1173d ^

62c45b6f ^


84a22ae0 ^
62c45b6f ^






d1a1173d ^

d7692e55 ^



d1a1173d ^








b3d031a9 ^

b68d28c1 ^
d1a1173d ^




















54bd26be ^
f0919e87 ^



d1a1173d ^

























76791a70 ^
d1a1173d ^








18223912 ^
d1a1173d ^


84a22ae0 ^
1687e0f4 ^
d1a1173d ^


18223912 ^
d1a1173d ^














b3d031a9 ^

d1a1173d ^
b3d031a9 ^

d1a1173d ^
b3d031a9 ^

d1a1173d ^







b3d031a9 ^

d1a1173d ^
b3d031a9 ^

d1a1173d ^
b3d031a9 ^

d1a1173d ^
b3d031a9 ^

d1a1173d ^
b3d031a9 ^

d1a1173d ^




18223912 ^
d1a1173d ^
b3d031a9 ^
51ec08da ^
d1a1173d ^








d7692e55 ^



d1a1173d ^



















6859dae7 ^

d1a1173d ^
6859dae7 ^

d1a1173d ^

















f6bdde50 ^
d1a1173d ^
f6bdde50 ^



d1a1173d ^
f6bdde50 ^
d1a1173d ^



cb137db7 ^
d1a1173d ^









1687e0f4 ^
d1a1173d ^

51ec08da ^
523689c1 ^

51ec08da ^

523689c1 ^
d1a1173d ^










185c022e ^
1687e0f4 ^
d1a1173d ^







51ec08da ^
d1a1173d ^
















3c8086ec ^
d1a1173d ^
3c8086ec ^

d1a1173d ^

3c8086ec ^
d1a1173d ^




16ac6f0b ^
b3d031a9 ^
40bd7bc1 ^
b3d031a9 ^
d1a1173d ^
b3d031a9 ^
d1a1173d ^






1687e0f4 ^
d1a1173d ^
1687e0f4 ^

d1a1173d ^
b3d031a9 ^


51ec08da ^
84a22ae0 ^
51ec08da ^
91daf58b ^
916c2390 ^
89413ffe ^
916c2390 ^
d1a1173d ^
3630c8a9 ^
8061eb4c ^

cc358f9a ^
d1a1173d ^
cc358f9a ^
8e24016a ^

cc358f9a ^






















51ec08da ^


cc358f9a ^


d1a1173d ^
cc358f9a ^


fffd0c05 ^

cc358f9a ^
d1a1173d ^
cc358f9a ^
fffd0c05 ^

cc358f9a ^
085ea1e9 ^
cc358f9a ^









3788a834 ^

cc358f9a ^








































40bd7bc1 ^
cc358f9a ^




085ea1e9 ^
085ea1e9 ^
cc358f9a ^





18223912 ^
085ea1e9 ^
cc358f9a ^
d1a1173d ^
cc358f9a ^















d1a1173d ^





























1134e3ab ^
d1a1173d ^





185c022e ^
d1a1173d ^






1134e3ab ^
d1a1173d ^






70ec0b26 ^
d1a1173d ^




51ec08da ^
d1a1173d ^

e1a8a761 ^


d1a1173d ^
185c022e ^
d1a1173d ^



18223912 ^
d1a1173d ^
3e31022b ^


d1a1173d ^
70ec0b26 ^
3e31022b ^
18223912 ^
d1a1173d ^
5ed31240 ^
88b5a201 ^

5ed31240 ^


88b5a201 ^
5ed31240 ^
88b5a201 ^
5ed31240 ^













88b5a201 ^
5ed31240 ^

















88b5a201 ^
5ed31240 ^


88b5a201 ^


5ed31240 ^
88b5a201 ^


fe999acb ^



























1e452164 ^
939022cf ^



619709a7 ^
939022cf ^



916c2390 ^

939022cf ^































185c022e ^
84a22ae0 ^
d1a1173d ^





79deadc7 ^


d1a1173d ^




2278fa73 ^
b3d031a9 ^
d1a1173d ^


















e7f65ba6 ^
d1a1173d ^


2278fa73 ^
b3d031a9 ^
d1a1173d ^





45ee4364 ^



d1a1173d ^








e7f65ba6 ^
d1a1173d ^

d1a1173d ^
2278fa73 ^
b3d031a9 ^
d1a1173d ^





e7f65ba6 ^
d1a1173d ^





d7692e55 ^



d1a1173d ^




d7692e55 ^




0cf4b058 ^
d1a1173d ^

b3d031a9 ^
d1a1173d ^






51ec08da ^

d1a1173d ^







0cf4b058 ^

d1a1173d ^



d7692e55 ^




d1a1173d ^





b3d031a9 ^
1687e0f4 ^

d1a1173d ^
d1a1173d ^
f8559795 ^
d1a1173d ^
f8559795 ^
1687e0f4 ^


d1a1173d ^

b3d031a9 ^
1687e0f4 ^
d1a1173d ^
f8559795 ^
1687e0f4 ^


d1a1173d ^

b3d031a9 ^
d1a1173d ^
f8559795 ^
b3d031a9 ^
1687e0f4 ^


d1a1173d ^










76791a70 ^
d1a1173d ^
76791a70 ^
d1a1173d ^
442e731f ^
d7692e55 ^



442e731f ^

d1a1173d ^

bd0da644 ^
d1a1173d ^

2f04fb98 ^
bd0da644 ^
b3d031a9 ^


deb16c1d ^

b3d031a9 ^
deb16c1d ^
916c2390 ^
b3d031a9 ^

deb16c1d ^
b3d031a9 ^
deb16c1d ^



b3d031a9 ^
deb16c1d ^

d1a1173d ^



6ad7f8b8 ^
d1a1173d ^







599419ce ^




d1a1173d ^

9c1f5c2a ^

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
33
34
35
36
37
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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
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
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
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
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
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
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
651
652
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
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
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
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
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
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550