imap-processing 0.12.0__py3-none-any.whl → 0.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of imap-processing might be problematic. Click here for more details.

Files changed (272) hide show
  1. imap_processing/__init__.py +1 -0
  2. imap_processing/_version.py +2 -2
  3. imap_processing/ccsds/ccsds_data.py +1 -2
  4. imap_processing/ccsds/excel_to_xtce.py +1 -2
  5. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +18 -12
  6. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +569 -0
  7. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +1846 -128
  8. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +5 -5
  9. imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +20 -1
  10. imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +6 -4
  11. imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +3 -3
  12. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +15 -0
  13. imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +22 -0
  14. imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +16 -0
  15. imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +178 -5
  16. imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +5045 -41
  17. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +33 -19
  18. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +8 -48
  19. imap_processing/cdf/utils.py +41 -33
  20. imap_processing/cli.py +463 -234
  21. imap_processing/codice/codice_l1a.py +260 -47
  22. imap_processing/codice/codice_l1b.py +51 -152
  23. imap_processing/codice/constants.py +38 -1
  24. imap_processing/ena_maps/ena_maps.py +658 -65
  25. imap_processing/ena_maps/utils/coordinates.py +1 -1
  26. imap_processing/ena_maps/utils/spatial_utils.py +10 -5
  27. imap_processing/glows/l1a/glows_l1a.py +28 -99
  28. imap_processing/glows/l1a/glows_l1a_data.py +2 -2
  29. imap_processing/glows/l1b/glows_l1b.py +1 -4
  30. imap_processing/glows/l1b/glows_l1b_data.py +1 -3
  31. imap_processing/glows/l2/glows_l2.py +2 -5
  32. imap_processing/hi/l1a/hi_l1a.py +31 -12
  33. imap_processing/hi/l1b/hi_l1b.py +80 -43
  34. imap_processing/hi/l1c/hi_l1c.py +12 -16
  35. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-sector-dt0-factors_20250219_v002.csv +81 -0
  36. imap_processing/hit/hit_utils.py +93 -35
  37. imap_processing/hit/l0/decom_hit.py +3 -1
  38. imap_processing/hit/l1a/hit_l1a.py +30 -25
  39. imap_processing/hit/l1b/constants.py +6 -2
  40. imap_processing/hit/l1b/hit_l1b.py +279 -318
  41. imap_processing/hit/l2/constants.py +37 -0
  42. imap_processing/hit/l2/hit_l2.py +373 -264
  43. imap_processing/ialirt/l0/parse_mag.py +138 -10
  44. imap_processing/ialirt/l0/process_swapi.py +69 -0
  45. imap_processing/ialirt/l0/process_swe.py +318 -22
  46. imap_processing/ialirt/packet_definitions/ialirt.xml +216 -212
  47. imap_processing/ialirt/packet_definitions/ialirt_codicehi.xml +1 -1
  48. imap_processing/ialirt/packet_definitions/ialirt_codicelo.xml +1 -1
  49. imap_processing/ialirt/packet_definitions/ialirt_swapi.xml +14 -14
  50. imap_processing/ialirt/utils/grouping.py +1 -1
  51. imap_processing/idex/idex_constants.py +9 -1
  52. imap_processing/idex/idex_l0.py +22 -8
  53. imap_processing/idex/idex_l1a.py +75 -44
  54. imap_processing/idex/idex_l1b.py +9 -8
  55. imap_processing/idex/idex_l2a.py +79 -45
  56. imap_processing/idex/idex_l2b.py +120 -0
  57. imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +33 -39
  58. imap_processing/idex/packet_definitions/idex_housekeeping_packet_definition.xml +9130 -0
  59. imap_processing/lo/l0/lo_science.py +1 -2
  60. imap_processing/lo/l1a/lo_l1a.py +1 -4
  61. imap_processing/lo/l1b/lo_l1b.py +527 -6
  62. imap_processing/lo/l1b/tof_conversions.py +11 -0
  63. imap_processing/lo/l1c/lo_l1c.py +1 -4
  64. imap_processing/mag/constants.py +43 -0
  65. imap_processing/mag/imap_mag_sdc_configuration_v001.py +8 -0
  66. imap_processing/mag/l1a/mag_l1a.py +2 -9
  67. imap_processing/mag/l1a/mag_l1a_data.py +10 -10
  68. imap_processing/mag/l1b/mag_l1b.py +84 -17
  69. imap_processing/mag/l1c/interpolation_methods.py +180 -3
  70. imap_processing/mag/l1c/mag_l1c.py +236 -70
  71. imap_processing/mag/l2/mag_l2.py +140 -0
  72. imap_processing/mag/l2/mag_l2_data.py +288 -0
  73. imap_processing/spacecraft/quaternions.py +1 -3
  74. imap_processing/spice/geometry.py +3 -3
  75. imap_processing/spice/kernels.py +0 -276
  76. imap_processing/spice/pointing_frame.py +257 -0
  77. imap_processing/spice/repoint.py +48 -19
  78. imap_processing/spice/spin.py +38 -33
  79. imap_processing/spice/time.py +24 -0
  80. imap_processing/swapi/l1/swapi_l1.py +16 -12
  81. imap_processing/swapi/l2/swapi_l2.py +116 -4
  82. imap_processing/swapi/swapi_utils.py +32 -0
  83. imap_processing/swe/l1a/swe_l1a.py +2 -9
  84. imap_processing/swe/l1a/swe_science.py +8 -11
  85. imap_processing/swe/l1b/swe_l1b.py +898 -23
  86. imap_processing/swe/l2/swe_l2.py +21 -77
  87. imap_processing/swe/utils/swe_constants.py +1 -0
  88. imap_processing/tests/ccsds/test_excel_to_xtce.py +1 -1
  89. imap_processing/tests/cdf/test_utils.py +14 -16
  90. imap_processing/tests/codice/conftest.py +44 -33
  91. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-pha_20241110193700_v0.0.0.cdf +0 -0
  92. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-pha_20241110193700_v0.0.0.cdf +0 -0
  93. imap_processing/tests/codice/test_codice_l1a.py +20 -11
  94. imap_processing/tests/codice/test_codice_l1b.py +6 -7
  95. imap_processing/tests/conftest.py +78 -22
  96. imap_processing/tests/ena_maps/test_ena_maps.py +462 -33
  97. imap_processing/tests/ena_maps/test_spatial_utils.py +1 -1
  98. imap_processing/tests/glows/conftest.py +10 -14
  99. imap_processing/tests/glows/test_glows_decom.py +4 -4
  100. imap_processing/tests/glows/test_glows_l1a_cdf.py +6 -27
  101. imap_processing/tests/glows/test_glows_l1a_data.py +6 -8
  102. imap_processing/tests/glows/test_glows_l1b.py +11 -11
  103. imap_processing/tests/glows/test_glows_l1b_data.py +5 -5
  104. imap_processing/tests/glows/test_glows_l2.py +2 -8
  105. imap_processing/tests/hi/conftest.py +1 -1
  106. imap_processing/tests/hi/test_hi_l1b.py +10 -12
  107. imap_processing/tests/hi/test_hi_l1c.py +27 -24
  108. imap_processing/tests/hi/test_l1a.py +7 -9
  109. imap_processing/tests/hi/test_science_direct_event.py +2 -2
  110. imap_processing/tests/hit/helpers/l1_validation.py +44 -43
  111. imap_processing/tests/hit/test_decom_hit.py +1 -1
  112. imap_processing/tests/hit/test_hit_l1a.py +9 -9
  113. imap_processing/tests/hit/test_hit_l1b.py +172 -217
  114. imap_processing/tests/hit/test_hit_l2.py +380 -118
  115. imap_processing/tests/hit/test_hit_utils.py +122 -55
  116. imap_processing/tests/hit/validation_data/hit_l1b_standard_sample2_nsrl_v4_3decimals.csv +62 -62
  117. imap_processing/tests/hit/validation_data/sci_sample_raw.csv +1 -1
  118. imap_processing/tests/ialirt/unit/test_decom_ialirt.py +16 -81
  119. imap_processing/tests/ialirt/unit/test_grouping.py +2 -2
  120. imap_processing/tests/ialirt/unit/test_parse_mag.py +71 -16
  121. imap_processing/tests/ialirt/unit/test_process_codicehi.py +3 -3
  122. imap_processing/tests/ialirt/unit/test_process_codicelo.py +3 -10
  123. imap_processing/tests/ialirt/unit/test_process_ephemeris.py +4 -4
  124. imap_processing/tests/ialirt/unit/test_process_hit.py +3 -3
  125. imap_processing/tests/ialirt/unit/test_process_swapi.py +24 -16
  126. imap_processing/tests/ialirt/unit/test_process_swe.py +115 -7
  127. imap_processing/tests/idex/conftest.py +72 -7
  128. imap_processing/tests/idex/test_data/imap_idex_l0_raw_20241206_v001.pkts +0 -0
  129. imap_processing/tests/idex/test_data/imap_idex_l0_raw_20250108_v001.pkts +0 -0
  130. imap_processing/tests/idex/test_idex_l0.py +33 -11
  131. imap_processing/tests/idex/test_idex_l1a.py +50 -23
  132. imap_processing/tests/idex/test_idex_l1b.py +104 -25
  133. imap_processing/tests/idex/test_idex_l2a.py +48 -32
  134. imap_processing/tests/idex/test_idex_l2b.py +93 -0
  135. imap_processing/tests/lo/test_lo_l1a.py +3 -3
  136. imap_processing/tests/lo/test_lo_l1b.py +371 -6
  137. imap_processing/tests/lo/test_lo_l1c.py +1 -1
  138. imap_processing/tests/lo/test_lo_science.py +6 -7
  139. imap_processing/tests/lo/test_star_sensor.py +1 -1
  140. imap_processing/tests/mag/conftest.py +58 -9
  141. imap_processing/tests/mag/test_mag_decom.py +4 -3
  142. imap_processing/tests/mag/test_mag_l1a.py +13 -7
  143. imap_processing/tests/mag/test_mag_l1b.py +9 -9
  144. imap_processing/tests/mag/test_mag_l1c.py +151 -47
  145. imap_processing/tests/mag/test_mag_l2.py +130 -0
  146. imap_processing/tests/mag/test_mag_validation.py +144 -7
  147. imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-in.csv +1217 -0
  148. imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-out.csv +1857 -0
  149. imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-in.csv +1217 -0
  150. imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-out.csv +1857 -0
  151. imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-in.csv +1217 -0
  152. imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-out.csv +1793 -0
  153. imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-in.csv +1217 -0
  154. imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-out.csv +1793 -0
  155. imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-burst-in.csv +2561 -0
  156. imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-in.csv +961 -0
  157. imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-out.csv +1539 -0
  158. imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-in.csv +1921 -0
  159. imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-out.csv +2499 -0
  160. imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-in.csv +865 -0
  161. imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-out.csv +1196 -0
  162. imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-in.csv +1729 -0
  163. imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-out.csv +3053 -0
  164. imap_processing/tests/mag/validation/L2/imap_mag_l1b_norm-mago_20251017_v002.cdf +0 -0
  165. imap_processing/tests/mag/validation/calibration/imap_mag_l2-calibration-matrices_20251017_v004.cdf +0 -0
  166. imap_processing/tests/mag/validation/calibration/imap_mag_l2-offsets-norm_20251017_20251017_v001.cdf +0 -0
  167. imap_processing/tests/spacecraft/test_quaternions.py +1 -1
  168. imap_processing/tests/spice/test_data/fake_repoint_data.csv +4 -4
  169. imap_processing/tests/spice/test_data/fake_spin_data.csv +11 -11
  170. imap_processing/tests/spice/test_geometry.py +3 -3
  171. imap_processing/tests/spice/test_kernels.py +1 -200
  172. imap_processing/tests/spice/test_pointing_frame.py +185 -0
  173. imap_processing/tests/spice/test_repoint.py +20 -10
  174. imap_processing/tests/spice/test_spin.py +50 -9
  175. imap_processing/tests/spice/test_time.py +14 -0
  176. imap_processing/tests/swapi/lut/imap_swapi_esa-unit-conversion_20250211_v000.csv +73 -0
  177. imap_processing/tests/swapi/lut/imap_swapi_lut-notes_20250211_v000.csv +1025 -0
  178. imap_processing/tests/swapi/test_swapi_l1.py +7 -9
  179. imap_processing/tests/swapi/test_swapi_l2.py +180 -8
  180. imap_processing/tests/swe/lut/checker-board-indices.csv +24 -0
  181. imap_processing/tests/swe/lut/imap_swe_esa-lut_20250301_v000.csv +385 -0
  182. imap_processing/tests/swe/lut/imap_swe_l1b-in-flight-cal_20240510_20260716_v000.csv +3 -0
  183. imap_processing/tests/swe/test_swe_l1a.py +6 -6
  184. imap_processing/tests/swe/test_swe_l1a_science.py +3 -3
  185. imap_processing/tests/swe/test_swe_l1b.py +162 -24
  186. imap_processing/tests/swe/test_swe_l2.py +82 -102
  187. imap_processing/tests/test_cli.py +171 -88
  188. imap_processing/tests/test_utils.py +2 -1
  189. imap_processing/tests/ultra/data/mock_data.py +49 -21
  190. imap_processing/tests/ultra/unit/conftest.py +53 -70
  191. imap_processing/tests/ultra/unit/test_badtimes.py +2 -4
  192. imap_processing/tests/ultra/unit/test_cullingmask.py +4 -6
  193. imap_processing/tests/ultra/unit/test_de.py +3 -10
  194. imap_processing/tests/ultra/unit/test_decom_apid_880.py +27 -76
  195. imap_processing/tests/ultra/unit/test_decom_apid_881.py +15 -16
  196. imap_processing/tests/ultra/unit/test_decom_apid_883.py +12 -10
  197. imap_processing/tests/ultra/unit/test_decom_apid_896.py +202 -55
  198. imap_processing/tests/ultra/unit/test_lookup_utils.py +23 -1
  199. imap_processing/tests/ultra/unit/test_spacecraft_pset.py +3 -4
  200. imap_processing/tests/ultra/unit/test_ultra_l1a.py +84 -307
  201. imap_processing/tests/ultra/unit/test_ultra_l1b.py +30 -12
  202. imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +2 -2
  203. imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +4 -1
  204. imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +163 -29
  205. imap_processing/tests/ultra/unit/test_ultra_l1c.py +5 -5
  206. imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +32 -43
  207. imap_processing/tests/ultra/unit/test_ultra_l2.py +230 -0
  208. imap_processing/ultra/constants.py +1 -1
  209. imap_processing/ultra/l0/decom_tools.py +21 -34
  210. imap_processing/ultra/l0/decom_ultra.py +168 -204
  211. imap_processing/ultra/l0/ultra_utils.py +152 -136
  212. imap_processing/ultra/l1a/ultra_l1a.py +55 -243
  213. imap_processing/ultra/l1b/badtimes.py +1 -4
  214. imap_processing/ultra/l1b/cullingmask.py +2 -6
  215. imap_processing/ultra/l1b/de.py +62 -47
  216. imap_processing/ultra/l1b/extendedspin.py +8 -4
  217. imap_processing/ultra/l1b/lookup_utils.py +72 -9
  218. imap_processing/ultra/l1b/ultra_l1b.py +3 -8
  219. imap_processing/ultra/l1b/ultra_l1b_culling.py +4 -4
  220. imap_processing/ultra/l1b/ultra_l1b_extended.py +236 -78
  221. imap_processing/ultra/l1c/histogram.py +2 -6
  222. imap_processing/ultra/l1c/spacecraft_pset.py +2 -4
  223. imap_processing/ultra/l1c/ultra_l1c.py +1 -5
  224. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +107 -60
  225. imap_processing/ultra/l2/ultra_l2.py +299 -0
  226. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +526 -0
  227. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +526 -0
  228. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +526 -0
  229. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +526 -0
  230. imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -2
  231. imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
  232. imap_processing/ultra/packet_definitions/README.md +38 -0
  233. imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +15302 -482
  234. imap_processing/ultra/utils/ultra_l1_utils.py +13 -12
  235. imap_processing/utils.py +1 -1
  236. {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/METADATA +3 -2
  237. {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/RECORD +264 -225
  238. imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +0 -154
  239. imap_processing/mag/imap_mag_sdc-configuration_v001.yaml +0 -6
  240. imap_processing/mag/l1b/__init__.py +0 -0
  241. imap_processing/swe/l1b/swe_esa_lookup_table.csv +0 -1441
  242. imap_processing/swe/l1b/swe_l1b_science.py +0 -699
  243. imap_processing/tests/swe/test_swe_l1b_science.py +0 -103
  244. imap_processing/ultra/lookup_tables/dps_sensitivity45.cdf +0 -0
  245. imap_processing/ultra/lookup_tables/ultra_90_dps_exposure_compressed.cdf +0 -0
  246. /imap_processing/idex/packet_definitions/{idex_packet_definition.xml → idex_science_packet_definition.xml} +0 -0
  247. /imap_processing/tests/ialirt/{test_data → data}/l0/20240827095047_SWE_IALIRT_packet.bin +0 -0
  248. /imap_processing/tests/ialirt/{test_data → data}/l0/461971383-404.bin +0 -0
  249. /imap_processing/tests/ialirt/{test_data → data}/l0/461971384-405.bin +0 -0
  250. /imap_processing/tests/ialirt/{test_data → data}/l0/461971385-406.bin +0 -0
  251. /imap_processing/tests/ialirt/{test_data → data}/l0/461971386-407.bin +0 -0
  252. /imap_processing/tests/ialirt/{test_data → data}/l0/461971387-408.bin +0 -0
  253. /imap_processing/tests/ialirt/{test_data → data}/l0/461971388-409.bin +0 -0
  254. /imap_processing/tests/ialirt/{test_data → data}/l0/461971389-410.bin +0 -0
  255. /imap_processing/tests/ialirt/{test_data → data}/l0/461971390-411.bin +0 -0
  256. /imap_processing/tests/ialirt/{test_data → data}/l0/461971391-412.bin +0 -0
  257. /imap_processing/tests/ialirt/{test_data → data}/l0/BinLog CCSDS_FRAG_TLM_20240826_152323Z_IALIRT_data_for_SDC.bin +0 -0
  258. /imap_processing/tests/ialirt/{test_data → data}/l0/IALiRT Raw Packet Telemetry.txt +0 -0
  259. /imap_processing/tests/ialirt/{test_data → data}/l0/apid01152.tlm +0 -0
  260. /imap_processing/tests/ialirt/{test_data → data}/l0/eu_SWP_IAL_20240826_152033.csv +0 -0
  261. /imap_processing/tests/ialirt/{test_data → data}/l0/hi_fsw_view_1_ccsds.bin +0 -0
  262. /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.ccsds +0 -0
  263. /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.csv +0 -0
  264. /imap_processing/tests/ialirt/{test_data → data}/l0/idle_export_eu.SWE_IALIRT_20240827_093852.csv +0 -0
  265. /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_hi-ialirt_20240523200000_v0.0.0.cdf +0 -0
  266. /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
  267. /imap_processing/tests/ialirt/{test_data → data}/l0/sample_decoded_i-alirt_data.csv +0 -0
  268. /imap_processing/tests/mag/validation/{imap_calibration_mag_20240229_v01.cdf → calibration/imap_mag_l1b-calibration_20240229_v001.cdf} +0 -0
  269. /imap_processing/{swe/l1b/engineering_unit_convert_table.csv → tests/swe/lut/imap_swe_eu-conversion_20240510_v000.csv} +0 -0
  270. {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/LICENSE +0 -0
  271. {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/WHEEL +0 -0
  272. {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,526 @@
1
+ Energy,phi_degrees,theta_degrees,phi_motor_degrees,theta_motor_degrees,phi_fwhm,theta_fwhm
2
+ 5.00E+00,-4.37E+00,-4.19E+01,0.00E+00,-4.40E+01,1.15E+01,1.21E+01
3
+ 5.00E+00,-4.22E+00,-3.49E+01,0.00E+00,-3.60E+01,1.03E+01,1.19E+01
4
+ 5.00E+00,-3.46E+00,-2.73E+01,0.00E+00,-2.80E+01,8.64E+00,1.06E+01
5
+ 5.00E+00,-3.31E+00,-2.00E+01,0.00E+00,-2.00E+01,9.12E+00,1.15E+01
6
+ 5.00E+00,-2.90E+00,-1.23E+01,0.00E+00,-1.20E+01,8.35E+00,1.13E+01
7
+ 5.00E+00,-2.95E+00,-9.45E+00,0.00E+00,-9.00E+00,8.83E+00,1.13E+01
8
+ 5.00E+00,-2.48E+00,-6.70E+00,0.00E+00,-6.00E+00,7.28E+00,1.15E+01
9
+ 5.00E+00,-2.69E+00,-5.80E-01,0.00E+00,0.00E+00,7.33E+00,1.17E+01
10
+ 5.00E+00,-2.79E+00,5.16E+00,0.00E+00,6.00E+00,7.62E+00,1.11E+01
11
+ 5.00E+00,-2.81E+00,8.71E+00,0.00E+00,9.00E+00,8.26E+00,1.20E+01
12
+ 5.00E+00,-2.61E+00,1.14E+01,0.00E+00,1.20E+01,7.53E+00,1.18E+01
13
+ 5.00E+00,-3.58E+00,1.91E+01,0.00E+00,2.00E+01,9.36E+00,1.18E+01
14
+ 5.00E+00,-3.52E+00,2.62E+01,0.00E+00,2.80E+01,9.51E+00,1.19E+01
15
+ 5.00E+00,-3.70E+00,3.44E+01,0.00E+00,3.60E+01,9.59E+00,1.24E+01
16
+ 5.00E+00,-4.85E+00,4.21E+01,0.00E+00,4.40E+01,1.31E+01,1.29E+01
17
+ 5.00E+00,-9.10E+00,-4.40E+01,9.10E+00,-4.40E+01,2.35E+00,2.35E+00
18
+ 5.00E+00,-9.10E+00,-3.60E+01,9.10E+00,-3.60E+01,2.35E+00,2.35E+00
19
+ 5.00E+00,-9.10E+00,-2.80E+01,9.10E+00,-2.80E+01,2.35E+00,2.35E+00
20
+ 5.00E+00,-9.10E+00,-2.00E+01,9.10E+00,-2.00E+01,2.35E+00,2.35E+00
21
+ 5.00E+00,-9.10E+00,-1.20E+01,9.10E+00,-1.20E+01,2.35E+00,2.35E+00
22
+ 5.00E+00,-9.10E+00,-9.00E+00,9.10E+00,-9.00E+00,2.35E+00,2.35E+00
23
+ 5.00E+00,-9.10E+00,-6.00E+00,9.10E+00,-6.00E+00,2.35E+00,2.35E+00
24
+ 5.00E+00,-9.10E+00,0.00E+00,9.10E+00,0.00E+00,2.35E+00,2.35E+00
25
+ 5.00E+00,-9.10E+00,6.00E+00,9.10E+00,6.00E+00,2.35E+00,2.35E+00
26
+ 5.00E+00,-9.10E+00,9.00E+00,9.10E+00,9.00E+00,2.35E+00,2.35E+00
27
+ 5.00E+00,-9.10E+00,1.20E+01,9.10E+00,1.20E+01,2.35E+00,2.35E+00
28
+ 5.00E+00,-9.10E+00,2.00E+01,9.10E+00,2.00E+01,2.35E+00,2.35E+00
29
+ 5.00E+00,-9.10E+00,2.80E+01,9.10E+00,2.80E+01,2.35E+00,2.35E+00
30
+ 5.00E+00,-9.10E+00,3.60E+01,9.10E+00,3.60E+01,2.35E+00,2.35E+00
31
+ 5.00E+00,-9.10E+00,4.40E+01,9.10E+00,4.40E+01,2.35E+00,2.35E+00
32
+ 5.00E+00,-1.85E+01,-4.40E+01,1.85E+01,-4.40E+01,2.35E+00,2.35E+00
33
+ 5.00E+00,-1.85E+01,-3.60E+01,1.85E+01,-3.60E+01,2.35E+00,2.35E+00
34
+ 5.00E+00,-1.85E+01,-2.80E+01,1.85E+01,-2.80E+01,2.35E+00,2.35E+00
35
+ 5.00E+00,-1.85E+01,-2.00E+01,1.85E+01,-2.00E+01,2.35E+00,2.35E+00
36
+ 5.00E+00,-1.85E+01,-1.20E+01,1.85E+01,-1.20E+01,2.35E+00,2.35E+00
37
+ 5.00E+00,-1.85E+01,-9.00E+00,1.85E+01,-9.00E+00,2.35E+00,2.35E+00
38
+ 5.00E+00,-1.85E+01,-6.00E+00,1.85E+01,-6.00E+00,2.35E+00,2.35E+00
39
+ 5.00E+00,-1.85E+01,0.00E+00,1.85E+01,0.00E+00,2.35E+00,2.35E+00
40
+ 5.00E+00,-1.85E+01,6.00E+00,1.85E+01,6.00E+00,2.35E+00,2.35E+00
41
+ 5.00E+00,-1.85E+01,9.00E+00,1.85E+01,9.00E+00,2.35E+00,2.35E+00
42
+ 5.00E+00,-1.85E+01,1.20E+01,1.85E+01,1.20E+01,2.35E+00,2.35E+00
43
+ 5.00E+00,-1.85E+01,2.00E+01,1.85E+01,2.00E+01,2.35E+00,2.35E+00
44
+ 5.00E+00,-1.85E+01,2.80E+01,1.85E+01,2.80E+01,2.35E+00,2.35E+00
45
+ 5.00E+00,-1.85E+01,3.60E+01,1.85E+01,3.60E+01,2.35E+00,2.35E+00
46
+ 5.00E+00,-1.85E+01,4.40E+01,1.85E+01,4.40E+01,2.35E+00,2.35E+00
47
+ 5.00E+00,-2.75E+01,-4.40E+01,2.75E+01,-4.40E+01,2.35E+00,2.35E+00
48
+ 5.00E+00,-2.75E+01,-3.60E+01,2.75E+01,-3.60E+01,2.35E+00,2.35E+00
49
+ 5.00E+00,-2.75E+01,-2.80E+01,2.75E+01,-2.80E+01,2.35E+00,2.35E+00
50
+ 5.00E+00,-2.75E+01,-2.00E+01,2.75E+01,-2.00E+01,2.35E+00,2.35E+00
51
+ 5.00E+00,-2.75E+01,-1.20E+01,2.75E+01,-1.20E+01,2.35E+00,2.35E+00
52
+ 5.00E+00,-2.75E+01,-9.00E+00,2.75E+01,-9.00E+00,2.35E+00,2.35E+00
53
+ 5.00E+00,-2.75E+01,-6.00E+00,2.75E+01,-6.00E+00,2.35E+00,2.35E+00
54
+ 5.00E+00,-2.75E+01,0.00E+00,2.75E+01,0.00E+00,2.35E+00,2.35E+00
55
+ 5.00E+00,-2.75E+01,6.00E+00,2.75E+01,6.00E+00,2.35E+00,2.35E+00
56
+ 5.00E+00,-2.75E+01,9.00E+00,2.75E+01,9.00E+00,2.35E+00,2.35E+00
57
+ 5.00E+00,-2.75E+01,1.20E+01,2.75E+01,1.20E+01,2.35E+00,2.35E+00
58
+ 5.00E+00,-2.75E+01,2.00E+01,2.75E+01,2.00E+01,2.35E+00,2.35E+00
59
+ 5.00E+00,-2.75E+01,2.80E+01,2.75E+01,2.80E+01,2.35E+00,2.35E+00
60
+ 5.00E+00,-2.75E+01,3.60E+01,2.75E+01,3.60E+01,2.35E+00,2.35E+00
61
+ 5.00E+00,-2.75E+01,4.40E+01,2.75E+01,4.40E+01,2.35E+00,2.35E+00
62
+ 5.00E+00,-3.64E+01,-4.40E+01,3.64E+01,-4.40E+01,2.35E+00,2.35E+00
63
+ 5.00E+00,-3.64E+01,-3.60E+01,3.64E+01,-3.60E+01,2.35E+00,2.35E+00
64
+ 5.00E+00,-3.64E+01,-2.80E+01,3.64E+01,-2.80E+01,2.35E+00,2.35E+00
65
+ 5.00E+00,-3.64E+01,-2.00E+01,3.64E+01,-2.00E+01,2.35E+00,2.35E+00
66
+ 5.00E+00,-3.64E+01,-1.20E+01,3.64E+01,-1.20E+01,2.35E+00,2.35E+00
67
+ 5.00E+00,-3.64E+01,-9.00E+00,3.64E+01,-9.00E+00,2.35E+00,2.35E+00
68
+ 5.00E+00,-3.64E+01,-6.00E+00,3.64E+01,-6.00E+00,2.35E+00,2.35E+00
69
+ 5.00E+00,-3.64E+01,0.00E+00,3.64E+01,0.00E+00,2.35E+00,2.35E+00
70
+ 5.00E+00,-3.64E+01,6.00E+00,3.64E+01,6.00E+00,2.35E+00,2.35E+00
71
+ 5.00E+00,-3.64E+01,9.00E+00,3.64E+01,9.00E+00,2.35E+00,2.35E+00
72
+ 5.00E+00,-3.64E+01,1.20E+01,3.64E+01,1.20E+01,2.35E+00,2.35E+00
73
+ 5.00E+00,-3.64E+01,2.00E+01,3.64E+01,2.00E+01,2.35E+00,2.35E+00
74
+ 5.00E+00,-3.64E+01,2.80E+01,3.64E+01,2.80E+01,2.35E+00,2.35E+00
75
+ 5.00E+00,-3.64E+01,3.60E+01,3.64E+01,3.60E+01,2.35E+00,2.35E+00
76
+ 5.00E+00,-3.64E+01,4.40E+01,3.64E+01,4.40E+01,2.35E+00,2.35E+00
77
+ 5.00E+00,-4.57E+01,-4.40E+01,4.57E+01,-4.40E+01,2.35E+00,2.35E+00
78
+ 5.00E+00,-4.57E+01,-3.60E+01,4.57E+01,-3.60E+01,2.35E+00,2.35E+00
79
+ 5.00E+00,-4.57E+01,-2.80E+01,4.57E+01,-2.80E+01,2.35E+00,2.35E+00
80
+ 5.00E+00,-4.57E+01,-2.00E+01,4.57E+01,-2.00E+01,2.35E+00,2.35E+00
81
+ 5.00E+00,-4.57E+01,-1.20E+01,4.57E+01,-1.20E+01,2.35E+00,2.35E+00
82
+ 5.00E+00,-4.57E+01,-9.00E+00,4.57E+01,-9.00E+00,2.35E+00,2.35E+00
83
+ 5.00E+00,-4.57E+01,-6.00E+00,4.57E+01,-6.00E+00,2.35E+00,2.35E+00
84
+ 5.00E+00,-4.57E+01,0.00E+00,4.57E+01,0.00E+00,2.35E+00,2.35E+00
85
+ 5.00E+00,-4.57E+01,6.00E+00,4.57E+01,6.00E+00,2.35E+00,2.35E+00
86
+ 5.00E+00,-4.57E+01,9.00E+00,4.57E+01,9.00E+00,2.35E+00,2.35E+00
87
+ 5.00E+00,-4.57E+01,1.20E+01,4.57E+01,1.20E+01,2.35E+00,2.35E+00
88
+ 5.00E+00,-4.57E+01,2.00E+01,4.57E+01,2.00E+01,2.35E+00,2.35E+00
89
+ 5.00E+00,-4.57E+01,2.80E+01,4.57E+01,2.80E+01,2.35E+00,2.35E+00
90
+ 5.00E+00,-4.57E+01,3.60E+01,4.57E+01,3.60E+01,2.35E+00,2.35E+00
91
+ 5.00E+00,-4.57E+01,4.40E+01,4.57E+01,4.40E+01,2.35E+00,2.35E+00
92
+ 5.00E+00,-5.49E+01,-4.40E+01,5.49E+01,-4.40E+01,2.35E+00,2.35E+00
93
+ 5.00E+00,-5.49E+01,-3.60E+01,5.49E+01,-3.60E+01,2.35E+00,2.35E+00
94
+ 5.00E+00,-5.49E+01,-2.80E+01,5.49E+01,-2.80E+01,2.35E+00,2.35E+00
95
+ 5.00E+00,-5.49E+01,-2.00E+01,5.49E+01,-2.00E+01,2.35E+00,2.35E+00
96
+ 5.00E+00,-5.49E+01,-1.20E+01,5.49E+01,-1.20E+01,2.35E+00,2.35E+00
97
+ 5.00E+00,-5.49E+01,-9.00E+00,5.49E+01,-9.00E+00,2.35E+00,2.35E+00
98
+ 5.00E+00,-5.49E+01,-6.00E+00,5.49E+01,-6.00E+00,2.35E+00,2.35E+00
99
+ 5.00E+00,-5.49E+01,0.00E+00,5.49E+01,0.00E+00,2.35E+00,2.35E+00
100
+ 5.00E+00,-5.49E+01,6.00E+00,5.49E+01,6.00E+00,2.35E+00,2.35E+00
101
+ 5.00E+00,-5.49E+01,9.00E+00,5.49E+01,9.00E+00,2.35E+00,2.35E+00
102
+ 5.00E+00,-5.49E+01,1.20E+01,5.49E+01,1.20E+01,2.35E+00,2.35E+00
103
+ 5.00E+00,-5.49E+01,2.00E+01,5.49E+01,2.00E+01,2.35E+00,2.35E+00
104
+ 5.00E+00,-5.49E+01,2.80E+01,5.49E+01,2.80E+01,2.35E+00,2.35E+00
105
+ 5.00E+00,-5.49E+01,3.60E+01,5.49E+01,3.60E+01,2.35E+00,2.35E+00
106
+ 5.00E+00,-5.49E+01,4.40E+01,5.49E+01,4.40E+01,2.35E+00,2.35E+00
107
+ 7.00E+00,-3.85E+00,-4.33E+01,0.00E+00,-4.40E+01,1.14E+01,8.86E+00
108
+ 7.00E+00,-3.20E+00,-3.54E+01,0.00E+00,-3.60E+01,8.65E+00,9.93E+00
109
+ 7.00E+00,-2.03E+00,-2.78E+01,0.00E+00,-2.80E+01,6.49E+00,8.98E+00
110
+ 7.00E+00,-2.11E+00,-2.04E+01,0.00E+00,-2.00E+01,8.35E+00,8.67E+00
111
+ 7.00E+00,-1.36E+00,-1.25E+01,0.00E+00,-1.20E+01,5.32E+00,9.35E+00
112
+ 7.00E+00,-1.90E+00,-9.50E+00,0.00E+00,-9.00E+00,6.25E+00,8.40E+00
113
+ 7.00E+00,-1.67E+00,-6.76E+00,0.00E+00,-6.00E+00,6.37E+00,1.01E+01
114
+ 7.00E+00,-1.30E+00,-2.84E-01,0.00E+00,0.00E+00,5.34E+00,9.23E+00
115
+ 7.00E+00,-1.58E+00,5.28E+00,0.00E+00,6.00E+00,6.05E+00,9.99E+00
116
+ 7.00E+00,-1.82E+00,8.66E+00,0.00E+00,9.00E+00,7.15E+00,8.80E+00
117
+ 7.00E+00,-1.73E+00,1.12E+01,0.00E+00,1.20E+01,5.80E+00,8.96E+00
118
+ 7.00E+00,-1.86E+00,1.95E+01,0.00E+00,2.00E+01,6.67E+00,8.93E+00
119
+ 7.00E+00,-2.44E+00,2.73E+01,0.00E+00,2.80E+01,8.29E+00,8.99E+00
120
+ 7.00E+00,-2.51E+00,3.47E+01,0.00E+00,3.60E+01,7.78E+00,1.02E+01
121
+ 7.00E+00,-3.08E+00,4.31E+01,0.00E+00,4.40E+01,9.23E+00,1.06E+01
122
+ 7.00E+00,-9.13E+00,-4.41E+01,9.10E+00,-4.40E+01,1.06E+01,8.03E+00
123
+ 7.00E+00,-8.71E+00,-3.61E+01,9.10E+00,-3.60E+01,9.80E+00,8.69E+00
124
+ 7.00E+00,-8.63E+00,-2.83E+01,9.10E+00,-2.80E+01,9.29E+00,7.99E+00
125
+ 7.00E+00,-8.62E+00,-2.05E+01,9.10E+00,-2.00E+01,8.81E+00,7.92E+00
126
+ 7.00E+00,-8.53E+00,-1.26E+01,9.10E+00,-1.20E+01,8.36E+00,8.39E+00
127
+ 7.00E+00,-8.61E+00,-9.80E+00,9.10E+00,-9.00E+00,8.85E+00,8.93E+00
128
+ 7.00E+00,-8.58E+00,-6.63E+00,9.10E+00,-6.00E+00,8.86E+00,7.78E+00
129
+ 7.00E+00,-8.62E+00,-6.87E-01,9.10E+00,0.00E+00,8.72E+00,8.28E+00
130
+ 7.00E+00,-8.41E+00,6.01E+00,9.10E+00,6.00E+00,8.45E+00,8.41E+00
131
+ 7.00E+00,-8.59E+00,8.58E+00,9.10E+00,9.00E+00,8.85E+00,8.69E+00
132
+ 7.00E+00,-8.43E+00,1.16E+01,9.10E+00,1.20E+01,8.02E+00,8.54E+00
133
+ 7.00E+00,-8.00E+00,1.97E+01,9.10E+00,2.00E+01,8.92E+00,8.48E+00
134
+ 7.00E+00,-8.52E+00,2.75E+01,9.10E+00,2.80E+01,9.56E+00,8.48E+00
135
+ 7.00E+00,-8.64E+00,3.53E+01,9.10E+00,3.60E+01,1.05E+01,8.78E+00
136
+ 7.00E+00,-8.95E+00,4.34E+01,9.10E+00,4.40E+01,1.15E+01,9.24E+00
137
+ 7.00E+00,-1.82E+01,-4.42E+01,1.85E+01,-4.40E+01,1.29E+01,9.01E+00
138
+ 7.00E+00,-1.78E+01,-3.62E+01,1.85E+01,-3.60E+01,1.02E+01,7.87E+00
139
+ 7.00E+00,-1.79E+01,-2.84E+01,1.85E+01,-2.80E+01,9.60E+00,7.79E+00
140
+ 7.00E+00,-1.80E+01,-2.07E+01,1.85E+01,-2.00E+01,8.76E+00,7.38E+00
141
+ 7.00E+00,-1.81E+01,-1.28E+01,1.85E+01,-1.20E+01,7.86E+00,7.74E+00
142
+ 7.00E+00,-1.82E+01,-9.64E+00,1.85E+01,-9.00E+00,7.15E+00,7.95E+00
143
+ 7.00E+00,-1.81E+01,-6.92E+00,1.85E+01,-6.00E+00,7.97E+00,7.97E+00
144
+ 7.00E+00,-1.82E+01,-5.41E-01,1.85E+01,0.00E+00,8.22E+00,8.39E+00
145
+ 7.00E+00,-1.82E+01,5.71E+00,1.85E+01,6.00E+00,7.72E+00,7.74E+00
146
+ 7.00E+00,-1.79E+01,8.93E+00,1.85E+01,9.00E+00,8.26E+00,7.97E+00
147
+ 7.00E+00,-1.81E+01,1.19E+01,1.85E+01,1.20E+01,7.93E+00,8.12E+00
148
+ 7.00E+00,-1.79E+01,1.97E+01,1.85E+01,2.00E+01,8.29E+00,7.85E+00
149
+ 7.00E+00,-1.79E+01,2.76E+01,1.85E+01,2.80E+01,9.02E+00,9.14E+00
150
+ 7.00E+00,-1.77E+01,3.57E+01,1.85E+01,3.60E+01,1.12E+01,7.89E+00
151
+ 7.00E+00,-1.76E+01,4.39E+01,1.85E+01,4.40E+01,1.30E+01,8.46E+00
152
+ 7.00E+00,-2.68E+01,-4.42E+01,2.75E+01,-4.40E+01,1.20E+01,8.05E+00
153
+ 7.00E+00,-2.66E+01,-3.62E+01,2.75E+01,-3.60E+01,9.82E+00,7.53E+00
154
+ 7.00E+00,-2.66E+01,-2.85E+01,2.75E+01,-2.80E+01,9.11E+00,7.68E+00
155
+ 7.00E+00,-2.70E+01,-2.06E+01,2.75E+01,-2.00E+01,8.02E+00,7.37E+00
156
+ 7.00E+00,-2.69E+01,-1.26E+01,2.75E+01,-1.20E+01,7.16E+00,7.32E+00
157
+ 7.00E+00,-2.70E+01,-9.57E+00,2.75E+01,-9.00E+00,7.50E+00,7.73E+00
158
+ 7.00E+00,-2.70E+01,-6.88E+00,2.75E+01,-6.00E+00,8.11E+00,7.44E+00
159
+ 7.00E+00,-2.70E+01,-4.31E-01,2.75E+01,0.00E+00,7.60E+00,7.73E+00
160
+ 7.00E+00,-2.70E+01,5.73E+00,2.75E+01,6.00E+00,7.56E+00,7.21E+00
161
+ 7.00E+00,-2.69E+01,8.76E+00,2.75E+01,9.00E+00,7.64E+00,8.01E+00
162
+ 7.00E+00,-2.69E+01,1.19E+01,2.75E+01,1.20E+01,7.94E+00,7.56E+00
163
+ 7.00E+00,-2.67E+01,1.96E+01,2.75E+01,2.00E+01,8.26E+00,7.89E+00
164
+ 7.00E+00,-2.67E+01,2.78E+01,2.75E+01,2.80E+01,9.22E+00,8.12E+00
165
+ 7.00E+00,-2.57E+01,3.61E+01,2.75E+01,3.60E+01,1.08E+01,8.41E+00
166
+ 7.00E+00,-2.61E+01,4.39E+01,2.75E+01,4.40E+01,1.30E+01,8.35E+00
167
+ 7.00E+00,-3.49E+01,-4.44E+01,3.64E+01,-4.40E+01,1.31E+01,8.45E+00
168
+ 7.00E+00,-3.51E+01,-3.62E+01,3.64E+01,-3.60E+01,1.06E+01,7.58E+00
169
+ 7.00E+00,-3.55E+01,-2.82E+01,3.64E+01,-2.80E+01,9.29E+00,7.21E+00
170
+ 7.00E+00,-3.56E+01,-2.03E+01,3.64E+01,-2.00E+01,8.14E+00,7.38E+00
171
+ 7.00E+00,-3.56E+01,-1.24E+01,3.64E+01,-1.20E+01,7.83E+00,7.22E+00
172
+ 7.00E+00,-3.57E+01,-9.47E+00,3.64E+01,-9.00E+00,7.51E+00,7.43E+00
173
+ 7.00E+00,-3.56E+01,-6.52E+00,3.64E+01,-6.00E+00,7.51E+00,6.96E+00
174
+ 7.00E+00,-3.56E+01,-2.81E-01,3.64E+01,0.00E+00,7.91E+00,7.47E+00
175
+ 7.00E+00,-3.55E+01,5.90E+00,3.64E+01,6.00E+00,8.01E+00,7.31E+00
176
+ 7.00E+00,-3.55E+01,8.71E+00,3.64E+01,9.00E+00,7.60E+00,6.88E+00
177
+ 7.00E+00,-3.55E+01,1.19E+01,3.64E+01,1.20E+01,7.68E+00,7.34E+00
178
+ 7.00E+00,-3.55E+01,1.97E+01,3.64E+01,2.00E+01,8.31E+00,7.59E+00
179
+ 7.00E+00,-3.52E+01,2.80E+01,3.64E+01,2.80E+01,9.38E+00,7.90E+00
180
+ 7.00E+00,-3.49E+01,3.59E+01,3.64E+01,3.60E+01,1.10E+01,8.10E+00
181
+ 7.00E+00,-3.40E+01,4.38E+01,3.64E+01,4.40E+01,1.39E+01,8.14E+00
182
+ 7.00E+00,-4.35E+01,-4.36E+01,4.57E+01,-4.40E+01,1.39E+01,8.48E+00
183
+ 7.00E+00,-4.43E+01,-3.59E+01,4.57E+01,-3.60E+01,1.15E+01,7.42E+00
184
+ 7.00E+00,-4.44E+01,-2.82E+01,4.57E+01,-2.80E+01,1.00E+01,7.28E+00
185
+ 7.00E+00,-4.44E+01,-2.01E+01,4.57E+01,-2.00E+01,9.16E+00,6.79E+00
186
+ 7.00E+00,-4.45E+01,-1.22E+01,4.57E+01,-1.20E+01,8.86E+00,6.75E+00
187
+ 7.00E+00,-4.45E+01,-9.21E+00,4.57E+01,-9.00E+00,8.36E+00,6.63E+00
188
+ 7.00E+00,-4.46E+01,-6.39E+00,4.57E+01,-6.00E+00,8.44E+00,6.94E+00
189
+ 7.00E+00,-4.47E+01,-2.56E-01,4.57E+01,0.00E+00,8.73E+00,7.40E+00
190
+ 7.00E+00,-4.47E+01,5.87E+00,4.57E+01,6.00E+00,8.57E+00,6.91E+00
191
+ 7.00E+00,-4.46E+01,8.82E+00,4.57E+01,9.00E+00,8.63E+00,7.05E+00
192
+ 7.00E+00,-4.42E+01,1.18E+01,4.57E+01,1.20E+01,9.14E+00,7.31E+00
193
+ 7.00E+00,-4.43E+01,1.99E+01,4.57E+01,2.00E+01,9.57E+00,6.99E+00
194
+ 7.00E+00,-4.39E+01,2.81E+01,4.57E+01,2.80E+01,1.15E+01,7.93E+00
195
+ 7.00E+00,-4.37E+01,3.59E+01,4.57E+01,3.60E+01,1.30E+01,8.31E+00
196
+ 7.00E+00,-4.23E+01,4.32E+01,4.57E+01,4.40E+01,1.51E+01,8.33E+00
197
+ 7.00E+00,-5.13E+01,-4.34E+01,5.49E+01,-4.40E+01,2.76E+01,8.85E+00
198
+ 7.00E+00,-5.38E+01,-3.59E+01,5.49E+01,-3.60E+01,7.83E+00,7.70E+00
199
+ 7.00E+00,-5.36E+01,-2.80E+01,5.49E+01,-2.80E+01,1.23E+01,6.89E+00
200
+ 7.00E+00,-5.29E+01,-1.99E+01,5.49E+01,-2.00E+01,1.18E+01,7.22E+00
201
+ 7.00E+00,-5.29E+01,-1.21E+01,5.49E+01,-1.20E+01,1.17E+01,6.51E+00
202
+ 7.00E+00,-5.34E+01,-9.14E+00,5.49E+01,-9.00E+00,1.13E+01,6.35E+00
203
+ 7.00E+00,-5.33E+01,-6.17E+00,5.49E+01,-6.00E+00,1.12E+01,6.66E+00
204
+ 7.00E+00,-5.29E+01,-2.44E-01,5.49E+01,0.00E+00,1.19E+01,6.85E+00
205
+ 7.00E+00,-5.34E+01,5.91E+00,5.49E+01,6.00E+00,1.08E+01,6.78E+00
206
+ 7.00E+00,-5.33E+01,8.99E+00,5.49E+01,9.00E+00,1.13E+01,6.41E+00
207
+ 7.00E+00,-5.34E+01,1.19E+01,5.49E+01,1.20E+01,1.07E+01,7.32E+00
208
+ 7.00E+00,-5.26E+01,1.98E+01,5.49E+01,2.00E+01,1.34E+01,7.10E+00
209
+ 7.00E+00,-5.33E+01,2.81E+01,5.49E+01,2.80E+01,1.66E+01,7.39E+00
210
+ 7.00E+00,-5.34E+01,3.59E+01,5.49E+01,3.60E+01,1.02E+01,7.90E+00
211
+ 7.00E+00,-5.24E+01,4.33E+01,5.49E+01,4.40E+01,2.58E+01,8.18E+00
212
+ 1.00E+01,-1.65E+00,-4.36E+01,0.00E+00,-4.40E+01,5.06E+00,6.47E+00
213
+ 1.00E+01,-1.81E+00,-3.60E+01,0.00E+00,-3.60E+01,5.98E+00,7.08E+00
214
+ 1.00E+01,-1.16E+00,-2.83E+01,0.00E+00,-2.80E+01,5.59E+00,6.82E+00
215
+ 1.00E+01,-1.00E+00,-2.07E+01,0.00E+00,-2.00E+01,5.22E+00,6.78E+00
216
+ 1.00E+01,-9.34E-01,-1.27E+01,0.00E+00,-1.20E+01,5.14E+00,6.45E+00
217
+ 1.00E+01,-6.63E-01,-9.75E+00,0.00E+00,-9.00E+00,4.58E+00,7.03E+00
218
+ 1.00E+01,-5.32E-01,-7.03E+00,0.00E+00,-6.00E+00,3.23E+00,7.27E+00
219
+ 1.00E+01,-6.90E-02,-8.71E-01,0.00E+00,0.00E+00,1.59E+00,7.30E+00
220
+ 1.00E+01,-6.33E-01,5.48E+00,0.00E+00,6.00E+00,4.29E+00,6.87E+00
221
+ 1.00E+01,-4.73E-01,8.23E+00,0.00E+00,9.00E+00,4.68E+00,7.48E+00
222
+ 1.00E+01,-8.26E-01,1.12E+01,0.00E+00,1.20E+01,5.22E+00,7.45E+00
223
+ 1.00E+01,-5.82E-01,1.92E+01,0.00E+00,2.00E+01,3.37E+00,6.96E+00
224
+ 1.00E+01,-1.03E+00,2.70E+01,0.00E+00,2.80E+01,4.45E+00,7.21E+00
225
+ 1.00E+01,-1.36E+00,3.51E+01,0.00E+00,3.60E+01,6.75E+00,7.02E+00
226
+ 1.00E+01,3.66E+02,4.27E+01,0.00E+00,4.40E+01,1.03E+02,7.15E+00
227
+ 1.00E+01,-8.65E+00,-4.46E+01,9.10E+00,-4.40E+01,1.03E+01,6.45E+00
228
+ 1.00E+01,-8.56E+00,-3.67E+01,9.10E+00,-3.60E+01,8.39E+00,6.47E+00
229
+ 1.00E+01,-8.44E+00,-2.88E+01,9.10E+00,-2.80E+01,7.38E+00,6.03E+00
230
+ 1.00E+01,-8.65E+00,-2.10E+01,9.10E+00,-2.00E+01,6.13E+00,6.50E+00
231
+ 1.00E+01,-8.52E+00,-1.30E+01,9.10E+00,-1.20E+01,6.06E+00,6.58E+00
232
+ 1.00E+01,-8.46E+00,-1.01E+01,9.10E+00,-9.00E+00,6.08E+00,6.51E+00
233
+ 1.00E+01,-8.46E+00,-6.94E+00,9.10E+00,-6.00E+00,6.42E+00,6.67E+00
234
+ 1.00E+01,-8.46E+00,-7.69E-01,9.10E+00,0.00E+00,5.94E+00,6.77E+00
235
+ 1.00E+01,-8.57E+00,5.54E+00,9.10E+00,6.00E+00,6.06E+00,6.39E+00
236
+ 1.00E+01,-8.43E+00,8.48E+00,9.10E+00,9.00E+00,6.10E+00,6.49E+00
237
+ 1.00E+01,-8.51E+00,1.16E+01,9.10E+00,1.20E+01,6.22E+00,6.61E+00
238
+ 1.00E+01,-8.41E+00,1.96E+01,9.10E+00,2.00E+01,6.55E+00,6.51E+00
239
+ 1.00E+01,-8.09E+00,2.76E+01,9.10E+00,2.80E+01,7.53E+00,6.54E+00
240
+ 1.00E+01,-8.07E+00,3.55E+01,9.10E+00,3.60E+01,8.19E+00,6.80E+00
241
+ 1.00E+01,-8.61E+00,4.33E+01,9.10E+00,4.40E+01,9.18E+00,6.86E+00
242
+ 1.00E+01,-1.80E+01,-4.48E+01,1.85E+01,-4.40E+01,9.27E+00,6.43E+00
243
+ 1.00E+01,-1.80E+01,-3.68E+01,1.85E+01,-3.60E+01,7.54E+00,6.19E+00
244
+ 1.00E+01,-1.81E+01,-2.88E+01,1.85E+01,-2.80E+01,6.39E+00,5.83E+00
245
+ 1.00E+01,-1.81E+01,-2.11E+01,1.85E+01,-2.00E+01,5.80E+00,5.85E+00
246
+ 1.00E+01,-1.82E+01,-1.29E+01,1.85E+01,-1.20E+01,5.62E+00,5.71E+00
247
+ 1.00E+01,-1.82E+01,-9.92E+00,1.85E+01,-9.00E+00,5.37E+00,6.31E+00
248
+ 1.00E+01,-1.81E+01,-7.01E+00,1.85E+01,-6.00E+00,5.41E+00,6.35E+00
249
+ 1.00E+01,-1.81E+01,-6.54E-01,1.85E+01,0.00E+00,5.47E+00,6.40E+00
250
+ 1.00E+01,-1.82E+01,5.65E+00,1.85E+01,6.00E+00,5.68E+00,6.39E+00
251
+ 1.00E+01,-1.80E+01,8.57E+00,1.85E+01,9.00E+00,5.54E+00,6.11E+00
252
+ 1.00E+01,-1.80E+01,1.17E+01,1.85E+01,1.20E+01,5.78E+00,6.27E+00
253
+ 1.00E+01,-1.79E+01,1.97E+01,1.85E+01,2.00E+01,6.38E+00,6.39E+00
254
+ 1.00E+01,-1.77E+01,2.78E+01,1.85E+01,2.80E+01,6.77E+00,6.23E+00
255
+ 1.00E+01,-1.75E+01,3.57E+01,1.85E+01,3.60E+01,7.63E+00,6.48E+00
256
+ 1.00E+01,-1.72E+01,4.40E+01,1.85E+01,4.40E+01,9.21E+00,6.66E+00
257
+ 1.00E+01,-2.66E+01,-4.46E+01,2.75E+01,-4.40E+01,8.60E+00,6.34E+00
258
+ 1.00E+01,-2.69E+01,-3.69E+01,2.75E+01,-3.60E+01,7.89E+00,6.00E+00
259
+ 1.00E+01,-2.72E+01,-2.90E+01,2.75E+01,-2.80E+01,6.24E+00,5.74E+00
260
+ 1.00E+01,-2.69E+01,-2.09E+01,2.75E+01,-2.00E+01,6.28E+00,6.00E+00
261
+ 1.00E+01,-2.72E+01,-1.28E+01,2.75E+01,-1.20E+01,5.87E+00,5.91E+00
262
+ 1.00E+01,-2.72E+01,-9.87E+00,2.75E+01,-9.00E+00,5.26E+00,5.81E+00
263
+ 1.00E+01,-2.71E+01,-6.85E+00,2.75E+01,-6.00E+00,5.52E+00,6.22E+00
264
+ 1.00E+01,-2.73E+01,-5.56E-01,2.75E+01,0.00E+00,5.58E+00,5.77E+00
265
+ 1.00E+01,-2.70E+01,5.60E+00,2.75E+01,6.00E+00,5.75E+00,5.97E+00
266
+ 1.00E+01,-2.70E+01,8.54E+00,2.75E+01,9.00E+00,5.73E+00,6.00E+00
267
+ 1.00E+01,-2.70E+01,1.17E+01,2.75E+01,1.20E+01,5.72E+00,5.87E+00
268
+ 1.00E+01,-2.69E+01,1.98E+01,2.75E+01,2.00E+01,6.27E+00,6.02E+00
269
+ 1.00E+01,-2.69E+01,2.79E+01,2.75E+01,2.80E+01,6.45E+00,5.61E+00
270
+ 1.00E+01,-2.66E+01,3.56E+01,2.75E+01,3.60E+01,7.71E+00,6.17E+00
271
+ 1.00E+01,-2.64E+01,4.39E+01,2.75E+01,4.40E+01,8.98E+00,5.69E+00
272
+ 1.00E+01,-3.51E+01,-4.46E+01,3.64E+01,-4.40E+01,9.04E+00,5.94E+00
273
+ 1.00E+01,-3.55E+01,-3.67E+01,3.64E+01,-3.60E+01,7.08E+00,5.71E+00
274
+ 1.00E+01,-3.56E+01,-2.86E+01,3.64E+01,-2.80E+01,6.13E+00,5.74E+00
275
+ 1.00E+01,-3.58E+01,-2.08E+01,3.64E+01,-2.00E+01,5.70E+00,5.36E+00
276
+ 1.00E+01,-3.59E+01,-1.27E+01,3.64E+01,-1.20E+01,5.82E+00,5.67E+00
277
+ 1.00E+01,-3.58E+01,-9.74E+00,3.64E+01,-9.00E+00,5.65E+00,5.88E+00
278
+ 1.00E+01,-3.58E+01,-6.84E+00,3.64E+01,-6.00E+00,5.52E+00,5.56E+00
279
+ 1.00E+01,-3.58E+01,-5.40E-01,3.64E+01,0.00E+00,5.85E+00,5.52E+00
280
+ 1.00E+01,-3.58E+01,5.79E+00,3.64E+01,6.00E+00,5.41E+00,5.75E+00
281
+ 1.00E+01,-3.58E+01,8.61E+00,3.64E+01,9.00E+00,5.93E+00,5.49E+00
282
+ 1.00E+01,-3.57E+01,1.17E+01,3.64E+01,1.20E+01,5.98E+00,5.86E+00
283
+ 1.00E+01,-3.57E+01,1.97E+01,3.64E+01,2.00E+01,5.94E+00,5.96E+00
284
+ 1.00E+01,-3.55E+01,2.77E+01,3.64E+01,2.80E+01,6.73E+00,5.79E+00
285
+ 1.00E+01,-3.51E+01,3.57E+01,3.64E+01,3.60E+01,8.27E+00,5.79E+00
286
+ 1.00E+01,-3.49E+01,4.38E+01,3.64E+01,4.40E+01,9.05E+00,5.86E+00
287
+ 1.00E+01,-4.38E+01,-4.42E+01,4.57E+01,-4.40E+01,1.08E+01,5.78E+00
288
+ 1.00E+01,-4.45E+01,-3.65E+01,4.57E+01,-3.60E+01,9.41E+00,5.89E+00
289
+ 1.00E+01,-4.45E+01,-2.84E+01,4.57E+01,-2.80E+01,8.01E+00,5.35E+00
290
+ 1.00E+01,-4.48E+01,-2.03E+01,4.57E+01,-2.00E+01,7.31E+00,5.26E+00
291
+ 1.00E+01,-4.50E+01,-1.25E+01,4.57E+01,-1.20E+01,6.15E+00,5.21E+00
292
+ 1.00E+01,-4.49E+01,-9.61E+00,4.57E+01,-9.00E+00,6.41E+00,5.54E+00
293
+ 1.00E+01,-4.50E+01,-6.49E+00,4.57E+01,-6.00E+00,6.35E+00,5.55E+00
294
+ 1.00E+01,-4.48E+01,-4.59E-01,4.57E+01,0.00E+00,6.29E+00,5.10E+00
295
+ 1.00E+01,-4.51E+01,5.61E+00,4.57E+01,6.00E+00,6.52E+00,5.39E+00
296
+ 1.00E+01,-4.47E+01,8.49E+00,4.57E+01,9.00E+00,6.64E+00,5.11E+00
297
+ 1.00E+01,-4.48E+01,1.16E+01,4.57E+01,1.20E+01,6.61E+00,5.34E+00
298
+ 1.00E+01,-4.48E+01,1.96E+01,4.57E+01,2.00E+01,7.00E+00,5.43E+00
299
+ 1.00E+01,-4.42E+01,2.78E+01,4.57E+01,2.80E+01,7.97E+00,5.81E+00
300
+ 1.00E+01,-4.43E+01,3.58E+01,4.57E+01,3.60E+01,9.56E+00,5.24E+00
301
+ 1.00E+01,-4.34E+01,4.36E+01,4.57E+01,4.40E+01,1.14E+01,5.53E+00
302
+ 1.00E+01,-5.06E+01,-4.37E+01,5.49E+01,-4.40E+01,1.62E+01,6.28E+00
303
+ 1.00E+01,-5.27E+01,-3.61E+01,5.49E+01,-3.60E+01,1.27E+01,6.07E+00
304
+ 1.00E+01,-5.34E+01,-2.85E+01,5.49E+01,-2.80E+01,1.00E+01,5.33E+00
305
+ 1.00E+01,-5.33E+01,-2.04E+01,5.49E+01,-2.00E+01,8.54E+00,5.08E+00
306
+ 1.00E+01,-5.36E+01,-1.24E+01,5.49E+01,-1.20E+01,8.40E+00,5.11E+00
307
+ 1.00E+01,-5.35E+01,-9.24E+00,5.49E+01,-9.00E+00,7.89E+00,5.05E+00
308
+ 1.00E+01,-5.34E+01,-6.28E+00,5.49E+01,-6.00E+00,7.83E+00,4.93E+00
309
+ 1.00E+01,-5.36E+01,-3.51E-01,5.49E+01,0.00E+00,7.78E+00,5.23E+00
310
+ 1.00E+01,-5.36E+01,5.65E+00,5.49E+01,6.00E+00,8.40E+00,5.21E+00
311
+ 1.00E+01,-5.35E+01,8.63E+00,5.49E+01,9.00E+00,7.58E+00,5.24E+00
312
+ 1.00E+01,-5.35E+01,1.16E+01,5.49E+01,1.20E+01,8.10E+00,5.06E+00
313
+ 1.00E+01,-5.29E+01,1.94E+01,5.49E+01,2.00E+01,9.34E+00,5.09E+00
314
+ 1.00E+01,-5.29E+01,2.77E+01,5.49E+01,2.80E+01,1.04E+01,5.44E+00
315
+ 1.00E+01,-5.26E+01,3.56E+01,5.49E+01,3.60E+01,1.15E+01,5.42E+00
316
+ 1.00E+01,-5.04E+01,4.35E+01,5.49E+01,4.40E+01,1.65E+01,5.97E+00
317
+ 2.00E+01,-5.69E-01,-4.41E+01,0.00E+00,-4.40E+01,3.33E+00,4.58E+00
318
+ 2.00E+01,-3.13E-01,-3.65E+01,0.00E+00,-3.60E+01,4.23E+00,4.75E+00
319
+ 2.00E+01,-1.86E-01,-2.86E+01,0.00E+00,-2.80E+01,1.32E+00,4.62E+00
320
+ 2.00E+01,3.81E-01,-2.09E+01,0.00E+00,-2.00E+01,1.46E+00,4.91E+00
321
+ 2.00E+01,3.14E-01,-1.30E+01,0.00E+00,-1.20E+01,1.53E+00,4.82E+00
322
+ 2.00E+01,-2.13E-01,-1.01E+01,0.00E+00,-9.00E+00,1.42E+00,5.28E+00
323
+ 2.00E+01,-7.06E-03,-7.10E+00,0.00E+00,-6.00E+00,1.35E+00,5.19E+00
324
+ 2.00E+01,2.08E-01,-8.74E-01,0.00E+00,0.00E+00,1.38E+00,5.50E+00
325
+ 2.00E+01,6.53E-01,5.18E+00,0.00E+00,6.00E+00,1.35E+00,4.96E+00
326
+ 2.00E+01,5.76E-01,8.26E+00,0.00E+00,9.00E+00,1.33E+00,4.89E+00
327
+ 2.00E+01,-1.14E-03,1.13E+01,0.00E+00,1.20E+01,1.27E+00,5.13E+00
328
+ 2.00E+01,2.01E-01,1.92E+01,0.00E+00,2.00E+01,1.35E+00,5.16E+00
329
+ 2.00E+01,1.48E-01,2.71E+01,0.00E+00,2.80E+01,4.33E+00,5.05E+00
330
+ 2.00E+01,-1.12E-01,3.50E+01,0.00E+00,3.60E+01,3.99E+00,4.70E+00
331
+ 2.00E+01,1.57E-02,4.28E+01,0.00E+00,4.40E+01,1.54E+00,5.06E+00
332
+ 2.00E+01,-8.49E+00,-4.47E+01,9.10E+00,-4.40E+01,6.01E+00,4.31E+00
333
+ 2.00E+01,-8.76E+00,-3.70E+01,9.10E+00,-3.60E+01,4.80E+00,4.53E+00
334
+ 2.00E+01,-8.78E+00,-2.90E+01,9.10E+00,-2.80E+01,4.28E+00,4.59E+00
335
+ 2.00E+01,-8.85E+00,-2.12E+01,9.10E+00,-2.00E+01,3.90E+00,4.54E+00
336
+ 2.00E+01,-8.88E+00,-1.31E+01,9.10E+00,-1.20E+01,3.73E+00,4.67E+00
337
+ 2.00E+01,-8.84E+00,-1.00E+01,9.10E+00,-9.00E+00,3.70E+00,4.82E+00
338
+ 2.00E+01,-8.82E+00,-6.99E+00,9.10E+00,-6.00E+00,3.73E+00,4.97E+00
339
+ 2.00E+01,-8.81E+00,-8.87E-01,9.10E+00,0.00E+00,3.72E+00,4.96E+00
340
+ 2.00E+01,-8.79E+00,5.42E+00,9.10E+00,6.00E+00,3.49E+00,4.79E+00
341
+ 2.00E+01,-8.84E+00,8.35E+00,9.10E+00,9.00E+00,3.66E+00,4.81E+00
342
+ 2.00E+01,-8.72E+00,1.14E+01,9.10E+00,1.20E+01,3.82E+00,4.92E+00
343
+ 2.00E+01,-8.71E+00,1.96E+01,9.10E+00,2.00E+01,4.13E+00,4.73E+00
344
+ 2.00E+01,-8.54E+00,2.77E+01,9.10E+00,2.80E+01,4.40E+00,4.75E+00
345
+ 2.00E+01,-8.45E+00,3.55E+01,9.10E+00,3.60E+01,5.08E+00,4.62E+00
346
+ 2.00E+01,-8.13E+00,4.35E+01,9.10E+00,4.40E+01,6.15E+00,4.73E+00
347
+ 2.00E+01,-1.81E+01,-4.49E+01,1.85E+01,-4.40E+01,5.35E+00,4.22E+00
348
+ 2.00E+01,-1.82E+01,-3.71E+01,1.85E+01,-3.60E+01,4.46E+00,4.17E+00
349
+ 2.00E+01,-1.83E+01,-2.91E+01,1.85E+01,-2.80E+01,4.07E+00,4.39E+00
350
+ 2.00E+01,-1.84E+01,-2.12E+01,1.85E+01,-2.00E+01,3.71E+00,4.55E+00
351
+ 2.00E+01,-1.83E+01,-1.32E+01,1.85E+01,-1.20E+01,3.58E+00,4.56E+00
352
+ 2.00E+01,-1.84E+01,-1.00E+01,1.85E+01,-9.00E+00,3.47E+00,4.72E+00
353
+ 2.00E+01,-1.83E+01,-7.00E+00,1.85E+01,-6.00E+00,3.24E+00,4.68E+00
354
+ 2.00E+01,-1.84E+01,-7.97E-01,1.85E+01,0.00E+00,3.48E+00,4.92E+00
355
+ 2.00E+01,-1.84E+01,5.42E+00,1.85E+01,6.00E+00,3.40E+00,4.74E+00
356
+ 2.00E+01,-1.83E+01,8.50E+00,1.85E+01,9.00E+00,3.45E+00,4.56E+00
357
+ 2.00E+01,-1.83E+01,1.15E+01,1.85E+01,1.20E+01,3.52E+00,4.86E+00
358
+ 2.00E+01,-1.83E+01,1.97E+01,1.85E+01,2.00E+01,3.77E+00,4.45E+00
359
+ 2.00E+01,-1.81E+01,2.78E+01,1.85E+01,2.80E+01,4.35E+00,4.53E+00
360
+ 2.00E+01,-1.80E+01,3.58E+01,1.85E+01,3.60E+01,4.60E+00,4.41E+00
361
+ 2.00E+01,-1.77E+01,4.38E+01,1.85E+01,4.40E+01,5.32E+00,4.54E+00
362
+ 2.00E+01,-2.71E+01,-4.49E+01,2.75E+01,-4.40E+01,5.17E+00,3.95E+00
363
+ 2.00E+01,-2.71E+01,-3.70E+01,2.75E+01,-3.60E+01,4.23E+00,4.10E+00
364
+ 2.00E+01,-2.73E+01,-2.91E+01,2.75E+01,-2.80E+01,3.90E+00,4.25E+00
365
+ 2.00E+01,-2.73E+01,-2.12E+01,2.75E+01,-2.00E+01,3.73E+00,4.41E+00
366
+ 2.00E+01,-2.74E+01,-1.30E+01,2.75E+01,-1.20E+01,3.67E+00,4.43E+00
367
+ 2.00E+01,-2.74E+01,-9.91E+00,2.75E+01,-9.00E+00,3.35E+00,4.47E+00
368
+ 2.00E+01,-2.74E+01,-7.09E+00,2.75E+01,-6.00E+00,3.43E+00,4.49E+00
369
+ 2.00E+01,-2.73E+01,-7.21E-01,2.75E+01,0.00E+00,3.48E+00,4.52E+00
370
+ 2.00E+01,-2.74E+01,5.43E+00,2.75E+01,6.00E+00,3.51E+00,4.52E+00
371
+ 2.00E+01,-2.73E+01,8.47E+00,2.75E+01,9.00E+00,3.65E+00,4.58E+00
372
+ 2.00E+01,-2.73E+01,1.16E+01,2.75E+01,1.20E+01,3.56E+00,4.46E+00
373
+ 2.00E+01,-2.72E+01,1.96E+01,2.75E+01,2.00E+01,3.85E+00,4.38E+00
374
+ 2.00E+01,-2.70E+01,2.78E+01,2.75E+01,2.80E+01,4.28E+00,4.33E+00
375
+ 2.00E+01,-2.69E+01,3.57E+01,2.75E+01,3.60E+01,4.44E+00,4.25E+00
376
+ 2.00E+01,-2.68E+01,4.39E+01,2.75E+01,4.40E+01,5.04E+00,3.91E+00
377
+ 2.00E+01,-3.57E+01,-4.47E+01,3.64E+01,-4.40E+01,5.32E+00,3.70E+00
378
+ 2.00E+01,-3.58E+01,-3.68E+01,3.64E+01,-3.60E+01,4.57E+00,3.72E+00
379
+ 2.00E+01,-3.59E+01,-2.88E+01,3.64E+01,-2.80E+01,3.97E+00,3.98E+00
380
+ 2.00E+01,-3.61E+01,-2.09E+01,3.64E+01,-2.00E+01,3.66E+00,4.22E+00
381
+ 2.00E+01,-3.62E+01,-1.28E+01,3.64E+01,-1.20E+01,3.56E+00,4.11E+00
382
+ 2.00E+01,-3.62E+01,-9.80E+00,3.64E+01,-9.00E+00,3.39E+00,4.18E+00
383
+ 2.00E+01,-3.62E+01,-6.89E+00,3.64E+01,-6.00E+00,3.39E+00,4.15E+00
384
+ 2.00E+01,-3.62E+01,-6.31E-01,3.64E+01,0.00E+00,3.54E+00,4.30E+00
385
+ 2.00E+01,-3.61E+01,5.42E+00,3.64E+01,6.00E+00,3.45E+00,4.13E+00
386
+ 2.00E+01,-3.62E+01,8.44E+00,3.64E+01,9.00E+00,3.53E+00,4.24E+00
387
+ 2.00E+01,-3.61E+01,1.17E+01,3.64E+01,1.20E+01,3.56E+00,4.34E+00
388
+ 2.00E+01,-3.61E+01,1.96E+01,3.64E+01,2.00E+01,3.68E+00,4.25E+00
389
+ 2.00E+01,-3.58E+01,2.76E+01,3.64E+01,2.80E+01,4.18E+00,4.15E+00
390
+ 2.00E+01,-3.56E+01,3.55E+01,3.64E+01,3.60E+01,4.62E+00,4.04E+00
391
+ 2.00E+01,-3.54E+01,4.36E+01,3.64E+01,4.40E+01,5.54E+00,3.76E+00
392
+ 2.00E+01,-4.46E+01,-4.43E+01,4.57E+01,-4.40E+01,6.52E+00,3.53E+00
393
+ 2.00E+01,-4.50E+01,-3.67E+01,4.57E+01,-3.60E+01,5.27E+00,3.74E+00
394
+ 2.00E+01,-4.51E+01,-2.86E+01,4.57E+01,-2.80E+01,4.69E+00,3.64E+00
395
+ 2.00E+01,-4.53E+01,-2.05E+01,4.57E+01,-2.00E+01,4.06E+00,3.74E+00
396
+ 2.00E+01,-4.52E+01,-1.26E+01,4.57E+01,-1.20E+01,3.85E+00,3.87E+00
397
+ 2.00E+01,-4.53E+01,-9.71E+00,4.57E+01,-9.00E+00,3.92E+00,3.88E+00
398
+ 2.00E+01,-4.54E+01,-6.69E+00,4.57E+01,-6.00E+00,3.90E+00,3.82E+00
399
+ 2.00E+01,-4.53E+01,-7.39E-01,4.57E+01,0.00E+00,3.95E+00,3.92E+00
400
+ 2.00E+01,-4.53E+01,5.45E+00,4.57E+01,6.00E+00,3.97E+00,3.83E+00
401
+ 2.00E+01,-4.53E+01,8.43E+00,4.57E+01,9.00E+00,4.09E+00,3.87E+00
402
+ 2.00E+01,-4.52E+01,1.15E+01,4.57E+01,1.20E+01,4.07E+00,3.93E+00
403
+ 2.00E+01,-4.51E+01,1.95E+01,4.57E+01,2.00E+01,4.21E+00,3.75E+00
404
+ 2.00E+01,-4.49E+01,2.75E+01,4.57E+01,2.80E+01,4.79E+00,3.78E+00
405
+ 2.00E+01,-4.48E+01,3.55E+01,4.57E+01,3.60E+01,5.40E+00,3.82E+00
406
+ 2.00E+01,-4.42E+01,4.34E+01,4.57E+01,4.40E+01,6.56E+00,3.63E+00
407
+ 2.00E+01,-5.28E+01,-4.41E+01,5.49E+01,-4.40E+01,8.88E+00,3.57E+00
408
+ 2.00E+01,-5.36E+01,-3.63E+01,5.49E+01,-3.60E+01,6.85E+00,3.48E+00
409
+ 2.00E+01,-5.41E+01,-2.84E+01,5.49E+01,-2.80E+01,5.94E+00,3.44E+00
410
+ 2.00E+01,-5.40E+01,-2.05E+01,5.49E+01,-2.00E+01,5.43E+00,3.47E+00
411
+ 2.00E+01,-5.41E+01,-1.25E+01,5.49E+01,-1.20E+01,5.04E+00,3.40E+00
412
+ 2.00E+01,-5.42E+01,-9.45E+00,5.49E+01,-9.00E+00,4.97E+00,3.53E+00
413
+ 2.00E+01,-5.43E+01,-6.60E+00,5.49E+01,-6.00E+00,4.94E+00,3.58E+00
414
+ 2.00E+01,-5.42E+01,-5.73E-01,5.49E+01,0.00E+00,4.78E+00,3.74E+00
415
+ 2.00E+01,-5.42E+01,5.49E+00,5.49E+01,6.00E+00,4.88E+00,3.47E+00
416
+ 2.00E+01,-5.42E+01,8.49E+00,5.49E+01,9.00E+00,5.02E+00,3.58E+00
417
+ 2.00E+01,-5.42E+01,1.15E+01,5.49E+01,1.20E+01,4.98E+00,3.47E+00
418
+ 2.00E+01,-5.39E+01,1.94E+01,5.49E+01,2.00E+01,5.56E+00,3.60E+00
419
+ 2.00E+01,-5.40E+01,2.75E+01,5.49E+01,2.80E+01,5.91E+00,3.44E+00
420
+ 2.00E+01,-5.36E+01,3.55E+01,5.49E+01,3.60E+01,6.90E+00,3.36E+00
421
+ 2.00E+01,-5.25E+01,4.33E+01,5.49E+01,4.40E+01,9.20E+00,3.73E+00
422
+ 4.00E+01,-4.82E-02,-4.40E+01,0.00E+00,-4.40E+01,1.66E+00,3.44E+00
423
+ 4.00E+01,-1.26E-01,-3.64E+01,0.00E+00,-3.60E+01,1.50E+00,4.08E+00
424
+ 4.00E+01,8.08E-02,-2.85E+01,0.00E+00,-2.80E+01,1.32E+00,4.21E+00
425
+ 4.00E+01,8.27E-01,-2.06E+01,0.00E+00,-2.00E+01,1.35E+00,4.10E+00
426
+ 4.00E+01,-1.36E-01,-1.28E+01,0.00E+00,-1.20E+01,1.06E+00,4.08E+00
427
+ 4.00E+01,1.25E-01,-9.67E+00,0.00E+00,-9.00E+00,1.18E+00,4.59E+00
428
+ 4.00E+01,5.05E-01,-6.76E+00,0.00E+00,-6.00E+00,1.20E+00,4.55E+00
429
+ 4.00E+01,-1.24E-01,-6.41E-01,0.00E+00,0.00E+00,1.04E+00,4.74E+00
430
+ 4.00E+01,-6.39E-02,5.40E+00,0.00E+00,6.00E+00,1.05E+00,4.42E+00
431
+ 4.00E+01,7.06E-01,8.48E+00,0.00E+00,9.00E+00,1.12E+00,4.43E+00
432
+ 4.00E+01,6.43E-01,1.15E+01,0.00E+00,1.20E+01,1.09E+00,4.05E+00
433
+ 4.00E+01,2.04E-01,1.94E+01,0.00E+00,2.00E+01,1.09E+00,4.29E+00
434
+ 4.00E+01,1.89E-01,2.74E+01,0.00E+00,2.80E+01,1.18E+00,4.11E+00
435
+ 4.00E+01,-2.36E-01,3.51E+01,0.00E+00,3.60E+01,1.22E+00,4.15E+00
436
+ 4.00E+01,4.32E-02,4.31E+01,0.00E+00,4.40E+01,1.23E+00,3.79E+00
437
+ 4.00E+01,-8.75E+00,-4.44E+01,9.10E+00,-4.40E+01,3.52E+00,3.26E+00
438
+ 4.00E+01,-8.81E+00,-3.67E+01,9.10E+00,-3.60E+01,3.17E+00,3.69E+00
439
+ 4.00E+01,-8.87E+00,-2.89E+01,9.10E+00,-2.80E+01,2.77E+00,3.88E+00
440
+ 4.00E+01,-8.90E+00,-2.10E+01,9.10E+00,-2.00E+01,2.50E+00,4.03E+00
441
+ 4.00E+01,-8.88E+00,-1.30E+01,9.10E+00,-1.20E+01,2.43E+00,4.19E+00
442
+ 4.00E+01,-8.92E+00,-9.87E+00,9.10E+00,-9.00E+00,2.36E+00,4.19E+00
443
+ 4.00E+01,-8.93E+00,-6.90E+00,9.10E+00,-6.00E+00,2.20E+00,4.25E+00
444
+ 4.00E+01,-8.89E+00,-7.01E-01,9.10E+00,0.00E+00,2.34E+00,4.39E+00
445
+ 4.00E+01,-8.83E+00,5.55E+00,9.10E+00,6.00E+00,2.29E+00,4.12E+00
446
+ 4.00E+01,-8.82E+00,8.40E+00,9.10E+00,9.00E+00,2.36E+00,4.34E+00
447
+ 4.00E+01,-8.84E+00,1.16E+01,9.10E+00,1.20E+01,2.39E+00,4.17E+00
448
+ 4.00E+01,-8.73E+00,1.97E+01,9.10E+00,2.00E+01,2.59E+00,4.03E+00
449
+ 4.00E+01,-8.61E+00,2.77E+01,9.10E+00,2.80E+01,2.91E+00,3.82E+00
450
+ 4.00E+01,-8.53E+00,3.56E+01,9.10E+00,3.60E+01,3.15E+00,3.83E+00
451
+ 4.00E+01,-8.28E+00,4.36E+01,9.10E+00,4.40E+01,3.85E+00,3.47E+00
452
+ 4.00E+01,-1.83E+01,-4.46E+01,1.85E+01,-4.40E+01,3.40E+00,3.20E+00
453
+ 4.00E+01,-1.83E+01,-3.69E+01,1.85E+01,-3.60E+01,2.95E+00,3.50E+00
454
+ 4.00E+01,-1.83E+01,-2.88E+01,1.85E+01,-2.80E+01,2.69E+00,3.83E+00
455
+ 4.00E+01,-1.84E+01,-2.10E+01,1.85E+01,-2.00E+01,2.39E+00,3.87E+00
456
+ 4.00E+01,-1.85E+01,-1.29E+01,1.85E+01,-1.20E+01,2.23E+00,4.06E+00
457
+ 4.00E+01,-1.84E+01,-9.92E+00,1.85E+01,-9.00E+00,2.32E+00,4.14E+00
458
+ 4.00E+01,-1.85E+01,-6.81E+00,1.85E+01,-6.00E+00,2.28E+00,4.17E+00
459
+ 4.00E+01,-1.84E+01,-6.98E-01,1.85E+01,0.00E+00,2.22E+00,4.21E+00
460
+ 4.00E+01,-1.85E+01,5.68E+00,1.85E+01,6.00E+00,2.36E+00,4.07E+00
461
+ 4.00E+01,-1.84E+01,8.65E+00,1.85E+01,9.00E+00,2.33E+00,4.12E+00
462
+ 4.00E+01,-1.84E+01,1.18E+01,1.85E+01,1.20E+01,2.40E+00,4.03E+00
463
+ 4.00E+01,-1.83E+01,1.99E+01,1.85E+01,2.00E+01,2.49E+00,3.90E+00
464
+ 4.00E+01,-1.82E+01,2.79E+01,1.85E+01,2.80E+01,2.75E+00,3.72E+00
465
+ 4.00E+01,-1.81E+01,3.59E+01,1.85E+01,3.60E+01,2.98E+00,3.58E+00
466
+ 4.00E+01,-1.80E+01,4.38E+01,1.85E+01,4.40E+01,3.72E+00,3.36E+00
467
+ 4.00E+01,-2.73E+01,-4.47E+01,2.75E+01,-4.40E+01,3.22E+00,3.18E+00
468
+ 4.00E+01,-2.77E+01,-3.67E+01,2.75E+01,-3.60E+01,3.87E+00,3.46E+00
469
+ 4.00E+01,-2.75E+01,-2.88E+01,2.75E+01,-2.80E+01,3.09E+00,3.77E+00
470
+ 4.00E+01,-2.76E+01,-2.09E+01,2.75E+01,-2.00E+01,2.77E+00,3.82E+00
471
+ 4.00E+01,-2.75E+01,-1.29E+01,2.75E+01,-1.20E+01,2.39E+00,3.90E+00
472
+ 4.00E+01,-2.76E+01,-9.77E+00,2.75E+01,-9.00E+00,2.52E+00,4.07E+00
473
+ 4.00E+01,-2.76E+01,-6.72E+00,2.75E+01,-6.00E+00,2.44E+00,4.06E+00
474
+ 4.00E+01,-2.76E+01,-6.33E-01,2.75E+01,0.00E+00,2.86E+00,4.06E+00
475
+ 4.00E+01,-2.77E+01,5.55E+00,2.75E+01,6.00E+00,2.91E+00,4.01E+00
476
+ 4.00E+01,-2.76E+01,8.63E+00,2.75E+01,9.00E+00,2.78E+00,3.94E+00
477
+ 4.00E+01,-2.75E+01,1.17E+01,2.75E+01,1.20E+01,2.55E+00,3.92E+00
478
+ 4.00E+01,-2.74E+01,1.99E+01,2.75E+01,2.00E+01,2.82E+00,3.75E+00
479
+ 4.00E+01,-2.72E+01,2.79E+01,2.75E+01,2.80E+01,2.99E+00,3.63E+00
480
+ 4.00E+01,-2.73E+01,3.58E+01,2.75E+01,3.60E+01,4.06E+00,3.45E+00
481
+ 4.00E+01,-2.70E+01,4.40E+01,2.75E+01,4.40E+01,3.41E+00,3.04E+00
482
+ 4.00E+01,-3.60E+01,-4.44E+01,3.64E+01,-4.40E+01,3.33E+00,2.81E+00
483
+ 4.00E+01,-3.63E+01,-3.65E+01,3.64E+01,-3.60E+01,2.73E+00,3.27E+00
484
+ 4.00E+01,-3.62E+01,-2.86E+01,3.64E+01,-2.80E+01,2.68E+00,3.31E+00
485
+ 4.00E+01,-3.63E+01,-2.07E+01,3.64E+01,-2.00E+01,2.30E+00,3.52E+00
486
+ 4.00E+01,-3.64E+01,-1.27E+01,3.64E+01,-1.20E+01,2.29E+00,3.68E+00
487
+ 4.00E+01,-3.65E+01,-9.63E+00,3.64E+01,-9.00E+00,2.45E+00,3.71E+00
488
+ 4.00E+01,-3.64E+01,-6.60E+00,3.64E+01,-6.00E+00,2.26E+00,3.81E+00
489
+ 4.00E+01,-3.65E+01,-5.64E-01,3.64E+01,0.00E+00,2.24E+00,3.73E+00
490
+ 4.00E+01,-3.65E+01,5.52E+00,3.64E+01,6.00E+00,2.61E+00,3.73E+00
491
+ 4.00E+01,-3.65E+01,8.60E+00,3.64E+01,9.00E+00,2.50E+00,3.59E+00
492
+ 4.00E+01,-3.64E+01,1.17E+01,3.64E+01,1.20E+01,2.22E+00,3.72E+00
493
+ 4.00E+01,-3.64E+01,1.98E+01,3.64E+01,2.00E+01,2.65E+00,3.34E+00
494
+ 4.00E+01,-3.62E+01,2.79E+01,3.64E+01,2.80E+01,2.60E+00,3.45E+00
495
+ 4.00E+01,-3.60E+01,3.57E+01,3.64E+01,3.60E+01,2.98E+00,3.20E+00
496
+ 4.00E+01,-3.57E+01,4.38E+01,3.64E+01,4.40E+01,3.38E+00,2.77E+00
497
+ 4.00E+01,-4.50E+01,-4.41E+01,4.57E+01,-4.40E+01,3.83E+00,2.53E+00
498
+ 4.00E+01,-4.52E+01,-3.63E+01,4.57E+01,-3.60E+01,3.18E+00,2.89E+00
499
+ 4.00E+01,-4.56E+01,-2.84E+01,4.57E+01,-2.80E+01,3.23E+00,2.97E+00
500
+ 4.00E+01,-4.56E+01,-2.03E+01,4.57E+01,-2.00E+01,3.09E+00,3.25E+00
501
+ 4.00E+01,-4.56E+01,-1.25E+01,4.57E+01,-1.20E+01,2.78E+00,3.24E+00
502
+ 4.00E+01,-4.56E+01,-9.46E+00,4.57E+01,-9.00E+00,2.66E+00,3.35E+00
503
+ 4.00E+01,-4.57E+01,-6.44E+00,4.57E+01,-6.00E+00,2.87E+00,3.46E+00
504
+ 4.00E+01,-4.58E+01,-4.71E-01,4.57E+01,0.00E+00,2.60E+00,3.47E+00
505
+ 4.00E+01,-4.57E+01,5.57E+00,4.57E+01,6.00E+00,2.91E+00,3.37E+00
506
+ 4.00E+01,-4.56E+01,8.52E+00,4.57E+01,9.00E+00,2.87E+00,3.36E+00
507
+ 4.00E+01,-4.56E+01,1.15E+01,4.57E+01,1.20E+01,2.56E+00,3.42E+00
508
+ 4.00E+01,-4.55E+01,1.95E+01,4.57E+01,2.00E+01,3.30E+00,3.22E+00
509
+ 4.00E+01,-4.55E+01,2.75E+01,4.57E+01,2.80E+01,3.57E+00,3.22E+00
510
+ 4.00E+01,-4.51E+01,3.57E+01,4.57E+01,3.60E+01,3.25E+00,2.88E+00
511
+ 4.00E+01,-4.48E+01,4.35E+01,4.57E+01,4.40E+01,3.80E+00,2.55E+00
512
+ 4.00E+01,-5.37E+01,-4.40E+01,5.49E+01,-4.40E+01,5.08E+00,2.63E+00
513
+ 4.00E+01,-5.42E+01,-3.61E+01,5.49E+01,-3.60E+01,3.91E+00,2.54E+00
514
+ 4.00E+01,-5.44E+01,-2.82E+01,5.49E+01,-2.80E+01,3.39E+00,2.58E+00
515
+ 4.00E+01,-5.46E+01,-2.01E+01,5.49E+01,-2.00E+01,3.25E+00,2.73E+00
516
+ 4.00E+01,-5.47E+01,-1.23E+01,5.49E+01,-1.20E+01,2.95E+00,2.86E+00
517
+ 4.00E+01,-5.45E+01,-9.28E+00,5.49E+01,-9.00E+00,2.86E+00,2.79E+00
518
+ 4.00E+01,-5.45E+01,-6.34E+00,5.49E+01,-6.00E+00,2.81E+00,2.87E+00
519
+ 4.00E+01,-5.46E+01,-3.75E-01,5.49E+01,0.00E+00,2.96E+00,2.95E+00
520
+ 4.00E+01,-5.46E+01,5.64E+00,5.49E+01,6.00E+00,2.90E+00,2.86E+00
521
+ 4.00E+01,-5.46E+01,8.60E+00,5.49E+01,9.00E+00,2.92E+00,2.80E+00
522
+ 4.00E+01,-5.44E+01,1.16E+01,5.49E+01,1.20E+01,2.89E+00,2.85E+00
523
+ 4.00E+01,-5.43E+01,1.93E+01,5.49E+01,2.00E+01,3.21E+00,2.68E+00
524
+ 4.00E+01,-5.41E+01,2.75E+01,5.49E+01,2.80E+01,3.44E+00,2.70E+00
525
+ 4.00E+01,-5.39E+01,3.55E+01,5.49E+01,3.60E+01,4.00E+00,2.50E+00
526
+ 4.00E+01,-5.34E+01,4.34E+01,5.49E+01,4.40E+01,5.20E+00,2.36E+00