-
Notifications
You must be signed in to change notification settings - Fork 7
/
classic_demo.html
6244 lines (6187 loc) · 447 KB
/
classic_demo.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Demo of running the Classic Clawpack Fortran code and producing an animation of results — Clawpack 5.6.1 documentation</title>
<link rel="stylesheet" href="_static/flasky.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/base.css" type="text/css" />
<link rel="stylesheet" href="_static/layout.css" type="text/css" />
<link rel="stylesheet" href="_static/banner.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '5.6.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link rel="shortcut icon" href="_static/clawicon.ico"/>
<link rel="author" title="About these documents" href="about.html" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
</head>
<body role="document">
<div id="main-wrapper" class="sphinx">
<div id="header-wrapper">
<section id="header">
<!-- <h1><a href="http://clawpack.org/">Clawpack</a></h1> -->
<h1><a href="http://clawpack.org/">Clawpack-5</a></h1>
<nav>
<ul>
<li>
<a href="contents.html">Docs</a>
</li>
<li>
<a href="installing.html">Install</a>
</li>
<li>
<a class="" href="gallery/index.html">Gallery</a>
</li>
<li>
<a class="" href="community.html">Community</a>
</li>
<li>
<a class="active" href="http://github.com/clawpack">Source</a>
</li>
<li>
<a class="" href="developers.html">Develop</a>
</li>
</ul>
</nav>
</section>
<div class="decoration"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="contents.html">Clawpack 5.6.1 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<style>
/* CSS for nbsphinx extension */
/* remove conflicting styling from Sphinx themes */
div.nbinput,
div.nbinput div.prompt,
div.nbinput div.input_area,
div.nbinput div[class*=highlight],
div.nbinput div[class*=highlight] pre,
div.nboutput,
div.nbinput div.prompt,
div.nbinput div.output_area,
div.nboutput div[class*=highlight],
div.nboutput div[class*=highlight] pre {
background: none;
border: none;
padding: 0 0;
margin: 0;
box-shadow: none;
}
/* avoid gaps between output lines */
div.nboutput div[class*=highlight] pre {
line-height: normal;
}
/* input/output containers */
div.nbinput,
div.nboutput {
display: -webkit-flex;
display: flex;
align-items: flex-start;
margin: 0;
width: 100%;
}
@media (max-width: 540px) {
div.nbinput,
div.nboutput {
flex-direction: column;
}
}
/* input container */
div.nbinput {
padding-top: 5px;
}
/* last container */
div.nblast {
padding-bottom: 5px;
}
/* input prompt */
div.nbinput div.prompt pre {
color: #303F9F;
}
/* output prompt */
div.nboutput div.prompt pre {
color: #D84315;
}
/* all prompts */
div.nbinput div.prompt,
div.nboutput div.prompt {
min-width: 9ex;
padding-top: 0.4em;
padding-right: 0.4em;
text-align: right;
flex: 0;
}
@media (max-width: 540px) {
div.nbinput div.prompt,
div.nboutput div.prompt {
text-align: left;
padding: 0.4em;
}
div.nboutput div.prompt.empty {
padding: 0;
}
}
/* disable scrollbars on prompts */
div.nbinput div.prompt pre,
div.nboutput div.prompt pre {
overflow: hidden;
}
/* input/output area */
div.nbinput div.input_area,
div.nboutput div.output_area {
padding: 0.4em;
-webkit-flex: 1;
flex: 1;
overflow: auto;
}
@media (max-width: 540px) {
div.nbinput div.input_area,
div.nboutput div.output_area {
width: 100%;
}
}
/* input area */
div.nbinput div.input_area {
border: 1px solid #cfcfcf;
border-radius: 2px;
background: #f7f7f7;
}
/* override MathJax center alignment in output cells */
div.nboutput div[class*=MathJax] {
text-align: left !important;
}
/* override sphinx.ext.pngmath center alignment in output cells */
div.nboutput div.math p {
text-align: left;
}
/* standard error */
div.nboutput div.output_area.stderr {
background: #fdd;
}
/* ANSI colors */
.ansi-black-fg { color: #3E424D; }
.ansi-black-bg { background-color: #3E424D; }
.ansi-black-intense-fg { color: #282C36; }
.ansi-black-intense-bg { background-color: #282C36; }
.ansi-red-fg { color: #E75C58; }
.ansi-red-bg { background-color: #E75C58; }
.ansi-red-intense-fg { color: #B22B31; }
.ansi-red-intense-bg { background-color: #B22B31; }
.ansi-green-fg { color: #00A250; }
.ansi-green-bg { background-color: #00A250; }
.ansi-green-intense-fg { color: #007427; }
.ansi-green-intense-bg { background-color: #007427; }
.ansi-yellow-fg { color: #DDB62B; }
.ansi-yellow-bg { background-color: #DDB62B; }
.ansi-yellow-intense-fg { color: #B27D12; }
.ansi-yellow-intense-bg { background-color: #B27D12; }
.ansi-blue-fg { color: #208FFB; }
.ansi-blue-bg { background-color: #208FFB; }
.ansi-blue-intense-fg { color: #0065CA; }
.ansi-blue-intense-bg { background-color: #0065CA; }
.ansi-magenta-fg { color: #D160C4; }
.ansi-magenta-bg { background-color: #D160C4; }
.ansi-magenta-intense-fg { color: #A03196; }
.ansi-magenta-intense-bg { background-color: #A03196; }
.ansi-cyan-fg { color: #60C6C8; }
.ansi-cyan-bg { background-color: #60C6C8; }
.ansi-cyan-intense-fg { color: #258F8F; }
.ansi-cyan-intense-bg { background-color: #258F8F; }
.ansi-white-fg { color: #C5C1B4; }
.ansi-white-bg { background-color: #C5C1B4; }
.ansi-white-intense-fg { color: #A1A6B2; }
.ansi-white-intense-bg { background-color: #A1A6B2; }
.ansi-bold { font-weight: bold; }
</style>
<div class="section" id="Demo-of-running-the-Classic-Clawpack-Fortran-code-and-producing-an-animation-of-results">
<h1>Demo of running the Classic Clawpack Fortran code and producing an animation of results<a class="headerlink" href="#Demo-of-running-the-Classic-Clawpack-Fortran-code-and-producing-an-animation-of-results" title="Permalink to this headline">¶</a></h1>
<p>If you’re viewing this notebook online and wish to run it, you can
download it <a class="reference external" href="https://github.com/clawpack/doc/blob/master/doc/classic_demo.ipynb">from
here</a>.</p>
<p>The environment variable CLAW should be set before starting the
notebook:</p>
<div class="nbinput docutils container">
<div class="prompt highlight-none"><div class="highlight"><pre>
<span></span>In [1]:
</pre></div>
</div>
<div class="input_area highlight-ipython2"><div class="highlight"><pre>
<span></span><span class="kn">import</span> <span class="nn">os</span>
<span class="n">CLAW</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">environ</span><span class="p">[</span><span class="s1">'CLAW'</span><span class="p">]</span>
<span class="k">print</span> <span class="n">CLAW</span>
</pre></div>
</div>
</div>
<div class="nboutput nblast docutils container">
<div class="prompt empty docutils container">
</div>
<div class="output_area docutils container">
<div class="highlight"><pre>
/Users/rjl/git/clawpack
</pre></div></div>
</div>
<p>Move to the desired directory:</p>
<div class="nbinput docutils container">
<div class="prompt highlight-none"><div class="highlight"><pre>
<span></span>In [2]:
</pre></div>
</div>
<div class="input_area highlight-ipython2"><div class="highlight"><pre>
<span></span><span class="n">os</span><span class="o">.</span><span class="n">chdir</span><span class="p">(</span><span class="n">CLAW</span> <span class="o">+</span> <span class="s1">'/classic/examples/acoustics_1d_example1/'</span><span class="p">)</span>
<span class="k">print</span> <span class="n">os</span><span class="o">.</span><span class="n">getcwd</span><span class="p">()</span>
</pre></div>
</div>
</div>
<div class="nboutput nblast docutils container">
<div class="prompt empty docutils container">
</div>
<div class="output_area docutils container">
<div class="highlight"><pre>
/Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1
</pre></div></div>
</div>
<div class="nbinput docutils container">
<div class="prompt highlight-none"><div class="highlight"><pre>
<span></span>In [3]:
</pre></div>
</div>
<div class="input_area highlight-ipython2"><div class="highlight"><pre>
<span></span><span class="o">%%</span><span class="k">system</span>
make output
</pre></div>
</div>
</div>
<div class="nboutput nblast docutils container">
<div class="prompt highlight-none"><div class="highlight"><pre>
<span></span>Out[3]:
</pre></div>
</div>
<div class="output_area highlight-none"><div class="highlight"><pre>
<span></span>['rm -f .output',
'python /Users/rjl/git/clawpack/clawutil/src/python/clawutil/runclaw.py xclaw _output \\',
'\tTrue False . False',
'Reading data file: claw.data ',
' first 5 lines are comments and will be skipped',
' running...',
' ',
'Reading data file: setprob.data ',
' first 5 lines are comments and will be skipped',
'CLAW1EZ: Frame 1 output files done at time t = 0.5000D-01',
'',
'CLAW1EZ: Frame 2 output files done at time t = 0.1000D+00',
'',
'CLAW1EZ: Frame 3 output files done at time t = 0.1500D+00',
'',
'CLAW1EZ: Frame 4 output files done at time t = 0.2000D+00',
'',
'CLAW1EZ: Frame 5 output files done at time t = 0.2500D+00',
'',
'CLAW1EZ: Frame 6 output files done at time t = 0.3000D+00',
'',
'CLAW1EZ: Frame 7 output files done at time t = 0.3500D+00',
'',
'CLAW1EZ: Frame 8 output files done at time t = 0.4000D+00',
'',
'CLAW1EZ: Frame 9 output files done at time t = 0.4500D+00',
'',
'CLAW1EZ: Frame 10 output files done at time t = 0.5000D+00',
'',
'CLAW1EZ: Frame 11 output files done at time t = 0.5500D+00',
'',
'CLAW1EZ: Frame 12 output files done at time t = 0.6000D+00',
'',
'CLAW1EZ: Frame 13 output files done at time t = 0.6500D+00',
'',
'CLAW1EZ: Frame 14 output files done at time t = 0.7000D+00',
'',
'CLAW1EZ: Frame 15 output files done at time t = 0.7500D+00',
'',
'CLAW1EZ: Frame 16 output files done at time t = 0.8000D+00',
'',
'==> runclaw: Will take data from /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1',
'==> runclaw: Will write output to /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'==> runclaw: Removing all old fort files in /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'',
'==> runclaw: Finished executing',
'',
'==> runclaw: Done executing /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/xclaw via clawutil.runclaw.py',
'==> runclaw: Output is in /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output']
</pre></div>
</div>
</div>
<div class="nbinput docutils container">
<div class="prompt highlight-none"><div class="highlight"><pre>
<span></span>In [4]:
</pre></div>
</div>
<div class="input_area highlight-ipython2"><div class="highlight"><pre>
<span></span><span class="o">%%</span><span class="k">system</span>
make plots
</pre></div>
</div>
</div>
<div class="nboutput nblast docutils container">
<div class="prompt highlight-none"><div class="highlight"><pre>
<span></span>Out[4]:
</pre></div>
</div>
<div class="output_area highlight-none"><div class="highlight"><pre>
<span></span>['rm -f .plots',
'python /Users/rjl/git/clawpack/visclaw/src/python/visclaw/plotclaw.py _output _plots setplot.py ',
'Importing setplot.setplot from /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1.',
'Executed setplot successfully',
'Will plot 17 frames numbered: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]',
'Will make 1 figure(s) for each frame, numbered: [1]',
'',
'-----------------------------------',
'',
'',
'Creating html pages for figures...',
'',
"Directory '/Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_plots' ",
' already exists, files may be overwritten ',
'Now making png files for all figures...',
' Reading Frame 0 at t = 0 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 0 at time t = 0.0',
' Reading Frame 1 at t = 0.05 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 1 at time t = 0.05',
' Reading Frame 2 at t = 0.1 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 2 at time t = 0.1',
' Reading Frame 3 at t = 0.15 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 3 at time t = 0.15',
' Reading Frame 4 at t = 0.2 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 4 at time t = 0.2',
' Reading Frame 5 at t = 0.25 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 5 at time t = 0.25',
' Reading Frame 6 at t = 0.3 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 6 at time t = 0.3',
' Reading Frame 7 at t = 0.35 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 7 at time t = 0.35',
' Reading Frame 8 at t = 0.4 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 8 at time t = 0.4',
' Reading Frame 9 at t = 0.45 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 9 at time t = 0.45',
' Reading Frame 10 at t = 0.5 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 10 at time t = 0.5',
' Reading Frame 11 at t = 0.55 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 11 at time t = 0.55',
' Reading Frame 12 at t = 0.6 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 12 at time t = 0.6',
' Reading Frame 13 at t = 0.65 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 13 at time t = 0.65',
' Reading Frame 14 at t = 0.7 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 14 at time t = 0.7',
' Reading Frame 15 at t = 0.75 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 15 at time t = 0.75',
' Reading Frame 16 at t = 0.8 from outdir = /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_output',
'Frame 16 at time t = 0.8',
'',
'-----------------------------------',
'',
'Creating latex file...',
"Directory '/Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_plots' ",
' already exists, files may be overwritten ',
'',
'Latex file created: ',
' /Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_plots/plots.tex',
'',
'Use pdflatex to create pdf file',
'Created JSAnimation for figure 1',
'',
'--------------------------------------------------------',
'',
'Point your browser to:',
' file:///Users/rjl/git/clawpack/classic/examples/acoustics_1d_example1/_plots/_PlotIndex.html',
'python(45105,0x7fff76101180) malloc: *** error for object 0x10413f410: pointer being freed was not allocated',
'*** set a breakpoint in malloc_error_break to debug',
'make: *** [plots] Abort trap: 6']
</pre></div>
</div>
</div>
<div class="section" id="To-display-a-single-frame:">
<h2>To display a single frame:<a class="headerlink" href="#To-display-a-single-frame:" title="Permalink to this headline">¶</a></h2>
<div class="nbinput docutils container">
<div class="prompt highlight-none"><div class="highlight"><pre>
<span></span>In [6]:
</pre></div>
</div>
<div class="input_area highlight-ipython2"><div class="highlight"><pre>
<span></span><span class="kn">from</span> <span class="nn">IPython.display</span> <span class="kn">import</span> <span class="n">Image</span>
<span class="n">frameno</span> <span class="o">=</span> <span class="mi">2</span>
<span class="n">fname</span> <span class="o">=</span> <span class="s1">'_plots/frame00</span><span class="si">%s</span><span class="s1">fig1.png'</span> <span class="o">%</span> <span class="nb">str</span><span class="p">(</span><span class="n">frameno</span><span class="p">)</span><span class="o">.</span><span class="n">zfill</span><span class="p">(</span><span class="mi">2</span><span class="p">)</span>
<span class="k">print</span> <span class="s2">"showing "</span><span class="p">,</span><span class="n">fname</span>
<span class="n">i</span> <span class="o">=</span> <span class="n">Image</span><span class="p">(</span><span class="n">fname</span><span class="p">)</span>
<span class="n">display</span><span class="p">(</span><span class="n">i</span><span class="p">)</span>
</pre></div>
</div>
</div>
<div class="nboutput docutils container">
<div class="prompt empty docutils container">
</div>
<div class="output_area docutils container">
<div class="highlight"><pre>
showing _plots/frame0002fig1.png
</pre></div></div>
</div>
<div class="nboutput nblast docutils container">
<div class="prompt empty docutils container">
</div>
<div class="output_area docutils container">
<img alt="../../../../../../../../Users/rjl/git/clawpack/doc/doc/_build/html/.doctrees/nbsphinx/classic_demo_9_1.png" src="../../../../../../../../Users/rjl/git/clawpack/doc/doc/_build/html/.doctrees/nbsphinx/classic_demo_9_1.png" />
</div>
</div>
</div>
<div class="section" id="One-way-to-display-a-sequence-of-plot-images-as-an-animation:">
<h2>One way to display a sequence of plot images as an animation:<a class="headerlink" href="#One-way-to-display-a-sequence-of-plot-images-as-an-animation:" title="Permalink to this headline">¶</a></h2>
<div class="nbinput docutils container">
<div class="prompt highlight-none"><div class="highlight"><pre>
<span></span>In [8]:
</pre></div>
</div>
<div class="input_area highlight-ipython2"><div class="highlight"><pre>
<span></span><span class="kn">import</span> <span class="nn">glob</span>
<span class="kn">from</span> <span class="nn">matplotlib</span> <span class="kn">import</span> <span class="n">image</span>
<span class="kn">from</span> <span class="nn">clawpack.visclaw.JSAnimation</span> <span class="kn">import</span> <span class="n">IPython_display</span>
<span class="kn">from</span> <span class="nn">matplotlib</span> <span class="kn">import</span> <span class="n">animation</span>
<span class="n">figno</span> <span class="o">=</span> <span class="mi">1</span>
<span class="n">fname</span> <span class="o">=</span> <span class="s1">'_plots/*fig'</span> <span class="o">+</span> <span class="nb">str</span><span class="p">(</span><span class="n">figno</span><span class="p">)</span> <span class="o">+</span> <span class="s1">'.png'</span>
<span class="n">filenames</span><span class="o">=</span><span class="nb">sorted</span><span class="p">(</span><span class="n">glob</span><span class="o">.</span><span class="n">glob</span><span class="p">(</span><span class="n">fname</span><span class="p">))</span>
<span class="n">fig</span> <span class="o">=</span> <span class="n">plt</span><span class="o">.</span><span class="n">figure</span><span class="p">()</span>
<span class="n">im</span> <span class="o">=</span> <span class="n">plt</span><span class="o">.</span><span class="n">imshow</span><span class="p">(</span><span class="n">image</span><span class="o">.</span><span class="n">imread</span><span class="p">(</span><span class="n">filenames</span><span class="p">[</span><span class="mi">0</span><span class="p">]))</span>
<span class="k">def</span> <span class="nf">init</span><span class="p">():</span>
<span class="n">im</span><span class="o">.</span><span class="n">set_data</span><span class="p">(</span><span class="n">image</span><span class="o">.</span><span class="n">imread</span><span class="p">(</span><span class="n">filenames</span><span class="p">[</span><span class="mi">0</span><span class="p">]))</span>
<span class="k">return</span> <span class="n">im</span><span class="p">,</span>
<span class="k">def</span> <span class="nf">animate</span><span class="p">(</span><span class="n">i</span><span class="p">):</span>
<span class="n">image_i</span><span class="o">=</span><span class="n">image</span><span class="o">.</span><span class="n">imread</span><span class="p">(</span><span class="n">filenames</span><span class="p">[</span><span class="n">i</span><span class="p">])</span>
<span class="n">im</span><span class="o">.</span><span class="n">set_data</span><span class="p">(</span><span class="n">image_i</span><span class="p">)</span>
<span class="k">return</span> <span class="n">im</span><span class="p">,</span>
<span class="n">animation</span><span class="o">.</span><span class="n">FuncAnimation</span><span class="p">(</span><span class="n">fig</span><span class="p">,</span> <span class="n">animate</span><span class="p">,</span> <span class="n">init_func</span><span class="o">=</span><span class="n">init</span><span class="p">,</span>
<span class="n">frames</span><span class="o">=</span><span class="nb">len</span><span class="p">(</span><span class="n">filenames</span><span class="p">),</span> <span class="n">interval</span><span class="o">=</span><span class="mi">20</span><span class="p">,</span> <span class="n">blit</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span>
</pre></div>
</div>
</div>
<div class="nboutput nblast docutils container">
<div class="prompt highlight-none"><div class="highlight"><pre>
<span></span>Out[8]:
</pre></div>
</div>
<div class="output_area docutils container">
<script language="javascript">
/* Define the Animation class */
function Animation(frames, img_id, slider_id, frame_id, interval, loop_select_id){
this.img_id = img_id;
this.slider_id = slider_id;
this.frame_id = frame_id;
this.loop_select_id = loop_select_id;
this.interval = interval;
this.current_frame = 0;
this.direction = 0;
this.timer = null;
this.frames = new Array(frames.length);
for (var i=0; i<frames.length; i++)
{
this.frames[i] = new Image();
this.frames[i].src = frames[i];
}
document.getElementById(this.slider_id).max = this.frames.length - 1;
this.set_frame(this.current_frame);
}
Animation.prototype.get_loop_state = function(){
var button_group = document[this.loop_select_id].state;
for (var i = 0; i < button_group.length; i++) {
var button = button_group[i];
if (button.checked) {
return button.value;
}
}
return undefined;
}
Animation.prototype.set_frame = function(frame){
this.current_frame = frame;
document.getElementById(this.img_id).src = this.frames[this.current_frame].src;
document.getElementById(this.slider_id).value = this.current_frame;
document.getElementById(this.frame_id).value = this.current_frame;
}
Animation.prototype.next_frame = function()
{
this.set_frame(Math.min(this.frames.length - 1, this.current_frame + 1));
}
Animation.prototype.previous_frame = function()
{
this.set_frame(Math.max(0, this.current_frame - 1));
}
Animation.prototype.first_frame = function()
{
this.set_frame(0);
}
Animation.prototype.last_frame = function()
{
this.set_frame(this.frames.length - 1);
}
Animation.prototype.slower = function()
{
this.interval /= 0.7;
if(this.direction > 0){this.play_animation();}
else if(this.direction < 0){this.reverse_animation();}
}
Animation.prototype.faster = function()
{
this.interval *= 0.7;
if(this.direction > 0){this.play_animation();}
else if(this.direction < 0){this.reverse_animation();}
}
Animation.prototype.anim_step_forward = function()
{
this.current_frame += 1;
if(this.current_frame < this.frames.length){
this.set_frame(this.current_frame);
}else{
var loop_state = this.get_loop_state();
if(loop_state == "loop"){
this.first_frame();
}else if(loop_state == "reflect"){
this.last_frame();
this.reverse_animation();
}else{
this.pause_animation();
this.last_frame();
}
}
}
Animation.prototype.anim_step_reverse = function()
{
this.current_frame -= 1;
if(this.current_frame >= 0){
this.set_frame(this.current_frame);
}else{
var loop_state = this.get_loop_state();
if(loop_state == "loop"){
this.last_frame();
}else if(loop_state == "reflect"){
this.first_frame();
this.play_animation();
}else{
this.pause_animation();
this.first_frame();
}
}
}
Animation.prototype.pause_animation = function()
{
this.direction = 0;
if (this.timer){
clearInterval(this.timer);
this.timer = null;
}
}
Animation.prototype.play_animation = function()
{
this.pause_animation();
this.direction = 1;
var t = this;
if (!this.timer) this.timer = setInterval(function(){t.anim_step_forward();}, this.interval);
}
Animation.prototype.reverse_animation = function()
{
this.pause_animation();
this.direction = -1;
var t = this;
if (!this.timer) this.timer = setInterval(function(){t.anim_step_reverse();}, this.interval);
}
</script>
<div class="animation" align="center">
<img id="_anim_img67c682e1e49bc8e6" style="width:Nonepx">
<br>
<input id="_anim_slider67c682e1e49bc8e6" type="range" style="width:350px" name="points" min="0" max="1" step="1" value="0" onchange="anim67c682e1e49bc8e6.set_frame(parseInt(this.value));"></input>
<br>
<button onclick="anim67c682e1e49bc8e6.slower()">–</button>
<button onclick="anim67c682e1e49bc8e6.first_frame()"><img class="anim_icon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAAXNSR0IArs4c6QAAAAJiS0dEAP+H
j8y/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QURCAgaeZk4EQAAASlJREFUKM/dkj9L
QnEUhp9zr3bpj1uBcKGiJWxzLWivKAIRjIhcCqcgqJbKRagPICiVSVEuNTu0tLYGUg4tkRGUdxLJ
0u79Ndxr5FfwTO/L+xzO4XCgO+v2T70AFU+/A/Dhmlzg6Pr0DKAMwOH4zQxAAbAkv2xNeF2RoQUV
c1ytgttXUbWVdN1dOPE8pz4j4APQsdFtKA0WY6vpKjqvVciHnvZTS6Ja4HgggJLs7MHxl9nCh8NY
cO+iGG0agiaC4h9oa6Vsw2yiK+QHSZT934YoEQABNBcTNDszsrhm1m1B+bFS86PT6QFppx6oeSae
OwlMXRp1h4aK13Y2kuHhUo9ykPboPvFjeEvsrhTMt3ylHyB0r8KZyYdCrbfj4OveoHMANjuyx+76
rV+/blxKMZUnLgAAAABJRU5ErkJggg==
"></button>
<button onclick="anim67c682e1e49bc8e6.previous_frame()"><img class="anim_icon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAAXNSR0IArs4c6QAAAAJiS0dEAP+H
j8y/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QURCAgyTCyQ6wAAANRJREFUKM9jYBjO
4AiUfgzFGGAp4+yayUvX6jMwMDCsYmBgOCS4OAOrSYmMgcc8/pd5Q3irC+Neh/1AlmeBMVgZmP8y
MLD8/c/cqv9r90whzv/MX7Eq/MfAwMDIwCuZdfSV8U8WDgZGRmYGrAoZGRgY/jO8b3sj/J2F6T8j
4z80pzEhmIwMjAxsSbqqlkeZGP//Z8SlkJnhPwMjwx/Guoe1NhmRwk+YGH5jV8jOwMPHzcDBysAw
h8FrxQwtPU99HrwBXsnAwMDAsJiBgYGBoZ1xmKYqALHhMpn1o7igAAAAAElFTkSuQmCC
"></button>
<button onclick="anim67c682e1e49bc8e6.reverse_animation()"><img class="anim_icon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAAXNSR0IArs4c6QAAAAJiS0dEAP+H
j8y/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QURCAgmVvZElgAAAVFJREFUKM+t0k8o
w3EYx/H3s/2aLDUSZctFkgsHEi1XLi5ukpPSWsuJklwclsPSsDKFi7MSJ0I5qF2GHO2m0FY7+BdN
v7Y9DpuxDSt5vsfvq+fT9/k+8D8VBxIAWH6H0ead4Qb5BRwCENoceZi5Stl/6BgCBmtWhjzxg4mU
Q02rAhil7JgB9tze7aTLxFAKsUUd14B9ZzCyFUk401gQyQJaDNcBHwv7t7ETd0ZVQFEEzcNCdE/1
wtj15imGWlEB8qkf2QaAWjbG/bPSamIDyX65/iwDIFx7tWjUvWCoSo5oGbYATN7PORt7W9IZEQXJ
H8ohuN7C0VVX91KNqYhq4a1lEGJI0j892tazXCWQRUpwAbYDcHczPxXuajq3mbnhfANz5eOJxsuN
vs7+jud0UcuyL3QAkuEMx4rnIvBYq1JhEwPAUb3fG7x8tVdc292/7Po7f2VqA+Yz7ZwAAAAASUVO
RK5CYII=
"></button>
<button onclick="anim67c682e1e49bc8e6.pause_animation()"><img class="anim_icon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAAXNSR0IArs4c6QAAAAJiS0dEAP+H
j8y/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QURCAkR91DQ2AAAAKtJREFUKM9jYCAN
TEVib2K4jcRbzQihGWEC00JuNjN8Z2Q0Zo3VYWA4lL005venH9+c3ZK5IfIsMIXMBtc12Bj+MMgx
MDAwMPzWe2TBzPCf4SLcZCYY4/9/RgZGBiaYFf8gljFhKiQERhUOeoX/Gf8y/GX4y/APmlj+Mfxj
+MfwH64Qnnq0zr9fyfLrPzP3eQYGBobvk5x4GX4xMIij23gdib0cRWYHiVmAAQDK5ircshCbHQAA
AABJRU5ErkJggg==
"></button>
<button onclick="anim67c682e1e49bc8e6.play_animation()"><img class="anim_icon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAAXNSR0IArs4c6QAAAAJiS0dEAP+H
j8y/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QURCAkEmo00MwAAAS9JREFUKM+tkj1I
QmEUhp9j94LQj0FD4RRBLdLQ3ftb26PRcCiQIIiIDFwKC0OhaAiam5wVDBpqCKohQojMLYzaAiUa
tOtpuQrKVQl64fu+4Xt4OLwc+Fs+nNM16jsPAWS6gZXggoZfXmfhog3hcZ6aTXF87Sp68OmH4/Yg
gAo8bmfyyeh6Z1AAKPVldyO1+Iz2uILq3AriJSe3l+H7aj+cuRnrTsVDxSxay+VYbMDnCtZxxQOU
9G4nlU9E1HQBxRkCQMRGRnIbpxMARkvxCIoAorYMMrq0mJ0qu4COUW3xyVDqJC4P+86P0ewDQbQq
gevhlc2C8ETApXAEFLzvwa3EXG9BoIE1GQUbv1h7k4fTXxBu6cKgUbX5M3ZzNC+a7rQ936HV56Sl
Rpcle+Mf8wvgJ16zo/4BtQAAAABJRU5ErkJggg==
"></button>
<button onclick="anim67c682e1e49bc8e6.next_frame()"><img class="anim_icon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAAXNSR0IArs4c6QAAAAJiS0dEAP+H
j8y/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QURCAkd/uac8wAAAMhJREFUKM9jYBie
4DEUQ8B+fEq3+3UrMzAwMFxjYGBgYJizYubaOUxYFUaXh/6vWfRfEMIL/+//P5gZJoei4/f/7wxn
Y1PeNUXdE2RgYGZgYoCrY2BBVsjKwMDAwvCS4f3SG/dXxm5gYESSQ1HIwvCPgZmB8f8Pxv+Kxxb/
YfiPJIdi9T8GJgaG/38ZFd4Fx0xUYsZt4h8GBgb2D2bLy7KnMTAwMEIxFoVCXIYr1IoDnkF4XAys
qNIwUMDAwMDAsADKS2NkGL4AAIARMlfNIfZMAAAAAElFTkSuQmCC
"></button>
<button onclick="anim67c682e1e49bc8e6.last_frame()"><img class="anim_icon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAAAXNSR0IArs4c6QAAAAJiS0dEAP+H
j8y/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QURCAknOOpFQQAAAS9JREFUKM/dkrEv
Q3EQxz/33mtoQxiYpANbLU26NAabSCcSUouGBVNDjYQaOiDpIEiKjURIw2Kx04hEYmkHEpGoJpSI
SaXq9Wd4P03/ht5y98197/u9XA4aK4rAWw3lgWddZ3S+/G9mEovtAB8AHE4pgTQAx8PbJweRmsq6
GimmNpxaNYXVzMNNCI6A2figimwCGACK786zuWgh3qcsKf/w0pM4X0m/doNVFVzVGlEQsdRj193V
xEWpH0RsdRu+zi3tVMqCAsDShoiYqiSV4OouVDFEqS9Pbiyg7vV62lpQ2BJ4Gg0meg0MbNpkYG/e
+540NNFyrE1a8qHk5BaAjfnrzUaHfAWImVrLIXbgnx4/9X06s35cweWsVACa3a24PVp0X+rPv1aH
FnSONdiL8Qci0lzwpOM5sQAAAABJRU5ErkJggg==
"></button>
<button onclick="anim67c682e1e49bc8e6.faster()">+</button>
<form action="#n" name="_anim_loop_select67c682e1e49bc8e6" class="anim_control">
<input id="_frame_no67c682e1e49bc8e6" type="textbox" size="1" onchange="anim67c682e1e49bc8e6.set_frame(parseInt(this.value));" onpaste="this.onchange();" oninput="this.onchange();"></input>
<input type="radio" name="state" value="once" > Once </input>
<input type="radio" name="state" value="loop" checked> Loop </input>
<input type="radio" name="state" value="reflect" > Reflect </input>
</form>
</div>
<script language="javascript">
/* Instantiate the Animation class. */
/* The IDs given should match those used in the template above. */
(function() {
var img_id = "_anim_img67c682e1e49bc8e6";
var slider_id = "_anim_slider67c682e1e49bc8e6";
var frame_id = "_frame_no67c682e1e49bc8e6"
var loop_select_id = "_anim_loop_select67c682e1e49bc8e6";
var frames = new Array(0);
frames[0] = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAbAAAAEgCAYAAADVKCZpAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\
AAALEgAACxIB0t1+/AAAIABJREFUeJzs3Xl8E/XW+PFPurDIvhZo+VmghVLWsqpsRShYAWUTBYUi\
iArK9YqP4vY8ol5pEVFBwOv1oigIAvcqcBFRUPb1IotLRXZpS1ugpZQW2qbJ+f2RZEwsaNHSSdrz\
fr3y6sxk5sxJ8u2czOQ7MxYREZRSSikf42d2AkoppdQfoQVMKaWUT9ICppRSyidpAVNKKeWTtIAp\
pZTySVrAlFJK+SQtYEoppXySFjCllFI+SQuYUkopn6QFTCmllE/SAqaUUsonaQFTSinlk7SAKaWU\
8klawJRSSvkkLWBKKaV8khYwpZRSPkkLmFJKKZ+kBUwppZRP0gKmlFLKJ2kBU0op5ZO0gCmllPJJ\
WsCUUkr5JC1gSimlfJIWMGDdunVEREQQHh7OjBkzzE5HKaVUMVhERMxOwkw2m40WLVqwYcMGgoOD\
6dy5M0uXLqVly5Zmp6aUUuo3lPs9sD179hAWFkZoaCiBgYHcc889rFq1yuy0lFJK/Y5yX8BSUlJo\
3LixMR4SEkJKSoqJGSmllCqOcl/ALBaL2SkopZT6AwLMTsBswcHBJCUlGeNJSUmEhIR4zBMWFsax\
Y8dKOzWllCqWdu3aceDAAbPTKHXlfg+sU6dOHDlyhJMnT1JQUMCyZcu44447POY5duwYIuJVjxde\
eMH0HDSnspWX5uS7OR08eNCkLai5yv0eWEBAAHPnzqV///7YbDbGjx+vPRCVUsoHlPsCBhAbG0ts\
bKzZaSillLoG5f4Qoq+Kjo42O4UiNKfi88a8NKfi8cacyqtyfyJzcVgsFvRtUkp5q/K6jdI9MKWU\
Uj5JC5hSSimfpAVMKaWUT9ICppRSyidpAVNKKeWTtIAppZTySVrAlFJK+SQtYMp0K1asYMWKFV53\
MdL8/HwyMzOLTF+3bp0x3KNHjz+1jvXr1/+p5X9PUlISn376KRcvXizy3NmzZ/nkk084c+aMMe3g\
wYOsWrWKwsJCY9rXX3/NF198YYyLCKtXr2b//v3XHOurr7763VhKFZuo36Vv0/XVsGFDERF5+OGH\
JTk5WaxWq9hsNiksLBQREavVagyLiBQWForVajXG3Z93n881z+/Fc7HZbMa8IiJpaWmyY8cOj3XZ\
bDZp2bKlMc19va6Hax12u90j5yutMyoqqsi8Jenmm28WERF/f/8i62jRooWIiISFhYndbpfjx4/L\
iy++KCK/fCaTJ0+Wo0ePSl5enkyePFlERPz8/MRqtcrs2bPl559/FhGRiIgIERFp1qyZ2O12OXr0\
qLz00ksesR555BEj1l/+8hePWG+88YYRS1278rqNKp+v+hqV18ZRWlwbuKlTp8qhQ4ckKChIPv30\
Uzl8+LDceOONsmfPHpk3b558++23Mm3aNPn6669l3759kp6eLqNHj5a9e/fK7t27xWazyYgRIyQv\
L09EROrWrSsiIjfeeKOsXr1ajhw5Iq1bt5b//ve/smTJElm3bp1HHsuWLZPExEQZOnSo5Obmys6d\
O2X58uVy7NgxY56MjAxp1qyZHDp0SEREunfvLiIi1apVk927d8t9990nQ4YMkYMHD0qVKlVExFGY\
N27cKFu2bJHHHnvMiGWz2SQyMlIOHTokFy9eNKZfuHBBli5d6vE4e/bsNb+vW7dulQ0bNoiIyIIF\
C+TAgQPGcwcOHJB58+aJiMjq1atl5cqVMmnSJMnIyBARkdtvv10uX74sjRo1MpapXr26FBYWSo0a\
NURE5OLFi9KpUyfZv3+/zJ8/34i1atUqmThxomRmZoqISGxsrOTl5XnEqlatmhQWFkqtWrWMWF26\
dLnm16gcyus2Si/mq0x34cIF7r//fmJiYmjRogUAgwcP5sKFC4gI06dPR0T49NNPeemll5g8eTIT\
Jkxg/PjxDBo0iP/5n/9hwoQJdOnS5arrGDRoEAAXL17klVdeAaBChQr079/fmGffvn1Mnz6d/Px8\
tm7dSqdOnfDz86Np06bGPLVr16ZixYpGni6tWrWiS5cuLFy4kO3bt9O2bVtq164NwKJFi0hLSwNg\
586dvPnmmwD4+flRqVKlIrGqV6/OPffc84feS3dnz56lXr16ANSrV4+CggLjufPnz1O1alUAatWq\
xalTp8jMzMTf3x+AmjVrYrfbycvLM5YJDAyksLCQatWqAVCpUiXOnTtHVlaWEatmzZokJyf/4VhK\
XROzK6gv0Lfp+nLtgbkEBQWJiOMwXJs2bYzpNpvNOLwnIjJz5kxjfP369bJs2TKZNGmSZGVlid1u\
99gDc+ndu7cx/OtDaiNHjjTirl27Vs6dOyc7d+4skm/Lli2NYdceWM+ePY1p27Zt81iv6/W4XoO7\
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\
AqdPn6Z///4+/Rm6CwwMLDItPj6eGjVq0LlzZzZu3GhCVuVDmeqFWKlSJTZu3MgNN9xAYWEh3bt3\
Z9u2bawX9w2BAAAgAElEQVRevZqYmBieeuopZsyYQUJCAgkJCSQmJrJs2TISExNJSUmhb9++HD58\
GD8/76jrX331Fdu3bzfGJ0+eTK1atYrMFxAQQEZGBuC4bqKvefnllz3Gn3vuOePwks1m83hu7Nix\
jB07lptuuoldu3aVWo4lyXXJsNzcXI/P0/XZ5eXlmZJXSXN9UczKyjL+p+rXr8/QoUMZOnQoDz30\
EO+8846ZKV43rjur5+fnU69ePZOzKcPM2/m7vnJzc6VTp07y/fffS4sWLSQtLU1ERFJTU6VFixYi\
IjJ9+nRJSEgwlunfv/8VD29409u0f/9+6dOnj2zbtk1ERF588UUREQkNDZXdu3dLjx49zEyvxPTq\
1Us2b94s06dPFxGRefPmiYjI5s2bZc6cObJx40YTs/tztm/fLv/617/krrvuEhGRp556SkRE2rZt\
K3v37pUJEyaYmV6JufXWW2Xnzp3Spk0bERH56quv5Pjx47Jjxw75v//7vzJzKHHnzp3SpEkT2bZt\
m+zcuVNycnLk4MGDsnjxYrn//vtLJQdv2kaVpjLXC9Fut9OhQweOHTvGxIkTefXVV6lVqxbnz58H\
HIerateuzfnz55k8eTI33XSTcfjtgQceIDY2lmHDhnnELK89fJRSvqG8bqO841hZCfLz8+PAgQMk\
JyezZcuWIsefLRYLFovlqsv/1nPq+njsscc4d+6cMf7CCy8U+e0LMK7OXxwzZswgJyeHf/zjH38o\
p5iYmCLT3nzzTXJycgC46667/lBcd8uWLfvTMa6msLCQ/v3789BDDxV5TkS46667jC9u4Div8JZb\
bmHmzJnGtB07dtClSxePQ7XTp0+nW7duRk/J4sbavn3778ZS6pqZuPd33b300ksyc+ZMadGihaSm\
poqIyOnTp41DiPHx8RIfH2/M379/f9m1a1eROIC88MILxsOXD195o6ysLJk6daoxXr16dRERWbJk\
iUyfPl0uX74sIiIVK1YUEZELFy7Iyy+/LKtXrzaW2bZtm7z00kuyfft2EXEcanzzzTeld+/e8vzz\
z8u///1vKSgoEBGRPXv2GMMiIoWFhTJnzhx5/fXXRcRxmLlmzZry/PPPS0ZGhjFft27d5Mknn5TF\
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\