unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#59379: 29.0.50; `define-advice' documentation needs improving
@ 2022-11-19  7:26 Stefan Kangas
  2022-11-19 12:23 ` Visuwesh
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Kangas @ 2022-11-19  7:26 UTC (permalink / raw)
  To: 59379; +Cc: Stefan Monnier

This bug report is about the documentation of the `define-advice' macro.

1. It is mentioned in

    (info "(elisp) Advising Named Functions")

   but there is no explanation of when one would want to use it instead
   of `advice-add'.  In fact, apart from its definition in that info
   node, and its entry in the index, I see no other mention of it in the
   manual.

   It is mentioned before the `advice-add' function, which seems to
   imply that it is more important?

2. It would also be good to have an example of how to use it, at least
   it in the manual.

3. This is its argument list:

   (define-advice SYMBOL (HOW LAMBDA-LIST &optional NAME DEPTH) &rest
   BODY)

   The HOW, LAMBDA-LIST, NAME, DEPTH parameters are not documented in
   the docstring, nor in the info manual.

4. There also seem to be a mistake (or merely a typo) in the argument
   list as described in the argument list (note that "HOW" above is
   replaced with "where"):

    -- Macro: define-advice symbol (where lambda-list &optional name depth)
             &rest body

5. The documentation of NAME says that: "The advice is an anonymous
   function if NAME is ‘nil’ or a function named ‘symbol@name’."

   I struggle with parsing this sentence.  It sounds like it is saying
   that, if I want an anonymous function, I should define a function
   named `symbol@name' (substituting `symbol' and `name') and then pass
   that argument as the NAME argument?  But then the function is not
   anonymous?

6. Finally, the info manual says: "This macro defines a piece of advice
   and adds it to the function named SYMBOL."  Could the words "a piece
   of advice" simply be replaced with "an advice", or is there some
   important meaning that would be lost?

Thanks.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#59379: 29.0.50; `define-advice' documentation needs improving
  2022-11-19  7:26 bug#59379: 29.0.50; `define-advice' documentation needs improving Stefan Kangas
@ 2022-11-19 12:23 ` Visuwesh
  2022-11-19 13:52   ` Stefan Kangas
                     ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Visuwesh @ 2022-11-19 12:23 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: 59379, Stefan Monnier

[வெள்ளி நவம்பர் 18, 2022] Stefan Kangas wrote:

> This bug report is about the documentation of the `define-advice' macro.
>
> [...]
>
> 3. This is its argument list:
>
>    (define-advice SYMBOL (HOW LAMBDA-LIST &optional NAME DEPTH) &rest
>    BODY)
>
>    The HOW, LAMBDA-LIST, NAME, DEPTH parameters are not documented in
>    the docstring, nor in the info manual.

HOW, LAMBDA-LIST, NAME, and DEPTH arguments become clear when once looks
up the add-function docstring, and the docstring already mentions
add-function.

> 4. There also seem to be a mistake (or merely a typo) in the argument
>    list as described in the argument list (note that "HOW" above is
>    replaced with "where"):
>
>     -- Macro: define-advice symbol (where lambda-list &optional name depth)
>              &rest body

IIRC, Stefan prefers HOW over WHERE since add-function has :filter-args
and friends.

> 5. The documentation of NAME says that: "The advice is an anonymous
>    function if NAME is ‘nil’ or a function named ‘symbol@name’."
>
>    I struggle with parsing this sentence.  It sounds like it is saying
>    that, if I want an anonymous function, I should define a function
>    named `symbol@name' (substituting `symbol' and `name') and then pass
>    that argument as the NAME argument?  But then the function is not
>    anonymous?

Would a comma help before the "or"? i.e.,

    The advice is an anonymous function if NAME is ‘nil’, or a function
    named ‘symbol@name’.

Changing symbol@name to SYMBOL@NAME like in the docstring will make it
clearer, I think.  If still not clear, the following happens in the case
of NAME being nil vs. non-nil

    NAME nil ==> (advice-add SYMBOL HOW (lambda LAMBDA-LIST BODY) ...)
    NAME non-nil ==> (advice-add SYMBOL HOW (defun SYMBOL@NAME LAMBDA-LIST BODY) ...)

HTH.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#59379: 29.0.50; `define-advice' documentation needs improving
  2022-11-19 12:23 ` Visuwesh
@ 2022-11-19 13:52   ` Stefan Kangas
  2022-11-19 14:44     ` Visuwesh
  2022-11-19 15:34   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-02-08  6:46   ` Visuwesh
  2 siblings, 1 reply; 8+ messages in thread
From: Stefan Kangas @ 2022-11-19 13:52 UTC (permalink / raw)
  To: Visuwesh; +Cc: 59379, Stefan Monnier

Visuwesh <visuweshm@gmail.com> writes:

>> 3. This is its argument list:
>>
>>    (define-advice SYMBOL (HOW LAMBDA-LIST &optional NAME DEPTH) &rest
>>    BODY)
>>
>>    The HOW, LAMBDA-LIST, NAME, DEPTH parameters are not documented in
>>    the docstring, nor in the info manual.
>
> HOW, LAMBDA-LIST, NAME, and DEPTH arguments become clear when once looks
> up the add-function docstring, and the docstring already mentions
> add-function.

Then that should be explicitly stated.

And LAMBDA-LIST is not explained there either, AFAICT.

>> 5. The documentation of NAME says that: "The advice is an anonymous
>>    function if NAME is ‘nil’ or a function named ‘symbol@name’."
>>
>>    I struggle with parsing this sentence.  It sounds like it is saying
>>    that, if I want an anonymous function, I should define a function
>>    named `symbol@name' (substituting `symbol' and `name') and then pass
>>    that argument as the NAME argument?  But then the function is not
>>    anonymous?
>
> Would a comma help before the "or"? i.e.,
>
>     The advice is an anonymous function if NAME is ‘nil’, or a function
>     named ‘symbol@name’.

So it can be either nil or a symbol?  How do I actually use it?

> Changing symbol@name to SYMBOL@NAME like in the docstring will make it
> clearer, I think.  If still not clear, the following happens in the case
> of NAME being nil vs. non-nil
>
>     NAME nil ==> (advice-add SYMBOL HOW (lambda LAMBDA-LIST BODY) ...)
>     NAME non-nil ==> (advice-add SYMBOL HOW (defun SYMBOL@NAME LAMBDA-LIST BODY) ...)

This all needs to be explained clearly in the documentation.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#59379: 29.0.50; `define-advice' documentation needs improving
  2022-11-19 13:52   ` Stefan Kangas
@ 2022-11-19 14:44     ` Visuwesh
  0 siblings, 0 replies; 8+ messages in thread
From: Visuwesh @ 2022-11-19 14:44 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: 59379, Stefan Monnier

[சனி நவம்பர் 19, 2022] Stefan Kangas wrote:

> Visuwesh <visuweshm@gmail.com> writes:
>
>>> 3. This is its argument list:
>>>
>>>    (define-advice SYMBOL (HOW LAMBDA-LIST &optional NAME DEPTH) &rest
>>>    BODY)
>>>
>>>    The HOW, LAMBDA-LIST, NAME, DEPTH parameters are not documented in
>>>    the docstring, nor in the info manual.
>>
>> HOW, LAMBDA-LIST, NAME, and DEPTH arguments become clear when once looks
>> up the add-function docstring, and the docstring already mentions
>> add-function.
>
> Then that should be explicitly stated.

Is that not already spelt out?

    Define an advice and add it to function named SYMBOL.
    See ‘advice-add’ and ‘add-function’ for explanation on the
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    arguments.  Note if NAME is nil the advice is anonymous;
    ^^^^^^^^^^
    otherwise it is named ‘SYMBOL@NAME’.

> And LAMBDA-LIST is not explained there either, AFAICT.

Reading the advice-add's document should tell what it means but I might
be biased here.

>>> 5. The documentation of NAME says that: "The advice is an anonymous
>>>    function if NAME is ‘nil’ or a function named ‘symbol@name’."
>>>
>>>    I struggle with parsing this sentence.  It sounds like it is saying
>>>    that, if I want an anonymous function, I should define a function
>>>    named `symbol@name' (substituting `symbol' and `name') and then pass
>>>    that argument as the NAME argument?  But then the function is not
>>>    anonymous?
>>
>> Would a comma help before the "or"? i.e.,
>>
>>     The advice is an anonymous function if NAME is ‘nil’, or a function
>>     named ‘symbol@name’.
>
> So it can be either nil or a symbol?  How do I actually use it?

Yes.  See below for an example with a non-nil NAME

    (define-advice file-cache-file-name (:filter-return (filename) vz/add-slash-if-directory)
      "Add a trailing slash if FILENAME is a directory."
      (if (file-directory-p filename)
          (concat filename "/")
        filename))

which creates a function file-cache-file-name@vz/add-slash-if-directory.
But if NAME was nil, then there would be no named function but rather a
lambda that gets added as an advice (which is hard to remove later).

>> Changing symbol@name to SYMBOL@NAME like in the docstring will make it
>> clearer, I think.  If still not clear, the following happens in the case
>> of NAME being nil vs. non-nil
>>
>>     NAME nil ==> (advice-add SYMBOL HOW (lambda LAMBDA-LIST BODY) ...)
>>     NAME non-nil ==> (advice-add SYMBOL HOW (defun SYMBOL@NAME LAMBDA-LIST BODY) ...)
>
> This all needs to be explained clearly in the documentation.

Again, it seems obvious to me.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#59379: 29.0.50; `define-advice' documentation needs improving
  2022-11-19 12:23 ` Visuwesh
  2022-11-19 13:52   ` Stefan Kangas
@ 2022-11-19 15:34   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
  2024-02-08  6:46   ` Visuwesh
  2 siblings, 0 replies; 8+ messages in thread
From: Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2022-11-19 15:34 UTC (permalink / raw)
  To: Visuwesh; +Cc: 59379, Stefan Kangas

> IIRC, Stefan prefers HOW over WHERE since add-function has :filter-args
> and friends.

It's also because `add-function` takes a gv-place argument, so "where"
can be a bit confusing (does it refer to the place where the advice is
installed or to the way it's combined with previous function?).


        Stefan






^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#59379: 29.0.50; `define-advice' documentation needs improving
  2022-11-19 12:23 ` Visuwesh
  2022-11-19 13:52   ` Stefan Kangas
  2022-11-19 15:34   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2024-02-08  6:46   ` Visuwesh
  2024-02-08 13:49     ` Visuwesh
  2 siblings, 1 reply; 8+ messages in thread
From: Visuwesh @ 2024-02-08  6:46 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: 59379, Stefan Monnier

[-- Attachment #1: Type: text/plain, Size: 242 bytes --]

[வியாழன் பிப்ரவரி 08, 2024] Debdutta Chakraborty wrote:

> Datafile.
>
> Things to read and write:
>
> frequency reduced mass force constant atom1_x atom1_y atom1_z

Sir,

Please find attached file.


[-- Attachment #2: FREQDATA.txt --]
[-- Type: text/plain, Size: 55451 bytes --]

$frequency_data
-394.6664 2.2180 0.2036 -0.00086 0.00529 0.00611 -0.00872 -0.01085 0.00162 0.00316 -0.00417 -0.00389 0.01146 0.01213 0.00439 -0.00264 -0.00802 0.00711 -0.00156 0.00247 0.00562 -0.00626 -0.00142 0.00281 -0.00512 -0.03665 -0.00249 0.01071 0.00410 0.00581 0.00234 0.01004 0.00441 -0.00148 0.00763 -0.07619 -0.15075 0.01727 -0.14107 -0.00370 0.00124 0.00353 -0.01241 -0.01019 0.00061 -0.01158 -0.00174 0.00464 -0.01691 -0.00566 0.00255 0.00177 0.00218 -0.00609 -0.00298 -0.00430 0.00286 0.00625 0.01456 0.00043 -0.00458 0.00280 0.00412 0.00880 0.00364 -0.01010 0.00418 0.01410 0.00147 0.04360 0.00262 0.02647 0.09067 -0.01078 -0.09494 -0.07691 0.02350 0.09190 0.01645 -0.04599 0.15729 0.06990 -0.09127 0.12285 -0.63056 0.21332 0.64324 
38.7136 3.5254 0.0031 -0.03842 0.03858 -0.12727 -0.07971 0.03686 -0.01426 0.00744 -0.01209 0.05888 0.10267 -0.04183 -0.00728 0.07160 -0.02203 -0.12285 -0.08087 0.08350 -0.20542 -0.16059 0.07313 0.01188 0.00154 -0.02403 0.15129 0.17937 -0.08221 0.02503 0.12742 -0.02720 -0.19562 -0.00620 0.00553 -0.00121 -0.00438 -0.03834 0.04392 -0.10538 0.10293 0.11237 -0.06712 0.11510 -0.09121 0.00910 -0.05313 0.18983 -0.21001 0.19230 0.19540 0.06261 -0.04019 -0.14029 -0.12447 0.22158 -0.18971 0.09749 -0.15216 0.02941 0.00703 -0.10285 0.34152 0.12481 -0.06578 -0.28462 0.18599 -0.27858 0.03884 -0.00646 -0.01809 0.03232 -0.00721 0.01108 0.03217 -0.00625 -0.02833 0.02227 -0.01025 0.03451 0.01221 -0.01126 0.03111 0.00729 -0.00400 0.02840 0.01677 
46.8176 3.9395 0.0051 -0.09219 0.01346 -0.10585 -0.16420 0.01422 0.08933 0.00188 -0.00165 0.20805 0.17527 -0.01145 0.09289 0.10985 -0.03066 -0.10370 -0.17742 0.03535 -0.23361 -0.31131 0.03350 0.13465 -0.00455 -0.00904 0.36378 0.31906 -0.03127 0.14349 0.20285 -0.05136 -0.22965 -0.00196 -0.00236 0.00967 -0.04897 0.06928 -0.15230 0.01905 -0.06615 -0.00322 0.00786 -0.06786 0.09549 -0.01123 0.02223 -0.03868 0.04554 -0.12206 -0.04348 -0.02517 0.02365 0.12076 0.01972 -0.12787 0.14023 -0.02929 0.08431 0.04071 -0.02208 0.03787 -0.11282 -0.04590 0.04113 0.18932 -0.05112 0.15704 0.03744 -0.02681 0.03468 -0.11879 0.01240 0.00258 -0.13310 -0.04215 0.02825 -0.06516 0.05881 -0.03283 -0.04504 0.07960 -0.03845 -0.04170 0.04340 -0.02598 -0.09197 
86.2483 8.9573 0.0393 0.10987 -0.05853 0.00833 0.10698 -0.10456 -0.00465 0.08311 -0.13494 -0.01045 0.07222 -0.12409 -0.00292 0.09257 -0.06081 0.00822 0.12873 -0.01517 0.01634 0.11554 -0.10946 -0.00742 0.07537 -0.15845 -0.01509 0.05388 -0.13813 -0.00630 0.09438 -0.02332 0.01593 -0.02858 -0.07731 0.01943 0.15092 0.23367 0.06148 -0.05884 0.06127 -0.00401 -0.12746 0.02373 -0.01223 -0.03527 0.07432 -0.00135 -0.02217 0.08579 -0.00034 -0.15790 0.00079 -0.01175 -0.15376 0.00357 -0.01375 -0.10328 0.02989 -0.00644 0.01766 0.10777 0.00417 -0.22379 -0.04215 -0.01919 -0.10037 0.02598 -0.00639 0.07080 0.21187 0.01102 0.12198 0.54476 -0.01345 -0.03878 -0.16342 0.01156 -0.05476 -0.08573 -0.02511 0.05361 -0.22652 -0.16472 0.08967 0.20783 -0.04809 
168.5482 6.7336 0.1127 0.08586 0.11360 -0.03684 0.09353 0.10818 -0.04959 0.04809 -0.04228 -0.04281 0.01878 -0.13126 -0.03180 0.04743 -0.02596 -0.02770 0.10427 0.20160 -0.04525 0.12588 0.20975 -0.05341 0.03481 -0.09344 -0.04395 -0.02273 -0.26445 -0.01970 0.03715 -0.05082 -0.02004 -0.03225 0.03883 0.18135 -0.27472 -0.00474 -0.14016 0.14490 -0.02134 -0.08520 0.16272 -0.00136 -0.07916 0.01018 -0.09264 -0.09490 0.22977 0.01928 -0.08576 0.05015 -0.06805 -0.08123 0.27975 0.07241 -0.06147 -0.07731 -0.14784 -0.09633 -0.03828 -0.12083 -0.10206 0.04662 -0.06803 -0.07571 -0.20448 -0.22502 -0.10325 -0.18045 0.02367 -0.08227 -0.07847 0.04398 -0.13520 -0.20308 0.03405 0.01572 0.05221 0.03559 0.14168 0.10026 0.01917 0.14827 -0.05319 0.05132 0.05051 
185.1575 6.9067 0.1395 -0.14783 0.00218 -0.06238 -0.13969 0.06493 -0.04739 -0.13298 0.01786 -0.03023 -0.14981 -0.10447 -0.03506 -0.14872 -0.09102 -0.05163 -0.15075 0.01971 -0.07470 -0.13325 0.15811 -0.04354 -0.12132 0.06369 -0.01891 -0.15473 -0.17685 -0.02334 -0.15587 -0.15960 -0.05687 0.04587 -0.03860 0.10876 0.05211 0.00822 -0.08527 0.05154 0.19685 -0.02474 -0.02248 0.15526 -0.05110 -0.00095 0.14658 -0.02648 0.13229 0.25040 -0.01566 -0.12771 0.06668 -0.06069 -0.00920 0.17553 -0.05696 -0.10444 0.07037 -0.04611 0.03022 0.16185 -0.01363 -0.22261 0.00430 -0.07510 -0.17135 0.01161 -0.04922 0.11672 -0.04090 -0.01153 0.21372 -0.09385 -0.04975 0.08132 -0.04581 0.10853 0.20221 -0.12568 -0.01527 0.22995 -0.12677 0.00080 0.20186 -0.10934 -0.02604 
193.8961 4.8685 0.1078 0.04521 -0.02749 -0.08071 0.05588 -0.01373 -0.08495 0.04345 -0.01317 -0.08436 0.03406 -0.03334 -0.08320 0.03978 -0.03387 -0.08214 0.05369 0.00259 -0.08181 0.06830 0.00989 -0.08672 0.04307 -0.01280 -0.08518 0.02372 -0.07410 -0.07805 0.03683 -0.04196 -0.08007 -0.01880 -0.00901 0.03084 0.23347 0.64964 -0.11498 0.00250 0.01308 0.06132 0.00411 0.00747 0.05524 -0.04442 -0.01855 0.05854 0.01165 0.02007 0.06318 -0.05455 -0.02615 0.04811 0.01915 0.01717 0.05618 -0.07368 -0.03688 0.05066 -0.04434 -0.01915 0.06235 -0.07036 -0.03656 0.04624 -0.10072 -0.05765 0.04929 0.09933 0.26796 -0.02713 -0.04655 -0.12291 0.04570 0.08937 0.25835 -0.02866 -0.09836 -0.17891 0.02476 -0.16654 -0.13645 0.04445 -0.13787 -0.21823 0.08215 
235.9200 5.3276 0.1747 -0.03946 0.22029 -0.03966 -0.09120 -0.00225 -0.01357 -0.10802 -0.09835 -0.00921 -0.08122 0.03475 -0.02250 -0.03349 0.22985 -0.03064 -0.02341 0.29657 -0.04864 -0.11420 -0.03864 -0.00755 -0.12989 -0.18011 -0.00047 -0.09208 0.02414 -0.02446 -0.02024 0.29755 -0.03313 0.03636 0.02759 -0.02331 0.00155 -0.05767 0.03967 0.22911 0.04188 0.05689 0.04433 -0.07105 0.05001 0.21636 0.04227 0.06210 0.29949 0.08185 0.05960 -0.06462 -0.12863 0.03626 0.01691 -0.10092 0.05494 0.05220 -0.06199 0.04463 0.27462 0.07598 0.07053 -0.15286 -0.18420 0.03151 0.04361 -0.07378 0.04418 -0.01721 -0.02640 0.01054 -0.03089 0.05867 0.01187 -0.02719 -0.08008 -0.02418 -0.12326 -0.18578 -0.03110 -0.13815 -0.24983 -0.13492 -0.08827 -0.06291 0.02169 
250.4125 6.1062 0.2256 0.07940 0.21789 0.00481 0.03995 -0.01246 0.00860 -0.01018 -0.15568 0.00802 0.00854 -0.01652 0.00627 0.06458 0.21620 0.00925 0.10207 0.31936 -0.00238 0.03388 -0.06666 0.00784 -0.05498 -0.32539 0.01180 -0.02071 -0.06571 0.00552 0.07965 0.31801 0.01235 -0.09678 0.06211 -0.00932 -0.01989 -0.08906 -0.01287 -0.12536 -0.10934 -0.00927 0.02201 -0.02748 0.01632 -0.18752 -0.13505 -0.02046 -0.15668 -0.13178 -0.01475 0.01369 -0.01229 0.02420 0.09251 0.00682 0.03154 -0.11520 -0.08342 0.00063 -0.25045 -0.16971 -0.03205 0.08199 0.03575 0.03969 -0.15901 -0.09841 -0.00202 0.08261 -0.04203 0.04131 0.20487 -0.05269 -0.00232 0.07598 0.02489 0.15546 0.10347 -0.01992 -0.17800 0.11843 -0.02165 -0.17281 0.17620 -0.00217 -0.10192 
260.9229 4.4806 0.1797 0.01918 -0.05074 -0.00905 0.05490 0.11384 -0.01504 0.09597 0.26722 -0.02175 0.08636 0.18843 -0.01606 0.03515 -0.00969 -0.01385 0.00023 -0.12537 -0.00520 0.06362 0.13869 -0.01608 0.12777 0.38381 -0.03431 0.12115 0.27855 -0.02150 0.03038 -0.05123 -0.01751 0.00876 0.00198 -0.00667 -0.09594 -0.18791 0.01717 0.05706 0.00010 0.03325 -0.07946 -0.08365 0.01743 0.00633 -0.03605 0.03380 0.12177 0.04218 0.03902 -0.22253 -0.17566 0.00469 -0.09561 -0.09722 0.01729 -0.16419 -0.15026 0.01238 0.03715 -0.01905 0.04290 -0.34288 -0.25013 0.00181 -0.24950 -0.21965 0.00763 -0.01240 -0.06956 0.02141 0.05623 -0.00068 -0.01361 -0.00699 -0.00855 0.05584 0.03010 0.01224 -0.05362 0.02957 -0.00559 -0.07842 0.04863 0.04247 -0.01686 
271.5031 4.0824 0.1773 0.03399 0.14645 0.05409 0.02147 0.12410 0.04953 -0.02222 -0.07151 0.06576 -0.03928 -0.15382 0.06855 -0.01160 -0.02637 0.06638 0.05157 0.21828 0.04948 0.03649 0.20514 0.04843 -0.03396 -0.11357 0.08212 -0.06964 -0.26475 0.07935 -0.01788 -0.03908 0.07160 0.01254 -0.02482 -0.03454 0.18015 0.39364 -0.08912 -0.02235 -0.03410 -0.03052 -0.16415 -0.11795 -0.04433 0.10498 0.04003 -0.01781 -0.00967 -0.02167 -0.02761 -0.14142 -0.11634 -0.04547 -0.27475 -0.18844 -0.05992 0.03525 -0.01605 -0.02880 0.19294 0.09289 -0.00368 -0.21602 -0.16395 -0.05037 0.07183 -0.00250 -0.02642 0.07210 0.12098 -0.03646 -0.01402 -0.08019 0.00655 0.02967 0.01815 -0.01856 0.05231 0.18959 0.02691 0.00491 0.28149 0.13462 -0.00510 0.00402 -0.00343 
280.6660 4.8974 0.2273 -0.01584 -0.07666 0.00387 -0.03832 -0.15992 0.00760 -0.03986 -0.16468 0.00567 -0.01157 -0.03499 -0.00178 0.00195 0.01101 -0.00273 -0.01573 -0.08526 0.00652 -0.06395 -0.25451 0.00869 -0.05992 -0.23904 0.00917 -0.00877 -0.01117 -0.00526 0.01771 0.08778 -0.00310 0.00737 -0.01200 -0.06407 -0.00078 -0.17657 0.02749 0.15617 0.12991 0.07704 0.13747 0.11107 0.06889 -0.05247 -0.00828 0.06738 0.24014 0.18395 0.08452 -0.08325 -0.02409 0.05755 0.23640 0.17159 0.08349 -0.21153 -0.10564 0.04607 -0.07483 -0.02443 0.07324 -0.15176 -0.06246 0.06632 -0.35778 -0.20411 0.03741 0.01852 -0.03969 -0.02426 -0.02043 0.01681 -0.01648 0.06965 0.07177 -0.10631 0.04610 0.23127 0.05349 0.06491 0.25255 0.09736 -0.03724 0.16605 0.02718 
297.5262 4.7372 0.2471 0.03115 0.11621 0.05690 0.06058 0.27408 0.04406 0.02507 0.08884 0.06683 -0.03382 -0.18718 0.07868 -0.03733 -0.15720 0.07461 0.03255 0.14182 0.05011 0.09887 0.46361 0.04387 0.03477 0.12511 0.07214 -0.05781 -0.33896 0.09850 -0.05702 -0.24107 0.08154 0.01094 -0.00670 -0.08560 0.01592 -0.18356 0.03770 0.02492 0.03639 0.04370 0.12890 0.09075 0.05058 -0.10008 -0.04445 0.03454 0.01370 0.02498 0.04098 0.04763 0.05124 0.04531 0.21238 0.14213 0.06314 -0.08956 -0.02743 0.03345 -0.12915 -0.06178 0.03486 0.08248 0.07313 0.04755 -0.13911 -0.05183 0.02994 0.02549 -0.06982 -0.00875 -0.00908 0.02946 -0.00900 0.04181 -0.03918 -0.08615 -0.11816 -0.09747 -0.07126 -0.12009 -0.12617 -0.11697 -0.14002 0.01160 0.03947 
316.2438 3.2166 0.1895 0.00218 -0.01093 -0.00529 0.00589 -0.00339 -0.00266 -0.00559 -0.04696 0.00543 -0.01377 -0.07830 0.00288 -0.00423 -0.04699 -0.00434 0.00790 0.01385 -0.00790 0.00644 0.02292 -0.00081 -0.01878 -0.09685 0.00330 -0.02228 -0.15075 0.01412 -0.00905 -0.07119 -0.00399 0.00383 0.01929 0.01918 -0.28770 -0.72654 0.16643 -0.03118 -0.02630 -0.01315 -0.08763 -0.06018 -0.01984 0.04274 0.02195 -0.00626 -0.04981 -0.03741 -0.01434 -0.04458 -0.03393 -0.02151 -0.15472 -0.09967 -0.03145 0.04966 0.02600 -0.00847 0.07453 0.04184 -0.00449 -0.08895 -0.06261 -0.02413 0.09762 0.04822 -0.00541 -0.06351 -0.15391 0.05354 0.02650 0.09364 0.00109 0.09684 0.27150 -0.05771 0.00016 -0.04215 0.01279 0.08335 -0.17846 -0.13353 0.00548 0.16953 0.05976 
365.3904 8.3327 0.6555 0.00404 0.20631 -0.02938 -0.02496 0.06468 -0.01658 -0.02913 0.03030 -0.02150 -0.01575 0.13919 -0.02483 0.01013 0.23862 -0.02050 0.00500 0.23364 -0.03713 -0.02963 0.07496 -0.01458 -0.02337 0.05166 -0.03260 -0.01637 0.20173 -0.03604 0.01613 0.27373 -0.02238 0.15174 -0.11518 0.05430 0.16015 -0.17367 0.06940 -0.21703 -0.07900 -0.02263 -0.07969 0.00386 -0.01534 -0.22115 -0.08248 -0.03139 -0.26433 -0.09986 -0.02194 -0.01267 0.04362 -0.00180 -0.09042 0.00506 -0.02181 -0.12067 -0.01075 -0.01543 -0.25336 -0.09940 -0.03677 -0.01493 0.04533 0.00473 -0.16106 -0.01983 -0.01869 0.06395 -0.06669 -0.05367 -0.07670 0.05154 -0.00364 0.10859 -0.05418 -0.25354 0.03766 -0.04292 0.27212 0.05308 -0.07913 0.23571 -0.04849 -0.01792 0.12488 
449.4534 5.9171 0.7043 -0.02523 -0.07719 0.00409 -0.02964 -0.09325 0.00906 -0.01420 -0.06577 -0.00151 -0.02512 -0.08850 0.00098 -0.03090 -0.09902 0.00727 -0.05762 -0.20960 0.01366 -0.04396 -0.15684 0.01156 -0.01639 -0.07798 0.00313 -0.04828 -0.17116 0.00736 -0.06134 -0.22499 0.01583 0.16318 0.23438 0.00884 0.09540 0.15604 -0.02424 -0.08817 -0.06523 -0.00761 -0.06441 -0.04258 -0.00054 -0.06938 -0.05348 -0.00524 -0.20048 -0.13694 -0.01626 -0.05803 -0.03096 -0.00213 -0.11047 -0.07557 -0.00262 -0.07914 -0.05634 -0.00168 -0.17619 -0.11986 -0.01492 -0.11492 -0.07314 -0.01771 -0.15898 -0.10381 -0.00692 0.01864 0.02862 -0.01888 -0.02850 -0.01350 0.00587 -0.02274 -0.09852 -0.00911 -0.01750 -0.01031 0.02500 -0.22492 -0.32587 -0.53737 -0.01069 -0.02517 -0.00501 
478.6859 11.7203 1.5823 0.00988 0.10091 -0.00667 -0.03380 -0.02786 0.00464 -0.02941 -0.05362 0.00343 -0.02764 -0.03521 0.00357 -0.01480 0.01809 0.01161 -0.00407 0.04673 -0.00416 -0.04699 -0.03057 0.00703 -0.00496 0.04261 0.00489 -0.03850 0.01595 -0.00954 -0.02172 -0.00056 0.01696 0.24824 -0.13925 -0.09579 -0.44554 0.13432 0.05163 -0.01626 0.02686 0.01025 0.01049 0.03599 0.00883 -0.13179 -0.05670 -0.00624 -0.02725 0.02430 0.01235 0.01669 0.03557 0.00364 -0.05085 0.01340 -0.00898 -0.05035 0.01055 -0.00369 -0.12425 -0.05132 -0.00419 -0.02587 0.01718 0.01799 -0.11779 -0.01968 -0.00925 -0.29635 0.14056 0.14042 -0.12998 0.04907 0.07676 -0.26891 0.22905 0.30349 0.11398 -0.02717 -0.22201 0.01606 0.21319 0.05572 0.31083 -0.08641 -0.10615 
514.0770 1.2701 0.1978 -0.00992 -0.04748 0.00323 0.00615 0.01708 -0.00154 -0.00536 -0.02572 0.00892 -0.00657 -0.00684 0.00164 0.00370 0.01504 -0.00478 -0.01486 -0.06309 0.00272 0.00917 0.02369 -0.00269 -0.01309 -0.05378 0.01199 -0.00582 -0.01431 0.00316 0.00099 0.00575 -0.00342 0.02093 0.02843 0.01091 -0.01764 -0.07074 -0.01513 -0.00044 0.00341 0.00344 -0.01843 -0.01416 0.00054 -0.01980 -0.01002 -0.00187 -0.00977 -0.00230 0.00290 -0.01559 -0.01639 -0.00701 -0.02244 -0.01260 -0.00246 0.00779 0.00154 -0.00630 -0.04025 -0.02363 -0.00137 0.04586 0.02998 0.00854 -0.02388 -0.01568 -0.00819 0.01098 -0.02338 -0.01565 0.02752 0.02774 -0.02588 0.01199 -0.00427 0.00258 -0.04999 -0.03963 -0.04531 -0.10291 0.56313 0.77027 -0.06931 -0.18941 0.03407 
547.0944 5.6113 0.9896 0.02635 0.08715 0.00567 -0.00695 -0.04120 0.00997 0.00956 0.02373 -0.00894 0.02223 0.02230 0.00268 -0.02543 -0.12086 0.01678 0.02770 0.09971 0.00351 -0.00927 -0.11654 0.00642 0.00149 -0.00484 0.00134 0.02357 0.00764 0.00486 -0.02883 -0.12733 0.02104 -0.07063 0.07122 -0.07980 0.09126 0.07445 0.23106 0.05118 0.02776 0.00178 -0.03162 -0.02856 -0.00054 -0.00648 -0.00753 0.00474 0.02851 0.01217 -0.00089 -0.00462 -0.01018 -0.00167 -0.04264 -0.03908 -0.00043 -0.02139 -0.02207 -0.00474 -0.01415 -0.01283 0.00806 0.07120 0.04816 0.01958 -0.00001 -0.02701 -0.00381 -0.07195 0.04942 0.11814 -0.10439 0.04078 0.15250 -0.03106 -0.03723 -0.14547 0.33850 -0.18986 0.07131 0.39675 0.11621 0.53014 0.29620 -0.22342 0.01949 
561.8091 4.7326 0.8801 -0.04379 -0.17438 -0.00806 0.03140 0.05397 -0.00585 0.02842 0.09466 0.02166 -0.05176 -0.19732 0.01522 0.05522 0.24206 -0.02114 -0.05632 -0.22723 -0.00433 0.03353 0.06902 -0.00511 0.03748 0.12657 0.02210 -0.06617 -0.28706 0.02768 0.07824 0.32076 -0.03321 -0.01066 0.00732 -0.01099 0.03061 0.04287 0.01633 0.20872 0.13266 0.03078 -0.11170 -0.08994 0.00114 -0.23011 -0.13928 -0.00557 0.25116 0.15893 0.03419 -0.00398 -0.01798 -0.02722 -0.17859 -0.13481 -0.00706 0.12610 0.09587 0.00646 -0.30577 -0.18619 -0.00782 -0.02258 -0.02923 -0.02651 0.18556 0.11919 0.00978 -0.00393 0.01188 0.00508 -0.02186 -0.00653 0.01672 -0.00483 -0.01691 -0.01270 0.04526 0.00072 0.02895 0.11593 -0.15501 -0.14845 0.05456 0.04913 -0.02649 
570.8035 4.4236 0.8492 -0.02523 -0.16566 0.02102 0.05140 0.23707 -0.01350 -0.06239 -0.22289 0.02310 0.01463 0.12341 -0.01982 0.01618 0.02175 -0.02145 -0.03580 -0.18649 0.01378 0.09177 0.39685 -0.01583 -0.07828 -0.27943 0.02980 0.03969 0.22039 -0.03001 0.01885 0.05429 -0.01725 -0.00139 0.00694 -0.01066 0.00214 0.04024 0.03530 -0.09481 -0.03791 0.00085 0.17986 0.10446 0.01748 -0.04013 -0.02338 -0.02009 -0.10858 -0.05164 -0.00364 -0.19666 -0.12739 -0.01032 0.28558 0.17564 0.03002 0.15035 0.07397 0.00678 -0.04988 -0.03161 -0.01327 -0.28396 -0.18341 -0.01552 0.22801 0.12542 0.01093 -0.02277 0.01859 0.02674 -0.02665 0.00261 0.02804 -0.02400 -0.01144 -0.01503 0.06428 -0.02470 0.01503 0.05207 -0.11646 -0.12093 0.04034 0.01448 0.03050 
573.1604 5.3790 1.0411 -0.05491 -0.21461 -0.00640 0.02568 0.06618 -0.00420 0.02283 0.09354 0.02873 -0.06082 -0.20795 0.02185 0.05522 0.27718 -0.02584 -0.05719 -0.26759 0.00932 0.02374 0.09685 -0.00139 0.03288 0.13169 0.02941 -0.07470 -0.30129 0.03524 0.07010 0.31627 -0.04043 -0.00351 0.00232 -0.03305 -0.02764 0.02278 0.03618 -0.18245 -0.12232 -0.03129 0.06492 0.05485 0.00077 0.24828 0.14090 0.01525 -0.24293 -0.14355 -0.02764 0.04891 0.04510 0.03560 0.10458 0.07230 0.01161 -0.16492 -0.11765 0.00029 0.28062 0.16031 0.00712 0.08460 0.06733 0.03654 -0.21945 -0.14493 -0.00273 -0.03334 0.02011 0.03261 -0.01917 0.00258 0.02539 -0.02760 0.00843 -0.00957 0.07408 -0.04304 0.01987 0.07881 -0.01200 0.06599 0.04485 -0.02102 0.04463 
579.7529 4.3216 0.8558 0.01592 0.11968 -0.01882 -0.04204 -0.21390 0.01199 0.06394 0.22110 -0.02042 -0.02098 -0.14651 0.01749 -0.00111 0.02574 0.01357 0.02271 0.13654 -0.01503 -0.07689 -0.37004 0.01315 0.07964 0.27677 -0.02687 -0.04735 -0.25359 0.02903 -0.00189 -0.00262 0.00761 -0.00291 0.00240 0.00125 -0.00892 -0.02340 -0.00805 -0.11001 -0.04770 -0.00024 0.19817 0.11358 0.01787 -0.03586 -0.02049 -0.01885 -0.12861 -0.06369 -0.00479 -0.20787 -0.13829 -0.01093 0.32542 0.19945 0.03246 0.15657 0.07676 0.00619 -0.02155 -0.01440 -0.00755 -0.27612 -0.17937 -0.00968 0.22690 0.12635 0.00994 0.00041 -0.00866 -0.00783 -0.00148 0.00549 -0.01051 0.00252 -0.00159 -0.00094 -0.00750 0.00792 0.00399 -0.03712 0.12281 0.14926 -0.01890 -0.03426 0.00822 
730.8242 4.0853 1.2856 0.01692 0.00220 -0.00893 0.01848 0.02731 0.01275 -0.00865 -0.00195 0.01471 -0.00985 -0.00508 -0.00144 -0.00943 -0.01160 -0.01108 0.00900 -0.02419 -0.00916 0.00152 -0.07616 0.01181 -0.01082 -0.00601 0.02241 0.01336 0.06319 -0.00746 -0.01362 -0.00356 -0.00356 -0.01979 0.00925 -0.05753 0.11342 -0.10897 -0.12089 0.00479 0.00901 -0.00399 0.00830 0.00836 0.00745 0.00543 -0.00153 0.00108 -0.04853 -0.02280 -0.00684 -0.00390 -0.00429 0.00738 -0.04559 -0.02768 0.00056 -0.01119 -0.01217 -0.00094 0.02243 0.00687 0.00989 0.01731 0.01406 0.01732 0.08111 0.04290 0.00306 0.04772 -0.07720 -0.19509 -0.16606 0.08323 -0.08027 0.13284 0.01819 0.25877 0.03294 -0.04134 0.16904 -0.24957 -0.03508 0.02043 0.35797 -0.41912 -0.59585 
798.8508 1.4426 0.5424 -0.00532 -0.00080 0.00091 -0.00414 -0.00837 -0.00695 0.00763 -0.00456 -0.00184 0.00279 0.00781 0.00374 -0.00023 0.00379 0.00246 0.00031 -0.00251 0.00927 -0.00779 0.02941 -0.00381 0.00616 -0.01228 -0.00944 -0.01366 -0.04656 0.00856 -0.00687 -0.04716 -0.00149 0.00991 0.00725 0.01415 0.07957 0.00468 -0.03397 -0.00059 -0.00800 0.00640 -0.00055 -0.01407 -0.01039 -0.00200 0.00997 0.00742 -0.02435 -0.01809 0.00738 -0.02220 -0.00487 -0.01064 0.07370 0.03617 -0.00309 -0.01820 -0.00350 -0.00160 0.00394 0.01878 -0.00720 0.09872 0.08367 0.02083 0.08671 0.02034 0.00455 0.06866 -0.01526 -0.02634 -0.11850 0.00204 -0.00562 0.03287 -0.01130 0.04538 -0.01938 -0.00576 -0.06801 0.80042 -0.14601 0.19138 -0.20958 0.42360 0.03087 
841.4512 4.8248 2.0127 0.19913 -0.02939 -0.14582 0.12065 -0.00417 0.17089 -0.06642 0.00478 0.10226 -0.12090 0.01244 0.05040 -0.13322 0.01134 -0.17393 0.19324 -0.11072 -0.12787 -0.10462 -0.13283 0.23687 -0.02293 0.13900 -0.22245 0.19885 0.13522 0.13368 -0.24027 -0.01062 -0.04791 0.00089 0.00194 -0.00311 -0.01602 0.01295 0.00657 0.03196 -0.12001 0.19176 0.08211 -0.14064 -0.10335 -0.09686 0.15069 0.10178 0.10059 -0.10304 0.18624 0.00052 0.02181 -0.10785 0.16073 0.08084 -0.20814 -0.03349 0.07919 -0.08701 -0.03226 0.24089 -0.03231 -0.10508 0.07998 0.16806 0.03700 -0.21513 -0.07703 -0.01612 0.00930 0.00668 0.02756 -0.00955 0.00252 -0.01225 -0.00485 -0.01037 -0.01016 0.00549 0.01368 0.03964 -0.01933 0.00764 0.05601 0.00742 -0.03702 
844.2248 2.6192 1.0998 0.04288 0.01284 -0.09017 0.04932 -0.01544 -0.02478 0.07687 -0.05392 0.04877 -0.06356 -0.01100 0.12904 -0.11470 0.00705 -0.05888 0.09429 -0.13321 0.03924 -0.11419 0.06356 0.02769 0.15532 0.22261 -0.12239 0.05629 0.32105 0.11102 -0.05754 0.06035 -0.12249 0.00556 0.00537 -0.00506 -0.03343 0.01068 0.00699 0.02542 0.02874 -0.10944 -0.03110 0.04002 -0.03808 0.05922 -0.13140 -0.02006 -0.14196 0.07289 -0.03670 -0.09921 0.05203 0.01373 0.12966 -0.04005 0.09806 -0.04757 -0.04347 0.14486 0.15783 -0.05413 -0.06850 0.32410 0.24556 -0.13067 0.38171 0.31624 0.17109 -0.02937 0.01344 0.00523 0.05049 -0.01573 0.00315 -0.01227 0.00467 -0.01235 -0.02942 0.00405 0.02801 0.09993 -0.03187 0.05291 0.11309 0.00607 -0.08689 
846.2051 3.7054 1.5633 -0.13991 0.01784 -0.01023 -0.02876 -0.02442 -0.23191 0.23489 -0.05729 -0.01022 0.00893 0.01002 0.19265 -0.08303 0.01910 0.06090 0.05068 0.08883 0.22734 -0.11863 0.22539 -0.19861 0.22195 -0.11560 0.06498 -0.18638 0.15749 0.10676 0.11750 0.00834 -0.20186 -0.00752 -0.00176 0.00447 0.03106 -0.00296 -0.00656 0.02547 -0.08394 0.08939 0.05153 -0.07712 -0.09561 -0.01714 0.04727 0.06326 0.01594 -0.00763 0.13924 -0.00369 0.07876 -0.06714 0.06836 -0.03903 -0.11506 0.01472 0.07231 0.01418 -0.11138 0.03411 -0.08675 -0.32278 -0.06047 0.05080 -0.25361 -0.30094 0.00323 0.02182 -0.01314 -0.00576 -0.04365 0.01771 -0.00226 0.01374 -0.00097 0.01070 0.03802 -0.00202 -0.02104 -0.20791 0.06318 -0.06939 -0.08560 -0.07415 0.07851 
848.7602 3.1577 1.3403 0.02394 -0.01559 -0.07471 0.04240 -0.02488 -0.03300 0.08788 -0.03008 0.04280 -0.05300 0.01826 0.12451 -0.10681 0.01808 -0.05420 0.14110 0.08844 0.04197 -0.10059 0.10843 0.01574 0.11316 0.04414 -0.09276 -0.00361 0.10989 0.12709 -0.06468 -0.03027 -0.12383 -0.00405 0.00213 0.00052 -0.00199 0.01030 -0.00308 -0.02227 0.10993 -0.02118 -0.00678 0.09379 0.18036 -0.03442 0.05379 -0.06641 -0.23051 -0.28877 -0.19250 0.13089 -0.14793 0.08042 -0.49260 -0.07294 0.03574 0.03272 -0.05207 -0.17132 0.00018 -0.00865 0.20692 -0.15241 -0.33621 0.04778 -0.09262 0.07341 -0.18701 -0.00236 0.00372 0.00028 0.00308 -0.00582 0.00169 -0.00090 -0.00329 -0.00218 -0.01218 -0.00081 -0.00096 0.14153 -0.03356 0.03819 -0.00312 0.07013 -0.00587 
852.2834 1.3917 0.5956 -0.03554 -0.02439 0.02195 -0.02864 -0.03264 -0.03260 0.00244 -0.02991 -0.01071 0.00746 -0.02831 0.00244 0.02289 -0.01650 0.03071 0.04492 0.31627 -0.00605 0.06738 0.27042 -0.04829 0.08680 0.29739 0.00616 0.01075 0.19960 -0.03766 0.08187 0.16039 -0.00083 0.00818 0.00971 -0.00243 -0.00821 -0.01060 0.00485 -0.03184 -0.00927 0.03678 -0.02710 -0.03690 0.02529 -0.05585 0.05884 0.00231 0.32320 0.10397 -0.00063 -0.00102 -0.08028 0.00240 0.24754 0.22969 0.00084 -0.03190 -0.02085 -0.07304 0.15574 0.17515 0.07877 0.39976 0.18757 0.06842 0.28034 0.17184 -0.05519 -0.00523 0.00159 0.00014 0.00897 -0.00032 -0.00035 -0.00120 0.00296 -0.00216 0.00253 0.00248 0.00907 -0.08345 -0.00496 -0.04876 0.03574 -0.03708 -0.01767 
858.2318 1.2336 0.5354 0.01468 -0.02254 0.00946 -0.01267 -0.04273 0.03000 -0.05592 -0.03612 -0.00056 -0.01032 -0.05024 -0.02448 0.02806 -0.02703 0.00472 0.04720 0.30875 -0.08245 0.11236 0.32751 0.01034 0.08940 0.52257 -0.06447 0.11390 0.35905 -0.05816 0.06380 0.25480 0.03004 -0.00413 0.00892 -0.00045 0.00072 -0.01649 -0.00211 0.00951 -0.00582 -0.01421 0.02161 0.01248 -0.01645 0.02127 -0.02802 0.00294 -0.13591 -0.03305 0.01236 0.00948 0.04900 -0.00363 -0.15234 -0.14541 -0.00817 0.02242 0.01643 0.03315 -0.06567 -0.07564 -0.03063 -0.29490 -0.14069 -0.02233 -0.20372 -0.14286 0.01999 0.00840 -0.00106 -0.00262 -0.01100 0.00002 -0.00300 0.00595 -0.00103 0.00431 -0.00118 -0.00391 -0.00492 0.07051 0.01064 0.05454 -0.02298 0.03956 0.00141 
862.6273 1.4807 0.6492 0.03447 -0.00375 -0.03711 0.02542 0.01554 0.02087 0.00624 0.02188 0.01351 -0.02885 -0.01755 0.02644 -0.04424 -0.03296 -0.02924 0.02556 -0.04970 -0.03241 -0.06382 -0.11839 0.04251 -0.03556 -0.14637 -0.04673 0.06863 0.16046 0.02700 0.01139 0.30027 -0.01985 0.00155 0.00176 0.00597 0.02720 -0.01219 -0.00670 -0.08105 -0.00461 -0.05534 -0.07295 0.00704 0.03185 0.02469 -0.03200 -0.02699 0.53451 0.35160 -0.03034 0.02308 -0.00582 0.03526 0.27684 0.18730 0.10336 0.07103 0.01223 0.02277 0.01345 -0.06364 0.04556 -0.02662 -0.07244 -0.04586 -0.40798 -0.18386 -0.00784 0.03042 -0.01067 -0.00119 -0.04646 0.01231 -0.00238 0.00988 -0.00052 0.00719 0.02712 -0.00404 -0.02909 -0.07872 0.02300 -0.05211 -0.12859 0.02040 0.11454 
868.7132 1.3216 0.5876 0.00960 -0.08590 -0.01781 0.00949 -0.03388 0.02325 0.00363 0.05244 0.01395 -0.00959 0.05859 0.00645 -0.02922 -0.00821 -0.02042 0.16701 0.60246 -0.08423 0.02677 0.19222 0.02918 -0.09662 -0.33506 0.01362 -0.05900 -0.33622 0.06154 -0.03616 0.10660 0.01551 0.00578 0.00255 0.00345 0.01580 0.00403 -0.00371 -0.00191 -0.01073 -0.02093 0.02047 0.01298 -0.01830 -0.02884 -0.05118 -0.00019 0.05898 0.05430 -0.00138 0.01034 0.03802 -0.00347 -0.09973 -0.10709 -0.00548 -0.02880 -0.01567 0.03550 0.32818 0.17668 0.01909 -0.16982 -0.08728 -0.04319 0.18573 0.12286 0.04973 0.01288 -0.00552 0.00081 -0.02332 0.00836 -0.00052 0.00128 -0.00551 0.00355 0.01913 0.00056 -0.01854 -0.09698 0.04251 -0.02538 -0.07224 -0.02713 0.07088 
878.1672 1.2801 0.5816 -0.02160 0.01917 0.01475 -0.00415 0.06110 -0.02181 0.00738 0.02842 -0.01774 0.00050 -0.06684 -0.00771 0.00821 -0.05704 0.02504 -0.06712 -0.13638 0.01731 -0.06858 -0.37921 -0.02330 -0.06064 -0.22692 0.05172 0.06398 0.41259 -0.07350 0.13737 0.41775 -0.02269 0.00461 0.00723 0.00150 -0.00995 0.01451 0.00004 -0.01027 -0.02160 0.01469 0.04143 0.00697 -0.00808 -0.04106 -0.00618 0.00851 0.09682 0.03885 0.01941 0.03267 0.01810 -0.00613 -0.20529 -0.12375 -0.05548 -0.03847 -0.01827 -0.01312 0.24520 0.18125 0.01151 -0.24710 -0.13433 0.02768 0.28181 0.12730 0.00694 -0.01294 0.00661 0.00015 0.01966 -0.00827 0.00291 -0.00429 -0.00140 -0.00516 -0.02257 -0.00237 0.00729 0.14291 -0.02150 0.07351 0.04148 0.02899 -0.04837 
889.4479 1.1951 0.5570 0.00546 0.03396 0.00415 -0.01034 -0.01760 -0.00605 -0.00808 -0.05356 0.00295 0.01482 0.02030 -0.00218 0.01253 0.04716 -0.00427 -0.04340 -0.31947 0.08239 0.01106 0.10871 -0.00727 0.09884 0.35642 -0.02903 -0.02354 -0.19255 0.02331 -0.07979 -0.38573 0.00666 -0.00587 0.00613 -0.00390 -0.00092 -0.00826 0.00142 -0.04230 -0.02813 -0.01271 0.00671 0.01400 -0.00105 -0.03674 -0.02979 0.00044 0.41753 0.20693 -0.01128 0.04656 0.03270 0.00721 -0.06588 -0.03228 -0.00949 -0.00675 -0.01648 0.01038 0.30305 0.18121 0.04009 -0.33396 -0.20200 -0.00832 0.13737 0.04985 0.01978 0.00140 -0.00002 -0.00111 0.00272 -0.00111 -0.00128 0.00114 -0.00129 0.00082 -0.00387 -0.00398 0.00481 0.04296 0.01513 0.05844 0.01543 0.00150 -0.02344 
918.5676 1.5973 0.7941 -0.02558 -0.03896 0.00474 0.00258 0.01414 -0.02156 0.02473 -0.00039 0.00790 -0.00066 0.02969 0.00487 -0.00061 -0.00688 0.01427 0.06562 0.37033 -0.03749 -0.03139 -0.10738 -0.01847 0.00940 -0.06047 0.05302 -0.10780 -0.16669 0.00461 0.00001 -0.04307 0.00537 0.00832 0.00699 -0.02928 -0.04327 0.04732 0.01574 -0.03577 -0.01998 -0.00901 -0.00705 -0.00506 -0.00209 0.01507 0.00674 0.00736 0.24794 0.14793 0.00483 -0.00608 0.01608 0.00956 0.04693 0.01997 0.00947 0.03549 0.00962 -0.00048 -0.17255 -0.12067 0.02059 -0.07846 0.00236 0.06989 -0.17579 -0.18985 -0.01528 -0.07755 0.02724 -0.01153 0.09686 -0.03174 0.01060 -0.01367 0.00156 -0.00143 -0.08832 -0.00230 0.08009 0.45919 -0.14575 0.18937 0.36401 0.04512 -0.37299 
940.1674 1.1529 0.6004 0.01812 0.02408 -0.00468 -0.01146 -0.02415 0.00324 0.00108 -0.00906 -0.00557 0.01457 0.05179 0.00661 -0.02696 -0.05413 -0.00481 -0.03371 -0.25358 0.03665 0.00574 0.21267 0.00874 0.02860 0.09183 -0.05200 -0.05958 -0.42156 0.06760 0.09716 0.55248 -0.01522 0.00124 -0.00105 0.00018 0.00127 0.00137 -0.00072 -0.01345 -0.01817 0.00763 0.01380 0.00925 -0.00509 0.03624 0.03497 0.00661 0.15226 0.08688 0.02115 0.00398 0.00106 0.00477 -0.12500 -0.04945 -0.04102 -0.02806 -0.01942 -0.01155 -0.40269 -0.23407 -0.05367 -0.06653 -0.02738 0.03656 0.25574 0.13680 0.00597 -0.00008 -0.00143 -0.00038 -0.00019 0.00111 -0.00094 0.00059 0.00009 0.00218 -0.00015 -0.00026 -0.00054 -0.01273 0.01220 0.00964 0.00363 -0.01125 -0.00509 
941.9797 1.1624 0.6077 -0.00144 0.00188 0.00855 -0.00448 0.02763 -0.00936 -0.00403 -0.03218 -0.00351 0.01309 0.03372 0.00317 -0.00924 -0.02733 -0.00431 0.01908 -0.06401 0.06492 -0.07243 -0.18757 0.00083 0.07146 0.25503 -0.04057 -0.06083 -0.29617 0.03840 0.07999 0.26768 -0.04743 -0.00075 0.00061 0.00198 -0.00173 -0.01021 0.00138 -0.00457 -0.00106 0.01087 0.05029 0.01813 0.00632 -0.03720 -0.02269 -0.01135 -0.02228 0.02100 0.02962 -0.04346 -0.02518 -0.01214 -0.31774 -0.22854 -0.03030 0.03555 0.02725 0.01004 0.35621 0.23945 -0.02441 0.37313 0.21955 -0.02516 -0.33364 -0.22335 -0.01178 0.00234 0.00013 -0.00044 -0.00097 -0.00044 -0.00113 0.00019 -0.00129 -0.00028 -0.00057 0.00033 0.00187 -0.00064 -0.02114 -0.02862 0.00413 0.01801 -0.00252 
946.9695 1.1852 0.6262 -0.01205 -0.01231 0.01301 0.00674 0.05356 -0.00889 -0.00466 -0.04312 -0.00214 0.00865 0.03376 0.00534 -0.00333 -0.02434 -0.00299 0.02922 0.11104 0.02106 -0.09157 -0.39465 0.00026 0.09433 0.33304 -0.05058 -0.07919 -0.27919 0.03323 0.08238 0.20449 -0.05703 0.00097 -0.00040 0.00167 -0.00067 -0.01142 0.00330 0.02727 0.03011 -0.00923 -0.05845 -0.04060 -0.00199 -0.00382 -0.01434 0.00220 -0.32432 -0.14365 -0.00822 0.03873 0.01194 0.00496 0.46459 0.26860 0.07579 -0.00866 0.00171 -0.00945 0.12840 0.05332 0.06088 -0.25997 -0.16813 0.00540 0.02737 0.07867 -0.00866 0.00429 0.00011 0.00160 -0.00220 0.00060 -0.00149 -0.00100 0.00033 0.00043 0.00134 -0.00108 -0.00405 -0.01683 0.01820 0.01240 -0.00707 -0.00738 0.00405 
954.7712 1.1958 0.6422 0.02160 0.03368 -0.00233 -0.02745 -0.06518 0.00135 -0.00347 0.03601 -0.00498 0.01440 0.00018 -0.01269 -0.01043 -0.01795 0.00402 -0.03228 -0.36525 0.08619 0.08937 0.53397 -0.00773 -0.08313 -0.26260 0.05871 0.03610 -0.03256 -0.00077 0.02088 0.23063 0.02509 0.00137 0.00310 -0.00701 -0.00219 0.02727 0.00421 0.01494 0.02404 0.00011 -0.02593 -0.02798 0.00319 -0.02781 -0.02447 -0.00205 -0.25438 -0.09325 0.01041 0.01274 -0.00183 0.00007 0.25856 0.13529 0.04816 0.01926 0.01850 -0.00847 0.33196 0.19598 0.04721 -0.06003 -0.03576 0.02171 -0.18328 -0.09748 -0.02234 -0.02542 0.00525 -0.00631 0.02712 -0.00733 0.00455 -0.00139 0.00061 0.00075 -0.02476 0.00013 0.02467 0.12084 -0.03932 0.05182 0.12417 -0.00464 -0.13053 
1040.8024 1.4781 0.9434 0.05762 -0.01728 -0.09004 -0.04466 0.01780 0.01049 0.08782 -0.02562 0.02687 -0.02191 0.00740 -0.06773 0.01683 -0.00138 0.09196 -0.08014 -0.05599 -0.28023 -0.44917 0.06972 0.13386 0.11073 0.05089 0.18368 -0.37540 0.05224 -0.19487 -0.24673 0.08658 0.46411 -0.00334 -0.00077 0.00307 -0.00445 -0.01706 0.00053 -0.00197 0.01379 -0.03669 0.01290 -0.01630 0.00557 -0.01080 0.00807 0.02847 -0.01178 -0.04067 -0.06974 -0.02071 0.02990 0.00085 0.05336 -0.13630 0.10266 0.01111 -0.01200 -0.02888 0.02957 -0.02625 0.22681 -0.02295 0.07311 0.09520 0.07998 -0.11632 -0.02353 0.00663 0.00074 0.00088 -0.00474 0.00087 -0.00092 0.00049 0.00048 -0.00120 0.00632 0.00036 -0.00473 -0.03780 0.01175 -0.01370 -0.02472 -0.00324 0.03127 
1042.7551 1.4801 0.9482 -0.02044 0.00923 0.03614 0.01493 -0.00507 -0.00853 -0.03640 0.01028 -0.00974 0.01425 -0.00449 0.02286 -0.01115 0.00095 -0.03594 0.03559 -0.01171 0.12722 0.17296 -0.03810 -0.05756 -0.04486 -0.01490 -0.05421 0.17724 -0.02414 0.08072 0.07593 -0.01087 -0.15524 0.00219 -0.00308 0.00309 0.00239 0.00680 -0.00362 -0.01007 0.03054 -0.09984 0.02543 -0.03576 0.02401 -0.02727 0.03122 0.06979 0.04764 -0.09463 -0.19887 -0.05713 0.08311 -0.00193 0.15425 -0.35532 0.29494 0.03306 -0.04207 -0.06170 -0.00452 -0.08583 0.50433 -0.05263 0.18448 0.20180 0.24641 -0.37076 -0.04364 0.00272 -0.00334 0.00232 -0.00313 0.00211 -0.00130 -0.00064 0.00108 -0.00069 0.00443 0.00170 -0.00440 -0.04299 0.00694 -0.02439 -0.02428 -0.01152 0.02773 
1057.0531 1.4354 0.9450 -0.03634 0.00892 -0.02078 0.02037 -0.00259 0.05537 0.01033 -0.00498 -0.04026 -0.02737 0.01079 0.04868 0.04735 -0.00690 0.01739 -0.22380 -0.01234 -0.26984 0.05287 0.03127 0.05226 0.01021 -0.04482 -0.36423 -0.15298 0.01533 0.01225 0.14741 -0.08521 -0.12383 -0.00079 0.00126 0.00053 0.09207 0.25226 -0.05535 -0.03252 0.04304 0.01507 0.03257 -0.03935 -0.05737 0.03607 -0.06099 -0.00167 -0.17467 0.36877 0.24453 -0.00131 -0.00906 0.05027 -0.01956 -0.07009 -0.07345 -0.00806 0.01922 -0.06673 0.09453 -0.09372 0.19794 -0.05111 0.11620 0.40953 -0.12291 0.23011 -0.08534 -0.02068 -0.05755 0.01265 0.00363 0.01422 -0.00368 0.00502 0.01124 -0.00230 0.00119 0.00085 -0.00177 -0.00422 -0.00459 -0.01314 -0.00940 0.00358 0.01604 
1058.2879 1.4856 0.9803 -0.02957 0.00748 -0.01958 0.01232 -0.00064 0.05258 0.01540 -0.00519 -0.03544 -0.02661 0.01141 0.03646 0.04586 -0.01296 0.02052 -0.19732 -0.01520 -0.24193 0.00522 0.04282 0.06132 0.01778 -0.03346 -0.31976 -0.18028 0.00389 -0.00796 0.14656 0.00073 -0.10051 0.00061 -0.00038 -0.00236 0.18115 0.49157 -0.10356 0.02654 -0.03342 -0.01362 -0.02681 0.03084 0.05164 -0.03736 0.05142 0.00041 0.13791 -0.30674 -0.20430 -0.00077 0.01222 -0.04185 0.02904 0.04712 0.07786 0.01121 -0.02046 0.05199 -0.01885 0.12269 -0.16865 0.03907 -0.08507 -0.32413 0.11824 -0.24431 0.06898 -0.04468 -0.11193 0.02320 0.01168 0.02680 -0.00553 0.01014 0.02504 -0.00386 -0.00215 0.00139 0.00055 0.02356 -0.00123 0.01210 0.00543 -0.00107 -0.00062 
1061.1931 1.5358 1.0190 0.03753 -0.01288 0.02240 -0.02372 0.00717 -0.06100 -0.01592 0.00118 0.03739 0.03822 -0.01667 -0.04833 -0.05508 0.01593 -0.01675 0.24267 0.02841 0.28817 -0.07068 -0.05498 -0.05528 -0.00460 0.08085 0.33418 0.25390 -0.01196 0.01541 -0.20468 0.03693 0.17453 0.00094 0.00099 0.00274 0.23819 0.65151 -0.14198 -0.00735 0.00749 0.00393 0.00804 -0.00691 -0.01662 0.01414 -0.01552 0.00014 -0.03301 0.08203 0.05473 0.00112 -0.00722 0.01116 -0.02131 -0.00124 -0.03773 -0.00607 0.00840 -0.01187 -0.02052 -0.05508 0.04961 -0.00505 0.01854 0.08120 -0.04373 0.10163 -0.01756 -0.05471 -0.15146 0.03339 0.01101 0.03658 -0.00904 0.01312 0.03207 -0.00730 0.00096 0.00139 -0.00574 0.01829 -0.00963 -0.01153 -0.03284 0.00446 0.03581 
1094.0391 1.2158 0.8574 -0.03202 0.00382 -0.03829 0.02179 0.00029 -0.03368 -0.01652 -0.00754 -0.01460 0.03878 0.00034 0.04172 -0.02368 0.00816 0.04645 -0.22420 -0.00956 -0.30086 0.24260 -0.07294 -0.10615 -0.01158 0.01017 -0.09332 0.34338 -0.08806 0.15967 -0.21994 0.08824 0.32185 0.00016 0.00009 -0.00058 -0.00732 -0.02080 0.00703 0.01949 -0.03367 -0.01970 0.00627 0.00755 -0.02725 -0.00089 -0.00618 0.04947 0.13648 -0.25474 -0.18269 -0.00068 -0.01306 -0.01578 -0.07320 0.10969 -0.13694 -0.01916 0.04304 0.01666 0.05300 -0.07530 0.38156 0.03870 -0.02797 -0.10155 -0.21455 0.27762 -0.00095 -0.00110 0.00686 -0.00243 0.00168 -0.00196 0.00098 0.00004 -0.00154 0.00098 -0.00287 0.00049 0.00209 0.02107 -0.00324 0.01109 0.01777 -0.00376 -0.02599 
1095.9943 1.2160 0.8606 0.00786 0.00925 0.01897 0.01266 -0.01189 0.02333 0.01125 0.00434 0.03535 -0.04256 0.01086 -0.03112 0.01550 -0.01421 -0.03971 0.05633 -0.03414 0.10567 0.07625 0.01927 0.00848 0.01010 0.01920 0.26463 -0.38820 0.06461 -0.15495 0.19970 -0.03123 -0.28440 -0.00033 0.00039 -0.00015 0.01220 0.03084 -0.00468 -0.00621 -0.01319 -0.01615 0.02939 -0.02465 -0.00488 0.00247 0.00893 0.05165 0.07306 -0.04533 -0.05938 0.01256 -0.01987 -0.04605 0.05105 -0.17334 0.09764 -0.03471 0.05006 0.00943 -0.01182 -0.10179 0.38064 0.07806 -0.12019 -0.36124 -0.25144 0.40410 -0.01256 -0.00384 -0.00701 0.00155 0.00147 0.00098 0.00034 -0.00011 -0.00002 -0.00067 0.00064 0.00101 0.00017 0.02378 -0.00189 0.01125 0.00316 0.00783 -0.00976 
1102.9609 1.1972 0.8581 0.01310 -0.00092 0.02476 -0.01322 0.00178 0.02306 0.00816 0.00405 0.00108 -0.01637 -0.00090 -0.02154 0.01414 -0.00614 -0.02476 0.11107 -0.00804 0.16490 -0.13666 0.04189 0.06409 0.00543 -0.00921 0.01023 -0.17228 0.03600 -0.08058 0.13411 -0.00656 -0.18238 -0.00050 0.00002 0.00004 0.00401 0.00324 -0.00234 0.03790 -0.03613 -0.02753 -0.02878 0.04740 -0.05195 0.00397 -0.03183 0.01902 0.17053 -0.34873 -0.24740 -0.02213 0.00914 0.04773 -0.21528 0.43122 -0.39571 0.01436 0.00011 0.01704 0.04988 -0.05921 0.19442 -0.05583 0.14225 0.39754 -0.01496 -0.04471 0.01724 0.00436 -0.00256 0.00117 -0.00191 0.00093 -0.00061 -0.00046 0.00096 -0.00008 0.00213 -0.00129 -0.00242 -0.01858 0.00379 -0.00853 -0.01800 -0.00142 0.01991 
1104.8867 1.1923 0.8576 -0.02098 0.01763 -0.03518 0.06781 -0.02505 -0.01554 -0.00217 -0.00327 0.06837 -0.03189 0.02167 -0.00245 -0.02446 -0.01033 -0.01247 -0.21327 -0.03402 -0.28046 0.58193 -0.11390 -0.17321 0.00813 0.08711 0.53516 -0.24692 0.00791 -0.06905 -0.00967 0.04866 -0.02071 0.00050 -0.00044 0.00052 0.01028 0.03434 -0.01145 0.00230 0.00488 0.00448 -0.01270 0.01301 0.00228 -0.00053 -0.00792 -0.02074 -0.02357 0.01128 0.01632 -0.00599 0.00860 0.02083 -0.03337 0.08454 -0.05227 0.01480 -0.02033 -0.00521 0.03387 0.05116 -0.14392 -0.03286 0.05862 0.17058 0.09879 -0.17120 0.00351 0.00098 -0.01048 0.00426 -0.00194 0.00272 -0.00085 -0.00106 0.00136 -0.00220 0.00314 0.00185 -0.00444 -0.00603 -0.00247 -0.01643 -0.04013 0.00279 0.03346 
1158.7076 5.0955 4.0307 0.12980 -0.03245 -0.09516 -0.03940 0.00237 -0.13385 -0.16302 0.04123 -0.00059 -0.04669 0.02504 0.13575 0.11621 -0.01947 0.09042 0.20082 -0.07947 -0.01657 -0.03613 -0.04292 -0.15835 -0.19229 0.02536 0.08804 -0.14986 0.00583 0.12784 0.19821 -0.09643 0.00124 0.00140 0.00152 0.00029 -0.00028 0.00739 -0.00275 -0.05108 0.12198 -0.20231 0.07951 -0.10462 -0.16273 -0.10823 0.17571 0.05599 -0.14654 0.17253 -0.18341 0.11407 -0.19073 0.08849 0.01856 -0.10835 -0.23194 -0.01133 0.00443 0.22035 -0.19663 0.19882 -0.07892 0.06522 -0.19353 0.24007 0.01204 -0.14034 0.25611 -0.00189 -0.00232 0.00104 -0.00013 0.00059 -0.00113 -0.00041 -0.00246 -0.00010 -0.00216 -0.00268 -0.00060 -0.00513 -0.00249 -0.00569 -0.00546 0.00166 0.01045 
1160.4025 4.9844 3.9544 -0.19117 0.04676 0.13164 0.06016 -0.00334 0.19415 0.23421 -0.06061 0.00347 0.06573 -0.03418 -0.19555 -0.16829 0.02614 -0.12866 -0.30772 0.09867 0.00177 0.07946 0.05563 0.22215 0.27693 -0.03576 -0.12498 0.22253 -0.00569 -0.18141 -0.30705 0.10412 0.02270 0.00088 -0.00093 -0.00008 -0.01627 -0.00763 0.00055 -0.03596 0.08576 -0.13341 0.05427 -0.07349 -0.10943 -0.07341 0.11980 0.03691 -0.10062 0.13287 -0.11157 0.07888 -0.12943 0.05776 0.02344 -0.08696 -0.14399 -0.00858 0.00422 0.14855 -0.09662 0.16165 -0.06980 0.04588 -0.13408 0.15387 0.00342 -0.10023 0.17238 -0.00871 0.00805 -0.00123 0.00022 -0.00134 -0.00048 0.00538 -0.00126 0.00236 -0.00253 0.00096 -0.00122 -0.00299 0.00649 0.00388 0.00423 0.00442 -0.00245 
1306.5147 1.2774 1.2847 -0.00962 0.00151 -0.01228 -0.01306 0.00340 0.00509 -0.00008 0.00114 0.01460 0.01372 -0.00307 0.00592 0.00885 -0.00263 -0.01345 0.05470 -0.00710 0.08058 0.09144 -0.02156 -0.02721 0.00011 -0.01002 -0.09423 -0.08974 0.01929 -0.03157 -0.05638 0.00765 0.07417 0.00003 0.00001 -0.00004 0.00046 -0.00111 -0.00030 0.03354 -0.04956 -0.03631 0.02340 -0.04342 0.04138 -0.00537 0.01754 -0.06892 -0.19239 0.30422 0.23559 -0.01470 0.01768 0.06343 -0.15689 0.30120 -0.27309 -0.03686 0.05751 -0.00048 0.02831 -0.11291 0.41430 0.08561 -0.12513 -0.39791 0.23493 -0.36276 0.02887 0.00097 -0.00026 -0.00028 0.00019 0.00027 0.00063 -0.00076 0.00024 -0.00014 0.00004 0.00022 -0.00031 0.00145 0.00421 0.00666 -0.00391 -0.00583 -0.00136 
1307.2855 1.2772 1.2860 0.04102 -0.00529 0.05681 0.05937 -0.01566 -0.02105 0.00175 -0.00584 -0.06533 -0.06224 0.01343 -0.02725 -0.04085 0.01336 0.05698 -0.24534 0.01551 -0.35027 -0.40465 0.09753 0.12277 0.00117 0.04458 0.42236 0.40615 -0.08559 0.14193 0.24992 -0.07509 -0.34160 -0.00003 0.00002 0.00006 -0.00173 0.00096 -0.00092 0.00711 -0.01066 -0.00867 0.00554 -0.01004 0.00919 -0.00177 0.00413 -0.01467 -0.04002 0.06681 0.05023 -0.00300 0.00354 0.01395 -0.03466 0.06642 -0.06079 -0.00845 0.01336 0.00000 0.01553 -0.02014 0.09628 0.01962 -0.02805 -0.08854 0.05267 -0.08205 0.00664 -0.00077 -0.00041 0.00037 0.00017 0.00022 -0.00020 0.00039 -0.00012 0.00004 0.00011 0.00030 -0.00005 0.00305 -0.00009 0.00136 -0.00389 -0.00706 -0.00276 
1363.3199 2.6388 2.8897 -0.00598 0.00393 -0.00472 0.00866 -0.00297 -0.00677 -0.00422 0.00267 0.01425 -0.00710 0.00512 -0.00653 0.00632 -0.00317 0.00634 0.00499 -0.00658 0.01528 -0.00805 -0.00369 -0.00215 -0.00443 -0.00335 -0.01248 0.01058 -0.01028 0.00077 0.01207 -0.00190 0.00084 -0.00324 0.00199 0.00056 -0.60289 0.19130 -0.25785 0.00150 0.00003 0.01163 -0.00487 -0.00210 -0.01064 -0.00488 0.00502 -0.01193 0.00892 -0.01747 0.00037 -0.00669 0.01001 0.01423 0.00955 -0.00316 -0.00524 0.00778 -0.01347 -0.00087 0.00468 0.00021 0.02446 0.00240 -0.00391 -0.03120 -0.00460 0.01720 -0.00214 -0.18407 0.09631 0.09076 -0.04227 -0.01691 -0.09433 0.22544 -0.08674 0.01634 -0.00352 -0.01408 -0.00619 -0.12626 0.05750 0.02176 0.30062 0.35088 0.41701 
1384.6290 1.1599 1.3102 -0.00562 0.00284 0.00012 0.00842 -0.00338 -0.00749 -0.00049 0.00147 0.01373 -0.00753 0.00170 -0.00665 0.00499 -0.00274 0.00136 -0.00468 -0.00148 0.00381 -0.00961 0.00045 -0.00260 -0.00187 -0.00714 -0.01160 0.01423 -0.00173 0.00060 0.00368 0.00089 0.00481 -0.00083 0.00032 -0.00147 0.63789 -0.09782 0.58120 0.00097 -0.00023 0.00186 0.00023 -0.00009 -0.00258 -0.00151 0.00202 -0.00327 -0.00131 -0.00130 0.00206 -0.00107 0.00267 0.00346 -0.00097 -0.00222 -0.00228 0.00201 -0.00434 0.00031 0.00050 0.00016 0.00725 -0.00254 -0.00144 -0.00488 0.00091 0.00479 0.00022 -0.03980 0.01838 0.01312 -0.00638 -0.02251 -0.08285 -0.00480 0.00599 0.02221 -0.00859 -0.01178 0.00117 -0.10487 0.04684 0.02588 0.29144 0.27617 0.24313 
1409.8490 4.6431 5.4376 0.15926 -0.01901 0.22606 -0.18860 0.03263 -0.02838 0.07445 -0.00847 -0.09451 -0.06201 0.00566 0.11999 0.05913 -0.01175 -0.22307 -0.25881 0.02246 -0.37029 0.10436 -0.03681 -0.13102 0.06897 -0.02243 0.12681 -0.12272 0.04527 0.11000 -0.28211 0.05366 0.21980 -0.00067 -0.00053 0.00134 0.01955 -0.00248 0.04768 -0.10655 0.15768 0.10585 0.07309 -0.13893 0.06583 0.04335 -0.02498 -0.16054 0.15821 -0.23387 -0.19955 0.00365 0.02845 -0.11604 -0.04196 0.08728 -0.14718 -0.02563 0.00006 0.09785 0.05626 -0.13903 0.18999 -0.06737 0.08384 0.09523 0.05351 -0.06232 0.11558 -0.01583 0.00841 0.01312 -0.00061 -0.00179 -0.01359 0.01298 -0.00500 0.00163 -0.00114 0.00113 0.00169 0.00944 -0.01158 -0.01003 -0.01384 -0.02315 -0.02137 
1411.2352 4.6780 5.4891 0.12167 -0.03118 0.09478 -0.14955 0.04045 0.05499 0.03203 -0.01336 -0.16925 0.05776 -0.02035 0.11544 -0.04107 0.01971 -0.10256 -0.09046 0.00869 -0.22462 0.16218 -0.04171 -0.04112 0.02776 0.01084 0.25695 -0.19907 0.05891 0.02860 -0.15854 0.02010 0.03038 0.00050 -0.00008 -0.00104 0.03660 -0.01050 0.03396 0.10768 -0.13846 -0.00590 -0.06855 0.12093 -0.18365 -0.09693 0.10593 0.03168 -0.11321 0.10477 0.20933 -0.05282 0.05234 0.25505 0.11633 -0.20469 0.11207 0.12376 -0.15665 -0.08095 -0.06144 0.15939 0.00505 0.09383 -0.12695 -0.35016 -0.19352 0.26817 -0.12288 -0.00181 -0.00061 -0.00009 0.00085 -0.00097 -0.00349 0.00065 0.00503 0.00267 -0.00448 -0.00382 0.00034 0.02137 -0.00266 0.01773 -0.00105 0.00883 -0.01196 
1416.2003 4.5417 5.3669 -0.05526 0.04445 0.10327 0.07465 -0.04471 -0.16504 0.04160 0.02006 0.26425 -0.24515 0.05516 -0.10132 0.18583 -0.06569 -0.08573 -0.16633 -0.02281 -0.00647 -0.19870 0.03644 -0.09745 0.04138 -0.06548 -0.38960 0.33125 -0.08258 0.11057 -0.03739 0.05807 0.25362 -0.00018 0.00019 -0.00457 -0.08694 0.01522 -0.20385 0.01575 -0.00831 0.05473 -0.00494 0.00474 -0.08923 -0.04600 0.06331 -0.07400 -0.00850 -0.06205 0.03527 -0.03707 0.05990 0.11487 0.05135 -0.08072 -0.01478 0.07777 -0.12284 0.00138 0.00432 0.04184 0.12197 0.01806 -0.03560 -0.18462 -0.11827 0.17486 -0.01958 0.05148 -0.03212 -0.06654 0.00555 0.00373 0.06281 -0.04752 0.01354 -0.00368 0.00328 -0.01117 0.00461 -0.07549 0.02812 0.01419 0.16974 0.19896 0.10268 
1420.3119 4.8989 5.8226 0.06248 0.00540 0.15943 -0.06975 0.00140 -0.07698 0.05077 0.00289 0.05095 -0.11921 0.02395 0.02294 0.10130 -0.02686 -0.14732 -0.19808 0.01569 -0.19840 -0.02933 -0.00446 -0.10243 0.04726 -0.03870 -0.09349 0.05006 -0.00357 0.09106 -0.16239 0.02095 0.20610 -0.00031 0.00010 0.00106 -0.01236 0.01169 0.03770 0.08530 -0.14619 -0.19908 -0.06630 0.13080 0.08162 0.02478 -0.08055 0.27577 -0.17589 0.33503 0.14798 0.05736 -0.12035 -0.07518 -0.04530 0.05850 0.16457 -0.09945 0.19023 -0.09279 -0.00893 0.09788 -0.36557 0.03045 -0.01297 0.22763 0.12298 -0.20332 -0.07721 -0.02107 0.01416 0.02606 -0.00382 -0.00186 -0.02185 0.02365 -0.01068 0.00101 0.00296 0.00271 -0.00171 0.00545 -0.00949 -0.01834 -0.04481 -0.05477 -0.01478 
1429.7418 1.5178 1.8280 0.01523 -0.00686 0.00123 -0.01658 0.00613 0.01857 -0.00439 -0.00237 -0.04053 0.03495 -0.00808 0.02105 -0.02540 0.00782 -0.00107 0.00056 0.00730 -0.02684 0.02825 -0.00671 0.00570 -0.00653 0.00348 0.06787 -0.05706 0.01293 -0.01133 -0.01370 -0.00519 -0.02372 -0.00250 0.00150 -0.00296 -0.10669 0.02612 -0.30098 0.00085 -0.00269 -0.01515 0.00020 0.00130 0.01841 0.00801 -0.01182 0.01880 -0.00576 0.02131 -0.00025 0.00884 -0.01217 -0.02490 -0.00970 0.01849 0.00530 -0.01647 0.02537 -0.00056 -0.00064 -0.00549 -0.02310 -0.01114 0.00510 0.04077 0.02665 -0.03203 0.00399 0.05885 -0.04301 -0.12654 0.00381 -0.00226 0.09344 -0.05132 0.01605 -0.00052 -0.00566 -0.02848 0.00488 -0.22022 0.10085 0.05488 0.57594 0.56784 0.35214 
1484.2255 2.5024 3.2479 -0.01512 0.00415 0.00722 0.02933 -0.00691 -0.00621 -0.01684 0.00324 -0.00506 0.01183 -0.00216 0.01255 0.00574 -0.00304 -0.01530 -0.01833 0.00134 0.01010 -0.07055 0.01779 0.02535 -0.02009 0.00779 0.02470 -0.04708 0.00966 -0.00666 -0.03358 0.01634 0.03688 0.00011 0.00114 -0.00148 0.00151 0.00178 -0.00013 0.03650 -0.07053 0.10944 -0.08993 0.16410 -0.11713 0.00728 0.00867 -0.16208 0.04663 -0.11190 0.11620 0.07245 -0.11943 -0.02011 0.20234 -0.39348 0.39949 -0.06749 0.09973 0.07726 0.06225 -0.16112 0.45296 0.02014 -0.04419 0.29605 0.18333 -0.30635 0.12393 -0.00042 -0.00058 -0.00036 0.00048 0.00005 0.00050 -0.00049 0.00036 0.00029 -0.00098 -0.00090 0.00055 0.00578 -0.00048 0.00179 -0.00403 -0.00337 -0.00555 
1485.8117 2.5388 3.3022 -0.10124 0.02935 0.07197 0.22326 -0.05426 -0.05317 -0.13747 0.02748 -0.04596 0.11876 -0.02008 0.10712 0.02808 -0.01539 -0.12812 -0.18176 0.03040 0.00727 -0.56797 0.13712 0.19500 -0.16393 0.06468 0.17800 -0.42419 0.08994 -0.07261 -0.29193 0.08310 0.29022 0.00182 -0.00003 -0.00057 -0.00264 0.00170 0.00181 -0.00587 0.01057 -0.01101 0.01155 -0.02064 0.00982 -0.00100 -0.00188 0.02028 -0.00270 0.00845 -0.01700 -0.01013 0.01541 0.00933 -0.02203 0.04377 -0.05081 0.00862 -0.01267 -0.01197 -0.00096 0.02353 -0.06119 0.00123 0.00030 -0.04891 -0.02099 0.03447 -0.01820 -0.00121 -0.00004 0.00306 -0.00011 0.00050 -0.00206 0.00071 -0.00096 -0.00018 -0.00047 0.00145 0.00023 0.01295 -0.00574 -0.00148 -0.01129 -0.02382 -0.00186 
1495.5637 2.6336 3.4706 0.09096 -0.01580 0.07758 -0.01828 -0.00521 -0.09168 -0.04001 0.01869 0.13108 0.11603 -0.02856 -0.04687 -0.11644 0.03009 0.03019 -0.17176 0.01846 -0.31219 -0.04693 0.00361 -0.10452 -0.04475 -0.02348 -0.38382 -0.20078 0.03329 -0.17999 0.06230 -0.02932 -0.24524 0.00023 0.00100 0.00140 0.00202 -0.00028 -0.00096 -0.05683 0.08649 0.05332 0.01498 -0.01776 -0.09925 0.05018 -0.08478 0.05121 0.16831 -0.24898 -0.20957 -0.00339 -0.01198 0.13949 0.07729 -0.12363 -0.02558 -0.05055 0.09437 -0.07902 0.03797 -0.03878 -0.19312 0.10930 -0.15484 -0.30555 0.16546 -0.25468 -0.07126 0.00117 -0.00067 -0.00087 0.00015 0.00040 0.00082 -0.00135 0.00016 -0.00038 -0.00035 -0.00011 -0.00061 0.00215 0.00058 0.00184 -0.00169 -0.00925 -0.00081 
1497.8580 2.6564 3.5114 -0.08892 0.01513 -0.07784 0.01339 0.00554 0.09006 0.04333 -0.01921 -0.12448 -0.12386 0.03062 0.04168 0.12043 -0.03086 -0.02798 0.17577 -0.01128 0.31282 0.05911 -0.00672 0.09726 0.04876 0.02081 0.36989 0.21419 -0.03618 0.18219 -0.05188 0.03185 0.24052 -0.00043 0.00056 -0.00038 0.00757 -0.00130 -0.00051 -0.05771 0.08821 0.05024 0.01662 -0.01999 -0.09510 0.05252 -0.08983 0.05753 0.16240 -0.24937 -0.21454 -0.00295 -0.01159 0.13638 0.07312 -0.11583 -0.03084 -0.05396 0.09851 -0.08102 0.03602 -0.04090 -0.20597 0.10848 -0.15302 -0.30468 0.16625 -0.25548 -0.07332 0.00032 -0.00156 -0.00502 0.00064 -0.00005 0.00276 -0.00224 0.00038 0.00080 0.00005 -0.00053 -0.00040 -0.00386 0.00644 0.00739 0.01099 0.01378 0.01094 
1666.6704 1.3494 2.2085 0.00140 0.00026 0.00035 -0.00201 0.00046 0.00103 -0.00052 -0.00133 0.00025 -0.00112 0.00065 -0.00077 0.00153 0.00034 0.00011 0.00144 -0.00138 0.00106 0.00041 0.00078 0.00041 0.00460 0.02103 -0.00926 0.00092 -0.00319 -0.00014 0.00232 -0.00089 -0.00081 -0.00072 -0.00022 0.00050 0.10724 -0.07265 0.02981 0.00029 -0.00085 0.00043 -0.00055 0.00032 0.00042 -0.00009 0.00045 -0.00016 0.00008 0.00047 0.00150 -0.00057 -0.00031 -0.00096 0.00196 0.00046 0.00126 0.00053 -0.00022 0.00042 0.00068 0.00068 0.00110 0.00123 0.00126 -0.00090 -0.00802 0.00230 -0.00086 -0.07626 0.00457 -0.12334 0.01775 0.01868 0.05821 0.02885 -0.00644 0.01560 -0.01854 0.03576 -0.02342 0.31243 -0.13560 -0.05982 0.08464 -0.61620 0.66845 
1765.8224 2.1740 3.9939 -0.00100 -0.00091 0.00046 -0.00121 -0.00070 0.00137 0.00352 -0.00050 -0.00082 -0.00118 -0.00073 -0.00036 -0.00072 -0.00085 -0.00067 0.00002 0.00302 -0.00019 0.00679 0.00485 -0.00157 -0.00205 -0.01529 0.00417 0.00426 0.00300 0.00194 -0.00071 0.00215 0.00027 -0.00233 0.00213 -0.00201 -0.21611 0.03759 -0.13261 -0.00023 0.00097 0.00077 0.00110 -0.00007 -0.00130 0.00013 0.00127 -0.00090 -0.00071 -0.00135 -0.00010 0.00108 -0.00111 0.00116 -0.00145 -0.00429 0.00123 0.00110 0.00042 0.00118 -0.00240 -0.00083 0.00046 -0.00001 -0.00288 -0.00472 -0.00788 -0.00182 -0.00096 0.18663 -0.03296 0.18246 -0.06301 0.00691 -0.12043 -0.06815 0.02118 -0.02337 -0.04657 0.02527 0.00323 0.19408 -0.09235 -0.01023 0.70489 -0.46120 0.28580 
3112.9743 1.0924 6.2374 -0.00003 -0.00002 0.00000 0.00001 -0.00000 0.00005 0.00009 -0.00003 0.00003 0.00003 -0.00002 -0.00014 -0.00002 -0.00000 0.00000 0.00009 -0.00000 -0.00005 -0.00012 0.00010 -0.00040 -0.00089 0.00086 -0.00045 -0.00006 0.00012 0.00103 0.00019 0.00002 0.00010 -0.00025 0.00015 0.00013 -0.55541 0.36414 0.74225 -0.00001 0.00004 -0.00001 0.00010 -0.00007 -0.00018 0.00002 0.00004 -0.00001 -0.00001 -0.00013 0.00012 0.00005 -0.00005 0.00006 -0.00073 0.00063 0.00133 0.00001 -0.00001 0.00005 0.00004 -0.00009 -0.00002 -0.00039 0.00042 -0.00033 -0.00000 -0.00004 -0.00060 0.04726 -0.03162 -0.06675 0.00066 0.00025 0.00234 -0.00037 0.00002 0.00006 0.00039 -0.00012 -0.00032 0.00111 0.00063 -0.00073 -0.00872 0.00190 0.01476 
3251.6206 1.0912 6.7977 0.00161 -0.00046 -0.00113 0.00012 0.00001 0.00053 -0.00047 0.00011 0.00001 0.00016 -0.00009 -0.00043 -0.00009 0.00004 0.00005 -0.01724 0.00527 0.01260 -0.00181 0.00036 -0.00640 0.00559 -0.00147 0.00017 -0.00172 0.00098 0.00525 0.00073 -0.00027 0.00056 0.00004 0.00001 -0.00004 -0.00015 0.00009 0.00022 -0.00007 -0.00003 0.00052 -0.00353 0.00454 0.00544 -0.00664 0.00952 0.00513 -0.00117 0.00260 -0.00253 0.02249 -0.03811 0.01895 0.04042 -0.04885 -0.07329 0.00470 -0.00024 -0.07084 0.08292 -0.12603 -0.04300 -0.26683 0.44429 -0.19787 -0.05871 0.01575 0.80397 -0.00001 -0.00002 -0.00002 -0.00002 0.00001 0.00002 -0.00003 0.00003 -0.00002 -0.00012 0.00013 0.00009 0.00062 -0.00105 -0.00087 0.00042 -0.00032 -0.00056 
3262.9288 1.0944 6.8650 -0.01184 0.00350 0.00819 -0.00021 -0.00004 -0.00271 -0.00713 0.00183 0.00033 0.00493 -0.00270 -0.01588 0.01228 -0.00240 0.00947 0.13304 -0.03950 -0.09532 0.00820 -0.00135 0.03068 0.08250 -0.02139 0.00159 -0.05831 0.03257 0.18080 -0.14199 0.02716 -0.10964 -0.00002 0.00000 0.00003 0.00012 -0.00018 -0.00026 -0.00649 0.01279 -0.02209 -0.01006 0.01277 0.01719 0.01108 -0.01627 -0.00633 0.07254 -0.14471 0.24921 0.02961 -0.04945 0.01983 0.11788 -0.14222 -0.22101 -0.00429 0.00281 0.04052 -0.13256 0.20166 0.06418 -0.32589 0.54136 -0.23472 0.03450 -0.01278 -0.44279 -0.00003 -0.00001 0.00007 0.00003 0.00002 -0.00005 -0.00006 -0.00002 -0.00003 0.00017 0.00012 -0.00005 -0.00208 -0.00018 -0.00156 -0.00193 0.00026 0.00082 
3264.2056 1.0913 6.8512 -0.00606 0.00179 0.00378 0.00365 -0.00060 0.00883 -0.04014 0.01021 0.00042 0.01976 -0.01043 -0.05915 0.02227 -0.00446 0.01922 0.06796 -0.01980 -0.04646 -0.03419 0.00563 -0.10676 0.46208 -0.11990 0.01101 -0.21991 0.12213 0.67582 -0.27072 0.05181 -0.21215 0.00001 0.00003 -0.00006 0.00010 -0.00017 0.00006 -0.00156 0.00313 -0.00523 0.00236 -0.00314 -0.00296 -0.00126 0.00166 0.00158 0.01713 -0.03383 0.05867 -0.01128 0.01880 -0.00755 -0.02436 0.02982 0.04464 0.00158 -0.00099 -0.01556 0.01630 -0.02493 -0.00874 0.12348 -0.20528 0.08917 -0.01308 0.00467 0.16963 -0.00007 0.00005 -0.00008 -0.00001 0.00010 0.00007 0.00010 -0.00011 0.00010 -0.00004 -0.00004 -0.00002 0.00082 -0.00011 0.00080 0.00083 -0.00105 -0.00012 
3267.5086 1.0925 6.8725 -0.03821 0.01156 0.02721 -0.00808 0.00101 -0.02805 0.03325 -0.00835 0.00112 -0.00386 0.00157 0.00655 0.02288 -0.00464 0.01586 0.43446 -0.12887 -0.31302 0.09820 -0.01555 0.32979 -0.37760 0.09781 -0.01170 0.02870 -0.01498 -0.07949 -0.25439 0.04884 -0.19295 -0.00000 0.00001 -0.00003 -0.00005 0.00018 0.00009 -0.00893 0.01740 -0.02940 -0.00052 0.00011 0.00390 0.00747 -0.01182 -0.00148 0.09836 -0.19503 0.33562 -0.01171 0.01948 -0.00769 0.01422 -0.01615 -0.02970 0.00181 -0.00079 -0.02112 -0.08159 0.12520 0.03676 0.12666 -0.21046 0.09157 -0.01702 0.00524 0.22782 -0.00007 -0.00002 -0.00006 0.00000 -0.00005 0.00004 0.00001 -0.00005 0.00001 -0.00006 0.00005 0.00003 0.00068 0.00014 0.00110 0.00109 0.00014 -0.00083 
3271.0779 1.0927 6.8884 0.02757 -0.00841 -0.02038 0.00620 -0.00076 0.02226 -0.01379 0.00340 -0.00130 -0.00448 0.00253 0.01493 -0.01026 0.00230 -0.00762 -0.31611 0.09384 0.22774 -0.07657 0.01185 -0.25862 0.15379 -0.03976 0.00606 0.05200 -0.02945 -0.16421 0.12441 -0.02430 0.09533 0.00000 0.00000 0.00001 -0.00043 0.00022 0.00046 -0.01615 0.03148 -0.05508 -0.00669 0.00752 0.01667 0.00690 -0.01047 -0.00065 0.18160 -0.36026 0.62054 -0.00903 0.01497 -0.00629 0.08993 -0.10735 -0.17461 0.00140 -0.00095 -0.01204 -0.07867 0.12021 0.03471 0.09760 -0.16212 0.07162 -0.00983 0.00279 0.13043 0.00023 -0.00006 0.00003 -0.00004 0.00002 -0.00006 -0.00014 0.00004 -0.00002 0.00002 -0.00009 -0.00002 0.00042 -0.00027 0.00033 -0.00029 0.00016 0.00064 
3276.4711 1.0970 6.9384 -0.03722 0.01121 0.02682 0.00691 -0.00131 0.00890 -0.05755 0.01452 -0.00356 -0.01036 0.00624 0.04009 -0.00725 0.00128 -0.00997 0.41660 -0.12368 -0.30007 -0.03920 0.00637 -0.11587 0.63633 -0.16504 0.02043 0.13682 -0.07699 -0.43116 0.10450 -0.01978 0.08510 -0.00000 -0.00004 0.00003 -0.00060 0.00022 0.00069 0.00103 -0.00232 0.00516 0.00222 -0.00269 -0.00468 0.00773 -0.01179 -0.00362 -0.01442 0.02880 -0.05130 -0.00048 0.00079 0.00017 -0.02735 0.03304 0.05217 0.00004 0.00040 -0.00537 -0.08360 0.12811 0.04015 0.00389 -0.00618 0.00223 -0.00362 0.00075 0.05487 0.00028 -0.00004 -0.00002 -0.00007 0.00010 -0.00003 -0.00007 0.00009 -0.00004 -0.00003 -0.00003 -0.00001 0.00031 0.00013 -0.00015 0.00017 -0.00079 0.00047 
3282.2123 1.0974 6.9656 -0.00349 0.00133 0.00732 -0.01191 0.00126 -0.04197 -0.00588 0.00173 0.00296 0.01288 -0.00595 -0.03011 -0.05299 0.01069 -0.03910 0.05465 -0.01643 -0.04525 0.14081 -0.02189 0.47180 0.06672 -0.01740 -0.00121 -0.11049 0.06061 0.33128 0.57721 -0.11029 0.44437 0.00001 -0.00001 -0.00004 0.00012 -0.00005 -0.00007 -0.00170 0.00270 -0.00371 -0.00013 0.00006 0.00024 0.01199 -0.01807 -0.00529 0.01648 -0.03154 0.05185 -0.00138 0.00226 -0.00051 0.00040 -0.00024 -0.00094 0.00016 0.00040 -0.00671 -0.13068 0.20031 0.06262 0.01324 -0.02145 0.00924 -0.00453 0.00072 0.06801 -0.00007 0.00002 -0.00002 -0.00000 0.00002 0.00004 0.00003 -0.00006 0.00005 -0.00002 0.00009 0.00006 0.00008 0.00017 0.00035 0.00070 -0.00041 -0.00048 
3284.7456 1.0963 6.9691 0.00628 -0.00222 -0.00589 0.00551 -0.00061 0.02101 0.01359 -0.00351 -0.00021 0.00041 -0.00050 -0.00416 0.00404 -0.00082 0.00349 -0.08392 0.02515 0.06079 -0.06789 0.01065 -0.22973 -0.14553 0.03817 -0.00348 -0.01241 0.00715 0.04054 -0.04816 0.00959 -0.03811 -0.00003 0.00000 -0.00002 0.00083 -0.00045 -0.00088 -0.00178 0.00269 0.00266 0.02299 -0.02845 -0.04575 0.03194 -0.04786 -0.01422 0.00075 -0.00052 -0.00754 0.00551 -0.00947 0.00726 -0.26553 0.31972 0.50279 -0.00073 0.00234 -0.01060 -0.35142 0.53601 0.16923 -0.06426 0.10668 -0.04988 -0.00646 -0.00013 0.10794 -0.00025 0.00011 0.00004 0.00006 -0.00004 0.00005 0.00019 0.00002 0.00005 -0.00000 -0.00001 -0.00000 -0.00015 -0.00032 -0.00028 -0.00026 0.00018 -0.00014 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#59379: 29.0.50; `define-advice' documentation needs improving
  2024-02-08  6:46   ` Visuwesh
@ 2024-02-08 13:49     ` Visuwesh
  2024-02-08 13:54       ` Eli Zaretskii
  0 siblings, 1 reply; 8+ messages in thread
From: Visuwesh @ 2024-02-08 13:49 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: 59379, Stefan Monnier

Kindly ignore this message: somehow I managed to fat finger very badly
and sent a mail that was addressed to my Prof to debbugs...  Sorry for
the noise.

[வியாழன் பிப்ரவரி 08, 2024] Visuwesh wrote:

> [வியாழன் பிப்ரவரி 08, 2024] Debdutta Chakraborty wrote:
>
>> Datafile.
>>
>> Things to read and write:
>>
>> frequency reduced mass force constant atom1_x atom1_y atom1_z
>
> Sir,
>
> Please find attached file.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#59379: 29.0.50; `define-advice' documentation needs improving
  2024-02-08 13:49     ` Visuwesh
@ 2024-02-08 13:54       ` Eli Zaretskii
  0 siblings, 0 replies; 8+ messages in thread
From: Eli Zaretskii @ 2024-02-08 13:54 UTC (permalink / raw)
  To: 59379-done

> Cc: 59379@debbugs.gnu.org, Stefan Monnier <monnier@iro.umontreal.ca>
> From: Visuwesh <visuweshm@gmail.com>
> Date: Thu, 08 Feb 2024 19:19:43 +0530
> 
> Kindly ignore this message: somehow I managed to fat finger very badly
> and sent a mail that was addressed to my Prof to debbugs...  Sorry for
> the noise.

Closing.





^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-02-08 13:54 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-19  7:26 bug#59379: 29.0.50; `define-advice' documentation needs improving Stefan Kangas
2022-11-19 12:23 ` Visuwesh
2022-11-19 13:52   ` Stefan Kangas
2022-11-19 14:44     ` Visuwesh
2022-11-19 15:34   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-02-08  6:46   ` Visuwesh
2024-02-08 13:49     ` Visuwesh
2024-02-08 13:54       ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).