imap-processing 0.6.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.
Files changed (398) hide show
  1. imap_processing/__init__.py +34 -0
  2. imap_processing/_version.py +3 -0
  3. imap_processing/ccsds/__init__.py +0 -0
  4. imap_processing/ccsds/ccsds_data.py +55 -0
  5. imap_processing/ccsds/excel_to_xtce.py +477 -0
  6. imap_processing/cdf/__init__.py +0 -0
  7. imap_processing/cdf/cdf_attribute_manager.py +322 -0
  8. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +212 -0
  9. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +1358 -0
  10. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +391 -0
  11. imap_processing/cdf/config/imap_constant_attrs.yaml +33 -0
  12. imap_processing/cdf/config/imap_default_global_cdf_attrs.yaml +17 -0
  13. imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +41 -0
  14. imap_processing/cdf/config/imap_glows_l1a_variable_attrs.yaml +499 -0
  15. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +334 -0
  16. imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +51 -0
  17. imap_processing/cdf/config/imap_hi_variable_attrs.yaml +435 -0
  18. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +27 -0
  19. imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +493 -0
  20. imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +564 -0
  21. imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +24 -0
  22. imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +426 -0
  23. imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +90 -0
  24. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +487 -0
  25. imap_processing/cdf/config/imap_lo_l1b_variable_attrs.yaml +121 -0
  26. imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +179 -0
  27. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +97 -0
  28. imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +201 -0
  29. imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +33 -0
  30. imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +137 -0
  31. imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +24 -0
  32. imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +234 -0
  33. imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +273 -0
  34. imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +100 -0
  35. imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +52 -0
  36. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +297 -0
  37. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +121 -0
  38. imap_processing/cdf/config/shared/default_global_cdf_attrs_schema.yaml +246 -0
  39. imap_processing/cdf/config/shared/default_variable_cdf_attrs_schema.yaml +466 -0
  40. imap_processing/cdf/imap_cdf_manager.py +64 -0
  41. imap_processing/cdf/utils.py +147 -0
  42. imap_processing/cli.py +863 -0
  43. imap_processing/codice/__init__.py +1 -0
  44. imap_processing/codice/codice_l0.py +54 -0
  45. imap_processing/codice/codice_l1a.py +558 -0
  46. imap_processing/codice/codice_l1b.py +194 -0
  47. imap_processing/codice/constants.py +986 -0
  48. imap_processing/codice/data/esa_sweep_values.csv +257 -0
  49. imap_processing/codice/data/lo_stepping_values.csv +129 -0
  50. imap_processing/codice/decompress.py +142 -0
  51. imap_processing/codice/packet_definitions/P_COD_NHK.xml +618 -0
  52. imap_processing/codice/packet_definitions/codice_packet_definition.xml +5073 -0
  53. imap_processing/codice/utils.py +95 -0
  54. imap_processing/decom.py +40 -0
  55. imap_processing/glows/__init__.py +1 -0
  56. imap_processing/glows/ancillary/l1b_conversion_table_v001.json +42 -0
  57. imap_processing/glows/l0/__init__.py +0 -0
  58. imap_processing/glows/l0/decom_glows.py +91 -0
  59. imap_processing/glows/l0/glows_l0_data.py +194 -0
  60. imap_processing/glows/l1a/glows_l1a.py +424 -0
  61. imap_processing/glows/l1a/glows_l1a_data.py +555 -0
  62. imap_processing/glows/l1b/glows_l1b.py +270 -0
  63. imap_processing/glows/l1b/glows_l1b_data.py +583 -0
  64. imap_processing/glows/packet_definitions/GLX_COMBINED.xml +254 -0
  65. imap_processing/glows/packet_definitions/P_GLX_TMSCDE.xml +97 -0
  66. imap_processing/glows/packet_definitions/P_GLX_TMSCHIST.xml +215 -0
  67. imap_processing/glows/utils/__init__.py +0 -0
  68. imap_processing/glows/utils/constants.py +105 -0
  69. imap_processing/hi/__init__.py +1 -0
  70. imap_processing/hi/l0/__init__.py +0 -0
  71. imap_processing/hi/l0/decom_hi.py +24 -0
  72. imap_processing/hi/l1a/__init__.py +0 -0
  73. imap_processing/hi/l1a/hi_l1a.py +73 -0
  74. imap_processing/hi/l1a/histogram.py +142 -0
  75. imap_processing/hi/l1a/housekeeping.py +27 -0
  76. imap_processing/hi/l1a/science_direct_event.py +341 -0
  77. imap_processing/hi/l1b/__init__.py +0 -0
  78. imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +154 -0
  79. imap_processing/hi/l1b/hi_l1b.py +127 -0
  80. imap_processing/hi/l1c/__init__.py +0 -0
  81. imap_processing/hi/l1c/hi_l1c.py +228 -0
  82. imap_processing/hi/packet_definitions/__init__.py +0 -0
  83. imap_processing/hi/packet_definitions/hi_packet_definition.xml +482 -0
  84. imap_processing/hi/utils.py +27 -0
  85. imap_processing/hit/__init__.py +1 -0
  86. imap_processing/hit/l0/__init__.py +0 -0
  87. imap_processing/hit/l0/data_classes/housekeeping.py +240 -0
  88. imap_processing/hit/l0/data_classes/science_packet.py +259 -0
  89. imap_processing/hit/l0/decom_hit.py +467 -0
  90. imap_processing/hit/l0/utils/hit_base.py +57 -0
  91. imap_processing/hit/l1a/__init__.py +0 -0
  92. imap_processing/hit/l1a/hit_l1a.py +254 -0
  93. imap_processing/hit/l1b/hit_l1b.py +179 -0
  94. imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1276 -0
  95. imap_processing/ialirt/__init__.py +0 -0
  96. imap_processing/ialirt/l0/__init__.py +0 -0
  97. imap_processing/ialirt/l0/process_hit.py +220 -0
  98. imap_processing/ialirt/packet_definitions/__init__.py +0 -0
  99. imap_processing/ialirt/packet_definitions/ialirt.xml +778 -0
  100. imap_processing/ialirt/packet_definitions/ialirt_hit.xml +186 -0
  101. imap_processing/idex/__init__.py +2 -0
  102. imap_processing/idex/idex_constants.py +27 -0
  103. imap_processing/idex/idex_l0.py +31 -0
  104. imap_processing/idex/idex_l1a.py +631 -0
  105. imap_processing/idex/packet_definitions/idex_packet_definition.xml +3162 -0
  106. imap_processing/lo/__init__.py +1 -0
  107. imap_processing/lo/l0/__init__.py +0 -0
  108. imap_processing/lo/l0/data_classes/science_direct_events.py +215 -0
  109. imap_processing/lo/l0/data_classes/star_sensor.py +98 -0
  110. imap_processing/lo/l0/decompression_tables/12_to_16_bit.csv +4097 -0
  111. imap_processing/lo/l0/decompression_tables/8_to_12_bit.csv +257 -0
  112. imap_processing/lo/l0/decompression_tables/8_to_16_bit.csv +257 -0
  113. imap_processing/lo/l0/decompression_tables/decompression_tables.py +75 -0
  114. imap_processing/lo/l0/lo_apid.py +15 -0
  115. imap_processing/lo/l0/lo_science.py +150 -0
  116. imap_processing/lo/l0/utils/binary_string.py +59 -0
  117. imap_processing/lo/l0/utils/bit_decompression.py +62 -0
  118. imap_processing/lo/l0/utils/lo_base.py +57 -0
  119. imap_processing/lo/l1a/__init__.py +0 -0
  120. imap_processing/lo/l1a/lo_l1a.py +157 -0
  121. imap_processing/lo/l1b/lo_l1b.py +160 -0
  122. imap_processing/lo/l1c/lo_l1c.py +180 -0
  123. imap_processing/lo/packet_definitions/lo_xtce.xml +3541 -0
  124. imap_processing/mag/__init__.py +2 -0
  125. imap_processing/mag/constants.py +108 -0
  126. imap_processing/mag/l0/decom_mag.py +170 -0
  127. imap_processing/mag/l0/mag_l0_data.py +118 -0
  128. imap_processing/mag/l1a/mag_l1a.py +317 -0
  129. imap_processing/mag/l1a/mag_l1a_data.py +1007 -0
  130. imap_processing/mag/l1b/__init__.py +0 -0
  131. imap_processing/mag/l1b/imap_calibration_mag_20240229_v01.cdf +0 -0
  132. imap_processing/mag/l1b/mag_l1b.py +125 -0
  133. imap_processing/mag/l1c/mag_l1c.py +57 -0
  134. imap_processing/mag/packet_definitions/MAG_SCI_COMBINED.xml +235 -0
  135. imap_processing/quality_flags.py +91 -0
  136. imap_processing/spice/__init__.py +1 -0
  137. imap_processing/spice/geometry.py +322 -0
  138. imap_processing/spice/kernels.py +459 -0
  139. imap_processing/spice/time.py +72 -0
  140. imap_processing/swapi/__init__.py +1 -0
  141. imap_processing/swapi/l1/__init__.py +0 -0
  142. imap_processing/swapi/l1/swapi_l1.py +685 -0
  143. imap_processing/swapi/l2/__init__.py +0 -0
  144. imap_processing/swapi/l2/swapi_l2.py +107 -0
  145. imap_processing/swapi/packet_definitions/__init__.py +0 -0
  146. imap_processing/swapi/packet_definitions/swapi_packet_definition.xml +708 -0
  147. imap_processing/swapi/swapi_utils.py +25 -0
  148. imap_processing/swe/__init__.py +1 -0
  149. imap_processing/swe/l1a/__init__.py +0 -0
  150. imap_processing/swe/l1a/swe_l1a.py +48 -0
  151. imap_processing/swe/l1a/swe_science.py +223 -0
  152. imap_processing/swe/l1b/engineering_unit_convert_table.csv +65 -0
  153. imap_processing/swe/l1b/swe_esa_lookup_table.csv +1441 -0
  154. imap_processing/swe/l1b/swe_l1b.py +49 -0
  155. imap_processing/swe/l1b/swe_l1b_science.py +557 -0
  156. imap_processing/swe/packet_definitions/__init__.py +0 -0
  157. imap_processing/swe/packet_definitions/swe_packet_definition.xml +303 -0
  158. imap_processing/swe/utils/__init__.py +0 -0
  159. imap_processing/swe/utils/swe_utils.py +9 -0
  160. imap_processing/tests/__init__.py +0 -0
  161. imap_processing/tests/ccsds/test_data/expected_output.xml +171 -0
  162. imap_processing/tests/ccsds/test_excel_to_xtce.py +285 -0
  163. imap_processing/tests/cdf/__init__.py +0 -0
  164. imap_processing/tests/cdf/imap_default_global_cdf_attrs.yaml +8 -0
  165. imap_processing/tests/cdf/shared/default_global_cdf_attrs_schema.yaml +246 -0
  166. imap_processing/tests/cdf/shared/default_variable_cdf_attrs_schema.yaml +466 -0
  167. imap_processing/tests/cdf/test_cdf_attribute_manager.py +353 -0
  168. imap_processing/tests/cdf/test_data/imap_default_global_test_cdf_attrs.yaml +7 -0
  169. imap_processing/tests/cdf/test_data/imap_instrument1_global_cdf_attrs.yaml +14 -0
  170. imap_processing/tests/cdf/test_data/imap_instrument1_level1_variable_attrs.yaml +23 -0
  171. imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +23 -0
  172. imap_processing/tests/cdf/test_data/imap_instrument2_level2_variable_attrs.yaml +30 -0
  173. imap_processing/tests/cdf/test_data/imap_test_global.yaml +26 -0
  174. imap_processing/tests/cdf/test_data/imap_test_variable.yaml +41 -0
  175. imap_processing/tests/cdf/test_imap_cdf_manager.py +62 -0
  176. imap_processing/tests/cdf/test_utils.py +109 -0
  177. imap_processing/tests/codice/__init__.py +0 -0
  178. imap_processing/tests/codice/conftest.py +56 -0
  179. imap_processing/tests/codice/data/eu_unit_lookup_table.csv +101 -0
  180. imap_processing/tests/codice/data/idle_export_eu.COD_NHK_20230822_122700 2.csv +100 -0
  181. imap_processing/tests/codice/data/idle_export_raw.COD_NHK_20230822_122700.csv +100 -0
  182. imap_processing/tests/codice/data/imap_codice_l0_hi-counters-aggregated_20240429_v001.pkts +0 -0
  183. imap_processing/tests/codice/data/imap_codice_l0_hi-counters-singles_20240429_v001.pkts +0 -0
  184. imap_processing/tests/codice/data/imap_codice_l0_hi-omni_20240429_v001.pkts +0 -0
  185. imap_processing/tests/codice/data/imap_codice_l0_hi-pha_20240429_v001.pkts +0 -0
  186. imap_processing/tests/codice/data/imap_codice_l0_hi-sectored_20240429_v001.pkts +0 -0
  187. imap_processing/tests/codice/data/imap_codice_l0_hskp_20100101_v001.pkts +0 -0
  188. imap_processing/tests/codice/data/imap_codice_l0_lo-counters-aggregated_20240429_v001.pkts +0 -0
  189. imap_processing/tests/codice/data/imap_codice_l0_lo-counters-singles_20240429_v001.pkts +0 -0
  190. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-angular_20240429_v001.pkts +0 -0
  191. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-priority_20240429_v001.pkts +0 -0
  192. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-species_20240429_v001.pkts +0 -0
  193. imap_processing/tests/codice/data/imap_codice_l0_lo-pha_20240429_v001.pkts +0 -0
  194. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-angular_20240429_v001.pkts +0 -0
  195. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-priority_20240429_v001.pkts +0 -0
  196. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-species_20240429_v001.pkts +0 -0
  197. imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-aggregated_20240429_v001.cdf +0 -0
  198. imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-singles_20240429_v001.cdf +0 -0
  199. imap_processing/tests/codice/data/imap_codice_l1a_hi-omni_20240429_v001.cdf +0 -0
  200. imap_processing/tests/codice/data/imap_codice_l1a_hi-sectored_20240429_v001.cdf +0 -0
  201. imap_processing/tests/codice/data/imap_codice_l1a_hskp_20100101_v001.cdf +0 -0
  202. imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-aggregated_20240429_v001.cdf +0 -0
  203. imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-singles_20240429_v001.cdf +0 -0
  204. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-angular_20240429_v001.cdf +0 -0
  205. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-priority_20240429_v001.cdf +0 -0
  206. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-species_20240429_v001.cdf +0 -0
  207. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-angular_20240429_v001.cdf +0 -0
  208. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-priority_20240429_v001.cdf +0 -0
  209. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-species_20240429_v001.cdf +0 -0
  210. imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-aggregated_20240429_v001.cdf +0 -0
  211. imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-singles_20240429_v001.cdf +0 -0
  212. imap_processing/tests/codice/data/imap_codice_l1b_hi-omni_20240429_v001.cdf +0 -0
  213. imap_processing/tests/codice/data/imap_codice_l1b_hi-sectored_20240429_v001.cdf +0 -0
  214. imap_processing/tests/codice/data/imap_codice_l1b_hskp_20100101_v001.cdf +0 -0
  215. imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-aggregated_20240429_v001.cdf +0 -0
  216. imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-singles_20240429_v001.cdf +0 -0
  217. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-angular_20240429_v001.cdf +0 -0
  218. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-priority_20240429_v001.cdf +0 -0
  219. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-species_20240429_v001.cdf +0 -0
  220. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-angular_20240429_v001.cdf +0 -0
  221. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-priority_20240429_v001.cdf +0 -0
  222. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-species_20240429_v001.cdf +0 -0
  223. imap_processing/tests/codice/test_codice_l0.py +144 -0
  224. imap_processing/tests/codice/test_codice_l1a.py +187 -0
  225. imap_processing/tests/codice/test_codice_l1b.py +60 -0
  226. imap_processing/tests/codice/test_decompress.py +50 -0
  227. imap_processing/tests/conftest.py +372 -0
  228. imap_processing/tests/glows/direct_events_validation_data_l1a.csv +5704 -0
  229. imap_processing/tests/glows/glows_test_packet_20110921_v01.pkts +0 -0
  230. imap_processing/tests/glows/test_glows_decom.py +133 -0
  231. imap_processing/tests/glows/test_glows_l1a_cdf.py +85 -0
  232. imap_processing/tests/glows/test_glows_l1a_data.py +510 -0
  233. imap_processing/tests/glows/test_glows_l1b.py +348 -0
  234. imap_processing/tests/glows/test_glows_l1b_data.py +70 -0
  235. imap_processing/tests/hi/__init__.py +0 -0
  236. imap_processing/tests/hi/conftest.py +133 -0
  237. imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.bin +0 -0
  238. imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.csv +201 -0
  239. imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_CNT.bin +0 -0
  240. imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_DE.bin +0 -0
  241. imap_processing/tests/hi/test_data/l0/README.txt +54 -0
  242. imap_processing/tests/hi/test_decom.py +55 -0
  243. imap_processing/tests/hi/test_hi_l1b.py +31 -0
  244. imap_processing/tests/hi/test_hi_l1c.py +69 -0
  245. imap_processing/tests/hi/test_l1a.py +96 -0
  246. imap_processing/tests/hi/test_l1a_sci_de.py +72 -0
  247. imap_processing/tests/hi/test_utils.py +15 -0
  248. imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1251.pkts +0 -0
  249. imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1252.pkts +0 -0
  250. imap_processing/tests/hit/__init__.py +0 -0
  251. imap_processing/tests/hit/test_data/imap_hit_l0_hk_20100105_v001.pkts +0 -0
  252. imap_processing/tests/hit/test_data/sci_sample.ccsds +0 -0
  253. imap_processing/tests/hit/test_hit_decom.py +230 -0
  254. imap_processing/tests/hit/test_hit_l1a.py +224 -0
  255. imap_processing/tests/hit/test_hit_l1b.py +52 -0
  256. imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +88 -0
  257. imap_processing/tests/ialirt/__init__.py +0 -0
  258. imap_processing/tests/ialirt/test_data/l0/IALiRT Raw Packet Telemetry.txt +33 -0
  259. imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.ccsds +0 -0
  260. imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.csv +1001 -0
  261. imap_processing/tests/ialirt/unit/__init__.py +0 -0
  262. imap_processing/tests/ialirt/unit/test_decom_ialirt.py +94 -0
  263. imap_processing/tests/ialirt/unit/test_process_hit.py +226 -0
  264. imap_processing/tests/idex/__init__.py +0 -0
  265. imap_processing/tests/idex/conftest.py +22 -0
  266. imap_processing/tests/idex/imap_idex_l0_raw_20230725_v001.pkts +0 -0
  267. imap_processing/tests/idex/impact_14_tof_high_data.txt +8189 -0
  268. imap_processing/tests/idex/test_idex_l0.py +45 -0
  269. imap_processing/tests/idex/test_idex_l1a.py +91 -0
  270. imap_processing/tests/lo/__init__.py +0 -0
  271. imap_processing/tests/lo/test_binary_string.py +21 -0
  272. imap_processing/tests/lo/test_bit_decompression.py +39 -0
  273. imap_processing/tests/lo/test_cdfs/imap_lo_l0_raw_20240627_v001.pkts +0 -0
  274. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20100101_v001.cdf +0 -0
  275. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20100101_v001.cdf +0 -0
  276. imap_processing/tests/lo/test_cdfs/imap_lo_l1b_de_20100101_v001.cdf +0 -0
  277. imap_processing/tests/lo/test_lo_l1a.py +66 -0
  278. imap_processing/tests/lo/test_lo_l1b.py +74 -0
  279. imap_processing/tests/lo/test_lo_l1c.py +66 -0
  280. imap_processing/tests/lo/test_science_counts.py +41 -0
  281. imap_processing/tests/lo/test_science_direct_events.py +209 -0
  282. imap_processing/tests/lo/test_star_sensor.py +35 -0
  283. imap_processing/tests/mag/imap_mag_l1a_burst-magi_20231025_v001.cdf +0 -0
  284. imap_processing/tests/mag/mag_l0_test_data.pkts +0 -0
  285. imap_processing/tests/mag/mag_l0_test_output.csv +37 -0
  286. imap_processing/tests/mag/mag_l1_test_data.pkts +0 -0
  287. imap_processing/tests/mag/mag_l1a_test_output.csv +97 -0
  288. imap_processing/tests/mag/test_mag_decom.py +117 -0
  289. imap_processing/tests/mag/test_mag_l1a.py +856 -0
  290. imap_processing/tests/mag/test_mag_l1b.py +77 -0
  291. imap_processing/tests/mag/test_mag_l1c.py +40 -0
  292. imap_processing/tests/spice/__init__.py +0 -0
  293. imap_processing/tests/spice/test_data/imap_ena_sim_metakernel.template +4 -0
  294. imap_processing/tests/spice/test_data/imap_science_0001.tf +171 -0
  295. imap_processing/tests/spice/test_data/imap_sclk_0000.tsc +156 -0
  296. imap_processing/tests/spice/test_data/imap_sim_ck_2hr_2secsampling_with_nutation.bc +0 -0
  297. imap_processing/tests/spice/test_data/imap_simple_metakernel.template +3 -0
  298. imap_processing/tests/spice/test_data/imap_spk_demo.bsp +0 -0
  299. imap_processing/tests/spice/test_data/imap_wkcp.tf +1806 -0
  300. imap_processing/tests/spice/test_data/naif0012.tls +150 -0
  301. imap_processing/tests/spice/test_data/sim_1yr_imap_attitude.bc +0 -0
  302. imap_processing/tests/spice/test_data/sim_1yr_imap_pointing_frame.bc +0 -0
  303. imap_processing/tests/spice/test_geometry.py +214 -0
  304. imap_processing/tests/spice/test_kernels.py +272 -0
  305. imap_processing/tests/spice/test_time.py +35 -0
  306. imap_processing/tests/swapi/__init__.py +0 -0
  307. imap_processing/tests/swapi/conftest.py +16 -0
  308. imap_processing/tests/swapi/l0_data/__init__.py +0 -0
  309. imap_processing/tests/swapi/l0_data/imap_swapi_l0_raw_20231012_v001.pkts +0 -0
  310. imap_processing/tests/swapi/l0_validation_data/__init__.py +0 -0
  311. imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_AUT_20231012_125245.csv +124 -0
  312. imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_HK_20231012_125245.csv +98 -0
  313. imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_MG_20231012_125245.csv +9 -0
  314. imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_SCI_20231012_125245.csv +72 -0
  315. imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_AUT_20231012_125245.csv +124 -0
  316. imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_HK_20231012_125245.csv +98 -0
  317. imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_MG_20231012_125245.csv +9 -0
  318. imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_SCI_20231012_125245.csv +72 -0
  319. imap_processing/tests/swapi/test_swapi_decom.py +135 -0
  320. imap_processing/tests/swapi/test_swapi_l1.py +354 -0
  321. imap_processing/tests/swapi/test_swapi_l2.py +21 -0
  322. imap_processing/tests/swe/__init__.py +0 -0
  323. imap_processing/tests/swe/conftest.py +35 -0
  324. imap_processing/tests/swe/decompressed/20230927173238_4th_quarter_decompressed.csv +181 -0
  325. imap_processing/tests/swe/decompressed/20230927173253_1st_quarter_decompressed.csv +181 -0
  326. imap_processing/tests/swe/decompressed/20230927173308_2nd_quarter_decompressed.csv +181 -0
  327. imap_processing/tests/swe/decompressed/20230927173323_3rd_quarter_decompressed.csv +181 -0
  328. imap_processing/tests/swe/l0_data/2024051010_SWE_SCIENCE_packet.bin +0 -0
  329. imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_SCIENCE_20240510_092742.csv +544 -0
  330. imap_processing/tests/swe/l0_validation_data/idle_export_raw.SWE_SCIENCE_20240510_092742.csv +363 -0
  331. imap_processing/tests/swe/test_swe_l1a.py +12 -0
  332. imap_processing/tests/swe/test_swe_l1a_science.py +129 -0
  333. imap_processing/tests/swe/test_swe_l1b.py +61 -0
  334. imap_processing/tests/swe/test_swe_l1b_science.py +65 -0
  335. imap_processing/tests/test_cli.py +229 -0
  336. imap_processing/tests/test_decom.py +66 -0
  337. imap_processing/tests/test_quality_flags.py +71 -0
  338. imap_processing/tests/test_utils.py +107 -0
  339. imap_processing/tests/ultra/__init__.py +0 -0
  340. imap_processing/tests/ultra/test_data/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
  341. imap_processing/tests/ultra/test_data/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
  342. imap_processing/tests/ultra/test_data/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
  343. imap_processing/tests/ultra/test_data/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
  344. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
  345. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +105 -0
  346. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
  347. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3314 -0
  348. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +702 -0
  349. imap_processing/tests/ultra/unit/__init__.py +0 -0
  350. imap_processing/tests/ultra/unit/conftest.py +210 -0
  351. imap_processing/tests/ultra/unit/test_decom_apid_880.py +98 -0
  352. imap_processing/tests/ultra/unit/test_decom_apid_881.py +50 -0
  353. imap_processing/tests/ultra/unit/test_decom_apid_883.py +44 -0
  354. imap_processing/tests/ultra/unit/test_decom_apid_896.py +104 -0
  355. imap_processing/tests/ultra/unit/test_lookup_utils.py +68 -0
  356. imap_processing/tests/ultra/unit/test_ultra_l1a.py +338 -0
  357. imap_processing/tests/ultra/unit/test_ultra_l1b.py +122 -0
  358. imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +57 -0
  359. imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +342 -0
  360. imap_processing/tests/ultra/unit/test_ultra_l1c.py +104 -0
  361. imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +35 -0
  362. imap_processing/ultra/__init__.py +1 -0
  363. imap_processing/ultra/constants.py +60 -0
  364. imap_processing/ultra/l0/__init__.py +0 -0
  365. imap_processing/ultra/l0/decom_tools.py +281 -0
  366. imap_processing/ultra/l0/decom_ultra.py +278 -0
  367. imap_processing/ultra/l0/ultra_utils.py +326 -0
  368. imap_processing/ultra/l1a/__init__.py +0 -0
  369. imap_processing/ultra/l1a/ultra_l1a.py +319 -0
  370. imap_processing/ultra/l1b/badtimes.py +26 -0
  371. imap_processing/ultra/l1b/cullingmask.py +26 -0
  372. imap_processing/ultra/l1b/de.py +59 -0
  373. imap_processing/ultra/l1b/extendedspin.py +45 -0
  374. imap_processing/ultra/l1b/lookup_utils.py +165 -0
  375. imap_processing/ultra/l1b/ultra_l1b.py +65 -0
  376. imap_processing/ultra/l1b/ultra_l1b_annotated.py +54 -0
  377. imap_processing/ultra/l1b/ultra_l1b_extended.py +764 -0
  378. imap_processing/ultra/l1c/histogram.py +36 -0
  379. imap_processing/ultra/l1c/pset.py +36 -0
  380. imap_processing/ultra/l1c/ultra_l1c.py +52 -0
  381. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +54 -0
  382. imap_processing/ultra/lookup_tables/EgyNorm.mem.csv +32769 -0
  383. imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
  384. imap_processing/ultra/lookup_tables/ultra45_back-pos-luts.csv +4097 -0
  385. imap_processing/ultra/lookup_tables/ultra45_tdc_norm.csv +2050 -0
  386. imap_processing/ultra/lookup_tables/ultra90_back-pos-luts.csv +4097 -0
  387. imap_processing/ultra/lookup_tables/ultra90_tdc_norm.csv +2050 -0
  388. imap_processing/ultra/lookup_tables/yadjust.csv +257 -0
  389. imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +547 -0
  390. imap_processing/ultra/packet_definitions/__init__.py +0 -0
  391. imap_processing/ultra/utils/__init__.py +0 -0
  392. imap_processing/ultra/utils/ultra_l1_utils.py +50 -0
  393. imap_processing/utils.py +413 -0
  394. imap_processing-0.6.0.dist-info/LICENSE +21 -0
  395. imap_processing-0.6.0.dist-info/METADATA +107 -0
  396. imap_processing-0.6.0.dist-info/RECORD +398 -0
  397. imap_processing-0.6.0.dist-info/WHEEL +4 -0
  398. imap_processing-0.6.0.dist-info/entry_points.txt +4 -0
@@ -0,0 +1,4097 @@
1
+ compressed,raw
2
+ 0,0
3
+ 1,1
4
+ 2,2
5
+ 3,3
6
+ 4,4
7
+ 5,5
8
+ 6,6
9
+ 7,7
10
+ 8,8
11
+ 9,9
12
+ 10,10
13
+ 11,11
14
+ 12,12
15
+ 13,13
16
+ 14,14
17
+ 15,15
18
+ 16,16
19
+ 17,17
20
+ 18,18
21
+ 19,19
22
+ 20,20
23
+ 21,21
24
+ 22,22
25
+ 23,23
26
+ 24,24
27
+ 25,25
28
+ 26,26
29
+ 27,27
30
+ 28,28
31
+ 29,29
32
+ 30,30
33
+ 31,31
34
+ 32,32
35
+ 33,33
36
+ 34,34
37
+ 35,35
38
+ 36,36
39
+ 37,37
40
+ 38,38
41
+ 39,39
42
+ 40,40
43
+ 41,41
44
+ 42,42
45
+ 43,43
46
+ 44,44
47
+ 45,45
48
+ 46,46
49
+ 47,47
50
+ 48,48
51
+ 49,49
52
+ 50,50
53
+ 51,51
54
+ 52,52
55
+ 53,53
56
+ 54,54
57
+ 55,55
58
+ 56,56
59
+ 57,57
60
+ 58,58
61
+ 59,59
62
+ 60,60
63
+ 61,61
64
+ 62,62
65
+ 63,63
66
+ 64,64
67
+ 65,65
68
+ 66,66
69
+ 67,67
70
+ 68,68
71
+ 69,69
72
+ 70,70
73
+ 71,71
74
+ 72,72
75
+ 73,73
76
+ 74,74
77
+ 75,75
78
+ 76,76
79
+ 77,77
80
+ 78,78
81
+ 79,79
82
+ 80,80
83
+ 81,81
84
+ 82,82
85
+ 83,83
86
+ 84,84
87
+ 85,85
88
+ 86,86
89
+ 87,87
90
+ 88,88
91
+ 89,89
92
+ 90,90
93
+ 91,91
94
+ 92,92
95
+ 93,93
96
+ 94,94
97
+ 95,95
98
+ 96,96
99
+ 97,97
100
+ 98,98
101
+ 99,99
102
+ 100,100
103
+ 101,101
104
+ 102,102
105
+ 103,103
106
+ 104,104
107
+ 105,105
108
+ 106,106
109
+ 107,107
110
+ 108,108
111
+ 109,109
112
+ 110,110
113
+ 111,111
114
+ 112,112
115
+ 113,113
116
+ 114,114
117
+ 115,115
118
+ 116,116
119
+ 117,117
120
+ 118,118
121
+ 119,119
122
+ 120,120
123
+ 121,121
124
+ 122,122
125
+ 123,123
126
+ 124,124
127
+ 125,125
128
+ 126,126
129
+ 127,127
130
+ 128,128
131
+ 129,129
132
+ 130,130
133
+ 131,131
134
+ 132,132
135
+ 133,133
136
+ 134,134
137
+ 135,135
138
+ 136,136
139
+ 137,137
140
+ 138,138
141
+ 139,139
142
+ 140,140
143
+ 141,141
144
+ 142,142
145
+ 143,143
146
+ 144,144
147
+ 145,145
148
+ 146,146
149
+ 147,147
150
+ 148,148
151
+ 149,149
152
+ 150,150
153
+ 151,151
154
+ 152,152
155
+ 153,153
156
+ 154,154
157
+ 155,155
158
+ 156,156
159
+ 157,157
160
+ 158,158
161
+ 159,159
162
+ 160,160
163
+ 161,161
164
+ 162,162
165
+ 163,163
166
+ 164,164
167
+ 165,165
168
+ 166,166
169
+ 167,167
170
+ 168,168
171
+ 169,169
172
+ 170,170
173
+ 171,171
174
+ 172,172
175
+ 173,173
176
+ 174,174
177
+ 175,175
178
+ 176,176
179
+ 177,177
180
+ 178,178
181
+ 179,179
182
+ 180,180
183
+ 181,181
184
+ 182,182
185
+ 183,183
186
+ 184,184
187
+ 185,185
188
+ 186,186
189
+ 187,187
190
+ 188,188
191
+ 189,189
192
+ 190,190
193
+ 191,191
194
+ 192,192
195
+ 193,193
196
+ 194,194
197
+ 195,195
198
+ 196,196
199
+ 197,197
200
+ 198,198
201
+ 199,199
202
+ 200,200
203
+ 201,201
204
+ 202,202
205
+ 203,203
206
+ 204,204
207
+ 205,205
208
+ 206,206
209
+ 207,207
210
+ 208,208
211
+ 209,209
212
+ 210,210
213
+ 211,211
214
+ 212,212
215
+ 213,213
216
+ 214,214
217
+ 215,215
218
+ 216,216
219
+ 217,217
220
+ 218,218
221
+ 219,219
222
+ 220,220
223
+ 221,221
224
+ 222,222
225
+ 223,223
226
+ 224,224
227
+ 225,225
228
+ 226,226
229
+ 227,227
230
+ 228,228
231
+ 229,229
232
+ 230,230
233
+ 231,231
234
+ 232,232
235
+ 233,233
236
+ 234,234
237
+ 235,235
238
+ 236,236
239
+ 237,237
240
+ 238,238
241
+ 239,239
242
+ 240,240
243
+ 241,241
244
+ 242,242
245
+ 243,243
246
+ 244,244
247
+ 245,245
248
+ 246,246
249
+ 247,247
250
+ 248,248
251
+ 249,249
252
+ 250,250
253
+ 251,251
254
+ 252,252
255
+ 253,253
256
+ 254,254
257
+ 255,255
258
+ 256,256
259
+ 257,257
260
+ 258,258
261
+ 259,259
262
+ 260,260
263
+ 261,261
264
+ 262,262
265
+ 263,263
266
+ 264,264
267
+ 265,265
268
+ 266,266
269
+ 267,267
270
+ 268,268
271
+ 269,269
272
+ 270,270
273
+ 271,271
274
+ 272,272
275
+ 273,273
276
+ 274,274
277
+ 275,275
278
+ 276,276
279
+ 277,277
280
+ 278,278
281
+ 279,279
282
+ 280,280
283
+ 281,281
284
+ 282,282
285
+ 283,283
286
+ 284,284
287
+ 285,285
288
+ 286,286
289
+ 287,287
290
+ 288,288
291
+ 289,289
292
+ 290,290
293
+ 291,291
294
+ 292,292
295
+ 293,293
296
+ 294,294
297
+ 295,295
298
+ 296,296
299
+ 297,297
300
+ 298,298
301
+ 299,299
302
+ 300,300
303
+ 301,301
304
+ 302,302
305
+ 303,303
306
+ 304,304
307
+ 305,305
308
+ 306,306
309
+ 307,307
310
+ 308,308
311
+ 309,309
312
+ 310,310
313
+ 311,311
314
+ 312,312
315
+ 313,313
316
+ 314,314
317
+ 315,315
318
+ 316,316
319
+ 317,317
320
+ 318,318
321
+ 319,319
322
+ 320,320
323
+ 321,321
324
+ 322,322
325
+ 323,323
326
+ 324,324
327
+ 325,325
328
+ 326,326
329
+ 327,327
330
+ 328,328
331
+ 329,329
332
+ 330,330
333
+ 331,331
334
+ 332,332
335
+ 333,333
336
+ 334,334
337
+ 335,335
338
+ 336,336
339
+ 337,337
340
+ 338,338
341
+ 339,339
342
+ 340,340
343
+ 341,341
344
+ 342,342
345
+ 343,343
346
+ 344,344
347
+ 345,345
348
+ 346,346
349
+ 347,347
350
+ 348,348
351
+ 349,349
352
+ 350,350
353
+ 351,351
354
+ 352,352
355
+ 353,353
356
+ 354,354
357
+ 355,355
358
+ 356,356
359
+ 357,357
360
+ 358,358
361
+ 359,359
362
+ 360,360
363
+ 361,361
364
+ 362,362
365
+ 363,363
366
+ 364,364
367
+ 365,365
368
+ 366,366
369
+ 367,367
370
+ 368,368
371
+ 369,369
372
+ 370,370
373
+ 371,371
374
+ 372,372
375
+ 373,373
376
+ 374,374
377
+ 375,375
378
+ 376,376
379
+ 377,377
380
+ 378,378
381
+ 379,379
382
+ 380,380
383
+ 381,381
384
+ 382,382
385
+ 383,383
386
+ 384,384
387
+ 385,385
388
+ 386,386
389
+ 387,387
390
+ 388,388
391
+ 389,389
392
+ 390,390
393
+ 391,391
394
+ 392,392
395
+ 393,393
396
+ 394,394
397
+ 395,395
398
+ 396,396
399
+ 397,397
400
+ 398,398
401
+ 399,399
402
+ 400,400
403
+ 401,401
404
+ 402,402
405
+ 403,403
406
+ 404,404
407
+ 405,405
408
+ 406,406
409
+ 407,407
410
+ 408,408
411
+ 409,409
412
+ 410,410
413
+ 411,411
414
+ 412,412
415
+ 413,413
416
+ 414,414
417
+ 415,415
418
+ 416,416
419
+ 417,417
420
+ 418,418
421
+ 419,419
422
+ 420,420
423
+ 421,421
424
+ 422,422
425
+ 423,423
426
+ 424,424
427
+ 425,425
428
+ 426,426
429
+ 427,427
430
+ 428,428
431
+ 429,429
432
+ 430,430
433
+ 431,431
434
+ 432,432
435
+ 433,433
436
+ 434,434
437
+ 435,435
438
+ 436,436
439
+ 437,437
440
+ 438,438
441
+ 439,439
442
+ 440,440
443
+ 441,441
444
+ 442,442
445
+ 443,443
446
+ 444,444
447
+ 445,445
448
+ 446,446
449
+ 447,447
450
+ 448,448
451
+ 449,449
452
+ 450,450
453
+ 451,451
454
+ 452,452
455
+ 453,453
456
+ 454,454
457
+ 455,455
458
+ 456,456
459
+ 457,457
460
+ 458,458
461
+ 459,459
462
+ 460,460
463
+ 461,461
464
+ 462,462
465
+ 463,463
466
+ 464,464
467
+ 465,465
468
+ 466,466
469
+ 467,467
470
+ 468,468
471
+ 469,469
472
+ 470,470
473
+ 471,471
474
+ 472,472
475
+ 473,473
476
+ 474,474
477
+ 475,475
478
+ 476,476
479
+ 477,477
480
+ 478,478
481
+ 479,479
482
+ 480,480
483
+ 481,481
484
+ 482,482
485
+ 483,483
486
+ 484,484
487
+ 485,485
488
+ 486,486
489
+ 487,487
490
+ 488,488
491
+ 489,489
492
+ 490,490
493
+ 491,491
494
+ 492,492
495
+ 493,493
496
+ 494,494
497
+ 495,495
498
+ 496,496
499
+ 497,497
500
+ 498,498
501
+ 499,499
502
+ 500,500
503
+ 501,501
504
+ 502,502
505
+ 503,503
506
+ 504,504
507
+ 505,505
508
+ 506,506
509
+ 507,507
510
+ 508,508
511
+ 509,509
512
+ 510,510
513
+ 511,511
514
+ 512,512
515
+ 513,513
516
+ 514,514
517
+ 515,515
518
+ 516,516
519
+ 517,517
520
+ 518,518
521
+ 519,519
522
+ 520,520
523
+ 521,521
524
+ 522,522
525
+ 523,523
526
+ 524,524
527
+ 525,525
528
+ 526,526
529
+ 527,527
530
+ 528,528
531
+ 529,529
532
+ 530,530
533
+ 531,531
534
+ 532,532
535
+ 533,533
536
+ 534,534
537
+ 535,535
538
+ 536,536
539
+ 537,537
540
+ 538,538
541
+ 539,539
542
+ 540,540
543
+ 541,541
544
+ 542,542
545
+ 543,543
546
+ 544,544
547
+ 545,545
548
+ 546,546
549
+ 547,547
550
+ 548,548
551
+ 549,549
552
+ 550,550
553
+ 551,551
554
+ 552,552
555
+ 553,553
556
+ 554,554
557
+ 555,555
558
+ 556,556
559
+ 557,557
560
+ 558,558
561
+ 559,559
562
+ 560,560
563
+ 561,561
564
+ 562,562
565
+ 563,563
566
+ 564,564
567
+ 565,565
568
+ 566,566
569
+ 567,567
570
+ 568,568
571
+ 569,569
572
+ 570,570
573
+ 571,571
574
+ 572,572
575
+ 573,573
576
+ 574,574
577
+ 575,575
578
+ 576,576
579
+ 577,577
580
+ 578,578
581
+ 579,579
582
+ 580,580
583
+ 581,581
584
+ 582,582
585
+ 583,583
586
+ 584,584
587
+ 585,585
588
+ 586,586
589
+ 587,587
590
+ 588,588
591
+ 589,589
592
+ 590,590
593
+ 591,591
594
+ 592,592
595
+ 593,593
596
+ 594,594
597
+ 595,595
598
+ 596,596
599
+ 597,597
600
+ 598,598
601
+ 599,599
602
+ 600,600
603
+ 601,601
604
+ 602,602
605
+ 603,603
606
+ 604,604
607
+ 605,605
608
+ 606,606
609
+ 607,607
610
+ 608,608
611
+ 609,609
612
+ 610,610
613
+ 611,611
614
+ 612,612
615
+ 613,613
616
+ 614,614
617
+ 615,615
618
+ 616,616
619
+ 617,617
620
+ 618,618
621
+ 619,619
622
+ 620,620
623
+ 621,621
624
+ 622,622
625
+ 623,623
626
+ 624,624
627
+ 625,625
628
+ 626,626
629
+ 627,627
630
+ 628,628
631
+ 629,629
632
+ 630,630
633
+ 631,631
634
+ 632,632
635
+ 633,633
636
+ 634,634
637
+ 635,635
638
+ 636,636
639
+ 637,637
640
+ 638,638
641
+ 639,639
642
+ 640,640
643
+ 641,641
644
+ 642,642
645
+ 643,643
646
+ 644,644
647
+ 645,645
648
+ 646,646
649
+ 647,647
650
+ 648,648
651
+ 649,649
652
+ 650,650
653
+ 651,651
654
+ 652,652
655
+ 653,653
656
+ 654,654
657
+ 655,655
658
+ 656,656
659
+ 657,657
660
+ 658,658
661
+ 659,659
662
+ 660,660
663
+ 661,661
664
+ 662,662
665
+ 663,663
666
+ 664,664
667
+ 665,665
668
+ 666,666
669
+ 667,667
670
+ 668,668
671
+ 669,669
672
+ 670,670
673
+ 671,671
674
+ 672,672
675
+ 673,673
676
+ 674,674
677
+ 675,675
678
+ 676,676
679
+ 677,677
680
+ 678,678
681
+ 679,679
682
+ 680,680
683
+ 681,681
684
+ 682,682
685
+ 683,683
686
+ 684,684
687
+ 685,685
688
+ 686,686
689
+ 687,687
690
+ 688,688
691
+ 689,689
692
+ 690,690
693
+ 691,691
694
+ 692,692
695
+ 693,693
696
+ 694,694
697
+ 695,695
698
+ 696,696
699
+ 697,697
700
+ 698,698
701
+ 699,699
702
+ 700,700
703
+ 701,701
704
+ 702,702
705
+ 703,703
706
+ 704,704
707
+ 705,705
708
+ 706,706
709
+ 707,707
710
+ 708,708
711
+ 709,709
712
+ 710,710
713
+ 711,711
714
+ 712,712
715
+ 713,713
716
+ 714,714
717
+ 715,715
718
+ 716,716
719
+ 717,717
720
+ 718,718
721
+ 719,719
722
+ 720,720
723
+ 721,721
724
+ 722,722
725
+ 723,723
726
+ 724,724
727
+ 725,725
728
+ 726,726
729
+ 727,727
730
+ 728,728
731
+ 729,729
732
+ 730,730
733
+ 731,731
734
+ 732,732
735
+ 733,733
736
+ 734,734
737
+ 735,735
738
+ 736,736
739
+ 737,737
740
+ 738,738
741
+ 739,739
742
+ 740,740
743
+ 741,741
744
+ 742,742
745
+ 743,743
746
+ 744,744
747
+ 745,745
748
+ 746,746
749
+ 747,747
750
+ 748,748
751
+ 749,749
752
+ 750,750
753
+ 751,751
754
+ 752,752
755
+ 753,753
756
+ 754,754
757
+ 755,755
758
+ 756,756
759
+ 757,757
760
+ 758,758
761
+ 759,759
762
+ 760,760
763
+ 761,761
764
+ 762,762
765
+ 763,763
766
+ 764,764
767
+ 765,765
768
+ 766,766
769
+ 767,767
770
+ 768,768
771
+ 769,769
772
+ 770,770
773
+ 771,771
774
+ 772,772
775
+ 773,773
776
+ 774,774
777
+ 775,775
778
+ 776,776
779
+ 777,777
780
+ 778,778
781
+ 779,779
782
+ 780,780
783
+ 781,781
784
+ 782,782
785
+ 783,783
786
+ 784,784
787
+ 785,785
788
+ 786,786
789
+ 787,787
790
+ 788,788
791
+ 789,789
792
+ 790,790
793
+ 791,791
794
+ 792,792
795
+ 793,793
796
+ 794,794
797
+ 795,795
798
+ 796,796
799
+ 797,797
800
+ 798,798
801
+ 799,799
802
+ 800,800
803
+ 801,801
804
+ 802,802
805
+ 803,803
806
+ 804,804
807
+ 805,805
808
+ 806,806
809
+ 807,807
810
+ 808,808
811
+ 809,809
812
+ 810,810
813
+ 811,811
814
+ 812,812
815
+ 813,813
816
+ 814,814
817
+ 815,815
818
+ 816,816
819
+ 817,817
820
+ 818,818
821
+ 819,819
822
+ 820,820
823
+ 821,821
824
+ 822,822
825
+ 823,823
826
+ 824,824
827
+ 825,825
828
+ 826,826
829
+ 827,827
830
+ 828,828
831
+ 829,829
832
+ 830,830
833
+ 831,831
834
+ 832,832
835
+ 833,833
836
+ 834,834
837
+ 835,835
838
+ 836,836
839
+ 837,837
840
+ 838,838
841
+ 839,839
842
+ 840,840
843
+ 841,841
844
+ 842,842
845
+ 843,843
846
+ 844,844
847
+ 845,845
848
+ 846,846
849
+ 847,847
850
+ 848,848
851
+ 849,849
852
+ 850,850
853
+ 851,851
854
+ 852,852
855
+ 853,853
856
+ 854,854
857
+ 855,855
858
+ 856,856
859
+ 857,857
860
+ 858,858
861
+ 859,859
862
+ 860,860
863
+ 861,861
864
+ 862,862
865
+ 863,863
866
+ 864,864
867
+ 865,865
868
+ 866,866
869
+ 867,867
870
+ 868,868
871
+ 869,869
872
+ 870,870
873
+ 871,871
874
+ 872,872
875
+ 873,873
876
+ 874,874
877
+ 875,875
878
+ 876,876
879
+ 877,877
880
+ 878,878
881
+ 879,879
882
+ 880,880
883
+ 881,881
884
+ 882,882
885
+ 883,883
886
+ 884,884
887
+ 885,885
888
+ 886,886
889
+ 887,887
890
+ 888,888
891
+ 889,889
892
+ 890,890
893
+ 891,891
894
+ 892,892
895
+ 893,893
896
+ 894,894
897
+ 895,895
898
+ 896,896
899
+ 897,897
900
+ 898,898
901
+ 899,899
902
+ 900,900
903
+ 901,901
904
+ 902,902
905
+ 903,903
906
+ 904,904
907
+ 905,905
908
+ 906,906
909
+ 907,907
910
+ 908,908
911
+ 909,909
912
+ 910,910
913
+ 911,911
914
+ 912,912
915
+ 913,913
916
+ 914,914
917
+ 915,915
918
+ 916,916
919
+ 917,917
920
+ 918,918
921
+ 919,919
922
+ 920,920
923
+ 921,921
924
+ 922,922
925
+ 923,923
926
+ 924,924
927
+ 925,925
928
+ 926,926
929
+ 927,927
930
+ 928,928
931
+ 929,929
932
+ 930,930
933
+ 931,931
934
+ 932,932
935
+ 933,933
936
+ 934,934
937
+ 935,935
938
+ 936,936
939
+ 937,937
940
+ 938,938
941
+ 939,939
942
+ 940,940
943
+ 941,941
944
+ 942,942
945
+ 943,943
946
+ 944,944
947
+ 945,945
948
+ 946,946
949
+ 947,947
950
+ 948,948
951
+ 949,949
952
+ 950,950
953
+ 951,951
954
+ 952,952
955
+ 953,953
956
+ 954,954
957
+ 955,955
958
+ 956,956
959
+ 957,957
960
+ 958,958
961
+ 959,959
962
+ 960,960
963
+ 961,961
964
+ 962,962
965
+ 963,963
966
+ 964,964
967
+ 965,965
968
+ 966,966
969
+ 967,967
970
+ 968,968
971
+ 969,969
972
+ 970,970
973
+ 971,971
974
+ 972,972
975
+ 973,973
976
+ 974,974
977
+ 975,975
978
+ 976,976
979
+ 977,977
980
+ 978,978
981
+ 979,979
982
+ 980,980
983
+ 981,981
984
+ 982,982
985
+ 983,983
986
+ 984,984
987
+ 985,985
988
+ 986,986
989
+ 987,987
990
+ 988,988
991
+ 989,989
992
+ 990,990
993
+ 991,991
994
+ 992,992
995
+ 993,993
996
+ 994,994
997
+ 995,995
998
+ 996,996
999
+ 997,997
1000
+ 998,998
1001
+ 999,999
1002
+ 1000,1000
1003
+ 1001,1001
1004
+ 1002,1002
1005
+ 1003,1003
1006
+ 1004,1004
1007
+ 1005,1005
1008
+ 1006,1006
1009
+ 1007,1007
1010
+ 1008,1008
1011
+ 1009,1009
1012
+ 1010,1010
1013
+ 1011,1011
1014
+ 1012,1012
1015
+ 1013,1013
1016
+ 1014,1014
1017
+ 1015,1015
1018
+ 1016,1016
1019
+ 1017,1017
1020
+ 1018,1018
1021
+ 1019,1019
1022
+ 1020,1020
1023
+ 1021,1021
1024
+ 1022,1022
1025
+ 1023,1023
1026
+ 1024,1024
1027
+ 1025,1025
1028
+ 1026,1026
1029
+ 1027,1027
1030
+ 1028,1028
1031
+ 1029,1029
1032
+ 1030,1030
1033
+ 1031,1031
1034
+ 1032,1032
1035
+ 1033,1033
1036
+ 1034,1034
1037
+ 1035,1035
1038
+ 1036,1036
1039
+ 1037,1037
1040
+ 1038,1038
1041
+ 1039,1039
1042
+ 1040,1040
1043
+ 1041,1041
1044
+ 1042,1042
1045
+ 1043,1043
1046
+ 1044,1044
1047
+ 1045,1045
1048
+ 1046,1046
1049
+ 1047,1047
1050
+ 1048,1048
1051
+ 1049,1049
1052
+ 1050,1050
1053
+ 1051,1051
1054
+ 1052,1052
1055
+ 1053,1053
1056
+ 1054,1054
1057
+ 1055,1055
1058
+ 1056,1056
1059
+ 1057,1057
1060
+ 1058,1058
1061
+ 1059,1059
1062
+ 1060,1060
1063
+ 1061,1061
1064
+ 1062,1062
1065
+ 1063,1063
1066
+ 1064,1064
1067
+ 1065,1065
1068
+ 1066,1066
1069
+ 1067,1067
1070
+ 1068,1068
1071
+ 1069,1069
1072
+ 1070,1070
1073
+ 1071,1071
1074
+ 1072,1072
1075
+ 1073,1073
1076
+ 1074,1074
1077
+ 1075,1075
1078
+ 1076,1076
1079
+ 1077,1077
1080
+ 1078,1078
1081
+ 1079,1079
1082
+ 1080,1080
1083
+ 1081,1081
1084
+ 1082,1082
1085
+ 1083,1083
1086
+ 1084,1084
1087
+ 1085,1085
1088
+ 1086,1086
1089
+ 1087,1087
1090
+ 1088,1088
1091
+ 1089,1089
1092
+ 1090,1090
1093
+ 1091,1091
1094
+ 1092,1092
1095
+ 1093,1093
1096
+ 1094,1094
1097
+ 1095,1095
1098
+ 1096,1096
1099
+ 1097,1097
1100
+ 1098,1098
1101
+ 1099,1099
1102
+ 1100,1100
1103
+ 1101,1101
1104
+ 1102,1102
1105
+ 1103,1103
1106
+ 1104,1104
1107
+ 1105,1105
1108
+ 1106,1106
1109
+ 1107,1107
1110
+ 1108,1108
1111
+ 1109,1109
1112
+ 1110,1110
1113
+ 1111,1111
1114
+ 1112,1112
1115
+ 1113,1113
1116
+ 1114,1114
1117
+ 1115,1115
1118
+ 1116,1116
1119
+ 1117,1117
1120
+ 1118,1118
1121
+ 1119,1119
1122
+ 1120,1120
1123
+ 1121,1121
1124
+ 1122,1122
1125
+ 1123,1123
1126
+ 1124,1124
1127
+ 1125,1125
1128
+ 1126,1126
1129
+ 1127,1127
1130
+ 1128,1128
1131
+ 1129,1129
1132
+ 1130,1130
1133
+ 1131,1131
1134
+ 1132,1132
1135
+ 1133,1133
1136
+ 1134,1134
1137
+ 1135,1135
1138
+ 1136,1136
1139
+ 1137,1137
1140
+ 1138,1138
1141
+ 1139,1139
1142
+ 1140,1140
1143
+ 1141,1141
1144
+ 1142,1142
1145
+ 1143,1143
1146
+ 1144,1144
1147
+ 1145,1145
1148
+ 1146,1146
1149
+ 1147,1147
1150
+ 1148,1148
1151
+ 1149,1149
1152
+ 1150,1150
1153
+ 1151,1151
1154
+ 1152,1152
1155
+ 1153,1153
1156
+ 1154,1154
1157
+ 1155,1155
1158
+ 1156,1156
1159
+ 1157,1157
1160
+ 1158,1158
1161
+ 1159,1159
1162
+ 1160,1160
1163
+ 1161,1161
1164
+ 1162,1162
1165
+ 1163,1163
1166
+ 1164,1164
1167
+ 1165,1165
1168
+ 1166,1166
1169
+ 1167,1167
1170
+ 1168,1168
1171
+ 1169,1169
1172
+ 1170,1170
1173
+ 1171,1171
1174
+ 1172,1172
1175
+ 1173,1173
1176
+ 1174,1174
1177
+ 1175,1175
1178
+ 1176,1176
1179
+ 1177,1177
1180
+ 1178,1178
1181
+ 1179,1179
1182
+ 1180,1180
1183
+ 1181,1181
1184
+ 1182,1182
1185
+ 1183,1183
1186
+ 1184,1184
1187
+ 1185,1185
1188
+ 1186,1186
1189
+ 1187,1187
1190
+ 1188,1188
1191
+ 1189,1189
1192
+ 1190,1190
1193
+ 1191,1191
1194
+ 1192,1192
1195
+ 1193,1193
1196
+ 1194,1194
1197
+ 1195,1195
1198
+ 1196,1196
1199
+ 1197,1197
1200
+ 1198,1198
1201
+ 1199,1199
1202
+ 1200,1200
1203
+ 1201,1201
1204
+ 1202,1202
1205
+ 1203,1203
1206
+ 1204,1204
1207
+ 1205,1205
1208
+ 1206,1206
1209
+ 1207,1207
1210
+ 1208,1208
1211
+ 1209,1209
1212
+ 1210,1210
1213
+ 1211,1211
1214
+ 1212,1212
1215
+ 1213,1213
1216
+ 1214,1214
1217
+ 1215,1215
1218
+ 1216,1216
1219
+ 1217,1217
1220
+ 1218,1218
1221
+ 1219,1219
1222
+ 1220,1220
1223
+ 1221,1221
1224
+ 1222,1222
1225
+ 1223,1223
1226
+ 1224,1224
1227
+ 1225,1225
1228
+ 1226,1226
1229
+ 1227,1227
1230
+ 1228,1228
1231
+ 1229,1229
1232
+ 1230,1230
1233
+ 1231,1231
1234
+ 1232,1232
1235
+ 1233,1233
1236
+ 1234,1234
1237
+ 1235,1235
1238
+ 1236,1236
1239
+ 1237,1237
1240
+ 1238,1238
1241
+ 1239,1239
1242
+ 1240,1240
1243
+ 1241,1241
1244
+ 1242,1242
1245
+ 1243,1243
1246
+ 1244,1244
1247
+ 1245,1245
1248
+ 1246,1246
1249
+ 1247,1247
1250
+ 1248,1248
1251
+ 1249,1249
1252
+ 1250,1250
1253
+ 1251,1251
1254
+ 1252,1252
1255
+ 1253,1253
1256
+ 1254,1254
1257
+ 1255,1255
1258
+ 1256,1256
1259
+ 1257,1257
1260
+ 1258,1258
1261
+ 1259,1259
1262
+ 1260,1260
1263
+ 1261,1261
1264
+ 1262,1262
1265
+ 1263,1263
1266
+ 1264,1264
1267
+ 1265,1265
1268
+ 1266,1266
1269
+ 1267,1267
1270
+ 1268,1268
1271
+ 1269,1269
1272
+ 1270,1270
1273
+ 1271,1271
1274
+ 1272,1272
1275
+ 1273,1273
1276
+ 1274,1274
1277
+ 1275,1275
1278
+ 1276,1276
1279
+ 1277,1277
1280
+ 1278,1278
1281
+ 1279,1279
1282
+ 1280,1280
1283
+ 1281,1281
1284
+ 1282,1282
1285
+ 1283,1283
1286
+ 1284,1284
1287
+ 1285,1285
1288
+ 1286,1286
1289
+ 1287,1287
1290
+ 1288,1288
1291
+ 1289,1289
1292
+ 1290,1290
1293
+ 1291,1291
1294
+ 1292,1292
1295
+ 1293,1293
1296
+ 1294,1294
1297
+ 1295,1295
1298
+ 1296,1296
1299
+ 1297,1297
1300
+ 1298,1298
1301
+ 1299,1299
1302
+ 1300,1300
1303
+ 1301,1301
1304
+ 1302,1302
1305
+ 1303,1303
1306
+ 1304,1304
1307
+ 1305,1305
1308
+ 1306,1306
1309
+ 1307,1307
1310
+ 1308,1308
1311
+ 1309,1309
1312
+ 1310,1310
1313
+ 1311,1311
1314
+ 1312,1312
1315
+ 1313,1313
1316
+ 1314,1314
1317
+ 1315,1315
1318
+ 1316,1316
1319
+ 1317,1317
1320
+ 1318,1318
1321
+ 1319,1319
1322
+ 1320,1320
1323
+ 1321,1321
1324
+ 1322,1322
1325
+ 1323,1323
1326
+ 1324,1324
1327
+ 1325,1325
1328
+ 1326,1326
1329
+ 1327,1327
1330
+ 1328,1328
1331
+ 1329,1329
1332
+ 1330,1330
1333
+ 1331,1331
1334
+ 1332,1332
1335
+ 1333,1333
1336
+ 1334,1334
1337
+ 1335,1335
1338
+ 1336,1336
1339
+ 1337,1337
1340
+ 1338,1338
1341
+ 1339,1339
1342
+ 1340,1340
1343
+ 1341,1341
1344
+ 1342,1342
1345
+ 1343,1343
1346
+ 1344,1344
1347
+ 1345,1345
1348
+ 1346,1346
1349
+ 1347,1347
1350
+ 1348,1348
1351
+ 1349,1349
1352
+ 1350,1350
1353
+ 1351,1351
1354
+ 1352,1352
1355
+ 1353,1353
1356
+ 1354,1354
1357
+ 1355,1355
1358
+ 1356,1356
1359
+ 1357,1357
1360
+ 1358,1358
1361
+ 1359,1359
1362
+ 1360,1360
1363
+ 1361,1361
1364
+ 1362,1362
1365
+ 1363,1363
1366
+ 1364,1364
1367
+ 1365,1365
1368
+ 1366,1366
1369
+ 1367,1367
1370
+ 1368,1368
1371
+ 1369,1369
1372
+ 1370,1370
1373
+ 1371,1371
1374
+ 1372,1372
1375
+ 1373,1373
1376
+ 1374,1374
1377
+ 1375,1375
1378
+ 1376,1376
1379
+ 1377,1377
1380
+ 1378,1378
1381
+ 1379,1379
1382
+ 1380,1380
1383
+ 1381,1381
1384
+ 1382,1382
1385
+ 1383,1383
1386
+ 1384,1384
1387
+ 1385,1385
1388
+ 1386,1386
1389
+ 1387,1387
1390
+ 1388,1388
1391
+ 1389,1389
1392
+ 1390,1390
1393
+ 1391,1391
1394
+ 1392,1392
1395
+ 1393,1393
1396
+ 1394,1394
1397
+ 1395,1395
1398
+ 1396,1396
1399
+ 1397,1397
1400
+ 1398,1398
1401
+ 1399,1399
1402
+ 1400,1400
1403
+ 1401,1401
1404
+ 1402,1402
1405
+ 1403,1403
1406
+ 1404,1404
1407
+ 1405,1405
1408
+ 1406,1406
1409
+ 1407,1407
1410
+ 1408,1408
1411
+ 1409,1409
1412
+ 1410,1410
1413
+ 1411,1411
1414
+ 1412,1412
1415
+ 1413,1413
1416
+ 1414,1414
1417
+ 1415,1415
1418
+ 1416,1416
1419
+ 1417,1417
1420
+ 1418,1418
1421
+ 1419,1419
1422
+ 1420,1420
1423
+ 1421,1421
1424
+ 1422,1422
1425
+ 1423,1423
1426
+ 1424,1424
1427
+ 1425,1425
1428
+ 1426,1426
1429
+ 1427,1427
1430
+ 1428,1428
1431
+ 1429,1429
1432
+ 1430,1430
1433
+ 1431,1431
1434
+ 1432,1432
1435
+ 1433,1433
1436
+ 1434,1434
1437
+ 1435,1435
1438
+ 1436,1436
1439
+ 1437,1437
1440
+ 1438,1438
1441
+ 1439,1439
1442
+ 1440,1440
1443
+ 1441,1441
1444
+ 1442,1442
1445
+ 1443,1443
1446
+ 1444,1444
1447
+ 1445,1445
1448
+ 1446,1446
1449
+ 1447,1447
1450
+ 1448,1448
1451
+ 1449,1449
1452
+ 1450,1450
1453
+ 1451,1451
1454
+ 1452,1452
1455
+ 1453,1453
1456
+ 1454,1454
1457
+ 1455,1455
1458
+ 1456,1456
1459
+ 1457,1457
1460
+ 1458,1458
1461
+ 1459,1459
1462
+ 1460,1460
1463
+ 1461,1461
1464
+ 1462,1462
1465
+ 1463,1463
1466
+ 1464,1464
1467
+ 1465,1465
1468
+ 1466,1466
1469
+ 1467,1467
1470
+ 1468,1468
1471
+ 1469,1469
1472
+ 1470,1470
1473
+ 1471,1471
1474
+ 1472,1472
1475
+ 1473,1473
1476
+ 1474,1474
1477
+ 1475,1475
1478
+ 1476,1476
1479
+ 1477,1477
1480
+ 1478,1478
1481
+ 1479,1479
1482
+ 1480,1480
1483
+ 1481,1481
1484
+ 1482,1482
1485
+ 1483,1483
1486
+ 1484,1484
1487
+ 1485,1485
1488
+ 1486,1486
1489
+ 1487,1487
1490
+ 1488,1488
1491
+ 1489,1489
1492
+ 1490,1490
1493
+ 1491,1491
1494
+ 1492,1492
1495
+ 1493,1493
1496
+ 1494,1494
1497
+ 1495,1495
1498
+ 1496,1496
1499
+ 1497,1497
1500
+ 1498,1498
1501
+ 1499,1499
1502
+ 1500,1500
1503
+ 1501,1501
1504
+ 1502,1502
1505
+ 1503,1503
1506
+ 1504,1504
1507
+ 1505,1505
1508
+ 1506,1506
1509
+ 1507,1507
1510
+ 1508,1508
1511
+ 1509,1509
1512
+ 1510,1510
1513
+ 1511,1511
1514
+ 1512,1512
1515
+ 1513,1513
1516
+ 1514,1514
1517
+ 1515,1515
1518
+ 1516,1516
1519
+ 1517,1517
1520
+ 1518,1518
1521
+ 1519,1519
1522
+ 1520,1520
1523
+ 1521,1521
1524
+ 1522,1522
1525
+ 1523,1523
1526
+ 1524,1524
1527
+ 1525,1525
1528
+ 1526,1526
1529
+ 1527,1527
1530
+ 1528,1528
1531
+ 1529,1529
1532
+ 1530,1530
1533
+ 1531,1531
1534
+ 1532,1532
1535
+ 1533,1533
1536
+ 1534,1534
1537
+ 1535,1535
1538
+ 1536,1536
1539
+ 1537,1537
1540
+ 1538,1538
1541
+ 1539,1539
1542
+ 1540,1540
1543
+ 1541,1541
1544
+ 1542,1542
1545
+ 1543,1543
1546
+ 1544,1544
1547
+ 1545,1545
1548
+ 1546,1546
1549
+ 1547,1547
1550
+ 1548,1548
1551
+ 1549,1549
1552
+ 1550,1550
1553
+ 1551,1551
1554
+ 1552,1552
1555
+ 1553,1553
1556
+ 1554,1554
1557
+ 1555,1555
1558
+ 1556,1556
1559
+ 1557,1557
1560
+ 1558,1558
1561
+ 1559,1559
1562
+ 1560,1560
1563
+ 1561,1561
1564
+ 1562,1562
1565
+ 1563,1563
1566
+ 1564,1564
1567
+ 1565,1565
1568
+ 1566,1566
1569
+ 1567,1567
1570
+ 1568,1568
1571
+ 1569,1569
1572
+ 1570,1570
1573
+ 1571,1571
1574
+ 1572,1572
1575
+ 1573,1573
1576
+ 1574,1574
1577
+ 1575,1575
1578
+ 1576,1576
1579
+ 1577,1577
1580
+ 1578,1578
1581
+ 1579,1579
1582
+ 1580,1580
1583
+ 1581,1581
1584
+ 1582,1582
1585
+ 1583,1583
1586
+ 1584,1584
1587
+ 1585,1585
1588
+ 1586,1586
1589
+ 1587,1587
1590
+ 1588,1588
1591
+ 1589,1589
1592
+ 1590,1590
1593
+ 1591,1591
1594
+ 1592,1592
1595
+ 1593,1593
1596
+ 1594,1594
1597
+ 1595,1595
1598
+ 1596,1596
1599
+ 1597,1597
1600
+ 1598,1598
1601
+ 1599,1599
1602
+ 1600,1600
1603
+ 1601,1601
1604
+ 1602,1602
1605
+ 1603,1603
1606
+ 1604,1604
1607
+ 1605,1605
1608
+ 1606,1607
1609
+ 1607,1609
1610
+ 1608,1612
1611
+ 1609,1614
1612
+ 1610,1616
1613
+ 1611,1619
1614
+ 1612,1621
1615
+ 1613,1624
1616
+ 1614,1626
1617
+ 1615,1628
1618
+ 1616,1631
1619
+ 1617,1633
1620
+ 1618,1636
1621
+ 1619,1638
1622
+ 1620,1641
1623
+ 1621,1643
1624
+ 1622,1646
1625
+ 1623,1648
1626
+ 1624,1650
1627
+ 1625,1653
1628
+ 1626,1655
1629
+ 1627,1658
1630
+ 1628,1660
1631
+ 1629,1663
1632
+ 1630,1665
1633
+ 1631,1668
1634
+ 1632,1670
1635
+ 1633,1673
1636
+ 1634,1675
1637
+ 1635,1678
1638
+ 1636,1680
1639
+ 1637,1683
1640
+ 1638,1685
1641
+ 1639,1688
1642
+ 1640,1690
1643
+ 1641,1693
1644
+ 1642,1695
1645
+ 1643,1698
1646
+ 1644,1700
1647
+ 1645,1703
1648
+ 1646,1705
1649
+ 1647,1708
1650
+ 1648,1710
1651
+ 1649,1713
1652
+ 1650,1716
1653
+ 1651,1718
1654
+ 1652,1721
1655
+ 1653,1723
1656
+ 1654,1726
1657
+ 1655,1728
1658
+ 1656,1731
1659
+ 1657,1734
1660
+ 1658,1736
1661
+ 1659,1739
1662
+ 1660,1741
1663
+ 1661,1744
1664
+ 1662,1747
1665
+ 1663,1749
1666
+ 1664,1752
1667
+ 1665,1754
1668
+ 1666,1757
1669
+ 1667,1760
1670
+ 1668,1762
1671
+ 1669,1765
1672
+ 1670,1767
1673
+ 1671,1770
1674
+ 1672,1773
1675
+ 1673,1775
1676
+ 1674,1778
1677
+ 1675,1781
1678
+ 1676,1783
1679
+ 1677,1786
1680
+ 1678,1789
1681
+ 1679,1791
1682
+ 1680,1794
1683
+ 1681,1797
1684
+ 1682,1799
1685
+ 1683,1802
1686
+ 1684,1805
1687
+ 1685,1807
1688
+ 1686,1810
1689
+ 1687,1813
1690
+ 1688,1815
1691
+ 1689,1818
1692
+ 1690,1821
1693
+ 1691,1824
1694
+ 1692,1826
1695
+ 1693,1829
1696
+ 1694,1832
1697
+ 1695,1835
1698
+ 1696,1837
1699
+ 1697,1840
1700
+ 1698,1843
1701
+ 1699,1845
1702
+ 1700,1848
1703
+ 1701,1851
1704
+ 1702,1854
1705
+ 1703,1857
1706
+ 1704,1859
1707
+ 1705,1862
1708
+ 1706,1865
1709
+ 1707,1868
1710
+ 1708,1870
1711
+ 1709,1873
1712
+ 1710,1876
1713
+ 1711,1879
1714
+ 1712,1882
1715
+ 1713,1884
1716
+ 1714,1887
1717
+ 1715,1890
1718
+ 1716,1893
1719
+ 1717,1896
1720
+ 1718,1898
1721
+ 1719,1901
1722
+ 1720,1904
1723
+ 1721,1907
1724
+ 1722,1910
1725
+ 1723,1913
1726
+ 1724,1915
1727
+ 1725,1918
1728
+ 1726,1921
1729
+ 1727,1924
1730
+ 1728,1927
1731
+ 1729,1930
1732
+ 1730,1933
1733
+ 1731,1936
1734
+ 1732,1938
1735
+ 1733,1941
1736
+ 1734,1944
1737
+ 1735,1947
1738
+ 1736,1950
1739
+ 1737,1953
1740
+ 1738,1956
1741
+ 1739,1959
1742
+ 1740,1962
1743
+ 1741,1965
1744
+ 1742,1968
1745
+ 1743,1970
1746
+ 1744,1973
1747
+ 1745,1976
1748
+ 1746,1979
1749
+ 1747,1982
1750
+ 1748,1985
1751
+ 1749,1988
1752
+ 1750,1991
1753
+ 1751,1994
1754
+ 1752,1997
1755
+ 1753,2000
1756
+ 1754,2003
1757
+ 1755,2006
1758
+ 1756,2009
1759
+ 1757,2012
1760
+ 1758,2015
1761
+ 1759,2018
1762
+ 1760,2021
1763
+ 1761,2024
1764
+ 1762,2027
1765
+ 1763,2030
1766
+ 1764,2033
1767
+ 1765,2036
1768
+ 1766,2039
1769
+ 1767,2042
1770
+ 1768,2045
1771
+ 1769,2048
1772
+ 1770,2051
1773
+ 1771,2054
1774
+ 1772,2057
1775
+ 1773,2061
1776
+ 1774,2064
1777
+ 1775,2067
1778
+ 1776,2070
1779
+ 1777,2073
1780
+ 1778,2076
1781
+ 1779,2079
1782
+ 1780,2082
1783
+ 1781,2085
1784
+ 1782,2088
1785
+ 1783,2091
1786
+ 1784,2095
1787
+ 1785,2098
1788
+ 1786,2101
1789
+ 1787,2104
1790
+ 1788,2107
1791
+ 1789,2110
1792
+ 1790,2113
1793
+ 1791,2116
1794
+ 1792,2120
1795
+ 1793,2123
1796
+ 1794,2126
1797
+ 1795,2129
1798
+ 1796,2132
1799
+ 1797,2135
1800
+ 1798,2139
1801
+ 1799,2142
1802
+ 1800,2145
1803
+ 1801,2148
1804
+ 1802,2151
1805
+ 1803,2155
1806
+ 1804,2158
1807
+ 1805,2161
1808
+ 1806,2164
1809
+ 1807,2168
1810
+ 1808,2171
1811
+ 1809,2174
1812
+ 1810,2177
1813
+ 1811,2180
1814
+ 1812,2184
1815
+ 1813,2187
1816
+ 1814,2190
1817
+ 1815,2194
1818
+ 1816,2197
1819
+ 1817,2200
1820
+ 1818,2203
1821
+ 1819,2207
1822
+ 1820,2210
1823
+ 1821,2213
1824
+ 1822,2217
1825
+ 1823,2220
1826
+ 1824,2223
1827
+ 1825,2226
1828
+ 1826,2230
1829
+ 1827,2233
1830
+ 1828,2236
1831
+ 1829,2240
1832
+ 1830,2243
1833
+ 1831,2246
1834
+ 1832,2250
1835
+ 1833,2253
1836
+ 1834,2256
1837
+ 1835,2260
1838
+ 1836,2263
1839
+ 1837,2267
1840
+ 1838,2270
1841
+ 1839,2273
1842
+ 1840,2277
1843
+ 1841,2280
1844
+ 1842,2284
1845
+ 1843,2287
1846
+ 1844,2290
1847
+ 1845,2294
1848
+ 1846,2297
1849
+ 1847,2301
1850
+ 1848,2304
1851
+ 1849,2307
1852
+ 1850,2311
1853
+ 1851,2314
1854
+ 1852,2318
1855
+ 1853,2321
1856
+ 1854,2325
1857
+ 1855,2328
1858
+ 1856,2332
1859
+ 1857,2335
1860
+ 1858,2339
1861
+ 1859,2342
1862
+ 1860,2346
1863
+ 1861,2349
1864
+ 1862,2353
1865
+ 1863,2356
1866
+ 1864,2360
1867
+ 1865,2363
1868
+ 1866,2367
1869
+ 1867,2370
1870
+ 1868,2374
1871
+ 1869,2377
1872
+ 1870,2381
1873
+ 1871,2384
1874
+ 1872,2388
1875
+ 1873,2391
1876
+ 1874,2395
1877
+ 1875,2399
1878
+ 1876,2402
1879
+ 1877,2406
1880
+ 1878,2409
1881
+ 1879,2413
1882
+ 1880,2416
1883
+ 1881,2420
1884
+ 1882,2424
1885
+ 1883,2427
1886
+ 1884,2431
1887
+ 1885,2435
1888
+ 1886,2438
1889
+ 1887,2442
1890
+ 1888,2445
1891
+ 1889,2449
1892
+ 1890,2453
1893
+ 1891,2456
1894
+ 1892,2460
1895
+ 1893,2464
1896
+ 1894,2467
1897
+ 1895,2471
1898
+ 1896,2475
1899
+ 1897,2478
1900
+ 1898,2482
1901
+ 1899,2486
1902
+ 1900,2490
1903
+ 1901,2493
1904
+ 1902,2497
1905
+ 1903,2501
1906
+ 1904,2504
1907
+ 1905,2508
1908
+ 1906,2512
1909
+ 1907,2516
1910
+ 1908,2519
1911
+ 1909,2523
1912
+ 1910,2527
1913
+ 1911,2531
1914
+ 1912,2534
1915
+ 1913,2538
1916
+ 1914,2542
1917
+ 1915,2546
1918
+ 1916,2550
1919
+ 1917,2553
1920
+ 1918,2557
1921
+ 1919,2561
1922
+ 1920,2565
1923
+ 1921,2569
1924
+ 1922,2572
1925
+ 1923,2576
1926
+ 1924,2580
1927
+ 1925,2584
1928
+ 1926,2588
1929
+ 1927,2592
1930
+ 1928,2596
1931
+ 1929,2599
1932
+ 1930,2603
1933
+ 1931,2607
1934
+ 1932,2611
1935
+ 1933,2615
1936
+ 1934,2619
1937
+ 1935,2623
1938
+ 1936,2627
1939
+ 1937,2631
1940
+ 1938,2635
1941
+ 1939,2638
1942
+ 1940,2642
1943
+ 1941,2646
1944
+ 1942,2650
1945
+ 1943,2654
1946
+ 1944,2658
1947
+ 1945,2662
1948
+ 1946,2666
1949
+ 1947,2670
1950
+ 1948,2674
1951
+ 1949,2678
1952
+ 1950,2682
1953
+ 1951,2686
1954
+ 1952,2690
1955
+ 1953,2694
1956
+ 1954,2698
1957
+ 1955,2702
1958
+ 1956,2706
1959
+ 1957,2710
1960
+ 1958,2714
1961
+ 1959,2718
1962
+ 1960,2722
1963
+ 1961,2726
1964
+ 1962,2730
1965
+ 1963,2734
1966
+ 1964,2739
1967
+ 1965,2743
1968
+ 1966,2747
1969
+ 1967,2751
1970
+ 1968,2755
1971
+ 1969,2759
1972
+ 1970,2763
1973
+ 1971,2767
1974
+ 1972,2771
1975
+ 1973,2776
1976
+ 1974,2780
1977
+ 1975,2784
1978
+ 1976,2788
1979
+ 1977,2792
1980
+ 1978,2796
1981
+ 1979,2800
1982
+ 1980,2805
1983
+ 1981,2809
1984
+ 1982,2813
1985
+ 1983,2817
1986
+ 1984,2821
1987
+ 1985,2826
1988
+ 1986,2830
1989
+ 1987,2834
1990
+ 1988,2838
1991
+ 1989,2842
1992
+ 1990,2847
1993
+ 1991,2851
1994
+ 1992,2855
1995
+ 1993,2859
1996
+ 1994,2864
1997
+ 1995,2868
1998
+ 1996,2872
1999
+ 1997,2877
2000
+ 1998,2881
2001
+ 1999,2885
2002
+ 2000,2889
2003
+ 2001,2894
2004
+ 2002,2898
2005
+ 2003,2902
2006
+ 2004,2907
2007
+ 2005,2911
2008
+ 2006,2915
2009
+ 2007,2920
2010
+ 2008,2924
2011
+ 2009,2928
2012
+ 2010,2933
2013
+ 2011,2937
2014
+ 2012,2942
2015
+ 2013,2946
2016
+ 2014,2950
2017
+ 2015,2955
2018
+ 2016,2959
2019
+ 2017,2964
2020
+ 2018,2968
2021
+ 2019,2972
2022
+ 2020,2977
2023
+ 2021,2981
2024
+ 2022,2986
2025
+ 2023,2990
2026
+ 2024,2995
2027
+ 2025,2999
2028
+ 2026,3004
2029
+ 2027,3008
2030
+ 2028,3012
2031
+ 2029,3017
2032
+ 2030,3021
2033
+ 2031,3026
2034
+ 2032,3030
2035
+ 2033,3035
2036
+ 2034,3040
2037
+ 2035,3044
2038
+ 2036,3049
2039
+ 2037,3053
2040
+ 2038,3058
2041
+ 2039,3062
2042
+ 2040,3067
2043
+ 2041,3071
2044
+ 2042,3076
2045
+ 2043,3081
2046
+ 2044,3085
2047
+ 2045,3090
2048
+ 2046,3094
2049
+ 2047,3099
2050
+ 2048,3104
2051
+ 2049,3108
2052
+ 2050,3113
2053
+ 2051,3117
2054
+ 2052,3122
2055
+ 2053,3127
2056
+ 2054,3131
2057
+ 2055,3136
2058
+ 2056,3141
2059
+ 2057,3145
2060
+ 2058,3150
2061
+ 2059,3155
2062
+ 2060,3160
2063
+ 2061,3164
2064
+ 2062,3169
2065
+ 2063,3174
2066
+ 2064,3178
2067
+ 2065,3183
2068
+ 2066,3188
2069
+ 2067,3193
2070
+ 2068,3197
2071
+ 2069,3202
2072
+ 2070,3207
2073
+ 2071,3212
2074
+ 2072,3217
2075
+ 2073,3221
2076
+ 2074,3226
2077
+ 2075,3231
2078
+ 2076,3236
2079
+ 2077,3241
2080
+ 2078,3245
2081
+ 2079,3250
2082
+ 2080,3255
2083
+ 2081,3260
2084
+ 2082,3265
2085
+ 2083,3270
2086
+ 2084,3275
2087
+ 2085,3279
2088
+ 2086,3284
2089
+ 2087,3289
2090
+ 2088,3294
2091
+ 2089,3299
2092
+ 2090,3304
2093
+ 2091,3309
2094
+ 2092,3314
2095
+ 2093,3319
2096
+ 2094,3324
2097
+ 2095,3329
2098
+ 2096,3334
2099
+ 2097,3339
2100
+ 2098,3344
2101
+ 2099,3349
2102
+ 2100,3354
2103
+ 2101,3358
2104
+ 2102,3364
2105
+ 2103,3369
2106
+ 2104,3374
2107
+ 2105,3379
2108
+ 2106,3384
2109
+ 2107,3389
2110
+ 2108,3394
2111
+ 2109,3399
2112
+ 2110,3404
2113
+ 2111,3409
2114
+ 2112,3414
2115
+ 2113,3419
2116
+ 2114,3424
2117
+ 2115,3429
2118
+ 2116,3434
2119
+ 2117,3440
2120
+ 2118,3445
2121
+ 2119,3450
2122
+ 2120,3455
2123
+ 2121,3460
2124
+ 2122,3465
2125
+ 2123,3470
2126
+ 2124,3476
2127
+ 2125,3481
2128
+ 2126,3486
2129
+ 2127,3491
2130
+ 2128,3496
2131
+ 2129,3502
2132
+ 2130,3507
2133
+ 2131,3512
2134
+ 2132,3517
2135
+ 2133,3522
2136
+ 2134,3528
2137
+ 2135,3533
2138
+ 2136,3538
2139
+ 2137,3544
2140
+ 2138,3549
2141
+ 2139,3554
2142
+ 2140,3559
2143
+ 2141,3565
2144
+ 2142,3570
2145
+ 2143,3575
2146
+ 2144,3581
2147
+ 2145,3586
2148
+ 2146,3591
2149
+ 2147,3597
2150
+ 2148,3602
2151
+ 2149,3607
2152
+ 2150,3613
2153
+ 2151,3618
2154
+ 2152,3624
2155
+ 2153,3629
2156
+ 2154,3634
2157
+ 2155,3640
2158
+ 2156,3645
2159
+ 2157,3651
2160
+ 2158,3656
2161
+ 2159,3662
2162
+ 2160,3667
2163
+ 2161,3672
2164
+ 2162,3678
2165
+ 2163,3683
2166
+ 2164,3689
2167
+ 2165,3694
2168
+ 2166,3700
2169
+ 2167,3705
2170
+ 2168,3711
2171
+ 2169,3716
2172
+ 2170,3722
2173
+ 2171,3728
2174
+ 2172,3733
2175
+ 2173,3739
2176
+ 2174,3744
2177
+ 2175,3750
2178
+ 2176,3755
2179
+ 2177,3761
2180
+ 2178,3767
2181
+ 2179,3772
2182
+ 2180,3778
2183
+ 2181,3784
2184
+ 2182,3789
2185
+ 2183,3795
2186
+ 2184,3800
2187
+ 2185,3806
2188
+ 2186,3812
2189
+ 2187,3817
2190
+ 2188,3823
2191
+ 2189,3829
2192
+ 2190,3835
2193
+ 2191,3840
2194
+ 2192,3846
2195
+ 2193,3852
2196
+ 2194,3858
2197
+ 2195,3863
2198
+ 2196,3869
2199
+ 2197,3875
2200
+ 2198,3881
2201
+ 2199,3886
2202
+ 2200,3892
2203
+ 2201,3898
2204
+ 2202,3904
2205
+ 2203,3910
2206
+ 2204,3915
2207
+ 2205,3921
2208
+ 2206,3927
2209
+ 2207,3933
2210
+ 2208,3939
2211
+ 2209,3945
2212
+ 2210,3951
2213
+ 2211,3956
2214
+ 2212,3962
2215
+ 2213,3968
2216
+ 2214,3974
2217
+ 2215,3980
2218
+ 2216,3986
2219
+ 2217,3992
2220
+ 2218,3998
2221
+ 2219,4004
2222
+ 2220,4010
2223
+ 2221,4016
2224
+ 2222,4022
2225
+ 2223,4028
2226
+ 2224,4034
2227
+ 2225,4040
2228
+ 2226,4046
2229
+ 2227,4052
2230
+ 2228,4058
2231
+ 2229,4064
2232
+ 2230,4070
2233
+ 2231,4076
2234
+ 2232,4082
2235
+ 2233,4088
2236
+ 2234,4094
2237
+ 2235,4100
2238
+ 2236,4107
2239
+ 2237,4113
2240
+ 2238,4119
2241
+ 2239,4125
2242
+ 2240,4131
2243
+ 2241,4137
2244
+ 2242,4143
2245
+ 2243,4150
2246
+ 2244,4156
2247
+ 2245,4162
2248
+ 2246,4168
2249
+ 2247,4174
2250
+ 2248,4181
2251
+ 2249,4187
2252
+ 2250,4193
2253
+ 2251,4199
2254
+ 2252,4206
2255
+ 2253,4212
2256
+ 2254,4218
2257
+ 2255,4224
2258
+ 2256,4231
2259
+ 2257,4237
2260
+ 2258,4243
2261
+ 2259,4250
2262
+ 2260,4256
2263
+ 2261,4262
2264
+ 2262,4269
2265
+ 2263,4275
2266
+ 2264,4281
2267
+ 2265,4288
2268
+ 2266,4294
2269
+ 2267,4301
2270
+ 2268,4307
2271
+ 2269,4313
2272
+ 2270,4320
2273
+ 2271,4326
2274
+ 2272,4333
2275
+ 2273,4339
2276
+ 2274,4346
2277
+ 2275,4352
2278
+ 2276,4359
2279
+ 2277,4365
2280
+ 2278,4372
2281
+ 2279,4378
2282
+ 2280,4385
2283
+ 2281,4391
2284
+ 2282,4398
2285
+ 2283,4404
2286
+ 2284,4411
2287
+ 2285,4417
2288
+ 2286,4424
2289
+ 2287,4431
2290
+ 2288,4437
2291
+ 2289,4444
2292
+ 2290,4451
2293
+ 2291,4457
2294
+ 2292,4464
2295
+ 2293,4470
2296
+ 2294,4477
2297
+ 2295,4484
2298
+ 2296,4490
2299
+ 2297,4497
2300
+ 2298,4504
2301
+ 2299,4511
2302
+ 2300,4517
2303
+ 2301,4524
2304
+ 2302,4531
2305
+ 2303,4538
2306
+ 2304,4544
2307
+ 2305,4551
2308
+ 2306,4558
2309
+ 2307,4565
2310
+ 2308,4571
2311
+ 2309,4578
2312
+ 2310,4585
2313
+ 2311,4592
2314
+ 2312,4599
2315
+ 2313,4606
2316
+ 2314,4612
2317
+ 2315,4619
2318
+ 2316,4626
2319
+ 2317,4633
2320
+ 2318,4640
2321
+ 2319,4647
2322
+ 2320,4654
2323
+ 2321,4661
2324
+ 2322,4668
2325
+ 2323,4675
2326
+ 2324,4682
2327
+ 2325,4689
2328
+ 2326,4696
2329
+ 2327,4703
2330
+ 2328,4710
2331
+ 2329,4717
2332
+ 2330,4724
2333
+ 2331,4731
2334
+ 2332,4738
2335
+ 2333,4745
2336
+ 2334,4752
2337
+ 2335,4759
2338
+ 2336,4766
2339
+ 2337,4773
2340
+ 2338,4780
2341
+ 2339,4788
2342
+ 2340,4795
2343
+ 2341,4802
2344
+ 2342,4809
2345
+ 2343,4816
2346
+ 2344,4823
2347
+ 2345,4830
2348
+ 2346,4838
2349
+ 2347,4845
2350
+ 2348,4852
2351
+ 2349,4859
2352
+ 2350,4867
2353
+ 2351,4874
2354
+ 2352,4881
2355
+ 2353,4888
2356
+ 2354,4896
2357
+ 2355,4903
2358
+ 2356,4910
2359
+ 2357,4918
2360
+ 2358,4925
2361
+ 2359,4932
2362
+ 2360,4940
2363
+ 2361,4947
2364
+ 2362,4954
2365
+ 2363,4962
2366
+ 2364,4969
2367
+ 2365,4977
2368
+ 2366,4984
2369
+ 2367,4991
2370
+ 2368,4999
2371
+ 2369,5006
2372
+ 2370,5014
2373
+ 2371,5021
2374
+ 2372,5029
2375
+ 2373,5036
2376
+ 2374,5044
2377
+ 2375,5051
2378
+ 2376,5059
2379
+ 2377,5066
2380
+ 2378,5074
2381
+ 2379,5081
2382
+ 2380,5089
2383
+ 2381,5097
2384
+ 2382,5104
2385
+ 2383,5112
2386
+ 2384,5119
2387
+ 2385,5127
2388
+ 2386,5135
2389
+ 2387,5142
2390
+ 2388,5150
2391
+ 2389,5158
2392
+ 2390,5165
2393
+ 2391,5173
2394
+ 2392,5181
2395
+ 2393,5189
2396
+ 2394,5196
2397
+ 2395,5204
2398
+ 2396,5212
2399
+ 2397,5220
2400
+ 2398,5227
2401
+ 2399,5235
2402
+ 2400,5243
2403
+ 2401,5251
2404
+ 2402,5259
2405
+ 2403,5266
2406
+ 2404,5274
2407
+ 2405,5282
2408
+ 2406,5290
2409
+ 2407,5298
2410
+ 2408,5306
2411
+ 2409,5314
2412
+ 2410,5322
2413
+ 2411,5330
2414
+ 2412,5337
2415
+ 2413,5345
2416
+ 2414,5353
2417
+ 2415,5361
2418
+ 2416,5369
2419
+ 2417,5377
2420
+ 2418,5385
2421
+ 2419,5393
2422
+ 2420,5401
2423
+ 2421,5409
2424
+ 2422,5418
2425
+ 2423,5426
2426
+ 2424,5434
2427
+ 2425,5442
2428
+ 2426,5450
2429
+ 2427,5458
2430
+ 2428,5466
2431
+ 2429,5474
2432
+ 2430,5483
2433
+ 2431,5491
2434
+ 2432,5499
2435
+ 2433,5507
2436
+ 2434,5515
2437
+ 2435,5523
2438
+ 2436,5532
2439
+ 2437,5540
2440
+ 2438,5548
2441
+ 2439,5556
2442
+ 2440,5565
2443
+ 2441,5573
2444
+ 2442,5581
2445
+ 2443,5590
2446
+ 2444,5598
2447
+ 2445,5606
2448
+ 2446,5615
2449
+ 2447,5623
2450
+ 2448,5631
2451
+ 2449,5640
2452
+ 2450,5648
2453
+ 2451,5657
2454
+ 2452,5665
2455
+ 2453,5674
2456
+ 2454,5682
2457
+ 2455,5691
2458
+ 2456,5699
2459
+ 2457,5708
2460
+ 2458,5716
2461
+ 2459,5725
2462
+ 2460,5733
2463
+ 2461,5742
2464
+ 2462,5750
2465
+ 2463,5759
2466
+ 2464,5767
2467
+ 2465,5776
2468
+ 2466,5785
2469
+ 2467,5793
2470
+ 2468,5802
2471
+ 2469,5810
2472
+ 2470,5819
2473
+ 2471,5828
2474
+ 2472,5836
2475
+ 2473,5845
2476
+ 2474,5854
2477
+ 2475,5863
2478
+ 2476,5871
2479
+ 2477,5880
2480
+ 2478,5889
2481
+ 2479,5898
2482
+ 2480,5906
2483
+ 2481,5915
2484
+ 2482,5924
2485
+ 2483,5933
2486
+ 2484,5942
2487
+ 2485,5951
2488
+ 2486,5959
2489
+ 2487,5968
2490
+ 2488,5977
2491
+ 2489,5986
2492
+ 2490,5995
2493
+ 2491,6004
2494
+ 2492,6013
2495
+ 2493,6022
2496
+ 2494,6031
2497
+ 2495,6040
2498
+ 2496,6049
2499
+ 2497,6058
2500
+ 2498,6067
2501
+ 2499,6076
2502
+ 2500,6085
2503
+ 2501,6094
2504
+ 2502,6103
2505
+ 2503,6112
2506
+ 2504,6121
2507
+ 2505,6131
2508
+ 2506,6140
2509
+ 2507,6149
2510
+ 2508,6158
2511
+ 2509,6167
2512
+ 2510,6176
2513
+ 2511,6186
2514
+ 2512,6195
2515
+ 2513,6204
2516
+ 2514,6213
2517
+ 2515,6223
2518
+ 2516,6232
2519
+ 2517,6241
2520
+ 2518,6250
2521
+ 2519,6260
2522
+ 2520,6269
2523
+ 2521,6278
2524
+ 2522,6288
2525
+ 2523,6297
2526
+ 2524,6307
2527
+ 2525,6316
2528
+ 2526,6325
2529
+ 2527,6335
2530
+ 2528,6344
2531
+ 2529,6354
2532
+ 2530,6363
2533
+ 2531,6373
2534
+ 2532,6382
2535
+ 2533,6392
2536
+ 2534,6401
2537
+ 2535,6411
2538
+ 2536,6420
2539
+ 2537,6430
2540
+ 2538,6439
2541
+ 2539,6449
2542
+ 2540,6459
2543
+ 2541,6468
2544
+ 2542,6478
2545
+ 2543,6488
2546
+ 2544,6497
2547
+ 2545,6507
2548
+ 2546,6517
2549
+ 2547,6526
2550
+ 2548,6536
2551
+ 2549,6546
2552
+ 2550,6556
2553
+ 2551,6565
2554
+ 2552,6575
2555
+ 2553,6585
2556
+ 2554,6595
2557
+ 2555,6605
2558
+ 2556,6614
2559
+ 2557,6624
2560
+ 2558,6634
2561
+ 2559,6644
2562
+ 2560,6654
2563
+ 2561,6664
2564
+ 2562,6674
2565
+ 2563,6684
2566
+ 2564,6694
2567
+ 2565,6704
2568
+ 2566,6714
2569
+ 2567,6724
2570
+ 2568,6734
2571
+ 2569,6744
2572
+ 2570,6754
2573
+ 2571,6764
2574
+ 2572,6774
2575
+ 2573,6784
2576
+ 2574,6794
2577
+ 2575,6804
2578
+ 2576,6814
2579
+ 2577,6825
2580
+ 2578,6835
2581
+ 2579,6845
2582
+ 2580,6855
2583
+ 2581,6865
2584
+ 2582,6876
2585
+ 2583,6886
2586
+ 2584,6896
2587
+ 2585,6906
2588
+ 2586,6917
2589
+ 2587,6927
2590
+ 2588,6937
2591
+ 2589,6948
2592
+ 2590,6958
2593
+ 2591,6968
2594
+ 2592,6979
2595
+ 2593,6989
2596
+ 2594,7000
2597
+ 2595,7010
2598
+ 2596,7021
2599
+ 2597,7031
2600
+ 2598,7041
2601
+ 2599,7052
2602
+ 2600,7062
2603
+ 2601,7073
2604
+ 2602,7084
2605
+ 2603,7094
2606
+ 2604,7105
2607
+ 2605,7115
2608
+ 2606,7126
2609
+ 2607,7137
2610
+ 2608,7147
2611
+ 2609,7158
2612
+ 2610,7168
2613
+ 2611,7179
2614
+ 2612,7190
2615
+ 2613,7201
2616
+ 2614,7211
2617
+ 2615,7222
2618
+ 2616,7233
2619
+ 2617,7244
2620
+ 2618,7254
2621
+ 2619,7265
2622
+ 2620,7276
2623
+ 2621,7287
2624
+ 2622,7298
2625
+ 2623,7309
2626
+ 2624,7320
2627
+ 2625,7330
2628
+ 2626,7341
2629
+ 2627,7352
2630
+ 2628,7363
2631
+ 2629,7374
2632
+ 2630,7385
2633
+ 2631,7396
2634
+ 2632,7407
2635
+ 2633,7418
2636
+ 2634,7429
2637
+ 2635,7440
2638
+ 2636,7452
2639
+ 2637,7463
2640
+ 2638,7474
2641
+ 2639,7485
2642
+ 2640,7496
2643
+ 2641,7507
2644
+ 2642,7518
2645
+ 2643,7530
2646
+ 2644,7541
2647
+ 2645,7552
2648
+ 2646,7563
2649
+ 2647,7575
2650
+ 2648,7586
2651
+ 2649,7597
2652
+ 2650,7609
2653
+ 2651,7620
2654
+ 2652,7631
2655
+ 2653,7643
2656
+ 2654,7654
2657
+ 2655,7665
2658
+ 2656,7677
2659
+ 2657,7688
2660
+ 2658,7700
2661
+ 2659,7711
2662
+ 2660,7723
2663
+ 2661,7734
2664
+ 2662,7746
2665
+ 2663,7757
2666
+ 2664,7769
2667
+ 2665,7781
2668
+ 2666,7792
2669
+ 2667,7804
2670
+ 2668,7815
2671
+ 2669,7827
2672
+ 2670,7839
2673
+ 2671,7850
2674
+ 2672,7862
2675
+ 2673,7874
2676
+ 2674,7886
2677
+ 2675,7897
2678
+ 2676,7909
2679
+ 2677,7921
2680
+ 2678,7933
2681
+ 2679,7944
2682
+ 2680,7956
2683
+ 2681,7968
2684
+ 2682,7980
2685
+ 2683,7992
2686
+ 2684,8004
2687
+ 2685,8016
2688
+ 2686,8028
2689
+ 2687,8040
2690
+ 2688,8052
2691
+ 2689,8064
2692
+ 2690,8076
2693
+ 2691,8088
2694
+ 2692,8100
2695
+ 2693,8112
2696
+ 2694,8124
2697
+ 2695,8136
2698
+ 2696,8148
2699
+ 2697,8160
2700
+ 2698,8173
2701
+ 2699,8185
2702
+ 2700,8197
2703
+ 2701,8209
2704
+ 2702,8221
2705
+ 2703,8234
2706
+ 2704,8246
2707
+ 2705,8258
2708
+ 2706,8271
2709
+ 2707,8283
2710
+ 2708,8295
2711
+ 2709,8308
2712
+ 2710,8320
2713
+ 2711,8332
2714
+ 2712,8345
2715
+ 2713,8357
2716
+ 2714,8370
2717
+ 2715,8382
2718
+ 2716,8395
2719
+ 2717,8407
2720
+ 2718,8420
2721
+ 2719,8432
2722
+ 2720,8445
2723
+ 2721,8457
2724
+ 2722,8470
2725
+ 2723,8483
2726
+ 2724,8495
2727
+ 2725,8508
2728
+ 2726,8521
2729
+ 2727,8533
2730
+ 2728,8546
2731
+ 2729,8559
2732
+ 2730,8572
2733
+ 2731,8584
2734
+ 2732,8597
2735
+ 2733,8610
2736
+ 2734,8623
2737
+ 2735,8636
2738
+ 2736,8649
2739
+ 2737,8661
2740
+ 2738,8674
2741
+ 2739,8687
2742
+ 2740,8700
2743
+ 2741,8713
2744
+ 2742,8726
2745
+ 2743,8739
2746
+ 2744,8752
2747
+ 2745,8765
2748
+ 2746,8778
2749
+ 2747,8791
2750
+ 2748,8805
2751
+ 2749,8818
2752
+ 2750,8831
2753
+ 2751,8844
2754
+ 2752,8857
2755
+ 2753,8870
2756
+ 2754,8884
2757
+ 2755,8897
2758
+ 2756,8910
2759
+ 2757,8923
2760
+ 2758,8937
2761
+ 2759,8950
2762
+ 2760,8963
2763
+ 2761,8977
2764
+ 2762,8990
2765
+ 2763,9003
2766
+ 2764,9017
2767
+ 2765,9030
2768
+ 2766,9044
2769
+ 2767,9057
2770
+ 2768,9071
2771
+ 2769,9084
2772
+ 2770,9098
2773
+ 2771,9111
2774
+ 2772,9125
2775
+ 2773,9139
2776
+ 2774,9152
2777
+ 2775,9166
2778
+ 2776,9180
2779
+ 2777,9193
2780
+ 2778,9207
2781
+ 2779,9221
2782
+ 2780,9234
2783
+ 2781,9248
2784
+ 2782,9262
2785
+ 2783,9276
2786
+ 2784,9290
2787
+ 2785,9303
2788
+ 2786,9317
2789
+ 2787,9331
2790
+ 2788,9345
2791
+ 2789,9359
2792
+ 2790,9373
2793
+ 2791,9387
2794
+ 2792,9401
2795
+ 2793,9415
2796
+ 2794,9429
2797
+ 2795,9443
2798
+ 2796,9457
2799
+ 2797,9471
2800
+ 2798,9485
2801
+ 2799,9499
2802
+ 2800,9514
2803
+ 2801,9528
2804
+ 2802,9542
2805
+ 2803,9556
2806
+ 2804,9571
2807
+ 2805,9585
2808
+ 2806,9599
2809
+ 2807,9613
2810
+ 2808,9628
2811
+ 2809,9642
2812
+ 2810,9656
2813
+ 2811,9671
2814
+ 2812,9685
2815
+ 2813,9700
2816
+ 2814,9714
2817
+ 2815,9729
2818
+ 2816,9743
2819
+ 2817,9758
2820
+ 2818,9772
2821
+ 2819,9787
2822
+ 2820,9801
2823
+ 2821,9816
2824
+ 2822,9831
2825
+ 2823,9845
2826
+ 2824,9860
2827
+ 2825,9875
2828
+ 2826,9889
2829
+ 2827,9904
2830
+ 2828,9919
2831
+ 2829,9934
2832
+ 2830,9948
2833
+ 2831,9963
2834
+ 2832,9978
2835
+ 2833,9993
2836
+ 2834,10008
2837
+ 2835,10023
2838
+ 2836,10038
2839
+ 2837,10053
2840
+ 2838,10068
2841
+ 2839,10083
2842
+ 2840,10098
2843
+ 2841,10113
2844
+ 2842,10128
2845
+ 2843,10143
2846
+ 2844,10158
2847
+ 2845,10173
2848
+ 2846,10188
2849
+ 2847,10204
2850
+ 2848,10219
2851
+ 2849,10234
2852
+ 2850,10249
2853
+ 2851,10265
2854
+ 2852,10280
2855
+ 2853,10295
2856
+ 2854,10311
2857
+ 2855,10326
2858
+ 2856,10341
2859
+ 2857,10357
2860
+ 2858,10372
2861
+ 2859,10388
2862
+ 2860,10403
2863
+ 2861,10419
2864
+ 2862,10434
2865
+ 2863,10450
2866
+ 2864,10465
2867
+ 2865,10481
2868
+ 2866,10497
2869
+ 2867,10512
2870
+ 2868,10528
2871
+ 2869,10544
2872
+ 2870,10559
2873
+ 2871,10575
2874
+ 2872,10591
2875
+ 2873,10607
2876
+ 2874,10622
2877
+ 2875,10638
2878
+ 2876,10654
2879
+ 2877,10670
2880
+ 2878,10686
2881
+ 2879,10702
2882
+ 2880,10718
2883
+ 2881,10734
2884
+ 2882,10750
2885
+ 2883,10766
2886
+ 2884,10782
2887
+ 2885,10798
2888
+ 2886,10814
2889
+ 2887,10830
2890
+ 2888,10846
2891
+ 2889,10862
2892
+ 2890,10879
2893
+ 2891,10895
2894
+ 2892,10911
2895
+ 2893,10927
2896
+ 2894,10944
2897
+ 2895,10960
2898
+ 2896,10976
2899
+ 2897,10993
2900
+ 2898,11009
2901
+ 2899,11025
2902
+ 2900,11042
2903
+ 2901,11058
2904
+ 2902,11075
2905
+ 2903,11091
2906
+ 2904,11108
2907
+ 2905,11124
2908
+ 2906,11141
2909
+ 2907,11158
2910
+ 2908,11174
2911
+ 2909,11191
2912
+ 2910,11208
2913
+ 2911,11224
2914
+ 2912,11241
2915
+ 2913,11258
2916
+ 2914,11275
2917
+ 2915,11291
2918
+ 2916,11308
2919
+ 2917,11325
2920
+ 2918,11342
2921
+ 2919,11359
2922
+ 2920,11376
2923
+ 2921,11393
2924
+ 2922,11410
2925
+ 2923,11427
2926
+ 2924,11444
2927
+ 2925,11461
2928
+ 2926,11478
2929
+ 2927,11495
2930
+ 2928,11512
2931
+ 2929,11529
2932
+ 2930,11547
2933
+ 2931,11564
2934
+ 2932,11581
2935
+ 2933,11598
2936
+ 2934,11616
2937
+ 2935,11633
2938
+ 2936,11650
2939
+ 2937,11668
2940
+ 2938,11685
2941
+ 2939,11702
2942
+ 2940,11720
2943
+ 2941,11737
2944
+ 2942,11755
2945
+ 2943,11772
2946
+ 2944,11790
2947
+ 2945,11807
2948
+ 2946,11825
2949
+ 2947,11843
2950
+ 2948,11860
2951
+ 2949,11878
2952
+ 2950,11896
2953
+ 2951,11913
2954
+ 2952,11931
2955
+ 2953,11949
2956
+ 2954,11967
2957
+ 2955,11985
2958
+ 2956,12003
2959
+ 2957,12020
2960
+ 2958,12038
2961
+ 2959,12056
2962
+ 2960,12074
2963
+ 2961,12092
2964
+ 2962,12110
2965
+ 2963,12128
2966
+ 2964,12146
2967
+ 2965,12165
2968
+ 2966,12183
2969
+ 2967,12201
2970
+ 2968,12219
2971
+ 2969,12237
2972
+ 2970,12255
2973
+ 2971,12274
2974
+ 2972,12292
2975
+ 2973,12310
2976
+ 2974,12329
2977
+ 2975,12347
2978
+ 2976,12366
2979
+ 2977,12384
2980
+ 2978,12402
2981
+ 2979,12421
2982
+ 2980,12439
2983
+ 2981,12458
2984
+ 2982,12477
2985
+ 2983,12495
2986
+ 2984,12514
2987
+ 2985,12532
2988
+ 2986,12551
2989
+ 2987,12570
2990
+ 2988,12589
2991
+ 2989,12607
2992
+ 2990,12626
2993
+ 2991,12645
2994
+ 2992,12664
2995
+ 2993,12683
2996
+ 2994,12702
2997
+ 2995,12721
2998
+ 2996,12739
2999
+ 2997,12758
3000
+ 2998,12777
3001
+ 2999,12797
3002
+ 3000,12816
3003
+ 3001,12835
3004
+ 3002,12854
3005
+ 3003,12873
3006
+ 3004,12892
3007
+ 3005,12911
3008
+ 3006,12931
3009
+ 3007,12950
3010
+ 3008,12969
3011
+ 3009,12989
3012
+ 3010,13008
3013
+ 3011,13027
3014
+ 3012,13047
3015
+ 3013,13066
3016
+ 3014,13086
3017
+ 3015,13105
3018
+ 3016,13125
3019
+ 3017,13144
3020
+ 3018,13164
3021
+ 3019,13184
3022
+ 3020,13203
3023
+ 3021,13223
3024
+ 3022,13243
3025
+ 3023,13262
3026
+ 3024,13282
3027
+ 3025,13302
3028
+ 3026,13322
3029
+ 3027,13342
3030
+ 3028,13361
3031
+ 3029,13381
3032
+ 3030,13401
3033
+ 3031,13421
3034
+ 3032,13441
3035
+ 3033,13461
3036
+ 3034,13481
3037
+ 3035,13502
3038
+ 3036,13522
3039
+ 3037,13542
3040
+ 3038,13562
3041
+ 3039,13582
3042
+ 3040,13602
3043
+ 3041,13623
3044
+ 3042,13643
3045
+ 3043,13663
3046
+ 3044,13684
3047
+ 3045,13704
3048
+ 3046,13725
3049
+ 3047,13745
3050
+ 3048,13766
3051
+ 3049,13786
3052
+ 3050,13807
3053
+ 3051,13827
3054
+ 3052,13848
3055
+ 3053,13868
3056
+ 3054,13889
3057
+ 3055,13910
3058
+ 3056,13931
3059
+ 3057,13951
3060
+ 3058,13972
3061
+ 3059,13993
3062
+ 3060,14014
3063
+ 3061,14035
3064
+ 3062,14056
3065
+ 3063,14077
3066
+ 3064,14098
3067
+ 3065,14119
3068
+ 3066,14140
3069
+ 3067,14161
3070
+ 3068,14182
3071
+ 3069,14203
3072
+ 3070,14224
3073
+ 3071,14245
3074
+ 3072,14267
3075
+ 3073,14288
3076
+ 3074,14309
3077
+ 3075,14330
3078
+ 3076,14352
3079
+ 3077,14373
3080
+ 3078,14395
3081
+ 3079,14416
3082
+ 3080,14438
3083
+ 3081,14459
3084
+ 3082,14481
3085
+ 3083,14502
3086
+ 3084,14524
3087
+ 3085,14546
3088
+ 3086,14567
3089
+ 3087,14589
3090
+ 3088,14611
3091
+ 3089,14633
3092
+ 3090,14654
3093
+ 3091,14676
3094
+ 3092,14698
3095
+ 3093,14720
3096
+ 3094,14742
3097
+ 3095,14764
3098
+ 3096,14786
3099
+ 3097,14808
3100
+ 3098,14830
3101
+ 3099,14852
3102
+ 3100,14874
3103
+ 3101,14896
3104
+ 3102,14919
3105
+ 3103,14941
3106
+ 3104,14963
3107
+ 3105,14985
3108
+ 3106,15008
3109
+ 3107,15030
3110
+ 3108,15053
3111
+ 3109,15075
3112
+ 3110,15098
3113
+ 3111,15120
3114
+ 3112,15143
3115
+ 3113,15165
3116
+ 3114,15188
3117
+ 3115,15210
3118
+ 3116,15233
3119
+ 3117,15256
3120
+ 3118,15279
3121
+ 3119,15301
3122
+ 3120,15324
3123
+ 3121,15347
3124
+ 3122,15370
3125
+ 3123,15393
3126
+ 3124,15416
3127
+ 3125,15439
3128
+ 3126,15462
3129
+ 3127,15485
3130
+ 3128,15508
3131
+ 3129,15531
3132
+ 3130,15554
3133
+ 3131,15577
3134
+ 3132,15600
3135
+ 3133,15624
3136
+ 3134,15647
3137
+ 3135,15670
3138
+ 3136,15694
3139
+ 3137,15717
3140
+ 3138,15741
3141
+ 3139,15764
3142
+ 3140,15788
3143
+ 3141,15811
3144
+ 3142,15835
3145
+ 3143,15858
3146
+ 3144,15882
3147
+ 3145,15906
3148
+ 3146,15929
3149
+ 3147,15953
3150
+ 3148,15977
3151
+ 3149,16001
3152
+ 3150,16024
3153
+ 3151,16048
3154
+ 3152,16072
3155
+ 3153,16096
3156
+ 3154,16120
3157
+ 3155,16144
3158
+ 3156,16168
3159
+ 3157,16192
3160
+ 3158,16217
3161
+ 3159,16241
3162
+ 3160,16265
3163
+ 3161,16289
3164
+ 3162,16314
3165
+ 3163,16338
3166
+ 3164,16362
3167
+ 3165,16387
3168
+ 3166,16411
3169
+ 3167,16435
3170
+ 3168,16460
3171
+ 3169,16485
3172
+ 3170,16509
3173
+ 3171,16534
3174
+ 3172,16558
3175
+ 3173,16583
3176
+ 3174,16608
3177
+ 3175,16633
3178
+ 3176,16657
3179
+ 3177,16682
3180
+ 3178,16707
3181
+ 3179,16732
3182
+ 3180,16757
3183
+ 3181,16782
3184
+ 3182,16807
3185
+ 3183,16832
3186
+ 3184,16857
3187
+ 3185,16882
3188
+ 3186,16907
3189
+ 3187,16933
3190
+ 3188,16958
3191
+ 3189,16983
3192
+ 3190,17008
3193
+ 3191,17034
3194
+ 3192,17059
3195
+ 3193,17085
3196
+ 3194,17110
3197
+ 3195,17136
3198
+ 3196,17161
3199
+ 3197,17187
3200
+ 3198,17212
3201
+ 3199,17238
3202
+ 3200,17264
3203
+ 3201,17289
3204
+ 3202,17315
3205
+ 3203,17341
3206
+ 3204,17367
3207
+ 3205,17393
3208
+ 3206,17419
3209
+ 3207,17445
3210
+ 3208,17471
3211
+ 3209,17497
3212
+ 3210,17523
3213
+ 3211,17549
3214
+ 3212,17575
3215
+ 3213,17601
3216
+ 3214,17627
3217
+ 3215,17654
3218
+ 3216,17680
3219
+ 3217,17706
3220
+ 3218,17733
3221
+ 3219,17759
3222
+ 3220,17786
3223
+ 3221,17812
3224
+ 3222,17839
3225
+ 3223,17865
3226
+ 3224,17892
3227
+ 3225,17919
3228
+ 3226,17945
3229
+ 3227,17972
3230
+ 3228,17999
3231
+ 3229,18026
3232
+ 3230,18053
3233
+ 3231,18080
3234
+ 3232,18107
3235
+ 3233,18134
3236
+ 3234,18161
3237
+ 3235,18188
3238
+ 3236,18215
3239
+ 3237,18242
3240
+ 3238,18269
3241
+ 3239,18296
3242
+ 3240,18324
3243
+ 3241,18351
3244
+ 3242,18378
3245
+ 3243,18406
3246
+ 3244,18433
3247
+ 3245,18461
3248
+ 3246,18488
3249
+ 3247,18516
3250
+ 3248,18543
3251
+ 3249,18571
3252
+ 3250,18599
3253
+ 3251,18626
3254
+ 3252,18654
3255
+ 3253,18682
3256
+ 3254,18710
3257
+ 3255,18738
3258
+ 3256,18766
3259
+ 3257,18794
3260
+ 3258,18822
3261
+ 3259,18850
3262
+ 3260,18878
3263
+ 3261,18906
3264
+ 3262,18934
3265
+ 3263,18962
3266
+ 3264,18991
3267
+ 3265,19019
3268
+ 3266,19047
3269
+ 3267,19076
3270
+ 3268,19104
3271
+ 3269,19133
3272
+ 3270,19161
3273
+ 3271,19190
3274
+ 3272,19218
3275
+ 3273,19247
3276
+ 3274,19276
3277
+ 3275,19304
3278
+ 3276,19333
3279
+ 3277,19362
3280
+ 3278,19391
3281
+ 3279,19420
3282
+ 3280,19449
3283
+ 3281,19478
3284
+ 3282,19507
3285
+ 3283,19536
3286
+ 3284,19565
3287
+ 3285,19594
3288
+ 3286,19623
3289
+ 3287,19653
3290
+ 3288,19682
3291
+ 3289,19711
3292
+ 3290,19741
3293
+ 3291,19770
3294
+ 3292,19799
3295
+ 3293,19829
3296
+ 3294,19859
3297
+ 3295,19888
3298
+ 3296,19918
3299
+ 3297,19947
3300
+ 3298,19977
3301
+ 3299,20007
3302
+ 3300,20037
3303
+ 3301,20067
3304
+ 3302,20097
3305
+ 3303,20127
3306
+ 3304,20157
3307
+ 3305,20187
3308
+ 3306,20217
3309
+ 3307,20247
3310
+ 3308,20277
3311
+ 3309,20307
3312
+ 3310,20338
3313
+ 3311,20368
3314
+ 3312,20398
3315
+ 3313,20429
3316
+ 3314,20459
3317
+ 3315,20490
3318
+ 3316,20520
3319
+ 3317,20551
3320
+ 3318,20581
3321
+ 3319,20612
3322
+ 3320,20643
3323
+ 3321,20674
3324
+ 3322,20704
3325
+ 3323,20735
3326
+ 3324,20766
3327
+ 3325,20797
3328
+ 3326,20828
3329
+ 3327,20859
3330
+ 3328,20890
3331
+ 3329,20921
3332
+ 3330,20953
3333
+ 3331,20984
3334
+ 3332,21015
3335
+ 3333,21046
3336
+ 3334,21078
3337
+ 3335,21109
3338
+ 3336,21141
3339
+ 3337,21172
3340
+ 3338,21204
3341
+ 3339,21235
3342
+ 3340,21267
3343
+ 3341,21299
3344
+ 3342,21331
3345
+ 3343,21362
3346
+ 3344,21394
3347
+ 3345,21426
3348
+ 3346,21458
3349
+ 3347,21490
3350
+ 3348,21522
3351
+ 3349,21554
3352
+ 3350,21586
3353
+ 3351,21618
3354
+ 3352,21651
3355
+ 3353,21683
3356
+ 3354,21715
3357
+ 3355,21748
3358
+ 3356,21780
3359
+ 3357,21813
3360
+ 3358,21845
3361
+ 3359,21878
3362
+ 3360,21910
3363
+ 3361,21943
3364
+ 3362,21976
3365
+ 3363,22008
3366
+ 3364,22041
3367
+ 3365,22074
3368
+ 3366,22107
3369
+ 3367,22140
3370
+ 3368,22173
3371
+ 3369,22206
3372
+ 3370,22239
3373
+ 3371,22272
3374
+ 3372,22305
3375
+ 3373,22339
3376
+ 3374,22372
3377
+ 3375,22405
3378
+ 3376,22439
3379
+ 3377,22472
3380
+ 3378,22506
3381
+ 3379,22539
3382
+ 3380,22573
3383
+ 3381,22607
3384
+ 3382,22640
3385
+ 3383,22674
3386
+ 3384,22708
3387
+ 3385,22742
3388
+ 3386,22776
3389
+ 3387,22809
3390
+ 3388,22844
3391
+ 3389,22878
3392
+ 3390,22912
3393
+ 3391,22946
3394
+ 3392,22980
3395
+ 3393,23014
3396
+ 3394,23049
3397
+ 3395,23083
3398
+ 3396,23117
3399
+ 3397,23152
3400
+ 3398,23186
3401
+ 3399,23221
3402
+ 3400,23256
3403
+ 3401,23290
3404
+ 3402,23325
3405
+ 3403,23360
3406
+ 3404,23395
3407
+ 3405,23429
3408
+ 3406,23464
3409
+ 3407,23499
3410
+ 3408,23534
3411
+ 3409,23569
3412
+ 3410,23605
3413
+ 3411,23640
3414
+ 3412,23675
3415
+ 3413,23710
3416
+ 3414,23746
3417
+ 3415,23781
3418
+ 3416,23816
3419
+ 3417,23852
3420
+ 3418,23888
3421
+ 3419,23923
3422
+ 3420,23959
3423
+ 3421,23995
3424
+ 3422,24030
3425
+ 3423,24066
3426
+ 3424,24102
3427
+ 3425,24138
3428
+ 3426,24174
3429
+ 3427,24210
3430
+ 3428,24246
3431
+ 3429,24282
3432
+ 3430,24318
3433
+ 3431,24355
3434
+ 3432,24391
3435
+ 3433,24427
3436
+ 3434,24464
3437
+ 3435,24500
3438
+ 3436,24537
3439
+ 3437,24573
3440
+ 3438,24610
3441
+ 3439,24647
3442
+ 3440,24683
3443
+ 3441,24720
3444
+ 3442,24757
3445
+ 3443,24794
3446
+ 3444,24831
3447
+ 3445,24868
3448
+ 3446,24905
3449
+ 3447,24942
3450
+ 3448,24979
3451
+ 3449,25017
3452
+ 3450,25054
3453
+ 3451,25091
3454
+ 3452,25129
3455
+ 3453,25166
3456
+ 3454,25204
3457
+ 3455,25241
3458
+ 3456,25279
3459
+ 3457,25317
3460
+ 3458,25354
3461
+ 3459,25392
3462
+ 3460,25430
3463
+ 3461,25468
3464
+ 3462,25506
3465
+ 3463,25544
3466
+ 3464,25582
3467
+ 3465,25620
3468
+ 3466,25658
3469
+ 3467,25696
3470
+ 3468,25735
3471
+ 3469,25773
3472
+ 3470,25812
3473
+ 3471,25850
3474
+ 3472,25889
3475
+ 3473,25927
3476
+ 3474,25966
3477
+ 3475,26005
3478
+ 3476,26043
3479
+ 3477,26082
3480
+ 3478,26121
3481
+ 3479,26160
3482
+ 3480,26199
3483
+ 3481,26238
3484
+ 3482,26277
3485
+ 3483,26316
3486
+ 3484,26356
3487
+ 3485,26395
3488
+ 3486,26434
3489
+ 3487,26474
3490
+ 3488,26513
3491
+ 3489,26553
3492
+ 3490,26592
3493
+ 3491,26632
3494
+ 3492,26672
3495
+ 3493,26711
3496
+ 3494,26751
3497
+ 3495,26791
3498
+ 3496,26831
3499
+ 3497,26871
3500
+ 3498,26911
3501
+ 3499,26951
3502
+ 3500,26991
3503
+ 3501,27032
3504
+ 3502,27072
3505
+ 3503,27112
3506
+ 3504,27153
3507
+ 3505,27193
3508
+ 3506,27234
3509
+ 3507,27274
3510
+ 3508,27315
3511
+ 3509,27356
3512
+ 3510,27396
3513
+ 3511,27437
3514
+ 3512,27478
3515
+ 3513,27519
3516
+ 3514,27560
3517
+ 3515,27601
3518
+ 3516,27642
3519
+ 3517,27684
3520
+ 3518,27725
3521
+ 3519,27766
3522
+ 3520,27808
3523
+ 3521,27849
3524
+ 3522,27891
3525
+ 3523,27932
3526
+ 3524,27974
3527
+ 3525,28015
3528
+ 3526,28057
3529
+ 3527,28099
3530
+ 3528,28141
3531
+ 3529,28183
3532
+ 3530,28225
3533
+ 3531,28267
3534
+ 3532,28309
3535
+ 3533,28351
3536
+ 3534,28394
3537
+ 3535,28436
3538
+ 3536,28478
3539
+ 3537,28521
3540
+ 3538,28563
3541
+ 3539,28606
3542
+ 3540,28649
3543
+ 3541,28691
3544
+ 3542,28734
3545
+ 3543,28777
3546
+ 3544,28820
3547
+ 3545,28863
3548
+ 3546,28906
3549
+ 3547,28949
3550
+ 3548,28992
3551
+ 3549,29035
3552
+ 3550,29079
3553
+ 3551,29122
3554
+ 3552,29165
3555
+ 3553,29209
3556
+ 3554,29252
3557
+ 3555,29296
3558
+ 3556,29340
3559
+ 3557,29383
3560
+ 3558,29427
3561
+ 3559,29471
3562
+ 3560,29515
3563
+ 3561,29559
3564
+ 3562,29603
3565
+ 3563,29647
3566
+ 3564,29691
3567
+ 3565,29736
3568
+ 3566,29780
3569
+ 3567,29824
3570
+ 3568,29869
3571
+ 3569,29913
3572
+ 3570,29958
3573
+ 3571,30003
3574
+ 3572,30047
3575
+ 3573,30092
3576
+ 3574,30137
3577
+ 3575,30182
3578
+ 3576,30227
3579
+ 3577,30272
3580
+ 3578,30317
3581
+ 3579,30362
3582
+ 3580,30408
3583
+ 3581,30453
3584
+ 3582,30498
3585
+ 3583,30544
3586
+ 3584,30589
3587
+ 3585,30635
3588
+ 3586,30681
3589
+ 3587,30726
3590
+ 3588,30772
3591
+ 3589,30818
3592
+ 3590,30864
3593
+ 3591,30910
3594
+ 3592,30956
3595
+ 3593,31002
3596
+ 3594,31048
3597
+ 3595,31095
3598
+ 3596,31141
3599
+ 3597,31187
3600
+ 3598,31234
3601
+ 3599,31281
3602
+ 3600,31327
3603
+ 3601,31374
3604
+ 3602,31421
3605
+ 3603,31468
3606
+ 3604,31514
3607
+ 3605,31561
3608
+ 3606,31608
3609
+ 3607,31656
3610
+ 3608,31703
3611
+ 3609,31750
3612
+ 3610,31797
3613
+ 3611,31845
3614
+ 3612,31892
3615
+ 3613,31940
3616
+ 3614,31987
3617
+ 3615,32035
3618
+ 3616,32083
3619
+ 3617,32131
3620
+ 3618,32179
3621
+ 3619,32227
3622
+ 3620,32275
3623
+ 3621,32323
3624
+ 3622,32371
3625
+ 3623,32419
3626
+ 3624,32467
3627
+ 3625,32516
3628
+ 3626,32564
3629
+ 3627,32613
3630
+ 3628,32662
3631
+ 3629,32710
3632
+ 3630,32759
3633
+ 3631,32808
3634
+ 3632,32857
3635
+ 3633,32906
3636
+ 3634,32955
3637
+ 3635,33004
3638
+ 3636,33053
3639
+ 3637,33102
3640
+ 3638,33152
3641
+ 3639,33201
3642
+ 3640,33251
3643
+ 3641,33300
3644
+ 3642,33350
3645
+ 3643,33400
3646
+ 3644,33449
3647
+ 3645,33499
3648
+ 3646,33549
3649
+ 3647,33599
3650
+ 3648,33649
3651
+ 3649,33699
3652
+ 3650,33750
3653
+ 3651,33800
3654
+ 3652,33850
3655
+ 3653,33901
3656
+ 3654,33951
3657
+ 3655,34002
3658
+ 3656,34053
3659
+ 3657,34104
3660
+ 3658,34154
3661
+ 3659,34205
3662
+ 3660,34256
3663
+ 3661,34307
3664
+ 3662,34358
3665
+ 3663,34410
3666
+ 3664,34461
3667
+ 3665,34512
3668
+ 3666,34564
3669
+ 3667,34615
3670
+ 3668,34667
3671
+ 3669,34719
3672
+ 3670,34770
3673
+ 3671,34822
3674
+ 3672,34874
3675
+ 3673,34926
3676
+ 3674,34978
3677
+ 3675,35030
3678
+ 3676,35083
3679
+ 3677,35135
3680
+ 3678,35187
3681
+ 3679,35240
3682
+ 3680,35292
3683
+ 3681,35345
3684
+ 3682,35398
3685
+ 3683,35450
3686
+ 3684,35503
3687
+ 3685,35556
3688
+ 3686,35609
3689
+ 3687,35662
3690
+ 3688,35715
3691
+ 3689,35769
3692
+ 3690,35822
3693
+ 3691,35875
3694
+ 3692,35929
3695
+ 3693,35982
3696
+ 3694,36036
3697
+ 3695,36090
3698
+ 3696,36144
3699
+ 3697,36197
3700
+ 3698,36251
3701
+ 3699,36305
3702
+ 3700,36360
3703
+ 3701,36414
3704
+ 3702,36468
3705
+ 3703,36522
3706
+ 3704,36577
3707
+ 3705,36631
3708
+ 3706,36686
3709
+ 3707,36741
3710
+ 3708,36796
3711
+ 3709,36850
3712
+ 3710,36905
3713
+ 3711,36960
3714
+ 3712,37015
3715
+ 3713,37071
3716
+ 3714,37126
3717
+ 3715,37181
3718
+ 3716,37237
3719
+ 3717,37292
3720
+ 3718,37348
3721
+ 3719,37403
3722
+ 3720,37459
3723
+ 3721,37515
3724
+ 3722,37571
3725
+ 3723,37627
3726
+ 3724,37683
3727
+ 3725,37739
3728
+ 3726,37796
3729
+ 3727,37852
3730
+ 3728,37908
3731
+ 3729,37965
3732
+ 3730,38021
3733
+ 3731,38078
3734
+ 3732,38135
3735
+ 3733,38192
3736
+ 3734,38249
3737
+ 3735,38306
3738
+ 3736,38363
3739
+ 3737,38420
3740
+ 3738,38477
3741
+ 3739,38535
3742
+ 3740,38592
3743
+ 3741,38650
3744
+ 3742,38707
3745
+ 3743,38765
3746
+ 3744,38823
3747
+ 3745,38881
3748
+ 3746,38939
3749
+ 3747,38997
3750
+ 3748,39055
3751
+ 3749,39113
3752
+ 3750,39171
3753
+ 3751,39230
3754
+ 3752,39288
3755
+ 3753,39347
3756
+ 3754,39405
3757
+ 3755,39464
3758
+ 3756,39523
3759
+ 3757,39582
3760
+ 3758,39641
3761
+ 3759,39700
3762
+ 3760,39759
3763
+ 3761,39818
3764
+ 3762,39878
3765
+ 3763,39937
3766
+ 3764,39997
3767
+ 3765,40056
3768
+ 3766,40116
3769
+ 3767,40176
3770
+ 3768,40236
3771
+ 3769,40296
3772
+ 3770,40356
3773
+ 3771,40416
3774
+ 3772,40476
3775
+ 3773,40537
3776
+ 3774,40597
3777
+ 3775,40658
3778
+ 3776,40718
3779
+ 3777,40779
3780
+ 3778,40840
3781
+ 3779,40901
3782
+ 3780,40962
3783
+ 3781,41023
3784
+ 3782,41084
3785
+ 3783,41145
3786
+ 3784,41206
3787
+ 3785,41268
3788
+ 3786,41329
3789
+ 3787,41391
3790
+ 3788,41453
3791
+ 3789,41515
3792
+ 3790,41576
3793
+ 3791,41638
3794
+ 3792,41700
3795
+ 3793,41763
3796
+ 3794,41825
3797
+ 3795,41887
3798
+ 3796,41950
3799
+ 3797,42012
3800
+ 3798,42075
3801
+ 3799,42138
3802
+ 3800,42200
3803
+ 3801,42263
3804
+ 3802,42326
3805
+ 3803,42389
3806
+ 3804,42453
3807
+ 3805,42516
3808
+ 3806,42579
3809
+ 3807,42643
3810
+ 3808,42706
3811
+ 3809,42770
3812
+ 3810,42834
3813
+ 3811,42898
3814
+ 3812,42962
3815
+ 3813,43026
3816
+ 3814,43090
3817
+ 3815,43154
3818
+ 3816,43218
3819
+ 3817,43283
3820
+ 3818,43347
3821
+ 3819,43412
3822
+ 3820,43477
3823
+ 3821,43542
3824
+ 3822,43606
3825
+ 3823,43671
3826
+ 3824,43737
3827
+ 3825,43802
3828
+ 3826,43867
3829
+ 3827,43932
3830
+ 3828,43998
3831
+ 3829,44064
3832
+ 3830,44129
3833
+ 3831,44195
3834
+ 3832,44261
3835
+ 3833,44327
3836
+ 3834,44393
3837
+ 3835,44459
3838
+ 3836,44525
3839
+ 3837,44592
3840
+ 3838,44658
3841
+ 3839,44725
3842
+ 3840,44792
3843
+ 3841,44858
3844
+ 3842,44925
3845
+ 3843,44992
3846
+ 3844,45059
3847
+ 3845,45126
3848
+ 3846,45194
3849
+ 3847,45261
3850
+ 3848,45329
3851
+ 3849,45396
3852
+ 3850,45464
3853
+ 3851,45532
3854
+ 3852,45599
3855
+ 3853,45667
3856
+ 3854,45736
3857
+ 3855,45804
3858
+ 3856,45872
3859
+ 3857,45940
3860
+ 3858,46009
3861
+ 3859,46077
3862
+ 3860,46146
3863
+ 3861,46215
3864
+ 3862,46284
3865
+ 3863,46353
3866
+ 3864,46422
3867
+ 3865,46491
3868
+ 3866,46561
3869
+ 3867,46630
3870
+ 3868,46699
3871
+ 3869,46769
3872
+ 3870,46839
3873
+ 3871,46909
3874
+ 3872,46979
3875
+ 3873,47049
3876
+ 3874,47119
3877
+ 3875,47189
3878
+ 3876,47259
3879
+ 3877,47330
3880
+ 3878,47400
3881
+ 3879,47471
3882
+ 3880,47542
3883
+ 3881,47613
3884
+ 3882,47684
3885
+ 3883,47755
3886
+ 3884,47826
3887
+ 3885,47897
3888
+ 3886,47969
3889
+ 3887,48040
3890
+ 3888,48112
3891
+ 3889,48183
3892
+ 3890,48255
3893
+ 3891,48327
3894
+ 3892,48399
3895
+ 3893,48471
3896
+ 3894,48544
3897
+ 3895,48616
3898
+ 3896,48689
3899
+ 3897,48761
3900
+ 3898,48834
3901
+ 3899,48907
3902
+ 3900,48980
3903
+ 3901,49053
3904
+ 3902,49126
3905
+ 3903,49199
3906
+ 3904,49272
3907
+ 3905,49346
3908
+ 3906,49419
3909
+ 3907,49493
3910
+ 3908,49567
3911
+ 3909,49641
3912
+ 3910,49715
3913
+ 3911,49789
3914
+ 3912,49863
3915
+ 3913,49937
3916
+ 3914,50012
3917
+ 3915,50086
3918
+ 3916,50161
3919
+ 3917,50236
3920
+ 3918,50311
3921
+ 3919,50386
3922
+ 3920,50461
3923
+ 3921,50536
3924
+ 3922,50611
3925
+ 3923,50687
3926
+ 3924,50762
3927
+ 3925,50838
3928
+ 3926,50914
3929
+ 3927,50990
3930
+ 3928,51066
3931
+ 3929,51142
3932
+ 3930,51218
3933
+ 3931,51295
3934
+ 3932,51371
3935
+ 3933,51448
3936
+ 3934,51524
3937
+ 3935,51601
3938
+ 3936,51678
3939
+ 3937,51755
3940
+ 3938,51832
3941
+ 3939,51910
3942
+ 3940,51987
3943
+ 3941,52064
3944
+ 3942,52142
3945
+ 3943,52220
3946
+ 3944,52298
3947
+ 3945,52376
3948
+ 3946,52454
3949
+ 3947,52532
3950
+ 3948,52610
3951
+ 3949,52689
3952
+ 3950,52767
3953
+ 3951,52846
3954
+ 3952,52925
3955
+ 3953,53004
3956
+ 3954,53083
3957
+ 3955,53162
3958
+ 3956,53241
3959
+ 3957,53320
3960
+ 3958,53400
3961
+ 3959,53479
3962
+ 3960,53559
3963
+ 3961,53639
3964
+ 3962,53719
3965
+ 3963,53799
3966
+ 3964,53879
3967
+ 3965,53960
3968
+ 3966,54040
3969
+ 3967,54121
3970
+ 3968,54201
3971
+ 3969,54282
3972
+ 3970,54363
3973
+ 3971,54444
3974
+ 3972,54525
3975
+ 3973,54607
3976
+ 3974,54688
3977
+ 3975,54769
3978
+ 3976,54851
3979
+ 3977,54933
3980
+ 3978,55015
3981
+ 3979,55097
3982
+ 3980,55179
3983
+ 3981,55261
3984
+ 3982,55344
3985
+ 3983,55426
3986
+ 3984,55509
3987
+ 3985,55592
3988
+ 3986,55674
3989
+ 3987,55757
3990
+ 3988,55841
3991
+ 3989,55924
3992
+ 3990,56007
3993
+ 3991,56091
3994
+ 3992,56174
3995
+ 3993,56258
3996
+ 3994,56342
3997
+ 3995,56426
3998
+ 3996,56510
3999
+ 3997,56594
4000
+ 3998,56679
4001
+ 3999,56763
4002
+ 4000,56848
4003
+ 4001,56932
4004
+ 4002,57017
4005
+ 4003,57102
4006
+ 4004,57187
4007
+ 4005,57273
4008
+ 4006,57358
4009
+ 4007,57444
4010
+ 4008,57529
4011
+ 4009,57615
4012
+ 4010,57701
4013
+ 4011,57787
4014
+ 4012,57873
4015
+ 4013,57959
4016
+ 4014,58046
4017
+ 4015,58132
4018
+ 4016,58219
4019
+ 4017,58306
4020
+ 4018,58393
4021
+ 4019,58480
4022
+ 4020,58567
4023
+ 4021,58654
4024
+ 4022,58742
4025
+ 4023,58829
4026
+ 4024,58917
4027
+ 4025,59005
4028
+ 4026,59093
4029
+ 4027,59181
4030
+ 4028,59269
4031
+ 4029,59358
4032
+ 4030,59446
4033
+ 4031,59535
4034
+ 4032,59623
4035
+ 4033,59712
4036
+ 4034,59801
4037
+ 4035,59890
4038
+ 4036,59980
4039
+ 4037,60069
4040
+ 4038,60159
4041
+ 4039,60248
4042
+ 4040,60338
4043
+ 4041,60428
4044
+ 4042,60518
4045
+ 4043,60608
4046
+ 4044,60699
4047
+ 4045,60789
4048
+ 4046,60880
4049
+ 4047,60971
4050
+ 4048,61062
4051
+ 4049,61153
4052
+ 4050,61244
4053
+ 4051,61335
4054
+ 4052,61427
4055
+ 4053,61518
4056
+ 4054,61610
4057
+ 4055,61702
4058
+ 4056,61794
4059
+ 4057,61886
4060
+ 4058,61978
4061
+ 4059,62070
4062
+ 4060,62163
4063
+ 4061,62256
4064
+ 4062,62349
4065
+ 4063,62441
4066
+ 4064,62535
4067
+ 4065,62628
4068
+ 4066,62721
4069
+ 4067,62815
4070
+ 4068,62908
4071
+ 4069,63002
4072
+ 4070,63096
4073
+ 4071,63190
4074
+ 4072,63284
4075
+ 4073,63379
4076
+ 4074,63473
4077
+ 4075,63568
4078
+ 4076,63663
4079
+ 4077,63757
4080
+ 4078,63852
4081
+ 4079,63948
4082
+ 4080,64043
4083
+ 4081,64138
4084
+ 4082,64234
4085
+ 4083,64330
4086
+ 4084,64426
4087
+ 4085,64522
4088
+ 4086,64618
4089
+ 4087,64714
4090
+ 4088,64811
4091
+ 4089,64907
4092
+ 4090,65004
4093
+ 4091,65101
4094
+ 4092,65198
4095
+ 4093,65295
4096
+ 4094,65393
4097
+ 4095,65490