imap-processing 0.11.0__py3-none-any.whl → 0.12.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 +10 -11
- imap_processing/_version.py +2 -2
- imap_processing/ccsds/excel_to_xtce.py +65 -16
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +6 -28
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +365 -42
- imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +0 -5
- imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +10 -11
- imap_processing/cdf/config/imap_hi_variable_attrs.yaml +17 -19
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +26 -13
- imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +106 -116
- imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +120 -145
- imap_processing/cdf/config/imap_hit_l2_variable_attrs.yaml +14 -0
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +6 -9
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +1 -1
- imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +0 -12
- imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +1 -1
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +9 -21
- imap_processing/cdf/config/imap_mag_l1a_variable_attrs.yaml +361 -0
- imap_processing/cdf/config/imap_mag_l1b_variable_attrs.yaml +160 -0
- imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +160 -0
- imap_processing/cdf/config/imap_spacecraft_global_cdf_attrs.yaml +18 -0
- imap_processing/cdf/config/imap_spacecraft_variable_attrs.yaml +40 -0
- imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +1 -5
- imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +12 -4
- imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +16 -2
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +48 -52
- imap_processing/cdf/config/imap_swe_l2_variable_attrs.yaml +71 -47
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +2 -14
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +51 -2
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +29 -14
- imap_processing/cdf/utils.py +13 -7
- imap_processing/cli.py +23 -8
- imap_processing/codice/codice_l1a.py +207 -85
- imap_processing/codice/constants.py +1322 -568
- imap_processing/codice/decompress.py +2 -6
- imap_processing/ena_maps/ena_maps.py +480 -116
- imap_processing/ena_maps/utils/coordinates.py +19 -0
- imap_processing/ena_maps/utils/map_utils.py +14 -17
- imap_processing/ena_maps/utils/spatial_utils.py +45 -47
- imap_processing/hi/l1a/hi_l1a.py +24 -18
- imap_processing/hi/l1a/histogram.py +0 -1
- imap_processing/hi/l1a/science_direct_event.py +6 -8
- imap_processing/hi/l1b/hi_l1b.py +31 -39
- imap_processing/hi/l1c/hi_l1c.py +405 -17
- imap_processing/hi/utils.py +58 -12
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt0-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt1-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt2-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt3-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-summed-dt0-factors_20250219_v002.csv +68 -0
- imap_processing/hit/hit_utils.py +173 -1
- imap_processing/hit/l0/constants.py +20 -11
- imap_processing/hit/l0/decom_hit.py +18 -4
- imap_processing/hit/l1a/hit_l1a.py +45 -54
- imap_processing/hit/l1b/constants.py +317 -0
- imap_processing/hit/l1b/hit_l1b.py +367 -18
- imap_processing/hit/l2/constants.py +281 -0
- imap_processing/hit/l2/hit_l2.py +614 -0
- imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1323 -71
- imap_processing/ialirt/l0/mag_l0_ialirt_data.py +155 -0
- imap_processing/ialirt/l0/parse_mag.py +246 -0
- imap_processing/ialirt/l0/process_swe.py +252 -0
- imap_processing/ialirt/packet_definitions/ialirt.xml +7 -3
- imap_processing/ialirt/packet_definitions/ialirt_mag.xml +115 -0
- imap_processing/ialirt/utils/grouping.py +114 -0
- imap_processing/ialirt/utils/time.py +29 -0
- imap_processing/idex/atomic_masses.csv +22 -0
- imap_processing/idex/decode.py +2 -2
- imap_processing/idex/idex_constants.py +25 -0
- imap_processing/idex/idex_l1a.py +6 -7
- imap_processing/idex/idex_l1b.py +4 -31
- imap_processing/idex/idex_l2a.py +789 -0
- imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +39 -33
- imap_processing/lo/l0/lo_science.py +6 -0
- imap_processing/lo/l1a/lo_l1a.py +0 -1
- imap_processing/lo/l1b/lo_l1b.py +177 -25
- imap_processing/mag/constants.py +8 -0
- imap_processing/mag/imap_mag_sdc-configuration_v001.yaml +6 -0
- imap_processing/mag/l0/decom_mag.py +10 -3
- imap_processing/mag/l1a/mag_l1a.py +22 -11
- imap_processing/mag/l1a/mag_l1a_data.py +28 -3
- imap_processing/mag/l1b/mag_l1b.py +190 -48
- imap_processing/mag/l1c/interpolation_methods.py +211 -0
- imap_processing/mag/l1c/mag_l1c.py +447 -9
- imap_processing/quality_flags.py +1 -0
- imap_processing/spacecraft/packet_definitions/scid_x252.xml +538 -0
- imap_processing/spacecraft/quaternions.py +123 -0
- imap_processing/spice/geometry.py +16 -19
- imap_processing/spice/repoint.py +120 -0
- imap_processing/swapi/l1/swapi_l1.py +4 -0
- imap_processing/swapi/l2/swapi_l2.py +0 -1
- imap_processing/swe/l1a/swe_l1a.py +47 -8
- imap_processing/swe/l1a/swe_science.py +5 -2
- imap_processing/swe/l1b/swe_l1b_science.py +103 -56
- imap_processing/swe/l2/swe_l2.py +60 -65
- imap_processing/swe/packet_definitions/swe_packet_definition.xml +1121 -1
- imap_processing/swe/utils/swe_constants.py +63 -0
- imap_processing/swe/utils/swe_utils.py +85 -28
- imap_processing/tests/ccsds/test_data/expected_output.xml +40 -1
- imap_processing/tests/ccsds/test_excel_to_xtce.py +23 -20
- imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +0 -2
- imap_processing/tests/codice/conftest.py +1 -1
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-singles_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-ialirt_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-omni_20241110193700_v0.0.0.cdf +0 -0
- 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_hi-priorities_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-sectored_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-singles_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-angular_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-priority_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-species_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/data/validation/imap_codice_l1a_lo-sw-angular_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-priority_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-species_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/test_codice_l1a.py +110 -46
- imap_processing/tests/codice/test_decompress.py +4 -4
- imap_processing/tests/conftest.py +166 -10
- imap_processing/tests/ena_maps/conftest.py +51 -0
- imap_processing/tests/ena_maps/test_ena_maps.py +638 -109
- imap_processing/tests/ena_maps/test_map_utils.py +66 -43
- imap_processing/tests/ena_maps/test_spatial_utils.py +16 -20
- imap_processing/tests/hi/data/l0/H45_diag_fee_20250208.bin +0 -0
- imap_processing/tests/hi/data/l0/H45_diag_fee_20250208_verify.csv +205 -0
- imap_processing/tests/hi/test_hi_l1b.py +12 -15
- imap_processing/tests/hi/test_hi_l1c.py +234 -6
- imap_processing/tests/hi/test_l1a.py +30 -0
- imap_processing/tests/hi/test_science_direct_event.py +1 -1
- imap_processing/tests/hi/test_utils.py +24 -2
- imap_processing/tests/hit/helpers/l1_validation.py +39 -39
- imap_processing/tests/hit/test_data/hskp_sample.ccsds +0 -0
- imap_processing/tests/hit/test_data/imap_hit_l0_raw_20100105_v001.pkts +0 -0
- imap_processing/tests/hit/test_decom_hit.py +4 -0
- imap_processing/tests/hit/test_hit_l1a.py +24 -28
- imap_processing/tests/hit/test_hit_l1b.py +304 -40
- imap_processing/tests/hit/test_hit_l2.py +454 -0
- imap_processing/tests/hit/test_hit_utils.py +112 -2
- imap_processing/tests/hit/validation_data/hskp_sample_eu_3_6_2025.csv +89 -0
- imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +89 -88
- imap_processing/tests/ialirt/test_data/l0/461971383-404.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971384-405.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971385-406.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971386-407.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971387-408.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971388-409.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971389-410.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971390-411.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971391-412.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/sample_decoded_i-alirt_data.csv +383 -0
- imap_processing/tests/ialirt/unit/test_grouping.py +81 -0
- imap_processing/tests/ialirt/unit/test_parse_mag.py +168 -0
- imap_processing/tests/ialirt/unit/test_process_swe.py +208 -3
- imap_processing/tests/ialirt/unit/test_time.py +16 -0
- imap_processing/tests/idex/conftest.py +62 -6
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231218_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/impact_14_tof_high_data.txt +4508 -4508
- imap_processing/tests/idex/test_idex_l1a.py +48 -4
- imap_processing/tests/idex/test_idex_l1b.py +3 -3
- imap_processing/tests/idex/test_idex_l2a.py +383 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20241022_v002.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20241022_v002.cdf +0 -0
- imap_processing/tests/lo/test_lo_l1b.py +148 -4
- imap_processing/tests/lo/test_lo_science.py +1 -0
- imap_processing/tests/mag/conftest.py +69 -0
- imap_processing/tests/mag/test_mag_decom.py +1 -1
- imap_processing/tests/mag/test_mag_l1a.py +38 -0
- imap_processing/tests/mag/test_mag_l1b.py +34 -53
- imap_processing/tests/mag/test_mag_l1c.py +251 -20
- imap_processing/tests/mag/test_mag_validation.py +109 -25
- imap_processing/tests/mag/validation/L1b/T009/MAGScience-normal-(2,2)-8s-20250204-16h39.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-magi-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-mago-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T010/MAGScience-normal-(2,2)-8s-20250206-12h05.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T011/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-magi-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-mago-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T012/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/data.bin +0 -0
- imap_processing/tests/mag/validation/L1b/T012/field_like_all_ranges.txt +19200 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-cal.cdf +0 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-in.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-magi-out.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-mago-out.csv +17 -0
- imap_processing/tests/mag/validation/imap_calibration_mag_20240229_v01.cdf +0 -0
- imap_processing/tests/spacecraft/__init__.py +0 -0
- imap_processing/tests/spacecraft/data/SSR_2024_190_20_08_12_0483851794_2_DA_apid0594_1packet.pkts +0 -0
- imap_processing/tests/spacecraft/test_quaternions.py +71 -0
- imap_processing/tests/spice/test_data/fake_repoint_data.csv +5 -0
- imap_processing/tests/spice/test_geometry.py +6 -9
- imap_processing/tests/spice/test_repoint.py +111 -0
- imap_processing/tests/swapi/test_swapi_l1.py +7 -3
- imap_processing/tests/swe/l0_data/2024051010_SWE_HK_packet.bin +0 -0
- imap_processing/tests/swe/l0_data/2024051011_SWE_CEM_RAW_packet.bin +0 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_APP_HK_20240510_092742.csv +49 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_CEM_RAW_20240510_092742.csv +593 -0
- imap_processing/tests/swe/test_swe_l1a.py +18 -0
- imap_processing/tests/swe/test_swe_l1a_cem_raw.py +52 -0
- imap_processing/tests/swe/test_swe_l1a_hk.py +68 -0
- imap_processing/tests/swe/test_swe_l1b_science.py +23 -4
- imap_processing/tests/swe/test_swe_l2.py +112 -30
- imap_processing/tests/test_cli.py +2 -2
- imap_processing/tests/test_utils.py +138 -16
- imap_processing/tests/ultra/data/l0/FM45_UltraFM45_Functional_2024-01-22T0105_20240122T010548.CCSDS +0 -0
- imap_processing/tests/ultra/data/l0/ultra45_raw_sc_ultraimgrates_20220530_00.csv +164 -0
- imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3243 -3243
- imap_processing/tests/ultra/data/mock_data.py +341 -0
- imap_processing/tests/ultra/unit/conftest.py +69 -26
- imap_processing/tests/ultra/unit/test_badtimes.py +2 -0
- imap_processing/tests/ultra/unit/test_cullingmask.py +4 -0
- imap_processing/tests/ultra/unit/test_de.py +12 -4
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +44 -0
- imap_processing/tests/ultra/unit/test_spacecraft_pset.py +78 -0
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +28 -12
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +34 -6
- imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +22 -26
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +86 -51
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +94 -52
- imap_processing/ultra/l0/decom_tools.py +6 -5
- imap_processing/ultra/l1a/ultra_l1a.py +28 -56
- imap_processing/ultra/l1b/de.py +72 -28
- imap_processing/ultra/l1b/extendedspin.py +12 -14
- imap_processing/ultra/l1b/ultra_l1b.py +34 -9
- imap_processing/ultra/l1b/ultra_l1b_culling.py +65 -29
- imap_processing/ultra/l1b/ultra_l1b_extended.py +64 -19
- imap_processing/ultra/l1c/spacecraft_pset.py +86 -0
- imap_processing/ultra/l1c/ultra_l1c.py +7 -4
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +112 -61
- imap_processing/ultra/lookup_tables/ultra_90_dps_exposure_compressed.cdf +0 -0
- imap_processing/ultra/utils/ultra_l1_utils.py +20 -2
- imap_processing/utils.py +68 -28
- {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/METADATA +8 -5
- {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/RECORD +250 -199
- imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +0 -237
- imap_processing/hi/l1a/housekeeping.py +0 -27
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/hi/data/l1/imap_hi_l1b_45sensor-de_20250415_v999.cdf +0 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1251.pkts +0 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1252.pkts +0 -0
- imap_processing/tests/hit/validation_data/hskp_sample_eu.csv +0 -89
- imap_processing/tests/hit/validation_data/sci_sample_raw1.csv +0 -29
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231214_v001.pkts +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20100101_v001.cdf +0 -0
- imap_processing/tests/ultra/test_data/mock_data.py +0 -161
- imap_processing/ultra/l1c/pset.py +0 -40
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E1.cdf +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E12.cdf +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E24.cdf +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/LICENSE +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/WHEEL +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,88 +1,89 @@
|
|
|
1
|
-
CCSDS_VERSION,CCSDS_TYPE,CCSDS_SEC_HDR_FLAG,CCSDS_APPID,CCSDS_GRP_FLAG,CCSDS_SEQ_CNT,CCSDS_LENGTH,
|
|
2
|
-
0,0,1,1251,3,
|
|
3
|
-
0,0,1,1251,3,
|
|
4
|
-
0,0,1,1251,3,
|
|
5
|
-
0,0,1,1251,3,
|
|
6
|
-
0,0,1,1251,3,
|
|
7
|
-
0,0,1,1251,3,
|
|
8
|
-
0,0,1,1251,3,
|
|
9
|
-
0,0,1,1251,3,
|
|
10
|
-
0,0,1,1251,3,
|
|
11
|
-
0,0,1,1251,3,
|
|
12
|
-
0,0,1,1251,3,
|
|
13
|
-
0,0,1,1251,3,
|
|
14
|
-
0,0,1,1251,3,
|
|
15
|
-
0,0,1,1251,3,
|
|
16
|
-
0,0,1,1251,3,
|
|
17
|
-
0,0,1,1251,3,
|
|
18
|
-
0,0,1,1251,3,
|
|
19
|
-
0,0,1,1251,3,
|
|
20
|
-
0,0,1,1251,3,
|
|
21
|
-
0,0,1,1251,3,
|
|
22
|
-
0,0,1,1251,3,
|
|
23
|
-
0,0,1,1251,3,
|
|
24
|
-
0,0,1,1251,3,
|
|
25
|
-
0,0,1,1251,3,
|
|
26
|
-
0,0,1,1251,3,
|
|
27
|
-
0,0,1,1251,3,
|
|
28
|
-
0,0,1,1251,3,
|
|
29
|
-
0,0,1,1251,3,
|
|
30
|
-
0,0,1,1251,3,
|
|
31
|
-
0,0,1,1251,3,
|
|
32
|
-
0,0,1,1251,3,
|
|
33
|
-
0,0,1,1251,3,
|
|
34
|
-
0,0,1,1251,3,
|
|
35
|
-
0,0,1,1251,3,
|
|
36
|
-
0,0,1,1251,3,
|
|
37
|
-
0,0,1,1251,3,
|
|
38
|
-
0,0,1,1251,3,
|
|
39
|
-
0,0,1,1251,3,
|
|
40
|
-
0,0,1,1251,3,
|
|
41
|
-
0,0,1,1251,3,
|
|
42
|
-
0,0,1,1251,3,
|
|
43
|
-
0,0,1,1251,3,
|
|
44
|
-
0,0,1,1251,3,
|
|
45
|
-
0,0,1,1251,3,
|
|
46
|
-
0,0,1,1251,3,
|
|
47
|
-
0,0,1,1251,3,
|
|
48
|
-
0,0,1,1251,3,
|
|
49
|
-
0,0,1,1251,3,
|
|
50
|
-
0,0,1,1251,3,
|
|
51
|
-
0,0,1,1251,3,
|
|
52
|
-
0,0,1,1251,3,
|
|
53
|
-
0,0,1,1251,3,
|
|
54
|
-
0,0,1,1251,3,
|
|
55
|
-
0,0,1,1251,3,
|
|
56
|
-
0,0,1,1251,3,
|
|
57
|
-
0,0,1,1251,3,
|
|
58
|
-
0,0,1,1251,3,
|
|
59
|
-
0,0,1,1251,3,
|
|
60
|
-
0,0,1,1251,3,
|
|
61
|
-
0,0,1,1251,3,
|
|
62
|
-
0,0,1,1251,3,
|
|
63
|
-
0,0,1,1251,3,
|
|
64
|
-
0,0,1,1251,3,
|
|
65
|
-
0,0,1,1251,3,
|
|
66
|
-
0,0,1,1251,3,
|
|
67
|
-
0,0,1,1251,3,
|
|
68
|
-
0,0,1,1251,3,
|
|
69
|
-
0,0,1,1251,3,
|
|
70
|
-
0,0,1,1251,3,
|
|
71
|
-
0,0,1,1251,3,
|
|
72
|
-
0,0,1,1251,3,
|
|
73
|
-
0,0,1,1251,3,
|
|
74
|
-
0,0,1,1251,3,
|
|
75
|
-
0,0,1,1251,3,
|
|
76
|
-
0,0,1,1251,3,
|
|
77
|
-
0,0,1,1251,3,
|
|
78
|
-
0,0,1,1251,3,
|
|
79
|
-
0,0,1,1251,3,
|
|
80
|
-
0,0,1,1251,3,
|
|
81
|
-
0,0,1,1251,3,
|
|
82
|
-
0,0,1,1251,3,
|
|
83
|
-
0,0,1,1251,3,
|
|
84
|
-
0,0,1,1251,3,
|
|
85
|
-
0,0,1,1251,3,
|
|
86
|
-
0,0,1,1251,3,
|
|
87
|
-
0,0,1,1251,3,
|
|
88
|
-
0,0,1,1251,3,
|
|
1
|
+
CCSDS_VERSION, CCSDS_TYPE, CCSDS_SEC_HDR_FLAG, CCSDS_APPID, CCSDS_GRP_FLAG, CCSDS_SEQ_CNT, CCSDS_LENGTH, SC_TICK, MODE, FSW_VERSION_A, FSW_VERSION_B, FSW_VERSION_C, NUM_GOOD_CMDS, LAST_GOOD_CMD, LAST_GOOD_SEQ_NUM, NUM_BAD_CMDS, LAST_BAD_CMD, LAST_BAD_SEQ_NUM, FEE_RUNNING, MRAM_DISABLED, ENABLE_50KHZ, ENABLE_HVPS, TABLE_STATUS, HEATER_CONTROL, ADC_MODE, DYN_THRESH_LVL, NUM_EVNT_LAST_HK, NUM_ERRORS, LAST_ERROR_NUM, CODE_CHECKSUM, SPIN_PERIOD_SHORT, SPIN_PERIOD_LONG, LEAK_I_63, LEAK_I_62, LEAK_I_61, LEAK_I_60, LEAK_I_59, LEAK_I_58, LEAK_I_57, LEAK_I_56, LEAK_I_55, LEAK_I_54, LEAK_I_53, LEAK_I_52, LEAK_I_51, LEAK_I_50, LEAK_I_49, LEAK_I_48, LEAK_I_47, LEAK_I_46, LEAK_I_45, LEAK_I_44, LEAK_I_43, LEAK_I_42, LEAK_I_41, LEAK_I_40, LEAK_I_39, LEAK_I_38, LEAK_I_37, LEAK_I_36, LEAK_I_35, LEAK_I_34, LEAK_I_33, LEAK_I_32, LEAK_I_31, LEAK_I_30, LEAK_I_29, LEAK_I_28, LEAK_I_27, LEAK_I_26, LEAK_I_25, LEAK_I_24, LEAK_I_23, LEAK_I_22, LEAK_I_21, LEAK_I_20, LEAK_I_19, LEAK_I_18, LEAK_I_17, LEAK_I_16, LEAK_I_15, LEAK_I_14, LEAK_I_13, LEAK_I_12, LEAK_I_11, LEAK_I_10, LEAK_I_09, LEAK_I_08, LEAK_I_07, LEAK_I_06, LEAK_I_05, LEAK_I_04, LEAK_I_03, LEAK_I_02, LEAK_I_01, LEAK_I_00, PHASIC_STAT, ACTIVE_HEATER, HEATER_ON, TEST_PULSER_ON, DAC0_ENABLE, DAC1_ENABLE, PREAMP_L234A, PREAMP_L1A, PREAMP_L1B, PREAMP_L234B, TEMP0, TEMP1, TEMP2, TEMP3, ANALOG_TEMP, HVPS_TEMP, IDPU_TEMP, LVPS_TEMP, EBOX_3D4VD, EBOX_5D1VD, EBOX_P12VA, EBOX_M12VA, EBOX_P5D7VA, EBOX_M5D7VA, REF_P5V, L1AB_BIAS, L2AB_BIAS, L34A_BIAS, L34B_BIAS, EBOX_P2D0VD
|
|
2
|
+
0, 0, 1, 1251, 3, 2882, 143, 377986, 4, 3, 2, 8, 162, 169, 85, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 932, 943, 931, 1151, 1152, 1136, 999, 2775, 3334, 2948, 358, 2986, 495, 3167, 1500, 1913, 2823, 2822, 1619
|
|
3
|
+
0, 0, 1, 1251, 3, 2883, 143, 377991, 4, 3, 2, 8, 162, 169, 85, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 932, 943, 931, 1151, 1152, 1136, 999, 2774, 3334, 2948, 358, 2986, 494, 3167, 1501, 1913, 2823, 2822, 1619
|
|
4
|
+
0, 0, 1, 1251, 3, 2884, 143, 377996, 4, 3, 2, 8, 162, 169, 85, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 931, 1151, 1152, 1136, 998, 2774, 3334, 2948, 358, 2986, 495, 3166, 1500, 1913, 2823, 2822, 1619
|
|
5
|
+
0, 0, 1, 1251, 3, 2885, 143, 378001, 4, 3, 2, 8, 162, 169, 85, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 932, 944, 931, 1151, 1152, 1136, 998, 2774, 3334, 2948, 358, 2986, 494, 3166, 1501, 1913, 2823, 2822, 1619
|
|
6
|
+
0, 0, 1, 1251, 3, 2886, 143, 378006, 4, 3, 2, 8, 167, 170, 90, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 905, 932, 944, 931, 1150, 1152, 1136, 998, 2774, 3334, 2948, 357, 2986, 494, 3166, 1501, 1913, 2822, 2823, 1602
|
|
7
|
+
0, 0, 1, 1251, 3, 2887, 143, 378011, 4, 3, 2, 8, 167, 170, 90, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 905, 933, 944, 931, 1152, 1152, 1136, 998, 2774, 3334, 2948, 358, 2986, 494, 3166, 1500, 1912, 2823, 2822, 1616
|
|
8
|
+
0, 0, 1, 1251, 3, 2888, 143, 378016, 4, 3, 2, 8, 172, 169, 95, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 905, 933, 944, 931, 1150, 1152, 1136, 998, 2769, 3335, 2948, 358, 2986, 495, 3166, 1500, 1913, 2822, 2821, 1620
|
|
9
|
+
0, 0, 1, 1251, 3, 2889, 143, 378021, 4, 3, 2, 8, 172, 169, 95, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 931, 1151, 1152, 1136, 998, 2774, 3334, 2948, 358, 2986, 495, 3167, 1501, 1913, 2823, 2822, 1612
|
|
10
|
+
0, 0, 1, 1251, 3, 2890, 143, 378026, 4, 3, 2, 8, 172, 169, 95, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 931, 1152, 1152, 1136, 999, 2774, 3334, 2948, 358, 2987, 494, 3167, 1500, 1913, 2823, 2822, 1610
|
|
11
|
+
0, 0, 1, 1251, 3, 2891, 143, 378031, 4, 3, 2, 8, 172, 169, 95, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 905, 933, 944, 932, 1152, 1152, 1136, 998, 2774, 3334, 2948, 358, 2987, 494, 3167, 1500, 1912, 2823, 2822, 1609
|
|
12
|
+
0, 0, 1, 1251, 3, 2892, 143, 378036, 4, 3, 2, 8, 172, 169, 95, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1152, 1152, 1136, 998, 2774, 3334, 2948, 358, 2986, 494, 3167, 1501, 1913, 2823, 2822, 1604
|
|
13
|
+
0, 0, 1, 1251, 3, 2893, 143, 378041, 4, 3, 2, 8, 172, 169, 95, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 785, 791, 776, 782, 905, 933, 944, 931, 1152, 1152, 1136, 998, 2774, 3334, 2948, 357, 2987, 495, 3166, 1500, 1913, 2823, 2822, 1605
|
|
14
|
+
0, 0, 1, 1251, 3, 2894, 143, 378046, 4, 3, 2, 8, 177, 170, 100, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 52, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 931, 1151, 1152, 1136, 999, 2774, 3334, 2948, 358, 2986, 494, 3167, 1501, 1913, 2824, 2824, 1619
|
|
15
|
+
0, 0, 1, 1251, 3, 2895, 143, 378051, 4, 3, 2, 8, 177, 170, 100, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2949, 358, 2986, 494, 3166, 1501, 1913, 2823, 2822, 1604
|
|
16
|
+
0, 0, 1, 1251, 3, 2896, 143, 378056, 4, 3, 2, 8, 182, 169, 105, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 931, 1150, 1152, 1136, 999, 2760, 3334, 2949, 358, 2986, 494, 3167, 1500, 1912, 2823, 2821, 1620
|
|
17
|
+
0, 0, 1, 1251, 3, 2897, 143, 378061, 4, 3, 2, 8, 182, 169, 105, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 998, 2774, 3334, 2948, 358, 2986, 494, 3167, 1501, 1912, 2823, 2822, 1604
|
|
18
|
+
0, 0, 1, 1251, 3, 2898, 143, 378066, 4, 3, 2, 8, 182, 169, 105, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1150, 1152, 1136, 998, 2774, 3334, 2948, 358, 2986, 495, 3167, 1500, 1913, 2823, 2822, 1603
|
|
19
|
+
0, 0, 1, 1251, 3, 2899, 143, 378071, 4, 3, 2, 8, 182, 169, 105, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 358, 2987, 494, 3166, 1501, 1913, 2823, 2822, 1603
|
|
20
|
+
0, 0, 1, 1251, 3, 2900, 143, 378076, 4, 3, 2, 8, 182, 169, 105, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2949, 358, 2986, 494, 3167, 1500, 1913, 2823, 2822, 1602
|
|
21
|
+
0, 0, 1, 1251, 3, 2901, 143, 378081, 4, 3, 2, 8, 182, 169, 105, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 998, 2774, 3334, 2948, 357, 2986, 495, 3166, 1501, 1913, 2823, 2823, 1602
|
|
22
|
+
0, 0, 1, 1251, 3, 2902, 143, 378086, 4, 3, 2, 8, 187, 170, 110, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 52, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 359, 2986, 494, 3167, 1500, 1914, 2825, 2822, 1620
|
|
23
|
+
0, 0, 1, 1251, 3, 2903, 143, 378091, 4, 3, 2, 8, 187, 170, 110, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2775, 3334, 2948, 358, 2986, 494, 3167, 1501, 1913, 2823, 2823, 1602
|
|
24
|
+
0, 0, 1, 1251, 3, 2904, 143, 378096, 4, 3, 2, 8, 192, 169, 115, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 358, 2986, 494, 3167, 1500, 1913, 2823, 2821, 1620
|
|
25
|
+
0, 0, 1, 1251, 3, 2905, 143, 378101, 4, 3, 2, 8, 192, 169, 115, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2775, 3334, 2948, 359, 2986, 494, 3167, 1502, 1913, 2823, 2823, 1620
|
|
26
|
+
0, 0, 1, 1251, 3, 2906, 143, 378106, 4, 3, 2, 8, 192, 169, 115, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 358, 2986, 495, 3166, 1501, 1913, 2823, 2823, 1619
|
|
27
|
+
0, 0, 1, 1251, 3, 2907, 143, 378111, 4, 3, 2, 8, 192, 169, 115, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 358, 2986, 494, 3166, 1501, 1913, 2823, 2824, 1620
|
|
28
|
+
0, 0, 1, 1251, 3, 2908, 143, 378116, 4, 3, 2, 8, 192, 169, 115, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2949, 358, 2986, 495, 3166, 1501, 1912, 2823, 2824, 1619
|
|
29
|
+
0, 0, 1, 1251, 3, 2909, 143, 378121, 4, 3, 2, 8, 192, 169, 115, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 357, 2986, 493, 3167, 1501, 1913, 2823, 2824, 1619
|
|
30
|
+
0, 0, 1, 1251, 3, 2910, 143, 378126, 4, 3, 2, 8, 197, 170, 120, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2947, 358, 2986, 494, 3167, 1501, 1914, 2823, 2822, 1620
|
|
31
|
+
0, 0, 1, 1251, 3, 2911, 143, 378131, 4, 3, 2, 8, 197, 170, 120, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 945, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 359, 2986, 495, 3167, 1501, 1912, 2824, 2824, 1619
|
|
32
|
+
0, 0, 1, 1251, 3, 2912, 143, 378136, 4, 3, 2, 8, 202, 169, 125, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1137, 999, 2771, 3335, 2948, 359, 2986, 494, 3166, 1500, 1913, 2822, 2821, 1619
|
|
33
|
+
0, 0, 1, 1251, 3, 2913, 143, 378141, 4, 3, 2, 8, 202, 169, 125, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1152, 1152, 1136, 999, 2775, 3334, 2947, 358, 2986, 494, 3166, 1500, 1913, 2824, 2824, 1619
|
|
34
|
+
0, 0, 1, 1251, 3, 2914, 143, 378146, 4, 3, 2, 8, 202, 169, 125, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 905, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2948, 358, 2986, 495, 3167, 1501, 1912, 2824, 2825, 1619
|
|
35
|
+
0, 0, 1, 1251, 3, 2915, 143, 378151, 4, 3, 2, 8, 202, 169, 125, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2775, 3334, 2948, 358, 2986, 495, 3166, 1500, 1913, 2824, 2822, 1620
|
|
36
|
+
0, 0, 1, 1251, 3, 2916, 143, 378156, 4, 3, 2, 8, 202, 169, 125, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 358, 2986, 494, 3166, 1501, 1913, 2825, 2822, 1619
|
|
37
|
+
0, 0, 1, 1251, 3, 2917, 143, 378161, 4, 3, 2, 8, 202, 169, 125, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 905, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2948, 358, 2986, 495, 3167, 1500, 1913, 2825, 2821, 1620
|
|
38
|
+
0, 0, 1, 1251, 3, 2918, 143, 378166, 4, 3, 2, 8, 207, 170, 130, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 777, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2947, 358, 2986, 494, 3166, 1502, 1913, 2822, 2820, 1619
|
|
39
|
+
0, 0, 1, 1251, 3, 2919, 143, 378171, 4, 3, 2, 8, 207, 170, 130, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1152, 1152, 1135, 999, 2774, 3334, 2948, 359, 2986, 494, 3167, 1501, 1913, 2825, 2821, 1620
|
|
40
|
+
0, 0, 1, 1251, 3, 2920, 143, 378176, 4, 3, 2, 8, 212, 169, 135, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 792, 777, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 359, 2985, 494, 3166, 1500, 1913, 2822, 2821, 1619
|
|
41
|
+
0, 0, 1, 1251, 3, 2921, 143, 378181, 4, 3, 2, 8, 212, 169, 135, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2775, 3334, 2948, 358, 2985, 494, 3166, 1501, 1914, 2825, 2822, 1619
|
|
42
|
+
0, 0, 1, 1251, 3, 2922, 143, 378186, 4, 3, 2, 8, 212, 169, 135, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2948, 358, 2986, 494, 3166, 1500, 1914, 2825, 2822, 1620
|
|
43
|
+
0, 0, 1, 1251, 3, 2923, 143, 378191, 4, 3, 2, 8, 212, 169, 135, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2775, 3334, 2947, 358, 2985, 494, 3166, 1500, 1914, 2826, 2821, 1619
|
|
44
|
+
0, 0, 1, 1251, 3, 2924, 143, 378196, 4, 3, 2, 8, 212, 169, 135, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2948, 359, 2985, 494, 3167, 1501, 1914, 2825, 2822, 1620
|
|
45
|
+
0, 0, 1, 1251, 3, 2925, 143, 378201, 4, 3, 2, 8, 212, 169, 135, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 359, 2985, 495, 3167, 1501, 1915, 2823, 2822, 1619
|
|
46
|
+
0, 0, 1, 1251, 3, 2926, 143, 378206, 4, 3, 2, 8, 217, 170, 140, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 52, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2948, 359, 2985, 494, 3170, 1501, 1913, 2823, 2822, 1620
|
|
47
|
+
0, 0, 1, 1251, 3, 2927, 143, 378211, 4, 3, 2, 8, 217, 170, 140, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 906, 933, 944, 932, 1152, 1152, 1136, 1000, 2774, 3334, 2947, 358, 2984, 494, 3167, 1501, 1914, 2823, 2821, 1620
|
|
48
|
+
0, 0, 1, 1251, 3, 2928, 143, 378216, 4, 3, 2, 8, 222, 169, 145, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 777, 782, 905, 933, 944, 932, 1152, 1153, 1136, 999, 2774, 3334, 2948, 359, 2985, 494, 3166, 1500, 1913, 2822, 2821, 1618
|
|
49
|
+
0, 0, 1, 1251, 3, 2929, 143, 378221, 4, 3, 2, 8, 222, 169, 145, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 777, 782, 906, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2947, 359, 2985, 494, 3167, 1501, 1914, 2823, 2822, 1619
|
|
50
|
+
0, 0, 1, 1251, 3, 2930, 143, 378226, 4, 3, 2, 8, 222, 169, 145, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 777, 782, 905, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2947, 359, 2984, 495, 3166, 1501, 1915, 2823, 2822, 1619
|
|
51
|
+
0, 0, 1, 1251, 3, 2931, 143, 378231, 4, 3, 2, 8, 222, 169, 145, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 905, 933, 945, 932, 1152, 1152, 1136, 999, 2769, 3333, 2948, 359, 2984, 495, 3167, 1501, 1915, 2823, 2822, 1619
|
|
52
|
+
0, 0, 1, 1251, 3, 2932, 143, 378236, 4, 3, 2, 8, 222, 169, 145, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2947, 359, 2985, 495, 3166, 1502, 1915, 2823, 2822, 1620
|
|
53
|
+
0, 0, 1, 1251, 3, 2933, 143, 378241, 4, 3, 2, 8, 222, 169, 145, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 51, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 784, 791, 776, 782, 906, 933, 944, 932, 1152, 1152, 1136, 1000, 2775, 3334, 2947, 359, 2984, 494, 3166, 1501, 1914, 2823, 2822, 1619
|
|
54
|
+
0, 0, 1, 1251, 3, 2934, 143, 378246, 4, 3, 2, 8, 223, 170, 146, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 50, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 777, 782, 905, 933, 944, 932, 1152, 1152, 1137, 999, 2774, 3334, 2948, 359, 2985, 495, 3167, 1501, 1913, 2823, 2822, 1619
|
|
55
|
+
0, 0, 1, 1251, 3, 2935, 143, 378251, 4, 3, 2, 8, 223, 170, 146, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 785, 791, 776, 782, 905, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3334, 2947, 358, 2985, 494, 3167, 1502, 1913, 2823, 2822, 1620
|
|
56
|
+
0, 0, 1, 1251, 3, 2936, 143, 378256, 4, 3, 2, 8, 228, 169, 151, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2947, 359, 2984, 494, 3166, 1500, 1913, 2822, 2821, 1609
|
|
57
|
+
0, 0, 1, 1251, 3, 2937, 143, 378261, 4, 3, 2, 8, 228, 169, 151, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2948, 359, 2985, 495, 3167, 1502, 1913, 2823, 2822, 1620
|
|
58
|
+
0, 0, 1, 1251, 3, 2938, 143, 378266, 4, 3, 2, 8, 229, 170, 152, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 777, 782, 906, 933, 944, 933, 1152, 1152, 1138, 999, 2774, 3334, 2947, 359, 2985, 494, 3167, 1500, 1913, 2822, 2822, 1620
|
|
59
|
+
0, 0, 1, 1251, 3, 2939, 143, 378271, 4, 3, 2, 8, 229, 170, 152, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 15, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 777, 782, 906, 933, 944, 932, 1151, 1152, 1136, 999, 2775, 3334, 2948, 359, 2984, 495, 3168, 1502, 1913, 2823, 2822, 1619
|
|
60
|
+
0, 0, 1, 1251, 3, 2940, 143, 378276, 4, 3, 2, 8, 231, 169, 154, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 17, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 776, 782, 905, 933, 944, 932, 1152, 1152, 1136, 999, 2775, 3334, 2948, 359, 2985, 494, 3166, 1500, 1913, 2823, 2824, 1619
|
|
61
|
+
0, 0, 1, 1251, 3, 2941, 143, 378281, 4, 3, 2, 8, 231, 169, 154, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 21, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 777, 782, 905, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2948, 359, 2985, 494, 3168, 1502, 1913, 2823, 2822, 1620
|
|
62
|
+
0, 0, 1, 1251, 3, 2942, 143, 378286, 4, 3, 2, 8, 231, 169, 154, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 20, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 776, 782, 906, 933, 944, 932, 1151, 1152, 1136, 999, 2774, 3335, 2948, 358, 2984, 495, 3167, 1503, 1913, 2823, 2822, 1619
|
|
63
|
+
0, 0, 1, 1251, 3, 2943, 143, 378291, 4, 3, 2, 8, 232, 170, 155, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 18, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 777, 782, 906, 933, 944, 932, 1152, 1152, 1138, 999, 2775, 3334, 2947, 359, 2985, 494, 3167, 1501, 1913, 2822, 2822, 1620
|
|
64
|
+
0, 0, 1, 1251, 3, 2944, 143, 378296, 4, 3, 2, 8, 232, 170, 155, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 776, 782, 906, 933, 944, 932, 1152, 1152, 1137, 1000, 2774, 3334, 2948, 358, 2985, 494, 3170, 1500, 1913, 2823, 2822, 1620
|
|
65
|
+
0, 0, 1, 1251, 3, 2945, 143, 378301, 4, 3, 2, 8, 234, 169, 157, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 776, 782, 906, 933, 944, 932, 1152, 1152, 1136, 1000, 2774, 3334, 2947, 359, 2985, 494, 3167, 1501, 1913, 2824, 2821, 1619
|
|
66
|
+
0, 0, 1, 1251, 3, 2946, 143, 378306, 4, 3, 2, 8, 234, 169, 157, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 776, 782, 906, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2948, 359, 2985, 494, 3170, 1500, 1913, 2823, 2822, 1620
|
|
67
|
+
0, 0, 1, 1251, 3, 2947, 143, 378311, 4, 3, 2, 8, 237, 17, 160, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 777, 782, 906, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2948, 360, 2985, 495, 3166, 1501, 1914, 2823, 2822, 1619
|
|
68
|
+
0, 0, 1, 1251, 3, 2948, 143, 378316, 4, 3, 2, 8, 238, 36, 161, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 792, 776, 782, 906, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3335, 2948, 359, 2985, 494, 3167, 1501, 1913, 2823, 2821, 1619
|
|
69
|
+
0, 0, 1, 1251, 3, 2949, 143, 378321, 4, 3, 2, 8, 238, 36, 161, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 784, 791, 776, 782, 906, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2947, 358, 2984, 494, 3170, 1501, 1913, 2823, 2822, 1620
|
|
70
|
+
0, 0, 1, 1251, 3, 2950, 143, 378326, 4, 3, 2, 8, 243, 170, 166, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 785, 791, 777, 782, 906, 933, 944, 932, 1151, 1152, 1137, 999, 2774, 3335, 2948, 358, 2990, 494, 3167, 1500, 1913, 2823, 2821, 1620
|
|
71
|
+
0, 0, 1, 1251, 3, 2951, 143, 378331, 4, 3, 2, 8, 243, 170, 166, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 785, 791, 776, 782, 906, 933, 944, 932, 1152, 1152, 1136, 1000, 2774, 3334, 2949, 358, 2987, 495, 3171, 1500, 1912, 2823, 2822, 1619
|
|
72
|
+
0, 0, 1, 1251, 3, 2952, 143, 378336, 4, 3, 2, 8, 248, 169, 171, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 906, 933, 944, 932, 1152, 1152, 1136, 1000, 2775, 3334, 2949, 358, 2987, 494, 3167, 1500, 1913, 2823, 2823, 1620
|
|
73
|
+
0, 0, 1, 1251, 3, 2953, 143, 378341, 4, 3, 2, 8, 248, 169, 171, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 906, 933, 945, 933, 1152, 1152, 1136, 1000, 2774, 3334, 2948, 358, 2987, 495, 3170, 1501, 1913, 2823, 2822, 1619
|
|
74
|
+
0, 0, 1, 1251, 3, 2954, 143, 378346, 4, 3, 2, 8, 248, 169, 171, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 906, 934, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2949, 358, 2987, 495, 3166, 1500, 1913, 2823, 2822, 1619
|
|
75
|
+
0, 0, 1, 1251, 3, 2955, 143, 378351, 4, 3, 2, 8, 248, 169, 171, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 906, 933, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2948, 357, 2987, 495, 3166, 1500, 1912, 2823, 2821, 1620
|
|
76
|
+
0, 0, 1, 1251, 3, 2956, 143, 378356, 4, 3, 2, 8, 248, 169, 171, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 906, 934, 944, 932, 1152, 1152, 1137, 1000, 2775, 3334, 2948, 358, 2987, 495, 3167, 1500, 1913, 2822, 2822, 1620
|
|
77
|
+
0, 0, 1, 1251, 3, 2957, 143, 378361, 4, 3, 2, 8, 248, 169, 171, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 906, 933, 944, 932, 1152, 1152, 1136, 1000, 2774, 3334, 2949, 358, 2987, 495, 3167, 1500, 1912, 2823, 2822, 1620
|
|
78
|
+
0, 0, 1, 1251, 3, 2958, 143, 378366, 4, 3, 2, 8, 253, 170, 176, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 906, 934, 944, 932, 1152, 1152, 1137, 1000, 2774, 3334, 2949, 358, 2987, 494, 3166, 1501, 1913, 2823, 2821, 1620
|
|
79
|
+
0, 0, 1, 1251, 3, 2959, 143, 378371, 4, 3, 2, 8, 253, 170, 176, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 906, 934, 944, 932, 1152, 1152, 1136, 999, 2775, 3334, 2948, 358, 2988, 495, 3167, 1500, 1913, 2822, 2822, 1619
|
|
80
|
+
0, 0, 1, 1251, 3, 2960, 143, 378376, 4, 3, 2, 8, 2, 169, 181, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 783, 906, 934, 944, 932, 1152, 1152, 1137, 999, 2774, 3334, 2949, 358, 2987, 495, 3166, 1500, 1913, 2824, 2821, 1620
|
|
81
|
+
0, 0, 1, 1251, 3, 2961, 143, 378381, 4, 3, 2, 8, 2, 169, 181, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 906, 933, 944, 932, 1152, 1152, 1136, 1000, 2774, 3334, 2949, 358, 2988, 495, 3166, 1501, 1913, 2823, 2821, 1619
|
|
82
|
+
0, 0, 1, 1251, 3, 2962, 143, 378386, 4, 3, 2, 8, 2, 169, 181, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 906, 933, 944, 932, 1151, 1152, 1137, 999, 2775, 3334, 2948, 357, 2989, 496, 3167, 1501, 1912, 2823, 2822, 1620
|
|
83
|
+
0, 0, 1, 1251, 3, 2963, 143, 378391, 4, 3, 2, 8, 2, 169, 181, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 906, 934, 944, 932, 1152, 1152, 1136, 1000, 2774, 3334, 2948, 358, 2989, 496, 3167, 1500, 1913, 2823, 2822, 1620
|
|
84
|
+
0, 0, 1, 1251, 3, 2964, 143, 378396, 4, 3, 2, 8, 2, 169, 181, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 777, 782, 906, 933, 944, 932, 1151, 1152, 1136, 1000, 2774, 3334, 2949, 357, 2989, 495, 3166, 1501, 1913, 2823, 2822, 1619
|
|
85
|
+
0, 0, 1, 1251, 3, 2965, 143, 378401, 4, 3, 2, 8, 2, 169, 181, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 906, 934, 944, 932, 1152, 1152, 1136, 999, 2774, 3334, 2948, 358, 2989, 495, 3167, 1501, 1913, 2823, 2822, 1620
|
|
86
|
+
0, 0, 1, 1251, 3, 2966, 143, 378406, 4, 3, 2, 8, 7, 170, 186, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 906, 933, 944, 932, 1152, 1152, 1137, 1000, 2774, 3334, 2951, 358, 2986, 494, 3167, 1501, 1913, 2823, 2822, 1619
|
|
87
|
+
0, 0, 1, 1251, 3, 2967, 143, 378411, 4, 3, 2, 8, 7, 170, 186, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 906, 933, 944, 932, 1151, 1152, 1137, 999, 2775, 3334, 2949, 358, 2989, 494, 3167, 1501, 1912, 2823, 2822, 1620
|
|
88
|
+
0, 0, 1, 1251, 3, 2968, 143, 378416, 4, 3, 2, 8, 12, 169, 191, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 48059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 906, 933, 944, 932, 1151, 1152, 1137, 999, 2775, 3334, 2948, 358, 2986, 495, 3167, 1500, 1914, 2825, 2821, 1619
|
|
89
|
+
0, 0, 1, 1251, 3, 2969, 143, 378421, 4, 3, 2, 8, 12, 169, 191, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 13406, 46875, 4369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 784, 791, 776, 782, 906, 933, 945, 932, 1152, 1152, 1137, 1000, 2774, 3334, 2949, 358, 2990, 495, 3167, 1501, 1913, 2823, 2822, 1619
|