-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC-V Sweep [Al_2.0_10(1) ; 11_15_2019 5_16_40 AM].csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 0 columns, instead of 2 in line 1.
executable file
·1060 lines (1060 loc) · 54.3 KB
/
C-V Sweep [Al_2.0_10(1) ; 11_15_2019 5_16_40 AM].csv
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
SetupTitle, C-V Sweep
PrimitiveTest, C-V Sweep
TestParameter, Channel.UnitTyp, CMU
TestParameter, Channel.Unit, CMU1:MF/SC
TestParameter, Channel.IName,
TestParameter, Channel.VName, VBias
TestParameter, Channel.Mode,
TestParameter, Channel.Func, VAR1
TestParameter, Channel.Index,
TestParameter, Channel.Time,
TestParameter, Measurement.Primary.Locus, Double
TestParameter, Measurement.Primary.Scale, LINEAR
TestParameter, Measurement.Primary.Start, -1
TestParameter, Measurement.Primary.Stop, 1
TestParameter, Measurement.Primary.Step, 0.02
TestParameter, Measurement.Aborting.Condition, CONTINUE AT ANY
TestParameter, Measurement.PostOutput.Value, START
TestParameter, Measurement.PostOutput.Retention, OFF
TestParameter, Measurement.Secondary.ACLevel, 0.05
TestParameter, Measurement.Secondary.FName, Freq
TestParameter, Measurement.Secondary.Frequency, 1000, 10000, 100000, 1000000
TestParameter, Measurement.Bias.Source, 0
TestParameter, Measurement.ImpedanceMode.Model, Cs-Rs
TestParameter, Measurement.ImpedanceMode.CName, C
TestParameter, Measurement.ImpedanceMode.LName, L
TestParameter, Measurement.ImpedanceMode.GName, G
TestParameter, Measurement.ImpedanceMode.RName, R
TestParameter, Measurement.ImpedanceMode.QName, Q
TestParameter, Measurement.ImpedanceMode.DName, D
TestParameter, Measurement.ImpedanceMode.YName, Y
TestParameter, Measurement.ImpedanceMode.ZName, Z
TestParameter, Measurement.ImpedanceMode.ThName, Theta
TestParameter, Measurement.ImpedanceMode.BName, B
TestParameter, Measurement.ImpedanceMode.XName, X
TestParameter, Measurement.Monitor.Unit, CMU1:MF/SC
TestParameter, Measurement.Monitor.RangingMode, AUTO
TestParameter, Measurement.Monitor.RangeBoundary, 50
TestParameter, Measurement.Monitor.AcMonitorSymbol,
TestParameter, Measurement.Monitor.DcMonitorSymbol,
TestParameter, Measurement.Timing.Hold, 0
TestParameter, Measurement.Timing.Delay, 0
TestParameter, Measurement.Adc.UnitType, Cmu, Smu
TestParameter, Measurement.Adc.HighResolution.Mode, AUTO, AUTO
TestParameter, Measurement.Adc.HighResolution.Coeff, 2, 6
TestParameter, Measurement.WaitTime.Source.Coeff, 1
TestParameter, Measurement.WaitTime.Source.Offset, 0
TestParameter, Measurement.WaitTime.Monitor.Coeff, 1
TestParameter, Measurement.WaitTime.Monitor.Offset, 0
TestParameter, Output.Graph.Enabled, true
TestParameter, Output.Graph.AutoScaling, false
TestParameter, Output.Graph.XAxis.Data, VBias
TestParameter, Output.Graph.XAxis.Scale, Linear
TestParameter, Output.Graph.XAxis.Left, -0.1
TestParameter, Output.Graph.XAxis.Right, 0.1
TestParameter, Output.Graph.XAxis.RunTimeAutoScale, true
TestParameter, Output.Graph.YAxis.Data, C, R
TestParameter, Output.Graph.YAxis.Scale, Linear, Linear
TestParameter, Output.Graph.YAxis.Bottom, 0, 0
TestParameter, Output.Graph.YAxis.Top, 1E-10, 10000
TestParameter, Output.Graph.YAxis.Group, ,
TestParameter, Output.Graph.YAxis.RunTimeAutoScale, true, true
TestParameter, AutoAnalysis.Interpolation, false
TestParameter, AutoAnalysis.Line1.Enabled, false
TestParameter, AutoAnalysis.Line1.Type, 1
TestParameter, AutoAnalysis.Line1.Fix, True
TestParameter, AutoAnalysis.Line1.YAxis, 0
TestParameter, AutoAnalysis.Line1.Point1.Type, 0
TestParameter, AutoAnalysis.Line1.Point1.XY.X,
TestParameter, AutoAnalysis.Line1.Point1.XY.Y,
TestParameter, AutoAnalysis.Line1.Point1.Data.Var,
TestParameter, AutoAnalysis.Line1.Point1.Data.Condition,
TestParameter, AutoAnalysis.Line1.Point1.Data.Start, false
TestParameter, AutoAnalysis.Line1.Point1.Data.StartVar,
TestParameter, AutoAnalysis.Line1.Point1.Data.StartCondition,
TestParameter, AutoAnalysis.Line1.Point2.Type, 0
TestParameter, AutoAnalysis.Line1.Point2.XY.X,
TestParameter, AutoAnalysis.Line1.Point2.XY.Y,
TestParameter, AutoAnalysis.Line1.Point2.Data.Var,
TestParameter, AutoAnalysis.Line1.Point2.Data.Condition,
TestParameter, AutoAnalysis.Line1.Point2.Data.Start, false
TestParameter, AutoAnalysis.Line1.Point2.Data.StartVar,
TestParameter, AutoAnalysis.Line1.Point2.Data.StartCondition,
TestParameter, AutoAnalysis.Line1.GradientExpr, 0
TestParameter, AutoAnalysis.Line2.Enabled, false
TestParameter, AutoAnalysis.Line2.Type, 1
TestParameter, AutoAnalysis.Line2.Fix, True
TestParameter, AutoAnalysis.Line2.YAxis, 0
TestParameter, AutoAnalysis.Line2.Point1.Type, 0
TestParameter, AutoAnalysis.Line2.Point1.XY.X,
TestParameter, AutoAnalysis.Line2.Point1.XY.Y,
TestParameter, AutoAnalysis.Line2.Point1.Data.Var,
TestParameter, AutoAnalysis.Line2.Point1.Data.Condition,
TestParameter, AutoAnalysis.Line2.Point1.Data.Start, false
TestParameter, AutoAnalysis.Line2.Point1.Data.StartVar,
TestParameter, AutoAnalysis.Line2.Point1.Data.StartCondition,
TestParameter, AutoAnalysis.Line2.Point2.Type, 0
TestParameter, AutoAnalysis.Line2.Point2.XY.X,
TestParameter, AutoAnalysis.Line2.Point2.XY.Y,
TestParameter, AutoAnalysis.Line2.Point2.Data.Var,
TestParameter, AutoAnalysis.Line2.Point2.Data.Condition,
TestParameter, AutoAnalysis.Line2.Point2.Data.Start, false
TestParameter, AutoAnalysis.Line2.Point2.Data.StartVar,
TestParameter, AutoAnalysis.Line2.Point2.Data.StartCondition,
TestParameter, AutoAnalysis.Line2.GradientExpr, 0
TestParameter, AutoAnalysis.Marker.Enabled, false
TestParameter, AutoAnalysis.Marker.Data.Var,
TestParameter, AutoAnalysis.Marker.Data.Condition,
TestParameter, AutoAnalysis.Marker.Data.Start, false
TestParameter, AutoAnalysis.Marker.Data.StartVar,
TestParameter, AutoAnalysis.Marker.Data.StartCondition,
MetaData, TestRecord.EntryPoint, true
MetaData, TestRecord.RecordTime, 11/15/2019 05:16:40
MetaData, TestRecord.TestTarget, Al_2.0_10
MetaData, TestRecord.IterationIndex, 1
MetaData, TestRecord.Preservation, true
MetaData, TestRecord.Flag,
MetaData, TestRecord.Remarks,
MetaData, TestRecord.LinkKey, ea276ea5-85b0-4778-a8b9-a4d0a5ea88f1
AnalysisSetup, Analysis.Setup.Vector.Graph.Enabled, true
AnalysisSetup, Analysis.Setup.Vector.Graph.ActiveYAxis, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.LeftYAxis, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.RightYAxis, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.XAxis.Name, VBias
AnalysisSetup, Analysis.Setup.Vector.Graph.XAxis.GroupName,
AnalysisSetup, Analysis.Setup.Vector.Graph.XAxis.RunTimeAutoScale, true
AnalysisSetup, Analysis.Setup.Vector.Graph.XAxis.Unit, V
AnalysisSetup, Analysis.Setup.Vector.Graph.XAxis.Scale, Linear
AnalysisSetup, Analysis.Setup.Vector.Graph.XAxis.Left, -1
AnalysisSetup, Analysis.Setup.Vector.Graph.XAxis.Right, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.YAxis.Name, C, R
AnalysisSetup, Analysis.Setup.Vector.Graph.YAxis.GroupName, ,
AnalysisSetup, Analysis.Setup.Vector.Graph.YAxis.RunTimeAutoScale, true, true
AnalysisSetup, Analysis.Setup.Vector.Graph.YAxis.Unit, F, ohm
AnalysisSetup, Analysis.Setup.Vector.Graph.YAxis.Scale, Linear, Linear
AnalysisSetup, Analysis.Setup.Vector.Graph.YAxis.Bottom, 1.1E-10, 100
AnalysisSetup, Analysis.Setup.Vector.Graph.YAxis.Top, 2.4E-10, 43000
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Marker.Enabled, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Marker.Interpolation, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Marker.Index, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Marker.Step, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Cursor.Enabled, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Cursor.Active, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Cursor.NormalX, 0.5
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Cursor.NormalY, -0.46153846153846145
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Enabled, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Active, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Fix, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Type, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.YAxisIndex, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.LastIndex, -1
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.LastStep, -1
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Cursor1.Enabled, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Cursor1.Active, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Cursor1.NormalX, 0.5
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Cursor1.NormalY, -0.46153846153846145
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Cursor2.Enabled, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Cursor2.Active, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Cursor2.NormalX, 0.5
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Cursor2.NormalY, -0.46153846153846145
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line1.Gradient,
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Enabled, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Active, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Fix, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Type, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.YAxisIndex, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.LastIndex, -1
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.LastStep, -1
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Cursor1.Enabled, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Cursor1.Active, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Cursor1.NormalX, 0.5
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Cursor1.NormalY, -0.46153846153846145
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Cursor2.Enabled, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Cursor2.Active, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Cursor2.NormalX, 0.5
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Cursor2.NormalY, -0.46153846153846145
AnalysisSetup, Analysis.Setup.Vector.Graph.Operation.Line2.Gradient,
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.BackgroundColor, -1
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.TextColor, -16777216
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.GridColor, -3618616
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.LineColor, -65336
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Var2LabelColor, -11513776
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.ChangeToColor, -24416
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.GridStyle, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.LineStyle, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Var2LabelStyle, Adjacent
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y1.Visible, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y1.PlotColor, -16777036
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y1.Thickness, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y1.PlotStyle, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y2.Visible, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y2.PlotColor, -39936
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y2.Thickness, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y2.PlotStyle, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y3.Visible, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y3.PlotColor, -16731136
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y3.Thickness, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y3.PlotStyle, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y4.Visible, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y4.PlotColor, -8892376
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y4.Thickness, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y4.PlotStyle, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y5.Visible, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y5.PlotColor, -65536
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y5.Thickness, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y5.PlotStyle, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y6.Visible, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y6.PlotColor, -14336
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y6.Thickness, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y6.PlotStyle, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y7.Visible, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y7.PlotColor, -6946586
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y7.Thickness, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y7.PlotStyle, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y8.Visible, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y8.PlotColor, -16733546
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y8.Thickness, 1
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Plots.Y8.PlotStyle, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Text.AxisTitle.FontName, Tahoma
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Text.AxisTitle.RelativeSize, Medium
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Text.AxisTitle.Size, 7
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Text.ScaleText.FontName, Tahoma
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Text.ScaleText.RelativeSize, Medium
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Text.ScaleText.Size, 7
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Text.Legend.FontName, Tahoma
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Text.Legend.RelativeSize, Medium
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Text.Legend.Size, 7
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Scale.LogTickedDecadeCount, 6
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.LogoVisible, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.GridVisible, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.SetupSummaryVisible, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.ChangeColorEnabled, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.MinorTicksValueVisible, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.CursorFormat, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.CursorDigits, 6
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.MarkerFormat, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.MarkerDigits, 6
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.InterceptFormat, 0
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.InterceptDigits, 6
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.Var2LabelVisible, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.ParametersVisible, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.GridNumberFixity, false
AnalysisSetup, Analysis.Setup.Vector.Graph.Preference.AddsVerticalMargin, true
AnalysisSetup, Analysis.Setup.Vector.Graph.Notes,
AnalysisSetup, Analysis.Setup.Vector.Graph.SetupInfo, 0 0 0
AnalysisSetup, Analysis.Setup.Preference.GraphVisible, true
AnalysisSetup, Analysis.Setup.Preference.ListVisible, true
AnalysisSetup, Analysis.Setup.Preference.ScalarVisible, true
AnalysisSetup, Analysis.Setup.Title, C-V Sweep
Dimension1, 202, 202, 202
Dimension2, 4, 4, 4
DataName, VBias, C, R
DataValue, -1, 2.32091E-10, 41748.700000000004
DataValue, -0.98, 2.32028E-10, 41760.44
DataValue, -0.96, 2.32013E-10, 41768.14
DataValue, -0.94000000000000006, 2.31911E-10, 41850.11
DataValue, -0.92, 2.3184200000000002E-10, 41766.53
DataValue, -0.9, 2.3174600000000002E-10, 41703.19
DataValue, -0.88, 2.3171700000000003E-10, 41516.89
DataValue, -0.86, 2.3167200000000003E-10, 41806.28
DataValue, -0.84, 2.3158300000000002E-10, 41811.92
DataValue, -0.82000000000000006, 2.3154500000000003E-10, 41545.62
DataValue, -0.8, 2.3150500000000002E-10, 41655.23
DataValue, -0.78, 2.3143900000000002E-10, 41551.01
DataValue, -0.76, 2.3144600000000003E-10, 41570.96
DataValue, -0.74, 2.3137200000000002E-10, 41861.78
DataValue, -0.72, 2.3132500000000003E-10, 41530.93
DataValue, -0.70000000000000007, 2.3128500000000002E-10, 41423.63
DataValue, -0.68, 2.3120900000000001E-10, 41461.85
DataValue, -0.66, 2.3120600000000001E-10, 41426.91
DataValue, -0.64, 2.3116E-10, 41453.520000000004
DataValue, -0.62, 2.31112E-10, 41573.06
DataValue, -0.6, 2.31109E-10, 41630.4
DataValue, -0.58, 2.3104800000000003E-10, 41644.950000000004
DataValue, -0.56, 2.3098500000000003E-10, 41561.31
DataValue, -0.54, 2.3098200000000003E-10, 41523.97
DataValue, -0.52, 2.3097700000000001E-10, 41457.61
DataValue, -0.5, 2.3090800000000002E-10, 41418.35
DataValue, -0.48, 2.30901E-10, 41326.5
DataValue, -0.46, 2.3085100000000002E-10, 41445.41
DataValue, -0.44, 2.3077300000000002E-10, 41446.74
DataValue, -0.42, 2.3079500000000003E-10, 41410.21
DataValue, -0.4, 2.3072400000000001E-10, 41442.64
DataValue, -0.38, 2.30705E-10, 41356.89
DataValue, -0.36, 2.3068800000000002E-10, 41368.06
DataValue, -0.34, 2.30606E-10, 41376.9
DataValue, -0.32, 2.3059200000000002E-10, 41415.69
DataValue, -0.3, 2.3056900000000003E-10, 41341.78
DataValue, -0.28, 2.3057100000000002E-10, 41272.42
DataValue, -0.26, 2.3051800000000003E-10, 41391.28
DataValue, -0.24, 2.3049900000000002E-10, 41294.23
DataValue, -0.22, 2.3048000000000002E-10, 41168.090000000004
DataValue, -0.2, 2.3042900000000002E-10, 41285.67
DataValue, -0.18, 2.3043900000000003E-10, 41282.99
DataValue, -0.16, 2.3045000000000002E-10, 41324.44
DataValue, -0.14, 2.3041400000000002E-10, 41270.78
DataValue, -0.12, 2.3040200000000002E-10, 41279.67
DataValue, -0.1, 2.3036600000000002E-10, 41237.5
DataValue, -0.08, 2.3033700000000003E-10, 41357.35
DataValue, -0.06, 2.30341E-10, 41376.31
DataValue, -0.04, 2.3031300000000003E-10, 41443.47
DataValue, -0.02, 2.3029500000000003E-10, 41481.39
DataValue, 0, 2.30323E-10, 41329.81
DataValue, 0.02, 2.3031600000000003E-10, 41319.090000000004
DataValue, 0.04, 2.3029600000000001E-10, 41461.23
DataValue, 0.06, 2.30277E-10, 41477.22
DataValue, 0.08, 2.3031000000000003E-10, 41468.03
DataValue, 0.1, 2.30262E-10, 41614.72
DataValue, 0.12, 2.3028E-10, 41447.86
DataValue, 0.14, 2.3029400000000002E-10, 41539.42
DataValue, 0.16, 2.3028400000000001E-10, 41430.79
DataValue, 0.18, 2.3030400000000003E-10, 41452.520000000004
DataValue, 0.2, 2.30314E-10, 41449.44
DataValue, 0.22, 2.30274E-10, 41553.96
DataValue, 0.24, 2.3030900000000002E-10, 41516.05
DataValue, 0.26, 2.30332E-10, 41505.06
DataValue, 0.28, 2.30356E-10, 41454.6
DataValue, 0.3, 2.3035800000000003E-10, 41485.55
DataValue, 0.32, 2.3035500000000003E-10, 41484.01
DataValue, 0.34, 2.3036400000000003E-10, 41542.11
DataValue, 0.36, 2.30374E-10, 41597
DataValue, 0.38, 2.3035700000000002E-10, 41568.43
DataValue, 0.4, 2.3039700000000003E-10, 41502.81
DataValue, 0.42, 2.30395E-10, 41623.48
DataValue, 0.44, 2.3043600000000003E-10, 41559.16
DataValue, 0.46, 2.3046600000000002E-10, 41335.92
DataValue, 0.48, 2.3046300000000002E-10, 41601.15
DataValue, 0.5, 2.3049800000000001E-10, 41544.75
DataValue, 0.52, 2.3054700000000002E-10, 41661.12
DataValue, 0.54, 2.3057400000000002E-10, 41528.1
DataValue, 0.56, 2.3058700000000003E-10, 41488.98
DataValue, 0.58, 2.30609E-10, 41573.68
DataValue, 0.6, 2.3064400000000003E-10, 41580.53
DataValue, 0.62, 2.3071500000000001E-10, 41712.03
DataValue, 0.64, 2.3069100000000002E-10, 41555.99
DataValue, 0.66, 2.3072700000000001E-10, 41592.93
DataValue, 0.68, 2.3075800000000002E-10, 41725.37
DataValue, 0.70000000000000007, 2.3082100000000002E-10, 41765.340000000004
DataValue, 0.72, 2.3080300000000002E-10, 41743.14
DataValue, 0.74, 2.30838E-10, 41663.57
DataValue, 0.76, 2.3088700000000002E-10, 41654.39
DataValue, 0.78, 2.3091400000000002E-10, 41643.81
DataValue, 0.8, 2.3097500000000002E-10, 41807.43
DataValue, 0.82000000000000006, 2.3103800000000002E-10, 41787.82
DataValue, 0.84, 2.3105900000000002E-10, 41711.19
DataValue, 0.86, 2.3108000000000002E-10, 41817.43
DataValue, 0.88, 2.3111400000000003E-10, 41687.51
DataValue, 0.9, 2.3118600000000002E-10, 41576.6
DataValue, 0.92, 2.3124700000000003E-10, 41650.87
DataValue, 0.94000000000000006, 2.31269E-10, 41685.99
DataValue, 0.96, 2.3133100000000003E-10, 41837.56
DataValue, 0.98, 2.3140300000000002E-10, 41885.450000000004
DataValue, 1, 2.3140500000000001E-10, 41894.26
DataValue, 1, 2.31453E-10, 41881.69
DataValue, 0.98, 2.3141400000000001E-10, 41773.65
DataValue, 0.96, 2.3136600000000002E-10, 41612.270000000004
DataValue, 0.94000000000000006, 2.31272E-10, 41708.66
DataValue, 0.92, 2.3121600000000002E-10, 41778.48
DataValue, 0.9, 2.3117600000000001E-10, 41723.91
DataValue, 0.88, 2.31142E-10, 41809.67
DataValue, 0.86, 2.3108400000000003E-10, 41791.97
DataValue, 0.84, 2.31025E-10, 41887.25
DataValue, 0.82000000000000006, 2.3097700000000001E-10, 41759.270000000004
DataValue, 0.8, 2.3098000000000001E-10, 41855.63
DataValue, 0.78, 2.3090800000000002E-10, 41898.37
DataValue, 0.76, 2.30856E-10, 41919.92
DataValue, 0.74, 2.3083900000000002E-10, 41932.18
DataValue, 0.72, 2.3079200000000003E-10, 41843.07
DataValue, 0.70000000000000007, 2.3076400000000002E-10, 41906.38
DataValue, 0.68, 2.30693E-10, 41816.41
DataValue, 0.66, 2.3067000000000002E-10, 41812.32
DataValue, 0.64, 2.3067900000000002E-10, 41799.65
DataValue, 0.62, 2.3063400000000002E-10, 41875.63
DataValue, 0.6, 2.30624E-10, 41820.4
DataValue, 0.58, 2.3061900000000002E-10, 41808.83
DataValue, 0.56, 2.30561E-10, 41736.85
DataValue, 0.54, 2.3055000000000002E-10, 41882.61
DataValue, 0.52, 2.3052900000000002E-10, 41677.66
DataValue, 0.5, 2.3052200000000001E-10, 41867.21
DataValue, 0.48, 2.3051500000000003E-10, 41677.08
DataValue, 0.46, 2.3047500000000002E-10, 41767.98
DataValue, 0.44, 2.3045000000000002E-10, 41842.26
DataValue, 0.42, 2.3045000000000002E-10, 41691.6
DataValue, 0.4, 2.3039100000000003E-10, 41740.16
DataValue, 0.38, 2.3037200000000002E-10, 41751.6
DataValue, 0.36, 2.30353E-10, 41891.450000000004
DataValue, 0.34, 2.3034900000000003E-10, 41774.29
DataValue, 0.32, 2.3035100000000002E-10, 41771.93
DataValue, 0.3, 2.30305E-10, 41721.29
DataValue, 0.28, 2.3033000000000002E-10, 41829.950000000004
DataValue, 0.26, 2.3029600000000001E-10, 41815.32
DataValue, 0.24, 2.3032100000000002E-10, 41802.23
DataValue, 0.22, 2.3031300000000003E-10, 41900.21
DataValue, 0.2, 2.3032400000000002E-10, 41813.79
DataValue, 0.18, 2.3030000000000002E-10, 41802.31
DataValue, 0.16, 2.3034000000000003E-10, 41912.41
DataValue, 0.14, 2.30326E-10, 41911.57
DataValue, 0.12, 2.3033100000000003E-10, 41941.56
DataValue, 0.1, 2.3034600000000003E-10, 42077.47
DataValue, 0.08, 2.3035800000000003E-10, 41994.43
DataValue, 0.06, 2.3036100000000003E-10, 41948.88
DataValue, 0.04, 2.3033900000000002E-10, 41924.55
DataValue, 0.02, 2.3038100000000002E-10, 41991.22
DataValue, 0, 2.3034900000000003E-10, 41981.91
DataValue, -0.02, 2.30377E-10, 42057.14
DataValue, -0.04, 2.30404E-10, 42000.86
DataValue, -0.06, 2.3039400000000003E-10, 42018.42
DataValue, -0.08, 2.3040000000000003E-10, 42041.15
DataValue, -0.1, 2.3045600000000002E-10, 41960.88
DataValue, -0.12, 2.3047100000000002E-10, 41925.63
DataValue, -0.14, 2.3049800000000001E-10, 41980.06
DataValue, -0.16, 2.3051000000000001E-10, 41938.78
DataValue, -0.18, 2.3052100000000003E-10, 41912.68
DataValue, -0.2, 2.30531E-10, 42048.590000000004
DataValue, -0.22, 2.3058000000000002E-10, 42010.590000000004
DataValue, -0.24, 2.3059000000000003E-10, 41994.46
DataValue, -0.26, 2.3062200000000002E-10, 42083.05
DataValue, -0.28, 2.30618E-10, 42097
DataValue, -0.3, 2.3066E-10, 42082.05
DataValue, -0.32, 2.30672E-10, 42225.72
DataValue, -0.34, 2.3066400000000002E-10, 42124.71
DataValue, -0.36, 2.3071000000000002E-10, 42046.54
DataValue, -0.38, 2.30784E-10, 41938.58
DataValue, -0.4, 2.3075600000000003E-10, 41962.6
DataValue, -0.42, 2.3077900000000002E-10, 42077.62
DataValue, -0.44, 2.30859E-10, 41952.12
DataValue, -0.46, 2.3087800000000002E-10, 42018.090000000004
DataValue, -0.48, 2.3090600000000002E-10, 41957.38
DataValue, -0.5, 2.30943E-10, 42007.76
DataValue, -0.52, 2.30989E-10, 42119.07
DataValue, -0.54, 2.3103000000000003E-10, 42263.840000000004
DataValue, -0.56, 2.31076E-10, 42138.92
DataValue, -0.58, 2.3116400000000002E-10, 42339.93
DataValue, -0.6, 2.3118500000000001E-10, 42398.020000000004
DataValue, -0.62, 2.3124600000000002E-10, 42373.08
DataValue, -0.64, 2.3134900000000003E-10, 42283.01
DataValue, -0.66, 2.3134500000000002E-10, 42373.88
DataValue, -0.68, 2.31386E-10, 42423
DataValue, -0.70000000000000007, 2.3141400000000001E-10, 42480.89
DataValue, -0.72, 2.31495E-10, 42419.450000000004
DataValue, -0.74, 2.3153900000000003E-10, 42405.61
DataValue, -0.76, 2.3159000000000002E-10, 42520.6
DataValue, -0.78, 2.316E-10, 42473.3
DataValue, -0.8, 2.3165900000000002E-10, 42474.63
DataValue, -0.82000000000000006, 2.3168100000000003E-10, 42617.6
DataValue, -0.84, 2.3171300000000002E-10, 42581.21
DataValue, -0.86, 2.3176400000000002E-10, 42660.05
DataValue, -0.88, 2.31769E-10, 42690.23
DataValue, -0.9, 2.3186100000000002E-10, 42651.090000000004
DataValue, -0.92, 2.3192100000000002E-10, 42593.75
DataValue, -0.94000000000000006, 2.3197600000000003E-10, 42600.19
DataValue, -0.96, 2.3204500000000002E-10, 42549.42
DataValue, -0.98, 2.3210300000000003E-10, 42542.06
DataValue, -1, 2.32137E-10, 42692.47
DataValue, -1, 1.95779E-10, 21886.96
DataValue, -0.98, 1.95573E-10, 21923.21
DataValue, -0.96, 1.9562000000000002E-10, 21916.48
DataValue, -0.94000000000000006, 1.95543E-10, 21901.850000000002
DataValue, -0.92, 1.9554500000000002E-10, 21902.68
DataValue, -0.9, 1.95552E-10, 21889.420000000002
DataValue, -0.88, 1.95342E-10, 21914.88
DataValue, -0.86, 1.95239E-10, 21895.86
DataValue, -0.84, 1.9527000000000001E-10, 21907.89
DataValue, -0.82000000000000006, 1.9541900000000003E-10, 21880.45
DataValue, -0.8, 1.9528800000000001E-10, 21854.5
DataValue, -0.78, 1.95574E-10, 21789.39
DataValue, -0.76, 1.9530700000000002E-10, 21846.23
DataValue, -0.74, 1.9553600000000002E-10, 21732.4
DataValue, -0.72, 1.9525000000000002E-10, 21803.170000000002
DataValue, -0.70000000000000007, 1.9543900000000002E-10, 21754.53
DataValue, -0.68, 1.95284E-10, 21779.62
DataValue, -0.66, 1.95082E-10, 21792.21
DataValue, -0.64, 1.9526E-10, 21727.23
DataValue, -0.62, 1.9479200000000002E-10, 21806.49
DataValue, -0.6, 1.9489700000000002E-10, 21799.96
DataValue, -0.58, 1.9476E-10, 21810.12
DataValue, -0.56, 1.94898E-10, 21783.56
DataValue, -0.54, 1.9521400000000003E-10, 21698.43
DataValue, -0.52, 1.9490000000000002E-10, 21734.53
DataValue, -0.5, 1.9483100000000002E-10, 21773.260000000002
DataValue, -0.48, 1.9482500000000002E-10, 21765.260000000002
DataValue, -0.46, 1.94826E-10, 21752.29
DataValue, -0.44, 1.9457400000000002E-10, 21797.77
DataValue, -0.42, 1.94887E-10, 21743
DataValue, -0.4, 1.9469900000000003E-10, 21757.100000000002
DataValue, -0.38, 1.94639E-10, 21767.41
DataValue, -0.36, 1.94374E-10, 21847.24
DataValue, -0.34, 1.94519E-10, 21788.31
DataValue, -0.32, 1.94486E-10, 21781.48
DataValue, -0.3, 1.94419E-10, 21783.420000000002
DataValue, -0.28, 1.9456000000000002E-10, 21751.07
DataValue, -0.26, 1.93994E-10, 21909.670000000002
DataValue, -0.24, 1.9420400000000002E-10, 21851.91
DataValue, -0.22, 1.9404500000000003E-10, 21874.19
DataValue, -0.2, 1.94443E-10, 21803.34
DataValue, -0.18, 1.9495400000000002E-10, 21669.57
DataValue, -0.16, 1.9445400000000002E-10, 21782.54
DataValue, -0.14, 1.94429E-10, 21779.32
DataValue, -0.12, 1.9413E-10, 21828.8
DataValue, -0.1, 1.9453600000000003E-10, 21754.36
DataValue, -0.08, 1.9426200000000003E-10, 21795.09
DataValue, -0.06, 1.9410100000000002E-10, 21876.62
DataValue, -0.04, 1.9439000000000001E-10, 21764.15
DataValue, -0.02, 1.94037E-10, 21839.27
DataValue, 0, 1.9382400000000002E-10, 21866.99
DataValue, 0.02, 1.93931E-10, 21875.59
DataValue, 0.04, 1.93962E-10, 21862.04
DataValue, 0.06, 1.9405300000000002E-10, 21831.41
DataValue, 0.08, 1.9405000000000002E-10, 21861.12
DataValue, 0.1, 1.9370000000000001E-10, 21962.09
DataValue, 0.12, 1.94016E-10, 21872.22
DataValue, 0.14, 1.9421000000000002E-10, 21814.16
DataValue, 0.16, 1.9392700000000002E-10, 21857.670000000002
DataValue, 0.18, 1.93781E-10, 21911.49
DataValue, 0.2, 1.9390300000000002E-10, 21857.48
DataValue, 0.22, 1.9396300000000002E-10, 21858.37
DataValue, 0.24, 1.9396300000000002E-10, 21859.46
DataValue, 0.26, 1.9407E-10, 21793.82
DataValue, 0.28, 1.9398E-10, 21868.15
DataValue, 0.3, 1.9388500000000002E-10, 21895.36
DataValue, 0.32, 1.93844E-10, 21903.260000000002
DataValue, 0.34, 1.93645E-10, 21952.59
DataValue, 0.36, 1.9370100000000002E-10, 21953.24
DataValue, 0.38, 1.9374600000000002E-10, 21936.34
DataValue, 0.4, 1.9390000000000002E-10, 21873.37
DataValue, 0.42, 1.94079E-10, 21851.97
DataValue, 0.44, 1.9409500000000002E-10, 21854.28
DataValue, 0.46, 1.94202E-10, 21862.89
DataValue, 0.48, 1.9422E-10, 21829.33
DataValue, 0.5, 1.94203E-10, 21816.510000000002
DataValue, 0.52, 1.9387900000000002E-10, 21904.78
DataValue, 0.54, 1.94432E-10, 21789.45
DataValue, 0.56, 1.9428900000000003E-10, 21839.920000000002
DataValue, 0.58, 1.9433600000000002E-10, 21844.89
DataValue, 0.6, 1.9439400000000002E-10, 21848.09
DataValue, 0.62, 1.9424400000000003E-10, 21874.23
DataValue, 0.64, 1.9424400000000003E-10, 21850.850000000002
DataValue, 0.66, 1.94217E-10, 21861.350000000002
DataValue, 0.68, 1.94203E-10, 21868
DataValue, 0.70000000000000007, 1.9439700000000002E-10, 21872.94
DataValue, 0.72, 1.9446400000000003E-10, 21836.65
DataValue, 0.74, 1.94516E-10, 21841.87
DataValue, 0.76, 1.9453500000000002E-10, 21829.59
DataValue, 0.78, 1.9470400000000002E-10, 21839.14
DataValue, 0.8, 1.94772E-10, 21784.63
DataValue, 0.82000000000000006, 1.9459600000000002E-10, 21846.95
DataValue, 0.84, 1.9485200000000002E-10, 21788.420000000002
DataValue, 0.86, 1.9453200000000002E-10, 21867.420000000002
DataValue, 0.88, 1.9475800000000002E-10, 21827.41
DataValue, 0.9, 1.9499000000000002E-10, 21787.44
DataValue, 0.92, 1.9493700000000003E-10, 21792.43
DataValue, 0.94000000000000006, 1.94884E-10, 21791.86
DataValue, 0.96, 1.9501800000000002E-10, 21796.52
DataValue, 0.98, 1.95046E-10, 21799.68
DataValue, 1, 1.9514800000000003E-10, 21769.34
DataValue, 1, 1.9487600000000002E-10, 21841.87
DataValue, 0.98, 1.9527700000000002E-10, 21730.16
DataValue, 0.96, 1.9531900000000002E-10, 21726.21
DataValue, 0.94000000000000006, 1.95113E-10, 21778.62
DataValue, 0.92, 1.9492400000000002E-10, 21801.84
DataValue, 0.9, 1.94724E-10, 21817.48
DataValue, 0.88, 1.94895E-10, 21809.21
DataValue, 0.86, 1.94745E-10, 21823.93
DataValue, 0.84, 1.94878E-10, 21757.38
DataValue, 0.82000000000000006, 1.94896E-10, 21777.03
DataValue, 0.8, 1.9461600000000001E-10, 21820.09
DataValue, 0.78, 1.947E-10, 21779.52
DataValue, 0.76, 1.9470500000000003E-10, 21789.05
DataValue, 0.74, 1.94667E-10, 21773.8
DataValue, 0.72, 1.9493900000000002E-10, 21704.97
DataValue, 0.70000000000000007, 1.9485E-10, 21749.79
DataValue, 0.68, 1.9477300000000002E-10, 21783.28
DataValue, 0.66, 1.94883E-10, 21703.8
DataValue, 0.64, 1.94802E-10, 21712.81
DataValue, 0.62, 1.9465000000000002E-10, 21773.24
DataValue, 0.6, 1.9448800000000003E-10, 21756.55
DataValue, 0.58, 1.9438200000000002E-10, 21812.27
DataValue, 0.56, 1.94636E-10, 21759.2
DataValue, 0.54, 1.94465E-10, 21798.010000000002
DataValue, 0.52, 1.9460200000000002E-10, 21724.37
DataValue, 0.5, 1.9455300000000002E-10, 21737.36
DataValue, 0.48, 1.94296E-10, 21796.02
DataValue, 0.46, 1.9438200000000002E-10, 21794.36
DataValue, 0.44, 1.94233E-10, 21812.11
DataValue, 0.42, 1.94452E-10, 21775.86
DataValue, 0.4, 1.9434800000000002E-10, 21763.81
DataValue, 0.38, 1.94504E-10, 21718.25
DataValue, 0.36, 1.93947E-10, 21861.14
DataValue, 0.34, 1.94335E-10, 21753.25
DataValue, 0.32, 1.9438E-10, 21778.510000000002
DataValue, 0.3, 1.9436600000000001E-10, 21773.7
DataValue, 0.28, 1.9443300000000002E-10, 21729.420000000002
DataValue, 0.26, 1.94365E-10, 21756.77
DataValue, 0.24, 1.9434900000000002E-10, 21763.59
DataValue, 0.22, 1.94359E-10, 21768.16
DataValue, 0.2, 1.9432800000000002E-10, 21802.66
DataValue, 0.18, 1.9416800000000002E-10, 21794.78
DataValue, 0.16, 1.9415500000000001E-10, 21814.72
DataValue, 0.14, 1.9400200000000002E-10, 21865.68
DataValue, 0.12, 1.94209E-10, 21800.600000000002
DataValue, 0.1, 1.9406900000000003E-10, 21826.62
DataValue, 0.08, 1.9408400000000003E-10, 21852.49
DataValue, 0.06, 1.9422800000000002E-10, 21777.5
DataValue, 0.04, 1.94257E-10, 21833.87
DataValue, 0.02, 1.9402700000000003E-10, 21853.94
DataValue, 0, 1.9392600000000001E-10, 21895.7
DataValue, -0.02, 1.94157E-10, 21810.010000000002
DataValue, -0.04, 1.94248E-10, 21840.47
DataValue, -0.06, 1.9426200000000003E-10, 21817.670000000002
DataValue, -0.08, 1.9425500000000002E-10, 21816.25
DataValue, -0.1, 1.9453200000000002E-10, 21775.06
DataValue, -0.12, 1.9453500000000002E-10, 21747.72
DataValue, -0.14, 1.9437500000000001E-10, 21830.81
DataValue, -0.16, 1.9424000000000002E-10, 21875.55
DataValue, -0.18, 1.9445800000000003E-10, 21792.08
DataValue, -0.2, 1.9460400000000001E-10, 21771.920000000002
DataValue, -0.22, 1.9435800000000002E-10, 21842.66
DataValue, -0.24, 1.94377E-10, 21870.4
DataValue, -0.26, 1.94666E-10, 21800.68
DataValue, -0.28, 1.9459900000000002E-10, 21809.15
DataValue, -0.3, 1.9453000000000003E-10, 21817.13
DataValue, -0.32, 1.94661E-10, 21769.39
DataValue, -0.34, 1.9461400000000002E-10, 21808.920000000002
DataValue, -0.36, 1.9416400000000001E-10, 21910.69
DataValue, -0.38, 1.94208E-10, 21934.11
DataValue, -0.4, 1.9413E-10, 21953.41
DataValue, -0.42, 1.94175E-10, 21953.670000000002
DataValue, -0.44, 1.9450300000000003E-10, 21936.45
DataValue, -0.46, 1.9451500000000003E-10, 21917.05
DataValue, -0.48, 1.9449000000000002E-10, 21890.13
DataValue, -0.5, 1.94576E-10, 21935.61
DataValue, -0.52, 1.94781E-10, 21845.260000000002
DataValue, -0.54, 1.9453300000000003E-10, 21948.49
DataValue, -0.56, 1.9469300000000003E-10, 21929.46
DataValue, -0.58, 1.94748E-10, 21913.41
DataValue, -0.6, 1.9462300000000002E-10, 21969.68
DataValue, -0.62, 1.9493300000000002E-10, 21883.74
DataValue, -0.64, 1.94892E-10, 21908.63
DataValue, -0.66, 1.95019E-10, 21973.18
DataValue, -0.68, 1.94901E-10, 21959.510000000002
DataValue, -0.70000000000000007, 1.95188E-10, 21886.71
DataValue, -0.72, 1.9518400000000003E-10, 21902.24
DataValue, -0.74, 1.9502600000000002E-10, 21957.09
DataValue, -0.76, 1.9482100000000001E-10, 22038.13
DataValue, -0.78, 1.94923E-10, 22021.21
DataValue, -0.8, 1.95438E-10, 21931.89
DataValue, -0.82000000000000006, 1.9525600000000002E-10, 22000.31
DataValue, -0.84, 1.9549300000000001E-10, 21915.24
DataValue, -0.86, 1.9531900000000002E-10, 21969.32
DataValue, -0.88, 1.9529500000000002E-10, 21997.510000000002
DataValue, -0.9, 1.9562400000000003E-10, 21941.95
DataValue, -0.92, 1.9559000000000002E-10, 21974.28
DataValue, -0.94000000000000006, 1.9551200000000002E-10, 22056.54
DataValue, -0.96, 1.95742E-10, 21989.82
DataValue, -0.98, 1.95564E-10, 22040.68
DataValue, -1, 1.9583500000000003E-10, 21983.55
DataValue, -1, 1.17621E-10, 2180.083
DataValue, -0.98, 1.1765E-10, 2177.027
DataValue, -0.96, 1.17662E-10, 2171.18
DataValue, -0.94000000000000006, 1.17632E-10, 2157.995
DataValue, -0.92, 1.1759E-10, 2146.565
DataValue, -0.9, 1.17639E-10, 2150.409
DataValue, -0.88, 1.17624E-10, 2141.302
DataValue, -0.86, 1.17624E-10, 2136.746
DataValue, -0.84, 1.17624E-10, 2130.02
DataValue, -0.82000000000000006, 1.1759E-10, 2120.988
DataValue, -0.8, 1.1758800000000001E-10, 2113.119
DataValue, -0.78, 1.17566E-10, 2108.0280000000002
DataValue, -0.76, 1.17581E-10, 2106.451
DataValue, -0.74, 1.1757900000000001E-10, 2100.23
DataValue, -0.72, 1.17557E-10, 2093.801
DataValue, -0.70000000000000007, 1.17553E-10, 2089.516
DataValue, -0.68, 1.17557E-10, 2089.372
DataValue, -0.66, 1.1753400000000002E-10, 2082.953
DataValue, -0.64, 1.1754000000000002E-10, 2080.136
DataValue, -0.62, 1.17535E-10, 2075.642
DataValue, -0.6, 1.17553E-10, 2077.943
DataValue, -0.58, 1.1752500000000002E-10, 2068.39
DataValue, -0.56, 1.17521E-10, 2066.583
DataValue, -0.54, 1.1749200000000002E-10, 2059.05
DataValue, -0.52, 1.17503E-10, 2056.704
DataValue, -0.5, 1.17478E-10, 2050.245
DataValue, -0.48, 1.17503E-10, 2052.487
DataValue, -0.46, 1.17473E-10, 2047.209
DataValue, -0.44, 1.1747700000000002E-10, 2047.248
DataValue, -0.42, 1.17451E-10, 2041.284
DataValue, -0.4, 1.17451E-10, 2039.337
DataValue, -0.38, 1.17449E-10, 2036.722
DataValue, -0.36, 1.17454E-10, 2035.246
DataValue, -0.34, 1.1743200000000002E-10, 2029.95
DataValue, -0.32, 1.17449E-10, 2031.816
DataValue, -0.3, 1.17436E-10, 2028.518
DataValue, -0.28, 1.17488E-10, 2036.4470000000001
DataValue, -0.26, 1.1746E-10, 2031.18
DataValue, -0.24, 1.17452E-10, 2025.731
DataValue, -0.22, 1.1739600000000002E-10, 2014.8300000000002
DataValue, -0.2, 1.17437E-10, 2023.626
DataValue, -0.18, 1.1743E-10, 2021.267
DataValue, -0.16, 1.1743200000000002E-10, 2019.651
DataValue, -0.14, 1.17409E-10, 2016.0140000000001
DataValue, -0.12, 1.17433E-10, 2017.7150000000002
DataValue, -0.1, 1.17418E-10, 2015.5130000000002
DataValue, -0.08, 1.17422E-10, 2014.817
DataValue, -0.06, 1.17425E-10, 2013.838
DataValue, -0.04, 1.1743E-10, 2017.749
DataValue, -0.02, 1.1743E-10, 2013.5430000000001
DataValue, 0, 1.17427E-10, 2011.112
DataValue, 0.02, 1.17418E-10, 2010.313
DataValue, 0.04, 1.1746200000000002E-10, 2018.4370000000001
DataValue, 0.06, 1.1746500000000002E-10, 2018.2730000000001
DataValue, 0.08, 1.17421E-10, 2004.4470000000001
DataValue, 0.1, 1.1743800000000002E-10, 2010.128
DataValue, 0.12, 1.1741100000000002E-10, 2004.259
DataValue, 0.14, 1.17436E-10, 2006.402
DataValue, 0.16, 1.1739000000000002E-10, 1999.357
DataValue, 0.18, 1.1742300000000002E-10, 2003.309
DataValue, 0.2, 1.17443E-10, 2006.926
DataValue, 0.22, 1.1745900000000002E-10, 2009.647
DataValue, 0.24, 1.17437E-10, 2003.724
DataValue, 0.26, 1.17428E-10, 1999.2150000000002
DataValue, 0.28, 1.1743800000000002E-10, 2000.723
DataValue, 0.3, 1.1742600000000002E-10, 1998.204
DataValue, 0.32, 1.17407E-10, 1995.957
DataValue, 0.34, 1.1742000000000002E-10, 1995.616
DataValue, 0.36, 1.17448E-10, 1998.6670000000001
DataValue, 0.38, 1.1743200000000002E-10, 1999.214
DataValue, 0.4, 1.1744E-10, 1999.2820000000002
DataValue, 0.42, 1.17433E-10, 1993.257
DataValue, 0.44, 1.17436E-10, 1993.392
DataValue, 0.46, 1.1744100000000002E-10, 1994.3210000000001
DataValue, 0.48, 1.17466E-10, 1998.617
DataValue, 0.5, 1.17412E-10, 1985.73
DataValue, 0.52, 1.1743500000000002E-10, 1987.8220000000001
DataValue, 0.54, 1.1746200000000002E-10, 1990.7350000000001
DataValue, 0.56, 1.1749800000000002E-10, 1997.377
DataValue, 0.58, 1.17452E-10, 1988.681
DataValue, 0.6, 1.1749E-10, 1992.616
DataValue, 0.62, 1.17512E-10, 1994.606
DataValue, 0.64, 1.1747100000000002E-10, 1986.81
DataValue, 0.66, 1.17445E-10, 1981.111
DataValue, 0.68, 1.17451E-10, 1981.598
DataValue, 0.70000000000000007, 1.1752E-10, 1990.1000000000001
DataValue, 0.72, 1.1750100000000002E-10, 1988.265
DataValue, 0.74, 1.1754900000000002E-10, 1993.732
DataValue, 0.76, 1.1754600000000002E-10, 1988.051
DataValue, 0.78, 1.17548E-10, 1987.755
DataValue, 0.8, 1.17566E-10, 1992.703
DataValue, 0.82000000000000006, 1.1752500000000002E-10, 1984.106
DataValue, 0.84, 1.1758000000000002E-10, 1989.261
DataValue, 0.86, 1.1760400000000002E-10, 1989.1090000000002
DataValue, 0.88, 1.17584E-10, 1985.52
DataValue, 0.9, 1.1759800000000002E-10, 1987.787
DataValue, 0.92, 1.17615E-10, 1986.546
DataValue, 0.94000000000000006, 1.17606E-10, 1983.336
DataValue, 0.96, 1.1764000000000002E-10, 1985.895
DataValue, 0.98, 1.17675E-10, 1991.69
DataValue, 1, 1.1766700000000002E-10, 1987.713
DataValue, 1, 1.1764600000000002E-10, 1984.814
DataValue, 0.98, 1.1765500000000002E-10, 1987.171
DataValue, 0.96, 1.17593E-10, 1981.9650000000002
DataValue, 0.94000000000000006, 1.1762E-10, 1987.73
DataValue, 0.92, 1.17635E-10, 1990.17
DataValue, 0.9, 1.17633E-10, 1993.097
DataValue, 0.88, 1.17636E-10, 1998.554
DataValue, 0.86, 1.17603E-10, 1989.4180000000001
DataValue, 0.84, 1.17581E-10, 1989.569
DataValue, 0.82000000000000006, 1.17554E-10, 1986.541
DataValue, 0.8, 1.17544E-10, 1986.522
DataValue, 0.78, 1.17536E-10, 1987.904
DataValue, 0.76, 1.1752E-10, 1984.695
DataValue, 0.74, 1.1749800000000002E-10, 1984.651
DataValue, 0.72, 1.175E-10, 1984.874
DataValue, 0.70000000000000007, 1.17487E-10, 1985.9460000000001
DataValue, 0.68, 1.1747700000000002E-10, 1982.296
DataValue, 0.66, 1.1746800000000002E-10, 1984.39
DataValue, 0.64, 1.1746200000000002E-10, 1986.6480000000001
DataValue, 0.62, 1.17499E-10, 1994.183
DataValue, 0.6, 1.17476E-10, 1990.464
DataValue, 0.58, 1.1748900000000002E-10, 1993.574
DataValue, 0.56, 1.17482E-10, 1994.377
DataValue, 0.54, 1.17469E-10, 1992.9070000000002
DataValue, 0.52, 1.17463E-10, 1992.188
DataValue, 0.5, 1.17445E-10, 1992.1960000000001
DataValue, 0.48, 1.1743200000000002E-10, 1988.646
DataValue, 0.46, 1.1745900000000002E-10, 1995.963
DataValue, 0.44, 1.17418E-10, 1990.714
DataValue, 0.42, 1.17397E-10, 1988.194
DataValue, 0.4, 1.17382E-10, 1985.7
DataValue, 0.38, 1.17407E-10, 1991.441
DataValue, 0.36, 1.1736900000000002E-10, 1987.592
DataValue, 0.34, 1.17392E-10, 1993.144
DataValue, 0.32, 1.17406E-10, 1996.217
DataValue, 0.3, 1.1741E-10, 1995.88
DataValue, 0.28, 1.17401E-10, 1997.3110000000002
DataValue, 0.26, 1.1740500000000002E-10, 1999.6000000000001
DataValue, 0.24, 1.17415E-10, 2003.897
DataValue, 0.22, 1.17394E-10, 2001.1490000000001
DataValue, 0.2, 1.17379E-10, 1997.476
DataValue, 0.18, 1.17385E-10, 1998.618
DataValue, 0.16, 1.1740500000000002E-10, 2000.185
DataValue, 0.14, 1.1738400000000002E-10, 2000.18
DataValue, 0.12, 1.17415E-10, 2007.079
DataValue, 0.1, 1.17371E-10, 1997.6290000000001
DataValue, 0.08, 1.17412E-10, 2006.6680000000001
DataValue, 0.06, 1.17413E-10, 2007.873
DataValue, 0.04, 1.17413E-10, 2010.762
DataValue, 0.02, 1.17407E-10, 2009.309
DataValue, 0, 1.17391E-10, 2006.931
DataValue, -0.02, 1.17343E-10, 2002.094
DataValue, -0.04, 1.17382E-10, 2007.894
DataValue, -0.06, 1.1736200000000001E-10, 2004.43
DataValue, -0.08, 1.17389E-10, 2010.097
DataValue, -0.1, 1.1737800000000002E-10, 2009.207
DataValue, -0.12, 1.17377E-10, 2009.881
DataValue, -0.14, 1.17367E-10, 2010.224
DataValue, -0.16, 1.17368E-10, 2010.121
DataValue, -0.18, 1.1738400000000002E-10, 2012.832
DataValue, -0.2, 1.17407E-10, 2019.3980000000001
DataValue, -0.22, 1.17403E-10, 2022.458
DataValue, -0.24, 1.17404E-10, 2021.416
DataValue, -0.26, 1.17412E-10, 2026.541
DataValue, -0.28, 1.17407E-10, 2026.784
DataValue, -0.3, 1.17437E-10, 2032.612
DataValue, -0.32, 1.17434E-10, 2035.298
DataValue, -0.34, 1.17437E-10, 2034.601
DataValue, -0.36, 1.1744400000000002E-10, 2036.746
DataValue, -0.38, 1.17454E-10, 2040.051
DataValue, -0.4, 1.1744400000000002E-10, 2042.13
DataValue, -0.42, 1.1744E-10, 2043.183
DataValue, -0.44, 1.1746200000000002E-10, 2048.007
DataValue, -0.46, 1.17458E-10, 2046.952
DataValue, -0.48, 1.17442E-10, 2047.5800000000002
DataValue, -0.5, 1.17493E-10, 2056.063
DataValue, -0.52, 1.17457E-10, 2054.752
DataValue, -0.54, 1.1749200000000002E-10, 2059.869
DataValue, -0.56, 1.1745900000000002E-10, 2058.516
DataValue, -0.58, 1.17491E-10, 2065.11
DataValue, -0.6, 1.17521E-10, 2071.723
DataValue, -0.62, 1.17503E-10, 2073.231
DataValue, -0.64, 1.17515E-10, 2080.01
DataValue, -0.66, 1.1752E-10, 2083.687
DataValue, -0.68, 1.1751600000000002E-10, 2084.81
DataValue, -0.70000000000000007, 1.1750700000000002E-10, 2084.672
DataValue, -0.72, 1.1751900000000002E-10, 2093.887
DataValue, -0.74, 1.17523E-10, 2097.3160000000003
DataValue, -0.76, 1.1754600000000002E-10, 2105.779
DataValue, -0.78, 1.17554E-10, 2109.147
DataValue, -0.8, 1.17551E-10, 2112.178
DataValue, -0.82000000000000006, 1.17578E-10, 2121.989
DataValue, -0.84, 1.1758000000000002E-10, 2129.23
DataValue, -0.86, 1.17578E-10, 2131.9990000000003
DataValue, -0.88, 1.17632E-10, 2145.185
DataValue, -0.9, 1.17636E-10, 2151.877
DataValue, -0.92, 1.1761600000000002E-10, 2152.892
DataValue, -0.94000000000000006, 1.1759800000000002E-10, 2156.1150000000002
DataValue, -0.96, 1.1762E-10, 2165.503
DataValue, -0.98, 1.17614E-10, 2175.391
DataValue, -1, 1.1761900000000002E-10, 2181.1910000000003
DataValue, -1, 1.1353800000000001E-10, 255.60320000000002
DataValue, -0.98, 1.1364200000000001E-10, 249.12300000000002
DataValue, -0.96, 1.1374700000000001E-10, 242.9762
DataValue, -0.94000000000000006, 1.1383900000000001E-10, 236.98930000000001
DataValue, -0.92, 1.13938E-10, 231.2622
DataValue, -0.9, 1.1400200000000001E-10, 226.04420000000002
DataValue, -0.88, 1.1407600000000001E-10, 220.91420000000002
DataValue, -0.86, 1.14152E-10, 216.025
DataValue, -0.84, 1.1421300000000001E-10, 211.35840000000002
DataValue, -0.82000000000000006, 1.1427500000000001E-10, 206.7491
DataValue, -0.8, 1.1433800000000001E-10, 202.52290000000002
DataValue, -0.78, 1.1440100000000001E-10, 198.4076
DataValue, -0.76, 1.1444800000000001E-10, 194.363
DataValue, -0.74, 1.14497E-10, 190.61700000000002
DataValue, -0.72, 1.14545E-10, 186.9359
DataValue, -0.70000000000000007, 1.14586E-10, 183.1003
DataValue, -0.68, 1.1462000000000001E-10, 180.0008
DataValue, -0.66, 1.1466200000000001E-10, 176.6912
DataValue, -0.64, 1.14705E-10, 173.5204
DataValue, -0.62, 1.14729E-10, 170.47580000000002
DataValue, -0.6, 1.1476300000000001E-10, 167.7066
DataValue, -0.58, 1.1478700000000001E-10, 165.0583
DataValue, -0.56, 1.1481600000000002E-10, 162.50740000000002
DataValue, -0.54, 1.14845E-10, 159.98950000000002
DataValue, -0.52, 1.14863E-10, 157.669
DataValue, -0.5, 1.1489400000000001E-10, 155.3048
DataValue, -0.48, 1.1490900000000001E-10, 153.0559
DataValue, -0.46, 1.14931E-10, 150.8239
DataValue, -0.44, 1.1494700000000001E-10, 148.7938
DataValue, -0.42, 1.1496000000000001E-10, 146.8081
DataValue, -0.4, 1.1498900000000001E-10, 145.0398
DataValue, -0.38, 1.1499500000000001E-10, 143.2361
DataValue, -0.36, 1.1500800000000001E-10, 141.5452
DataValue, -0.34, 1.15021E-10, 139.99720000000002
DataValue, -0.32, 1.1503200000000001E-10, 138.4159
DataValue, -0.3, 1.1503500000000001E-10, 136.8374
DataValue, -0.28, 1.1504500000000002E-10, 135.3347
DataValue, -0.26, 1.1505700000000001E-10, 134.0009
DataValue, -0.24, 1.1506100000000001E-10, 132.6907
DataValue, -0.22, 1.1506900000000001E-10, 131.3578
DataValue, -0.2, 1.15074E-10, 130.1413
DataValue, -0.18, 1.1508500000000001E-10, 128.9436
DataValue, -0.16, 1.15092E-10, 127.9405
DataValue, -0.14, 1.15113E-10, 126.8905
DataValue, -0.12, 1.1511500000000001E-10, 125.81060000000001
DataValue, -0.1, 1.1512400000000001E-10, 125.0956
DataValue, -0.08, 1.15125E-10, 124.11420000000001
DataValue, -0.06, 1.1512600000000001E-10, 123.2291
DataValue, -0.04, 1.1512900000000001E-10, 122.3434
DataValue, -0.02, 1.1514500000000001E-10, 121.5746
DataValue, 0, 1.1514200000000001E-10, 120.76450000000001
DataValue, 0.02, 1.1514300000000002E-10, 120.0948
DataValue, 0.04, 1.1515300000000001E-10, 119.31110000000001
DataValue, 0.06, 1.15163E-10, 118.715
DataValue, 0.08, 1.15163E-10, 117.9996
DataValue, 0.1, 1.1517000000000001E-10, 117.43100000000001
DataValue, 0.12, 1.1517100000000001E-10, 116.8036
DataValue, 0.14, 1.15178E-10, 116.4411
DataValue, 0.16, 1.1518000000000001E-10, 115.87490000000001
DataValue, 0.18, 1.1517900000000001E-10, 115.40100000000001
DataValue, 0.2, 1.15187E-10, 114.7826
DataValue, 0.22, 1.15193E-10, 114.1652
DataValue, 0.24, 1.1521000000000001E-10, 113.8939
DataValue, 0.26, 1.1520900000000001E-10, 113.4985
DataValue, 0.28, 1.1520700000000001E-10, 113.17750000000001
DataValue, 0.3, 1.1522200000000001E-10, 112.63560000000001
DataValue, 0.32, 1.15223E-10, 112.24350000000001
DataValue, 0.34, 1.1523000000000001E-10, 111.81320000000001
DataValue, 0.36, 1.1523400000000001E-10, 111.5716
DataValue, 0.38, 1.1523900000000001E-10, 111.1836
DataValue, 0.4, 1.1525700000000001E-10, 110.8737
DataValue, 0.42, 1.1525500000000001E-10, 110.5211
DataValue, 0.44, 1.1526300000000001E-10, 110.39750000000001
DataValue, 0.46, 1.1526000000000001E-10, 110.1781
DataValue, 0.48, 1.1527500000000001E-10, 109.9574
DataValue, 0.5, 1.15279E-10, 109.5262
DataValue, 0.52, 1.1528000000000001E-10, 109.40650000000001
DataValue, 0.54, 1.1529800000000001E-10, 109.2187
DataValue, 0.56, 1.1530100000000001E-10, 109.05000000000001
DataValue, 0.58, 1.15315E-10, 108.7522
DataValue, 0.6, 1.15327E-10, 108.6624
DataValue, 0.62, 1.1532200000000001E-10, 108.37060000000001
DataValue, 0.64, 1.1533E-10, 108.1473
DataValue, 0.66, 1.15342E-10, 108.1053
DataValue, 0.68, 1.15354E-10, 107.89280000000001
DataValue, 0.70000000000000007, 1.1534600000000001E-10, 107.7872
DataValue, 0.72, 1.1536900000000002E-10, 107.5078
DataValue, 0.74, 1.1537800000000002E-10, 107.4962
DataValue, 0.76, 1.1538100000000002E-10, 107.3121
DataValue, 0.78, 1.1539400000000001E-10, 107.23100000000001
DataValue, 0.8, 1.1540200000000001E-10, 107.26610000000001
DataValue, 0.82000000000000006, 1.15416E-10, 107.1991
DataValue, 0.84, 1.1542900000000001E-10, 106.8742
DataValue, 0.86, 1.15437E-10, 106.8281
DataValue, 0.88, 1.1544E-10, 106.7519
DataValue, 0.9, 1.1545000000000001E-10, 106.6828
DataValue, 0.92, 1.1546800000000001E-10, 106.55250000000001
DataValue, 0.94000000000000006, 1.1547500000000001E-10, 106.4453
DataValue, 0.96, 1.15479E-10, 106.38990000000001
DataValue, 0.98, 1.1550100000000001E-10, 106.2595
DataValue, 1, 1.1552E-10, 106.23270000000001
DataValue, 1, 1.1551200000000001E-10, 106.2705
DataValue, 0.98, 1.15496E-10, 106.30680000000001
DataValue, 0.96, 1.1548300000000001E-10, 106.3365
DataValue, 0.94000000000000006, 1.1546500000000001E-10, 106.5642
DataValue, 0.92, 1.1545700000000001E-10, 106.67710000000001
DataValue, 0.9, 1.15446E-10, 106.6909
DataValue, 0.88, 1.15431E-10, 106.72970000000001
DataValue, 0.86, 1.1542600000000001E-10, 106.8664
DataValue, 0.84, 1.1541100000000001E-10, 107.0359
DataValue, 0.82000000000000006, 1.1540300000000001E-10, 106.9308
DataValue, 0.8, 1.1540000000000001E-10, 107.2012
DataValue, 0.78, 1.15386E-10, 107.26
DataValue, 0.76, 1.1537400000000001E-10, 107.44120000000001
DataValue, 0.74, 1.1536100000000001E-10, 107.60000000000001
DataValue, 0.72, 1.1535300000000001E-10, 107.7624
DataValue, 0.70000000000000007, 1.1534700000000001E-10, 107.8897
DataValue, 0.68, 1.1533100000000001E-10, 108.04520000000001
DataValue, 0.66, 1.1532900000000001E-10, 108.15910000000001
DataValue, 0.64, 1.1532300000000001E-10, 108.3985
DataValue, 0.62, 1.1530800000000001E-10, 108.5753
DataValue, 0.6, 1.15294E-10, 108.74260000000001
DataValue, 0.58, 1.15297E-10, 109.2026
DataValue, 0.56, 1.1526500000000002E-10, 109.2347
DataValue, 0.54, 1.1527500000000001E-10, 109.4726
DataValue, 0.52, 1.15264E-10, 109.65020000000001
DataValue, 0.5, 1.1526100000000001E-10, 109.9538
DataValue, 0.48, 1.1525600000000002E-10, 110.1667
DataValue, 0.46, 1.1524200000000001E-10, 110.3352
DataValue, 0.44, 1.1524200000000001E-10, 110.6098
DataValue, 0.42, 1.1523100000000001E-10, 111.0447
DataValue, 0.4, 1.15226E-10, 111.23280000000001
DataValue, 0.38, 1.1521800000000001E-10, 111.51150000000001
DataValue, 0.36, 1.15211E-10, 111.87020000000001
DataValue, 0.34, 1.15208E-10, 112.2278
DataValue, 0.32, 1.15202E-10, 112.71950000000001
DataValue, 0.3, 1.15202E-10, 113.01650000000001
DataValue, 0.28, 1.1519400000000001E-10, 113.524
DataValue, 0.26, 1.15181E-10, 113.6991
DataValue, 0.24, 1.1517700000000001E-10, 114.31320000000001
DataValue, 0.22, 1.1517700000000001E-10, 114.85950000000001
DataValue, 0.2, 1.1516500000000001E-10, 115.2517