-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPredatorPrey.nb
3033 lines (3006 loc) · 163 KB
/
PredatorPrey.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 11.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 163643, 3023]
NotebookOptionsPosition[ 162658, 2983]
NotebookOutlinePosition[ 163006, 2998]
CellTagsIndexPosition[ 162963, 2995]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"NSolve", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"3", "x"}], "-",
RowBox[{"x", "^", "2"}], "-",
RowBox[{"2", "x", "*", "y"}]}], "\[Equal]", "0"}], ",",
RowBox[{
RowBox[{
RowBox[{"2", "y"}], "-",
RowBox[{"y", "^", "2"}], "-",
RowBox[{"x", "*", "y"}]}], "\[Equal]", "0"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"x", ",", "y"}], "}"}]}], "]"}]], "Input",
CellChangeTimes->{{3.7527948427562437`*^9, 3.75279489741838*^9}, {
3.7527949519189806`*^9, 3.752794952427498*^9}, {3.75279500484436*^9,
3.7527950099104805`*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"x", "\[Rule]", "3.`"}], ",",
RowBox[{"y", "\[Rule]", "0.`"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"x", "\[Rule]", "0.`"}], ",",
RowBox[{"y", "\[Rule]", "2.0000000000000004`"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"x", "\[Rule]", "1.000000000000001`"}], ",",
RowBox[{"y", "\[Rule]", "1.0000000000000007`"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"x", "\[Rule]", "0.`"}], ",",
RowBox[{"y", "\[Rule]", "0.`"}]}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{3.7527948990193973`*^9, 3.75279495439845*^9,
3.7527950115356607`*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"j", "[",
RowBox[{"x_", ",", "y_"}], "]"}], "=",
RowBox[{"(", GridBox[{
{
RowBox[{"3", "-",
RowBox[{"2", "x"}], "-",
RowBox[{"2", "y"}]}],
RowBox[{
RowBox[{"-", "2"}], "x"}]},
{
RowBox[{"2", "-",
RowBox[{"2", "y"}], "-", "x"}],
RowBox[{"-", "y"}]}
}], ")"}]}]], "Input",
CellChangeTimes->{{3.752795027769738*^9, 3.7527951998000946`*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"3", "-",
RowBox[{"2", " ", "x"}], "-",
RowBox[{"2", " ", "y"}]}], ",",
RowBox[{
RowBox[{"-", "2"}], " ", "x"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"2", "-", "x", "-",
RowBox[{"2", " ", "y"}]}], ",",
RowBox[{"-", "y"}]}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{3.7527952017454834`*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Eigenvalues", "[",
RowBox[{"j", "[",
RowBox[{"3", ",", "0"}], "]"}], "]"}]], "Input",
CellChangeTimes->{{3.7527952145688844`*^9, 3.7527952335587134`*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{
FractionBox["1", "2"], " ",
RowBox[{"(",
RowBox[{
RowBox[{"-", "3"}], "-",
SqrtBox["33"]}], ")"}]}], ",",
RowBox[{
FractionBox["1", "2"], " ",
RowBox[{"(",
RowBox[{
RowBox[{"-", "3"}], "+",
SqrtBox["33"]}], ")"}]}]}], "}"}]], "Output",
CellChangeTimes->{3.7527952344893246`*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Eigenvalues", "[",
RowBox[{"j", "[",
RowBox[{"0", ",", "2"}], "]"}], "]"}]], "Input",
CellChangeTimes->{{3.752795237769196*^9, 3.752795243942459*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"-", "2"}], ",",
RowBox[{"-", "1"}]}], "}"}]], "Output",
CellChangeTimes->{3.7527952445923724`*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Eigenvalues", "[",
RowBox[{"j", "[",
RowBox[{"1", ",", "1"}], "]"}], "]"}]], "Input",
CellChangeTimes->{{3.7527952468748302`*^9, 3.75279525296565*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"-", "1"}], "-",
SqrtBox["2"]}], ",",
RowBox[{
RowBox[{"-", "1"}], "+",
SqrtBox["2"]}]}], "}"}]], "Output",
CellChangeTimes->{3.752795253442602*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Eigenvalues", "[",
RowBox[{"j", "[",
RowBox[{"0", ",", "0"}], "]"}], "]"}]], "Input",
CellChangeTimes->{{3.752795254262971*^9, 3.7527952602531786`*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{"3", ",", "0"}], "}"}]], "Output",
CellChangeTimes->{3.752795260987441*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"StreamPlot", "[",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{
RowBox[{"3", "x"}], "-",
RowBox[{"x", "^", "2"}], "-",
RowBox[{"2", "x", "*", "y"}]}], ",",
RowBox[{
RowBox[{"2", "y"}], "-",
RowBox[{"y", "^", "2"}], "-",
RowBox[{"x", "*", "y"}]}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"x", ",",
RowBox[{"-", "3"}], ",", "3"}], "}"}], ",",
RowBox[{"{",
RowBox[{"y", ",",
RowBox[{"-", "3"}], ",", "3"}], "}"}], ",",
RowBox[{"Axes", "\[Rule]", "True"}]}], "]"}]], "Input",
CellChangeTimes->{{3.7527952725425787`*^9, 3.7527953384566736`*^9}}],
Cell[BoxData[
GraphicsBox[{{}, {
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}], ArrowBox[CompressedData["
1:eJwBUQGu/iFib1JlAgAAABQAAAACAAAA5s6B+ge/Dr9Lw69WvvxTvyYcKzod
3iy/Zqwegbo4bL/egV8NpXk8v/oJ12BPAXe/FE4PW5iwS7+fBhv4s9SCvz81
yKFuYVi/q/c3E6NMjb9iXQ3nFz1mv69tOnb/4Za/jJKTfk3fdb+qIndfiwei
vzon/jIeS3+/lHLHE4fepr/g3+pOb3aGv1Px7LZaDq2/zXgIkcI4kL8xtYBk
qICyvwmTOzjjkJO/JgJ3I2/rtL9nHyqeTqGXv9XlDGLcq7e/NINeD1BPn78/
tPNJoX68v+YG+ZTk1qS/ZcMeWPcxwb+J9sxmnuKsv5gCuC/xTcW/6Y4ppTE3
tL9GMknYT4rKv3Q/FExLn7y/rjCSClmm0L99hQ1JgYjEv1TLNr/yFdW/v5SW
jlz4yb+mh8lGLZPYv/n4ZcShJ8+/rf/iSbyh278fVKyU
"]]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.25149600656265053`, -0.44129693643693935`}, \
{-0.25929509646827803`, -0.4504936237391598}, {-0.3356282186914566, \
-0.5329753330399124}, {-0.38392062601013144`, -0.5819085244892512}, \
{-0.44130033381606426`, -0.6373730310966271}, {-0.5206893430961145, \
-0.7101434466312037}, {-0.5673315176840728, -0.7511505867721587}, \
{-0.611508341534478, -0.7888707259195942}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.6210483099034999, -0.7969817838261858}, \
{-0.6783857298898457, -0.8445465762674963}, {-0.7448176936150588, \
-0.898026328814304}, {-0.8199603537475917, -0.9568012835692573}, \
{-0.9059375737863332, -1.0219466953534977`}, {-0.986968933012391, \
-1.081441891895831}, {-1.0173258821424485`, -1.1031288095483993`}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{-1.0275150379400255`, -1.110407913314214}, \
{-1.0784804014916818`, -1.1468174232996422`}, {-1.1824483047447196`, \
-1.2190309995738642`}, {-1.2378225466493473`, -1.2569800167979008`}, \
{-1.2969406620957524`, -1.2969406998787654`}, {-1.3576230529598066`, \
-1.3368383623014126`}, {-1.4225549456059776`, -1.3789298723992696`}, \
{-1.4420434993181561`, -1.3914675059297714`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-1.4525745815578976`, -1.3982425007165291`}, \
{-1.4898690609016738`, -1.4222352772780313`}, {-1.5619476214964205`, \
-1.467968471718604}, {-1.639305427228773, -1.516360328951646}, \
{-1.7224572779372882`, -1.567641722207818}, {-1.8120810539866126`, \
-1.62211086068845}, {-1.878449194458436, -1.6618569533443723`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-1.8891921871467232`, -1.6682906424571755`}, \
{-1.9088546357413938`, -1.6800659535948723`}, {-2.0148507659278394`, \
-1.7426244645077498`}, {-2.0712717270570153`, -1.7755310096527102`}, \
{-2.1301624931917345`, -1.809603535891223}, {-2.1916639700681806`, \
-1.844902884199195}, {-2.255917063422533, -1.8814898955525294`}, \
{-2.3226809963731685`, -1.9192097702379598`}}]},
{Arrowheads[{{0.01999999999999999, 1.}}],
ArrowBox[{{-2.333602979145599, -1.925334676956807}, \
{-2.3932417225096865`, -1.9587702712989041`}, {-2.4667944747679287`, \
-1.9996611503163046`}, {-2.54412256272514, -2.042258054757804}, \
{-2.6254589113727667`, -2.0866568252943285`}, {-2.711036445702259, \
-2.1329533025968077`}, {-2.7728246211110994`, -2.1660870950888818`}}]},
{Arrowheads[{{0.009766742896695931, 1.}}],
ArrowBox[{{-2.783860192621266, -2.172004899491259}, \
{-2.801088090705066, -2.1812433273361695`}, {-2.895846771372635, \
-2.231622740183341}, {-2.995545412696414, -2.284187381809251}, {-3., \
-2.286517041873035}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.021875619296639965`,
0.05702565824478837}, {-0.03932056698529274,
0.08540134510558721}, {-0.051806662436824205`,
0.10307229269696616`}, {-0.06809985048141133,
0.12433979455138643`}, {-0.08929955081654539,
0.14993693890170945`}, {-0.1022456790013309,
0.1647141348330251}, {-0.11696440351006566`,
0.18093156616625425`}, {-0.17459110291687435`,
0.2404627834456646}, {-0.2571155026112238,
0.318824930682419}, {-0.30569771162959075`,
0.3627728162787268}, {-0.3624729258676916,
0.41291348025254204`}, {-0.36734231979634835`, 0.417146580245189}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.3767927139698446,
0.42536207155528993`}, {-0.42849143797377964`,
0.47030521466658975`}, {-0.5048035405961084,
0.536006311583595}, {-0.5470180512586724,
0.5723297736318376}, {-0.5922026853659151,
0.611444381608081}, {-0.6403574429178366,
0.6533501355123256}, {-0.6914823239144369,
0.698047035344571}, {-0.7547106230096702, 0.7540849138920097}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{-0.7640819321241819,
0.7623905031535292}, {-0.7642990307960708,
0.7625829130266747}, {-0.8425639973090979,
0.8333719291096406}, {-0.9259427135954322,
0.9109901679514643}, {-1.0141006697969877`,
0.9960137139101412}, {-1.0597443093351568`,
1.0414323089976352`}, {-1.1061276517904988`,
1.0889618947430142`}, {-1.1253163667730801`, 1.1091757596289382`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-1.1339375764106563`,
1.1182575541589723`}, {-1.1532506971630136`,
1.1386024711462779`}, {-1.2011134454527008`,
1.1903540382074265`}, {-1.24882006255879,
1.242585232857713}, {-1.2968741100224783`,
1.2969847686764147`}, {-1.3628201167407155`,
1.379498780476192}, {-1.4271882213349716`,
1.466216578604553}, {-1.453738450340475, 1.503036053293976}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{-1.461062504714162,
1.5131929462752016`}, {-1.4667941869728456`,
1.5211415605718115`}, {-1.5051817056552153`,
1.5775593418994451`}, {-1.5423507773820817`,
1.635469922587455}, {-1.578301402153444,
1.69487330263584}, {-1.612480683274278,
1.7555497411015852`}, {-1.6443357240495577`,
1.8172794970416748`}, {-1.6738665244792845`,
1.8800625704561087`}, {-1.7010730845634572`,
1.943898961344887}, {-1.7034462320721626`, 1.9501868638381954`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-1.70786784557776,
1.9619023912060911`}, {-1.7254112147419933`,
2.008385382383063}, {-1.7463367254548094`,
2.073118546245691}, {-1.7638496167019058`,
2.1380984529327702`}, {-1.7779498884832816`,
2.203325102444301}, {-1.7922051846654385`,
2.2977566096722577`}, {-1.7984765245093866`,
2.3908240441545794`}, {-1.7967895837730874`, 2.4511600503322772`}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{-1.796439612419445,
2.4636773091197446`}, {-1.7959415912051193`,
2.4814897967890546`}, {-1.7837780679426318`,
2.5687162584734717`}, {-1.7624114114755387`,
2.651656438091376}, {-1.7329800920223806`,
2.7295722690896023`}, {-1.695731312970541,
2.801589529210874}, {-1.650912277707403,
2.8668339961979137`}, {-1.6073014559634426`, 2.9161373108873327`}}]},
{Arrowheads[{{0.004675978981590669, 1.}}],
ArrowBox[{{-1.598940262941743,
2.9254525087846686`}, {-1.5430485654286912`,
2.9757296521815118`}, {-1.5088580349880238`, 3.}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{3., 2.3016372595031607`}, {2.9678928213744715`,
2.2840230438496976`}, {2.8826583915767032`, 2.236927458575906}, {
2.803630726433277, 2.192901546629061}, {2.7025388045863794`,
2.136147477659116}, {2.6089750976199255`, 2.083250763555767}, {
2.562924570970861, 2.057002429703878}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{2.55204556404202, 2.050801505922455}, {2.522939605533915,
2.034211404319014}, {2.444432328328348, 1.9890293999488573`}, {
2.3720807368771557`, 1.9470468557809446`}, {2.3045123020542704`,
1.9076058771509254`}, {2.2417270238596907`, 1.8707064640587983`}, {
2.1837249022934184`, 1.8363486165045648`}, {2.119598802324711,
1.7980809548097378`}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{2.1088457901990716`, 1.7916640258147554`}, {
2.1036181292891993`, 1.788544385617521}, {2.0301134928023368`,
1.7443833990566096`}, {1.963210992832832, 1.703865656821831}, {
1.9029106293806846`, 1.6669911589131852`}, {1.7968922856500131`,
1.6014674228928842`}, {1.7068344352318727`, 1.545107717814299}, {
1.6821032227444448`, 1.5294347805461694`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{1.6715261732613191`, 1.5227317758667507`}, {
1.6092219083964627`, 1.4832476286475145`}, {1.52780023077057,
1.4310365933829616`}, {1.459516283218616, 1.3867649573150562`}, {
1.4013169466050215`, 1.3487230657382145`}, {1.3567908828719453`,
1.3194670547219614`}, {1.3177142383770866`, 1.2936563222454083`}, {
1.2833991570770027`, 1.2708321447009652`}, {1.2528052411247237`,
1.250443266704546}, {1.2516367114012246`, 1.2496642613517879`}}]},
{Arrowheads[{{0.014094044554902582`, 1.}}],
ArrowBox[{{1.2412175930609688`, 1.242718311415851}, {1.197982228586208,
1.213895270224029}, {1.1542234957839688`, 1.1847619213953817`}, {
1.1187403665153686`, 1.1612801576968883`}, {1.0651645758731207`,
1.1264736670951843`}, {1.0280057621048269`, 1.1033930928313027`}, {
1.0011881711563724`, 1.0879274746914123`}, {0.9722047653622781,
1.073591750241902}, {0.9528280772329242, 1.066955053548939}, {
0.9385072738103107, 1.0647660483718753`}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.09138787352227623, -0.28588369366038313`}, {
0.144949895086505, -0.38184160170253645`}, {
0.20093606585736365`, -0.46650461507203184`}, {
0.23760101090873842`, -0.516055993877875}, {
0.2818729524851322, -0.5711394848111697}, {
0.335150109481804, -0.6324392097971372}, {
0.3873648578326345, -0.6876128837416088}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.39597211624809514`, -0.6967079016124146}, {
0.3996301846825365, -0.7005732668864622}, {
0.47717032192059944`, -0.7763046791795105}, {
0.571907750707336, -0.8599745719282116}, {
0.6438628546662928, -0.9173117841613145}, {
0.7256837004306975, -0.9779803371855731}, {
0.7808653231013216, -1.0158326138143827`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.7911915277000815, -1.0229159566753028`}, {
0.8188065765765888, -1.041858720925476}, {
0.924667771680006, -1.1088254253055119`}, {
0.982786795981486, -1.1433708844276411`}, {
1.044913514303746, -1.1784963970939264`}, {
1.1110479266467863`, -1.2142019633043681`}, {
1.1811900330106064`, -1.2504875830589657`}, {
1.2249168514207298`, -1.272655654573792}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{1.2360857029492667`, -1.2783178982134014`}, {
1.2556898292987557`, -1.288256551211776}, {
1.3349061440829457`, -1.3264749465515187`}, {
1.4169111935304204`, -1.3620839370900528`}, {
1.5036217435312254`, -1.3976630621611819`}, {
1.5927367990034758`, -1.4331367353880378`}, {
1.6866608654186175`, -1.4683995049263479`}, {
1.6975828202186019`, -1.4722550940755879`}}]},
{Arrowheads[{{0.02000000000000001, 1.}}],
ArrowBox[{{1.7093908216662363`, -1.476423468976368}, {
1.7854751926168713`, -1.5032822209521997`}, {
1.8892610304384583`, -1.53761573364168}, {
1.998022680009681, -1.571199113170187}, {
2.111764442456843, -1.6038314297131182`}, {
2.1850649622800673`, -1.6235311455357626`}, {
2.1878007255324747`, -1.624224588358629}}]},
{Arrowheads[{{0.01999999999999999, 1.}}],
ArrowBox[{{2.199939011048992, -1.6273013191268806`}, {
2.260061707104752, -1.6425408147354883`}, {
2.336754676930897, -1.6608604373122946`}, {
2.415143871758502, -1.6784900132661824`}, {
2.495229291587567, -1.695429542597151}, {
2.5770109364180924`, -1.7116790253052012`}, {
2.6604888062500796`, -1.7272384613903324`}, {
2.6895600853121615`, -1.732313621524221}}]},
{Arrowheads[{{0.012040340974800287`, 1.}}],
ArrowBox[{{2.7018956710053668`, -1.7344671240448575`}, {
2.745662901083525, -1.7421078508525443`}, {
2.8153207318179767`, -1.7534632665300836`}, {
2.885573779705793, -1.7641073463308505`}, {
2.9564220447469727`, -1.7740400902548448`}, {
3., -1.7796648175904681`}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.14645473517376084`, -0.022774585347124808`}, {
0.21591677348747323`, -0.029204442040086296`}, {
0.3155274170536561, -0.03704505045750606}, {
0.33998971659378563`, -0.03883667695050443}, {
0.36614846991547495`, -0.040690195880721654`}, {
0.40030121876059094`, -0.04293160241383479}, {
0.43715149981915197`, -0.04524412569934985}, {
0.5164022413181139, -0.049993334645071844`}, {
0.6070908982865348, -0.054959059234142016`}, {
0.6461323169294991, -0.05690122830415853}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{0.6586390016084313, -0.05752339053586444}, {
0.7097483416879039, -0.06006589495659444}, {
0.8055548105724121, -0.06435859583592274}, {
0.9092176595268942, -0.06852429040356944}, {
1.0207368885513508`, -0.07256297865953457}, {
1.1401124976457813`, -0.07647466060381808}, {
1.1591363929202245`, -0.07704185502582353}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{1.1716529812778962`, -0.07741503512362122}, {
1.2203343633074808`, -0.07886646281202897}, {
1.3023149500127904`, -0.08108948114924505}, {
1.3860542577617097`, -0.08314371561546627}, {
1.4715522865542396`, -0.08502916621069267}, {
1.557838364515714, -0.08671232660417437}, {
1.6439418197714661`, -0.08815969046516148}, {
1.6724098367424214`, -0.08856111720004438}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{1.6849307422665651`, -0.0887376741491098}, {
1.7298626523214973`, -0.089371257793654}, {
1.815600862165807, -0.09034702858965192}, {
1.9001866161060188`, -0.09107852721436835}, {
1.9826500809437564`, -0.09155727802901639}, {
2.062991256679019, -0.09178328103359605}, {
2.141210143311808, -0.09175653622810731}, {
2.1858016136543577`, -0.09160863194580483}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{2.1983236950474003`, -0.09156709778137509}, {
2.2121101684338247`, -0.09152136978819529}, {
2.2808786513855526`, -0.09110412421369198}, {
2.3471441197413156`, -0.09050947125640296}, {
2.410535101075439, -0.08974208266813383}, {
2.5272077129760673`, -0.0877077856058777}, {
2.6279247076820367`, -0.08503860704136842}, {
2.6990919641219118`, -0.08221502674541335}}]},
{Arrowheads[{{0.011560619052475303`, 1.}}],
ArrowBox[{{2.711604270287943, -0.0817185975880352}, {
2.746928922045784, -0.0803170824017756}, {
2.839677328249944, -0.07503556516107682}, {
2.9623430528681274`, -0.06403730459716325}, {
3., -0.05812196550699346}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.014658722052876041`,
0.33141157783142094`}, {-0.02069086152764548,
0.4247393095964644}, {-0.024951679983371312`,
0.48798899976456933`}, {-0.0297477699616339,
0.5575787925549957}, {-0.034998304229573465`,
0.6331376184958977}, {-0.040622455554330236`,
0.7142944081154297}, {-0.04645532331499291,
0.8001735664019138}, {-0.04848437250185131, 0.8311533404364847}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{-0.04930276894393863,
0.8436487185725946}, {-0.052332006890650234`,
0.8898994983436728}, {-0.057976296705185816`,
0.9805753176908915}, {-0.06325232481893317,
1.0724717284243437`}, {-0.06872860985482745,
1.1817693726004408`}, {-0.0730707198962801,
1.2883841881509}, {-0.07473110685526581, 1.3438584696127813`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.07510573646084587,
1.3563750146696019`}, {-0.07611964850330538,
1.390250275925176}, {-0.07771638923591757,
1.4853017367727246`}, {-0.07780274227010034,
1.5926117530996071`}, {-0.07588550623215082,
1.6854653112923452`}, {-0.07239847516502299,
1.7639377683840123`}, {-0.06777544311167087,
1.8281044814076828`}, {-0.06652040687688177,
1.8418887209950998`}, {-0.06522828409831774,
1.8549053049385211`}, {-0.06498306136590466, 1.8568323261036308`}}]},
{Arrowheads[{{0.005856618193429024, 1.}}],
ArrowBox[{{-0.06340230519538417,
1.8692543008834377`}, {-0.06182772875017644,
1.881627713846177}, {-0.05838845080866694,
1.9047078174179632`}, {-0.05155648939603936,
1.9441869854486389`}, {-0.04498249070585886,
1.9718838374452414`}, {-0.03891573221920388,
1.9906959821604524`}, {-0.02859874997609724, 2.0107680180275183`}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.19089033521886323`,
0.006844757351873475}, {-0.2513540350525358,
0.008276578540530025}, {-0.33296266356608456`,
0.010067764967133172`}, {-0.44447057970134624`,
0.012344428919380895`}, {-0.5152256060037581,
0.01371921506151777}, {-0.5992133839156062,
0.01529763306561314}, {-0.6916731024010135, 0.016975001573032885`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.7041931925506826,
0.017202136213621537`}, {-0.717093947967309,
0.017436176736481113`}, {-0.7862561266231356,
0.01865817578303209}, {-0.8636549666115002,
0.020002155168696693`}, {-0.9504271874701409,
0.02148435961879897}, {-1.0482191543726864`,
0.023128238147088805`}, {-1.1584654954772016`,
0.02495414977519756}, {-1.2050068305864876`, 0.025713503332665744`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-1.2175273144866463`,
0.025917783548703457`}, {-1.2840436042446615`,
0.027003042085845332`}, {-1.4030192487417907`,
0.028917774865917078`}, {-1.4679531513231545`,
0.029953896096385112`}, {-1.5369187840467053`,
0.031048239219543507`}, {-1.6102965034925383`,
0.03220622839230662}, {-1.688466666240748,
0.033433287771588806`}, {-1.7183496880988396`, 0.03390122803946713}}]},
{Arrowheads[{{0.02000000000000001, 1.}}],
ArrowBox[{{-1.7308703034000295`,
0.03409728920442772}, {-1.7690330506401455`,
0.034694882254130525`}, {-1.8548709683108915`,
0.03603251651173829}, {-1.9424179013897203`,
0.03738429583292473}, {-2.0358833925464834`,
0.038821083008290035`}, {-2.132655480224912,
0.040305393897974724`}, {-2.231696797175867, 0.04181839194462294}}]},
{Arrowheads[{{0.02000000000000001, 1.}}],
ArrowBox[{{-2.244217494022697,
0.04200917413289507}, {-2.346737106382439,
0.04356917206115939}, {-2.4654423882028915`,
0.045368667530457416`}, {-2.5930751772157548`,
0.04729642802124559}, {-2.660583850972238,
0.048313353673593504`}, {-2.7305540442287537`,
0.04936564293057728}, {-2.7450462357790486`, 0.0495832370938249}}]},
{Arrowheads[{{0.00968125334107972, 1.}}],
ArrowBox[{{-2.7575669748105485`,
0.0497712307263508}, {-2.8046399119340726`,
0.050478011086619555`}, {-2.8817719569726172`,
0.05163415992979176}, {-2.962144674707525,
0.052836886425871615`}, {-3., 0.05340245009030746}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.002039126670813244, -0.33504892307746703`}, \
{-0.0029649037399604, -0.4238002870236513}, {-0.004397355720863676, \
-0.5414934359850772}, {-0.005388009762804499, -0.6147954226184675}, \
{-0.006655171322032423, -0.7008688518592385}, {-0.008552042789597812, \
-0.8170948533195951}, {-0.008885030039995079, -0.8358869400369595}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.009106882035317156, -0.8484071249075182}, \
{-0.009747789827780445, -0.8845766623280524}, {-0.011159350937114912`, \
-0.9596117566884118}, {-0.012823885295620495`, -1.043246534473676}, \
{-0.014807413290533694`, -1.1370135188630799`}, {-0.017160725689251623`, \
-1.242219252976767}, {-0.019725142660928865`, -1.3491795883533104`}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{-0.020025472089430847`, -1.361698136404599}, \
{-0.023018451282793968`, -1.4775706768207668`}, {-0.024735155879734985`, \
-1.5409250418617881`}, {-0.02662157066247463, -1.608275618294486}, \
{-0.02870232019808805, -1.6800260998476986`}, {-0.031002029053650394`, \
-1.7565801802502643`}, {-0.03341121756918719, -1.8355360600775061`}, \
{-0.03425855603630196, -1.862381016914715}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{-0.03465361042322513, -1.8748969339619062`}, \
{-0.03607143270851369, -1.9198156760331888`}, {-0.03896484169036427, \
-2.0052793494345793`}, {-0.04217943782420872, -2.09673003263389}, \
{-0.04558349111534086, -2.191557729125737}, {-0.04936645872104838, \
-2.293139452202658}, {-0.05255271802765554, -2.3754619962583416`}}]},
{Arrowheads[{{0.02000000000000001, 1.}}],
ArrowBox[{{-0.05303701994937821, -2.3879747776897187`}, \
{-0.05358959901202522, -2.4022516176614928`}, {-0.058314170358965356`, \
-2.5196706412990815`}, {-0.06362937052156369, -2.64644412545622}, \
{-0.06654190556862029, -2.7137316411074197`}, {-0.06962439725951515, \
-2.783619672473705}, {-0.07275992012965449, -2.8533015047547883`}, \
{-0.0743756441788831, -2.8884050865350623`}}]},
{Arrowheads[{{0.0039607644721357275`, 1.}}],
ArrowBox[{{-0.0749513957420521, -2.9009139936671144`}, \
{-0.07609995160372204, -2.9258677750003765`}, {-0.07959091484722056, -3.}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{1.6740824729343668`, 3.}, {1.6400036565068083`,
2.965077363055008}, {1.5951270870047118`, 2.9186921595578452`}, {
1.5127100528539497`, 2.832661854276399}, {1.4386388571992645`,
2.7544539193250994`}, {1.3719695138038692`, 2.683246983315883}, {
1.3290649784802935`, 2.636910859800182}}]},
{Arrowheads[{{0.01999999999999999, 1.}}],
ArrowBox[{{1.320557252436517, 2.627722669278385}, {1.311758036430976,
2.618219674860682}, {1.242560973784038, 2.542759028822686}, {
1.1808633380861924`, 2.474783162184755}, {1.1256324037749175`,
2.4133611274419966`}, {1.0758354452876906`, 2.3575619770895186`}, {
0.9898108642489098, 2.2602870894427722`}, {0.985516230475912,
2.255403301558338}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.9772471126592769, 2.245999794870118}, {0.9508662537853317,
2.2159999099533634`}, {0.915351752583966, 2.1754688889410034`}, {
0.8796941909750333, 2.134628632780587}, {0.8470768061590662,
2.097274112507549}, {0.7871056486262763, 2.0287368414916873`}, {
0.7364583000356973, 1.9712733901547355`}, {0.6930765318123645,
1.9226886948421644`}, {0.6453629447389938, 1.8708724379775767`}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{0.636880637372096, 1.8616607763883593`}, {0.6204632309015755,
1.84383171337076}, {0.5637956421967812, 1.7860937080988795`}, {
0.5183125880075925, 1.7437896565503226`}, {0.48082637725616334`,
1.7129824360093004`}, {0.42604409032422424`, 1.6775172033497416`}, {
0.3827750827623646, 1.6601800545996181`}, {0.3469367262419585,
1.6549994036854068`}, {0.31607850496229917`, 1.6580751763633361`}, {
0.2745845623710298, 1.6727985323989472`}, {0.23873462281770413`,
1.6954766146683888`}, {0.22371266302084175`, 1.7080160611790198`}}]},
{Arrowheads[{{0.008186546731441903, 1.}}],
ArrowBox[{{0.21409953938861825`, 1.7160405301042747`}, {
0.2068881888709535, 1.7220601404153446`}, {0.1749261981717683,
1.7535682931580578`}, {0.14666589022199097`, 1.7849595769353563`}, {
0.12187852843103125`, 1.8149393096126922`}, {0.09923289948415911,
1.8442489534860695`}, {0.08003941805124018, 1.8705684300592427`}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.10973296036650586`, -0.660784948879603}, {
0.13243656765090556`, -0.7405831177704765}, {
0.16090925756867994`, -0.8322890076707833}, {
0.18068871220029872`, -0.8914029621513178}, {
0.20344798300530842`, -0.9557060721258855}, {
0.22972749496635525`, -1.0257425381762473`}, {
0.26023303899198214`, -1.1021738875520404`}, {
0.2736053714428038, -1.1337062029364011`}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{0.2784943419058708, -1.1452345252476506`}, {
0.29566157839431123`, -1.1857153252294181`}, {
0.33705846353009994`, -1.2772093540672578`}, {
0.3851889406260723, -1.3774187626770098`}, {
0.44207523825829, -1.4875203639304246`}, {
0.4848741638624515, -1.5645569295086172`}, {
0.5016671903107014, -1.5932746236303645`}}]},
{Arrowheads[{{0.02000000000000001, 1.}}],
ArrowBox[{{0.5079882608096278, -1.6040842635526005`}, {
0.5327957699057826, -1.6465074956210575`}, {
0.586649139990147, -1.7337138591533094`}, {
0.6472433577174083, -1.8265178169909373`}, {
0.7156809707610761, -1.9252669951704284`}, {
0.785827475192919, -2.020485297596058}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.7932579023885058, -2.0305646011212515`}, {
0.8479138135975617, -2.1028024344674656`}, {
0.9074002756398156, -2.1782922769498634`}, {
0.9605162480055714, -2.240633366715961}, {
1.0173959481876627`, -2.3049078667610594`}, {
1.0763281940141964`, -2.3701595201819234`}, {
1.116374301524228, -2.412853853882138}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{1.124941011247452, -2.421987075220681}, {
1.1393655311296158`, -2.4373654803543188`}, {
1.2068324470635132`, -2.506533521500515}, {
1.2790534293454814`, -2.5776714178427813`}, {
1.3564024856337555`, -2.650760560490938}, {
1.43925362358657, -2.7257823405548045`}, {
1.4871374683079333`, -2.76766582541109}}]},
{Arrowheads[{{0.014275112287229068`, 1.}}],
ArrowBox[{{1.496562798065602, -2.7759100601518045`}, {
1.4969048142166668`, -2.776209218006966}, {
1.5572169643568785`, -2.827404003971763}, {
1.6203305548319737`, -2.8793484316053783`}, {
1.6863860664667196`, -2.9320242340639937`}, {
1.7555239800858848`, -2.9854131445037915`}, {
1.775040312631437, -3.}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{-0.1474872678798687, -0.6863927527685564}, \
{-0.18793276681754567`, -0.7987170715857262}, {-0.2132969999793235, \
-0.8643435468167819}, {-0.24316350563687203`, -0.9377595463708677}, \
{-0.27838396699358436`, -1.0201660719446952`}, {-0.3205341826665158, \
-1.1135167385935703`}, {-0.3375536595508926, -1.149541326232779}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.34290271804411404`, -1.1608635089170891`}, \
{-0.3481243911587699, -1.1719160590054467`}, {-0.3789423663002896, \
-1.2350221472035414`}, {-0.41347879320546366`, -1.3034008940589348`}, \
{-0.4523870450734165, -1.3777789610839644`}, {-0.49632425811291814`, \
-1.458898968517861}, {-0.5462654186829189, -1.5477931604285828`}, \
{-0.578288754554073, -1.6028241404546915`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.5845868438783505, -1.6136471861611559`}, \
{-0.6030502030548626, -1.6453758216207972`}, {-0.6684246079755672, \
-1.7533764030832102`}, {-0.7305054450485354, -1.8519606228354504`}, \
{-0.8010176257124542, -1.9601332560780433`}, {-0.8399383515413387, \
-2.0182836967142763`}, {-0.8525139895451597, -2.0367351846933994`}}]},
{Arrowheads[{{0.01999999999999999, 1.}}],
ArrowBox[{{-0.8595662935445623, -2.0470826121901644`}, \
{-0.8816100243990885, -2.0794260714050155`}, {-0.924657170771271, \
-2.1420644131230073`}, {-0.9707524869590477, -2.2079651522529}, \
{-1.0183074124381908`, -2.2735692752593875`}, {-1.0693486236848648`, \
-2.3427024794704856`}, {-1.1223508078970696`, -2.4137839558043783`}, \
{-1.1523984293109582`, -2.453361392843202}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{-1.159970383315399, -2.463334845608189}, \
{-1.1792749380403358`, -2.4887619763838575`}, {-1.2405567949383531`, \
-2.5679978864878383`}, {-1.3066321594148116`, -2.6518530313952327`}, \
{-1.3780766489532081`, -2.740791547673462}, {-1.4554658810370393`, \
-2.8352775718899466`}, {-1.4719614258526794`, -2.8551386772021927`}}]},
{Arrowheads[{{0.0070616071392563635`, 1.}}],
ArrowBox[{{-1.4799620493382568`, -2.86477165552371}, \
{-1.4968344812306293`, -2.885086543600058}, {-1.5400087295858624`, \
-2.936530412584795}, {-1.5851066677775245`, -2.9897018337723362`}, \
{-1.593934414279329, -3.}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{-0.3034544171672752,
0.1896156173268017}, {-0.36898239619170103`,
0.21860804936829972`}, {-0.44898881226655474`,
0.2527507688227227}, {-0.5068690402464049,
0.2768270802191724}, {-0.5724948509152996,
0.303662138472789}, {-0.6469762545012354,
0.3336705762248}, {-0.7316854484956458,
0.3673967538409998}, {-0.7662730540317433, 0.3810358372389979}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{-0.7779221977935491,
0.3856294955978201}, {-0.8280122975421613,
0.4053817460729899}, {-0.9378357065068919,
0.448432654349891}, {-0.9982979942250274,
0.47203772688220136`}, {-1.0627216698424444`,
0.4971251582781614}, {-1.1317034579837095`,
0.5240156327386691}, {-1.20584008327339,
0.5530298344646228}, {-1.2443515549785344`, 0.5681944878230119}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-1.2560029425356527`,
0.5727824520223738}, {-1.3075769643395354`,
0.5930907427296697}, {-1.4187057406567918`,
0.6371098944867356}, {-1.4780544825850692`,
0.6607542620940352}, {-1.5402759844270897`,
0.6856890914128584}, {-1.6053702461828534`,
0.7119143824432052}, {-1.6733372678523595`,
0.7394301351850754}, {-1.7210316304886841`, 0.7588780313015394}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{-1.7326268654837462`,
0.7636061147303808}, {-1.744497667708031,
0.7684465636999442}, {-1.8191720640222893`,
0.7991738820492862}, {-1.8973604567951354`,
0.8316120902331019}, {-1.9790628460265685`,
0.8657611882513908}, {-2.0723645828645885`,
0.9048938101465904}, {-2.1705166538457807`,
0.9465071351074535}, {-2.194665309026087, 0.9570001813860559}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{-2.2061501053926937`,
0.9619905420862828}, {-2.2684535120908262`,
0.9890625477494073}, {-2.371206495895769,
1.0343460785471956`}, {-2.476487866879775,
1.0811298862113703`}, {-2.58682601222191,
1.1309142476083187`}, {-2.6635449547941015`, 1.1661142384895447`}}]},
{Arrowheads[{{0.014356664058464445`, 1.}}],
ArrowBox[{{-2.6749263131673575`,
1.1713362045063154`}, {-2.7024371025548586`,
1.1839586352008487`}, {-2.762301066080146,
1.2118006409940105`}, {-2.823537308511308,
1.2405225214517692`}, {-2.8861953889446483`,
1.2702021199111995`}, {-2.9503248664764703`, 1.300917279709374}, {-3.,
1.3249599669575753`}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.2705511947207464,
0.5062088756991262}, {-0.2955450028577517,
0.5426615186447802}, {-0.322205757414898,
0.5814631425879967}, {-0.3603561442161422,
0.6370025822672265}, {-0.4013978855010624,
0.697171843653508}, {-0.44518234931825373`,
0.7622159079634918}, {-0.4913984544816328,
0.8323324321777096}, {-0.5489323793876013, 0.922559721006766}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.5555728031021581,
0.9331751806224674}, {-0.6170681186802804,
1.0349567448445824`}, {-0.6491437101480768,
1.0909908175054739`}, {-0.6810272513286824,
1.149166938890748}, {-0.7123705393602249,
1.2092999990174196`}, {-0.7428253713808309,
1.2712048879025037`}, {-0.7720858756024336,
1.3349747957372573`}, {-0.7892754031999468, 1.3755861476087339`}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{-0.7941564126639868,
1.3871178428055706`}, {-0.7998123153779205,
1.4004802725735432`}, {-0.8256056905568531,
1.4672022482192861`}, {-0.8490670009887912,
1.5346216524824086`}, {-0.8810270908178605,
1.6447805201272203`}, {-0.9046728061847253,
1.7549412530585187`}, {-0.919141851902285,
1.8632417008584232`}, {-0.9194306182136404, 1.8700584176761588`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.9199605999005527,
1.8825693475741452`}, {-0.9235719327834387,
1.9678197131090531`}, {-0.9180280171796908,
2.066800028430687}, {-0.9025750734425461,
2.158307385443603}, {-0.8914951757083605,
2.2059611579056173`}, {-0.8777365803625131,
2.250824340711672}, {-0.8548807056548541,
2.29713129838605}, {-0.8294585162966408,
2.3386193272066076`}, {-0.8129871043644962, 2.3606065022080176`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.8054793489871843,
2.3706283711302913`}, {-0.7746629610974743,
2.4117642079506973`}, {-0.7138748309652815,
2.4655750200392537`}, {-0.650656263420695,
2.5012564181797496`}, {-0.5834340439777748,
2.521349997709499}, {-0.5193627168895163,
2.526383733655236}, {-0.4073348174245164,
2.503842178544493}, {-0.36577389973159086`, 2.481878398432332}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{-0.35470267514811143`,
2.4760275665493467`}, {-0.31833456465300897`,
2.4568080394948426`}, {-0.24997522302115494`,
2.4016858751077472`}, {-0.19050006972805938`,
2.338564086680371}, {-0.14696761914005707`,
2.28040895966107}, {-0.11484440599022765`,
2.2301188927509}, {-0.08052257874356965,
2.1675289902075803`}, {-0.057356923678989064`,
2.123104555263221}, {-0.04343514769396988, 2.0949512505539714`}}]},
{Arrowheads[{{0.000759438942808838, 1.}}],
ArrowBox[{{-0.03813230345678599,
2.083609237227199}, {-0.030292400844597656`, 2.0662805972661458`}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.24763802083110437`, -0.18185640785408713`}, \
{-0.33823805504019, -0.22450394899681184`}, {-0.41669769057465567`, \
-0.2586387496763804}, {-0.5179801252744533, -0.30001894568911547`}, \
{-0.5797938568680101, -0.3241331401689572}, {-0.6510951574032264, \
-0.3510684013542254}, {-0.7104461226515191, -0.37280774257860727`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-0.7222043245206745, -0.3771145901850341}, \
{-0.7335233744420098, -0.38126058322063683`}, {-0.8298974330303609, \
-0.41542586824127054`}, {-0.8933461727308046, -0.4373343440067489}, \
{-0.9633597684945061, -0.46104798683724185`}, {-1.040849288607619, \
-0.48679215796212344`}, {-1.127011140232607, -0.5148590806031931}, \
{-1.1967989912486803`, -0.5371570079010114}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{-1.2087270844144817`, -0.5409681548318918}, \
{-1.2230560898505205`, -0.5455464176213456}, {-1.3307368630578555`, \
-0.5792746765841353}, {-1.3894174370988615`, -0.5973947118672189}, \
{-1.4515790713467887`, -0.6164136497234014}, {-1.5177970038480426`, \
-0.6364644942028503}, {-1.5886464726490281`, -0.6576802493557328}, \
{-1.650746471318332, -0.6760853023106141}, {-1.6878463762751288`, \
-0.6869868423118761}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{-1.6998605887381038`, -0.6905171321576669}, \
{-1.7163927538756178`, -0.6953749898735817}, {-1.7858949915369773`, \
-0.7156204655350694}, {-1.859562855518503, -0.7368928827855115}, \
{-1.9377869728228523`, -0.7592810520813935}, {-2.0209579704526837`, \
-0.7828737838792016}, {-2.106602408245256, -0.8070687969279726}, \
{-2.18149289877101, -0.8280444144944993}}]},
{Arrowheads[{{0.02000000000000001, 1.}}],
ArrowBox[{{-2.1935510163522514`, -0.8314216985953338}, \
{-2.1976947945351104`, -0.8325823039783934}, {-2.290834605033397, \
-0.8582236482318969}, {-2.3901389063602214`, -0.8853236085761489}, \
{-2.4928896289503415`, -0.9132331404962309}, {-2.602533194067052, \
-0.9427618155679738}, {-2.6769451638614923`, -0.9626281916332161}}]},
{Arrowheads[{{0.012840406155439025`, 1.}}],
ArrowBox[{{-2.6890435640165316`, -0.9658582011052372}, \
{-2.719795483290812, -0.9740682941147155}, {-2.8454023782020843`, \
-1.0073112364597951`}, {-2.9115732714118137`, -1.0247103685009544`}, \
{-2.980306753285975, -1.0426965903801841`}, {-3., -1.0478268704528746`}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.32732059289883947`, -0.9117631785226161}, {
0.37847655738727964`, -0.9906483275185939}, {
0.4391550263279393, -1.0771990476383264`}, {
0.5115593850529702, -1.1721493817769555`}, {
0.5528580505609202, -1.2230714127314113`}, {
0.5979273214865177, -1.2764497575442568`}, {
0.6286085729365495, -1.3111683598594794`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.6369006671097952, -1.320551612052766}, {
0.6473198894073018, -1.3323419015059252`}, {
0.7015884459008118, -1.3908053299068488`}, {
0.7608118150245715, -1.452078870344912}, {
0.825447914852117, -1.5162562765720373`}, {
0.8966180779850065, -1.5831774231097164`}, {
0.9754436370247982, -1.652682184479441}, {
0.9956552851265249, -1.6695056472705547`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{1.0052796505978463`, -1.6775166295308792`}, {
1.031255726263616, -1.699138198451075}, {
1.0909134492982453`, -1.746673519871873}, {
1.1544168061286864`, -1.795288148741835}, {
1.221765796754939, -1.8449820850609613`}, {
1.2934774341004072`, -1.8956298882565958`}, {
1.370068731088495, -1.9471061177560824`}, {
1.4096692078821134`, -1.9725297704784523`}}]},
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{1.4202066599546863`, -1.9792948537239876`}, {
1.4515396877192024`, -1.9994107735594226`}, {
1.537890303992529, -2.0525438556666145`}, {
1.6296633100917264`, -2.106244466326072}, {
1.7274014362000454`, -2.1602517077862085`}, {
1.8311046823174861`, -2.2145655800470236`}, {
1.8554528168760898`, -2.2266922069420128`}}]},
{Arrowheads[{{0.02000000000000001, 1.}}],
ArrowBox[{{1.8666616907802063`, -2.2322748043036724`}, {
1.9407730484440484`, -2.269186083108517}, {
2.052144401668211, -2.3233377398489896`}, {
2.1698402959830756`, -2.3774183601769345`}, {
2.2384074782823653`, -2.405544063356833}, {
2.308910903021198, -2.4334619404033906`}, {
2.322730923913145, -2.4387174141448518`}}]},
{Arrowheads[{{0.01999999999999999, 1.}}],
ArrowBox[{{2.3344353368917425`, -2.4431683650912484`}, {
2.381394122453278, -2.4610258391413313`}, {
2.455842619160703, -2.488284476962413}, {
2.525256022135582, -2.5136439615698474`}, {
2.596344681187479, -2.5385490128444954`}, {
2.6691085963163945`, -2.5629996307863556`}, {
2.7435477675223274`, -2.5869958153954293`}, {
2.8077140601954356`, -2.6068420778762094`}}]},
{Arrowheads[{{0.007494041472741439, 1.}}],
ArrowBox[{{2.8196771209731315`, -2.6105419966316794`}, {
2.897451878165248, -2.633624884615215}, {
2.976916817602235, -2.6562577692259275`}, {3., -2.662567209730787}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.020000000000000004`, 1.}}],
ArrowBox[{{3., 1.08608590262268}, {2.923560434708193,
1.0594282893643494`}, {2.833799080121992, 1.0276129872852366`}, {
2.721323158904155, 0.9870364530762376}, {2.623945340475049,
0.951104332825746}, {2.539340156038464, 0.9191240300668275}, {
2.5291908804792405`, 0.9151932593171973}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{2.5175139047651647`, 0.9106708168716063}, {2.465182136798192,
0.8904029483325484}, {2.4000284090571036`, 0.8645029031474591}, {
2.342436099118073, 0.8409857100361114}, {2.288624498080071,
0.8186599429616342}, {2.241096639278947, 0.7983228064476889}, {
2.1959279157219536`, 0.7776071081720395}, {2.1561721989875426`,
0.7586195139571502}, {2.0860367199994188`, 0.7236278653471829}, {
2.0594852994195114`, 0.7089059707658536}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{2.0485339149624133`, 0.7028337861529138}, {
2.0323544504679725`, 0.6938628020975536}, {1.9912543753111043`,
0.6680706751699312}, {1.93591155235358, 0.6246312779281344}, {
1.9075729127919117`, 0.5893687933448813}, {1.8971896044797827`,
0.5592854097165029}, {1.904556577239337, 0.5190711368186196}, {
1.9313425339657402`, 0.48355126398277337`}, {1.9701587520912347`,
0.4505358229910887}, {2.0243988008444647`, 0.4143676102910162}, {
2.085473502884604, 0.3794551743551252}, {2.098400612237321,
0.37272575782424106`}}]},
{Arrowheads[{{0.019999999999999997`, 1.}}],
ArrowBox[{{2.109507898936008, 0.36694367950464324`}, {
2.1506477575314884`, 0.34552765857089324`}, {2.2224748688303113`,
0.3104785418514108}, {2.294993431755038, 0.2767913477895576}, {
2.3666882123842314`, 0.24474504454949894`}, {2.462170038082513,
0.20366258345137603`}, {2.5510477630266313`, 0.16688380433761033`}, {
2.5658640157738906`, 0.16095206165141368`}}]},
{Arrowheads[{{0.012226823371362392`, 1.}}],
ArrowBox[{{2.5774891217291866`, 0.15629790662295395`}, {
2.6312684263967085`, 0.13476715910048612`}, {2.7005861613532804`,
0.1077985498028554}, {2.76004417654024, 0.0852464793973276}, {
2.809927564584294, 0.06675106032987291}, {2.838679201255024,
0.056260717483795096`}, {2.8636089282182753`,
0.047258676732693176`}}]}},
{RGBColor[0.2947336, 0.4054232, 0.5678384000000001],
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.18953979494694279`, -0.2358332851338462}, {
0.28827720161852516`, -0.3053687304948788}, {
0.35506834984486124`, -0.34717760567494765`}, {
0.43803192338631275`, -0.3939438345083863}, {
0.5175273521951431, -0.4335696208882638}, {
0.6112871328492621, -0.4761079222657259}, {
0.6244662131792149, -0.48166854059371395`}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{0.6360034561253372, -0.4865364223407317}, {
0.6640684228974754, -0.4983778076802568}, {
0.721520336465352, -0.5211929050475947}, {
0.7836428735528919, -0.54455321436774}, {
0.8504360341600951, -0.5684587356406924}, {
0.9223692761672103, -0.5926898409908599}, {
0.999912057454486, -0.61702690254265}, {
1.0830643780219218`, -0.6414699202960628}, {
1.1095208613714396`, -0.6487870216029111}}]},
{Arrowheads[{{0.02, 1.}}],
ArrowBox[{{1.1215899251705557`, -0.6521249770420477}, {
1.1718262378695183`, -0.6660188942510983}, {
1.2351748299341951`, -0.6825622978781656}, {
1.3012448712440903`, -0.698882938419461}, {