imap-processing 0.12.0__py3-none-any.whl → 0.13.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of imap-processing might be problematic. Click here for more details.
- imap_processing/__init__.py +1 -0
- imap_processing/_version.py +2 -2
- imap_processing/ccsds/ccsds_data.py +1 -2
- imap_processing/ccsds/excel_to_xtce.py +1 -2
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +18 -12
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +569 -0
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +1846 -128
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +5 -5
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +20 -1
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +6 -4
- imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +3 -3
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +15 -0
- imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +22 -0
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +16 -0
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +178 -5
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +5045 -41
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +33 -19
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +8 -48
- imap_processing/cdf/utils.py +41 -33
- imap_processing/cli.py +463 -234
- imap_processing/codice/codice_l1a.py +260 -47
- imap_processing/codice/codice_l1b.py +51 -152
- imap_processing/codice/constants.py +38 -1
- imap_processing/ena_maps/ena_maps.py +658 -65
- imap_processing/ena_maps/utils/coordinates.py +1 -1
- imap_processing/ena_maps/utils/spatial_utils.py +10 -5
- imap_processing/glows/l1a/glows_l1a.py +28 -99
- imap_processing/glows/l1a/glows_l1a_data.py +2 -2
- imap_processing/glows/l1b/glows_l1b.py +1 -4
- imap_processing/glows/l1b/glows_l1b_data.py +1 -3
- imap_processing/glows/l2/glows_l2.py +2 -5
- imap_processing/hi/l1a/hi_l1a.py +31 -12
- imap_processing/hi/l1b/hi_l1b.py +80 -43
- imap_processing/hi/l1c/hi_l1c.py +12 -16
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-sector-dt0-factors_20250219_v002.csv +81 -0
- imap_processing/hit/hit_utils.py +93 -35
- imap_processing/hit/l0/decom_hit.py +3 -1
- imap_processing/hit/l1a/hit_l1a.py +30 -25
- imap_processing/hit/l1b/constants.py +6 -2
- imap_processing/hit/l1b/hit_l1b.py +279 -318
- imap_processing/hit/l2/constants.py +37 -0
- imap_processing/hit/l2/hit_l2.py +373 -264
- imap_processing/ialirt/l0/parse_mag.py +138 -10
- imap_processing/ialirt/l0/process_swapi.py +69 -0
- imap_processing/ialirt/l0/process_swe.py +318 -22
- imap_processing/ialirt/packet_definitions/ialirt.xml +216 -212
- imap_processing/ialirt/packet_definitions/ialirt_codicehi.xml +1 -1
- imap_processing/ialirt/packet_definitions/ialirt_codicelo.xml +1 -1
- imap_processing/ialirt/packet_definitions/ialirt_swapi.xml +14 -14
- imap_processing/ialirt/utils/grouping.py +1 -1
- imap_processing/idex/idex_constants.py +9 -1
- imap_processing/idex/idex_l0.py +22 -8
- imap_processing/idex/idex_l1a.py +75 -44
- imap_processing/idex/idex_l1b.py +9 -8
- imap_processing/idex/idex_l2a.py +79 -45
- imap_processing/idex/idex_l2b.py +120 -0
- imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +33 -39
- imap_processing/idex/packet_definitions/idex_housekeeping_packet_definition.xml +9130 -0
- imap_processing/lo/l0/lo_science.py +1 -2
- imap_processing/lo/l1a/lo_l1a.py +1 -4
- imap_processing/lo/l1b/lo_l1b.py +527 -6
- imap_processing/lo/l1b/tof_conversions.py +11 -0
- imap_processing/lo/l1c/lo_l1c.py +1 -4
- imap_processing/mag/constants.py +43 -0
- imap_processing/mag/imap_mag_sdc_configuration_v001.py +8 -0
- imap_processing/mag/l1a/mag_l1a.py +2 -9
- imap_processing/mag/l1a/mag_l1a_data.py +10 -10
- imap_processing/mag/l1b/mag_l1b.py +84 -17
- imap_processing/mag/l1c/interpolation_methods.py +180 -3
- imap_processing/mag/l1c/mag_l1c.py +236 -70
- imap_processing/mag/l2/mag_l2.py +140 -0
- imap_processing/mag/l2/mag_l2_data.py +288 -0
- imap_processing/spacecraft/quaternions.py +1 -3
- imap_processing/spice/geometry.py +3 -3
- imap_processing/spice/kernels.py +0 -276
- imap_processing/spice/pointing_frame.py +257 -0
- imap_processing/spice/repoint.py +48 -19
- imap_processing/spice/spin.py +38 -33
- imap_processing/spice/time.py +24 -0
- imap_processing/swapi/l1/swapi_l1.py +16 -12
- imap_processing/swapi/l2/swapi_l2.py +116 -4
- imap_processing/swapi/swapi_utils.py +32 -0
- imap_processing/swe/l1a/swe_l1a.py +2 -9
- imap_processing/swe/l1a/swe_science.py +8 -11
- imap_processing/swe/l1b/swe_l1b.py +898 -23
- imap_processing/swe/l2/swe_l2.py +21 -77
- imap_processing/swe/utils/swe_constants.py +1 -0
- imap_processing/tests/ccsds/test_excel_to_xtce.py +1 -1
- imap_processing/tests/cdf/test_utils.py +14 -16
- imap_processing/tests/codice/conftest.py +44 -33
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-pha_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-pha_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/test_codice_l1a.py +20 -11
- imap_processing/tests/codice/test_codice_l1b.py +6 -7
- imap_processing/tests/conftest.py +78 -22
- imap_processing/tests/ena_maps/test_ena_maps.py +462 -33
- imap_processing/tests/ena_maps/test_spatial_utils.py +1 -1
- imap_processing/tests/glows/conftest.py +10 -14
- imap_processing/tests/glows/test_glows_decom.py +4 -4
- imap_processing/tests/glows/test_glows_l1a_cdf.py +6 -27
- imap_processing/tests/glows/test_glows_l1a_data.py +6 -8
- imap_processing/tests/glows/test_glows_l1b.py +11 -11
- imap_processing/tests/glows/test_glows_l1b_data.py +5 -5
- imap_processing/tests/glows/test_glows_l2.py +2 -8
- imap_processing/tests/hi/conftest.py +1 -1
- imap_processing/tests/hi/test_hi_l1b.py +10 -12
- imap_processing/tests/hi/test_hi_l1c.py +27 -24
- imap_processing/tests/hi/test_l1a.py +7 -9
- imap_processing/tests/hi/test_science_direct_event.py +2 -2
- imap_processing/tests/hit/helpers/l1_validation.py +44 -43
- imap_processing/tests/hit/test_decom_hit.py +1 -1
- imap_processing/tests/hit/test_hit_l1a.py +9 -9
- imap_processing/tests/hit/test_hit_l1b.py +172 -217
- imap_processing/tests/hit/test_hit_l2.py +380 -118
- imap_processing/tests/hit/test_hit_utils.py +122 -55
- imap_processing/tests/hit/validation_data/hit_l1b_standard_sample2_nsrl_v4_3decimals.csv +62 -62
- imap_processing/tests/hit/validation_data/sci_sample_raw.csv +1 -1
- imap_processing/tests/ialirt/unit/test_decom_ialirt.py +16 -81
- imap_processing/tests/ialirt/unit/test_grouping.py +2 -2
- imap_processing/tests/ialirt/unit/test_parse_mag.py +71 -16
- imap_processing/tests/ialirt/unit/test_process_codicehi.py +3 -3
- imap_processing/tests/ialirt/unit/test_process_codicelo.py +3 -10
- imap_processing/tests/ialirt/unit/test_process_ephemeris.py +4 -4
- imap_processing/tests/ialirt/unit/test_process_hit.py +3 -3
- imap_processing/tests/ialirt/unit/test_process_swapi.py +24 -16
- imap_processing/tests/ialirt/unit/test_process_swe.py +115 -7
- imap_processing/tests/idex/conftest.py +72 -7
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20241206_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20250108_v001.pkts +0 -0
- imap_processing/tests/idex/test_idex_l0.py +33 -11
- imap_processing/tests/idex/test_idex_l1a.py +50 -23
- imap_processing/tests/idex/test_idex_l1b.py +104 -25
- imap_processing/tests/idex/test_idex_l2a.py +48 -32
- imap_processing/tests/idex/test_idex_l2b.py +93 -0
- imap_processing/tests/lo/test_lo_l1a.py +3 -3
- imap_processing/tests/lo/test_lo_l1b.py +371 -6
- imap_processing/tests/lo/test_lo_l1c.py +1 -1
- imap_processing/tests/lo/test_lo_science.py +6 -7
- imap_processing/tests/lo/test_star_sensor.py +1 -1
- imap_processing/tests/mag/conftest.py +58 -9
- imap_processing/tests/mag/test_mag_decom.py +4 -3
- imap_processing/tests/mag/test_mag_l1a.py +13 -7
- imap_processing/tests/mag/test_mag_l1b.py +9 -9
- imap_processing/tests/mag/test_mag_l1c.py +151 -47
- imap_processing/tests/mag/test_mag_l2.py +130 -0
- imap_processing/tests/mag/test_mag_validation.py +144 -7
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-out.csv +1857 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-out.csv +1857 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-out.csv +1793 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-out.csv +1793 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-burst-in.csv +2561 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-in.csv +961 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-out.csv +1539 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-in.csv +1921 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-out.csv +2499 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-in.csv +865 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-out.csv +1196 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-in.csv +1729 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-out.csv +3053 -0
- imap_processing/tests/mag/validation/L2/imap_mag_l1b_norm-mago_20251017_v002.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l2-calibration-matrices_20251017_v004.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l2-offsets-norm_20251017_20251017_v001.cdf +0 -0
- imap_processing/tests/spacecraft/test_quaternions.py +1 -1
- imap_processing/tests/spice/test_data/fake_repoint_data.csv +4 -4
- imap_processing/tests/spice/test_data/fake_spin_data.csv +11 -11
- imap_processing/tests/spice/test_geometry.py +3 -3
- imap_processing/tests/spice/test_kernels.py +1 -200
- imap_processing/tests/spice/test_pointing_frame.py +185 -0
- imap_processing/tests/spice/test_repoint.py +20 -10
- imap_processing/tests/spice/test_spin.py +50 -9
- imap_processing/tests/spice/test_time.py +14 -0
- imap_processing/tests/swapi/lut/imap_swapi_esa-unit-conversion_20250211_v000.csv +73 -0
- imap_processing/tests/swapi/lut/imap_swapi_lut-notes_20250211_v000.csv +1025 -0
- imap_processing/tests/swapi/test_swapi_l1.py +7 -9
- imap_processing/tests/swapi/test_swapi_l2.py +180 -8
- imap_processing/tests/swe/lut/checker-board-indices.csv +24 -0
- imap_processing/tests/swe/lut/imap_swe_esa-lut_20250301_v000.csv +385 -0
- imap_processing/tests/swe/lut/imap_swe_l1b-in-flight-cal_20240510_20260716_v000.csv +3 -0
- imap_processing/tests/swe/test_swe_l1a.py +6 -6
- imap_processing/tests/swe/test_swe_l1a_science.py +3 -3
- imap_processing/tests/swe/test_swe_l1b.py +162 -24
- imap_processing/tests/swe/test_swe_l2.py +82 -102
- imap_processing/tests/test_cli.py +171 -88
- imap_processing/tests/test_utils.py +2 -1
- imap_processing/tests/ultra/data/mock_data.py +49 -21
- imap_processing/tests/ultra/unit/conftest.py +53 -70
- imap_processing/tests/ultra/unit/test_badtimes.py +2 -4
- imap_processing/tests/ultra/unit/test_cullingmask.py +4 -6
- imap_processing/tests/ultra/unit/test_de.py +3 -10
- imap_processing/tests/ultra/unit/test_decom_apid_880.py +27 -76
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +15 -16
- imap_processing/tests/ultra/unit/test_decom_apid_883.py +12 -10
- imap_processing/tests/ultra/unit/test_decom_apid_896.py +202 -55
- imap_processing/tests/ultra/unit/test_lookup_utils.py +23 -1
- imap_processing/tests/ultra/unit/test_spacecraft_pset.py +3 -4
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +84 -307
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +30 -12
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +2 -2
- imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +4 -1
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +163 -29
- imap_processing/tests/ultra/unit/test_ultra_l1c.py +5 -5
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +32 -43
- imap_processing/tests/ultra/unit/test_ultra_l2.py +230 -0
- imap_processing/ultra/constants.py +1 -1
- imap_processing/ultra/l0/decom_tools.py +21 -34
- imap_processing/ultra/l0/decom_ultra.py +168 -204
- imap_processing/ultra/l0/ultra_utils.py +152 -136
- imap_processing/ultra/l1a/ultra_l1a.py +55 -243
- imap_processing/ultra/l1b/badtimes.py +1 -4
- imap_processing/ultra/l1b/cullingmask.py +2 -6
- imap_processing/ultra/l1b/de.py +62 -47
- imap_processing/ultra/l1b/extendedspin.py +8 -4
- imap_processing/ultra/l1b/lookup_utils.py +72 -9
- imap_processing/ultra/l1b/ultra_l1b.py +3 -8
- imap_processing/ultra/l1b/ultra_l1b_culling.py +4 -4
- imap_processing/ultra/l1b/ultra_l1b_extended.py +236 -78
- imap_processing/ultra/l1c/histogram.py +2 -6
- imap_processing/ultra/l1c/spacecraft_pset.py +2 -4
- imap_processing/ultra/l1c/ultra_l1c.py +1 -5
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +107 -60
- imap_processing/ultra/l2/ultra_l2.py +299 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -2
- imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
- imap_processing/ultra/packet_definitions/README.md +38 -0
- imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +15302 -482
- imap_processing/ultra/utils/ultra_l1_utils.py +13 -12
- imap_processing/utils.py +1 -1
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/METADATA +3 -2
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/RECORD +264 -225
- imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +0 -154
- imap_processing/mag/imap_mag_sdc-configuration_v001.yaml +0 -6
- imap_processing/mag/l1b/__init__.py +0 -0
- imap_processing/swe/l1b/swe_esa_lookup_table.csv +0 -1441
- imap_processing/swe/l1b/swe_l1b_science.py +0 -699
- imap_processing/tests/swe/test_swe_l1b_science.py +0 -103
- imap_processing/ultra/lookup_tables/dps_sensitivity45.cdf +0 -0
- imap_processing/ultra/lookup_tables/ultra_90_dps_exposure_compressed.cdf +0 -0
- /imap_processing/idex/packet_definitions/{idex_packet_definition.xml → idex_science_packet_definition.xml} +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/20240827095047_SWE_IALIRT_packet.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971383-404.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971384-405.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971385-406.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971386-407.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971387-408.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971388-409.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971389-410.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971390-411.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971391-412.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/BinLog CCSDS_FRAG_TLM_20240826_152323Z_IALIRT_data_for_SDC.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/IALiRT Raw Packet Telemetry.txt +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/apid01152.tlm +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/eu_SWP_IAL_20240826_152033.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hi_fsw_view_1_ccsds.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.ccsds +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/idle_export_eu.SWE_IALIRT_20240827_093852.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_hi-ialirt_20240523200000_v0.0.0.cdf +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/sample_decoded_i-alirt_data.csv +0 -0
- /imap_processing/tests/mag/validation/{imap_calibration_mag_20240229_v01.cdf → calibration/imap_mag_l1b-calibration_20240229_v001.cdf} +0 -0
- /imap_processing/{swe/l1b/engineering_unit_convert_table.csv → tests/swe/lut/imap_swe_eu-conversion_20240510_v000.csv} +0 -0
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/LICENSE +0 -0
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/WHEEL +0 -0
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,1025 @@
|
|
|
1
|
+
ESA Index Number,ESA Voltage,Energy,Lower Energy,Upper Energy,ESA Range,ESA DAC (Dec),ESA DAC (Hex)
|
|
2
|
+
0,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
3
|
+
1,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
4
|
+
2,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
5
|
+
3,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
6
|
+
4,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
7
|
+
5,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
8
|
+
6,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
9
|
+
7,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
10
|
+
8,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
11
|
+
9,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
12
|
+
10,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
13
|
+
11,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
14
|
+
12,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
15
|
+
13,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
16
|
+
14,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
17
|
+
15,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
18
|
+
16,10240,"19,251","18,433","20,069",1,4094,1FFE
|
|
19
|
+
17,10186,"19,149","18,335","19,963",1,4072,1FE8
|
|
20
|
+
18,10132,"19,048","18,238","19,857",1,4051,1FD3
|
|
21
|
+
19,10078,"18,947","18,141","19,752",1,4029,1FBD
|
|
22
|
+
20,10025,"18,846","18,045","19,647",1,4008,1FA8
|
|
23
|
+
21,9971,"18,746","17,950","19,543",1,3987,1F93
|
|
24
|
+
22,9919,"18,647","17,854","19,439",1,3966,1F7E
|
|
25
|
+
23,9866,"18,548","17,760","19,336",1,3945,1F69
|
|
26
|
+
24,9814,"18,450","17,666","19,234",1,3924,1F54
|
|
27
|
+
25,9762,"18,352","17,572","19,132",1,3903,1F3F
|
|
28
|
+
26,9710,"18,255","17,479","19,030",1,3882,1F2A
|
|
29
|
+
27,9658,"18,158","17,386","18,930",1,3862,1F16
|
|
30
|
+
28,9607,"18,062","17,294","18,829",1,3841,1F01
|
|
31
|
+
29,9556,"17,966","17,202","18,729",1,3821,1EED
|
|
32
|
+
30,9506,"17,871","17,111","18,630",1,3801,1ED9
|
|
33
|
+
31,9455,"17,776","17,020","18,531",1,3781,1EC5
|
|
34
|
+
32,9405,"17,682","16,930","18,433",1,3761,1EB1
|
|
35
|
+
33,9355,"17,588","16,840","18,335",1,3741,1E9D
|
|
36
|
+
34,9306,"17,495","16,751","18,238",1,3721,1E89
|
|
37
|
+
35,9256,"17,402","16,662","18,141",1,3701,1E75
|
|
38
|
+
36,9207,"17,310","16,574","18,045",1,3682,1E62
|
|
39
|
+
37,9158,"17,218","16,486","17,950",1,3662,1E4E
|
|
40
|
+
38,9110,"17,127","16,399","17,854",1,3643,1E3B
|
|
41
|
+
39,9062,"17,036","16,312","17,760",1,3624,1E28
|
|
42
|
+
40,9014,"16,945","16,225","17,666",1,3604,1E14
|
|
43
|
+
41,8966,"16,856","16,139","17,572",1,3585,1E01
|
|
44
|
+
42,8918,"16,766","16,054","17,479",1,3566,1DEE
|
|
45
|
+
43,8871,"16,677","15,969","17,386",1,3547,1DDB
|
|
46
|
+
44,8824,"16,589","15,884","17,294",1,3529,1DC9
|
|
47
|
+
45,8777,"16,501","15,800","17,202",1,3510,1DB6
|
|
48
|
+
46,8731,"16,413","15,716","17,111",1,3491,1DA3
|
|
49
|
+
47,8684,"16,326","15,633","17,020",1,3473,1D91
|
|
50
|
+
48,8638,"16,240","15,550","16,930",1,3455,1D7F
|
|
51
|
+
49,8592,"16,154","15,467","16,840",1,3436,1D6C
|
|
52
|
+
50,8547,"16,068","15,385","16,751",1,3418,1D5A
|
|
53
|
+
51,8502,"15,983","15,304","16,662",1,3400,1D48
|
|
54
|
+
52,8457,"15,898","15,223","16,574",1,3382,1D36
|
|
55
|
+
53,8412,"15,814","15,142","16,486",1,3364,1D24
|
|
56
|
+
54,8367,"15,730","15,062","16,399",1,3346,1D12
|
|
57
|
+
55,8323,"15,647","14,982","16,312",1,3329,1D01
|
|
58
|
+
56,8279,"15,564","14,902","16,225",1,3311,1CEF
|
|
59
|
+
57,8235,"15,481","14,823","16,139",1,3294,1CDE
|
|
60
|
+
58,8191,"15,399","14,745","16,054",1,3276,1CCC
|
|
61
|
+
59,8148,"15,318","14,667","15,969",1,3259,1CBB
|
|
62
|
+
60,8104,"15,236","14,589","15,884",1,3242,1CAA
|
|
63
|
+
61,8061,"15,156","14,511","15,800",1,3224,1C98
|
|
64
|
+
62,8019,"15,075","14,435","15,716",1,3207,1C87
|
|
65
|
+
63,7976,"14,995","14,358","15,633",1,3190,1C76
|
|
66
|
+
64,7934,"14,916","14,282","15,550",1,3173,1C65
|
|
67
|
+
65,7892,"14,837","14,206","15,467",1,3157,1C55
|
|
68
|
+
66,7850,"14,758","14,131","15,385",1,3140,1C44
|
|
69
|
+
67,7808,"14,680","14,056","15,304",1,3123,1C33
|
|
70
|
+
68,7767,"14,602","13,981","15,223",1,3107,1C23
|
|
71
|
+
69,7726,"14,525","13,907","15,142",1,3090,1C12
|
|
72
|
+
70,7685,"14,448","13,834","15,062",1,3074,1C02
|
|
73
|
+
71,7644,"14,371","13,760","14,982",1,3058,1BF2
|
|
74
|
+
72,7604,"14,295","13,687","14,902",1,3042,1BE2
|
|
75
|
+
73,7563,"14,219","13,615","14,823",1,3026,1BD2
|
|
76
|
+
74,7523,"14,144","13,543","14,745",1,3010,1BC2
|
|
77
|
+
75,7483,"14,069","13,471","14,667",1,2994,1BB2
|
|
78
|
+
76,7444,"13,994","13,399","14,589",1,2978,1BA2
|
|
79
|
+
77,7404,"13,920","13,328","14,511",1,2962,1B92
|
|
80
|
+
78,7365,"13,846","13,258","14,435",1,2946,1B82
|
|
81
|
+
79,7326,"13,773","13,187","14,358",1,2931,1B73
|
|
82
|
+
80,7287,"13,700","13,117","14,282",1,2915,1B63
|
|
83
|
+
81,7248,"13,627","13,048","14,206",1,2900,1B54
|
|
84
|
+
82,7210,"13,555","12,979","14,131",1,2885,1B45
|
|
85
|
+
83,7172,"13,483","12,910","14,056",1,2869,1B35
|
|
86
|
+
84,7134,"13,411","12,841","13,981",1,2854,1B26
|
|
87
|
+
85,7096,"13,340","12,773","13,907",1,2839,1B17
|
|
88
|
+
86,7058,"13,270","12,706","13,834",1,2824,1B08
|
|
89
|
+
87,7021,"13,199","12,638","13,760",1,2809,1AF9
|
|
90
|
+
88,6984,"13,129","12,571","13,687",1,2794,1AEA
|
|
91
|
+
89,6947,"13,060","12,505","13,615",1,2779,1ADB
|
|
92
|
+
90,6910,"12,990","12,438","13,543",1,2765,1ACD
|
|
93
|
+
91,6873,"12,922","12,372","13,471",1,2750,1ABE
|
|
94
|
+
92,6837,"12,853","12,307","13,399",1,2736,1AB0
|
|
95
|
+
93,6800,"12,785","12,242","13,328",1,2721,1AA1
|
|
96
|
+
94,6764,"12,717","12,177","13,258",1,2707,1A93
|
|
97
|
+
95,6729,"12,650","12,112","13,187",1,2692,1A84
|
|
98
|
+
96,6693,"12,583","12,048","13,117",1,2678,1A76
|
|
99
|
+
97,6657,"12,516","11,984","13,048",1,2664,1A68
|
|
100
|
+
98,6622,"12,450","11,920","12,979",1,2650,1A5A
|
|
101
|
+
99,6587,"12,384","11,857","12,910",1,2636,1A4C
|
|
102
|
+
100,6552,"12,318","11,794","12,841",1,2622,1A3E
|
|
103
|
+
101,6517,"12,253","11,732","12,773",1,2608,1A30
|
|
104
|
+
102,6483,"12,188","11,670","12,706",1,2594,1A22
|
|
105
|
+
103,6448,"12,123","11,608","12,638",1,2581,1A15
|
|
106
|
+
104,6414,"12,059","11,546","12,571",1,2567,1A07
|
|
107
|
+
105,6380,"11,995","11,485","12,505",1,2553,19F9
|
|
108
|
+
106,6346,"11,931","11,424","12,438",1,2540,19EC
|
|
109
|
+
107,6313,"11,868","11,364","12,372",1,2526,19DE
|
|
110
|
+
108,6279,"11,805","11,303","12,307",1,2513,19D1
|
|
111
|
+
109,6246,"11,742","11,243","12,242",1,2500,19C4
|
|
112
|
+
110,6213,"11,680","11,184","12,177",1,2487,19B7
|
|
113
|
+
111,6180,"11,618","11,125","12,112",1,2473,19A9
|
|
114
|
+
112,6147,"11,557","11,066","12,048",1,2460,199C
|
|
115
|
+
113,6115,"11,495","11,007","11,984",1,2447,198F
|
|
116
|
+
114,6082,"11,434","10,949","11,920",1,2434,1982
|
|
117
|
+
115,6050,"11,374","10,890","11,857",1,2422,1976
|
|
118
|
+
116,6018,"11,314","10,833","11,794",1,2409,1969
|
|
119
|
+
117,5986,"11,254","10,775","11,732",1,2396,195C
|
|
120
|
+
118,5954,"11,194","10,718","11,670",1,2383,194F
|
|
121
|
+
119,5923,"11,135","10,661","11,608",1,2371,1943
|
|
122
|
+
120,5891,"11,076","10,605","11,546",1,2358,1936
|
|
123
|
+
121,5860,"11,017","10,549","11,485",1,2346,192A
|
|
124
|
+
122,5829,"10,958","10,493","11,424",1,2333,191D
|
|
125
|
+
123,5798,"10,900","10,437","11,364",1,2321,1911
|
|
126
|
+
124,5767,"10,843","10,382","11,303",1,2309,1905
|
|
127
|
+
125,5737,"10,785","10,327","11,243",1,2297,18F9
|
|
128
|
+
126,5706,"10,728","10,272","11,184",1,2284,18EC
|
|
129
|
+
127,5676,"10,671","10,217","11,125",1,2272,18E0
|
|
130
|
+
128,5646,"10,614","10,163","11,066",1,2260,18D4
|
|
131
|
+
129,5616,"10,558","10,109","11,007",1,2248,18C8
|
|
132
|
+
130,5586,"10,502","10,056","10,949",1,2236,18BC
|
|
133
|
+
131,5557,"10,447","10,003","10,890",1,2225,18B1
|
|
134
|
+
132,5527,"10,391","9,950","10,833",1,2213,18A5
|
|
135
|
+
133,5498,"10,336","9,897","10,775",1,2201,1899
|
|
136
|
+
134,5469,"10,281","9,844","10,718",1,2190,188E
|
|
137
|
+
135,5440,"10,227","9,792","10,661",1,2178,1882
|
|
138
|
+
136,5411,"10,173","9,740","10,605",1,2166,1876
|
|
139
|
+
137,5382,"10,119","9,689","10,549",1,2155,186B
|
|
140
|
+
138,5354,"10,065","9,637","10,493",1,2144,1860
|
|
141
|
+
139,5325,"10,012","9,586","10,437",1,2132,1854
|
|
142
|
+
140,5297,"9,958","9,535","10,382",1,2121,1849
|
|
143
|
+
141,5269,"9,906","9,485","10,327",1,2110,183E
|
|
144
|
+
142,5241,"9,853","9,434","10,272",1,2099,1833
|
|
145
|
+
143,5213,"9,801","9,384","10,217",1,2088,1828
|
|
146
|
+
144,5186,"9,749","9,335","10,163",1,2077,181D
|
|
147
|
+
145,5158,"9,697","9,285","10,109",1,2066,1812
|
|
148
|
+
146,5131,"9,646","9,236","10,056",1,2055,1807
|
|
149
|
+
147,5104,"9,595","9,187","10,003",1,2044,17FC
|
|
150
|
+
148,5077,"9,544","9,138","9,950",1,2033,17F1
|
|
151
|
+
149,5050,"9,493","9,090","9,897",1,2022,17E6
|
|
152
|
+
150,5023,"9,443","9,042","9,844",1,2012,17DC
|
|
153
|
+
151,4996,"9,393","8,994","9,792",1,2001,17D1
|
|
154
|
+
152,4970,"9,343","8,946","9,740",1,1990,17C6
|
|
155
|
+
153,4943,"9,294","8,899","9,689",1,1980,17BC
|
|
156
|
+
154,4917,"9,244","8,851","9,637",1,1969,17B1
|
|
157
|
+
155,4891,"9,195","8,804","9,586",1,1959,17A7
|
|
158
|
+
156,4865,"9,147","8,758","9,535",1,1949,179D
|
|
159
|
+
157,4839,"9,098","8,711","9,485",1,1938,1792
|
|
160
|
+
158,4814,"9,050","8,665","9,434",1,1928,1788
|
|
161
|
+
159,4788,"9,002","8,619","9,384",1,1918,177E
|
|
162
|
+
160,4763,"8,954","8,574","9,335",1,1908,1774
|
|
163
|
+
161,4738,"8,907","8,528","9,285",1,1898,176A
|
|
164
|
+
162,4712,"8,859","8,483","9,236",1,1888,1760
|
|
165
|
+
163,4687,"8,812","8,438","9,187",1,1878,1756
|
|
166
|
+
164,4663,"8,766","8,393","9,138",1,1868,174C
|
|
167
|
+
165,4638,"8,719","8,349","9,090",1,1858,1742
|
|
168
|
+
166,4613,"8,673","8,304","9,042",1,1848,1738
|
|
169
|
+
167,4589,"8,627","8,260","8,994",1,1838,172E
|
|
170
|
+
168,4565,"8,581","8,217","8,946",1,1829,1725
|
|
171
|
+
169,4540,"8,536","8,173","8,899",1,1819,171B
|
|
172
|
+
170,4516,"8,491","8,130","8,851",1,1809,1711
|
|
173
|
+
171,4492,"8,446","8,087","8,804",1,1800,1708
|
|
174
|
+
172,4468,"8,401","8,044","8,758",1,1790,16FE
|
|
175
|
+
173,4445,"8,356","8,001","8,711",1,1781,16F5
|
|
176
|
+
174,4421,"8,312","7,959","8,665",1,1772,16EC
|
|
177
|
+
175,4398,"8,268","7,916","8,619",1,1762,16E2
|
|
178
|
+
176,4374,"8,224","7,875","8,574",1,1753,16D9
|
|
179
|
+
177,4351,"8,180","7,833","8,528",1,1744,16D0
|
|
180
|
+
178,4328,"8,137","7,791","8,483",1,1734,16C6
|
|
181
|
+
179,4305,"8,094","7,750","8,438",1,1725,16BD
|
|
182
|
+
180,4282,"8,051","7,709","8,393",1,1716,16B4
|
|
183
|
+
181,4260,"8,008","7,668","8,349",1,1707,16AB
|
|
184
|
+
182,4237,"7,966","7,627","8,304",1,1698,16A2
|
|
185
|
+
183,4215,"7,924","7,587","8,260",1,1689,1699
|
|
186
|
+
184,4192,"7,882","7,547","8,217",1,1680,1690
|
|
187
|
+
185,4170,"7,840","7,507","8,173",1,1671,1687
|
|
188
|
+
186,4148,"7,798","7,467","8,130",1,1662,167E
|
|
189
|
+
187,4126,"7,757","7,427","8,087",1,1654,1676
|
|
190
|
+
188,4104,"7,716","7,388","8,044",1,1645,166D
|
|
191
|
+
189,4082,"7,675","7,349","8,001",1,1636,1664
|
|
192
|
+
190,4061,"7,634","7,310","7,959",1,1628,165C
|
|
193
|
+
191,4039,"7,594","7,271","7,916",1,1619,1653
|
|
194
|
+
192,4018,"7,553","7,232","7,875",1,1610,164A
|
|
195
|
+
193,3997,"7,513","7,194","7,833",1,1602,1642
|
|
196
|
+
194,3975,"7,474","7,156","7,791",1,1594,163A
|
|
197
|
+
195,3954,"7,434","7,118","7,750",1,1585,1631
|
|
198
|
+
196,3933,"7,395","7,080","7,709",1,1577,1629
|
|
199
|
+
197,3912,"7,355","7,043","7,668",1,1568,1620
|
|
200
|
+
198,3892,"7,316","7,005","7,627",1,1560,1618
|
|
201
|
+
199,3871,"7,278","6,968","7,587",1,1552,1610
|
|
202
|
+
200,3851,"7,239","6,931","7,547",1,1544,1608
|
|
203
|
+
201,3830,"7,201","6,895","7,507",1,1536,1600
|
|
204
|
+
202,3810,"7,162","6,858","7,467",1,1527,15F7
|
|
205
|
+
203,3790,"7,124","6,822","7,427",1,1519,15EF
|
|
206
|
+
204,3770,"7,087","6,786","7,388",1,1511,15E7
|
|
207
|
+
205,3750,"7,049","6,750","7,349",1,1503,15DF
|
|
208
|
+
206,3730,"7,012","6,714","7,310",1,1495,15D7
|
|
209
|
+
207,3710,"6,975","6,678","7,271",1,1488,15D0
|
|
210
|
+
208,3690,"6,938","6,643","7,232",1,1480,15C8
|
|
211
|
+
209,3671,"6,901","6,608","7,194",1,1472,15C0
|
|
212
|
+
210,3651,"6,864","6,573","7,156",1,1464,15B8
|
|
213
|
+
211,3632,"6,828","6,538","7,118",1,1456,15B0
|
|
214
|
+
212,3613,"6,792","6,503","7,080",1,1449,15A9
|
|
215
|
+
213,3593,"6,756","6,469","7,043",1,1441,15A1
|
|
216
|
+
214,3574,"6,720","6,434","7,005",1,1434,159A
|
|
217
|
+
215,3555,"6,684","6,400","6,968",1,1426,1592
|
|
218
|
+
216,3537,"6,649","6,366","6,931",1,1418,158A
|
|
219
|
+
217,3518,"6,614","6,332","6,895",1,1411,1583
|
|
220
|
+
218,3499,"6,578","6,299","6,858",1,1403,157B
|
|
221
|
+
219,3481,"6,544","6,265","6,822",1,1396,1574
|
|
222
|
+
220,3462,"6,509","6,232","6,786",1,1389,156D
|
|
223
|
+
221,3444,"6,474","6,199","6,750",1,1381,1565
|
|
224
|
+
222,3426,"6,440","6,166","6,714",1,1374,155E
|
|
225
|
+
223,3407,"6,406","6,134","6,678",1,1367,1557
|
|
226
|
+
224,3389,"6,372","6,101","6,643",1,1360,1550
|
|
227
|
+
225,3371,"6,338","6,069","6,608",1,1352,1548
|
|
228
|
+
226,3353,"6,305","6,037","6,573",1,1345,1541
|
|
229
|
+
227,3336,"6,271","6,005","6,538",1,1338,153A
|
|
230
|
+
228,3318,"6,238","5,973","6,503",1,1331,1533
|
|
231
|
+
229,3300,"6,205","5,941","6,469",1,1324,152C
|
|
232
|
+
230,3283,"6,172","5,910","6,434",1,1317,1525
|
|
233
|
+
231,3266,"6,139","5,878","6,400",1,1310,151E
|
|
234
|
+
232,3248,"6,107","5,847","6,366",1,1303,1517
|
|
235
|
+
233,3231,"6,074","5,816","6,332",1,1296,1510
|
|
236
|
+
234,3214,"6,042","5,785","6,299",1,1290,150A
|
|
237
|
+
235,3197,"6,010","5,755","6,265",1,1283,1503
|
|
238
|
+
236,3180,"5,978","5,724","6,232",1,1276,14FC
|
|
239
|
+
237,3163,"5,947","5,694","6,199",1,1269,14F5
|
|
240
|
+
238,3146,"5,915","5,664","6,166",1,1263,14EF
|
|
241
|
+
239,3130,"5,884","5,634","6,134",1,1256,14E8
|
|
242
|
+
240,3113,"5,852","5,604","6,101",1,1249,14E1
|
|
243
|
+
241,3096,"5,821","5,574","6,069",1,1243,14DB
|
|
244
|
+
242,3080,"5,791","5,544","6,037",1,1236,14D4
|
|
245
|
+
243,3064,"5,760","5,515","6,005",1,1230,14CE
|
|
246
|
+
244,3047,"5,729","5,486","5,973",1,1223,14C7
|
|
247
|
+
245,3031,"5,699","5,457","5,941",1,1217,14C1
|
|
248
|
+
246,3015,"5,669","5,428","5,910",1,1210,14BA
|
|
249
|
+
247,2999,"5,639","5,399","5,878",1,1204,14B4
|
|
250
|
+
248,2983,"5,609","5,370","5,847",1,1198,14AE
|
|
251
|
+
249,2968,"5,579","5,342","5,816",1,1191,14A7
|
|
252
|
+
250,2952,"5,549","5,314","5,785",1,1185,14A1
|
|
253
|
+
251,2936,"5,520","5,285","5,755",1,1179,149B
|
|
254
|
+
252,2921,"5,491","5,257","5,724",1,1173,1495
|
|
255
|
+
253,2905,"5,462","5,230","5,694",1,1166,148E
|
|
256
|
+
254,2890,"5,433","5,202","5,664",1,1160,1488
|
|
257
|
+
255,2874,"5,404","5,174","5,634",1,1154,1482
|
|
258
|
+
256,2859,"5,375","5,147","5,604",1,1148,147C
|
|
259
|
+
257,2844,"5,347","5,120","5,574",1,1142,1476
|
|
260
|
+
258,2829,"5,318","5,092","5,544",1,1136,1470
|
|
261
|
+
259,2814,"5,290","5,065","5,515",1,1130,146A
|
|
262
|
+
260,2799,"5,262","5,039","5,486",1,1124,1464
|
|
263
|
+
261,2784,"5,234","5,012","5,457",1,1118,145E
|
|
264
|
+
262,2769,"5,207","4,985","5,428",1,1112,1458
|
|
265
|
+
263,2755,"5,179","4,959","5,399",1,1106,1452
|
|
266
|
+
264,2740,"5,151","4,933","5,370",1,1101,144D
|
|
267
|
+
265,2726,"5,124","4,906","5,342",1,1095,1447
|
|
268
|
+
266,2711,"5,097","4,880","5,314",1,1089,1441
|
|
269
|
+
267,2697,"5,070","4,854","5,285",1,1083,143B
|
|
270
|
+
268,2682,"5,043","4,829","5,257",1,1078,1436
|
|
271
|
+
269,2668,"5,016","4,803","5,230",1,1072,1430
|
|
272
|
+
270,2654,"4,990","4,778","5,202",1,1066,142A
|
|
273
|
+
271,2640,"4,963","4,752","5,174",1,1061,1425
|
|
274
|
+
272,2626,"4,937","4,727","5,147",1,1055,141F
|
|
275
|
+
273,2612,"4,911","4,702","5,120",1,1049,1419
|
|
276
|
+
274,2598,"4,885","4,677","5,092",1,1044,1414
|
|
277
|
+
275,2585,"4,859","4,652","5,065",1,1038,140E
|
|
278
|
+
276,2571,"4,833","4,628","5,039",1,1033,1409
|
|
279
|
+
277,2557,"4,807","4,603","5,012",1,1028,1404
|
|
280
|
+
278,2544,"4,782","4,579","4,985",1,1022,13FE
|
|
281
|
+
279,2530,"4,757","4,554","4,959",1,1017,13F9
|
|
282
|
+
280,2517,"4,731","4,530","4,933",1,1011,13F3
|
|
283
|
+
281,2503,"4,706","4,506","4,906",1,1006,13EE
|
|
284
|
+
282,2490,"4,681","4,482","4,880",1,1001,13E9
|
|
285
|
+
283,2477,"4,657","4,459","4,854",1,995,13E3
|
|
286
|
+
284,2464,"4,632","4,435","4,829",1,990,13DE
|
|
287
|
+
285,2451,"4,607","4,412","4,803",1,985,13D9
|
|
288
|
+
286,2438,"4,583","4,388","4,778",1,980,13D4
|
|
289
|
+
287,2425,"4,559","4,365","4,752",1,975,13CF
|
|
290
|
+
288,2412,"4,534","4,342","4,727",1,970,13CA
|
|
291
|
+
289,2399,"4,510","4,319","4,702",1,964,13C4
|
|
292
|
+
290,2386,"4,486","4,296","4,677",1,959,13BF
|
|
293
|
+
291,2374,"4,463","4,273","4,652",1,954,13BA
|
|
294
|
+
292,2361,"4,439","4,250","4,628",1,949,13B5
|
|
295
|
+
293,2349,"4,416","4,228","4,603",1,944,13B0
|
|
296
|
+
294,2336,"4,392","4,205","4,579",1,939,13AB
|
|
297
|
+
295,2324,"4,369","4,183","4,554",1,934,13A6
|
|
298
|
+
296,2312,"4,346","4,161","4,530",1,929,13A1
|
|
299
|
+
297,2299,"4,323","4,139","4,506",1,925,139D
|
|
300
|
+
298,2287,"4,300","4,117","4,482",1,920,1398
|
|
301
|
+
299,2275,"4,277","4,095","4,459",1,915,1393
|
|
302
|
+
300,2263,"4,254","4,073","4,435",1,910,138E
|
|
303
|
+
301,2251,"4,232","4,052","4,412",1,905,1389
|
|
304
|
+
302,2239,"4,209","4,030","4,388",1,901,1385
|
|
305
|
+
303,2227,"4,187","4,009","4,365",1,896,1380
|
|
306
|
+
304,2215,"4,165","3,988","4,342",1,891,137B
|
|
307
|
+
305,2204,"4,143","3,967","4,319",1,886,1376
|
|
308
|
+
306,2192,"4,121","3,946","4,296",1,882,1372
|
|
309
|
+
307,2180,"4,099","3,925","4,273",1,877,136D
|
|
310
|
+
308,2169,"4,077","3,904","4,250",1,872,1368
|
|
311
|
+
309,2157,"4,055","3,883","4,228",1,868,1364
|
|
312
|
+
310,2146,"4,034","3,863","4,205",1,863,135F
|
|
313
|
+
311,2134,"4,013","3,842","4,183",1,859,135B
|
|
314
|
+
312,2123,"3,991","3,822","4,161",1,854,1356
|
|
315
|
+
313,2112,"3,970","3,801","4,139",1,850,1352
|
|
316
|
+
314,2101,"3,949","3,781","4,117",1,845,134D
|
|
317
|
+
315,2089,"3,928","3,761","4,095",1,841,1349
|
|
318
|
+
316,2078,"3,907","3,741","4,073",1,836,1344
|
|
319
|
+
317,2067,"3,887","3,721","4,052",1,832,1340
|
|
320
|
+
318,2056,"3,866","3,702","4,030",1,828,133C
|
|
321
|
+
319,2046,"3,846","3,682","4,009",1,823,1337
|
|
322
|
+
320,2035,"3,825","3,663","3,988",1,819,1333
|
|
323
|
+
321,2024,"3,805","3,643","3,967",1,815,132F
|
|
324
|
+
322,2013,"3,785","3,624","3,946",1,810,132A
|
|
325
|
+
323,2002,"3,765","3,605","3,925",1,806,1326
|
|
326
|
+
324,1992,"3,745","3,586","3,904",1,802,1322
|
|
327
|
+
325,1981,"3,725","3,567","3,883",1,798,131E
|
|
328
|
+
326,1971,"3,705","3,548","3,863",1,793,1319
|
|
329
|
+
327,1960,"3,685","3,529","3,842",1,789,1315
|
|
330
|
+
328,1950,"3,666","3,510","3,822",1,785,1311
|
|
331
|
+
329,1940,"3,646","3,491","3,801",1,781,130D
|
|
332
|
+
330,1929,"3,627","3,473","3,781",1,777,1309
|
|
333
|
+
331,1919,"3,608","3,455","3,761",1,773,1305
|
|
334
|
+
332,1909,"3,589","3,436","3,741",1,769,1301
|
|
335
|
+
333,1899,"3,570","3,418","3,721",1,765,12FD
|
|
336
|
+
334,1889,"3,551","3,400","3,702",1,761,12F9
|
|
337
|
+
335,1879,"3,532","3,382","3,682",1,757,12F5
|
|
338
|
+
336,1869,"3,513","3,364","3,663",1,753,12F1
|
|
339
|
+
337,1859,"3,495","3,346","3,643",1,749,12ED
|
|
340
|
+
338,1849,"3,476","3,328","3,624",1,745,12E9
|
|
341
|
+
339,1839,"3,458","3,311","3,605",1,741,12E5
|
|
342
|
+
340,1829,"3,439","3,293","3,586",1,737,12E1
|
|
343
|
+
341,1820,"3,421","3,276","3,567",1,733,12DD
|
|
344
|
+
342,1810,"3,403","3,258","3,548",1,729,12D9
|
|
345
|
+
343,1801,"3,385","3,241","3,529",1,726,12D6
|
|
346
|
+
344,1791,"3,367","3,224","3,510",1,722,12D2
|
|
347
|
+
345,1781,"3,349","3,207","3,491",1,718,12CE
|
|
348
|
+
346,1772,"3,331","3,190","3,473",1,714,12CA
|
|
349
|
+
347,1763,"3,314","3,173","3,455",1,710,12C6
|
|
350
|
+
348,1753,"3,296","3,156","3,436",1,707,12C3
|
|
351
|
+
349,1744,"3,279","3,139","3,418",1,703,12BF
|
|
352
|
+
350,1735,"3,261","3,123","3,400",1,699,12BB
|
|
353
|
+
351,1726,"3,244","3,106","3,382",1,696,12B8
|
|
354
|
+
352,1716,"3,227","3,090","3,364",1,692,12B4
|
|
355
|
+
353,1707,"3,210","3,073","3,346",1,688,12B0
|
|
356
|
+
354,1698,"3,193","3,057","3,328",1,685,12AD
|
|
357
|
+
355,1689,"3,176","3,041","3,311",1,681,12A9
|
|
358
|
+
356,1680,"3,159","3,025","3,293",1,678,12A6
|
|
359
|
+
357,1671,"3,142","3,009","3,276",1,674,12A2
|
|
360
|
+
358,1663,"3,126","2,993","3,258",1,670,129E
|
|
361
|
+
359,1654,"3,109","2,977","3,241",1,667,129B
|
|
362
|
+
360,1645,"3,092","2,961","3,224",1,663,1297
|
|
363
|
+
361,1636,"3,076","2,945","3,207",1,660,1294
|
|
364
|
+
362,1628,"3,060","2,930","3,190",1,656,1290
|
|
365
|
+
363,1619,"3,044","2,914","3,173",1,653,128D
|
|
366
|
+
364,1610,"3,027","2,899","3,156",1,650,128A
|
|
367
|
+
365,1602,"3,011","2,883","3,139",1,646,1286
|
|
368
|
+
366,1593,"2,995","2,868","3,123",1,643,1283
|
|
369
|
+
367,1585,"2,980","2,853","3,106",1,639,127F
|
|
370
|
+
368,1576,"2,964","2,838","3,090",1,636,127C
|
|
371
|
+
369,1568,"2,948","2,823","3,073",1,633,1279
|
|
372
|
+
370,1560,"2,932","2,808","3,057",1,629,1275
|
|
373
|
+
371,1552,"2,917","2,793","3,041",1,626,1272
|
|
374
|
+
372,1543,"2,901","2,778","3,025",1,623,126F
|
|
375
|
+
373,1535,"2,886","2,763","3,009",1,620,126C
|
|
376
|
+
374,1527,"2,871","2,749","2,993",1,616,1268
|
|
377
|
+
375,1519,"2,855","2,734","2,977",1,613,1265
|
|
378
|
+
376,1511,"2,840","2,720","2,961",1,610,1262
|
|
379
|
+
377,1503,"2,825","2,705","2,945",1,607,125F
|
|
380
|
+
378,1495,"2,810","2,691","2,930",1,604,125C
|
|
381
|
+
379,1487,"2,795","2,677","2,914",1,600,1258
|
|
382
|
+
380,1479,"2,781","2,662","2,899",1,597,1255
|
|
383
|
+
381,1471,"2,766","2,648","2,883",1,594,1252
|
|
384
|
+
382,1463,"2,751","2,634","2,868",1,591,124F
|
|
385
|
+
383,1456,"2,737","2,620","2,853",1,588,124C
|
|
386
|
+
384,1448,"2,722","2,606","2,838",1,585,1249
|
|
387
|
+
385,1440,"2,708","2,593","2,823",1,582,1246
|
|
388
|
+
386,1433,"2,693","2,579","2,808",1,579,1243
|
|
389
|
+
387,1425,"2,679","2,565","2,793",1,576,1240
|
|
390
|
+
388,1417,"2,665","2,552","2,778",1,573,123D
|
|
391
|
+
389,1410,"2,651","2,538","2,763",1,570,123A
|
|
392
|
+
390,1402,"2,637","2,525","2,749",1,567,1237
|
|
393
|
+
391,1395,"2,623","2,511","2,734",1,564,1234
|
|
394
|
+
392,1388,"2,609","2,498","2,720",1,561,1231
|
|
395
|
+
393,1380,"2,595","2,485","2,705",1,558,122E
|
|
396
|
+
394,1373,"2,581","2,471","2,691",1,555,122B
|
|
397
|
+
395,1366,"2,567","2,458","2,677",1,552,1228
|
|
398
|
+
396,1358,"2,554","2,445","2,662",1,549,1225
|
|
399
|
+
397,1351,"2,540","2,432","2,648",1,546,1222
|
|
400
|
+
398,1344,"2,527","2,419","2,634",1,543,121F
|
|
401
|
+
399,1337,"2,513","2,407","2,620",1,541,121D
|
|
402
|
+
400,1330,"2,500","2,394","2,606",1,538,121A
|
|
403
|
+
401,1323,"2,487","2,381","2,593",1,535,1217
|
|
404
|
+
402,1316,"2,474","2,369","2,579",1,532,1214
|
|
405
|
+
403,1309,"2,461","2,356","2,565",1,529,1211
|
|
406
|
+
404,1302,"2,448","2,344","2,552",1,527,120F
|
|
407
|
+
405,1295,"2,435","2,331","2,538",1,524,120C
|
|
408
|
+
406,1288,"2,422","2,319","2,525",1,521,1209
|
|
409
|
+
407,1281,"2,409","2,306","2,511",1,518,1206
|
|
410
|
+
408,1274,"2,396","2,294","2,498",1,516,1204
|
|
411
|
+
409,1268,"2,383","2,282","2,485",1,513,1201
|
|
412
|
+
410,1261,"2,371","2,270","2,471",1,510,11FE
|
|
413
|
+
411,1254,"2,358","2,258","2,458",1,508,11FC
|
|
414
|
+
412,1248,"2,346","2,246","2,445",1,505,11F9
|
|
415
|
+
413,1241,"2,333","2,234","2,432",1,502,11F6
|
|
416
|
+
414,1234,"2,321","2,222","2,419",1,500,11F4
|
|
417
|
+
415,1228,"2,309","2,210","2,407",1,497,11F1
|
|
418
|
+
416,1221,"2,296","2,199","2,394",1,494,11EE
|
|
419
|
+
417,1215,"2,284","2,187","2,381",1,492,11EC
|
|
420
|
+
418,1209,"2,272","2,175","2,369",1,489,11E9
|
|
421
|
+
419,1202,"2,260","2,164","2,356",1,487,11E7
|
|
422
|
+
420,1196,"2,248","2,152","2,344",1,484,11E4
|
|
423
|
+
421,1189,"2,236","2,141","2,331",1,482,11E2
|
|
424
|
+
422,1183,"2,224","2,130","2,319",1,479,11DF
|
|
425
|
+
423,1177,"2,212","2,118","2,306",1,477,11DD
|
|
426
|
+
424,1171,"2,201","2,107","2,294",1,474,11DA
|
|
427
|
+
425,1164,"2,189","2,096","2,282",1,472,11D8
|
|
428
|
+
426,1158,"2,177","2,085","2,270",1,469,11D5
|
|
429
|
+
427,1152,"2,166","2,074","2,258",1,467,11D3
|
|
430
|
+
428,1146,"2,154","2,063","2,246",1,464,11D0
|
|
431
|
+
429,1140,"2,143","2,052","2,234",1,462,11CE
|
|
432
|
+
430,1134,"2,132","2,041","2,222",1,459,11CB
|
|
433
|
+
431,1128,"2,120","2,030","2,210",1,457,11C9
|
|
434
|
+
432,1122,"2,109","2,019","2,199",1,455,11C7
|
|
435
|
+
433,1116,"2,098","2,009","2,187",1,452,11C4
|
|
436
|
+
434,1110,"2,087","1,998","2,175",1,450,11C2
|
|
437
|
+
435,1104,"2,076","1,987","2,164",1,448,11C0
|
|
438
|
+
436,1098,"2,065","1,977","2,152",1,445,11BD
|
|
439
|
+
437,1092,"2,054","1,966","2,141",1,443,11BB
|
|
440
|
+
438,1087,"2,043","1,956","2,130",1,441,11B9
|
|
441
|
+
439,1081,"2,032","1,946","2,118",1,438,11B6
|
|
442
|
+
440,1075,"2,021","1,935","2,107",1,436,11B4
|
|
443
|
+
441,1069,"2,011","1,925","2,096",1,434,11B2
|
|
444
|
+
442,1064,"2,000","1,915","2,085",1,431,11AF
|
|
445
|
+
443,1058,"1,989","1,905","2,074",1,429,11AD
|
|
446
|
+
444,1053,"1,979","1,895","2,063",1,427,11AB
|
|
447
|
+
445,1047,"1,968","1,885","2,052",1,425,11A9
|
|
448
|
+
446,1041,"1,958","1,875","2,041",1,423,11A7
|
|
449
|
+
447,1036,"1,947","1,865","2,030",1,420,11A4
|
|
450
|
+
448,1030,"1,937","1,855","2,019",1,418,11A2
|
|
451
|
+
449,1025,"1,927","1,845","2,009",1,416,11A0
|
|
452
|
+
450,1019,"1,917","1,835","1,998",1,414,119E
|
|
453
|
+
451,1014,"1,906","1,825","1,987",1,412,119C
|
|
454
|
+
452,1009,"1,896","1,816","1,977",1,409,1199
|
|
455
|
+
453,1003,"1,886","1,806","1,966",1,407,1197
|
|
456
|
+
454,998,"1,876","1,797","1,956",1,405,1195
|
|
457
|
+
455,993,"1,866","1,787","1,946",1,403,1193
|
|
458
|
+
456,987,"1,856","1,778","1,935",1,401,1191
|
|
459
|
+
457,982,"1,847","1,768","1,925",1,399,118F
|
|
460
|
+
458,977,"1,837","1,759","1,915",1,397,118D
|
|
461
|
+
459,972,"1,827","1,749","1,905",1,395,118B
|
|
462
|
+
460,967,"1,817","1,740","1,895",1,393,1189
|
|
463
|
+
461,962,"1,808","1,731","1,885",1,391,1187
|
|
464
|
+
462,956,"1,798","1,722","1,875",1,389,1185
|
|
465
|
+
463,951,"1,789","1,713","1,865",1,387,1183
|
|
466
|
+
464,946,"1,779","1,704","1,855",1,385,1181
|
|
467
|
+
465,941,"1,770","1,695","1,845",1,383,117F
|
|
468
|
+
466,936,"1,760","1,686","1,835",1,381,117D
|
|
469
|
+
467,931,"1,751","1,677","1,825",1,379,117B
|
|
470
|
+
468,926,"1,742","1,668","1,816",1,377,1179
|
|
471
|
+
469,922,"1,732","1,659","1,806",1,375,1177
|
|
472
|
+
470,917,"1,723","1,650","1,797",1,373,1175
|
|
473
|
+
471,912,"1,714","1,641","1,787",1,371,1173
|
|
474
|
+
472,907,"1,705","1,633","1,778",1,369,1171
|
|
475
|
+
473,902,"1,696","1,624","1,768",1,367,116F
|
|
476
|
+
474,897,"1,687","1,615","1,759",1,365,116D
|
|
477
|
+
475,893,"1,678","1,607","1,749",1,363,116B
|
|
478
|
+
476,888,"1,669","1,598","1,740",1,361,1169
|
|
479
|
+
477,883,"1,660","1,590","1,731",1,359,1167
|
|
480
|
+
478,878,"1,652","1,581","1,722",1,358,1166
|
|
481
|
+
479,874,"1,643","1,573","1,713",1,356,1164
|
|
482
|
+
480,869,"1,634","1,565","1,704",1,354,1162
|
|
483
|
+
481,865,"1,625","1,556","1,695",1,352,1160
|
|
484
|
+
482,860,"1,617","1,548","1,686",1,350,115E
|
|
485
|
+
483,855,"1,608","1,540","1,677",1,348,115C
|
|
486
|
+
484,851,"1,600","1,532","1,668",1,347,115B
|
|
487
|
+
485,846,"1,591","1,524","1,659",1,345,1159
|
|
488
|
+
486,842,"1,583","1,516","1,650",1,343,1157
|
|
489
|
+
487,837,"1,574","1,507","1,641",1,341,1155
|
|
490
|
+
488,833,"1,566","1,500","1,633",1,339,1153
|
|
491
|
+
489,829,"1,558","1,492","1,624",1,338,1152
|
|
492
|
+
490,824,"1,549","1,484","1,615",1,336,1150
|
|
493
|
+
491,820,"1,541","1,476","1,607",1,334,114E
|
|
494
|
+
492,815,"1,533","1,468","1,598",1,332,114C
|
|
495
|
+
493,811,"1,525","1,460","1,590",1,331,114B
|
|
496
|
+
494,807,"1,517","1,452","1,581",1,329,1149
|
|
497
|
+
495,803,"1,509","1,445","1,573",1,327,1147
|
|
498
|
+
496,798,"1,501","1,437","1,565",1,326,1146
|
|
499
|
+
497,794,"1,493","1,429","1,556",1,324,1144
|
|
500
|
+
498,790,"1,485","1,422","1,548",1,322,1142
|
|
501
|
+
499,786,"1,477","1,414","1,540",1,320,1140
|
|
502
|
+
500,782,"1,469","1,407","1,532",1,319,113F
|
|
503
|
+
501,777,"1,461","1,399","1,524",1,317,113D
|
|
504
|
+
502,773,"1,454","1,392","1,516",1,316,113C
|
|
505
|
+
503,769,"1,446","1,385","1,507",1,314,113A
|
|
506
|
+
504,765,"1,438","1,377","1,500",1,312,1138
|
|
507
|
+
505,761,"1,431","1,370","1,492",1,311,1137
|
|
508
|
+
506,757,"1,423","1,363","1,484",1,309,1135
|
|
509
|
+
507,753,"1,416","1,355","1,476",1,307,1133
|
|
510
|
+
508,749,"1,408","1,348","1,468",1,306,1132
|
|
511
|
+
509,745,"1,401","1,341","1,460",1,304,1130
|
|
512
|
+
510,741,"1,393","1,334","1,452",1,303,112F
|
|
513
|
+
511,737,"1,386","1,327","1,445",1,301,112D
|
|
514
|
+
512,733,"1,378","1,320","1,437",1,300,112C
|
|
515
|
+
513,729,"1,371","1,313","1,429",1,298,112A
|
|
516
|
+
514,725,"1,364","1,306","1,422",1,296,1128
|
|
517
|
+
515,722,"1,357","1,299","1,414",1,295,1127
|
|
518
|
+
516,718,"1,349","1,292","1,407",1,293,1125
|
|
519
|
+
517,714,"1,342","1,285","1,399",1,292,1124
|
|
520
|
+
518,710,"1,335","1,278","1,392",1,290,1122
|
|
521
|
+
519,706,"1,328","1,272","1,385",1,289,1121
|
|
522
|
+
520,703,"1,321","1,265","1,377",1,287,111F
|
|
523
|
+
521,699,"1,314","1,258","1,370",1,286,111E
|
|
524
|
+
522,695,"1,307","1,252","1,363",1,284,111C
|
|
525
|
+
523,692,"1,300","1,245","1,355",1,283,111B
|
|
526
|
+
524,688,"1,293","1,238","1,348",1,281,1119
|
|
527
|
+
525,684,"1,286","1,232","1,341",1,280,1118
|
|
528
|
+
526,681,"1,280","1,225","1,334",1,279,1117
|
|
529
|
+
527,677,"1,273","1,219","1,327",1,277,1115
|
|
530
|
+
528,673,"1,266","1,212","1,320",1,276,1114
|
|
531
|
+
529,670,"1,259","1,206","1,313",1,274,1112
|
|
532
|
+
530,666,"1,253","1,199","1,306",1,273,1111
|
|
533
|
+
531,663,"1,246","1,193","1,299",1,271,110F
|
|
534
|
+
532,659,"1,239","1,187","1,292",1,270,110E
|
|
535
|
+
533,656,"1,233","1,180","1,285",1,269,110D
|
|
536
|
+
534,652,"1,226","1,174","1,278",1,267,110B
|
|
537
|
+
535,649,"1,220","1,168","1,272",1,266,110A
|
|
538
|
+
536,645,"1,213","1,162","1,265",1,265,1109
|
|
539
|
+
537,642,"1,207","1,156","1,258",1,263,1107
|
|
540
|
+
538,639,"1,201","1,150","1,252",1,262,1106
|
|
541
|
+
539,635,"1,194","1,143","1,245",1,260,1104
|
|
542
|
+
540,632,"1,188","1,137","1,238",1,259,1103
|
|
543
|
+
541,628,"1,182","1,131","1,232",1,258,1102
|
|
544
|
+
542,625,"1,175","1,125","1,225",1,256,1100
|
|
545
|
+
543,622,"1,169","1,119","1,219",1,255,10FF
|
|
546
|
+
544,619,"1,163","1,113","1,212",1,254,10FE
|
|
547
|
+
545,615,"1,157","1,108","1,206",1,252,10FC
|
|
548
|
+
546,612,"1,151","1,102","1,199",1,251,10FB
|
|
549
|
+
547,609,"1,144","1,096","1,193",1,250,10FA
|
|
550
|
+
548,606,"1,138","1,090","1,187",1,249,10F9
|
|
551
|
+
549,602,"1,132","1,084","1,180",1,247,10F7
|
|
552
|
+
550,599,"1,126","1,078","1,174",1,246,10F6
|
|
553
|
+
551,596,"1,120","1,073","1,168",1,245,10F5
|
|
554
|
+
552,593,"1,114","1,067","1,162",1,244,10F4
|
|
555
|
+
553,590,"1,109","1,061","1,156",1,242,10F2
|
|
556
|
+
554,587,"1,103","1,056","1,150",1,241,10F1
|
|
557
|
+
555,583,"1,097","1,050","1,143",1,240,10F0
|
|
558
|
+
556,580,"1,091","1,045","1,137",1,239,10EF
|
|
559
|
+
557,577,"1,085","1,039","1,131",1,237,10ED
|
|
560
|
+
558,574,"1,079","1,034","1,125",1,236,10EC
|
|
561
|
+
559,571,"1,074","1,028","1,119",1,235,10EB
|
|
562
|
+
560,568,"1,068","1,023","1,113",1,234,10EA
|
|
563
|
+
561,565,"1,062","1,017","1,108",1,232,10E8
|
|
564
|
+
562,562,"1,057","1,012","1,102",1,231,10E7
|
|
565
|
+
563,559,"1,051","1,006","1,096",1,230,10E6
|
|
566
|
+
564,556,"1,046","1,001","1,090",1,229,10E5
|
|
567
|
+
565,553,"1,040",996,"1,084",1,228,10E4
|
|
568
|
+
566,550,"1,035",991,"1,078",1,227,10E3
|
|
569
|
+
567,547,"1,029",985,"1,073",1,225,10E1
|
|
570
|
+
568,544,"1,024",980,"1,067",1,224,10E0
|
|
571
|
+
569,542,"1,018",975,"1,061",1,223,10DF
|
|
572
|
+
570,539,"1,013",970,"1,056",1,222,10DE
|
|
573
|
+
571,536,"1,007",965,"1,050",1,221,10DD
|
|
574
|
+
572,533,"1,002",959,"1,045",1,220,10DC
|
|
575
|
+
573,530,997,954,"1,039",1,219,10DB
|
|
576
|
+
574,527,991,949,"1,034",1,217,10D9
|
|
577
|
+
575,525,986,944,"1,028",1,216,10D8
|
|
578
|
+
576,522,981,939,"1,023",1,215,10D7
|
|
579
|
+
577,519,976,934,"1,017",1,214,10D6
|
|
580
|
+
578,516,971,929,"1,012",1,213,10D5
|
|
581
|
+
579,514,965,924,"1,006",1,212,10D4
|
|
582
|
+
580,511,960,920,"1,001",1,211,10D3
|
|
583
|
+
581,508,955,915,996,1,210,10D2
|
|
584
|
+
582,505,950,910,991,1,209,10D1
|
|
585
|
+
583,503,945,905,985,1,208,10D0
|
|
586
|
+
584,500,940,900,980,1,206,10CE
|
|
587
|
+
585,497,935,895,975,1,205,10CD
|
|
588
|
+
586,495,930,891,970,1,204,10CC
|
|
589
|
+
587,492,925,886,965,1,203,10CB
|
|
590
|
+
588,490,920,881,959,1,202,10CA
|
|
591
|
+
589,487,915,877,954,1,201,10C9
|
|
592
|
+
590,484,911,872,949,1,200,10C8
|
|
593
|
+
591,482,906,867,944,1,199,10C7
|
|
594
|
+
592,479,901,863,939,1,198,10C6
|
|
595
|
+
593,477,896,858,934,1,197,10C5
|
|
596
|
+
594,474,891,854,929,1,196,10C4
|
|
597
|
+
595,472,887,849,924,1,195,10C3
|
|
598
|
+
596,469,882,845,920,1,194,10C2
|
|
599
|
+
597,467,877,840,915,1,193,10C1
|
|
600
|
+
598,464,873,836,910,1,192,10C0
|
|
601
|
+
599,462,868,831,905,1,191,10BF
|
|
602
|
+
600,459,863,827,900,1,190,10BE
|
|
603
|
+
601,457,859,822,895,1,189,10BD
|
|
604
|
+
602,454,854,818,891,1,188,10BC
|
|
605
|
+
603,452,850,814,886,1,187,10BB
|
|
606
|
+
604,450,845,809,881,1,186,10BA
|
|
607
|
+
605,447,841,805,877,1,185,10B9
|
|
608
|
+
606,445,836,801,872,1,184,10B8
|
|
609
|
+
607,443,832,797,867,1,184,10B8
|
|
610
|
+
608,440,828,792,863,1,183,10B7
|
|
611
|
+
609,438,823,788,858,1,182,10B6
|
|
612
|
+
610,436,819,784,854,1,181,10B5
|
|
613
|
+
611,433,814,780,849,1,180,10B4
|
|
614
|
+
612,431,810,776,845,1,179,10B3
|
|
615
|
+
613,429,806,772,840,1,178,10B2
|
|
616
|
+
614,426,802,767,836,1,177,10B1
|
|
617
|
+
615,424,797,763,831,1,176,10B0
|
|
618
|
+
616,422,793,759,827,1,175,10AF
|
|
619
|
+
617,420,789,755,822,1,174,10AE
|
|
620
|
+
618,417,785,751,818,1,173,10AD
|
|
621
|
+
619,415,781,747,814,1,173,10AD
|
|
622
|
+
620,413,776,743,809,1,172,10AC
|
|
623
|
+
621,411,772,739,805,1,171,10AB
|
|
624
|
+
622,409,768,736,801,1,170,10AA
|
|
625
|
+
623,406,764,732,797,1,169,10A9
|
|
626
|
+
624,404,760,728,792,1,168,10A8
|
|
627
|
+
625,402,756,724,788,1,167,10A7
|
|
628
|
+
626,400,752,720,784,1,167,10A7
|
|
629
|
+
627,398,748,716,780,1,166,10A6
|
|
630
|
+
628,396,744,712,776,1,165,10A5
|
|
631
|
+
629,394,740,709,772,1,164,10A4
|
|
632
|
+
630,392,736,705,767,1,163,10A3
|
|
633
|
+
631,390,732,701,763,1,162,10A2
|
|
634
|
+
632,387,728,697,759,1,162,10A2
|
|
635
|
+
633,385,725,694,755,1,161,10A1
|
|
636
|
+
634,383,721,690,751,1,160,10A0
|
|
637
|
+
635,381,717,686,747,1,159,109F
|
|
638
|
+
636,379,713,683,743,1,158,109E
|
|
639
|
+
637,377,709,679,739,1,157,109D
|
|
640
|
+
638,375,706,676,736,1,157,109D
|
|
641
|
+
639,373,702,672,732,1,156,109C
|
|
642
|
+
640,371,698,668,728,1,155,109B
|
|
643
|
+
641,369,694,665,724,1,154,109A
|
|
644
|
+
642,367,691,661,720,1,154,109A
|
|
645
|
+
643,365,687,658,716,1,153,1099
|
|
646
|
+
644,364,683,654,712,1,152,1098
|
|
647
|
+
645,362,680,651,709,1,151,1097
|
|
648
|
+
646,360,676,647,705,1,150,1096
|
|
649
|
+
647,358,673,644,701,1,150,1096
|
|
650
|
+
648,356,669,641,697,1,149,1095
|
|
651
|
+
649,354,665,637,694,1,148,1094
|
|
652
|
+
650,352,662,634,690,1,147,1093
|
|
653
|
+
651,350,658,630,686,1,147,1093
|
|
654
|
+
652,348,655,627,683,1,146,1092
|
|
655
|
+
653,347,651,624,679,1,145,1091
|
|
656
|
+
654,345,648,620,676,1,144,1090
|
|
657
|
+
655,343,645,617,672,1,144,1090
|
|
658
|
+
656,341,641,614,668,1,143,108F
|
|
659
|
+
657,339,638,611,665,1,142,108E
|
|
660
|
+
658,337,634,607,661,1,142,108E
|
|
661
|
+
659,336,631,604,658,1,141,108D
|
|
662
|
+
660,334,628,601,654,1,140,108C
|
|
663
|
+
661,332,624,598,651,1,139,108B
|
|
664
|
+
662,330,621,595,647,1,139,108B
|
|
665
|
+
663,329,618,591,644,1,138,108A
|
|
666
|
+
664,327,614,588,641,1,137,1089
|
|
667
|
+
665,325,611,585,637,1,137,1089
|
|
668
|
+
666,323,608,582,634,1,136,1088
|
|
669
|
+
667,322,605,579,630,1,135,1087
|
|
670
|
+
668,320,602,576,627,1,135,1087
|
|
671
|
+
669,318,598,573,624,1,134,1086
|
|
672
|
+
670,317,595,570,620,1,133,1085
|
|
673
|
+
671,315,592,567,617,1,133,1085
|
|
674
|
+
672,313,589,564,614,1,132,1084
|
|
675
|
+
673,312,586,561,611,1,131,1083
|
|
676
|
+
674,310,583,558,607,1,131,1083
|
|
677
|
+
675,308,580,555,604,1,130,1082
|
|
678
|
+
676,307,576,552,601,1,129,1081
|
|
679
|
+
677,305,573,549,598,1,129,1081
|
|
680
|
+
678,303,570,546,595,1,128,1080
|
|
681
|
+
679,302,567,543,591,1,127,107F
|
|
682
|
+
680,300,564,540,588,1,127,107F
|
|
683
|
+
681,299,561,538,585,1,126,107E
|
|
684
|
+
682,297,558,535,582,1,125,107D
|
|
685
|
+
683,295,555,532,579,1,125,107D
|
|
686
|
+
684,294,552,529,576,1,124,107C
|
|
687
|
+
685,292,550,526,573,1,124,107C
|
|
688
|
+
686,291,547,523,570,1,123,107B
|
|
689
|
+
687,289,544,521,567,1,122,107A
|
|
690
|
+
688,288,541,518,564,1,122,107A
|
|
691
|
+
689,286,538,515,561,1,121,1079
|
|
692
|
+
690,285,535,512,558,1,121,1079
|
|
693
|
+
691,283,532,510,555,1,120,1078
|
|
694
|
+
692,282,529,507,552,1,119,1077
|
|
695
|
+
693,280,527,504,549,1,119,1077
|
|
696
|
+
694,279,524,502,546,1,118,1076
|
|
697
|
+
695,277,521,499,543,1,118,1076
|
|
698
|
+
696,276,518,496,540,1,117,1075
|
|
699
|
+
697,274,516,494,538,1,116,1074
|
|
700
|
+
698,273,513,491,535,1,116,1074
|
|
701
|
+
699,271,510,488,532,1,115,1073
|
|
702
|
+
700,270,507,486,529,1,115,1073
|
|
703
|
+
701,268,505,483,526,1,114,1072
|
|
704
|
+
702,267,502,481,523,1,113,1071
|
|
705
|
+
703,266,499,478,521,1,113,1071
|
|
706
|
+
704,264,497,476,518,1,112,1070
|
|
707
|
+
705,263,494,473,515,1,112,1070
|
|
708
|
+
706,261,492,471,512,1,111,106F
|
|
709
|
+
707,260,489,468,510,1,111,106F
|
|
710
|
+
708,259,486,466,507,1,110,106E
|
|
711
|
+
709,257,484,463,504,1,110,106E
|
|
712
|
+
710,256,481,461,502,1,109,106D
|
|
713
|
+
711,255,479,458,499,1,109,106D
|
|
714
|
+
712,253,476,456,496,1,108,106C
|
|
715
|
+
713,252,474,453,494,1,107,106B
|
|
716
|
+
714,251,471,451,491,1,107,106B
|
|
717
|
+
715,249,469,449,488,1,106,106A
|
|
718
|
+
716,248,466,446,486,1,106,106A
|
|
719
|
+
717,247,464,444,483,1,105,1069
|
|
720
|
+
718,245,461,442,481,1,105,1069
|
|
721
|
+
719,244,459,439,478,1,104,1068
|
|
722
|
+
720,243,456,437,476,1,104,1068
|
|
723
|
+
721,241,454,435,473,1,103,1067
|
|
724
|
+
722,240,451,432,471,1,103,1067
|
|
725
|
+
723,239,449,430,468,1,102,1066
|
|
726
|
+
724,238,447,428,466,1,102,1066
|
|
727
|
+
725,236,444,425,463,1,101,1065
|
|
728
|
+
726,235,442,423,461,1,101,1065
|
|
729
|
+
727,234,440,421,458,1,100,1064
|
|
730
|
+
728,233,437,419,456,1,100,1064
|
|
731
|
+
729,231,435,416,453,1,99,1063
|
|
732
|
+
730,230,433,414,451,1,99,1063
|
|
733
|
+
731,229,430,412,449,1,98,1062
|
|
734
|
+
732,228,428,410,446,1,98,1062
|
|
735
|
+
733,226,426,408,444,1,97,1061
|
|
736
|
+
734,225,424,406,442,1,97,1061
|
|
737
|
+
735,224,421,403,439,1,96,1060
|
|
738
|
+
736,223,419,401,437,1,96,1060
|
|
739
|
+
737,222,417,399,435,1,95,105F
|
|
740
|
+
738,221,415,397,432,1,95,105F
|
|
741
|
+
739,219,412,395,430,1,94,105E
|
|
742
|
+
740,218,410,393,428,1,94,105E
|
|
743
|
+
741,217,408,391,425,1,94,105E
|
|
744
|
+
742,216,406,389,423,1,93,105D
|
|
745
|
+
743,215,404,387,421,1,93,105D
|
|
746
|
+
744,214,402,385,419,1,92,105C
|
|
747
|
+
745,212,399,383,416,1,92,105C
|
|
748
|
+
746,211,397,380,414,1,91,105B
|
|
749
|
+
747,210,395,378,412,1,91,105B
|
|
750
|
+
748,209,393,376,410,1,90,105A
|
|
751
|
+
749,208,391,374,408,1,90,105A
|
|
752
|
+
750,207,389,372,406,1,89,1059
|
|
753
|
+
751,206,387,371,403,1,89,1059
|
|
754
|
+
752,205,385,369,401,1,89,1059
|
|
755
|
+
753,204,383,367,399,1,88,1058
|
|
756
|
+
754,203,381,365,397,1,88,1058
|
|
757
|
+
755,201,379,363,395,1,87,1057
|
|
758
|
+
756,200,377,361,393,1,87,1057
|
|
759
|
+
757,199,375,359,391,1,86,1056
|
|
760
|
+
758,198,373,357,389,1,86,1056
|
|
761
|
+
759,197,371,355,387,1,86,1056
|
|
762
|
+
760,196,369,353,385,1,85,1055
|
|
763
|
+
761,195,367,351,383,1,85,1055
|
|
764
|
+
762,194,365,349,380,1,84,1054
|
|
765
|
+
763,193,363,348,378,1,84,1054
|
|
766
|
+
764,192,361,346,376,1,84,1054
|
|
767
|
+
765,191,359,344,374,1,83,1053
|
|
768
|
+
766,190,357,342,372,1,83,1053
|
|
769
|
+
767,189,355,340,371,1,82,1052
|
|
770
|
+
768,188,354,338,369,1,82,1052
|
|
771
|
+
769,187,352,337,367,1,82,1052
|
|
772
|
+
770,186,350,335,365,1,81,1051
|
|
773
|
+
771,185,348,333,363,1,81,1051
|
|
774
|
+
772,184,346,331,361,1,80,1050
|
|
775
|
+
773,183,344,330,359,1,80,1050
|
|
776
|
+
774,182,342,328,357,1,80,1050
|
|
777
|
+
775,181,341,326,355,1,79,104F
|
|
778
|
+
776,180,339,324,353,1,79,104F
|
|
779
|
+
777,179,337,323,351,1,78,104E
|
|
780
|
+
778,178,335,321,349,1,78,104E
|
|
781
|
+
779,177,333,319,348,1,78,104E
|
|
782
|
+
780,176,332,318,346,1,77,104D
|
|
783
|
+
781,175,330,316,344,1,77,104D
|
|
784
|
+
782,175,328,314,342,1,77,104D
|
|
785
|
+
783,174,326,313,340,1,76,104C
|
|
786
|
+
784,173,325,311,338,1,76,104C
|
|
787
|
+
785,172,323,309,337,1,75,104B
|
|
788
|
+
786,171,321,308,335,1,75,104B
|
|
789
|
+
787,170,320,306,333,1,75,104B
|
|
790
|
+
788,169,318,304,331,1,74,104A
|
|
791
|
+
789,168,316,303,330,1,74,104A
|
|
792
|
+
790,167,314,301,328,1,74,104A
|
|
793
|
+
791,166,313,300,326,1,73,1049
|
|
794
|
+
792,166,311,298,324,1,73,1049
|
|
795
|
+
793,165,310,296,323,1,73,1049
|
|
796
|
+
794,164,308,295,321,1,72,1048
|
|
797
|
+
795,163,306,293,319,1,72,1048
|
|
798
|
+
796,162,305,292,318,1,72,1048
|
|
799
|
+
797,161,303,290,316,1,71,1047
|
|
800
|
+
798,160,301,289,314,1,71,1047
|
|
801
|
+
799,159,300,287,313,1,71,1047
|
|
802
|
+
800,159,298,286,311,1,70,1046
|
|
803
|
+
801,158,297,284,309,1,70,1046
|
|
804
|
+
802,157,295,283,308,1,70,1046
|
|
805
|
+
803,156,293,281,306,1,69,1045
|
|
806
|
+
804,155,292,280,304,1,69,1045
|
|
807
|
+
805,154,290,278,303,1,69,1045
|
|
808
|
+
806,154,289,277,301,1,68,1044
|
|
809
|
+
807,153,287,275,300,1,68,1044
|
|
810
|
+
808,152,286,274,298,1,68,1044
|
|
811
|
+
809,151,284,272,296,1,67,1043
|
|
812
|
+
810,150,283,271,295,1,67,1043
|
|
813
|
+
811,150,281,269,293,1,67,1043
|
|
814
|
+
812,149,280,268,292,1,66,1042
|
|
815
|
+
813,148,278,266,290,1,66,1042
|
|
816
|
+
814,147,277,265,289,1,66,1042
|
|
817
|
+
815,146,275,264,287,1,65,1041
|
|
818
|
+
816,146,274,262,286,1,65,1041
|
|
819
|
+
817,145,272,261,284,1,65,1041
|
|
820
|
+
818,144,271,259,283,1,64,1040
|
|
821
|
+
819,143,270,258,281,1,64,1040
|
|
822
|
+
820,143,268,257,280,1,64,1040
|
|
823
|
+
821,142,267,255,278,1,64,1040
|
|
824
|
+
822,141,265,254,277,1,63,103F
|
|
825
|
+
823,140,264,253,275,1,63,103F
|
|
826
|
+
824,140,262,251,274,1,63,103F
|
|
827
|
+
825,139,261,250,272,1,62,103E
|
|
828
|
+
826,138,260,249,271,1,62,103E
|
|
829
|
+
827,137,258,247,269,1,62,103E
|
|
830
|
+
828,137,257,246,268,1,61,103D
|
|
831
|
+
829,136,256,245,266,1,61,103D
|
|
832
|
+
830,135,254,243,265,1,61,103D
|
|
833
|
+
831,135,253,242,264,1,61,103D
|
|
834
|
+
832,134,252,241,262,1,60,103C
|
|
835
|
+
833,133,250,240,261,1,60,103C
|
|
836
|
+
834,132,249,238,259,1,60,103C
|
|
837
|
+
835,132,248,237,258,1,59,103B
|
|
838
|
+
836,131,246,236,257,1,59,103B
|
|
839
|
+
837,130,245,235,255,1,59,103B
|
|
840
|
+
838,130,244,233,254,1,59,103B
|
|
841
|
+
839,129,242,232,253,1,58,103A
|
|
842
|
+
840,128,241,231,251,1,58,103A
|
|
843
|
+
841,128,240,230,250,1,58,103A
|
|
844
|
+
842,127,239,228,249,1,58,103A
|
|
845
|
+
843,126,237,227,247,1,57,1039
|
|
846
|
+
844,126,236,226,246,1,57,1039
|
|
847
|
+
845,125,235,225,245,1,57,1039
|
|
848
|
+
846,124,234,224,243,1,56,1038
|
|
849
|
+
847,124,232,222,242,1,56,1038
|
|
850
|
+
848,123,231,221,241,1,56,1038
|
|
851
|
+
849,122,230,220,240,1,56,1038
|
|
852
|
+
850,122,229,219,238,1,55,1037
|
|
853
|
+
851,121,227,218,237,1,55,1037
|
|
854
|
+
852,120,226,217,236,1,55,1037
|
|
855
|
+
853,120,225,215,235,1,55,1037
|
|
856
|
+
854,119,224,214,233,1,54,1036
|
|
857
|
+
855,118,223,213,232,1,54,1036
|
|
858
|
+
856,118,221,212,231,1,54,1036
|
|
859
|
+
857,117,220,211,230,1,54,1036
|
|
860
|
+
858,117,219,210,228,1,53,1035
|
|
861
|
+
859,116,218,209,227,1,53,1035
|
|
862
|
+
860,115,217,208,226,1,53,1035
|
|
863
|
+
861,115,216,206,225,1,53,1035
|
|
864
|
+
862,114,214,205,224,1,52,1034
|
|
865
|
+
863,113,213,204,222,1,52,1034
|
|
866
|
+
864,113,212,203,221,1,52,1034
|
|
867
|
+
865,112,211,202,220,1,52,1034
|
|
868
|
+
866,112,210,201,219,1,51,1033
|
|
869
|
+
867,111,209,200,218,1,51,1033
|
|
870
|
+
868,111,208,199,217,1,51,1033
|
|
871
|
+
869,110,207,198,215,1,51,1033
|
|
872
|
+
870,109,206,197,214,1,51,1033
|
|
873
|
+
871,109,204,196,213,1,50,1032
|
|
874
|
+
872,108,203,195,212,1,50,1032
|
|
875
|
+
873,108,202,194,211,1,50,1032
|
|
876
|
+
874,107,201,193,210,1,50,1032
|
|
877
|
+
875,106,200,192,209,1,49,1031
|
|
878
|
+
876,106,199,191,208,1,49,1031
|
|
879
|
+
877,105,198,190,206,1,49,1031
|
|
880
|
+
878,105,197,189,205,1,49,1031
|
|
881
|
+
879,104,196,188,204,1,49,1031
|
|
882
|
+
880,104,195,187,203,1,48,1030
|
|
883
|
+
881,103,194,186,202,1,48,1030
|
|
884
|
+
882,103,193,185,201,1,48,1030
|
|
885
|
+
883,102,192,184,200,1,48,1030
|
|
886
|
+
884,101,191,183,199,1,47,102F
|
|
887
|
+
885,101,190,182,198,1,47,102F
|
|
888
|
+
886,100,189,181,197,1,47,102F
|
|
889
|
+
887,100,188,180,196,1,47,102F
|
|
890
|
+
888,99,187,179,195,1,47,102F
|
|
891
|
+
889,99,186,178,194,1,46,102E
|
|
892
|
+
890,98,185,177,193,1,46,102E
|
|
893
|
+
891,98,184,176,192,1,46,102E
|
|
894
|
+
892,97,183,175,191,1,46,102E
|
|
895
|
+
893,97,182,174,190,1,46,102E
|
|
896
|
+
894,96,181,173,189,1,45,102D
|
|
897
|
+
895,96,180,172,188,1,45,102D
|
|
898
|
+
896,95,179,171,187,1,45,102D
|
|
899
|
+
897,95,178,171,186,1,45,102D
|
|
900
|
+
898,94,177,170,185,1,45,102D
|
|
901
|
+
899,94,176,169,184,1,44,102C
|
|
902
|
+
900,93,175,168,183,1,44,102C
|
|
903
|
+
901,93,174,167,182,1,44,102C
|
|
904
|
+
902,92,173,166,181,1,44,102C
|
|
905
|
+
903,92,172,165,180,1,44,102C
|
|
906
|
+
904,91,172,164,179,1,43,102B
|
|
907
|
+
905,91,171,163,178,1,43,102B
|
|
908
|
+
906,90,170,163,177,1,43,102B
|
|
909
|
+
907,90,169,162,176,1,43,102B
|
|
910
|
+
908,89,168,161,175,1,43,102B
|
|
911
|
+
909,89,167,160,174,1,42,102A
|
|
912
|
+
910,88,166,159,173,1,42,102A
|
|
913
|
+
911,88,165,158,172,1,42,102A
|
|
914
|
+
912,87,164,157,171,1,42,102A
|
|
915
|
+
913,87,164,157,171,1,42,102A
|
|
916
|
+
914,87,163,156,170,1,41,1029
|
|
917
|
+
915,86,162,155,169,1,41,1029
|
|
918
|
+
916,86,161,154,168,1,41,1029
|
|
919
|
+
917,85,160,153,167,1,41,1029
|
|
920
|
+
918,85,159,152,166,1,41,1029
|
|
921
|
+
919,84,158,152,165,1,41,1029
|
|
922
|
+
920,84,158,151,164,1,40,1028
|
|
923
|
+
921,83,157,150,163,1,40,1028
|
|
924
|
+
922,83,156,149,163,1,40,1028
|
|
925
|
+
923,82,155,148,162,1,40,1028
|
|
926
|
+
924,82,154,148,161,1,40,1028
|
|
927
|
+
925,82,153,147,160,1,39,1027
|
|
928
|
+
926,81,153,146,159,1,39,1027
|
|
929
|
+
927,81,152,145,158,1,39,1027
|
|
930
|
+
928,80,151,145,157,1,39,1027
|
|
931
|
+
929,80,150,144,157,1,39,1027
|
|
932
|
+
930,79,149,143,156,1,39,1027
|
|
933
|
+
931,79,149,142,155,1,38,1026
|
|
934
|
+
932,79,148,142,154,1,38,1026
|
|
935
|
+
933,78,147,141,153,1,38,1026
|
|
936
|
+
934,78,146,140,152,1,38,1026
|
|
937
|
+
935,77,146,139,152,1,38,1026
|
|
938
|
+
936,77,145,139,151,1,38,1026
|
|
939
|
+
937,77,144,138,150,1,37,1025
|
|
940
|
+
938,76,143,137,149,1,37,1025
|
|
941
|
+
939,76,142,136,148,1,37,1025
|
|
942
|
+
940,75,142,136,148,1,37,1025
|
|
943
|
+
941,75,141,135,147,1,37,1025
|
|
944
|
+
942,75,140,134,146,1,37,1025
|
|
945
|
+
943,74,139,134,145,1,37,1025
|
|
946
|
+
944,74,139,133,145,1,36,1024
|
|
947
|
+
945,73,138,132,144,1,36,1024
|
|
948
|
+
946,73,137,131,143,1,36,1024
|
|
949
|
+
947,73,137,131,142,1,36,1024
|
|
950
|
+
948,72,136,130,142,1,36,1024
|
|
951
|
+
949,72,135,129,141,1,36,1024
|
|
952
|
+
950,71,134,129,140,1,35,1023
|
|
953
|
+
951,71,134,128,139,1,35,1023
|
|
954
|
+
952,71,133,127,139,1,35,1023
|
|
955
|
+
953,70,132,127,138,1,35,1023
|
|
956
|
+
954,70,132,126,137,1,35,1023
|
|
957
|
+
955,70,131,125,136,1,35,1023
|
|
958
|
+
956,69,130,125,136,1,35,1023
|
|
959
|
+
957,69,129,124,135,1,34,1022
|
|
960
|
+
958,68,129,123,134,1,34,1022
|
|
961
|
+
959,68,128,123,134,1,34,1022
|
|
962
|
+
960,68,127,122,133,1,34,1022
|
|
963
|
+
961,67,127,121,132,1,34,1022
|
|
964
|
+
962,67,126,121,131,1,34,1022
|
|
965
|
+
963,67,125,120,131,1,34,1022
|
|
966
|
+
964,66,125,119,130,1,33,1021
|
|
967
|
+
965,66,124,119,129,1,33,1021
|
|
968
|
+
966,66,123,118,129,1,33,1021
|
|
969
|
+
967,65,123,118,128,1,33,1021
|
|
970
|
+
968,65,122,117,127,1,33,1021
|
|
971
|
+
969,65,121,116,127,1,33,1021
|
|
972
|
+
970,64,121,116,126,1,33,1021
|
|
973
|
+
971,64,120,115,125,1,32,1020
|
|
974
|
+
972,64,120,114,125,1,32,1020
|
|
975
|
+
973,63,119,114,124,1,32,1020
|
|
976
|
+
974,63,118,113,123,1,32,1020
|
|
977
|
+
975,63,118,113,123,1,32,1020
|
|
978
|
+
976,62,117,112,122,1,32,1020
|
|
979
|
+
977,62,116,111,121,0,255,00FF
|
|
980
|
+
978,62,116,111,121,0,254,00FE
|
|
981
|
+
979,61,115,110,120,0,253,00FD
|
|
982
|
+
980,61,115,110,119,0,251,00FB
|
|
983
|
+
981,61,114,109,119,0,250,00FA
|
|
984
|
+
982,60,113,109,118,0,249,00F9
|
|
985
|
+
983,60,113,108,118,0,248,00F8
|
|
986
|
+
984,60,112,107,117,0,246,00F6
|
|
987
|
+
985,59,112,107,116,0,245,00F5
|
|
988
|
+
986,59,111,106,116,0,244,00F4
|
|
989
|
+
987,59,110,106,115,0,243,00F3
|
|
990
|
+
988,58,110,105,114,0,241,00F1
|
|
991
|
+
989,58,109,105,114,0,240,00F0
|
|
992
|
+
990,58,109,104,113,0,239,00EF
|
|
993
|
+
991,57,108,103,113,0,238,00EE
|
|
994
|
+
992,57,107,103,112,0,236,00EC
|
|
995
|
+
993,57,107,102,111,0,235,00EB
|
|
996
|
+
994,57,106,102,111,0,234,00EA
|
|
997
|
+
995,56,106,101,110,0,233,00E9
|
|
998
|
+
996,56,105,101,110,0,232,00E8
|
|
999
|
+
997,56,105,100,109,0,230,00E6
|
|
1000
|
+
998,55,104,100,109,0,229,00E5
|
|
1001
|
+
999,55,104,99,108,0,228,00E4
|
|
1002
|
+
1000,55,103,99,107,0,227,00E3
|
|
1003
|
+
1001,54,102,98,107,0,226,00E2
|
|
1004
|
+
1002,54,102,98,106,0,225,00E1
|
|
1005
|
+
1003,54,101,97,106,0,223,00DF
|
|
1006
|
+
1004,54,101,97,105,0,222,00DE
|
|
1007
|
+
1005,53,100,96,105,0,221,00DD
|
|
1008
|
+
1006,53,100,96,104,0,220,00DC
|
|
1009
|
+
1007,53,99,95,103,0,219,00DB
|
|
1010
|
+
1008,53,99,95,103,0,218,00DA
|
|
1011
|
+
1009,52,98,94,102,0,217,00D9
|
|
1012
|
+
1010,52,98,94,102,0,216,00D8
|
|
1013
|
+
1011,52,97,93,101,0,214,00D6
|
|
1014
|
+
1012,51,97,93,101,0,213,00D5
|
|
1015
|
+
1013,51,96,92,100,0,212,00D4
|
|
1016
|
+
1014,51,96,92,100,0,211,00D3
|
|
1017
|
+
1015,51,95,91,99,0,210,00D2
|
|
1018
|
+
1016,50,95,91,99,0,209,00D1
|
|
1019
|
+
1017,50,94,90,98,0,208,00D0
|
|
1020
|
+
1018,50,94,90,98,0,207,00CF
|
|
1021
|
+
1019,50,93,89,97,0,206,00CE
|
|
1022
|
+
1020,49,93,89,97,0,205,00CD
|
|
1023
|
+
1021,49,92,88,96,0,204,00CC
|
|
1024
|
+
1022,49,92,88,96,0,203,00CB
|
|
1025
|
+
1023,48,91,87,95,0,202,00CA
|