-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlook.nb
11397 lines (11341 loc) · 511 KB
/
look.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.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 512192, 11389]
NotebookOptionsPosition[ 507966, 11308]
NotebookOutlinePosition[ 508397, 11325]
CellTagsIndexPosition[ 508354, 11322]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Load", "Section",
CellChangeTimes->{{3.779769928890374*^9,
3.7797699358387957`*^9}},ExpressionUUID->"b79746ea-0998-4d01-9119-\
e5f9d1302147"],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{
"import", " ", "the", " ", "LombScargle", " ", "module", " ", "and", " ",
"other", " ", "photometric", " ", "tools"}], "*)"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"kernelbooks", "=",
RowBox[{"FileNames", "[",
RowBox[{"\"\<*.nb\>\"", ",",
RowBox[{"FileNameJoin", "[",
RowBox[{"{",
RowBox[{
RowBox[{"NotebookDirectory", "[", "]"}], ",", "\"\<kernel\>\""}],
"}"}], "]"}]}], "]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Map", "[",
RowBox[{"NotebookEvaluate", ",", "kernelbooks"}], "]"}], ";"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{"SetDirectory", "@",
RowBox[{"NotebookDirectory", "[", "]"}]}], ";"}], "\[IndentingNewLine]",
RowBox[{"NotebookSave", "[", "]"}]}]}]], "Input",
CellChangeTimes->{{3.7797699420082912`*^9, 3.7797699673647556`*^9}, {
3.7854646606808376`*^9, 3.7854647016613646`*^9}, {3.7950885222216024`*^9,
3.7950885413857756`*^9}, {3.8008506763143845`*^9, 3.800850680996626*^9}, {
3.810170676336746*^9, 3.810170693636763*^9}, {3.8158977849988494`*^9,
3.8158977860086126`*^9}, {3.8182259268364353`*^9, 3.818226014961689*^9}, {
3.8472481967129602`*^9, 3.8472482560853453`*^9}},
CellLabel->"In[1]:=",ExpressionUUID->"a55862e3-acc7-4562-bc7d-6a7f9c62f77a"]
}, Open ]],
Cell[CellGroupData[{
Cell["Import data", "Section",
CellChangeTimes->{{3.7609162705277147`*^9, 3.760916274701338*^9}, {
3.8472483458904805`*^9,
3.847248348329149*^9}},ExpressionUUID->"ee8ebfd1-05a5-40e9-9867-\
c70e1bf0b148"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"fpath", "=",
RowBox[{"FileNames", "[",
RowBox[{
RowBox[{"{",
RowBox[{"\"\<*.csv\>\"", ",", "\"\<*.txt\>\"", ",", "\"\<*.dat\>\""}],
"}"}], ",", "\"\<data\>\""}], "]"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"(*",
RowBox[{
"read", " ", "the", " ", "files", " ", "in", " ", "the", " ", "data", " ",
"folder"}], "*)"}]}]}], "Input",
CellChangeTimes->{{3.761218369524026*^9, 3.7612183713990283`*^9},
3.7616156669790363`*^9, {3.761616211274722*^9, 3.7616162297416563`*^9}, {
3.7616164061557064`*^9, 3.7616164160424385`*^9}, 3.7616292826733823`*^9,
3.761828748921157*^9, 3.761829389821355*^9, {3.7798052291312723`*^9,
3.779805236270576*^9}, {3.7798741483628693`*^9, 3.779874152504408*^9}, {
3.779970692485918*^9, 3.7799707735403175`*^9}, {3.7799708066380963`*^9,
3.779970807410987*^9}, {3.779978052082205*^9, 3.779978071737708*^9}, {
3.7799781204831095`*^9, 3.779978122578809*^9}, 3.7800267959009705`*^9,
3.7800372065045986`*^9, {3.7951043786276493`*^9, 3.7951043963030996`*^9},
3.8008540699309454`*^9, {3.8122688142031727`*^9, 3.8122688173576574`*^9},
3.8139977856423035`*^9, {3.8158762905418963`*^9, 3.8158763107174997`*^9}, {
3.8163939814774714`*^9, 3.816393983462551*^9}, {3.8166575188243756`*^9,
3.8166575208843784`*^9}, {3.817959732728258*^9, 3.8179597330132284`*^9}, {
3.831691774743651*^9, 3.831691779227069*^9}, {3.847248299147411*^9,
3.8472483297932262`*^9}},
CellLabel->"In[5]:=",ExpressionUUID->"0f4d39e8-6f03-4838-9b20-926f6f96d384"],
Cell[BoxData[
RowBox[{"{", "\<\"data\\\\1143_Catalina.csv\"\>", "}"}]], "Output",
CellChangeTimes->{{3.761999607993104*^9, 3.7619996155578804`*^9}, {
3.761999761635378*^9, 3.7619997730837727`*^9}, 3.76199984914145*^9,
3.7619999374902697`*^9, {3.76200021988647*^9, 3.7620002227676477`*^9},
3.7620002605207233`*^9, 3.762000342996258*^9, 3.7620004423566265`*^9,
3.762000478970749*^9, {3.76203975979228*^9, 3.7620397704483056`*^9},
3.7620398153476706`*^9, {3.762041280277609*^9, 3.7620412857570896`*^9},
3.7620415492745028`*^9, 3.7620416893894863`*^9, 3.7620417292708683`*^9,
3.7620425161958027`*^9, 3.7620431961387143`*^9, 3.762043775587139*^9, {
3.762044454604024*^9, 3.7620444822146807`*^9}, {3.7620445538973956`*^9,
3.7620445571106377`*^9}, 3.7620456740367765`*^9, {3.762045884676032*^9,
3.7620459782151985`*^9}, {3.7620460377423353`*^9, 3.762046063289729*^9},
3.762046453417704*^9, 3.762046491555934*^9, 3.762047088144308*^9,
3.762047190660165*^9, {3.762047637187448*^9, 3.762047656231865*^9},
3.76204768713175*^9, {3.7621293801356893`*^9, 3.7621293838083115`*^9},
3.762130994840859*^9, {3.7621311715283327`*^9, 3.762131177529299*^9},
3.7621313956724544`*^9, 3.762131724173628*^9, {3.762131824733231*^9,
3.762131847543048*^9}, 3.762132028941114*^9, 3.762137863282152*^9,
3.762139345684376*^9, 3.7621404928811426`*^9, {3.762140526822723*^9,
3.7621405532941294`*^9}, 3.762141948166729*^9, 3.762141984443825*^9,
3.762142029043502*^9, 3.762142326309901*^9, 3.762142435069207*^9,
3.7621425187018776`*^9, 3.762142610364272*^9, 3.7621427501933327`*^9,
3.762142817260257*^9, 3.7621431130223985`*^9, 3.7621431537602863`*^9, {
3.762143187864765*^9, 3.7621432475664606`*^9}, {3.76214350610336*^9,
3.7621435338563104`*^9}, 3.7621435942249165`*^9, {3.7621452482781487`*^9,
3.7621452619651365`*^9}, 3.762146843835288*^9, 3.7621469688459606`*^9,
3.7621484366753683`*^9, 3.7621484821987715`*^9, {3.7622224219194517`*^9,
3.762222438703744*^9}, 3.7622290947690735`*^9, 3.7622291777353716`*^9, {
3.762229349468074*^9, 3.762229354907242*^9}, {3.762235981187357*^9,
3.7622359851077757`*^9}, 3.762236071367381*^9, 3.762236939654513*^9, {
3.762838546790182*^9, 3.7628385511604996`*^9}, {3.7631990828460617`*^9,
3.763199088391636*^9}, {3.7631992022654743`*^9, 3.763199242828767*^9},
3.7631992735264964`*^9, {3.7631993415520687`*^9, 3.7631993493044705`*^9},
3.763199455487635*^9, {3.7632008957678246`*^9, 3.7632009100798855`*^9}, {
3.7632764626353827`*^9, 3.7632764754654007`*^9}, {3.7638822616234636`*^9,
3.7638822712585244`*^9}, 3.763889204781234*^9, 3.7638941142077627`*^9,
3.7639409560868263`*^9, 3.7639422690641413`*^9, 3.763943268134965*^9,
3.763943541827345*^9, 3.763945098228999*^9, 3.763960979383733*^9,
3.763961901816434*^9, {3.764067268002511*^9, 3.764067274735271*^9},
3.7640674755055046`*^9, 3.764124578412413*^9, 3.764196173895993*^9, {
3.7641967409126325`*^9, 3.7641967463509336`*^9}, 3.764201778837223*^9,
3.7642036247737026`*^9, {3.764388502358921*^9, 3.764388510556443*^9},
3.764388642578864*^9, 3.7643887607012105`*^9, 3.7643896695751266`*^9,
3.7643896996112504`*^9, 3.7643910122442255`*^9, 3.7643911791793313`*^9,
3.764392048675522*^9, {3.7644800370849724`*^9, 3.7644800457640095`*^9},
3.7713066410589604`*^9, {3.7713072719351363`*^9, 3.7713072838593187`*^9},
3.771307439056242*^9, 3.7713076314881787`*^9, 3.7713097317222867`*^9,
3.771310234766448*^9, 3.7713103335252314`*^9, 3.771310438646988*^9,
3.7713104890272045`*^9, 3.771310545212884*^9, {3.7713108124509196`*^9,
3.7713108282199645`*^9}, {3.771311018253321*^9, 3.7713110272771735`*^9}, {
3.771314354556164*^9, 3.771314372707658*^9}, 3.7713144171526937`*^9,
3.7713231420389657`*^9, 3.771323221606471*^9, {3.771331974135951*^9,
3.7713319818972845`*^9}, 3.77133314820214*^9, 3.7713339076743183`*^9,
3.771333954116947*^9, 3.771333998786124*^9, 3.771335354432397*^9,
3.7713705169389715`*^9, 3.77138478144514*^9, 3.771385011969926*^9,
3.7713854254936914`*^9, 3.7713868420511055`*^9, 3.7713868842932873`*^9, {
3.7713873100185823`*^9, 3.771387336638056*^9}, 3.771387981284092*^9,
3.7713882652909546`*^9, 3.771460452660776*^9, {3.771460507177143*^9,
3.7714605205321207`*^9}, {3.7714605532487984`*^9, 3.771460573168599*^9},
3.7714738968206797`*^9, 3.7714743566757126`*^9, 3.771637161773779*^9,
3.7716373465347013`*^9, 3.7716373914096565`*^9, 3.7716374248053465`*^9, {
3.771637470698614*^9, 3.771637492329769*^9}, 3.771637535283891*^9,
3.7716377278618746`*^9, 3.771638450947112*^9, 3.7716385302939076`*^9, {
3.7716387364605513`*^9, 3.7716387458026023`*^9}, 3.7716387918264837`*^9,
3.7716388370435596`*^9, 3.7716429715433536`*^9, {3.77164301869549*^9,
3.7716430227903023`*^9}, 3.7716432007453923`*^9, 3.7716433535577765`*^9, {
3.7716439642804494`*^9, 3.7716439856393285`*^9}, 3.771644399948411*^9,
3.771644440769243*^9, 3.771649518862224*^9, 3.77164964911788*^9,
3.7716499039997473`*^9, 3.771650546795032*^9, 3.7716505822730193`*^9,
3.771650613708948*^9, {3.7716506581261625`*^9, 3.771650687020129*^9}, {
3.7716507883289576`*^9, 3.7716508432500796`*^9}, {3.7716510447218056`*^9,
3.7716510828259015`*^9}, 3.771651288751424*^9, 3.771651789718486*^9,
3.771652337689989*^9, {3.7716595429857993`*^9, 3.7716595482826443`*^9},
3.7716595794842677`*^9, 3.77165964285094*^9, 3.771659742534564*^9,
3.771659820746567*^9, {3.7716599412734966`*^9, 3.7716599648325396`*^9},
3.7716599972808285`*^9, 3.771660089377728*^9, 3.7716601535073595`*^9,
3.7716602674518785`*^9, 3.771660356839015*^9, 3.771660400170232*^9, {
3.7716636036905856`*^9, 3.7716636355215263`*^9}, {3.771663972279298*^9,
3.771663976736387*^9}, {3.7716642990122004`*^9, 3.771664309169093*^9}, {
3.7716643797514496`*^9, 3.771664388084182*^9}, {3.7718167200603714`*^9,
3.771816726767931*^9}, 3.7728678658820295`*^9, {3.7728680487648664`*^9,
3.7728680558634005`*^9}, {3.772868176015007*^9, 3.772868189279646*^9},
3.7728685587477303`*^9, 3.7728686326562567`*^9, 3.7728687822177744`*^9,
3.7728689270825357`*^9, 3.77286926588447*^9, 3.7728695924004307`*^9,
3.772870402949543*^9, 3.7728712293832755`*^9, 3.7728712607046475`*^9, {
3.7729599106573477`*^9, 3.772959914205508*^9}, 3.7730074402956743`*^9,
3.773010470139062*^9, 3.7737745225471106`*^9, 3.7738010447043023`*^9, {
3.7738015082346115`*^9, 3.773801513328214*^9}, 3.773801860120868*^9, {
3.774062717102002*^9, 3.774062729826716*^9}, 3.774062961764062*^9,
3.774063011172536*^9, 3.774063104308056*^9, 3.7740660277762904`*^9,
3.774066114255499*^9, 3.774067013494152*^9, 3.7740670637537756`*^9,
3.774067303850645*^9, 3.774067404971485*^9, 3.7740690591264153`*^9,
3.7740901913419275`*^9, {3.7780456792281466`*^9, 3.7780456852012763`*^9},
3.778045742666733*^9, 3.778045875435912*^9, 3.7780459512675867`*^9,
3.778046110395779*^9, 3.778046163781994*^9, 3.7780462497561984`*^9,
3.7780617971302223`*^9, 3.778061912751909*^9, 3.778061998023893*^9,
3.7780620841845474`*^9, 3.7780621677629213`*^9, 3.7782200024241357`*^9,
3.779769870075245*^9, 3.7797743430801444`*^9, 3.7797743844185076`*^9,
3.7797777902428923`*^9, 3.779777962284785*^9, 3.779798458221424*^9,
3.779802453274084*^9, 3.779802680528715*^9, {3.779805015643798*^9,
3.779805043482859*^9}, 3.7798051287266364`*^9, {3.779805237148635*^9,
3.7798052483744683`*^9}, 3.779805575423826*^9, {3.779805739802754*^9,
3.7798057505978193`*^9}, 3.779805934380227*^9, 3.7798063811622667`*^9,
3.7798064292933145`*^9, 3.779806484140681*^9, {3.7798066291009636`*^9,
3.7798066404570885`*^9}, {3.779806940987562*^9, 3.779806947522791*^9},
3.7798083081542535`*^9, 3.77980861586744*^9, 3.7798086799804797`*^9,
3.7798109143211765`*^9, 3.7798112621213264`*^9, 3.779874169694067*^9, {
3.7798742313275423`*^9, 3.7798742867356853`*^9}, 3.779895863495866*^9,
3.77989589516218*^9, {3.7798970908166523`*^9, 3.779897106298295*^9},
3.7798977562985964`*^9, 3.7798978142785983`*^9, 3.77989849271795*^9,
3.7798986541105633`*^9, 3.779899548081237*^9, 3.7799618756585693`*^9,
3.779962640661495*^9, 3.779964575621055*^9, 3.779964815398217*^9, {
3.7799651784470377`*^9, 3.7799652003130255`*^9}, 3.7799705041285877`*^9,
3.7799707503763485`*^9, {3.779970786361847*^9, 3.7799708079625115`*^9},
3.779972353639331*^9, 3.7799727170198097`*^9, {3.7799740770756397`*^9,
3.779974096868925*^9}, 3.7799742311997595`*^9, 3.77997444393347*^9,
3.7799745282807045`*^9, {3.7799748459716425`*^9, 3.7799748936740527`*^9},
3.7799753436813583`*^9, {3.779977537661507*^9, 3.7799775842858677`*^9},
3.7799779587769384`*^9, {3.7799780527704773`*^9, 3.7799780721168995`*^9}, {
3.7799781230804253`*^9, 3.7799781439085436`*^9}, 3.779978186531599*^9, {
3.7799793377503457`*^9, 3.7799793548596244`*^9}, {3.779979535158017*^9,
3.7799795452263436`*^9}, 3.779979686627576*^9, 3.7799800596249447`*^9,
3.7799802499006033`*^9, 3.7799805353826575`*^9, 3.7799810276075945`*^9,
3.779981115453665*^9, 3.7799811636917367`*^9, 3.7799812782133512`*^9,
3.78002498068965*^9, 3.7800250249195747`*^9, 3.7800267600341454`*^9,
3.780026800512641*^9, 3.780026855204441*^9, 3.780028145036336*^9,
3.780028398927064*^9, 3.78002870325336*^9, 3.7800287402059236`*^9, {
3.7800288193669863`*^9, 3.780028849272929*^9}, 3.7800289062240067`*^9,
3.780029226540518*^9, 3.7800293135427065`*^9, 3.780029353106082*^9,
3.7800294721384926`*^9, 3.78002952092867*^9, 3.7800295885111966`*^9,
3.7800302255498915`*^9, 3.7800306458724823`*^9, 3.7800307200627384`*^9, {
3.7800312178157277`*^9, 3.780031230177681*^9}, 3.780031438787177*^9, {
3.7800316216801863`*^9, 3.780031638865246*^9}, 3.780031682171652*^9, {
3.780031815957205*^9, 3.7800318237064867`*^9}, 3.7800318757557974`*^9,
3.780032571565412*^9, 3.7800371484919205`*^9, 3.780037246898117*^9, {
3.7800376024728746`*^9, 3.780037613929921*^9}, 3.7800376903766212`*^9, {
3.7800379864218845`*^9, 3.780038002595614*^9}, {3.7801317439398346`*^9,
3.780131759784202*^9}, 3.780131895211729*^9, 3.7801319316102753`*^9, {
3.780132112187375*^9, 3.7801321246420455`*^9}, 3.780132175423186*^9,
3.7801326092673054`*^9, {3.7801342770162096`*^9, 3.7801342827804856`*^9},
3.7801343530938325`*^9, {3.780135174114895*^9, 3.780135182573683*^9},
3.7801352156719837`*^9, 3.780135256470623*^9, {3.780136004670783*^9,
3.7801360172015676`*^9}, 3.7801360859516945`*^9, 3.780136130558379*^9, {
3.7807334041716537`*^9, 3.780733414564872*^9}, 3.7807345310532465`*^9,
3.7807410969036374`*^9, 3.7807411912049255`*^9, 3.780749499375206*^9, {
3.780749600523622*^9, 3.7807496093789496`*^9}, 3.7807497313787937`*^9,
3.780749785926484*^9, 3.780750002353916*^9, {3.78075016000138*^9,
3.7807501763259478`*^9}, 3.780750360371998*^9, 3.780750590944585*^9,
3.7807506842075996`*^9, 3.7807519449055386`*^9, 3.7807520871507053`*^9,
3.7807521873961325`*^9, 3.780752419016994*^9, 3.7807525410824337`*^9,
3.780753603064067*^9, {3.78075383525638*^9, 3.7807538440389023`*^9}, {
3.780755358032555*^9, 3.780755378257488*^9}, 3.7808046785311966`*^9,
3.7808051579781*^9, 3.7808053826972103`*^9, 3.780807738308137*^9,
3.7808078193833094`*^9, 3.780807890376385*^9, 3.780808153702342*^9, {
3.7808376205628047`*^9, 3.7808376277913246`*^9}, 3.7808378335163865`*^9, {
3.780838172714471*^9, 3.7808381837759027`*^9}, 3.780838631773913*^9, {
3.7808407421749954`*^9, 3.7808407531576347`*^9}, 3.780840910362398*^9,
3.780840992131794*^9, {3.780841074980317*^9, 3.780841115863025*^9}, {
3.78084123435474*^9, 3.780841242089029*^9}, 3.780841305633339*^9, {
3.7809040810280647`*^9, 3.780904096687269*^9}, {3.7809085587710576`*^9,
3.780908564000084*^9}, 3.7809087961675177`*^9, 3.7809090433162603`*^9,
3.780909155496413*^9, 3.780922822172773*^9, {3.780924433294726*^9,
3.7809244399299946`*^9}, 3.7809244840343437`*^9, 3.780924646987088*^9,
3.7809249679777303`*^9, 3.78092755150751*^9, 3.781339987020426*^9,
3.7813400236004767`*^9, 3.7813428369784164`*^9, 3.781344469000701*^9,
3.781345627962325*^9, 3.7813468222289977`*^9, 3.781346915279128*^9,
3.7813472179795513`*^9, 3.7813472971196632`*^9, 3.7819429401364756`*^9,
3.7819429853990645`*^9, 3.781945066233421*^9, 3.7819483212597694`*^9, {
3.781948636282651*^9, 3.7819486480026674`*^9}, 3.781948813080901*^9, {
3.7819489355168886`*^9, 3.7819489486816416`*^9}, 3.781949026939031*^9,
3.7819494552085266`*^9, {3.782036849769315*^9, 3.782036873891349*^9},
3.782037294359945*^9, 3.782095033876835*^9, 3.7821910364779425`*^9,
3.782191119007163*^9, 3.78219142135411*^9, 3.782191506229391*^9, {
3.7838497364506283`*^9, 3.783849754570117*^9}, 3.78385125450203*^9,
3.7838513358740525`*^9, {3.7838513663999233`*^9, 3.7838513748470697`*^9}, {
3.784799580461343*^9, 3.7847996020834484`*^9}, 3.784799670385913*^9,
3.7848016474786425`*^9, 3.785464738651558*^9, 3.78546939873668*^9,
3.7854750966609273`*^9, 3.785475581858976*^9, {3.7854756295710287`*^9,
3.7854756357749004`*^9}, 3.7854912805850306`*^9, 3.7878823078961444`*^9,
3.7878829909746113`*^9, 3.787883092246925*^9, 3.787889762155142*^9,
3.787901745755972*^9, {3.791623817235674*^9, 3.79162382553798*^9},
3.791624336121684*^9, 3.791624487693945*^9, 3.791624593899206*^9, {
3.791637803251359*^9, 3.791637819070301*^9}, 3.791637866053232*^9, {
3.7929821338636208`*^9, 3.7929821503659244`*^9}, 3.7929821853420525`*^9,
3.7929822252185955`*^9, 3.7929824329913073`*^9, {3.792982638528634*^9,
3.7929826501735477`*^9}, 3.793007792984525*^9, 3.7930081624360867`*^9,
3.7930083592397633`*^9, 3.793275123788371*^9, 3.7932751606676025`*^9,
3.7932752382398434`*^9, 3.793275311043606*^9, 3.7932755681483603`*^9,
3.793276061331604*^9, 3.7932761164259005`*^9, {3.7932773128619194`*^9,
3.793277338969138*^9}, 3.793278220715137*^9, 3.7932783919883094`*^9,
3.7932785128777423`*^9, 3.793279266160736*^9, 3.7932793272843018`*^9,
3.7932794126483016`*^9, 3.7936419377027655`*^9, 3.7937206196174717`*^9,
3.793724729325378*^9, 3.7938717598909597`*^9, {3.79395538277801*^9,
3.793955398709716*^9}, {3.7939554442158337`*^9, 3.7939554724375553`*^9},
3.7939555385516787`*^9, {3.793955797012245*^9, 3.793955808177085*^9},
3.7943464981879487`*^9, 3.794513502846466*^9, 3.7949196606031137`*^9,
3.7950885620667925`*^9, {3.7951043371997356`*^9, 3.7951044058295407`*^9},
3.7951044434451656`*^9, 3.7951046429389486`*^9, 3.7951046816089725`*^9,
3.7951053603821106`*^9, 3.7951064512116385`*^9, 3.795156244781315*^9,
3.795188405218147*^9, 3.795191780729704*^9, 3.795192666348*^9,
3.7952441251757407`*^9, 3.795264169632043*^9, 3.796069097136678*^9,
3.796069544792427*^9, 3.796069888684476*^9, 3.7960717148070326`*^9,
3.796071780006197*^9, 3.7961057014460154`*^9, 3.7961057445317802`*^9,
3.79610600543441*^9, 3.7962710958691125`*^9, {3.7965535546931753`*^9,
3.796553594153784*^9}, 3.7965637970943723`*^9, 3.796604747595831*^9,
3.796898891241909*^9, 3.796905523300619*^9, 3.7969115107252197`*^9, {
3.7998486046384726`*^9, 3.7998486158607197`*^9}, 3.799848702677363*^9,
3.7998489347381296`*^9, 3.7998491049747577`*^9, 3.7998491637791085`*^9,
3.7998492054142504`*^9, 3.7998492421982017`*^9, 3.7998493307063723`*^9,
3.799849374022993*^9, 3.7998508696314716`*^9, 3.800850718060719*^9, {
3.8008540800695825`*^9, 3.800854096276307*^9}, 3.800854191491228*^9, {
3.80085426346142*^9, 3.800854283727214*^9}, 3.800854372099743*^9,
3.8008546472281256`*^9, {3.8008632123401814`*^9, 3.8008632327326264`*^9},
3.800864941682187*^9, 3.8008654379570727`*^9, 3.800865688883502*^9, {
3.8008700465953465`*^9, 3.80087006419796*^9}, 3.8008708380657434`*^9,
3.800872455683772*^9, 3.8008757575188637`*^9, 3.800881211349018*^9,
3.8008850920818424`*^9, 3.8009353158888693`*^9, 3.800938888879359*^9,
3.8009389679774284`*^9, 3.8009763248718004`*^9, 3.8013715086192093`*^9,
3.8013715853863883`*^9, 3.8013777100316243`*^9, 3.801377747835882*^9,
3.8013848815307865`*^9, 3.8013851709556336`*^9, 3.801445332688832*^9,
3.8014585200475826`*^9, 3.801459218539109*^9, 3.801794381462509*^9,
3.801798053265667*^9, 3.801802313791795*^9, 3.8018213474736085`*^9,
3.801833839764394*^9, 3.80183475853347*^9, 3.8018355985478535`*^9,
3.801835790182026*^9, 3.8018376899607306`*^9, 3.8018398750542297`*^9,
3.80184026406773*^9, {3.8018412082017345`*^9, 3.8018412144179316`*^9},
3.801841797490021*^9, 3.8018420649030933`*^9, {3.8018421874421005`*^9,
3.801842210554572*^9}, 3.801842277466975*^9, 3.8024722348138175`*^9,
3.8024722857131505`*^9, 3.8024734019039164`*^9, 3.802473506314355*^9,
3.8024736791140394`*^9, 3.8024737991711807`*^9, 3.8024744189092827`*^9,
3.8024859893912015`*^9, 3.802486880671545*^9, 3.802488630190816*^9,
3.802511820665656*^9, 3.8025134681532044`*^9, 3.8025311649900317`*^9,
3.802680947738141*^9, 3.802681240442381*^9, 3.80268153122027*^9,
3.802681600235941*^9, 3.8026817020105524`*^9, 3.802681872230085*^9,
3.8026828331015916`*^9, 3.8039023236879168`*^9, 3.8039507201465273`*^9,
3.803951472656269*^9, 3.803951533311325*^9, 3.803951684450617*^9,
3.803953939209798*^9, 3.8039541242628965`*^9, 3.803954400910833*^9,
3.8039545965755644`*^9, 3.8039552741311893`*^9, {3.804842909070341*^9,
3.8048429320860634`*^9}, 3.8048434911567893`*^9, 3.804843747527549*^9,
3.8048438718538184`*^9, {3.8049921002482977`*^9, 3.8049921369213104`*^9},
3.8050203803364086`*^9, 3.8050261609755898`*^9, 3.8050263386770644`*^9, {
3.8053639465525413`*^9, 3.8053639591845055`*^9}, 3.8053640908674974`*^9,
3.805620917536372*^9, 3.8064058785778875`*^9, 3.8064071759288673`*^9,
3.8065406981377563`*^9, 3.8086436185980306`*^9, 3.8099439173897*^9,
3.810170709407029*^9, {3.810176766690672*^9, 3.8101767731433163`*^9},
3.81017734532937*^9, 3.8102898049868526`*^9, 3.8104515437870083`*^9,
3.810451856475818*^9, 3.810452893460295*^9, 3.8111175529742804`*^9,
3.811327849261872*^9, {3.8113279393333836`*^9, 3.8113279480723743`*^9},
3.8113280259733815`*^9, 3.8113286004032717`*^9, 3.811329356567622*^9,
3.811329484738566*^9, 3.8113989054460573`*^9, 3.812268846809332*^9,
3.81226889316922*^9, 3.8122690103400493`*^9, 3.8122690987592473`*^9,
3.812269252350277*^9, 3.8122693742515373`*^9, {3.813997788125594*^9,
3.813997796380415*^9}, {3.8139983753476295`*^9, 3.813998385522678*^9},
3.813999329980404*^9, 3.815876321501144*^9, 3.815897767607663*^9, {
3.8158978067904606`*^9, 3.8158978150701065`*^9}, 3.815905784005794*^9,
3.8159058749696712`*^9, 3.8159629530314465`*^9, {3.816155154666789*^9,
3.816155163356839*^9}, 3.8161553459441986`*^9, 3.816158505409712*^9,
3.8161605670068254`*^9, 3.816161344000531*^9, 3.8161614765930605`*^9, {
3.816393971767872*^9, 3.816394014578385*^9}, 3.816398507136846*^9,
3.816400453323474*^9, 3.816402571558982*^9, 3.816402766220252*^9,
3.816403191492338*^9, 3.8164059631902666`*^9, 3.816479177292028*^9,
3.8164805295330515`*^9, 3.816480828230856*^9, 3.816481138386397*^9,
3.816485829601904*^9, 3.8164859762654457`*^9, 3.816490430409772*^9,
3.816492661460352*^9, 3.8164934756706047`*^9, 3.816493562582728*^9,
3.8164965557469234`*^9, 3.816497774129631*^9, 3.816498357700448*^9,
3.81649861580081*^9, {3.8164997685224266`*^9, 3.816499780942444*^9}, {
3.8165000728928523`*^9, 3.8165001024328938`*^9}, {3.8165002540431075`*^9,
3.816500264923123*^9}, 3.8165003069031816`*^9, 3.8165103488809085`*^9, {
3.816511022980117*^9, 3.8165110340701327`*^9}, 3.8165112892044907`*^9,
3.8165122467048545`*^9, 3.8165123556330075`*^9, 3.8165971009694157`*^9, {
3.816598367286751*^9, 3.816598378083314*^9}, 3.8165987471442537`*^9,
3.8165992206551633`*^9, {3.8166046239803543`*^9, 3.81660464848608*^9},
3.816604986375765*^9, 3.816605229831006*^9, 3.8166054252406816`*^9,
3.8166055300106416`*^9, {3.816605679696431*^9, 3.8166056893674593`*^9},
3.816607134459524*^9, 3.8166072034269533`*^9, 3.8166073600590677`*^9,
3.816608439428149*^9, 3.81660861662737*^9, 3.816608664689082*^9,
3.8166087177670155`*^9, {3.816608922207114*^9, 3.816608935719941*^9},
3.816609356139346*^9, 3.8166094028400555`*^9, 3.816609479814725*^9, {
3.8166575114543657`*^9, 3.8166575263743863`*^9}, 3.8166578307368126`*^9,
3.816741596356328*^9, 3.816765657812229*^9, {3.816765927924611*^9,
3.816765935904622*^9}, 3.816766057063792*^9, 3.816766163629942*^9,
3.816766599360552*^9, 3.8167679688067536`*^9, 3.8167681830792017`*^9,
3.8167683970455027`*^9, 3.817220551749096*^9, {3.817221307131606*^9,
3.8172213339291344`*^9}, 3.81722138077862*^9, 3.8172825128904533`*^9,
3.8172830479075212`*^9, 3.8172831175370746`*^9, 3.8172833444867225`*^9,
3.81728372146799*^9, 3.817283777280297*^9, {3.8172838447327385`*^9,
3.8172838927725286`*^9}, {3.8172847457921457`*^9, 3.817284753833212*^9},
3.8172983952543087`*^9, {3.8172987038429585`*^9, 3.8172987101413193`*^9},
3.8172988328683386`*^9, 3.817299499225452*^9, 3.8173026642954836`*^9,
3.8173027850343895`*^9, 3.8173028706312857`*^9, 3.8173663561844196`*^9,
3.8173665454676857`*^9, {3.817366912979209*^9, 3.817366967149285*^9}, {
3.817367213252631*^9, 3.817367234033662*^9}, 3.817367347774826*^9,
3.8173680019611063`*^9, 3.817368055257188*^9, 3.817368248289468*^9,
3.8173682796565137`*^9, 3.8173683322135925`*^9, 3.817368787643263*^9,
3.8173689325694733`*^9, 3.8173692116858835`*^9, 3.81736936594011*^9,
3.8176331059449224`*^9, 3.8177032864012203`*^9, 3.8177034688588676`*^9,
3.817703654113967*^9, 3.817959695570821*^9, {3.8179597386996927`*^9,
3.8179597472692857`*^9}, 3.8179767212805853`*^9, 3.8179784547370834`*^9,
3.817978957391753*^9, 3.81822268971364*^9, 3.818223375283719*^9,
3.8182239076928716`*^9, 3.8182260260400057`*^9, 3.818552831584774*^9,
3.818553917123863*^9, 3.819447211057294*^9, {3.81951439551989*^9,
3.819514403144641*^9}, {3.8195254207373176`*^9, 3.8195254351497593`*^9},
3.8195256423247385`*^9, 3.819526706280012*^9, 3.8195267393285913`*^9,
3.819526823644109*^9, 3.819527032513508*^9, 3.819527447747608*^9,
3.819527927410202*^9, 3.8195290126641426`*^9, 3.8195291809206915`*^9,
3.8195382124541273`*^9, 3.8195397910240088`*^9, 3.819539960907793*^9,
3.819541456590888*^9, 3.8195416265176716`*^9, 3.819542767964566*^9,
3.819542909652337*^9, 3.819542995458125*^9, 3.819544897756106*^9,
3.81954511524102*^9, 3.8195452423237305`*^9, 3.81954816985725*^9, {
3.8197772337556524`*^9, 3.819777261081013*^9}, 3.8281672382066517`*^9,
3.828167277656561*^9, {3.8290204775974817`*^9, 3.82902048786981*^9},
3.8291244454777246`*^9, {3.8298084906683674`*^9, 3.829808496026455*^9},
3.8298182236403465`*^9, 3.8298198660882688`*^9, 3.829820254923048*^9,
3.829820394028205*^9, 3.8299211769942117`*^9, {3.8316127590055118`*^9,
3.831612765707348*^9}, {3.8316136074925976`*^9, 3.831613614238925*^9}, {
3.8316917821659236`*^9, 3.8316917869332356`*^9}, 3.8316918652128196`*^9,
3.8317815526248016`*^9, 3.8317818810689306`*^9, 3.831784891053197*^9,
3.832114825919411*^9, {3.835256571621307*^9, 3.8352565880051403`*^9}, {
3.835350608138979*^9, 3.8353506177077665`*^9}, {3.8361937676551332`*^9,
3.83619377470883*^9}, 3.8375134443414173`*^9, 3.8375141639117556`*^9,
3.8375142409114065`*^9, 3.8375145322698755`*^9, 3.83751459493592*^9,
3.838081800206114*^9, 3.8388713044952774`*^9, {3.8472483163918705`*^9,
3.847248333125599*^9}, 3.847251155722848*^9, 3.8472512414689407`*^9,
3.847251395294426*^9, 3.8472516764731846`*^9, 3.847252431809811*^9},
CellLabel->"Out[5]=",ExpressionUUID->"08e620d3-f918-4ff8-b1f3-0397e30ef0fe"]
}, Open ]],
Cell[BoxData[
RowBox[{
RowBox[{"(*",
RowBox[{"Options", "@", "getdata"}], "*)"}], "\[IndentingNewLine]",
RowBox[{"(*",
RowBox[{
"uncomment", " ", "this", " ", "line", " ", "if", " ", "you", " ", "want",
" ", "to", " ", "check", " ", "the", " ", "options", " ", "of", " ",
"getdata", " ", "function"}], "*)"}]}]], "Input",
CellChangeTimes->{{3.847248442240758*^9, 3.847248488639889*^9}, {
3.847248536826516*^9, 3.847248559431997*^9}},
CellLabel->"In[6]:=",ExpressionUUID->"8a78c811-d629-4e94-b64e-80be570723b7"],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"fname", "=",
RowBox[{"fpath", "\[LeftDoubleBracket]", "1", "\[RightDoubleBracket]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"{",
RowBox[{"db", ",", "data0", ",", "tspan"}], "}"}], "=",
RowBox[{"EchoTiming", "@",
RowBox[{"getdata", "[",
RowBox[{"fname", ",",
RowBox[{"\"\<Clip\[Sigma]\>\"", "\[Rule]", "10"}], ",",
RowBox[{"\"\<Crop\>\"", "\[Rule]",
RowBox[{"{",
RowBox[{"0", ",", "20"}], "}"}]}]}], "]"}]}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"(*",
RowBox[{
"import", " ", "the", " ", "light", " ", "curve", " ", "data", " ", "by",
" ", "using", " ", "getdata", " ", "function"}], "*)"}]}]}], "Input",
CellChangeTimes->{{3.8472483785069213`*^9, 3.847248392737199*^9}, {
3.847248425981442*^9, 3.8472484626315117`*^9}, {3.8472488736509275`*^9,
3.8472488750690126`*^9}, {3.8472517308474536`*^9, 3.8472517430627313`*^9}},
CellLabel->"In[7]:=",ExpressionUUID->"a16e0ff4-d85b-4940-90eb-7768eb5439d4"],
Cell[CellGroupData[{
Cell[BoxData["\<\"Catalina\"\>"], "Echo",
CellChangeTimes->{
3.8472524321286197`*^9},ExpressionUUID->"b3aad80f-16e9-4f87-b9ea-\
808f38ff02cb"],
Cell[BoxData["0.2675352`"], "EchoTiming",
CellChangeTimes->{
3.8472524321581044`*^9},ExpressionUUID->"81f0114d-cb8b-4509-8a29-\
203df5f40a6b"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"fig0", "=",
RowBox[{"ploter0", "[",
RowBox[{"data0", ",", "db"}], "]"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"(*",
RowBox[{"check", " ", "the", " ", "light", " ", "curve"}],
"*)"}]}]}], "Input",
CellChangeTimes->{{3.8472486776892953`*^9, 3.847248728148058*^9}, {
3.847248758257326*^9, 3.8472487963220515`*^9}, 3.847250147434415*^9, {
3.8472512736989036`*^9, 3.8472512748710766`*^9}},
CellLabel->"In[9]:=",ExpressionUUID->"69412237-9834-448e-be38-3082ff26a01b"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
"2005", ",", "2006", ",", "2007", ",", "2008", ",", "2009", ",", "2010",
",", "2011", ",", "2012", ",", "2013", ",", "2014"}], "}"}]], "Echo",
CellChangeTimes->{
3.847252432408953*^9},ExpressionUUID->"9278340a-c87a-47b7-b9c4-\
6cb21c3e864b"],
Cell[BoxData[
GraphicsBox[{{
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53706.29337, -14.149999999999999`}, {53706.29337, -14.2}}],
LineBox[{{53706.29337, -14.2}, {53706.29337, -14.25}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53706.3027, -14.209999999999999`}, {53706.3027, -14.27}}],
LineBox[{{53706.3027, -14.27}, {53706.3027, -14.33}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53706.31214, -14.28}, {53706.31214, -14.34}}],
LineBox[{{53706.31214, -14.34}, {53706.31214, -14.4}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53706.32154, -14.309999999999999`}, {53706.32154, -14.37}}],
LineBox[{{53706.32154, -14.37}, {53706.32154, -14.43}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53712.15876, -14.09}, {53712.15876, -14.14}}],
LineBox[{{53712.15876, -14.14}, {
53712.15876, -14.190000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53712.16597, -14.129999999999999`}, {53712.16597, -14.18}}],
LineBox[{{53712.16597, -14.18}, {53712.16597, -14.23}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53712.17317, -14.149999999999999`}, {53712.17317, -14.2}}],
LineBox[{{53712.17317, -14.2}, {53712.17317, -14.25}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53712.1804, -14.18}, {53712.1804, -14.24}}],
LineBox[{{53712.1804, -14.24}, {53712.1804, -14.3}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53728.10884, -14.01}, {53728.10884, -14.06}}],
LineBox[{{53728.10884, -14.06}, {
53728.10884, -14.110000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53728.1174, -14.01}, {53728.1174, -14.06}}],
LineBox[{{53728.1174, -14.06}, {53728.1174, -14.110000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53728.12594, -14.02}, {53728.12594, -14.07}}],
LineBox[{{53728.12594, -14.07}, {
53728.12594, -14.120000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53728.13445, -14.09}, {53728.13445, -14.14}}],
LineBox[{{53728.13445, -14.14}, {
53728.13445, -14.190000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53699.22508, -14.12}, {53699.22508, -14.17}}],
LineBox[{{53699.22508, -14.17}, {53699.22508, -14.22}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53699.23262, -14.049999999999999`}, {53699.23262, -14.1}}],
LineBox[{{53699.23262, -14.1}, {53699.23262, -14.15}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53699.24014, -14.01}, {53699.24014, -14.06}}],
LineBox[{{53699.24014, -14.06}, {
53699.24014, -14.110000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53699.24767, -13.979999999999999`}, {53699.24767, -14.03}}],
LineBox[{{53699.24767, -14.03}, {53699.24767, -14.08}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53672.29645, -14.29}, {53672.29645, -14.35}}],
LineBox[{{53672.29645, -14.35}, {53672.29645, -14.41}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53672.3018, -14.25}, {53672.3018, -14.31}}],
LineBox[{{53672.3018, -14.31}, {53672.3018, -14.370000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53672.30737, -14.209999999999999`}, {53672.30737, -14.26}}],
LineBox[{{53672.30737, -14.26}, {53672.30737, -14.31}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53672.31274, -14.16}, {53672.31274, -14.21}}],
LineBox[{{53672.31274, -14.21}, {
53672.31274, -14.260000000000002`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53637.40188, -14.049999999999999`}, {53637.40188, -14.1}}],
LineBox[{{53637.40188, -14.1}, {53637.40188, -14.15}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53637.41, -14.1}, {53637.41, -14.15}}],
LineBox[{{53637.41, -14.15}, {53637.41, -14.200000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53637.41812, -14.149999999999999`}, {53637.41812, -14.2}}],
LineBox[{{53637.41812, -14.2}, {53637.41812, -14.25}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53637.42625, -14.16}, {53637.42625, -14.22}}],
LineBox[{{53637.42625, -14.22}, {
53637.42625, -14.280000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53643.37207, -14.01}, {53643.37207, -14.06}}],
LineBox[{{53643.37207, -14.06}, {
53643.37207, -14.110000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53643.38142, -14.04}, {53643.38142, -14.09}}],
LineBox[{{53643.38142, -14.09}, {53643.38142, -14.14}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53643.39074, -14.1}, {53643.39074, -14.15}}],
LineBox[{{53643.39074, -14.15}, {
53643.39074, -14.200000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53643.40001, -14.149999999999999`}, {53643.40001, -14.2}}],
LineBox[{{53643.40001, -14.2}, {53643.40001, -14.25}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54084.15437, -14.19}, {54084.15437, -14.25}}],
LineBox[{{54084.15437, -14.25}, {54084.15437, -14.31}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{54084.16133, -14.229999999999999`}, {54084.16133, -14.28}}],
LineBox[{{54084.16133, -14.28}, {54084.16133, -14.33}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54084.16834, -14.29}, {54084.16834, -14.34}}],
LineBox[{{54084.16834, -14.34}, {54084.16834, -14.39}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{54084.17533, -14.299999999999999`}, {54084.17533, -14.36}}],
LineBox[{{54084.17533, -14.36}, {54084.17533, -14.42}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54094.18112, -14.19}, {54094.18112, -14.24}}],
LineBox[{{54094.18112, -14.24}, {
54094.18112, -14.290000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54094.19159, -14.17}, {54094.19159, -14.22}}],
LineBox[{{54094.19159, -14.22}, {
54094.19159, -14.270000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{54094.20204, -14.139999999999999`}, {54094.20204, -14.19}}],
LineBox[{{54094.20204, -14.19}, {54094.20204, -14.24}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54094.21248, -14.1}, {54094.21248, -14.15}}],
LineBox[{{54094.21248, -14.15}, {
54094.21248, -14.200000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53773.13864, -14.16}, {53773.13864, -14.22}}],
LineBox[{{53773.13864, -14.22}, {
53773.13864, -14.280000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53773.14617, -14.18}, {53773.14617, -14.24}}],
LineBox[{{53773.14617, -14.24}, {53773.14617, -14.3}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53773.15372, -14.16}, {53773.15372, -14.21}}],
LineBox[{{53773.15372, -14.21}, {
53773.15372, -14.260000000000002`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53773.16125, -14.129999999999999`}, {53773.16125, -14.18}}],
LineBox[{{53773.16125, -14.18}, {53773.16125, -14.23}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53740.07575, -14.01}, {53740.07575, -14.06}}],
LineBox[{{53740.07575, -14.06}, {
53740.07575, -14.110000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53740.08215, -14.02}, {53740.08215, -14.07}}],
LineBox[{{53740.08215, -14.07}, {
53740.08215, -14.120000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53740.08854, -14.04}, {53740.08854, -14.09}}],
LineBox[{{53740.08854, -14.09}, {53740.08854, -14.14}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53740.09491, -14.09}, {53740.09491, -14.14}}],
LineBox[{{53740.09491, -14.14}, {
53740.09491, -14.190000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53759.13481, -14.11}, {53759.13481, -14.16}}],
LineBox[{{53759.13481, -14.16}, {53759.13481, -14.21}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53759.14161, -14.08}, {53759.14161, -14.13}}],
LineBox[{{53759.14161, -14.13}, {
53759.14161, -14.180000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53759.1484, -14.049999999999999`}, {53759.1484, -14.1}}],
LineBox[{{53759.1484, -14.1}, {53759.1484, -14.15}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53759.15518, -14.02}, {53759.15518, -14.07}}],
LineBox[{{53759.15518, -14.07}, {
53759.15518, -14.120000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54053.23616, -14.18}, {54053.23616, -14.23}}],
LineBox[{{54053.23616, -14.23}, {
54053.23616, -14.280000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54053.24262, -14.2}, {54053.24262, -14.25}}],
LineBox[{{54053.24262, -14.25}, {54053.24262, -14.3}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54053.24908, -14.19}, {54053.24908, -14.25}}],
LineBox[{{54053.24908, -14.25}, {54053.24908, -14.31}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54053.25553, -14.16}, {54053.25553, -14.22}}],
LineBox[{{54053.25553, -14.22}, {
54053.25553, -14.280000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54062.1749, -14.02}, {54062.1749, -14.07}}],
LineBox[{{54062.1749, -14.07}, {54062.1749, -14.120000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{54062.1803, -14.059999999999999`}, {54062.1803, -14.11}}],
LineBox[{{54062.1803, -14.11}, {54062.1803, -14.16}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54062.18571, -14.08}, {54062.18571, -14.13}}],
LineBox[{{54062.18571, -14.13}, {
54062.18571, -14.180000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54062.19111, -14.11}, {54062.19111, -14.16}}],
LineBox[{{54062.19111, -14.16}, {54062.19111, -14.21}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54027.26302, -14.19}, {54027.26302, -14.24}}],
LineBox[{{54027.26302, -14.24}, {
54027.26302, -14.290000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54027.27161, -14.18}, {54027.27161, -14.23}}],
LineBox[{{54027.27161, -14.23}, {
54027.27161, -14.280000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{54027.28019, -14.139999999999999`}, {54027.28019, -14.19}}],
LineBox[{{54027.28019, -14.19}, {54027.28019, -14.24}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54027.28881, -14.09}, {54027.28881, -14.14}}],
LineBox[{{54027.28881, -14.14}, {
54027.28881, -14.190000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{54035.2882, -14.139999999999999`}, {54035.2882, -14.19}}],
LineBox[{{54035.2882, -14.19}, {54035.2882, -14.24}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54035.29547, -14.16}, {54035.29547, -14.21}}],
LineBox[{{54035.29547, -14.21}, {
54035.29547, -14.260000000000002`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54035.30268, -14.19}, {54035.30268, -14.24}}],
LineBox[{{54035.30268, -14.24}, {
54035.30268, -14.290000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54035.30989, -14.19}, {54035.30989, -14.24}}],
LineBox[{{54035.30989, -14.24}, {
54035.30989, -14.290000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53994.40848, -14.08}, {53994.40848, -14.13}}],
LineBox[{{53994.40848, -14.13}, {
53994.40848, -14.180000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{53994.41463, -14.049999999999999`}, {53994.41463, -14.1}}],
LineBox[{{53994.41463, -14.1}, {53994.41463, -14.15}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53994.42078, -14.01}, {53994.42078, -14.06}}],
LineBox[{{53994.42078, -14.06}, {
53994.42078, -14.110000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{53994.42693, -14.01}, {53994.42693, -14.06}}],
LineBox[{{53994.42693, -14.06}, {
53994.42693, -14.110000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54006.34542, -14.17}, {54006.34542, -14.22}}],
LineBox[{{54006.34542, -14.22}, {
54006.34542, -14.270000000000001`}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{54006.35273, -14.139999999999999`}, {54006.35273, -14.19}}],
LineBox[{{54006.35273, -14.19}, {54006.35273, -14.24}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54006.36004, -14.11}, {54006.36004, -14.16}}],
LineBox[{{54006.36004, -14.16}, {54006.36004, -14.21}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {
LineBox[{{54006.36731, -14.059999999999999`}, {54006.36731, -14.11}}],
LineBox[{{54006.36731, -14.11}, {54006.36731, -14.16}}]}},
Antialiasing->False,
FontFamily->"Times New Roman",
FontSize->18]},
{GrayLevel[0.8], AbsolutePointSize[3.5], AbsoluteThickness[2],
StyleBox[{{}, {LineBox[{{54450.19154, -14.18}, {54450.19154, -14.23}}],
LineBox[{{54450.19154, -14.23}, {
54450.19154, -14.280000000000001`}}]}},
Antialiasing->False,