forked from StevenBlack/hosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.nb
962 lines (953 loc) · 39.6 KB
/
stats.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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='WolframDesktop 13.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 161, 7]
NotebookDataLength[ 40344, 954]
NotebookOptionsPosition[ 39770, 936]
NotebookOutlinePosition[ 40167, 952]
CellTagsIndexPosition[ 40124, 949]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[{
RowBox[{
RowBox[{"SetDirectory", "[",
RowBox[{"NotebookDirectory", "[", "]"}], "]"}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"data", "=",
RowBox[{"Import", "[", "\"\<stats.out\>\"", "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"graphtitle", "=", "\"\<Hosts file size history\>\""}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
"graphsubtitle", " ", "=", " ",
"\"\<base version: (adware + malware) only\>\""}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"data", "=",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"DateObject", "[",
RowBox[{"#1", "\[LeftDoubleBracket]", "1", "\[RightDoubleBracket]"}],
"]"}], ",",
RowBox[{
"#1", "\[LeftDoubleBracket]", "2", "\[RightDoubleBracket]"}]}], "}"}],
"&"}], ")"}], "/@", "data"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"lastitem", "=",
RowBox[{"Callout", "[",
RowBox[{
RowBox[{"Last", "[", "data", "]"}], ",",
RowBox[{"ToString", "[",
RowBox[{
RowBox[{"Last", "[", "data", "]"}], "[",
RowBox[{"[", "2", "]"}], "]"}], "]"}], ",", "Right", ",", " ",
RowBox[{"LabelStyle", "->", "Small"}], ",", " ",
RowBox[{"Background", "->", "LightBlue"}]}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"data", "[",
RowBox[{"[",
RowBox[{"Length", "[", "data", "]"}], "]"}], "]"}], "=", "lastitem"}],
";"}]}], "Input",
CellChangeTimes->{{3.867182545948308*^9, 3.867182555077017*^9}, {
3.8671856323646584`*^9, 3.867185655249*^9}, 3.8671870324202747`*^9, {
3.867187218478177*^9, 3.867187234045384*^9}, {3.867187352932571*^9,
3.867187371829939*^9}, {3.8671903940899982`*^9, 3.8671904257542353`*^9},
3.867190458276375*^9, {3.867190733940156*^9, 3.867190734419613*^9}, {
3.867190798905361*^9, 3.86719081289338*^9}, {3.867190843782461*^9,
3.867190868878964*^9}, {3.867191008084812*^9, 3.867191008823593*^9}, {
3.867191045756618*^9, 3.86719109928176*^9}, {3.867191132601091*^9,
3.867191153305139*^9}, {3.867191256528245*^9, 3.8671913041596727`*^9}, {
3.867191352877194*^9, 3.8671913561827507`*^9}, {3.867191386467814*^9,
3.867191411094434*^9}, {3.867191451576531*^9, 3.867191464669776*^9}, {
3.867191517397131*^9, 3.867191585673174*^9}, {3.867191623805966*^9,
3.867191637345644*^9}, {3.867191694067857*^9, 3.867191832972144*^9}, {
3.867443529594183*^9, 3.867443565893339*^9}, {3.867445761749815*^9,
3.86744582007928*^9}, {3.867445877108981*^9, 3.867445877563551*^9}, {
3.88987554010293*^9, 3.889875542354431*^9}, {3.8909097713956842`*^9,
3.890909773446272*^9}, {3.89765774638717*^9, 3.8976577472230463`*^9}, {
3.898379436246955*^9, 3.898379440050661*^9}, {3.90338401735606*^9,
3.9033840200448112`*^9}},
CellLabel->"In[15]:=",ExpressionUUID->"e5e34011-aa3d-4e95-90b1-863054ac32f5"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"graph", "=",
RowBox[{"DateListPlot", "[",
RowBox[{"data", "\[IndentingNewLine]", ",",
RowBox[{"PlotTheme", "\[Rule]", "\"\<Detailed\>\""}],
"\[IndentingNewLine]", ",",
RowBox[{"FrameLabel", "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"HoldForm", "[",
RowBox[{"Unique", " ", "domains"}], "]"}], ",", "None"}], "}"}],
",",
RowBox[{"{",
RowBox[{
RowBox[{"HoldForm", "[", "Year", "]"}], ",", "None"}], "}"}]}],
"}"}]}], "\[IndentingNewLine]", ",",
RowBox[{"FrameTicks", "->",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"All", ",", "All"}], "}"}], ",", "Automatic"}], "}"}]}],
"\[IndentingNewLine]", ",",
RowBox[{"ImageMargins", "\[Rule]", "10"}], "\[IndentingNewLine]", ",",
RowBox[{"ImageSize", " ", "->", " ", "Large"}], "\[IndentingNewLine]",
",",
RowBox[{"PlotLabel", " ", "->", " ", "\[IndentingNewLine]",
RowBox[{"Column", "[", "\[IndentingNewLine]",
RowBox[{
RowBox[{"{", "\[IndentingNewLine]",
RowBox[{
RowBox[{"Style", "[",
RowBox[{"graphtitle", ",", "16", ",", "Bold"}], "]"}],
"\[IndentingNewLine]", ",",
RowBox[{"Style", "[",
RowBox[{"graphsubtitle", ",", "12", ",", "Bold"}], "]"}],
"\[IndentingNewLine]", ",",
RowBox[{"Style", "[",
RowBox[{
RowBox[{"\"\<updated: \>\"", "<>",
RowBox[{"DateString", "[",
RowBox[{"TimeZone", "->", "\"\<Zulu\>\""}], "]"}], " ", "<>",
" ", "\"\< UTC\>\""}], ",", "12"}], "]"}]}],
"\[IndentingNewLine]", "}"}], "\[IndentingNewLine]", ",", "Center"}],
"\[IndentingNewLine]", "]"}]}], "\[IndentingNewLine]", ",",
RowBox[{"LabelStyle", "\[Rule]",
RowBox[{"{",
RowBox[{"GrayLevel", "[", "0", "]"}], "}"}]}]}], "\[IndentingNewLine]",
"]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Export", "[",
RowBox[{
RowBox[{
RowBox[{"StringReplace", "[",
RowBox[{
RowBox[{"ToLowerCase", "[", "graphtitle", "]"}], ",",
RowBox[{"\"\< \>\"", "->", "\"\<_\>\""}]}], "]"}], "<>", " ",
"\"\<.png\>\""}], ",", " ", "graph"}], "]"}],
";"}], "\[IndentingNewLine]", "graph"}], "Input",
CellChangeTimes->{{3.8671865652072144`*^9, 3.867186567959504*^9}, {
3.8671866556947737`*^9, 3.867186670522201*^9}, {3.867186775392453*^9,
3.867186776891725*^9}, 3.867186837903651*^9, {3.867186904930146*^9,
3.867186940968878*^9}, {3.8671872869760838`*^9, 3.867187304612606*^9}, {
3.867187379649686*^9, 3.867187384392969*^9}, {3.8671874248081408`*^9,
3.867187425393301*^9}, {3.8671874629428263`*^9, 3.867187467876066*^9}, {
3.8671875851202183`*^9, 3.8671875923328257`*^9}, {3.867190421572784*^9,
3.867190455350173*^9}, {3.867191170483214*^9, 3.867191170658471*^9}, {
3.8671912032969103`*^9, 3.867191245177144*^9}, {3.867443579626745*^9,
3.867443615991692*^9}, {3.867445864801002*^9, 3.867445865695055*^9}, {
3.8675854619929047`*^9, 3.867585470469511*^9}, {3.904556674711198*^9,
3.90455667849632*^9}},
NumberMarks->False,
CellLabel->"In[22]:=",ExpressionUUID->"55c17c4f-14a9-40f1-a01c-ab0b0c9b3309"],
Cell[BoxData[
GraphicsBox[{{}, {{{}, {},
{RGBColor[0.368417, 0.506779, 0.709798], PointSize[
0.0055000000000000005`], AbsoluteThickness[1.6], LineBox[CompressedData["
1:eJyN2HucTeUaB/Bl3GbGbSc1brFUkvuSkmstdJhK2Uo0LlnMcYvYRDmhVnLN
bSlpSmqdSBixc5lRlJUohSyMGnJZGIxhzDZuM+N2muf3W3/sPvp8Tn80fT/v
+z7v8zzvu/deqzoDRj43MEZRlLZ//av471//mLO2n21f/B9ez7P6bRxO+wc7
SdE2u4oD5X6B9R7iUD/afkFsz/CNeO5a2oG12F/pXmKrD+31FjtTaf3jaKt9
xeqf/nrYbLoDNgYg3yRaHYx8V9E2rGf689/PvZ1DMTvpJci/B62mIv9UWl8r
NvbTzhrUc4u2YfXNXazvjWjbbZD/XlrNy5H8r9P6ObH3wG/0SbE+njYOi5X7
d9NHxc7Of/JeceQKrcLBp116Nfb/zPXrw/6/0Aqs19rD+7BOHEqkvSVio8Ze
1peK/UfSzlzsd542LcQfvo/rJ4rtuzK43hS7j9MqbGXTyouop+1+jsPmxv3+
/UV/KvzB/Y5g/UzfnliNz2R/rqH+6bT3Lu7PYdqejfsw5QD3/yTa3sJoO7B2
kFbTcV9KHeR+u3FfmtD6QXFkEm2WPCf5NPyT8eLEoYx/sFdB7D54iL5HbO2h
zUxxpO5h5t/9vPRrCa12E3sFtJcmnwd3xxGuTxerF49y/nhxeJTH8ffw+al+
jPUUYv0I3yUkvrrgOPvZWhwYeoL5JIu1QVkc/13sZNHedKxvdZJuLg4m+66P
eOVPReWvxZ1mvl+Jrb60F/ybk8SRr2nnRbE3OZu+gH6XPMN6e6PfPWkjD99X
DXK4XzzmLz3L+mGl7jnOn4j5u2h7NL6/7Fyun4D7k3+e+X2Az1fNPM4fIw6k
RJjP0TPF1rf4DuDzsCmf/S0dKbb9zUWOr8iT/E/43iB20i6x3i7i4COX6dli
PfYK958ltppepbNwHpm0cVLs1i+k75T5kQeK6Pn5cp7daDtOxgP3X2O9ebgP
da4z/8vHJb/PaBUO1bjJeAVibSutVzkh8zvc4niCWJ+vnINVsTa4BKzEi805
MbBTWmzPLAmbsYg3vRTXl8X8ZqXpX7H/V2UYb5U4uKIs7C0V6xNjOT9NbC2J
g/Ww2Hw9nutTMV8tx3ymiY17yjNektgbUYHrB2L/BRU53kzys3JotSHyr1KJ
9cDh076roz+DAlx/l1gtXzlqPNjCdzXMj7sTtlthP60K3RLxG9/FeLDb4G76
NPr/lu9s5HeDts+JvaIE+qJYKajK/QuxflsN+jry21KT8eDAsHs4fgvzh9Si
u2YVOxKozfgDxOZc2pwiDn/je7ZYK1eH8RdgvM+9HF8oVibfR/dGP2LuZ/8r
R9vpF237TtTfiFYWS7zQsro83y+xf7cHGG+VOPhsPa5fJzZq1ef+gxBvtO8h
6M8F2i6S+d7IBox/Rmydbcj7mRdtG1ZfbsT687H/fN83Ea9yY66/hfkVmnL/
TPS3P2144oBH2zmo77DG/lQ6KfWUbcb4cPAgrVcWuw2bR1npQXszUP9N2knG
fdzzMMdfwv26Rps4Dz34yO2tYr71eguODxBHdtA25ptPPUq/ivif+h6G+z+q
JdfniY0IrdzKlnyfaOXf12g7f7OiyPd98MdWfv9lPJzQmv0oEgeG094hsb6A
Vj8RG++34XgViae2bUs/IjYtWm+A35dW7ZhfU7FW/jHm007svEurHbC++eOM
1+b/sn6I1ltHW4W11TrHu4gjPdvzPunox0rafkIceKEDbYjdG7Sj4Pd0Qke6
Np4ni2jlGTwPLn6C+yXj+ffef3G/CXj+7UKr+D1WdvjjbyF+7U6sr160jffx
PPokbc/C/oto5UP8ftfszPhrkE8n32l4fg7RTjry20YbmO92TGS8g2Ithbaz
b+uI/iTj8Xn4DK1cxfPGY09x/Dzin6LVbni+Hfg0+5UQbfVBPN/M6sJ+JMjz
kJdG2/WjrTYQ6+WeYT3NxNoR2nlQHPzzWa4vITZLd6XLiO2YIONVw/Nv/W68
vxURv9tznA8bzz7P+TfwPL6TNkphvzrduX8h3icv0V65c1F2YHf0C/7nW+Yr
i2j9mji4tQfXM58Pe3K/eshn/ovMrwn2H5zE+YvQr5O0Pg/rW/ei293W7gba
mSBWvd4cP4D48X1Y/1H082Hawbg3nfbmIP5h2riM8z7Yl/k2EnsN+3F8EN6P
bvbzvy/xPvxAf//3Df28bwDnf454ajLP6zfcn87/Zj4Z+P8N1Qdy/XK8T+XS
3ng8XycMYv9xH8M5tF0d70fWEI6noh+VhjLeO6g/mVaG4f2mxcvcfxDeb96l
7bp4n2g+jP1rI+udvsOixiPTaLO+2Cwz/PZW28v6wBRaaSnjdslXmF9vvN9M
esX/vUf8BiO43wicz3Mj2c8l+PzUDXF8G+otoPV1eF+pPZrjq3H/8mljJurp
9CrHx+C+bKNNC5+3c2PY/xT0d/NYxv8e/XzvNc6/IzfKSmW8T26KtneK9h5D
vRXHcdxAvwf4xvuoM4u230K8fv9h/nMRbwbtLcD59XmD5/kt4n9Ne2l435w8
nvnXwvvQKt8H8b7ScwLjF4lDqbR6He9HyyZyXJX3L7Xem/7vqzjYjQ7OEoee
fQsOjxEbdUzGGykOJ77N+V+K9Z9pK1/ep5TQJFgre7HYkQ7vcH19cfgsbaXK
fDd7MudPkHFn4xSeT/dLkm9gKhwYczHKwUmIN4d208SBE7S3XGz3n8Z+dRW7
M2nnebGSRgd6R9sejf3WTmf+P2G/ZjMY7wj2m0o7K7E+6V04dFZs/UEHdakn
nDGT6x8SK9dnMf84jL8+h/vvQr5j5tJfoJ+jLNa3XWxGaK0A+YycR19GP3Pe
4/nfh/jfvc94HcTeadrRZL5W6QPGHy7jzmzamic2Wyzg/Eyx2/dDONL+crGD
q1NYjyr2Gn/E8+wodpWP2Z8DYqUhbcdckf320e6PiPfcQsYvK+OBa7R+r1iv
+wnH54u1Ajq4TqzuWMT9FotD+Z/6v59iK+8z9qcF5o+w2b/OYnMLbY8Uu2f+
y/lLsd9jn/Pzsgfr71jMeo+JvW9o7fRtbQ9Ywno3Y/26L/h9cgr5/rmU+eaJ
lV5fsp5c5J9JB+KuSr/eXsZ8w2J373KuL1UQZaukOLJ7Bev5VeaHx6Wynm1i
/SptZohDdVayv0Vixab1hhLPqvUV82kqdhJpLVEcrrGKn6e5Yvs8HZkSbdcS
a6+s5v7TEP8HOpAiVvUw1y8Xe9l0aJLkpwXWcP4BsdGaDm0VO3NoNwf9q7CW
9WySeIE02mhUKPXHr6MfEdsP094L6O9LdGQE+tt7Pfu/EPk1SeP5HEL8JNrJ
irYFuyXSWX82+plBuzskX3PiBp7X7ziP3d8w/j70r5A2Z6B/z3zL81iE/u2k
jXSxqW7k+XYWhy7S1iti46dN/vkqxX+DH33H+T2L5HxzaW2s2Ha+5/wtYmPo
ZtabK1YrO+xfjWtS/0naqia2k39gfolio/wWxn8P69fT6iD0t++PXL9U5utr
aHu9WJuylefTTBxpvI39M8Se8hPXJ1yXft6kjbEliv86S39mvVPE6jVa7yPr
za7bGX+0OHTvL6xvk+TrvkZb+6Jtw+qnv7KegbekH6N28Pxew/xqO3n+34qt
LXR48w2p5+5dnL9bbH5Ahz2Zr92xG878CfXMpZ3FSpSnw2oWrb0s9YQHuHQh
8kun7SoyP1RuD/ePyLi2jo6tiXjT9sIt24n1yfvg7MfFbkwG80lCPvvp2P/g
vnXfDxd8IA7coM3liFfvd3hcuti4/w+uX4P9d9HudsS7Sm/YJfbGZvJ8jqGe
S7SSh/wSD9Dx0j/rAm00F4fPH+T3S5OY4r+afoj7jxKrdx7m/I/E4Xn0EFsc
an2E9Xtidw697ALinaBD+WKn/1E4pWxJ6ccMD36xo1jpc4z3c7zY/Oo46zMw
v9EJ9r+vWO9Bq73E1sQs3p8MsfOl773i8Bsnmd9ixNtNh+YhXiG9PRX5fH6K
+X4u1nbSGz7Efupp9msL9nuK9o4j/4u0li72OmfzPH7Bfp/QmR1LSf+qn4Ef
zMV+I8/431cyHhyew/teXezl+H5IHBp6lv1sITbanmN9XcWORU9/HvEq5fJ+
zxOHk2l7IfIxzvP74ZjYisvj+kLEa05vqFha4q2hUx4Ve1qE+3cSK00ucP4U
sTGJLkgTB27msz9tyhT/tSdcZH6G2Kh7id/Pr4uDBbS2Xuy9dpn7p4pDl2kr
HfFqX2G/f0C87bR2XRzpdJX9b1pWzmdEAZw4U6wkFPI8vhc7m+ntGeJQm2us
78lYOb8sWkkWq+nXmd9MsVnuBuNdiXbKHpznETozS6z0vcnz6SX90qbRwcFi
p/Qtfn5eFqu96OBUsbmKtlaK9Z5KrnjcCrG7nzZO4Hy6l6Dvk/5Yb9KxncVm
txh4yHBxeDxthMR6Eb1hs1i1S8EtA9KvcK3S8LKH0b+f6cgzYvsCHQyi/53K
wCn9xFqIjh0vNj6mW1pia6s/HsZ5naenLxVHqpaFvc/E3lk69nfsPz8WNs8g
frs4WKko5xUMxMNaa7E3h97QWez2LwdnvyFWZtFV38R9mFEeDq/D+R+m7W/F
+tQKcMFx3KekirAVFyf1/EEndhFHSlRi/l3FaiM6/Ha8xDfpcZ+KvQxaRf2h
j+5i/rBS9W7YdfB5d2hvCX6PHk9gvmlicygdWIDfo7ZV4e2LxMpG2sbvn3aS
jt0vjsyuBmdGxOEW1Tk+WH6vPIMeN1Fsx9WAnZQS7f8H+s9jzQ==
"]]}},
TagBox[
{Opacity[0.], PointBox[{{3.9064896*^9, 144152.}}]},
Annotation[#, {{Callout}, Charting`Private`Tag$232673, {
572}}]& ]}, {{{}, {{}, GraphicsGroupBox[{
{RGBColor[0.87, 0.94, 1], AbsoluteThickness[4], Opacity[
NCache[
Rational[2, 3], 0.6666666666666666]], CapForm["Butt"], JoinForm[
"Round"],
BSplineCurveBox[{
Offset[{3., 0.}, {3.9067591875*^9, 144152.}],
Offset[{8., 0.}, {3.9067591875*^9, 144152.}],
Offset[{10., 0.}, {3.9067591875*^9, 144152.}],
Offset[{12., 0.}, {3.9067591875*^9, 144152.}],
Offset[{12., 0.}, {3.9067591875*^9, 144152.}]}]},
{RGBColor[0.6666666666666666, 0.6666666666666666, 0.6666666666666666],
AbsoluteThickness[1.25],
BSplineCurveBox[{
Offset[{3., 0.}, {3.9067591875*^9, 144152.}],
Offset[{8., 0.}, {3.9067591875*^9, 144152.}],
Offset[{10., 0.}, {3.9067591875*^9, 144152.}],
Offset[{12., 0.}, {3.9067591875*^9, 144152.}],
Offset[{12., 0.}, {3.9067591875*^9, 144152.}]}]},
{EdgeForm[None], FaceForm[{RGBColor[0.87, 0.94, 1], Opacity[
NCache[
Rational[2, 3], 0.6666666666666666]]}],
PolygonBox[{
Offset[{48., 6.0000000000000036`}, {3.9067591875*^9, 144152.}],
Offset[{48., -5.9999999999999964`}, {3.9067591875*^9, 144152.}],
Offset[{12., -6.0000000000000036`}, {3.9067591875*^9, 144152.}],
Offset[{12., 5.9999999999999964`}, {3.9067591875*^9,
144152.}]}]},
{RGBColor[0.6666666666666666, 0.6666666666666666, 0.6666666666666666],
AbsoluteThickness[1.25], EdgeForm[None]}, {}, InsetBox[
StyleBox[
RotationBox["\<\"144152\"\>",
BoxRotation->0.],
StripOnInput->False,
LineColor->GrayLevel[0],
LineOpacity->1,
FrontFaceColor->GrayLevel[0],
BackFaceColor->GrayLevel[0],
FrontFaceOpacity->1,
BackFaceOpacity->1,
GraphicsColor->GrayLevel[0],
Opacity->1,
FontSize->Small,
FontColor->GrayLevel[0],
FontOpacity->1], Offset[{30., 0.}, {3.9067591875*^9, 144152.}],
NCache[ImageScaled[{Rational[1, 2], Rational[1, 2]}],
ImageScaled[{0.5, 0.5}]]]}]}}, {}}},
AspectRatio->NCache[GoldenRatio^(-1), 0.6180339887498948],
Axes->{False, False},
AxesLabel->{None, None},
AxesOrigin->{3.729024*^9, 0},
DisplayFunction->Identity,
Frame->{{True, True}, {True, True}},
FrameLabel->{{
FormBox[
TagBox[
TagBox[
RowBox[{"Unique", " ", "domains"}], HoldForm], HoldForm],
TraditionalForm], None}, {
FormBox[
TagBox[
TagBox["Year", HoldForm], HoldForm], TraditionalForm], None}},
FrameStyle->Automatic,
FrameTicks->FrontEndValueCache[{{All, All}, {
Charting`DateTicksFunction[Automatic, DateTicksFormat -> {Automatic}],
Charting`DateTicksFunction[
Automatic, DateTicksFormat -> {Automatic}, "TickLabels" -> None]}}, {{
All, All}, {{{3.7237536*^9,
FormBox[
StyleBox["\"2018\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.7552896*^9,
FormBox[
StyleBox["\"2019\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.7868256*^9,
FormBox[
StyleBox["\"2020\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.818448*^9,
FormBox[
StyleBox["\"2021\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.849984*^9,
FormBox[
StyleBox["\"2022\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.88152*^9,
FormBox[
StyleBox["\"2023\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.913056*^9,
FormBox[
StyleBox["\"2024\"",
Directive[], {}, StripOnInput -> False], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.7237536*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7288512*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7341216*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.739392*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7447488*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7500192*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7552896*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7552896*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7603872*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7656576*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.770928*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7762848*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7815552*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7868256*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7868256*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7920096*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.79728*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8025504*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8079072*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8131776*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.818448*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.818448*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8235456*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.828816*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8340864*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8394432*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8447136*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.849984*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.849984*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8550816*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.860352*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8656224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8709792*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8762496*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.88152*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.88152*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8866176*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.891888*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8971584*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.9025152*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.9077856*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.913056*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}}, {{3.7237536*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.7552896*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.7868256*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.818448*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.849984*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.88152*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.913056*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
Rational[1, 72], 0},
Directive[]}, {3.7237536*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7288512*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7341216*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.739392*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7447488*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7500192*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7552896*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7552896*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7603872*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7656576*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.770928*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7762848*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7815552*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7868256*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7868256*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.7920096*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.79728*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8025504*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8079072*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8131776*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.818448*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.818448*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8235456*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.828816*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8340864*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8394432*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8447136*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.849984*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.849984*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8550816*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.860352*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8656224*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8709792*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8762496*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.88152*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.88152*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8866176*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.891888*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.8971584*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.9025152*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.9077856*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}, {3.913056*^9,
FormBox[
TemplateBox[{0, 0}, "Spacer2"], TraditionalForm], {
0.009722222222222222, 0.},
Directive[]}}}}],
GridLines->FrontEndValueCache[{Charting`ScaledTickValues[
((Transpose[{#,
Table[
Directive[
GrayLevel[0.4, 0.5],
AbsoluteThickness[1],
AbsoluteDashing[{1, 2}]], {
Length[#]}]}]& )[
Part[
Select[
Charting`DateTicksFunction[Automatic, DateTicksFormat -> {Automatic}][
SlotSequence[1]], And[
FreeQ[#,
Alternatives["",
Spacer[{0, 0}]]], Head[#] === List, Length[#] > 0]& ], All, 1]]& )[
SlotSequence[1]], {Identity, Identity}]& , Automatic}, {{{3.7237536*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.7552896*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.7868256*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.818448*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.849984*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.88152*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}, {3.913056*^9,
Directive[
GrayLevel[0.4],
Opacity[0.5],
AbsoluteThickness[1.],
AbsoluteDashing[{1., 2.}]]}}, Automatic}],
GridLinesStyle->Directive[
GrayLevel[0.4, 0.5],
AbsoluteThickness[1],
AbsoluteDashing[{1, 2}]],
ImageMargins->10,
ImagePadding->{{All, All}, {All, All}},
ImageSize->Large,
LabelStyle->{
GrayLevel[0]},
Method->{
"NoShowPlotTheme" -> "Detailed", "AxisPadding" -> Scaled[0.02],
"DefaultBoundaryStyle" -> Automatic,
"DefaultGraphicsInteraction" -> {
"Version" -> 1.2, "TrackMousePosition" -> {True, False},
"Effects" -> {
"Highlight" -> {"ratio" -> 2}, "HighlightPoint" -> {"ratio" -> 2},
"Droplines" -> {
"freeformCursorMode" -> True,
"placement" -> {"x" -> "All", "y" -> "None"}}}}, "DefaultMeshStyle" ->
AbsolutePointSize[6], "DefaultPlotStyle" -> {
Directive[
RGBColor[0.368417, 0.506779, 0.709798],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.880722, 0.611041, 0.142051],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.560181, 0.691569, 0.194885],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.922526, 0.385626, 0.209179],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.528488, 0.470624, 0.701351],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.772079, 0.431554, 0.102387],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.363898, 0.618501, 0.782349],
AbsoluteThickness[1.6]],
Directive[
RGBColor[1, 0.75, 0],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.647624, 0.37816, 0.614037],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.571589, 0.586483, 0.],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.915, 0.3325, 0.2125],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.40082222609352647`, 0.5220066643438841, 0.85],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.9728288904374106, 0.621644452187053, 0.07336199581899142],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.736782672705901, 0.358, 0.5030266573755369],
AbsoluteThickness[1.6]],
Directive[
RGBColor[0.28026441037696703`, 0.715, 0.4292089322474965],
AbsoluteThickness[1.6]]}, "DomainPadding" -> Scaled[0.02],
"PointSizeFunction" -> "SmallPointSize", "RangePadding" -> Scaled[0.05],
"AllowMicroRanges" -> {True, False}, "OptimizePlotMarkers" -> True,
"OptimizePlotMarkers" -> True,
"CoordinatesToolOptions" -> {"DisplayFunction" -> ({
Identity[
Part[#, 1]],
Identity[
Part[#, 2]]}& ), "CopiedValueFunction" -> ({
Identity[
Part[#, 1]],
Identity[
Part[#, 2]]}& )}},
PlotLabel->FormBox[
TagBox[
GridBox[{{
StyleBox[
"\"Hosts file size history\"", 16, Bold, StripOnInput -> False]}, {
StyleBox[
"\"base version: (adware + malware) only\"", 12, Bold, StripOnInput ->
False]}, {
StyleBox[
"\"updated: Tue 17 Oct 2023 19:13:31 UTC\"", 12, StripOnInput ->
False]}}, GridBoxAlignment -> {"Columns" -> {{Center}}},
DefaultBaseStyle -> "Column",
GridBoxItemSize -> {
"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], "Column"],
TraditionalForm],
PlotRange->{{3.729024*^9, 3.9064896*^9}, {0, 218063.}},
PlotRangePadding->{{
Scaled[0.02],
Scaled[0.02]}, {
Scaled[0.02],
Scaled[0.08090169943749476]}},
Ticks->{{}, Automatic}]], "Output",
CellChangeTimes->{
3.867186551570758*^9, {3.867186680772122*^9, 3.867186699782072*^9},
3.867186777935874*^9, 3.86718694202357*^9, 3.8671870510449877`*^9,
3.867187255654533*^9, 3.867187310041932*^9, 3.867187431429256*^9,
3.867187477376759*^9, 3.867187602705633*^9, {3.867190444725642*^9,
3.86719046295945*^9}, 3.867190761611189*^9, 3.867190819779409*^9, {
3.867190852467555*^9, 3.8671908750350323`*^9}, 3.867191085771729*^9, {
3.8671911399270573`*^9, 3.867191174532995*^9}, {3.867191217100472*^9,
3.867191249934973*^9}, {3.867191282486545*^9, 3.867191309118765*^9},
3.8671913628847427`*^9, {3.8671913975749493`*^9, 3.8671914178619823`*^9},
3.867191469212702*^9, 3.867191534117766*^9, {3.867191566041802*^9,
3.867191590853747*^9}, {3.867191700666916*^9, 3.8671917705466948`*^9}, {
3.867191813970607*^9, 3.867191837153657*^9}, {3.8674436061237383`*^9,
3.867443624613255*^9}, 3.867444944515202*^9, 3.867445839945568*^9, {
3.867445870303279*^9, 3.867445881911745*^9}, 3.867584995471957*^9,
3.867585478130906*^9, 3.86774687062293*^9, 3.868098851430778*^9,
3.8685235167256823`*^9, 3.86906681078651*^9, 3.8693089287119427`*^9,
3.869735161175044*^9, 3.870007810203533*^9, 3.870340372505321*^9,
3.870340403401229*^9, 3.87045361082372*^9, 3.870942972286525*^9,
3.8713065010498323`*^9, 3.871395829118849*^9, 3.8716416309599857`*^9,
3.871642275253429*^9, 3.871899229411577*^9, 3.8720932523644876`*^9,
3.8724283947882633`*^9, 3.8729292766301403`*^9, 3.8736608832707767`*^9,
3.874069338302347*^9, 3.874325909186389*^9, 3.874696457503956*^9,
3.8748618953441896`*^9, 3.875050962875978*^9, 3.8752651909751873`*^9,
3.875891090297274*^9, 3.876342003848527*^9, 3.876998312579729*^9,
3.8772936096656237`*^9, 3.877382516377141*^9, 3.877964348832008*^9,
3.87804450687954*^9, 3.878470212323723*^9, 3.8786395885601797`*^9,
3.878639620334971*^9, 3.878757847201033*^9, 3.879112223224792*^9,
3.879170520951467*^9, 3.879289724404871*^9, 3.879371591147833*^9,
3.879797285624524*^9, 3.879923975629261*^9, 3.880151317819726*^9,
3.880393658429194*^9, 3.880543046724104*^9, 3.881056375670085*^9,
3.881325738216374*^9, 3.881334367469533*^9, 3.881592959478129*^9,
3.882027365892887*^9, 3.88219345383886*^9, 3.882466370101098*^9,
3.882613249735723*^9, 3.883174805016778*^9, 3.883439999108673*^9,
3.8836053597837353`*^9, 3.883843869256338*^9, 3.883866592728613*^9,
3.883867143448183*^9, 3.884153915891087*^9, 3.884641124197339*^9,
3.8847734015597982`*^9, 3.8847751656070967`*^9, 3.88477566967144*^9,
3.885548303427269*^9, 3.8858311230281477`*^9, 3.886191584864834*^9,
3.886621436378044*^9, 3.886855243870946*^9, 3.8871063081130733`*^9,
3.887235622274569*^9, 3.8874988606495256`*^9, 3.887834971429055*^9,
3.8884179282247667`*^9, 3.888752672205769*^9, 3.889131678960092*^9,
3.889875549917007*^9, 3.890245716755601*^9, {3.890686789876093*^9,
3.8906868143380527`*^9}, 3.8908207849213142`*^9, 3.8909081861102667`*^9,
3.89090978001711*^9, 3.891285151358225*^9, 3.891545263571479*^9,
3.8916073042523813`*^9, 3.891872341652968*^9, 3.892072401751935*^9,
3.89228235594491*^9, 3.892544999424947*^9, 3.892806179970969*^9,
3.893095552437428*^9, 3.8931723751025543`*^9, 3.89362060069613*^9,
3.893686053639799*^9, 3.89397203764882*^9, 3.894751203039884*^9,
3.895084844111672*^9, 3.895439490125032*^9, 3.8955263216939163`*^9,
3.895657784061549*^9, 3.8957448599055853`*^9, 3.895931247787265*^9,
3.896013566564756*^9, 3.896095386373332*^9, 3.8965191786429*^9,
3.8968936313937263`*^9, 3.897216178858164*^9, 3.897657754621402*^9,
3.897926194231195*^9, 3.8983794149994497`*^9, 3.8983794476037083`*^9,
3.8984342923172283`*^9, 3.898951274337104*^9, 3.899121622375916*^9,
3.899475149831279*^9, 3.899911501496304*^9, 3.900175205856585*^9,
3.900270527812401*^9, 3.900491563343502*^9, {3.903025185560467*^9,
3.9030252059821978`*^9}, 3.903174150401764*^9, 3.903182074275147*^9,
3.903383990135808*^9, 3.903384025396119*^9, 3.903726387165244*^9,
3.903971852825098*^9, 3.904336629052966*^9, 3.904556665826528*^9,
3.904660734636202*^9, 3.905083048189001*^9, 3.9052851290532703`*^9,
3.905441042720232*^9, 3.905782272103561*^9, 3.906106379419388*^9,
3.90620708413487*^9, 3.906558811905631*^9},
CellLabel->"Out[24]=",ExpressionUUID->"b34387ff-01fe-47ab-bf1e-9a406913a481"]
}, Open ]]
},
WindowSize->{1234, 1257},
WindowMargins->{{0, Automatic}, {Automatic, 0}},
FrontEndVersion->"13.2 for Mac OS X ARM (64-bit) (November 18, 2022)",
StyleDefinitions->"Default.nb",
ExpressionUUID->"a68abeaf-41ba-46e4-a91b-e09f414e080e"
]
(* End of Notebook Content *)
(* Internal cache information *)
(*CellTagsOutline
CellTagsIndex->{}
*)
(*CellTagsIndex
CellTagsIndex->{}
*)
(*NotebookFileOutline
Notebook[{
Cell[561, 20, 2958, 67, 157, "Input",ExpressionUUID->"e5e34011-aa3d-4e95-90b1-863054ac32f5"],
Cell[CellGroupData[{
Cell[3544, 91, 3368, 74, 409, "Input",ExpressionUUID->"55c17c4f-14a9-40f1-a01c-ab0b0c9b3309"],
Cell[6915, 167, 32839, 766, 474, "Output",ExpressionUUID->"b34387ff-01fe-47ab-bf1e-9a406913a481"]
}, Open ]]
}
]
*)