summary refs log tree commit diff stats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Refactor json macro (#12391)Arne Döring2019-10-171-4/+4
| | | | | | | | * closes #12316 * make tjsonmacro work at js target * closes #12289 * closes #11988 * also fixed gdb related stuff
* different fix for #12279 [backport]Araq2019-09-301-1/+0
|
* fixes #12279 [backport]Araq2019-09-301-0/+1
|
* fix nimgrep color on posix #7591 (#12288)Andrey Makarov2019-09-281-4/+12
|
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-275-11/+11
|
* Add build support for Linux/hppa (#12271)John Paul Adrian Glaubitz2019-09-261-0/+2
| | | | | | * build.sh: Enable CPU detection for hppa * compiler: Add hppa as target architecture on Linux * lib/system: Add platform support for hppa
* last stdlib cleanupsAraq2019-09-211-0/+1
|
* rename cast opcodes, fix for 32bit cast, fix python pretty printer (#12207)Arne Döring2019-09-181-4/+4
|
* Fix to int to biggest int (#12066)Arne Döring2019-08-271-8/+8
| | | | | * fix to(Biggest)Int * kill toFloat magics as well
* Add build support for FreeBSD PowerPC64lenoil982019-08-231-0/+5
|
* Add build support for FreeBSD PowerPC64lenoil982019-08-231-1/+8
|
* fixes #11770Araq2019-08-161-8/+16
|
* added destructors.rst spec to the build documentationAraq2019-08-161-0/+1
|
* Add build support for Linux/ia64 (#11880) [feature]John Paul Adrian Glaubitz2019-08-041-0/+2
| | | | | * compiler: Add ia64 as target architecture on Linux * build.sh: Enable CPU detection for ia64
* nimgrep: introduce the --rex optionAndreas Rumpf2019-07-271-5/+12
|
* nimgrep: fixes the -w optionAndreas Rumpf2019-07-271-1/+1
|
* [feature] Added std/monotimesOscar Nihlgård2019-07-121-0/+1
|
* minor style changesAraq2019-07-104-12/+12
|
* dynlib: use posix module (#11623)Jacek Sieka2019-07-081-1/+4
|
* fixes a finish.exe regressionAndreas Rumpf2019-07-061-1/+2
|
* VCC discovery using vswhere (#6540) (#11559)Toshiyuki-Tega2019-06-262-2/+53
|
* [bugfix] fix #11543, add std/sums to theindex.htmlnarimiran2019-06-201-0/+1
|
* HCR: better documentationAraq2019-06-181-0/+1
|
* Fixes #11431 (#11451) [bugfix]Juan Carlos2019-06-101-1/+1
|
* niminst: get rid of LINKER / LD (#11379)alaviss2019-06-032-9/+3
| | | | | | * niminst: get rid of LINKER / LD They don't seem to be used anywhere, and clashes with *nix `$LD`
* Add build support for Linux/alpha (#11386)John Paul Adrian Glaubitz2019-06-031-0/+2
| | | | | | * compiler: Add alpha as target architecture on Linux * build.sh: Enable CPU detection for alpha
* niminst/makefile: add windows support (#11380)alaviss2019-06-021-2/+12
|
* Add build support for Linux/m68k (#11366)John Paul Adrian Glaubitz2019-06-021-0/+2
| | | | | | * compiler: Add m68k as target architecture on Linux * build.sh: Enable CPU detection for m68k
* Add build support for Linux/sparc64 (#11365)John Paul Adrian Glaubitz2019-06-011-2/+6
| | | | | | | | | | | * compiler: Add sparc64 as target architecture on Linux * build.sh: Use getconf for bitness detection on Linux/sparc The isainfo utility is specific to Solaris and not available on Linux/sparc. While getconf exists on Solaris as well, it does not always seem to match the bitness reported by isainfo on Solaris and isainfo should therefore be preferred on Solaris.
* nimgrep: be less annoyingAraq2019-05-241-2/+1
|
* better default for nimgrepAraq2019-05-221-2/+4
|
* $ command in gdb now works (#10956)Arne Döring2019-04-151-10/+37
|
* update unicode.nim (#10921)Miran2019-03-312-0/+33044
| | | | | | | | | | * update unicode.nim * create a script to create the needed unicode data * make unicode.nim compatible with Unicode v12.0.0 * slightly improve unicode.nim documentation (fixes #4795) * more documentation
* manual.rst: move experimental features to manual_experimentalAndreas Rumpf2019-03-271-0/+1
|
* add NimFrameFilter to nim-gdb.py (#10873)Arne Döring2019-03-261-0/+16
|
* create docs for the extracted modulesnarimiran2019-03-131-0/+4
|
* Improved posix module, added new posix_utils module (#10723)Federico Ceratto2019-02-281-0/+1
|
* Initial version of the hot-code reloading support for native targets (#10729)zah2019-02-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * squashed work by Zahary * squashing a ton of useful history... otherwise rebasing on top of upstream Nim after commit 82c009a2cbc5d07ab9a847f1c58228a20efaf219 would be impossible. * Code review changes; Working test suite (without code reloading enabled) * - documentation - implemented the HCR test - almost works... - fix the issue on Unix where for executable targets the source file for the main module of a project in nimcache was being overwritten with the binary itself (and thus the actual source code was lost) - fixing embedded paths to shared objects on unix (the "lib" prefix was being prepended to the entire path instead of just the filename) - other fixes - removing unnecessary includes since that file is already included in chcks.nim which is in turn included in system.nim (and previously was getting imported in chcks.nim but then system.nim improts something... and that breaks HCR (perhaps it could be fixed but it would be nice not to import anything in system)) * fix for clang & C++ - explicitly casting a function pointer to void* more stable mangling of parameter names when HCR is on the length of the static arrays in the DatInit functions is now part of the name of the variables, so when they get resized they get also recreated more stable mangling for inline functions - no longer depends on the module which first used them work on the new complicated HCR test - turned surprisingly complex - WIP test now successfully passes even when re-running `koch test` (previously when the nimcache wasn't cold that lead to errors) better documentation calling setStackBottomWith for PreMain passes over the HcrInit/DatInit/Init calls of all modules are now in the proper order (first all of one type, then all of the next). Also typeinfo globals are registered (created) in a single pass before the DatInit pass (because of the way generic instantiations are handled) Fix the test suite execution on macOs fix for being able to query the program arguments when using HCR on posix! other fixes * Bugfix: Fix a compilation error in C++ mode when a function pointer is converted to a raw pointer * basic documentation for the new hot code reloading semantics * Add change log entry * Don't re-execute the top-level statements while reloading JS code * fix a number of tests broken in a recent bugfix * Review changes * Added {.executeOnReload.} pragma that indicates top-level statements that should be executed on each reload. To make this work, I've modified the way the `if (hcr_init_) {...}` guards are produced in the init code. This still needs more work as the new guards seem to be inserted within the previously generated guards. This change also removes the need for `lastRegistedGlobal` in nimhcr. * Implemented the `signatureHash` magic and the `hasModuleChanged` API depending on it (the actual logic is not imlemented yet). * Add the "hcr" prefix to all HCR-related symbols in the system module. Added a new `hotcodereloading` module exporting the high-level API to the user. Besides being more hygienic, this was also required in order to make it possible to use macros in the high-level API. Without the split, `system` would have to import `macros`, which was going to produce the well-known init problems. * Attempted to solve the "GC markers problem". Crashes were expected with the previous code, because the GC markers were compiled as normal procs are registered in the GC. When their module is unloaded, dangling pointers will remain in the GC tables. To solve this issue, I don't register any GC markers when HCR is on, but I add them to the HCR globals metadata and I use a single marker registed in nimhcr during the initialization of the system module that will be responsible for marking all globals. * fix a compilation error * - implemented the hasModuleChanged functionality - tuples can be returned and broken into different vars in global scope - added comments for the closnig scopes of the if statements in the init proc - the new executeOnReload pragma works now! - other fixes * finally! fixing this hack in a proper way - declaring the destructor out of line (out of the class body) - we no longer need to forward-declare popCurrentExceptionEx * Force full module parsing This is a temporary hack that breaks some tests. I'll investigate later how these can be fixed. * tuples are now properly handled when global! * these comments mess up the codegen in debug mode when $n is not actually a new line (or something like that) - these labels are intended only for GOTO labels anyway... * "solved" the issue with the .pdb locks on windows when a binary is being debugged and hot code reloading is used at the same time * fixes after rebasing... * small fixes for the test * better handling of globals! no more compiler crashes for locals with the global pragma, also simplified code around loops in global scope which have local vars (actually globals) * we can now use the global pragma even for ... globals! * the right output * lets try those boehm GC tests * after the test is ran it will be at its starting state - no git modifications * clarification in the docs * removed unnecessary line directives for forward declarations of functions - they were causing trouble with hot code reloading when no semantic change propagates to the main module but a line directive got changed and thus the main module had to be recompiled since the .c code had changed * fixed bug! was inserting duplicate keys into the table and later was removing only 1 copy of all the duplicates (after a few reloads) * no longer breaking into DatInit code when not supposed to * fixes after rebasing * yet more fixes after rebasing * Update jssys.nim * Rework the HCR path-handling logic After reviewing the code more carefully, I've noticed that the old logic will be broken when the user overrides the '--out:f' compiler option. Besides fixing this issues, I took the opportunity to implement the missing '--outdir:d' option. Other changes: * ./koch test won't overwrite any HCR and RTL builds located in nim/lib * HCR and RTL are compiled with --threads:on by default * Clean up the globals registration logic * Handle non-flattened top-level stmtlists in JS as well * The HCR is not supported with the Boehm GC yet Also fixes some typos and the expected output of the HCR integration test * The GC marker procs are now properly used as trampolines * Fix the HCR integration test in release builds * Fix ./koch tools * this forward declaration doesn't seem to be necessary, and in fact breaks HCR because a 2nd function pointer is emitted for this externed/rtl func * the forward declaration I removed in the last commit was actually necessary * Attempt to make all tests green * Fix tgenscript * BAT file for running the HCR integration test on Windows [skip ci] * Fix the docgen tests * A final fix for Travis (hopefully)
* add gdb commands: koch, nim, nimble (#10741)Arne Döring2019-02-261-0/+54
| | | | | * add gdb commands: koch, nim, nimble * make commands path independent
* better docs: osproc (#10708)Miran2019-02-191-1/+1
| | | | | * better docs: osproc * fix a typo in the docs, deprecate "demon"
* Add non-interactive installer flag (-y) to finish.nim (#10603) [backport]Matt Haggard2019-02-081-4/+21
|
* fixes #10586Araq2019-02-071-0/+1
|
* Enable Travis folding in winrelease (#10528)genotrance2019-02-021-5/+10
|
* DOM API: make compatible with Karax's requirements (#10517)Andreas Rumpf2019-02-022-351/+38
| | | | | * DOM API: make compatible with Karax's requirements * make tools\dochack.nim compile again
* Improve Travis CI folding (#10473)Federico Ceratto2019-01-281-2/+7
|
* Print error summary in Travis CI (#10474)Federico Ceratto2019-01-281-0/+24
|
* Fix issue #10358 (#10383)Tomohiro2019-01-233-11/+22
| | | | | | * Fix bug: vccexe finds oldest VCC * echo path to vcvarsall.bat as hint when failed to execute cl.exe
* Add packaging guide #5182 (#10384)Federico Ceratto2019-01-231-0/+1
|
* Remove deprecated modules (asyncio, sockets, ftpclient) (#10401)Miran2019-01-221-2/+0
|
* Enable log folding in Travis CI (#10414)Federico Ceratto2019-01-221-0/+9
| | | Prevent log truncation in browsers
bb52131'>^
6baca5869 ^
38cb13cde ^

36818817b ^




273d6ffc1 ^
36818817b ^



3ea644690 ^
36818817b ^



3ea644690 ^
38cb13cde ^
6baca5869 ^

38cb13cde ^
36818817b ^






3ea644690 ^
b6252af5c ^
36818817b ^


3ea644690 ^
38cb13cde ^
6baca5869 ^
38cb13cde ^
6baca5869 ^

273d6ffc1 ^
38cb13cde ^

36818817b ^
3c9d655b8 ^















6baca5869 ^
3c9d655b8 ^

36818817b ^
1e6aef62b ^

36818817b ^


3ea644690 ^
1e6aef62b ^
36818817b ^


3ea644690 ^
6baca5869 ^
36818817b ^






3ea644690 ^
36818817b ^



3ea644690 ^
6baca5869 ^
36818817b ^






3ea644690 ^
36818817b ^



3ea644690 ^
6baca5869 ^
36818817b ^






3ea644690 ^
36818817b ^



3ea644690 ^
6baca5869 ^
36818817b ^
273d6ffc1 ^
38cb13cde ^

36818817b ^





3ea644690 ^
36818817b ^



3ea644690 ^
6baca5869 ^
36818817b ^




273d6ffc1 ^
36818817b ^



3ea644690 ^
36818817b ^



3ea644690 ^
36818817b ^
273d6ffc1 ^

36818817b ^


273d6ffc1 ^
36818817b ^


3ea644690 ^
36818817b ^



3ea644690 ^
36818817b ^

20cc7c17b ^
38cb13cde ^









6baca5869 ^

38cb13cde ^

36818817b ^



273d6ffc1 ^
36818817b ^


3ea644690 ^
36818817b ^



3ea644690 ^
36818817b ^





38cb13cde ^
0e06a72c6 ^

36818817b ^


3ea644690 ^
36818817b ^



3ea644690 ^
0e06a72c6 ^
6baca5869 ^
0e06a72c6 ^
























36818817b ^




20cc7c17b ^
36818817b ^


3ea644690 ^
36818817b ^



3ea644690 ^
36818817b ^





38cb13cde ^


273d6ffc1 ^
6baca5869 ^
6652ae974 ^
38cb13cde ^













273d6ffc1 ^
38cb13cde ^





273d6ffc1 ^
38cb13cde ^











6baca5869 ^
38cb13cde ^



20cc7c17b ^
38cb13cde ^











6baca5869 ^

38cb13cde ^
6baca5869 ^
38cb13cde ^
36818817b ^











3ea644690 ^
273d6ffc1 ^
36818817b ^









3ea644690 ^
36818817b ^











5b28d0820 ^
36818817b ^





3ea644690 ^
36818817b ^



3ea644690 ^
6baca5869 ^
36818817b ^
38cb13cde ^

36818817b ^





3ea644690 ^
36818817b ^





3ea644690 ^
36818817b ^

273d6ffc1 ^
36818817b ^




3ea644690 ^
36818817b ^
273d6ffc1 ^
36818817b ^









3ea644690 ^
36818817b ^















3ea644690 ^
36818817b ^




3ea644690 ^
36818817b ^







3ea644690 ^
36818817b ^




3ea644690 ^
36818817b ^







3ea644690 ^
36818817b ^

273d6ffc1 ^
36818817b ^


273d6ffc1 ^
36818817b ^





3ea644690 ^
36818817b ^
273d6ffc1 ^


36818817b ^









3ea644690 ^
36818817b ^



3ea644690 ^
36818817b ^







38cb13cde ^


36818817b ^





38cb13cde ^


36818817b ^





3ea644690 ^
36818817b ^



3ea644690 ^
36818817b ^

38cb13cde ^










6baca5869 ^
38cb13cde ^













6baca5869 ^
38cb13cde ^




















d75bdc31b ^













6baca5869 ^
d75bdc31b ^










6baca5869 ^
d75bdc31b ^













6baca5869 ^


d75bdc31b ^















6baca5869 ^
d75bdc31b ^

















6baca5869 ^
d75bdc31b ^
20cc7c17b ^
49465c470 ^









6baca5869 ^
49465c470 ^
d75bdc31b ^


49465c470 ^
d75bdc31b ^








6baca5869 ^
d75bdc31b ^
36818817b ^


38cb13cde ^









6baca5869 ^
38cb13cde ^







36818817b ^
273d6ffc1 ^

998f1fa67 ^

38cb13cde ^




36818817b ^
49465c470 ^


ce3178943 ^
49465c470 ^




3c70a2e91 ^
6baca5869 ^
3c70a2e91 ^


49465c470 ^

36818817b ^


38cb13cde ^



36818817b ^
38cb13cde ^




6baca5869 ^
38cb13cde ^



36818817b ^



273d6ffc1 ^
38cb13cde ^











6baca5869 ^
ac6ea4b76 ^
6baca5869 ^
38cb13cde ^


66ad9e398 ^












6baca5869 ^
66ad9e398 ^

6baca5869 ^
66ad9e398 ^


38cb13cde ^











6baca5869 ^
38cb13cde ^

6baca5869 ^
273d6ffc1 ^
38cb13cde ^






36818817b ^
7275a035b ^













6baca5869 ^
7275a035b ^



6baca5869 ^
7275a035b ^




49465c470 ^



















6baca5869 ^
49465c470 ^



6baca5869 ^

20cc7c17b ^
49465c470 ^


6baca5869 ^

20cc7c17b ^
49465c470 ^

6baca5869 ^
20cc7c17b ^

6baca5869 ^
20cc7c17b ^
6baca5869 ^
20cc7c17b ^
6baca5869 ^
20cc7c17b ^


49465c470 ^

6baca5869 ^
20cc7c17b ^

6baca5869 ^
20cc7c17b ^
6baca5869 ^
20cc7c17b ^
6baca5869 ^
20cc7c17b ^



49465c470 ^





66ad9e398 ^













6baca5869 ^
66ad9e398 ^


7275a035b ^

















273d6ffc1 ^
8c8e975bc ^











6baca5869 ^
8c8e975bc ^
6baca5869 ^
8c8e975bc ^



36818817b ^
66ad9e398 ^
20cc7c17b ^
66ad9e398 ^











6baca5869 ^
66ad9e398 ^


a69129969 ^
66ad9e398 ^
137c83661 ^
66ad9e398 ^












6baca5869 ^
66ad9e398 ^









137c83661 ^

66ad9e398 ^
998f1fa67 ^










6baca5869 ^
998f1fa67 ^











6baca5869 ^
998f1fa67 ^
36818817b ^


38cb13cde ^











6baca5869 ^
38cb13cde ^


6baca5869 ^
38cb13cde ^


6baca5869 ^
38cb13cde ^
6baca5869 ^

38cb13cde ^


6baca5869 ^

38cb13cde ^

6fe79fd15 ^



38cb13cde ^











36818817b ^
38cb13cde ^




6baca5869 ^


38cb13cde ^



36818817b ^
273d6ffc1 ^
998f1fa67 ^












6baca5869 ^
998f1fa67 ^


36818817b ^


273d6ffc1 ^
38cb13cde ^










6baca5869 ^
38cb13cde ^


36818817b ^
66ad9e398 ^













6baca5869 ^
66ad9e398 ^

36818817b ^



38cb13cde ^


273d6ffc1 ^
38cb13cde ^


36818817b ^
38cb13cde ^






6baca5869 ^
38cb13cde ^





fce697b04 ^
38cb13cde ^
36818817b ^



273d6ffc1 ^
38cb13cde ^
36818817b ^




273d6ffc1 ^
36818817b ^

273d6ffc1 ^
36818817b ^

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