diff --git a/Makefile b/Makefile index c394a6c6..f52fff04 100755 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ MAKEFLAGS += --no-builtin-rules --no-print-directory .SUFFIXES: #.SUFFIXES: .cxx .h .o .so -.PHONY: all n nuclearizer megalib apps clean +.PHONY: all n nuclearizer megalib apps clean unittests .EXPORT_ALL_VARIABLES: #.NOTPARALLEL: megalib .SILENT: @@ -76,6 +76,7 @@ CXXFLAGS += -I$(IN) -I$(MEGALIB)/include -I/opt/local/include $(H5CXXFLAGS) $(CC LIBS += $(H5LIBS) $(CCFITSLIBS) # Definitions +NUCLEARIZER := $(TOPLEVEL) NUCLEARIZER_DIR := $(NUCLEARIZER) NUCLEARIZER_PRG := $(BN)/nuclearizer NUCLEARIZER_CXX_MAIN := $(NUCLEARIZER_DIR)/src/MNuclearizerMain.cxx @@ -105,6 +106,10 @@ NUCLEARIZER_CXX_MAIN := $(NUCLEARIZER)/src/MNuclearizerMain.cxx ALLLIBS = -L$(LB) -lResponseCreator -lFretalonBase -lSivan -lRevanGui -lRevan -lMimrec -lGeomega -lSpectralyzeGui -lSpectralyze -lCommonMisc -lCommonGui -L$(MEGALIB)/lib -L$(LB) +CXX_UT := $(wildcard $(NUCLEARIZER_DIR)/unittests/*.cxx) +EXE_UT := $(patsubst %.cxx,%,$(CXX_UT)) +EXE_UT := $(patsubst $(NUCLEARIZER_DIR)/unittests/%,$(BN)/%,$(EXE_UT)) + NUCLEARIZER_DICT_NAME=Nuclearizer_Dictionary NUCLEARIZER_DICT=$(LB)/$(NUCLEARIZER_DICT_NAME).cxx NUCLEARIZER_DICT_LIB=$(LB)/$(NUCLEARIZER_DICT_NAME).o @@ -129,7 +134,10 @@ apps: @$(MAKE) $(NUCLEARIZER_SHARED_LIB) @$(MAKE) -C apps +unittests: $(NUCLEARIZER_SHARED_LIB) $(EXE_UT) + clean: + @-rm -f $(EXE_UT) @-rm -f $(MEGALIB)/include/MAssembly.h $(MEGALIB)/include/MReadOutAssembly.h @-rm -f $(FRETALON_LIBS) $(FRETALON_DEP_FILES) @-rm -f $(NUCLEARIZER_SHARED_LIB) $(NUCLEARIZER_LIBS) $(NUCLEARIZER_DEP_FILES) @@ -186,6 +194,10 @@ $(NUCLEARIZER_PRG): $(NUCLEARIZER_SHARED_LIB) $(NUCLEARIZER_CXX_MAIN) @echo "Linking and compiling $(subst $(BN)/,,$(NUCLEARIZER_PRG)) ... Please stand by ... " @$(CXX) $(CXXFLAGS) $(LDFLAGS) $(NUCLEARIZER_CXX_MAIN) $(NUCLEARIZER_SHARED_LIB) $(ALLLIBS) $(GLIBS) $(LIBS) -o $(NUCLEARIZER_PRG) +$(EXE_UT): $(BN)/%: $(NUCLEARIZER_DIR)/unittests/%.cxx $(NUCLEARIZER_SHARED_LIB) + @echo "Compiling and linking $(subst $(BN)/,,$@) ..." + @$(CXX) $(CXXFLAGS) $(LDFLAGS) $< $(NUCLEARIZER_SHARED_LIB) $(ALLLIBS) $(GLIBS) $(LIBS) -o $@ + ifneq ($(MAKECMDGOALS),clean) -include $(NUCLEARIZER_DEP_FILES) diff --git a/include/MHit.h b/include/MHit.h index 4d79b11f..4f450b2e 100644 --- a/include/MHit.h +++ b/include/MHit.h @@ -147,11 +147,6 @@ class MHit //! Parse some content from a line bool Parse(MString &Line, int Version = 1); - // protected methods: - protected: - //MHit() {}; - //MHit(const MHit& NCTHit) {}; - // private methods: private: @@ -194,9 +189,9 @@ class MHit bool m_GuardRingHit; //! true if hit contains strip that was hit multiple times on X - bool m_StripHitMultipleTimesX = false; + bool m_StripHitMultipleTimesX; //! true if hit contains strip that was hit multiple times on Y - bool m_StripHitMultipleTimesY = false; + bool m_StripHitMultipleTimesY; //! true if hit contains charge sharing bool m_ChargeSharing; diff --git a/include/MReadOutAssembly.h b/include/MReadOutAssembly.h index 9d5005f5..f24d4bf1 100644 --- a/include/MReadOutAssembly.h +++ b/include/MReadOutAssembly.h @@ -50,6 +50,10 @@ class MReadOutAssembly : public MReadOutSequence //! Default destructor virtual ~MReadOutAssembly(); + //! Copying is disabled - the assembly owns raw pointers + MReadOutAssembly(const MReadOutAssembly&) = delete; + MReadOutAssembly& operator=(const MReadOutAssembly&) = delete; + //! Reset all data virtual void Clear(); @@ -131,14 +135,14 @@ class MReadOutAssembly : public MReadOutSequence //! Return guardring hit i MGuardringHit* GetGuardringHit(unsigned int i); //! Add a guardring hit - void AddGuardringHit(MGuardringHit* GuardringHit) { return m_GuardringHits.push_back(GuardringHit); } + void AddGuardringHit(MGuardringHit* GuardringHit) { if (GuardringHit != nullptr) m_GuardringHits.push_back(GuardringHit); } //! Return the number of hits unsigned int GetNHits() const { return m_Hits.size(); } //! Return hit i MHit* GetHit(unsigned int i); //! Add a hit - void AddHit(MHit* Hit) { return m_Hits.push_back(Hit); } + void AddHit(MHit* Hit) { if (Hit != nullptr) m_Hits.push_back(Hit); } //! Remove a hit void RemoveHit(unsigned int i); @@ -164,29 +168,29 @@ class MReadOutAssembly : public MReadOutSequence //! Return the physical event MPhysicalEvent* GetPhysicalEvent() { return m_PhysicalEvent; } - //! Set the physical event from event reconstruction - void SetSimulatedEvent(MSimEvent* Event) { m_SimEvent = Event; } + //! Set the simulated event; the ROA takes ownership of the pointer and deletes it + void SetSimulatedEvent(MSimEvent* Event) { if (Event != m_SimEvent) { delete m_SimEvent; m_SimEvent = Event; } } //! Return the simulated event MSimEvent* GetSimulatedEvent() { return m_SimEvent; } //! Return the number of low-voltage DEE strip hits unsigned int GetNDEEStripHitsLV() const { return m_DEEStripHitsLV.size(); } //! Return low-voltage DEE Strip hit at position i - void AddDEEStripHitLV(MDEEStripHit& DEEStripHit) { return m_DEEStripHitsLV.push_back(DEEStripHit); } + void AddDEEStripHitLV(const MDEEStripHit& DEEStripHit) { m_DEEStripHitsLV.push_back(DEEStripHit); } //! Get a reference to the list of strip hits for direct manipulation list& GetDEEStripHitLVListReference() { return m_DEEStripHitsLV; } //! Return the number of high-voltage DEE strip hits unsigned int GetNDEEStripHitsHV() const { return m_DEEStripHitsHV.size(); } //! Add a high-voltage DEE Strip hit - void AddDEEStripHitHV(MDEEStripHit DEEStripHit) { return m_DEEStripHitsHV.push_back(DEEStripHit); } + void AddDEEStripHitHV(const MDEEStripHit& DEEStripHit) { m_DEEStripHitsHV.push_back(DEEStripHit); } //! Get a reference to the list of strip hits for direct manipulation list& GetDEEStripHitHVListReference() { return m_DEEStripHitsHV; } //! Return the number of crystal hits unsigned int GetNDEECrystalHits() const { return m_DEECrystalHits.size(); } //! Add a crystal hit - void AddDEECrystalHit(MDEECrystalHit DEECrystalHit) { return m_DEECrystalHits.push_back(DEECrystalHit); } + void AddDEECrystalHit(const MDEECrystalHit& DEECrystalHit) { m_DEECrystalHits.push_back(DEECrystalHit); } //! Get a reference to the list of crystal hits for direct manipulation list& GetDEECrystalHitListReference() { return m_DEECrystalHits; } @@ -282,8 +286,6 @@ class MReadOutAssembly : public MReadOutSequence // protected methods: protected: - //MReadOutAssembly() {}; - //MReadOutAssembly(const MReadOutAssembly& ReadOutAssembly) {}; // private methods: private: diff --git a/include/MStripHit.h b/include/MStripHit.h index 5b707c15..b5ab712d 100644 --- a/include/MStripHit.h +++ b/include/MStripHit.h @@ -26,7 +26,6 @@ // Nuclearizer libs #include "MReadOutElement.h" #include "MReadOutElementDoubleStrip.h" -#include "MStripHit.h" // Forward declarations: @@ -50,14 +49,14 @@ class MStripHit MReadOutElement* GetReadOutElement() const { return m_ReadOutElement; } //! Set the Detector ID - void SetDetectorID(int DetectorID) { m_ReadOutElement->SetDetectorID(DetectorID); } + void SetDetectorID(unsigned int DetectorID) { m_ReadOutElement->SetDetectorID(DetectorID); } //! Return the Detector ID - int GetDetectorID() const { return m_ReadOutElement->GetDetectorID(); } + unsigned int GetDetectorID() const { return m_ReadOutElement->GetDetectorID(); } //! Set the Strip ID - void SetStripID(int StripID) { m_ReadOutElement->SetStripID(StripID); } + void SetStripID(unsigned int StripID) { m_ReadOutElement->SetStripID(StripID); } //! Return the Strip ID - int GetStripID() const { return m_ReadOutElement->GetStripID(); } + unsigned int GetStripID() const { return m_ReadOutElement->GetStripID(); } //! Set the strip type (x/y) void IsXStrip(bool PositiveStrip) { m_ReadOutElement->IsLowVoltageStrip(PositiveStrip); } diff --git a/resource/unittestdata/406-1/hdf5-to-tra.nuclearizer.cfg b/resource/unittestdata/406-1/hdf5-to-tra.nuclearizer.cfg new file mode 100644 index 00000000..f26a70d2 --- /dev/null +++ b/resource/unittestdata/406-1/hdf5-to-tra.nuclearizer.cfg @@ -0,0 +1,60 @@ + + 1 + + XmlTagMeasurementLoaderHDF + EnergyCalibration + XmlTagTACcut + XmlTagStripPairingMultiRoundChiSquare + DepthCalibration + XmlTagRevan + XmlTagEventSaver + + $(NUCLEARIZER)/resource/unittestdata/406-1/hp52406-1.simplified.geo.setup + + + $(NUCLEARIZER)/resource/unittestdata/406-1/hp52406-1.gse_20260217T124025.hdf5 + true + $(NUCLEARIZER)/resource/unittestdata/406-1/hp52406-1.stripmap.map + false + + + $(NUCLEARIZER)/resource/unittestdata/406-1/hp52406-1.full.ecal + 1 + 20 + + 100 + -1000 + + + + $(NUCLEARIZER)/resource/unittestdata/406-1/hp52406-1.coeffs.csv + $(NUCLEARIZER)/resource/unittestdata/406-1/hp52406-1.splines.csv + false + + false + + + $(NUCLEARIZER)/resource/unittestdata/406-1/hdf5-to-tra.tra + 3 + true + true + false + false + 600 + true + true + false + false + true + false + true + + + $(NUCLEARIZER)/resource/unittestdata/406-1/hp52406-1.revan.cfg + + + $(NUCLEARIZER)/resource/unittestdata/406-1/hp52406-1.taccal.csv + $(NUCLEARIZER)/resource/unittestdata/406-1/hp52406-1.taccut.csv + + + diff --git a/resource/unittestdata/406-1/hdf5-to-tra.reference.tra b/resource/unittestdata/406-1/hdf5-to-tra.reference.tra new file mode 100644 index 00000000..2919f9c8 --- /dev/null +++ b/resource/unittestdata/406-1/hdf5-to-tra.reference.tra @@ -0,0 +1,67929 @@ + +Version 1 +TYPE TRA + +SE +ID 1 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2 +TI 1771360826.010675750 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.1624 +SE +ET UN +ID 3 +TI 1771360826.011540033 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.7492 +SE +ET PH +ID 4 +TI 1771360826.011835366 +CC NStripHits 2 +PE 80.7199 +PP -0.535766 0.355803 -1.98045 +PW 0 +SE +ET PH +ID 5 +TI 1771360826.014503183 +CC NStripHits 2 +PE 78.2142 +PP 2.4908 0.373099 2.6758 +PW 0 +SE +ET UN +ID 6 +TI 1771360826.014828383 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9682 +SE +ID 7 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 8 +TI 1771360826.017981050 +CC NStripHits 4 +PQ 66.7529 +SQ 2 +CT 0.523203 0.476797 +TL 1 +TE 201.006 +CE 155.461 1.45974 201.006 1.40832 +CD 2.95642 -0.407733 1.39533 0.0336036 0.0243399 0.0336036 2.4908 -0.737711 0.696891 0.0336036 0.0218252 0.0336036 0 0 0 0 0 0 +LA 0.901945 +SE +ET PH +ID 9 +TI 1771360826.019312416 +CC NStripHits 3 +PE 116.824 +PP -1.1178 -1.17058 -0.00154687 +PW 0 +SE +ET UN +ID 10 +TI 1771360826.020062633 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.8477 +SE +ET CO +ID 11 +TI 1771360826.021562083 +CC NStripHits 4 +PQ 41.325 +SQ 2 +CT 0 1 +TL 1 +TE 100.91 +CE 119.906 1.38092 100.91 1.47357 +CD -2.39827 -0.98872 1.86095 0.0336036 0.0195407 0.0336036 -2.63108 -1.01031 1.27892 0.0336036 0.0195501 0.0336036 0 0 0 0 0 0 +LA 0.627236 +SE +ET PH +ID 12 +TI 1771360826.021736317 +CC NStripHits 3 +PE 243.452 +PP -2.51467 -0.276145 -3.14452 +PW 0 +SE +ET UN +ID 13 +TI 1771360826.022090450 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 336.833 +SE +ET PH +ID 14 +TI 1771360826.024086200 +CC NStripHits 3 +PE 83.4675 +PP -2.51467 0.246155 1.74455 +PW 0 +SE +ET PH +ID 15 +TI 1771360826.026127517 +CC NStripHits 2 +PE 56.437 +PP 3.30564 0.369967 -0.816391 +PW 0 +SE +ET PH +ID 16 +TI 1771360826.026338500 +CC NStripHits 2 +PE 61.829 +PP 0.744703 0.340245 -2.9117 +PW 0 +SE +ET CO +ID 17 +TI 1771360826.027365867 +CC NStripHits 4 +PQ 73.0997 +SQ 2 +CT 0 1 +TL 1 +TE 99.8833 +CE 242.551 1.48079 99.8833 0.997477 +CD 0.977516 -0.365668 -0.117953 0.0336036 0.0247204 0.0336036 1.09392 -0.363048 1.62814 0.0336036 0.0247404 0.0336036 0 0 0 0 0 0 +LA 1.74997 +SE +ET PH +ID 18 +TI 1771360826.029878950 +CC NStripHits 2 +PE 79.2462 +PP -0.302953 0.366534 -2.44608 +PW 0 +SE +ET UN +ID 19 +TI 1771360826.030121250 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.9779 +SE +ET CO +ID 20 +TI 1771360826.030363867 +CC NStripHits 7 +PQ 51.7358 +SQ 2 +CT 0 1 +TL 1 +TE 139.686 +CE 214.368 1.99374 139.686 2.11619 +CD -1.1178 -1.00935 -0.467172 0.0336036 0.0195502 0.0336036 -0.884984 -1.06444 -0.234359 0.0336036 0.0205014 0.0336036 0 0 0 0 0 0 +LA 0.333826 +SE +ET PH +ID 21 +TI 1771360826.030587683 +CC NStripHits 2 +PE 69.6811 +PP -2.86389 -0.0598503 -3.26092 +PW 0 +SE +ID 22 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.690802) (Strip hit removed with energy 7.723491) +QA StripPairing (Best reduced chi square is not below 25 (81.001991)) (GR Hit: Detector ID 0 and Energy 218.697369) +BD GR Veto +PQ 81.002 +SE +ET UN +ID 23 +TI 1771360826.035619867 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 4 +PE 120.669 +SE +ET UN +ID 24 +TI 1771360826.035950383 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7028 +SE +ID 25 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 29.712508)) (GR Hit: Detector ID 0 and Energy 52.451295) +BD GR Veto +PQ 0.357601 +SE +ET UN +ID 26 +TI 1771360826.039328500 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET UN +ID 27 +TI 1771360826.039516783 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 76.5433 +SE +ET UN +ID 28 +TI 1771360826.040377184 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0013 +SE +ET UN +ID 29 +TI 1771360826.041148150 +BD DepthCalibrationError (No calibration coefficients) +CC NStripHits 3 +PE 50.3084 +SE +ET PH +ID 30 +TI 1771360826.042725167 +CC NStripHits 2 +PE 68.8254 +PP 1.09392 0.0284883 2.6758 +PW 0 +SE +ID 31 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 143.517221) +BD GR Veto +PQ 9.61683 +SE +ET CO +ID 32 +TI 1771360826.047493067 +CC NStripHits 5 +PQ 72.6647 +SQ 2 +CT 0 1 +TL 1 +TE 137.766 +CE 162.601 1.42464 137.766 1.48784 +CD -1.81623 -0.212794 -4.42498 0.0336036 0.0257582 0.0336036 -2.16545 -0.596696 -4.30858 0.0336036 0.0228418 0.0336036 0 0 0 0 0 0 +LA 0.531869 +SE +ET PH +ID 33 +TI 1771360826.047677734 +CC NStripHits 2 +PE 80.2272 +PP 2.37439 -0.169459 -4.6578 +PW 0 +SE +ET PH +ID 34 +TI 1771360826.049055567 +CC NStripHits 3 +PE 133.553 +PP 3.77127 -0.914887 -3.84295 +PW 0 +SE +ET UN +ID 35 +TI 1771360826.051562667 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.7744 +SE +ET UN +ID 36 +TI 1771360826.052045867 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 37 +TI 1771360826.053044050 +CC NStripHits 2 +PE 122.765 +PP -2.28186 -1.04529 -3.26092 +PW 0 +SE +ET UN +ID 38 +TI 1771360826.057855517 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 39 +TI 1771360826.058608617 +CC NStripHits 3 +PE 77.7945 +PP 3.18923 -0.2468 -3.72655 +PW 0 +SE +ET PH +ID 40 +TI 1771360826.058791750 +CC NStripHits 2 +PE 31.1497 +PP -0.419359 -0.697661 -3.72655 +PW 0 +SE +ET UN +ID 41 +TI 1771360826.058866650 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 42 +TI 1771360826.058946917 +CC NStripHits 2 +PE 78.9308 +PP 1.90877 -0.245407 -0.234359 +PW 0 +SE +ET PH +ID 43 +TI 1771360826.059756517 +CC NStripHits 2 +PE 26.4112 +PP -0.884984 -0.448368 -0.816391 +PW 0 +SE +ID 44 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 190.069871) +BD GR Veto +PQ 6.82431 +SE +ID 45 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.199286) +BD GR Veto +PQ 0.0436363 +SE +ET PH +ID 46 +TI 1771360826.064694684 +CC NStripHits 2 +PE 27.2632 +PP -0.652172 -0.318365 -0.816391 +PW 0 +SE +ET CO +ID 47 +TI 1771360826.068733667 +CC NStripHits 4 +PQ 51.6746 +SQ 2 +CT 0 1 +TL 1 +TE 92.0912 +CE 118.177 1.39434 92.0912 1.45426 +CD 3.30564 -0.449054 0.231266 0.0336036 0.0239513 0.0336036 3.42205 -0.468779 0.580484 0.0336036 0.0237371 0.0336036 0 0 0 0 0 0 +LA 0.368637 +SE +ET PH +ID 48 +TI 1771360826.070089884 +CC NStripHits 2 +PE 113.007 +PP 0.628297 -0.443795 0.231266 +PW 0 +SE +ET UN +ID 49 +TI 1771360826.075681151 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.5927 +SE +ET UN +ID 50 +TI 1771360826.075845267 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.0022 +SE +ET PH +ID 51 +TI 1771360826.076375501 +CC NStripHits 2 +PE 25.9965 +PP 1.55955 0.353264 -2.7953 +PW 0 +SE +ET PH +ID 52 +TI 1771360826.076500617 +CC NStripHits 2 +PE 239.09 +PP -0.419359 -0.563023 0.231266 +PW 0 +SE +ET UN +ID 53 +TI 1771360826.077988701 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 69.2591 +SE +ID 54 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 302.441438) +BD GR Veto +PQ 0.000668907 +SE +ET UN +ID 55 +TI 1771360826.079713384 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 124.734 +SE +ET PH +ID 56 +TI 1771360826.080155284 +CC NStripHits 3 +PE 79.5633 +PP 3.07283 -0.00440925 -1.63123 +PW 0 +SE +ET CO +ID 57 +TI 1771360826.081214184 +CC NStripHits 7 +PQ 18.2434 +SQ 2 +CT 0 1 +TL 1 +TE 80.7307 +CE 199.57 2.01927 80.7307 1.37272 +CD -0.302953 -0.256128 -1.28202 0.0336036 0.0254337 0.0336036 -0.186547 -0.211163 -2.44608 0.0336036 0.025772 0.0336036 0 0 0 0 0 0 +LA 1.17073 +SE +ID 58 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.453710) +BD GR Veto +PQ 0.119996 +SE +ID 59 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 60 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.550874) +BD GR Veto +PQ +SE +ID 61 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.550874) +BD GR Veto +PQ +SE +ET CO +ID 62 +TI 1771360826.084304018 +CC NStripHits 4 +PQ 145.535 +SQ 2 +CT 0 1 +TL 1 +TE 86.4721 +CE 157.984 1.472 86.4721 1.37075 +CD 2.25798 -1.16245 1.39533 0.0336036 0.0238572 0.0336036 2.02517 -0.434721 1.74455 0.0336036 0.0240807 0.0336036 0 0 0 0 0 0 +LA 0.840086 +SE +ID 63 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ID 64 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ +SE +ET UN +ID 65 +TI 1771360826.085551751 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1852 +SE +ET PH +ID 66 +TI 1771360826.086949734 +CC NStripHits 2 +PE 25.4436 +PP 0.628297 0.225245 -3.84295 +PW 0 +SE +ID 67 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 127.261432) +BD GR Veto +PQ 0.0232603 +SE +ET PH +ID 68 +TI 1771360826.090534251 +CC NStripHits 2 +PE 161.243 +PP -1.81623 -0.388935 2.44298 +PW 0 +SE +ET CO +ID 69 +TI 1771360826.091483084 +CC NStripHits 7 +PQ 21.7792 +SQ 2 +CT 0 1 +TL 1 +TE 82.1951 +CE 167.554 1.94372 82.1951 1.00781 +CD -2.16545 -1.06115 -3.02811 0.0336036 0.0203711 0.0336036 -2.39827 -0.702157 -2.44608 0.0336036 0.0222187 0.0336036 0 0 0 0 0 0 +LA 0.722385 +SE +ET PH +ID 70 +TI 1771360826.091700134 +CC NStripHits 2 +PE 80.1012 +PP -2.16545 0.28787 -0.00154687 +PW 0 +SE +ID 71 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (32.939020)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 40.646258)) (GR Hit: Detector ID 0 and Energy 70.882457) +BD GR Veto +PQ 32.939 +SE +ID 72 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.007456) +BD GR Veto +PQ 0.0146292 +SE +ET PH +ID 73 +TI 1771360826.094946218 +CC NStripHits 2 +PE 208.68 +PP -2.04905 0.308909 -2.9117 +PW 0 +SE +ET PH +ID 74 +TI 1771360826.095396668 +CC NStripHits 2 +PE 77.8543 +PP 3.30564 0.132059 -4.19217 +PW 0 +SE +ID 75 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 44.486096) +BD GR Veto +PQ 0.0975538 +SE +ET UN +ID 76 +TI 1771360826.096509251 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.8419 +SE +ET PH +ID 77 +TI 1771360826.097030601 +CC NStripHits 2 +PE 82.3308 +PP 0.861109 0.0747581 2.6758 +PW 0 +SE +ET UN +ID 78 +TI 1771360826.097698551 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.5178 +SE +ET PH +ID 79 +TI 1771360826.098310068 +CC NStripHits 2 +PE 64.9639 +PP 4.00408 -1.12088 -4.07577 +PW 0 +SE +ID 80 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 166.372266) +BD GR Veto +PQ 0.846174 +SE +ET PH +ID 81 +TI 1771360826.101415151 +CC NStripHits 2 +PE 82.9893 +PP -0.419359 0.377824 2.6758 +PW 0 +SE +ET PH +ID 82 +TI 1771360826.101706385 +CC NStripHits 2 +PE 304.029 +PP -1.00139 0.193468 -3.95936 +PW 0 +SE +ID 83 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 216.819700) +BD GR Veto +PQ 0.0441192 +SE +ET UN +ID 84 +TI 1771360826.102914651 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 85 +TI 1771360826.103450135 +CC NStripHits 2 +PE 61.5915 +PP 3.65486 -0.662439 -2.56248 +PW 0 +SE +ET PH +ID 86 +TI 1771360826.106309785 +CC NStripHits 2 +PE 85.2823 +PP 2.02517 -1.13784 0.464078 +PW 0 +SE +ET UN +ID 87 +TI 1771360826.107414251 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.3085 +SE +ET CO +ID 88 +TI 1771360826.109461735 +CC NStripHits 4 +PQ 142.428 +SQ 2 +CT 0.519607 0.480393 +TL 1 +TE 198.887 +CE 155.327 1.44927 198.887 1.42133 +CD -1.69983 -0.127165 -3.14452 0.0336036 0.0264845 0.0336036 -0.768578 -0.333429 -2.7953 0.0336036 0.0249678 0.0336036 0 0 0 0 0 0 +LA 1.01574 +SE +ET PH +ID 89 +TI 1771360826.109982435 +CC NStripHits 2 +PE 107.104 +PP 1.32673 -0.45736 0.114859 +PW 0 +SE +ID 90 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.993674) +BD GR Veto +PQ +SE +ET UN +ID 91 +TI 1771360826.110558835 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.811 +SE +ET PH +ID 92 +TI 1771360826.110753385 +CC NStripHits 2 +PE 28.0785 +PP -0.535766 0.336274 -3.14452 +PW 0 +SE +ID 93 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.182681) +BD GR Veto +PQ 0.0171671 +SE +ET PH +ID 94 +TI 1771360826.112812568 +CC NStripHits 2 +PE 70.454 +PP -1.69983 0.353725 -2.67889 +PW 0 +SE +ET UN +ID 95 +TI 1771360826.113325268 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 96 +TI 1771360826.113691651 +CC NStripHits 4 +PQ 49.5348 +SQ 2 +CT 0 1 +TL 1 +TE 80.4328 +CE 125.119 1.38882 80.4328 1.53883 +CD -0.884984 0.355598 -3.26092 0.0336036 0.030766 0.0336036 -0.652172 0.329091 -3.49373 0.0336036 0.0394112 0.0336036 0 0 0 0 0 0 +LA 0.33031 +SE +ET UN +ID 97 +TI 1771360826.114468251 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 161.108 +SE +ET PH +ID 98 +TI 1771360826.115630035 +CC NStripHits 2 +PE 81.5938 +PP 0.395484 0.255228 0.580484 +PW 0 +SE +ET UN +ID 99 +TI 1771360826.115823301 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 78.6749 +SE +ID 100 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.278411) (Strip hit removed with energy 7.037234) (Strip hit removed with energy 17.073324) +QA StripPairing (GR Hit: Detector ID 0 and Energy 592.702973) +BD GR Veto +PQ 21.3884 +SE +ID 101 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 129.564149) +BD GR Veto +PQ 1.01534 +SE +ET PH +ID 102 +TI 1771360826.118162201 +CC NStripHits 2 +PE 129.367 +PP 2.02517 -0.668974 1.97736 +PW 0 +SE +ID 103 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.426043) +BD GR Veto +PQ +SE +ET PH +ID 104 +TI 1771360826.119968585 +CC NStripHits 3 +PE 334.603 +PP -2.16545 0.304399 1.51173 +PW 0 +SE +ET PH +ID 105 +TI 1771360826.121045118 +CC NStripHits 2 +PE 71.1169 +PP -0.419359 0.349803 -1.28202 +PW 0 +SE +ET UN +ID 106 +TI 1771360826.123315652 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 107 +TI 1771360826.124026818 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 67.759 +SE +ET PH +ID 108 +TI 1771360826.124625535 +CC NStripHits 2 +PE 197.692 +PP 4.23689 -1.11192 -3.84295 +PW 0 +SE +ET PH +ID 109 +TI 1771360826.124844718 +CC NStripHits 2 +PE 80.5995 +PP 1.21033 0.233032 -0.467172 +PW 0 +SE +ET PH +ID 110 +TI 1771360826.126655068 +CC NStripHits 2 +PE 81.3367 +PP 2.6072 -0.243035 -2.44608 +PW 0 +SE +ET UN +ID 111 +TI 1771360826.127937218 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 112 +TI 1771360826.128974768 +CC NStripHits 2 +PE 114.197 +PP 0.628297 -1.14445 -3.61014 +PW 0 +SE +ET UN +ID 113 +TI 1771360826.130652468 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 114 +TI 1771360826.131732818 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 244.491 +SE +ID 115 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 166.552508) +BD GR Veto +PQ 2.51816e-05 +SE +ET PH +ID 116 +TI 1771360826.134648118 +CC NStripHits 2 +PE 69.8513 +PP 1.90877 0.214518 -4.42498 +PW 0 +SE +ET PH +ID 117 +TI 1771360826.135063552 +CC NStripHits 2 +PE 244.45 +PP 3.18923 -0.0492191 -2.7953 +PW 0 +SE +ID 118 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 47.200542)) (GR Hit: Detector ID 0 and Energy 121.400083) +BD GR Veto +PQ 13.7606 +SE +ET PH +ID 119 +TI 1771360826.135990052 +CC NStripHits 2 +PE 84.9696 +PP -2.04905 -1.13918 -1.86405 +PW 0 +SE +ET UN +ID 120 +TI 1771360826.136431985 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.0793 +SE +ET PH +ID 121 +TI 1771360826.136962452 +CC NStripHits 2 +PE 81.9701 +PP 2.37439 0.330821 -2.7953 +PW 0 +SE +ET PH +ID 122 +TI 1771360826.138563318 +CC NStripHits 2 +PE 82.281 +PP 0.744703 0.244316 1.04611 +PW 0 +SE +ET UN +ID 123 +TI 1771360826.138995752 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 78.2105 +SE +ET CO +ID 124 +TI 1771360826.139085035 +CC NStripHits 4 +PQ 48.7209 +SQ 2 +CT 0 1 +TL 1 +TE 73.2381 +CE 130.119 1.53962 73.2381 1.44934 +CD 0.511891 -0.320562 -3.84295 0.0336036 0.0250403 0.0336036 1.09392 -0.00158969 -3.61014 0.0336036 0.027647 0.0336036 0 0 0 0 0 0 +LA 0.70335 +SE +ET UN +ID 125 +TI 1771360826.140871385 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.093 +SE +ET CO +ID 126 +TI 1771360826.141026302 +CC NStripHits 5 +PQ 53.676 +SQ 2 +CT 0 1 +TL 1 +TE 112.012 +CE 165.986 1.37113 112.012 0.995877 +CD -0.652172 -0.862075 0.114859 0.0336036 0.0203428 0.0336036 -0.535766 -0.593241 -0.583578 0.0336036 0.022857 0.0336036 0 0 0 0 0 0 +LA 0.757388 +SE +ET PH +ID 127 +TI 1771360826.141179369 +CC NStripHits 2 +PE 218.828 +PP 2.25798 -0.139797 -1.51483 +PW 0 +SE +ET UN +ID 128 +TI 1771360826.144153069 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0252 +SE +ID 129 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.608806) +BD GR Veto +PQ +SE +ET PH +ID 130 +TI 1771360826.146143835 +CC NStripHits 2 +PE 79.7828 +PP 0.511891 0.358227 -0.00154687 +PW 0 +SE +ET UN +ID 131 +TI 1771360826.146497935 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.1468 +SE +ET PH +ID 132 +TI 1771360826.147159585 +CC NStripHits 4 +PE 174.758 +PP 1.67595 0.0924134 1.39533 +PW 0 +SE +ET PH +ID 133 +TI 1771360826.149639885 +CC NStripHits 2 +PE 215.442 +PP 2.14158 -0.565112 -2.9117 +PW 0 +SE +ID 134 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.966452) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 61.392697)) +BD GR Veto +PQ 0.60866 +SE +ET PH +ID 135 +TI 1771360826.151010385 +CC NStripHits 3 +PE 259.554 +PP -2.63108 0.346775 -1.86405 +PW 0 +SE +ET PH +ID 136 +TI 1771360826.151089635 +CC NStripHits 2 +PE 72.5565 +PP 4.00408 0.378726 -3.37733 +PW 0 +SE +ET UN +ID 137 +TI 1771360826.151426419 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.2404 +SE +ET PH +ID 138 +TI 1771360826.154102235 +CC NStripHits 2 +PE 101.43 +PP 0.977516 0.347807 0.347672 +PW 0 +SE +ET PH +ID 139 +TI 1771360826.157959319 +CC NStripHits 2 +PE 125.821 +PP -0.652172 0.375339 -3.14452 +PW 0 +SE +ET UN +ID 140 +TI 1771360826.159907652 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.0202 +SE +ID 141 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (187.695393)) (GR Hit: Detector ID 0 and Energy 150.852079) +BD GR Veto +PQ 187.695 +SE +ET PH +ID 142 +TI 1771360826.163490019 +CC NStripHits 3 +PE 89.3644 +PP -0.0701406 0.298726 -2.9117 +PW 0 +SE +ET CO +ID 143 +TI 1771360826.164115069 +CC NStripHits 4 +PQ 56.8095 +SQ 2 +CT 0 1 +TL 1 +TE 129.931 +CE 173.094 1.48983 129.931 1.61574 +CD -0.302953 -0.015021 -4.07577 0.0336036 0.0275706 0.0336036 -0.186547 -0.0876686 -3.95936 0.0336036 0.0268966 0.0336036 0 0 0 0 0 0 +LA 0.179943 +SE +ET PH +ID 144 +TI 1771360826.164198952 +CC NStripHits 2 +PE 81.756 +PP 3.18923 0.368288 -3.26092 +PW 0 +SE +ET UN +ID 145 +TI 1771360826.165872019 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 49.0669 +SE +ET PH +ID 146 +TI 1771360826.168468536 +CC NStripHits 2 +PE 115.505 +PP 1.67595 -0.649002 1.74455 +PW 0 +SE +ET PH +ID 147 +TI 1771360826.171284936 +CC NStripHits 2 +PE 65.6926 +PP 1.90877 -1.16501 -2.09686 +PW 0 +SE +ET UN +ID 148 +TI 1771360826.171425902 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 149 +TI 1771360826.171987236 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 150 +TI 1771360826.173343136 +CC NStripHits 2 +PE 59.9576 +PP -1.00139 -0.776875 -0.467172 +PW 0 +SE +ET PH +ID 151 +TI 1771360826.173453702 +CC NStripHits 2 +PE 80.8903 +PP 3.88767 0.341911 -3.14452 +PW 0 +SE +ET UN +ID 152 +TI 1771360826.174696152 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 353.132 +SE +ET PH +ID 153 +TI 1771360826.175736519 +CC NStripHits 2 +PE 81.3367 +PP 3.30564 0.288956 -2.44608 +PW 0 +SE +ET PH +ID 154 +TI 1771360826.175989136 +CC NStripHits 3 +PE 111.004 +PP -0.535766 0.376898 -2.7953 +PW 0 +SE +ET PH +ID 155 +TI 1771360826.176164869 +CC NStripHits 2 +PE 27.4166 +PP -2.39827 0.378839 0.347672 +PW 0 +SE +ET PH +ID 156 +TI 1771360826.176626936 +CC NStripHits 3 +PE 167.194 +PP 3.18923 -0.725018 -3.72655 +PW 0 +SE +ET UN +ID 157 +TI 1771360826.178650036 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 52.2464 +SE +ET PH +ID 158 +TI 1771360826.179805569 +CC NStripHits 3 +PE 398.498 +PP 1.79236 0.0785655 -1.28202 +PW 0 +SE +ET UN +ID 159 +TI 1771360826.180169486 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 297.151 +SE +ET PH +ID 160 +TI 1771360826.181995103 +CC NStripHits 2 +PE 82.3646 +PP 2.72361 0.348847 -2.67889 +PW 0 +SE +ID 161 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 162 +TI 1771360826.183381636 +CC NStripHits 2 +PE 80.9423 +PP 3.18923 0.0978818 -2.09686 +PW 0 +SE +ET PH +ID 163 +TI 1771360826.185329103 +CC NStripHits 2 +PE 82.4377 +PP -0.302953 -0.255432 -2.9117 +PW 0 +SE +ET PH +ID 164 +TI 1771360826.185531836 +CC NStripHits 2 +PE 75.9147 +PP -1.2342 -1.01841 -2.09686 +PW 0 +SE +ET UN +ID 165 +TI 1771360826.185688153 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 82.1834 +SE +ET UN +ID 166 +TI 1771360826.185824253 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 167 +TI 1771360826.187258519 +CC NStripHits 2 +PE 85.1103 +PP 0.511891 0.153494 -0.699984 +PW 0 +SE +ET UN +ID 168 +TI 1771360826.187445819 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 76.0645 +SE +ET PH +ID 169 +TI 1771360826.187678553 +CC NStripHits 2 +PE 298.407 +PP 3.42205 -0.92922 -2.21327 +PW 0 +SE +ET PH +ID 170 +TI 1771360826.191340303 +CC NStripHits 2 +PE 80.5688 +PP 3.18923 0.255897 1.86095 +PW 0 +SE +ID 171 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.052900) (Strip hit removed with energy 11.981073) (Strip hit removed with energy 8.771925) (Strip hit removed with energy 7.845102) (Strip hit removed with energy 8.958687) (Strip hit removed with energy 14.364213) (Strip hit removed with energy 15.618454) (Strip hit removed with energy -28.297535) (Strip hit removed with energy -7.770818) +QA StripPairing (Best reduced chi square is not below 25 (466.978427)) (GR Hit: Detector ID 0 and Energy 294.916417) +BD GR Veto +PQ 466.978 +SE +ET UN +ID 172 +TI 1771360826.193175203 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 182.357 +SE +ET UN +ID 173 +TI 1771360826.194527369 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.1355 +SE +ET PH +ID 174 +TI 1771360826.195141753 +CC NStripHits 2 +PE 133.379 +PP 4.00408 0.164916 -2.44608 +PW 0 +SE +ET PH +ID 175 +TI 1771360826.195797369 +CC NStripHits 2 +PE 77.9606 +PP -2.04905 0.350456 2.55939 +PW 0 +SE +ET PH +ID 176 +TI 1771360826.196884503 +CC NStripHits 2 +PE 82.5514 +PP 2.95642 0.309793 2.09377 +PW 0 +SE +ET PH +ID 177 +TI 1771360826.197588419 +CC NStripHits 3 +PE 220.212 +PP -1.58342 0.294032 -3.84295 +PW 0 +SE +ET PH +ID 178 +TI 1771360826.199121386 +CC NStripHits 2 +PE 62.0686 +PP -1.81623 0.325838 -2.56248 +PW 0 +SE +ET PH +ID 179 +TI 1771360826.200591420 +CC NStripHits 3 +PE 148.058 +PP 3.30564 -0.000344298 1.97736 +PW 0 +SE +ET UN +ID 180 +TI 1771360826.201012286 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 181 +TI 1771360826.201203036 +CC NStripHits 2 +PE 82.9617 +PP 1.90877 0.233313 -0.699984 +PW 0 +SE +ET PH +ID 182 +TI 1771360826.205553470 +CC NStripHits 3 +PE 158.628 +PP 0.861109 -0.357003 -1.98045 +PW 0 +SE +ET PH +ID 183 +TI 1771360826.206580920 +CC NStripHits 3 +PE 151.314 +PP 0.744703 -0.163782 -3.61014 +PW 0 +SE +ET PH +ID 184 +TI 1771360826.213043153 +CC NStripHits 3 +PE 84.5991 +PP 0.0462656 -0.0531321 1.74455 +PW 0 +SE +ET PH +ID 185 +TI 1771360826.213280653 +CC NStripHits 2 +PE 75.0332 +PP -0.768578 -1.0508 -1.63123 +PW 0 +SE +ET UN +ID 186 +TI 1771360826.214147920 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.4968 +SE +ET UN +ID 187 +TI 1771360826.214962403 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.4192 +SE +ET PH +ID 188 +TI 1771360826.216206536 +CC NStripHits 2 +PE 76.5058 +PP 1.90877 -0.117978 0.114859 +PW 0 +SE +ET PH +ID 189 +TI 1771360826.217015936 +CC NStripHits 2 +PE 114.626 +PP -1.1178 -0.717853 -4.19217 +PW 0 +SE +ET PH +ID 190 +TI 1771360826.217148203 +CC NStripHits 2 +PE 81.6127 +PP -2.39827 0.248991 -2.09686 +PW 0 +SE +ET UN +ID 191 +TI 1771360826.217234903 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 274.606 +SE +ET UN +ID 192 +TI 1771360826.217408320 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 193 +TI 1771360826.218520703 +CC NStripHits 2 +PE 303.448 +PP 2.95642 -0.181109 -0.816391 +PW 0 +SE +ID 194 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.373384) +BD GR Veto +PQ 0.360561 +SE +ID 195 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 40.124731) +BD GR Veto +PQ 1.22404 +SE +ET UN +ID 196 +TI 1771360826.220903620 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 197 +TI 1771360826.221638487 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 73.6172 +SE +ID 198 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 199 +TI 1771360826.223096820 +CC NStripHits 2 +PE 204.59 +PP 2.4908 0.0378884 2.32658 +PW 0 +SE +ET PH +ID 200 +TI 1771360826.223470970 +CC NStripHits 3 +PE 85.7875 +PP -2.16545 -1.0582 -2.44608 +PW 0 +SE +ET PH +ID 201 +TI 1771360826.223673103 +CC NStripHits 2 +PE 347.791 +PP 1.44314 -0.894612 1.04611 +PW 0 +SE +ET UN +ID 202 +TI 1771360826.224254703 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.7988 +SE +ID 203 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.996474) +BD GR Veto +PQ 0.122239 +SE +ID 204 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET UN +ID 205 +TI 1771360826.229306520 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4755 +SE +ID 206 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 31.067913)) (GR Hit: Detector ID 0 and Energy 78.720991) +BD GR Veto +PQ 23.9771 +SE +ET PH +ID 207 +TI 1771360826.229785120 +CC NStripHits 2 +PE 102.436 +PP 2.72361 -0.843947 -0.467172 +PW 0 +SE +ET UN +ID 208 +TI 1771360826.232443170 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 5 +PE 135.181 +SE +ET PH +ID 209 +TI 1771360826.233917770 +CC NStripHits 4 +PE 282.236 +PP 3.07283 -0.322878 -3.49373 +PW 0 +SE +ID 210 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 162.181528) +BD GR Veto +PQ 0.182817 +SE +ET UN +ID 211 +TI 1771360826.235416820 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.5368 +SE +ET UN +ID 212 +TI 1771360826.235724503 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 115.725 +SE +ET UN +ID 213 +TI 1771360826.238035803 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 430.036 +SE +ET PH +ID 214 +TI 1771360826.239919237 +CC NStripHits 2 +PE 79.544 +PP 1.55955 -0.231256 0.464078 +PW 0 +SE +ET UN +ID 215 +TI 1771360826.240326354 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 216 +TI 1771360826.241063704 +CC NStripHits 3 +PE 102.737 +PP 4.23689 -0.659705 0.231266 +PW 0 +SE +ET PH +ID 217 +TI 1771360826.241272354 +CC NStripHits 3 +PE 80.5777 +PP -2.74748 0.375355 -1.28202 +PW 0 +SE +ET PH +ID 218 +TI 1771360826.242065604 +CC NStripHits 2 +PE 26.7117 +PP -1.2342 -0.177705 -4.30858 +PW 0 +SE +ET PH +ID 219 +TI 1771360826.242700920 +CC NStripHits 2 +PE 104.126 +PP 0.977516 0.126868 1.16252 +PW 0 +SE +ET CO +ID 220 +TI 1771360826.243225170 +CC NStripHits 5 +PQ 37.0642 +SQ 2 +CT 0 1 +TL 1 +TE 100.844 +CE 133.268 1.99269 100.844 1.42039 +CD 2.4908 -0.923852 1.27892 0.0336036 0.0197981 0.0336036 2.02517 -0.235765 1.51173 0.0336036 0.0255641 0.0336036 0 0 0 0 0 0 +LA 0.86283 +SE +ID 221 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET UN +ID 222 +TI 1771360826.245751404 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8807 +SE +ID 223 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.508297) +BD GR Veto +PQ 7.23535 +SE +ID 224 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 209.060374) +BD GR Veto +PQ 0.0018704 +SE +ID 225 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (32.833581)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 61.891559)) (GR Hit: Detector ID 0 and Energy 109.033783) +BD GR Veto +PQ 32.8336 +SE +ET PH +ID 226 +TI 1771360826.248084604 +CC NStripHits 2 +PE 78.8197 +PP 2.02517 0.354183 0.114859 +PW 0 +SE +ID 227 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.013449) +QA StripPairing (GR Hit: Detector ID 0 and Energy 25.722515) +BD GR Veto +PQ 5.9439 +SE +ET PH +ID 228 +TI 1771360826.251521254 +CC NStripHits 3 +PE 101.957 +PP -2.63108 0.0340137 -3.72655 +PW 0 +SE +ET PH +ID 229 +TI 1771360826.253250904 +CC NStripHits 2 +PE 82.9534 +PP 3.18923 0.258811 -2.09686 +PW 0 +SE +ET CO +ID 230 +TI 1771360826.254798470 +CC NStripHits 4 +PQ 9.85948 +SQ 2 +CT 0 1 +TL 1 +TE 81.593 +CE 278.099 1.49661 81.593 1.44478 +CD 2.6072 -0.0471632 -2.9117 0.0336036 0.0272163 0.0336036 2.37439 -0.378208 -2.7953 0.0336036 0.0246366 0.0336036 0 0 0 0 0 0 +LA 0.421118 +SE +ET PH +ID 231 +TI 1771360826.255244104 +CC NStripHits 2 +PE 76.023 +PP 2.84002 0.371266 2.32658 +PW 0 +SE +ET UN +ID 232 +TI 1771360826.257219004 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.4487 +SE +ET PH +ID 233 +TI 1771360826.257309487 +CC NStripHits 3 +PE 254.073 +PP 3.30564 -0.970425 -4.07577 +PW 0 +SE +ET PH +ID 234 +TI 1771360826.259461504 +CC NStripHits 2 +PE 151.829 +PP 1.32673 0.367784 -0.699984 +PW 0 +SE +ET PH +ID 235 +TI 1771360826.262016221 +CC NStripHits 2 +PE 57.6046 +PP 3.88767 0.364836 2.21017 +PW 0 +SE +ID 236 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 126.316766) +BD GR Veto +PQ 18.3556 +SE +ET UN +ID 237 +TI 1771360826.262808937 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1576 +SE +ET PH +ID 238 +TI 1771360826.263147004 +CC NStripHits 4 +PE 207.901 +PP 4.3533 0.366508 -3.72655 +PW 0 +SE +ET UN +ID 239 +TI 1771360826.263400287 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 240 +TI 1771360826.265355254 +CC NStripHits 2 +PE 61.8065 +PP -2.04905 -0.402041 0.464078 +PW 0 +SE +ID 241 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.769743) +QA StripPairing (GR Hit: Detector ID 0 and Energy 40.097666) +BD GR Veto +PQ 0.107497 +SE +ID 242 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.350666) +BD GR Veto +PQ 0.0422664 +SE +ET PH +ID 243 +TI 1771360826.267043654 +CC NStripHits 2 +PE 30.9138 +PP -2.86389 0.0779245 0.114859 +PW 0 +SE +ID 244 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 355.554778) +BD GR Veto +PQ 0.516532 +SE +ID 245 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (178.728370)) (GR Hit: Detector ID 0 and Energy 202.062745) +BD GR Veto +PQ 178.728 +SE +ET PH +ID 246 +TI 1771360826.271013171 +CC NStripHits 2 +PE 100.799 +PP 2.95642 -0.157501 -0.350766 +PW 0 +SE +ID 247 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.335226) +BD GR Veto +PQ 0.334883 +SE +ET UN +ID 248 +TI 1771360826.273612637 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7976 +SE +ET UN +ID 249 +TI 1771360826.276379471 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 144.974 +SE +ET CO +ID 250 +TI 1771360826.276660137 +CC NStripHits 4 +PQ 10.8541 +SQ 2 +CT 0 1 +TL 1 +TE 125.465 +CE 232.9 1.4428 125.465 1.03229 +CD -2.74748 -0.68295 1.04611 0.0336036 0.0223601 0.0336036 -2.63108 -0.822482 0.813297 0.0336036 0.0206549 0.0336036 0 0 0 0 0 0 +LA 0.29533 +SE +ID 251 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 102.994590) +BD GR Veto +PQ 2.91116 +SE +ET PH +ID 252 +TI 1771360826.278021671 +CC NStripHits 2 +PE 25.4995 +PP 3.30564 0.190493 2.09377 +PW 0 +SE +ET PH +ID 253 +TI 1771360826.280045954 +CC NStripHits 3 +PE 80.7234 +PP -2.9803 0.365195 1.86095 +PW 0 +SE +ET UN +ID 254 +TI 1771360826.280407388 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 158.253 +SE +ET PH +ID 255 +TI 1771360826.280658304 +CC NStripHits 4 +PE 337.176 +PP -0.652172 -0.406405 -1.51483 +PW 0 +SE +ET UN +ID 256 +TI 1771360826.281710521 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.9374 +SE +ID 257 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.651775) +BD GR Veto +PQ +SE +ET PH +ID 258 +TI 1771360826.282287888 +CC NStripHits 2 +PE 78.2643 +PP 0.744703 0.302937 1.27892 +PW 0 +SE +ID 259 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 260 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.223976) +BD GR Veto +PQ +SE +ID 261 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.897077) +BD GR Veto +PQ +SE +ET PH +ID 262 +TI 1771360826.284981021 +CC NStripHits 2 +PE 67.8163 +PP -1.35061 0.340498 0.813297 +PW 0 +SE +ET UN +ID 263 +TI 1771360826.285582704 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 354.882 +SE +ID 264 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 101.685492) +BD GR Veto +PQ 0.105811 +SE +ET PH +ID 265 +TI 1771360826.287994471 +CC NStripHits 2 +PE 210.161 +PP -0.419359 -0.056743 -4.54139 +PW 0 +SE +ET PH +ID 266 +TI 1771360826.289847671 +CC NStripHits 2 +PE 80.9231 +PP -2.51467 0.360202 -3.26092 +PW 0 +SE +ET PH +ID 267 +TI 1771360826.290411021 +CC NStripHits 2 +PE 61.772 +PP -2.16545 -0.0364604 1.16252 +PW 0 +SE +ET PH +ID 268 +TI 1771360826.291511954 +CC NStripHits 2 +PE 71.3765 +PP -1.69983 0.307495 -4.30858 +PW 0 +SE +ID 269 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.772253) +BD GR Veto +PQ +SE +ET CO +ID 270 +TI 1771360826.294517421 +CC NStripHits 4 +PQ 1.3547 +SQ 2 +CT 0 1 +TL 1 +TE 77.998 +CE 145.339 1.0775 77.998 0.988196 +CD 2.6072 -0.897019 1.27892 0.0336036 0.0200005 0.0336036 3.65486 -1.17079 -0.350766 0.0336036 0.0203869 0.0336036 0 0 0 0 0 0 +LA 1.95663 +SE +ID 271 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.244741) +BD GR Veto +PQ 0.153937 +SE +ET PH +ID 272 +TI 1771360826.295888754 +CC NStripHits 3 +PE 77.1061 +PP 2.6072 0.365475 2.44298 +PW 0 +SE +ET PH +ID 273 +TI 1771360826.296036771 +CC NStripHits 3 +PE 99.6503 +PP 1.09392 -0.881016 -0.816391 +PW 0 +SE +ET PH +ID 274 +TI 1771360826.297124554 +CC NStripHits 2 +PE 82.6492 +PP -0.652172 0.136123 1.04611 +PW 0 +SE +ET UN +ID 275 +TI 1771360826.297431938 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3021 +SE +ET PH +ID 276 +TI 1771360826.297927254 +CC NStripHits 2 +PE 847.559 +PP 2.14158 0.331797 -2.67889 +PW 0 +SE +ET UN +ID 277 +TI 1771360826.298042104 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.7192 +SE +ET UN +ID 278 +TI 1771360826.298378971 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 279 +TI 1771360826.298747188 +CC NStripHits 2 +PE 141.715 +PP 1.67595 -0.606724 2.32658 +PW 0 +SE +ET PH +ID 280 +TI 1771360826.301126105 +CC NStripHits 4 +PE 383.247 +PP 2.14158 0.270692 -3.26092 +PW 0 +SE +ET PH +ID 281 +TI 1771360826.301464438 +CC NStripHits 2 +PE 119.951 +PP 4.23689 0.217493 -0.467172 +PW 0 +SE +ID 282 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.955020) +BD GR Veto +PQ +SE +ET UN +ID 283 +TI 1771360826.302627721 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 174.502 +SE +ET CO +ID 284 +TI 1771360826.303386455 +CC NStripHits 5 +PQ 0.736282 +SQ 2 +CT 0 1 +TL 1 +TE 62.3267 +CE 163.537 1.03664 62.3267 0.989791 +CD -0.884984 -0.463565 -3.72655 0.0336036 0.0237925 0.0336036 -1.1178 0.136455 -2.32967 0.0336036 0.0296952 0.0336036 0 0 0 0 0 0 +LA 1.53802 +SE +ET UN +ID 285 +TI 1771360826.305949655 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 41.7014 +SE +ET PH +ID 286 +TI 1771360826.307843521 +CC NStripHits 2 +PE 79.5754 +PP 0.0462656 0.372974 -1.63123 +PW 0 +SE +ET CO +ID 287 +TI 1771360826.308051905 +CC NStripHits 5 +PQ 0.830015 +SQ 2 +CT 0 1 +TL 1 +TE 114.008 +CE 243.894 1.13293 114.008 1.14487 +CD 0.395484 -0.689906 0.580484 0.0336036 0.0223129 0.0336036 0.628297 -0.988494 0.347672 0.0336036 0.0195403 0.0336036 0 0 0 0 0 0 +LA 0.444475 +SE +ET PH +ID 288 +TI 1771360826.309443388 +CC NStripHits 2 +PE 277.966 +PP 2.84002 -0.126945 1.16252 +PW 0 +SE +ID 289 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (93.367729)) (GR Hit: Detector ID 0 and Energy 117.321497) +BD GR Veto +PQ 93.3677 +SE +ID 290 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 346.746983) +BD GR Veto +PQ 0.529479 +SE +ET PH +ID 291 +TI 1771360826.312946471 +CC NStripHits 2 +PE 63.3502 +PP 2.6072 0.356802 -0.467172 +PW 0 +SE +ET UN +ID 292 +TI 1771360826.313693288 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 137.39 +SE +ET PH +ID 293 +TI 1771360826.314630038 +CC NStripHits 4 +PE 126.18 +PP 3.18923 -1.04654 -3.84295 +PW 0 +SE +ET PH +ID 294 +TI 1771360826.316560988 +CC NStripHits 2 +PE 856.292 +PP 1.32673 -1.08559 -0.117953 +PW 0 +SE +ET UN +ID 295 +TI 1771360826.317143055 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 296 +TI 1771360826.318572288 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 297 +TI 1771360826.319521271 +CC NStripHits 2 +PE 80.4233 +PP 1.09392 0.34573 -3.95936 +PW 0 +SE +ET UN +ID 298 +TI 1771360826.320783705 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.2182 +SE +ID 299 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 297.690955) +BD GR Veto +PQ 0.0930982 +SE +ID 300 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 84.905534) +BD GR Veto +PQ 0.00220345 +SE +ET PH +ID 301 +TI 1771360826.321107805 +CC NStripHits 2 +PE 382.939 +PP 0.628297 0.136699 -1.51483 +PW 0 +SE +ET PH +ID 302 +TI 1771360826.322161172 +CC NStripHits 2 +PE 97.4844 +PP 0.0462656 -1.07274 -2.67889 +PW 0 +SE +ET UN +ID 303 +TI 1771360826.323481455 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 304 +TI 1771360826.323765738 +CC NStripHits 4 +PE 156.289 +PP -0.535766 -0.00376708 -0.00154687 +PW 0 +SE +ET PH +ID 305 +TI 1771360826.323954355 +CC NStripHits 2 +PE 73.3166 +PP -2.63108 0.0559752 -3.02811 +PW 0 +SE +ET PH +ID 306 +TI 1771360826.325551422 +CC NStripHits 3 +PE 358.262 +PP 1.32673 0.0333544 -2.9117 +PW 0 +SE +ET UN +ID 307 +TI 1771360826.330257105 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 308 +TI 1771360826.330540938 +CC NStripHits 2 +PE 55.1646 +PP -1.1178 -0.0186848 0.464078 +PW 0 +SE +ET UN +ID 309 +TI 1771360826.331486455 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.9046 +SE +ET PH +ID 310 +TI 1771360826.333384122 +CC NStripHits 5 +PE 197.871 +PP -2.16545 0.106493 0.231266 +PW 0 +SE +ET UN +ID 311 +TI 1771360826.333723572 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 231.639 +SE +ID 312 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.462254) +BD GR Veto +PQ 0.670444 +SE +ID 313 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.941908) +BD GR Veto +PQ 0.0204416 +SE +ET PH +ID 314 +TI 1771360826.336685738 +CC NStripHits 4 +PE 354.696 +PP 1.55955 -0.696728 1.27892 +PW 0 +SE +ET PH +ID 315 +TI 1771360826.336875288 +CC NStripHits 2 +PE 31.1941 +PP -2.04905 0.099493 2.09377 +PW 0 +SE +ET PH +ID 316 +TI 1771360826.339401155 +CC NStripHits 2 +PE 64.4945 +PP 2.95642 -1.02728 -1.51483 +PW 0 +SE +ET UN +ID 317 +TI 1771360826.340800055 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.0492 +SE +ET PH +ID 318 +TI 1771360826.342704222 +CC NStripHits 2 +PE 110.738 +PP 4.3533 0.0130426 0.696891 +PW 0 +SE +ID 319 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 143.710273) +BD GR Veto +PQ 0.102737 +SE +ET UN +ID 320 +TI 1771360826.343030389 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET PH +ID 321 +TI 1771360826.343299489 +CC NStripHits 2 +PE 73.6368 +PP -0.186547 0.099279 2.55939 +PW 0 +SE +ET PH +ID 322 +TI 1771360826.345124789 +CC NStripHits 2 +PE 25.7598 +PP 2.95642 -0.124375 -3.02811 +PW 0 +SE +ET PH +ID 323 +TI 1771360826.345887305 +CC NStripHits 3 +PE 169.827 +PP 2.6072 0.125574 2.32658 +PW 0 +SE +ET PH +ID 324 +TI 1771360826.346324172 +CC NStripHits 2 +PE 79.7607 +PP 1.90877 0.319642 -0.583578 +PW 0 +SE +ID 325 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 166.521677) +BD GR Veto +PQ 0.113432 +SE +ET PH +ID 326 +TI 1771360826.347302255 +CC NStripHits 4 +PE 228.588 +PP 0.279078 -0.598144 -0.699984 +PW 0 +SE +ID 327 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.210195) +BD GR Veto +PQ 0.584868 +SE +ET PH +ID 328 +TI 1771360826.351780505 +CC NStripHits 3 +PE 77.6969 +PP 4.00408 -1.09993 -3.49373 +PW 0 +SE +ET UN +ID 329 +TI 1771360826.355655922 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 62.143 +SE +ET UN +ID 330 +TI 1771360826.356020989 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 331 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 171.868965) +BD GR Veto +PQ 1.49715 +SE +ET UN +ID 332 +TI 1771360826.356634855 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 333 +TI 1771360826.356850939 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 334 +TI 1771360826.357364722 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 335 +TI 1771360826.357836405 +CC NStripHits 2 +PE 80.541 +PP -0.186547 0.372639 -1.74764 +PW 0 +SE +ET PH +ID 336 +TI 1771360826.358491339 +CC NStripHits 2 +PE 168.549 +PP 4.12048 -0.197202 -3.84295 +PW 0 +SE +ET CO +ID 337 +TI 1771360826.360168456 +CC NStripHits 5 +PQ 4.6551 +SQ 2 +CT 0.52403 0.47597 +TL 1 +TE 181.218 +CE 161.818 1.02121 181.218 2.05052 +CD 1.79236 -0.459688 -3.14452 0.0336036 0.0238352 0.0336036 2.37439 -0.0500147 -3.95936 0.0336036 0.0271794 0.0336036 0 0 0 0 0 0 +LA 1.08192 +SE +ET UN +ID 338 +TI 1771360826.360805022 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9616 +SE +ET PH +ID 339 +TI 1771360826.361077656 +CC NStripHits 4 +PE 158.018 +PP -2.16545 0.141234 2.44298 +PW 0 +SE +ET UN +ID 340 +TI 1771360826.361744539 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET CO +ID 341 +TI 1771360826.365654056 +CC NStripHits 8 +PQ 3.85773 +SQ 4 +CT 0.176842 0.221707 +TL 1 +TE 57.2772 +CE 326.95 2.2804 57.2772 0.997198 +CD 3.88767 -0.765883 0.580484 0.0336036 0.0214069 0.0336036 2.95642 -0.569143 2.32658 0.0336036 0.0229702 0.0336036 0 0 0 0 0 0 +LA 0.624214 +SE +ET PH +ID 342 +TI 1771360826.365873222 +CC NStripHits 2 +PE 80.751 +PP -1.46702 0.36754 -4.19217 +PW 0 +SE +ET PH +ID 343 +TI 1771360826.366595689 +CC NStripHits 3 +PE 112.887 +PP 1.09392 -1.1217 2.55939 +PW 0 +SE +ET PH +ID 344 +TI 1771360826.366756056 +CC NStripHits 2 +PE 163.031 +PP 0.279078 -0.631746 -3.95936 +PW 0 +SE +ID 345 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.003400) +BD GR Veto +PQ 0.000581225 +SE +ID 346 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ +SE +ET PH +ID 347 +TI 1771360826.372233556 +CC NStripHits 2 +PE 119.166 +PP 0.744703 0.371438 -1.74764 +PW 0 +SE +ET PH +ID 348 +TI 1771360826.374320106 +CC NStripHits 2 +PE 34.4173 +PP 3.53845 -0.10273 0.114859 +PW 0 +SE +ET UN +ID 349 +TI 1771360826.375697456 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.8018 +SE +ET UN +ID 350 +TI 1771360826.377907639 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 351 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 221.549414) +BD GR Veto +PQ 0.118075 +SE +ET PH +ID 352 +TI 1771360826.379812839 +CC NStripHits 2 +PE 63.7944 +PP 3.65486 0.115264 -0.816391 +PW 0 +SE +ET PH +ID 353 +TI 1771360826.380043289 +CC NStripHits 2 +PE 80.0467 +PP 3.18923 0.204217 -2.56248 +PW 0 +SE +ID 354 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 41.277559) +BD GR Veto +PQ 0.171249 +SE +ID 355 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 356 +TI 1771360826.383953006 +CC NStripHits 3 +PE 188.771 +PP -1.00139 -0.0633402 -1.63123 +PW 0 +SE +ET PH +ID 357 +TI 1771360826.384042739 +CC NStripHits 2 +PE 79.7946 +PP -1.1178 -0.0362964 -3.49373 +PW 0 +SE +ET UN +ID 358 +TI 1771360826.385248289 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 359 +TI 1771360826.386152156 +CC NStripHits 2 +PE 81.7095 +PP 2.25798 0.374527 -0.350766 +PW 0 +SE +ET CO +ID 360 +TI 1771360826.386811156 +CC NStripHits 4 +PQ 0.457444 +SQ 2 +CT 0.656493 0.343507 +TL 1 +TE 133.7 +CE 140.943 1.07178 133.7 1.18333 +CD 4.3533 -0.215582 -3.49373 0.0336036 0.0257343 0.0336036 4.00408 0.253101 -3.26092 0.0336036 0.0369523 0.0336036 0 0 0 0 0 0 +LA 0.629141 +SE +ET UN +ID 361 +TI 1771360826.388700256 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 362 +TI 1771360826.388905689 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.6762 +SE +ET PH +ID 363 +TI 1771360826.391133806 +CC NStripHits 2 +PE 73.2947 +PP 3.77127 0.370666 -3.95936 +PW 0 +SE +ET PH +ID 364 +TI 1771360826.392759856 +CC NStripHits 2 +PE 63.605 +PP 3.88767 -1.02386 1.97736 +PW 0 +SE +ET CO +ID 365 +TI 1771360826.393844573 +CC NStripHits 5 +PQ 1.80575 +SQ 2 +CT 0 1 +TL 1 +TE 51.0517 +CE 304.424 1.20605 51.0517 1.01361 +CD 3.07283 0.234346 2.6758 0.0336036 0.0345946 0.0336036 3.30564 -0.674937 1.97736 0.0336036 0.0224114 0.0336036 0 0 0 0 0 0 +LA 1.16996 +SE +ID 366 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.361163) +BD GR Veto +PQ 0.137142 +SE +ET UN +ID 367 +TI 1771360826.394915989 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 368 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.788286) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 49.754604)) (GR Hit: Detector ID 0 and Energy 75.574024) +BD GR Veto +PQ 15.861 +SE +ET PH +ID 369 +TI 1771360826.399061606 +CC NStripHits 2 +PE 111.74 +PP 2.84002 0.323486 0.696891 +PW 0 +SE +ID 370 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.068644) +BD GR Veto +PQ 5.02818 +SE +ET UN +ID 371 +TI 1771360826.400896006 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 355.125 +SE +ID 372 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 1058.867053) +BD GR Veto +PQ 2.61309 +SE +ET PH +ID 373 +TI 1771360826.402494323 +CC NStripHits 2 +PE 64.1275 +PP 4.00408 -0.972033 0.813297 +PW 0 +SE +ET PH +ID 374 +TI 1771360826.403398190 +CC NStripHits 3 +PE 118.631 +PP 1.67595 0.257062 -3.37733 +PW 0 +SE +ET PH +ID 375 +TI 1771360826.403856040 +CC NStripHits 2 +PE 196.452 +PP 0.162672 -0.633254 1.86095 +PW 0 +SE +ET UN +ID 376 +TI 1771360826.406813023 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 377 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.161222) +BD GR Veto +PQ 0.288371 +SE +ET PH +ID 378 +TI 1771360826.408855490 +CC NStripHits 2 +PE 165.906 +PP 2.25798 0.0695878 -3.49373 +PW 0 +SE +ID 379 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.812168) +BD GR Veto +PQ 2.72374 +SE +ET PH +ID 380 +TI 1771360826.411351573 +CC NStripHits 2 +PE 117.828 +PP -0.884984 -0.955854 -2.56248 +PW 0 +SE +ID 381 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 171.053955) +BD GR Veto +PQ 0.816256 +SE +ET UN +ID 382 +TI 1771360826.412723873 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 383 +TI 1771360826.412948973 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 384 +TI 1771360826.413086873 +CC NStripHits 2 +PE 96.7399 +PP -1.93264 -0.796129 -1.74764 +PW 0 +SE +ET PH +ID 385 +TI 1771360826.413714923 +CC NStripHits 4 +PE 127.018 +PP -1.93264 0.271609 -1.63123 +PW 0 +SE +ID 386 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.440582) (Strip hit removed with energy 15.301236) +BD GR Veto +PQ 7.1018 +SE +ET CO +ID 387 +TI 1771360826.415116790 +CC NStripHits 5 +PQ 2.49477 +SQ 2 +CT 0.504344 0.495656 +TL 1 +TE 170.468 +CE 167.258 2.02569 170.468 1.08139 +CD 0.628297 -0.193504 -3.14452 0.0336036 0.0259078 0.0336036 1.44314 0.150318 -2.9117 0.0336036 0.0300574 0.0336036 0 0 0 0 0 0 +LA 0.914542 +SE +ET PH +ID 388 +TI 1771360826.416303923 +CC NStripHits 2 +PE 72.7177 +PP -1.69983 -0.065475 -0.699984 +PW 0 +SE +ET PH +ID 389 +TI 1771360826.417442006 +CC NStripHits 2 +PE 64.2845 +PP 2.25798 -1.05845 1.97736 +PW 0 +SE +ET UN +ID 390 +TI 1771360826.417930556 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.5169 +SE +ID 391 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ 14.2871 +SE +ET PH +ID 392 +TI 1771360826.419557940 +CC NStripHits 2 +PE 82.0579 +PP 2.84002 0.369086 -0.350766 +PW 0 +SE +ET PH +ID 393 +TI 1771360826.420029390 +CC NStripHits 2 +PE 30.5368 +PP 2.14158 0.377636 -4.19217 +PW 0 +SE +ET CO +ID 394 +TI 1771360826.422724973 +CC NStripHits 4 +PQ 22.5806 +SQ 2 +CT 0 1 +TL 1 +TE 37.5149 +CE 111.681 1.05058 37.5149 1.42898 +CD 1.90877 -0.50118 -2.32967 0.0336036 0.0234395 0.0336036 2.6072 0.321388 -0.816391 0.0336036 0.0406699 0.0336036 0 0 0 0 0 0 +LA 1.85861 +SE +ET PH +ID 395 +TI 1771360826.423003623 +CC NStripHits 3 +PE 99.8242 +PP -2.04905 0.308438 1.39533 +PW 0 +SE +ET PH +ID 396 +TI 1771360826.423177740 +CC NStripHits 2 +PE 201.618 +PP 0.628297 -0.854661 -0.699984 +PW 0 +SE +ID 397 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 215.532444) +BD GR Veto +PQ 0.408808 +SE +ET PH +ID 398 +TI 1771360826.425936573 +CC NStripHits 2 +PE 28.1924 +PP -0.768578 0.267959 0.347672 +PW 0 +SE +ET UN +ID 399 +TI 1771360826.426349023 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 117.239 +SE +ET PH +ID 400 +TI 1771360826.427292123 +CC NStripHits 2 +PE 134.426 +PP -2.16545 -0.0183836 -4.07577 +PW 0 +SE +ID 401 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 402 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.412229) +BD GR Veto +PQ 0.124524 +SE +ID 403 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ET UN +ID 404 +TI 1771360826.431744223 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.3454 +SE +ET CO +ID 405 +TI 1771360826.432461390 +CC NStripHits 6 +PQ 24.195 +SQ 3 +CT 0.00042189 0.0757947 +TL 1 +TE 81.4002 +CE 283.537 2.06021 81.4002 1.05655 +CD 3.30564 -0.658216 -3.26092 0.0336036 0.0225077 0.0336036 3.42205 -0.321137 -2.44608 0.0336036 0.0250369 0.0336036 0 0 0 0 0 0 +LA 0.517506 +SE +ET CO +ID 406 +TI 1771360826.433744023 +CC NStripHits 5 +PQ 0.0343357 +SQ 2 +CT 0.507219 0.492781 +TL 1 +TE 179.917 +CE 176.866 1.16491 179.917 1.04086 +CD -0.0701406 -0.28818 -1.39842 0.0336036 0.0252603 0.0336036 -0.302953 -0.125198 -1.63123 0.0336036 0.0264971 0.0336036 0 0 0 0 0 0 +LA 0.367376 +SE +ID 407 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.907927) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.737847)) (GR Hit: Detector ID 0 and Energy 40.066141) +BD GR Veto +PQ 1.99771 +SE +ET UN +ID 408 +TI 1771360826.440136774 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 409 +TI 1771360826.441467907 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 410 +TI 1771360826.442776840 +CC NStripHits 3 +PE 106.416 +PP 2.72361 -0.949956 -4.42498 +PW 0 +SE +ID 411 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 27.820266)) (GR Hit: Detector ID 0 and Energy 86.523134) +BD GR Veto +PQ 1.22585 +SE +ET UN +ID 412 +TI 1771360826.443893390 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.4264 +SE +ET CO +ID 413 +TI 1771360826.446408390 +CC NStripHits 4 +PQ 21.4779 +SQ 2 +CT 0 1 +TL 1 +TE 57.3281 +CE 98.0619 1.45048 57.3281 1.05026 +CD 0.628297 -1.04599 -2.56248 0.0336036 0.0199387 0.0336036 0.511891 -0.968055 -2.67889 0.0336036 0.0195305 0.0336036 0 0 0 0 0 0 +LA 0.182141 +SE +ET PH +ID 414 +TI 1771360826.449468824 +CC NStripHits 2 +PE 59.9433 +PP -1.35061 -1.17511 1.86095 +PW 0 +SE +ET PH +ID 415 +TI 1771360826.450822924 +CC NStripHits 3 +PE 204.709 +PP 1.67595 -0.725723 -2.32967 +PW 0 +SE +ET PH +ID 416 +TI 1771360826.453836974 +CC NStripHits 2 +PE 185.19 +PP -0.186547 -0.945696 -1.74764 +PW 0 +SE +ET PH +ID 417 +TI 1771360826.456058724 +CC NStripHits 3 +PE 270.428 +PP 3.18923 -0.19308 -2.9117 +PW 0 +SE +ET UN +ID 418 +TI 1771360826.456743740 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8498 +SE +ET PH +ID 419 +TI 1771360826.459474940 +CC NStripHits 3 +PE 359.361 +PP 0.279078 -0.0254197 0.114859 +PW 0 +SE +ET PH +ID 420 +TI 1771360826.459603124 +CC NStripHits 2 +PE 81.1597 +PP 4.00408 0.253891 1.62814 +PW 0 +SE +ID 421 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.834157) +BD GR Veto +PQ 0.162619 +SE +ET PH +ID 422 +TI 1771360826.464676241 +CC NStripHits 2 +PE 79.3763 +PP 1.67595 0.375383 -1.51483 +PW 0 +SE +ET PH +ID 423 +TI 1771360826.465214207 +CC NStripHits 3 +PE 142.368 +PP 3.77127 -0.605695 -0.117953 +PW 0 +SE +ET UN +ID 424 +TI 1771360826.466981974 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 150.141 +SE +ET UN +ID 425 +TI 1771360826.467097057 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 426 +TI 1771360826.467628024 +CC NStripHits 3 +PE 69.1319 +PP 1.44314 -1.09484 -2.32967 +PW 0 +SE +ET UN +ID 427 +TI 1771360826.469446074 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.6991 +SE +ET UN +ID 428 +TI 1771360826.469976107 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 25.1067 +SE +ET UN +ID 429 +TI 1771360826.470145857 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 334.521 +SE +ID 430 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.938334) +BD GR Veto +PQ 1.82264 +SE +ET PH +ID 431 +TI 1771360826.470538457 +CC NStripHits 2 +PE 31.7681 +PP -0.652172 -0.426886 -1.63123 +PW 0 +SE +ET UN +ID 432 +TI 1771360826.470734141 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 433 +TI 1771360826.472885874 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 434 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 55.219524) +BD GR Veto +PQ 0.0018494 +SE +ID 435 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.059689) (Strip hit removed with energy 10.936673) +QA StripPairing (GR Hit: Detector ID 0 and Energy 84.895870) +BD GR Veto +PQ 1.41561 +SE +ET PH +ID 436 +TI 1771360826.474644507 +CC NStripHits 2 +PE 102.887 +PP -0.0701406 -1.09953 2.09377 +PW 0 +SE +ET UN +ID 437 +TI 1771360826.477773557 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7116 +SE +ET UN +ID 438 +TI 1771360826.478487191 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Out of Range) +CC NStripHits 7 +PE 340.385 +SE +ET PH +ID 439 +TI 1771360826.479922791 +CC NStripHits 2 +PE 27.2663 +PP 0.0462656 0.20537 2.55939 +PW 0 +SE +ID 440 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.746557) +BD GR Veto +PQ 0.00205536 +SE +ET UN +ID 441 +TI 1771360826.481580624 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.161 +SE +ET PH +ID 442 +TI 1771360826.482568941 +CC NStripHits 2 +PE 44.9428 +PP -1.81623 -1.03336 0.813297 +PW 0 +SE +ID 443 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 444 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 445 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 446 +TI 1771360826.485146674 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Out of Range) +CC NStripHits 5 +PE 172.723 +SE +ET PH +ID 447 +TI 1771360826.486595974 +CC NStripHits 4 +PE 153.165 +PP 0.861109 -0.758575 -0.816391 +PW 0 +SE +ID 448 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 95.030592) +BD GR Veto +PQ 1.16211 +SE +ET PH +ID 449 +TI 1771360826.488925974 +CC NStripHits 2 +PE 76.5664 +PP -1.58342 0.3183 1.62814 +PW 0 +SE +ET PH +ID 450 +TI 1771360826.489055174 +CC NStripHits 2 +PE 77.6095 +PP -0.884984 0.355765 -2.67889 +PW 0 +SE +ID 451 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 356.230123) +BD GR Veto +PQ 0.0539404 +SE +ET PH +ID 452 +TI 1771360826.490491324 +CC NStripHits 2 +PE 130.095 +PP -2.63108 0.251131 -1.98045 +PW 0 +SE +ET PH +ID 453 +TI 1771360826.492521524 +CC NStripHits 2 +PE 182.52 +PP -0.884984 0.31201 -0.699984 +PW 0 +SE +ET PH +ID 454 +TI 1771360826.493887624 +CC NStripHits 3 +PE 81.4581 +PP 3.18923 -0.433872 0.580484 +PW 0 +SE +ET UN +ID 455 +TI 1771360826.494466674 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 6 +PE 144.065 +SE +ID 456 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (55.431375)) (GR Hit: Detector ID 0 and Energy 85.760424) +BD GR Veto +PQ 55.4314 +SE +ET PH +ID 457 +TI 1771360826.495756008 +CC NStripHits 2 +PE 355.849 +PP 0.977516 -0.366873 -2.9117 +PW 0 +SE +ET UN +ID 458 +TI 1771360826.496466008 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 156.325 +SE +ET PH +ID 459 +TI 1771360826.497643391 +CC NStripHits 3 +PE 141.057 +PP 4.00408 0.195854 -0.816391 +PW 0 +SE +ET PH +ID 460 +TI 1771360826.498596458 +CC NStripHits 2 +PE 30.709 +PP 1.79236 0.376228 -1.86405 +PW 0 +SE +ET PH +ID 461 +TI 1771360826.500768708 +CC NStripHits 3 +PE 79.2714 +PP 3.53845 -0.396594 -0.583578 +PW 0 +SE +ET CO +ID 462 +TI 1771360826.501035341 +CC NStripHits 7 +PQ 0.311703 +SQ 2 +CT 0.558146 0.441854 +TL 1 +TE 354.996 +CE 309.003 1.2227 354.996 1.49581 +CD 0.511891 -0.846274 1.62814 0.0336036 0.0204545 0.0336036 0.977516 -0.77817 1.74455 0.0336036 0.0212163 0.0336036 0 0 0 0 0 0 +LA 0.484764 +SE +ID 463 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.843808) +BD GR Veto +PQ 0.585677 +SE +ID 464 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (58.947406)) (GR Hit: Detector ID 0 and Energy 84.942864) +BD GR Veto +PQ 58.9474 +SE +ET PH +ID 465 +TI 1771360826.502761975 +CC NStripHits 2 +PE 81.0642 +PP 3.53845 0.227072 -2.7953 +PW 0 +SE +ID 466 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.589700) +BD GR Veto +PQ 2.20321 +SE +ET PH +ID 467 +TI 1771360826.504881908 +CC NStripHits 3 +PE 129.943 +PP 0.628297 0.128872 1.51173 +PW 0 +SE +ET PH +ID 468 +TI 1771360826.505135475 +CC NStripHits 2 +PE 157.446 +PP 3.88767 -1.13266 1.04611 +PW 0 +SE +ET PH +ID 469 +TI 1771360826.505823408 +CC NStripHits 3 +PE 212.657 +PP 2.6072 -0.126945 1.74455 +PW 0 +SE +ID 470 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.086163) +BD GR Veto +PQ 0.0204541 +SE +ID 471 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.566031) +BD GR Veto +PQ 24.4822 +SE +ID 472 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 473 +TI 1771360826.516388441 +CC NStripHits 2 +PE 80.2907 +PP 2.72361 0.25866 -2.21327 +PW 0 +SE +ET PH +ID 474 +TI 1771360826.518993091 +CC NStripHits 3 +PE 209.782 +PP -2.39827 -0.413041 -3.02811 +PW 0 +SE +ID 475 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.441338) +BD GR Veto +PQ 0.857518 +SE +ET PH +ID 476 +TI 1771360826.521911275 +CC NStripHits 2 +PE 30.2643 +PP -0.0701406 -0.651029 -2.09686 +PW 0 +SE +ET PH +ID 477 +TI 1771360826.523228992 +CC NStripHits 4 +PE 112.081 +PP 1.90877 -0.676811 -2.9117 +PW 0 +SE +ID 478 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.054934) +BD GR Veto +PQ 0.0964423 +SE +ET PH +ID 479 +TI 1771360826.523738542 +CC NStripHits 3 +PE 146.821 +PP 3.53845 -0.815379 -4.07577 +PW 0 +SE +ID 480 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 84.154173) +BD GR Veto +PQ 0.61773 +SE +ET PH +ID 481 +TI 1771360826.524382725 +CC NStripHits 2 +PE 282.091 +PP 2.02517 -0.941621 1.27892 +PW 0 +SE +ET PH +ID 482 +TI 1771360826.525779142 +CC NStripHits 2 +PE 83.6619 +PP 0.977516 -1.09551 -3.49373 +PW 0 +SE +ID 483 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.216444) +BD GR Veto +PQ 0.813075 +SE +ET PH +ID 484 +TI 1771360826.527425225 +CC NStripHits 2 +PE 31.0998 +PP -0.535766 -0.613086 1.97736 +PW 0 +SE +ET UN +ID 485 +TI 1771360826.528440025 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 49.2395 +SE +ET PH +ID 486 +TI 1771360826.528982492 +CC NStripHits 2 +PE 168.457 +PP 1.79236 0.0111554 -3.61014 +PW 0 +SE +ID 487 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (87.203100)) (GR Hit: Detector ID 0 and Energy 102.603107) +BD GR Veto +PQ 87.2031 +SE +ET PH +ID 488 +TI 1771360826.533244742 +CC NStripHits 2 +PE 106.52 +PP 2.72361 0.017779 -4.6578 +PW 0 +SE +ET UN +ID 489 +TI 1771360826.533986408 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5197 +SE +ET PH +ID 490 +TI 1771360826.537322458 +CC NStripHits 2 +PE 29.4797 +PP -1.2342 0.213167 -3.14452 +PW 0 +SE +ET PH +ID 491 +TI 1771360826.541977525 +CC NStripHits 2 +PE 80.0957 +PP 1.67595 0.36882 -3.84295 +PW 0 +SE +ID 492 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 103.536451) +BD GR Veto +PQ 0.0702788 +SE +ET PH +ID 493 +TI 1771360826.543707975 +CC NStripHits 2 +PE 93.7249 +PP -1.93264 0.373916 -3.84295 +PW 0 +SE +ET UN +ID 494 +TI 1771360826.544336759 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.1977 +SE +ID 495 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.683460) +QA StripPairing (GR Hit: Detector ID 0 and Energy 46.381204) +BD GR Veto +PQ 1.05641 +SE +ID 496 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.583553) +BD GR Veto +PQ 0.648015 +SE +ET UN +ID 497 +TI 1771360826.545863859 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 498 +TI 1771360826.545940625 +CC NStripHits 2 +PE 164.513 +PP -1.69983 -0.193554 0.347672 +PW 0 +SE +ET PH +ID 499 +TI 1771360826.546207642 +CC NStripHits 2 +PE 158.937 +PP -1.00139 -0.457288 -0.117953 +PW 0 +SE +ET PH +ID 500 +TI 1771360826.546542592 +CC NStripHits 2 +PE 82.6095 +PP -0.535766 0.349376 2.6758 +PW 0 +SE +ET CO +ID 501 +TI 1771360826.548450192 +CC NStripHits 5 +PQ 0.516978 +SQ 2 +CT 0.540151 0.459849 +TL 1 +TE 189.397 +CE 165.815 1.24148 189.397 1.03577 +CD -2.39827 -0.657937 -3.61014 0.0336036 0.0225092 0.0336036 -1.93264 -0.186642 -4.07577 0.0336036 0.0259564 0.0336036 0 0 0 0 0 0 +LA 0.809779 +SE +ET PH +ID 502 +TI 1771360826.549879559 +CC NStripHits 2 +PE 81.3008 +PP -2.51467 0.230521 -2.09686 +PW 0 +SE +ET PH +ID 503 +TI 1771360826.550566392 +CC NStripHits 3 +PE 277.723 +PP 2.95642 0.0753838 -3.72655 +PW 0 +SE +ID 504 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 122.797416) +BD GR Veto +PQ 0.48186 +SE +ET UN +ID 505 +TI 1771360826.552467242 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 506 +TI 1771360826.553627759 +CC NStripHits 2 +PE 28.484 +PP 0.162672 -0.487049 -1.74764 +PW 0 +SE +ET CO +ID 507 +TI 1771360826.553894625 +CC NStripHits 6 +PQ 30.4155 +SQ 3 +CT 0.00255054 0.217742 +TL 1 +TE 188.127 +CE 192.336 1.7007 188.127 1.0017 +CD -2.63108 -0.545869 -2.44608 0.0336036 0.0231413 0.0336036 -2.16545 -0.433585 -1.39842 0.0336036 0.0240897 0.0336036 0 0 0 0 0 0 +LA 0.46177 +SE +ET PH +ID 508 +TI 1771360826.554438442 +CC NStripHits 2 +PE 110.71 +PP -1.00139 -0.961519 -2.67889 +PW 0 +SE +ET CO +ID 509 +TI 1771360826.554635492 +CC NStripHits 6 +PQ 9.48003 +SQ 3 +CT 0.000380104 0.0125435 +TL 1 +TE 107.254 +CE 247.466 1.41932 107.254 1.36363 +CD 3.77127 0.380433 1.16252 0.0336036 0.0153741 0.0336036 2.6072 0.00962607 1.51173 0.0336036 0.0277293 0.0336036 0 0 0 0 0 0 +LA 0.266743 +SE +ET PH +ID 510 +TI 1771360826.554908775 +CC NStripHits 2 +PE 74.0725 +PP 1.09392 -0.33763 -0.350766 +PW 0 +SE +ET PH +ID 511 +TI 1771360826.555772659 +CC NStripHits 2 +PE 117.318 +PP 0.395484 -0.478448 -4.54139 +PW 0 +SE +ET UN +ID 512 +TI 1771360826.555965642 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6499 +SE +ET PH +ID 513 +TI 1771360826.558829809 +CC NStripHits 2 +PE 184.58 +PP -2.51467 -0.215557 -3.26092 +PW 0 +SE +ET PH +ID 514 +TI 1771360826.559390975 +CC NStripHits 2 +PE 216.159 +PP 2.25798 -0.232204 -0.117953 +PW 0 +SE +ET PH +ID 515 +TI 1771360826.559745259 +CC NStripHits 3 +PE 303.26 +PP 1.90877 -0.0596176 -1.51483 +PW 0 +SE +ID 516 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.533157) +BD GR Veto +PQ 1.43338 +SE +ID 517 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 354.768645) +BD GR Veto +PQ 0.0613493 +SE +ET UN +ID 518 +TI 1771360826.560666742 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.3377 +SE +ET PH +ID 519 +TI 1771360826.561715426 +CC NStripHits 2 +PE 80.4623 +PP 1.90877 0.371236 -3.02811 +PW 0 +SE +ID 520 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 521 +TI 1771360826.563507376 +CC NStripHits 7 +PE 244.653 +PP -1.93264 -0.0192362 -2.09686 +PW 0 +SE +ET UN +ID 522 +TI 1771360826.563572392 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 197.363 +SE +ET PH +ID 523 +TI 1771360826.565264259 +CC NStripHits 2 +PE 108.796 +PP 1.32673 -0.927743 -1.86405 +PW 0 +SE +ET PH +ID 524 +TI 1771360826.566624326 +CC NStripHits 2 +PE 81.7984 +PP 0.162672 -0.0230944 -4.07577 +PW 0 +SE +ET PH +ID 525 +TI 1771360826.570118259 +CC NStripHits 2 +PE 79.4394 +PP 1.55955 0.324911 -3.72655 +PW 0 +SE +ET UN +ID 526 +TI 1771360826.572724842 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1577 +SE +ET PH +ID 527 +TI 1771360826.573509492 +CC NStripHits 2 +PE 216.468 +PP 1.21033 0.130722 0.580484 +PW 0 +SE +ET PH +ID 528 +TI 1771360826.575478542 +CC NStripHits 2 +PE 81.1733 +PP -2.16545 0.284464 2.6758 +PW 0 +SE +ET PH +ID 529 +TI 1771360826.575761276 +CC NStripHits 3 +PE 82.5139 +PP 2.4908 0.345753 -1.63123 +PW 0 +SE +ET PH +ID 530 +TI 1771360826.576371542 +CC NStripHits 2 +PE 78.5551 +PP -0.768578 -0.989797 -3.14452 +PW 0 +SE +ET UN +ID 531 +TI 1771360826.576969976 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 532 +TI 1771360826.577481126 +CC NStripHits 3 +PE 85.1397 +PP -0.535766 -0.5993 -1.63123 +PW 0 +SE +ET CO +ID 533 +TI 1771360826.577886626 +CC NStripHits 5 +PQ 20.2355 +SQ 2 +CT 0.570366 0.429634 +TL 1 +TE 222.673 +CE 171.424 1.44855 222.673 1.41927 +CD 2.95642 -0.614824 -0.117953 0.0336036 0.0227412 0.0336036 2.84002 -0.714226 -1.74764 0.0336036 0.0221031 0.0336036 0 0 0 0 0 0 +LA 1.63686 +SE +ET UN +ID 534 +TI 1771360826.578869892 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.3886 +SE +ET PH +ID 535 +TI 1771360826.579426326 +CC NStripHits 2 +PE 53.1326 +PP 4.00408 0.380657 -4.07577 +PW 0 +SE +ID 536 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.684668) +BD GR Veto +PQ 0.0514051 +SE +ET PH +ID 537 +TI 1771360826.580281243 +CC NStripHits 3 +PE 60.2679 +PP 1.21033 -0.79469 -0.234359 +PW 0 +SE +ET PH +ID 538 +TI 1771360826.580529959 +CC NStripHits 3 +PE 225.817 +PP 1.09392 0.294599 -3.26092 +PW 0 +SE +ET UN +ID 539 +TI 1771360826.580960893 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.1311 +SE +ET UN +ID 540 +TI 1771360826.581242859 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7582 +SE +ET UN +ID 541 +TI 1771360826.581523259 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2388 +SE +ET PH +ID 542 +TI 1771360826.581898609 +CC NStripHits 2 +PE 77.1391 +PP 2.14158 -0.028353 2.32658 +PW 0 +SE +ET PH +ID 543 +TI 1771360826.582144326 +CC NStripHits 2 +PE 98.8087 +PP 3.30564 -0.958432 -2.56248 +PW 0 +SE +ET UN +ID 544 +TI 1771360826.583061759 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2658 +SE +ID 545 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET PH +ID 546 +TI 1771360826.583732143 +CC NStripHits 2 +PE 148.466 +PP 0.279078 0.199087 2.55939 +PW 0 +SE +ET PH +ID 547 +TI 1771360826.584058026 +CC NStripHits 2 +PE 70.6473 +PP -1.93264 0.263991 -1.39842 +PW 0 +SE +ET PH +ID 548 +TI 1771360826.585688209 +CC NStripHits 2 +PE 81.158 +PP 0.162672 0.356833 -2.7953 +PW 0 +SE +ET PH +ID 549 +TI 1771360826.587623576 +CC NStripHits 2 +PE 175.773 +PP 0.977516 -0.532357 -4.19217 +PW 0 +SE +ID 550 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.950446)) (GR Hit: Detector ID 0 and Energy 176.798808) (GR Hit: Detector ID 0 and Energy 54.042044) +BD GR Veto +PQ 27.9504 +SE +ET PH +ID 551 +TI 1771360826.589993609 +CC NStripHits 3 +PE 82.4464 +PP -2.04905 -0.690308 -3.84295 +PW 0 +SE +ET UN +ID 552 +TI 1771360826.590764259 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.6651 +SE +ET CO +ID 553 +TI 1771360826.593011793 +CC NStripHits 7 +PQ 2.17133 +SQ 3 +CT 0.15757 0.766944 +TL 1 +TE 82.0119 +CE 355.629 1.53276 82.0119 1.0467 +CD -2.16545 0.212495 -4.07577 0.0336036 0.0327033 0.0336036 0.162672 -0.43833 1.04611 0.0336036 0.0240515 0.0336036 0 0 0 0 0 0 +LA 0.779651 +SE +ET UN +ID 554 +TI 1771360826.594814093 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.8095 +SE +ET UN +ID 555 +TI 1771360826.595319626 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 556 +TI 1771360826.595964076 +CC NStripHits 2 +PE 75.9915 +PP 1.32673 -0.210389 -2.56248 +PW 0 +SE +ET UN +ID 557 +TI 1771360826.596670043 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 558 +TI 1771360826.598118693 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 559 +TI 1771360826.602794043 +CC NStripHits 5 +PQ 1.36658 +SQ 2 +CT 0.562561 0.437439 +TL 1 +TE 204.696 +CE 176.522 1.21754 204.696 1.03248 +CD 3.77127 -0.320205 -3.14452 0.0336036 0.0250425 0.0336036 4.00408 -0.562951 -3.49373 0.0336036 0.0230113 0.0336036 0 0 0 0 0 0 +LA 0.484844 +SE +ET PH +ID 560 +TI 1771360826.605229410 +CC NStripHits 2 +PE 204.229 +PP -0.0701406 -0.879921 -3.37733 +PW 0 +SE +ET PH +ID 561 +TI 1771360826.606165726 +CC NStripHits 2 +PE 82.4495 +PP -1.69983 -0.0351662 -4.19217 +PW 0 +SE +ET PH +ID 562 +TI 1771360826.606569360 +CC NStripHits 2 +PE 64.7084 +PP -1.93264 0.174252 2.6758 +PW 0 +SE +ID 563 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.322454) +BD GR Veto +PQ 0.862136 +SE +ET UN +ID 564 +TI 1771360826.607912976 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 565 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (211.197818)) (GR Hit: Detector ID 0 and Energy 160.012991) +BD GR Veto +PQ 211.198 +SE +ID 566 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 126.163327) +BD GR Veto +PQ 0.000148161 +SE +ET PH +ID 567 +TI 1771360826.611186560 +CC NStripHits 2 +PE 211.226 +PP 2.37439 0.125431 -2.56248 +PW 0 +SE +ET PH +ID 568 +TI 1771360826.611376460 +CC NStripHits 2 +PE 354.504 +PP 4.3533 -0.463699 -0.583578 +PW 0 +SE +ET CO +ID 569 +TI 1771360826.611599243 +CC NStripHits 5 +PQ 2.13779 +SQ 2 +CT 0.590884 0.409116 +TL 1 +TE 228.988 +CE 183.321 1.05515 228.988 1.17978 +CD 0.395484 -0.269624 1.04611 0.0336036 0.025362 0.0336036 0.511891 -0.38144 1.86095 0.0336036 0.024615 0.0336036 0 0 0 0 0 0 +LA 0.830673 +SE +ET UN +ID 570 +TI 1771360826.613023276 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 571 +TI 1771360826.613256626 +CC NStripHits 2 +PE 36.2318 +PP 3.88767 -0.946433 -1.98045 +PW 0 +SE +ID 572 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 58.919470) +BD GR Veto +PQ 0.0607313 +SE +ET PH +ID 573 +TI 1771360826.614949626 +CC NStripHits 2 +PE 80.0701 +PP 4.00408 0.367314 -4.19217 +PW 0 +SE +ET UN +ID 574 +TI 1771360826.615191576 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 278.104 +SE +ET PH +ID 575 +TI 1771360826.617523626 +CC NStripHits 3 +PE 80.572 +PP -1.00139 0.2267 -3.72655 +PW 0 +SE +ET UN +ID 576 +TI 1771360826.617995910 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 577 +TI 1771360826.618906310 +CC NStripHits 3 +PE 111.128 +PP 2.14158 -0.950617 -0.350766 +PW 0 +SE +ET PH +ID 578 +TI 1771360826.619167326 +CC NStripHits 2 +PE 52.0951 +PP 2.72361 -0.871795 0.114859 +PW 0 +SE +ID 579 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.133407) +BD GR Veto +PQ 0.0073188 +SE +ID 580 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 581 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 582 +TI 1771360826.621729910 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.9689 +SE +ID 583 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.952811) +BD GR Veto +PQ 0.000757432 +SE +ET PH +ID 584 +TI 1771360826.623188793 +CC NStripHits 2 +PE 644.003 +PP -1.93264 -0.417723 -0.467172 +PW 0 +SE +ET PH +ID 585 +TI 1771360826.626660510 +CC NStripHits 2 +PE 104.508 +PP 3.77127 -0.227354 -3.26092 +PW 0 +SE +ID 586 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 200.760305) +BD GR Veto +PQ 6.43162 +SE +ET PH +ID 587 +TI 1771360826.630173093 +CC NStripHits 2 +PE 78.8817 +PP 2.25798 -0.0378913 -4.07577 +PW 0 +SE +ET PH +ID 588 +TI 1771360826.630723943 +CC NStripHits 2 +PE 237.697 +PP 2.37439 -0.520892 -0.467172 +PW 0 +SE +ET PH +ID 589 +TI 1771360826.631775660 +CC NStripHits 2 +PE 25.9911 +PP 2.72361 -0.479071 -0.00154687 +PW 0 +SE +ET PH +ID 590 +TI 1771360826.633935310 +CC NStripHits 2 +PE 197.638 +PP 3.88767 -0.190302 -0.699984 +PW 0 +SE +ID 591 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.017702) +BD GR Veto +PQ 1.53232 +SE +ET UN +ID 592 +TI 1771360826.635551293 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 593 +TI 1771360826.638159143 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 594 +TI 1771360826.639817427 +CC NStripHits 2 +PE 119.505 +PP 1.32673 -0.711979 -4.30858 +PW 0 +SE +ET PH +ID 595 +TI 1771360826.640737377 +CC NStripHits 2 +PE 75.8762 +PP 1.79236 0.36208 -0.350766 +PW 0 +SE +ET PH +ID 596 +TI 1771360826.640831394 +CC NStripHits 2 +PE 50.4413 +PP 3.65486 0.257503 -3.26092 +PW 0 +SE +ET PH +ID 597 +TI 1771360826.641065610 +CC NStripHits 2 +PE 32.9518 +PP -1.35061 -0.709635 -2.7953 +PW 0 +SE +ET PH +ID 598 +TI 1771360826.643771844 +CC NStripHits 2 +PE 28.7353 +PP -2.74748 0.315286 0.813297 +PW 0 +SE +ET PH +ID 599 +TI 1771360826.644838844 +CC NStripHits 3 +PE 184.428 +PP 3.65486 0.347333 -1.51483 +PW 0 +SE +ET PH +ID 600 +TI 1771360826.645195794 +CC NStripHits 2 +PE 78.9683 +PP 2.37439 -0.892022 -3.72655 +PW 0 +SE +ET PH +ID 601 +TI 1771360826.647365377 +CC NStripHits 2 +PE 80.2434 +PP 3.07283 0.353125 -2.7953 +PW 0 +SE +ET PH +ID 602 +TI 1771360826.650202910 +CC NStripHits 2 +PE 106.198 +PP 2.37439 0.0672332 1.97736 +PW 0 +SE +ET PH +ID 603 +TI 1771360826.651012144 +CC NStripHits 2 +PE 34.5089 +PP -1.35061 0.275681 0.114859 +PW 0 +SE +ET UN +ID 604 +TI 1771360826.653546494 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.5692 +SE +ET PH +ID 605 +TI 1771360826.656743527 +CC NStripHits 2 +PE 62.9726 +PP -1.69983 0.367537 -4.54139 +PW 0 +SE +ID 606 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.150698) +BD GR Veto +PQ 0.253775 +SE +ET PH +ID 607 +TI 1771360826.660217944 +CC NStripHits 2 +PE 81.0808 +PP -0.419359 0.35523 -2.44608 +PW 0 +SE +ET UN +ID 608 +TI 1771360826.662727177 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 55.2197 +SE +ET PH +ID 609 +TI 1771360826.664909311 +CC NStripHits 2 +PE 107.154 +PP -0.186547 0.361746 2.44298 +PW 0 +SE +ID 610 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.055315) +BD GR Veto +PQ 0.043441 +SE +ET UN +ID 611 +TI 1771360826.667034577 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.6437 +SE +ET UN +ID 612 +TI 1771360826.670145861 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 613 +TI 1771360826.671999911 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.2121 +SE +ET PH +ID 614 +TI 1771360826.673732794 +CC NStripHits 3 +PE 98.3916 +PP -2.39827 0.008607 2.44298 +PW 0 +SE +ET UN +ID 615 +TI 1771360826.674313461 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 388.293 +SE +ET PH +ID 616 +TI 1771360826.675637327 +CC NStripHits 2 +PE 78.6268 +PP -1.46702 0.349095 -3.84295 +PW 0 +SE +ID 617 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 84.615840) +BD GR Veto +PQ 11.5961 +SE +ET UN +ID 618 +TI 1771360826.676592794 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 352.615 +SE +ET PH +ID 619 +TI 1771360826.677072811 +CC NStripHits 2 +PE 125.258 +PP 2.95642 -0.314042 2.6758 +PW 0 +SE +ET PH +ID 620 +TI 1771360826.677292511 +CC NStripHits 2 +PE 29.7587 +PP -1.58342 -0.38643 -3.37733 +PW 0 +SE +ET UN +ID 621 +TI 1771360826.677869227 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 159.157 +SE +ET PH +ID 622 +TI 1771360826.678180394 +CC NStripHits 5 +PE 359.183 +PP 4.00408 -0.342012 -1.51483 +PW 0 +SE +ID 623 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.432306) +BD GR Veto +PQ 0.426806 +SE +ET UN +ID 624 +TI 1771360826.679687861 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.2402 +SE +ET UN +ID 625 +TI 1771360826.680979544 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 626 +TI 1771360826.681615378 +CC NStripHits 3 +PE 111.785 +PP -1.1178 -0.490119 0.696891 +PW 0 +SE +ID 627 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.772253) +BD GR Veto +PQ +SE +ET UN +ID 628 +TI 1771360826.683235444 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 629 +TI 1771360826.683601778 +CC NStripHits 3 +PE 353.995 +PP -2.86389 -0.0528367 -3.26092 +PW 0 +SE +ID 630 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 631 +TI 1771360826.686351511 +CC NStripHits 2 +PE 80.3569 +PP 1.79236 0.247977 2.09377 +PW 0 +SE +ET CO +ID 632 +TI 1771360826.686614628 +CC NStripHits 7 +PQ 2.2554 +SQ 3 +CT 0.386822 0.710723 +TL 1 +TE 184.115 +CE 150.414 1.55155 184.115 1.16854 +CD 2.37439 -1.15128 -1.98045 0.0336036 0.0267871 0.0336036 2.02517 -0.753797 -2.21327 0.0336036 0.0215975 0.0336036 0 0 0 0 0 0 +LA 0.578059 +SE +ET PH +ID 633 +TI 1771360826.686921911 +CC NStripHits 3 +PE 80.8162 +PP 3.07283 0.262704 -0.816391 +PW 0 +SE +ET UN +ID 634 +TI 1771360826.689705228 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.03 +SE +ET PH +ID 635 +TI 1771360826.690964328 +CC NStripHits 2 +PE 304.026 +PP 3.30564 -0.375863 0.347672 +PW 0 +SE +ET CO +ID 636 +TI 1771360826.693059628 +CC NStripHits 6 +PQ 0.405453 +SQ 2 +CT 0.526693 0.473307 +TL 1 +TE 188.584 +CE 166.451 1.18503 188.584 1.17184 +CD 1.90877 -1.11827 -2.56248 0.0336036 0.0268214 0.0336036 2.84002 -0.0150541 -3.26092 0.0336036 0.0275704 0.0336036 0 0 0 0 0 0 +LA 1.60379 +SE +ET PH +ID 637 +TI 1771360826.693228144 +CC NStripHits 2 +PE 136.945 +PP 2.95642 -0.618573 -4.6578 +PW 0 +SE +ET CO +ID 638 +TI 1771360826.693485678 +CC NStripHits 7 +PQ 4.00521 +SQ 3 +CT 0.0102751 0.52338 +TL 1 +TE 58.7048 +CE 250.131 2.4601 58.7048 1.03876 +CD 1.32673 0.367671 -0.699984 0.0336036 0.0241894 0.0336036 1.67595 0.0790289 -0.467172 0.0336036 0.0285509 0.0336036 0 0 0 0 0 0 +LA 0.509382 +SE +ET PH +ID 639 +TI 1771360826.693791878 +CC NStripHits 2 +PE 77.6414 +PP 3.77127 -1.12481 -3.37733 +PW 0 +SE +ET PH +ID 640 +TI 1771360826.694888794 +CC NStripHits 2 +PE 151.858 +PP 1.21033 0.185447 2.6758 +PW 0 +SE +ET UN +ID 641 +TI 1771360826.696452594 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7389 +SE +ET UN +ID 642 +TI 1771360826.696795094 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 643 +TI 1771360826.699067444 +CC NStripHits 4 +PQ 18.1803 +SQ 2 +CT 0.526832 0.473168 +TL 1 +TE 184.3 +CE 170.392 1.46863 184.3 1.04477 +CD 2.6072 -0.20064 1.86095 0.0336036 0.0258558 0.0336036 2.25798 0.300257 2.32658 0.0336036 0.0418272 0.0336036 0 0 0 0 0 0 +LA 0.767896 +SE +ET PH +ID 644 +TI 1771360826.699333778 +CC NStripHits 2 +PE 78.3018 +PP 2.95642 0.349182 1.62814 +PW 0 +SE +ET PH +ID 645 +TI 1771360826.699637928 +CC NStripHits 2 +PE 53.1023 +PP 4.00408 0.36784 -2.7953 +PW 0 +SE +ID 646 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 149.673479) +BD GR Veto +PQ 0.996269 +SE +ID 647 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET UN +ID 648 +TI 1771360826.701675911 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 355.581 +SE +ET PH +ID 649 +TI 1771360826.701930195 +CC NStripHits 3 +PE 62.254 +PP 0.0462656 0.268981 -1.28202 +PW 0 +SE +ET CO +ID 650 +TI 1771360826.703325261 +CC NStripHits 7 +PQ 0.721937 +SQ 2 +CT 0 1 +TL 1 +TE 75.9461 +CE 279.183 1.54522 75.9461 1.09773 +CD 0.744703 -0.385652 -0.00154687 0.0336036 0.0245837 0.0336036 -0.302953 -0.983721 0.464078 0.0336036 0.0195309 0.0336036 0 0 0 0 0 0 +LA 1.29309 +SE +ET PH +ID 651 +TI 1771360826.703703061 +CC NStripHits 2 +PE 62.0907 +PP 2.02517 0.339895 2.09377 +PW 0 +SE +ID 652 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET PH +ID 653 +TI 1771360826.705159228 +CC NStripHits 3 +PE 364.624 +PP 1.67595 -0.038086 1.62814 +PW 0 +SE +ET UN +ID 654 +TI 1771360826.706086711 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 77.764 +SE +ET PH +ID 655 +TI 1771360826.706310445 +CC NStripHits 2 +PE 35.7877 +PP -0.768578 -0.185718 1.74455 +PW 0 +SE +ET PH +ID 656 +TI 1771360826.706516095 +CC NStripHits 2 +PE 57.3687 +PP 2.4908 -0.572276 1.39533 +PW 0 +SE +ET PH +ID 657 +TI 1771360826.706728411 +CC NStripHits 3 +PE 123.923 +PP -1.1178 0.179886 1.97736 +PW 0 +SE +ET PH +ID 658 +TI 1771360826.707305795 +CC NStripHits 3 +PE 174.613 +PP 0.628297 0.348766 -3.37733 +PW 0 +SE +ET PH +ID 659 +TI 1771360826.708564295 +CC NStripHits 2 +PE 112.785 +PP 1.79236 -1.01074 -2.09686 +PW 0 +SE +ET PH +ID 660 +TI 1771360826.708662028 +CC NStripHits 2 +PE 77.5137 +PP 0.511891 0.335796 -2.7953 +PW 0 +SE +ET PH +ID 661 +TI 1771360826.709082878 +CC NStripHits 2 +PE 72.0962 +PP 3.42205 0.307692 -2.21327 +PW 0 +SE +ET UN +ID 662 +TI 1771360826.709652511 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4254 +SE +ID 663 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ID 664 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (470.490187)) (GR Hit: Detector ID 0 and Energy 269.992526) +BD GR Veto +PQ 470.49 +SE +ID 665 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.004448) +BD GR Veto +PQ 0.282868 +SE +ET PH +ID 666 +TI 1771360826.713488528 +CC NStripHits 3 +PE 210.03 +PP 2.6072 -0.385086 2.44298 +PW 0 +SE +ET PH +ID 667 +TI 1771360826.714472911 +CC NStripHits 3 +PE 358.237 +PP -1.58342 -0.417608 -2.44608 +PW 0 +SE +ET PH +ID 668 +TI 1771360826.715012911 +CC NStripHits 2 +PE 95.481 +PP 1.79236 -1.00278 -0.699984 +PW 0 +SE +ID 669 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.225483) +BD GR Veto +PQ 0.0162895 +SE +ET CO +ID 670 +TI 1771360826.716797095 +CC NStripHits 4 +PQ 13.566 +SQ 2 +CT 0 1 +TL 1 +TE 92.3722 +CE 137.148 1.02967 92.3722 1.45968 +CD 1.09392 -1.12812 -3.37733 0.0336036 0.0278633 0.0336036 0.279078 -0.606537 0.114859 0.0336036 0.0227912 0.0336036 0 0 0 0 0 0 +LA 3.62373 +SE +ID 671 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.673284) +BD GR Veto +PQ 0.0527383 +SE +ET PH +ID 672 +TI 1771360826.718061145 +CC NStripHits 4 +PE 202.826 +PP -0.535766 -0.473511 0.114859 +PW 0 +SE +ET PH +ID 673 +TI 1771360826.718526395 +CC NStripHits 2 +PE 111.212 +PP 4.12048 -0.764535 -3.37733 +PW 0 +SE +ID 674 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.445359) +BD GR Veto +PQ +SE +ET PH +ID 675 +TI 1771360826.719744261 +CC NStripHits 2 +PE 81.0285 +PP -0.302953 0.336796 0.231266 +PW 0 +SE +ET CO +ID 676 +TI 1771360826.719965911 +CC NStripHits 7 +PQ 15.8155 +SQ 2 +CT 0 1 +TL 1 +TE 117.795 +CE 189.245 1.41072 117.795 1.94055 +CD -0.535766 -0.109024 -0.350766 0.0336036 0.0266352 0.0336036 -0.0701406 -0.0453155 0.813297 0.0336036 0.0272414 0.0336036 0 0 0 0 0 0 +LA 1.25535 +SE +ET UN +ID 677 +TI 1771360826.720239478 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 350.436 +SE +ET UN +ID 678 +TI 1771360826.721404595 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 230.949 +SE +ET UN +ID 679 +TI 1771360826.721674562 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 344.556 +SE +ET CO +ID 680 +TI 1771360826.722052478 +CC NStripHits 6 +PQ 0.956462 +SQ 2 +CT 0.526222 0.473778 +TL 1 +TE 185.861 +CE 170.7 1.17496 185.861 1.23086 +CD 3.42205 -0.394377 -1.51483 0.0336036 0.0245017 0.0336036 2.72361 -0.360032 -0.699984 0.0336036 0.0247648 0.0336036 0 0 0 0 0 0 +LA 1.07377 +SE +ET UN +ID 681 +TI 1771360826.724175445 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.9208 +SE +ET PH +ID 682 +TI 1771360826.724874512 +CC NStripHits 3 +PE 71.803 +PP 1.55955 -1.09221 0.580484 +PW 0 +SE +ID 683 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 191.981768) +BD GR Veto +PQ 0.0123837 +SE +ID 684 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 138.634911) +BD GR Veto +PQ 0.0649413 +SE +ET UN +ID 685 +TI 1771360826.726617428 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.6488 +SE +ET PH +ID 686 +TI 1771360826.727259012 +CC NStripHits 2 +PE 96.9923 +PP -2.39827 0.274722 -2.21327 +PW 0 +SE +ET PH +ID 687 +TI 1771360826.727457312 +CC NStripHits 4 +PE 357.297 +PP -0.652172 -0.369074 2.09377 +PW 0 +SE +ET UN +ID 688 +TI 1771360826.728239412 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 287.512 +SE +ET PH +ID 689 +TI 1771360826.728449295 +CC NStripHits 2 +PE 132.432 +PP 0.395484 -0.0269501 -2.9117 +PW 0 +SE +ET UN +ID 690 +TI 1771360826.730581512 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.6704 +SE +ID 691 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.050451) +BD GR Veto +PQ 0.981681 +SE +ET PH +ID 692 +TI 1771360826.733027512 +CC NStripHits 2 +PE 354.874 +PP 2.72361 0.116736 -1.98045 +PW 0 +SE +ET PH +ID 693 +TI 1771360826.733283562 +CC NStripHits 3 +PE 263.994 +PP 1.09392 0.271649 2.44298 +PW 0 +SE +ID 694 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.934873) +QA StripPairing (GR Hit: Detector ID 0 and Energy 351.914422) +BD GR Veto +PQ 0.358743 +SE +ET PH +ID 695 +TI 1771360826.734619895 +CC NStripHits 3 +PE 139.744 +PP 3.53845 -0.914253 -1.16561 +PW 0 +SE +ID 696 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 85.433400) +BD GR Veto +PQ 9.83402 +SE +ET PH +ID 697 +TI 1771360826.736141962 +CC NStripHits 2 +PE 51.4859 +PP 3.30564 -0.190926 0.114859 +PW 0 +SE +ET UN +ID 698 +TI 1771360826.738897712 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Out of Range) +CC NStripHits 7 +PE 343.528 +SE +ET UN +ID 699 +TI 1771360826.740770212 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 700 +TI 1771360826.741647795 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.884 +SE +ID 701 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.092807) +BD GR Veto +PQ 0.719753 +SE +ET UN +ID 702 +TI 1771360826.743343979 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 703 +TI 1771360826.744934729 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 52.6888 +SE +ET PH +ID 704 +TI 1771360826.746061779 +CC NStripHits 2 +PE 126.772 +PP -2.28186 -0.133909 -2.32967 +PW 0 +SE +ID 705 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.060397) +BD GR Veto +PQ 0.121095 +SE +ET UN +ID 706 +TI 1771360826.752060412 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 66.7951 +SE +ET PH +ID 707 +TI 1771360826.752257062 +CC NStripHits 2 +PE 67.3481 +PP -0.0701406 0.251724 -2.9117 +PW 0 +SE +ET UN +ID 708 +TI 1771360826.752977012 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7015 +SE +ET PH +ID 709 +TI 1771360826.754459562 +CC NStripHits 3 +PE 105.081 +PP 1.55955 0.372056 -0.00154687 +PW 0 +SE +ID 710 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.496096) (Strip hit removed with energy 7.113652) +QA StripPairing (GR Hit: Detector ID 0 and Energy 89.464716) +BD GR Veto +PQ 0.0467469 +SE +ET CO +ID 711 +TI 1771360826.757133145 +CC NStripHits 5 +PQ 23.0074 +SQ 2 +CT 0.544924 0.455076 +TL 1 +TE 151.843 +CE 181.298 1.49542 151.843 1.02887 +CD 2.72361 -0.354991 -4.42498 0.0336036 0.0248076 0.0336036 0.0462656 -0.372419 -2.9117 0.0336036 0.0246738 0.0336036 0 0 0 0 0 0 +LA 3.07547 +SE +ET PH +ID 712 +TI 1771360826.758984029 +CC NStripHits 2 +PE 200.685 +PP 0.279078 0.184309 -2.44608 +PW 0 +SE +ET PH +ID 713 +TI 1771360826.759754279 +CC NStripHits 2 +PE 355.301 +PP -2.74748 -0.609354 -3.84295 +PW 0 +SE +ID 714 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 171.496741) +BD GR Veto +PQ 0.811871 +SE +ET PH +ID 715 +TI 1771360826.760417662 +CC NStripHits 2 +PE 71.3781 +PP 2.84002 0.376775 0.464078 +PW 0 +SE +ID 716 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 44.918570) +BD GR Veto +PQ 0.00168431 +SE +ET PH +ID 717 +TI 1771360826.762187912 +CC NStripHits 2 +PE 173.649 +PP 0.861109 0.364914 -4.30858 +PW 0 +SE +ET PH +ID 718 +TI 1771360826.763690512 +CC NStripHits 2 +PE 356.695 +PP -2.63108 -0.0441565 0.813297 +PW 0 +SE +ET UN +ID 719 +TI 1771360826.763980096 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET CO +ID 720 +TI 1771360826.764187346 +CC NStripHits 6 +PQ 20.7213 +SQ 2 +CT 0 1 +TL 1 +TE 80.2496 +CE 191.05 1.15494 80.2496 1.35688 +CD -0.768578 -0.130463 1.86095 0.0336036 0.0264634 0.0336036 -1.2342 -0.435115 -0.117953 0.0336036 0.0240776 0.0336036 0 0 0 0 0 0 +LA 2.05564 +SE +ET UN +ID 721 +TI 1771360826.765134746 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 220.828 +SE +ID 722 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.685652)) (GR Hit: Detector ID 0 and Energy 106.854943) +BD GR Veto +PQ 25.6857 +SE +ID 723 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.676772) +BD GR Veto +PQ 3.37776 +SE +ID 724 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.348879) +BD GR Veto +PQ 0.050924 +SE +ET PH +ID 725 +TI 1771360826.769782862 +CC NStripHits 2 +PE 79.1439 +PP 1.32673 0.348157 -1.63123 +PW 0 +SE +ET PH +ID 726 +TI 1771360826.770043046 +CC NStripHits 3 +PE 128.201 +PP -0.884984 0.358372 2.32658 +PW 0 +SE +ID 727 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.057387) +BD GR Veto +PQ 0.000527524 +SE +ID 728 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 350.474513) +BD GR Veto +PQ 0.470474 +SE +ET PH +ID 729 +TI 1771360826.772757429 +CC NStripHits 2 +PE 24.7597 +PP -0.0701406 -0.116875 -0.583578 +PW 0 +SE +ET UN +ID 730 +TI 1771360826.774285162 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 731 +TI 1771360826.775329462 +CC NStripHits 3 +PE 79.5311 +PP -2.86389 -0.14228 -1.28202 +PW 0 +SE +ID 732 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.298399) (Strip hit removed with energy 18.951365) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.597213) +BD GR Veto +PQ 23.4214 +SE +ET UN +ID 733 +TI 1771360826.777882779 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3538 +SE +ET PH +ID 734 +TI 1771360826.778256462 +CC NStripHits 2 +PE 112.332 +PP -1.93264 0.0113295 1.27892 +PW 0 +SE +ET PH +ID 735 +TI 1771360826.779651062 +CC NStripHits 2 +PE 70.9313 +PP -0.302953 0.373238 -4.42498 +PW 0 +SE +ET UN +ID 736 +TI 1771360826.781468063 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 309.701 +SE +ET PH +ID 737 +TI 1771360826.782667663 +CC NStripHits 2 +PE 82.5501 +PP -2.16545 0.369691 -3.84295 +PW 0 +SE +ID 738 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 739 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.015252) +QA StripPairing (Best reduced chi square is not below 25 (44.077904)) (GR Hit: Detector ID 0 and Energy 77.993556) +BD GR Veto +PQ 44.0779 +SE +ET UN +ID 740 +TI 1771360826.788728446 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 741 +TI 1771360826.789896413 +CC NStripHits 2 +PE 80.6498 +PP -2.04905 0.30419 -2.7953 +PW 0 +SE +ET PH +ID 742 +TI 1771360826.791830629 +CC NStripHits 2 +PE 78.9866 +PP 1.55955 0.0800478 2.21017 +PW 0 +SE +ET CO +ID 743 +TI 1771360826.791974946 +CC NStripHits 5 +PQ 0.391503 +SQ 2 +CT 0 1 +TL 1 +TE 56.4378 +CE 221.465 1.03502 56.4378 1.12586 +CD -1.58342 0.313573 1.39533 0.0336036 0.0414627 0.0336036 -0.768578 -0.443679 1.04611 0.0336036 0.0240043 0.0336036 0 0 0 0 0 0 +LA 1.16591 +SE +ET PH +ID 744 +TI 1771360826.792420746 +CC NStripHits 2 +PE 72.4216 +PP 3.18923 0.355545 -4.6578 +PW 0 +SE +ET PH +ID 745 +TI 1771360826.792589879 +CC NStripHits 2 +PE 33.3242 +PP 2.37439 0.218644 0.114859 +PW 0 +SE +ET CO +ID 746 +TI 1771360826.792824929 +CC NStripHits 7 +PQ 16.4795 +SQ 2 +CT 0 1 +TL 1 +TE 104.953 +CE 197.814 1.48522 104.953 1.94815 +CD -2.28186 0.0866802 -2.7953 0.0336036 0.0286696 0.0336036 0.395484 0.0187337 -4.19217 0.0336036 0.0278159 0.0336036 0 0 0 0 0 0 +LA 3.0206 +SE +ID 747 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ET PH +ID 748 +TI 1771360826.793739979 +CC NStripHits 2 +PE 82.8985 +PP -0.302953 0.33944 -2.44608 +PW 0 +SE +ID 749 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.537126) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.719392) (GR Hit: Detector ID 0 and Energy 63.174089) +BD GR Veto +PQ 4.28967 +SE +ID 750 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.478825) +BD GR Veto +PQ 0.0908768 +SE +ET PH +ID 751 +TI 1771360826.800364180 +CC NStripHits 2 +PE 31.2367 +PP -1.58342 -1.17476 -0.117953 +PW 0 +SE +ET UN +ID 752 +TI 1771360826.801369880 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.2055 +SE +ET PH +ID 753 +TI 1771360826.801751896 +CC NStripHits 2 +PE 116.056 +PP 0.0462656 -1.06869 -2.67889 +PW 0 +SE +ET CO +ID 754 +TI 1771360826.803101613 +CC NStripHits 4 +PQ 3.53384 +SQ 2 +CT 0 1 +TL 1 +TE 113.994 +CE 191.336 1.05553 113.994 1.47 +CD 3.07283 0.0872922 -3.95936 0.0336036 0.0286797 0.0336036 2.6072 0.338556 -3.61014 0.0336036 0.0371452 0.0336036 0 0 0 0 0 0 +LA 0.633955 +SE +ET PH +ID 755 +TI 1771360826.803277346 +CC NStripHits 3 +PE 140.696 +PP -0.0701406 -1.0896 -0.350766 +PW 0 +SE +ET PH +ID 756 +TI 1771360826.804787863 +CC NStripHits 2 +PE 39.2372 +PP 0.395484 -1.09544 2.09377 +PW 0 +SE +ID 757 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.085389) +BD GR Veto +PQ 0.908164 +SE +ET CO +ID 758 +TI 1771360826.806421680 +CC NStripHits 7 +PQ 4.22073 +SQ 3 +CT 0.00979467 0.0177621 +TL 1 +TE 100.753 +CE 114.552 1.42147 100.753 2.00746 +CD 2.4908 -1.16869 2.21017 0.0336036 0.0213734 0.0336036 0.977516 -0.612897 2.09377 0.0336036 0.0227531 0.0336036 0 0 0 0 0 0 +LA 0.522587 +SE +ID 759 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 760 +TI 1771360826.807960380 +CC NStripHits 2 +PE 79.5535 +PP 1.32673 0.318146 -3.26092 +PW 0 +SE +ID 761 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.027604) +BD GR Veto +PQ 0.357586 +SE +ET UN +ID 762 +TI 1771360826.809155946 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.812 +SE +ID 763 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 158.324078) +BD GR Veto +PQ 2.09366 +SE +ID 764 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.726456) +BD GR Veto +PQ 0.266096 +SE +ID 765 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.161910) +BD GR Veto +PQ 0.0327482 +SE +ID 766 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.119332) +QA StripPairing (GR Hit: Detector ID 0 and Energy 129.041568) +BD GR Veto +PQ 0.201305 +SE +ET PH +ID 767 +TI 1771360826.816175130 +CC NStripHits 2 +PE 42.955 +PP 3.42205 -1.16247 1.74455 +PW 0 +SE +ET UN +ID 768 +TI 1771360826.816753696 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 123.494 +SE +ET PH +ID 769 +TI 1771360826.816839163 +CC NStripHits 2 +PE 46.4033 +PP -2.74748 0.0456964 0.347672 +PW 0 +SE +ET UN +ID 770 +TI 1771360826.817841846 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.1079 +SE +ET PH +ID 771 +TI 1771360826.818219063 +CC NStripHits 2 +PE 57.2628 +PP 2.84002 0.32957 2.09377 +PW 0 +SE +ET UN +ID 772 +TI 1771360826.819615030 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3613 +SE +ET UN +ID 773 +TI 1771360826.821008380 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.8691 +SE +ID 774 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.873740) +BD GR Veto +PQ 4.34815 +SE +ET UN +ID 775 +TI 1771360826.823812930 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 776 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.627212) +BD GR Veto +PQ 0.615148 +SE +ET PH +ID 777 +TI 1771360826.824363613 +CC NStripHits 3 +PE 206.358 +PP -0.419359 0.308494 -3.26092 +PW 0 +SE +ET PH +ID 778 +TI 1771360826.824520830 +CC NStripHits 2 +PE 111.932 +PP 0.861109 0.369229 1.62814 +PW 0 +SE +ET PH +ID 779 +TI 1771360826.824687763 +CC NStripHits 3 +PE 110.702 +PP 3.65486 -0.503036 1.04611 +PW 0 +SE +ET PH +ID 780 +TI 1771360826.826906830 +CC NStripHits 2 +PE 28.0054 +PP -2.51467 0.349788 0.696891 +PW 0 +SE +ET PH +ID 781 +TI 1771360826.827613547 +CC NStripHits 2 +PE 93.8292 +PP -2.39827 -0.184518 -1.39842 +PW 0 +SE +ET CO +ID 782 +TI 1771360826.829786813 +CC NStripHits 6 +PQ 30.2982 +SQ 2 +CT 0 1 +TL 1 +TE 112.928 +CE 187.589 1.57355 112.928 1.40817 +CD 2.37439 0.0658603 -0.467172 0.0336036 0.0283728 0.0336036 0.977516 -0.616678 -0.350766 0.0336036 0.0227297 0.0336036 0 0 0 0 0 0 +LA 1.55906 +SE +ET PH +ID 783 +TI 1771360826.831028647 +CC NStripHits 3 +PE 356.905 +PP -0.884984 0.339897 1.04611 +PW 0 +SE +ET CO +ID 784 +TI 1771360826.831660930 +CC NStripHits 5 +PQ 4.86412 +SQ 2 +CT 0 1 +TL 1 +TE 58.8325 +CE 220.755 1.18081 58.8325 1.44491 +CD 0.511891 0.328875 -3.14452 0.0336036 0.0394534 0.0336036 0.0462656 -0.0676729 -3.37733 0.0336036 0.0270275 0.0336036 0 0 0 0 0 0 +LA 0.654414 +SE +ET UN +ID 785 +TI 1771360826.832225247 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 786 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.456065) +QA StripPairing (GR Hit: Detector ID 0 and Energy 152.373497) +BD GR Veto +PQ 1.14706 +SE +ID 787 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.443511) +BD GR Veto +PQ 2.13377 +SE +ET PH +ID 788 +TI 1771360826.833864463 +CC NStripHits 2 +PE 81.4735 +PP 2.95642 -1.12947 -2.67889 +PW 0 +SE +ET PH +ID 789 +TI 1771360826.836957830 +CC NStripHits 3 +PE 122.168 +PP 1.32673 0.36456 -0.816391 +PW 0 +SE +ID 790 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.786649) +BD GR Veto +PQ 0.398688 +SE +ID 791 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 111.568401) +BD GR Veto +PQ 6.05337 +SE +ET UN +ID 792 +TI 1771360826.839957530 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.2009 +SE +ET PH +ID 793 +TI 1771360826.840372664 +CC NStripHits 2 +PE 81.6808 +PP 2.37439 0.319088 -4.54139 +PW 0 +SE +ET PH +ID 794 +TI 1771360826.841803480 +CC NStripHits 2 +PE 79.4057 +PP 2.72361 0.356215 -1.28202 +PW 0 +SE +ET PH +ID 795 +TI 1771360826.842828914 +CC NStripHits 2 +PE 68.7909 +PP -1.58342 -0.323099 1.16252 +PW 0 +SE +ET PH +ID 796 +TI 1771360826.843980764 +CC NStripHits 3 +PE 102.711 +PP 0.628297 0.00411879 -2.21327 +PW 0 +SE +ID 797 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.095863) +BD GR Veto +PQ 0.825786 +SE +ET PH +ID 798 +TI 1771360826.845700480 +CC NStripHits 2 +PE 28.9464 +PP 3.88767 -0.152215 1.51173 +PW 0 +SE +ET UN +ID 799 +TI 1771360826.846161047 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 800 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.242289) +QA StripPairing (GR Hit: Detector ID 0 and Energy 59.465119) +BD GR Veto +PQ 7.54046 +SE +ET PH +ID 801 +TI 1771360826.848185664 +CC NStripHits 2 +PE 80.3156 +PP 2.25798 0.367398 0.347672 +PW 0 +SE +ET UN +ID 802 +TI 1771360826.850366780 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.9539 +SE +ID 803 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.040030) +QA StripPairing (Best reduced chi square is not below 25 (65.133272)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 76.813744)) (GR Hit: Detector ID 0 and Energy 191.474459) (GR Hit: Detector ID 0 and Energy 167.640336) +BD GR Veto +PQ 65.1333 +SE +ET CO +ID 804 +TI 1771360826.856625697 +CC NStripHits 6 +PQ 1.62173 +SQ 2 +CT 0 1 +TL 1 +TE 89.2635 +CE 114.174 1.00133 89.2635 1.41855 +CD 0.861109 -0.476592 -2.56248 0.0336036 0.0236603 0.0336036 1.67595 -0.19775 -3.14452 0.0336036 0.0258772 0.0336036 0 0 0 0 0 0 +LA 1.03947 +SE +ET UN +ID 805 +TI 1771360826.857501097 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 355.44 +SE +ET PH +ID 806 +TI 1771360826.858630664 +CC NStripHits 2 +PE 82.2877 +PP 1.67595 0.363333 -4.42498 +PW 0 +SE +ET PH +ID 807 +TI 1771360826.859441080 +CC NStripHits 2 +PE 81.0283 +PP -1.81623 0.310172 -3.02811 +PW 0 +SE +ID 808 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.084468) +QA StripPairing (Best reduced chi square is not below 25 (98.305057)) (GR Hit: Detector ID 0 and Energy 82.326697) +BD GR Veto +PQ 98.3051 +SE +ET PH +ID 809 +TI 1771360826.862136864 +CC NStripHits 3 +PE 126.727 +PP 4.23689 -0.411871 -2.32967 +PW 0 +SE +ET UN +ID 810 +TI 1771360826.862251447 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 88.0809 +SE +ET PH +ID 811 +TI 1771360826.863035947 +CC NStripHits 2 +PE 198.301 +PP 2.84002 -0.510325 -4.07577 +PW 0 +SE +ET UN +ID 812 +TI 1771360826.864446381 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 217.382 +SE +ET CO +ID 813 +TI 1771360826.866429714 +CC NStripHits 7 +PQ 1.26357 +SQ 3 +CT 0.000715501 0.00368965 +TL 1 +TE 154.241 +CE 197.785 1.65129 154.241 1.05513 +CD 4.12048 -0.909896 -2.7953 0.0336036 0.0199063 0.0336036 0.744703 -0.0888116 -4.30858 0.0336036 0.0268848 0.0336036 0 0 0 0 0 0 +LA 0.34096 +SE +ET UN +ID 814 +TI 1771360826.867463214 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2973 +SE +ET PH +ID 815 +TI 1771360826.868022747 +CC NStripHits 2 +PE 30.3105 +PP -1.81623 0.339592 -0.699984 +PW 0 +SE +ET PH +ID 816 +TI 1771360826.868448764 +CC NStripHits 2 +PE 36.55 +PP 4.12048 0.0713713 -2.7953 +PW 0 +SE +ET PH +ID 817 +TI 1771360826.868731264 +CC NStripHits 4 +PE 354.749 +PP 1.32673 -0.102402 -4.42498 +PW 0 +SE +ET PH +ID 818 +TI 1771360826.872202531 +CC NStripHits 2 +PE 60.1946 +PP -1.58342 -0.751052 0.696891 +PW 0 +SE +ET PH +ID 819 +TI 1771360826.873793331 +CC NStripHits 3 +PE 81.6125 +PP 1.90877 0.137635 2.55939 +PW 0 +SE +ID 820 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.511169) +BD GR Veto +PQ 0.0518268 +SE +ET PH +ID 821 +TI 1771360826.874920181 +CC NStripHits 2 +PE 49.6634 +PP -1.46702 -1.05203 2.44298 +PW 0 +SE +ET PH +ID 822 +TI 1771360826.875571497 +CC NStripHits 2 +PE 34.3801 +PP 1.09392 0.378822 -1.16561 +PW 0 +SE +ID 823 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 52.368942) +BD GR Veto +PQ 0.226153 +SE +ET PH +ID 824 +TI 1771360826.876670797 +CC NStripHits 2 +PE 80.1311 +PP 0.628297 0.23749 -3.49373 +PW 0 +SE +ID 825 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.144559) +BD GR Veto +PQ 1.58414 +SE +ET PH +ID 826 +TI 1771360826.877260147 +CC NStripHits 2 +PE 165.35 +PP 4.00408 -0.854697 0.580484 +PW 0 +SE +ET PH +ID 827 +TI 1771360826.877478814 +CC NStripHits 2 +PE 161.286 +PP 3.07283 0.365614 0.580484 +PW 0 +SE +ET PH +ID 828 +TI 1771360826.878360231 +CC NStripHits 2 +PE 81.1923 +PP 0.0462656 -0.948486 -1.51483 +PW 0 +SE +ET UN +ID 829 +TI 1771360826.878739181 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 58.8256 +SE +ET UN +ID 830 +TI 1771360826.879648081 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 831 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.889460) +BD GR Veto +PQ 0.155086 +SE +ET PH +ID 832 +TI 1771360826.879936897 +CC NStripHits 3 +PE 79.4567 +PP 2.95642 0.0479578 -1.63123 +PW 0 +SE +ET UN +ID 833 +TI 1771360826.881158514 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 834 +TI 1771360826.881392164 +CC NStripHits 2 +PE 80.644 +PP 3.88767 0.333396 -0.816391 +PW 0 +SE +ET PH +ID 835 +TI 1771360826.882821614 +CC NStripHits 2 +PE 81.5261 +PP -0.302953 0.349438 -3.84295 +PW 0 +SE +ID 836 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 837 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.550874) +BD GR Veto +PQ +SE +ID 838 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.714324) +BD GR Veto +PQ +SE +ET UN +ID 839 +TI 1771360826.884351914 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.9623 +SE +ID 840 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.061715) +BD GR Veto +PQ 0.149673 +SE +ET UN +ID 841 +TI 1771360826.886635781 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 842 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 47.502914)) (GR Hit: Detector ID 0 and Energy 72.959695) +BD GR Veto +PQ 2.32905 +SE +ET PH +ID 843 +TI 1771360826.888563114 +CC NStripHits 3 +PE 173.898 +PP 4.12048 -0.95274 1.04611 +PW 0 +SE +ID 844 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 845 +TI 1771360826.890735914 +CC NStripHits 5 +PQ 4.33248 +SQ 2 +CT 0 1 +TL 1 +TE 62.3087 +CE 295.533 1.22255 62.3087 1.39588 +CD 3.18923 -0.21347 1.97736 0.0336036 0.0257525 0.0336036 3.42205 -0.993733 1.27892 0.0336036 0.019549 0.0336036 0 0 0 0 0 0 +LA 1.07277 +SE +ID 846 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.055315) +BD GR Veto +PQ 0.043441 +SE +ID 847 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 114.083926) +BD GR Veto +PQ 0.408369 +SE +ET PH +ID 848 +TI 1771360826.895225548 +CC NStripHits 3 +PE 148.523 +PP -2.04905 -0.619849 -4.42498 +PW 0 +SE +ID 849 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 210.673999) +BD GR Veto +PQ 0.00467779 +SE +ID 850 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ET CO +ID 851 +TI 1771360826.897136798 +CC NStripHits 4 +PQ 5.62497 +SQ 2 +CT 0.506307 0.493693 +TL 1 +TE 153.29 +CE 204.793 1.42843 153.29 0.974272 +CD -0.884984 -0.0581181 2.21017 0.0336036 0.0270925 0.0336036 -0.768578 -0.0524986 1.39533 0.0336036 0.0271496 0.0336036 0 0 0 0 0 0 +LA 0.823132 +SE +ET PH +ID 852 +TI 1771360826.898106364 +CC NStripHits 2 +PE 61.2536 +PP -0.0701406 0.187715 -2.7953 +PW 0 +SE +ET PH +ID 853 +TI 1771360826.900547581 +CC NStripHits 2 +PE 78.7395 +PP 2.37439 0.349913 -2.7953 +PW 0 +SE +ET PH +ID 854 +TI 1771360826.901838748 +CC NStripHits 2 +PE 66.4283 +PP 2.14158 0.377801 -2.21327 +PW 0 +SE +ET UN +ID 855 +TI 1771360826.901998348 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 856 +TI 1771360826.904012698 +CC NStripHits 2 +PE 115.939 +PP 2.95642 0.347233 1.86095 +PW 0 +SE +ET UN +ID 857 +TI 1771360826.904626215 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4109 +SE +ET UN +ID 858 +TI 1771360826.905775298 +BD DepthCalibrationError (No calibration coefficients) +CC NStripHits 4 +PE 26.3939 +SE +ET PH +ID 859 +TI 1771360826.908665715 +CC NStripHits 3 +PE 185.614 +PP 2.02517 0.318683 -1.86405 +PW 0 +SE +ET PH +ID 860 +TI 1771360826.909449565 +CC NStripHits 3 +PE 118.011 +PP 0.511891 0.269355 -1.63123 +PW 0 +SE +ET PH +ID 861 +TI 1771360826.911057581 +CC NStripHits 2 +PE 40.0049 +PP 0.279078 -0.0514536 -1.28202 +PW 0 +SE +ID 862 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 110.181596) (GR Hit: Detector ID 0 and Energy 116.176683) +BD GR Veto +PQ 0.292763 +SE +ET PH +ID 863 +TI 1771360826.914881448 +CC NStripHits 3 +PE 79.662 +PP 4.3533 0.231005 0.114859 +PW 0 +SE +ET PH +ID 864 +TI 1771360826.915582098 +CC NStripHits 2 +PE 88.4 +PP 1.21033 -1.0578 -0.350766 +PW 0 +SE +ET UN +ID 865 +TI 1771360826.919762698 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 217.832 +SE +ET PH +ID 866 +TI 1771360826.922146282 +CC NStripHits 2 +PE 79.1723 +PP 2.14158 0.258848 -1.28202 +PW 0 +SE +ET PH +ID 867 +TI 1771360826.923012865 +CC NStripHits 2 +PE 55.5161 +PP 2.02517 -0.645407 1.74455 +PW 0 +SE +ID 868 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (30.347061)) (GR Hit: Detector ID 0 and Energy 113.396456) +BD GR Veto +PQ 30.3471 +SE +ET PH +ID 869 +TI 1771360826.925373882 +CC NStripHits 2 +PE 128.668 +PP -2.39827 -0.0781248 1.62814 +PW 0 +SE +ET UN +ID 870 +TI 1771360826.926010882 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 42.7191 +SE +ID 871 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 99.656538) +BD GR Veto +PQ 0.000683374 +SE +ET PH +ID 872 +TI 1771360826.927293815 +CC NStripHits 2 +PE 82.6053 +PP -2.04905 0.0711516 -1.63123 +PW 0 +SE +ET UN +ID 873 +TI 1771360826.927833632 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 264.269 +SE +ET PH +ID 874 +TI 1771360826.929007082 +CC NStripHits 3 +PE 118.388 +PP 4.23689 0.0328964 -0.583578 +PW 0 +SE +ET UN +ID 875 +TI 1771360826.930451498 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 876 +TI 1771360826.930718665 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6589 +SE +ET UN +ID 877 +TI 1771360826.930795282 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 357.78 +SE +ET PH +ID 878 +TI 1771360826.931822715 +CC NStripHits 5 +PE 356.63 +PP -2.9803 -0.593072 -1.51483 +PW 0 +SE +ID 879 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.906325) +QA StripPairing (GR Hit: Detector ID 0 and Energy 199.022481) +BD GR Veto +PQ 0.651056 +SE +ID 880 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.188454) +BD GR Veto +PQ 0.931766 +SE +ET PH +ID 881 +TI 1771360826.935998398 +CC NStripHits 2 +PE 93.0691 +PP 3.88767 0.321799 2.21017 +PW 0 +SE +ET PH +ID 882 +TI 1771360826.936507832 +CC NStripHits 3 +PE 355.407 +PP -2.63108 0.00085839 0.929703 +PW 0 +SE +ET PH +ID 883 +TI 1771360826.937067632 +CC NStripHits 2 +PE 80.5254 +PP 1.21033 0.337941 0.929703 +PW 0 +SE +ET UN +ID 884 +TI 1771360826.938301915 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7879 +SE +ET UN +ID 885 +TI 1771360826.939779298 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 362.403 +SE +ET PH +ID 886 +TI 1771360826.941211132 +CC NStripHits 2 +PE 99.0578 +PP 0.744703 -1.14361 -3.37733 +PW 0 +SE +ET UN +ID 887 +TI 1771360826.942200832 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8643 +SE +ET CO +ID 888 +TI 1771360826.942588515 +CC NStripHits 6 +PQ 26.1186 +SQ 2 +CT 0.6523 0.3477 +TL 1 +TE 146.24 +CE 189.834 1.96442 146.24 1.21411 +CD -1.93264 -0.846884 -1.98045 0.0336036 0.0204507 0.0336036 -2.16545 -0.933762 -2.56248 0.0336036 0.0197202 0.0336036 0 0 0 0 0 0 +LA 0.632856 +SE +ET UN +ID 889 +TI 1771360826.942985682 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6104 +SE +ET PH +ID 890 +TI 1771360826.943164832 +CC NStripHits 2 +PE 75.3971 +PP -0.0701406 -0.392636 1.86095 +PW 0 +SE +ET UN +ID 891 +TI 1771360826.947235532 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.351 +SE +ID 892 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 356.812889) +BD GR Veto +PQ 0.00436854 +SE +ID 893 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 355.786892) +BD GR Veto +PQ 0.0788642 +SE +ET PH +ID 894 +TI 1771360826.950880465 +CC NStripHits 2 +PE 66.6851 +PP -0.652172 0.345769 0.929703 +PW 0 +SE +ET PH +ID 895 +TI 1771360826.951101015 +CC NStripHits 2 +PE 87.449 +PP 0.628297 -0.350849 -0.00154687 +PW 0 +SE +ET UN +ID 896 +TI 1771360826.951484265 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 316.384 +SE +ET CO +ID 897 +TI 1771360826.952161832 +CC NStripHits 6 +PQ 12.4456 +SQ 2 +CT 0 1 +TL 1 +TE 113.664 +CE 184.07 1.96285 113.664 1.9945 +CD -1.00139 -0.807481 1.62814 0.0336036 0.0208392 0.0336036 -1.58342 -0.88748 1.51173 0.0336036 0.0200845 0.0336036 0 0 0 0 0 0 +LA 0.598924 +SE +ET PH +ID 898 +TI 1771360826.953458915 +CC NStripHits 2 +PE 80.7523 +PP -2.51467 -0.0956308 1.39533 +PW 0 +SE +ET UN +ID 899 +TI 1771360826.954852999 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 24.9422 +SE +ET PH +ID 900 +TI 1771360826.955140032 +CC NStripHits 2 +PE 80.622 +PP 1.32673 0.238249 2.21017 +PW 0 +SE +ET UN +ID 901 +TI 1771360826.956884532 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET PH +ID 902 +TI 1771360826.958404015 +CC NStripHits 2 +PE 77.3842 +PP 0.744703 0.342173 1.97736 +PW 0 +SE +ET UN +ID 903 +TI 1771360826.959202199 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 195.84 +SE +ET PH +ID 904 +TI 1771360826.959410165 +CC NStripHits 3 +PE 81.3253 +PP -0.652172 0.170734 -4.07577 +PW 0 +SE +ET CO +ID 905 +TI 1771360826.959986032 +CC NStripHits 4 +PQ 27.4752 +SQ 2 +CT 0 1 +TL 1 +TE 47.7227 +CE 92.1554 1.44713 47.7227 0.997369 +CD 2.25798 -0.335472 -3.84295 0.0336036 0.0249557 0.0336036 2.14158 -0.947049 -4.07577 0.0336036 0.0196294 0.0336036 0 0 0 0 0 0 +LA 0.664666 +SE +ET CO +ID 906 +TI 1771360826.963100916 +CC NStripHits 4 +PQ 0.435863 +SQ 2 +CT 0 1 +TL 1 +TE 60.4248 +CE 101.564 0.981015 60.4248 0.973948 +CD -1.69983 -0.874628 0.114859 0.0336036 0.0202205 0.0336036 -1.58342 -0.848744 -0.00154687 0.0336036 0.020439 0.0336036 0 0 0 0 0 0 +LA 0.166648 +SE +ET CO +ID 907 +TI 1771360826.965655216 +CC NStripHits 4 +PQ 10.5405 +SQ 2 +CT 0 1 +TL 1 +TE 133.827 +CE 221.781 1.46692 133.827 0.99794 +CD 2.25798 0.312443 -0.00154687 0.0336036 0.0415399 0.0336036 1.90877 0.186174 -0.234359 0.0336036 0.0313079 0.0336036 0 0 0 0 0 0 +LA 0.438284 +SE +ET PH +ID 908 +TI 1771360826.968525099 +CC NStripHits 2 +PE 154.017 +PP -1.69983 -0.0971895 1.86095 +PW 0 +SE +ET PH +ID 909 +TI 1771360826.971305832 +CC NStripHits 2 +PE 81.0822 +PP 4.3533 0.141852 -3.26092 +PW 0 +SE +ET UN +ID 910 +TI 1771360826.972688082 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2407 +SE +ET UN +ID 911 +TI 1771360826.973543999 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 1463.8 +SE +ET PH +ID 912 +TI 1771360826.974052749 +CC NStripHits 2 +PE 77.1356 +PP 1.21033 0.161182 -1.74764 +PW 0 +SE +ET UN +ID 913 +TI 1771360826.974786216 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 356.881 +SE +ET UN +ID 914 +TI 1771360826.975041816 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 915 +TI 1771360826.975434066 +CC NStripHits 4 +PE 83.095 +PP -2.04905 0.0195418 -1.74764 +PW 0 +SE +ID 916 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.926702) +QA StripPairing (GR Hit: Detector ID 0 and Energy 299.694799) +BD GR Veto +PQ 0.915321 +SE +ET PH +ID 917 +TI 1771360826.976918166 +CC NStripHits 2 +PE 155.834 +PP 0.0462656 -0.319051 -3.37733 +PW 0 +SE +ET UN +ID 918 +TI 1771360826.980891416 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 919 +TI 1771360826.981119849 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 920 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (36.082266)) (GR Hit: Detector ID 0 and Energy 82.490206) +BD GR Veto +PQ 36.0823 +SE +ID 921 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.281913) +BD GR Veto +PQ +SE +ET PH +ID 922 +TI 1771360826.983496016 +CC NStripHits 2 +PE 60.5096 +PP 1.21033 0.346425 -0.699984 +PW 0 +SE +ID 923 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.364599) +BD GR Veto +PQ 12.9199 +SE +ID 924 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.342099) +BD GR Veto +PQ 0.350449 +SE +ET PH +ID 925 +TI 1771360826.987011033 +CC NStripHits 2 +PE 82.4016 +PP -1.69983 0.343768 0.929703 +PW 0 +SE +ET PH +ID 926 +TI 1771360826.987857316 +CC NStripHits 2 +PE 73.8325 +PP -2.74748 0.361238 -1.51483 +PW 0 +SE +ET PH +ID 927 +TI 1771360826.988629233 +CC NStripHits 2 +PE 29.7882 +PP 3.18923 0.377612 -2.21327 +PW 0 +SE +ET PH +ID 928 +TI 1771360826.991014416 +CC NStripHits 5 +PE 239.249 +PP 2.37439 -1.12305 0.231266 +PW 0 +SE +ET UN +ID 929 +TI 1771360826.992093816 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.628 +SE +ET PH +ID 930 +TI 1771360826.993766933 +CC NStripHits 2 +PE 118.929 +PP 2.14158 0.291502 0.231266 +PW 0 +SE +ET UN +ID 931 +TI 1771360826.994257683 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 932 +TI 1771360826.996339899 +CC NStripHits 2 +PE 79.5886 +PP 1.21033 0.350508 1.39533 +PW 0 +SE +ET PH +ID 933 +TI 1771360826.996910499 +CC NStripHits 2 +PE 65.72 +PP -1.93264 -0.746341 0.929703 +PW 0 +SE +ET PH +ID 934 +TI 1771360826.998190749 +CC NStripHits 3 +PE 214.356 +PP -1.00139 0.282075 -2.67889 +PW 0 +SE +ET PH +ID 935 +TI 1771360826.999849649 +CC NStripHits 2 +PE 78.5191 +PP -0.535766 0.326195 2.09377 +PW 0 +SE +ID 936 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 937 +TI 1771360827.001036783 +CC NStripHits 2 +PE 82.2488 +PP 3.42205 0.237628 2.32658 +PW 0 +SE +ET UN +ID 938 +TI 1771360827.002699433 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 49.4333 +SE +ET PH +ID 939 +TI 1771360827.005657766 +CC NStripHits 2 +PE 70.7054 +PP 0.861109 0.367401 -2.44608 +PW 0 +SE +ET PH +ID 940 +TI 1771360827.006023183 +CC NStripHits 3 +PE 174.27 +PP 3.53845 -0.144577 -3.95936 +PW 0 +SE +ET PH +ID 941 +TI 1771360827.006145550 +CC NStripHits 2 +PE 183.181 +PP 1.67595 -1.11276 2.09377 +PW 0 +SE +ET PH +ID 942 +TI 1771360827.007504683 +CC NStripHits 2 +PE 81.8295 +PP 0.744703 0.372601 -1.39842 +PW 0 +SE +ET PH +ID 943 +TI 1771360827.007687833 +CC NStripHits 2 +PE 64.8972 +PP -0.768578 0.317976 -0.583578 +PW 0 +SE +ID 944 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 174.832362) +BD GR Veto +PQ 0.08758 +SE +ET UN +ID 945 +TI 1771360827.008985400 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 946 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 947 +TI 1771360827.009425816 +CC NStripHits 2 +PE 65.9991 +PP 2.25798 0.368367 -2.67889 +PW 0 +SE +ID 948 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.157119) +BD GR Veto +PQ +SE +ID 949 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.935543) +BD GR Veto +PQ 0.267875 +SE +ET UN +ID 950 +TI 1771360827.011509600 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1605 +SE +ET UN +ID 951 +TI 1771360827.012143816 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 952 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.852359) +BD GR Veto +PQ 0.33745 +SE +ET PH +ID 953 +TI 1771360827.013226050 +CC NStripHits 2 +PE 143.366 +PP 0.395484 -0.00897517 -0.816391 +PW 0 +SE +ET CO +ID 954 +TI 1771360827.014255950 +CC NStripHits 7 +PQ 2.13449 +SQ 2 +CT 0.545032 0.454968 +TL 1 +TE 151.067 +CE 197.369 1.42499 151.067 1.22248 +CD 1.32673 0.236465 -0.350766 0.0336036 0.0348292 0.0336036 0.395484 0.175867 -1.28202 0.0336036 0.0308939 0.0336036 0 0 0 0 0 0 +LA 1.31838 +SE +ID 955 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 199.763290) +BD GR Veto +PQ 0.139746 +SE +ET UN +ID 956 +TI 1771360827.014989450 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 25.605 +SE +ET UN +ID 957 +TI 1771360827.015386816 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 958 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.488532) +BD GR Veto +PQ 0.74519 +SE +ID 959 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.815152) +BD GR Veto +PQ 0.162023 +SE +ET PH +ID 960 +TI 1771360827.016566133 +CC NStripHits 2 +PE 52.9276 +PP 0.0462656 0.350992 -1.98045 +PW 0 +SE +ET PH +ID 961 +TI 1771360827.016718216 +CC NStripHits 2 +PE 73.3675 +PP 1.21033 0.178613 -0.234359 +PW 0 +SE +ET UN +ID 962 +TI 1771360827.017825733 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.6954 +SE +ID 963 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 33.913285)) (GR Hit: Detector ID 0 and Energy 194.615731) +BD GR Veto +PQ 9.44202 +SE +ET PH +ID 964 +TI 1771360827.019961050 +CC NStripHits 2 +PE 30.9537 +PP 2.95642 0.239277 1.62814 +PW 0 +SE +ET PH +ID 965 +TI 1771360827.020180517 +CC NStripHits 3 +PE 81.6626 +PP 3.65486 0.305212 1.74455 +PW 0 +SE +ET UN +ID 966 +TI 1771360827.021059767 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 967 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.171777) +BD GR Veto +PQ 0.0426363 +SE +ET PH +ID 968 +TI 1771360827.023217367 +CC NStripHits 2 +PE 80.2826 +PP 1.21033 0.163826 -1.51483 +PW 0 +SE +ET CO +ID 969 +TI 1771360827.023406050 +CC NStripHits 4 +PQ 8.47385 +SQ 2 +CT 0 1 +TL 1 +TE 147.134 +CE 208.328 1.48086 147.134 1.12968 +CD 0.744703 0.33121 1.51173 0.0336036 0.0389755 0.0336036 0.279078 0.359702 0.114859 0.0336036 0.0287339 0.0336036 0 0 0 0 0 0 +LA 1.47271 +SE +ET PH +ID 970 +TI 1771360827.024521783 +CC NStripHits 2 +PE 99.4975 +PP -1.58342 -0.948714 -0.00154687 +PW 0 +SE +ID 971 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.032523) +BD GR Veto +PQ 0.0962501 +SE +ET PH +ID 972 +TI 1771360827.028180500 +CC NStripHits 2 +PE 70.2989 +PP -0.768578 -0.192158 1.51173 +PW 0 +SE +ET UN +ID 973 +TI 1771360827.028417217 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.1173 +SE +ET PH +ID 974 +TI 1771360827.030205950 +CC NStripHits 3 +PE 120.651 +PP -0.884984 0.314175 -3.72655 +PW 0 +SE +ID 975 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (88.353515)) (GR Hit: Detector ID 0 and Energy 113.069373) +BD GR Veto +PQ 88.3535 +SE +ID 976 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.765844) +BD GR Veto +PQ 0.00368239 +SE +ET UN +ID 977 +TI 1771360827.033975900 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 978 +TI 1771360827.034364700 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.1872 +SE +ET UN +ID 979 +TI 1771360827.035362067 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 47.6828 +SE +ET UN +ID 980 +TI 1771360827.035554100 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 981 +TI 1771360827.036265500 +CC NStripHits 2 +PE 46.9568 +PP 3.42205 -0.307935 -3.26092 +PW 0 +SE +ET PH +ID 982 +TI 1771360827.037067450 +CC NStripHits 2 +PE 63.6509 +PP -2.63108 -1.07785 1.16252 +PW 0 +SE +ET CO +ID 983 +TI 1771360827.040226034 +CC NStripHits 4 +PQ 1.02833 +SQ 2 +CT 0.535132 0.464868 +TL 1 +TE 145.293 +CE 160.379 1.03061 145.293 1.06585 +CD 0.977516 -0.446665 -0.467172 0.0336036 0.0239755 0.0336036 0.861109 0.364095 -0.117953 0.0336036 0.0263274 0.0336036 0 0 0 0 0 0 +LA 0.890414 +SE +ET PH +ID 984 +TI 1771360827.040993684 +CC NStripHits 2 +PE 74.145 +PP 3.30564 0.228625 2.44298 +PW 0 +SE +ET PH +ID 985 +TI 1771360827.041384600 +CC NStripHits 2 +PE 55.2912 +PP -0.302953 0.379549 2.32658 +PW 0 +SE +ET PH +ID 986 +TI 1771360827.042798300 +CC NStripHits 2 +PE 64.7704 +PP 1.55955 0.341306 -0.816391 +PW 0 +SE +ID 987 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.059410) +BD GR Veto +PQ 0.20241 +SE +ET UN +ID 988 +TI 1771360827.044939650 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.749 +SE +ET UN +ID 989 +TI 1771360827.048524467 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1928 +SE +ID 990 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.125674) +BD GR Veto +PQ 0.0106195 +SE +ID 991 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ +SE +ET PH +ID 992 +TI 1771360827.053695800 +CC NStripHits 2 +PE 30.0311 +PP -0.884984 -0.330704 -3.72655 +PW 0 +SE +ET CO +ID 993 +TI 1771360827.054759384 +CC NStripHits 6 +PQ 2.87903 +SQ 2 +CT 0 1 +TL 1 +TE 32.4821 +CE 111.726 1.53311 32.4821 1.46156 +CD 1.32673 -0.120779 -3.95936 0.0336036 0.0265272 0.0336036 0.861109 -0.817411 -3.84295 0.0336036 0.0207156 0.0336036 0 0 0 0 0 0 +LA 0.845961 +SE +ID 994 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 995 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.819440) +QA StripPairing (Best reduced chi square is not below 25 (44.106264)) (GR Hit: Detector ID 0 and Energy 286.882219) +BD GR Veto +PQ 44.1063 +SE +ET PH +ID 996 +TI 1771360827.056526467 +CC NStripHits 2 +PE 31.2589 +PP 0.977516 0.14116 -1.86405 +PW 0 +SE +ID 997 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 140.219607) +BD GR Veto +PQ 22.2621 +SE +ET UN +ID 998 +TI 1771360827.062031367 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET UN +ID 999 +TI 1771360827.064508017 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1000 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (146.454423)) (GR Hit: Detector ID 0 and Energy 174.900737) +BD GR Veto +PQ 146.454 +SE +ET UN +ID 1001 +TI 1771360827.067280951 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1002 +TI 1771360827.068079317 +CC NStripHits 2 +PE 140.121 +PP 4.23689 -0.440829 1.51173 +PW 0 +SE +ET UN +ID 1003 +TI 1771360827.070212301 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.1176 +SE +ID 1004 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.128825) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.251496) +BD GR Veto +PQ 10.4173 +SE +ID 1005 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.647454) +BD GR Veto +PQ +SE +ID 1006 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.654655) (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET UN +ID 1007 +TI 1771360827.074092601 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4099 +SE +ET PH +ID 1008 +TI 1771360827.074336701 +CC NStripHits 2 +PE 97.0504 +PP -0.652172 0.270222 -3.37733 +PW 0 +SE +ET PH +ID 1009 +TI 1771360827.075120117 +CC NStripHits 2 +PE 79.0911 +PP -2.28186 0.353182 -0.350766 +PW 0 +SE +ID 1010 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 157.075587) +BD GR Veto +PQ 0.336688 +SE +ET PH +ID 1011 +TI 1771360827.078236267 +CC NStripHits 3 +PE 82.4092 +PP 1.32673 -0.00710642 -0.816391 +PW 0 +SE +ID 1012 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.598215) +BD GR Veto +PQ 3.31178 +SE +ET PH +ID 1013 +TI 1771360827.080994318 +CC NStripHits 2 +PE 22.6807 +PP -0.535766 0.362127 -1.16561 +PW 0 +SE +ET UN +ID 1014 +TI 1771360827.082098918 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.5807 +SE +ID 1015 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 1016 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 1017 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.570180) +BD GR Veto +PQ +SE +ID 1018 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ET PH +ID 1019 +TI 1771360827.084481518 +CC NStripHits 2 +PE 80.433 +PP 2.14158 0.339186 0.114859 +PW 0 +SE +ID 1020 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET PH +ID 1021 +TI 1771360827.087218201 +CC NStripHits 2 +PE 78.8729 +PP 2.6072 0.114623 -1.16561 +PW 0 +SE +ID 1022 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 306.916211) +BD GR Veto +PQ 0.814378 +SE +ET PH +ID 1023 +TI 1771360827.089556051 +CC NStripHits 2 +PE 80.5995 +PP 4.23689 0.0782177 -0.467172 +PW 0 +SE +ET UN +ID 1024 +TI 1771360827.090454184 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1025 +TI 1771360827.091353268 +CC NStripHits 2 +PE 82.7372 +PP 0.977516 0.35453 1.86095 +PW 0 +SE +ET PH +ID 1026 +TI 1771360827.092638551 +CC NStripHits 2 +PE 69.8687 +PP -2.74748 0.375524 0.813297 +PW 0 +SE +ID 1027 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.162568) +QA StripPairing (Best reduced chi square is not below 25 (93.098549)) (GR Hit: Detector ID 0 and Energy 155.596049) +BD GR Veto +PQ 93.0985 +SE +ID 1028 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 5.45821 +SE +ID 1029 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET PH +ID 1030 +TI 1771360827.095147418 +CC NStripHits 2 +PE 29.9579 +PP 3.53845 -0.427878 -1.98045 +PW 0 +SE +ID 1031 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 222.908330) +BD GR Veto +PQ 0.352538 +SE +ET PH +ID 1032 +TI 1771360827.099372018 +CC NStripHits 2 +PE 80.5162 +PP 3.18923 0.263206 -1.86405 +PW 0 +SE +ET PH +ID 1033 +TI 1771360827.100890618 +CC NStripHits 2 +PE 80.3414 +PP 3.65486 0.155279 -1.28202 +PW 0 +SE +ID 1034 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ID 1035 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.510189) +BD GR Veto +PQ 3.92275 +SE +ET PH +ID 1036 +TI 1771360827.102958085 +CC NStripHits 2 +PE 42.7583 +PP 3.53845 -0.398765 -3.95936 +PW 0 +SE +ET PH +ID 1037 +TI 1771360827.103113285 +CC NStripHits 2 +PE 256.948 +PP -2.04905 -0.16343 1.86095 +PW 0 +SE +ID 1038 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 152.131884) +BD GR Veto +PQ 0.00114119 +SE +ET PH +ID 1039 +TI 1771360827.105691651 +CC NStripHits 2 +PE 27.7624 +PP -1.46702 -0.465898 -1.98045 +PW 0 +SE +ET CO +ID 1040 +TI 1771360827.107276635 +CC NStripHits 7 +PQ 5.1362 +SQ 2 +CT 0 1 +TL 1 +TE 117.323 +CE 217.495 1.4463 117.323 1.39419 +CD -2.51467 -0.79375 -2.67889 0.0336036 0.0210063 0.0336036 -2.16545 -1.14694 -1.98045 0.0336036 0.0274573 0.0336036 0 0 0 0 0 0 +LA 0.857039 +SE +ET PH +ID 1041 +TI 1771360827.110466968 +CC NStripHits 2 +PE 206.985 +PP 4.12048 0.375801 -1.74764 +PW 0 +SE +ID 1042 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.772253) +BD GR Veto +PQ +SE +ID 1043 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.343294) +BD GR Veto +PQ 0.496463 +SE +ET PH +ID 1044 +TI 1771360827.114147751 +CC NStripHits 2 +PE 186.05 +PP 2.25798 0.0480449 -2.09686 +PW 0 +SE +ET PH +ID 1045 +TI 1771360827.114236851 +CC NStripHits 2 +PE 81.3371 +PP -1.1178 0.278696 -0.583578 +PW 0 +SE +ET PH +ID 1046 +TI 1771360827.114778518 +CC NStripHits 2 +PE 77.1822 +PP 3.88767 0.252746 -4.30858 +PW 0 +SE +ID 1047 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.698157) +BD GR Veto +PQ 1.28947 +SE +ET CO +ID 1048 +TI 1771360827.116777051 +CC NStripHits 5 +PQ 4.49229 +SQ 2 +CT 0 1 +TL 1 +TE 26.0044 +CE 81.9955 2.01287 26.0044 1.02961 +CD -2.16545 0.123637 -4.07577 0.0336036 0.0294017 0.0336036 -2.04905 -0.845571 -4.42498 0.0336036 0.020459 0.0336036 0 0 0 0 0 0 +LA 1.03675 +SE +ET PH +ID 1049 +TI 1771360827.117948968 +CC NStripHits 3 +PE 82.025 +PP -1.00139 -0.385145 2.32658 +PW 0 +SE +ET PH +ID 1050 +TI 1771360827.118136468 +CC NStripHits 2 +PE 65.4477 +PP -0.419359 0.251702 -1.63123 +PW 0 +SE +ID 1051 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.304949) +BD GR Veto +PQ 0.00504751 +SE +ID 1052 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.176453) +BD GR Veto +PQ +SE +ET PH +ID 1053 +TI 1771360827.120046718 +CC NStripHits 2 +PE 28.9321 +PP -0.419359 0.234987 0.696891 +PW 0 +SE +ET PH +ID 1054 +TI 1771360827.120922502 +CC NStripHits 3 +PE 192.939 +PP 0.861109 -1.0775 -1.39842 +PW 0 +SE +ET PH +ID 1055 +TI 1771360827.122050135 +CC NStripHits 3 +PE 176.601 +PP 1.55955 -0.299571 1.62814 +PW 0 +SE +ET PH +ID 1056 +TI 1771360827.122992235 +CC NStripHits 2 +PE 31.2997 +PP 3.18923 -0.798765 -3.26092 +PW 0 +SE +ET PH +ID 1057 +TI 1771360827.125270852 +CC NStripHits 2 +PE 76.677 +PP 1.32673 0.296198 -1.28202 +PW 0 +SE +ET PH +ID 1058 +TI 1771360827.126010202 +CC NStripHits 2 +PE 66.3045 +PP 0.279078 0.275107 -3.95936 +PW 0 +SE +ET PH +ID 1059 +TI 1771360827.126867318 +CC NStripHits 2 +PE 83.738 +PP 1.90877 0.159036 1.86095 +PW 0 +SE +ET PH +ID 1060 +TI 1771360827.127007935 +CC NStripHits 2 +PE 81.9048 +PP -0.419359 0.364294 -0.699984 +PW 0 +SE +ET PH +ID 1061 +TI 1771360827.127448052 +CC NStripHits 2 +PE 54.8158 +PP -2.51467 0.285866 -2.44608 +PW 0 +SE +ID 1062 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (99.912306)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 27.404703)) (GR Hit: Detector ID 0 and Energy 60.776402) +BD GR Veto +PQ 99.9123 +SE +ET PH +ID 1063 +TI 1771360827.129797985 +CC NStripHits 2 +PE 59.5235 +PP 1.21033 0.359247 -4.54139 +PW 0 +SE +ID 1064 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.065373) +BD GR Veto +PQ 2.27097 +SE +ID 1065 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 1066 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.010988) +BD GR Veto +PQ 0.234608 +SE +ET PH +ID 1067 +TI 1771360827.135811202 +CC NStripHits 2 +PE 79.4363 +PP 2.84002 0.354267 -3.14452 +PW 0 +SE +ET PH +ID 1068 +TI 1771360827.137023052 +CC NStripHits 2 +PE 79.4731 +PP 0.861109 0.358258 2.55939 +PW 0 +SE +ET PH +ID 1069 +TI 1771360827.138474935 +CC NStripHits 2 +PE 51.4067 +PP 4.3533 0.321932 -1.74764 +PW 0 +SE +ID 1070 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.611361) +BD GR Veto +PQ +SE +ET UN +ID 1071 +TI 1771360827.139717518 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1072 +TI 1771360827.142359452 +CC NStripHits 2 +PE 31.4935 +PP 2.6072 0.378278 2.09377 +PW 0 +SE +ET UN +ID 1073 +TI 1771360827.143012719 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 80.4113 +SE +ET PH +ID 1074 +TI 1771360827.143280685 +CC NStripHits 3 +PE 207.394 +PP -1.93264 -0.282444 -4.54139 +PW 0 +SE +ET PH +ID 1075 +TI 1771360827.143550752 +CC NStripHits 3 +PE 83.0444 +PP -0.884984 -0.060196 1.62814 +PW 0 +SE +ET UN +ID 1076 +TI 1771360827.143798702 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.2344 +SE +ET PH +ID 1077 +TI 1771360827.143944685 +CC NStripHits 2 +PE 134.476 +PP 4.00408 -0.388762 -1.98045 +PW 0 +SE +ET UN +ID 1078 +TI 1771360827.144524885 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 152.795 +SE +ET UN +ID 1079 +TI 1771360827.144725469 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2263 +SE +ET PH +ID 1080 +TI 1771360827.144976152 +CC NStripHits 2 +PE 81.2622 +PP 1.90877 0.376141 0.580484 +PW 0 +SE +ET PH +ID 1081 +TI 1771360827.146208069 +CC NStripHits 2 +PE 80.5196 +PP 0.395484 0.249653 2.6758 +PW 0 +SE +ET CO +ID 1082 +TI 1771360827.149390085 +CC NStripHits 4 +PQ 0.00451476 +SQ 2 +CT 0 1 +TL 1 +TE 48.9708 +CE 148.802 1.04732 48.9708 1.0465 +CD 1.21033 -0.765923 2.44298 0.0336036 0.0214063 0.0336036 1.32673 -0.717709 2.55939 0.0336036 0.0220654 0.0336036 0 0 0 0 0 0 +LA 0.171537 +SE +ET PH +ID 1083 +TI 1771360827.150059269 +CC NStripHits 2 +PE 54.8841 +PP -0.419359 -0.848549 -3.72655 +PW 0 +SE +ET PH +ID 1084 +TI 1771360827.150385852 +CC NStripHits 2 +PE 55.1349 +PP 2.6072 0.381011 -1.86405 +PW 0 +SE +ET PH +ID 1085 +TI 1771360827.150627435 +CC NStripHits 2 +PE 71.2951 +PP 2.4908 0.341337 -1.63123 +PW 0 +SE +ET UN +ID 1086 +TI 1771360827.151166185 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.8019 +SE +ET CO +ID 1087 +TI 1771360827.152639652 +CC NStripHits 6 +PQ 13.0809 +SQ 2 +CT 0 1 +TL 1 +TE 142.207 +CE 528.287 2.10418 142.207 1.19233 +CD 1.32673 -0.845136 1.74455 0.0336036 0.0204617 0.0336036 2.02517 -0.548671 2.44298 0.0336036 0.0231199 0.0336036 0 0 0 0 0 0 +LA 1.03127 +SE +ET UN +ID 1088 +TI 1771360827.154056735 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.4795 +SE +ET PH +ID 1089 +TI 1771360827.154158502 +CC NStripHits 2 +PE 32.8682 +PP -1.69983 -1.06762 -4.30858 +PW 0 +SE +ET UN +ID 1090 +TI 1771360827.154334352 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4345 +SE +ET PH +ID 1091 +TI 1771360827.155216435 +CC NStripHits 2 +PE 145.551 +PP 1.44314 -0.620664 1.27892 +PW 0 +SE +ET PH +ID 1092 +TI 1771360827.155576052 +CC NStripHits 2 +PE 208.227 +PP 3.30564 0.112472 2.32658 +PW 0 +SE +ET UN +ID 1093 +TI 1771360827.155858635 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 50.9902 +SE +ET CO +ID 1094 +TI 1771360827.156386219 +CC NStripHits 8 +PQ 2.05596 +SQ 4 +CT 0.022364 0.0516649 +TL 1 +TE 53.3416 +CE 246.591 2.04064 53.3416 1.01041 +CD 2.84002 0.146903 -1.16561 0.0336036 0.0299628 0.0336036 2.4908 -0.803712 -0.00154687 0.0336036 0.0208854 0.0336036 0 0 0 0 0 0 +LA 0.747579 +SE +ET PH +ID 1095 +TI 1771360827.160893969 +CC NStripHits 3 +PE 73.3191 +PP 2.4908 0.350738 2.55939 +PW 0 +SE +ID 1096 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.247655) +BD GR Veto +PQ 0.201587 +SE +ET PH +ID 1097 +TI 1771360827.165324886 +CC NStripHits 3 +PE 302.74 +PP -0.0701406 -0.586853 0.231266 +PW 0 +SE +ET PH +ID 1098 +TI 1771360827.166411936 +CC NStripHits 2 +PE 171.234 +PP 2.72361 0.284929 -4.42498 +PW 0 +SE +ET UN +ID 1099 +TI 1771360827.168909769 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4449 +SE +ET UN +ID 1100 +TI 1771360827.169218419 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 185.87 +SE +ET UN +ID 1101 +TI 1771360827.171613352 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.3461 +SE +ID 1102 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.645224) +BD GR Veto +PQ 0.49325 +SE +ET PH +ID 1103 +TI 1771360827.174162152 +CC NStripHits 2 +PE 62.1936 +PP -2.74748 0.364309 -3.84295 +PW 0 +SE +ET PH +ID 1104 +TI 1771360827.176096052 +CC NStripHits 2 +PE 186.827 +PP 0.977516 0.0338305 1.86095 +PW 0 +SE +ET UN +ID 1105 +TI 1771360827.176321552 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.8599 +SE +ET UN +ID 1106 +TI 1771360827.177209519 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 150.625 +SE +ET PH +ID 1107 +TI 1771360827.177911636 +CC NStripHits 2 +PE 296.445 +PP -2.86389 -0.958557 -1.39842 +PW 0 +SE +ET UN +ID 1108 +TI 1771360827.178835702 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 301.499 +SE +ID 1109 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ID 1110 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.263130) +QA StripPairing (GR Hit: Detector ID 0 and Energy 143.290174) +BD GR Veto +PQ 11.7459 +SE +ET UN +ID 1111 +TI 1771360827.182978169 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.6179 +SE +ID 1112 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET UN +ID 1113 +TI 1771360827.184202169 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1145 +SE +ID 1114 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.234586) +BD GR Veto +PQ 0.000339607 +SE +ET PH +ID 1115 +TI 1771360827.185973836 +CC NStripHits 2 +PE 157.127 +PP 3.42205 -0.141831 -0.117953 +PW 0 +SE +ET PH +ID 1116 +TI 1771360827.186077319 +CC NStripHits 2 +PE 66.2292 +PP 1.55955 0.374107 -3.14452 +PW 0 +SE +ET PH +ID 1117 +TI 1771360827.186247803 +CC NStripHits 2 +PE 78.691 +PP 2.14158 -1.13833 -3.02811 +PW 0 +SE +ET PH +ID 1118 +TI 1771360827.186623136 +CC NStripHits 2 +PE 73.6164 +PP -1.81623 0.289137 -2.56248 +PW 0 +SE +ET UN +ID 1119 +TI 1771360827.190391469 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.389 +SE +ET UN +ID 1120 +TI 1771360827.191138586 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9201 +SE +ET PH +ID 1121 +TI 1771360827.191451303 +CC NStripHits 2 +PE 166.44 +PP -1.81623 -0.622167 -1.16561 +PW 0 +SE +ET PH +ID 1122 +TI 1771360827.192391969 +CC NStripHits 3 +PE 230.781 +PP 1.09392 0.248221 -4.30858 +PW 0 +SE +ET PH +ID 1123 +TI 1771360827.193446253 +CC NStripHits 2 +PE 69.2817 +PP 2.84002 0.133811 -4.30858 +PW 0 +SE +ID 1124 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1125 +TI 1771360827.194793736 +CC NStripHits 2 +PE 61.4097 +PP 0.628297 -0.83973 -3.26092 +PW 0 +SE +ID 1126 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (63.160460)) (GR Hit: Detector ID 0 and Energy 354.672181) +BD GR Veto +PQ 63.1605 +SE +ET CO +ID 1127 +TI 1771360827.198765769 +CC NStripHits 5 +PQ 2.52286 +SQ 2 +CT 0 1 +TL 1 +TE 97.503 +CE 172.33 0.990875 97.503 1.12763 +CD -0.0701406 -0.210622 1.86095 0.0336036 0.0257765 0.0336036 0.0462656 -0.0037496 2.21017 0.0336036 0.0276341 0.0336036 0 0 0 0 0 0 +LA 0.422257 +SE +ET PH +ID 1128 +TI 1771360827.199115003 +CC NStripHits 2 +PE 27.8915 +PP -0.768578 -0.136626 0.231266 +PW 0 +SE +ET UN +ID 1129 +TI 1771360827.201274703 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5609 +SE +ET UN +ID 1130 +TI 1771360827.203267053 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1131 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.365816) +BD GR Veto +PQ 7.07261 +SE +ID 1132 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 25.987379) +BD GR Veto +PQ 0.0185665 +SE +ID 1133 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.459204) +BD GR Veto +PQ 0.549877 +SE +ID 1134 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.852194) +BD GR Veto +PQ 0.000439596 +SE +ET PH +ID 1135 +TI 1771360827.208151786 +CC NStripHits 3 +PE 303.588 +PP -2.51467 0.341792 1.97736 +PW 0 +SE +ET PH +ID 1136 +TI 1771360827.210699403 +CC NStripHits 2 +PE 39.8421 +PP 3.88767 -0.134201 -3.49373 +PW 0 +SE +ET PH +ID 1137 +TI 1771360827.211869403 +CC NStripHits 2 +PE 212.994 +PP 3.65486 -0.546094 2.09377 +PW 0 +SE +ET PH +ID 1138 +TI 1771360827.213437820 +CC NStripHits 3 +PE 157.629 +PP 2.4908 0.345276 2.32658 +PW 0 +SE +ET CO +ID 1139 +TI 1771360827.214713586 +CC NStripHits 4 +PQ 10.3883 +SQ 2 +CT 0 1 +TL 1 +TE 91.1481 +CE 266.772 1.50826 91.1481 1.00504 +CD 0.0462656 -0.0242717 2.44298 0.0336036 0.0275028 0.0336036 -0.0701406 -0.00859555 2.32658 0.0336036 0.0276069 0.0336036 0 0 0 0 0 0 +LA 0.165364 +SE +ET PH +ID 1140 +TI 1771360827.215807970 +CC NStripHits 2 +PE 204.569 +PP 1.90877 -0.00855938 -0.467172 +PW 0 +SE +ET UN +ID 1141 +TI 1771360827.216548020 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 51.9179 +SE +ET UN +ID 1142 +TI 1771360827.218675836 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 230.48 +SE +ET UN +ID 1143 +TI 1771360827.219299470 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8333 +SE +ET UN +ID 1144 +TI 1771360827.219999920 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8754 +SE +ET UN +ID 1145 +TI 1771360827.220398503 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.1779 +SE +ID 1146 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 34.752317) +BD GR Veto +PQ 0.873237 +SE +ET UN +ID 1147 +TI 1771360827.223175737 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 301.379 +SE +ET CO +ID 1148 +TI 1771360827.223303053 +CC NStripHits 4 +PQ 0.732774 +SQ 2 +CT 0 1 +TL 1 +TE 40.5488 +CE 177.716 0.989405 40.5488 1.0263 +CD -1.1178 -1.06066 1.86095 0.0336036 0.0203533 0.0336036 -1.2342 -0.644366 1.51173 0.0336036 0.0225784 0.0336036 0 0 0 0 0 0 +LA 0.555702 +SE +ET PH +ID 1149 +TI 1771360827.224131653 +CC NStripHits 2 +PE 80.0414 +PP 2.95642 0.373163 -4.19217 +PW 0 +SE +ET UN +ID 1150 +TI 1771360827.225718803 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.4106 +SE +ET CO +ID 1151 +TI 1771360827.226577087 +CC NStripHits 6 +PQ 27.5776 +SQ 2 +CT 0 1 +TL 1 +TE 68.2754 +CE 286.375 1.15576 68.2754 1.89806 +CD -1.69983 0.0149619 -0.00154687 0.0336036 0.0277782 0.0336036 -0.884984 -0.580802 -0.467172 0.0336036 0.0229087 0.0336036 0 0 0 0 0 0 +LA 1.11163 +SE +ET PH +ID 1152 +TI 1771360827.228320120 +CC NStripHits 3 +PE 81.5077 +PP 1.21033 0.340442 1.62814 +PW 0 +SE +ID 1153 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.301927) +BD GR Veto +PQ 0.00618399 +SE +ID 1154 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.253025)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 30.912225)) (GR Hit: Detector ID 0 and Energy 77.585002) +BD GR Veto +PQ 27.253 +SE +ID 1155 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (82.446665)) (GR Hit: Detector ID 0 and Energy 149.870587) +BD GR Veto +PQ 82.4467 +SE +ET PH +ID 1156 +TI 1771360827.231833320 +CC NStripHits 2 +PE 205.081 +PP -0.884984 -0.094321 1.62814 +PW 0 +SE +ET PH +ID 1157 +TI 1771360827.232129137 +CC NStripHits 2 +PE 79.6507 +PP 2.6072 0.375979 1.27892 +PW 0 +SE +ET CO +ID 1158 +TI 1771360827.232787270 +CC NStripHits 7 +PQ 11.0357 +SQ 3 +CT 0.188713 0.337659 +TL 1 +TE 98.7656 +CE 181.502 1.88668 98.7656 1.47738 +CD -0.0701406 -0.0129607 -3.02811 0.0336036 0.0275827 0.0336036 -2.51467 0.357822 -2.9117 0.0336036 0.0296901 0.0336036 0 0 0 0 0 0 +LA 2.10092 +SE +ET PH +ID 1159 +TI 1771360827.233507787 +CC NStripHits 2 +PE 189.971 +PP -2.74748 0.158212 -1.16561 +PW 0 +SE +ET UN +ID 1160 +TI 1771360827.233842220 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 167.537 +SE +ET PH +ID 1161 +TI 1771360827.237209953 +CC NStripHits 3 +PE 81.3787 +PP 2.72361 0.284313 1.62814 +PW 0 +SE +ET PH +ID 1162 +TI 1771360827.239129737 +CC NStripHits 2 +PE 206.653 +PP -1.00139 -0.0887264 0.929703 +PW 0 +SE +ET PH +ID 1163 +TI 1771360827.239593170 +CC NStripHits 2 +PE 29.804 +PP 2.95642 0.36721 0.696891 +PW 0 +SE +ET CO +ID 1164 +TI 1771360827.240708504 +CC NStripHits 5 +PQ 11.8368 +SQ 2 +CT 0 1 +TL 1 +TE 111.687 +CE 234.159 1.40485 111.687 1.02644 +CD 3.07283 0.166361 -1.74764 0.0336036 0.0305542 0.0336036 2.37439 -0.25405 -1.98045 0.0336036 0.0254453 0.0336036 0 0 0 0 0 0 +LA 0.8478 +SE +ET PH +ID 1165 +TI 1771360827.240999920 +CC NStripHits 2 +PE 81.6955 +PP 2.6072 0.265571 -3.95936 +PW 0 +SE +ET PH +ID 1166 +TI 1771360827.241597004 +CC NStripHits 2 +PE 73.4468 +PP -1.93264 -0.121698 -3.72655 +PW 0 +SE +ET UN +ID 1167 +TI 1771360827.242760037 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0849 +SE +ID 1168 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.577957) +BD GR Veto +PQ 1.24163 +SE +ET UN +ID 1169 +TI 1771360827.245023804 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 426.983 +SE +ET UN +ID 1170 +TI 1771360827.247155837 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1171 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.056363) +BD GR Veto +PQ 1.23604 +SE +ET PH +ID 1172 +TI 1771360827.248017137 +CC NStripHits 3 +PE 228.429 +PP 0.977516 0.124841 -1.74764 +PW 0 +SE +ET PH +ID 1173 +TI 1771360827.248640287 +CC NStripHits 4 +PE 278.025 +PP 3.30564 -0.409478 -0.699984 +PW 0 +SE +ET UN +ID 1174 +TI 1771360827.248762504 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1175 +TI 1771360827.248944737 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1176 +TI 1771360827.249457887 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1177 +TI 1771360827.249815204 +CC NStripHits 2 +PE 230.598 +PP 2.02517 -0.108181 -1.74764 +PW 0 +SE +ET PH +ID 1178 +TI 1771360827.251051404 +CC NStripHits 2 +PE 97.0948 +PP 3.07283 -0.706993 1.97736 +PW 0 +SE +ET PH +ID 1179 +TI 1771360827.252604687 +CC NStripHits 2 +PE 81.7229 +PP 1.90877 -1.13686 -2.32967 +PW 0 +SE +ID 1180 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 363.407777) +BD GR Veto +PQ 0.325059 +SE +ID 1181 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 58.946555) +BD GR Veto +PQ 9.43978 +SE +ID 1182 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.806307) +BD GR Veto +PQ 0.520598 +SE +ET UN +ID 1183 +TI 1771360827.256691604 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1184 +TI 1771360827.256980270 +CC NStripHits 2 +PE 80.6913 +PP -0.302953 0.338196 -1.39842 +PW 0 +SE +ET UN +ID 1185 +TI 1771360827.258601220 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8465 +SE +ET CO +ID 1186 +TI 1771360827.259004337 +CC NStripHits 4 +PQ 3.38214 +SQ 2 +CT 0 1 +TL 1 +TE 100.317 +CE 141.549 1.55951 100.317 1.00807 +CD -1.81623 -0.224229 -0.699984 0.0336036 0.0256589 0.0336036 -1.46702 -0.541181 -0.467172 0.0336036 0.0231759 0.0336036 0 0 0 0 0 0 +LA 0.525935 +SE +ET PH +ID 1187 +TI 1771360827.259503404 +CC NStripHits 2 +PE 81.6771 +PP -1.46702 0.178042 0.231266 +PW 0 +SE +ET CO +ID 1188 +TI 1771360827.259708820 +CC NStripHits 8 +PQ 2.07011 +SQ 2 +CT 0 1 +TL 1 +TE 132.812 +CE 168.476 1.61525 132.812 1.22726 +CD 0.861109 0.139631 -2.09686 0.0336036 0.0297733 0.0336036 0.162672 -0.514753 -0.467172 0.0336036 0.023337 0.0336036 0 0 0 0 0 0 +LA 1.88995 +SE +ET CO +ID 1189 +TI 1771360827.260758904 +CC NStripHits 6 +PQ 3.18864 +SQ 3 +CT 0.0147144 0.0267281 +TL 1 +TE 167.104 +CE 513.143 1.51857 167.104 1.52861 +CD 3.77127 -0.0301788 -2.09686 0.0336036 0.0274427 0.0336036 4.12048 -0.365607 -1.98045 0.0336036 0.0247209 0.0336036 0 0 0 0 0 0 +LA 0.498007 +SE +ET PH +ID 1190 +TI 1771360827.261000404 +CC NStripHits 2 +PE 83.4543 +PP -1.93264 0.265917 -4.07577 +PW 0 +SE +ET UN +ID 1191 +TI 1771360827.262500037 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9694 +SE +ET PH +ID 1192 +TI 1771360827.264743704 +CC NStripHits 3 +PE 300.236 +PP 3.07283 -0.943305 0.580484 +PW 0 +SE +ET PH +ID 1193 +TI 1771360827.265181804 +CC NStripHits 3 +PE 164.967 +PP -2.86389 -0.761873 0.114859 +PW 0 +SE +ET UN +ID 1194 +TI 1771360827.268090804 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1195 +TI 1771360827.268284587 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 100.413 +SE +ID 1196 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 90.535993) +BD GR Veto +PQ 2.52643 +SE +ET PH +ID 1197 +TI 1771360827.270499304 +CC NStripHits 2 +PE 180.665 +PP -0.535766 0.330748 0.929703 +PW 0 +SE +ET PH +ID 1198 +TI 1771360827.273751537 +CC NStripHits 2 +PE 30.548 +PP 2.14158 0.0950814 -3.26092 +PW 0 +SE +ID 1199 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.075516) +BD GR Veto +PQ 18.3356 +SE +ET PH +ID 1200 +TI 1771360827.274976004 +CC NStripHits 2 +PE 79.0564 +PP -0.535766 0.364345 -0.00154687 +PW 0 +SE +ID 1201 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.243283) +BD GR Veto +PQ +SE +ET UN +ID 1202 +TI 1771360827.279077271 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 1221.57 +SE +ET UN +ID 1203 +TI 1771360827.279433137 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1204 +TI 1771360827.280593104 +CC NStripHits 2 +PE 100.569 +PP 1.44314 0.346694 -2.09686 +PW 0 +SE +ET UN +ID 1205 +TI 1771360827.280683521 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.5316 +SE +ET UN +ID 1206 +TI 1771360827.281425704 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 56.0312 +SE +ET UN +ID 1207 +TI 1771360827.281740938 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1898 +SE +ID 1208 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 1209 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 1210 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1211 +TI 1771360827.284780154 +CC NStripHits 2 +PE 69.473 +PP -2.04905 -0.636771 2.21017 +PW 0 +SE +ID 1212 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.821786) +BD GR Veto +PQ 0.198761 +SE +ET PH +ID 1213 +TI 1771360827.285634438 +CC NStripHits 3 +PE 227.609 +PP 2.02517 0.220063 2.55939 +PW 0 +SE +ID 1214 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.957562) +BD GR Veto +PQ 19.9107 +SE +ET CO +ID 1215 +TI 1771360827.288170538 +CC NStripHits 6 +PQ 0.753912 +SQ 2 +CT 0.525885 0.474115 +TL 1 +TE 202.289 +CE 169.329 1.27809 202.289 1.17621 +CD 2.72361 -0.415605 0.464078 0.0336036 0.0242475 0.0336036 4.12048 -0.574641 -1.98045 0.0336036 0.0229387 0.0336036 0 0 0 0 0 0 +LA 2.81997 +SE +ET UN +ID 1216 +TI 1771360827.290192104 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1217 +TI 1771360827.290620504 +CC NStripHits 2 +PE 116.733 +PP 0.744703 -0.827374 2.6758 +PW 0 +SE +ET UN +ID 1218 +TI 1771360827.291886971 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 69.9025 +SE +ID 1219 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.461067) +QA StripPairing (Best reduced chi square is not below 25 (37.861003)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 41.934613)) (GR Hit: Detector ID 0 and Energy 82.490206) +BD GR Veto +PQ 37.861 +SE +ET CO +ID 1220 +TI 1771360827.293065554 +CC NStripHits 8 +PQ 3.20887 +SQ 2 +CT 0 1 +TL 1 +TE 28.1659 +CE 242.843 2.93415 28.1659 0.97179 +CD 1.67595 0.0801928 1.27892 0.0336036 0.0285681 0.0336036 1.44314 0.211177 1.51173 0.0336036 0.0326159 0.0336036 0 0 0 0 0 0 +LA 0.354341 +SE +ET PH +ID 1221 +TI 1771360827.294410271 +CC NStripHits 2 +PE 78.3758 +PP 1.21033 0.0707818 -1.86405 +PW 0 +SE +ET PH +ID 1222 +TI 1771360827.296133738 +CC NStripHits 2 +PE 22.487 +PP 0.628297 0.232347 -2.9117 +PW 0 +SE +ET PH +ID 1223 +TI 1771360827.296413221 +CC NStripHits 2 +PE 206.331 +PP -1.58342 0.364927 -2.7953 +PW 0 +SE +ET UN +ID 1224 +TI 1771360827.297583471 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1225 +TI 1771360827.297833554 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 68.4979 +SE +ET UN +ID 1226 +TI 1771360827.299064888 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.457 +SE +ET PH +ID 1227 +TI 1771360827.299399854 +CC NStripHits 2 +PE 132.886 +PP -0.0701406 0.195929 -3.37733 +PW 0 +SE +ET PH +ID 1228 +TI 1771360827.300668655 +CC NStripHits 3 +PE 206.852 +PP 2.25798 0.335312 1.27892 +PW 0 +SE +ID 1229 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 110.722777) +BD GR Veto +PQ 1.14153 +SE +ET PH +ID 1230 +TI 1771360827.301218305 +CC NStripHits 3 +PE 170.148 +PP 2.84002 0.0634162 1.62814 +PW 0 +SE +ET PH +ID 1231 +TI 1771360827.301959988 +CC NStripHits 2 +PE 42.4558 +PP 2.72361 -0.692858 -4.6578 +PW 0 +SE +ET UN +ID 1232 +TI 1771360827.303127538 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 210.704 +SE +ID 1233 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.742292) +BD GR Veto +PQ 0.00814366 +SE +ET PH +ID 1234 +TI 1771360827.303934355 +CC NStripHits 2 +PE 61.9937 +PP 4.3533 0.326464 -2.56248 +PW 0 +SE +ID 1235 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.466372) +BD GR Veto +PQ 0.151059 +SE +ET PH +ID 1236 +TI 1771360827.307064955 +CC NStripHits 2 +PE 64.0133 +PP 3.30564 0.371548 -3.49373 +PW 0 +SE +ET UN +ID 1237 +TI 1771360827.308494388 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1238 +TI 1771360827.308614438 +CC NStripHits 2 +PE 29.7354 +PP -0.884984 0.050262 -0.350766 +PW 0 +SE +ET UN +ID 1239 +TI 1771360827.308939705 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1240 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.955020) +BD GR Veto +PQ +SE +ET PH +ID 1241 +TI 1771360827.309985005 +CC NStripHits 2 +PE 22.1634 +PP -1.69983 0.146723 -0.117953 +PW 0 +SE +ET UN +ID 1242 +TI 1771360827.310198405 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 62.5761 +SE +ID 1243 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.939679) +BD GR Veto +PQ 0.435753 +SE +ET PH +ID 1244 +TI 1771360827.312648655 +CC NStripHits 2 +PE 75.7285 +PP -2.51467 0.317301 1.39533 +PW 0 +SE +ET UN +ID 1245 +TI 1771360827.313195838 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6178 +SE +ID 1246 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 142.508397) +BD GR Veto +PQ 0.337937 +SE +ET PH +ID 1247 +TI 1771360827.315013305 +CC NStripHits 2 +PE 123.573 +PP 0.279078 -0.787969 -4.07577 +PW 0 +SE +ET PH +ID 1248 +TI 1771360827.318608788 +CC NStripHits 3 +PE 192.178 +PP -0.302953 0.00579445 -4.30858 +PW 0 +SE +ET UN +ID 1249 +TI 1771360827.319848988 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.4696 +SE +ET CO +ID 1250 +TI 1771360827.322293605 +CC NStripHits 6 +PQ 0.144124 +SQ 2 +CT 0.873834 0.126166 +TL 1 +TE 965.053 +CE 292.016 1.03093 965.053 1.5627 +CD -2.74748 -0.419665 -2.67889 0.0336036 0.0242059 0.0336036 -2.04905 -0.265429 -3.14452 0.0336036 0.0253839 0.0336036 0 0 0 0 0 0 +LA 0.853466 +SE +ET UN +ID 1251 +TI 1771360827.322907422 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1252 +TI 1771360827.323095188 +CC NStripHits 2 +PE 31.333 +PP -1.69983 0.261847 2.32658 +PW 0 +SE +ID 1253 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.961407) (Strip hit removed with energy 8.933764) (Strip hit removed with energy 17.695176) (Strip hit removed with energy 11.402859) (Strip hit removed with energy 7.629766) (Strip hit removed with energy 17.062778) (Strip hit removed with energy 13.739803) +BD GR Veto +PQ +SE +ET PH +ID 1254 +TI 1771360827.324592355 +CC NStripHits 2 +PE 80.2719 +PP 0.279078 -0.81226 -3.49373 +PW 0 +SE +ET UN +ID 1255 +TI 1771360827.327054755 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.8832 +SE +ET PH +ID 1256 +TI 1771360827.327239555 +CC NStripHits 2 +PE 660.483 +PP 0.628297 -0.249493 -0.00154687 +PW 0 +SE +ET PH +ID 1257 +TI 1771360827.329098722 +CC NStripHits 3 +PE 182.198 +PP 1.32673 -0.0916338 -3.72655 +PW 0 +SE +ID 1258 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 352.409341) +BD GR Veto +PQ 0.428636 +SE +ET PH +ID 1259 +TI 1771360827.329994338 +CC NStripHits 3 +PE 68.3045 +PP 3.77127 0.282945 -0.350766 +PW 0 +SE +ID 1260 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.426043) +BD GR Veto +PQ 0.233356 +SE +ET PH +ID 1261 +TI 1771360827.331913605 +CC NStripHits 2 +PE 343.796 +PP -2.86389 -0.894584 -1.28202 +PW 0 +SE +ET PH +ID 1262 +TI 1771360827.333671972 +CC NStripHits 2 +PE 81.331 +PP 1.55955 0.280998 0.813297 +PW 0 +SE +ET UN +ID 1263 +TI 1771360827.334329438 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.244 +SE +ET UN +ID 1264 +TI 1771360827.335758738 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.4699 +SE +ET UN +ID 1265 +TI 1771360827.335851022 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1266 +TI 1771360827.336427938 +CC NStripHits 2 +PE 195.957 +PP -2.63108 -0.300519 0.580484 +PW 0 +SE +ET PH +ID 1267 +TI 1771360827.337606822 +CC NStripHits 2 +PE 150.097 +PP 3.07283 0.369155 -3.95936 +PW 0 +SE +ET PH +ID 1268 +TI 1771360827.337732205 +CC NStripHits 2 +PE 31.2485 +PP -1.46702 0.319642 -0.583578 +PW 0 +SE +ET PH +ID 1269 +TI 1771360827.337855255 +CC NStripHits 2 +PE 81.4031 +PP 3.77127 0.0913939 -2.09686 +PW 0 +SE +ET CO +ID 1270 +TI 1771360827.338045422 +CC NStripHits 7 +PQ 78.9676 +SQ 3 +CT 0.0173111 0.217825 +TL 1 +TE 51.5082 +CE 198.241 1.71583 51.5082 1.39024 +CD -2.04905 -0.777152 -2.56248 0.0336036 0.0212314 0.0336036 -1.58342 -0.11963 -1.74764 0.0336036 0.0265357 0.0336036 0 0 0 0 0 0 +LA 0.794095 +SE +ET PH +ID 1271 +TI 1771360827.338637288 +CC NStripHits 2 +PE 60.1814 +PP 2.84002 0.365593 -0.699984 +PW 0 +SE +ID 1272 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 124.505659) +BD GR Veto +PQ 0.144359 +SE +ET UN +ID 1273 +TI 1771360827.341746822 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.4021 +SE +ET PH +ID 1274 +TI 1771360827.341939105 +CC NStripHits 2 +PE 80.272 +PP 4.3533 0.288936 -1.39842 +PW 0 +SE +ID 1275 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.223934) +BD GR Veto +PQ 0.0509169 +SE +ID 1276 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (26.245511)) (GR Hit: Detector ID 0 and Energy 165.902460) +BD GR Veto +PQ 26.2455 +SE +ET PH +ID 1277 +TI 1771360827.345856922 +CC NStripHits 2 +PE 81.8793 +PP 3.07283 0.374728 -4.30858 +PW 0 +SE +ET UN +ID 1278 +TI 1771360827.347117989 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8581 +SE +ET PH +ID 1279 +TI 1771360827.348034939 +CC NStripHits 2 +PE 78.0837 +PP 1.79236 0.0239244 0.347672 +PW 0 +SE +ET UN +ID 1280 +TI 1771360827.348205589 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.3875 +SE +ID 1281 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 141.528177) +BD GR Veto +PQ 22.2679 +SE +ID 1282 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 51.949513) +BD GR Veto +PQ 0.00181875 +SE +ID 1283 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.817166) +BD GR Veto +PQ 0.123653 +SE +ET PH +ID 1284 +TI 1771360827.353584139 +CC NStripHits 3 +PE 80.2273 +PP 0.861109 0.215891 -0.699984 +PW 0 +SE +ET PH +ID 1285 +TI 1771360827.355995739 +CC NStripHits 2 +PE 30.9112 +PP 0.511891 0.140304 -3.61014 +PW 0 +SE +ET UN +ID 1286 +TI 1771360827.358223172 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ID 1287 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 235.359091) +BD GR Veto +PQ 0.0747938 +SE +ID 1288 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 120.416468) +BD GR Veto +PQ 0.0334816 +SE +ET UN +ID 1289 +TI 1771360827.358845989 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1290 +TI 1771360827.360614956 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1291 +TI 1771360827.362506489 +CC NStripHits 2 +PE 80.7178 +PP -1.1178 0.101156 0.114859 +PW 0 +SE +ID 1292 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.426043) +BD GR Veto +PQ +SE +ID 1293 +BD StripPairingError (More than maximum number of strip hits allowed on one side (8)) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.624611) (Strip hit removed with energy 18.359129) (Strip hit removed with energy 14.883559) (Strip hit removed with energy 10.931843) (Strip hit removed with energy 8.633496) (Strip hit removed with energy 8.894950) (Strip hit removed with energy 12.278867) (Strip hit removed with energy -0.823052) +BD GR Veto +PQ +SE +ET UN +ID 1294 +TI 1771360827.365665872 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 42.3062 +SE +ET PH +ID 1295 +TI 1771360827.367046106 +CC NStripHits 2 +PE 80.1044 +PP -1.2342 0.0629428 -2.09686 +PW 0 +SE +ID 1296 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.818761) +BD GR Veto +PQ 0.00197464 +SE +ET PH +ID 1297 +TI 1771360827.368314156 +CC NStripHits 2 +PE 79.6959 +PP 0.977516 0.0810367 2.21017 +PW 0 +SE +ID 1298 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (65.656134)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 74.305730)) (GR Hit: Detector ID 0 and Energy 190.752590) +BD GR Veto +PQ 65.6561 +SE +ET PH +ID 1299 +TI 1771360827.369197172 +CC NStripHits 3 +PE 192.945 +PP -1.46702 -0.435551 -4.07577 +PW 0 +SE +ET UN +ID 1300 +TI 1771360827.369329339 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0824 +SE +ET UN +ID 1301 +TI 1771360827.371508972 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET CO +ID 1302 +TI 1771360827.371992022 +CC NStripHits 5 +PQ 2.60518 +SQ 2 +CT 0.548785 0.451215 +TL 1 +TE 196.344 +CE 162.46 1.13938 196.344 1.41791 +CD 0.0462656 -1.14108 -0.699984 0.0336036 0.0279924 0.0336036 -0.302953 -0.488495 -0.234359 0.0336036 0.023552 0.0336036 0 0 0 0 0 0 +LA 0.87443 +SE +ET PH +ID 1303 +TI 1771360827.372884506 +CC NStripHits 2 +PE 81.0949 +PP 0.861109 0.369266 -2.09686 +PW 0 +SE +ID 1304 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.587897) +BD GR Veto +PQ 0.0673831 +SE +ET PH +ID 1305 +TI 1771360827.374634822 +CC NStripHits 2 +PE 54.7001 +PP 1.21033 -1.14574 1.04611 +PW 0 +SE +ID 1306 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.671653) +BD GR Veto +PQ 0.40293 +SE +ET PH +ID 1307 +TI 1771360827.375206272 +CC NStripHits 3 +PE 78.8051 +PP -2.63108 0.253494 -4.19217 +PW 0 +SE +ET CO +ID 1308 +TI 1771360827.375933022 +CC NStripHits 4 +PQ 31.2289 +SQ 2 +CT 0 1 +TL 1 +TE 95.7492 +CE 128.975 1.54744 95.7492 1.63357 +CD 0.628297 -0.680666 -1.86405 0.0336036 0.0223751 0.0336036 0.861109 -0.825201 -1.98045 0.0336036 0.0206245 0.0336036 0 0 0 0 0 0 +LA 0.297726 +SE +ET CO +ID 1309 +TI 1771360827.378002389 +CC NStripHits 6 +PQ 0.426717 +SQ 2 +CT 0 1 +TL 1 +TE 112.062 +CE 240.741 1.19729 112.062 1.11649 +CD 0.0462656 0.349757 1.97736 0.0336036 0.0333134 0.0336036 1.44314 -0.176333 2.09377 0.0336036 0.0260338 0.0336036 0 0 0 0 0 0 +LA 1.49719 +SE +ID 1310 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 177.648552) +BD GR Veto +PQ 0.0219638 +SE +ET PH +ID 1311 +TI 1771360827.381735806 +CC NStripHits 2 +PE 80.4202 +PP 2.72361 0.0011878 1.86095 +PW 0 +SE +ET UN +ID 1312 +TI 1771360827.383155939 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 129.36 +SE +ID 1313 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.955020) +BD GR Veto +PQ +SE +ET UN +ID 1314 +TI 1771360827.386720023 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 255.832 +SE +ID 1315 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 349.153345) +BD GR Veto +PQ 1.90249 +SE +ID 1316 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 112.700459) +BD GR Veto +PQ 0.0026067 +SE +ET UN +ID 1317 +TI 1771360827.389379156 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 75.619 +SE +ET PH +ID 1318 +TI 1771360827.389725906 +CC NStripHits 3 +PE 58.4655 +PP 3.18923 -0.128249 0.231266 +PW 0 +SE +ID 1319 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.441077) +BD GR Veto +PQ 0.227181 +SE +ID 1320 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ET PH +ID 1321 +TI 1771360827.394426373 +CC NStripHits 2 +PE 59.8127 +PP 1.67595 0.335604 -2.09686 +PW 0 +SE +ET UN +ID 1322 +TI 1771360827.394782823 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.9947 +SE +ET UN +ID 1323 +TI 1771360827.395357039 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 302.9 +SE +ET PH +ID 1324 +TI 1771360827.395906406 +CC NStripHits 2 +PE 266.601 +PP 2.84002 -0.48115 1.27892 +PW 0 +SE +ET PH +ID 1325 +TI 1771360827.396211939 +CC NStripHits 2 +PE 174.686 +PP -1.1178 0.16691 -2.32967 +PW 0 +SE +ID 1326 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.471079) +BD GR Veto +PQ 0.0468883 +SE +ID 1327 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.907079) +BD GR Veto +PQ 0.0003157 +SE +ID 1328 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.422049) +BD GR Veto +PQ 0.855805 +SE +ET PH +ID 1329 +TI 1771360827.402695540 +CC NStripHits 2 +PE 55.4924 +PP -1.1178 -0.444319 0.347672 +PW 0 +SE +ET UN +ID 1330 +TI 1771360827.403234706 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8951 +SE +ET PH +ID 1331 +TI 1771360827.403580090 +CC NStripHits 2 +PE 81.8902 +PP -0.186547 0.232804 -1.16561 +PW 0 +SE +ID 1332 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 351.575894) +BD GR Veto +PQ 0.911023 +SE +ID 1333 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.539359) +QA StripPairing (Best reduced chi square is not below 25 (36.072757)) (GR Hit: Detector ID 0 and Energy 74.223039) +BD GR Veto +PQ 36.0728 +SE +ET UN +ID 1334 +TI 1771360827.407812056 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.366 +SE +ET UN +ID 1335 +TI 1771360827.408340206 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1029 +SE +ET PH +ID 1336 +TI 1771360827.409551206 +CC NStripHits 2 +PE 77.2261 +PP 0.0462656 0.33784 2.6758 +PW 0 +SE +ET PH +ID 1337 +TI 1771360827.409744956 +CC NStripHits 2 +PE 28.3553 +PP -1.58342 -0.00913921 -2.21327 +PW 0 +SE +ID 1338 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 299.318547) +BD GR Veto +PQ 0.0322006 +SE +ET UN +ID 1339 +TI 1771360827.411190890 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.9685 +SE +ET UN +ID 1340 +TI 1771360827.412123073 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1341 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 128.770114) +BD GR Veto +PQ 18.0125 +SE +ET PH +ID 1342 +TI 1771360827.412903240 +CC NStripHits 3 +PE 93.3102 +PP 0.395484 0.167902 -3.61014 +PW 0 +SE +ID 1343 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (33.862551)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 36.275672)) (GR Hit: Detector ID 0 and Energy 80.394618) +BD GR Veto +PQ 33.8626 +SE +ET PH +ID 1344 +TI 1771360827.414283156 +CC NStripHits 3 +PE 80.281 +PP 1.44314 0.266003 -4.54139 +PW 0 +SE +ET PH +ID 1345 +TI 1771360827.415050940 +CC NStripHits 2 +PE 74.3595 +PP -0.419359 0.258139 1.39533 +PW 0 +SE +ID 1346 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 283.870529) +BD GR Veto +PQ 2.91084 +SE +ID 1347 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (33.222592)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 78.805998)) (GR Hit: Detector ID 0 and Energy 146.571950) +BD GR Veto +PQ 33.2226 +SE +ET PH +ID 1348 +TI 1771360827.416273240 +CC NStripHits 2 +PE 30.1726 +PP 1.90877 -0.273739 -1.16561 +PW 0 +SE +ET PH +ID 1349 +TI 1771360827.416806806 +CC NStripHits 2 +PE 128.319 +PP 0.162672 -0.618589 2.21017 +PW 0 +SE +ET PH +ID 1350 +TI 1771360827.418325990 +CC NStripHits 2 +PE 70.4053 +PP -0.302953 0.360768 -0.699984 +PW 0 +SE +ET UN +ID 1351 +TI 1771360827.420640557 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1272 +SE +ET UN +ID 1352 +TI 1771360827.420827007 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8716 +SE +ET UN +ID 1353 +TI 1771360827.422223223 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4664 +SE +ID 1354 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 179.587062) +BD GR Veto +PQ 0.192265 +SE +ET PH +ID 1355 +TI 1771360827.422995923 +CC NStripHits 2 +PE 167.389 +PP -2.04905 -0.441354 -3.61014 +PW 0 +SE +ET PH +ID 1356 +TI 1771360827.425085273 +CC NStripHits 2 +PE 79.6793 +PP 3.53845 -0.778245 -4.07577 +PW 0 +SE +ID 1357 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 48.815359) +BD GR Veto +PQ 4.47283 +SE +ET PH +ID 1358 +TI 1771360827.427019457 +CC NStripHits 2 +PE 70.1374 +PP 1.21033 0.345069 -1.16561 +PW 0 +SE +ET UN +ID 1359 +TI 1771360827.427202140 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8834 +SE +ID 1360 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.837236) +BD GR Veto +PQ 0.348589 +SE +ET PH +ID 1361 +TI 1771360827.429127873 +CC NStripHits 2 +PE 97.2274 +PP 3.65486 0.287795 -1.74764 +PW 0 +SE +ET UN +ID 1362 +TI 1771360827.430996957 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.8661 +SE +ET UN +ID 1363 +TI 1771360827.431951090 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1364 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.955020) +BD GR Veto +PQ +SE +ID 1365 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 24.966736) +BD GR Veto +PQ 0.634093 +SE +ET UN +ID 1366 +TI 1771360827.434082823 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1835 +SE +ET PH +ID 1367 +TI 1771360827.435559040 +CC NStripHits 3 +PE 131.224 +PP -1.00139 -0.276466 -1.74764 +PW 0 +SE +ET UN +ID 1368 +TI 1771360827.435737807 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 354.267 +SE +ET UN +ID 1369 +TI 1771360827.436188457 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0157 +SE +ET UN +ID 1370 +TI 1771360827.436268157 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1371 +TI 1771360827.437617023 +CC NStripHits 2 +PE 77.7022 +PP -0.535766 0.195643 -4.54139 +PW 0 +SE +ET UN +ID 1372 +TI 1771360827.441219124 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1373 +TI 1771360827.442025657 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1374 +TI 1771360827.443028307 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1375 +TI 1771360827.444020040 +CC NStripHits 2 +PE 26.7606 +PP 1.32673 0.363742 -1.39842 +PW 0 +SE +ET UN +ID 1376 +TI 1771360827.444675507 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 1377 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.597555) +BD GR Veto +PQ 0.0015598 +SE +ET PH +ID 1378 +TI 1771360827.445690557 +CC NStripHits 2 +PE 127.17 +PP 2.6072 0.268327 -4.30858 +PW 0 +SE +ET PH +ID 1379 +TI 1771360827.447372774 +CC NStripHits 4 +PE 357.966 +PP 0.0462656 -0.278498 2.44298 +PW 0 +SE +ET PH +ID 1380 +TI 1771360827.447732090 +CC NStripHits 3 +PE 93.6689 +PP -1.00139 -0.951309 2.21017 +PW 0 +SE +ET UN +ID 1381 +TI 1771360827.449411424 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.7531 +SE +ET UN +ID 1382 +TI 1771360827.449784324 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 101.976 +SE +ET PH +ID 1383 +TI 1771360827.450132790 +CC NStripHits 2 +PE 145.752 +PP 1.79236 -1.04182 1.27892 +PW 0 +SE +ET PH +ID 1384 +TI 1771360827.450509474 +CC NStripHits 2 +PE 72.279 +PP 3.88767 0.0176752 1.62814 +PW 0 +SE +ET PH +ID 1385 +TI 1771360827.451086174 +CC NStripHits 2 +PE 47.8356 +PP 3.53845 0.381107 -3.49373 +PW 0 +SE +ET UN +ID 1386 +TI 1771360827.451775274 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.047 +SE +ET UN +ID 1387 +TI 1771360827.451928257 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 284.541 +SE +ET PH +ID 1388 +TI 1771360827.452374040 +CC NStripHits 4 +PE 151.981 +PP 2.14158 -0.979957 -4.19217 +PW 0 +SE +ET CO +ID 1389 +TI 1771360827.452695457 +CC NStripHits 4 +PQ 8.9913 +SQ 2 +CT 0 1 +TL 1 +TE 61.2981 +CE 121.897 1.4068 61.2981 1.00451 +CD 3.30564 -1.08487 -2.56248 0.0336036 0.0219099 0.0336036 3.07283 -0.890777 -2.67889 0.0336036 0.0200533 0.0336036 0 0 0 0 0 0 +LA 0.32469 +SE +ET UN +ID 1390 +TI 1771360827.453559024 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 1391 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.017356) +BD GR Veto +PQ 0.0400458 +SE +ET PH +ID 1392 +TI 1771360827.456418190 +CC NStripHits 2 +PE 30.6921 +PP 1.44314 0.243713 0.114859 +PW 0 +SE +ET CO +ID 1393 +TI 1771360827.457125874 +CC NStripHits 4 +PQ 0.363305 +SQ 2 +CT 0.595806 0.404194 +TL 1 +TE 217.717 +CE 167.477 1.00162 217.717 0.98038 +CD -1.69983 -0.484345 -2.67889 0.0336036 0.0235893 0.0336036 -1.93264 -0.594986 -2.7953 0.0336036 0.0228495 0.0336036 0 0 0 0 0 0 +LA 0.282831 +SE +ET PH +ID 1394 +TI 1771360827.457197840 +CC NStripHits 2 +PE 31.6131 +PP -1.93264 0.232119 -3.14452 +PW 0 +SE +ET PH +ID 1395 +TI 1771360827.460645307 +CC NStripHits 2 +PE 52.7391 +PP 2.25798 0.327682 0.231266 +PW 0 +SE +ET PH +ID 1396 +TI 1771360827.462806557 +CC NStripHits 2 +PE 47.5692 +PP 2.6072 0.254861 1.97736 +PW 0 +SE +ET PH +ID 1397 +TI 1771360827.467450741 +CC NStripHits 2 +PE 30.6873 +PP -1.00139 -0.0181649 -1.28202 +PW 0 +SE +ID 1398 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (33.389923)) (GR Hit: Detector ID 0 and Energy 80.364599) +BD GR Veto +PQ 33.3899 +SE +ET PH +ID 1399 +TI 1771360827.468103774 +CC NStripHits 3 +PE 79.3192 +PP 1.79236 0.197364 -3.95936 +PW 0 +SE +ET PH +ID 1400 +TI 1771360827.469257624 +CC NStripHits 3 +PE 80.4464 +PP 0.0462656 0.082818 0.114859 +PW 0 +SE +ET PH +ID 1401 +TI 1771360827.469936741 +CC NStripHits 2 +PE 149.181 +PP 1.44314 0.316792 -2.56248 +PW 0 +SE +ET PH +ID 1402 +TI 1771360827.471192624 +CC NStripHits 2 +PE 80.5516 +PP 2.25798 -0.354286 -0.350766 +PW 0 +SE +ET PH +ID 1403 +TI 1771360827.473091741 +CC NStripHits 2 +PE 78.4092 +PP -1.1178 0.192978 -3.02811 +PW 0 +SE +ID 1404 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.815024) +BD GR Veto +PQ 0.0561631 +SE +ET UN +ID 1405 +TI 1771360827.476562057 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1406 +TI 1771360827.477977191 +CC NStripHits 2 +PE 30.4335 +PP -0.535766 0.336456 -0.699984 +PW 0 +SE +ET PH +ID 1407 +TI 1771360827.478129024 +CC NStripHits 2 +PE 24.2868 +PP -0.884984 -0.394875 2.09377 +PW 0 +SE +ET PH +ID 1408 +TI 1771360827.478602474 +CC NStripHits 3 +PE 112.286 +PP -2.04905 -0.159796 -1.39842 +PW 0 +SE +ET PH +ID 1409 +TI 1771360827.481599508 +CC NStripHits 2 +PE 81.7777 +PP -0.302953 0.374678 -3.26092 +PW 0 +SE +ET PH +ID 1410 +TI 1771360827.481832591 +CC NStripHits 3 +PE 79.7636 +PP -1.2342 0.27677 -2.44608 +PW 0 +SE +ET CO +ID 1411 +TI 1771360827.482089558 +CC NStripHits 5 +PQ 1.32884 +SQ 2 +CT 0 1 +TL 1 +TE 63.2283 +CE 214.148 1.13766 63.2283 0.997003 +CD 1.09392 0.220312 -0.117953 0.0336036 0.0332765 0.0336036 -1.2342 -0.953439 0.696891 0.0336036 0.019592 0.0336036 0 0 0 0 0 0 +LA 2.73163 +SE +ET PH +ID 1412 +TI 1771360827.482495174 +CC NStripHits 2 +PE 157.98 +PP 0.162672 -0.770625 -1.28202 +PW 0 +SE +ID 1413 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1414 +TI 1771360827.483335141 +CC NStripHits 4 +PE 359.714 +PP -2.39827 -0.216897 0.813297 +PW 0 +SE +ID 1415 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 1416 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1417 +TI 1771360827.486704508 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1418 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 107.836152) +BD GR Veto +PQ 14.997 +SE +ET PH +ID 1419 +TI 1771360827.487864924 +CC NStripHits 3 +PE 81.7341 +PP 2.02517 0.0667755 -0.234359 +PW 0 +SE +ID 1420 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 24.741404) +BD GR Veto +PQ 0.00287695 +SE +ET PH +ID 1421 +TI 1771360827.489921791 +CC NStripHits 2 +PE 38.1771 +PP 3.53845 -1.12748 1.97736 +PW 0 +SE +ID 1422 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.523134) +BD GR Veto +PQ 0.847922 +SE +ET PH +ID 1423 +TI 1771360827.490348091 +CC NStripHits 2 +PE 80.6872 +PP 1.79236 0.350942 0.696891 +PW 0 +SE +ET PH +ID 1424 +TI 1771360827.490903241 +CC NStripHits 2 +PE 138.09 +PP 1.67595 0.0306484 -0.117953 +PW 0 +SE +ET UN +ID 1425 +TI 1771360827.491237141 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 1426 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ET UN +ID 1427 +TI 1771360827.493273108 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5604 +SE +ID 1428 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 276.927889) +BD GR Veto +PQ 0.0117336 +SE +ET UN +ID 1429 +TI 1771360827.496230474 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.045 +SE +ET PH +ID 1430 +TI 1771360827.497672591 +CC NStripHits 2 +PE 80.1332 +PP 4.3533 0.0437149 0.813297 +PW 0 +SE +ET UN +ID 1431 +TI 1771360827.498678074 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1432 +TI 1771360827.498969458 +CC NStripHits 2 +PE 148.062 +PP 2.95642 -0.637555 -3.49373 +PW 0 +SE +ET PH +ID 1433 +TI 1771360827.499498591 +CC NStripHits 3 +PE 106.764 +PP -1.2342 0.169739 -1.16561 +PW 0 +SE +ID 1434 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.505316) +BD GR Veto +PQ 0.0156718 +SE +ID 1435 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.445359) +BD GR Veto +PQ +SE +ET PH +ID 1436 +TI 1771360827.502263708 +CC NStripHits 2 +PE 158.769 +PP 4.3533 -0.177486 -2.67889 +PW 0 +SE +ID 1437 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 92.178619) +BD GR Veto +PQ 0.0652146 +SE +ET PH +ID 1438 +TI 1771360827.504756391 +CC NStripHits 2 +PE 382.951 +PP 0.744703 0.334883 1.74455 +PW 0 +SE +ID 1439 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.840068) +BD GR Veto +PQ 0.00694325 +SE +ET UN +ID 1440 +TI 1771360827.507215591 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 142.964 +SE +ET PH +ID 1441 +TI 1771360827.507699975 +CC NStripHits 3 +PE 120.472 +PP 1.90877 -0.118845 -4.6578 +PW 0 +SE +ET PH +ID 1442 +TI 1771360827.509247141 +CC NStripHits 2 +PE 83.9126 +PP 1.44314 0.211491 -0.816391 +PW 0 +SE +ET PH +ID 1443 +TI 1771360827.511301258 +CC NStripHits 2 +PE 166.14 +PP 3.07283 -0.612039 0.347672 +PW 0 +SE +ET PH +ID 1444 +TI 1771360827.511468875 +CC NStripHits 2 +PE 78.0412 +PP 0.395484 -1.17632 -4.42498 +PW 0 +SE +ET UN +ID 1445 +TI 1771360827.511606775 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 55.3936 +SE +ET CO +ID 1446 +TI 1771360827.513256958 +CC NStripHits 6 +PQ 0.420096 +SQ 3 +CT 0.050951 0.251289 +TL 1 +TE 125.828 +CE 176.646 1.41668 125.828 0.983858 +CD -0.884984 0.33163 -1.28202 0.0336036 0.0388846 0.0336036 -0.419359 0.378828 -1.74764 0.0336036 0.0165587 0.0336036 0 0 0 0 0 0 +LA 0.341998 +SE +ET UN +ID 1447 +TI 1771360827.513515558 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.5686 +SE +ET UN +ID 1448 +TI 1771360827.516879591 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1449 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET PH +ID 1450 +TI 1771360827.520265375 +CC NStripHits 3 +PE 187.926 +PP -1.1178 -0.144853 -3.84295 +PW 0 +SE +ET UN +ID 1451 +TI 1771360827.523412225 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.1411 +SE +ET PH +ID 1452 +TI 1771360827.524348942 +CC NStripHits 3 +PE 354.96 +PP 4.12048 -0.563488 1.62814 +PW 0 +SE +ET PH +ID 1453 +TI 1771360827.525008642 +CC NStripHits 2 +PE 196.505 +PP 1.90877 -0.310447 0.813297 +PW 0 +SE +ID 1454 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 215.115483) +BD GR Veto +PQ 0.00186083 +SE +ID 1455 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.280164) +QA StripPairing (Best reduced chi square is not below 25 (58.554780)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 111.106895) +BD GR Veto +PQ 58.5548 +SE +ET UN +ID 1456 +TI 1771360827.528250908 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1457 +TI 1771360827.531894558 +CC NStripHits 4 +PE 302.689 +PP 3.30564 -0.456434 -2.67889 +PW 0 +SE +ET PH +ID 1458 +TI 1771360827.534906142 +CC NStripHits 2 +PE 79.878 +PP -1.58342 0.294826 -1.74764 +PW 0 +SE +ID 1459 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 144.946561) +BD GR Veto +PQ 0.00038644 +SE +ET UN +ID 1460 +TI 1771360827.540433909 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8212 +SE +ID 1461 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (56.002346)) (GR Hit: Detector ID 0 and Energy 99.169017) +BD GR Veto +PQ 56.0023 +SE +ET PH +ID 1462 +TI 1771360827.542169575 +CC NStripHits 3 +PE 84.4372 +PP 2.72361 0.0868559 -1.28202 +PW 0 +SE +ET UN +ID 1463 +TI 1771360827.545603392 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6624 +SE +ET PH +ID 1464 +TI 1771360827.546061175 +CC NStripHits 2 +PE 66.9031 +PP 4.12048 0.205712 0.813297 +PW 0 +SE +ET UN +ID 1465 +TI 1771360827.547196492 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 358.463 +SE +ET PH +ID 1466 +TI 1771360827.549742525 +CC NStripHits 3 +PE 360.809 +PP -2.63108 -0.427781 -0.699984 +PW 0 +SE +ET UN +ID 1467 +TI 1771360827.550930709 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 68.4768 +SE +ET PH +ID 1468 +TI 1771360827.551765059 +CC NStripHits 2 +PE 127.372 +PP 0.162672 -0.342404 -2.09686 +PW 0 +SE +ET PH +ID 1469 +TI 1771360827.553513775 +CC NStripHits 2 +PE 66.8505 +PP -1.1178 0.194306 1.74455 +PW 0 +SE +ET UN +ID 1470 +TI 1771360827.553793442 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1423 +SE +ET PH +ID 1471 +TI 1771360827.554237959 +CC NStripHits 4 +PE 217.816 +PP 0.279078 -1.09725 -3.72655 +PW 0 +SE +ET PH +ID 1472 +TI 1771360827.554388675 +CC NStripHits 2 +PE 356.274 +PP -0.884984 0.120094 0.114859 +PW 0 +SE +ET PH +ID 1473 +TI 1771360827.555479692 +CC NStripHits 3 +PE 101.233 +PP 0.977516 -0.0835765 1.27892 +PW 0 +SE +ET PH +ID 1474 +TI 1771360827.556539542 +CC NStripHits 3 +PE 166.022 +PP -1.00139 -0.767775 -3.02811 +PW 0 +SE +ID 1475 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.651947) (Strip hit removed with energy 12.409385) +QA StripPairing (GR Hit: Detector ID 0 and Energy 133.734088) +BD GR Veto +PQ 0.0348584 +SE +ET PH +ID 1476 +TI 1771360827.557621242 +CC NStripHits 2 +PE 83.366 +PP 0.279078 0.273171 0.929703 +PW 0 +SE +ID 1477 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 90.789179) +BD GR Veto +PQ 0.0237505 +SE +ET PH +ID 1478 +TI 1771360827.559053375 +CC NStripHits 2 +PE 114.701 +PP 3.77127 -0.54528 -3.95936 +PW 0 +SE +ET CO +ID 1479 +TI 1771360827.560748892 +CC NStripHits 6 +PQ 13.8535 +SQ 3 +CT 0.00184877 0.00355292 +TL 1 +TE 34.0749 +CE 300.393 2.0824 34.0749 1.40133 +CD 1.67595 -0.7755 -0.350766 0.0336036 0.0212563 0.0336036 1.55955 -0.736435 0.347672 0.0336036 0.0218417 0.0336036 0 0 0 0 0 0 +LA 0.709148 +SE +ET PH +ID 1480 +TI 1771360827.560997776 +CC NStripHits 2 +PE 73.5462 +PP 3.88767 0.372172 0.464078 +PW 0 +SE +ET UN +ID 1481 +TI 1771360827.561305576 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1482 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET PH +ID 1483 +TI 1771360827.562127392 +CC NStripHits 2 +PE 152.748 +PP -1.69983 -1.00632 -0.816391 +PW 0 +SE +ET PH +ID 1484 +TI 1771360827.563255976 +CC NStripHits 3 +PE 91.7137 +PP 4.00408 0.354694 -3.84295 +PW 0 +SE +ET UN +ID 1485 +TI 1771360827.563453876 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.4271 +SE +ET PH +ID 1486 +TI 1771360827.564395692 +CC NStripHits 2 +PE 133.897 +PP 3.88767 -0.762374 -0.816391 +PW 0 +SE +ET UN +ID 1487 +TI 1771360827.564567526 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 56.8156 +SE +ET UN +ID 1488 +TI 1771360827.564717759 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 184.468 +SE +ET UN +ID 1489 +TI 1771360827.565290759 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.4401 +SE +ET PH +ID 1490 +TI 1771360827.567042042 +CC NStripHits 3 +PE 73.9181 +PP -0.0701406 -0.560329 -3.14452 +PW 0 +SE +ET PH +ID 1491 +TI 1771360827.567138409 +CC NStripHits 2 +PE 50.9522 +PP -1.2342 0.366959 -0.350766 +PW 0 +SE +ID 1492 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.604542) +BD GR Veto +PQ 0.216512 +SE +ET CO +ID 1493 +TI 1771360827.569387226 +CC NStripHits 6 +PQ 0.157049 +SQ 2 +CT 0 1 +TL 1 +TE 53.0231 +CE 223.991 1.36628 53.0231 0.9876 +CD -2.63108 0.0219759 0.696891 0.0336036 0.0278499 0.0336036 -2.39827 -0.62615 1.16252 0.0336036 0.0226729 0.0336036 0 0 0 0 0 0 +LA 0.831311 +SE +ET UN +ID 1494 +TI 1771360827.570878209 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.4162 +SE +ET PH +ID 1495 +TI 1771360827.572149592 +CC NStripHits 2 +PE 80.185 +PP -1.93264 0.318724 -4.07577 +PW 0 +SE +ET UN +ID 1496 +TI 1771360827.576314976 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1497 +TI 1771360827.577810626 +CC NStripHits 4 +PE 356.23 +PP -0.419359 -0.471212 -2.21327 +PW 0 +SE +ID 1498 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1499 +TI 1771360827.579108209 +CC NStripHits 2 +PE 63.7277 +PP 0.395484 0.298694 -4.07577 +PW 0 +SE +ID 1500 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 88.941266) +BD GR Veto +PQ 0.207235 +SE +ET UN +ID 1501 +TI 1771360827.580595443 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 247.406 +SE +ET UN +ID 1502 +TI 1771360827.581161159 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4784 +SE +ET PH +ID 1503 +TI 1771360827.581753626 +CC NStripHits 2 +PE 68.1043 +PP 1.55955 0.34986 -0.816391 +PW 0 +SE +ET PH +ID 1504 +TI 1771360827.582563959 +CC NStripHits 2 +PE 29.8654 +PP -1.93264 -0.296583 1.74455 +PW 0 +SE +ID 1505 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1506 +TI 1771360827.583930843 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1507 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.955020) +BD GR Veto +PQ +SE +ET UN +ID 1508 +TI 1771360827.585133143 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6285 +SE +ET PH +ID 1509 +TI 1771360827.587247626 +CC NStripHits 3 +PE 156.189 +PP 1.67595 0.36203 -3.72655 +PW 0 +SE +ET UN +ID 1510 +TI 1771360827.587605959 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 174.699 +SE +ET UN +ID 1511 +TI 1771360827.587653576 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1512 +TI 1771360827.588560843 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 134.212 +SE +ID 1513 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (26.694609)) (GR Hit: Detector ID 0 and Energy 87.395558) +BD GR Veto +PQ 26.6946 +SE +ET PH +ID 1514 +TI 1771360827.591797826 +CC NStripHits 3 +PE 145.696 +PP -2.28186 0.101733 1.16252 +PW 0 +SE +ET PH +ID 1515 +TI 1771360827.592013143 +CC NStripHits 3 +PE 81.5975 +PP 0.0462656 -0.286045 -2.44608 +PW 0 +SE +ID 1516 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.122698) +BD GR Veto +PQ 0.00333076 +SE +ET UN +ID 1517 +TI 1771360827.592349543 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 169.115 +SE +ID 1518 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.752938) +BD GR Veto +PQ +SE +ET CO +ID 1519 +TI 1771360827.596207626 +CC NStripHits 6 +PQ 12.0102 +SQ 3 +CT 0.059628 0.577003 +TL 1 +TE 72.7423 +CE 129.392 1.76193 72.7423 0.972894 +CD -2.86389 -0.600057 -1.28202 0.0336036 0.0228259 0.0336036 -1.81623 -0.8787 0.347672 0.0336036 0.0201764 0.0336036 0 0 0 0 0 0 +LA 1.71878 +SE +ET PH +ID 1520 +TI 1771360827.597900176 +CC NStripHits 4 +PE 121.04 +PP -0.419359 -0.97543 -4.54139 +PW 0 +SE +ID 1521 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.849481) +BD GR Veto +PQ 0.358488 +SE +ET PH +ID 1522 +TI 1771360827.598479209 +CC NStripHits 5 +PE 276.125 +PP -2.28186 -0.537516 2.21017 +PW 0 +SE +ET UN +ID 1523 +TI 1771360827.598645859 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1524 +TI 1771360827.600632060 +CC NStripHits 2 +PE 80.6519 +PP 2.25798 0.205819 1.27892 +PW 0 +SE +ID 1525 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.042279) +BD GR Veto +PQ 0.062087 +SE +ET CO +ID 1526 +TI 1771360827.605890526 +CC NStripHits 5 +PQ 4.88376 +SQ 2 +CT 0 1 +TL 1 +TE 71.5289 +CE 116.778 2.05414 71.5289 1.47498 +CD 3.65486 -0.422232 -3.14452 0.0336036 0.024182 0.0336036 3.77127 -0.211279 -1.74764 0.0336036 0.025771 0.0336036 0 0 0 0 0 0 +LA 1.41751 +SE +ET PH +ID 1527 +TI 1771360827.607835610 +CC NStripHits 2 +PE 246.053 +PP 3.42205 0.369525 -4.42498 +PW 0 +SE +ET PH +ID 1528 +TI 1771360827.609471460 +CC NStripHits 2 +PE 68.5272 +PP 0.511891 0.23138 1.74455 +PW 0 +SE +ID 1529 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ET PH +ID 1530 +TI 1771360827.611217360 +CC NStripHits 2 +PE 111.54 +PP -2.04905 0.346306 -1.98045 +PW 0 +SE +ET PH +ID 1531 +TI 1771360827.611441143 +CC NStripHits 2 +PE 83.3005 +PP 0.977516 0.264327 -4.19217 +PW 0 +SE +ID 1532 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 196.406647) +BD GR Veto +PQ 0.989741 +SE +ET PH +ID 1533 +TI 1771360827.615034610 +CC NStripHits 2 +PE 80.2944 +PP 0.861109 0.338943 -2.21327 +PW 0 +SE +ET PH +ID 1534 +TI 1771360827.619262610 +CC NStripHits 3 +PE 358.16 +PP -0.884984 -0.730295 -2.56248 +PW 0 +SE +ID 1535 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (72.800119)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 92.370565)) (GR Hit: Detector ID 0 and Energy 299.950312) +BD GR Veto +PQ 72.8001 +SE +ET UN +ID 1536 +TI 1771360827.619939626 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 279.811 +SE +ET PH +ID 1537 +TI 1771360827.620089277 +CC NStripHits 3 +PE 183.653 +PP -0.419359 -0.0932742 -0.699984 +PW 0 +SE +ET CO +ID 1538 +TI 1771360827.621005977 +CC NStripHits 4 +PQ 27.5672 +SQ 2 +CT 0 1 +TL 1 +TE 136.65 +CE 210.837 1.49805 136.65 1.46287 +CD -0.186547 -0.653807 2.44298 0.0336036 0.0225308 0.0336036 -0.0701406 -0.66165 -1.28202 0.0336036 0.0224891 0.0336036 0 0 0 0 0 0 +LA 3.72683 +SE +ET UN +ID 1539 +TI 1771360827.621894260 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1540 +TI 1771360827.623497993 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.3166 +SE +ET CO +ID 1541 +TI 1771360827.625695977 +CC NStripHits 6 +PQ 0.086508 +SQ 2 +CT 0 1 +TL 1 +TE 94.4086 +CE 142.206 1.21048 94.4086 1.1598 +CD 3.77127 0.0947841 1.16252 0.0336036 0.0288111 0.0336036 4.00408 0.109231 1.62814 0.0336036 0.0290959 0.0336036 0 0 0 0 0 0 +LA 0.520779 +SE +ET UN +ID 1542 +TI 1771360827.626093243 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.5529 +SE +ET PH +ID 1543 +TI 1771360827.627246493 +CC NStripHits 2 +PE 45.8156 +PP -0.535766 -1.11108 -1.63123 +PW 0 +SE +ET UN +ID 1544 +TI 1771360827.630368310 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.3891 +SE +ET PH +ID 1545 +TI 1771360827.633180760 +CC NStripHits 2 +PE 142.125 +PP -0.652172 0.333842 1.04611 +PW 0 +SE +ET PH +ID 1546 +TI 1771360827.633442443 +CC NStripHits 2 +PE 203.831 +PP 3.77127 -0.186468 -1.63123 +PW 0 +SE +ET CO +ID 1547 +TI 1771360827.635178260 +CC NStripHits 7 +PQ 0.058323 +SQ 3 +CT 0.318879 1.45375 +TL 1 +TE 53.2495 +CE 240.813 1.53504 53.2495 1.0029 +CD 2.37439 0.347302 -3.37733 0.0336036 0.034268 0.0336036 1.67595 0.118096 -3.61014 0.0336036 0.0292821 0.0336036 0 0 0 0 0 0 +LA 0.771073 +SE +ET PH +ID 1548 +TI 1771360827.635534710 +CC NStripHits 2 +PE 64.633 +PP 2.6072 -1.17495 -0.699984 +PW 0 +SE +ET PH +ID 1549 +TI 1771360827.637378927 +CC NStripHits 2 +PE 142.608 +PP -2.04905 0.0852402 -1.51483 +PW 0 +SE +ET UN +ID 1550 +TI 1771360827.638355110 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.3006 +SE +ET UN +ID 1551 +TI 1771360827.638515293 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1552 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.254703)) (GR Hit: Detector ID 0 and Energy 299.102145) +BD GR Veto +PQ 5.37994 +SE +ET PH +ID 1553 +TI 1771360827.641808794 +CC NStripHits 2 +PE 80.1452 +PP 3.07283 0.175875 -1.63123 +PW 0 +SE +ET PH +ID 1554 +TI 1771360827.644735444 +CC NStripHits 2 +PE 79.6892 +PP -0.884984 0.166005 2.44298 +PW 0 +SE +ET PH +ID 1555 +TI 1771360827.645040394 +CC NStripHits 2 +PE 187.92 +PP -0.768578 0.364662 -4.30858 +PW 0 +SE +ET PH +ID 1556 +TI 1771360827.645218477 +CC NStripHits 2 +PE 80.028 +PP 0.977516 0.121625 -3.49373 +PW 0 +SE +ID 1557 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.907214) +BD GR Veto +PQ 0.491859 +SE +ET UN +ID 1558 +TI 1771360827.649687594 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1092 +SE +ID 1559 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1560 +TI 1771360827.653559410 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1561 +TI 1771360827.654559277 +CC NStripHits 2 +PE 79.3554 +PP -2.39827 0.246179 1.39533 +PW 0 +SE +ID 1562 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.048898) +BD GR Veto +PQ 0.183164 +SE +ET UN +ID 1563 +TI 1771360827.657276827 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1564 +TI 1771360827.658228244 +CC NStripHits 2 +PE 66.6427 +PP 0.511891 0.318495 -0.816391 +PW 0 +SE +ET PH +ID 1565 +TI 1771360827.658351560 +CC NStripHits 2 +PE 81.9213 +PP 2.4908 0.146957 -3.26092 +PW 0 +SE +ET CO +ID 1566 +TI 1771360827.659760410 +CC NStripHits 4 +PQ 20.3012 +SQ 2 +CT 0.604443 0.395557 +TL 1 +TE 277.758 +CE 169.596 1.03728 277.758 1.53153 +CD -1.46702 0.350088 1.74455 0.0336036 0.0331796 0.0336036 -2.16545 -0.248595 1.86095 0.0336036 0.025477 0.0336036 0 0 0 0 0 0 +LA 0.92724 +SE +ET UN +ID 1567 +TI 1771360827.660200594 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 21.7112 +SE +ET UN +ID 1568 +TI 1771360827.661847777 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1569 +TI 1771360827.664541561 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1327 +SE +ET UN +ID 1570 +TI 1771360827.665268294 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1571 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.270524) +BD GR Veto +PQ 0.378244 +SE +ID 1572 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ 3.80639e-07 +SE +ET CO +ID 1573 +TI 1771360827.669140277 +CC NStripHits 6 +PQ 1.53116 +SQ 2 +CT 0 1 +TL 1 +TE 66.4734 +CE 208.018 1.43897 66.4734 1.01029 +CD 0.861109 0.256271 1.16252 0.0336036 0.0373955 0.0336036 -0.186547 -0.413863 1.74455 0.0336036 0.0242667 0.0336036 0 0 0 0 0 0 +LA 1.37311 +SE +ID 1574 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 94.219552) +BD GR Veto +PQ 0.0665438 +SE +ET PH +ID 1575 +TI 1771360827.670123111 +CC NStripHits 2 +PE 56.6425 +PP -1.46702 0.381347 -1.51483 +PW 0 +SE +ET UN +ID 1576 +TI 1771360827.672279077 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8075 +SE +ID 1577 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.023637) +BD GR Veto +PQ 0.207225 +SE +ID 1578 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (222.409915)) (GR Hit: Detector ID 0 and Energy 174.737127) +BD GR Veto +PQ 222.41 +SE +ET UN +ID 1579 +TI 1771360827.675647661 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 1580 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 188.092056) (GR Hit: Detector ID 0 and Energy 167.961333) +BD GR Veto +PQ 0.12086 +SE +ET PH +ID 1581 +TI 1771360827.677010261 +CC NStripHits 2 +PE 155.509 +PP 3.88767 -0.320076 -4.19217 +PW 0 +SE +ET UN +ID 1582 +TI 1771360827.677781761 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.9314 +SE +ET PH +ID 1583 +TI 1771360827.678032794 +CC NStripHits 2 +PE 96.0083 +PP 0.744703 0.360449 -0.583578 +PW 0 +SE +ET CO +ID 1584 +TI 1771360827.679694961 +CC NStripHits 7 +PQ 0.184862 +SQ 3 +CT 0.00450596 0.0727037 +TL 1 +TE 109.034 +CE 246.319 1.60256 109.034 0.998799 +CD -1.00139 0.212578 -4.42498 0.0336036 0.0327088 0.0336036 -0.0701406 -0.337275 -3.95936 0.0336036 0.0249447 0.0336036 0 0 0 0 0 0 +LA 0.708924 +SE +ET UN +ID 1585 +TI 1771360827.680262744 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1586 +TI 1771360827.680430128 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6925 +SE +ID 1587 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 109.900184) +BD GR Veto +PQ 0.226522 +SE +ET UN +ID 1588 +TI 1771360827.681210161 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1589 +TI 1771360827.682008844 +CC NStripHits 4 +PE 354.066 +PP -2.16545 -0.682026 -0.467172 +PW 0 +SE +ID 1590 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.283447) +BD GR Veto +PQ 0.0459629 +SE +ID 1591 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 1592 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ID 1593 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.935700) +BD GR Veto +PQ +SE +ID 1594 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.772253) +BD GR Veto +PQ +SE +ID 1595 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ +SE +ET UN +ID 1596 +TI 1771360827.686644028 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 302.989 +SE +ID 1597 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.890847) +BD GR Veto +PQ 7.71708e-06 +SE +ET UN +ID 1598 +TI 1771360827.688105811 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1599 +TI 1771360827.688616894 +CC NStripHits 2 +PE 70.6451 +PP -1.69983 0.282804 -3.61014 +PW 0 +SE +ET CO +ID 1600 +TI 1771360827.689373394 +CC NStripHits 6 +PQ 10.642 +SQ 2 +CT 0.521768 0.478232 +TL 1 +TE 179.322 +CE 163.107 1.44452 179.322 1.20757 +CD 3.30564 -0.390065 0.347672 0.0336036 0.0245454 0.0336036 2.4908 -0.255918 0.929703 0.0336036 0.0254349 0.0336036 0 0 0 0 0 0 +LA 1.01031 +SE +ET UN +ID 1601 +TI 1771360827.690352061 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 4 +PE 83.6317 +SE +ET UN +ID 1602 +TI 1771360827.691089244 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 149.559 +SE +ET CO +ID 1603 +TI 1771360827.692074911 +CC NStripHits 6 +PQ 0.0623985 +SQ 2 +CT 0.652752 0.347248 +TL 1 +TE 381.949 +CE 259.611 1.15318 381.949 1.26601 +CD -2.74748 0.24988 -4.07577 0.0336036 0.0365099 0.0336036 -2.39827 -0.188136 -2.7953 0.0336036 0.0259458 0.0336036 0 0 0 0 0 0 +LA 1.39764 +SE +ID 1604 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ET UN +ID 1605 +TI 1771360827.693196978 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 21.3734 +SE +ET UN +ID 1606 +TI 1771360827.693701394 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.6902 +SE +ID 1607 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.128377) +BD GR Veto +PQ 0.119175 +SE +ET PH +ID 1608 +TI 1771360827.695402611 +CC NStripHits 2 +PE 120.781 +PP -0.884984 0.375948 -2.56248 +PW 0 +SE +ET PH +ID 1609 +TI 1771360827.695581494 +CC NStripHits 2 +PE 110.274 +PP 1.09392 -0.00405133 1.39533 +PW 0 +SE +ID 1610 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.904664) +BD GR Veto +PQ 0.0104258 +SE +ET UN +ID 1611 +TI 1771360827.697600344 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.6981 +SE +ID 1612 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 358.330953) +BD GR Veto +PQ 0.0426488 +SE +ET UN +ID 1613 +TI 1771360827.701061628 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.4517 +SE +ET PH +ID 1614 +TI 1771360827.703670995 +CC NStripHits 2 +PE 77.5697 +PP 4.00408 0.367051 -1.86405 +PW 0 +SE +ET UN +ID 1615 +TI 1771360827.703884861 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4812 +SE +ET PH +ID 1616 +TI 1771360827.704141878 +CC NStripHits 2 +PE 24.6835 +PP -2.16545 -0.957781 -3.37733 +PW 0 +SE +ET PH +ID 1617 +TI 1771360827.705387578 +CC NStripHits 2 +PE 73.5755 +PP 0.861109 -0.249605 -0.350766 +PW 0 +SE +ET UN +ID 1618 +TI 1771360827.707114411 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1619 +TI 1771360827.707735095 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8942 +SE +ET CO +ID 1620 +TI 1771360827.708928761 +CC NStripHits 4 +PQ 15.4852 +SQ 2 +CT 0 1 +TL 1 +TE 63.8713 +CE 120.873 1.01012 63.8713 1.32424 +CD -2.74748 -0.202975 -1.28202 0.0336036 0.025838 0.0336036 -2.86389 0.167097 -1.74764 0.0336036 0.0305792 0.0336036 0 0 0 0 0 0 +LA 0.606058 +SE +ET UN +ID 1621 +TI 1771360827.709505395 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 159.964 +SE +ET UN +ID 1622 +TI 1771360827.709940128 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.1204 +SE +ET PH +ID 1623 +TI 1771360827.710808428 +CC NStripHits 2 +PE 53.6044 +PP -1.93264 0.234385 -0.117953 +PW 0 +SE +ET PH +ID 1624 +TI 1771360827.711312945 +CC NStripHits 2 +PE 153.061 +PP 1.55955 0.145222 0.813297 +PW 0 +SE +ET PH +ID 1625 +TI 1771360827.711843361 +CC NStripHits 2 +PE 81.9901 +PP -0.419359 0.372161 -2.9117 +PW 0 +SE +ET PH +ID 1626 +TI 1771360827.714243328 +CC NStripHits 4 +PE 177.541 +PP -0.535766 0.132541 -0.117953 +PW 0 +SE +ET PH +ID 1627 +TI 1771360827.714518611 +CC NStripHits 2 +PE 63.8386 +PP 2.37439 0.367744 -2.21327 +PW 0 +SE +ET UN +ID 1628 +TI 1771360827.714767328 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 63.179 +SE +ET UN +ID 1629 +TI 1771360827.714907278 +BD DepthCalibrationError (Out of Range) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 352.667 +SE +ET CO +ID 1630 +TI 1771360827.717932311 +CC NStripHits 7 +PQ 54.9273 +SQ 3 +CT 0.0472985 0.112895 +TL 1 +TE 73.0583 +CE 592.802 1.82942 73.0583 1.46804 +CD 1.32673 -0.607732 0.929703 0.0336036 0.0227843 0.0336036 1.44314 -0.600441 0.580484 0.0336036 0.022824 0.0336036 0 0 0 0 0 0 +LA 0.368183 +SE +ET PH +ID 1631 +TI 1771360827.718581345 +CC NStripHits 2 +PE 63.1168 +PP 3.53845 0.152341 0.464078 +PW 0 +SE +ID 1632 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.647454) +BD GR Veto +PQ +SE +ID 1633 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.052635) +QA StripPairing (GR Hit: Detector ID 0 and Energy 40.245418) +BD GR Veto +PQ 7.1566 +SE +ET CO +ID 1634 +TI 1771360827.719523011 +CC NStripHits 4 +PQ 59.8295 +SQ 2 +CT 0 1 +TL 1 +TE 60.6467 +CE 143.606 1.61693 60.6467 1.43288 +CD 4.12048 0.0621453 -2.9117 0.0336036 0.0283258 0.0336036 4.23689 0.132689 -3.14452 0.0336036 0.0296058 0.0336036 0 0 0 0 0 0 +LA 0.26969 +SE +ET UN +ID 1635 +TI 1771360827.720587262 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.4028 +SE +ID 1636 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (36.176339)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 41.091229)) (GR Hit: Detector ID 0 and Energy 231.036245) +BD GR Veto +PQ 36.1763 +SE +ET PH +ID 1637 +TI 1771360827.722292645 +CC NStripHits 3 +PE 112.197 +PP -1.46702 0.106345 -3.72655 +PW 0 +SE +ET CO +ID 1638 +TI 1771360827.725048112 +CC NStripHits 5 +PQ 17.1598 +SQ 2 +CT 0 1 +TL 1 +TE 130.088 +CE 176.648 1.49461 130.088 1.00973 +CD 2.6072 -0.638803 2.6758 0.0336036 0.022606 0.0336036 2.02517 -0.546159 2.55939 0.0336036 0.0231391 0.0336036 0 0 0 0 0 0 +LA 0.600744 +SE +ET PH +ID 1639 +TI 1771360827.726695112 +CC NStripHits 2 +PE 89.8189 +PP 2.4908 -1.1568 2.6758 +PW 0 +SE +ET PH +ID 1640 +TI 1771360827.727820662 +CC NStripHits 2 +PE 81.3073 +PP -2.04905 0.366958 0.580484 +PW 0 +SE +ET PH +ID 1641 +TI 1771360827.728494778 +CC NStripHits 3 +PE 156.629 +PP -0.302953 0.310093 -3.95936 +PW 0 +SE +ET CO +ID 1642 +TI 1771360827.728916528 +CC NStripHits 4 +PQ 1.82181 +SQ 2 +CT 0 1 +TL 1 +TE 33.7578 +CE 170.815 1.024 33.7578 1.04463 +CD 1.44314 0.071162 -0.467172 0.0336036 0.0284417 0.0336036 1.79236 -0.188991 2.09377 0.0336036 0.0259398 0.0336036 0 0 0 0 0 0 +LA 2.5977 +SE +ET UN +ID 1643 +TI 1771360827.729699678 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1644 +TI 1771360827.729820828 +CC NStripHits 2 +PE 44.9335 +PP 3.77127 0.373913 -0.583578 +PW 0 +SE +ET PH +ID 1645 +TI 1771360827.734620878 +CC NStripHits 2 +PE 183.858 +PP 3.30564 -0.311167 -2.7953 +PW 0 +SE +ET CO +ID 1646 +TI 1771360827.735302428 +CC NStripHits 5 +PQ 10.1975 +SQ 2 +CT 0 1 +TL 1 +TE 84.905 +CE 277.917 1.9644 84.905 1.60742 +CD -0.652172 -0.38382 -4.07577 0.0336036 0.0245978 0.0336036 -0.419359 0.256315 -3.84295 0.0336036 0.0374017 0.0336036 0 0 0 0 0 0 +LA 0.719847 +SE +ET UN +ID 1647 +TI 1771360827.735643928 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.1909 +SE +ET CO +ID 1648 +TI 1771360827.736250462 +CC NStripHits 4 +PQ 10.8755 +SQ 2 +CT 0 1 +TL 1 +TE 100.599 +CE 250.446 1.47373 100.599 0.983303 +CD 2.72361 0.248059 -3.49373 0.0336036 0.0362649 0.0336036 2.4908 -0.139055 -3.14452 0.0336036 0.0264017 0.0336036 0 0 0 0 0 0 +LA 0.570969 +SE +ET PH +ID 1649 +TI 1771360827.737561178 +CC NStripHits 2 +PE 30.7579 +PP 4.00408 0.374987 1.62814 +PW 0 +SE +ET PH +ID 1650 +TI 1771360827.739858145 +CC NStripHits 2 +PE 297.46 +PP -0.186547 0.105666 -0.234359 +PW 0 +SE +ET UN +ID 1651 +TI 1771360827.741134229 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0837 +SE +ET UN +ID 1652 +TI 1771360827.742267079 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 71.6759 +SE +ET UN +ID 1653 +TI 1771360827.742820395 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 1654 +TI 1771360827.744194829 +CC NStripHits 6 +PQ 0.437545 +SQ 2 +CT 0 1 +TL 1 +TE 101.894 +CE 202.993 1.42762 101.894 1.04045 +CD 2.4908 -0.728415 -3.26092 0.0336036 0.0219413 0.0336036 2.72361 -0.579867 -3.14452 0.0336036 0.022913 0.0336036 0 0 0 0 0 0 +LA 0.299693 +SE +ET PH +ID 1655 +TI 1771360827.747138195 +CC NStripHits 2 +PE 52.8127 +PP -1.00139 0.254828 -0.350766 +PW 0 +SE +ET PH +ID 1656 +TI 1771360827.747545262 +CC NStripHits 3 +PE 80.6042 +PP -1.58342 -1.10407 -3.72655 +PW 0 +SE +ET UN +ID 1657 +TI 1771360827.750115962 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.0806 +SE +ET UN +ID 1658 +TI 1771360827.750924712 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.6842 +SE +ET PH +ID 1659 +TI 1771360827.752494929 +CC NStripHits 2 +PE 80.8865 +PP 2.72361 0.367282 -1.28202 +PW 0 +SE +ET PH +ID 1660 +TI 1771360827.753460779 +CC NStripHits 2 +PE 80.6833 +PP 1.32673 0.347033 -2.56248 +PW 0 +SE +ET UN +ID 1661 +TI 1771360827.754650612 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1662 +TI 1771360827.755209562 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1663 +TI 1771360827.755315679 +CC NStripHits 2 +PE 153.768 +PP -2.51467 -0.133178 -3.72655 +PW 0 +SE +ID 1664 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1665 +TI 1771360827.756673495 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 1666 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.286600) +QA StripPairing (GR Hit: Detector ID 0 and Energy 156.353853) +BD GR Veto +PQ 23.9827 +SE +ET UN +ID 1667 +TI 1771360827.758330662 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 77.6024 +SE +ET PH +ID 1668 +TI 1771360827.761268329 +CC NStripHits 2 +PE 59.3013 +PP -1.46702 0.328045 -2.9117 +PW 0 +SE +ET UN +ID 1669 +TI 1771360827.762499696 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5536 +SE +ET CO +ID 1670 +TI 1771360827.763113279 +CC NStripHits 6 +PQ 6.10756 +SQ 3 +CT 0.026686 0.0668443 +TL 1 +TE 157.975 +CE 203.879 1.77905 157.975 1.41642 +CD 1.32673 -0.361292 -2.67889 0.0336036 0.0247544 0.0336036 1.44314 -0.321768 -2.9117 0.0336036 0.0250332 0.0336036 0 0 0 0 0 0 +LA 0.263275 +SE +ID 1671 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.241711) +BD GR Veto +PQ 0.380486 +SE +ET PH +ID 1672 +TI 1771360827.764690246 +CC NStripHits 2 +PE 81.5493 +PP -1.58342 0.25446 -1.39842 +PW 0 +SE +ET PH +ID 1673 +TI 1771360827.765943512 +CC NStripHits 3 +PE 140.839 +PP 0.395484 0.356331 2.32658 +PW 0 +SE +ID 1674 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.612637) +BD GR Veto +PQ 0.552749 +SE +ET PH +ID 1675 +TI 1771360827.767050246 +CC NStripHits 3 +PE 355.263 +PP -2.74748 -0.239768 1.39533 +PW 0 +SE +ET PH +ID 1676 +TI 1771360827.768142596 +CC NStripHits 2 +PE 79.4054 +PP 1.44314 0.370128 2.32658 +PW 0 +SE +ET CO +ID 1677 +TI 1771360827.770939529 +CC NStripHits 4 +PQ 0.322304 +SQ 2 +CT 0 1 +TL 1 +TE 54.6565 +CE 133.415 1.0664 54.6565 1.03113 +CD 1.55955 0.377172 -0.467172 0.0336036 0.0177679 0.0336036 1.21033 0.341611 -1.39842 0.0336036 0.0362299 0.0336036 0 0 0 0 0 0 +LA 0.99521 +SE +ET PH +ID 1678 +TI 1771360827.773498696 +CC NStripHits 2 +PE 24.3171 +PP -1.35061 0.372679 -1.51483 +PW 0 +SE +ET PH +ID 1679 +TI 1771360827.774432112 +CC NStripHits 2 +PE 230.982 +PP -2.51467 -0.243153 -1.28202 +PW 0 +SE +ET PH +ID 1680 +TI 1771360827.777473112 +CC NStripHits 2 +PE 81.969 +PP 3.53845 0.356212 -1.63123 +PW 0 +SE +ET PH +ID 1681 +TI 1771360827.779535962 +CC NStripHits 3 +PE 170.877 +PP 2.4908 -0.10098 -2.9117 +PW 0 +SE +ET PH +ID 1682 +TI 1771360827.781357179 +CC NStripHits 2 +PE 27.1059 +PP 2.25798 -0.134283 -2.09686 +PW 0 +SE +ET PH +ID 1683 +TI 1771360827.781701746 +CC NStripHits 2 +PE 81.0696 +PP 2.02517 0.22509 -3.84295 +PW 0 +SE +ID 1684 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1685 +TI 1771360827.783871596 +CC NStripHits 2 +PE 195.888 +PP 1.67595 -0.595856 -2.21327 +PW 0 +SE +ET UN +ID 1686 +TI 1771360827.783974479 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1687 +TI 1771360827.784914679 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1688 +TI 1771360827.785810146 +CC NStripHits 3 +PE 112.765 +PP 1.09392 0.354445 0.696891 +PW 0 +SE +ET UN +ID 1689 +TI 1771360827.786319913 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 208.753 +SE +ET UN +ID 1690 +TI 1771360827.786918396 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9794 +SE +ET UN +ID 1691 +TI 1771360827.788768729 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1692 +TI 1771360827.788865179 +CC NStripHits 2 +PE 82.7122 +PP -2.9803 0.313956 -0.350766 +PW 0 +SE +ET PH +ID 1693 +TI 1771360827.791041596 +CC NStripHits 2 +PE 53.163 +PP 2.37439 -0.00595927 -3.84295 +PW 0 +SE +ID 1694 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 59.582538) +BD GR Veto +PQ 0.752376 +SE +ET PH +ID 1695 +TI 1771360827.791702863 +CC NStripHits 2 +PE 80.8392 +PP 2.95642 -0.145991 -0.234359 +PW 0 +SE +ET UN +ID 1696 +TI 1771360827.794556696 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 134.839 +SE +ET CO +ID 1697 +TI 1771360827.795018729 +CC NStripHits 9 +PQ 0.733486 +SQ 3 +CT 0.00639248 0.41255 +TL 1 +TE 29.1409 +CE 274.286 1.86129 29.1409 1.01125 +CD 1.44314 0.129275 1.86095 0.0336036 0.0295272 0.0336036 1.21033 -0.534556 2.44298 0.0336036 0.0232205 0.0336036 0 0 0 0 0 0 +LA 0.913034 +SE +ET UN +ID 1698 +TI 1771360827.796495463 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 356.552 +SE +ET UN +ID 1699 +TI 1771360827.796683546 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.2182 +SE +ET PH +ID 1700 +TI 1771360827.798326029 +CC NStripHits 2 +PE 80.4938 +PP -1.2342 0.356257 -1.74764 +PW 0 +SE +ID 1701 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1702 +TI 1771360827.802080046 +CC NStripHits 2 +PE 44.3092 +PP -0.302953 -0.328079 -4.30858 +PW 0 +SE +ET PH +ID 1703 +TI 1771360827.802475330 +CC NStripHits 2 +PE 82.1947 +PP -2.51467 0.331616 -0.234359 +PW 0 +SE +ET UN +ID 1704 +TI 1771360827.805944113 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.4163 +SE +ET UN +ID 1705 +TI 1771360827.806940930 +BD DepthCalibrationError (No calibration coefficients) +CC NStripHits 6 +PE 216.919 +SE +ET PH +ID 1706 +TI 1771360827.811041080 +CC NStripHits 2 +PE 82.5396 +PP -1.35061 0.032278 -0.699984 +PW 0 +SE +ID 1707 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.539787) +BD GR Veto +PQ 0.139788 +SE +ET PH +ID 1708 +TI 1771360827.815965796 +CC NStripHits 3 +PE 104.696 +PP 1.09392 -1.08179 0.464078 +PW 0 +SE +ET UN +ID 1709 +TI 1771360827.818025996 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1710 +TI 1771360827.818366980 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.9774 +SE +ET PH +ID 1711 +TI 1771360827.819272646 +CC NStripHits 2 +PE 57.2608 +PP 0.628297 0.00893836 1.86095 +PW 0 +SE +ID 1712 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.257067) +QA StripPairing (GR Hit: Detector ID 0 and Energy 44.069970) +BD GR Veto +PQ 1.95785 +SE +ET PH +ID 1713 +TI 1771360827.822702263 +CC NStripHits 2 +PE 82.6991 +PP 0.628297 -0.0497653 -3.61014 +PW 0 +SE +ET PH +ID 1714 +TI 1771360827.822977263 +CC NStripHits 3 +PE 81.543 +PP 1.79236 0.326103 -0.583578 +PW 0 +SE +ET PH +ID 1715 +TI 1771360827.823051180 +CC NStripHits 2 +PE 185.311 +PP 1.67595 -0.253015 2.21017 +PW 0 +SE +ET PH +ID 1716 +TI 1771360827.823537230 +CC NStripHits 3 +PE 91.6949 +PP 3.77127 -0.67165 -0.816391 +PW 0 +SE +ID 1717 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 95.735001) +BD GR Veto +PQ 18.5731 +SE +ET PH +ID 1718 +TI 1771360827.824627497 +CC NStripHits 6 +PE 180.686 +PP -1.81623 0.166127 -3.95936 +PW 0 +SE +ET PH +ID 1719 +TI 1771360827.827677047 +CC NStripHits 3 +PE 80.0911 +PP 3.65486 0.293201 -2.56248 +PW 0 +SE +ID 1720 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.192914) +BD GR Veto +PQ 0.028458 +SE +ID 1721 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 171.064154) +BD GR Veto +PQ 1.51883 +SE +ID 1722 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.819669) +BD GR Veto +PQ 0.00200512 +SE +ET UN +ID 1723 +TI 1771360827.836603313 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 165.207 +SE +ID 1724 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 103.603336) +BD GR Veto +PQ 0.479307 +SE +ET PH +ID 1725 +TI 1771360827.838855247 +CC NStripHits 2 +PE 70.3063 +PP 4.00408 -0.283117 -0.117953 +PW 0 +SE +ET CO +ID 1726 +TI 1771360827.839556180 +CC NStripHits 6 +PQ 0.882848 +SQ 2 +CT 0 1 +TL 1 +TE 146.978 +CE 207.534 1.40433 146.978 1.02837 +CD -1.1178 -0.527263 -0.234359 0.0336036 0.0232639 0.0336036 -2.63108 -0.762802 -0.00154687 0.0336036 0.0214561 0.0336036 0 0 0 0 0 0 +LA 1.5491 +SE +ET UN +ID 1727 +TI 1771360827.840873797 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 76.3753 +SE +ET PH +ID 1728 +TI 1771360827.841113747 +CC NStripHits 2 +PE 60.1854 +PP 2.02517 0.285346 2.32658 +PW 0 +SE +ET UN +ID 1729 +TI 1771360827.841221947 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 123.556 +SE +ET PH +ID 1730 +TI 1771360827.842203047 +CC NStripHits 2 +PE 78.1268 +PP -1.00139 0.329943 1.04611 +PW 0 +SE +ID 1731 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.719075) +BD GR Veto +PQ 0.200787 +SE +ET UN +ID 1732 +TI 1771360827.844393030 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8997 +SE +ET CO +ID 1733 +TI 1771360827.845985314 +CC NStripHits 6 +PQ 4.0845 +SQ 3 +CT 0.00148592 0.305487 +TL 1 +TE 67.2453 +CE 279.222 1.84473 67.2453 1.03561 +CD 2.72361 -0.00753792 -3.26092 0.0336036 0.0276127 0.0336036 2.6072 -0.292687 -3.61014 0.0336036 0.0252321 0.0336036 0 0 0 0 0 0 +LA 0.465635 +SE +ET PH +ID 1734 +TI 1771360827.852089447 +CC NStripHits 2 +PE 356.277 +PP -0.535766 0.0744183 -2.32967 +PW 0 +SE +ET PH +ID 1735 +TI 1771360827.853760464 +CC NStripHits 4 +PE 353.407 +PP 4.23689 -1.15704 -3.95936 +PW 0 +SE +ET UN +ID 1736 +TI 1771360827.853934064 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 1737 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1738 +TI 1771360827.856141630 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1739 +TI 1771360827.856280730 +CC NStripHits 3 +PE 112.637 +PP -2.63108 -0.710041 -3.49373 +PW 0 +SE +ET UN +ID 1740 +TI 1771360827.856513197 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1741 +TI 1771360827.858159514 +CC NStripHits 4 +PE 235.235 +PP 1.79236 0.153919 -1.74764 +PW 0 +SE +ID 1742 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.681091)) (GR Hit: Detector ID 0 and Energy 64.832156) +BD GR Veto +PQ 27.6811 +SE +ID 1743 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1744 +TI 1771360827.859760414 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.5559 +SE +ET UN +ID 1745 +TI 1771360827.861595981 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.8862 +SE +ET CO +ID 1746 +TI 1771360827.862222814 +CC NStripHits 4 +PQ 0.45058 +SQ 2 +CT 0.512129 0.487871 +TL 1 +TE 180.232 +CE 173.976 1.02092 180.232 1.05174 +CD -0.186547 -0.202822 1.74455 0.0336036 0.0258392 0.0336036 -0.419359 0.190784 2.32658 0.0336036 0.0315115 0.0336036 0 0 0 0 0 0 +LA 0.740193 +SE +ET PH +ID 1747 +TI 1771360827.862786564 +CC NStripHits 2 +PE 82.0916 +PP 0.744703 -1.10746 -0.117953 +PW 0 +SE +ET PH +ID 1748 +TI 1771360827.863153047 +CC NStripHits 2 +PE 223.482 +PP -1.2342 -0.523927 -3.14452 +PW 0 +SE +ET PH +ID 1749 +TI 1771360827.863610281 +CC NStripHits 4 +PE 304.054 +PP 1.90877 -0.482647 -4.07577 +PW 0 +SE +ET PH +ID 1750 +TI 1771360827.867879897 +CC NStripHits 2 +PE 155.37 +PP -1.69983 0.103747 2.32658 +PW 0 +SE +ID 1751 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 216.964195) +BD GR Veto +PQ 0.121167 +SE +ET UN +ID 1752 +TI 1771360827.869026064 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 210.388 +SE +ID 1753 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.966353) +BD GR Veto +PQ 0.159038 +SE +ET PH +ID 1754 +TI 1771360827.869646597 +CC NStripHits 3 +PE 80.5402 +PP -2.63108 0.011034 -1.28202 +PW 0 +SE +ID 1755 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 233.096805) +BD GR Veto +PQ 0.00442316 +SE +ET PH +ID 1756 +TI 1771360827.873285464 +CC NStripHits 2 +PE 53.6936 +PP 1.67595 0.378478 -0.117953 +PW 0 +SE +ET PH +ID 1757 +TI 1771360827.875296747 +CC NStripHits 2 +PE 81.8929 +PP 0.511891 -0.371843 -2.7953 +PW 0 +SE +ET PH +ID 1758 +TI 1771360827.877034731 +CC NStripHits 2 +PE 81.6037 +PP 0.162672 0.353735 2.32658 +PW 0 +SE +ET PH +ID 1759 +TI 1771360827.877714014 +CC NStripHits 2 +PE 148.342 +PP -0.884984 0.294942 -3.72655 +PW 0 +SE +ET UN +ID 1760 +TI 1771360827.880762431 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.2283 +SE +ET PH +ID 1761 +TI 1771360827.881107164 +CC NStripHits 3 +PE 80.6264 +PP -1.69983 0.35316 -2.21327 +PW 0 +SE +ID 1762 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.191525) +BD GR Veto +PQ 0.440577 +SE +ID 1763 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ID 1764 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1765 +TI 1771360827.883867131 +CC NStripHits 2 +PE 79.1219 +PP 3.88767 -0.134801 0.580484 +PW 0 +SE +ID 1766 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1767 +TI 1771360827.884435048 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7148 +SE +ID 1768 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.320564) +BD GR Veto +PQ +SE +ET CO +ID 1769 +TI 1771360827.885305714 +CC NStripHits 6 +PQ 3.70296 +SQ 3 +CT 0.0365398 0.0606885 +TL 1 +TE 42.3592 +CE 237.716 1.7709 42.3592 1.00638 +CD 2.84002 -0.564949 1.74455 0.0336036 0.0229975 0.0336036 3.42205 -0.664017 1.97736 0.0336036 0.022476 0.0336036 0 0 0 0 0 0 +LA 0.539727 +SE +ID 1770 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.320564) +BD GR Veto +PQ +SE +ID 1771 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ID 1772 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.993674) +BD GR Veto +PQ +SE +ET UN +ID 1773 +TI 1771360827.886279164 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 111.174 +SE +ET PH +ID 1774 +TI 1771360827.887078248 +CC NStripHits 6 +PE 356.82 +PP -1.81623 -0.264627 -0.234359 +PW 0 +SE +ET UN +ID 1775 +TI 1771360827.888911531 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 1776 +TI 1771360827.889591481 +CC NStripHits 5 +PQ 3.03121 +SQ 2 +CT 0 1 +TL 1 +TE 61.7253 +CE 128 1.19919 61.7253 1.44228 +CD 3.88767 -0.163898 -3.84295 0.0336036 0.0261479 0.0336036 4.00408 0.104536 -3.37733 0.0336036 0.0290001 0.0336036 0 0 0 0 0 0 +LA 0.549918 +SE +ET UN +ID 1777 +TI 1771360827.890188198 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4853 +SE +ET PH +ID 1778 +TI 1771360827.890756814 +CC NStripHits 2 +PE 122.867 +PP -1.69983 0.365823 -3.61014 +PW 0 +SE +ET PH +ID 1779 +TI 1771360827.891875764 +CC NStripHits 3 +PE 302.829 +PP -0.768578 -0.558311 2.32658 +PW 0 +SE +ET CO +ID 1780 +TI 1771360827.892415164 +CC NStripHits 4 +PQ 0.101166 +SQ 2 +CT 0.525529 0.474471 +TL 1 +TE 194.416 +CE 178.657 1.04764 194.416 1.05337 +CD 1.55955 -1.13516 -0.467172 0.0336036 0.0281394 0.0336036 3.07283 -1.07295 0.347672 0.0336036 0.0209395 0.0336036 0 0 0 0 0 0 +LA 1.71984 +SE +ET PH +ID 1781 +TI 1771360827.892612664 +CC NStripHits 2 +PE 79.695 +PP -1.35061 0.105254 0.464078 +PW 0 +SE +ET PH +ID 1782 +TI 1771360827.893423181 +CC NStripHits 2 +PE 65.7897 +PP 0.162672 -0.344019 1.39533 +PW 0 +SE +ET UN +ID 1783 +TI 1771360827.893926248 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.4687 +SE +ET PH +ID 1784 +TI 1771360827.894408998 +CC NStripHits 3 +PE 301.982 +PP 3.07283 -0.921179 -0.699984 +PW 0 +SE +ET PH +ID 1785 +TI 1771360827.894522398 +CC NStripHits 2 +PE 54.2173 +PP 2.84002 0.358079 0.929703 +PW 0 +SE +ET PH +ID 1786 +TI 1771360827.896848381 +CC NStripHits 2 +PE 136.568 +PP 2.25798 0.292659 -4.42498 +PW 0 +SE +ID 1787 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.908399) +BD GR Veto +PQ 9.7824 +SE +ET UN +ID 1788 +TI 1771360827.902841115 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.5695 +SE +ID 1789 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.582400) +BD GR Veto +PQ 0.227982 +SE +ID 1790 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 58.543234) +BD GR Veto +PQ 1.8641 +SE +ID 1791 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.598494) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 42.435258)) +BD GR Veto +PQ 1.15538 +SE +ET PH +ID 1792 +TI 1771360827.909483981 +CC NStripHits 2 +PE 70.183 +PP 3.53845 0.0828771 -2.7953 +PW 0 +SE +ET PH +ID 1793 +TI 1771360827.910206098 +CC NStripHits 2 +PE 80.7317 +PP -0.768578 0.340205 -4.42498 +PW 0 +SE +ET CO +ID 1794 +TI 1771360827.911107881 +CC NStripHits 5 +PQ 6.6259 +SQ 2 +CT 0.510003 0.489997 +TL 1 +TE 153.595 +CE 196.907 2.03889 153.595 0.99319 +CD -0.302953 -0.711644 2.09377 0.0336036 0.0221298 0.0336036 -0.652172 0.138289 0.929703 0.0336036 0.02974 0.0336036 0 0 0 0 0 0 +LA 1.48303 +SE +ET UN +ID 1795 +TI 1771360827.911462431 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 353.111 +SE +ID 1796 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.220054) +BD GR Veto +PQ 20.9049 +SE +ID 1797 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 159.588547) +BD GR Veto +PQ 0.242749 +SE +ET PH +ID 1798 +TI 1771360827.913358115 +CC NStripHits 2 +PE 80.3357 +PP 0.628297 0.177791 1.86095 +PW 0 +SE +ET PH +ID 1799 +TI 1771360827.913554898 +CC NStripHits 2 +PE 80.5327 +PP 1.32673 0.165777 -2.44608 +PW 0 +SE +ET PH +ID 1800 +TI 1771360827.917517015 +CC NStripHits 2 +PE 54.31 +PP 4.00408 0.370008 -3.26092 +PW 0 +SE +ID 1801 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 50.099878) +BD GR Veto +PQ 7.76957 +SE +ET PH +ID 1802 +TI 1771360827.919943615 +CC NStripHits 2 +PE 80.5678 +PP -0.302953 0.300839 -1.63123 +PW 0 +SE +ET PH +ID 1803 +TI 1771360827.920326965 +CC NStripHits 2 +PE 77.3414 +PP -2.74748 0.238241 0.813297 +PW 0 +SE +ET PH +ID 1804 +TI 1771360827.920836265 +CC NStripHits 2 +PE 52.9989 +PP 1.55955 0.323948 0.580484 +PW 0 +SE +ET PH +ID 1805 +TI 1771360827.920981315 +CC NStripHits 2 +PE 31.3867 +PP 2.37439 0.275736 -0.816391 +PW 0 +SE +ET CO +ID 1806 +TI 1771360827.921185032 +CC NStripHits 5 +PQ 7.80862 +SQ 2 +CT 0 1 +TL 1 +TE 83.1097 +CE 294.87 1.51642 83.1097 0.973936 +CD 0.162672 0.360115 -0.117953 0.0336036 0.0285175 0.0336036 1.21033 -0.198894 0.347672 0.0336036 0.0258688 0.0336036 0 0 0 0 0 0 +LA 1.27549 +SE +ET UN +ID 1807 +TI 1771360827.922680265 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1808 +TI 1771360827.924984932 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 97.6526 +SE +ET PH +ID 1809 +TI 1771360827.927176548 +CC NStripHits 2 +PE 30.3355 +PP -2.86389 0.376886 0.696891 +PW 0 +SE +ID 1810 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 173.887634) +BD GR Veto +PQ 0.114587 +SE +ET PH +ID 1811 +TI 1771360827.927815932 +CC NStripHits 2 +PE 80.3073 +PP 3.88767 0.369299 -3.72655 +PW 0 +SE +ET PH +ID 1812 +TI 1771360827.929340198 +CC NStripHits 2 +PE 275.317 +PP -2.74748 -0.263055 0.813297 +PW 0 +SE +ET UN +ID 1813 +TI 1771360827.929835832 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1814 +TI 1771360827.930502215 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.2718 +SE +ET PH +ID 1815 +TI 1771360827.930818515 +CC NStripHits 3 +PE 214.834 +PP 1.09392 0.268116 -4.42498 +PW 0 +SE +ET UN +ID 1816 +TI 1771360827.931456082 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 192.314 +SE +ID 1817 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.364077) +BD GR Veto +PQ 0.124574 +SE +ET PH +ID 1818 +TI 1771360827.932443415 +CC NStripHits 2 +PE 118.062 +PP 1.09392 0.332011 1.16252 +PW 0 +SE +ET PH +ID 1819 +TI 1771360827.932816582 +CC NStripHits 2 +PE 81.5933 +PP -0.302953 0.347538 2.32658 +PW 0 +SE +ET PH +ID 1820 +TI 1771360827.935423515 +CC NStripHits 2 +PE 78.2516 +PP 0.977516 0.149834 -2.44608 +PW 0 +SE +ET CO +ID 1821 +TI 1771360827.940407365 +CC NStripHits 4 +PQ 1.15362 +SQ 2 +CT 0.506359 0.493641 +TL 1 +TE 178.988 +CE 175.257 1.0486 178.988 1.03434 +CD 3.53845 -0.10938 -2.67889 0.0336036 0.0266312 0.0336036 2.6072 -0.198914 -2.09686 0.0336036 0.0258687 0.0336036 0 0 0 0 0 0 +LA 1.10182 +SE +ET PH +ID 1822 +TI 1771360827.941479782 +CC NStripHits 2 +PE 78.8671 +PP 0.744703 0.0850211 -1.16561 +PW 0 +SE +ID 1823 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.619965) +BD GR Veto +PQ 0.416804 +SE +ET PH +ID 1824 +TI 1771360827.944336682 +CC NStripHits 2 +PE 79.7292 +PP 2.95642 -0.199797 0.231266 +PW 0 +SE +ET PH +ID 1825 +TI 1771360827.946351349 +CC NStripHits 2 +PE 144.085 +PP 3.42205 0.36477 0.813297 +PW 0 +SE +ID 1826 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.885030) +BD GR Veto +PQ 0.67024 +SE +ET PH +ID 1827 +TI 1771360827.949771199 +CC NStripHits 2 +PE 80.656 +PP 2.4908 0.3723 -2.67889 +PW 0 +SE +ET UN +ID 1828 +TI 1771360827.950973949 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7991 +SE +ET UN +ID 1829 +TI 1771360827.951046032 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1830 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.502103) +BD GR Veto +PQ 0.824366 +SE +ET PH +ID 1831 +TI 1771360827.953459549 +CC NStripHits 2 +PE 74.6473 +PP 2.95642 0.342827 2.09377 +PW 0 +SE +ET PH +ID 1832 +TI 1771360827.955072165 +CC NStripHits 5 +PE 149.549 +PP 4.23689 -0.595737 -2.67889 +PW 0 +SE +ET CO +ID 1833 +TI 1771360827.956265465 +CC NStripHits 5 +PQ 3.30808 +SQ 2 +CT 0.610758 0.389242 +TL 1 +TE 334.345 +CE 255.161 1.22987 334.345 1.49909 +CD 1.09392 -0.482433 -1.28202 0.0336036 0.0236066 0.0336036 -0.0701406 -0.0697532 -1.63123 0.0336036 0.0270169 0.0336036 0 0 0 0 0 0 +LA 1.28347 +SE +ET PH +ID 1834 +TI 1771360827.957313299 +CC NStripHits 2 +PE 152.207 +PP -0.535766 0.35234 -4.42498 +PW 0 +SE +ET PH +ID 1835 +TI 1771360827.959244999 +CC NStripHits 2 +PE 203.759 +PP -0.652172 -0.548061 -3.61014 +PW 0 +SE +ET PH +ID 1836 +TI 1771360827.961777499 +CC NStripHits 2 +PE 141.391 +PP 0.977516 -0.89819 -1.51483 +PW 0 +SE +ET PH +ID 1837 +TI 1771360827.962266766 +CC NStripHits 2 +PE 80.7435 +PP -0.535766 0.370568 -3.14452 +PW 0 +SE +ET PH +ID 1838 +TI 1771360827.962408382 +CC NStripHits 2 +PE 66.4635 +PP -1.1178 0.278557 0.929703 +PW 0 +SE +ET UN +ID 1839 +TI 1771360827.963081782 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9621 +SE +ET PH +ID 1840 +TI 1771360827.964360032 +CC NStripHits 2 +PE 56.7857 +PP -1.00139 -0.948714 -2.21327 +PW 0 +SE +ID 1841 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.560987) +BD GR Veto +PQ 2.14512 +SE +ET PH +ID 1842 +TI 1771360827.966857499 +CC NStripHits 2 +PE 205.521 +PP -1.35061 -0.799055 -1.63123 +PW 0 +SE +ET PH +ID 1843 +TI 1771360827.969045749 +CC NStripHits 2 +PE 140.771 +PP 2.84002 -0.0767444 0.929703 +PW 0 +SE +ET PH +ID 1844 +TI 1771360827.969269966 +CC NStripHits 3 +PE 79.6852 +PP -1.1178 0.131666 -4.19217 +PW 0 +SE +ID 1845 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 137.192159) +BD GR Veto +PQ 0.0091333 +SE +ET PH +ID 1846 +TI 1771360827.969743449 +CC NStripHits 2 +PE 48.8227 +PP 0.977516 0.377708 0.464078 +PW 0 +SE +ID 1847 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 36.581732)) (GR Hit: Detector ID 0 and Energy 192.899050) +BD GR Veto +PQ 24.7788 +SE +ID 1848 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.531574)) +BD GR Veto +PQ 1.1057 +SE +ET PH +ID 1849 +TI 1771360827.974564682 +CC NStripHits 2 +PE 95.244 +PP -2.63108 -1.10763 0.347672 +PW 0 +SE +ET CO +ID 1850 +TI 1771360827.976061199 +CC NStripHits 4 +PQ 0.67839 +SQ 2 +CT 0 1 +TL 1 +TE 74.066 +CE 229.342 1.09459 74.066 1.04901 +CD 3.77127 0.0641947 -1.98045 0.0336036 0.0283516 0.0336036 4.12048 -0.234546 -1.51483 0.0336036 0.0255734 0.0336036 0 0 0 0 0 0 +LA 0.654214 +SE +ET PH +ID 1851 +TI 1771360827.977616866 +CC NStripHits 3 +PE 113.012 +PP 0.395484 -0.975273 0.580484 +PW 0 +SE +ET PH +ID 1852 +TI 1771360827.977872299 +CC NStripHits 3 +PE 77.6143 +PP 0.395484 0.074648 1.62814 +PW 0 +SE +ID 1853 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.012823) +BD GR Veto +PQ 0.00778011 +SE +ET PH +ID 1854 +TI 1771360827.982329316 +CC NStripHits 2 +PE 81.501 +PP 2.72361 0.197942 0.114859 +PW 0 +SE +ET UN +ID 1855 +TI 1771360827.982892349 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8388 +SE +ID 1856 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ID 1857 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.060698) (Strip hit removed with energy 9.163021) (Strip hit removed with energy 10.132925) +QA StripPairing (GR Hit: Detector ID 0 and Energy 88.663757) +BD GR Veto +PQ 3.55445 +SE +ET PH +ID 1858 +TI 1771360827.986340116 +CC NStripHits 3 +PE 298.705 +PP 3.65486 0.184252 -1.39842 +PW 0 +SE +ET UN +ID 1859 +TI 1771360827.986774266 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 292.884 +SE +ET UN +ID 1860 +TI 1771360827.987331416 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.5752 +SE +ET UN +ID 1861 +TI 1771360827.988435666 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0682 +SE +ET PH +ID 1862 +TI 1771360827.991753349 +CC NStripHits 2 +PE 60.846 +PP -2.63108 -0.551077 -3.72655 +PW 0 +SE +ID 1863 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.880812) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 30.502322)) (GR Hit: Detector ID 0 and Energy 74.633568) +BD GR Veto +PQ 0.990387 +SE +ET PH +ID 1864 +TI 1771360827.993636866 +CC NStripHits 2 +PE 76.4067 +PP 1.79236 0.165683 -3.72655 +PW 0 +SE +ET PH +ID 1865 +TI 1771360827.996090649 +CC NStripHits 2 +PE 27.5704 +PP -0.0701406 -0.562338 -4.54139 +PW 0 +SE +ET PH +ID 1866 +TI 1771360827.998869583 +CC NStripHits 2 +PE 30.998 +PP 3.77127 -0.0452129 1.27892 +PW 0 +SE +ET PH +ID 1867 +TI 1771360827.999328149 +CC NStripHits 4 +PE 129.361 +PP 2.4908 0.1698 0.114859 +PW 0 +SE +ET PH +ID 1868 +TI 1771360827.999993749 +CC NStripHits 3 +PE 125.855 +PP 0.395484 -0.625787 2.21017 +PW 0 +SE +ID 1869 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 30.767056)) (GR Hit: Detector ID 0 and Energy 79.874079) +BD GR Veto +PQ 18.4988 +SE +ET CO +ID 1870 +TI 1771360828.002619416 +CC NStripHits 4 +PQ 14.3891 +SQ 2 +CT 0 1 +TL 1 +TE 58.1616 +CE 97.6349 1.03067 58.1616 1.3803 +CD -2.51467 -0.549613 -0.117953 0.0336036 0.0231126 0.0336036 -2.63108 -0.504384 -0.350766 0.0336036 0.0234128 0.0336036 0 0 0 0 0 0 +LA 0.264195 +SE +ET UN +ID 1871 +TI 1771360828.003106450 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 4 +PE 0 +SE +ID 1872 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ +SE +ET UN +ID 1873 +TI 1771360828.003925366 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 221.942 +SE +ET UN +ID 1874 +TI 1771360828.004843216 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 162.552 +SE +ET PH +ID 1875 +TI 1771360828.005335350 +CC NStripHits 2 +PE 34.0604 +PP -1.2342 0.26142 -4.19217 +PW 0 +SE +ET UN +ID 1876 +TI 1771360828.006048683 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 356.074 +SE +ET UN +ID 1877 +TI 1771360828.006682250 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET PH +ID 1878 +TI 1771360828.008251100 +CC NStripHits 3 +PE 130.256 +PP 3.53845 -0.86799 -2.9117 +PW 0 +SE +ET PH +ID 1879 +TI 1771360828.010389633 +CC NStripHits 2 +PE 113.356 +PP 0.0462656 0.132892 -3.14452 +PW 0 +SE +ET PH +ID 1880 +TI 1771360828.011617900 +CC NStripHits 2 +PE 77.9973 +PP -0.535766 0.228949 -4.42498 +PW 0 +SE +ET PH +ID 1881 +TI 1771360828.011815166 +CC NStripHits 2 +PE 80.1729 +PP 4.12048 0.15734 1.51173 +PW 0 +SE +ET PH +ID 1882 +TI 1771360828.012208783 +CC NStripHits 2 +PE 94.7684 +PP -1.2342 0.376563 -3.95936 +PW 0 +SE +ET PH +ID 1883 +TI 1771360828.012358466 +CC NStripHits 2 +PE 79.1867 +PP 1.21033 0.347373 -1.98045 +PW 0 +SE +ET PH +ID 1884 +TI 1771360828.012620050 +CC NStripHits 2 +PE 49.4721 +PP 2.37439 0.379989 1.04611 +PW 0 +SE +ET PH +ID 1885 +TI 1771360828.012742800 +CC NStripHits 2 +PE 97.1579 +PP 1.09392 0.369065 1.27892 +PW 0 +SE +ET PH +ID 1886 +TI 1771360828.012957783 +CC NStripHits 2 +PE 169.822 +PP 0.395484 -0.0163119 -1.16561 +PW 0 +SE +ET PH +ID 1887 +TI 1771360828.013061933 +CC NStripHits 2 +PE 30.2329 +PP 2.72361 -0.0258749 -4.42498 +PW 0 +SE +ID 1888 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.539207) +BD GR Veto +PQ 0.676194 +SE +ET CO +ID 1889 +TI 1771360828.017323600 +CC NStripHits 9 +PQ 19.269 +SQ 4 +CT 0.0991051 0.111479 +TL 1 +TE 193.514 +CE 188.396 2.17281 193.514 1.04241 +CD -2.16545 0.0124272 -3.84295 0.0336036 0.0277543 0.0336036 -1.93264 0.370616 -3.14452 0.0336036 0.0223087 0.0336036 0 0 0 0 0 0 +LA 0.752831 +SE +ID 1890 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 97.920356) +BD GR Veto +PQ 1.02643 +SE +ET PH +ID 1891 +TI 1771360828.017869183 +CC NStripHits 3 +PE 111.099 +PP -0.768578 -0.747547 -1.51483 +PW 0 +SE +ET PH +ID 1892 +TI 1771360828.018017616 +CC NStripHits 2 +PE 59.1541 +PP -0.884984 -0.272558 -1.74764 +PW 0 +SE +ET PH +ID 1893 +TI 1771360828.019098116 +CC NStripHits 3 +PE 110.534 +PP 0.395484 -0.148084 -2.56248 +PW 0 +SE +ET PH +ID 1894 +TI 1771360828.020721967 +CC NStripHits 3 +PE 223.114 +PP -1.46702 0.357706 -0.350766 +PW 0 +SE +ID 1895 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1896 +TI 1771360828.021940333 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3794 +SE +ET UN +ID 1897 +TI 1771360828.022542117 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1898 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.316223) +BD GR Veto +PQ 0.0072564 +SE +ID 1899 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 24.177995)) (GR Hit: Detector ID 0 and Energy 128.673874) +BD GR Veto +PQ 10.0565 +SE +ET PH +ID 1900 +TI 1771360828.023655517 +CC NStripHits 2 +PE 81.0725 +PP 2.25798 0.349416 -0.816391 +PW 0 +SE +ET PH +ID 1901 +TI 1771360828.024305583 +CC NStripHits 2 +PE 63.0345 +PP 2.14158 0.235066 2.44298 +PW 0 +SE +ID 1902 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.240351) +BD GR Veto +PQ 0.084303 +SE +ID 1903 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.084640) +BD GR Veto +PQ 0.0216626 +SE +ET CO +ID 1904 +TI 1771360828.025885583 +CC NStripHits 6 +PQ 3.2491 +SQ 3 +CT 0.0435615 0.204792 +TL 1 +TE 81.5975 +CE 488.248 1.78255 81.5975 1.01958 +CD 1.21033 -0.589736 0.813297 0.0336036 0.0228715 0.0336036 1.09392 -0.0758502 0.464078 0.0336036 0.0269859 0.0336036 0 0 0 0 0 0 +LA 0.632126 +SE +ET PH +ID 1905 +TI 1771360828.028829117 +CC NStripHits 2 +PE 87.753 +PP -2.86389 -0.727388 0.813297 +PW 0 +SE +ET PH +ID 1906 +TI 1771360828.029333133 +CC NStripHits 2 +PE 62.1679 +PP 2.6072 0.312001 -4.30858 +PW 0 +SE +ET CO +ID 1907 +TI 1771360828.029610017 +CC NStripHits 5 +PQ 14.8456 +SQ 2 +CT 0.509227 0.490773 +TL 1 +TE 147.473 +CE 150.754 1.23105 147.473 1.46711 +CD 1.44314 -0.735251 -1.16561 0.0336036 0.0218568 0.0336036 1.09392 0.214964 -1.63123 0.0336036 0.0328736 0.0336036 0 0 0 0 0 0 +LA 1.1143 +SE +ET PH +ID 1908 +TI 1771360828.031932050 +CC NStripHits 3 +PE 166.805 +PP 4.23689 -0.626961 -0.117953 +PW 0 +SE +ID 1909 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.422356) +BD GR Veto +PQ 0.247561 +SE +ET UN +ID 1910 +TI 1771360828.035707867 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7025 +SE +ET PH +ID 1911 +TI 1771360828.036275867 +CC NStripHits 2 +PE 26.887 +PP -2.04905 0.280234 -4.19217 +PW 0 +SE +ET UN +ID 1912 +TI 1771360828.037938217 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 78.1686 +SE +ID 1913 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.570958) +BD GR Veto +PQ 0.378212 +SE +ID 1914 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (28.619631)) (GR Hit: Detector ID 0 and Energy 169.828910) +BD GR Veto +PQ 28.6196 +SE +ET CO +ID 1915 +TI 1771360828.040218867 +CC NStripHits 5 +PQ 53.1608 +SQ 2 +CT 0 1 +TL 1 +TE 105.871 +CE 182.852 1.53417 105.871 1.54603 +CD -0.302953 -0.100852 -0.467172 0.0336036 0.0267366 0.0336036 -0.186547 -0.141603 -0.699984 0.0336036 0.02638 0.0336036 0 0 0 0 0 0 +LA 0.263462 +SE +ET UN +ID 1916 +TI 1771360828.040631000 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET UN +ID 1917 +TI 1771360828.041854384 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1918 +TI 1771360828.042195050 +CC NStripHits 3 +PE 80.8201 +PP -0.0701406 0.294749 1.16252 +PW 0 +SE +ET UN +ID 1919 +TI 1771360828.042318984 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3305 +SE +ET PH +ID 1920 +TI 1771360828.043355167 +CC NStripHits 2 +PE 144.082 +PP 0.977516 -0.422961 -4.54139 +PW 0 +SE +ET PH +ID 1921 +TI 1771360828.044175184 +CC NStripHits 2 +PE 127.824 +PP -0.884984 0.352469 -1.74764 +PW 0 +SE +ET PH +ID 1922 +TI 1771360828.047600084 +CC NStripHits 2 +PE 81.4609 +PP 0.977516 0.199605 -2.9117 +PW 0 +SE +ID 1923 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.397082) +BD GR Veto +PQ 0.00049622 +SE +ET UN +ID 1924 +TI 1771360828.048658934 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1925 +TI 1771360828.052137134 +CC NStripHits 2 +PE 83.4791 +PP 2.72361 0.293811 1.86095 +PW 0 +SE +ET UN +ID 1926 +TI 1771360828.053275217 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1927 +TI 1771360828.053446484 +CC NStripHits 3 +PE 222.576 +PP 2.37439 -0.586885 1.62814 +PW 0 +SE +ID 1928 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 48.550168) +BD GR Veto +PQ 0.589453 +SE +ID 1929 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 85.167038) +BD GR Veto +PQ 0.555353 +SE +ET PH +ID 1930 +TI 1771360828.056717384 +CC NStripHits 2 +PE 28.6058 +PP -1.58342 -0.146395 2.21017 +PW 0 +SE +ET PH +ID 1931 +TI 1771360828.057730067 +CC NStripHits 2 +PE 74.1612 +PP 4.12048 0.371564 -1.74764 +PW 0 +SE +ID 1932 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.765450) +BD GR Veto +PQ 0.227661 +SE +ID 1933 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.157119) +BD GR Veto +PQ +SE +ET UN +ID 1934 +TI 1771360828.063029767 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1935 +TI 1771360828.064012167 +CC NStripHits 2 +PE 53.8976 +PP 2.4908 -0.834798 -3.26092 +PW 0 +SE +ID 1936 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1937 +TI 1771360828.065641184 +CC NStripHits 2 +PE 144.701 +PP -0.535766 -0.822119 -3.72655 +PW 0 +SE +ET CO +ID 1938 +TI 1771360828.066438884 +CC NStripHits 8 +PQ 71.8645 +SQ 3 +CT 0.045375 0.0816484 +TL 1 +TE 115.527 +CE 206.692 1.67877 115.527 1.00405 +CD 3.65486 -0.617592 2.21017 0.0336036 0.022724 0.0336036 0.0462656 -0.621065 -0.00154687 0.0336036 0.0227027 0.0336036 0 0 0 0 0 0 +LA 0.754051 +SE +ET UN +ID 1939 +TI 1771360828.066769067 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.7762 +SE +ET PH +ID 1940 +TI 1771360828.072380767 +CC NStripHits 2 +PE 77.3822 +PP 2.02517 0.370955 -4.6578 +PW 0 +SE +ET UN +ID 1941 +TI 1771360828.072542634 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 361.248 +SE +ET PH +ID 1942 +TI 1771360828.073720317 +CC NStripHits 2 +PE 269.434 +PP -0.419359 -0.221432 -0.00154687 +PW 0 +SE +ID 1943 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 172.190775) +BD GR Veto +PQ 0.00669528 +SE +ID 1944 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.752938) +BD GR Veto +PQ +SE +ET UN +ID 1945 +TI 1771360828.077583651 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 99.4333 +SE +ID 1946 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 89.021886) +BD GR Veto +PQ 0.68717 +SE +ET UN +ID 1947 +TI 1771360828.080451618 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 57.3021 +SE +ET CO +ID 1948 +TI 1771360828.080628034 +CC NStripHits 4 +PQ 13.8494 +SQ 2 +CT 0 1 +TL 1 +TE 89.9085 +CE 181.851 1.80948 89.9085 1.5094 +CD 0.162672 0.0287667 -4.54139 0.0336036 0.0279247 0.0336036 1.09392 0.146765 -4.6578 0.0336036 0.0299591 0.0336036 0 0 0 0 0 0 +LA 0.945885 +SE +ET UN +ID 1949 +TI 1771360828.080713934 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1950 +TI 1771360828.081834484 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 156.189 +SE +ET UN +ID 1951 +TI 1771360828.082008868 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1952 +TI 1771360828.082378284 +CC NStripHits 2 +PE 66.7385 +PP -2.9803 0.329072 0.114859 +PW 0 +SE +ET UN +ID 1953 +TI 1771360828.082775368 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 61.3446 +SE +ID 1954 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ID 1955 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1956 +TI 1771360828.084307384 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.678 +SE +ID 1957 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.550874) +BD GR Veto +PQ +SE +ET PH +ID 1958 +TI 1771360828.084644051 +CC NStripHits 3 +PE 82.2323 +PP -2.28186 0.122792 -0.467172 +PW 0 +SE +ID 1959 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1960 +TI 1771360828.086247701 +CC NStripHits 3 +PE 95.2017 +PP 3.53845 -0.392012 1.16252 +PW 0 +SE +ET UN +ID 1961 +TI 1771360828.086570201 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.1387 +SE +ET PH +ID 1962 +TI 1771360828.088038784 +CC NStripHits 2 +PE 81.8331 +PP -0.884984 0.361363 0.114859 +PW 0 +SE +ID 1963 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 47.264782)) (GR Hit: Detector ID 0 and Energy 65.322632) +BD GR Veto +PQ 8.72935 +SE +ET PH +ID 1964 +TI 1771360828.089382884 +CC NStripHits 3 +PE 199.634 +PP 0.977516 0.159107 -0.350766 +PW 0 +SE +ID 1965 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 1966 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1967 +TI 1771360828.091718618 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1968 +TI 1771360828.091845434 +CC NStripHits 2 +PE 31.5942 +PP 4.00408 0.0723519 1.27892 +PW 0 +SE +ET PH +ID 1969 +TI 1771360828.092794418 +CC NStripHits 2 +PE 120.4 +PP 3.77127 0.12429 1.51173 +PW 0 +SE +ET PH +ID 1970 +TI 1771360828.093155151 +CC NStripHits 2 +PE 162.533 +PP 0.861109 -0.403001 1.27892 +PW 0 +SE +ID 1971 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.772253) +BD GR Veto +PQ +SE +ID 1972 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.917576) +BD GR Veto +PQ 7.89403 +SE +ET PH +ID 1973 +TI 1771360828.096976634 +CC NStripHits 2 +PE 194.142 +PP 1.67595 0.373593 -2.67889 +PW 0 +SE +ID 1974 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 97.450854) +BD GR Veto +PQ 4.51717 +SE +ET PH +ID 1975 +TI 1771360828.098110934 +CC NStripHits 3 +PE 357.964 +PP -0.884984 -0.437067 -3.14452 +PW 0 +SE +ID 1976 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.296013) +BD GR Veto +PQ 0.269275 +SE +ET UN +ID 1977 +TI 1771360828.100001251 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1978 +TI 1771360828.100131801 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.5828 +SE +ID 1979 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET UN +ID 1980 +TI 1771360828.103295601 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 1981 +TI 1771360828.103560868 +CC NStripHits 9 +PQ 7.85153 +SQ 3 +CT 0.0101742 0.18818 +TL 1 +TE 100.922 +CE 260.283 1.92166 100.922 1.17481 +CD 3.77127 0.349137 1.51173 0.0336036 0.0335608 0.0336036 4.00408 0.0655528 1.86095 0.0336036 0.0283689 0.0336036 0 0 0 0 0 0 +LA 0.506532 +SE +ET PH +ID 1982 +TI 1771360828.103699801 +CC NStripHits 3 +PE 459.841 +PP 4.23689 -0.00768372 -3.84295 +PW 0 +SE +ET PH +ID 1983 +TI 1771360828.103766668 +CC NStripHits 2 +PE 79.1447 +PP 0.861109 0.122169 0.580484 +PW 0 +SE +ET PH +ID 1984 +TI 1771360828.105731968 +CC NStripHits 2 +PE 69.0759 +PP 3.07283 0.370674 -2.67889 +PW 0 +SE +ET UN +ID 1985 +TI 1771360828.105898285 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.2324 +SE +ET PH +ID 1986 +TI 1771360828.106591018 +CC NStripHits 4 +PE 135.856 +PP 3.42205 0.131066 -1.63123 +PW 0 +SE +ID 1987 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.605598) +BD GR Veto +PQ 0.0111105 +SE +ET CO +ID 1988 +TI 1771360828.108556335 +CC NStripHits 4 +PQ 0.650136 +SQ 2 +CT 0 1 +TL 1 +TE 73.3593 +CE 127.363 1.01124 73.3593 1.00659 +CD -1.1178 -0.422071 2.09377 0.0336036 0.0241834 0.0336036 -1.00139 -0.315848 1.86095 0.0336036 0.0250698 0.0336036 0 0 0 0 0 0 +LA 0.28114 +SE +ET PH +ID 1989 +TI 1771360828.109249901 +CC NStripHits 2 +PE 27.1802 +PP 0.162672 -0.949388 -1.86405 +PW 0 +SE +ET PH +ID 1990 +TI 1771360828.109386435 +CC NStripHits 3 +PE 78.9508 +PP 0.861109 0.356344 -1.16561 +PW 0 +SE +ET PH +ID 1991 +TI 1771360828.111221068 +CC NStripHits 2 +PE 187.102 +PP 2.6072 0.203586 -1.28202 +PW 0 +SE +ET PH +ID 1992 +TI 1771360828.112214718 +CC NStripHits 2 +PE 167.483 +PP -1.93264 -0.584548 1.16252 +PW 0 +SE +ID 1993 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 39.180851) +BD GR Veto +PQ 1.62337 +SE +ID 1994 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 202.933113) +BD GR Veto +PQ 0.0153153 +SE +ET UN +ID 1995 +TI 1771360828.114724201 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1996 +TI 1771360828.117242468 +CC NStripHits 2 +PE 83.3767 +PP -0.186547 0.341624 -1.51483 +PW 0 +SE +ET UN +ID 1997 +TI 1771360828.117563101 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 111.645 +SE +ID 1998 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1999 +TI 1771360828.118261485 +CC NStripHits 3 +PE 211.714 +PP 0.977516 -0.042923 -3.84295 +PW 0 +SE +ET PH +ID 2000 +TI 1771360828.119615035 +CC NStripHits 2 +PE 80.9679 +PP -0.186547 0.371323 -1.98045 +PW 0 +SE +ET PH +ID 2001 +TI 1771360828.120597235 +CC NStripHits 2 +PE 82.8923 +PP 2.84002 0.318266 1.39533 +PW 0 +SE +ET PH +ID 2002 +TI 1771360828.121400185 +CC NStripHits 3 +PE 336.772 +PP -1.93264 -0.962203 -0.00154687 +PW 0 +SE +ID 2003 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 58.292612) +BD GR Veto +PQ 9.83301 +SE +ID 2004 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 25.956176) +BD GR Veto +PQ 0.0317201 +SE +ET CO +ID 2005 +TI 1771360828.123112102 +CC NStripHits 6 +PQ 6.06843 +SQ 2 +CT 0.704916 0.295084 +TL 1 +TE 139.646 +CE 164.056 2.05923 139.646 1.17543 +CD -1.1178 -0.416157 -2.7953 0.0336036 0.0242415 0.0336036 -1.46702 -0.0189784 -2.32967 0.0336036 0.0275449 0.0336036 0 0 0 0 0 0 +LA 0.704639 +SE +ET PH +ID 2006 +TI 1771360828.123258952 +CC NStripHits 2 +PE 29.2858 +PP 3.88767 0.351871 -1.51483 +PW 0 +SE +ET PH +ID 2007 +TI 1771360828.124577385 +CC NStripHits 2 +PE 132.834 +PP 0.861109 -0.608703 1.04611 +PW 0 +SE +ET UN +ID 2008 +TI 1771360828.126046685 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.8753 +SE +ET PH +ID 2009 +TI 1771360828.126134702 +CC NStripHits 2 +PE 171.516 +PP -1.00139 -0.157983 -0.699984 +PW 0 +SE +ET UN +ID 2010 +TI 1771360828.126715952 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.1869 +SE +ET UN +ID 2011 +TI 1771360828.126931502 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 63.5559 +SE +ID 2012 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.550874) +BD GR Veto +PQ +SE +ET PH +ID 2013 +TI 1771360828.128111252 +CC NStripHits 2 +PE 163.432 +PP 3.07283 -0.547328 -3.26092 +PW 0 +SE +ET CO +ID 2014 +TI 1771360828.128386635 +CC NStripHits 5 +PQ 0.808618 +SQ 2 +CT 0 1 +TL 1 +TE 114.982 +CE 238.095 1.15655 114.982 0.994225 +CD -0.535766 -0.234372 -3.37733 0.0336036 0.0255748 0.0336036 -1.35061 -0.0772369 -2.44608 0.0336036 0.0269781 0.0336036 0 0 0 0 0 0 +LA 1.24735 +SE +ET UN +ID 2015 +TI 1771360828.128986852 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2016 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.361856) +BD GR Veto +PQ 1.20245e-05 +SE +ET CO +ID 2017 +TI 1771360828.129473235 +CC NStripHits 5 +PQ 0.294608 +SQ 2 +CT 0 1 +TL 1 +TE 110.823 +CE 246.442 1.06418 110.823 1.20696 +CD 3.30564 -0.000518507 -4.19217 0.0336036 0.0276537 0.0336036 3.07283 -0.623096 -2.9117 0.0336036 0.0226906 0.0336036 0 0 0 0 0 0 +LA 1.44271 +SE +ET UN +ID 2018 +TI 1771360828.131833585 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 215.394 +SE +ET UN +ID 2019 +TI 1771360828.132641168 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.1476 +SE +ET PH +ID 2020 +TI 1771360828.133115085 +CC NStripHits 2 +PE 80.5387 +PP -1.69983 0.0336868 -0.583578 +PW 0 +SE +ET PH +ID 2021 +TI 1771360828.135420635 +CC NStripHits 2 +PE 84.8422 +PP 3.07283 -1.10397 2.6758 +PW 0 +SE +ET PH +ID 2022 +TI 1771360828.135538218 +CC NStripHits 2 +PE 78.2257 +PP 3.07283 0.304831 0.347672 +PW 0 +SE +ET UN +ID 2023 +TI 1771360828.136123485 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.5354 +SE +ID 2024 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.095148) (Strip hit removed with energy 8.634652) (Strip hit removed with energy 15.431677) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.871015) (GR Hit: Detector ID 0 and Energy 76.033640) +BD GR Veto +PQ 0.225099 +SE +ET PH +ID 2025 +TI 1771360828.138972268 +CC NStripHits 2 +PE 30.7555 +PP 3.53845 0.307437 2.55939 +PW 0 +SE +ET UN +ID 2026 +TI 1771360828.139346952 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2027 +TI 1771360828.143207652 +CC NStripHits 2 +PE 51.3012 +PP 1.90877 0.371749 2.09377 +PW 0 +SE +ET UN +ID 2028 +TI 1771360828.144786035 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2029 +TI 1771360828.147919585 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1469 +SE +ET UN +ID 2030 +TI 1771360828.152574302 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 356.268 +SE +ET UN +ID 2031 +TI 1771360828.155140069 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.454 +SE +ET PH +ID 2032 +TI 1771360828.155491252 +CC NStripHits 3 +PE 210.575 +PP 2.72361 0.346633 -0.117953 +PW 0 +SE +ET PH +ID 2033 +TI 1771360828.156243685 +CC NStripHits 2 +PE 61.4476 +PP 3.30564 -1.02346 -4.30858 +PW 0 +SE +ID 2034 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.210503) +BD GR Veto +PQ 0.0424416 +SE +ID 2035 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (48.165671)) (GR Hit: Detector ID 0 and Energy 100.150178) +BD GR Veto +PQ 48.1657 +SE +ET PH +ID 2036 +TI 1771360828.158372369 +CC NStripHits 3 +PE 144.574 +PP -0.652172 0.243521 1.39533 +PW 0 +SE +ID 2037 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 204.878542) +BD GR Veto +PQ 0.754121 +SE +ET PH +ID 2038 +TI 1771360828.158804135 +CC NStripHits 6 +PE 352.969 +PP 2.25798 -0.630091 -0.117953 +PW 0 +SE +ID 2039 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.701893) +BD GR Veto +PQ 1.06518 +SE +ET PH +ID 2040 +TI 1771360828.160114669 +CC NStripHits 2 +PE 75.1888 +PP 1.32673 0.314154 1.04611 +PW 0 +SE +ET PH +ID 2041 +TI 1771360828.160228786 +CC NStripHits 3 +PE 80.5678 +PP -2.9803 0.105473 1.74455 +PW 0 +SE +ID 2042 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (147.946756)) (GR Hit: Detector ID 0 and Energy 209.754191) +BD GR Veto +PQ 147.947 +SE +ET PH +ID 2043 +TI 1771360828.164997186 +CC NStripHits 2 +PE 80.235 +PP -2.04905 0.113474 -4.07577 +PW 0 +SE +ET PH +ID 2044 +TI 1771360828.165558486 +CC NStripHits 2 +PE 82.5477 +PP -0.0701406 0.340315 0.347672 +PW 0 +SE +ID 2045 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 133.840951) +BD GR Veto +PQ 2.55622 +SE +ET UN +ID 2046 +TI 1771360828.166470452 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 265.45 +SE +ET PH +ID 2047 +TI 1771360828.166674219 +CC NStripHits 2 +PE 124.296 +PP -1.81623 0.0107843 -1.63123 +PW 0 +SE +ET UN +ID 2048 +TI 1771360828.166812636 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 204.104 +SE +ET CO +ID 2049 +TI 1771360828.167734769 +CC NStripHits 5 +PQ 0.55532 +SQ 2 +CT 0.501107 0.498893 +TL 1 +TE 163.358 +CE 161.05 1.15108 163.358 1.06715 +CD 0.861109 -0.309042 -3.84295 0.0336036 0.0251167 0.0336036 -0.302953 -0.25585 -3.49373 0.0336036 0.0254352 0.0336036 0 0 0 0 0 0 +LA 1.21648 +SE +ET PH +ID 2050 +TI 1771360828.167915102 +CC NStripHits 2 +PE 69.5523 +PP 1.67595 -0.361492 0.580484 +PW 0 +SE +ET UN +ID 2051 +TI 1771360828.171274186 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2052 +TI 1771360828.173909686 +CC NStripHits 4 +PE 213.639 +PP 3.88767 -0.0257199 -2.44608 +PW 0 +SE +ET PH +ID 2053 +TI 1771360828.174295402 +CC NStripHits 2 +PE 91.0906 +PP 4.12048 -0.143635 -3.14452 +PW 0 +SE +ET UN +ID 2054 +TI 1771360828.174578636 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9403 +SE +ET PH +ID 2055 +TI 1771360828.175014402 +CC NStripHits 2 +PE 94.7849 +PP 2.95642 -1.09337 2.21017 +PW 0 +SE +ET PH +ID 2056 +TI 1771360828.176341802 +CC NStripHits 2 +PE 351.09 +PP -0.186547 0.0606883 1.39533 +PW 0 +SE +ET PH +ID 2057 +TI 1771360828.177063502 +CC NStripHits 2 +PE 196.259 +PP 2.84002 0.368351 -0.467172 +PW 0 +SE +ET PH +ID 2058 +TI 1771360828.178197202 +CC NStripHits 3 +PE 357.546 +PP 1.32673 -0.141964 -1.86405 +PW 0 +SE +ET UN +ID 2059 +TI 1771360828.178889719 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2060 +TI 1771360828.180362953 +CC NStripHits 2 +PE 128.89 +PP 2.02517 0.116019 2.21017 +PW 0 +SE +ID 2061 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2062 +TI 1771360828.183361386 +CC NStripHits 3 +PE 137.706 +PP 3.18923 0.372673 -4.6578 +PW 0 +SE +ET PH +ID 2063 +TI 1771360828.183996686 +CC NStripHits 3 +PE 127.814 +PP -2.51467 0.108813 -3.61014 +PW 0 +SE +ET UN +ID 2064 +TI 1771360828.184324019 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.1855 +SE +ID 2065 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2066 +TI 1771360828.187302803 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 345.974 +SE +ET PH +ID 2067 +TI 1771360828.189704119 +CC NStripHits 2 +PE 31.5406 +PP -2.28186 0.374137 2.21017 +PW 0 +SE +ET UN +ID 2068 +TI 1771360828.189791903 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.264 +SE +ET UN +ID 2069 +TI 1771360828.191538053 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.1508 +SE +ID 2070 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.993674) +BD GR Veto +PQ +SE +ET CO +ID 2071 +TI 1771360828.193768453 +CC NStripHits 4 +PQ 0.00868767 +SQ 2 +CT 0 1 +TL 1 +TE 68.5582 +CE 142.633 0.997587 68.5582 0.999536 +CD -1.81623 -0.13561 0.347672 0.0336036 0.0264282 0.0336036 -2.28186 -0.206942 -0.00154687 0.0336036 0.0258067 0.0336036 0 0 0 0 0 0 +LA 0.58639 +SE +ID 2072 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.192086) +BD GR Veto +PQ 0.119674 +SE +ET PH +ID 2073 +TI 1771360828.194499603 +CC NStripHits 2 +PE 79.953 +PP 2.72361 -0.431697 -0.234359 +PW 0 +SE +ET PH +ID 2074 +TI 1771360828.195165653 +CC NStripHits 2 +PE 30.8085 +PP -0.302953 -0.148578 1.04611 +PW 0 +SE +ET PH +ID 2075 +TI 1771360828.195743586 +CC NStripHits 3 +PE 80.6924 +PP -2.04905 0.324212 -0.350766 +PW 0 +SE +ET UN +ID 2076 +TI 1771360828.197171719 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8075 +SE +ET UN +ID 2077 +TI 1771360828.197381536 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 2078 +TI 1771360828.197816653 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 233.356 +SE +ET UN +ID 2079 +TI 1771360828.199371736 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2080 +TI 1771360828.199759503 +CC NStripHits 2 +PE 80.8301 +PP 2.72361 0.370341 2.6758 +PW 0 +SE +ID 2081 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET PH +ID 2082 +TI 1771360828.201529703 +CC NStripHits 2 +PE 49.3195 +PP 3.65486 -0.538963 -1.74764 +PW 0 +SE +ET PH +ID 2083 +TI 1771360828.201820570 +CC NStripHits 2 +PE 80.6622 +PP -1.81623 -0.0205452 2.55939 +PW 0 +SE +ET UN +ID 2084 +TI 1771360828.203522736 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 67.5752 +SE +ET PH +ID 2085 +TI 1771360828.204117870 +CC NStripHits 2 +PE 140.752 +PP -2.16545 0.370095 -2.21327 +PW 0 +SE +ID 2086 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 87.797772) +BD GR Veto +PQ 0.254609 +SE +ID 2087 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (67.981018)) (GR Hit: Detector ID 0 and Energy 137.766069) +BD GR Veto +PQ 67.981 +SE +ET UN +ID 2088 +TI 1771360828.207284353 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2089 +TI 1771360828.207683620 +CC NStripHits 2 +PE 79.9384 +PP 2.6072 0.374441 -1.39842 +PW 0 +SE +ET PH +ID 2090 +TI 1771360828.210674853 +CC NStripHits 2 +PE 80.7672 +PP -1.1178 -1.06004 -3.14452 +PW 0 +SE +ET UN +ID 2091 +TI 1771360828.210916653 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 2092 +TI 1771360828.212271220 +CC NStripHits 4 +PQ 0.833114 +SQ 2 +CT 0.508064 0.491936 +TL 1 +TE 149.846 +CE 155.374 1.15703 149.846 0.997316 +CD -0.186547 -0.378054 1.16252 0.0336036 0.0246376 0.0336036 0.744703 -0.520614 1.04611 0.0336036 0.0233015 0.0336036 0 0 0 0 0 0 +LA 0.949264 +SE +ET PH +ID 2093 +TI 1771360828.212564170 +CC NStripHits 2 +PE 78.1059 +PP 1.79236 0.37326 -3.95936 +PW 0 +SE +ET PH +ID 2094 +TI 1771360828.216316470 +CC NStripHits 2 +PE 74.0951 +PP 1.21033 0.362805 0.813297 +PW 0 +SE +ET UN +ID 2095 +TI 1771360828.216510670 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 70.2155 +SE +ET PH +ID 2096 +TI 1771360828.216787220 +CC NStripHits 2 +PE 75.4963 +PP 1.09392 0.337682 -0.234359 +PW 0 +SE +ET PH +ID 2097 +TI 1771360828.217413236 +CC NStripHits 2 +PE 219.252 +PP -0.768578 -0.659719 -2.09686 +PW 0 +SE +ET PH +ID 2098 +TI 1771360828.217898020 +CC NStripHits 2 +PE 141.162 +PP 2.6072 0.0472806 2.09377 +PW 0 +SE +ET UN +ID 2099 +TI 1771360828.219397636 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.8496 +SE +ET PH +ID 2100 +TI 1771360828.222308070 +CC NStripHits 3 +PE 188.022 +PP 2.25798 -1.10269 1.16252 +PW 0 +SE +ID 2101 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.331364) +BD GR Veto +PQ 0.0198407 +SE +ET UN +ID 2102 +TI 1771360828.223553220 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2103 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2104 +TI 1771360828.225852353 +CC NStripHits 2 +PE 81.0187 +PP 2.95642 0.366764 1.97736 +PW 0 +SE +ET UN +ID 2105 +TI 1771360828.226596987 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2106 +TI 1771360828.228421803 +CC NStripHits 3 +PE 141.426 +PP -0.419359 -0.33138 0.347672 +PW 0 +SE +ID 2107 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.175404) +BD GR Veto +PQ 7.3158 +SE +ET PH +ID 2108 +TI 1771360828.230206553 +CC NStripHits 3 +PE 142.502 +PP -0.652172 -0.133897 -0.117953 +PW 0 +SE +ET PH +ID 2109 +TI 1771360828.230574253 +CC NStripHits 2 +PE 81.5797 +PP -1.69983 0.125345 0.813297 +PW 0 +SE +ET UN +ID 2110 +TI 1771360828.231577003 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.7681 +SE +ET PH +ID 2111 +TI 1771360828.233202453 +CC NStripHits 2 +PE 205.648 +PP 2.4908 -0.449792 2.09377 +PW 0 +SE +ET PH +ID 2112 +TI 1771360828.233810020 +CC NStripHits 2 +PE 81.7632 +PP 1.90877 0.0547716 2.55939 +PW 0 +SE +ET UN +ID 2113 +TI 1771360828.234229620 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 2114 +TI 1771360828.234473953 +CC NStripHits 6 +PQ 10.3289 +SQ 2 +CT 0 1 +TL 1 +TE 98.9729 +CE 278.475 2.07035 98.9729 1.38799 +CD -2.16545 -0.875548 -0.583578 0.0336036 0.0202106 0.0336036 -2.04905 -0.631482 -1.28202 0.0336036 0.0226436 0.0336036 0 0 0 0 0 0 +LA 0.748958 +SE +ET PH +ID 2115 +TI 1771360828.235571270 +CC NStripHits 2 +PE 70.1596 +PP 2.4908 -1.1637 0.813297 +PW 0 +SE +ET UN +ID 2116 +TI 1771360828.235809553 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2117 +TI 1771360828.236062503 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2118 +TI 1771360828.237860320 +CC NStripHits 3 +PE 82.0674 +PP -1.2342 0.239519 -2.32967 +PW 0 +SE +ET PH +ID 2119 +TI 1771360828.240797804 +CC NStripHits 2 +PE 209.991 +PP 4.00408 0.373034 -3.95936 +PW 0 +SE +ID 2120 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.210428) +BD GR Veto +PQ 0.159096 +SE +ET UN +ID 2121 +TI 1771360828.241181137 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.2688 +SE +ID 2122 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.571770) +BD GR Veto +PQ 0.0162089 +SE +ET UN +ID 2123 +TI 1771360828.242610770 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2355 +SE +ET PH +ID 2124 +TI 1771360828.242916254 +CC NStripHits 2 +PE 81.02 +PP 3.18923 0.213389 1.04611 +PW 0 +SE +ET PH +ID 2125 +TI 1771360828.243240187 +CC NStripHits 2 +PE 106.059 +PP -0.652172 0.000762555 0.114859 +PW 0 +SE +ET PH +ID 2126 +TI 1771360828.243550120 +CC NStripHits 2 +PE 81.4614 +PP 2.25798 0.34489 2.55939 +PW 0 +SE +ET UN +ID 2127 +TI 1771360828.243716537 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 2128 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ID 2129 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.997448)) (GR Hit: Detector ID 0 and Energy 114.868334) +BD GR Veto +PQ 27.9974 +SE +ET PH +ID 2130 +TI 1771360828.244316754 +CC NStripHits 2 +PE 357.529 +PP 1.09392 0.322592 -3.26092 +PW 0 +SE +ET UN +ID 2131 +TI 1771360828.245099654 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.2163 +SE +ET CO +ID 2132 +TI 1771360828.245299954 +CC NStripHits 5 +PQ 0.742442 +SQ 2 +CT 0 1 +TL 1 +TE 135.935 +CE 216.677 1.17425 135.935 1.00507 +CD -1.58342 0.361786 -2.21327 0.0336036 0.0276223 0.0336036 -0.652172 0.300766 -0.699984 0.0336036 0.0418338 0.0336036 0 0 0 0 0 0 +LA 1.77791 +SE +ET PH +ID 2133 +TI 1771360828.248462304 +CC NStripHits 2 +PE 161.619 +PP -0.419359 -0.409839 -1.28202 +PW 0 +SE +ID 2134 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.880812) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.396710) +BD GR Veto +PQ 10.5314 +SE +ET UN +ID 2135 +TI 1771360828.251831404 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.2863 +SE +ET PH +ID 2136 +TI 1771360828.255982920 +CC NStripHits 2 +PE 35.6416 +PP -2.16545 -0.0366972 -3.26092 +PW 0 +SE +ET PH +ID 2137 +TI 1771360828.256257104 +CC NStripHits 4 +PE 157.711 +PP 0.0462656 0.227784 1.04611 +PW 0 +SE +ET UN +ID 2138 +TI 1771360828.256593087 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2139 +TI 1771360828.258475287 +CC NStripHits 3 +PE 294.609 +PP 3.42205 0.254889 -2.21327 +PW 0 +SE +ET PH +ID 2140 +TI 1771360828.258612904 +CC NStripHits 2 +PE 108.163 +PP -2.63108 0.361341 -3.72655 +PW 0 +SE +ID 2141 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (42.906634)) (GR Hit: Detector ID 0 and Energy 176.046014) +BD GR Veto +PQ 42.9066 +SE +ET PH +ID 2142 +TI 1771360828.259159520 +CC NStripHits 2 +PE 60.6206 +PP 0.395484 -0.716192 1.51173 +PW 0 +SE +ET CO +ID 2143 +TI 1771360828.260353554 +CC NStripHits 4 +PQ 11.2345 +SQ 2 +CT 0 1 +TL 1 +TE 38.5141 +CE 132.645 1.59602 38.5141 0.957081 +CD -0.419359 -1.08571 -0.117953 0.0336036 0.0219983 0.0336036 -0.535766 0.337883 -0.816391 0.0336036 0.0373343 0.0336036 0 0 0 0 0 0 +LA 1.58996 +SE +ET UN +ID 2144 +TI 1771360828.261433821 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 302.392 +SE +ET UN +ID 2145 +TI 1771360828.261736221 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2071 +SE +ET UN +ID 2146 +TI 1771360828.262458037 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6587 +SE +ET UN +ID 2147 +TI 1771360828.262924171 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 353.392 +SE +ET PH +ID 2148 +TI 1771360828.263201987 +CC NStripHits 2 +PE 133.573 +PP -1.00139 0.305159 2.44298 +PW 0 +SE +ET PH +ID 2149 +TI 1771360828.264201554 +CC NStripHits 2 +PE 107.512 +PP -2.28186 -0.979867 2.55939 +PW 0 +SE +ET UN +ID 2150 +TI 1771360828.268732504 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2151 +TI 1771360828.269289987 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.8984 +SE +ET UN +ID 2152 +TI 1771360828.271425554 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2153 +TI 1771360828.272081837 +CC NStripHits 2 +PE 105.659 +PP 1.32673 -0.62798 0.696891 +PW 0 +SE +ID 2154 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.462204) +BD GR Veto +PQ 0.000774857 +SE +ID 2155 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.082215) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.017796) +BD GR Veto +PQ 6.23126 +SE +ID 2156 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.066274) +BD GR Veto +PQ 0.000412887 +SE +ID 2157 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.202473) +BD GR Veto +PQ 0.123151 +SE +ID 2158 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.353461) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.600105) +BD GR Veto +PQ 0.00106633 +SE +ET PH +ID 2159 +TI 1771360828.282346888 +CC NStripHits 2 +PE 27.3077 +PP -1.46702 0.135571 -0.467172 +PW 0 +SE +ID 2160 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2161 +TI 1771360828.283474271 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2162 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2163 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2164 +TI 1771360828.284738154 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2165 +TI 1771360828.285406771 +CC NStripHits 2 +PE 192.16 +PP 2.02517 0.119413 -0.350766 +PW 0 +SE +ET PH +ID 2166 +TI 1771360828.288054521 +CC NStripHits 2 +PE 301.233 +PP -0.768578 -0.184733 -4.07577 +PW 0 +SE +ID 2167 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 282.584942) +BD GR Veto +PQ 0.000252179 +SE +ET UN +ID 2168 +TI 1771360828.290212021 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 6 +PE 178.072 +SE +ET UN +ID 2169 +TI 1771360828.290369821 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9109 +SE +ET UN +ID 2170 +TI 1771360828.291938804 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8483 +SE +ET PH +ID 2171 +TI 1771360828.292356604 +CC NStripHits 2 +PE 193.379 +PP -1.69983 0.122001 -4.07577 +PW 0 +SE +ID 2172 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.916386) +BD GR Veto +PQ +SE +ET PH +ID 2173 +TI 1771360828.293847288 +CC NStripHits 3 +PE 155.188 +PP 2.72361 -1.12831 1.27892 +PW 0 +SE +ET UN +ID 2174 +TI 1771360828.297117321 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 368.283 +SE +ID 2175 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.553040) +BD GR Veto +PQ 0.014116 +SE +ET UN +ID 2176 +TI 1771360828.301122688 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0655 +SE +ET UN +ID 2177 +TI 1771360828.301294088 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 100.309 +SE +ID 2178 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.608806) +BD GR Veto +PQ +SE +ET UN +ID 2179 +TI 1771360828.303297855 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6294 +SE +ET PH +ID 2180 +TI 1771360828.303863488 +CC NStripHits 2 +PE 79.9206 +PP 2.02517 0.374542 -2.56248 +PW 0 +SE +ET PH +ID 2181 +TI 1771360828.304246755 +CC NStripHits 2 +PE 67.607 +PP 1.79236 0.35512 -4.07577 +PW 0 +SE +ET UN +ID 2182 +TI 1771360828.306534305 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2183 +TI 1771360828.308533871 +CC NStripHits 2 +PE 80.0886 +PP 0.861109 0.371279 -4.19217 +PW 0 +SE +ET CO +ID 2184 +TI 1771360828.309430505 +CC NStripHits 5 +PQ 0.0608898 +SQ 2 +CT 0 1 +TL 1 +TE 92.1965 +CE 185.29 1.17162 92.1965 0.99679 +CD -0.186547 -0.560628 2.09377 0.0336036 0.0230281 0.0336036 -0.419359 -0.305835 2.32658 0.0336036 0.0251399 0.0336036 0 0 0 0 0 0 +LA 0.416319 +SE +ID 2185 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.079834) +BD GR Veto +PQ +SE +ET UN +ID 2186 +TI 1771360828.311426738 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2187 +TI 1771360828.312207788 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9024 +SE +ID 2188 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.887760) +BD GR Veto +PQ 0.301852 +SE +ID 2189 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.655797) +QA StripPairing (Best reduced chi square is not below 25 (50.212564)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.695025)) +BD GR Veto +PQ 50.2126 +SE +ID 2190 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.911599) +BD GR Veto +PQ 7.19858 +SE +ID 2191 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2192 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.317684) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.522653) +BD GR Veto +PQ 13.0404 +SE +ET UN +ID 2193 +TI 1771360828.321728472 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.7476 +SE +ET PH +ID 2194 +TI 1771360828.322052838 +CC NStripHits 2 +PE 127.511 +PP -2.86389 0.215153 -1.63123 +PW 0 +SE +ID 2195 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 161.812525) +BD GR Veto +PQ 23.185 +SE +ET UN +ID 2196 +TI 1771360828.324467505 +BD DepthCalibrationError (Out of Range) +CC NStripHits 10 +PE 301.556 +SE +ET PH +ID 2197 +TI 1771360828.325803938 +CC NStripHits 2 +PE 214.836 +PP -1.46702 -0.752626 -2.7953 +PW 0 +SE +ID 2198 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (70.922783)) (GR Hit: Detector ID 0 and Energy 151.179244) +BD GR Veto +PQ 70.9228 +SE +ET UN +ID 2199 +TI 1771360828.326772772 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 173.994 +SE +ET PH +ID 2200 +TI 1771360828.327479755 +CC NStripHits 2 +PE 72.7501 +PP -2.04905 0.347926 0.231266 +PW 0 +SE +ET PH +ID 2201 +TI 1771360828.328337955 +CC NStripHits 2 +PE 66.0859 +PP 1.32673 0.361524 -2.32967 +PW 0 +SE +ID 2202 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.117153) +BD GR Veto +PQ 0.0112557 +SE +ET UN +ID 2203 +TI 1771360828.330211588 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ID 2204 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.294755) +BD GR Veto +PQ 0.105742 +SE +ET CO +ID 2205 +TI 1771360828.330803455 +CC NStripHits 4 +PQ 1.5412 +SQ 2 +CT 0 1 +TL 1 +TE 116.446 +CE 136.596 1.08863 116.446 1.14107 +CD 0.744703 -0.828292 -2.21327 0.0336036 0.0205922 0.0336036 0.628297 -0.946129 -1.86405 0.0336036 0.0196351 0.0336036 0 0 0 0 0 0 +LA 0.386511 +SE +ET PH +ID 2206 +TI 1771360828.331188205 +CC NStripHits 2 +PE 96.6915 +PP 2.72361 0.249106 -2.32967 +PW 0 +SE +ET UN +ID 2207 +TI 1771360828.332230988 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7504 +SE +ET UN +ID 2208 +TI 1771360828.333012188 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2209 +TI 1771360828.333321305 +CC NStripHits 3 +PE 163.844 +PP -1.46702 -0.208366 -4.07577 +PW 0 +SE +ET PH +ID 2210 +TI 1771360828.333812388 +CC NStripHits 2 +PE 81.721 +PP -2.74748 0.169675 -2.67889 +PW 0 +SE +ET UN +ID 2211 +TI 1771360828.334483172 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 159.953 +SE +ET UN +ID 2212 +TI 1771360828.334738688 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 50.2213 +SE +ET PH +ID 2213 +TI 1771360828.339583088 +CC NStripHits 4 +PE 354.38 +PP -2.28186 -0.642188 -4.19217 +PW 0 +SE +ET CO +ID 2214 +TI 1771360828.342841789 +CC NStripHits 4 +PQ 0.977825 +SQ 2 +CT 0 1 +TL 1 +TE 47.0177 +CE 147.353 1.0655 47.0177 1.01597 +CD 2.84002 -1.0523 -3.84295 0.0336036 0.0200932 0.0336036 2.72361 -1.16073 -4.07577 0.0336036 0.0244288 0.0336036 0 0 0 0 0 0 +LA 0.281981 +SE +ET PH +ID 2215 +TI 1771360828.343536472 +CC NStripHits 3 +PE 147.236 +PP -2.39827 -0.826643 -1.51483 +PW 0 +SE +ET PH +ID 2216 +TI 1771360828.345468822 +CC NStripHits 2 +PE 68.7504 +PP 3.88767 0.318578 2.09377 +PW 0 +SE +ET PH +ID 2217 +TI 1771360828.345897939 +CC NStripHits 2 +PE 93.8446 +PP 4.3533 -0.292369 -0.467172 +PW 0 +SE +ET PH +ID 2218 +TI 1771360828.346456422 +CC NStripHits 4 +PE 276.084 +PP 1.79236 -0.27394 -1.28202 +PW 0 +SE +ET PH +ID 2219 +TI 1771360828.347306272 +CC NStripHits 2 +PE 30.4484 +PP 1.79236 0.365417 2.55939 +PW 0 +SE +ET PH +ID 2220 +TI 1771360828.349183889 +CC NStripHits 4 +PE 137.047 +PP 2.02517 -0.526293 -2.7953 +PW 0 +SE +ID 2221 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.555082) +QA StripPairing (GR Hit: Detector ID 0 and Energy 110.933478) +BD GR Veto +PQ 2.43171 +SE +ET PH +ID 2222 +TI 1771360828.350474789 +CC NStripHits 2 +PE 223.405 +PP 3.42205 -1.05555 -1.98045 +PW 0 +SE +ID 2223 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.565768) +QA StripPairing (GR Hit: Detector ID 0 and Energy 153.885795) +BD GR Veto +PQ 0.558431 +SE +ET PH +ID 2224 +TI 1771360828.351381155 +CC NStripHits 4 +PE 217.677 +PP -0.652172 0.169302 -3.72655 +PW 0 +SE +ET UN +ID 2225 +TI 1771360828.352237605 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 298.487 +SE +ID 2226 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 88.312596) +BD GR Veto +PQ 1.75431 +SE +ET PH +ID 2227 +TI 1771360828.358441272 +CC NStripHits 2 +PE 151.041 +PP -1.00139 0.370619 1.27892 +PW 0 +SE +ET CO +ID 2228 +TI 1771360828.358811755 +CC NStripHits 6 +PQ 3.4924 +SQ 2 +CT 0.517556 0.482444 +TL 1 +TE 187.162 +CE 170.574 1.45804 187.162 1.55435 +CD 2.4908 0.262247 -3.61014 0.0336036 0.0382374 0.0336036 2.14158 -0.599835 -1.63123 0.0336036 0.022827 0.0336036 0 0 0 0 0 0 +LA 2.1866 +SE +ID 2229 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 22.941521) +BD GR Veto +PQ 0.147457 +SE +ID 2230 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 42.977708) +BD GR Veto +PQ 0.0113051 +SE +ID 2231 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.223976) +BD GR Veto +PQ +SE +ET UN +ID 2232 +TI 1771360828.362120422 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2233 +TI 1771360828.363286206 +CC NStripHits 2 +PE 69.9947 +PP -1.2342 0.0326886 -2.44608 +PW 0 +SE +ET PH +ID 2234 +TI 1771360828.363420439 +CC NStripHits 2 +PE 95.0343 +PP 2.6072 -0.0407439 0.231266 +PW 0 +SE +ET UN +ID 2235 +TI 1771360828.366118939 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2236 +TI 1771360828.366240556 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 21.5854 +SE +ET UN +ID 2237 +TI 1771360828.368729939 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8934 +SE +ET PH +ID 2238 +TI 1771360828.369021189 +CC NStripHits 3 +PE 59.5674 +PP 2.84002 -1.0715 -0.699984 +PW 0 +SE +ET UN +ID 2239 +TI 1771360828.369170172 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.7957 +SE +ET UN +ID 2240 +TI 1771360828.369610022 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 8 +PE 148.337 +SE +ET CO +ID 2241 +TI 1771360828.370128506 +CC NStripHits 5 +PQ 0.506673 +SQ 2 +CT 0 1 +TL 1 +TE 116.602 +CE 188.731 1.23157 116.602 1.02589 +CD 3.07283 -0.012911 -2.7953 0.0336036 0.027583 0.0336036 2.6072 0.0019578 -1.98045 0.0336036 0.0276701 0.0336036 0 0 0 0 0 0 +LA 0.938623 +SE +ET UN +ID 2242 +TI 1771360828.370679656 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2243 +TI 1771360828.370952122 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 64.1232 +SE +ET PH +ID 2244 +TI 1771360828.371088872 +CC NStripHits 3 +PE 80.5476 +PP -1.58342 0.0447945 -4.6578 +PW 0 +SE +ID 2245 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (59.754103)) (GR Hit: Detector ID 0 and Energy 181.772541) +BD GR Veto +PQ 59.7541 +SE +ET PH +ID 2246 +TI 1771360828.371452522 +CC NStripHits 2 +PE 66.1117 +PP 0.395484 -1.0402 -2.56248 +PW 0 +SE +ET UN +ID 2247 +TI 1771360828.372569989 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 259.009 +SE +ID 2248 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 54.557658) +BD GR Veto +PQ 0.153697 +SE +ET CO +ID 2249 +TI 1771360828.374661089 +CC NStripHits 4 +PQ 3.76571 +SQ 2 +CT 0 1 +TL 1 +TE 115.284 +CE 142.354 1.55182 115.284 1.03269 +CD -2.39827 0.118444 -0.816391 0.0336036 0.0292896 0.0336036 -2.74748 0.288009 -0.350766 0.0336036 0.0412494 0.0336036 0 0 0 0 0 0 +LA 0.606223 +SE +ID 2250 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.099907) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 27.713656)) (GR Hit: Detector ID 0 and Energy 96.601667) +BD GR Veto +PQ 4.69255 +SE +ID 2251 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2252 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 148.402075) +BD GR Veto +PQ 0.0352797 +SE +ET CO +ID 2253 +TI 1771360828.382564789 +CC NStripHits 4 +PQ 65.5943 +SQ 2 +CT 0.57244 0.42756 +TL 1 +TE 210.429 +CE 162.881 1.56791 210.429 1.48165 +CD 3.07283 0.189169 -0.583578 0.0336036 0.0314387 0.0336036 3.65486 0.185823 -0.467172 0.0336036 0.0312929 0.0336036 0 0 0 0 0 0 +LA 0.593566 +SE +ET PH +ID 2254 +TI 1771360828.383049256 +CC NStripHits 2 +PE 78.5334 +PP -2.39827 0.27039 -3.84295 +PW 0 +SE +ID 2255 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2256 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 118.875768) +BD GR Veto +PQ 2.20165 +SE +ET PH +ID 2257 +TI 1771360828.384523823 +CC NStripHits 2 +PE 28.5096 +PP -0.768578 0.208466 -0.699984 +PW 0 +SE +ET PH +ID 2258 +TI 1771360828.386923573 +CC NStripHits 2 +PE 81.7189 +PP 2.02517 0.350685 1.62814 +PW 0 +SE +ID 2259 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 357.086982) +BD GR Veto +PQ 0.745424 +SE +ET UN +ID 2260 +TI 1771360828.389739106 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7963 +SE +ET PH +ID 2261 +TI 1771360828.390754389 +CC NStripHits 2 +PE 80.945 +PP -2.04905 0.330233 -3.14452 +PW 0 +SE +ET UN +ID 2262 +TI 1771360828.390915739 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2263 +TI 1771360828.391025739 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.795 +SE +ET PH +ID 2264 +TI 1771360828.391131889 +CC NStripHits 4 +PE 79.058 +PP 2.02517 -1.08361 0.813297 +PW 0 +SE +ID 2265 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.743491) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.708082) +BD GR Veto +PQ 4.58972 +SE +ET UN +ID 2266 +TI 1771360828.393993289 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2267 +TI 1771360828.395419339 +CC NStripHits 3 +PE 146.471 +PP 1.44314 0.0951121 1.04611 +PW 0 +SE +ET PH +ID 2268 +TI 1771360828.398419606 +CC NStripHits 2 +PE 70.7926 +PP 3.77127 0.362481 -0.00154687 +PW 0 +SE +ET UN +ID 2269 +TI 1771360828.398849673 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.2377 +SE +ET CO +ID 2270 +TI 1771360828.400014790 +CC NStripHits 5 +PQ 25.4958 +SQ 2 +CT 0.555916 0.444084 +TL 1 +TE 207.566 +CE 159.682 2.01788 207.566 1.43349 +CD -0.419359 0.022391 0.813297 0.0336036 0.0278544 0.0336036 0.279078 -0.00458907 0.696891 0.0336036 0.0276292 0.0336036 0 0 0 0 0 0 +LA 0.708585 +SE +ET PH +ID 2271 +TI 1771360828.400196706 +CC NStripHits 2 +PE 54.2186 +PP 2.25798 0.36748 -1.28202 +PW 0 +SE +ET UN +ID 2272 +TI 1771360828.400557756 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.6815 +SE +ET PH +ID 2273 +TI 1771360828.400804623 +CC NStripHits 2 +PE 125.645 +PP -0.419359 -0.165932 -3.49373 +PW 0 +SE +ET PH +ID 2274 +TI 1771360828.402681356 +CC NStripHits 2 +PE 29.3916 +PP 0.0462656 0.058233 -1.86405 +PW 0 +SE +ET UN +ID 2275 +TI 1771360828.403427590 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8605 +SE +ET UN +ID 2276 +TI 1771360828.403526106 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9787 +SE +ET PH +ID 2277 +TI 1771360828.406042140 +CC NStripHits 2 +PE 241.678 +PP 3.42205 -0.276387 1.62814 +PW 0 +SE +ET PH +ID 2278 +TI 1771360828.406267006 +CC NStripHits 2 +PE 80.925 +PP 1.32673 0.261775 -1.28202 +PW 0 +SE +ET PH +ID 2279 +TI 1771360828.406891773 +CC NStripHits 5 +PE 279.405 +PP 1.32673 -0.00194491 -0.350766 +PW 0 +SE +ID 2280 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.660130) +BD GR Veto +PQ 0.814105 +SE +ID 2281 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.589490) +BD GR Veto +PQ +SE +ET UN +ID 2282 +TI 1771360828.412384323 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.413 +SE +ET PH +ID 2283 +TI 1771360828.412702973 +CC NStripHits 2 +PE 30.5768 +PP -2.04905 0.243851 -3.95936 +PW 0 +SE +ET CO +ID 2284 +TI 1771360828.413232223 +CC NStripHits 4 +PQ 0.930859 +SQ 2 +CT 0 1 +TL 1 +TE 68.9141 +CE 157.631 1.01769 68.9141 0.98664 +CD 1.67595 -0.253223 0.580484 0.0336036 0.0254499 0.0336036 2.95642 -1.02791 -2.7953 0.0336036 0.0196318 0.0336036 0 0 0 0 0 0 +LA 3.69265 +SE +ET PH +ID 2285 +TI 1771360828.414379056 +CC NStripHits 4 +PE 141.977 +PP 4.3533 -0.422161 -2.21327 +PW 0 +SE +ET PH +ID 2286 +TI 1771360828.416149306 +CC NStripHits 2 +PE 55.4705 +PP 2.25798 -0.540049 -2.67889 +PW 0 +SE +ET PH +ID 2287 +TI 1771360828.417842706 +CC NStripHits 2 +PE 81.365 +PP -1.00139 0.364991 -3.84295 +PW 0 +SE +ET PH +ID 2288 +TI 1771360828.418307790 +CC NStripHits 2 +PE 62.5009 +PP 1.90877 0.323236 1.39533 +PW 0 +SE +ET CO +ID 2289 +TI 1771360828.419267023 +CC NStripHits 4 +PQ 67.2631 +SQ 2 +CT 0.524744 0.475256 +TL 1 +TE 152.375 +CE 209.727 1.46845 152.375 1.40115 +CD 0.395484 -0.540762 -0.117953 0.0336036 0.0231789 0.0336036 0.511891 -0.412171 -0.350766 0.0336036 0.0242861 0.0336036 0 0 0 0 0 0 +LA 0.290324 +SE +ET PH +ID 2290 +TI 1771360828.420706623 +CC NStripHits 4 +PE 356.893 +PP -1.58342 0.116288 0.464078 +PW 0 +SE +ET PH +ID 2291 +TI 1771360828.420957190 +CC NStripHits 3 +PE 162.691 +PP -2.74748 -0.756169 1.39533 +PW 0 +SE +ET CO +ID 2292 +TI 1771360828.424119373 +CC NStripHits 4 +PQ 3.16397 +SQ 2 +CT 0 1 +TL 1 +TE 22.2427 +CE 138.384 1.4793 22.2427 0.96388 +CD 3.77127 -0.909703 -0.00154687 0.0336036 0.0199077 0.0336036 3.88767 -0.217828 -0.467172 0.0336036 0.0257148 0.0336036 0 0 0 0 0 0 +LA 0.842049 +SE +ET UN +ID 2293 +TI 1771360828.424701940 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 153.008 +SE +ET UN +ID 2294 +TI 1771360828.426087557 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2295 +TI 1771360828.427786923 +CC NStripHits 2 +PE 78.0122 +PP 2.95642 0.0109168 -4.54139 +PW 0 +SE +ET UN +ID 2296 +TI 1771360828.428637573 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 2297 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.605524) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 28.470395)) +BD GR Veto +PQ 0.235963 +SE +ET UN +ID 2298 +TI 1771360828.436472607 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7014 +SE +ET UN +ID 2299 +TI 1771360828.436832323 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 49.5312 +SE +ET PH +ID 2300 +TI 1771360828.437208207 +CC NStripHits 2 +PE 111.186 +PP -2.16545 -0.542145 -3.84295 +PW 0 +SE +ET UN +ID 2301 +TI 1771360828.438551557 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.4966 +SE +ET PH +ID 2302 +TI 1771360828.439146907 +CC NStripHits 2 +PE 81.0057 +PP -2.16545 -0.180633 -4.30858 +PW 0 +SE +ID 2303 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.467081) +BD GR Veto +PQ 13.1595 +SE +ID 2304 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 148.027493) +BD GR Veto +PQ 2.12071 +SE +ET PH +ID 2305 +TI 1771360828.441989707 +CC NStripHits 2 +PE 259.316 +PP -1.1178 -1.16312 -1.51483 +PW 0 +SE +ID 2306 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.780362) +BD GR Veto +PQ 0.0278227 +SE +ET PH +ID 2307 +TI 1771360828.445991774 +CC NStripHits 3 +PE 81.8884 +PP -0.419359 0.329764 -2.67889 +PW 0 +SE +ET PH +ID 2308 +TI 1771360828.446359940 +CC NStripHits 2 +PE 81.5355 +PP -2.04905 0.332616 2.32658 +PW 0 +SE +ET UN +ID 2309 +TI 1771360828.448321957 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 49.4079 +SE +ID 2310 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 111.695915) +BD GR Veto +PQ 0.270624 +SE +ET PH +ID 2311 +TI 1771360828.448744157 +CC NStripHits 2 +PE 182.467 +PP 0.395484 -0.365632 -0.234359 +PW 0 +SE +ET UN +ID 2312 +TI 1771360828.451095707 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8655 +SE +ID 2313 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.091522) +BD GR Veto +PQ 7.56828 +SE +ET UN +ID 2314 +TI 1771360828.452122024 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 204.287 +SE +ET PH +ID 2315 +TI 1771360828.452311790 +CC NStripHits 2 +PE 78.3122 +PP -1.1178 0.373971 0.114859 +PW 0 +SE +ET UN +ID 2316 +TI 1771360828.453220574 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 47.3654 +SE +ET UN +ID 2317 +TI 1771360828.454103107 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2318 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.972902) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.685551) +BD GR Veto +PQ 1.4241 +SE +ET PH +ID 2319 +TI 1771360828.456127524 +CC NStripHits 2 +PE 78.7067 +PP -1.93264 -0.10664 -2.21327 +PW 0 +SE +ET PH +ID 2320 +TI 1771360828.456326607 +CC NStripHits 2 +PE 80.52 +PP 1.55955 0.356494 0.464078 +PW 0 +SE +ET PH +ID 2321 +TI 1771360828.456925090 +CC NStripHits 3 +PE 383.97 +PP -0.186547 -0.469877 0.114859 +PW 0 +SE +ID 2322 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.577861) +BD GR Veto +PQ 1.40254 +SE +ET PH +ID 2323 +TI 1771360828.458372907 +CC NStripHits 2 +PE 30.0957 +PP -1.69983 -0.315487 0.580484 +PW 0 +SE +ET UN +ID 2324 +TI 1771360828.458928840 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.6953 +SE +ET PH +ID 2325 +TI 1771360828.459524857 +CC NStripHits 2 +PE 26.2701 +PP -1.93264 0.331632 1.86095 +PW 0 +SE +ET PH +ID 2326 +TI 1771360828.460326557 +CC NStripHits 2 +PE 138.66 +PP 4.00408 -1.07412 -2.21327 +PW 0 +SE +ET CO +ID 2327 +TI 1771360828.460896324 +CC NStripHits 4 +PQ 0.528539 +SQ 2 +CT 0 1 +TL 1 +TE 75.4201 +CE 119.101 1.02945 75.4201 1.07583 +CD 0.628297 -0.40703 -2.9117 0.0336036 0.0243486 0.0336036 0.861109 0.362308 -2.44608 0.0336036 0.027335 0.0336036 0 0 0 0 0 0 +LA 0.928916 +SE +ET PH +ID 2328 +TI 1771360828.461213941 +CC NStripHits 2 +PE 90.6917 +PP 3.53845 -0.535537 -2.67889 +PW 0 +SE +ET UN +ID 2329 +TI 1771360828.462186341 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.243 +SE +ET PH +ID 2330 +TI 1771360828.462655457 +CC NStripHits 2 +PE 35.3518 +PP -1.46702 0.331054 0.813297 +PW 0 +SE +ET UN +ID 2331 +TI 1771360828.462790207 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.3672 +SE +ET PH +ID 2332 +TI 1771360828.464110491 +CC NStripHits 2 +PE 43.5524 +PP 4.00408 -0.137054 0.347672 +PW 0 +SE +ET PH +ID 2333 +TI 1771360828.464233857 +CC NStripHits 2 +PE 77.4576 +PP 1.67595 0.317315 0.929703 +PW 0 +SE +ID 2334 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.068392) +BD GR Veto +PQ 0.169738 +SE +ET PH +ID 2335 +TI 1771360828.467051091 +CC NStripHits 3 +PE 116.745 +PP 0.744703 -0.34157 2.21017 +PW 0 +SE +ET PH +ID 2336 +TI 1771360828.467685791 +CC NStripHits 3 +PE 81.1448 +PP 2.84002 0.295465 -1.51483 +PW 0 +SE +ET UN +ID 2337 +TI 1771360828.468709724 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2338 +TI 1771360828.469191224 +CC NStripHits 3 +PE 133.126 +PP 0.628297 0.0818702 -0.699984 +PW 0 +SE +ET CO +ID 2339 +TI 1771360828.469909041 +CC NStripHits 5 +PQ 13.8314 +SQ 2 +CT 0 1 +TL 1 +TE 136.275 +CE 206.726 1.43969 136.275 1.476 +CD 3.30564 -0.369641 1.04611 0.0336036 0.0246922 0.0336036 3.18923 -0.441835 0.696891 0.0336036 0.0240212 0.0336036 0 0 0 0 0 0 +LA 0.375123 +SE +ET PH +ID 2340 +TI 1771360828.471249924 +CC NStripHits 2 +PE 82.2769 +PP -1.93264 0.274284 2.09377 +PW 0 +SE +ET PH +ID 2341 +TI 1771360828.472200307 +CC NStripHits 2 +PE 80.478 +PP 1.21033 0.221245 0.580484 +PW 0 +SE +ET PH +ID 2342 +TI 1771360828.474653641 +CC NStripHits 2 +PE 116.237 +PP -2.86389 0.284366 -3.72655 +PW 0 +SE +ET PH +ID 2343 +TI 1771360828.477031524 +CC NStripHits 2 +PE 79.1953 +PP 3.42205 0.37196 1.86095 +PW 0 +SE +ET UN +ID 2344 +TI 1771360828.477968724 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.9889 +SE +ET PH +ID 2345 +TI 1771360828.479546591 +CC NStripHits 2 +PE 31.3199 +PP 0.395484 -0.196365 1.97736 +PW 0 +SE +ET CO +ID 2346 +TI 1771360828.483125241 +CC NStripHits 4 +PQ 9.64668 +SQ 2 +CT 0.528258 0.471742 +TL 1 +TE 201.128 +CE 157.398 1.03555 201.128 1.48857 +CD 1.09392 -0.614939 -3.02811 0.0336036 0.0227405 0.0336036 1.90877 0.23027 -2.9117 0.0336036 0.03417 0.0336036 0 0 0 0 0 0 +LA 1.17979 +SE +ID 2347 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.955020) +BD GR Veto +PQ +SE +ID 2348 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.589490) +BD GR Veto +PQ +SE +ET PH +ID 2349 +TI 1771360828.484061858 +CC NStripHits 2 +PE 80.3994 +PP -0.186547 -0.93223 -1.28202 +PW 0 +SE +ID 2350 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2351 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 40.664063) +BD GR Veto +PQ 0.467371 +SE +ET UN +ID 2352 +TI 1771360828.485370508 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1082 +SE +ET UN +ID 2353 +TI 1771360828.486623141 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2354 +TI 1771360828.487209724 +CC NStripHits 2 +PE 202.768 +PP -0.535766 -0.450296 -1.63123 +PW 0 +SE +ET PH +ID 2355 +TI 1771360828.489054874 +CC NStripHits 3 +PE 124.277 +PP -1.93264 -0.894574 -2.32967 +PW 0 +SE +ET UN +ID 2356 +TI 1771360828.489758508 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.397 +SE +ID 2357 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 98.968547) +BD GR Veto +PQ 0.73097 +SE +ET UN +ID 2358 +TI 1771360828.491181074 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6568 +SE +ET CO +ID 2359 +TI 1771360828.491692524 +CC NStripHits 7 +PQ 0.870496 +SQ 3 +CT 0.0319571 0.0512098 +TL 1 +TE 90.1608 +CE 211.885 1.52922 90.1608 0.997545 +CD 3.18923 -0.144061 1.51173 0.0336036 0.0263576 0.0336036 3.07283 -0.0286991 0.696891 0.0336036 0.0274591 0.0336036 0 0 0 0 0 0 +LA 0.613173 +SE +ID 2360 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.243283) +BD GR Veto +PQ +SE +ID 2361 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.017702) +BD GR Veto +PQ 1.53232 +SE +ET PH +ID 2362 +TI 1771360828.495982291 +CC NStripHits 3 +PE 126.653 +PP -2.39827 0.201742 -0.816391 +PW 0 +SE +ET PH +ID 2363 +TI 1771360828.497879541 +CC NStripHits 2 +PE 79.0235 +PP 0.628297 0.198121 0.929703 +PW 0 +SE +ET PH +ID 2364 +TI 1771360828.498919691 +CC NStripHits 2 +PE 78.7438 +PP -2.63108 0.367501 -1.51483 +PW 0 +SE +ET UN +ID 2365 +TI 1771360828.499400191 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2366 +TI 1771360828.500037875 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2367 +TI 1771360828.500238175 +CC NStripHits 3 +PE 84.5802 +PP 3.88767 0.17535 -0.00154687 +PW 0 +SE +ET PH +ID 2368 +TI 1771360828.500688175 +CC NStripHits 3 +PE 62.7574 +PP 2.4908 -0.0303473 2.09377 +PW 0 +SE +ET PH +ID 2369 +TI 1771360828.501367825 +CC NStripHits 2 +PE 129.949 +PP 2.25798 0.138274 2.6758 +PW 0 +SE +ET CO +ID 2370 +TI 1771360828.504158008 +CC NStripHits 4 +PQ 0.607549 +SQ 2 +CT 0 1 +TL 1 +TE 124.513 +CE 149.865 1.0204 124.513 1.02642 +CD 2.72361 -0.400557 -1.39842 0.0336036 0.0244298 0.0336036 2.95642 -0.0388456 -1.86405 0.0336036 0.0273317 0.0336036 0 0 0 0 0 0 +LA 0.633914 +SE +ET CO +ID 2371 +TI 1771360828.505002341 +CC NStripHits 4 +PQ 4.93796 +SQ 2 +CT 0 1 +TL 1 +TE 95.4285 +CE 180.98 1.01924 95.4285 1.35085 +CD -1.2342 -0.0407327 2.21017 0.0336036 0.0273054 0.0336036 -0.535766 -0.0867376 1.86095 0.0336036 0.0269058 0.0336036 0 0 0 0 0 0 +LA 0.782228 +SE +ET CO +ID 2372 +TI 1771360828.506132458 +CC NStripHits 5 +PQ 5.0026 +SQ 2 +CT 0.555589 0.444411 +TL 1 +TE 150.187 +CE 193.386 1.21335 150.187 1.46054 +CD 0.977516 -1.15641 1.16252 0.0336036 0.0256676 0.0336036 1.32673 -0.717522 -0.234359 0.0336036 0.0220675 0.0336036 0 0 0 0 0 0 +LA 1.50527 +SE +ET UN +ID 2373 +TI 1771360828.506340825 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 65.9251 +SE +ID 2374 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.244677) +BD GR Veto +PQ 0.137586 +SE +ET PH +ID 2375 +TI 1771360828.509379908 +CC NStripHits 2 +PE 193.188 +PP -1.00139 -1.15572 -2.44608 +PW 0 +SE +ET UN +ID 2376 +TI 1771360828.509826275 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.9738 +SE +ET CO +ID 2377 +TI 1771360828.509982308 +CC NStripHits 5 +PQ 39.4722 +SQ 2 +CT 0 1 +TL 1 +TE 129.545 +CE 226.447 1.99483 129.545 1.35123 +CD -1.2342 -0.0960944 -1.28202 0.0336036 0.0267986 0.0336036 -2.16545 -0.291169 -1.16561 0.0336036 0.0252418 0.0336036 0 0 0 0 0 0 +LA 0.958557 +SE +ET PH +ID 2378 +TI 1771360828.510059325 +CC NStripHits 2 +PE 63.2936 +PP -2.28186 -0.089027 -0.816391 +PW 0 +SE +ID 2379 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 33.117692)) (GR Hit: Detector ID 0 and Energy 226.585760) +BD GR Veto +PQ 5.71647 +SE +ET CO +ID 2380 +TI 1771360828.511218741 +CC NStripHits 4 +PQ 0.363587 +SQ 2 +CT 0 1 +TL 1 +TE 119.942 +CE 236.316 1.0505 119.942 1.08497 +CD 0.628297 0.302773 0.696891 0.0336036 0.041845 0.0336036 2.4908 -0.777971 -2.32967 0.0336036 0.0212193 0.0336036 0 0 0 0 0 0 +LA 3.71443 +SE +ET UN +ID 2381 +TI 1771360828.513008541 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8192 +SE +ID 2382 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (60.716403)) (GR Hit: Detector ID 0 and Energy 101.785460) +BD GR Veto +PQ 60.7164 +SE +ET PH +ID 2383 +TI 1771360828.515923808 +CC NStripHits 2 +PE 300.397 +PP 1.09392 0.291097 -1.28202 +PW 0 +SE +ET PH +ID 2384 +TI 1771360828.516625558 +CC NStripHits 2 +PE 82.0536 +PP -2.9803 0.230571 -0.350766 +PW 0 +SE +ET PH +ID 2385 +TI 1771360828.517230625 +CC NStripHits 2 +PE 77.1062 +PP 2.25798 0.258025 -3.95936 +PW 0 +SE +ET PH +ID 2386 +TI 1771360828.517748775 +CC NStripHits 3 +PE 224.569 +PP 4.12048 -0.142477 1.86095 +PW 0 +SE +ET PH +ID 2387 +TI 1771360828.522756258 +CC NStripHits 2 +PE 75.5028 +PP 0.628297 0.216326 0.464078 +PW 0 +SE +ET PH +ID 2388 +TI 1771360828.523297342 +CC NStripHits 3 +PE 80.4296 +PP -1.46702 0.371562 -2.32967 +PW 0 +SE +ET UN +ID 2389 +TI 1771360828.523929108 +BD DepthCalibrationError (Out of Range) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 310.171 +SE +ET PH +ID 2390 +TI 1771360828.524948792 +CC NStripHits 2 +PE 82.0536 +PP 4.3533 0.355271 0.929703 +PW 0 +SE +ET CO +ID 2391 +TI 1771360828.525339258 +CC NStripHits 5 +PQ 1.32422 +SQ 2 +CT 0 1 +TL 1 +TE 125.528 +CE 138.092 1.01461 125.528 1.16716 +CD 2.25798 -0.891921 0.696891 0.0336036 0.020043 0.0336036 2.4908 -0.583338 0.464078 0.0336036 0.0228977 0.0336036 0 0 0 0 0 0 +LA 0.451254 +SE +ET UN +ID 2392 +TI 1771360828.526052958 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.8447 +SE +ET PH +ID 2393 +TI 1771360828.526819758 +CC NStripHits 2 +PE 51.04 +PP 1.67595 -1.13495 2.55939 +PW 0 +SE +ET UN +ID 2394 +TI 1771360828.527355292 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ID 2395 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 90.802720) (GR Hit: Detector ID 0 and Energy 167.204072) +BD GR Veto +PQ 1.29302 +SE +ET PH +ID 2396 +TI 1771360828.530202258 +CC NStripHits 2 +PE 51.8016 +PP -1.81623 0.349787 1.04611 +PW 0 +SE +ET CO +ID 2397 +TI 1771360828.531015542 +CC NStripHits 5 +PQ 0.516047 +SQ 2 +CT 0 1 +TL 1 +TE 40.2225 +CE 116.507 1.03395 40.2225 0.987022 +CD 2.72361 -0.784451 -1.16561 0.0336036 0.0211268 0.0336036 2.4908 0.373048 -0.699984 0.0336036 0.0206779 0.0336036 0 0 0 0 0 0 +LA 1.26918 +SE +ET PH +ID 2398 +TI 1771360828.531646408 +CC NStripHits 3 +PE 191.988 +PP 3.42205 0.11262 0.929703 +PW 0 +SE +ET UN +ID 2399 +TI 1771360828.532505525 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2400 +TI 1771360828.533710258 +CC NStripHits 2 +PE 80.3855 +PP -1.00139 0.374311 2.32658 +PW 0 +SE +ET PH +ID 2401 +TI 1771360828.535415125 +CC NStripHits 2 +PE 80.5968 +PP 1.55955 0.379771 -3.37733 +PW 0 +SE +ET PH +ID 2402 +TI 1771360828.535972425 +CC NStripHits 2 +PE 64.3246 +PP 2.72361 -0.895102 1.86095 +PW 0 +SE +ET PH +ID 2403 +TI 1771360828.536160025 +CC NStripHits 2 +PE 81.3325 +PP -0.186547 0.344702 -0.350766 +PW 0 +SE +ID 2404 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.489164) +BD GR Veto +PQ 0.283354 +SE +ET UN +ID 2405 +TI 1771360828.537272642 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2637 +SE +ET PH +ID 2406 +TI 1771360828.538687892 +CC NStripHits 2 +PE 110.252 +PP 2.6072 0.367325 -2.56248 +PW 0 +SE +ID 2407 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.016312) +BD GR Veto +PQ 0.0568087 +SE +ET UN +ID 2408 +TI 1771360828.543444025 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 51.5296 +SE +ID 2409 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 210.383766) +BD GR Veto +PQ 0.000760594 +SE +ET PH +ID 2410 +TI 1771360828.546622142 +CC NStripHits 2 +PE 81.18 +PP -1.1178 0.27287 1.51173 +PW 0 +SE +ET PH +ID 2411 +TI 1771360828.546922059 +CC NStripHits 2 +PE 52.5018 +PP -1.00139 0.378648 0.580484 +PW 0 +SE +ID 2412 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 102.182939) +BD GR Veto +PQ 0.241034 +SE +ET PH +ID 2413 +TI 1771360828.552739659 +CC NStripHits 2 +PE 165.962 +PP 3.53845 -0.328675 -4.6578 +PW 0 +SE +ET CO +ID 2414 +TI 1771360828.554035909 +CC NStripHits 7 +PQ 88.8789 +SQ 3 +CT 0.614516 1.43331 +TL 1 +TE 88.6185 +CE 285.031 2.61691 88.6185 1.00439 +CD 3.07283 -1.13139 -0.00154687 0.0336036 0.0280476 0.0336036 3.77127 -0.598378 -0.699984 0.0336036 0.022834 0.0336036 0 0 0 0 0 0 +LA 0.368107 +SE +ET UN +ID 2415 +TI 1771360828.554615342 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 50.3655 +SE +ET UN +ID 2416 +TI 1771360828.558529992 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2417 +TI 1771360828.558711392 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2418 +TI 1771360828.559218225 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.6669 +SE +ET CO +ID 2419 +TI 1771360828.560154792 +CC NStripHits 5 +PQ 0.147826 +SQ 2 +CT 0.518237 0.481763 +TL 1 +TE 181.277 +CE 169.829 1.15094 181.277 1.0208 +CD -0.419359 -0.7061 -1.28202 0.0336036 0.0221836 0.0336036 -0.884984 -0.0711103 -0.350766 0.0336036 0.0270101 0.0336036 0 0 0 0 0 0 +LA 1.21953 +SE +ET PH +ID 2420 +TI 1771360828.561098742 +CC NStripHits 2 +PE 47.5116 +PP 3.07283 0.371091 1.04611 +PW 0 +SE +ET PH +ID 2421 +TI 1771360828.563467709 +CC NStripHits 2 +PE 277.515 +PP 1.55955 -0.20299 -4.19217 +PW 0 +SE +ET PH +ID 2422 +TI 1771360828.564126242 +CC NStripHits 2 +PE 70.7609 +PP -0.768578 -0.0159011 -4.42498 +PW 0 +SE +ET PH +ID 2423 +TI 1771360828.564599026 +CC NStripHits 2 +PE 67.8438 +PP -2.63108 0.353398 -1.86405 +PW 0 +SE +ID 2424 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.424252) +BD GR Veto +PQ 4.25613 +SE +ET PH +ID 2425 +TI 1771360828.565448676 +CC NStripHits 3 +PE 180.016 +PP -0.768578 -0.194968 -2.32967 +PW 0 +SE +ID 2426 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.660781) +BD GR Veto +PQ 0.114661 +SE +ID 2427 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (61.146243)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 114.957566)) (GR Hit: Detector ID 0 and Energy 203.488871) +BD GR Veto +PQ 61.1462 +SE +ET PH +ID 2428 +TI 1771360828.571413376 +CC NStripHits 2 +PE 79.6535 +PP -0.535766 0.366505 0.464078 +PW 0 +SE +ID 2429 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.053106) +BD GR Veto +PQ 0.04106 +SE +ET UN +ID 2430 +TI 1771360828.572926026 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.9596 +SE +ET UN +ID 2431 +TI 1771360828.573616876 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.357 +SE +ET PH +ID 2432 +TI 1771360828.575565409 +CC NStripHits 2 +PE 85.7139 +PP 0.628297 0.323781 -3.72655 +PW 0 +SE +ID 2433 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 119.595380) +BD GR Veto +PQ 0.000365094 +SE +ET PH +ID 2434 +TI 1771360828.580659309 +CC NStripHits 4 +PE 255.612 +PP 2.37439 0.220668 -0.350766 +PW 0 +SE +ID 2435 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.608806) +BD GR Veto +PQ +SE +ID 2436 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.579532) +BD GR Veto +PQ 0.0107395 +SE +ET UN +ID 2437 +TI 1771360828.583929309 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.4686 +SE +ID 2438 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 41.588938) +BD GR Veto +PQ 0.154557 +SE +ET PH +ID 2439 +TI 1771360828.586047626 +CC NStripHits 2 +PE 81.6215 +PP -2.04905 -0.0543905 2.09377 +PW 0 +SE +ID 2440 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.484119) +BD GR Veto +PQ 0.00250404 +SE +ET UN +ID 2441 +TI 1771360828.587243893 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.6534 +SE +ET PH +ID 2442 +TI 1771360828.588500493 +CC NStripHits 2 +PE 29.7049 +PP 0.511891 -0.256742 -0.583578 +PW 0 +SE +ET UN +ID 2443 +TI 1771360828.589759293 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2444 +TI 1771360828.590195009 +CC NStripHits 4 +PE 224.604 +PP 4.23689 0.372957 0.114859 +PW 0 +SE +ET PH +ID 2445 +TI 1771360828.592778509 +CC NStripHits 3 +PE 355.927 +PP 0.861109 -0.418904 1.62814 +PW 0 +SE +ET PH +ID 2446 +TI 1771360828.594202576 +CC NStripHits 3 +PE 192.777 +PP 3.07283 0.143121 -0.699984 +PW 0 +SE +ET PH +ID 2447 +TI 1771360828.597505576 +CC NStripHits 2 +PE 355.089 +PP 0.861109 -0.19867 1.74455 +PW 0 +SE +ET PH +ID 2448 +TI 1771360828.599117059 +CC NStripHits 5 +PE 185.559 +PP 3.53845 0.1797 1.86095 +PW 0 +SE +ET PH +ID 2449 +TI 1771360828.600404860 +CC NStripHits 2 +PE 32.3621 +PP -1.1178 0.0163655 -1.86405 +PW 0 +SE +ET PH +ID 2450 +TI 1771360828.601604793 +CC NStripHits 2 +PE 127.413 +PP 4.3533 -0.481895 0.464078 +PW 0 +SE +ET PH +ID 2451 +TI 1771360828.601979093 +CC NStripHits 2 +PE 80.9238 +PP -1.93264 0.357031 -3.49373 +PW 0 +SE +ET PH +ID 2452 +TI 1771360828.602134626 +CC NStripHits 2 +PE 103.168 +PP -0.0701406 0.0645367 -3.72655 +PW 0 +SE +ET PH +ID 2453 +TI 1771360828.602595243 +CC NStripHits 2 +PE 115.863 +PP 1.67595 0.265766 0.580484 +PW 0 +SE +ET PH +ID 2454 +TI 1771360828.602943126 +CC NStripHits 2 +PE 79.4572 +PP -2.16545 0.33949 -4.42498 +PW 0 +SE +ET PH +ID 2455 +TI 1771360828.603426693 +CC NStripHits 2 +PE 27.3483 +PP -1.00139 -0.658177 -2.67889 +PW 0 +SE +ET CO +ID 2456 +TI 1771360828.604208026 +CC NStripHits 4 +PQ 0.518796 +SQ 2 +CT 0 1 +TL 1 +TE 27.7646 +CE 150.375 1.0375 27.7646 0.984124 +CD 4.00408 0.136697 1.27892 0.0336036 0.0297011 0.0336036 3.77127 -0.579494 0.696891 0.0336036 0.0229147 0.0336036 0 0 0 0 0 0 +LA 0.951781 +SE +ET UN +ID 2457 +TI 1771360828.608265676 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 2458 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET UN +ID 2459 +TI 1771360828.609845593 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.2284 +SE +ID 2460 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.695479) +BD GR Veto +PQ 0.101389 +SE +ET UN +ID 2461 +TI 1771360828.611090960 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2462 +TI 1771360828.611394060 +CC NStripHits 2 +PE 80.1897 +PP 3.88767 0.168467 1.74455 +PW 0 +SE +ET PH +ID 2463 +TI 1771360828.612321160 +CC NStripHits 2 +PE 79.7414 +PP -0.535766 0.179744 -1.98045 +PW 0 +SE +ET PH +ID 2464 +TI 1771360828.612391210 +CC NStripHits 3 +PE 67.6942 +PP 0.628297 0.366007 -0.583578 +PW 0 +SE +ET CO +ID 2465 +TI 1771360828.613039360 +CC NStripHits 5 +PQ 2.83527 +SQ 2 +CT 0 1 +TL 1 +TE 99.3391 +CE 176.289 1.15299 99.3391 1.02693 +CD -0.884984 0.359424 -3.26092 0.0336036 0.0288779 0.0336036 -1.2342 0.369007 -3.14452 0.0336036 0.0233496 0.0336036 0 0 0 0 0 0 +LA 0.368229 +SE +ET UN +ID 2466 +TI 1771360828.613277660 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET PH +ID 2467 +TI 1771360828.614390810 +CC NStripHits 2 +PE 61.6658 +PP -2.74748 -0.974821 -3.14452 +PW 0 +SE +ET PH +ID 2468 +TI 1771360828.614989576 +CC NStripHits 2 +PE 72.6615 +PP 2.02517 0.371044 -2.9117 +PW 0 +SE +ID 2469 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 23.087926) +BD GR Veto +PQ 0.642932 +SE +ID 2470 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.615405) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.506873) +BD GR Veto +PQ 12.2751 +SE +ET PH +ID 2471 +TI 1771360828.617976343 +CC NStripHits 3 +PE 70.0451 +PP 0.0462656 0.280991 -4.30858 +PW 0 +SE +ET UN +ID 2472 +TI 1771360828.618289843 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 2473 +TI 1771360828.620523393 +CC NStripHits 6 +PQ 3.37748 +SQ 2 +CT 0.540573 0.459427 +TL 1 +TE 189.063 +CE 170.123 1.56539 189.063 1.13128 +CD -1.2342 -0.201432 -0.234359 0.0336036 0.0258498 0.0336036 -0.884984 0.106423 -0.350766 0.0336036 0.0290383 0.0336036 0 0 0 0 0 0 +LA 0.479872 +SE +ET PH +ID 2474 +TI 1771360828.621128843 +CC NStripHits 2 +PE 71.0806 +PP -1.69983 0.123697 2.55939 +PW 0 +SE +ET PH +ID 2475 +TI 1771360828.621886677 +CC NStripHits 2 +PE 80.1222 +PP 3.65486 0.100695 -4.42498 +PW 0 +SE +ET CO +ID 2476 +TI 1771360828.622615927 +CC NStripHits 8 +PQ 5.23 +SQ 3 +CT 0.0037142 0.0068856 +TL 1 +TE 94.8485 +CE 282.221 1.94653 94.8485 0.965732 +CD -0.535766 0.163369 1.16252 0.0336036 0.0304546 0.0336036 -1.2342 0.141328 0.580484 0.0336036 0.0298162 0.0336036 0 0 0 0 0 0 +LA 0.831501 +SE +ET PH +ID 2477 +TI 1771360828.625119993 +CC NStripHits 2 +PE 81.4184 +PP 1.32673 0.0824706 -0.467172 +PW 0 +SE +ET UN +ID 2478 +TI 1771360828.625552843 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 179.484 +SE +ID 2479 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 122.531166) +BD GR Veto +PQ 0.0512176 +SE +ET PH +ID 2480 +TI 1771360828.626049927 +CC NStripHits 2 +PE 79.8848 +PP -0.0701406 0.240202 2.09377 +PW 0 +SE +ID 2481 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET PH +ID 2482 +TI 1771360828.627610143 +CC NStripHits 2 +PE 141.556 +PP -2.51467 0.279102 -4.19217 +PW 0 +SE +ID 2483 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.288473) +BD GR Veto +PQ 3.51569 +SE +ET PH +ID 2484 +TI 1771360828.634143243 +CC NStripHits 3 +PE 79.9025 +PP -1.93264 0.352535 -1.74764 +PW 0 +SE +ET PH +ID 2485 +TI 1771360828.635041360 +CC NStripHits 2 +PE 29.8837 +PP -1.46702 -0.0637231 2.32658 +PW 0 +SE +ET UN +ID 2486 +TI 1771360828.636298160 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.9055 +SE +ET UN +ID 2487 +TI 1771360828.637448960 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7068 +SE +ET PH +ID 2488 +TI 1771360828.638649527 +CC NStripHits 2 +PE 79.5797 +PP 1.90877 0.377317 -3.37733 +PW 0 +SE +ET CO +ID 2489 +TI 1771360828.639210627 +CC NStripHits 4 +PQ 1.83239 +SQ 2 +CT 0 1 +TL 1 +TE 31.1495 +CE 87.7073 1.06236 31.1495 0.989341 +CD 3.30564 0.370634 -0.117953 0.0336036 0.0222974 0.0336036 3.42205 0.357358 -0.350766 0.0336036 0.0299197 0.0336036 0 0 0 0 0 0 +LA 0.260633 +SE +ET PH +ID 2490 +TI 1771360828.640277344 +CC NStripHits 2 +PE 110.882 +PP 1.21033 0.10077 -4.54139 +PW 0 +SE +ET PH +ID 2491 +TI 1771360828.643676227 +CC NStripHits 2 +PE 356.418 +PP 2.6072 -0.467795 -2.21327 +PW 0 +SE +ET PH +ID 2492 +TI 1771360828.644404827 +CC NStripHits 3 +PE 392.788 +PP 0.744703 0.339942 -3.84295 +PW 0 +SE +ID 2493 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.170380) +BD GR Veto +PQ 0.0433389 +SE +ET CO +ID 2494 +TI 1771360828.646485927 +CC NStripHits 5 +PQ 1.55631 +SQ 2 +CT 0 1 +TL 1 +TE 138.776 +CE 175.269 1.17915 138.776 0.98025 +CD -1.35061 -0.140134 -3.49373 0.0336036 0.0263927 0.0336036 -1.58342 0.120975 -3.95936 0.0336036 0.0293439 0.0336036 0 0 0 0 0 0 +LA 0.5824 +SE +ET PH +ID 2495 +TI 1771360828.646811260 +CC NStripHits 2 +PE 100.982 +PP -2.74748 0.318976 0.696891 +PW 0 +SE +ET PH +ID 2496 +TI 1771360828.647278510 +CC NStripHits 4 +PE 225.685 +PP -2.51467 -0.223355 -0.117953 +PW 0 +SE +ID 2497 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.656454) +BD GR Veto +PQ 0.168763 +SE +ET UN +ID 2498 +TI 1771360828.647998894 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 2499 +TI 1771360828.650708010 +CC NStripHits 5 +PQ 0.0924117 +SQ 2 +CT 0 1 +TL 1 +TE 99.5655 +CE 203.424 1.1695 99.5655 1.02509 +CD -0.186547 0.0252097 -3.84295 0.0336036 0.027885 0.0336036 0.162672 -0.112785 -3.72655 0.0336036 0.0265952 0.0336036 0 0 0 0 0 0 +LA 0.393123 +SE +ET PH +ID 2500 +TI 1771360828.650994860 +CC NStripHits 3 +PE 169.584 +PP -2.63108 -0.119633 -3.61014 +PW 0 +SE +ID 2501 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.359778) +BD GR Veto +PQ 9.01401 +SE +ET PH +ID 2502 +TI 1771360828.653802510 +CC NStripHits 2 +PE 37.8211 +PP -1.2342 -0.503925 -1.16561 +PW 0 +SE +ET PH +ID 2503 +TI 1771360828.655724494 +CC NStripHits 3 +PE 137.378 +PP 2.25798 0.269731 -3.37733 +PW 0 +SE +ID 2504 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.570973) +BD GR Veto +PQ 1.91489 +SE +ID 2505 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.628897) +BD GR Veto +PQ 0.221325 +SE +ID 2506 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 302.435088) +BD GR Veto +PQ 0.0954555 +SE +ID 2507 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.570180) +BD GR Veto +PQ +SE +ET PH +ID 2508 +TI 1771360828.661458794 +CC NStripHits 3 +PE 79.6169 +PP 3.88767 0.346228 -3.61014 +PW 0 +SE +ET PH +ID 2509 +TI 1771360828.661780461 +CC NStripHits 3 +PE 226.052 +PP 4.12048 -0.0727438 -1.16561 +PW 0 +SE +ID 2510 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.153151) (Strip hit removed with energy 6.301945) +QA StripPairing (GR Hit: Detector ID 0 and Energy 153.633008) +BD GR Veto +PQ 15.1671 +SE +ET PH +ID 2511 +TI 1771360828.664884911 +CC NStripHits 2 +PE 300.99 +PP 0.861109 -0.295053 -0.234359 +PW 0 +SE +ET PH +ID 2512 +TI 1771360828.667393344 +CC NStripHits 2 +PE 102.215 +PP -2.16545 0.29159 -0.816391 +PW 0 +SE +ET PH +ID 2513 +TI 1771360828.668184627 +CC NStripHits 2 +PE 31.2801 +PP 3.30564 -0.0380702 -4.6578 +PW 0 +SE +ET PH +ID 2514 +TI 1771360828.669183077 +CC NStripHits 2 +PE 30.6506 +PP -1.93264 -0.190949 -0.583578 +PW 0 +SE +ID 2515 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (132.184211)) (GR Hit: Detector ID 0 and Energy 163.612082) +BD GR Veto +PQ 132.184 +SE +ET UN +ID 2516 +TI 1771360828.675299961 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 2517 +TI 1771360828.676774011 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2518 +TI 1771360828.677596044 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2519 +TI 1771360828.677807511 +CC NStripHits 2 +PE 80.2959 +PP -1.58342 -0.242056 2.6758 +PW 0 +SE +ID 2520 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 87.830875) +BD GR Veto +PQ 0.0184351 +SE +ID 2521 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.832725) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 61.346991)) (GR Hit: Detector ID 0 and Energy 73.817599) +BD GR Veto +PQ 22.6878 +SE +ID 2522 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.453431) +BD GR Veto +PQ 0.178863 +SE +ID 2523 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 137.864936) +BD GR Veto +PQ 0.491582 +SE +ET UN +ID 2524 +TI 1771360828.679749327 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2525 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 155.948499) +BD GR Veto +PQ 0.048502 +SE +ID 2526 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2527 +TI 1771360828.683422111 +CC NStripHits 2 +PE 297.049 +PP 1.44314 -0.689369 -2.32967 +PW 0 +SE +ID 2528 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2529 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.589490) +BD GR Veto +PQ +SE +ET UN +ID 2530 +TI 1771360828.684172428 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 2531 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ET PH +ID 2532 +TI 1771360828.684844661 +CC NStripHits 2 +PE 31.1757 +PP -1.2342 0.138156 -0.00154687 +PW 0 +SE +ET PH +ID 2533 +TI 1771360828.686300511 +CC NStripHits 3 +PE 106.146 +PP 0.162672 -0.695053 -4.42498 +PW 0 +SE +ET PH +ID 2534 +TI 1771360828.686459744 +CC NStripHits 2 +PE 138.222 +PP 3.65486 -0.325114 -0.350766 +PW 0 +SE +ET PH +ID 2535 +TI 1771360828.686655044 +CC NStripHits 4 +PE 456.684 +PP 3.65486 -0.900847 0.114859 +PW 0 +SE +ET UN +ID 2536 +TI 1771360828.687289111 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2537 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 303.138892) +BD GR Veto +PQ 0.00918489 +SE +ID 2538 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.445359) +BD GR Veto +PQ +SE +ID 2539 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 55.222151) +BD GR Veto +PQ 0.468115 +SE +ET UN +ID 2540 +TI 1771360828.688863828 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.932 +SE +ET UN +ID 2541 +TI 1771360828.689215694 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 175.552 +SE +ET UN +ID 2542 +TI 1771360828.691418378 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 161.171 +SE +ET PH +ID 2543 +TI 1771360828.691737111 +CC NStripHits 2 +PE 25.1388 +PP 0.395484 -1.163 -0.234359 +PW 0 +SE +ET UN +ID 2544 +TI 1771360828.691809661 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.0945 +SE +ET PH +ID 2545 +TI 1771360828.694155611 +CC NStripHits 2 +PE 158.481 +PP -1.58342 -0.0435145 -4.07577 +PW 0 +SE +ID 2546 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 165.896261) +BD GR Veto +PQ 0.312926 +SE +ET UN +ID 2547 +TI 1771360828.695645511 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2548 +TI 1771360828.695785111 +CC NStripHits 3 +PE 146.377 +PP -2.16545 0.142373 -3.49373 +PW 0 +SE +ID 2549 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 46.849015) +BD GR Veto +PQ 8.28119 +SE +ET PH +ID 2550 +TI 1771360828.699036444 +CC NStripHits 2 +PE 115.189 +PP -1.81623 -1.07558 2.32658 +PW 0 +SE +ET PH +ID 2551 +TI 1771360828.699224544 +CC NStripHits 2 +PE 78.5243 +PP -2.63108 0.222315 -3.95936 +PW 0 +SE +ET CO +ID 2552 +TI 1771360828.699649861 +CC NStripHits 4 +PQ 1.09893 +SQ 2 +CT 0 1 +TL 1 +TE 65.0773 +CE 102.931 1.05895 65.0773 1.01997 +CD 0.977516 -0.210617 0.347672 0.0336036 0.0257766 0.0336036 0.628297 -0.710779 0.580484 0.0336036 0.0221386 0.0336036 0 0 0 0 0 0 +LA 0.65293 +SE +ID 2553 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2554 +TI 1771360828.703378845 +CC NStripHits 3 +PE 216.824 +PP 2.4908 -0.832399 -0.00154687 +PW 0 +SE +ET PH +ID 2555 +TI 1771360828.704960028 +CC NStripHits 2 +PE 77.698 +PP -2.86389 0.111136 -2.67889 +PW 0 +SE +ET PH +ID 2556 +TI 1771360828.705367945 +CC NStripHits 3 +PE 96.75 +PP 2.4908 -1.05368 -0.583578 +PW 0 +SE +ET UN +ID 2557 +TI 1771360828.706469378 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 70.9757 +SE +ET CO +ID 2558 +TI 1771360828.706760161 +CC NStripHits 6 +PQ 0.346103 +SQ 2 +CT 0 1 +TL 1 +TE 117.833 +CE 187.365 1.15333 117.833 1.14472 +CD 2.37439 -0.486733 0.580484 0.0336036 0.0235679 0.0336036 2.4908 -0.411229 1.27892 0.0336036 0.0242972 0.0336036 0 0 0 0 0 0 +LA 0.712085 +SE +ID 2559 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.351327) +BD GR Veto +PQ 0.153051 +SE +ID 2560 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.647454) +BD GR Veto +PQ +SE +ET PH +ID 2561 +TI 1771360828.710509578 +CC NStripHits 2 +PE 80.9165 +PP 3.88767 0.0258973 -2.67889 +PW 0 +SE +ET UN +ID 2562 +TI 1771360828.710914061 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 189.452 +SE +ET PH +ID 2563 +TI 1771360828.712096728 +CC NStripHits 4 +PE 776.077 +PP -0.652172 -0.517696 0.231266 +PW 0 +SE +ET CO +ID 2564 +TI 1771360828.712505861 +CC NStripHits 4 +PQ 0.235013 +SQ 2 +CT 0 1 +TL 1 +TE 69.6346 +CE 182.258 1.05771 69.6346 1.01918 +CD 2.14158 0.0251229 -4.42498 0.0336036 0.0278841 0.0336036 3.07283 -0.74085 -0.583578 0.0336036 0.0217837 0.0336036 0 0 0 0 0 0 +LA 4.0262 +SE +ET PH +ID 2565 +TI 1771360828.712954928 +CC NStripHits 2 +PE 70.4067 +PP -1.00139 -1.07543 -1.98045 +PW 0 +SE +ID 2566 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (94.785561)) (GR Hit: Detector ID 0 and Energy 112.251671) +BD GR Veto +PQ 94.7856 +SE +ID 2567 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.006964) (Strip hit removed with energy 12.406263) +QA StripPairing (GR Hit: Detector ID 0 and Energy 57.492493) +BD GR Veto +PQ 0.00050282 +SE +ET UN +ID 2568 +TI 1771360828.717380961 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.6955 +SE +ET PH +ID 2569 +TI 1771360828.721046778 +CC NStripHits 2 +PE 81.026 +PP -2.9803 0.362358 -0.699984 +PW 0 +SE +ID 2570 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ET CO +ID 2571 +TI 1771360828.728525095 +CC NStripHits 6 +PQ 9.21987 +SQ 2 +CT 0.546074 0.453926 +TL 1 +TE 190.825 +CE 165.288 1.13945 190.825 2.0137 +CD -2.16545 -0.316188 -2.44608 0.0336036 0.0250676 0.0336036 -2.39827 -0.14714 -1.86405 0.0336036 0.0263274 0.0336036 0 0 0 0 0 0 +LA 0.649262 +SE +ID 2572 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.710572) +BD GR Veto +PQ 17.9675 +SE +ET UN +ID 2573 +TI 1771360828.730792262 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 54.6126 +SE +ET PH +ID 2574 +TI 1771360828.731319995 +CC NStripHits 2 +PE 223.273 +PP 4.12048 0.077789 -2.09686 +PW 0 +SE +ET PH +ID 2575 +TI 1771360828.731963378 +CC NStripHits 2 +PE 650.514 +PP 0.744703 -0.80921 -4.30858 +PW 0 +SE +ET UN +ID 2576 +TI 1771360828.733121378 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2577 +TI 1771360828.734929662 +CC NStripHits 2 +PE 126.832 +PP 3.30564 -0.977067 0.696891 +PW 0 +SE +ET PH +ID 2578 +TI 1771360828.736846495 +CC NStripHits 3 +PE 83.5555 +PP -1.1178 0.266425 -3.26092 +PW 0 +SE +ET UN +ID 2579 +TI 1771360828.737133495 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 53.0278 +SE +ET PH +ID 2580 +TI 1771360828.737284295 +CC NStripHits 2 +PE 43.8829 +PP -0.419359 0.378029 -0.583578 +PW 0 +SE +ID 2581 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 98.405850) +BD GR Veto +PQ 0.925733 +SE +ID 2582 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.607035) +BD GR Veto +PQ 0.548977 +SE +ET UN +ID 2583 +TI 1771360828.742489095 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2584 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (71.861551)) (GR Hit: Detector ID 0 and Energy 132.368431) +BD GR Veto +PQ 71.8616 +SE +ID 2585 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.184217) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.733683) +BD GR Veto +PQ 4.65821 +SE +ET PH +ID 2586 +TI 1771360828.744424479 +CC NStripHits 2 +PE 45.6872 +PP -0.302953 -0.719116 1.51173 +PW 0 +SE +ET PH +ID 2587 +TI 1771360828.744763312 +CC NStripHits 2 +PE 82.8233 +PP -1.58342 0.0481709 -3.14452 +PW 0 +SE +ET UN +ID 2588 +TI 1771360828.745036812 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 306.877 +SE +ET CO +ID 2589 +TI 1771360828.745396879 +CC NStripHits 6 +PQ 1.47834 +SQ 2 +CT 0 1 +TL 1 +TE 105.942 +CE 177.999 1.15596 105.942 1.12901 +CD -2.39827 -0.343592 0.696891 0.0336036 0.0249014 0.0336036 -2.16545 -0.465755 0.464078 0.0336036 0.0237688 0.0336036 0 0 0 0 0 0 +LA 0.351185 +SE +ET PH +ID 2590 +TI 1771360828.748594595 +CC NStripHits 2 +PE 81.7363 +PP -1.46702 0.322912 1.97736 +PW 0 +SE +ET PH +ID 2591 +TI 1771360828.750147579 +CC NStripHits 2 +PE 137.893 +PP 0.744703 0.116327 -1.63123 +PW 0 +SE +ET PH +ID 2592 +TI 1771360828.751273795 +CC NStripHits 2 +PE 162.359 +PP -1.2342 0.012238 1.27892 +PW 0 +SE +ET PH +ID 2593 +TI 1771360828.751560995 +CC NStripHits 2 +PE 101.975 +PP -2.39827 -0.896198 1.86095 +PW 0 +SE +ET PH +ID 2594 +TI 1771360828.752219462 +CC NStripHits 3 +PE 70.6121 +PP -1.35061 0.358158 0.114859 +PW 0 +SE +ET UN +ID 2595 +TI 1771360828.752363445 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.692 +SE +ID 2596 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.358714) +BD GR Veto +PQ 0.064582 +SE +ET PH +ID 2597 +TI 1771360828.755169945 +CC NStripHits 5 +PE 205.664 +PP 1.55955 -0.0430657 -2.9117 +PW 0 +SE +ET PH +ID 2598 +TI 1771360828.755307379 +CC NStripHits 2 +PE 113.483 +PP 2.02517 -0.932401 -0.00154687 +PW 0 +SE +ID 2599 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.261081) +BD GR Veto +PQ 0.000713426 +SE +ET UN +ID 2600 +TI 1771360828.759430679 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 190.613 +SE +ID 2601 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 161.966139) +BD GR Veto +PQ 2.32674 +SE +ET PH +ID 2602 +TI 1771360828.764048629 +CC NStripHits 2 +PE 82.6598 +PP 0.395484 -0.0153703 0.696891 +PW 0 +SE +ET PH +ID 2603 +TI 1771360828.764672146 +CC NStripHits 3 +PE 146.354 +PP 4.00408 0.222759 0.231266 +PW 0 +SE +ET PH +ID 2604 +TI 1771360828.765760262 +CC NStripHits 2 +PE 78.5098 +PP -0.535766 0.363835 -2.7953 +PW 0 +SE +ET UN +ID 2605 +TI 1771360828.766351796 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 2606 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 209.607574) +BD GR Veto +PQ 0.77919 +SE +ET UN +ID 2607 +TI 1771360828.767509612 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.991 +SE +ID 2608 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 116.671846) +BD GR Veto +PQ 0.622176 +SE +ID 2609 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 168.798894) +BD GR Veto +PQ 0.99121 +SE +ET PH +ID 2610 +TI 1771360828.768359146 +CC NStripHits 2 +PE 80.0982 +PP 1.09392 0.319842 -4.6578 +PW 0 +SE +ET CO +ID 2611 +TI 1771360828.768541662 +CC NStripHits 5 +PQ 0.364414 +SQ 2 +CT 0 1 +TL 1 +TE 104.51 +CE 143.01 1.09435 104.51 1.21943 +CD 0.511891 -0.116621 -1.98045 0.0336036 0.0265598 0.0336036 0.628297 0.171946 -0.234359 0.0336036 0.0307493 0.0336036 0 0 0 0 0 0 +LA 1.7736 +SE +ET PH +ID 2612 +TI 1771360828.770034712 +CC NStripHits 3 +PE 168.98 +PP 4.12048 0.242283 0.114859 +PW 0 +SE +ET PH +ID 2613 +TI 1771360828.771376629 +CC NStripHits 2 +PE 80.2572 +PP 4.00408 -0.136655 0.696891 +PW 0 +SE +ID 2614 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.090646) +BD GR Veto +PQ 0.29141 +SE +ET PH +ID 2615 +TI 1771360828.772524579 +CC NStripHits 2 +PE 80.9294 +PP -0.768578 0.218923 1.27892 +PW 0 +SE +ET UN +ID 2616 +TI 1771360828.774980362 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2617 +TI 1771360828.775203329 +CC NStripHits 2 +PE 29.0297 +PP -0.768578 0.375284 0.231266 +PW 0 +SE +ID 2618 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2619 +TI 1771360828.776155779 +CC NStripHits 3 +PE 92.2013 +PP 3.65486 -0.54551 -3.49373 +PW 0 +SE +ET PH +ID 2620 +TI 1771360828.776579062 +CC NStripHits 2 +PE 32.8372 +PP 2.6072 0.361405 2.09377 +PW 0 +SE +ID 2621 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 48.374189) +BD GR Veto +PQ 2.80864 +SE +ET UN +ID 2622 +TI 1771360828.778893146 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2623 +TI 1771360828.779498412 +CC NStripHits 2 +PE 81.1281 +PP -0.302953 -0.0698749 2.6758 +PW 0 +SE +ET PH +ID 2624 +TI 1771360828.779622062 +CC NStripHits 2 +PE 302.628 +PP -0.768578 0.09448 -0.117953 +PW 0 +SE +ET CO +ID 2625 +TI 1771360828.779760612 +CC NStripHits 4 +PQ 0.643026 +SQ 2 +CT 0 1 +TL 1 +TE 61.6824 +CE 286.096 1.05369 61.6824 0.959645 +CD -0.535766 -0.0831379 -0.00154687 0.0336036 0.0269376 0.0336036 -0.186547 -0.392381 0.231266 0.0336036 0.0245227 0.0336036 0 0 0 0 0 0 +LA 0.521332 +SE +ET PH +ID 2626 +TI 1771360828.779899296 +CC NStripHits 3 +PE 290.118 +PP -2.63108 -0.580103 -0.117953 +PW 0 +SE +ET PH +ID 2627 +TI 1771360828.780462496 +CC NStripHits 2 +PE 81.517 +PP 2.37439 0.1448 -4.54139 +PW 0 +SE +ET PH +ID 2628 +TI 1771360828.780728079 +CC NStripHits 2 +PE 158.611 +PP 2.84002 -0.208799 -0.00154687 +PW 0 +SE +ID 2629 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.589490) +BD GR Veto +PQ +SE +ID 2630 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.445359) +BD GR Veto +PQ +SE +ET PH +ID 2631 +TI 1771360828.783600829 +CC NStripHits 2 +PE 79.1934 +PP -0.186547 0.0493733 -3.61014 +PW 0 +SE +ID 2632 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 89.684774) +BD GR Veto +PQ 19.6265 +SE +ET UN +ID 2633 +TI 1771360828.786093196 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 140.094 +SE +ET CO +ID 2634 +TI 1771360828.786887079 +CC NStripHits 5 +PQ 19.6982 +SQ 2 +CT 0 1 +TL 1 +TE 79.6423 +CE 197.592 1.93858 79.6423 0.961521 +CD -1.2342 -0.15831 0.813297 0.0336036 0.0262073 0.0336036 -0.652172 -1.05982 -1.51483 0.0336036 0.0203232 0.0336036 0 0 0 0 0 0 +LA 2.56352 +SE +ET PH +ID 2635 +TI 1771360828.787474629 +CC NStripHits 2 +PE 132.159 +PP 0.861109 -0.507168 -3.49373 +PW 0 +SE +ET UN +ID 2636 +TI 1771360828.788809146 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 2637 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2638 +TI 1771360828.792230663 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 2639 +TI 1771360828.792721179 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.9559 +SE +ET PH +ID 2640 +TI 1771360828.793153479 +CC NStripHits 2 +PE 75.5624 +PP 1.79236 0.363196 -4.30858 +PW 0 +SE +ID 2641 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.127405) +BD GR Veto +PQ 0.73643 +SE +ET PH +ID 2642 +TI 1771360828.797122013 +CC NStripHits 3 +PE 383.328 +PP 2.25798 -0.0200807 -0.816391 +PW 0 +SE +ET PH +ID 2643 +TI 1771360828.797746263 +CC NStripHits 2 +PE 59.6569 +PP -0.0701406 -1.1376 0.813297 +PW 0 +SE +ET PH +ID 2644 +TI 1771360828.798762379 +CC NStripHits 2 +PE 82.3988 +PP -1.81623 0.339163 -0.00154687 +PW 0 +SE +ID 2645 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.555878) +BD GR Veto +PQ 0.415783 +SE +ET PH +ID 2646 +TI 1771360828.803291413 +CC NStripHits 2 +PE 79.2947 +PP 1.55955 0.0585828 -2.32967 +PW 0 +SE +ET PH +ID 2647 +TI 1771360828.803490363 +CC NStripHits 3 +PE 118.778 +PP 0.0462656 0.0370193 -3.26092 +PW 0 +SE +ID 2648 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.286946) +BD GR Veto +PQ 0.439967 +SE +ET UN +ID 2649 +TI 1771360828.805146846 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 87.4584 +SE +ET PH +ID 2650 +TI 1771360828.806126380 +CC NStripHits 2 +PE 83.515 +PP -0.0701406 0.291931 -2.32967 +PW 0 +SE +ID 2651 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.797035) +BD GR Veto +PQ 0.186661 +SE +ET PH +ID 2652 +TI 1771360828.808805263 +CC NStripHits 3 +PE 80.2425 +PP 2.95642 -0.0396561 2.44298 +PW 0 +SE +ID 2653 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.083309) +QA StripPairing (GR Hit: Detector ID 0 and Energy 164.541144) +BD GR Veto +PQ 11.7948 +SE +ID 2654 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.322125) +BD GR Veto +PQ 0.00247841 +SE +ET UN +ID 2655 +TI 1771360828.810699196 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6235 +SE +ET PH +ID 2656 +TI 1771360828.811151330 +CC NStripHits 3 +PE 29.8868 +PP 1.79236 -0.0748342 -1.86405 +PW 0 +SE +ET PH +ID 2657 +TI 1771360828.813171680 +CC NStripHits 3 +PE 102.714 +PP -1.58342 -1.13738 -1.39842 +PW 0 +SE +ET UN +ID 2658 +TI 1771360828.814497546 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2659 +TI 1771360828.815566063 +CC NStripHits 3 +PE 103.199 +PP 0.511891 -1.0732 -0.583578 +PW 0 +SE +ET UN +ID 2660 +TI 1771360828.821586963 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2661 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.450301) (Strip hit removed with energy 9.095601) (Strip hit removed with energy 6.071295) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 78.382237) +BD GR Veto +PQ 4.42874 +SE +ID 2662 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.576554) +BD GR Veto +PQ 0.657605 +SE +ET PH +ID 2663 +TI 1771360828.823153880 +CC NStripHits 3 +PE 74.1968 +PP -2.9803 0.370851 -0.816391 +PW 0 +SE +ET PH +ID 2664 +TI 1771360828.824143580 +CC NStripHits 2 +PE 77.1051 +PP -1.35061 -0.627394 1.74455 +PW 0 +SE +ID 2665 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.085199) (Strip hit removed with energy 18.619216) +QA StripPairing (Best reduced chi square is not below 25 (39.947367)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 26.737606)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 143.815775) (GR Hit: Detector ID 0 and Energy 95.231165) +BD GR Veto +PQ 39.9474 +SE +ID 2666 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.233113) +BD GR Veto +PQ 0.335282 +SE +ET PH +ID 2667 +TI 1771360828.826738197 +CC NStripHits 2 +PE 79.0136 +PP 0.977516 0.365172 -3.61014 +PW 0 +SE +ET PH +ID 2668 +TI 1771360828.832148913 +CC NStripHits 3 +PE 213.301 +PP 3.77127 -0.401226 1.16252 +PW 0 +SE +ET PH +ID 2669 +TI 1771360828.833391580 +CC NStripHits 2 +PE 79.9884 +PP 3.07283 0.369337 -0.117953 +PW 0 +SE +ID 2670 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.483877) +BD GR Veto +PQ 0.373374 +SE +ET UN +ID 2671 +TI 1771360828.835086097 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3602 +SE +ET PH +ID 2672 +TI 1771360828.836450347 +CC NStripHits 2 +PE 56.5677 +PP 1.32673 -0.317884 -3.02811 +PW 0 +SE +ET PH +ID 2673 +TI 1771360828.837257497 +CC NStripHits 2 +PE 57.5447 +PP -0.419359 -0.200148 -4.42498 +PW 0 +SE +ID 2674 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.108444) +BD GR Veto +PQ 0.304449 +SE +ID 2675 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.244677) +BD GR Veto +PQ 0.137586 +SE +ET UN +ID 2676 +TI 1771360828.838929313 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.4818 +SE +ET PH +ID 2677 +TI 1771360828.840780247 +CC NStripHits 2 +PE 105.764 +PP 2.14158 0.199286 -2.7953 +PW 0 +SE +ET PH +ID 2678 +TI 1771360828.843279014 +CC NStripHits 2 +PE 53.8199 +PP 3.18923 0.0449034 -1.74764 +PW 0 +SE +ET UN +ID 2679 +TI 1771360828.844538714 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 183.904 +SE +ET PH +ID 2680 +TI 1771360828.846782580 +CC NStripHits 2 +PE 101.515 +PP 2.6072 -0.238262 -3.61014 +PW 0 +SE +ID 2681 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.815024) +BD GR Veto +PQ 0.0561631 +SE +ET PH +ID 2682 +TI 1771360828.850236814 +CC NStripHits 2 +PE 150.451 +PP -0.884984 -0.771211 2.55939 +PW 0 +SE +ET UN +ID 2683 +TI 1771360828.850743530 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2684 +TI 1771360828.852349480 +CC NStripHits 5 +PE 307.914 +PP -1.1178 -0.501614 0.347672 +PW 0 +SE +ET CO +ID 2685 +TI 1771360828.853825347 +CC NStripHits 7 +PQ 38.9402 +SQ 3 +CT 0.130728 0.228588 +TL 1 +TE 155.374 +CE 203.411 1.78859 155.374 1.51223 +CD 1.21033 -0.77804 -2.7953 0.0336036 0.0212182 0.0336036 1.32673 -0.788996 -2.9117 0.0336036 0.0210663 0.0336036 0 0 0 0 0 0 +LA 0.164979 +SE +ET UN +ID 2686 +TI 1771360828.854328897 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 68.1558 +SE +ET PH +ID 2687 +TI 1771360828.854684897 +CC NStripHits 2 +PE 97.5098 +PP 1.21033 -1.12422 -2.09686 +PW 0 +SE +ET PH +ID 2688 +TI 1771360828.854821630 +CC NStripHits 2 +PE 79.3432 +PP -0.0701406 0.349357 -1.51483 +PW 0 +SE +ET PH +ID 2689 +TI 1771360828.854901664 +CC NStripHits 2 +PE 27.2499 +PP 2.02517 0.266212 -2.7953 +PW 0 +SE +ET PH +ID 2690 +TI 1771360828.855447947 +CC NStripHits 2 +PE 80.6379 +PP 2.4908 0.347726 1.62814 +PW 0 +SE +ET PH +ID 2691 +TI 1771360828.855682614 +CC NStripHits 2 +PE 162.395 +PP -1.58342 0.261275 -2.56248 +PW 0 +SE +ID 2692 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.762115) +BD GR Veto +PQ 0.208854 +SE +ET PH +ID 2693 +TI 1771360828.858326464 +CC NStripHits 2 +PE 117.298 +PP -1.00139 -1.08366 -3.37733 +PW 0 +SE +ET CO +ID 2694 +TI 1771360828.861080864 +CC NStripHits 6 +PQ 9.13475 +SQ 2 +CT 0.524632 0.475368 +TL 1 +TE 184.908 +CE 169.295 1.41685 184.908 1.05081 +CD 1.21033 -0.893085 -0.00154687 0.0336036 0.0200329 0.0336036 2.14158 -0.366997 0.580484 0.0336036 0.0247107 0.0336036 0 0 0 0 0 0 +LA 1.21768 +SE +ET PH +ID 2695 +TI 1771360828.861448914 +CC NStripHits 4 +PE 311.753 +PP 3.53845 -0.226137 -0.00154687 +PW 0 +SE +ET PH +ID 2696 +TI 1771360828.861540564 +CC NStripHits 2 +PE 75.7738 +PP 3.42205 0.377012 -4.6578 +PW 0 +SE +ET UN +ID 2697 +TI 1771360828.861689831 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 354.623 +SE +ET UN +ID 2698 +TI 1771360828.865553331 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 60.5062 +SE +ID 2699 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 209.644222) +BD GR Veto +PQ 1.04549 +SE +ET PH +ID 2700 +TI 1771360828.869097831 +CC NStripHits 2 +PE 220.335 +PP -2.9803 -0.0642644 -0.583578 +PW 0 +SE +ID 2701 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.425430) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.234843) +BD GR Veto +PQ 8.48375 +SE +ET PH +ID 2702 +TI 1771360828.870891431 +CC NStripHits 2 +PE 73.2264 +PP 1.44314 0.355758 1.16252 +PW 0 +SE +ET PH +ID 2703 +TI 1771360828.871416447 +CC NStripHits 2 +PE 105.987 +PP 2.25798 -0.0955138 -3.37733 +PW 0 +SE +ET PH +ID 2704 +TI 1771360828.872115714 +CC NStripHits 2 +PE 64.1255 +PP -2.86389 -0.964115 -2.9117 +PW 0 +SE +ET PH +ID 2705 +TI 1771360828.872358714 +CC NStripHits 2 +PE 69.1306 +PP 4.00408 -0.47694 0.696891 +PW 0 +SE +ET PH +ID 2706 +TI 1771360828.872768214 +CC NStripHits 2 +PE 356.19 +PP 3.18923 -0.292041 -2.9117 +PW 0 +SE +ET PH +ID 2707 +TI 1771360828.873394014 +CC NStripHits 2 +PE 78.9513 +PP 2.02517 0.3774 -3.61014 +PW 0 +SE +ET PH +ID 2708 +TI 1771360828.873918631 +CC NStripHits 2 +PE 81.8191 +PP -0.652172 0.109594 -2.44608 +PW 0 +SE +ET PH +ID 2709 +TI 1771360828.876037081 +CC NStripHits 2 +PE 64.5905 +PP 4.23689 0.316411 -0.816391 +PW 0 +SE +ET PH +ID 2710 +TI 1771360828.877152047 +CC NStripHits 2 +PE 89.3449 +PP 3.88767 -0.836866 2.21017 +PW 0 +SE +ET PH +ID 2711 +TI 1771360828.878004881 +CC NStripHits 2 +PE 30.5683 +PP 0.0462656 -0.019087 2.55939 +PW 0 +SE +ID 2712 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 41.419118) +BD GR Veto +PQ 0.360907 +SE +ID 2713 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.025796) +BD GR Veto +PQ 0.133518 +SE +ET UN +ID 2714 +TI 1771360828.882205998 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 365.209 +SE +ET UN +ID 2715 +TI 1771360828.883040381 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 49.6346 +SE +ET PH +ID 2716 +TI 1771360828.883212898 +CC NStripHits 4 +PE 302.974 +PP 1.55955 -0.18156 1.04611 +PW 0 +SE +ID 2717 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2718 +TI 1771360828.883528148 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 65.3531 +SE +ID 2719 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.281913) +BD GR Veto +PQ +SE +ID 2720 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2721 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET UN +ID 2722 +TI 1771360828.885532381 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.387 +SE +ET PH +ID 2723 +TI 1771360828.885799231 +CC NStripHits 2 +PE 127.43 +PP -1.00139 -0.402968 -1.51483 +PW 0 +SE +ET UN +ID 2724 +TI 1771360828.886676664 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 858.479 +SE +ID 2725 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.078886) +BD GR Veto +PQ 0.0976282 +SE +ET PH +ID 2726 +TI 1771360828.891187198 +CC NStripHits 2 +PE 81.8887 +PP -0.884984 0.13065 -2.21327 +PW 0 +SE +ID 2727 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2728 +TI 1771360828.892306864 +CC NStripHits 2 +PE 110.149 +PP 0.395484 0.0589772 -2.56248 +PW 0 +SE +ET PH +ID 2729 +TI 1771360828.892521431 +CC NStripHits 4 +PE 358.167 +PP 3.65486 0.1774 -0.467172 +PW 0 +SE +ID 2730 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.527472) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.900907) +BD GR Veto +PQ 8.38949 +SE +ET PH +ID 2731 +TI 1771360828.895580148 +CC NStripHits 2 +PE 95.6969 +PP 2.37439 -0.991175 0.347672 +PW 0 +SE +ET UN +ID 2732 +TI 1771360828.896117831 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.5624 +SE +ID 2733 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.190738) +BD GR Veto +PQ 0.221247 +SE +ET UN +ID 2734 +TI 1771360828.898396464 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 74.3898 +SE +ET PH +ID 2735 +TI 1771360828.898783914 +CC NStripHits 2 +PE 81.2536 +PP 0.628297 0.158837 0.813297 +PW 0 +SE +ID 2736 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.585002) +BD GR Veto +PQ 12.7858 +SE +ET PH +ID 2737 +TI 1771360828.899052014 +CC NStripHits 2 +PE 59.5725 +PP 1.32673 -0.922547 1.39533 +PW 0 +SE +ET UN +ID 2738 +TI 1771360828.899819864 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6677 +SE +ET PH +ID 2739 +TI 1771360828.901499515 +CC NStripHits 2 +PE 150.452 +PP -2.74748 0.294947 0.464078 +PW 0 +SE +ID 2740 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.687636) +BD GR Veto +PQ 0.621809 +SE +ET PH +ID 2741 +TI 1771360828.902508881 +CC NStripHits 2 +PE 81.1654 +PP -0.186547 0.305675 0.347672 +PW 0 +SE +ET PH +ID 2742 +TI 1771360828.902790915 +CC NStripHits 3 +PE 68.4515 +PP 3.18923 -1.13389 -3.61014 +PW 0 +SE +ID 2743 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.256819) +BD GR Veto +PQ 0.647907 +SE +ID 2744 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.069654) +BD GR Veto +PQ 0.16738 +SE +ET UN +ID 2745 +TI 1771360828.906126465 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2746 +TI 1771360828.906583481 +CC NStripHits 2 +PE 73.5253 +PP 3.77127 -0.967471 -3.61014 +PW 0 +SE +ID 2747 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 124.649364) +BD GR Veto +PQ 0.186931 +SE +ET UN +ID 2748 +TI 1771360828.908021131 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2749 +TI 1771360828.908145365 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 4 +PE 71.0638 +SE +ET UN +ID 2750 +TI 1771360828.908529665 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3658 +SE +ET PH +ID 2751 +TI 1771360828.908631615 +CC NStripHits 2 +PE 81.5346 +PP -2.04905 0.245519 -3.14452 +PW 0 +SE +ID 2752 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2753 +TI 1771360828.909649681 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0858 +SE +ET PH +ID 2754 +TI 1771360828.910773498 +CC NStripHits 2 +PE 97.6467 +PP 2.25798 -0.117497 1.74455 +PW 0 +SE +ET PH +ID 2755 +TI 1771360828.913287598 +CC NStripHits 3 +PE 79.5124 +PP 3.18923 -0.450464 -2.21327 +PW 0 +SE +ET UN +ID 2756 +TI 1771360828.914627231 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2757 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2758 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (38.071116)) (GR Hit: Detector ID 0 and Energy 132.204869) +BD GR Veto +PQ 38.0711 +SE +ID 2759 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 21.539744) +BD GR Veto +PQ 0.0663109 +SE +ID 2760 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 122.115390) (GR Hit: Detector ID 0 and Energy 60.091385) +BD GR Veto +PQ 1.09456 +SE +ET PH +ID 2761 +TI 1771360828.923188082 +CC NStripHits 3 +PE 355.492 +PP 1.55955 0.364968 -1.86405 +PW 0 +SE +ET PH +ID 2762 +TI 1771360828.923893582 +CC NStripHits 3 +PE 355.125 +PP 3.77127 0.352352 -1.51483 +PW 0 +SE +ET UN +ID 2763 +TI 1771360828.926063665 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 58.6281 +SE +ET PH +ID 2764 +TI 1771360828.926307848 +CC NStripHits 2 +PE 81.5289 +PP -2.39827 0.162358 1.39533 +PW 0 +SE +ET PH +ID 2765 +TI 1771360828.927898098 +CC NStripHits 2 +PE 80.3613 +PP -1.46702 0.280706 0.347672 +PW 0 +SE +ET UN +ID 2766 +TI 1771360828.928012482 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9205 +SE +ET PH +ID 2767 +TI 1771360828.928498932 +CC NStripHits 3 +PE 242.133 +PP 3.53845 0.358033 -3.37733 +PW 0 +SE +ET UN +ID 2768 +TI 1771360828.929576665 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2769 +TI 1771360828.930206032 +CC NStripHits 2 +PE 67.5615 +PP 0.162672 -1.05446 1.51173 +PW 0 +SE +ET PH +ID 2770 +TI 1771360828.930876748 +CC NStripHits 2 +PE 22.6813 +PP -1.00139 0.0357773 -3.49373 +PW 0 +SE +ET PH +ID 2771 +TI 1771360828.932992148 +CC NStripHits 2 +PE 130.466 +PP -1.35061 -0.817286 0.929703 +PW 0 +SE +ET PH +ID 2772 +TI 1771360828.935108848 +CC NStripHits 2 +PE 65.2586 +PP -0.186547 0.288878 1.04611 +PW 0 +SE +ET CO +ID 2773 +TI 1771360828.936505332 +CC NStripHits 7 +PQ 1.66357 +SQ 2 +CT 0.550783 0.449217 +TL 1 +TE 151.598 +CE 207.291 1.3152 151.598 1.19284 +CD -1.93264 0.157113 -2.09686 0.0336036 0.0302569 0.0336036 -2.51467 0.30862 -1.98045 0.0336036 0.0417346 0.0336036 0 0 0 0 0 0 +LA 0.612588 +SE +ET UN +ID 2774 +TI 1771360828.937880182 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.6773 +SE +ET PH +ID 2775 +TI 1771360828.939515548 +CC NStripHits 2 +PE 78.5862 +PP -0.0701406 0.213821 -2.7953 +PW 0 +SE +ID 2776 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.931306) +BD GR Veto +PQ 6.02362 +SE +ET PH +ID 2777 +TI 1771360828.943609432 +CC NStripHits 2 +PE 76.8636 +PP -0.884984 0.351481 -2.56248 +PW 0 +SE +ET PH +ID 2778 +TI 1771360828.943919582 +CC NStripHits 2 +PE 349.126 +PP -0.0701406 -0.0983125 -3.84295 +PW 0 +SE +ID 2779 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2780 +TI 1771360828.944309999 +CC NStripHits 2 +PE 219.898 +PP 2.84002 -0.407749 -1.63123 +PW 0 +SE +ET PH +ID 2781 +TI 1771360828.944717482 +CC NStripHits 2 +PE 81.4213 +PP 0.628297 0.345257 -0.467172 +PW 0 +SE +ET PH +ID 2782 +TI 1771360828.946471215 +CC NStripHits 2 +PE 30.8339 +PP 1.79236 0.369163 -2.7953 +PW 0 +SE +ET PH +ID 2783 +TI 1771360828.949832832 +CC NStripHits 2 +PE 74.3974 +PP 1.44314 -0.376221 -1.51483 +PW 0 +SE +ET UN +ID 2784 +TI 1771360828.951037232 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.3317 +SE +ET PH +ID 2785 +TI 1771360828.951956115 +CC NStripHits 2 +PE 57.7868 +PP 3.77127 -1.11305 -3.26092 +PW 0 +SE +ET CO +ID 2786 +TI 1771360828.953886965 +CC NStripHits 4 +PQ 3.41964 +SQ 2 +CT 0 1 +TL 1 +TE 102.382 +CE 173.211 1.01661 102.382 1.04824 +CD 2.84002 -0.111031 -3.26092 0.0336036 0.0266132 0.0336036 2.95642 -0.0168442 -1.74764 0.0336036 0.0275593 0.0336036 0 0 0 0 0 0 +LA 1.52067 +SE +ET PH +ID 2787 +TI 1771360828.954804432 +CC NStripHits 2 +PE 136.482 +PP 1.55955 0.206977 1.04611 +PW 0 +SE +ID 2788 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 356.800603) +BD GR Veto +PQ 0.0247072 +SE +ET PH +ID 2789 +TI 1771360828.956154499 +CC NStripHits 2 +PE 75.7418 +PP 3.88767 -0.279855 0.231266 +PW 0 +SE +ET CO +ID 2790 +TI 1771360828.956430615 +CC NStripHits 5 +PQ 7.98552 +SQ 2 +CT 0 1 +TL 1 +TE 136.773 +CE 219.093 1.56601 136.773 1.15588 +CD -1.58342 -0.838322 -1.74764 0.0336036 0.020507 0.0336036 -1.2342 -0.940846 -1.63123 0.0336036 0.0196696 0.0336036 0 0 0 0 0 0 +LA 0.382122 +SE +ET PH +ID 2791 +TI 1771360828.956970715 +CC NStripHits 2 +PE 69.9642 +PP 3.18923 -1.16559 -4.19217 +PW 0 +SE +ET UN +ID 2792 +TI 1771360828.957169032 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7097 +SE +ET UN +ID 2793 +TI 1771360828.960249949 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 112.455 +SE +ID 2794 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.662730) +BD GR Veto +PQ 0.778615 +SE +ET UN +ID 2795 +TI 1771360828.963251182 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8152 +SE +ET PH +ID 2796 +TI 1771360828.963706299 +CC NStripHits 2 +PE 29.5484 +PP 3.07283 -0.00535786 -1.28202 +PW 0 +SE +ET PH +ID 2797 +TI 1771360828.964744449 +CC NStripHits 2 +PE 52.6984 +PP -1.2342 0.365805 -2.7953 +PW 0 +SE +ET UN +ID 2798 +TI 1771360828.965905016 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 49.2727 +SE +ID 2799 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 312.659782) +BD GR Veto +PQ 1.72081 +SE +ET UN +ID 2800 +TI 1771360828.967922816 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 303.82 +SE +ID 2801 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.326581) +BD GR Veto +PQ 0.613813 +SE +ET UN +ID 2802 +TI 1771360828.969126832 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 276.629 +SE +ET PH +ID 2803 +TI 1771360828.969595566 +CC NStripHits 3 +PE 46.2673 +PP 2.02517 0.195992 -2.21327 +PW 0 +SE +ET PH +ID 2804 +TI 1771360828.971028299 +CC NStripHits 2 +PE 126.907 +PP 2.6072 -1.1314 -0.117953 +PW 0 +SE +ET PH +ID 2805 +TI 1771360828.971888166 +CC NStripHits 2 +PE 68.7172 +PP -1.93264 0.247851 1.97736 +PW 0 +SE +ET PH +ID 2806 +TI 1771360828.972493566 +CC NStripHits 3 +PE 80.7522 +PP -1.1178 0.374382 -3.84295 +PW 0 +SE +ET PH +ID 2807 +TI 1771360828.973469516 +CC NStripHits 2 +PE 201.268 +PP 2.84002 0.209898 -0.234359 +PW 0 +SE +ET PH +ID 2808 +TI 1771360828.974276282 +CC NStripHits 2 +PE 78.972 +PP -1.69983 0.349019 -3.02811 +PW 0 +SE +ID 2809 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2810 +TI 1771360828.976281316 +CC NStripHits 3 +PE 163.808 +PP 1.55955 -0.32451 -4.6578 +PW 0 +SE +ET UN +ID 2811 +TI 1771360828.976402499 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3071 +SE +ET CO +ID 2812 +TI 1771360828.977070049 +CC NStripHits 4 +PQ 3.22353 +SQ 2 +CT 0 1 +TL 1 +TE 87.1579 +CE 116.399 1.07908 87.1579 1.06787 +CD 3.42205 -0.0423977 -0.467172 0.0336036 0.027282 0.0336036 3.53845 0.364496 -0.350766 0.0336036 0.0260956 0.0336036 0 0 0 0 0 0 +LA 0.438933 +SE +ET PH +ID 2813 +TI 1771360828.978253999 +CC NStripHits 2 +PE 164.552 +PP -0.535766 0.340498 2.6758 +PW 0 +SE +ET UN +ID 2814 +TI 1771360828.980454716 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 67.6557 +SE +ET UN +ID 2815 +TI 1771360828.981039833 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2816 +TI 1771360828.981789083 +CC NStripHits 2 +PE 146.555 +PP 4.3533 -0.112596 0.347672 +PW 0 +SE +ET PH +ID 2817 +TI 1771360828.982555116 +CC NStripHits 2 +PE 125.345 +PP 3.07283 -1.13299 0.231266 +PW 0 +SE +ET UN +ID 2818 +TI 1771360828.983213149 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 247.509 +SE +ID 2819 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2820 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 139.315551) +BD GR Veto +PQ 0.00842705 +SE +ET UN +ID 2821 +TI 1771360828.984530949 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 2822 +TI 1771360828.986067466 +CC NStripHits 4 +PQ 71.2026 +SQ 2 +CT 0 1 +TL 1 +TE 76.5871 +CE 129.621 1.50703 76.5871 1.33947 +CD -1.46702 -0.575638 -0.583578 0.0336036 0.0229335 0.0336036 -1.00139 -0.384946 -0.699984 0.0336036 0.0245893 0.0336036 0 0 0 0 0 0 +LA 0.516454 +SE +ID 2823 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (88.476031)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 74.893322)) (GR Hit: Detector ID 0 and Energy 134.167622) +BD GR Veto +PQ 88.476 +SE +ET UN +ID 2824 +TI 1771360828.988106166 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4193 +SE +ET UN +ID 2825 +TI 1771360828.988818549 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.211 +SE +ID 2826 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.567416) +BD GR Veto +PQ 0.010903 +SE +ET UN +ID 2827 +TI 1771360828.990025949 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2828 +TI 1771360828.990720699 +CC NStripHits 3 +PE 81.3036 +PP -0.419359 0.255468 -2.56248 +PW 0 +SE +ET PH +ID 2829 +TI 1771360828.991443199 +CC NStripHits 2 +PE 202.351 +PP -1.93264 -0.692052 1.16252 +PW 0 +SE +ET UN +ID 2830 +TI 1771360828.991868316 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2831 +TI 1771360828.992647433 +CC NStripHits 2 +PE 28.9803 +PP 0.0462656 -0.479715 -4.54139 +PW 0 +SE +ET PH +ID 2832 +TI 1771360828.995327916 +CC NStripHits 2 +PE 58.4682 +PP -1.93264 -0.754614 -0.350766 +PW 0 +SE +ET PH +ID 2833 +TI 1771360828.995789699 +CC NStripHits 2 +PE 76.4016 +PP -1.81623 0.357699 -3.02811 +PW 0 +SE +ET PH +ID 2834 +TI 1771360828.996380683 +CC NStripHits 3 +PE 79.7403 +PP -2.04905 -0.902838 -2.32967 +PW 0 +SE +ET PH +ID 2835 +TI 1771360828.996675916 +CC NStripHits 2 +PE 64.2956 +PP -2.63108 0.155097 2.32658 +PW 0 +SE +ET CO +ID 2836 +TI 1771360828.998113849 +CC NStripHits 4 +PQ 1.55365 +SQ 2 +CT 0 1 +TL 1 +TE 23.2949 +CE 90.1619 1.00624 23.2949 0.983532 +CD -2.04905 -0.476229 -2.09686 0.0336036 0.0236637 0.0336036 -2.51467 0.27897 -2.32967 0.0336036 0.0403943 0.0336036 0 0 0 0 0 0 +LA 0.917239 +SE +ET PH +ID 2837 +TI 1771360829.001006266 +CC NStripHits 3 +PE 59.7774 +PP -1.46702 0.0549818 -3.61014 +PW 0 +SE +ET UN +ID 2838 +TI 1771360829.001927033 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.4122 +SE +ID 2839 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 122.730045) +BD GR Veto +PQ 0.601272 +SE +ET CO +ID 2840 +TI 1771360829.002733666 +CC NStripHits 6 +PQ 15.9104 +SQ 2 +CT 0.529628 0.470372 +TL 1 +TE 198.916 +CE 177.594 1.15582 198.916 1.96615 +CD -0.768578 -0.155525 1.04611 0.0336036 0.0262378 0.0336036 -2.04905 -0.917753 2.6758 0.0336036 0.0198468 0.0336036 0 0 0 0 0 0 +LA 2.20828 +SE +ET UN +ID 2841 +TI 1771360829.003742650 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 67.3507 +SE +ID 2842 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (32.226217)) (GR Hit: Detector ID 0 and Energy 79.710572) +BD GR Veto +PQ 32.2262 +SE +ET PH +ID 2843 +TI 1771360829.005376500 +CC NStripHits 2 +PE 205.198 +PP -1.00139 -0.38205 -0.583578 +PW 0 +SE +ET PH +ID 2844 +TI 1771360829.005644866 +CC NStripHits 2 +PE 123.099 +PP 2.95642 -0.944197 1.27892 +PW 0 +SE +ID 2845 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.308454) +BD GR Veto +PQ 0.0168256 +SE +ET PH +ID 2846 +TI 1771360829.008357616 +CC NStripHits 2 +PE 28.4094 +PP -0.535766 -0.355025 -2.67889 +PW 0 +SE +ET UN +ID 2847 +TI 1771360829.008662683 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2848 +TI 1771360829.009144283 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9187 +SE +ET PH +ID 2849 +TI 1771360829.010162300 +CC NStripHits 3 +PE 176.396 +PP -1.69983 -1.04442 2.32658 +PW 0 +SE +ET PH +ID 2850 +TI 1771360829.013662183 +CC NStripHits 2 +PE 82.6245 +PP 2.84002 0.357672 2.21017 +PW 0 +SE +ID 2851 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 119.385916) +BD GR Veto +PQ 0.015242 +SE +ET PH +ID 2852 +TI 1771360829.015798366 +CC NStripHits 2 +PE 81.4048 +PP 0.744703 0.365631 -4.54139 +PW 0 +SE +ID 2853 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.147043) +BD GR Veto +PQ 0.646631 +SE +ID 2854 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.790667) +BD GR Veto +PQ 0.456597 +SE +ID 2855 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ID 2856 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (28.422754)) (GR Hit: Detector ID 0 and Energy 142.346039) +BD GR Veto +PQ 28.4228 +SE +ET PH +ID 2857 +TI 1771360829.020927450 +CC NStripHits 2 +PE 257.125 +PP -1.2342 -0.144899 -4.54139 +PW 0 +SE +ID 2858 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.760950) +BD GR Veto +PQ 0.0279506 +SE +ET PH +ID 2859 +TI 1771360829.023431483 +CC NStripHits 2 +PE 80.7415 +PP -2.16545 0.337176 1.74455 +PW 0 +SE +ET UN +ID 2860 +TI 1771360829.024888900 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 388.423 +SE +ET PH +ID 2861 +TI 1771360829.025105250 +CC NStripHits 2 +PE 34.5001 +PP -0.0701406 -0.0510345 -3.37733 +PW 0 +SE +ET PH +ID 2862 +TI 1771360829.025418233 +CC NStripHits 2 +PE 29.105 +PP -1.93264 -0.621745 -1.16561 +PW 0 +SE +ET PH +ID 2863 +TI 1771360829.025497800 +CC NStripHits 2 +PE 36.0119 +PP -2.16545 -0.102502 -3.95936 +PW 0 +SE +ET PH +ID 2864 +TI 1771360829.026074700 +CC NStripHits 2 +PE 300.448 +PP -0.302953 0.230314 1.74455 +PW 0 +SE +ET PH +ID 2865 +TI 1771360829.027546117 +CC NStripHits 2 +PE 133.465 +PP -1.46702 0.328493 -3.95936 +PW 0 +SE +ET PH +ID 2866 +TI 1771360829.027829850 +CC NStripHits 2 +PE 78.3821 +PP 4.00408 0.117713 -1.39842 +PW 0 +SE +ET CO +ID 2867 +TI 1771360829.029111400 +CC NStripHits 6 +PQ 26.2497 +SQ 2 +CT 0 1 +TL 1 +TE 136.423 +CE 221.13 1.48151 136.423 1.47881 +CD 1.32673 -0.893731 0.114859 0.0336036 0.0200273 0.0336036 1.79236 -1.1313 -0.699984 0.0336036 0.0280441 0.0336036 0 0 0 0 0 0 +LA 0.968101 +SE +ET CO +ID 2868 +TI 1771360829.029971300 +CC NStripHits 6 +PQ 1.3586 +SQ 2 +CT 0 1 +TL 1 +TE 73.8875 +CE 279.461 1.46701 73.8875 0.994199 +CD 3.77127 -0.650825 1.16252 0.0336036 0.0225461 0.0336036 3.30564 -1.11477 0.929703 0.0336036 0.026319 0.0336036 0 0 0 0 0 0 +LA 0.697323 +SE +ET PH +ID 2869 +TI 1771360829.033804833 +CC NStripHits 2 +PE 475.085 +PP -0.884984 -0.559474 0.580484 +PW 0 +SE +ET UN +ID 2870 +TI 1771360829.034916467 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 422.532 +SE +ET PH +ID 2871 +TI 1771360829.039568167 +CC NStripHits 3 +PE 82.9562 +PP 0.395484 -1.18251 -3.02811 +PW 0 +SE +ET PH +ID 2872 +TI 1771360829.040188967 +CC NStripHits 2 +PE 80.6131 +PP -1.1178 0.374627 -0.350766 +PW 0 +SE +ET PH +ID 2873 +TI 1771360829.041426517 +CC NStripHits 3 +PE 1133.19 +PP 2.02517 -0.163171 2.09377 +PW 0 +SE +ET UN +ID 2874 +TI 1771360829.044319234 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 82.5023 +SE +ID 2875 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.371289) +BD GR Veto +PQ 0.00117854 +SE +ET PH +ID 2876 +TI 1771360829.045978817 +CC NStripHits 4 +PE 208.954 +PP 0.395484 -0.744008 0.347672 +PW 0 +SE +ET PH +ID 2877 +TI 1771360829.046092884 +CC NStripHits 2 +PE 30.4964 +PP -1.1178 -0.682712 -0.117953 +PW 0 +SE +ET UN +ID 2878 +TI 1771360829.046881317 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0657 +SE +ET UN +ID 2879 +TI 1771360829.047789000 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 384.739 +SE +ET UN +ID 2880 +TI 1771360829.048734017 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 120.079 +SE +ET PH +ID 2881 +TI 1771360829.049166584 +CC NStripHits 3 +PE 274.886 +PP 1.44314 -0.911318 -0.117953 +PW 0 +SE +ET PH +ID 2882 +TI 1771360829.049480300 +CC NStripHits 2 +PE 74.4325 +PP -1.1178 -1.01725 1.62814 +PW 0 +SE +ET PH +ID 2883 +TI 1771360829.049781534 +CC NStripHits 2 +PE 69.9366 +PP 3.18923 0.371993 2.6758 +PW 0 +SE +ID 2884 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.962010) +BD GR Veto +PQ 0.133392 +SE +ID 2885 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 490.683993) +BD GR Veto +PQ 0.0104514 +SE +ET PH +ID 2886 +TI 1771360829.051986717 +CC NStripHits 2 +PE 81.4974 +PP -2.04905 0.241417 -2.44608 +PW 0 +SE +ID 2887 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.587940) +BD GR Veto +PQ 1.02959 +SE +ET UN +ID 2888 +TI 1771360829.053839934 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7929 +SE +ID 2889 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 246.082861) +BD GR Veto +PQ 0.115578 +SE +ID 2890 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (89.859446)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 65.649617)) (GR Hit: Detector ID 0 and Energy 158.163328) +BD GR Veto +PQ 89.8594 +SE +ET UN +ID 2891 +TI 1771360829.056916284 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2892 +TI 1771360829.057450134 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 115.421 +SE +ET PH +ID 2893 +TI 1771360829.058362884 +CC NStripHits 2 +PE 73.1048 +PP 2.02517 0.201939 -0.350766 +PW 0 +SE +ET PH +ID 2894 +TI 1771360829.059627217 +CC NStripHits 2 +PE 81.9075 +PP -2.39827 0.350524 -1.98045 +PW 0 +SE +ET UN +ID 2895 +TI 1771360829.059907267 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1653 +SE +ET UN +ID 2896 +TI 1771360829.060674584 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.3185 +SE +ET PH +ID 2897 +TI 1771360829.061410201 +CC NStripHits 3 +PE 163.101 +PP 1.55955 0.362903 2.6758 +PW 0 +SE +ET UN +ID 2898 +TI 1771360829.061677584 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7397 +SE +ET PH +ID 2899 +TI 1771360829.063914034 +CC NStripHits 2 +PE 70.9827 +PP -2.28186 0.289936 -0.467172 +PW 0 +SE +ID 2900 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 352.288339) +BD GR Veto +PQ 0.725791 +SE +ET PH +ID 2901 +TI 1771360829.064570134 +CC NStripHits 2 +PE 48.6561 +PP 2.84002 -0.43851 2.55939 +PW 0 +SE +ID 2902 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.499752) +BD GR Veto +PQ 0.000849879 +SE +ET PH +ID 2903 +TI 1771360829.065010917 +CC NStripHits 3 +PE 225.625 +PP -2.39827 0.162714 2.32658 +PW 0 +SE +ID 2904 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 100.312423) +BD GR Veto +PQ 0.164742 +SE +ET UN +ID 2905 +TI 1771360829.068689117 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.295 +SE +ET UN +ID 2906 +TI 1771360829.069468084 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 215.547 +SE +ET PH +ID 2907 +TI 1771360829.070548651 +CC NStripHits 3 +PE 157.276 +PP 1.55955 0.0829888 2.21017 +PW 0 +SE +ET UN +ID 2908 +TI 1771360829.070792367 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET CO +ID 2909 +TI 1771360829.071259034 +CC NStripHits 8 +PQ 5.6795 +SQ 4 +CT 0.0294279 0.0913939 +TL 1 +TE 72.07 +CE 281.017 1.98724 72.07 1.05488 +CD 3.53845 -0.59552 1.04611 0.0336036 0.0228471 0.0336036 3.18923 -0.88651 0.347672 0.0336036 0.0200942 0.0336036 0 0 0 0 0 0 +LA 0.535461 +SE +ET PH +ID 2910 +TI 1771360829.072196667 +CC NStripHits 2 +PE 111.975 +PP 3.65486 0.170875 2.09377 +PW 0 +SE +ET PH +ID 2911 +TI 1771360829.073971334 +CC NStripHits 2 +PE 28.7587 +PP 0.511891 0.0344647 -0.699984 +PW 0 +SE +ET PH +ID 2912 +TI 1771360829.075704451 +CC NStripHits 3 +PE 354.717 +PP -0.652172 -0.801886 -2.32967 +PW 0 +SE +ID 2913 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.957479) +BD GR Veto +PQ 0.00638806 +SE +ID 2914 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 99.383506) +BD GR Veto +PQ 0.019415 +SE +ET PH +ID 2915 +TI 1771360829.077680317 +CC NStripHits 3 +PE 351.024 +PP -0.419359 -0.824385 -0.699984 +PW 0 +SE +ET PH +ID 2916 +TI 1771360829.077867767 +CC NStripHits 2 +PE 26.1936 +PP -0.419359 0.33424 2.21017 +PW 0 +SE +ET PH +ID 2917 +TI 1771360829.079341901 +CC NStripHits 3 +PE 76.3178 +PP 1.55955 -0.743405 -3.37733 +PW 0 +SE +ET PH +ID 2918 +TI 1771360829.081222684 +CC NStripHits 2 +PE 32.4055 +PP 0.511891 -0.216336 -3.61014 +PW 0 +SE +ID 2919 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.906778) +BD GR Veto +PQ 2.58802 +SE +ET PH +ID 2920 +TI 1771360829.082212801 +CC NStripHits 2 +PE 54.7846 +PP 3.18923 0.378067 0.696891 +PW 0 +SE +ID 2921 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.222336) +BD GR Veto +PQ 0.0115774 +SE +ID 2922 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2923 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.223976) +BD GR Veto +PQ +SE +ID 2924 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET PH +ID 2925 +TI 1771360829.085691834 +CC NStripHits 2 +PE 80.2482 +PP 2.84002 0.0977739 -1.28202 +PW 0 +SE +ID 2926 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.437979) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.891684) +BD GR Veto +PQ 0.611769 +SE +ID 2927 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 388.739015) +BD GR Veto +PQ 0.102278 +SE +ET PH +ID 2928 +TI 1771360829.088708468 +CC NStripHits 2 +PE 80.5481 +PP -0.652172 0.0887464 2.32658 +PW 0 +SE +ET UN +ID 2929 +TI 1771360829.090389201 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2212 +SE +ET PH +ID 2930 +TI 1771360829.092133184 +CC NStripHits 2 +PE 79.9811 +PP 2.84002 0.154841 -2.9117 +PW 0 +SE +ID 2931 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.281913) +BD GR Veto +PQ +SE +ET PH +ID 2932 +TI 1771360829.094827484 +CC NStripHits 2 +PE 103.282 +PP 1.90877 -1.10568 -3.72655 +PW 0 +SE +ET UN +ID 2933 +TI 1771360829.097446484 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 74.2284 +SE +ET CO +ID 2934 +TI 1771360829.097562034 +CC NStripHits 5 +PQ 0.991405 +SQ 2 +CT 0 1 +TL 1 +TE 28.1113 +CE 226.132 1.20473 28.1113 0.995802 +CD 0.861109 -0.410432 0.580484 0.0336036 0.0243068 0.0336036 0.628297 -0.939134 0.813297 0.0336036 0.0196813 0.0336036 0 0 0 0 0 0 +LA 0.62284 +SE +ID 2935 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (56.576811)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.491938)) (GR Hit: Detector ID 0 and Energy 83.153654) +BD GR Veto +PQ 56.5768 +SE +ET PH +ID 2936 +TI 1771360829.099347018 +CC NStripHits 2 +PE 73.4875 +PP -1.58342 -0.830983 -3.02811 +PW 0 +SE +ET PH +ID 2937 +TI 1771360829.100101818 +CC NStripHits 2 +PE 80.7013 +PP 2.37439 0.333524 -3.84295 +PW 0 +SE +ET CO +ID 2938 +TI 1771360829.100215401 +CC NStripHits 4 +PQ 0.0504463 +SQ 2 +CT 0 1 +TL 1 +TE 54.0164 +CE 114.335 1.02629 54.0164 0.970774 +CD -0.535766 -0.633102 0.114859 0.0336036 0.022635 0.0336036 -0.768578 -0.342556 -0.350766 0.0336036 0.024909 0.0336036 0 0 0 0 0 0 +LA 0.596175 +SE +ET UN +ID 2939 +TI 1771360829.100487551 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2940 +TI 1771360829.101365685 +CC NStripHits 2 +PE 80.8593 +PP -0.302953 0.366574 -4.30858 +PW 0 +SE +ET PH +ID 2941 +TI 1771360829.101666118 +CC NStripHits 2 +PE 170.673 +PP 0.0462656 -0.751923 -1.28202 +PW 0 +SE +ID 2942 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.935700) +BD GR Veto +PQ +SE +ID 2943 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 130.847005) +BD GR Veto +PQ 0.464834 +SE +ET UN +ID 2944 +TI 1771360829.104859885 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 225.817 +SE +ET UN +ID 2945 +TI 1771360829.105134485 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2946 +TI 1771360829.108241718 +CC NStripHits 4 +PE 385.567 +PP -2.51467 -0.788287 -2.9117 +PW 0 +SE +ID 2947 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.593348) +BD GR Veto +PQ 0.00342735 +SE +ET UN +ID 2948 +TI 1771360829.110089201 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 61.5684 +SE +ET PH +ID 2949 +TI 1771360829.111105735 +CC NStripHits 2 +PE 33.0551 +PP 4.00408 0.0572924 -0.234359 +PW 0 +SE +ET PH +ID 2950 +TI 1771360829.111371735 +CC NStripHits 3 +PE 107.362 +PP 3.18923 0.357928 -4.30858 +PW 0 +SE +ET UN +ID 2951 +TI 1771360829.112867568 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2952 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.073282) +BD GR Veto +PQ 0.789922 +SE +ET UN +ID 2953 +TI 1771360829.113777101 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.604 +SE +ET UN +ID 2954 +TI 1771360829.117289168 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2955 +TI 1771360829.119770551 +CC NStripHits 2 +PE 102.569 +PP 3.30564 -0.0265393 1.39533 +PW 0 +SE +ID 2956 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (151.957674)) (GR Hit: Detector ID 0 and Energy 140.219607) +BD GR Veto +PQ 151.958 +SE +ET PH +ID 2957 +TI 1771360829.120355052 +CC NStripHits 2 +PE 74.1775 +PP -0.884984 0.333733 -0.816391 +PW 0 +SE +ET PH +ID 2958 +TI 1771360829.122261485 +CC NStripHits 5 +PE 968.449 +PP 1.90877 -0.907715 -1.86405 +PW 0 +SE +ET UN +ID 2959 +TI 1771360829.125582052 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.4331 +SE +ET PH +ID 2960 +TI 1771360829.126706335 +CC NStripHits 3 +PE 313.724 +PP 3.88767 -0.15661 0.580484 +PW 0 +SE +ET PH +ID 2961 +TI 1771360829.126960852 +CC NStripHits 3 +PE 380.965 +PP 1.09392 -1.12174 -0.699984 +PW 0 +SE +ET PH +ID 2962 +TI 1771360829.127483652 +CC NStripHits 2 +PE 51.8949 +PP 2.84002 0.356282 -1.39842 +PW 0 +SE +ET PH +ID 2963 +TI 1771360829.128125835 +CC NStripHits 3 +PE 356.859 +PP -0.535766 -0.171857 -0.467172 +PW 0 +SE +ET UN +ID 2964 +TI 1771360829.128472102 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.0362 +SE +ET PH +ID 2965 +TI 1771360829.128794418 +CC NStripHits 2 +PE 62.3447 +PP 0.977516 0.364998 -0.699984 +PW 0 +SE +ET UN +ID 2966 +TI 1771360829.129431385 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.165 +SE +ID 2967 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.381116) +BD GR Veto +PQ 0.645451 +SE +ID 2968 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.239827) +BD GR Veto +PQ 0.269076 +SE +ET UN +ID 2969 +TI 1771360829.135224635 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.754 +SE +ID 2970 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.205892) +BD GR Veto +PQ 0.283953 +SE +ID 2971 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.611041) +QA StripPairing (Best reduced chi square is not below 25 (33.246329)) (GR Hit: Detector ID 0 and Energy 134.943553) +BD GR Veto +PQ 33.2463 +SE +ID 2972 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 351.828406) +BD GR Veto +PQ 3.73194 +SE +ET PH +ID 2973 +TI 1771360829.138651585 +CC NStripHits 2 +PE 98.0822 +PP 1.67595 0.367804 -2.09686 +PW 0 +SE +ET PH +ID 2974 +TI 1771360829.139002252 +CC NStripHits 3 +PE 149.533 +PP 2.14158 0.203754 -3.26092 +PW 0 +SE +ET UN +ID 2975 +TI 1771360829.140551135 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.7357 +SE +ET UN +ID 2976 +TI 1771360829.140625385 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2977 +TI 1771360829.142472752 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 91.4893 +SE +ET UN +ID 2978 +TI 1771360829.142838919 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.5134 +SE +ET CO +ID 2979 +TI 1771360829.143716252 +CC NStripHits 5 +PQ 2.18076 +SQ 2 +CT 0 1 +TL 1 +TE 83.8923 +CE 196.049 1.15439 83.8923 1.47069 +CD -2.28186 0.111128 0.929703 0.0336036 0.0291353 0.0336036 -1.93264 -0.158631 0.813297 0.0336036 0.0262038 0.0336036 0 0 0 0 0 0 +LA 0.456371 +SE +ET PH +ID 2980 +TI 1771360829.144033469 +CC NStripHits 3 +PE 216.007 +PP 1.44314 -0.119505 1.16252 +PW 0 +SE +ET PH +ID 2981 +TI 1771360829.144452419 +CC NStripHits 4 +PE 80.238 +PP -0.419359 0.375985 -3.49373 +PW 0 +SE +ET PH +ID 2982 +TI 1771360829.145322469 +CC NStripHits 2 +PE 78.7394 +PP 0.861109 0.0708402 -2.9117 +PW 0 +SE +ET PH +ID 2983 +TI 1771360829.146096102 +CC NStripHits 2 +PE 158.18 +PP 0.744703 -0.0594155 -1.28202 +PW 0 +SE +ET UN +ID 2984 +TI 1771360829.146626069 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 151.499 +SE +ET PH +ID 2985 +TI 1771360829.148054019 +CC NStripHits 2 +PE 111.047 +PP -1.1178 -0.970225 0.464078 +PW 0 +SE +ET PH +ID 2986 +TI 1771360829.149738685 +CC NStripHits 2 +PE 21.2538 +PP 0.395484 -0.850294 1.74455 +PW 0 +SE +ID 2987 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.121279) (Strip hit removed with energy 13.542214) +QA StripPairing (GR Hit: Detector ID 0 and Energy 125.337569) (GR Hit: Detector ID 0 and Energy 119.551822) +BD GR Veto +PQ 15.4878 +SE +ET PH +ID 2988 +TI 1771360829.150876835 +CC NStripHits 3 +PE 79.4456 +PP 3.77127 0.0780985 1.27892 +PW 0 +SE +ET UN +ID 2989 +TI 1771360829.153186469 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2990 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (28.139258)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 81.182137) +BD GR Veto +PQ 28.1393 +SE +ET CO +ID 2991 +TI 1771360829.154134635 +CC NStripHits 5 +PQ 1.63114 +SQ 2 +CT 0 1 +TL 1 +TE 39.8926 +CE 317.157 2.01599 39.8926 1.01284 +CD -2.86389 0.19464 0.347672 0.0336036 0.0316923 0.0336036 -2.39827 -0.50689 0.114859 0.0336036 0.0233928 0.0336036 0 0 0 0 0 0 +LA 0.873584 +SE +ET UN +ID 2992 +TI 1771360829.155141235 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2993 +TI 1771360829.155385935 +CC NStripHits 2 +PE 29.0353 +PP -0.302953 0.22381 -1.51483 +PW 0 +SE +ET PH +ID 2994 +TI 1771360829.156053102 +CC NStripHits 2 +PE 125.893 +PP -2.28186 -0.53694 1.39533 +PW 0 +SE +ID 2995 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.074886) +BD GR Veto +PQ 5.62569 +SE +ET PH +ID 2996 +TI 1771360829.158227019 +CC NStripHits 2 +PE 64.1721 +PP 2.72361 0.360299 -1.86405 +PW 0 +SE +ET UN +ID 2997 +TI 1771360829.158978519 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.2985 +SE +ET PH +ID 2998 +TI 1771360829.159499652 +CC NStripHits 2 +PE 71.9547 +PP -1.2342 -1.15626 0.929703 +PW 0 +SE +ET UN +ID 2999 +TI 1771360829.159888352 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 194.864 +SE +ET PH +ID 3000 +TI 1771360829.161091852 +CC NStripHits 3 +PE 65.4509 +PP 2.25798 -1.0997 -4.54139 +PW 0 +SE +ID 3001 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.260148) +BD GR Veto +PQ 0.497116 +SE +ET PH +ID 3002 +TI 1771360829.166701586 +CC NStripHits 3 +PE 118.501 +PP 0.628297 -0.721346 -2.21327 +PW 0 +SE +ID 3003 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.877937) (Strip hit removed with energy 9.407501) +QA StripPairing (Best reduced chi square is not below 25 (26.753790)) (GR Hit: Detector ID 0 and Energy 653.285556) +BD GR Veto +PQ 26.7538 +SE +ET PH +ID 3004 +TI 1771360829.168310602 +CC NStripHits 3 +PE 357.845 +PP -1.58342 -0.74071 -4.19217 +PW 0 +SE +ET UN +ID 3005 +TI 1771360829.168483569 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9317 +SE +ET UN +ID 3006 +TI 1771360829.168981236 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 77.4174 +SE +ET PH +ID 3007 +TI 1771360829.169597536 +CC NStripHits 2 +PE 69.9757 +PP 2.02517 0.329273 0.347672 +PW 0 +SE +ET PH +ID 3008 +TI 1771360829.171978886 +CC NStripHits 2 +PE 79.5946 +PP 0.511891 -0.166434 -1.63123 +PW 0 +SE +ID 3009 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.239956) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 75.868151)) (GR Hit: Detector ID 0 and Energy 125.127755) +BD GR Veto +PQ 0.23731 +SE +ID 3010 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 102.956949) +BD GR Veto +PQ 0.326728 +SE +ET PH +ID 3011 +TI 1771360829.174664052 +CC NStripHits 2 +PE 89.5697 +PP 1.55955 -1.12267 -4.54139 +PW 0 +SE +ET CO +ID 3012 +TI 1771360829.175673619 +CC NStripHits 7 +PQ 0.168625 +SQ 2 +CT 0 1 +TL 1 +TE 118.033 +CE 263.425 1.42749 118.033 1.14753 +CD -0.302953 -0.0409697 -3.72655 0.0336036 0.0273021 0.0336036 -1.93264 -0.447594 -3.95936 0.0336036 0.0239662 0.0336036 0 0 0 0 0 0 +LA 1.69571 +SE +ET UN +ID 3013 +TI 1771360829.176170252 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 21.8201 +SE +ET UN +ID 3014 +TI 1771360829.176507019 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.0979 +SE +ID 3015 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.303768) +BD GR Veto +PQ 0.00894814 +SE +ID 3016 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 113.580580) +BD GR Veto +PQ 0.0303749 +SE +ET PH +ID 3017 +TI 1771360829.178933852 +CC NStripHits 3 +PE 270.12 +PP 2.6072 -0.521383 0.464078 +PW 0 +SE +ET PH +ID 3018 +TI 1771360829.180563969 +CC NStripHits 2 +PE 64.3339 +PP 2.25798 0.355704 1.27892 +PW 0 +SE +ET PH +ID 3019 +TI 1771360829.181360903 +CC NStripHits 2 +PE 85.8925 +PP 0.628297 0.327199 1.74455 +PW 0 +SE +ET UN +ID 3020 +TI 1771360829.181495219 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.6245 +SE +ID 3021 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.819730) +BD GR Veto +PQ 3.22755 +SE +ID 3022 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.157119) +BD GR Veto +PQ +SE +ET PH +ID 3023 +TI 1771360829.185702936 +CC NStripHits 2 +PE 111.398 +PP 3.65486 0.110947 2.09377 +PW 0 +SE +ET PH +ID 3024 +TI 1771360829.185987453 +CC NStripHits 3 +PE 144.244 +PP 1.55955 0.253531 1.74455 +PW 0 +SE +ET UN +ID 3025 +TI 1771360829.186336836 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 303.558 +SE +ET PH +ID 3026 +TI 1771360829.187200369 +CC NStripHits 2 +PE 83.1254 +PP -2.51467 0.344916 -2.7953 +PW 0 +SE +ET UN +ID 3027 +TI 1771360829.188371186 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3028 +TI 1771360829.189670336 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3029 +TI 1771360829.190485003 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 214.037 +SE +ET PH +ID 3030 +TI 1771360829.190742386 +CC NStripHits 2 +PE 101.735 +PP 1.79236 0.0755629 1.74455 +PW 0 +SE +ET PH +ID 3031 +TI 1771360829.191706953 +CC NStripHits 2 +PE 32.7871 +PP 0.395484 -0.0818146 0.464078 +PW 0 +SE +ET PH +ID 3032 +TI 1771360829.192405619 +CC NStripHits 2 +PE 251.298 +PP 4.00408 -0.392051 -1.63123 +PW 0 +SE +ET PH +ID 3033 +TI 1771360829.193336719 +CC NStripHits 3 +PE 83.2324 +PP 2.72361 0.37674 1.97736 +PW 0 +SE +ID 3034 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.535453) +BD GR Veto +PQ 10.1488 +SE +ID 3035 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.189058) +BD GR Veto +PQ 0.0303081 +SE +ID 3036 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 25.122902) +BD GR Veto +PQ 0.0572525 +SE +ET PH +ID 3037 +TI 1771360829.200551353 +CC NStripHits 3 +PE 198.973 +PP 1.32673 -0.967256 0.929703 +PW 0 +SE +ET PH +ID 3038 +TI 1771360829.200740020 +CC NStripHits 2 +PE 79.8569 +PP -0.302953 0.369378 -0.467172 +PW 0 +SE +ET PH +ID 3039 +TI 1771360829.201207853 +CC NStripHits 2 +PE 145.595 +PP -0.768578 -0.799549 2.21017 +PW 0 +SE +ID 3040 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.633422) +BD GR Veto +PQ 0.223487 +SE +ET PH +ID 3041 +TI 1771360829.207982286 +CC NStripHits 3 +PE 78.3975 +PP 1.32673 0.323581 -3.26092 +PW 0 +SE +ET UN +ID 3042 +TI 1771360829.208763453 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3043 +TI 1771360829.209041070 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.586 +SE +ET PH +ID 3044 +TI 1771360829.209569020 +CC NStripHits 2 +PE 196.382 +PP 1.32673 0.152902 -2.67889 +PW 0 +SE +ET PH +ID 3045 +TI 1771360829.211626220 +CC NStripHits 2 +PE 80.7855 +PP -0.652172 -0.128884 2.44298 +PW 0 +SE +ET UN +ID 3046 +TI 1771360829.211780103 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3047 +TI 1771360829.214870236 +CC NStripHits 4 +PE 276.403 +PP -0.419359 -0.48785 -2.32967 +PW 0 +SE +ET PH +ID 3048 +TI 1771360829.215447153 +CC NStripHits 2 +PE 81.2055 +PP 1.55955 0.371377 -2.21327 +PW 0 +SE +ET PH +ID 3049 +TI 1771360829.216849620 +CC NStripHits 3 +PE 82.114 +PP -1.46702 0.0830255 1.51173 +PW 0 +SE +ID 3050 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 171.887039) +BD GR Veto +PQ 0.234387 +SE +ET PH +ID 3051 +TI 1771360829.219540270 +CC NStripHits 2 +PE 88.59 +PP -2.9803 -1.10637 -0.816391 +PW 0 +SE +ET PH +ID 3052 +TI 1771360829.221227687 +CC NStripHits 3 +PE 209.485 +PP 0.0462656 0.138446 2.55939 +PW 0 +SE +ID 3053 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.141139) +BD GR Veto +PQ 1.05682 +SE +ET UN +ID 3054 +TI 1771360829.225435187 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.8723 +SE +ET UN +ID 3055 +TI 1771360829.225685453 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.0787 +SE +ET UN +ID 3056 +TI 1771360829.226810570 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3057 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 541.819780) +BD GR Veto +PQ 0.402561 +SE +ID 3058 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 141.353626) +BD GR Veto +PQ 0.000168947 +SE +ID 3059 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.113469) +BD GR Veto +PQ 9.35081 +SE +ET PH +ID 3060 +TI 1771360829.230398003 +CC NStripHits 2 +PE 211.391 +PP -1.46702 0.00870357 -3.95936 +PW 0 +SE +ET UN +ID 3061 +TI 1771360829.230846287 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.1548 +SE +ET PH +ID 3062 +TI 1771360829.231780937 +CC NStripHits 2 +PE 68.9742 +PP 2.25798 -1.16511 0.347672 +PW 0 +SE +ET CO +ID 3063 +TI 1771360829.232926920 +CC NStripHits 6 +PQ 0.157095 +SQ 2 +CT 0.743194 0.256806 +TL 1 +TE 456.235 +CE 204.552 1.18297 456.235 1.25913 +CD 0.395484 0.274708 2.32658 0.0336036 0.0398978 0.0336036 -1.35061 -0.705819 2.55939 0.0336036 0.0221862 0.0336036 0 0 0 0 0 0 +LA 2.01606 +SE +ET PH +ID 3064 +TI 1771360829.235603603 +CC NStripHits 3 +PE 355.314 +PP 2.6072 -0.925342 -0.117953 +PW 0 +SE +ET UN +ID 3065 +TI 1771360829.236981570 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 47.661 +SE +ET PH +ID 3066 +TI 1771360829.237413820 +CC NStripHits 2 +PE 71.8644 +PP 0.0462656 -0.59239 -1.98045 +PW 0 +SE +ET PH +ID 3067 +TI 1771360829.237828370 +CC NStripHits 3 +PE 139.575 +PP 3.77127 -0.831165 1.27892 +PW 0 +SE +ET PH +ID 3068 +TI 1771360829.238470987 +CC NStripHits 2 +PE 189.659 +PP 4.23689 0.0190024 -1.16561 +PW 0 +SE +ET UN +ID 3069 +TI 1771360829.239066770 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 83.2591 +SE +ET UN +ID 3070 +TI 1771360829.241024170 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 3071 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.719491) +BD GR Veto +PQ 2.74206 +SE +ET PH +ID 3072 +TI 1771360829.246438870 +CC NStripHits 2 +PE 81.0165 +PP 2.72361 -0.26542 0.231266 +PW 0 +SE +ET PH +ID 3073 +TI 1771360829.247381820 +CC NStripHits 2 +PE 82.0861 +PP -1.35061 0.117296 -4.07577 +PW 0 +SE +ET PH +ID 3074 +TI 1771360829.248772637 +CC NStripHits 2 +PE 80.4612 +PP 0.0462656 0.370961 2.55939 +PW 0 +SE +ET PH +ID 3075 +TI 1771360829.248926420 +CC NStripHits 2 +PE 102.635 +PP 4.12048 0.0639632 -0.234359 +PW 0 +SE +ET PH +ID 3076 +TI 1771360829.249369137 +CC NStripHits 2 +PE 100.061 +PP -2.16545 -0.934959 -3.84295 +PW 0 +SE +ET PH +ID 3077 +TI 1771360829.250576904 +CC NStripHits 2 +PE 79.6124 +PP 4.12048 0.345613 -0.350766 +PW 0 +SE +ET UN +ID 3078 +TI 1771360829.252965254 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3079 +TI 1771360829.253217870 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 6 +PE 191.67 +SE +ID 3080 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.080227) +BD GR Veto +PQ 0.609825 +SE +ET CO +ID 3081 +TI 1771360829.255050904 +CC NStripHits 7 +PQ 27.4706 +SQ 3 +CT 0.0200743 0.0537657 +TL 1 +TE 77.0098 +CE 216.943 1.78729 77.0098 1.38656 +CD -0.652172 -0.511258 -0.816391 0.0336036 0.0233606 0.0336036 -2.04905 -0.675712 -0.699984 0.0336036 0.0224066 0.0336036 0 0 0 0 0 0 +LA 0.829902 +SE +ID 3082 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.345726) +BD GR Veto +PQ 0.0278347 +SE +ET PH +ID 3083 +TI 1771360829.257304237 +CC NStripHits 3 +PE 181.512 +PP -2.74748 0.173002 -3.02811 +PW 0 +SE +ET PH +ID 3084 +TI 1771360829.259292854 +CC NStripHits 2 +PE 232.871 +PP 2.25798 -0.0257085 0.929703 +PW 0 +SE +ET UN +ID 3085 +TI 1771360829.259872220 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 57.4581 +SE +ET PH +ID 3086 +TI 1771360829.262310054 +CC NStripHits 3 +PE 150.691 +PP 3.42205 -0.183472 -2.44608 +PW 0 +SE +ET PH +ID 3087 +TI 1771360829.262608054 +CC NStripHits 2 +PE 64.5166 +PP 1.55955 0.187519 0.347672 +PW 0 +SE +ET UN +ID 3088 +TI 1771360829.263113621 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3089 +TI 1771360829.263762987 +CC NStripHits 2 +PE 76.7633 +PP -2.16545 -0.230922 1.74455 +PW 0 +SE +ET UN +ID 3090 +TI 1771360829.263933571 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.2437 +SE +ID 3091 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.605478) +BD GR Veto +PQ 0.0927017 +SE +ID 3092 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 130.247053) +BD GR Veto +PQ 3.46057e-05 +SE +ET PH +ID 3093 +TI 1771360829.264868537 +CC NStripHits 2 +PE 81.0125 +PP 3.18923 0.378122 2.44298 +PW 0 +SE +ET UN +ID 3094 +TI 1771360829.265092421 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8682 +SE +ET PH +ID 3095 +TI 1771360829.266028087 +CC NStripHits 2 +PE 47.974 +PP 3.77127 -0.827341 1.86095 +PW 0 +SE +ID 3096 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.635177) +BD GR Veto +PQ 0.00854034 +SE +ID 3097 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.938911) +BD GR Veto +PQ 0.28923 +SE +ID 3098 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 39.196705) +BD GR Veto +PQ 1.57058 +SE +ET PH +ID 3099 +TI 1771360829.269602021 +CC NStripHits 3 +PE 91.035 +PP 0.0462656 0.0595407 2.55939 +PW 0 +SE +ID 3100 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.647454) +BD GR Veto +PQ +SE +ID 3101 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.625162) (Strip hit removed with energy 15.494333) (Strip hit removed with energy 19.714324) +BD GR Veto +PQ 7.46354 +SE +ET PH +ID 3102 +TI 1771360829.271799587 +CC NStripHits 3 +PE 97.0798 +PP -2.51467 -0.82262 -2.56248 +PW 0 +SE +ET PH +ID 3103 +TI 1771360829.272684621 +CC NStripHits 2 +PE 103.938 +PP -1.93264 -1.06905 -3.26092 +PW 0 +SE +ET PH +ID 3104 +TI 1771360829.279734287 +CC NStripHits 4 +PE 1457.04 +PP 1.79236 -0.580499 -1.28202 +PW 0 +SE +ET PH +ID 3105 +TI 1771360829.280720471 +CC NStripHits 2 +PE 79.8626 +PP 0.628297 -0.142681 1.97736 +PW 0 +SE +ET PH +ID 3106 +TI 1771360829.280861621 +CC NStripHits 3 +PE 82.509 +PP 1.32673 0.375762 -0.816391 +PW 0 +SE +ET PH +ID 3107 +TI 1771360829.281301204 +CC NStripHits 2 +PE 79.597 +PP -2.28186 0.187093 -4.19217 +PW 0 +SE +ID 3108 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.506467) (Strip hit removed with energy 5.895646) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.553952) +BD GR Veto +PQ 0.738332 +SE +ET PH +ID 3109 +TI 1771360829.281582354 +CC NStripHits 5 +PE 202.758 +PP 2.4908 -0.417372 -2.56248 +PW 0 +SE +ET UN +ID 3110 +TI 1771360829.282563088 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 53.1082 +SE +ID 3111 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 3112 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.714324) +BD GR Veto +PQ +SE +ET PH +ID 3113 +TI 1771360829.283925638 +CC NStripHits 4 +PE 354.94 +PP 1.67595 0.287148 -0.117953 +PW 0 +SE +ID 3114 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.772253) +BD GR Veto +PQ 0.585111 +SE +ET PH +ID 3115 +TI 1771360829.284326304 +CC NStripHits 3 +PE 41.4926 +PP -0.302953 -0.415786 -0.699984 +PW 0 +SE +ET CO +ID 3116 +TI 1771360829.284903171 +CC NStripHits 6 +PQ 56.0484 +SQ 2 +CT 0 1 +TL 1 +TE 144.525 +CE 230.208 1.95612 144.525 1.4621 +CD -1.00139 -0.0433181 -3.37733 0.0336036 0.0272691 0.0336036 -1.1178 -0.415893 -3.72655 0.0336036 0.0242444 0.0336036 0 0 0 0 0 0 +LA 0.523754 +SE +ID 3117 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 208.114977) +BD GR Veto +PQ 2.3454 +SE +ET PH +ID 3118 +TI 1771360829.286559904 +CC NStripHits 2 +PE 82.2323 +PP -2.39827 0.272707 -3.72655 +PW 0 +SE +ET PH +ID 3119 +TI 1771360829.287935988 +CC NStripHits 2 +PE 27.6914 +PP -2.63108 -0.601125 -3.84295 +PW 0 +SE +ET UN +ID 3120 +TI 1771360829.288028604 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 56.6428 +SE +ID 3121 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (43.566766)) (GR Hit: Detector ID 0 and Energy 78.075516) +BD GR Veto +PQ 43.5668 +SE +ET CO +ID 3122 +TI 1771360829.292059388 +CC NStripHits 5 +PQ 2.43232 +SQ 2 +CT 0.606785 0.393215 +TL 1 +TE 139.643 +CE 152.359 1.19358 139.643 1.07072 +CD 0.279078 -0.0258037 -0.467172 0.0336036 0.0274886 0.0336036 -1.93264 0.0289121 -1.51483 0.0336036 0.0279264 0.0336036 0 0 0 0 0 0 +LA 2.44791 +SE +ET PH +ID 3123 +TI 1771360829.293479821 +CC NStripHits 2 +PE 69.4466 +PP -2.74748 -1.11156 -2.7953 +PW 0 +SE +ET UN +ID 3124 +TI 1771360829.294965571 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 184.047 +SE +ET PH +ID 3125 +TI 1771360829.296017054 +CC NStripHits 2 +PE 82.0222 +PP 1.32673 0.130061 -4.19217 +PW 0 +SE +ID 3126 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (82.843984)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 22.898865) (GR Hit: Detector ID 0 and Energy 254.192945) +BD GR Veto +PQ 82.844 +SE +ET UN +ID 3127 +TI 1771360829.298053304 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 170.721 +SE +ID 3128 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 51.862645) +BD GR Veto +PQ 0.246471 +SE +ET PH +ID 3129 +TI 1771360829.299755854 +CC NStripHits 2 +PE 82.2245 +PP 0.977516 0.354061 -4.30858 +PW 0 +SE +ET UN +ID 3130 +TI 1771360829.301544655 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.3015 +SE +ID 3131 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.579167) +QA StripPairing (Best reduced chi square is not below 25 (36.103342)) (GR Hit: Detector ID 0 and Energy 1308.302124) +BD GR Veto +PQ 36.1033 +SE +ET PH +ID 3132 +TI 1771360829.303674155 +CC NStripHits 3 +PE 76.7724 +PP -2.74748 -0.856867 1.27892 +PW 0 +SE +ET PH +ID 3133 +TI 1771360829.305651288 +CC NStripHits 2 +PE 83.8654 +PP 1.67595 -1.14671 2.21017 +PW 0 +SE +ET PH +ID 3134 +TI 1771360829.306211688 +CC NStripHits 2 +PE 75.3597 +PP -1.69983 0.32846 -4.42498 +PW 0 +SE +ID 3135 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 87.879674) +BD GR Veto +PQ 0.161693 +SE +ID 3136 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.141251) +BD GR Veto +PQ 0.217407 +SE +ID 3137 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (302.069034)) (GR Hit: Detector ID 0 and Energy 325.018932) +BD GR Veto +PQ 302.069 +SE +ET PH +ID 3138 +TI 1771360829.309597821 +CC NStripHits 2 +PE 353.134 +PP -2.51467 -0.151644 -4.19217 +PW 0 +SE +ID 3139 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.303346) +BD GR Veto +PQ 1.15164 +SE +ET UN +ID 3140 +TI 1771360829.310371355 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0469 +SE +ID 3141 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 133.210130) +BD GR Veto +PQ 0.0501336 +SE +ID 3142 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.103906) +BD GR Veto +PQ 0.724179 +SE +ET PH +ID 3143 +TI 1771360829.312477988 +CC NStripHits 3 +PE 158.085 +PP 4.23689 -0.316852 -2.67889 +PW 0 +SE +ET PH +ID 3144 +TI 1771360829.315150588 +CC NStripHits 2 +PE 166.193 +PP -2.16545 -1.11349 1.39533 +PW 0 +SE +ET PH +ID 3145 +TI 1771360829.316398971 +CC NStripHits 3 +PE 356.138 +PP 3.77127 -0.606269 0.580484 +PW 0 +SE +ET CO +ID 3146 +TI 1771360829.316801705 +CC NStripHits 4 +PQ 3.94234 +SQ 2 +CT 0 1 +TL 1 +TE 58.1422 +CE 293.158 1.07085 58.1422 1.46578 +CD 1.79236 -0.115594 -1.51483 0.0336036 0.0265687 0.0336036 2.72361 -0.900731 -1.98045 0.0336036 0.0199723 0.0336036 0 0 0 0 0 0 +LA 1.30402 +SE +ET PH +ID 3147 +TI 1771360829.317153255 +CC NStripHits 2 +PE 420.103 +PP -0.0701406 -0.0953806 -4.30858 +PW 0 +SE +ET PH +ID 3148 +TI 1771360829.317241955 +CC NStripHits 3 +PE 150.629 +PP 1.55955 -0.118038 0.929703 +PW 0 +SE +ID 3149 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.172262) +BD GR Veto +PQ 0.694191 +SE +ID 3150 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ET PH +ID 3151 +TI 1771360829.322071772 +CC NStripHits 2 +PE 30.5455 +PP -2.16545 0.348184 -2.44608 +PW 0 +SE +ET UN +ID 3152 +TI 1771360829.322795838 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3153 +TI 1771360829.323078555 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3154 +TI 1771360829.325623572 +CC NStripHits 3 +PE 112.129 +PP 4.23689 0.309922 -1.63123 +PW 0 +SE +ET CO +ID 3155 +TI 1771360829.326391338 +CC NStripHits 4 +PQ 0.769615 +SQ 2 +CT 0.624242 0.375758 +TL 1 +TE 149.714 +CE 205.034 1.04732 149.714 1.12863 +CD 2.84002 -0.0479976 -4.6578 0.0336036 0.0272052 0.0336036 3.18923 -0.0678288 -4.19217 0.0336036 0.0270267 0.0336036 0 0 0 0 0 0 +LA 0.582368 +SE +ET PH +ID 3156 +TI 1771360829.326567488 +CC NStripHits 3 +PE 178.661 +PP -0.652172 -0.960066 -4.30858 +PW 0 +SE +ET PH +ID 3157 +TI 1771360829.326848622 +CC NStripHits 2 +PE 290.67 +PP -0.652172 0.28726 0.464078 +PW 0 +SE +ET UN +ID 3158 +TI 1771360829.327159305 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.397 +SE +ET PH +ID 3159 +TI 1771360829.328390072 +CC NStripHits 2 +PE 71.1969 +PP 1.44314 0.343263 -3.61014 +PW 0 +SE +ET UN +ID 3160 +TI 1771360829.328665588 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3161 +TI 1771360829.329087022 +CC NStripHits 4 +PE 420.335 +PP 4.23689 0.0209937 1.16252 +PW 0 +SE +ID 3162 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.110148) +BD GR Veto +PQ 0.0194244 +SE +ET PH +ID 3163 +TI 1771360829.331076888 +CC NStripHits 3 +PE 80.1939 +PP -1.00139 0.369528 0.813297 +PW 0 +SE +ET UN +ID 3164 +TI 1771360829.331339505 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4307 +SE +ET PH +ID 3165 +TI 1771360829.331823422 +CC NStripHits 2 +PE 81.1012 +PP -2.63108 0.3728 -1.16561 +PW 0 +SE +ET PH +ID 3166 +TI 1771360829.332499305 +CC NStripHits 2 +PE 53.652 +PP 1.79236 0.363088 0.347672 +PW 0 +SE +ET UN +ID 3167 +TI 1771360829.334508738 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.7724 +SE +ET UN +ID 3168 +TI 1771360829.334999922 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3169 +TI 1771360829.336678672 +CC NStripHits 3 +PE 273.749 +PP 0.977516 -0.446001 -0.234359 +PW 0 +SE +ET UN +ID 3170 +TI 1771360829.339973972 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 101.818 +SE +ET PH +ID 3171 +TI 1771360829.341033239 +CC NStripHits 6 +PE 356.93 +PP -0.768578 0.196686 1.51173 +PW 0 +SE +ET UN +ID 3172 +TI 1771360829.343173055 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7419 +SE +ET PH +ID 3173 +TI 1771360829.343563655 +CC NStripHits 2 +PE 29.4091 +PP 0.511891 -0.45595 0.114859 +PW 0 +SE +ET PH +ID 3174 +TI 1771360829.345049505 +CC NStripHits 2 +PE 50.8266 +PP 0.628297 -0.723505 -3.26092 +PW 0 +SE +ET PH +ID 3175 +TI 1771360829.345306589 +CC NStripHits 2 +PE 201.563 +PP -1.1178 0.116552 2.32658 +PW 0 +SE +ET UN +ID 3176 +TI 1771360829.345692455 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8343 +SE +ET PH +ID 3177 +TI 1771360829.345831022 +CC NStripHits 2 +PE 81.6606 +PP 0.744703 0.253536 -0.816391 +PW 0 +SE +ET PH +ID 3178 +TI 1771360829.346599222 +CC NStripHits 2 +PE 32.7713 +PP 1.21033 0.375189 -0.234359 +PW 0 +SE +ET PH +ID 3179 +TI 1771360829.346843739 +CC NStripHits 2 +PE 184.433 +PP 3.77127 -1.01836 -3.95936 +PW 0 +SE +ET CO +ID 3180 +TI 1771360829.348467855 +CC NStripHits 5 +PQ 30.5785 +SQ 2 +CT 0 1 +TL 1 +TE 136.878 +CE 219.386 1.17436 136.878 1.4958 +CD 3.88767 -0.179514 1.86095 0.0336036 0.0260087 0.0336036 3.30564 -1.01483 1.27892 0.0336036 0.0195536 0.0336036 0 0 0 0 0 0 +LA 1.17272 +SE +ET UN +ID 3181 +TI 1771360829.348869772 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.9876 +SE +ET CO +ID 3182 +TI 1771360829.349101505 +CC NStripHits 5 +PQ 36.5494 +SQ 2 +CT 0 1 +TL 1 +TE 89.4692 +CE 268.57 1.22888 89.4692 1.48044 +CD 3.65486 -0.118571 -1.51483 0.0336036 0.0265438 0.0336036 3.07283 -0.732573 -2.09686 0.0336036 0.0218904 0.0336036 0 0 0 0 0 0 +LA 1.0269 +SE +ET PH +ID 3183 +TI 1771360829.350383455 +CC NStripHits 2 +PE 149.347 +PP 2.72361 -0.362654 1.04611 +PW 0 +SE +ET PH +ID 3184 +TI 1771360829.350556905 +CC NStripHits 2 +PE 288.827 +PP -1.35061 0.251439 2.21017 +PW 0 +SE +ID 3185 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 33.116071)) (GR Hit: Detector ID 0 and Energy 114.337322) +BD GR Veto +PQ 7.99952 +SE +ET UN +ID 3186 +TI 1771360829.351424872 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8453 +SE +ET PH +ID 3187 +TI 1771360829.351599172 +CC NStripHits 2 +PE 29.8508 +PP -0.884984 -0.183885 2.21017 +PW 0 +SE +ET UN +ID 3188 +TI 1771360829.351876939 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 53.5932 +SE +ID 3189 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.503341) +BD GR Veto +PQ +SE +ET PH +ID 3190 +TI 1771360829.352157222 +CC NStripHits 2 +PE 82.0305 +PP 1.55955 0.290594 -3.02811 +PW 0 +SE +ET PH +ID 3191 +TI 1771360829.352822205 +CC NStripHits 2 +PE 67.7833 +PP 2.84002 0.371329 2.55939 +PW 0 +SE +ID 3192 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 94.481597) +BD GR Veto +PQ 0.0183136 +SE +ID 3193 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.331077) +BD GR Veto +PQ 0.374194 +SE +ET UN +ID 3194 +TI 1771360829.353141922 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 52.255 +SE +ET PH +ID 3195 +TI 1771360829.353626789 +CC NStripHits 3 +PE 80.9615 +PP 2.6072 0.105522 -2.67889 +PW 0 +SE +ET PH +ID 3196 +TI 1771360829.354408939 +CC NStripHits 2 +PE 81.9409 +PP 1.09392 0.360117 -4.19217 +PW 0 +SE +ET CO +ID 3197 +TI 1771360829.354507139 +CC NStripHits 5 +PQ 6.17638 +SQ 2 +CT 0 1 +TL 1 +TE 91.595 +CE 264.018 2.23394 91.595 0.997823 +CD 0.395484 0.290664 0.464078 0.0336036 0.0414378 0.0336036 0.628297 -0.0452862 0.696891 0.0336036 0.0272418 0.0336036 0 0 0 0 0 0 +LA 0.47039 +SE +ET PH +ID 3198 +TI 1771360829.354940155 +CC NStripHits 2 +PE 80.3977 +PP -1.58342 0.36517 -0.00154687 +PW 0 +SE +ET PH +ID 3199 +TI 1771360829.355124289 +CC NStripHits 2 +PE 75.7064 +PP 1.32673 -0.834286 -4.6578 +PW 0 +SE +ET PH +ID 3200 +TI 1771360829.357310372 +CC NStripHits 2 +PE 80.8705 +PP -2.39827 0.112111 -2.56248 +PW 0 +SE +ET UN +ID 3201 +TI 1771360829.357496655 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 358.282 +SE +ET UN +ID 3202 +TI 1771360829.357772555 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3203 +TI 1771360829.359196372 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8521 +SE +ID 3204 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 134.970654) +BD GR Veto +PQ 1.31454 +SE +ET PH +ID 3205 +TI 1771360829.360162506 +CC NStripHits 3 +PE 222.362 +PP -0.768578 -0.0199963 1.04611 +PW 0 +SE +ID 3206 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 109.905473) +BD GR Veto +PQ 1.82171 +SE +ID 3207 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.064732) +QA StripPairing (GR Hit: Detector ID 0 and Energy 119.231556) +BD GR Veto +PQ 0.0196479 +SE +ID 3208 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.337470) +BD GR Veto +PQ 0.105083 +SE +ID 3209 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.636859) +BD GR Veto +PQ 0.00204134 +SE +ET CO +ID 3210 +TI 1771360829.368526072 +CC NStripHits 5 +PQ 9.64112 +SQ 2 +CT 0.63272 0.36728 +TL 1 +TE 150.335 +CE 203.306 1.47824 150.335 1.19578 +CD 0.279078 -0.773482 1.86095 0.0336036 0.0212872 0.0336036 -1.35061 -0.569892 0.114859 0.0336036 0.0229656 0.0336036 0 0 0 0 0 0 +LA 2.39712 +SE +ET CO +ID 3211 +TI 1771360829.369127006 +CC NStripHits 4 +PQ 1.59725 +SQ 2 +CT 0 1 +TL 1 +TE 145.902 +CE 210.118 0.999184 145.902 0.982667 +CD -1.2342 -0.499569 -4.30858 0.0336036 0.0234533 0.0336036 -1.81623 -0.633978 -2.7953 0.0336036 0.0226305 0.0336036 0 0 0 0 0 0 +LA 1.62691 +SE +ET UN +ID 3212 +TI 1771360829.369783956 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 42.1403 +SE +ET UN +ID 3213 +TI 1771360829.369970272 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6542 +SE +ET UN +ID 3214 +TI 1771360829.370480056 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3215 +TI 1771360829.371985506 +CC NStripHits 3 +PE 156.044 +PP 1.21033 0.1579 0.231266 +PW 0 +SE +ET PH +ID 3216 +TI 1771360829.375474772 +CC NStripHits 3 +PE 154.634 +PP -0.0701406 -0.590142 -4.42498 +PW 0 +SE +ET UN +ID 3217 +TI 1771360829.376041306 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.2421 +SE +ET PH +ID 3218 +TI 1771360829.376212172 +CC NStripHits 2 +PE 34.8053 +PP -0.768578 0.0393227 0.464078 +PW 0 +SE +ET UN +ID 3219 +TI 1771360829.378386972 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 356.94 +SE +ID 3220 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 89.579721) +BD GR Veto +PQ 0.232969 +SE +ET UN +ID 3221 +TI 1771360829.379649422 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 98.5164 +SE +ID 3222 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 161.886934) +BD GR Veto +PQ 0.00743343 +SE +ID 3223 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 3224 +TI 1771360829.383457139 +CC NStripHits 4 +PQ 11.8203 +SQ 2 +CT 0 1 +TL 1 +TE 135.497 +CE 221.14 1.40468 135.497 1.06147 +CD 1.09392 -0.661261 -3.61014 0.0336036 0.0224913 0.0336036 -0.0701406 -0.982983 -3.02811 0.0336036 0.0195296 0.0336036 0 0 0 0 0 0 +LA 1.34063 +SE +ET PH +ID 3225 +TI 1771360829.384350856 +CC NStripHits 2 +PE 71.9723 +PP 2.72361 0.353787 0.813297 +PW 0 +SE +ET PH +ID 3226 +TI 1771360829.385239123 +CC NStripHits 2 +PE 80.4686 +PP 2.72361 0.359657 -2.9117 +PW 0 +SE +ET PH +ID 3227 +TI 1771360829.386099756 +CC NStripHits 3 +PE 123.767 +PP -0.652172 0.124749 1.74455 +PW 0 +SE +ID 3228 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 3229 +TI 1771360829.388250306 +CC NStripHits 2 +PE 133.852 +PP 0.162672 0.326914 2.55939 +PW 0 +SE +ET UN +ID 3230 +TI 1771360829.388408023 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 3231 +TI 1771360829.390211589 +CC NStripHits 4 +PQ 1.32205 +SQ 2 +CT 0 1 +TL 1 +TE 112.329 +CE 189.417 1.03363 112.329 0.989196 +CD -0.535766 -0.27684 0.696891 0.0336036 0.0253241 0.0336036 2.6072 -0.300265 1.74455 0.0336036 0.0251802 0.0336036 0 0 0 0 0 0 +LA 3.31306 +SE +ET UN +ID 3232 +TI 1771360829.390738506 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3233 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.390361) +BD GR Veto +PQ 0.0691451 +SE +ET PH +ID 3234 +TI 1771360829.395203989 +CC NStripHits 4 +PE 134.427 +PP 2.14158 -0.273174 -4.07577 +PW 0 +SE +ET PH +ID 3235 +TI 1771360829.395705423 +CC NStripHits 2 +PE 29.6547 +PP 1.55955 -1.17462 2.09377 +PW 0 +SE +ET PH +ID 3236 +TI 1771360829.396200789 +CC NStripHits 2 +PE 189.984 +PP 1.32673 0.322581 2.55939 +PW 0 +SE +ET PH +ID 3237 +TI 1771360829.397186323 +CC NStripHits 2 +PE 296.411 +PP 2.25798 0.221708 1.39533 +PW 0 +SE +ET UN +ID 3238 +TI 1771360829.398939189 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0916 +SE +ET UN +ID 3239 +TI 1771360829.402267190 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3240 +TI 1771360829.403420023 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3241 +TI 1771360829.403572790 +CC NStripHits 2 +PE 161.576 +PP 0.861109 -0.411715 -4.07577 +PW 0 +SE +ET UN +ID 3242 +TI 1771360829.404255956 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7785 +SE +ET PH +ID 3243 +TI 1771360829.406458206 +CC NStripHits 2 +PE 101.929 +PP -1.2342 -0.817177 -3.02811 +PW 0 +SE +ET CO +ID 3244 +TI 1771360829.407235256 +CC NStripHits 5 +PQ 1.06954 +SQ 2 +CT 0.535566 0.464434 +TL 1 +TE 195.066 +CE 162.258 0.988965 195.066 1.22148 +CD 3.07283 -0.742647 1.86095 0.0336036 0.0217594 0.0336036 2.25798 0.336072 2.21017 0.0336036 0.0378213 0.0336036 0 0 0 0 0 0 +LA 1.39627 +SE +ET PH +ID 3245 +TI 1771360829.407579256 +CC NStripHits 3 +PE 182.51 +PP 2.84002 0.34793 1.74455 +PW 0 +SE +ET PH +ID 3246 +TI 1771360829.408934506 +CC NStripHits 3 +PE 276.686 +PP -0.652172 -0.664261 -3.72655 +PW 0 +SE +ID 3247 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.116343) (Strip hit removed with energy 10.714684) (Strip hit removed with energy 18.330011) (Strip hit removed with energy 15.782019) (Strip hit removed with energy 15.881703) (Strip hit removed with energy 10.092588) (Strip hit removed with energy 7.156331) (Strip hit removed with energy 8.711120) (Strip hit removed with energy 7.829357) (Strip hit removed with energy 8.236825) (Strip hit removed with energy 12.113871) +QA StripPairing (Best reduced chi square is not below 25 (478.096823)) (Best strip pairing contains more than 5 strip groupings on one side) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 5332.539902)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 181.908526) +BD GR Veto +PQ 478.097 +SE +ID 3248 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.828690) +BD GR Veto +PQ 0.0132584 +SE +ET PH +ID 3249 +TI 1771360829.414215040 +CC NStripHits 3 +PE 157.079 +PP 1.55955 -0.312054 -0.467172 +PW 0 +SE +ET CO +ID 3250 +TI 1771360829.415232840 +CC NStripHits 5 +PQ 1.44776 +SQ 2 +CT 0 1 +TL 1 +TE 28.9042 +CE 104.39 1.12711 28.9042 0.983158 +CD -0.186547 -0.657341 1.51173 0.0336036 0.0225124 0.0336036 0.162672 -0.351783 1.16252 0.0336036 0.0248352 0.0336036 0 0 0 0 0 0 +LA 0.580747 +SE +ET PH +ID 3251 +TI 1771360829.416133223 +CC NStripHits 2 +PE 65.1653 +PP -0.535766 -1.05043 0.114859 +PW 0 +SE +ET PH +ID 3252 +TI 1771360829.417427223 +CC NStripHits 2 +PE 76.1914 +PP -1.81623 0.355442 0.813297 +PW 0 +SE +ET UN +ID 3253 +TI 1771360829.419109923 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 22.8179 +SE +ET UN +ID 3254 +TI 1771360829.419263506 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 48.2869 +SE +ID 3255 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.816080) +BD GR Veto +PQ 0.486512 +SE +ET UN +ID 3256 +TI 1771360829.420372740 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.7646 +SE +ET PH +ID 3257 +TI 1771360829.421168273 +CC NStripHits 3 +PE 356.723 +PP 0.162672 0.348374 1.16252 +PW 0 +SE +ET PH +ID 3258 +TI 1771360829.423649240 +CC NStripHits 3 +PE 149.189 +PP -1.35061 -1.06624 1.27892 +PW 0 +SE +ET UN +ID 3259 +TI 1771360829.424563790 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3260 +TI 1771360829.428461907 +CC NStripHits 4 +PE 188.816 +PP 1.67595 -0.58873 -1.51483 +PW 0 +SE +ET PH +ID 3261 +TI 1771360829.428713057 +CC NStripHits 2 +PE 71.8802 +PP -2.16545 0.372184 -1.98045 +PW 0 +SE +ID 3262 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 160.164879) +BD GR Veto +PQ 0.154598 +SE +ET CO +ID 3263 +TI 1771360829.431537307 +CC NStripHits 5 +PQ 29.5124 +SQ 2 +CT 0 1 +TL 1 +TE 137.821 +CE 219.433 1.23686 137.821 1.49276 +CD -2.51467 -0.194671 -0.583578 0.0336036 0.0258995 0.0336036 -1.93264 -0.314864 -0.467172 0.0336036 0.0250763 0.0336036 0 0 0 0 0 0 +LA 0.605604 +SE +ET PH +ID 3264 +TI 1771360829.431772940 +CC NStripHits 3 +PE 112.21 +PP -2.28186 0.117119 0.464078 +PW 0 +SE +ET UN +ID 3265 +TI 1771360829.433542257 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1108 +SE +ET UN +ID 3266 +TI 1771360829.434422907 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.509 +SE +ET UN +ID 3267 +TI 1771360829.435217757 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 356.682 +SE +ET PH +ID 3268 +TI 1771360829.435458040 +CC NStripHits 2 +PE 80.8056 +PP 0.861109 0.356095 -2.21327 +PW 0 +SE +ET PH +ID 3269 +TI 1771360829.435860290 +CC NStripHits 2 +PE 118.287 +PP 0.279078 0.0315176 2.09377 +PW 0 +SE +ET PH +ID 3270 +TI 1771360829.436980040 +CC NStripHits 2 +PE 356.961 +PP -2.63108 -0.122694 -0.816391 +PW 0 +SE +ID 3271 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.020418) +BD GR Veto +PQ 3.92316 +SE +ET PH +ID 3272 +TI 1771360829.437910773 +CC NStripHits 2 +PE 25.7001 +PP 3.88767 0.1386 -0.816391 +PW 0 +SE +ID 3273 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 50.978870) +BD GR Veto +PQ 0.0150622 +SE +ET PH +ID 3274 +TI 1771360829.439567823 +CC NStripHits 2 +PE 83.2197 +PP 0.744703 0.358405 -4.30858 +PW 0 +SE +ET PH +ID 3275 +TI 1771360829.440921407 +CC NStripHits 2 +PE 80.5609 +PP 2.84002 0.00287825 0.347672 +PW 0 +SE +ET CO +ID 3276 +TI 1771360829.441604474 +CC NStripHits 6 +PQ 0.247627 +SQ 2 +CT 0 1 +TL 1 +TE 161.775 +CE 283.434 1.20075 161.775 1.2189 +CD 4.12048 -0.233117 0.114859 0.0336036 0.0255846 0.0336036 3.88767 0.214744 0.580484 0.0336036 0.0328581 0.0336036 0 0 0 0 0 0 +LA 0.686722 +SE +ET PH +ID 3277 +TI 1771360829.444316974 +CC NStripHits 2 +PE 949.716 +PP -0.884984 -0.0945633 2.44298 +PW 0 +SE +ET PH +ID 3278 +TI 1771360829.444727674 +CC NStripHits 4 +PE 358.45 +PP -0.535766 -0.365921 1.51173 +PW 0 +SE +ET PH +ID 3279 +TI 1771360829.446083090 +CC NStripHits 2 +PE 84.5273 +PP -2.28186 0.229251 -0.467172 +PW 0 +SE +ET PH +ID 3280 +TI 1771360829.448762190 +CC NStripHits 2 +PE 50.0997 +PP 0.162672 -0.532671 -4.6578 +PW 0 +SE +ET UN +ID 3281 +TI 1771360829.449936974 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3282 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 140.295557) +BD GR Veto +PQ 0.00810498 +SE +ET UN +ID 3283 +TI 1771360829.452893490 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 115.66 +SE +ET UN +ID 3284 +TI 1771360829.453491457 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.9488 +SE +ET UN +ID 3285 +TI 1771360829.454026524 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 3286 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 202.690924) +BD GR Veto +PQ 10.5176 +SE +ET PH +ID 3287 +TI 1771360829.455709924 +CC NStripHits 2 +PE 264.194 +PP 4.23689 -1.1468 -3.49373 +PW 0 +SE +ET PH +ID 3288 +TI 1771360829.457843774 +CC NStripHits 3 +PE 175.837 +PP 1.21033 0.363599 -2.9117 +PW 0 +SE +ET PH +ID 3289 +TI 1771360829.459124457 +CC NStripHits 4 +PE 141.735 +PP 3.42205 -0.556095 1.86095 +PW 0 +SE +ID 3290 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.791925) +BD GR Veto +PQ 0.0914963 +SE +ET PH +ID 3291 +TI 1771360829.459900940 +CC NStripHits 2 +PE 80.1483 +PP 1.21033 0.361643 -0.816391 +PW 0 +SE +ID 3292 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 55.910593) +BD GR Veto +PQ 1.39175 +SE +ID 3293 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 358.128725) +BD GR Veto +PQ 0.105986 +SE +ET PH +ID 3294 +TI 1771360829.461404074 +CC NStripHits 2 +PE 28.0916 +PP -2.74748 0.314505 -0.467172 +PW 0 +SE +ET UN +ID 3295 +TI 1771360829.461969057 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3296 +TI 1771360829.462262324 +CC NStripHits 2 +PE 115.118 +PP -1.81623 0.337711 -2.67889 +PW 0 +SE +ET UN +ID 3297 +TI 1771360829.462955324 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3298 +TI 1771360829.463938641 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8555 +SE +ET PH +ID 3299 +TI 1771360829.464135907 +CC NStripHits 2 +PE 79.9622 +PP 3.77127 0.366086 -1.16561 +PW 0 +SE +ID 3300 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 192.244524) +BD GR Veto +PQ 12.8995 +SE +ID 3301 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 3302 +TI 1771360829.466257924 +CC NStripHits 2 +PE 81.7398 +PP 2.02517 -0.00727382 1.04611 +PW 0 +SE +ET CO +ID 3303 +TI 1771360829.471138741 +CC NStripHits 4 +PQ 0.00100276 +SQ 2 +CT 0 1 +TL 1 +TE 111.117 +CE 192.344 0.98606 111.117 1.01977 +CD 0.395484 0.172087 1.86095 0.0336036 0.0307544 0.0336036 0.162672 0.27501 2.21017 0.0336036 0.0399345 0.0336036 0 0 0 0 0 0 +LA 0.432145 +SE +ET PH +ID 3304 +TI 1771360829.471811024 +CC NStripHits 3 +PE 82.3311 +PP -0.419359 0.352218 2.21017 +PW 0 +SE +ET PH +ID 3305 +TI 1771360829.472284024 +CC NStripHits 2 +PE 57.8996 +PP 4.12048 0.373953 0.929703 +PW 0 +SE +ID 3306 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 352.956617) +BD GR Veto +PQ 0.0570824 +SE +ET PH +ID 3307 +TI 1771360829.472993924 +CC NStripHits 2 +PE 72.4851 +PP 1.21033 0.316198 -4.54139 +PW 0 +SE +ET PH +ID 3308 +TI 1771360829.473244641 +CC NStripHits 2 +PE 145.198 +PP -2.74748 -0.610849 -1.51483 +PW 0 +SE +ET UN +ID 3309 +TI 1771360829.474246891 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3310 +TI 1771360829.474943441 +CC NStripHits 2 +PE 80.8967 +PP 3.18923 0.354169 -4.6578 +PW 0 +SE +ET UN +ID 3311 +TI 1771360829.475737024 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2642 +SE +ET PH +ID 3312 +TI 1771360829.478106841 +CC NStripHits 3 +PE 277.069 +PP -1.81623 -0.111748 -3.95936 +PW 0 +SE +ET UN +ID 3313 +TI 1771360829.478186774 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2661 +SE +ET UN +ID 3314 +TI 1771360829.481097291 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3315 +TI 1771360829.482623424 +CC NStripHits 2 +PE 196.222 +PP -0.768578 -0.885474 1.86095 +PW 0 +SE +ID 3316 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 3317 +TI 1771360829.483524791 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 186.949 +SE +ET UN +ID 3318 +TI 1771360829.483691374 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3319 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.079834) +BD GR Veto +PQ +SE +ET PH +ID 3320 +TI 1771360829.485032058 +CC NStripHits 2 +PE 130.819 +PP -1.81623 0.230851 -4.6578 +PW 0 +SE +ID 3321 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.281913) +BD GR Veto +PQ +SE +ID 3322 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 168.313564) +BD GR Veto +PQ 0.00255502 +SE +ET UN +ID 3323 +TI 1771360829.487293408 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1089 +SE +ET PH +ID 3324 +TI 1771360829.487742758 +CC NStripHits 2 +PE 58.4486 +PP 0.395484 0.376759 2.44298 +PW 0 +SE +ET PH +ID 3325 +TI 1771360829.492427808 +CC NStripHits 2 +PE 95.137 +PP 0.861109 0.366294 2.09377 +PW 0 +SE +ET PH +ID 3326 +TI 1771360829.492546808 +CC NStripHits 2 +PE 41.7636 +PP 2.84002 -0.879827 -3.95936 +PW 0 +SE +ID 3327 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET PH +ID 3328 +TI 1771360829.493343208 +CC NStripHits 3 +PE 168.528 +PP 1.90877 -0.689706 1.62814 +PW 0 +SE +ID 3329 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ET PH +ID 3330 +TI 1771360829.494986641 +CC NStripHits 4 +PE 110.483 +PP 4.00408 0.32853 -3.61014 +PW 0 +SE +ET PH +ID 3331 +TI 1771360829.495546691 +CC NStripHits 2 +PE 135.026 +PP -0.884984 -0.113734 -2.56248 +PW 0 +SE +ET UN +ID 3332 +TI 1771360829.497475191 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.731 +SE +ET UN +ID 3333 +TI 1771360829.497601824 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 3334 +TI 1771360829.498653058 +CC NStripHits 4 +PQ 1.10468 +SQ 2 +CT 0 1 +TL 1 +TE 24.3497 +CE 98.4171 0.985402 24.3497 0.995273 +CD -1.58342 -0.206156 0.347672 0.0336036 0.025813 0.0336036 -2.51467 -0.146357 0.580484 0.0336036 0.0263353 0.0336036 0 0 0 0 0 0 +LA 0.961771 +SE +ET PH +ID 3335 +TI 1771360829.499320924 +CC NStripHits 2 +PE 74.4299 +PP -2.74748 0.325483 1.86095 +PW 0 +SE +ET UN +ID 3336 +TI 1771360829.501472691 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.8867 +SE +ID 3337 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET PH +ID 3338 +TI 1771360829.502213041 +CC NStripHits 2 +PE 73.5989 +PP 1.44314 0.289972 -0.467172 +PW 0 +SE +ET PH +ID 3339 +TI 1771360829.502716375 +CC NStripHits 2 +PE 80.6001 +PP 4.3533 0.347903 1.62814 +PW 0 +SE +ET PH +ID 3340 +TI 1771360829.503132408 +CC NStripHits 2 +PE 344.184 +PP 3.65486 0.34597 -2.7953 +PW 0 +SE +ET PH +ID 3341 +TI 1771360829.503917741 +CC NStripHits 2 +PE 66.0829 +PP -0.302953 -0.524415 -0.467172 +PW 0 +SE +ID 3342 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (57.713386)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 123.072833)) (GR Hit: Detector ID 0 and Energy 158.170483) +BD GR Veto +PQ 57.7134 +SE +ET CO +ID 3343 +TI 1771360829.504683025 +CC NStripHits 8 +PQ 1.56051 +SQ 3 +CT 0.0249153 0.0782626 +TL 1 +TE 178.424 +CE 174.012 1.67666 178.424 1.009 +CD 1.55955 -0.395377 -2.56248 0.0336036 0.0244908 0.0336036 1.21033 0.200721 -1.86405 0.0336036 0.0320003 0.0336036 0 0 0 0 0 0 +LA 0.774428 +SE +ET PH +ID 3344 +TI 1771360829.506279258 +CC NStripHits 2 +PE 88.1212 +PP -2.16545 -0.640827 -1.28202 +PW 0 +SE +ET UN +ID 3345 +TI 1771360829.508296441 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 163.376 +SE +ET PH +ID 3346 +TI 1771360829.508625775 +CC NStripHits 2 +PE 73.6617 +PP -2.16545 0.363637 -0.583578 +PW 0 +SE +ET PH +ID 3347 +TI 1771360829.509937925 +CC NStripHits 2 +PE 82.9288 +PP 0.162672 0.22786 -0.350766 +PW 0 +SE +ID 3348 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET PH +ID 3349 +TI 1771360829.511427925 +CC NStripHits 2 +PE 81.4982 +PP 0.977516 0.320361 -3.84295 +PW 0 +SE +ET PH +ID 3350 +TI 1771360829.511509041 +CC NStripHits 2 +PE 177.456 +PP -0.0701406 0.35364 -2.9117 +PW 0 +SE +ET PH +ID 3351 +TI 1771360829.511839308 +CC NStripHits 2 +PE 79.9541 +PP 0.162672 0.0664158 -0.583578 +PW 0 +SE +ET PH +ID 3352 +TI 1771360829.513338291 +CC NStripHits 2 +PE 73.2013 +PP 1.79236 -0.426212 -4.30858 +PW 0 +SE +ET UN +ID 3353 +TI 1771360829.517878508 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 60.9819 +SE +ET PH +ID 3354 +TI 1771360829.518291091 +CC NStripHits 2 +PE 80.2163 +PP 1.67595 0.360013 -1.28202 +PW 0 +SE +ET PH +ID 3355 +TI 1771360829.518737741 +CC NStripHits 2 +PE 80.9022 +PP 3.07283 -1.12053 -0.583578 +PW 0 +SE +ID 3356 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ET UN +ID 3357 +TI 1771360829.520063308 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.6632 +SE +ET UN +ID 3358 +TI 1771360829.520307925 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 49.9743 +SE +ET PH +ID 3359 +TI 1771360829.521003542 +CC NStripHits 3 +PE 127.157 +PP -1.81623 -0.155328 1.74455 +PW 0 +SE +ET UN +ID 3360 +TI 1771360829.521385058 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3361 +TI 1771360829.525393942 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5669 +SE +ET UN +ID 3362 +TI 1771360829.526171042 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.9616 +SE +ID 3363 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET UN +ID 3364 +TI 1771360829.527974658 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 3365 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (34.358640)) (GR Hit: Detector ID 0 and Energy 81.836170) +BD GR Veto +PQ 34.3586 +SE +ET PH +ID 3366 +TI 1771360829.529399775 +CC NStripHits 2 +PE 75.584 +PP -1.69983 0.368944 0.580484 +PW 0 +SE +ET PH +ID 3367 +TI 1771360829.529947075 +CC NStripHits 2 +PE 28.2197 +PP 0.511891 0.114584 0.580484 +PW 0 +SE +ET PH +ID 3368 +TI 1771360829.530598192 +CC NStripHits 2 +PE 73.8654 +PP 3.88767 0.372792 -4.07577 +PW 0 +SE +ET PH +ID 3369 +TI 1771360829.531347542 +CC NStripHits 4 +PE 358.838 +PP 1.32673 -0.385124 0.813297 +PW 0 +SE +ET UN +ID 3370 +TI 1771360829.531978792 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 132.863 +SE +ET PH +ID 3371 +TI 1771360829.532703375 +CC NStripHits 2 +PE 142.195 +PP 2.02517 0.361913 -3.95936 +PW 0 +SE +ET PH +ID 3372 +TI 1771360829.533701958 +CC NStripHits 2 +PE 211.859 +PP 2.72361 0.0965059 -2.9117 +PW 0 +SE +ID 3373 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 120.914847) +BD GR Veto +PQ 23.556 +SE +ID 3374 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 95.898524) +BD GR Veto +PQ 16.8334 +SE +ET UN +ID 3375 +TI 1771360829.537122842 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 182.014 +SE +ET UN +ID 3376 +TI 1771360829.537978825 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 322.394 +SE +ET PH +ID 3377 +TI 1771360829.540009425 +CC NStripHits 2 +PE 66.3077 +PP 1.32673 0.360434 -3.02811 +PW 0 +SE +ET PH +ID 3378 +TI 1771360829.541366009 +CC NStripHits 3 +PE 78.9299 +PP 0.628297 0.338717 -4.6578 +PW 0 +SE +ET PH +ID 3379 +TI 1771360829.541604792 +CC NStripHits 2 +PE 110.182 +PP 4.00408 -0.266907 0.347672 +PW 0 +SE +ET UN +ID 3380 +TI 1771360829.542070275 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4228 +SE +ET UN +ID 3381 +TI 1771360829.543678509 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.9666 +SE +ET UN +ID 3382 +TI 1771360829.545092592 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0784 +SE +ET PH +ID 3383 +TI 1771360829.546046159 +CC NStripHits 2 +PE 100.594 +PP -0.302953 0.306388 1.27892 +PW 0 +SE +ET PH +ID 3384 +TI 1771360829.547232859 +CC NStripHits 2 +PE 75.3493 +PP -0.302953 0.37312 -1.16561 +PW 0 +SE +ID 3385 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.570180) +BD GR Veto +PQ +SE +ET PH +ID 3386 +TI 1771360829.550986275 +CC NStripHits 2 +PE 80.5782 +PP 0.395484 0.319425 1.16252 +PW 0 +SE +ET UN +ID 3387 +TI 1771360829.553172542 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.555 +SE +ET UN +ID 3388 +TI 1771360829.553402409 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5112 +SE +ET PH +ID 3389 +TI 1771360829.553853725 +CC NStripHits 2 +PE 81.2518 +PP 3.53845 0.251706 -3.02811 +PW 0 +SE +ID 3390 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 37.282494)) (GR Hit: Detector ID 0 and Energy 108.490295) +BD GR Veto +PQ 23.4293 +SE +ET UN +ID 3391 +TI 1771360829.555614475 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.2178 +SE +ET UN +ID 3392 +TI 1771360829.556891059 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4449 +SE +ET UN +ID 3393 +TI 1771360829.565839459 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3394 +TI 1771360829.567895259 +CC NStripHits 3 +PE 65.1792 +PP -1.35061 -0.419074 2.55939 +PW 0 +SE +ET PH +ID 3395 +TI 1771360829.568727409 +CC NStripHits 2 +PE 83.99 +PP 2.37439 -0.259774 -4.07577 +PW 0 +SE +ET UN +ID 3396 +TI 1771360829.574680092 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3397 +TI 1771360829.574981926 +CC NStripHits 2 +PE 52.8773 +PP 1.32673 0.374869 2.44298 +PW 0 +SE +ET PH +ID 3398 +TI 1771360829.577352226 +CC NStripHits 2 +PE 190.471 +PP 1.79236 -0.908393 2.21017 +PW 0 +SE +ID 3399 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.573520) +BD GR Veto +PQ 0.00402594 +SE +ET CO +ID 3400 +TI 1771360829.578052092 +CC NStripHits 6 +PQ 1.71773 +SQ 3 +CT 0.00574628 0.0399739 +TL 1 +TE 90.005 +CE 266.007 1.57105 90.005 1.37679 +CD 4.00408 -0.796489 -0.117953 0.0336036 0.0209728 0.0336036 0.744703 0.218853 -1.63123 0.0336036 0.0331617 0.0336036 0 0 0 0 0 0 +LA 3.60435 +SE +ET UN +ID 3401 +TI 1771360829.578634942 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 82.2376 +SE +ET PH +ID 3402 +TI 1771360829.580037843 +CC NStripHits 6 +PE 357.503 +PP 4.00408 -0.686126 -2.21327 +PW 0 +SE +ET PH +ID 3403 +TI 1771360829.581281209 +CC NStripHits 2 +PE 77.4989 +PP 0.628297 0.360018 -1.16561 +PW 0 +SE +ID 3404 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (160.217171)) (GR Hit: Detector ID 0 and Energy 161.648930) +BD GR Veto +PQ 160.217 +SE +ET PH +ID 3405 +TI 1771360829.582044859 +CC NStripHits 2 +PE 63.3592 +PP -0.768578 -1.13379 0.114859 +PW 0 +SE +ID 3406 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET UN +ID 3407 +TI 1771360829.584569443 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3408 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 40.280472) +BD GR Veto +PQ 1.5164 +SE +ID 3409 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.420163) +BD GR Veto +PQ 0.506297 +SE +ET CO +ID 3410 +TI 1771360829.586233776 +CC NStripHits 4 +PQ 1.18156 +SQ 2 +CT 0 1 +TL 1 +TE 133.932 +CE 223.559 1.08162 133.932 1.05515 +CD 3.65486 -0.748581 -0.583578 0.0336036 0.0216755 0.0336036 3.53845 -0.785837 -0.699984 0.0336036 0.021108 0.0336036 0 0 0 0 0 0 +LA 0.168789 +SE +ET UN +ID 3411 +TI 1771360829.586476843 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.4531 +SE +ID 3412 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 146.900241) +BD GR Veto +PQ 3.02281 +SE +ID 3413 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 34.915781)) +BD GR Veto +PQ 5.20802 +SE +ET PH +ID 3414 +TI 1771360829.589800626 +CC NStripHits 2 +PE 29.1869 +PP -2.51467 -0.0147749 -4.19217 +PW 0 +SE +ID 3415 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 160.840283) +BD GR Veto +PQ 0.152459 +SE +ET PH +ID 3416 +TI 1771360829.591231959 +CC NStripHits 2 +PE 28.2792 +PP 4.23689 0.201577 -0.816391 +PW 0 +SE +ET UN +ID 3417 +TI 1771360829.591732276 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0947 +SE +ET PH +ID 3418 +TI 1771360829.592267743 +CC NStripHits 2 +PE 56.0182 +PP -2.86389 -0.639067 0.696891 +PW 0 +SE +ID 3419 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 125.765425) +BD GR Veto +PQ 1.75971 +SE +ID 3420 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.091602) +BD GR Veto +PQ 0.816454 +SE +ID 3421 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.299952) +BD GR Veto +PQ 0.550773 +SE +ET PH +ID 3422 +TI 1771360829.595144443 +CC NStripHits 3 +PE 357.03 +PP -0.419359 0.223082 -2.67889 +PW 0 +SE +ET CO +ID 3423 +TI 1771360829.596124726 +CC NStripHits 4 +PQ 3.88239 +SQ 2 +CT 0.532665 0.467335 +TL 1 +TE 181.366 +CE 163.161 1.40933 181.366 1.03872 +CD -0.302953 -0.167595 -1.63123 0.0336036 0.0261111 0.0336036 0.0462656 -0.510622 -1.51483 0.0336036 0.023365 0.0336036 0 0 0 0 0 0 +LA 0.50316 +SE +ID 3424 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.401040) +BD GR Veto +PQ 0.147965 +SE +ET PH +ID 3425 +TI 1771360829.597000426 +CC NStripHits 2 +PE 81.6932 +PP 4.12048 0.362325 -0.467172 +PW 0 +SE +ET PH +ID 3426 +TI 1771360829.597755726 +CC NStripHits 2 +PE 32.8793 +PP 0.0462656 -0.715888 -3.61014 +PW 0 +SE +ID 3427 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.877052) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 28.728177)) (GR Hit: Detector ID 0 and Energy 101.959473) +BD GR Veto +PQ 5.46277 +SE +ET UN +ID 3428 +TI 1771360829.599021626 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.766 +SE +ID 3429 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 51.107775) +BD GR Veto +PQ 0.00257156 +SE +ET PH +ID 3430 +TI 1771360829.602338676 +CC NStripHits 2 +PE 131.797 +PP 2.4908 0.253147 -4.54139 +PW 0 +SE +ID 3431 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.101683) +BD GR Veto +PQ 0.110357 +SE +ET PH +ID 3432 +TI 1771360829.604896026 +CC NStripHits 2 +PE 104.09 +PP 2.6072 0.219266 1.62814 +PW 0 +SE +ET PH +ID 3433 +TI 1771360829.605724760 +CC NStripHits 2 +PE 33.0644 +PP -1.00139 0.2289 -4.19217 +PW 0 +SE +ET CO +ID 3434 +TI 1771360829.605942426 +CC NStripHits 6 +PQ 0.571559 +SQ 2 +CT 0.528657 0.471343 +TL 1 +TE 187.855 +CE 170.655 0.998835 187.855 1.36299 +CD -0.884984 0.329082 1.27892 0.0336036 0.039413 0.0336036 -0.0701406 0.0110103 2.09377 0.0336036 0.0277414 0.0336036 0 0 0 0 0 0 +LA 1.19546 +SE +ET CO +ID 3435 +TI 1771360829.610344810 +CC NStripHits 4 +PQ 22.669 +SQ 2 +CT 0.720934 0.279066 +TL 1 +TE 149.39 +CE 207.575 1.42507 149.39 1.02095 +CD -1.81623 -0.243734 -3.61014 0.0336036 0.0255077 0.0336036 -1.46702 -0.673433 -3.14452 0.0336036 0.0224207 0.0336036 0 0 0 0 0 0 +LA 0.723458 +SE +ET PH +ID 3436 +TI 1771360829.612118993 +CC NStripHits 4 +PE 185.668 +PP 3.07283 0.138647 -3.95936 +PW 0 +SE +ET PH +ID 3437 +TI 1771360829.612832460 +CC NStripHits 2 +PE 186.586 +PP 2.37439 0.104696 1.16252 +PW 0 +SE +ET CO +ID 3438 +TI 1771360829.614126676 +CC NStripHits 4 +PQ 6.2626 +SQ 2 +CT 0 1 +TL 1 +TE 96.2003 +CE 145.602 1.40817 96.2003 1.04576 +CD -0.186547 0.265929 -3.26092 0.0336036 0.0387494 0.0336036 2.25798 -0.817766 -1.39842 0.0336036 0.0207112 0.0336036 0 0 0 0 0 0 +LA 3.25868 +SE +ET PH +ID 3439 +TI 1771360829.614466576 +CC NStripHits 3 +PE 304.723 +PP 3.77127 -0.706958 -3.95936 +PW 0 +SE +ET PH +ID 3440 +TI 1771360829.614727310 +CC NStripHits 2 +PE 180.585 +PP 0.0462656 0.242486 0.464078 +PW 0 +SE +ET UN +ID 3441 +TI 1771360829.616062893 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 205.821 +SE +ET PH +ID 3442 +TI 1771360829.616738860 +CC NStripHits 3 +PE 189.075 +PP 0.0462656 -0.514518 -0.816391 +PW 0 +SE +ET PH +ID 3443 +TI 1771360829.618922393 +CC NStripHits 2 +PE 30.1475 +PP -2.74748 0.0195038 0.813297 +PW 0 +SE +ET CO +ID 3444 +TI 1771360829.620612827 +CC NStripHits 7 +PQ 3.88363 +SQ 3 +CT 0.154527 0.358845 +TL 1 +TE 160.429 +CE 198.91 1.82323 160.429 1.20172 +CD -0.186547 -0.674601 -0.583578 0.0336036 0.0224135 0.0336036 -0.535766 -0.576491 -0.699984 0.0336036 0.0229291 0.0336036 0 0 0 0 0 0 +LA 0.380959 +SE +ET UN +ID 3445 +TI 1771360829.621253777 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3446 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.729011) +BD GR Veto +PQ 16.9763 +SE +ID 3447 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 3448 +TI 1771360829.623222643 +CC NStripHits 2 +PE 29.9612 +PP 4.12048 -0.696208 -1.74764 +PW 0 +SE +ET UN +ID 3449 +TI 1771360829.623534493 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6469 +SE +ID 3450 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 351.244817) +BD GR Veto +PQ 0.020615 +SE +ET UN +ID 3451 +TI 1771360829.626979977 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 282.673 +SE +ET UN +ID 3452 +TI 1771360829.627732443 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 193.226 +SE +ID 3453 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.870303) +BD GR Veto +PQ 2.39943 +SE +ID 3454 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 3455 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.251973) +BD GR Veto +PQ 0.049991 +SE +ET PH +ID 3456 +TI 1771360829.631888260 +CC NStripHits 2 +PE 162.819 +PP -2.9803 -0.206116 -0.234359 +PW 0 +SE +ET PH +ID 3457 +TI 1771360829.632334727 +CC NStripHits 2 +PE 73.153 +PP -2.28186 -0.322064 -0.816391 +PW 0 +SE +ID 3458 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.201092) +BD GR Veto +PQ 19.4013 +SE +ET UN +ID 3459 +TI 1771360829.634245410 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8885 +SE +ID 3460 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 3461 +TI 1771360829.634529743 +CC NStripHits 2 +PE 81.6786 +PP -2.9803 -0.0935635 0.114859 +PW 0 +SE +ET UN +ID 3462 +TI 1771360829.636217927 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.197 +SE +ET UN +ID 3463 +TI 1771360829.636318777 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.529 +SE +ID 3464 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.608900) +BD GR Veto +PQ 0.712203 +SE +ET PH +ID 3465 +TI 1771360829.636655777 +CC NStripHits 2 +PE 71.094 +PP 0.977516 0.374903 -3.14452 +PW 0 +SE +ID 3466 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.385930) +BD GR Veto +PQ 0.0072608 +SE +ET UN +ID 3467 +TI 1771360829.638929843 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.1335 +SE +ET UN +ID 3468 +TI 1771360829.640799577 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4891 +SE +ET PH +ID 3469 +TI 1771360829.643087110 +CC NStripHits 2 +PE 79.5054 +PP -0.884984 0.344577 -1.51483 +PW 0 +SE +ID 3470 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.882457) +BD GR Veto +PQ 3.54715 +SE +ET UN +ID 3471 +TI 1771360829.644785494 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7623 +SE +ID 3472 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.907079) +BD GR Veto +PQ 0.0003157 +SE +ET UN +ID 3473 +TI 1771360829.647049127 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3474 +TI 1771360829.648298060 +CC NStripHits 2 +PE 80.2922 +PP -0.0701406 0.340324 -1.74764 +PW 0 +SE +ET PH +ID 3475 +TI 1771360829.648675144 +CC NStripHits 2 +PE 66.5495 +PP -1.1178 -1.11221 -3.84295 +PW 0 +SE +ET PH +ID 3476 +TI 1771360829.649416244 +CC NStripHits 3 +PE 118.152 +PP 2.95642 -0.641509 -2.44608 +PW 0 +SE +ID 3477 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.979182)) (GR Hit: Detector ID 0 and Energy 73.170444) +BD GR Veto +PQ 27.9792 +SE +ET UN +ID 3478 +TI 1771360829.653116660 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3479 +TI 1771360829.653593710 +CC NStripHits 2 +PE 96.5668 +PP -2.39827 0.336003 1.74455 +PW 0 +SE +ET UN +ID 3480 +TI 1771360829.654234377 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 352.948 +SE +ID 3481 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 212.722332) +BD GR Veto +PQ 0.000603913 +SE +ID 3482 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.730137) +BD GR Veto +PQ 1.22672 +SE +ET PH +ID 3483 +TI 1771360829.655401927 +CC NStripHits 3 +PE 81.1057 +PP -1.58342 0.35958 -0.117953 +PW 0 +SE +ET PH +ID 3484 +TI 1771360829.655798227 +CC NStripHits 2 +PE 92.022 +PP -2.86389 0.338475 1.86095 +PW 0 +SE +ET PH +ID 3485 +TI 1771360829.658022510 +CC NStripHits 2 +PE 27.3967 +PP -1.69983 -1.0272 -0.00154687 +PW 0 +SE +ET PH +ID 3486 +TI 1771360829.662362961 +CC NStripHits 5 +PE 253.538 +PP -0.302953 -0.645926 -3.72655 +PW 0 +SE +ET PH +ID 3487 +TI 1771360829.662700461 +CC NStripHits 2 +PE 79.7605 +PP 3.53845 0.345577 -0.117953 +PW 0 +SE +ET PH +ID 3488 +TI 1771360829.666536811 +CC NStripHits 2 +PE 79.7625 +PP 2.37439 0.25813 0.347672 +PW 0 +SE +ET PH +ID 3489 +TI 1771360829.667516727 +CC NStripHits 3 +PE 128.834 +PP -2.39827 -0.111392 -3.95936 +PW 0 +SE +ET PH +ID 3490 +TI 1771360829.668576594 +CC NStripHits 2 +PE 119.759 +PP -2.04905 -1.13973 1.04611 +PW 0 +SE +ET UN +ID 3491 +TI 1771360829.669499077 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.289 +SE +ET PH +ID 3492 +TI 1771360829.671690811 +CC NStripHits 3 +PE 81.2956 +PP 0.395484 0.159762 -3.26092 +PW 0 +SE +ET PH +ID 3493 +TI 1771360829.673182577 +CC NStripHits 2 +PE 169.37 +PP 3.53845 -0.0892563 -3.26092 +PW 0 +SE +ID 3494 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.276671) (Strip hit removed with energy 8.345612) (Strip hit removed with energy 10.282260) (Strip hit removed with energy 14.941909) (Strip hit removed with energy 18.980973) +QA StripPairing (Best reduced chi square is not below 25 (2378.162180)) (GR Hit: Detector ID 0 and Energy 609.300346) +BD GR Veto +PQ 2378.16 +SE +ET UN +ID 3495 +TI 1771360829.676516994 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.5262 +SE +ID 3496 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 101.519996) +BD GR Veto +PQ 0.28041 +SE +ET PH +ID 3497 +TI 1771360829.680500978 +CC NStripHits 2 +PE 34.017 +PP -0.186547 -0.345202 -2.32967 +PW 0 +SE +ID 3498 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.938528) +BD GR Veto +PQ 17.7253 +SE +ET PH +ID 3499 +TI 1771360829.682224194 +CC NStripHits 2 +PE 56.4747 +PP 1.44314 0.374098 -2.44608 +PW 0 +SE +ID 3500 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 3501 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 3502 +TI 1771360829.684477644 +CC NStripHits 2 +PE 75.7088 +PP 2.4908 0.0593748 -4.6578 +PW 0 +SE +ID 3503 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 3504 +TI 1771360829.684782661 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3505 +TI 1771360829.686138128 +CC NStripHits 3 +PE 119.223 +PP 0.395484 -0.00726064 -4.42498 +PW 0 +SE +ET PH +ID 3506 +TI 1771360829.688635594 +CC NStripHits 2 +PE 60.8909 +PP 2.14158 0.352318 0.347672 +PW 0 +SE +ET PH +ID 3507 +TI 1771360829.689384228 +CC NStripHits 2 +PE 54.9337 +PP -2.74748 0.374591 0.813297 +PW 0 +SE +ET PH +ID 3508 +TI 1771360829.690007728 +CC NStripHits 2 +PE 81.0454 +PP 1.09392 0.341626 2.21017 +PW 0 +SE +ET PH +ID 3509 +TI 1771360829.691502894 +CC NStripHits 3 +PE 81.0539 +PP -1.58342 0.36001 1.51173 +PW 0 +SE +ET UN +ID 3510 +TI 1771360829.692376544 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.8954 +SE +ID 3511 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ 0.184111 +SE +ID 3512 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.893940) +BD GR Veto +PQ 0.000524331 +SE +ET UN +ID 3513 +TI 1771360829.694428028 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3514 +TI 1771360829.694737828 +CC NStripHits 2 +PE 84.6669 +PP 1.67595 -1.17433 1.62814 +PW 0 +SE +ET PH +ID 3515 +TI 1771360829.694940411 +CC NStripHits 3 +PE 126.995 +PP -1.58342 -0.255117 -2.67889 +PW 0 +SE +ID 3516 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (157.080895)) (GR Hit: Detector ID 0 and Energy 175.718791) +BD GR Veto +PQ 157.081 +SE +ET CO +ID 3517 +TI 1771360829.695375261 +CC NStripHits 4 +PQ 33.8649 +SQ 2 +CT 0 1 +TL 1 +TE 38.9976 +CE 176.465 1.50636 38.9976 0.994838 +CD 3.65486 -0.918987 1.27892 0.0336036 0.0198371 0.0336036 3.53845 -0.862962 0.696891 0.0336036 0.0203352 0.0336036 0 0 0 0 0 0 +LA 0.596194 +SE +ET PH +ID 3518 +TI 1771360829.695892778 +CC NStripHits 2 +PE 90.9416 +PP 2.6072 0.305083 -4.6578 +PW 0 +SE +ET PH +ID 3519 +TI 1771360829.695971161 +CC NStripHits 3 +PE 82.1446 +PP 1.90877 0.233339 -0.234359 +PW 0 +SE +ET PH +ID 3520 +TI 1771360829.698193261 +CC NStripHits 3 +PE 98.572 +PP 0.162672 0.160175 1.97736 +PW 0 +SE +ET PH +ID 3521 +TI 1771360829.699291494 +CC NStripHits 2 +PE 173.167 +PP 3.42205 -0.16346 0.813297 +PW 0 +SE +ET PH +ID 3522 +TI 1771360829.700230628 +CC NStripHits 2 +PE 47.4291 +PP -0.419359 -1.12744 1.39533 +PW 0 +SE +ID 3523 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ET CO +ID 3524 +TI 1771360829.704796161 +CC NStripHits 6 +PQ 2.40019 +SQ 2 +CT 0 1 +TL 1 +TE 94.7684 +CE 258.667 1.23319 94.7684 1.17168 +CD 2.25798 0.33613 -2.21327 0.0336036 0.0378062 0.0336036 4.23689 -0.510084 -2.56248 0.0336036 0.0233689 0.0336036 0 0 0 0 0 0 +LA 2.18039 +SE +ID 3525 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 302.637086) +BD GR Veto +PQ 0.0732133 +SE +ET UN +ID 3526 +TI 1771360829.706762928 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3527 +TI 1771360829.710904595 +CC NStripHits 2 +PE 217.348 +PP -1.69983 -0.7605 2.44298 +PW 0 +SE +ET PH +ID 3528 +TI 1771360829.711423678 +CC NStripHits 2 +PE 79.6526 +PP -2.39827 0.342871 1.27892 +PW 0 +SE +ET CO +ID 3529 +TI 1771360829.711704061 +CC NStripHits 5 +PQ 1.92921 +SQ 2 +CT 0.509169 0.490831 +TL 1 +TE 184.884 +CE 172.852 1.17157 184.884 0.992536 +CD 0.162672 -0.119271 -2.67889 0.0336036 0.0265384 0.0336036 2.95642 -0.302929 -3.02811 0.0336036 0.025161 0.0336036 0 0 0 0 0 0 +LA 2.82147 +SE +ET UN +ID 3530 +TI 1771360829.714235128 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.735 +SE +ID 3531 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 157.256982) +BD GR Veto +PQ 0.965126 +SE +ET UN +ID 3532 +TI 1771360829.715877978 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3533 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 52.870356) +BD GR Veto +PQ 1.20581 +SE +ID 3534 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.685740) +BD GR Veto +PQ 0.043231 +SE +ET PH +ID 3535 +TI 1771360829.718209261 +CC NStripHits 2 +PE 77.6209 +PP -1.2342 0.168504 1.04611 +PW 0 +SE +ID 3536 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 3537 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 170.190428) +BD GR Veto +PQ 0.0516941 +SE +ID 3538 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.239531) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.314280) +BD GR Veto +PQ 2.51054 +SE +ID 3539 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.849785) +BD GR Veto +PQ 0.0357497 +SE +ET PH +ID 3540 +TI 1771360829.721341678 +CC NStripHits 3 +PE 171.797 +PP 3.42205 -0.306864 0.813297 +PW 0 +SE +ET PH +ID 3541 +TI 1771360829.722260745 +CC NStripHits 2 +PE 74.1664 +PP 2.4908 0.351186 1.51173 +PW 0 +SE +ET UN +ID 3542 +TI 1771360829.723025478 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6964 +SE +ET PH +ID 3543 +TI 1771360829.723787212 +CC NStripHits 2 +PE 161.209 +PP 1.21033 -0.335643 2.6758 +PW 0 +SE +ET CO +ID 3544 +TI 1771360829.724532078 +CC NStripHits 5 +PQ 6.99837 +SQ 2 +CT 0 1 +TL 1 +TE 74.0247 +CE 142.868 1.55208 74.0247 1.18022 +CD 0.744703 -0.440179 -0.467172 0.0336036 0.0240358 0.0336036 0.511891 -0.37113 -0.350766 0.0336036 0.0246822 0.0336036 0 0 0 0 0 0 +LA 0.269295 +SE +ET UN +ID 3545 +TI 1771360829.724891312 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3546 +TI 1771360829.725009828 +CC NStripHits 2 +PE 79.7291 +PP -2.74748 0.319054 1.97736 +PW 0 +SE +ET UN +ID 3547 +TI 1771360829.726633178 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3548 +TI 1771360829.731255928 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.4108 +SE +ET UN +ID 3549 +TI 1771360829.731955578 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 59.0838 +SE +ET PH +ID 3550 +TI 1771360829.732791045 +CC NStripHits 2 +PE 69.9687 +PP -1.35061 -0.0884002 -3.37733 +PW 0 +SE +ET UN +ID 3551 +TI 1771360829.733608262 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 301.475 +SE +ET PH +ID 3552 +TI 1771360829.734437195 +CC NStripHits 2 +PE 151.366 +PP 0.977516 0.224075 -4.07577 +PW 0 +SE +ET PH +ID 3553 +TI 1771360829.735375178 +CC NStripHits 2 +PE 114.957 +PP 1.79236 -0.259106 -3.26092 +PW 0 +SE +ID 3554 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (28.797939)) (GR Hit: Detector ID 0 and Energy 77.748506) +BD GR Veto +PQ 28.7979 +SE +ET PH +ID 3555 +TI 1771360829.737299312 +CC NStripHits 2 +PE 79.8089 +PP 3.18923 0.283174 -2.44608 +PW 0 +SE +ID 3556 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.538710) +BD GR Veto +PQ 1.19519 +SE +ET UN +ID 3557 +TI 1771360829.741012545 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3558 +TI 1771360829.744490595 +CC NStripHits 2 +PE 68.4823 +PP 2.84002 0.363357 -3.72655 +PW 0 +SE +ID 3559 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 3560 +TI 1771360829.747644362 +CC NStripHits 2 +PE 119.288 +PP -1.46702 -0.103826 -2.56248 +PW 0 +SE +ET PH +ID 3561 +TI 1771360829.751653829 +CC NStripHits 2 +PE 29.422 +PP 2.72361 -0.450388 -4.07577 +PW 0 +SE +ET CO +ID 3562 +TI 1771360829.752131962 +CC NStripHits 4 +PQ 9.13184 +SQ 2 +CT 0 1 +TL 1 +TE 74.7172 +CE 130.828 1.38542 74.7172 0.987894 +CD 2.02517 0.333486 1.27892 0.0336036 0.0384625 0.0336036 1.44314 -0.0135383 1.39533 0.0336036 0.0275794 0.0336036 0 0 0 0 0 0 +LA 0.687558 +SE +ID 3563 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.544448) +BD GR Veto +PQ 0.606104 +SE +ET UN +ID 3564 +TI 1771360829.756611779 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9449 +SE +ET PH +ID 3565 +TI 1771360829.756939195 +CC NStripHits 3 +PE 158.843 +PP 2.6072 -1.12667 1.16252 +PW 0 +SE +ET UN +ID 3566 +TI 1771360829.758788229 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3567 +TI 1771360829.759585579 +CC NStripHits 2 +PE 161.375 +PP 3.07283 -0.870623 -2.56248 +PW 0 +SE +ET UN +ID 3568 +TI 1771360829.760676812 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3569 +TI 1771360829.761311462 +CC NStripHits 2 +PE 29.5534 +PP -1.00139 0.266628 0.929703 +PW 0 +SE +ID 3570 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 107.955526) +BD GR Veto +PQ 0.561013 +SE +ID 3571 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.604508) +BD GR Veto +PQ 0.0898728 +SE +ID 3572 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 3573 +TI 1771360829.764157429 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3574 +TI 1771360829.764838729 +CC NStripHits 2 +PE 73.3584 +PP 3.30564 -0.197752 1.39533 +PW 0 +SE +ET PH +ID 3575 +TI 1771360829.766143246 +CC NStripHits 2 +PE 143.177 +PP 0.162672 -0.348659 -2.44608 +PW 0 +SE +ID 3576 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.738153) +BD GR Veto +PQ 0.138315 +SE +ET PH +ID 3577 +TI 1771360829.769281312 +CC NStripHits 3 +PE 66.7103 +PP 2.95642 0.0384349 -4.19217 +PW 0 +SE +ID 3578 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.822511) +BD GR Veto +PQ 4.59108 +SE +ID 3579 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.339328) +BD GR Veto +PQ 1.39138 +SE +ET PH +ID 3580 +TI 1771360829.770909796 +CC NStripHits 2 +PE 76.7301 +PP 2.25798 0.375986 -3.02811 +PW 0 +SE +ID 3581 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (55.782265)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 55.549988)) (GR Hit: Detector ID 0 and Energy 171.811991) +BD GR Veto +PQ 55.7823 +SE +ET UN +ID 3582 +TI 1771360829.771832496 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7463 +SE +ET PH +ID 3583 +TI 1771360829.771990879 +CC NStripHits 2 +PE 50.2203 +PP 2.95642 -0.19812 -4.30858 +PW 0 +SE +ET UN +ID 3584 +TI 1771360829.772128746 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3585 +TI 1771360829.772627012 +CC NStripHits 2 +PE 153.717 +PP 3.65486 -1.14105 -4.30858 +PW 0 +SE +ET PH +ID 3586 +TI 1771360829.772844162 +CC NStripHits 2 +PE 62.7447 +PP 0.0462656 0.367219 -1.86405 +PW 0 +SE +ET PH +ID 3587 +TI 1771360829.773014212 +CC NStripHits 2 +PE 30.3098 +PP 2.4908 0.378048 -4.54139 +PW 0 +SE +ID 3588 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 110.792830) +BD GR Veto +PQ 0.0537019 +SE +ET PH +ID 3589 +TI 1771360829.777220146 +CC NStripHits 2 +PE 74.3809 +PP 0.744703 0.36873 -4.30858 +PW 0 +SE +ET UN +ID 3590 +TI 1771360829.779123812 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 48.3643 +SE +ET PH +ID 3591 +TI 1771360829.780030563 +CC NStripHits 2 +PE 182.026 +PP 1.67595 0.0738467 2.55939 +PW 0 +SE +ET PH +ID 3592 +TI 1771360829.781551796 +CC NStripHits 2 +PE 190.337 +PP 0.628297 0.251195 -2.32967 +PW 0 +SE +ID 3593 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 3594 +TI 1771360829.783774279 +CC NStripHits 2 +PE 29.6924 +PP 3.65486 -0.101075 2.32658 +PW 0 +SE +ET PH +ID 3595 +TI 1771360829.784136513 +CC NStripHits 2 +PE 302.444 +PP 0.628297 0.297291 -3.72655 +PW 0 +SE +ET PH +ID 3596 +TI 1771360829.786126463 +CC NStripHits 2 +PE 127.766 +PP -0.186547 -1.14312 2.6758 +PW 0 +SE +ET CO +ID 3597 +TI 1771360829.786849013 +CC NStripHits 5 +PQ 1.46087 +SQ 2 +CT 0.556872 0.443128 +TL 1 +TE 205.719 +CE 178.894 1.15143 205.719 1.00744 +CD -2.28186 -0.853687 0.813297 0.0336036 0.0204066 0.0336036 -2.04905 -0.439845 0.231266 0.0336036 0.0240386 0.0336036 0 0 0 0 0 0 +LA 0.75115 +SE +ET PH +ID 3598 +TI 1771360829.788222679 +CC NStripHits 2 +PE 189.297 +PP 3.30564 0.0191822 2.32658 +PW 0 +SE +ET PH +ID 3599 +TI 1771360829.789291396 +CC NStripHits 2 +PE 60.0316 +PP 3.88767 0.377222 -4.30858 +PW 0 +SE +ET PH +ID 3600 +TI 1771360829.789863029 +CC NStripHits 2 +PE 81.208 +PP 3.42205 0.197472 1.16252 +PW 0 +SE +ET PH +ID 3601 +TI 1771360829.791477296 +CC NStripHits 2 +PE 42.8483 +PP 0.861109 0.269559 -3.37733 +PW 0 +SE +ET PH +ID 3602 +TI 1771360829.791723179 +CC NStripHits 2 +PE 80.537 +PP 0.744703 0.364727 1.16252 +PW 0 +SE +ET PH +ID 3603 +TI 1771360829.793812646 +CC NStripHits 2 +PE 72.0352 +PP -2.86389 0.370499 0.231266 +PW 0 +SE +ET UN +ID 3604 +TI 1771360829.796006429 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 55.9335 +SE +ET PH +ID 3605 +TI 1771360829.796518546 +CC NStripHits 3 +PE 154.276 +PP 1.55955 0.336453 -0.583578 +PW 0 +SE +ID 3606 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.865854) +BD GR Veto +PQ 0.0840528 +SE +ET PH +ID 3607 +TI 1771360829.797641846 +CC NStripHits 2 +PE 174.749 +PP 1.67595 -0.103927 -4.19217 +PW 0 +SE +ET PH +ID 3608 +TI 1771360829.798687429 +CC NStripHits 2 +PE 130.429 +PP 1.09392 -0.641697 -0.699984 +PW 0 +SE +ID 3609 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 97.043189) +BD GR Veto +PQ 9.05561 +SE +ET CO +ID 3610 +TI 1771360829.801174046 +CC NStripHits 4 +PQ 34.6684 +SQ 2 +CT 0 1 +TL 1 +TE 23.5717 +CE 94.1027 1.38205 23.5717 0.983855 +CD 1.44314 -0.0312989 -0.117953 0.0336036 0.0274297 0.0336036 1.67595 0.20688 -0.00154687 0.0336036 0.0323476 0.0336036 0 0 0 0 0 0 +LA 0.352817 +SE +ET PH +ID 3611 +TI 1771360829.801267280 +CC NStripHits 3 +PE 167.76 +PP -1.2342 0.358185 -3.95936 +PW 0 +SE +ET PH +ID 3612 +TI 1771360829.801444396 +CC NStripHits 3 +PE 155.88 +PP -2.28186 0.166897 -3.02811 +PW 0 +SE +ET PH +ID 3613 +TI 1771360829.801694896 +CC NStripHits 2 +PE 53.3366 +PP 1.90877 0.365326 -0.699984 +PW 0 +SE +ET PH +ID 3614 +TI 1771360829.803048163 +CC NStripHits 2 +PE 161.669 +PP -0.652172 -0.572667 -3.02811 +PW 0 +SE +ET PH +ID 3615 +TI 1771360829.803942713 +CC NStripHits 2 +PE 61.1863 +PP 1.44314 0.165127 0.696891 +PW 0 +SE +ET PH +ID 3616 +TI 1771360829.805087046 +CC NStripHits 2 +PE 173.111 +PP -0.652172 0.166195 1.04611 +PW 0 +SE +ID 3617 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 3618 +TI 1771360829.806934780 +CC NStripHits 2 +PE 23.2843 +PP -2.28186 0.21334 0.929703 +PW 0 +SE +ET PH +ID 3619 +TI 1771360829.807538146 +CC NStripHits 2 +PE 80.8011 +PP 2.02517 0.355376 0.929703 +PW 0 +SE +ET PH +ID 3620 +TI 1771360829.808229446 +CC NStripHits 3 +PE 222.101 +PP -1.69983 -0.208456 -3.61014 +PW 0 +SE +ET UN +ID 3621 +TI 1771360829.808559246 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3622 +TI 1771360829.808842863 +CC NStripHits 2 +PE 80.1003 +PP -1.00139 0.361191 0.114859 +PW 0 +SE +ET PH +ID 3623 +TI 1771360829.809178280 +CC NStripHits 2 +PE 144.777 +PP 3.65486 -0.99432 -4.30858 +PW 0 +SE +ET PH +ID 3624 +TI 1771360829.809729913 +CC NStripHits 3 +PE 113.086 +PP 1.09392 -0.0886207 -2.32967 +PW 0 +SE +ET UN +ID 3625 +TI 1771360829.809894613 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 173.022 +SE +ET PH +ID 3626 +TI 1771360829.811550296 +CC NStripHits 3 +PE 156.511 +PP -2.04905 0.338254 -1.98045 +PW 0 +SE +ET PH +ID 3627 +TI 1771360829.811780813 +CC NStripHits 2 +PE 91.2492 +PP 0.861109 -0.0855234 -2.7953 +PW 0 +SE +ET UN +ID 3628 +TI 1771360829.812270663 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 356.991 +SE +ET PH +ID 3629 +TI 1771360829.813665313 +CC NStripHits 2 +PE 191.934 +PP -1.2342 0.177795 1.27892 +PW 0 +SE +ET PH +ID 3630 +TI 1771360829.814948996 +CC NStripHits 5 +PE 359.449 +PP 2.25798 -0.0422043 1.04611 +PW 0 +SE +ET PH +ID 3631 +TI 1771360829.817528230 +CC NStripHits 2 +PE 64.8694 +PP 3.65486 0.354895 -2.9117 +PW 0 +SE +ID 3632 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 120.265344) +BD GR Veto +PQ 24.2024 +SE +ID 3633 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 201.880485) +BD GR Veto +PQ 0.000428041 +SE +ET PH +ID 3634 +TI 1771360829.822106997 +CC NStripHits 2 +PE 80.8319 +PP 4.00408 0.138121 -1.39842 +PW 0 +SE +ET PH +ID 3635 +TI 1771360829.823746680 +CC NStripHits 2 +PE 52.295 +PP 3.77127 0.375755 -0.816391 +PW 0 +SE +ET PH +ID 3636 +TI 1771360829.823819463 +CC NStripHits 2 +PE 80.6717 +PP 0.395484 -0.104727 -2.7953 +PW 0 +SE +ET UN +ID 3637 +TI 1771360829.824566580 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3638 +TI 1771360829.824827663 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5066 +SE +ET PH +ID 3639 +TI 1771360829.825872997 +CC NStripHits 3 +PE 140.732 +PP -2.51467 -0.875159 -1.51483 +PW 0 +SE +ET PH +ID 3640 +TI 1771360829.830596397 +CC NStripHits 3 +PE 275.843 +PP 4.23689 -0.0609903 -0.816391 +PW 0 +SE +ET PH +ID 3641 +TI 1771360829.830822663 +CC NStripHits 2 +PE 355.703 +PP 0.744703 -0.205068 2.09377 +PW 0 +SE +ID 3642 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.543078) +BD GR Veto +PQ 0.155276 +SE +ID 3643 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 157.905185) +BD GR Veto +PQ 0.0622012 +SE +ET CO +ID 3644 +TI 1771360829.834016613 +CC NStripHits 4 +PQ 24.9739 +SQ 2 +CT 0 1 +TL 1 +TE 48.253 +CE 187.535 1.0046 48.253 1.39787 +CD 2.4908 -0.862892 -2.44608 0.0336036 0.0203358 0.0336036 2.25798 -1.11702 -2.67889 0.0336036 0.0266479 0.0336036 0 0 0 0 0 0 +LA 0.415917 +SE +ID 3645 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.833992) +BD GR Veto +PQ 0.0153844 +SE +ET UN +ID 3646 +TI 1771360829.837449947 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.284 +SE +ET PH +ID 3647 +TI 1771360829.838399347 +CC NStripHits 2 +PE 78.5916 +PP 0.279078 -1.06339 -4.42498 +PW 0 +SE +ET PH +ID 3648 +TI 1771360829.838539980 +CC NStripHits 2 +PE 81.1765 +PP -1.69983 -0.489599 -2.56248 +PW 0 +SE +ET PH +ID 3649 +TI 1771360829.838660080 +CC NStripHits 2 +PE 355.676 +PP 3.42205 -0.737222 -3.26092 +PW 0 +SE +ET PH +ID 3650 +TI 1771360829.839124663 +CC NStripHits 2 +PE 79.915 +PP 2.95642 0.274803 1.62814 +PW 0 +SE +ET UN +ID 3651 +TI 1771360829.839723780 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3652 +TI 1771360829.840450664 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0047 +SE +ET PH +ID 3653 +TI 1771360829.840897047 +CC NStripHits 2 +PE 163.388 +PP 3.18923 0.356023 1.97736 +PW 0 +SE +ET PH +ID 3654 +TI 1771360829.841249314 +CC NStripHits 2 +PE 65.6539 +PP -2.04905 0.224054 1.74455 +PW 0 +SE +ET PH +ID 3655 +TI 1771360829.842380997 +CC NStripHits 5 +PE 161.038 +PP 0.279078 -0.776193 -1.63123 +PW 0 +SE +ET PH +ID 3656 +TI 1771360829.843069747 +CC NStripHits 3 +PE 64.2661 +PP -2.74748 0.214933 -0.117953 +PW 0 +SE +ID 3657 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.201702) +BD GR Veto +PQ 0.0883339 +SE +ID 3658 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.868955) (Strip hit removed with energy 7.959580) +QA StripPairing (GR Hit: Detector ID 0 and Energy 23.253915) +BD GR Veto +PQ 0.338925 +SE +ID 3659 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (35.496917)) (GR Hit: Detector ID 0 and Energy 87.395558) +BD GR Veto +PQ 35.4969 +SE +ET UN +ID 3660 +TI 1771360829.846736164 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.0256 +SE +ET PH +ID 3661 +TI 1771360829.847965314 +CC NStripHits 2 +PE 68.1064 +PP -2.51467 0.318474 -3.26092 +PW 0 +SE +ET UN +ID 3662 +TI 1771360829.848669497 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7466 +SE +ET CO +ID 3663 +TI 1771360829.850322780 +CC NStripHits 5 +PQ 7.03624 +SQ 2 +CT 0 1 +TL 1 +TE 131.875 +CE 144.425 1.89956 131.875 1.01156 +CD -2.16545 -0.683062 1.74455 0.0336036 0.0223594 0.0336036 -1.81623 -0.233808 2.09377 0.0336036 0.0255792 0.0336036 0 0 0 0 0 0 +LA 0.667636 +SE +ET PH +ID 3664 +TI 1771360829.852002897 +CC NStripHits 2 +PE 82.2685 +PP -2.16545 0.373802 -1.86405 +PW 0 +SE +ET UN +ID 3665 +TI 1771360829.852323380 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4702 +SE +ID 3666 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.898627) +BD GR Veto +PQ 0.0162489 +SE +ET CO +ID 3667 +TI 1771360829.855354380 +CC NStripHits 5 +PQ 26.9379 +SQ 2 +CT 0 1 +TL 1 +TE 138.189 +CE 196.33 1.40066 138.189 1.18176 +CD 1.32673 -0.321389 0.696891 0.0336036 0.0250354 0.0336036 -0.0701406 -0.527971 2.44298 0.0336036 0.0232598 0.0336036 0 0 0 0 0 0 +LA 2.24561 +SE +ET UN +ID 3668 +TI 1771360829.856322964 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 187.501 +SE +ET PH +ID 3669 +TI 1771360829.857209114 +CC NStripHits 2 +PE 60.6443 +PP 3.77127 0.298125 1.62814 +PW 0 +SE +ET PH +ID 3670 +TI 1771360829.858108497 +CC NStripHits 2 +PE 80.2234 +PP 0.395484 0.141389 1.39533 +PW 0 +SE +ET PH +ID 3671 +TI 1771360829.858928697 +CC NStripHits 3 +PE 79.9671 +PP -1.2342 -1.1441 -0.234359 +PW 0 +SE +ET UN +ID 3672 +TI 1771360829.860763797 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.625 +SE +ET UN +ID 3673 +TI 1771360829.861675414 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3674 +TI 1771360829.861836381 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8951 +SE +ET PH +ID 3675 +TI 1771360829.862768597 +CC NStripHits 3 +PE 204.915 +PP -2.16545 -0.387564 -4.54139 +PW 0 +SE +ET CO +ID 3676 +TI 1771360829.863640864 +CC NStripHits 6 +PQ 0.292514 +SQ 3 +CT 0.00177364 0.0170938 +TL 1 +TE 126.188 +CE 226.892 1.46268 126.188 1.11149 +CD 0.628297 -0.852055 -1.51483 0.0336036 0.0204176 0.0336036 0.279078 -1.02605 -0.350766 0.0336036 0.0196128 0.0336036 0 0 0 0 0 0 +LA 0.68012 +SE +ET UN +ID 3677 +TI 1771360829.865464797 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 353.491 +SE +ET PH +ID 3678 +TI 1771360829.867169947 +CC NStripHits 2 +PE 245.735 +PP 0.0462656 -0.453541 1.51173 +PW 0 +SE +ET PH +ID 3679 +TI 1771360829.870090981 +CC NStripHits 2 +PE 31.0687 +PP -0.768578 0.232458 1.16252 +PW 0 +SE +ET PH +ID 3680 +TI 1771360829.870563114 +CC NStripHits 2 +PE 144.972 +PP 4.00408 0.296125 -3.26092 +PW 0 +SE +ET UN +ID 3681 +TI 1771360829.871136331 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.9322 +SE +ET UN +ID 3682 +TI 1771360829.872053831 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 123.085 +SE +ET CO +ID 3683 +TI 1771360829.873222097 +CC NStripHits 4 +PQ 0.929882 +SQ 2 +CT 0 1 +TL 1 +TE 27.9692 +CE 78.3246 0.977685 27.9692 0.977828 +CD -1.69983 0.369964 -3.72655 0.0336036 0.0227344 0.0336036 -1.00139 0.315144 -3.37733 0.0336036 0.0413403 0.0336036 0 0 0 0 0 0 +LA 0.782802 +SE +ET UN +ID 3684 +TI 1771360829.873318097 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 426.644 +SE +ID 3685 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 131.829706) +BD GR Veto +PQ 0.00330022 +SE +ET UN +ID 3686 +TI 1771360829.873828614 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3687 +TI 1771360829.875985764 +CC NStripHits 2 +PE 78.4365 +PP -1.81623 0.348761 -3.37733 +PW 0 +SE +ET UN +ID 3688 +TI 1771360829.876998131 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 103.261 +SE +ET PH +ID 3689 +TI 1771360829.878353397 +CC NStripHits 3 +PE 184.191 +PP -2.28186 -0.416098 2.21017 +PW 0 +SE +ET UN +ID 3690 +TI 1771360829.880272064 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 66.7072 +SE +ET PH +ID 3691 +TI 1771360829.880631364 +CC NStripHits 2 +PE 80.0854 +PP 3.77127 0.371742 1.86095 +PW 0 +SE +ET PH +ID 3692 +TI 1771360829.881100464 +CC NStripHits 2 +PE 86.1161 +PP -2.28186 -1.13454 -2.21327 +PW 0 +SE +ET PH +ID 3693 +TI 1771360829.881470048 +CC NStripHits 2 +PE 79.9603 +PP 0.744703 0.0123364 0.696891 +PW 0 +SE +ID 3694 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.403669) (Strip hit removed with energy 14.764243) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 36.446008)) (GR Hit: Detector ID 0 and Energy 160.252747) +BD GR Veto +PQ 7.58556 +SE +ID 3695 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 3696 +TI 1771360829.883769481 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 8 +PE 344.292 +SE +ID 3697 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.060526) +BD GR Veto +PQ +SE +ID 3698 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.445359) +BD GR Veto +PQ +SE +ET UN +ID 3699 +TI 1771360829.885920598 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3700 +TI 1771360829.886984664 +CC NStripHits 3 +PE 81.4147 +PP 3.53845 0.178203 -2.7953 +PW 0 +SE +ET PH +ID 3701 +TI 1771360829.888300264 +CC NStripHits 2 +PE 70.1848 +PP 2.6072 0.338668 -2.44608 +PW 0 +SE +ET UN +ID 3702 +TI 1771360829.891254564 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 169.182 +SE +ET PH +ID 3703 +TI 1771360829.891744914 +CC NStripHits 2 +PE 120.831 +PP 4.12048 0.0299162 -2.32967 +PW 0 +SE +ET PH +ID 3704 +TI 1771360829.892150798 +CC NStripHits 2 +PE 82.2359 +PP 4.23689 0.362818 -0.234359 +PW 0 +SE +ET PH +ID 3705 +TI 1771360829.892726664 +CC NStripHits 2 +PE 59.8009 +PP 3.53845 0.337711 -1.28202 +PW 0 +SE +ID 3706 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.938531) (Strip hit removed with energy 10.729861) (Strip hit removed with energy 11.572864) (Strip hit removed with energy 13.057852) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 21.583803)) (GR Hit: Detector ID 0 and Energy 2008.377728) +BD GR Veto +PQ 0.688171 +SE +ET PH +ID 3707 +TI 1771360829.895569714 +CC NStripHits 2 +PE 31.3216 +PP 0.511891 0.0182966 2.21017 +PW 0 +SE +ID 3708 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 3709 +TI 1771360829.898896498 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 164.115 +SE +ET UN +ID 3710 +TI 1771360829.899489281 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3711 +TI 1771360829.900887265 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3712 +TI 1771360829.902448098 +CC NStripHits 2 +PE 71.7426 +PP 2.37439 0.234438 -4.42498 +PW 0 +SE +ET CO +ID 3713 +TI 1771360829.903237748 +CC NStripHits 7 +PQ 57.3568 +SQ 2 +CT 0 1 +TL 1 +TE 50.4847 +CE 1048.47 2.57399 50.4847 1.4172 +CD -1.93264 -0.705152 2.32658 0.0336036 0.0221923 0.0336036 -2.16545 0.149106 1.62814 0.0336036 0.0300234 0.0336036 0 0 0 0 0 0 +LA 1.12773 +SE +ET PH +ID 3714 +TI 1771360829.903723131 +CC NStripHits 2 +PE 81.408 +PP 0.279078 0.268437 -1.98045 +PW 0 +SE +ET UN +ID 3715 +TI 1771360829.903998065 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 53.6476 +SE +ID 3716 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.395626) (GR Hit: Detector ID 0 and Energy 39.265815) +BD GR Veto +PQ 2.34861 +SE +ET PH +ID 3717 +TI 1771360829.905710048 +CC NStripHits 2 +PE 29.904 +PP 2.02517 0.37636 2.55939 +PW 0 +SE +ET PH +ID 3718 +TI 1771360829.905900881 +CC NStripHits 2 +PE 78.9313 +PP 3.42205 0.0495668 -3.26092 +PW 0 +SE +ET UN +ID 3719 +TI 1771360829.906641548 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7176 +SE +ID 3720 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.448244) (Strip hit removed with energy 6.770136) +QA StripPairing (GR Hit: Detector ID 0 and Energy 261.316392) +BD GR Veto +PQ 10.2107 +SE +ID 3721 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.033751) +BD GR Veto +PQ 0.411123 +SE +ET PH +ID 3722 +TI 1771360829.909810381 +CC NStripHits 2 +PE 144.121 +PP 2.6072 -0.276783 -2.56248 +PW 0 +SE +ET PH +ID 3723 +TI 1771360829.910116631 +CC NStripHits 2 +PE 136.195 +PP 3.07283 -0.299228 -4.54139 +PW 0 +SE +ET CO +ID 3724 +TI 1771360829.910529248 +CC NStripHits 6 +PQ 1.64219 +SQ 2 +CT 0 1 +TL 1 +TE 61.0042 +CE 131.972 1.43795 61.0042 1.02376 +CD 2.02517 0.0117246 -1.51483 0.0336036 0.0277478 0.0336036 4.00408 -0.281979 -1.39842 0.0336036 0.0252962 0.0336036 0 0 0 0 0 0 +LA 2.00397 +SE +ET PH +ID 3725 +TI 1771360829.911033598 +CC NStripHits 2 +PE 81.928 +PP 2.25798 0.376902 1.27892 +PW 0 +SE +ET CO +ID 3726 +TI 1771360829.911349065 +CC NStripHits 6 +PQ 0.22013 +SQ 2 +CT 0 1 +TL 1 +TE 77.4552 +CE 220.491 1.46687 77.4552 1.11251 +CD -2.9803 -0.628262 0.347672 0.0336036 0.022661 0.0336036 -2.86389 -0.333529 -0.467172 0.0336036 0.0249672 0.0336036 0 0 0 0 0 0 +LA 0.874294 +SE +ET PH +ID 3727 +TI 1771360829.912398765 +CC NStripHits 2 +PE 112.984 +PP 2.4908 -0.930052 -0.00154687 +PW 0 +SE +ET PH +ID 3728 +TI 1771360829.913930165 +CC NStripHits 2 +PE 154.662 +PP -0.535766 0.268516 -3.26092 +PW 0 +SE +ET PH +ID 3729 +TI 1771360829.914824548 +CC NStripHits 2 +PE 82.0823 +PP 3.53845 -0.216997 -2.21327 +PW 0 +SE +ET PH +ID 3730 +TI 1771360829.915364848 +CC NStripHits 2 +PE 30.3321 +PP -0.652172 0.0948754 0.114859 +PW 0 +SE +ET UN +ID 3731 +TI 1771360829.915761248 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 50.4981 +SE +ID 3732 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.974005) +BD GR Veto +PQ 1.06337 +SE +ET UN +ID 3733 +TI 1771360829.921101915 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3734 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.364395) +BD GR Veto +PQ 0.0210392 +SE +ET PH +ID 3735 +TI 1771360829.921276882 +CC NStripHits 2 +PE 149.754 +PP -1.1178 0.282944 -0.816391 +PW 0 +SE +ET UN +ID 3736 +TI 1771360829.921343115 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.3931 +SE +ET UN +ID 3737 +TI 1771360829.921767915 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3738 +TI 1771360829.922064965 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3739 +TI 1771360829.923186065 +CC NStripHits 2 +PE 81.5024 +PP -1.1178 0.201917 -0.699984 +PW 0 +SE +ET PH +ID 3740 +TI 1771360829.923865032 +CC NStripHits 3 +PE 157.309 +PP -2.86389 0.313224 -0.816391 +PW 0 +SE +ET PH +ID 3741 +TI 1771360829.924643165 +CC NStripHits 2 +PE 87.7488 +PP 0.279078 -1.06171 -3.49373 +PW 0 +SE +ET UN +ID 3742 +TI 1771360829.928949382 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0268 +SE +ET UN +ID 3743 +TI 1771360829.932422565 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3744 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 272.184442) +BD GR Veto +PQ 0.552026 +SE +ID 3745 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.463414) +BD GR Veto +PQ 0.0111944 +SE +ET PH +ID 3746 +TI 1771360829.936564448 +CC NStripHits 2 +PE 31.221 +PP 1.55955 0.324742 -3.84295 +PW 0 +SE +ET CO +ID 3747 +TI 1771360829.937299182 +CC NStripHits 5 +PQ 0.363101 +SQ 2 +CT 0 1 +TL 1 +TE 35.4771 +CE 172.988 1.32205 35.4771 1.11267 +CD 0.744703 -0.359838 -1.16561 0.0336036 0.0247664 0.0336036 0.628297 -0.736347 -0.467172 0.0336036 0.0218428 0.0336036 0 0 0 0 0 0 +LA 0.801951 +SE +ET PH +ID 3748 +TI 1771360829.937541232 +CC NStripHits 2 +PE 68.0241 +PP -0.535766 0.0887103 -4.54139 +PW 0 +SE +ET UN +ID 3749 +TI 1771360829.938794082 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 52.0692 +SE +ET PH +ID 3750 +TI 1771360829.941319382 +CC NStripHits 2 +PE 57.0781 +PP 2.25798 0.0713446 -2.67889 +PW 0 +SE +ET PH +ID 3751 +TI 1771360829.941960549 +CC NStripHits 2 +PE 71.2238 +PP 3.07283 0.288405 -3.72655 +PW 0 +SE +ET PH +ID 3752 +TI 1771360829.942935782 +CC NStripHits 3 +PE 134.673 +PP 0.744703 -0.744316 -0.350766 +PW 0 +SE +ET UN +ID 3753 +TI 1771360829.943518665 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3754 +TI 1771360829.944436232 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.9129 +SE +ET PH +ID 3755 +TI 1771360829.945318615 +CC NStripHits 2 +PE 30.6842 +PP -0.302953 -0.127845 1.86095 +PW 0 +SE +ET UN +ID 3756 +TI 1771360829.946921582 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 196.945 +SE +ET UN +ID 3757 +TI 1771360829.947199549 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.3747 +SE +ET PH +ID 3758 +TI 1771360829.947736499 +CC NStripHits 2 +PE 116.313 +PP 2.02517 0.243781 -2.09686 +PW 0 +SE +ET UN +ID 3759 +TI 1771360829.948651299 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.4792 +SE +ET PH +ID 3760 +TI 1771360829.950559515 +CC NStripHits 2 +PE 69.4112 +PP -1.46702 0.198867 -2.32967 +PW 0 +SE +ET PH +ID 3761 +TI 1771360829.951763032 +CC NStripHits 2 +PE 247.476 +PP -0.302953 -0.483063 -0.816391 +PW 0 +SE +ET UN +ID 3762 +TI 1771360829.952616365 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3763 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.387425) +BD GR Veto +PQ 0.808334 +SE +ET PH +ID 3764 +TI 1771360829.956378665 +CC NStripHits 2 +PE 88.5848 +PP 3.77127 0.108437 0.580484 +PW 0 +SE +ET PH +ID 3765 +TI 1771360829.956750649 +CC NStripHits 2 +PE 80.354 +PP 1.09392 0.376481 -3.61014 +PW 0 +SE +ET PH +ID 3766 +TI 1771360829.957366615 +CC NStripHits 2 +PE 69.3172 +PP -0.186547 0.33102 -3.37733 +PW 0 +SE +ET PH +ID 3767 +TI 1771360829.958740432 +CC NStripHits 2 +PE 81.3204 +PP -0.884984 0.363163 -4.07577 +PW 0 +SE +ET PH +ID 3768 +TI 1771360829.958896132 +CC NStripHits 2 +PE 80.4518 +PP 1.67595 0.3617 1.86095 +PW 0 +SE +ET PH +ID 3769 +TI 1771360829.960576699 +CC NStripHits 2 +PE 133.295 +PP -2.28186 0.0347589 0.464078 +PW 0 +SE +ET UN +ID 3770 +TI 1771360829.961420066 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 348.183 +SE +ET PH +ID 3771 +TI 1771360829.963369032 +CC NStripHits 2 +PE 79.3642 +PP 0.0462656 0.310493 -2.7953 +PW 0 +SE +ID 3772 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.993674) +BD GR Veto +PQ +SE +ET UN +ID 3773 +TI 1771360829.966296282 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 135.146 +SE +ET PH +ID 3774 +TI 1771360829.966807816 +CC NStripHits 4 +PE 1385.46 +PP -2.04905 -0.287629 -2.7953 +PW 0 +SE +ET PH +ID 3775 +TI 1771360829.967736899 +CC NStripHits 2 +PE 80.5507 +PP -2.86389 0.130393 0.580484 +PW 0 +SE +ID 3776 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 3777 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.847387) +BD GR Veto +PQ 0.667969 +SE +ID 3778 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 115.412724) +BD GR Veto +PQ 20.9284 +SE +ET UN +ID 3779 +TI 1771360829.970544299 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.3921 +SE +ET PH +ID 3780 +TI 1771360829.970831999 +CC NStripHits 3 +PE 238.698 +PP 2.02517 -0.184915 -0.117953 +PW 0 +SE +ET PH +ID 3781 +TI 1771360829.971142582 +CC NStripHits 3 +PE 497.154 +PP 3.30564 -0.0640855 -2.56248 +PW 0 +SE +ID 3782 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 164.750603) +BD GR Veto +PQ 1.10049 +SE +ET PH +ID 3783 +TI 1771360829.973571049 +CC NStripHits 3 +PE 186.786 +PP 2.72361 -0.870839 1.51173 +PW 0 +SE +ID 3784 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.978060) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 94.165170) +BD GR Veto +PQ 1.81465 +SE +ID 3785 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.278970) +BD GR Veto +PQ 0.0191295 +SE +ET PH +ID 3786 +TI 1771360829.974916549 +CC NStripHits 2 +PE 82.3129 +PP 2.14158 -0.240529 -4.30858 +PW 0 +SE +ID 3787 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 101.374232) +BD GR Veto +PQ 0.453953 +SE +ET PH +ID 3788 +TI 1771360829.980247533 +CC NStripHits 3 +PE 382.47 +PP 2.37439 -0.192471 -2.32967 +PW 0 +SE +ID 3789 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (96.332489)) (GR Hit: Detector ID 0 and Energy 114.377707) +BD GR Veto +PQ 96.3325 +SE +ID 3790 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 3791 +TI 1771360829.983797816 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 354.24 +SE +ET PH +ID 3792 +TI 1771360829.985485549 +CC NStripHits 2 +PE 80.2076 +PP -0.652172 0.326478 0.929703 +PW 0 +SE +ET PH +ID 3793 +TI 1771360829.985801983 +CC NStripHits 2 +PE 31.508 +PP 2.84002 -0.0654085 1.97736 +PW 0 +SE +ET UN +ID 3794 +TI 1771360829.986676066 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 353.724 +SE +ET PH +ID 3795 +TI 1771360829.987026266 +CC NStripHits 2 +PE 82.0127 +PP 1.79236 0.354095 1.74455 +PW 0 +SE +ET PH +ID 3796 +TI 1771360829.987627883 +CC NStripHits 2 +PE 93.0976 +PP 0.511891 0.177159 0.231266 +PW 0 +SE +ET PH +ID 3797 +TI 1771360829.988269233 +CC NStripHits 2 +PE 104.142 +PP 2.02517 0.229731 0.464078 +PW 0 +SE +ET UN +ID 3798 +TI 1771360829.989428049 +BD DepthCalibrationError (No calibration coefficients) +CC NStripHits 6 +PE 38.7124 +SE +ET PH +ID 3799 +TI 1771360829.989546533 +CC NStripHits 3 +PE 212.668 +PP 2.95642 0.323844 -1.98045 +PW 0 +SE +ET UN +ID 3800 +TI 1771360829.989717883 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.0675 +SE +ET PH +ID 3801 +TI 1771360829.990545633 +CC NStripHits 2 +PE 292.696 +PP -1.93264 -0.191302 2.44298 +PW 0 +SE +ET UN +ID 3802 +TI 1771360829.991537499 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.8395 +SE +ET UN +ID 3803 +TI 1771360829.992671349 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.1804 +SE +ET PH +ID 3804 +TI 1771360829.994222983 +CC NStripHits 3 +PE 355.728 +PP -1.00139 0.358373 -3.02811 +PW 0 +SE +ET PH +ID 3805 +TI 1771360829.994513633 +CC NStripHits 2 +PE 78.9345 +PP -0.186547 0.187939 -1.74764 +PW 0 +SE +ET UN +ID 3806 +TI 1771360829.995453899 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 298.715 +SE +ID 3807 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (51.241198)) (GR Hit: Detector ID 0 and Energy 130.078583) +BD GR Veto +PQ 51.2412 +SE +ET UN +ID 3808 +TI 1771360829.996046399 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.9008 +SE +ID 3809 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (175.747531)) (GR Hit: Detector ID 0 and Energy 152.978667) +BD GR Veto +PQ 175.748 +SE +ET PH +ID 3810 +TI 1771360829.999769983 +CC NStripHits 2 +PE 79.0977 +PP 0.744703 0.372711 -3.02811 +PW 0 +SE +ID 3811 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.624885) +BD GR Veto +PQ 2.04183 +SE +ID 3812 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.740977) +BD GR Veto +PQ 0.183822 +SE +ID 3813 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.343430) +BD GR Veto +PQ 0.14957 +SE +ID 3814 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.481562) +BD GR Veto +PQ 0.12931 +SE +ET PH +ID 3815 +TI 1771360830.005523350 +CC NStripHits 2 +PE 58.7774 +PP -0.186547 -1.12499 1.27892 +PW 0 +SE +ET CO +ID 3816 +TI 1771360830.009330316 +CC NStripHits 5 +PQ 0.131128 +SQ 2 +CT 0 1 +TL 1 +TE 100.761 +CE 151.185 1.17623 100.761 1.00474 +CD -1.58342 -0.4966 2.55939 0.0336036 0.0234794 0.0336036 -1.2342 -0.34247 -2.21327 0.0336036 0.0249096 0.0336036 0 0 0 0 0 0 +LA 4.7879 +SE +ET PH +ID 3817 +TI 1771360830.011204216 +CC NStripHits 2 +PE 77.7853 +PP -2.51467 0.122121 1.39533 +PW 0 +SE +ET PH +ID 3818 +TI 1771360830.012058383 +CC NStripHits 4 +PE 178.819 +PP -2.74748 -0.955062 -1.39842 +PW 0 +SE +ET PH +ID 3819 +TI 1771360830.013203750 +CC NStripHits 2 +PE 128.454 +PP 3.53845 -0.662186 -0.350766 +PW 0 +SE +ET PH +ID 3820 +TI 1771360830.013392266 +CC NStripHits 2 +PE 81.7687 +PP 0.395484 0.337147 -4.19217 +PW 0 +SE +ET PH +ID 3821 +TI 1771360830.013476866 +CC NStripHits 2 +PE 143.994 +PP 1.67595 -0.239589 -1.16561 +PW 0 +SE +ET UN +ID 3822 +TI 1771360830.013635383 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.5278 +SE +ET PH +ID 3823 +TI 1771360830.014070600 +CC NStripHits 2 +PE 60.4234 +PP -0.768578 -0.258351 -2.67889 +PW 0 +SE +ET UN +ID 3824 +TI 1771360830.014263916 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8483 +SE +ET PH +ID 3825 +TI 1771360830.014709300 +CC NStripHits 2 +PE 83.3595 +PP 4.23689 0.361054 -1.74764 +PW 0 +SE +ET UN +ID 3826 +TI 1771360830.017070500 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3827 +TI 1771360830.018212366 +CC NStripHits 2 +PE 182.01 +PP 2.95642 -0.281097 2.6758 +PW 0 +SE +ET UN +ID 3828 +TI 1771360830.019079983 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 104.678 +SE +ET UN +ID 3829 +TI 1771360830.019728366 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 357.793 +SE +ID 3830 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 40.699670)) (GR Hit: Detector ID 0 and Energy 121.719355) +BD GR Veto +PQ 21.2642 +SE +ET UN +ID 3831 +TI 1771360830.020345750 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.389 +SE +ET PH +ID 3832 +TI 1771360830.021172850 +CC NStripHits 2 +PE 80.6477 +PP 2.6072 0.182946 2.21017 +PW 0 +SE +ET PH +ID 3833 +TI 1771360830.022691500 +CC NStripHits 3 +PE 178.357 +PP 2.6072 0.267441 1.74455 +PW 0 +SE +ID 3834 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 3835 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ET UN +ID 3836 +TI 1771360830.027199083 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8843 +SE +ET UN +ID 3837 +TI 1771360830.027924867 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 3838 +TI 1771360830.028310017 +CC NStripHits 4 +PQ 2.04451 +SQ 2 +CT 0 1 +TL 1 +TE 27.7093 +CE 103.503 0.986286 27.7093 1.15059 +CD -1.1178 -0.833417 -4.6578 0.0336036 0.0205451 0.0336036 -0.768578 -0.633497 -4.30858 0.0336036 0.022633 0.0336036 0 0 0 0 0 0 +LA 0.532803 +SE +ET UN +ID 3839 +TI 1771360830.030235417 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.5944 +SE +ET PH +ID 3840 +TI 1771360830.032275717 +CC NStripHits 2 +PE 76.8477 +PP 0.511891 -0.656797 -0.699984 +PW 0 +SE +ET PH +ID 3841 +TI 1771360830.033079600 +CC NStripHits 2 +PE 80.9437 +PP -1.69983 0.0592729 1.74455 +PW 0 +SE +ID 3842 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 176.451306) +BD GR Veto +PQ 1.54071 +SE +ET PH +ID 3843 +TI 1771360830.036249133 +CC NStripHits 2 +PE 67.8844 +PP 3.30564 -0.079537 -3.49373 +PW 0 +SE +ET UN +ID 3844 +TI 1771360830.036396383 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.856 +SE +ET PH +ID 3845 +TI 1771360830.038730583 +CC NStripHits 2 +PE 89.4696 +PP 3.65486 0.363317 -3.61014 +PW 0 +SE +ET UN +ID 3846 +TI 1771360830.039013300 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1612 +SE +ET PH +ID 3847 +TI 1771360830.040618117 +CC NStripHits 3 +PE 235.606 +PP -1.69983 -0.447235 -4.42498 +PW 0 +SE +ET PH +ID 3848 +TI 1771360830.042556567 +CC NStripHits 2 +PE 72.7928 +PP 0.395484 0.151862 2.55939 +PW 0 +SE +ET UN +ID 3849 +TI 1771360830.043740434 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3850 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.954500) +BD GR Veto +PQ 0.0811423 +SE +ET UN +ID 3851 +TI 1771360830.045513534 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.2358 +SE +ET PH +ID 3852 +TI 1771360830.045867134 +CC NStripHits 3 +PE 85.7432 +PP 1.90877 0.20791 -2.56248 +PW 0 +SE +ET UN +ID 3853 +TI 1771360830.046262800 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3854 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.455270) +BD GR Veto +PQ 0.601294 +SE +ET PH +ID 3855 +TI 1771360830.049146650 +CC NStripHits 2 +PE 81.3848 +PP -2.51467 0.320041 -0.234359 +PW 0 +SE +ET PH +ID 3856 +TI 1771360830.050634467 +CC NStripHits 2 +PE 165.356 +PP -2.74748 -0.260691 -2.67889 +PW 0 +SE +ID 3857 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (31.782671)) (GR Hit: Detector ID 0 and Energy 174.246297) +BD GR Veto +PQ 31.7827 +SE +ET UN +ID 3858 +TI 1771360830.051498884 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7993 +SE +ET UN +ID 3859 +TI 1771360830.057555867 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1447 +SE +ET PH +ID 3860 +TI 1771360830.057937450 +CC NStripHits 2 +PE 29.2587 +PP -0.535766 -0.184629 0.696891 +PW 0 +SE +ET UN +ID 3861 +TI 1771360830.058789950 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 209.358 +SE +ET PH +ID 3862 +TI 1771360830.060431317 +CC NStripHits 2 +PE 95.8682 +PP 3.18923 0.251398 2.44298 +PW 0 +SE +ET PH +ID 3863 +TI 1771360830.061529334 +CC NStripHits 2 +PE 205.661 +PP -2.63108 -0.992514 -2.9117 +PW 0 +SE +ET PH +ID 3864 +TI 1771360830.062526017 +CC NStripHits 2 +PE 30.038 +PP -2.16545 -0.816631 1.39533 +PW 0 +SE +ID 3865 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.860205) +BD GR Veto +PQ 0.441188 +SE +ET PH +ID 3866 +TI 1771360830.065284584 +CC NStripHits 3 +PE 65.9397 +PP -0.0701406 0.367587 -4.42498 +PW 0 +SE +ET PH +ID 3867 +TI 1771360830.066909851 +CC NStripHits 2 +PE 82.6196 +PP 4.00408 0.166041 -1.51483 +PW 0 +SE +ET PH +ID 3868 +TI 1771360830.068965701 +CC NStripHits 2 +PE 126.206 +PP -0.884984 -0.740009 2.44298 +PW 0 +SE +ID 3869 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.647454) +BD GR Veto +PQ 0.0770783 +SE +ID 3870 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.502019) +BD GR Veto +PQ 0.0591945 +SE +ET PH +ID 3871 +TI 1771360830.074690534 +CC NStripHits 2 +PE 80.0429 +PP 1.44314 0.282984 -4.19217 +PW 0 +SE +ET UN +ID 3872 +TI 1771360830.076393901 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1852 +SE +ET UN +ID 3873 +TI 1771360830.078370001 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3874 +TI 1771360830.078764317 +CC NStripHits 2 +PE 81.4821 +PP 1.55955 0.377639 -3.95936 +PW 0 +SE +ET PH +ID 3875 +TI 1771360830.078953817 +CC NStripHits 2 +PE 78.4743 +PP -0.186547 -0.145158 -4.30858 +PW 0 +SE +ET PH +ID 3876 +TI 1771360830.080968218 +CC NStripHits 2 +PE 79.3935 +PP 1.32673 0.0704706 2.55939 +PW 0 +SE +ET UN +ID 3877 +TI 1771360830.081213634 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ID 3878 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 3879 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET UN +ID 3880 +TI 1771360830.084021301 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.3883 +SE +ID 3881 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.752938) +BD GR Veto +PQ +SE +ET UN +ID 3882 +TI 1771360830.084947418 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET PH +ID 3883 +TI 1771360830.085544301 +CC NStripHits 2 +PE 81.6112 +PP -1.46702 0.0671798 -0.117953 +PW 0 +SE +ET UN +ID 3884 +TI 1771360830.088390518 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 72.2789 +SE +ET UN +ID 3885 +TI 1771360830.089396834 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.02 +SE +ET PH +ID 3886 +TI 1771360830.089508501 +CC NStripHits 2 +PE 80.7134 +PP 2.14158 0.260989 1.51173 +PW 0 +SE +ET PH +ID 3887 +TI 1771360830.090981534 +CC NStripHits 3 +PE 94.3279 +PP 2.14158 0.235816 0.464078 +PW 0 +SE +ID 3888 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET PH +ID 3889 +TI 1771360830.093989001 +CC NStripHits 2 +PE 160.638 +PP 0.279078 -1.16811 1.97736 +PW 0 +SE +ET UN +ID 3890 +TI 1771360830.095375418 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 200.813 +SE +ET PH +ID 3891 +TI 1771360830.095616401 +CC NStripHits 3 +PE 333.456 +PP 2.02517 -0.298176 2.09377 +PW 0 +SE +ET UN +ID 3892 +TI 1771360830.095906801 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.2743 +SE +ET PH +ID 3893 +TI 1771360830.096157851 +CC NStripHits 2 +PE 76.6011 +PP 4.00408 0.372178 2.21017 +PW 0 +SE +ET PH +ID 3894 +TI 1771360830.096351034 +CC NStripHits 2 +PE 49.0922 +PP -0.186547 -0.942723 -3.95936 +PW 0 +SE +ET PH +ID 3895 +TI 1771360830.096626968 +CC NStripHits 2 +PE 80.0144 +PP 3.77127 0.375087 -2.9117 +PW 0 +SE +ET UN +ID 3896 +TI 1771360830.097573184 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.0002 +SE +ET UN +ID 3897 +TI 1771360830.098197034 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 52.5108 +SE +ET PH +ID 3898 +TI 1771360830.098613651 +CC NStripHits 2 +PE 34.344 +PP -1.93264 -0.021024 -1.74764 +PW 0 +SE +ID 3899 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.765752) +BD GR Veto +PQ 0.15151 +SE +ID 3900 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 94.074946) +BD GR Veto +PQ 0.141748 +SE +ET UN +ID 3901 +TI 1771360830.100348768 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 3902 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 36.488372)) (GR Hit: Detector ID 0 and Energy 63.524227) +BD GR Veto +PQ 23.4651 +SE +ET CO +ID 3903 +TI 1771360830.102230468 +CC NStripHits 4 +PQ 1.48341 +SQ 2 +CT 0 1 +TL 1 +TE 64.8738 +CE 289.757 1.02359 64.8738 1.04182 +CD 3.65486 0.379521 -3.02811 0.0336036 0.0160482 0.0336036 3.18923 -0.906723 -4.30858 0.0336036 0.0199292 0.0336036 0 0 0 0 0 0 +LA 1.87372 +SE +ID 3904 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.622815) +BD GR Veto +PQ 1.06385 +SE +ET CO +ID 3905 +TI 1771360830.104017635 +CC NStripHits 5 +PQ 20.3241 +SQ 2 +CT 0 1 +TL 1 +TE 97.8004 +CE 161.218 1.22687 97.8004 1.46487 +CD 1.44314 -0.0871065 -1.39842 0.0336036 0.0269022 0.0336036 0.861109 -0.573857 -1.98045 0.0336036 0.0229429 0.0336036 0 0 0 0 0 0 +LA 0.956266 +SE +ET PH +ID 3906 +TI 1771360830.104882518 +CC NStripHits 2 +PE 59.5079 +PP -0.768578 0.341342 0.929703 +PW 0 +SE +ID 3907 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 192.044502) +BD GR Veto +PQ 0.350081 +SE +ID 3908 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (37.021297)) (GR Hit: Detector ID 0 and Energy 123.372801) +BD GR Veto +PQ 37.0213 +SE +ET UN +ID 3909 +TI 1771360830.106556151 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 53.0379 +SE +ID 3910 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 3911 +TI 1771360830.107632701 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.0877 +SE +ET PH +ID 3912 +TI 1771360830.107701135 +CC NStripHits 2 +PE 81.5697 +PP 2.72361 0.122064 1.86095 +PW 0 +SE +ET PH +ID 3913 +TI 1771360830.109516401 +CC NStripHits 2 +PE 247.457 +PP 2.6072 -0.0848432 0.696891 +PW 0 +SE +ET UN +ID 3914 +TI 1771360830.109819235 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 100.281 +SE +ET PH +ID 3915 +TI 1771360830.111956251 +CC NStripHits 2 +PE 189.129 +PP -2.39827 0.0882369 -4.42498 +PW 0 +SE +ID 3916 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 24.944789)) (GR Hit: Detector ID 0 and Energy 62.065851) +BD GR Veto +PQ 4.66977 +SE +ET PH +ID 3917 +TI 1771360830.112685401 +CC NStripHits 2 +PE 79.1182 +PP 3.18923 -0.586669 -3.14452 +PW 0 +SE +ET UN +ID 3918 +TI 1771360830.116513151 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3919 +TI 1771360830.116642501 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.3999 +SE +ET PH +ID 3920 +TI 1771360830.117042485 +CC NStripHits 2 +PE 178.298 +PP -0.535766 0.0582381 -4.42498 +PW 0 +SE +ID 3921 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.715265) +BD GR Veto +PQ 0.201102 +SE +ET CO +ID 3922 +TI 1771360830.120912852 +CC NStripHits 7 +PQ 0.520129 +SQ 3 +CT 0.00478319 0.11277 +TL 1 +TE 181.073 +CE 174.221 1.42976 181.073 1.1723 +CD -2.51467 0.202112 -2.56248 0.0336036 0.0320754 0.0336036 -1.58342 -0.41655 -1.74764 0.0336036 0.0242374 0.0336036 0 0 0 0 0 0 +LA 0.657884 +SE +ET PH +ID 3923 +TI 1771360830.121500335 +CC NStripHits 2 +PE 81.8301 +PP 0.395484 -0.243684 0.347672 +PW 0 +SE +ET CO +ID 3924 +TI 1771360830.122831185 +CC NStripHits 5 +PQ 44.1799 +SQ 2 +CT 0 1 +TL 1 +TE 57.9143 +CE 138.222 1.42306 57.9143 1.13063 +CD -2.51467 0.31584 -0.234359 0.0336036 0.0412801 0.0336036 -2.86389 -0.436563 0.813297 0.0336036 0.024066 0.0336036 0 0 0 0 0 0 +LA 1.33628 +SE +ET PH +ID 3925 +TI 1771360830.123598218 +CC NStripHits 2 +PE 80.5016 +PP 0.279078 -0.194709 -1.28202 +PW 0 +SE +ET UN +ID 3926 +TI 1771360830.123925118 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1191 +SE +ET UN +ID 3927 +TI 1771360830.124329085 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0971 +SE +ET UN +ID 3928 +TI 1771360830.126669985 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 41.2672 +SE +ET PH +ID 3929 +TI 1771360830.127543302 +CC NStripHits 2 +PE 82.8335 +PP 0.0462656 0.366158 -2.56248 +PW 0 +SE +ID 3930 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET UN +ID 3931 +TI 1771360830.129501435 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 175.18 +SE +ET PH +ID 3932 +TI 1771360830.130486752 +CC NStripHits 2 +PE 71.7548 +PP -2.86389 0.367697 0.929703 +PW 0 +SE +ET PH +ID 3933 +TI 1771360830.132392218 +CC NStripHits 2 +PE 122.612 +PP -0.652172 0.0189326 -4.30858 +PW 0 +SE +ET PH +ID 3934 +TI 1771360830.132582902 +CC NStripHits 2 +PE 80.852 +PP 3.07283 0.361456 -0.117953 +PW 0 +SE +ET PH +ID 3935 +TI 1771360830.134766835 +CC NStripHits 2 +PE 303.158 +PP -2.04905 -0.0236318 0.580484 +PW 0 +SE +ET UN +ID 3936 +TI 1771360830.135447135 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3937 +TI 1771360830.135714885 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 145.27 +SE +ID 3938 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 51.475945) +BD GR Veto +PQ 0.619681 +SE +ET UN +ID 3939 +TI 1771360830.136605668 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3940 +TI 1771360830.137787135 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.2193 +SE +ET UN +ID 3941 +TI 1771360830.137924068 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3942 +TI 1771360830.138252718 +CC NStripHits 2 +PE 68.9118 +PP 0.0462656 0.354982 -0.583578 +PW 0 +SE +ET UN +ID 3943 +TI 1771360830.139221535 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.504 +SE +ET PH +ID 3944 +TI 1771360830.141051985 +CC NStripHits 2 +PE 69.9778 +PP 3.53845 0.0174816 -3.49373 +PW 0 +SE +ET UN +ID 3945 +TI 1771360830.142598819 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7566 +SE +ID 3946 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 156.024230) +BD GR Veto +PQ 0.0694783 +SE +ET PH +ID 3947 +TI 1771360830.143883269 +CC NStripHits 2 +PE 93.7804 +PP -0.652172 -1.13456 1.04611 +PW 0 +SE +ET UN +ID 3948 +TI 1771360830.146220469 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 264.297 +SE +ET PH +ID 3949 +TI 1771360830.146446585 +CC NStripHits 3 +PE 77.2313 +PP 4.12048 0.354572 0.580484 +PW 0 +SE +ET PH +ID 3950 +TI 1771360830.147864569 +CC NStripHits 2 +PE 70.4848 +PP -2.51467 -0.443805 -4.07577 +PW 0 +SE +ID 3951 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (56.058428)) (GR Hit: Detector ID 0 and Energy 110.779817) +BD GR Veto +PQ 56.0584 +SE +ET UN +ID 3952 +TI 1771360830.149760769 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.6902 +SE +ET PH +ID 3953 +TI 1771360830.150089369 +CC NStripHits 3 +PE 134.349 +PP 0.511891 -1.01382 1.86095 +PW 0 +SE +ID 3954 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 44.738866) +BD GR Veto +PQ 5.44676 +SE +ET PH +ID 3955 +TI 1771360830.151151035 +CC NStripHits 3 +PE 566.302 +PP -2.16545 -0.116815 1.04611 +PW 0 +SE +ET UN +ID 3956 +TI 1771360830.154215335 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.8904 +SE +ET UN +ID 3957 +TI 1771360830.154682202 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3958 +TI 1771360830.154851485 +CC NStripHits 2 +PE 64.2849 +PP 3.18923 0.373797 -2.44608 +PW 0 +SE +ID 3959 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.762063) +BD GR Veto +PQ 0.513612 +SE +ET UN +ID 3960 +TI 1771360830.158806019 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 3961 +TI 1771360830.159935235 +CC NStripHits 4 +PQ 22.1258 +SQ 2 +CT 0 1 +TL 1 +TE 69.4871 +CE 117.31 1.55027 69.4871 1.84508 +CD 0.744703 0.249362 -0.234359 0.0336036 0.0364398 0.0336036 0.861109 0.280529 -0.467172 0.0336036 0.0405627 0.0336036 0 0 0 0 0 0 +LA 0.262152 +SE +ID 3962 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 3963 +TI 1771360830.161120419 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.395 +SE +ID 3964 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.206629) +BD GR Veto +PQ 0.206992 +SE +ID 3965 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 119.753886) +BD GR Veto +PQ 2.58217 +SE +ET UN +ID 3966 +TI 1771360830.163619419 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 190.099 +SE +ET UN +ID 3967 +TI 1771360830.164150219 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.8761 +SE +ET PH +ID 3968 +TI 1771360830.164519252 +CC NStripHits 2 +PE 80.5552 +PP -1.69983 0.235984 -0.00154687 +PW 0 +SE +ET PH +ID 3969 +TI 1771360830.165052536 +CC NStripHits 2 +PE 80.9783 +PP 1.79236 0.281901 -0.234359 +PW 0 +SE +ET PH +ID 3970 +TI 1771360830.165671552 +CC NStripHits 3 +PE 356.705 +PP -1.00139 0.351383 -0.816391 +PW 0 +SE +ET UN +ID 3971 +TI 1771360830.166580386 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3972 +TI 1771360830.167431419 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 66.7285 +SE +ET UN +ID 3973 +TI 1771360830.168618886 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1498 +SE +ET UN +ID 3974 +TI 1771360830.171085102 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3975 +TI 1771360830.172148636 +CC NStripHits 2 +PE 81.7786 +PP 0.0462656 0.193024 0.114859 +PW 0 +SE +ET UN +ID 3976 +TI 1771360830.173501086 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 343.762 +SE +ET PH +ID 3977 +TI 1771360830.173893919 +CC NStripHits 2 +PE 30.8893 +PP 1.90877 0.228958 1.74455 +PW 0 +SE +ET UN +ID 3978 +TI 1771360830.174873319 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.937 +SE +ET CO +ID 3979 +TI 1771360830.176066119 +CC NStripHits 5 +PQ 3.36607 +SQ 2 +CT 0.6415 0.3585 +TL 1 +TE 146.013 +CE 187.288 1.175 146.013 0.978252 +CD -1.46702 -0.484626 -1.28202 0.0336036 0.0235868 0.0336036 -1.00139 -1.03717 -1.86405 0.0336036 0.0197638 0.0336036 0 0 0 0 0 0 +LA 0.927834 +SE +ET PH +ID 3980 +TI 1771360830.176836952 +CC NStripHits 2 +PE 29.623 +PP 0.395484 -0.252889 0.347672 +PW 0 +SE +ID 3981 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.137416) (Strip hit removed with energy 14.157119) +BD GR Veto +PQ 8.41595 +SE +ID 3982 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (36.449600)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 61.881365)) (GR Hit: Detector ID 0 and Energy 176.856713) (GR Hit: Detector ID 0 and Energy 175.660238) +BD GR Veto +PQ 36.4496 +SE +ET PH +ID 3983 +TI 1771360830.178744502 +CC NStripHits 2 +PE 92.2158 +PP 2.4908 -1.05675 -1.98045 +PW 0 +SE +ET PH +ID 3984 +TI 1771360830.178980719 +CC NStripHits 2 +PE 31.0715 +PP 4.00408 0.349371 0.580484 +PW 0 +SE +ET UN +ID 3985 +TI 1771360830.179767569 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3095 +SE +ET PH +ID 3986 +TI 1771360830.180740253 +CC NStripHits 2 +PE 81.1957 +PP 1.32673 0.365358 -3.84295 +PW 0 +SE +ET PH +ID 3987 +TI 1771360830.181221936 +CC NStripHits 4 +PE 176.494 +PP -2.74748 -0.858634 1.74455 +PW 0 +SE +ET UN +ID 3988 +TI 1771360830.182032353 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3989 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 3990 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.111471) +BD GR Veto +PQ 0.0736446 +SE +ET PH +ID 3991 +TI 1771360830.189010486 +CC NStripHits 2 +PE 70.7597 +PP -2.86389 0.255139 -3.37733 +PW 0 +SE +ET UN +ID 3992 +TI 1771360830.189235286 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 58.6258 +SE +ET PH +ID 3993 +TI 1771360830.190322603 +CC NStripHits 2 +PE 81.6278 +PP -2.51467 0.207437 -2.09686 +PW 0 +SE +ID 3994 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 59.398923) +BD GR Veto +PQ 0.139676 +SE +ET PH +ID 3995 +TI 1771360830.191468903 +CC NStripHits 2 +PE 70.6541 +PP -1.00139 0.338624 -4.30858 +PW 0 +SE +ID 3996 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ID 3997 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.157119) +BD GR Veto +PQ +SE +ET UN +ID 3998 +TI 1771360830.193579636 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.2358 +SE +ID 3999 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 103.912900) +BD GR Veto +PQ 0.04139 +SE +ET UN +ID 4000 +TI 1771360830.194364036 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.6041 +SE +ET UN +ID 4001 +TI 1771360830.195528536 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 346.715 +SE +ID 4002 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 24.290972)) +BD GR Veto +PQ 2.52362 +SE +ET UN +ID 4003 +TI 1771360830.197236619 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3401 +SE +ET PH +ID 4004 +TI 1771360830.198810336 +CC NStripHits 2 +PE 84.6812 +PP 0.977516 -1.12521 -2.32967 +PW 0 +SE +ET PH +ID 4005 +TI 1771360830.203228336 +CC NStripHits 3 +PE 206.096 +PP 1.09392 0.106637 -3.95936 +PW 0 +SE +ET PH +ID 4006 +TI 1771360830.203449636 +CC NStripHits 2 +PE 72.7311 +PP -0.0701406 0.251852 -3.95936 +PW 0 +SE +ET CO +ID 4007 +TI 1771360830.204576736 +CC NStripHits 6 +PQ 79.5643 +SQ 2 +CT 0.543103 0.456897 +TL 1 +TE 147.829 +CE 181.078 1.90404 147.829 1.39806 +CD -0.768578 0.348358 -4.6578 0.0336036 0.0338653 0.0336036 -1.46702 0.279618 -4.07577 0.0336036 0.0404652 0.0336036 0 0 0 0 0 0 +LA 0.911759 +SE +ET PH +ID 4008 +TI 1771360830.205952770 +CC NStripHits 2 +PE 113.094 +PP 3.53845 -1.04377 -2.21327 +PW 0 +SE +ET PH +ID 4009 +TI 1771360830.206515386 +CC NStripHits 3 +PE 394.581 +PP -1.58342 -0.61168 0.813297 +PW 0 +SE +ET UN +ID 4010 +TI 1771360830.207168986 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7726 +SE +ET PH +ID 4011 +TI 1771360830.208383520 +CC NStripHits 2 +PE 80.76 +PP 3.53845 0.364989 2.55939 +PW 0 +SE +ET PH +ID 4012 +TI 1771360830.209490520 +CC NStripHits 2 +PE 81.6893 +PP 4.00408 -0.776473 -3.84295 +PW 0 +SE +ET UN +ID 4013 +TI 1771360830.210545203 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 4 +PE 0 +SE +ET PH +ID 4014 +TI 1771360830.210665420 +CC NStripHits 2 +PE 302.312 +PP 0.162672 0.061676 0.813297 +PW 0 +SE +ET PH +ID 4015 +TI 1771360830.211426303 +CC NStripHits 2 +PE 79.8765 +PP 2.6072 0.332606 1.04611 +PW 0 +SE +ID 4016 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.595143) +BD GR Veto +PQ 0.483101 +SE +ET UN +ID 4017 +TI 1771360830.211753670 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5473 +SE +ET UN +ID 4018 +TI 1771360830.212666586 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 4019 +TI 1771360830.212823786 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 57.1337 +SE +ET CO +ID 4020 +TI 1771360830.214900670 +CC NStripHits 4 +PQ 56.8829 +SQ 2 +CT 0 1 +TL 1 +TE 42.0441 +CE 148.625 1.02335 42.0441 1.42764 +CD 2.02517 -0.0853303 1.16252 0.0336036 0.0269189 0.0336036 1.90877 0.292063 2.44298 0.0336036 0.041524 0.0336036 0 0 0 0 0 0 +LA 1.33998 +SE +ET UN +ID 4021 +TI 1771360830.217907070 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 212.858 +SE +ET UN +ID 4022 +TI 1771360830.219104003 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 361.098 +SE +ET PH +ID 4023 +TI 1771360830.219735170 +CC NStripHits 3 +PE 156.209 +PP 4.23689 -0.0495555 -0.816391 +PW 0 +SE +ET PH +ID 4024 +TI 1771360830.220693770 +CC NStripHits 2 +PE 77.7918 +PP -1.81623 0.368203 -3.72655 +PW 0 +SE +ET PH +ID 4025 +TI 1771360830.223041687 +CC NStripHits 2 +PE 80.2635 +PP 2.95642 0.313639 -1.74764 +PW 0 +SE +ID 4026 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.223976) +BD GR Veto +PQ +SE +ID 4027 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.481619) +BD GR Veto +PQ 0.0106594 +SE +ET PH +ID 4028 +TI 1771360830.229304370 +CC NStripHits 2 +PE 71.5112 +PP 2.25798 0.375623 2.21017 +PW 0 +SE +ET CO +ID 4029 +TI 1771360830.229563820 +CC NStripHits 6 +PQ 6.2711 +SQ 2 +CT 0 1 +TL 1 +TE 39.1452 +CE 144.339 1.39637 39.1452 1.37139 +CD -1.69983 0.278547 0.929703 0.0336036 0.0403473 0.0336036 -1.2342 0.269141 1.97736 0.0336036 0.0391846 0.0336036 0 0 0 0 0 0 +LA 1.14651 +SE +ET UN +ID 4030 +TI 1771360830.229896153 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.572 +SE +ID 4031 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 251.525873) +BD GR Veto +PQ 0.190742 +SE +ET UN +ID 4032 +TI 1771360830.231247103 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4033 +TI 1771360830.231786787 +CC NStripHits 2 +PE 61.1134 +PP 1.21033 0.182465 1.62814 +PW 0 +SE +ET PH +ID 4034 +TI 1771360830.232113220 +CC NStripHits 2 +PE 53.693 +PP 1.09392 0.125127 -1.51483 +PW 0 +SE +ET CO +ID 4035 +TI 1771360830.234343770 +CC NStripHits 5 +PQ 0.7277 +SQ 2 +CT 0 1 +TL 1 +TE 146.925 +CE 205.801 1.32388 146.925 1.04834 +CD 0.511891 -0.718265 -1.51483 0.0336036 0.0220592 0.0336036 0.628297 -0.877697 -1.86405 0.0336036 0.0201873 0.0336036 0 0 0 0 0 0 +LA 0.401153 +SE +ID 4036 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 237.482343) +BD GR Veto +PQ 4.11642 +SE +ET UN +ID 4037 +TI 1771360830.236935803 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4038 +TI 1771360830.237697387 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4039 +TI 1771360830.238836670 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4040 +TI 1771360830.239737137 +CC NStripHits 2 +PE 80.3946 +PP -1.00139 0.0910569 -4.6578 +PW 0 +SE +ID 4041 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 199.557774) +BD GR Veto +PQ 1.29836 +SE +ID 4042 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.181230) +BD GR Veto +PQ 2.46363 +SE +ET PH +ID 4043 +TI 1771360830.243537004 +CC NStripHits 2 +PE 93.257 +PP 0.395484 -0.431702 -2.21327 +PW 0 +SE +ET UN +ID 4044 +TI 1771360830.244597904 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 121.228 +SE +ET PH +ID 4045 +TI 1771360830.244785020 +CC NStripHits 2 +PE 80.139 +PP -1.93264 0.164391 -3.72655 +PW 0 +SE +ET UN +ID 4046 +TI 1771360830.245629904 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2868 +SE +ID 4047 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.857864) +QA StripPairing (Best reduced chi square is not below 25 (94.548664)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 92.594708)) (GR Hit: Detector ID 0 and Energy 174.573517) +BD GR Veto +PQ 94.5487 +SE +ET PH +ID 4048 +TI 1771360830.248550737 +CC NStripHits 2 +PE 30.2089 +PP -2.74748 -0.570783 -0.816391 +PW 0 +SE +ID 4049 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 41.242868) +BD GR Veto +PQ 0.503347 +SE +ET UN +ID 4050 +TI 1771360830.250896954 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4051 +TI 1771360830.251531037 +CC NStripHits 2 +PE 80.5542 +PP 1.55955 0.36618 -0.00154687 +PW 0 +SE +ET PH +ID 4052 +TI 1771360830.251834254 +CC NStripHits 2 +PE 30.7275 +PP -0.302953 0.0513019 -0.583578 +PW 0 +SE +ID 4053 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.210606) +BD GR Veto +PQ 0.357457 +SE +ET UN +ID 4054 +TI 1771360830.254717570 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.2059 +SE +ET UN +ID 4055 +TI 1771360830.255171170 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 4056 +TI 1771360830.257129754 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 58.9576 +SE +ET CO +ID 4057 +TI 1771360830.257454254 +CC NStripHits 4 +PQ 11.58 +SQ 2 +CT 0.728627 0.271373 +TL 1 +TE 470.63 +CE 191.526 1.47087 470.63 1.14725 +CD -2.63108 -0.47641 -2.09686 0.0336036 0.023662 0.0336036 -2.74748 -1.00797 -1.63123 0.0336036 0.0195506 0.0336036 0 0 0 0 0 0 +LA 0.716182 +SE +ET PH +ID 4058 +TI 1771360830.262431204 +CC NStripHits 4 +PE 101.329 +PP 0.977516 -0.0118291 -1.86405 +PW 0 +SE +ID 4059 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 184.266966) +BD GR Veto +PQ 0.0531987 +SE +ET UN +ID 4060 +TI 1771360830.263668687 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6845 +SE +ID 4061 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 137.111800) +BD GR Veto +PQ 7.5311 +SE +ET PH +ID 4062 +TI 1771360830.264930154 +CC NStripHits 2 +PE 80.5974 +PP -1.69983 -0.154179 -3.84295 +PW 0 +SE +ET PH +ID 4063 +TI 1771360830.265132071 +CC NStripHits 3 +PE 80.7882 +PP 3.88767 0.276814 2.32658 +PW 0 +SE +ET UN +ID 4064 +TI 1771360830.265906987 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET PH +ID 4065 +TI 1771360830.267291754 +CC NStripHits 2 +PE 30.6339 +PP 1.55955 0.336827 0.813297 +PW 0 +SE +ET UN +ID 4066 +TI 1771360830.271468587 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.4714 +SE +ET PH +ID 4067 +TI 1771360830.271737771 +CC NStripHits 2 +PE 78.7695 +PP -2.04905 -1.16858 0.347672 +PW 0 +SE +ET PH +ID 4068 +TI 1771360830.272002304 +CC NStripHits 3 +PE 353.429 +PP 3.18923 -0.406395 0.929703 +PW 0 +SE +ET UN +ID 4069 +TI 1771360830.273137404 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 166.5 +SE +ET PH +ID 4070 +TI 1771360830.274018321 +CC NStripHits 2 +PE 148.076 +PP 1.44314 -0.27198 -0.816391 +PW 0 +SE +ET UN +ID 4071 +TI 1771360830.274395254 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.9103 +SE +ET UN +ID 4072 +TI 1771360830.274490587 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.9031 +SE +ET PH +ID 4073 +TI 1771360830.276214354 +CC NStripHits 3 +PE 182.091 +PP 2.84002 -0.112615 -2.7953 +PW 0 +SE +ID 4074 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (146.080778)) (GR Hit: Detector ID 0 and Energy 227.429863) +BD GR Veto +PQ 146.081 +SE +ET PH +ID 4075 +TI 1771360830.278399371 +CC NStripHits 4 +PE 196.342 +PP -0.419359 -0.0113527 1.39533 +PW 0 +SE +ET PH +ID 4076 +TI 1771360830.281059988 +CC NStripHits 2 +PE 114.878 +PP -1.93264 0.363229 -2.9117 +PW 0 +SE +ET PH +ID 4077 +TI 1771360830.283068738 +CC NStripHits 3 +PE 189.523 +PP 1.09392 -0.759805 1.51173 +PW 0 +SE +ID 4078 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 4079 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.916386) +BD GR Veto +PQ +SE +ID 4080 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 4081 +TI 1771360830.284398738 +CC NStripHits 2 +PE 29.8749 +PP 0.628297 -0.384368 2.55939 +PW 0 +SE +ET UN +ID 4082 +TI 1771360830.285149888 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6368 +SE +ET CO +ID 4083 +TI 1771360830.286268554 +CC NStripHits 5 +PQ 4.44255 +SQ 2 +CT 0.802256 0.197744 +TL 1 +TE 918.391 +CE 374.774 1.08203 918.391 2.19938 +CD 0.861109 -0.0503614 -4.19217 0.0336036 0.0271751 0.0336036 1.09392 -0.111383 -3.37733 0.0336036 0.0266095 0.0336036 0 0 0 0 0 0 +LA 0.84964 +SE +ET PH +ID 4084 +TI 1771360830.286521688 +CC NStripHits 2 +PE 59.6354 +PP -0.535766 0.251011 2.6758 +PW 0 +SE +ID 4085 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 179.948935) +BD GR Veto +PQ 0.816717 +SE +ET PH +ID 4086 +TI 1771360830.289328738 +CC NStripHits 2 +PE 302.814 +PP -1.35061 -0.102664 -0.467172 +PW 0 +SE +ID 4087 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 178.459678) +BD GR Veto +PQ 0.106634 +SE +ET PH +ID 4088 +TI 1771360830.291740521 +CC NStripHits 2 +PE 74.9892 +PP 0.977516 0.281851 -0.583578 +PW 0 +SE +ET PH +ID 4089 +TI 1771360830.292689671 +CC NStripHits 2 +PE 219.282 +PP 1.55955 0.319317 0.929703 +PW 0 +SE +ID 4090 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.304403) +BD GR Veto +PQ 0.205887 +SE +ID 4091 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 44.454425) +BD GR Veto +PQ 0.125265 +SE +ID 4092 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.793428) +BD GR Veto +PQ 0.159821 +SE +ID 4093 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.603009) +BD GR Veto +PQ 0.00384505 +SE +ET UN +ID 4094 +TI 1771360830.299687638 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4095 +TI 1771360830.302502438 +CC NStripHits 2 +PE 30.9057 +PP 4.12048 0.210339 -0.350766 +PW 0 +SE +ET PH +ID 4096 +TI 1771360830.304030755 +CC NStripHits 2 +PE 40.4822 +PP -0.419359 -1.10146 1.51173 +PW 0 +SE +ET PH +ID 4097 +TI 1771360830.304407688 +CC NStripHits 2 +PE 76.0404 +PP 1.90877 0.0778806 1.97736 +PW 0 +SE +ET UN +ID 4098 +TI 1771360830.305805255 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6896 +SE +ET PH +ID 4099 +TI 1771360830.306392571 +CC NStripHits 2 +PE 73.374 +PP -0.535766 -0.138799 -3.84295 +PW 0 +SE +ID 4100 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (56.641531)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 60.803736)) (GR Hit: Detector ID 0 and Energy 322.714258) +BD GR Veto +PQ 56.6415 +SE +ET PH +ID 4101 +TI 1771360830.307548921 +CC NStripHits 2 +PE 79.5658 +PP -2.39827 0.155136 -2.9117 +PW 0 +SE +ID 4102 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.646827) +BD GR Veto +PQ 0.506861 +SE +ET PH +ID 4103 +TI 1771360830.308008038 +CC NStripHits 2 +PE 80.6262 +PP 0.0462656 0.34795 -4.6578 +PW 0 +SE +ET PH +ID 4104 +TI 1771360830.308403455 +CC NStripHits 3 +PE 131.738 +PP 1.44314 -1.08672 1.27892 +PW 0 +SE +ET PH +ID 4105 +TI 1771360830.309193488 +CC NStripHits 2 +PE 176.333 +PP 2.25798 0.362338 -3.02811 +PW 0 +SE +ET UN +ID 4106 +TI 1771360830.309534421 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 58.2143 +SE +ID 4107 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (88.059565)) (GR Hit: Detector ID 0 and Energy 100.967817) +BD GR Veto +PQ 88.0596 +SE +ET UN +ID 4108 +TI 1771360830.310106938 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ID 4109 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (180.105077)) (GR Hit: Detector ID 0 and Energy 164.102874) +BD GR Veto +PQ 180.105 +SE +ET PH +ID 4110 +TI 1771360830.312656655 +CC NStripHits 2 +PE 229.468 +PP -0.186547 0.311077 -0.816391 +PW 0 +SE +ET PH +ID 4111 +TI 1771360830.312998555 +CC NStripHits 2 +PE 147.56 +PP 4.3533 -0.56123 -0.816391 +PW 0 +SE +ET PH +ID 4112 +TI 1771360830.314284288 +CC NStripHits 2 +PE 63.5138 +PP -1.35061 0.343591 -2.7953 +PW 0 +SE +ET UN +ID 4113 +TI 1771360830.318508938 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4114 +TI 1771360830.318657505 +CC NStripHits 2 +PE 96.5788 +PP 1.90877 0.223213 -4.30858 +PW 0 +SE +ET CO +ID 4115 +TI 1771360830.321681255 +CC NStripHits 6 +PQ 0.486292 +SQ 2 +CT 0 1 +TL 1 +TE 78.9965 +CE 275.9 1.40393 78.9965 0.997033 +CD -0.652172 -0.49722 -3.37733 0.0336036 0.0234739 0.0336036 -0.884984 0.0464633 -3.61014 0.0336036 0.0281327 0.0336036 0 0 0 0 0 0 +LA 0.635605 +SE +ET UN +ID 4116 +TI 1771360830.322988355 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0839 +SE +ET PH +ID 4117 +TI 1771360830.323451855 +CC NStripHits 3 +PE 151.843 +PP 2.02517 -0.358912 -2.67889 +PW 0 +SE +ET PH +ID 4118 +TI 1771360830.323575805 +CC NStripHits 3 +PE 295.58 +PP 0.395484 -0.104088 2.21017 +PW 0 +SE +ET CO +ID 4119 +TI 1771360830.324096772 +CC NStripHits 6 +PQ 0.841001 +SQ 2 +CT 0.524485 0.475515 +TL 1 +TE 183.637 +CE 172.925 1.40735 183.637 1.04075 +CD -2.63108 -0.709019 -3.61014 0.0336036 0.022156 0.0336036 -2.39827 -0.748183 -3.84295 0.0336036 0.0216813 0.0336036 0 0 0 0 0 0 +LA 0.331564 +SE +ET UN +ID 4120 +TI 1771360830.325757355 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.9576 +SE +ET UN +ID 4121 +TI 1771360830.326518772 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7894 +SE +ID 4122 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (34.242324)) (GR Hit: Detector ID 0 and Energy 74.968953) +BD GR Veto +PQ 34.2423 +SE +ID 4123 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4124 +TI 1771360830.330534055 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 128.818 +SE +ET UN +ID 4125 +TI 1771360830.330935338 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4126 +TI 1771360830.332120822 +CC NStripHits 2 +PE 28.2736 +PP 3.53845 0.209826 1.51173 +PW 0 +SE +ET UN +ID 4127 +TI 1771360830.332403855 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.0743 +SE +ET CO +ID 4128 +TI 1771360830.333118322 +CC NStripHits 5 +PQ 16.905 +SQ 2 +CT 0 1 +TL 1 +TE 79.6717 +CE 279.947 1.25903 79.6717 1.36014 +CD -1.35061 -0.191069 -4.30858 0.0336036 0.0259251 0.0336036 -2.16545 -0.184347 -4.54139 0.0336036 0.0259728 0.0336036 0 0 0 0 0 0 +LA 0.847473 +SE +ID 4129 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.372828) +BD GR Veto +PQ 0.0148078 +SE +ID 4130 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.723552) +BD GR Veto +PQ 1.05022 +SE +ET PH +ID 4131 +TI 1771360830.334494622 +CC NStripHits 3 +PE 123.388 +PP 1.21033 -0.898959 0.929703 +PW 0 +SE +ID 4132 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 356.350484) +BD GR Veto +PQ 0.184216 +SE +ET UN +ID 4133 +TI 1771360830.337855138 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 301.579 +SE +ET PH +ID 4134 +TI 1771360830.339233688 +CC NStripHits 2 +PE 76.5025 +PP 2.37439 0.249067 -4.6578 +PW 0 +SE +ET PH +ID 4135 +TI 1771360830.339525072 +CC NStripHits 3 +PE 177.878 +PP 3.53845 0.340428 -0.234359 +PW 0 +SE +ET UN +ID 4136 +TI 1771360830.340222889 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 304.134 +SE +ET UN +ID 4137 +TI 1771360830.340506639 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.2395 +SE +ET UN +ID 4138 +TI 1771360830.340810972 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.221 +SE +ET PH +ID 4139 +TI 1771360830.341918105 +CC NStripHits 3 +PE 383.678 +PP -1.1178 0.237956 -1.16561 +PW 0 +SE +ET PH +ID 4140 +TI 1771360830.342159822 +CC NStripHits 2 +PE 267.396 +PP -1.69983 0.364339 -2.44608 +PW 0 +SE +ET PH +ID 4141 +TI 1771360830.342351155 +CC NStripHits 2 +PE 80.6148 +PP 0.162672 0.257742 -2.44608 +PW 0 +SE +ET UN +ID 4142 +TI 1771360830.343022455 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 4143 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 99.706630) +BD GR Veto +PQ 0.300912 +SE +ET PH +ID 4144 +TI 1771360830.344035372 +CC NStripHits 2 +PE 159.431 +PP -0.0701406 0.188252 1.74455 +PW 0 +SE +ET PH +ID 4145 +TI 1771360830.344403739 +CC NStripHits 2 +PE 128.807 +PP -2.16545 -0.196836 2.55939 +PW 0 +SE +ET PH +ID 4146 +TI 1771360830.346842105 +CC NStripHits 3 +PE 80.7495 +PP 0.395484 0.363738 1.27892 +PW 0 +SE +ET UN +ID 4147 +TI 1771360830.348084389 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1601 +SE +ID 4148 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.878563) +BD GR Veto +PQ 12.8197 +SE +ID 4149 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 39.182675) +BD GR Veto +PQ 0.586344 +SE +ID 4150 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.527281) +BD GR Veto +PQ 0.0330672 +SE +ET PH +ID 4151 +TI 1771360830.349774655 +CC NStripHits 3 +PE 133.264 +PP 0.162672 0.373946 -1.74764 +PW 0 +SE +ET PH +ID 4152 +TI 1771360830.349896072 +CC NStripHits 2 +PE 235.838 +PP 1.44314 -0.441401 2.44298 +PW 0 +SE +ET UN +ID 4153 +TI 1771360830.350542422 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 4154 +TI 1771360830.350804589 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 111.066 +SE +ET CO +ID 4155 +TI 1771360830.352512439 +CC NStripHits 5 +PQ 0.582093 +SQ 2 +CT 0 1 +TL 1 +TE 122.624 +CE 233.908 1.1949 122.624 1.04011 +CD 3.07283 -0.578813 0.347672 0.0336036 0.0229179 0.0336036 3.30564 -1.12447 0.813297 0.0336036 0.0275548 0.0336036 0 0 0 0 0 0 +LA 0.754154 +SE +ET PH +ID 4156 +TI 1771360830.354164422 +CC NStripHits 3 +PE 205.765 +PP 0.744703 0.357169 2.55939 +PW 0 +SE +ET UN +ID 4157 +TI 1771360830.354340305 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.912 +SE +ET PH +ID 4158 +TI 1771360830.355373272 +CC NStripHits 2 +PE 183.224 +PP 3.77127 -0.649043 -1.74764 +PW 0 +SE +ID 4159 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4160 +TI 1771360830.356825139 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.6695 +SE +ET PH +ID 4161 +TI 1771360830.359515422 +CC NStripHits 2 +PE 300.731 +PP 4.00408 -1.00458 -3.61014 +PW 0 +SE +ET PH +ID 4162 +TI 1771360830.362774189 +CC NStripHits 2 +PE 81.7869 +PP -1.00139 0.253033 0.929703 +PW 0 +SE +ET PH +ID 4163 +TI 1771360830.364294539 +CC NStripHits 2 +PE 67.1997 +PP 3.07283 0.360376 -3.61014 +PW 0 +SE +ET PH +ID 4164 +TI 1771360830.364440806 +CC NStripHits 3 +PE 300.543 +PP -0.186547 -0.671326 -0.467172 +PW 0 +SE +ET PH +ID 4165 +TI 1771360830.364691572 +CC NStripHits 3 +PE 302.67 +PP -2.74748 0.0126659 -2.56248 +PW 0 +SE +ET PH +ID 4166 +TI 1771360830.364815006 +CC NStripHits 2 +PE 72.0399 +PP -1.1178 -0.74778 -0.583578 +PW 0 +SE +ET PH +ID 4167 +TI 1771360830.366404439 +CC NStripHits 2 +PE 147.082 +PP 1.21033 -0.507876 -4.07577 +PW 0 +SE +ET UN +ID 4168 +TI 1771360830.366672322 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5254 +SE +ET PH +ID 4169 +TI 1771360830.367609622 +CC NStripHits 3 +PE 89.9913 +PP -2.51467 -1.08271 1.51173 +PW 0 +SE +ET PH +ID 4170 +TI 1771360830.368882589 +CC NStripHits 2 +PE 65.9164 +PP -1.00139 0.31038 -2.44608 +PW 0 +SE +ET UN +ID 4171 +TI 1771360830.369960506 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4172 +TI 1771360830.370058656 +CC NStripHits 2 +PE 103.27 +PP 0.395484 -0.980446 -2.32967 +PW 0 +SE +ET UN +ID 4173 +TI 1771360830.371464856 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 284.337 +SE +ID 4174 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.585002) +BD GR Veto +PQ 10.9289 +SE +ET CO +ID 4175 +TI 1771360830.374144256 +CC NStripHits 4 +PQ 0.626643 +SQ 2 +CT 0 1 +TL 1 +TE 59.1446 +CE 125.67 1.0502 59.1446 1.0227 +CD 1.44314 -0.657094 -2.21327 0.0336036 0.0225137 0.0336036 1.32673 -0.593854 -2.09686 0.0336036 0.0228544 0.0336036 0 0 0 0 0 0 +LA 0.176357 +SE +ET PH +ID 4176 +TI 1771360830.374403956 +CC NStripHits 2 +PE 354.595 +PP 1.90877 0.146921 -2.32967 +PW 0 +SE +ID 4177 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.830229) +BD GR Veto +PQ +SE +ET PH +ID 4178 +TI 1771360830.375468172 +CC NStripHits 2 +PE 74.9868 +PP -1.35061 0.242866 0.580484 +PW 0 +SE +ET UN +ID 4179 +TI 1771360830.375572639 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4180 +TI 1771360830.378764306 +CC NStripHits 2 +PE 295.777 +PP -1.58342 -0.371058 2.55939 +PW 0 +SE +ID 4181 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 197.818494) +BD GR Veto +PQ 0.000134691 +SE +ET PH +ID 4182 +TI 1771360830.381899289 +CC NStripHits 2 +PE 65.9965 +PP -0.884984 0.108615 -2.32967 +PW 0 +SE +ET PH +ID 4183 +TI 1771360830.382914589 +CC NStripHits 4 +PE 310.945 +PP 0.162672 -0.624023 -1.98045 +PW 0 +SE +ID 4184 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ID 4185 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 158.649364) +BD GR Veto +PQ 0.486362 +SE +ID 4186 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.875658) +BD GR Veto +PQ 0.614109 +SE +ID 4187 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (39.831527)) (GR Hit: Detector ID 0 and Energy 205.990236) +BD GR Veto +PQ 39.8315 +SE +ET PH +ID 4188 +TI 1771360830.387098706 +CC NStripHits 2 +PE 82.4762 +PP -1.93264 0.365388 0.231266 +PW 0 +SE +ET PH +ID 4189 +TI 1771360830.387295023 +CC NStripHits 2 +PE 72.0232 +PP -2.63108 0.27955 -1.39842 +PW 0 +SE +ET PH +ID 4190 +TI 1771360830.389045223 +CC NStripHits 2 +PE 30.5545 +PP 1.67595 0.379564 -4.42498 +PW 0 +SE +ET UN +ID 4191 +TI 1771360830.391584973 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.9108 +SE +ID 4192 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.063222) (GR Hit: Detector ID 0 and Energy 93.261390) +BD GR Veto +PQ 23.6059 +SE +ET UN +ID 4193 +TI 1771360830.393630723 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4194 +TI 1771360830.394572473 +CC NStripHits 3 +PE 157.76 +PP 3.30564 0.143947 -2.21327 +PW 0 +SE +ET UN +ID 4195 +TI 1771360830.394886023 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 356.597 +SE +ET PH +ID 4196 +TI 1771360830.395135873 +CC NStripHits 3 +PE 296.104 +PP 4.23689 -1.08971 -3.49373 +PW 0 +SE +ET PH +ID 4197 +TI 1771360830.396358456 +CC NStripHits 3 +PE 357.471 +PP -0.768578 -0.578198 1.04611 +PW 0 +SE +ET UN +ID 4198 +TI 1771360830.397243006 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0976 +SE +ID 4199 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (29.861884)) (GR Hit: Detector ID 0 and Energy 82.163188) +BD GR Veto +PQ 29.8619 +SE +ET UN +ID 4200 +TI 1771360830.400986740 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.5224 +SE +ET UN +ID 4201 +TI 1771360830.403066240 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 265.215 +SE +ET CO +ID 4202 +TI 1771360830.404117323 +CC NStripHits 4 +PQ 28.8598 +SQ 2 +CT 0 1 +TL 1 +TE 69.96 +CE 243.49 1.48566 69.96 1.47168 +CD 2.14158 -0.315945 -1.51483 0.0336036 0.0250692 0.0336036 1.79236 -0.604591 -1.63123 0.0336036 0.0228021 0.0336036 0 0 0 0 0 0 +LA 0.467782 +SE +ET PH +ID 4203 +TI 1771360830.404721090 +CC NStripHits 2 +PE 70.8931 +PP -1.58342 0.278857 0.929703 +PW 0 +SE +ID 4204 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.559358) +BD GR Veto +PQ 0.1395 +SE +ET UN +ID 4205 +TI 1771360830.405213856 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4206 +TI 1771360830.406037490 +CC NStripHits 3 +PE 235.175 +PP 4.12048 -0.673025 1.62814 +PW 0 +SE +ID 4207 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 89.364424)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 47.213166) (GR Hit: Detector ID 0 and Energy 217.516290) +BD GR Veto +PQ 12.4034 +SE +ET PH +ID 4208 +TI 1771360830.407326656 +CC NStripHits 2 +PE 80.9768 +PP 1.21033 0.369356 0.231266 +PW 0 +SE +ET UN +ID 4209 +TI 1771360830.409849473 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 4210 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.748713) +BD GR Veto +PQ 2.56208 +SE +ET PH +ID 4211 +TI 1771360830.411931223 +CC NStripHits 2 +PE 79.9798 +PP 1.32673 -0.693465 -3.26092 +PW 0 +SE +ID 4212 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 197.081408) +BD GR Veto +PQ 0.198837 +SE +ID 4213 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.412498) +BD GR Veto +PQ 0.48215 +SE +ET CO +ID 4214 +TI 1771360830.414858823 +CC NStripHits 5 +PQ 5.16142 +SQ 2 +CT 0.627391 0.372609 +TL 1 +TE 149.733 +CE 205.467 2.07889 149.733 1.04064 +CD 3.53845 0.233952 0.464078 0.0336036 0.0345521 0.0336036 3.30564 0.357066 0.929703 0.0336036 0.0300628 0.0336036 0 0 0 0 0 0 +LA 0.534943 +SE +ID 4215 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.731523) +BD GR Veto +PQ 0.30656 +SE +ET CO +ID 4216 +TI 1771360830.419642273 +CC NStripHits 8 +PQ 0.536049 +SQ 4 +CT 0.261489 0.312048 +TL 1 +TE 173.633 +CE 182.852 1.79752 173.633 1.05204 +CD 0.977516 0.0839041 0.929703 0.0336036 0.0286249 0.0336036 0.744703 0.353878 0.464078 0.0336036 0.0315578 0.0336036 0 0 0 0 0 0 +LA 0.586425 +SE +ET PH +ID 4217 +TI 1771360830.420028490 +CC NStripHits 8 +PE 358.751 +PP -0.884984 0.157955 -1.98045 +PW 0 +SE +ET PH +ID 4218 +TI 1771360830.420627957 +CC NStripHits 2 +PE 81.906 +PP 4.12048 0.362649 -0.816391 +PW 0 +SE +ET PH +ID 4219 +TI 1771360830.420805690 +CC NStripHits 2 +PE 56.1967 +PP 3.88767 -1.17817 1.27892 +PW 0 +SE +ET CO +ID 4220 +TI 1771360830.421134473 +CC NStripHits 4 +PQ 15.9709 +SQ 2 +CT 0 1 +TL 1 +TE 22.087 +CE 73.9962 1.40914 22.087 1.0031 +CD 2.6072 -1.05938 -3.37733 0.0336036 0.0203081 0.0336036 2.4908 -0.5723 -3.61014 0.0336036 0.0229515 0.0336036 0 0 0 0 0 0 +LA 0.552265 +SE +ET UN +ID 4221 +TI 1771360830.421736123 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4222 +TI 1771360830.422056940 +CC NStripHits 3 +PE 79.9674 +PP 1.21033 0.317185 1.27892 +PW 0 +SE +ID 4223 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.441646) +BD GR Veto +PQ 0.170806 +SE +ET PH +ID 4224 +TI 1771360830.424307573 +CC NStripHits 2 +PE 82.4819 +PP 2.25798 0.378573 0.231266 +PW 0 +SE +ET UN +ID 4225 +TI 1771360830.424823573 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5231 +SE +ET PH +ID 4226 +TI 1771360830.427651123 +CC NStripHits 2 +PE 28.2916 +PP -1.81623 -1.1172 -3.84295 +PW 0 +SE +ET PH +ID 4227 +TI 1771360830.428456773 +CC NStripHits 2 +PE 101.053 +PP -1.58342 -0.674521 -1.28202 +PW 0 +SE +ET PH +ID 4228 +TI 1771360830.428852807 +CC NStripHits 2 +PE 181.607 +PP 3.53845 0.0721617 0.696891 +PW 0 +SE +ET PH +ID 4229 +TI 1771360830.429839090 +CC NStripHits 2 +PE 30.4216 +PP 3.07283 -0.0030075 0.580484 +PW 0 +SE +ET PH +ID 4230 +TI 1771360830.430287573 +CC NStripHits 2 +PE 35.0967 +PP -0.0701406 0.00253995 2.6758 +PW 0 +SE +ET PH +ID 4231 +TI 1771360830.431787090 +CC NStripHits 2 +PE 275.132 +PP -2.28186 0.0670029 -3.95936 +PW 0 +SE +ET PH +ID 4232 +TI 1771360830.435035807 +CC NStripHits 2 +PE 31.2241 +PP 0.628297 0.00516872 -2.7953 +PW 0 +SE +ET PH +ID 4233 +TI 1771360830.435264707 +CC NStripHits 2 +PE 80.8565 +PP -0.652172 -0.889725 2.44298 +PW 0 +SE +ET PH +ID 4234 +TI 1771360830.435851457 +CC NStripHits 2 +PE 51.2293 +PP -0.0701406 -1.14756 -0.117953 +PW 0 +SE +ID 4235 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4236 +TI 1771360830.440558457 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 107.925 +SE +ET PH +ID 4237 +TI 1771360830.442575374 +CC NStripHits 3 +PE 131.317 +PP -0.186547 -0.748966 -1.28202 +PW 0 +SE +ET PH +ID 4238 +TI 1771360830.443393824 +CC NStripHits 2 +PE 71.7025 +PP 4.12048 0.376466 -0.234359 +PW 0 +SE +ET UN +ID 4239 +TI 1771360830.445264724 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4240 +TI 1771360830.445743474 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.9594 +SE +ET UN +ID 4241 +TI 1771360830.448351424 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 68.5096 +SE +ET UN +ID 4242 +TI 1771360830.452063190 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 162.118 +SE +ET UN +ID 4243 +TI 1771360830.453709990 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 151.492 +SE +ID 4244 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 110.983443) +BD GR Veto +PQ 0.0227782 +SE +ID 4245 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 31.921552)) (GR Hit: Detector ID 0 and Energy 69.212723) (GR Hit: Detector ID 0 and Energy 86.035003) +BD GR Veto +PQ 9.42134 +SE +ET UN +ID 4246 +TI 1771360830.459875607 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8014 +SE +ET PH +ID 4247 +TI 1771360830.461644124 +CC NStripHits 2 +PE 190.952 +PP -0.419359 0.0741449 2.32658 +PW 0 +SE +ET PH +ID 4248 +TI 1771360830.462186941 +CC NStripHits 2 +PE 81.7365 +PP -2.04905 0.0715786 1.86095 +PW 0 +SE +ET CO +ID 4249 +TI 1771360830.466024307 +CC NStripHits 4 +PQ 0.560582 +SQ 2 +CT 0 1 +TL 1 +TE 73.0144 +CE 115.762 1.02225 73.0144 0.975456 +CD -1.69983 -0.2443 0.114859 0.0336036 0.025504 0.0336036 -1.00139 -1.05236 -0.350766 0.0336036 0.020095 0.0336036 0 0 0 0 0 0 +LA 1.16515 +SE +ID 4250 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 46.833243) +BD GR Veto +PQ 0.000427463 +SE +ID 4251 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 205.892993) +BD GR Veto +PQ 0.691403 +SE +ID 4252 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.411519) +BD GR Veto +PQ 0.00336122 +SE +ET PH +ID 4253 +TI 1771360830.471180591 +CC NStripHits 2 +PE 78.5193 +PP 3.88767 0.369135 -3.14452 +PW 0 +SE +ET PH +ID 4254 +TI 1771360830.472282007 +CC NStripHits 4 +PE 244.96 +PP -0.884984 -0.012947 -3.26092 +PW 0 +SE +ET UN +ID 4255 +TI 1771360830.473564774 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 180.847 +SE +ET PH +ID 4256 +TI 1771360830.474300357 +CC NStripHits 2 +PE 77.3784 +PP -1.93264 -0.257234 -0.00154687 +PW 0 +SE +ID 4257 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.074720) +BD GR Veto +PQ 0.00105543 +SE +ET UN +ID 4258 +TI 1771360830.475856924 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 4259 +TI 1771360830.476890924 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 152.861 +SE +ET PH +ID 4260 +TI 1771360830.477129891 +CC NStripHits 2 +PE 204.219 +PP -1.00139 0.140046 -4.30858 +PW 0 +SE +ET PH +ID 4261 +TI 1771360830.479489424 +CC NStripHits 2 +PE 70.7097 +PP 2.72361 0.373899 -2.9117 +PW 0 +SE +ET UN +ID 4262 +TI 1771360830.479805291 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 47.0513 +SE +ET UN +ID 4263 +TI 1771360830.481252674 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 83.7076 +SE +ID 4264 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ET UN +ID 4265 +TI 1771360830.483541941 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.737 +SE +ID 4266 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 4267 +TI 1771360830.483913674 +CC NStripHits 2 +PE 79.6105 +PP -1.00139 -0.884468 -3.84295 +PW 0 +SE +ID 4268 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 4269 +TI 1771360830.485672391 +CC NStripHits 2 +PE 73.7532 +PP 1.44314 0.370285 -3.37733 +PW 0 +SE +ET PH +ID 4270 +TI 1771360830.487328824 +CC NStripHits 2 +PE 83.3288 +PP -2.04905 -1.14191 -3.72655 +PW 0 +SE +ID 4271 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.622297) +BD GR Veto +PQ 0.00094995 +SE +ET PH +ID 4272 +TI 1771360830.488064991 +CC NStripHits 2 +PE 81.1678 +PP 1.44314 0.310604 -3.26092 +PW 0 +SE +ET PH +ID 4273 +TI 1771360830.488857074 +CC NStripHits 2 +PE 103.492 +PP 4.3533 -0.0942286 0.464078 +PW 0 +SE +ET PH +ID 4274 +TI 1771360830.489088424 +CC NStripHits 2 +PE 83.3022 +PP -0.302953 0.317483 -1.51483 +PW 0 +SE +ET UN +ID 4275 +TI 1771360830.490510641 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4276 +TI 1771360830.490762874 +CC NStripHits 4 +PE 200.265 +PP 3.88767 0.173303 2.09377 +PW 0 +SE +ID 4277 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.367473) +BD GR Veto +PQ 0.082945 +SE +ET PH +ID 4278 +TI 1771360830.493617808 +CC NStripHits 2 +PE 75.4475 +PP -1.1178 0.378321 0.464078 +PW 0 +SE +ET UN +ID 4279 +TI 1771360830.494543641 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6221 +SE +ID 4280 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 250.209501) +BD GR Veto +PQ 5.721 +SE +ET PH +ID 4281 +TI 1771360830.495495641 +CC NStripHits 2 +PE 301.959 +PP -0.302953 -0.946854 -4.6578 +PW 0 +SE +ET UN +ID 4282 +TI 1771360830.495541208 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4283 +TI 1771360830.495728291 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 101.283 +SE +ET PH +ID 4284 +TI 1771360830.497013341 +CC NStripHits 2 +PE 83.7249 +PP -2.51467 0.207423 -4.07577 +PW 0 +SE +ID 4285 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.258043) +BD GR Veto +PQ 0.0178824 +SE +ET UN +ID 4286 +TI 1771360830.499093374 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.7858 +SE +ET PH +ID 4287 +TI 1771360830.500320375 +CC NStripHits 4 +PE 197.003 +PP -1.69983 0.326144 -0.350766 +PW 0 +SE +ID 4288 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.628259) (Strip hit removed with energy 13.608211) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 30.445995)) (GR Hit: Detector ID 0 and Energy 49.939826) +BD GR Veto +PQ 5.66146 +SE +ET UN +ID 4289 +TI 1771360830.501833341 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4290 +TI 1771360830.503517825 +CC NStripHits 2 +PE 194.94 +PP 2.02517 -0.804658 1.39533 +PW 0 +SE +ET UN +ID 4291 +TI 1771360830.506392475 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 303.053 +SE +ET UN +ID 4292 +TI 1771360830.507295441 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7976 +SE +ID 4293 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.630070) +BD GR Veto +PQ 0.0400169 +SE +ET PH +ID 4294 +TI 1771360830.508421991 +CC NStripHits 2 +PE 29.6482 +PP -0.768578 0.375137 1.51173 +PW 0 +SE +ET UN +ID 4295 +TI 1771360830.508784941 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 4296 +TI 1771360830.512986775 +CC NStripHits 6 +PQ 0.829003 +SQ 3 +CT 0.0176318 0.0407602 +TL 1 +TE 61.4896 +CE 169.163 1.55909 61.4896 1.11813 +CD 4.23689 0.289665 -3.26092 0.0336036 0.0413707 0.0336036 4.3533 -0.181701 -3.49373 0.0336036 0.0259922 0.0336036 0 0 0 0 0 0 +LA 0.538459 +SE +ET PH +ID 4297 +TI 1771360830.513177658 +CC NStripHits 2 +PE 130.169 +PP 0.861109 -0.930426 2.21017 +PW 0 +SE +ET PH +ID 4298 +TI 1771360830.513485108 +CC NStripHits 2 +PE 143.548 +PP 0.628297 -0.610185 0.347672 +PW 0 +SE +ET PH +ID 4299 +TI 1771360830.513854808 +CC NStripHits 3 +PE 304.391 +PP 4.12048 0.301347 -0.816391 +PW 0 +SE +ET PH +ID 4300 +TI 1771360830.514671775 +CC NStripHits 2 +PE 137.13 +PP 3.42205 0.324925 -0.816391 +PW 0 +SE +ET PH +ID 4301 +TI 1771360830.515542141 +CC NStripHits 2 +PE 74.8936 +PP 3.18923 0.356157 0.696891 +PW 0 +SE +ET UN +ID 4302 +TI 1771360830.516505091 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4303 +TI 1771360830.518001458 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4304 +TI 1771360830.521017858 +CC NStripHits 2 +PE 79.0681 +PP 0.395484 0.00366455 -1.51483 +PW 0 +SE +ET PH +ID 4305 +TI 1771360830.521807942 +CC NStripHits 2 +PE 80.5017 +PP 0.162672 0.31235 -0.117953 +PW 0 +SE +ID 4306 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 119.628897) +BD GR Veto +PQ 0.000462285 +SE +ET PH +ID 4307 +TI 1771360830.522855725 +CC NStripHits 2 +PE 75.5196 +PP 0.162672 -0.594264 -1.16561 +PW 0 +SE +ET UN +ID 4308 +TI 1771360830.523091775 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4309 +TI 1771360830.523546508 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 156.688 +SE +ID 4310 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.050137) +BD GR Veto +PQ 0.049571 +SE +ET PH +ID 4311 +TI 1771360830.524684142 +CC NStripHits 2 +PE 84.465 +PP -2.51467 -0.129765 -2.9117 +PW 0 +SE +ET PH +ID 4312 +TI 1771360830.526013558 +CC NStripHits 2 +PE 99.0268 +PP -2.9803 -0.0512274 1.86095 +PW 0 +SE +ID 4313 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.916386) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 171.330790) +BD GR Veto +PQ 2.21301 +SE +ET PH +ID 4314 +TI 1771360830.526774258 +CC NStripHits 2 +PE 81.5074 +PP -1.2342 0.241621 -1.28202 +PW 0 +SE +ET CO +ID 4315 +TI 1771360830.527425458 +CC NStripHits 4 +PQ 13.3182 +SQ 2 +CT 0.55462 0.44538 +TL 1 +TE 198.268 +CE 160.088 1.6795 198.268 1.05722 +CD 0.861109 -0.491323 1.62814 0.0336036 0.0235266 0.0336036 0.628297 -0.956626 1.86095 0.0336036 0.0195751 0.0336036 0 0 0 0 0 0 +LA 0.570008 +SE +ET PH +ID 4316 +TI 1771360830.528099575 +CC NStripHits 2 +PE 81.7475 +PP 2.95642 0.307521 -2.56248 +PW 0 +SE +ET PH +ID 4317 +TI 1771360830.528309208 +CC NStripHits 2 +PE 75.3087 +PP -0.884984 -0.992272 1.51173 +PW 0 +SE +ID 4318 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.903478) +BD GR Veto +PQ 0.0204683 +SE +ET UN +ID 4319 +TI 1771360830.529093608 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4320 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.266852) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 184.749161) (GR Hit: Detector ID 0 and Energy 162.957695) +BD GR Veto +PQ 0.993879 +SE +ET PH +ID 4321 +TI 1771360830.531317375 +CC NStripHits 2 +PE 85.6056 +PP -0.0701406 -0.800047 1.86095 +PW 0 +SE +ET PH +ID 4322 +TI 1771360830.531573642 +CC NStripHits 3 +PE 358.897 +PP -0.0701406 0.357518 -0.583578 +PW 0 +SE +ET PH +ID 4323 +TI 1771360830.532203642 +CC NStripHits 2 +PE 81.8729 +PP -2.63108 0.226949 -3.84295 +PW 0 +SE +ID 4324 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 126.704815) +BD GR Veto +PQ 0.266675 +SE +ET PH +ID 4325 +TI 1771360830.533799908 +CC NStripHits 2 +PE 79.183 +PP 0.744703 -0.148336 0.114859 +PW 0 +SE +ET PH +ID 4326 +TI 1771360830.535766558 +CC NStripHits 2 +PE 47.1314 +PP -0.302953 -0.0869865 -3.72655 +PW 0 +SE +ET PH +ID 4327 +TI 1771360830.536146108 +CC NStripHits 2 +PE 107.037 +PP -1.35061 0.308693 2.44298 +PW 0 +SE +ID 4328 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.362561) +BD GR Veto +PQ 0.138016 +SE +ET PH +ID 4329 +TI 1771360830.537644842 +CC NStripHits 2 +PE 208.096 +PP 4.12048 0.21165 -2.9117 +PW 0 +SE +ET PH +ID 4330 +TI 1771360830.537791875 +CC NStripHits 2 +PE 58.2006 +PP 0.0462656 -0.776893 1.16252 +PW 0 +SE +ET PH +ID 4331 +TI 1771360830.538114508 +CC NStripHits 2 +PE 81.2395 +PP 2.02517 0.317751 -0.00154687 +PW 0 +SE +ET CO +ID 4332 +TI 1771360830.538575708 +CC NStripHits 7 +PQ 15.5051 +SQ 3 +CT 0.0436674 0.138652 +TL 1 +TE 187.372 +CE 555.816 1.92997 187.372 1.01202 +CD -2.63108 -0.234275 1.62814 0.0336036 0.0255755 0.0336036 -0.186547 -0.612518 2.09377 0.0336036 0.0227554 0.0336036 0 0 0 0 0 0 +LA 1.09193 +SE +ET PH +ID 4333 +TI 1771360830.539039975 +CC NStripHits 3 +PE 71.6986 +PP -0.419359 0.265069 -1.28202 +PW 0 +SE +ID 4334 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.612474) +BD GR Veto +PQ 0.284755 +SE +ET PH +ID 4335 +TI 1771360830.541208909 +CC NStripHits 2 +PE 80.0166 +PP -2.86389 0.377153 0.464078 +PW 0 +SE +ET PH +ID 4336 +TI 1771360830.541824159 +CC NStripHits 3 +PE 82.3129 +PP 2.14158 0.328278 0.929703 +PW 0 +SE +ET PH +ID 4337 +TI 1771360830.543268675 +CC NStripHits 2 +PE 79.6714 +PP 2.72361 0.348119 -4.54139 +PW 0 +SE +ET UN +ID 4338 +TI 1771360830.543861975 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 201.038 +SE +ET UN +ID 4339 +TI 1771360830.545727275 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 4340 +TI 1771360830.546234009 +CC NStripHits 5 +PQ 1.39622 +SQ 2 +CT 0 1 +TL 1 +TE 148.889 +CE 327.611 1.05756 148.889 1.19236 +CD 1.32673 0.374646 2.44298 0.0336036 0.0195704 0.0336036 0.279078 0.356163 1.51173 0.0336036 0.0304984 0.0336036 0 0 0 0 0 0 +LA 1.40184 +SE +ID 4341 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 130.900236) +BD GR Veto +PQ 0.350953 +SE +ET PH +ID 4342 +TI 1771360830.551363709 +CC NStripHits 2 +PE 79.0088 +PP -2.74748 0.301748 -2.21327 +PW 0 +SE +ID 4343 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 4344 +TI 1771360830.553148342 +CC NStripHits 2 +PE 80.8862 +PP 0.0462656 0.3674 -3.37733 +PW 0 +SE +ET UN +ID 4345 +TI 1771360830.554290992 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8566 +SE +ET UN +ID 4346 +TI 1771360830.555129109 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4347 +TI 1771360830.556708792 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 354.143 +SE +ET PH +ID 4348 +TI 1771360830.559777309 +CC NStripHits 2 +PE 128.517 +PP 0.395484 -0.18847 2.44298 +PW 0 +SE +ET UN +ID 4349 +TI 1771360830.561409909 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3726 +SE +ET PH +ID 4350 +TI 1771360830.561845459 +CC NStripHits 2 +PE 81.158 +PP -2.39827 0.295237 -3.95936 +PW 0 +SE +ET PH +ID 4351 +TI 1771360830.563225159 +CC NStripHits 2 +PE 79.5828 +PP 1.67595 0.0621421 0.929703 +PW 0 +SE +ET PH +ID 4352 +TI 1771360830.563340342 +CC NStripHits 2 +PE 223.432 +PP 0.279078 0.228927 0.347672 +PW 0 +SE +ET PH +ID 4353 +TI 1771360830.563768792 +CC NStripHits 3 +PE 301.523 +PP -0.186547 0.351736 2.09377 +PW 0 +SE +ET UN +ID 4354 +TI 1771360830.564052626 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 133.167 +SE +ET CO +ID 4355 +TI 1771360830.564989826 +CC NStripHits 4 +PQ 1.35423 +SQ 2 +CT 0 1 +TL 1 +TE 64.6414 +CE 127.158 1.00108 64.6414 1.0173 +CD 2.95642 -0.713325 1.74455 0.0336036 0.0221125 0.0336036 2.72361 -0.659373 1.51173 0.0336036 0.0225015 0.0336036 0 0 0 0 0 0 +LA 0.333641 +SE +ET PH +ID 4356 +TI 1771360830.565697276 +CC NStripHits 2 +PE 81.62 +PP 2.14158 0.19078 -0.816391 +PW 0 +SE +ET CO +ID 4357 +TI 1771360830.566919909 +CC NStripHits 4 +PQ 0.587037 +SQ 2 +CT 0 1 +TL 1 +TE 30.5531 +CE 144.679 1.06197 30.5531 1.01163 +CD 0.395484 -0.366736 -0.350766 0.0336036 0.0247126 0.0336036 1.09392 -0.111549 -4.54139 0.0336036 0.0266077 0.0336036 0 0 0 0 0 0 +LA 4.25609 +SE +ET PH +ID 4358 +TI 1771360830.567684742 +CC NStripHits 2 +PE 81.3134 +PP 3.77127 0.33345 -0.350766 +PW 0 +SE +ET UN +ID 4359 +TI 1771360830.568926809 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 229.532 +SE +ID 4360 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 232.127049) +BD GR Veto +PQ 0.425392 +SE +ET PH +ID 4361 +TI 1771360830.570598109 +CC NStripHits 3 +PE 295.912 +PP -0.419359 0.182455 2.21017 +PW 0 +SE +ET PH +ID 4362 +TI 1771360830.571724959 +CC NStripHits 2 +PE 81.0949 +PP 2.14158 0.0935398 -4.54139 +PW 0 +SE +ID 4363 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.917243) +QA StripPairing (GR Hit: Detector ID 0 and Energy 186.070551) +BD GR Veto +PQ 7.93205 +SE +ET PH +ID 4364 +TI 1771360830.573791409 +CC NStripHits 2 +PE 118.941 +PP 3.88767 -0.138152 -1.16561 +PW 0 +SE +ET PH +ID 4365 +TI 1771360830.574084259 +CC NStripHits 2 +PE 31.3037 +PP 2.14158 -0.138435 0.464078 +PW 0 +SE +ET PH +ID 4366 +TI 1771360830.579414426 +CC NStripHits 4 +PE 278.25 +PP 4.23689 -0.598279 -0.583578 +PW 0 +SE +ET UN +ID 4367 +TI 1771360830.579950309 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7215 +SE +ET UN +ID 4368 +TI 1771360830.581419076 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4487 +SE +ID 4369 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4370 +TI 1771360830.586871093 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4371 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.291565) (Strip hit removed with energy 19.877774) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.842931)) +BD GR Veto +PQ 0.604644 +SE +ET CO +ID 4372 +TI 1771360830.590479193 +CC NStripHits 6 +PQ 3.99474 +SQ 3 +CT 0.0188165 0.724204 +TL 1 +TE 77.7741 +CE 158.765 1.81813 77.7741 1.00077 +CD -2.51467 -0.673384 -0.234359 0.0336036 0.022421 0.0336036 -2.16545 0.281044 -0.816391 0.0336036 0.0406166 0.0336036 0 0 0 0 0 0 +LA 1.15047 +SE +ET PH +ID 4373 +TI 1771360830.590603726 +CC NStripHits 2 +PE 78.1213 +PP 4.3533 0.266255 -0.816391 +PW 0 +SE +ET PH +ID 4374 +TI 1771360830.591483843 +CC NStripHits 2 +PE 31.9639 +PP -2.51467 -0.114633 0.464078 +PW 0 +SE +ET PH +ID 4375 +TI 1771360830.592497693 +CC NStripHits 2 +PE 80.1486 +PP 0.861109 0.325185 -4.6578 +PW 0 +SE +ET PH +ID 4376 +TI 1771360830.593180309 +CC NStripHits 2 +PE 32.0293 +PP 1.09392 -0.903447 -1.74764 +PW 0 +SE +ET PH +ID 4377 +TI 1771360830.593481976 +CC NStripHits 2 +PE 158.359 +PP 1.09392 0.375133 1.27892 +PW 0 +SE +ET PH +ID 4378 +TI 1771360830.594012459 +CC NStripHits 2 +PE 144.522 +PP -2.74748 0.0915249 -1.98045 +PW 0 +SE +ID 4379 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.230011) +BD GR Veto +PQ 0.584428 +SE +ET PH +ID 4380 +TI 1771360830.594878843 +CC NStripHits 2 +PE 82.6734 +PP -2.39827 0.251705 -2.67889 +PW 0 +SE +ET PH +ID 4381 +TI 1771360830.596158693 +CC NStripHits 3 +PE 117.02 +PP 4.12048 -0.981973 0.580484 +PW 0 +SE +ID 4382 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.566529) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 78.402526)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 23.866162) +BD GR Veto +PQ 0.166421 +SE +ID 4383 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 356.164612) +BD GR Veto +PQ 0.580005 +SE +ET PH +ID 4384 +TI 1771360830.597862226 +CC NStripHits 2 +PE 55.5539 +PP -0.768578 -1.16849 -4.54139 +PW 0 +SE +ET PH +ID 4385 +TI 1771360830.599718876 +CC NStripHits 3 +PE 143.447 +PP 2.14158 0.00997817 -0.816391 +PW 0 +SE +ET PH +ID 4386 +TI 1771360830.600344976 +CC NStripHits 2 +PE 131.691 +PP -2.04905 0.234346 -1.39842 +PW 0 +SE +ID 4387 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 365.822139) +BD GR Veto +PQ 0.843272 +SE +ET PH +ID 4388 +TI 1771360830.601883276 +CC NStripHits 2 +PE 77.6207 +PP 4.23689 -0.835774 -3.95936 +PW 0 +SE +ID 4389 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.080946) +BD GR Veto +PQ 0.0576194 +SE +ET PH +ID 4390 +TI 1771360830.612589926 +CC NStripHits 4 +PE 202.39 +PP -1.00139 0.333931 -2.7953 +PW 0 +SE +ID 4391 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.862316) +BD GR Veto +PQ 0.00323035 +SE +ET UN +ID 4392 +TI 1771360830.614188710 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 116.152 +SE +ID 4393 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 151.897000) +BD GR Veto +PQ 1.5995 +SE +ID 4394 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 48.004374) +BD GR Veto +PQ 0.0522394 +SE +ID 4395 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.455746) (Strip hit removed with energy 14.586879) +QA StripPairing (GR Hit: Detector ID 0 and Energy 196.303861) +BD GR Veto +PQ 0.340626 +SE +ID 4396 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.818973) +BD GR Veto +PQ 0.782851 +SE +ET PH +ID 4397 +TI 1771360830.619597293 +CC NStripHits 2 +PE 84.889 +PP 2.72361 0.356086 -2.21327 +PW 0 +SE +ET PH +ID 4398 +TI 1771360830.619730476 +CC NStripHits 3 +PE 184.54 +PP 0.977516 -0.246113 -3.02811 +PW 0 +SE +ET UN +ID 4399 +TI 1771360830.620996343 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.0659 +SE +ET PH +ID 4400 +TI 1771360830.621120127 +CC NStripHits 2 +PE 83.6903 +PP 2.37439 0.139125 -1.51483 +PW 0 +SE +ET UN +ID 4401 +TI 1771360830.621967927 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4402 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.841987) +BD GR Veto +PQ 0.372253 +SE +ET PH +ID 4403 +TI 1771360830.624256060 +CC NStripHits 2 +PE 67.295 +PP 0.861109 0.197134 -1.51483 +PW 0 +SE +ID 4404 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.357946) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 31.430224)) (GR Hit: Detector ID 0 and Energy 108.768100) +BD GR Veto +PQ 0.116042 +SE +ET UN +ID 4405 +TI 1771360830.625388010 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 221.412 +SE +ID 4406 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.195945)) (GR Hit: Detector ID 0 and Energy 82.301532) +BD GR Veto +PQ 20.0149 +SE +ID 4407 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (43.820068)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 59.938475)) (GR Hit: Detector ID 0 and Energy 150.361332) +BD GR Veto +PQ 43.8201 +SE +ET UN +ID 4408 +TI 1771360830.630572360 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4409 +TI 1771360830.631373460 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 4410 +TI 1771360830.631892127 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 4411 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 57.412653) +BD GR Veto +PQ 0.00656427 +SE +ID 4412 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4413 +TI 1771360830.632800543 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 381.451 +SE +ID 4414 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.915476) +BD GR Veto +PQ 0.097584 +SE +ET UN +ID 4415 +TI 1771360830.634041143 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4416 +TI 1771360830.634328593 +CC NStripHits 3 +PE 134.598 +PP 1.67595 0.0904831 1.39533 +PW 0 +SE +ET PH +ID 4417 +TI 1771360830.634976193 +CC NStripHits 2 +PE 43.7621 +PP 2.6072 -0.0524665 0.813297 +PW 0 +SE +ID 4418 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 108.446809) +BD GR Veto +PQ 0.375013 +SE +ID 4419 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ +SE +ET PH +ID 4420 +TI 1771360830.637264427 +CC NStripHits 2 +PE 45.3437 +PP -2.63108 0.3657 2.32658 +PW 0 +SE +ID 4421 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 41.405784) +BD GR Veto +PQ 0.00411633 +SE +ET PH +ID 4422 +TI 1771360830.638653877 +CC NStripHits 3 +PE 77.4532 +PP 3.77127 0.310337 -3.72655 +PW 0 +SE +ET PH +ID 4423 +TI 1771360830.639536777 +CC NStripHits 2 +PE 29.2079 +PP -2.51467 0.353127 -0.00154687 +PW 0 +SE +ID 4424 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.545426) +BD GR Veto +PQ 1.064 +SE +ET PH +ID 4425 +TI 1771360830.643482594 +CC NStripHits 2 +PE 81.1864 +PP 3.77127 -0.155562 -4.07577 +PW 0 +SE +ET PH +ID 4426 +TI 1771360830.646268444 +CC NStripHits 2 +PE 29.7621 +PP 0.279078 0.239985 -2.09686 +PW 0 +SE +ET UN +ID 4427 +TI 1771360830.647497610 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 265.684 +SE +ID 4428 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.800892) +BD GR Veto +PQ 0.0325234 +SE +ET PH +ID 4429 +TI 1771360830.647971294 +CC NStripHits 2 +PE 35.8253 +PP -2.39827 0.359813 -4.42498 +PW 0 +SE +ID 4430 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.130940) +BD GR Veto +PQ 0.0152113 +SE +ET PH +ID 4431 +TI 1771360830.649467910 +CC NStripHits 3 +PE 79.1446 +PP -1.46702 0.0821593 -1.98045 +PW 0 +SE +ET UN +ID 4432 +TI 1771360830.649752877 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4433 +TI 1771360830.653156044 +CC NStripHits 2 +PE 79.8554 +PP 0.395484 0.125295 1.04611 +PW 0 +SE +ID 4434 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.341232) +BD GR Veto +PQ 0.809902 +SE +ET PH +ID 4435 +TI 1771360830.653631294 +CC NStripHits 2 +PE 56.7412 +PP -1.69983 0.346146 -2.9117 +PW 0 +SE +ET UN +ID 4436 +TI 1771360830.653851860 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 20.9966 +SE +ET PH +ID 4437 +TI 1771360830.655037960 +CC NStripHits 3 +PE 356.381 +PP -2.74748 0.279069 -1.28202 +PW 0 +SE +ET UN +ID 4438 +TI 1771360830.656255010 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.982 +SE +ID 4439 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 160.961905) (GR Hit: Detector ID 0 and Energy 169.405580) +BD GR Veto +PQ 4.90542 +SE +ET UN +ID 4440 +TI 1771360830.658734160 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4441 +TI 1771360830.660259794 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 229.209 +SE +ET CO +ID 4442 +TI 1771360830.660487077 +CC NStripHits 7 +PQ 15.5438 +SQ 3 +CT 0.0768953 0.124689 +TL 1 +TE 78.8677 +CE 282.478 2.04058 78.8677 1.01647 +CD 3.18923 -0.0946461 -1.51483 0.0336036 0.0268169 0.0336036 3.42205 -0.510955 -1.86405 0.0336036 0.0233627 0.0336036 0 0 0 0 0 0 +LA 0.591162 +SE +ET PH +ID 4443 +TI 1771360830.662015077 +CC NStripHits 2 +PE 74.7515 +PP -1.35061 0.363339 0.114859 +PW 0 +SE +ET PH +ID 4444 +TI 1771360830.663114544 +CC NStripHits 2 +PE 155.885 +PP -2.04905 0.0561338 2.09377 +PW 0 +SE +ET PH +ID 4445 +TI 1771360830.663376794 +CC NStripHits 2 +PE 139.196 +PP -1.81623 -0.679115 -3.72655 +PW 0 +SE +ET PH +ID 4446 +TI 1771360830.666001577 +CC NStripHits 2 +PE 69.0184 +PP 1.32673 0.275116 1.39533 +PW 0 +SE +ID 4447 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4448 +TI 1771360830.669191411 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9175 +SE +ID 4449 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (183.535761)) (GR Hit: Detector ID 0 and Energy 300.614128) +BD GR Veto +PQ 183.536 +SE +ET PH +ID 4450 +TI 1771360830.671550194 +CC NStripHits 2 +PE 80.3129 +PP -0.419359 0.371626 -2.67889 +PW 0 +SE +ET UN +ID 4451 +TI 1771360830.672816927 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 9 +PE 347.334 +SE +ET CO +ID 4452 +TI 1771360830.673960311 +CC NStripHits 4 +PQ 3.42942 +SQ 2 +CT 0.553805 0.446195 +TL 1 +TE 143.653 +CE 157.62 1.41267 143.653 1.01231 +CD -1.1178 -0.057333 0.580484 0.0336036 0.0270996 0.0336036 -2.04905 -0.996374 1.04611 0.0336036 0.0195518 0.0336036 0 0 0 0 0 0 +LA 1.40208 +SE +ET PH +ID 4453 +TI 1771360830.674449427 +CC NStripHits 2 +PE 78.0054 +PP -2.74748 0.205926 -0.583578 +PW 0 +SE +ET CO +ID 4454 +TI 1771360830.674890061 +CC NStripHits 6 +PQ 1.04329 +SQ 2 +CT 0 1 +TL 1 +TE 133.874 +CE 168.519 1.01651 133.874 1.43573 +CD 2.14158 -0.705706 1.86095 0.0336036 0.0221873 0.0336036 1.55955 -0.459299 2.32658 0.0336036 0.0238396 0.0336036 0 0 0 0 0 0 +LA 0.785039 +SE +ID 4455 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.778089) +BD GR Veto +PQ 0.281197 +SE +ET PH +ID 4456 +TI 1771360830.675758061 +CC NStripHits 4 +PE 382.345 +PP -1.81623 -0.262748 0.813297 +PW 0 +SE +ET PH +ID 4457 +TI 1771360830.676885027 +CC NStripHits 2 +PE 75.7971 +PP 4.00408 -0.133288 -1.74764 +PW 0 +SE +ET PH +ID 4458 +TI 1771360830.677578461 +CC NStripHits 2 +PE 149.293 +PP 2.25798 -0.169637 -1.28202 +PW 0 +SE +ET PH +ID 4459 +TI 1771360830.679081594 +CC NStripHits 2 +PE 60.8409 +PP 0.395484 0.364722 -4.54139 +PW 0 +SE +ID 4460 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 147.336629) +BD GR Veto +PQ 0.08224 +SE +ET PH +ID 4461 +TI 1771360830.679947027 +CC NStripHits 2 +PE 164.807 +PP 1.55955 0.0187211 1.04611 +PW 0 +SE +ET PH +ID 4462 +TI 1771360830.680911261 +CC NStripHits 2 +PE 69.2867 +PP 1.32673 0.269154 0.347672 +PW 0 +SE +ET PH +ID 4463 +TI 1771360830.681282428 +CC NStripHits 3 +PE 78.5169 +PP -0.652172 -0.0584817 -2.56248 +PW 0 +SE +ET UN +ID 4464 +TI 1771360830.681549394 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 51.6045 +SE +ET PH +ID 4465 +TI 1771360830.682556794 +CC NStripHits 2 +PE 109.002 +PP 0.0462656 0.362583 -2.9117 +PW 0 +SE +ID 4466 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4467 +TI 1771360830.683637878 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8863 +SE +ET UN +ID 4468 +TI 1771360830.683797311 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4469 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4470 +TI 1771360830.684345711 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4471 +TI 1771360830.684868578 +CC NStripHits 3 +PE 202.035 +PP 0.744703 -0.0131863 1.39533 +PW 0 +SE +ID 4472 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 337.329097) +BD GR Veto +PQ 0.000204785 +SE +ID 4473 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.570180) +BD GR Veto +PQ +SE +ET PH +ID 4474 +TI 1771360830.687282644 +CC NStripHits 2 +PE 80.0846 +PP 2.02517 -0.657624 -2.7953 +PW 0 +SE +ET PH +ID 4475 +TI 1771360830.687523961 +CC NStripHits 2 +PE 81.1364 +PP 0.977516 0.354181 2.09377 +PW 0 +SE +ET PH +ID 4476 +TI 1771360830.687772578 +CC NStripHits 2 +PE 62.97 +PP 0.0462656 -1.05603 0.114859 +PW 0 +SE +ET PH +ID 4477 +TI 1771360830.688758044 +CC NStripHits 2 +PE 106.841 +PP 2.14158 -1.11036 -0.350766 +PW 0 +SE +ET UN +ID 4478 +TI 1771360830.690525894 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6718 +SE +ET UN +ID 4479 +TI 1771360830.690864728 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4480 +TI 1771360830.692262928 +CC NStripHits 2 +PE 80.2888 +PP -1.58342 0.168746 -0.234359 +PW 0 +SE +ID 4481 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 146.818742) +BD GR Veto +PQ 5.90662 +SE +ID 4482 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.575608) +BD GR Veto +PQ 0.00473916 +SE +ET PH +ID 4483 +TI 1771360830.694720711 +CC NStripHits 2 +PE 127.425 +PP 3.18923 0.325263 -3.95936 +PW 0 +SE +ID 4484 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.749795) +BD GR Veto +PQ 0.09229 +SE +ET UN +ID 4485 +TI 1771360830.697910678 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 47.3714 +SE +ET PH +ID 4486 +TI 1771360830.698192711 +CC NStripHits 2 +PE 79.9099 +PP 2.37439 0.0466691 -4.19217 +PW 0 +SE +ET PH +ID 4487 +TI 1771360830.698364044 +CC NStripHits 2 +PE 82.5737 +PP -0.535766 0.0159393 2.32658 +PW 0 +SE +ET PH +ID 4488 +TI 1771360830.699307928 +CC NStripHits 3 +PE 276.236 +PP 1.67595 -0.61456 -0.350766 +PW 0 +SE +ET PH +ID 4489 +TI 1771360830.700245911 +CC NStripHits 2 +PE 191.088 +PP 4.00408 -0.386332 -3.84295 +PW 0 +SE +ID 4490 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.586844) +BD GR Veto +PQ 0.434956 +SE +ET PH +ID 4491 +TI 1771360830.701453745 +CC NStripHits 2 +PE 50.6984 +PP 2.95642 -1.15713 -1.86405 +PW 0 +SE +ET PH +ID 4492 +TI 1771360830.701777878 +CC NStripHits 2 +PE 232.098 +PP 0.628297 -0.619926 -1.98045 +PW 0 +SE +ET UN +ID 4493 +TI 1771360830.702012895 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 77.2222 +SE +ID 4494 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 111.299282) +BD GR Veto +PQ 5.55197 +SE +ET PH +ID 4495 +TI 1771360830.704015395 +CC NStripHits 2 +PE 210.639 +PP -0.768578 -0.12625 1.51173 +PW 0 +SE +ET PH +ID 4496 +TI 1771360830.704917578 +CC NStripHits 2 +PE 81.5175 +PP 2.14158 0.296617 2.6758 +PW 0 +SE +ET UN +ID 4497 +TI 1771360830.705813945 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.1737 +SE +ET UN +ID 4498 +TI 1771360830.710008528 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.904 +SE +ET UN +ID 4499 +TI 1771360830.710112795 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4500 +TI 1771360830.712074445 +CC NStripHits 2 +PE 81.1169 +PP -2.04905 -0.240355 -3.14452 +PW 0 +SE +ET PH +ID 4501 +TI 1771360830.712283661 +CC NStripHits 2 +PE 119.011 +PP 2.72361 -0.166102 -2.44608 +PW 0 +SE +ET UN +ID 4502 +TI 1771360830.712721995 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 4503 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.214943) +BD GR Veto +PQ 1.01992 +SE +ET UN +ID 4504 +TI 1771360830.713897728 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4505 +TI 1771360830.714063828 +CC NStripHits 2 +PE 82.4257 +PP -2.74748 -0.291149 -0.583578 +PW 0 +SE +ET PH +ID 4506 +TI 1771360830.714345361 +CC NStripHits 2 +PE 92.1788 +PP -1.2342 -1.17026 1.74455 +PW 0 +SE +ET UN +ID 4507 +TI 1771360830.714524511 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6518 +SE +ID 4508 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 149.213571) +BD GR Veto +PQ 0.0543083 +SE +ET PH +ID 4509 +TI 1771360830.715766078 +CC NStripHits 2 +PE 79.2209 +PP 2.25798 0.374301 -3.95936 +PW 0 +SE +ET PH +ID 4510 +TI 1771360830.715860111 +CC NStripHits 4 +PE 172.402 +PP 2.14158 -0.321956 -1.74764 +PW 0 +SE +ID 4511 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.099053) +BD GR Veto +PQ 0.0103594 +SE +ET PH +ID 4512 +TI 1771360830.719102428 +CC NStripHits 2 +PE 81.3865 +PP 0.162672 0.341078 2.6758 +PW 0 +SE +ET PH +ID 4513 +TI 1771360830.719397395 +CC NStripHits 3 +PE 135.613 +PP -1.69983 -0.479398 0.813297 +PW 0 +SE +ET UN +ID 4514 +TI 1771360830.722165612 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4515 +TI 1771360830.723552495 +CC NStripHits 2 +PE 207.729 +PP 0.628297 0.069056 2.44298 +PW 0 +SE +ET PH +ID 4516 +TI 1771360830.724578112 +CC NStripHits 2 +PE 30.1304 +PP 0.0462656 -0.492359 1.51173 +PW 0 +SE +ET UN +ID 4517 +TI 1771360830.725271095 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.996 +SE +ET CO +ID 4518 +TI 1771360830.726505845 +CC NStripHits 5 +PQ 9.55584 +SQ 2 +CT 0 1 +TL 1 +TE 96.549 +CE 164.727 1.23446 96.549 1.39882 +CD -2.04905 0.223689 1.97736 0.0336036 0.0335574 0.0336036 2.84002 -0.471599 -0.467172 0.0336036 0.0237085 0.0336036 0 0 0 0 0 0 +LA 5.51019 +SE +ID 4519 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 138.869754) +BD GR Veto +PQ 0.00240245 +SE +ET PH +ID 4520 +TI 1771360830.728328045 +CC NStripHits 2 +PE 105.554 +PP 3.88767 0.0854381 -0.699984 +PW 0 +SE +ET PH +ID 4521 +TI 1771360830.732973295 +CC NStripHits 2 +PE 88.5704 +PP -0.186547 0.247097 -0.699984 +PW 0 +SE +ET UN +ID 4522 +TI 1771360830.734120528 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4523 +TI 1771360830.736743112 +CC NStripHits 3 +PE 80.8694 +PP -1.1178 0.167699 2.21017 +PW 0 +SE +ID 4524 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.387935) (Strip hit removed with energy 18.284079) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.566211) +BD GR Veto +PQ 1.04878 +SE +ID 4525 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 85.379665) +BD GR Veto +PQ 0.0407527 +SE +ET CO +ID 4526 +TI 1771360830.738545428 +CC NStripHits 5 +PQ 0.991836 +SQ 2 +CT 0 1 +TL 1 +TE 59.4983 +CE 294.879 1.37737 59.4983 1.01365 +CD 1.44314 0.153539 -1.16561 0.0336036 0.03015 0.0336036 1.79236 -0.383721 -0.816391 0.0336036 0.0245986 0.0336036 0 0 0 0 0 0 +LA 0.729765 +SE +ET PH +ID 4527 +TI 1771360830.738884828 +CC NStripHits 2 +PE 49.2899 +PP 1.90877 0.339614 0.114859 +PW 0 +SE +ET PH +ID 4528 +TI 1771360830.740018845 +CC NStripHits 4 +PE 302.605 +PP 3.65486 -0.0487046 -3.26092 +PW 0 +SE +ET PH +ID 4529 +TI 1771360830.741819712 +CC NStripHits 3 +PE 369.275 +PP 2.4908 -0.0684654 2.21017 +PW 0 +SE +ET PH +ID 4530 +TI 1771360830.742244829 +CC NStripHits 2 +PE 78.1892 +PP -2.74748 -0.829345 -1.86405 +PW 0 +SE +ID 4531 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (164.174147)) (GR Hit: Detector ID 0 and Energy 167.702069) +BD GR Veto +PQ 164.174 +SE +ET CO +ID 4532 +TI 1771360830.745788195 +CC NStripHits 5 +PQ 52.5944 +SQ 2 +CT 0 1 +TL 1 +TE 83.4008 +CE 128.081 1.4864 83.4008 2.00841 +CD 1.44314 -0.139093 -3.49373 0.0336036 0.0264014 0.0336036 1.79236 0.36407 -4.19217 0.0336036 0.0263415 0.0336036 0 0 0 0 0 0 +LA 0.928949 +SE +ET UN +ID 4533 +TI 1771360830.745875262 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4534 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.010946) +BD GR Veto +PQ 0.42969 +SE +ET PH +ID 4535 +TI 1771360830.747882679 +CC NStripHits 2 +PE 80.402 +PP 2.37439 0.193745 1.86095 +PW 0 +SE +ET UN +ID 4536 +TI 1771360830.749586395 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 4537 +TI 1771360830.750230129 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.2209 +SE +ET UN +ID 4538 +TI 1771360830.751843212 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 356.147 +SE +ID 4539 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 4540 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.449866) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.102023) +BD GR Veto +PQ 7.35583 +SE +ET UN +ID 4541 +TI 1771360830.754516512 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4542 +TI 1771360830.755183179 +CC NStripHits 2 +PE 102.209 +PP 0.861109 0.375455 -0.234359 +PW 0 +SE +ID 4543 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 99.726795) +BD GR Veto +PQ 0.0142086 +SE +ET PH +ID 4544 +TI 1771360830.757473079 +CC NStripHits 3 +PE 68.6382 +PP -2.16545 0.22451 0.929703 +PW 0 +SE +ET PH +ID 4545 +TI 1771360830.759158795 +CC NStripHits 2 +PE 71.5012 +PP 3.88767 0.375966 -3.72655 +PW 0 +SE +ET PH +ID 4546 +TI 1771360830.759327162 +CC NStripHits 2 +PE 81.993 +PP 2.84002 0.289009 -0.816391 +PW 0 +SE +ID 4547 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 152.389844) +BD GR Veto +PQ 0.0719148 +SE +ID 4548 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 4549 +TI 1771360830.760272129 +CC NStripHits 2 +PE 106.012 +PP 3.77127 0.375361 -0.350766 +PW 0 +SE +ET UN +ID 4550 +TI 1771360830.761313379 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4551 +TI 1771360830.764044946 +CC NStripHits 3 +PE 110.149 +PP 3.18923 -0.957215 -1.98045 +PW 0 +SE +ID 4552 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.026946) +BD GR Veto +PQ 0.312983 +SE +ET PH +ID 4553 +TI 1771360830.766224479 +CC NStripHits 2 +PE 70.2501 +PP -1.00139 0.161054 2.55939 +PW 0 +SE +ET PH +ID 4554 +TI 1771360830.766636179 +CC NStripHits 4 +PE 191.852 +PP 0.162672 0.365551 -2.67889 +PW 0 +SE +ID 4555 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 355.907277) +BD GR Veto +PQ 0.00701474 +SE +ET PH +ID 4556 +TI 1771360830.772383246 +CC NStripHits 2 +PE 80.0955 +PP 3.07283 -0.987686 -4.30858 +PW 0 +SE +ET PH +ID 4557 +TI 1771360830.772629212 +CC NStripHits 2 +PE 238.491 +PP -0.652172 -0.0463384 -1.74764 +PW 0 +SE +ET PH +ID 4558 +TI 1771360830.774132912 +CC NStripHits 2 +PE 115.501 +PP -0.0701406 -0.0714265 -1.86405 +PW 0 +SE +ET PH +ID 4559 +TI 1771360830.774707996 +CC NStripHits 2 +PE 80.4609 +PP 2.95642 0.323359 2.32658 +PW 0 +SE +ET PH +ID 4560 +TI 1771360830.775064512 +CC NStripHits 2 +PE 80.3254 +PP 0.511891 -0.899175 2.21017 +PW 0 +SE +ET PH +ID 4561 +TI 1771360830.776732796 +CC NStripHits 2 +PE 82.5225 +PP 2.02517 0.308002 -0.234359 +PW 0 +SE +ID 4562 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.063527) +BD GR Veto +PQ 0.000332363 +SE +ET CO +ID 4563 +TI 1771360830.780486829 +CC NStripHits 4 +PQ 0.296373 +SQ 2 +CT 0 1 +TL 1 +TE 62.628 +CE 113.674 1.01864 62.628 1.02067 +CD 3.42205 0.225944 0.464078 0.0336036 0.0337573 0.0336036 3.18923 0.370058 0.347672 0.0336036 0.0226734 0.0336036 0 0 0 0 0 0 +LA 0.29753 +SE +ET PH +ID 4564 +TI 1771360830.781686229 +CC NStripHits 3 +PE 99.0253 +PP 2.02517 -0.244755 -1.74764 +PW 0 +SE +ID 4565 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.975793) +BD GR Veto +PQ 0.430692 +SE +ID 4566 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.254449) +BD GR Veto +PQ 20.5653 +SE +ID 4567 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 4568 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.973659) +BD GR Veto +PQ 0.30707 +SE +ET PH +ID 4569 +TI 1771360830.785582579 +CC NStripHits 2 +PE 63.4183 +PP -2.74748 0.315766 -3.84295 +PW 0 +SE +ET PH +ID 4570 +TI 1771360830.785736713 +CC NStripHits 2 +PE 54.4283 +PP -1.00139 -1.12151 -1.74764 +PW 0 +SE +ET UN +ID 4571 +TI 1771360830.785950629 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.5026 +SE +ET PH +ID 4572 +TI 1771360830.788366746 +CC NStripHits 2 +PE 62.5738 +PP 1.21033 0.36835 -1.63123 +PW 0 +SE +ET UN +ID 4573 +TI 1771360830.788893063 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1176 +SE +ET UN +ID 4574 +TI 1771360830.790460029 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.8655 +SE +ID 4575 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.290304) +QA StripPairing (Best reduced chi square is not below 25 (109.628732)) (GR Hit: Detector ID 0 and Energy 253.456835) +BD GR Veto +PQ 109.629 +SE +ID 4576 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 23.852773)) (GR Hit: Detector ID 0 and Energy 80.211061) +BD GR Veto +PQ 19.4955 +SE +ET PH +ID 4577 +TI 1771360830.791586063 +CC NStripHits 2 +PE 155.877 +PP 2.37439 -0.459719 1.04611 +PW 0 +SE +ET PH +ID 4578 +TI 1771360830.791670213 +CC NStripHits 2 +PE 81.5761 +PP 0.162672 0.289268 -2.9117 +PW 0 +SE +ET UN +ID 4579 +TI 1771360830.792001479 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4580 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.437979) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.402965) +BD GR Veto +PQ 0.0451349 +SE +ET PH +ID 4581 +TI 1771360830.796985546 +CC NStripHits 2 +PE 82.0988 +PP 1.90877 0.322583 -1.86405 +PW 0 +SE +ID 4582 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (164.827798)) (GR Hit: Detector ID 0 and Energy 153.960180) +BD GR Veto +PQ 164.828 +SE +ID 4583 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.660431) +BD GR Veto +PQ 0.00178502 +SE +ET PH +ID 4584 +TI 1771360830.802402546 +CC NStripHits 2 +PE 80.9166 +PP 0.628297 0.20921 1.27892 +PW 0 +SE +ET PH +ID 4585 +TI 1771360830.803415680 +CC NStripHits 2 +PE 75.2105 +PP 2.14158 0.33705 -1.39842 +PW 0 +SE +ET PH +ID 4586 +TI 1771360830.804105380 +CC NStripHits 2 +PE 63.8136 +PP -0.186547 0.363715 -2.21327 +PW 0 +SE +ET UN +ID 4587 +TI 1771360830.804869130 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4588 +TI 1771360830.806574513 +CC NStripHits 3 +PE 149.213 +PP 1.79236 0.32898 -3.14452 +PW 0 +SE +ID 4589 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.502450) +BD GR Veto +PQ 3.35136 +SE +ID 4590 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.224639) +BD GR Veto +PQ 12.6767 +SE +ET UN +ID 4591 +TI 1771360830.811418280 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.9732 +SE +ID 4592 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.328108) +QA StripPairing (Best reduced chi square is not below 25 (37.966420)) (GR Hit: Detector ID 0 and Energy 108.326759) +BD GR Veto +PQ 37.9664 +SE +ET PH +ID 4593 +TI 1771360830.812605530 +CC NStripHits 2 +PE 88.9672 +PP 1.55955 0.108431 -0.467172 +PW 0 +SE +ET PH +ID 4594 +TI 1771360830.812705396 +CC NStripHits 2 +PE 70.5666 +PP -0.884984 0.065973 2.21017 +PW 0 +SE +ET PH +ID 4595 +TI 1771360830.814995580 +CC NStripHits 2 +PE 62.3857 +PP 0.395484 0.363739 0.231266 +PW 0 +SE +ID 4596 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.556158) +BD GR Veto +PQ 1.36326 +SE +ET PH +ID 4597 +TI 1771360830.815999780 +CC NStripHits 3 +PE 152.194 +PP -1.1178 0.0965182 -3.95936 +PW 0 +SE +ET UN +ID 4598 +TI 1771360830.816978846 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.301 +SE +ID 4599 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.642775) +BD GR Veto +PQ 0.495102 +SE +ID 4600 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 140.734432) +BD GR Veto +PQ 0.00081604 +SE +ET PH +ID 4601 +TI 1771360830.817863296 +CC NStripHits 3 +PE 191.622 +PP -1.58342 0.361215 1.27892 +PW 0 +SE +ET PH +ID 4602 +TI 1771360830.818179546 +CC NStripHits 2 +PE 63.5133 +PP 3.65486 -1.075 -2.09686 +PW 0 +SE +ID 4603 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.659344) +BD GR Veto +PQ 0.00419694 +SE +ET PH +ID 4604 +TI 1771360830.819660513 +CC NStripHits 2 +PE 100.956 +PP -2.04905 -1.01252 -0.583578 +PW 0 +SE +ET PH +ID 4605 +TI 1771360830.820000530 +CC NStripHits 2 +PE 206.06 +PP 2.6072 -0.351073 0.231266 +PW 0 +SE +ET PH +ID 4606 +TI 1771360830.820194313 +CC NStripHits 2 +PE 105.501 +PP -1.35061 0.308933 -1.16561 +PW 0 +SE +ET PH +ID 4607 +TI 1771360830.821336580 +CC NStripHits 3 +PE 196.782 +PP 2.84002 -0.106967 2.55939 +PW 0 +SE +ET PH +ID 4608 +TI 1771360830.821648697 +CC NStripHits 3 +PE 240.361 +PP 3.65486 0.30613 -0.816391 +PW 0 +SE +ID 4609 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.066802) (Strip hit removed with energy 8.241233) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.232225) +BD GR Veto +PQ 0.0199659 +SE +ET UN +ID 4610 +TI 1771360830.822709463 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 357.336 +SE +ET PH +ID 4611 +TI 1771360830.825323313 +CC NStripHits 4 +PE 79.4435 +PP 0.279078 0.372741 -4.54139 +PW 0 +SE +ET UN +ID 4612 +TI 1771360830.827932147 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 4613 +TI 1771360830.828450580 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 101.012 +SE +ET PH +ID 4614 +TI 1771360830.828616597 +CC NStripHits 3 +PE 303.426 +PP 0.744703 -0.915038 -0.583578 +PW 0 +SE +ET UN +ID 4615 +TI 1771360830.829766697 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET UN +ID 4616 +TI 1771360830.830194597 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 149.656 +SE +ET UN +ID 4617 +TI 1771360830.830923113 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4618 +TI 1771360830.832847663 +CC NStripHits 2 +PE 80.6218 +PP -1.1178 0.328803 -3.72655 +PW 0 +SE +ET PH +ID 4619 +TI 1771360830.833625430 +CC NStripHits 2 +PE 80.5622 +PP 0.511891 -1.1625 1.39533 +PW 0 +SE +ET UN +ID 4620 +TI 1771360830.834452847 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 63.8423 +SE +ID 4621 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ +SE +ID 4622 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.792673) +BD GR Veto +PQ 0.706052 +SE +ET PH +ID 4623 +TI 1771360830.838032947 +CC NStripHits 2 +PE 30.7558 +PP -0.768578 0.0710217 1.16252 +PW 0 +SE +ID 4624 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.511538) +BD GR Veto +PQ 0.0830383 +SE +ET PH +ID 4625 +TI 1771360830.838486547 +CC NStripHits 3 +PE 212.82 +PP 0.744703 -0.153013 1.04611 +PW 0 +SE +ET PH +ID 4626 +TI 1771360830.839657347 +CC NStripHits 2 +PE 123.507 +PP 1.67595 0.203725 -1.39842 +PW 0 +SE +ET PH +ID 4627 +TI 1771360830.841294214 +CC NStripHits 2 +PE 81.0331 +PP 2.37439 0.338621 -0.816391 +PW 0 +SE +ET PH +ID 4628 +TI 1771360830.841917830 +CC NStripHits 2 +PE 62.504 +PP 2.95642 -1.15392 1.16252 +PW 0 +SE +ET UN +ID 4629 +TI 1771360830.842689180 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.2746 +SE +ET UN +ID 4630 +TI 1771360830.843177130 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET PH +ID 4631 +TI 1771360830.843601364 +CC NStripHits 2 +PE 33.7133 +PP -2.74748 -0.280764 -3.14452 +PW 0 +SE +ET UN +ID 4632 +TI 1771360830.844790130 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 157.471 +SE +ET PH +ID 4633 +TI 1771360830.846684914 +CC NStripHits 2 +PE 69.4216 +PP 0.279078 0.353759 0.813297 +PW 0 +SE +ID 4634 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.508062) +BD GR Veto +PQ 0.0328782 +SE +ET PH +ID 4635 +TI 1771360830.848021430 +CC NStripHits 3 +PE 172.882 +PP 3.65486 0.0448153 1.27892 +PW 0 +SE +ET PH +ID 4636 +TI 1771360830.850616880 +CC NStripHits 2 +PE 150.489 +PP -1.81623 0.227284 -3.61014 +PW 0 +SE +ET PH +ID 4637 +TI 1771360830.852741114 +CC NStripHits 2 +PE 53.1468 +PP -1.58342 0.363828 -1.86405 +PW 0 +SE +ET PH +ID 4638 +TI 1771360830.855255714 +CC NStripHits 3 +PE 89.9382 +PP 0.511891 -1.0722 -0.00154687 +PW 0 +SE +ID 4639 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.024540) +BD GR Veto +PQ 0.449813 +SE +ET UN +ID 4640 +TI 1771360830.856806447 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.5035 +SE +ET PH +ID 4641 +TI 1771360830.859433180 +CC NStripHits 2 +PE 80.3781 +PP -1.2342 0.348576 -2.67889 +PW 0 +SE +ET PH +ID 4642 +TI 1771360830.859750447 +CC NStripHits 2 +PE 100.835 +PP 0.977516 -0.41607 1.27892 +PW 0 +SE +ID 4643 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 87.715820) +BD GR Veto +PQ 0.36851 +SE +ET UN +ID 4644 +TI 1771360830.863673514 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.2575 +SE +ID 4645 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 153.128859) +BD GR Veto +PQ 0.000245245 +SE +ET PH +ID 4646 +TI 1771360830.864985047 +CC NStripHits 2 +PE 444.317 +PP 0.395484 -0.902478 0.114859 +PW 0 +SE +ET PH +ID 4647 +TI 1771360830.865262564 +CC NStripHits 2 +PE 28.1116 +PP 4.00408 0.089275 0.813297 +PW 0 +SE +ID 4648 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.602050) +BD GR Veto +PQ 0.54554 +SE +ID 4649 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.380527)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 28.232853)) (GR Hit: Detector ID 0 and Energy 90.593944) (GR Hit: Detector ID 0 and Energy 87.722587) +BD GR Veto +PQ 25.3805 +SE +ET PH +ID 4650 +TI 1771360830.866963564 +CC NStripHits 2 +PE 79.0904 +PP 0.628297 0.364511 -1.28202 +PW 0 +SE +ET PH +ID 4651 +TI 1771360830.868285414 +CC NStripHits 2 +PE 91.0935 +PP 0.0462656 0.368921 -1.98045 +PW 0 +SE +ET PH +ID 4652 +TI 1771360830.869884214 +CC NStripHits 2 +PE 30.2821 +PP -0.419359 0.0332777 -3.26092 +PW 0 +SE +ET CO +ID 4653 +TI 1771360830.870062364 +CC NStripHits 7 +PQ 6.42742 +SQ 2 +CT 0.516557 0.483443 +TL 1 +TE 183.49 +CE 167.413 2.47378 183.49 0.999022 +CD 1.55955 -0.125072 -3.14452 0.0336036 0.0264979 0.0336036 1.90877 0.076997 -1.28202 0.0336036 0.0285217 0.0336036 0 0 0 0 0 0 +LA 1.9057 +SE +ET UN +ID 4654 +TI 1771360830.870452964 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.5167 +SE +ET UN +ID 4655 +TI 1771360830.871394964 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.897 +SE +ID 4656 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.298276) +BD GR Veto +PQ 0.197575 +SE +ET PH +ID 4657 +TI 1771360830.874270697 +CC NStripHits 3 +PE 356.047 +PP 3.53845 0.176833 -4.54139 +PW 0 +SE +ET PH +ID 4658 +TI 1771360830.876558797 +CC NStripHits 2 +PE 99.2338 +PP 0.279078 -0.428173 -4.42498 +PW 0 +SE +ET PH +ID 4659 +TI 1771360830.877659731 +CC NStripHits 4 +PE 78.2618 +PP -2.39827 -1.00485 0.696891 +PW 0 +SE +ID 4660 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.464255) +BD GR Veto +PQ 0.0135191 +SE +ET PH +ID 4661 +TI 1771360830.879400664 +CC NStripHits 3 +PE 67.8535 +PP -1.2342 0.0649469 -0.00154687 +PW 0 +SE +ET UN +ID 4662 +TI 1771360830.882353448 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4524 +SE +ET UN +ID 4663 +TI 1771360830.882474381 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7163 +SE +ET UN +ID 4664 +TI 1771360830.882584548 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2629 +SE +ET CO +ID 4665 +TI 1771360830.883368848 +CC NStripHits 6 +PQ 0.40359 +SQ 2 +CT 0.568564 0.431436 +TL 1 +TE 1057.39 +CE 851.248 1.38776 1057.39 1.4154 +CD 3.42205 -1.13547 0.929703 0.0336036 0.0281408 0.0336036 1.79236 -0.594794 -2.09686 0.0336036 0.0228503 0.0336036 0 0 0 0 0 0 +LA 3.4797 +SE +ID 4666 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 4667 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 4668 +TI 1771360830.884478481 +CC NStripHits 2 +PE 30.2733 +PP 3.30564 -0.486822 -0.234359 +PW 0 +SE +ID 4669 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ID 4670 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 90.444440) +BD GR Veto +PQ 0.23126 +SE +ID 4671 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET UN +ID 4672 +TI 1771360830.885417931 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 74.4193 +SE +ET UN +ID 4673 +TI 1771360830.886402498 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.6509 +SE +ID 4674 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 124.760426) +BD GR Veto +PQ 0.00911004 +SE +ET CO +ID 4675 +TI 1771360830.886973231 +CC NStripHits 4 +PQ 84.125 +SQ 2 +CT 0 1 +TL 1 +TE 106.051 +CE 217.041 1.59504 106.051 1.49593 +CD 4.00408 0.254994 -1.28202 0.0336036 0.0372163 0.0336036 4.23689 0.134548 -1.39842 0.0336036 0.0296495 0.0336036 0 0 0 0 0 0 +LA 0.286804 +SE +ET PH +ID 4676 +TI 1771360830.887901614 +CC NStripHits 2 +PE 31.2997 +PP 3.18923 0.365609 -2.9117 +PW 0 +SE +ET UN +ID 4677 +TI 1771360830.889014748 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 358.085 +SE +ET PH +ID 4678 +TI 1771360830.889281631 +CC NStripHits 2 +PE 73.0626 +PP -0.884984 0.334828 -2.32967 +PW 0 +SE +ET PH +ID 4679 +TI 1771360830.889953748 +CC NStripHits 2 +PE 68.5208 +PP 1.79236 0.328941 0.580484 +PW 0 +SE +ET PH +ID 4680 +TI 1771360830.890986681 +CC NStripHits 3 +PE 81.7822 +PP 2.02517 0.0763584 -1.28202 +PW 0 +SE +ID 4681 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.753773)) (GR Hit: Detector ID 0 and Energy 48.974197) +BD GR Veto +PQ 10.8502 +SE +ET UN +ID 4682 +TI 1771360830.891406814 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 276.736 +SE +ET PH +ID 4683 +TI 1771360830.892870081 +CC NStripHits 2 +PE 140.783 +PP -0.535766 -0.0626406 -1.74764 +PW 0 +SE +ID 4684 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.320152) +BD GR Veto +PQ 0.167317 +SE +ET UN +ID 4685 +TI 1771360830.893650664 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4686 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4687 +TI 1771360830.896880598 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.7798 +SE +ID 4688 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.674689) +QA StripPairing (Best reduced chi square is not below 25 (25.595935)) (GR Hit: Detector ID 0 and Energy 26.368707) +BD GR Veto +PQ 25.5959 +SE +ET PH +ID 4689 +TI 1771360830.899174498 +CC NStripHits 2 +PE 195.681 +PP 2.02517 -0.363804 2.44298 +PW 0 +SE +ET PH +ID 4690 +TI 1771360830.900267815 +CC NStripHits 2 +PE 25.5993 +PP 2.14158 0.373933 -0.467172 +PW 0 +SE +ET PH +ID 4691 +TI 1771360830.900598398 +CC NStripHits 2 +PE 101.99 +PP -1.81623 0.360655 -3.14452 +PW 0 +SE +ET PH +ID 4692 +TI 1771360830.903389265 +CC NStripHits 2 +PE 62.7122 +PP 1.55955 0.37065 -2.9117 +PW 0 +SE +ID 4693 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.590113) +BD GR Veto +PQ 0.51809 +SE +ID 4694 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.398418) +BD GR Veto +PQ 0.0353452 +SE +ID 4695 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.701757) +QA StripPairing (Best reduced chi square is not below 25 (31.992137)) (GR Hit: Detector ID 0 and Energy 182.074099) +BD GR Veto +PQ 31.9921 +SE +ET PH +ID 4696 +TI 1771360830.908649298 +CC NStripHits 2 +PE 175.697 +PP 0.744703 -1.1463 2.32658 +PW 0 +SE +ET PH +ID 4697 +TI 1771360830.909002581 +CC NStripHits 2 +PE 91.9476 +PP 0.628297 0.341515 -3.37733 +PW 0 +SE +ET CO +ID 4698 +TI 1771360830.910587681 +CC NStripHits 4 +PQ 1.3143 +SQ 2 +CT 0.507636 0.492364 +TL 1 +TE 149.391 +CE 153.972 0.987662 149.391 0.967576 +CD -1.46702 -1.01548 1.39533 0.0336036 0.0195548 0.0336036 -0.768578 -0.453969 1.27892 0.0336036 0.0238987 0.0336036 0 0 0 0 0 0 +LA 0.903696 +SE +ET PH +ID 4699 +TI 1771360830.910857931 +CC NStripHits 2 +PE 96.5496 +PP 1.32673 -1.1514 -1.39842 +PW 0 +SE +ET PH +ID 4700 +TI 1771360830.912066931 +CC NStripHits 3 +PE 187.387 +PP -2.51467 -0.00197577 1.04611 +PW 0 +SE +ET UN +ID 4701 +TI 1771360830.916004148 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.092 +SE +ET PH +ID 4702 +TI 1771360830.918891131 +CC NStripHits 2 +PE 142.58 +PP -1.58342 -0.854209 -1.98045 +PW 0 +SE +ID 4703 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.943252) (Strip hit removed with energy 17.099148) +BD GR Veto +PQ +SE +ET PH +ID 4704 +TI 1771360830.921864932 +CC NStripHits 2 +PE 80.731 +PP 1.09392 0.0472538 -0.699984 +PW 0 +SE +ET PH +ID 4705 +TI 1771360830.922256048 +CC NStripHits 2 +PE 80.5528 +PP 1.55955 0.36718 -4.42498 +PW 0 +SE +ET PH +ID 4706 +TI 1771360830.923167348 +CC NStripHits 2 +PE 32.2287 +PP -0.768578 -0.668575 0.580484 +PW 0 +SE +ET UN +ID 4707 +TI 1771360830.923561282 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.053 +SE +ET PH +ID 4708 +TI 1771360830.924016498 +CC NStripHits 2 +PE 95.5367 +PP -0.186547 0.100604 1.86095 +PW 0 +SE +ET PH +ID 4709 +TI 1771360830.924681765 +CC NStripHits 2 +PE 61.4715 +PP 1.44314 0.293077 -1.63123 +PW 0 +SE +ET UN +ID 4710 +TI 1771360830.925657482 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 676.475 +SE +ET UN +ID 4711 +TI 1771360830.926764815 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 385.837 +SE +ID 4712 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.047677) +BD GR Veto +PQ 0.0713144 +SE +ET PH +ID 4713 +TI 1771360830.929414015 +CC NStripHits 2 +PE 80.5751 +PP -1.2342 0.371186 -1.74764 +PW 0 +SE +ET PH +ID 4714 +TI 1771360830.930475932 +CC NStripHits 2 +PE 81.3708 +PP 2.95642 0.373473 1.86095 +PW 0 +SE +ET UN +ID 4715 +TI 1771360830.930764432 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.1065 +SE +ET PH +ID 4716 +TI 1771360830.931248498 +CC NStripHits 2 +PE 148.699 +PP 2.84002 -0.969791 -0.350766 +PW 0 +SE +ET PH +ID 4717 +TI 1771360830.932999098 +CC NStripHits 2 +PE 86.1417 +PP 2.72361 -0.743893 -4.6578 +PW 0 +SE +ET CO +ID 4718 +TI 1771360830.934157565 +CC NStripHits 9 +PQ 23.4149 +SQ 4 +CT 0.055958 0.0649241 +TL 1 +TE 130.573 +CE 179.576 2.25629 130.573 2.1176 +CD 3.53845 -0.164013 -1.74764 0.0336036 0.0261467 0.0336036 1.90877 -0.44965 -0.583578 0.0336036 0.0239451 0.0336036 0 0 0 0 0 0 +LA 0.621544 +SE +ET PH +ID 4719 +TI 1771360830.934233948 +CC NStripHits 2 +PE 25.1697 +PP 1.90877 0.377305 -3.61014 +PW 0 +SE +ET PH +ID 4720 +TI 1771360830.934317698 +CC NStripHits 2 +PE 51.1576 +PP 0.0462656 -0.941991 -4.42498 +PW 0 +SE +ET PH +ID 4721 +TI 1771360830.934819698 +CC NStripHits 3 +PE 80.1789 +PP -1.46702 0.15262 -1.74764 +PW 0 +SE +ID 4722 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.427760) +BD GR Veto +PQ 0.016074 +SE +ET PH +ID 4723 +TI 1771360830.936951532 +CC NStripHits 2 +PE 44.5299 +PP 0.279078 0.380128 2.44298 +PW 0 +SE +ET UN +ID 4724 +TI 1771360830.938277398 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8238 +SE +ET CO +ID 4725 +TI 1771360830.938975432 +CC NStripHits 5 +PQ 5.07563 +SQ 2 +CT 0 1 +TL 1 +TE 62.7951 +CE 623.309 1.99131 62.7951 0.959683 +CD -0.768578 -0.768099 -3.14452 0.0336036 0.0213716 0.0336036 -0.535766 -0.755896 -1.63123 0.0336036 0.0215652 0.0336036 0 0 0 0 0 0 +LA 1.53114 +SE +ID 4726 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (165.872257)) (GR Hit: Detector ID 0 and Energy 145.126805) +BD GR Veto +PQ 165.872 +SE +ET PH +ID 4727 +TI 1771360830.939645598 +CC NStripHits 3 +PE 146.527 +PP -1.58342 0.358201 2.09377 +PW 0 +SE +ET PH +ID 4728 +TI 1771360830.940682599 +CC NStripHits 2 +PE 56.5263 +PP 1.67595 -1.10641 1.04611 +PW 0 +SE +ET UN +ID 4729 +TI 1771360830.941668399 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 4730 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 52.882844) +BD GR Veto +PQ 0.756305 +SE +ET PH +ID 4731 +TI 1771360830.945123499 +CC NStripHits 2 +PE 81.6687 +PP 1.90877 0.321055 2.55939 +PW 0 +SE +ET PH +ID 4732 +TI 1771360830.945309632 +CC NStripHits 2 +PE 188.261 +PP -2.16545 -0.0312233 -2.21327 +PW 0 +SE +ET UN +ID 4733 +TI 1771360830.946368499 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.8749 +SE +ET PH +ID 4734 +TI 1771360830.948336549 +CC NStripHits 3 +PE 338.274 +PP -2.04905 -0.951769 -0.816391 +PW 0 +SE +ID 4735 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 152.062894) +BD GR Veto +PQ 0.424933 +SE +ET UN +ID 4736 +TI 1771360830.950364715 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.0009 +SE +ET PH +ID 4737 +TI 1771360830.950637115 +CC NStripHits 2 +PE 100.978 +PP -0.0701406 -0.885268 -0.350766 +PW 0 +SE +ET PH +ID 4738 +TI 1771360830.951754515 +CC NStripHits 2 +PE 78.4594 +PP 0.628297 0.370915 2.55939 +PW 0 +SE +ET PH +ID 4739 +TI 1771360830.952315149 +CC NStripHits 2 +PE 61.1616 +PP 0.511891 0.368334 1.86095 +PW 0 +SE +ET PH +ID 4740 +TI 1771360830.955881665 +CC NStripHits 3 +PE 153.533 +PP -2.63108 -0.886331 -3.72655 +PW 0 +SE +ID 4741 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.248070) +BD GR Veto +PQ 0.0216838 +SE +ID 4742 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (37.050432)) (GR Hit: Detector ID 0 and Energy 72.352946) +BD GR Veto +PQ 37.0504 +SE +ET UN +ID 4743 +TI 1771360830.958077482 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4744 +TI 1771360830.960830199 +CC NStripHits 2 +PE 80.5896 +PP 2.37439 -0.502797 -4.07577 +PW 0 +SE +ET PH +ID 4745 +TI 1771360830.962415732 +CC NStripHits 3 +PE 307.76 +PP -0.0701406 0.129005 -2.7953 +PW 0 +SE +ET UN +ID 4746 +TI 1771360830.963674666 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.675 +SE +ET PH +ID 4747 +TI 1771360830.964452666 +CC NStripHits 2 +PE 82.7756 +PP 2.4908 -0.520171 -2.9117 +PW 0 +SE +ET PH +ID 4748 +TI 1771360830.965688616 +CC NStripHits 2 +PE 78.3076 +PP -1.00139 -0.444083 -0.467172 +PW 0 +SE +ET PH +ID 4749 +TI 1771360830.966607466 +CC NStripHits 3 +PE 66.041 +PP 0.861109 -0.792033 -4.19217 +PW 0 +SE +ID 4750 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (45.984578)) (GR Hit: Detector ID 0 and Energy 58.607880) +BD GR Veto +PQ 45.9846 +SE +ET PH +ID 4751 +TI 1771360830.968665132 +CC NStripHits 5 +PE 354.818 +PP 0.977516 -1.07173 -1.51483 +PW 0 +SE +ID 4752 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.877139) +BD GR Veto +PQ 0.863875 +SE +ET PH +ID 4753 +TI 1771360830.970306482 +CC NStripHits 2 +PE 82.3145 +PP 2.72361 0.150026 1.74455 +PW 0 +SE +ET UN +ID 4754 +TI 1771360830.973783599 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 351.12 +SE +ET UN +ID 4755 +TI 1771360830.974858599 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4756 +TI 1771360830.975839399 +CC NStripHits 2 +PE 81.268 +PP -0.884984 0.0338142 -3.84295 +PW 0 +SE +ID 4757 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (51.197056)) (GR Hit: Detector ID 0 and Energy 95.735001) +BD GR Veto +PQ 51.1971 +SE +ET UN +ID 4758 +TI 1771360830.978819716 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 4759 +TI 1771360830.979233066 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.5186 +SE +ET PH +ID 4760 +TI 1771360830.979553799 +CC NStripHits 2 +PE 170.049 +PP -1.93264 -0.893182 -4.30858 +PW 0 +SE +ID 4761 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.922626) +BD GR Veto +PQ 0.311774 +SE +ET UN +ID 4762 +TI 1771360830.980788333 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4763 +TI 1771360830.981399399 +CC NStripHits 2 +PE 77.0468 +PP -2.28186 0.329234 -1.16561 +PW 0 +SE +ID 4764 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.667325) +QA StripPairing (Best reduced chi square is not below 25 (135.603811)) (GR Hit: Detector ID 0 and Energy 81.672662) +BD GR Veto +PQ 135.604 +SE +ET UN +ID 4765 +TI 1771360830.982765449 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 4766 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4767 +TI 1771360830.984037116 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.2842 +SE +ET PH +ID 4768 +TI 1771360830.985244616 +CC NStripHits 2 +PE 81.1261 +PP 2.95642 0.237129 -4.54139 +PW 0 +SE +ET PH +ID 4769 +TI 1771360830.986391066 +CC NStripHits 2 +PE 24.4004 +PP -0.535766 -0.474311 1.39533 +PW 0 +SE +ET PH +ID 4770 +TI 1771360830.987477083 +CC NStripHits 2 +PE 173.062 +PP -2.74748 -0.439441 -0.117953 +PW 0 +SE +ID 4771 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.471226) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.890264) +BD GR Veto +PQ 10.2034 +SE +ID 4772 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 98.779413) +BD GR Veto +PQ 0.00600414 +SE +ET PH +ID 4773 +TI 1771360830.990783216 +CC NStripHits 2 +PE 81.0016 +PP 3.18923 0.330284 1.74455 +PW 0 +SE +ET PH +ID 4774 +TI 1771360830.991101699 +CC NStripHits 2 +PE 65.8899 +PP 0.395484 0.195475 -4.42498 +PW 0 +SE +ET PH +ID 4775 +TI 1771360830.991351149 +CC NStripHits 3 +PE 364.432 +PP -0.186547 -0.0521847 -1.86405 +PW 0 +SE +ET UN +ID 4776 +TI 1771360830.991670316 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3741 +SE +ID 4777 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET UN +ID 4778 +TI 1771360830.993451749 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4779 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.138304) +BD GR Veto +PQ 0.2983 +SE +ET PH +ID 4780 +TI 1771360830.995799816 +CC NStripHits 2 +PE 61.8422 +PP 3.88767 0.333325 -1.86405 +PW 0 +SE +ET PH +ID 4781 +TI 1771360830.997015583 +CC NStripHits 2 +PE 52.7507 +PP 1.79236 0.371602 -0.699984 +PW 0 +SE +ET PH +ID 4782 +TI 1771360830.998104766 +CC NStripHits 3 +PE 277.59 +PP -1.69983 -0.0981609 -3.26092 +PW 0 +SE +ET PH +ID 4783 +TI 1771360830.999854399 +CC NStripHits 3 +PE 256.727 +PP 0.162672 0.363851 0.929703 +PW 0 +SE +ID 4784 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.000643) (Strip hit removed with energy 7.667605) (Strip hit removed with energy 9.765564) (Strip hit removed with energy 7.838833) (Strip hit removed with energy 12.329513) (Strip hit removed with energy 16.020982) (Strip hit removed with energy 17.575923) (Strip hit removed with energy 12.322915) (Strip hit removed with energy 11.493931) (Strip hit removed with energy 7.947770) (Strip hit removed with energy 9.194799) (Strip hit removed with energy 14.312189) (Strip hit removed with energy 16.240531) (Strip hit removed with energy -9.221858) (Strip hit removed with energy 18.540329) +QA StripPairing (Best reduced chi square is not below 25 (42.859504)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 129.529017)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 34.480688) (GR Hit: Detector ID 0 and Energy 68.944180) (GR Hit: Detector ID 0 and Energy 2243.958918) +BD GR Veto +PQ 42.8595 +SE +ID 4785 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.562718) +QA StripPairing (Best reduced chi square is not below 25 (54.239739)) (GR Hit: Detector ID 0 and Energy 201.735460) +BD GR Veto +PQ 54.2397 +SE +ET PH +ID 4786 +TI 1771360831.003742583 +CC NStripHits 2 +PE 183.503 +PP -2.86389 -0.701925 -3.61014 +PW 0 +SE +ID 4787 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.122920) +BD GR Veto +PQ 0.683937 +SE +ET PH +ID 4788 +TI 1771360831.006885033 +CC NStripHits 2 +PE 28.2355 +PP -2.16545 0.368177 0.813297 +PW 0 +SE +ET UN +ID 4789 +TI 1771360831.007023216 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.7135 +SE +ET PH +ID 4790 +TI 1771360831.007188433 +CC NStripHits 2 +PE 162.008 +PP 2.84002 0.156464 -3.14452 +PW 0 +SE +ET CO +ID 4791 +TI 1771360831.008397100 +CC NStripHits 4 +PQ 38.4948 +SQ 2 +CT 0 1 +TL 1 +TE 54.2086 +CE 224.168 1.49834 54.2086 1.42825 +CD 2.02517 -0.712565 -3.95936 0.0336036 0.0221204 0.0336036 4.00408 -0.269759 -2.32967 0.0336036 0.0253613 0.0336036 0 0 0 0 0 0 +LA 2.60155 +SE +ET UN +ID 4792 +TI 1771360831.010357233 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 25.4575 +SE +ET PH +ID 4793 +TI 1771360831.011600900 +CC NStripHits 2 +PE 108.379 +PP 4.12048 -0.19641 -2.32967 +PW 0 +SE +ET PH +ID 4794 +TI 1771360831.011680183 +CC NStripHits 2 +PE 81.6452 +PP 2.37439 0.340211 -1.86405 +PW 0 +SE +ET PH +ID 4795 +TI 1771360831.013665866 +CC NStripHits 3 +PE 356.304 +PP 2.14158 0.174339 -2.7953 +PW 0 +SE +ID 4796 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.425311) +BD GR Veto +PQ 0.0270005 +SE +ID 4797 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 117.869607) +BD GR Veto +PQ 0.276086 +SE +ET PH +ID 4798 +TI 1771360831.015542450 +CC NStripHits 2 +PE 31.9827 +PP -2.39827 0.375235 -0.350766 +PW 0 +SE +ET PH +ID 4799 +TI 1771360831.016554916 +CC NStripHits 2 +PE 74.2253 +PP 2.14158 0.0587945 -2.9117 +PW 0 +SE +ET PH +ID 4800 +TI 1771360831.017151116 +CC NStripHits 3 +PE 158.583 +PP 2.37439 -0.528035 -1.63123 +PW 0 +SE +ET UN +ID 4801 +TI 1771360831.017490583 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4802 +TI 1771360831.018228400 +CC NStripHits 2 +PE 66.233 +PP -0.884984 0.359898 -4.30858 +PW 0 +SE +ET PH +ID 4803 +TI 1771360831.019052166 +CC NStripHits 3 +PE 134.846 +PP 4.12048 0.362161 -3.49373 +PW 0 +SE +ID 4804 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.955020) +BD GR Veto +PQ +SE +ET PH +ID 4805 +TI 1771360831.019898733 +CC NStripHits 2 +PE 136.368 +PP -0.0701406 0.187153 -0.350766 +PW 0 +SE +ID 4806 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.295242) +BD GR Veto +PQ 0.00388893 +SE +ET PH +ID 4807 +TI 1771360831.022823600 +CC NStripHits 3 +PE 78.3133 +PP -0.652172 0.0381724 -4.19217 +PW 0 +SE +ET PH +ID 4808 +TI 1771360831.024123150 +CC NStripHits 3 +PE 158.69 +PP 3.77127 -0.238844 -1.39842 +PW 0 +SE +ET UN +ID 4809 +TI 1771360831.026004533 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7812 +SE +ET PH +ID 4810 +TI 1771360831.026147200 +CC NStripHits 2 +PE 27.742 +PP -0.652172 0.348988 -0.583578 +PW 0 +SE +ET PH +ID 4811 +TI 1771360831.027397917 +CC NStripHits 2 +PE 81.6916 +PP 2.84002 0.368363 2.44298 +PW 0 +SE +ET PH +ID 4812 +TI 1771360831.027819317 +CC NStripHits 2 +PE 60.8667 +PP 2.84002 0.370269 -1.16561 +PW 0 +SE +ET PH +ID 4813 +TI 1771360831.028510367 +CC NStripHits 2 +PE 128.572 +PP 1.44314 0.0796822 -0.699984 +PW 0 +SE +ID 4814 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 142.550295) +BD GR Veto +PQ 2.27477 +SE +ET PH +ID 4815 +TI 1771360831.031189050 +CC NStripHits 3 +PE 118.018 +PP 3.42205 0.0828805 -0.00154687 +PW 0 +SE +ET UN +ID 4816 +TI 1771360831.031966183 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4817 +TI 1771360831.032150750 +CC NStripHits 2 +PE 360.119 +PP 0.628297 0.154779 -0.467172 +PW 0 +SE +ET PH +ID 4818 +TI 1771360831.032388183 +CC NStripHits 2 +PE 79.5782 +PP -1.69983 -0.397643 -3.72655 +PW 0 +SE +ET UN +ID 4819 +TI 1771360831.032617300 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.3143 +SE +ET UN +ID 4820 +TI 1771360831.032966733 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 4821 +TI 1771360831.035379733 +CC NStripHits 5 +PQ 7.73798 +SQ 2 +CT 0.64124 0.35876 +TL 1 +TE 319.744 +CE 228.237 2.04467 319.744 1.03887 +CD -1.35061 -0.452973 2.21017 0.0336036 0.0239096 0.0336036 -0.535766 -0.5925 2.44298 0.0336036 0.0228601 0.0336036 0 0 0 0 0 0 +LA 0.858859 +SE +ET PH +ID 4822 +TI 1771360831.035605383 +CC NStripHits 2 +PE 198.137 +PP 3.42205 0.274813 0.114859 +PW 0 +SE +ID 4823 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 125.738379) +BD GR Veto +PQ 7.10156 +SE +ET PH +ID 4824 +TI 1771360831.036978767 +CC NStripHits 3 +PE 82.2168 +PP 4.00408 0.215494 0.696891 +PW 0 +SE +ID 4825 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.331290) +BD GR Veto +PQ 0.199116 +SE +ID 4826 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 129.481525) +BD GR Veto +PQ 22.214 +SE +ID 4827 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 103.344802) +BD GR Veto +PQ 0.808176 +SE +ID 4828 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.983347)) (GR Hit: Detector ID 0 and Energy 180.787503) +BD GR Veto +PQ 1.69044 +SE +ET UN +ID 4829 +TI 1771360831.043627367 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.1867 +SE +ID 4830 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (107.468780)) (GR Hit: Detector ID 0 and Energy 120.265344) +BD GR Veto +PQ 107.469 +SE +ET PH +ID 4831 +TI 1771360831.045932467 +CC NStripHits 3 +PE 150.488 +PP -2.28186 -0.853892 -1.39842 +PW 0 +SE +ET UN +ID 4832 +TI 1771360831.047698717 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7945 +SE +ET PH +ID 4833 +TI 1771360831.048701400 +CC NStripHits 2 +PE 66.7594 +PP -1.1178 0.331714 2.44298 +PW 0 +SE +ET UN +ID 4834 +TI 1771360831.049018484 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 57.5567 +SE +ET PH +ID 4835 +TI 1771360831.049794634 +CC NStripHits 4 +PE 278.201 +PP -2.16545 0.287331 1.16252 +PW 0 +SE +ET UN +ID 4836 +TI 1771360831.051678017 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.411 +SE +ET UN +ID 4837 +TI 1771360831.051791567 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 83.4514 +SE +ET PH +ID 4838 +TI 1771360831.053592900 +CC NStripHits 2 +PE 71.8224 +PP -1.35061 -0.143705 0.347672 +PW 0 +SE +ET PH +ID 4839 +TI 1771360831.054939100 +CC NStripHits 3 +PE 165.592 +PP -2.04905 -0.450274 0.696891 +PW 0 +SE +ET UN +ID 4840 +TI 1771360831.059628267 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.1893 +SE +ET UN +ID 4841 +TI 1771360831.060291134 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.5805 +SE +ET UN +ID 4842 +TI 1771360831.061296534 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9487 +SE +ET UN +ID 4843 +TI 1771360831.062726801 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.2104 +SE +ET UN +ID 4844 +TI 1771360831.063194334 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 47.4074 +SE +ET PH +ID 4845 +TI 1771360831.066224601 +CC NStripHits 2 +PE 131.471 +PP 0.977516 0.221472 -1.86405 +PW 0 +SE +ET CO +ID 4846 +TI 1771360831.066532817 +CC NStripHits 5 +PQ 17.214 +SQ 2 +CT 0 1 +TL 1 +TE 90.8239 +CE 144.459 1.02664 90.8239 1.44046 +CD 1.90877 -0.704953 -2.21327 0.0336036 0.0221941 0.0336036 3.18923 0.0920908 -3.02811 0.0336036 0.0287623 0.0336036 0 0 0 0 0 0 +LA 1.7143 +SE +ID 4847 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.156135) +BD GR Veto +PQ 0.105281 +SE +ET PH +ID 4848 +TI 1771360831.071270367 +CC NStripHits 2 +PE 26.674 +PP 2.4908 0.379001 -3.84295 +PW 0 +SE +ET UN +ID 4849 +TI 1771360831.074242134 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 4850 +TI 1771360831.074456334 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 52.6494 +SE +ET PH +ID 4851 +TI 1771360831.074740934 +CC NStripHits 2 +PE 129.233 +PP -0.186547 -0.0599119 0.929703 +PW 0 +SE +ET UN +ID 4852 +TI 1771360831.075710884 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 381.229 +SE +ET PH +ID 4853 +TI 1771360831.077371767 +CC NStripHits 3 +PE 359.212 +PP -1.58342 0.256244 1.39533 +PW 0 +SE +ET PH +ID 4854 +TI 1771360831.077983701 +CC NStripHits 2 +PE 70.3603 +PP 0.162672 0.360805 2.6758 +PW 0 +SE +ET PH +ID 4855 +TI 1771360831.081146534 +CC NStripHits 3 +PE 213.439 +PP 4.23689 0.339094 1.04611 +PW 0 +SE +ET PH +ID 4856 +TI 1771360831.083014101 +CC NStripHits 2 +PE 68.1368 +PP 0.395484 0.289735 -0.00154687 +PW 0 +SE +ID 4857 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 4858 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 4859 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.589490) +BD GR Veto +PQ +SE +ID 4860 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 135.818070) (GR Hit: Detector ID 0 and Energy 218.591726) +BD GR Veto +PQ 0.076975 +SE +ID 4861 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ +SE +ET CO +ID 4862 +TI 1771360831.084959918 +CC NStripHits 5 +PQ 2.47392 +SQ 2 +CT 0 1 +TL 1 +TE 85.2106 +CE 188.29 2.14487 85.2106 0.97382 +CD -0.0701406 0.191316 1.16252 0.0336036 0.0315359 0.0336036 0.511891 0.166151 2.32658 0.0336036 0.0305471 0.0336036 0 0 0 0 0 0 +LA 1.3017 +SE +ET CO +ID 4863 +TI 1771360831.086705901 +CC NStripHits 6 +PQ 2.52578 +SQ 3 +CT 0.138149 0.16152 +TL 1 +TE 65.852 +CE 235.916 1.38204 65.852 0.975812 +CD -0.652172 -0.393879 1.16252 0.0336036 0.0245071 0.0336036 0.162672 -0.139336 1.39533 0.0336036 0.0263994 0.0336036 0 0 0 0 0 0 +LA 0.731136 +SE +ET PH +ID 4864 +TI 1771360831.087083884 +CC NStripHits 2 +PE 58.1946 +PP 3.88767 0.375484 -1.16561 +PW 0 +SE +ID 4865 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 135.802347) +BD GR Veto +PQ 0.34065 +SE +ET UN +ID 4866 +TI 1771360831.087840868 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.8185 +SE +ET UN +ID 4867 +TI 1771360831.088791134 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4868 +TI 1771360831.090580434 +CC NStripHits 2 +PE 82.8035 +PP 4.23689 0.210137 -0.117953 +PW 0 +SE +ET PH +ID 4869 +TI 1771360831.091028118 +CC NStripHits 3 +PE 357.322 +PP -1.35061 0.0804248 -1.98045 +PW 0 +SE +ID 4870 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (51.808933)) (GR Hit: Detector ID 0 and Energy 83.634775) +BD GR Veto +PQ 51.8089 +SE +ID 4871 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.980957) +BD GR Veto +PQ 8.47688 +SE +ET PH +ID 4872 +TI 1771360831.098199651 +CC NStripHits 2 +PE 80.9835 +PP -2.04905 0.222059 -3.72655 +PW 0 +SE +ET PH +ID 4873 +TI 1771360831.099939468 +CC NStripHits 2 +PE 153.353 +PP -0.0701406 -0.347845 -4.19217 +PW 0 +SE +ID 4874 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 25.925517)) (Event contains multiple hits on a single strip) +BD GR Veto +PQ 0.0478214 +SE +ID 4875 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET UN +ID 4876 +TI 1771360831.102385335 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.063 +SE +ET PH +ID 4877 +TI 1771360831.102829251 +CC NStripHits 2 +PE 210.993 +PP 2.37439 0.144852 0.464078 +PW 0 +SE +ID 4878 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.566031) +BD GR Veto +PQ 19.4161 +SE +ET CO +ID 4879 +TI 1771360831.103486185 +CC NStripHits 5 +PQ 0.308144 +SQ 2 +CT 0 1 +TL 1 +TE 147.29 +CE 206.768 1.0401 147.29 1.16433 +CD 2.4908 -0.59759 -2.56248 0.0336036 0.0228377 0.0336036 2.02517 -1.04672 -2.9117 0.0336036 0.0199552 0.0336036 0 0 0 0 0 0 +LA 0.735176 +SE +ET UN +ID 4880 +TI 1771360831.106882918 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.6895 +SE +ET UN +ID 4881 +TI 1771360831.108209035 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2748 +SE +ET CO +ID 4882 +TI 1771360831.108346918 +CC NStripHits 8 +PQ 12.1674 +SQ 3 +CT 0.000759176 0.0858523 +TL 1 +TE 160.632 +CE 179.084 1.83237 160.632 2.37417 +CD 0.744703 -0.639291 -4.54139 0.0336036 0.0226036 0.0336036 1.32673 -0.447425 -3.14452 0.0336036 0.0239679 0.0336036 0 0 0 0 0 0 +LA 1.33024 +SE +ID 4883 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.721765) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 121.400083) +BD GR Veto +PQ 3.97315 +SE +ET PH +ID 4884 +TI 1771360831.109511201 +CC NStripHits 2 +PE 30.5184 +PP 2.84002 -0.0915721 -1.39842 +PW 0 +SE +ET UN +ID 4885 +TI 1771360831.109778551 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8871 +SE +ET PH +ID 4886 +TI 1771360831.110488018 +CC NStripHits 3 +PE 98.9356 +PP -2.16545 0.304336 -4.54139 +PW 0 +SE +ID 4887 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 4888 +TI 1771360831.115425901 +CC NStripHits 2 +PE 48.5338 +PP 1.21033 0.165013 2.32658 +PW 0 +SE +ET UN +ID 4889 +TI 1771360831.115936351 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4890 +TI 1771360831.116594785 +CC NStripHits 5 +PE 355.374 +PP 4.3533 -0.572072 -1.74764 +PW 0 +SE +ID 4891 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.742709) +BD GR Veto +PQ 4.51746 +SE +ET PH +ID 4892 +TI 1771360831.117612135 +CC NStripHits 2 +PE 82.8747 +PP 1.32673 -0.514901 -3.14452 +PW 0 +SE +ET PH +ID 4893 +TI 1771360831.118075151 +CC NStripHits 2 +PE 47.7187 +PP -1.1178 -1.09914 -1.98045 +PW 0 +SE +ET PH +ID 4894 +TI 1771360831.118663418 +CC NStripHits 2 +PE 82.0428 +PP -0.768578 0.223069 -2.67889 +PW 0 +SE +ET PH +ID 4895 +TI 1771360831.119356301 +CC NStripHits 2 +PE 94.6361 +PP -2.16545 0.357697 -3.14452 +PW 0 +SE +ET CO +ID 4896 +TI 1771360831.120319302 +CC NStripHits 5 +PQ 3.60543 +SQ 2 +CT 0 1 +TL 1 +TE 100.394 +CE 203.432 1.23793 100.394 1.3933 +CD 2.25798 -0.110552 -1.86405 0.0336036 0.0266183 0.0336036 2.72361 -0.330558 -1.98045 0.0336036 0.024984 0.0336036 0 0 0 0 0 0 +LA 0.52798 +SE +ET CO +ID 4897 +TI 1771360831.120414952 +CC NStripHits 6 +PQ 9.90214 +SQ 3 +CT 0.0159886 0.496974 +TL 1 +TE 78.76 +CE 279.92 1.7612 78.76 1.39568 +CD 0.395484 0.0573538 1.51173 0.0336036 0.0282661 0.0336036 0.511891 0.0738378 1.04611 0.0336036 0.0284777 0.0336036 0 0 0 0 0 0 +LA 0.480234 +SE +ET UN +ID 4898 +TI 1771360831.121000968 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.312 +SE +ID 4899 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.782215) +BD GR Veto +PQ 0.000349398 +SE +ET PH +ID 4900 +TI 1771360831.122514668 +CC NStripHits 3 +PE 357.686 +PP 3.77127 0.0440155 -1.39842 +PW 0 +SE +ET PH +ID 4901 +TI 1771360831.124111002 +CC NStripHits 2 +PE 77.0355 +PP 2.02517 -0.105138 0.114859 +PW 0 +SE +ET UN +ID 4902 +TI 1771360831.125968735 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4903 +TI 1771360831.126442518 +CC NStripHits 2 +PE 75.2102 +PP -2.74748 0.360982 -0.816391 +PW 0 +SE +ET UN +ID 4904 +TI 1771360831.127563385 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 381.352 +SE +ET PH +ID 4905 +TI 1771360831.128037985 +CC NStripHits 2 +PE 81.1722 +PP 0.279078 0.156732 -3.49373 +PW 0 +SE +ET PH +ID 4906 +TI 1771360831.128926968 +CC NStripHits 2 +PE 57.2628 +PP -0.0701406 0.220428 -4.42498 +PW 0 +SE +ET UN +ID 4907 +TI 1771360831.130419152 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4908 +TI 1771360831.130514052 +CC NStripHits 2 +PE 30.9103 +PP -0.0701406 -0.337248 0.813297 +PW 0 +SE +ET PH +ID 4909 +TI 1771360831.132513818 +CC NStripHits 2 +PE 303.515 +PP 3.88767 0.318982 -2.21327 +PW 0 +SE +ET PH +ID 4910 +TI 1771360831.132588118 +CC NStripHits 2 +PE 81.8461 +PP 2.37439 0.253548 -1.74764 +PW 0 +SE +ET PH +ID 4911 +TI 1771360831.132757902 +CC NStripHits 2 +PE 155.146 +PP 0.511891 -0.216209 -1.28202 +PW 0 +SE +ET PH +ID 4912 +TI 1771360831.135055752 +CC NStripHits 2 +PE 28.5986 +PP 2.25798 0.173131 -3.49373 +PW 0 +SE +ET PH +ID 4913 +TI 1771360831.137765502 +CC NStripHits 2 +PE 86.5375 +PP -1.69983 -0.803288 -3.26092 +PW 0 +SE +ET PH +ID 4914 +TI 1771360831.139475802 +CC NStripHits 2 +PE 184.669 +PP 0.0462656 0.00676236 -4.54139 +PW 0 +SE +ET UN +ID 4915 +TI 1771360831.141432302 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 350.809 +SE +ET UN +ID 4916 +TI 1771360831.142788002 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.4662 +SE +ET UN +ID 4917 +TI 1771360831.143153769 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 221.637 +SE +ET PH +ID 4918 +TI 1771360831.144173719 +CC NStripHits 3 +PE 125.164 +PP 0.977516 -0.260388 -3.84295 +PW 0 +SE +ID 4919 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (876.121269)) (GR Hit: Detector ID 0 and Energy 338.943499) +BD GR Veto +PQ 876.121 +SE +ET UN +ID 4920 +TI 1771360831.144735535 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.5901 +SE +ET PH +ID 4921 +TI 1771360831.145419685 +CC NStripHits 2 +PE 87.1216 +PP 1.09392 0.326003 -3.84295 +PW 0 +SE +ID 4922 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 90.331668) +BD GR Veto +PQ 0.365822 +SE +ET PH +ID 4923 +TI 1771360831.145740385 +CC NStripHits 2 +PE 27.0331 +PP 1.67595 -0.496813 0.231266 +PW 0 +SE +ET UN +ID 4924 +TI 1771360831.147800835 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.6502 +SE +ET PH +ID 4925 +TI 1771360831.148024935 +CC NStripHits 2 +PE 61.1532 +PP -2.51467 0.341035 0.464078 +PW 0 +SE +ET PH +ID 4926 +TI 1771360831.149486969 +CC NStripHits 2 +PE 52.4113 +PP 2.4908 0.379776 -1.28202 +PW 0 +SE +ET UN +ID 4927 +TI 1771360831.151534569 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.801 +SE +ID 4928 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (29.861884)) (GR Hit: Detector ID 0 and Energy 82.163188) +BD GR Veto +PQ 29.8619 +SE +ET PH +ID 4929 +TI 1771360831.151920952 +CC NStripHits 2 +PE 79.5667 +PP 0.977516 0.376767 -0.234359 +PW 0 +SE +ID 4930 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 354.378007) +BD GR Veto +PQ 0.0784077 +SE +ET PH +ID 4931 +TI 1771360831.155700219 +CC NStripHits 2 +PE 54.3091 +PP -1.1178 0.36573 2.09377 +PW 0 +SE +ET PH +ID 4932 +TI 1771360831.155873535 +CC NStripHits 2 +PE 32.3111 +PP -0.884984 -0.872011 0.464078 +PW 0 +SE +ET CO +ID 4933 +TI 1771360831.158379985 +CC NStripHits 4 +PQ 1.19897 +SQ 2 +CT 0 1 +TL 1 +TE 113.38 +CE 185.726 1.0658 113.38 1.17822 +CD 4.3533 -0.31632 -3.14452 0.0336036 0.0250668 0.0336036 4.23689 -0.24613 -3.49373 0.0336036 0.0254922 0.0336036 0 0 0 0 0 0 +LA 0.374734 +SE +ET UN +ID 4934 +TI 1771360831.159765035 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 302.01 +SE +ET PH +ID 4935 +TI 1771360831.160365519 +CC NStripHits 2 +PE 53.8269 +PP 3.18923 0.370081 2.6758 +PW 0 +SE +ET UN +ID 4936 +TI 1771360831.160670869 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4937 +TI 1771360831.160938086 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2985 +SE +ET PH +ID 4938 +TI 1771360831.161392019 +CC NStripHits 3 +PE 77.766 +PP -1.58342 0.367299 1.27892 +PW 0 +SE +ET PH +ID 4939 +TI 1771360831.162787619 +CC NStripHits 3 +PE 300.317 +PP 2.6072 -0.789647 -1.16561 +PW 0 +SE +ET PH +ID 4940 +TI 1771360831.164255119 +CC NStripHits 2 +PE 81.1169 +PP 3.42205 0.366925 -1.98045 +PW 0 +SE +ET UN +ID 4941 +TI 1771360831.164515002 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.631 +SE +ET UN +ID 4942 +TI 1771360831.167198636 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.1938 +SE +ET PH +ID 4943 +TI 1771360831.167622502 +CC NStripHits 2 +PE 168.513 +PP 0.744703 0.365242 -1.51483 +PW 0 +SE +ET UN +ID 4944 +TI 1771360831.168011369 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.7729 +SE +ET UN +ID 4945 +TI 1771360831.168570469 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 195.867 +SE +ET CO +ID 4946 +TI 1771360831.169281219 +CC NStripHits 4 +PQ 1.35797 +SQ 2 +CT 0 1 +TL 1 +TE 125.354 +CE 176.899 1.00381 125.354 1.01524 +CD -1.69983 -0.478346 -0.350766 0.0336036 0.0236439 0.0336036 -1.35061 -0.365289 -0.00154687 0.0336036 0.0247232 0.0336036 0 0 0 0 0 0 +LA 0.506646 +SE +ID 4947 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ 1.47024 +SE +ET PH +ID 4948 +TI 1771360831.170220502 +CC NStripHits 2 +PE 152.867 +PP 1.55955 -0.067131 -0.117953 +PW 0 +SE +ET PH +ID 4949 +TI 1771360831.170886386 +CC NStripHits 2 +PE 80.0901 +PP 2.84002 0.29711 -1.74764 +PW 0 +SE +ID 4950 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 224.235607) +BD GR Veto +PQ 0.069584 +SE +ET PH +ID 4951 +TI 1771360831.179557969 +CC NStripHits 2 +PE 347.838 +PP 1.79236 -1.00132 -0.467172 +PW 0 +SE +ET PH +ID 4952 +TI 1771360831.180288969 +CC NStripHits 2 +PE 81.0151 +PP -1.46702 0.368658 -2.44608 +PW 0 +SE +ID 4953 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 4954 +TI 1771360831.183308603 +CC NStripHits 3 +PE 171.337 +PP -0.768578 0.320136 1.86095 +PW 0 +SE +ID 4955 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ID 4956 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET PH +ID 4957 +TI 1771360831.184394503 +CC NStripHits 3 +PE 175.647 +PP -0.535766 0.0118152 -0.117953 +PW 0 +SE +ET CO +ID 4958 +TI 1771360831.185158103 +CC NStripHits 4 +PQ 33.876 +SQ 2 +CT 0 1 +TL 1 +TE 145.759 +CE 209.841 1.05474 145.759 1.39804 +CD 1.21033 0.352216 -3.49373 0.0336036 0.0322891 0.0336036 3.65486 0.348376 -2.7953 0.0336036 0.0338583 0.0336036 0 0 0 0 0 0 +LA 2.54235 +SE +ET PH +ID 4959 +TI 1771360831.187530719 +CC NStripHits 2 +PE 82.5077 +PP -2.39827 0.284941 -2.44608 +PW 0 +SE +ET PH +ID 4960 +TI 1771360831.188336169 +CC NStripHits 2 +PE 138.748 +PP -2.51467 -0.552273 1.74455 +PW 0 +SE +ET CO +ID 4961 +TI 1771360831.188833153 +CC NStripHits 5 +PQ 3.26325 +SQ 2 +CT 0 1 +TL 1 +TE 31.3695 +CE 169.896 1.41317 31.3695 1.41327 +CD 0.162672 -0.95514 -3.37733 0.0336036 0.0195828 0.0336036 0.744703 -0.901561 -3.95936 0.0336036 0.0199663 0.0336036 0 0 0 0 0 0 +LA 0.824857 +SE +ET PH +ID 4962 +TI 1771360831.190181053 +CC NStripHits 2 +PE 34.9756 +PP -2.39827 0.0701972 -2.44608 +PW 0 +SE +ET PH +ID 4963 +TI 1771360831.195289419 +CC NStripHits 2 +PE 79.0583 +PP 0.977516 0.371991 -3.95936 +PW 0 +SE +ET PH +ID 4964 +TI 1771360831.197332386 +CC NStripHits 2 +PE 184.373 +PP 0.279078 -0.00995982 2.55939 +PW 0 +SE +ET UN +ID 4965 +TI 1771360831.200175920 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.1128 +SE +ID 4966 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.054459) (Strip hit removed with energy 17.721994) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 61.623737)) (GR Hit: Detector ID 0 and Energy 182.709132) +BD GR Veto +PQ 16.3783 +SE +ID 4967 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.832837) +BD GR Veto +PQ 1.76871e-05 +SE +ID 4968 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.981357) +BD GR Veto +PQ 0.284634 +SE +ID 4969 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.279166) +BD GR Veto +PQ 0.493521 +SE +ID 4970 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.626988) +BD GR Veto +PQ 0.104198 +SE +ID 4971 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.373104) +BD GR Veto +PQ 0.125088 +SE +ET PH +ID 4972 +TI 1771360831.209438803 +CC NStripHits 2 +PE 137.432 +PP 3.53845 -1.07437 -0.467172 +PW 0 +SE +ET PH +ID 4973 +TI 1771360831.211227786 +CC NStripHits 2 +PE 81.3084 +PP -0.884984 0.112938 2.09377 +PW 0 +SE +ET PH +ID 4974 +TI 1771360831.213470486 +CC NStripHits 3 +PE 143.224 +PP -1.1178 -0.292804 1.86095 +PW 0 +SE +ET UN +ID 4975 +TI 1771360831.214584753 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 173.058 +SE +ET CO +ID 4976 +TI 1771360831.214767703 +CC NStripHits 6 +PQ 0.850403 +SQ 2 +CT 0 1 +TL 1 +TE 101.279 +CE 235.801 1.04892 101.279 1.18727 +CD 2.84002 0.153876 -0.583578 0.0336036 0.0301599 0.0336036 2.6072 -0.358867 0.929703 0.0336036 0.0247745 0.0336036 0 0 0 0 0 0 +LA 1.61466 +SE +ET PH +ID 4977 +TI 1771360831.215452020 +CC NStripHits 2 +PE 79.409 +PP -2.63108 0.336438 -3.95936 +PW 0 +SE +ET CO +ID 4978 +TI 1771360831.216243486 +CC NStripHits 7 +PQ 1.55057 +SQ 3 +CT 0.000212165 0.00258794 +TL 1 +TE 88.9238 +CE 294.33 1.45025 88.9238 1.14968 +CD 3.42205 -0.782104 1.16252 0.0336036 0.0211595 0.0336036 3.07283 -0.57302 1.39533 0.0336036 0.0229475 0.0336036 0 0 0 0 0 0 +LA 0.457731 +SE +ET CO +ID 4979 +TI 1771360831.217337436 +CC NStripHits 5 +PQ 0.0378353 +SQ 2 +CT 0 1 +TL 1 +TE 111.862 +CE 127.7 1.16547 111.862 1.17912 +CD 2.14158 0.311426 -2.21327 0.0336036 0.0416016 0.0336036 0.744703 -0.329425 -1.51483 0.0336036 0.0249902 0.0336036 0 0 0 0 0 0 +LA 1.68813 +SE +ID 4980 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 169.326227) +BD GR Veto +PQ 0.209138 +SE +ET UN +ID 4981 +TI 1771360831.219681953 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 4982 +TI 1771360831.220661353 +CC NStripHits 8 +PQ 1.08754 +SQ 2 +CT 0 1 +TL 1 +TE 97.108 +CE 208.512 1.6557 97.108 1.15856 +CD 3.18923 -0.199157 1.51173 0.0336036 0.0258668 0.0336036 4.12048 0.0202809 -1.74764 0.0336036 0.027832 0.0336036 0 0 0 0 0 0 +LA 3.39689 +SE +ET PH +ID 4983 +TI 1771360831.221761837 +CC NStripHits 2 +PE 105.007 +PP 1.67595 0.0255742 -3.61014 +PW 0 +SE +ET UN +ID 4984 +TI 1771360831.223333620 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 4985 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 127.616629) +BD GR Veto +PQ 0.000106334 +SE +ET UN +ID 4986 +TI 1771360831.225997853 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.1234 +SE +ID 4987 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.131248) +QA StripPairing (Best reduced chi square is not below 25 (178.536940)) (GR Hit: Detector ID 0 and Energy 338.943499) +BD GR Veto +PQ 178.537 +SE +ET UN +ID 4988 +TI 1771360831.226514103 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4989 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.246147) +BD GR Veto +PQ 0.257405 +SE +ID 4990 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 103.780550) +BD GR Veto +PQ 0.00162674 +SE +ID 4991 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 58.409437) +BD GR Veto +PQ 1.24651 +SE +ET PH +ID 4992 +TI 1771360831.228475403 +CC NStripHits 2 +PE 47.2042 +PP -0.652172 -0.867722 2.21017 +PW 0 +SE +ET UN +ID 4993 +TI 1771360831.229179137 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.8881 +SE +ET PH +ID 4994 +TI 1771360831.229531270 +CC NStripHits 2 +PE 99.4526 +PP 2.14158 -0.881865 -3.61014 +PW 0 +SE +ET PH +ID 4995 +TI 1771360831.232172687 +CC NStripHits 2 +PE 83.5434 +PP -2.16545 0.313598 -2.56248 +PW 0 +SE +ID 4996 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 133.270227) +BD GR Veto +PQ 0.235582 +SE +ID 4997 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 39.855336) +BD GR Veto +PQ 0.0285251 +SE +ET PH +ID 4998 +TI 1771360831.233357670 +CC NStripHits 2 +PE 80.6796 +PP 2.14158 0.29677 0.696891 +PW 0 +SE +ET UN +ID 4999 +TI 1771360831.233467420 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9123 +SE +ET PH +ID 5000 +TI 1771360831.233778037 +CC NStripHits 2 +PE 31.3443 +PP -0.419359 -0.488619 -2.09686 +PW 0 +SE +ET UN +ID 5001 +TI 1771360831.236043970 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9743 +SE +ET PH +ID 5002 +TI 1771360831.236135953 +CC NStripHits 3 +PE 161.478 +PP 3.65486 0.00479786 -0.816391 +PW 0 +SE +ET PH +ID 5003 +TI 1771360831.236270537 +CC NStripHits 2 +PE 191.623 +PP -2.74748 -0.0379188 -2.56248 +PW 0 +SE +ET CO +ID 5004 +TI 1771360831.237570787 +CC NStripHits 5 +PQ 7.42081 +SQ 2 +CT 0 1 +TL 1 +TE 97.6512 +CE 258.071 2.11185 97.6512 1.00292 +CD 1.44314 -0.0427399 0.580484 0.0336036 0.0272772 0.0336036 1.21033 -0.34584 -0.00154687 0.0336036 0.0248842 0.0336036 0 0 0 0 0 0 +LA 0.696297 +SE +ID 5005 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.489088) +BD GR Veto +PQ 0.0602492 +SE +ET UN +ID 5006 +TI 1771360831.240840070 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5007 +TI 1771360831.245422837 +CC NStripHits 2 +PE 48.2064 +PP 3.65486 0.371403 1.27892 +PW 0 +SE +ID 5008 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.406731) +BD GR Veto +PQ +SE +ID 5009 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (77.446244)) (GR Hit: Detector ID 0 and Energy 139.565326) +BD GR Veto +PQ 77.4462 +SE +ET PH +ID 5010 +TI 1771360831.248414737 +CC NStripHits 2 +PE 81.4034 +PP 1.90877 0.19327 1.74455 +PW 0 +SE +ET UN +ID 5011 +TI 1771360831.253084220 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5012 +TI 1771360831.254405737 +CC NStripHits 3 +PE 63.916 +PP 1.55955 -0.925844 -4.30858 +PW 0 +SE +ID 5013 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.069139) +BD GR Veto +PQ 0.139362 +SE +ET PH +ID 5014 +TI 1771360831.259269320 +CC NStripHits 2 +PE 80.6102 +PP 0.977516 -0.46109 2.32658 +PW 0 +SE +ET PH +ID 5015 +TI 1771360831.259894537 +CC NStripHits 2 +PE 33.6958 +PP 0.511891 -0.340391 -2.67889 +PW 0 +SE +ID 5016 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 131.935058) (GR Hit: Detector ID 0 and Energy 22.998941) +BD GR Veto +PQ 0.879455 +SE +ET UN +ID 5017 +TI 1771360831.261951037 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.2864 +SE +ET PH +ID 5018 +TI 1771360831.262515704 +CC NStripHits 3 +PE 121.029 +PP 3.53845 -0.101171 0.114859 +PW 0 +SE +ET UN +ID 5019 +TI 1771360831.262734304 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5020 +TI 1771360831.263206587 +CC NStripHits 2 +PE 69.0423 +PP 3.77127 -0.259112 -2.56248 +PW 0 +SE +ET UN +ID 5021 +TI 1771360831.263403954 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5022 +TI 1771360831.263612637 +CC NStripHits 3 +PE 87.0037 +PP -1.93264 0.261719 -1.28202 +PW 0 +SE +ET PH +ID 5023 +TI 1771360831.263766121 +CC NStripHits 2 +PE 67.2066 +PP -0.652172 0.289694 -2.9117 +PW 0 +SE +ET UN +ID 5024 +TI 1771360831.264034387 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.9218 +SE +ET UN +ID 5025 +TI 1771360831.265939187 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5026 +TI 1771360831.266141171 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 353.407 +SE +ET UN +ID 5027 +TI 1771360831.267605621 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.7844 +SE +ID 5028 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.274770) +BD GR Veto +PQ 0.92357 +SE +ET UN +ID 5029 +TI 1771360831.267961937 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5030 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.009671) +BD GR Veto +PQ 0.00446238 +SE +ET PH +ID 5031 +TI 1771360831.269713787 +CC NStripHits 2 +PE 80.5184 +PP -2.63108 0.368369 -3.84295 +PW 0 +SE +ET UN +ID 5032 +TI 1771360831.272177554 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 383.647 +SE +ET UN +ID 5033 +TI 1771360831.272600104 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5034 +TI 1771360831.273247237 +CC NStripHits 2 +PE 75.9584 +PP 0.279078 -0.381793 -3.49373 +PW 0 +SE +ET PH +ID 5035 +TI 1771360831.273721004 +CC NStripHits 2 +PE 156.956 +PP 1.09392 0.19764 1.62814 +PW 0 +SE +ET PH +ID 5036 +TI 1771360831.273984471 +CC NStripHits 3 +PE 354.86 +PP 3.42205 0.355896 -2.09686 +PW 0 +SE +ID 5037 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 51.806512) +BD GR Veto +PQ 0.989523 +SE +ET PH +ID 5038 +TI 1771360831.274232471 +CC NStripHits 2 +PE 173.412 +PP 1.90877 -0.196374 -3.95936 +PW 0 +SE +ET PH +ID 5039 +TI 1771360831.275490737 +CC NStripHits 2 +PE 74.831 +PP 3.77127 0.363801 -2.56248 +PW 0 +SE +ET UN +ID 5040 +TI 1771360831.277710737 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 5041 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.965640) +BD GR Veto +PQ 2.34228 +SE +ID 5042 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5043 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 5044 +TI 1771360831.284552954 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7077 +SE +ID 5045 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET PH +ID 5046 +TI 1771360831.286224988 +CC NStripHits 3 +PE 67.4531 +PP -1.00139 0.369452 -1.28202 +PW 0 +SE +ET CO +ID 5047 +TI 1771360831.286382854 +CC NStripHits 4 +PQ 6.15686 +SQ 2 +CT 0 1 +TL 1 +TE 115.333 +CE 146.853 1.01188 115.333 1.41431 +CD 3.18923 -0.834709 -2.67889 0.0336036 0.0205344 0.0336036 2.84002 -0.231126 -2.44608 0.0336036 0.0256007 0.0336036 0 0 0 0 0 0 +LA 0.73516 +SE +ET PH +ID 5048 +TI 1771360831.288136388 +CC NStripHits 2 +PE 355.087 +PP -0.0701406 0.163307 -2.09686 +PW 0 +SE +ET UN +ID 5049 +TI 1771360831.288924471 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 259.705 +SE +ID 5050 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (36.494834)) (GR Hit: Detector ID 0 and Energy 74.478449) +BD GR Veto +PQ 36.4948 +SE +ET PH +ID 5051 +TI 1771360831.290178004 +CC NStripHits 2 +PE 81.301 +PP -2.28186 0.290451 -0.699984 +PW 0 +SE +ET PH +ID 5052 +TI 1771360831.291222538 +CC NStripHits 2 +PE 57.1439 +PP 3.18923 0.307551 -2.56248 +PW 0 +SE +ET PH +ID 5053 +TI 1771360831.292714338 +CC NStripHits 2 +PE 238.206 +PP 3.65486 0.351507 -3.61014 +PW 0 +SE +ET CO +ID 5054 +TI 1771360831.295245621 +CC NStripHits 10 +PQ 1.87029 +SQ 4 +CT 0.161985 0.170192 +TL 1 +TE 81.0096 +CE 221.94 1.87321 81.0096 1.37862 +CD -2.16545 -0.637278 0.813297 0.0336036 0.0226136 0.0336036 -2.28186 -0.627893 1.16252 0.0336036 0.0226631 0.0336036 0 0 0 0 0 0 +LA 0.368234 +SE +ID 5055 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.071563) +BD GR Veto +PQ 0.0352953 +SE +ID 5056 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.572587) +BD GR Veto +PQ 0.206568 +SE +ET PH +ID 5057 +TI 1771360831.298453821 +CC NStripHits 2 +PE 236.235 +PP -1.1178 -0.727024 0.231266 +PW 0 +SE +ET UN +ID 5058 +TI 1771360831.298935021 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.9115 +SE +ET PH +ID 5059 +TI 1771360831.299044588 +CC NStripHits 3 +PE 193.997 +PP 2.95642 0.0530303 1.86095 +PW 0 +SE +ET UN +ID 5060 +TI 1771360831.302042671 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5061 +TI 1771360831.304516655 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.0397 +SE +ET UN +ID 5062 +TI 1771360831.305780238 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.3756 +SE +ET PH +ID 5063 +TI 1771360831.306437488 +CC NStripHits 2 +PE 186.218 +PP -1.46702 0.297276 -2.56248 +PW 0 +SE +ET PH +ID 5064 +TI 1771360831.307367638 +CC NStripHits 2 +PE 68.5654 +PP -1.69983 0.29894 0.231266 +PW 0 +SE +ID 5065 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.163211) +QA StripPairing (Best reduced chi square is not below 25 (65.761889)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 89.613677) +BD GR Veto +PQ 65.7619 +SE +ET PH +ID 5066 +TI 1771360831.308105938 +CC NStripHits 2 +PE 74.0998 +PP -1.00139 -1.01035 1.39533 +PW 0 +SE +ID 5067 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 117.027775) +BD GR Veto +PQ 0.0548267 +SE +ET PH +ID 5068 +TI 1771360831.309459155 +CC NStripHits 2 +PE 213.137 +PP 1.44314 -0.240788 -2.44608 +PW 0 +SE +ET PH +ID 5069 +TI 1771360831.310977505 +CC NStripHits 2 +PE 79.6287 +PP -0.652172 -1.05487 0.347672 +PW 0 +SE +ET PH +ID 5070 +TI 1771360831.312125955 +CC NStripHits 2 +PE 101.329 +PP -1.35061 0.1364 2.21017 +PW 0 +SE +ET UN +ID 5071 +TI 1771360831.313810438 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4741 +SE +ET PH +ID 5072 +TI 1771360831.315175488 +CC NStripHits 3 +PE 213.02 +PP -1.00139 0.359699 -2.09686 +PW 0 +SE +ET PH +ID 5073 +TI 1771360831.316081505 +CC NStripHits 4 +PE 251.54 +PP 1.44314 -0.232948 -3.95936 +PW 0 +SE +ID 5074 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.772740) +BD GR Veto +PQ 14.2979 +SE +ET PH +ID 5075 +TI 1771360831.317548988 +CC NStripHits 3 +PE 128.512 +PP 0.162672 0.298381 -1.86405 +PW 0 +SE +ET UN +ID 5076 +TI 1771360831.318397188 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 197.931 +SE +ET PH +ID 5077 +TI 1771360831.321752172 +CC NStripHits 2 +PE 171.135 +PP 0.279078 -0.0677642 -4.42498 +PW 0 +SE +ID 5078 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.944193) +BD GR Veto +PQ 0.0502774 +SE +ET PH +ID 5079 +TI 1771360831.325541572 +CC NStripHits 2 +PE 80.8341 +PP 0.744703 0.183439 -2.44608 +PW 0 +SE +ET UN +ID 5080 +TI 1771360831.326342305 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3845 +SE +ID 5081 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.699830) +BD GR Veto +PQ 0.0695366 +SE +ET UN +ID 5082 +TI 1771360831.327530155 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 5083 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 111.433973) +BD GR Veto +PQ 8.22103 +SE +ET PH +ID 5084 +TI 1771360831.328380255 +CC NStripHits 2 +PE 148.659 +PP 2.95642 0.0463189 2.09377 +PW 0 +SE +ID 5085 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.774214) +BD GR Veto +PQ 1.28794 +SE +ET PH +ID 5086 +TI 1771360831.328659722 +CC NStripHits 2 +PE 143.549 +PP 3.77127 -0.756497 -1.28202 +PW 0 +SE +ET PH +ID 5087 +TI 1771360831.328913805 +CC NStripHits 2 +PE 84.1658 +PP -2.16545 0.376912 -0.234359 +PW 0 +SE +ET PH +ID 5088 +TI 1771360831.329687155 +CC NStripHits 3 +PE 122.216 +PP 2.14158 -1.09211 0.580484 +PW 0 +SE +ID 5089 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (49.030293)) (GR Hit: Detector ID 0 and Energy 356.146861) +BD GR Veto +PQ 49.0303 +SE +ET PH +ID 5090 +TI 1771360831.332438288 +CC NStripHits 2 +PE 79.5231 +PP -2.16545 0.333592 -4.54139 +PW 0 +SE +ID 5091 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 175.624707) +BD GR Veto +PQ 0.0115428 +SE +ET UN +ID 5092 +TI 1771360831.333747155 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 5093 +TI 1771360831.337653672 +CC NStripHits 8 +PQ 23.4403 +SQ 3 +CT 0.0488792 0.090718 +TL 1 +TE 104.6 +CE 260.323 2.40781 104.6 1.38655 +CD -1.58342 -0.115094 -2.44608 0.0336036 0.0265732 0.0336036 -2.63108 -0.184675 -2.7953 0.0336036 0.0259705 0.0336036 0 0 0 0 0 0 +LA 1.08917 +SE +ET PH +ID 5094 +TI 1771360831.340647222 +CC NStripHits 2 +PE 106.964 +PP 2.95642 0.333385 -4.19217 +PW 0 +SE +ET UN +ID 5095 +TI 1771360831.340828305 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.0657 +SE +ID 5096 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.657473) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.219323) +BD GR Veto +PQ 6.65986 +SE +ET PH +ID 5097 +TI 1771360831.341758855 +CC NStripHits 2 +PE 184.524 +PP -0.535766 0.148659 1.39533 +PW 0 +SE +ET UN +ID 5098 +TI 1771360831.342373605 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET UN +ID 5099 +TI 1771360831.344544805 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7311 +SE +ET UN +ID 5100 +TI 1771360831.344726139 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5101 +TI 1771360831.345648605 +CC NStripHits 2 +PE 34.7952 +PP 1.55955 0.246717 -0.00154687 +PW 0 +SE +ID 5102 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.847868) (Strip hit removed with energy 10.407519) (Strip hit removed with energy 7.814563) (Strip hit removed with energy 7.832260) (Strip hit removed with energy 12.573667) (Strip hit removed with energy 13.002596) (Strip hit removed with energy 13.516989) (Strip hit removed with energy 10.361103) (Strip hit removed with energy 8.906325) (Strip hit removed with energy -10.986370) +QA StripPairing (Best reduced chi square is not below 25 (1063.315896)) (GR Hit: Detector ID 0 and Energy 2390.281672) +BD GR Veto +PQ 1063.32 +SE +ET PH +ID 5103 +TI 1771360831.348874539 +CC NStripHits 3 +PE 194.25 +PP -2.9803 -0.191966 1.51173 +PW 0 +SE +ET UN +ID 5104 +TI 1771360831.349422489 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 52.6502 +SE +ET PH +ID 5105 +TI 1771360831.350266322 +CC NStripHits 2 +PE 56.577 +PP -0.186547 0.357581 -2.7953 +PW 0 +SE +ET PH +ID 5106 +TI 1771360831.351043005 +CC NStripHits 2 +PE 107.337 +PP 1.44314 -0.436763 -4.07577 +PW 0 +SE +ID 5107 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.824271) +BD GR Veto +PQ 0.0299201 +SE +ET PH +ID 5108 +TI 1771360831.353949622 +CC NStripHits 2 +PE 94.6036 +PP 4.12048 -0.976931 -3.49373 +PW 0 +SE +ET UN +ID 5109 +TI 1771360831.354340355 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.8573 +SE +ET UN +ID 5110 +TI 1771360831.355344389 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 97.8926 +SE +ET PH +ID 5111 +TI 1771360831.355647472 +CC NStripHits 3 +PE 356.39 +PP 1.55955 -0.276367 1.39533 +PW 0 +SE +ID 5112 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 178.919482) +BD GR Veto +PQ 0.0109757 +SE +ET UN +ID 5113 +TI 1771360831.356333105 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.3022 +SE +ET PH +ID 5114 +TI 1771360831.357734822 +CC NStripHits 2 +PE 165.575 +PP 3.30564 0.183131 -0.699984 +PW 0 +SE +ET UN +ID 5115 +TI 1771360831.358684905 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1702 +SE +ET UN +ID 5116 +TI 1771360831.359513489 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 350.907 +SE +ET PH +ID 5117 +TI 1771360831.359738355 +CC NStripHits 3 +PE 138.073 +PP -1.93264 -0.312948 -2.7953 +PW 0 +SE +ET UN +ID 5118 +TI 1771360831.364042189 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.7652 +SE +ET PH +ID 5119 +TI 1771360831.364728656 +CC NStripHits 2 +PE 79.0745 +PP -0.419359 -0.188138 -3.95936 +PW 0 +SE +ET PH +ID 5120 +TI 1771360831.365918172 +CC NStripHits 2 +PE 80.6379 +PP -2.04905 0.365869 -1.74764 +PW 0 +SE +ET PH +ID 5121 +TI 1771360831.366362422 +CC NStripHits 2 +PE 89.7939 +PP 2.95642 -0.419383 -4.07577 +PW 0 +SE +ET PH +ID 5122 +TI 1771360831.367468689 +CC NStripHits 2 +PE 80.7352 +PP 3.53845 0.230016 2.09377 +PW 0 +SE +ET UN +ID 5123 +TI 1771360831.367973256 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5124 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.701631) +BD GR Veto +PQ 0.595535 +SE +ET CO +ID 5125 +TI 1771360831.369975256 +CC NStripHits 4 +PQ 42.1437 +SQ 2 +CT 0 1 +TL 1 +TE 85.2033 +CE 121.309 1.0092 85.2033 1.34642 +CD 2.84002 -0.87205 2.21017 0.0336036 0.0202478 0.0336036 2.37439 -0.440571 2.32658 0.0336036 0.0240323 0.0336036 0 0 0 0 0 0 +LA 0.645397 +SE +ET PH +ID 5126 +TI 1771360831.370160356 +CC NStripHits 3 +PE 191.64 +PP 2.6072 0.292257 -1.74764 +PW 0 +SE +ET PH +ID 5127 +TI 1771360831.370391639 +CC NStripHits 3 +PE 275.672 +PP 2.37439 -0.405796 1.27892 +PW 0 +SE +ET UN +ID 5128 +TI 1771360831.370710256 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 155.306 +SE +ET UN +ID 5129 +TI 1771360831.370876156 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.1012 +SE +ET UN +ID 5130 +TI 1771360831.372397639 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.4717 +SE +ET PH +ID 5131 +TI 1771360831.373700789 +CC NStripHits 2 +PE 57.59 +PP 4.12048 0.351148 1.16252 +PW 0 +SE +ET PH +ID 5132 +TI 1771360831.375231122 +CC NStripHits 2 +PE 81.182 +PP 1.67595 0.109634 -0.350766 +PW 0 +SE +ID 5133 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 161.406997) +BD GR Veto +PQ 0.0832571 +SE +ET UN +ID 5134 +TI 1771360831.381637823 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5135 +TI 1771360831.381729106 +CC NStripHits 2 +PE 65.6757 +PP -1.1178 0.0597431 -1.39842 +PW 0 +SE +ET PH +ID 5136 +TI 1771360831.382391056 +CC NStripHits 2 +PE 80.736 +PP 1.44314 0.356585 1.39533 +PW 0 +SE +ET UN +ID 5137 +TI 1771360831.382538839 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.6923 +SE +ID 5138 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5139 +TI 1771360831.385770073 +CC NStripHits 3 +PE 80.6617 +PP -1.58342 0.373696 -4.6578 +PW 0 +SE +ET PH +ID 5140 +TI 1771360831.388723523 +CC NStripHits 2 +PE 79.648 +PP 1.55955 -0.027319 -2.32967 +PW 0 +SE +ID 5141 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.629077) +QA StripPairing (GR Hit: Detector ID 0 and Energy 207.954982) +BD GR Veto +PQ 3.3322 +SE +ET PH +ID 5142 +TI 1771360831.389932973 +CC NStripHits 3 +PE 138.699 +PP 4.00408 -0.334942 -3.14452 +PW 0 +SE +ET PH +ID 5143 +TI 1771360831.390994123 +CC NStripHits 3 +PE 187.385 +PP -1.81623 0.23845 -0.816391 +PW 0 +SE +ET UN +ID 5144 +TI 1771360831.391634256 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5145 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 384.979107) +BD GR Veto +PQ 0.0860598 +SE +ID 5146 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 54.205526) +BD GR Veto +PQ 15.003 +SE +ET PH +ID 5147 +TI 1771360831.393968473 +CC NStripHits 2 +PE 200.972 +PP 1.32673 -0.866927 0.464078 +PW 0 +SE +ET PH +ID 5148 +TI 1771360831.395856989 +CC NStripHits 2 +PE 66.7044 +PP 4.00408 0.366686 -2.21327 +PW 0 +SE +ID 5149 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.984915) +BD GR Veto +PQ 1.14897 +SE +ID 5150 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.949018) (Strip hit removed with energy 14.517143) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 39.091119)) (GR Hit: Detector ID 0 and Energy 143.476746) +BD GR Veto +PQ 2.44665 +SE +ET PH +ID 5151 +TI 1771360831.400519973 +CC NStripHits 2 +PE 67.3201 +PP 0.744703 0.328853 -0.234359 +PW 0 +SE +ID 5152 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.552219) +QA StripPairing (Best reduced chi square is not below 25 (77.391771)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 57.604190)) (GR Hit: Detector ID 0 and Energy 301.521039) +BD GR Veto +PQ 77.3918 +SE +ET PH +ID 5153 +TI 1771360831.403481523 +CC NStripHits 2 +PE 81.0246 +PP -0.652172 0.237459 0.347672 +PW 0 +SE +ET PH +ID 5154 +TI 1771360831.403795556 +CC NStripHits 2 +PE 356.39 +PP 0.861109 0.360286 -3.72655 +PW 0 +SE +ET PH +ID 5155 +TI 1771360831.405086123 +CC NStripHits 2 +PE 72.1455 +PP 2.25798 0.0742383 -0.583578 +PW 0 +SE +ET PH +ID 5156 +TI 1771360831.405801856 +CC NStripHits 2 +PE 57.8812 +PP 3.30564 -0.992919 -3.14452 +PW 0 +SE +ID 5157 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.038059) +BD GR Veto +PQ 0.000547474 +SE +ET PH +ID 5158 +TI 1771360831.408664273 +CC NStripHits 2 +PE 351.731 +PP 3.88767 -0.203355 -0.583578 +PW 0 +SE +ET PH +ID 5159 +TI 1771360831.409906340 +CC NStripHits 2 +PE 29.9368 +PP 1.09392 0.363467 -1.39842 +PW 0 +SE +ET CO +ID 5160 +TI 1771360831.411514573 +CC NStripHits 5 +PQ 1.58484 +SQ 2 +CT 0 1 +TL 1 +TE 113.154 +CE 245.791 1.20158 113.154 1.02595 +CD -2.86389 -0.548993 0.929703 0.0336036 0.0231174 0.0336036 -2.51467 -0.830129 0.464078 0.0336036 0.0205744 0.0336036 0 0 0 0 0 0 +LA 0.646373 +SE +ET PH +ID 5161 +TI 1771360831.411866023 +CC NStripHits 4 +PE 224.149 +PP 2.72361 -0.412704 -3.02811 +PW 0 +SE +ID 5162 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 174.447519) +BD GR Veto +PQ 0.174162 +SE +ET PH +ID 5163 +TI 1771360831.415283156 +CC NStripHits 4 +PE 140.531 +PP 2.84002 -0.904879 -4.19217 +PW 0 +SE +ET PH +ID 5164 +TI 1771360831.415661940 +CC NStripHits 2 +PE 73.7814 +PP -1.58342 -1.14948 -2.09686 +PW 0 +SE +ET PH +ID 5165 +TI 1771360831.416562290 +CC NStripHits 2 +PE 149.238 +PP 0.511891 -1.13897 -1.28202 +PW 0 +SE +ET PH +ID 5166 +TI 1771360831.417163206 +CC NStripHits 2 +PE 128.858 +PP 1.21033 0.343 2.44298 +PW 0 +SE +ET PH +ID 5167 +TI 1771360831.417918806 +CC NStripHits 2 +PE 276.254 +PP 0.511891 0.150641 -3.84295 +PW 0 +SE +ET UN +ID 5168 +TI 1771360831.419284590 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0757 +SE +ET UN +ID 5169 +TI 1771360831.419977356 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.0073 +SE +ET PH +ID 5170 +TI 1771360831.420621107 +CC NStripHits 2 +PE 122.493 +PP 1.09392 0.15697 0.929703 +PW 0 +SE +ET UN +ID 5171 +TI 1771360831.420701573 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2467 +SE +ET UN +ID 5172 +TI 1771360831.421813123 +BD DepthCalibrationError (No calibration coefficients) +CC NStripHits 3 +PE 78.9554 +SE +ID 5173 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 130.703268) +BD GR Veto +PQ 0.00125205 +SE +ID 5174 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 383.317659) +BD GR Veto +PQ 1.0624 +SE +ET UN +ID 5175 +TI 1771360831.424904640 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2389 +SE +ET PH +ID 5176 +TI 1771360831.425793323 +CC NStripHits 2 +PE 78.8567 +PP -2.04905 -0.173835 1.62814 +PW 0 +SE +ET UN +ID 5177 +TI 1771360831.427682223 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5178 +TI 1771360831.430609957 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 53.5115 +SE +ET PH +ID 5179 +TI 1771360831.431123223 +CC NStripHits 2 +PE 85.8753 +PP 1.90877 -1.16453 1.39533 +PW 0 +SE +ET UN +ID 5180 +TI 1771360831.432573457 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5181 +TI 1771360831.437762323 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5182 +TI 1771360831.440082574 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.3277 +SE +ET UN +ID 5183 +TI 1771360831.442019774 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5184 +TI 1771360831.442619140 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5185 +TI 1771360831.444070190 +CC NStripHits 3 +PE 233.31 +PP 1.09392 0.047849 -2.9117 +PW 0 +SE +ET PH +ID 5186 +TI 1771360831.444413490 +CC NStripHits 3 +PE 128.942 +PP 1.79236 0.0154301 -1.86405 +PW 0 +SE +ID 5187 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.985703) +BD GR Veto +PQ 0.095395 +SE +ET PH +ID 5188 +TI 1771360831.448081374 +CC NStripHits 2 +PE 277.959 +PP 4.12048 -0.726603 1.16252 +PW 0 +SE +ET PH +ID 5189 +TI 1771360831.449512474 +CC NStripHits 2 +PE 35.7563 +PP 0.162672 0.343709 1.16252 +PW 0 +SE +ET CO +ID 5190 +TI 1771360831.449890157 +CC NStripHits 8 +PQ 54.5231 +SQ 3 +CT 0.200519 0.301676 +TL 1 +TE 97.5772 +CE 208.91 1.56613 97.5772 1.37646 +CD -0.302953 0.0846636 -1.63123 0.0336036 0.0286369 0.0336036 -0.0701406 -0.0353141 -2.09686 0.0336036 0.0273795 0.0336036 0 0 0 0 0 0 +LA 0.534235 +SE +ET PH +ID 5191 +TI 1771360831.449980107 +CC NStripHits 3 +PE 199.061 +PP -2.16545 0.121411 -3.26092 +PW 0 +SE +ET UN +ID 5192 +TI 1771360831.450600074 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5193 +TI 1771360831.450718440 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5194 +TI 1771360831.452231057 +CC NStripHits 2 +PE 61.279 +PP 2.37439 0.369544 -2.7953 +PW 0 +SE +ET PH +ID 5195 +TI 1771360831.454601724 +CC NStripHits 2 +PE 383.679 +PP -1.2342 0.227119 -3.02811 +PW 0 +SE +ID 5196 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.537032) (Strip hit removed with energy 10.938442) +QA StripPairing (GR Hit: Detector ID 0 and Energy 242.026447) +BD GR Veto +PQ 0.0674599 +SE +ET PH +ID 5197 +TI 1771360831.457415607 +CC NStripHits 2 +PE 81.7976 +PP 3.30564 0.373833 -2.56248 +PW 0 +SE +ID 5198 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.272054) +BD GR Veto +PQ 0.438658 +SE +ID 5199 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 5200 +TI 1771360831.460243991 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5201 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.145658) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 21.317765)) (GR Hit: Detector ID 0 and Energy 124.229256) +BD GR Veto +PQ 0.181481 +SE +ET UN +ID 5202 +TI 1771360831.462368607 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4569 +SE +ID 5203 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.014699) +BD GR Veto +PQ 16.2178 +SE +ET PH +ID 5204 +TI 1771360831.463022124 +CC NStripHits 5 +PE 192.582 +PP -1.58342 0.210735 -2.9117 +PW 0 +SE +ET UN +ID 5205 +TI 1771360831.463238307 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.7188 +SE +ET PH +ID 5206 +TI 1771360831.463636357 +CC NStripHits 2 +PE 81.8997 +PP -1.2342 0.278864 2.6758 +PW 0 +SE +ET PH +ID 5207 +TI 1771360831.466766891 +CC NStripHits 2 +PE 78.4638 +PP -1.00139 -1.07593 -1.63123 +PW 0 +SE +ET PH +ID 5208 +TI 1771360831.467014491 +CC NStripHits 2 +PE 52.1356 +PP 1.79236 0.378014 -3.61014 +PW 0 +SE +ID 5209 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.291560) +BD GR Veto +PQ 0.0326275 +SE +ET UN +ID 5210 +TI 1771360831.468756857 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3839 +SE +ID 5211 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5212 +TI 1771360831.471657757 +CC NStripHits 2 +PE 25.6566 +PP -2.74748 -0.815938 -1.51483 +PW 0 +SE +ET UN +ID 5213 +TI 1771360831.472239341 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 48.6893 +SE +ET PH +ID 5214 +TI 1771360831.475136374 +CC NStripHits 2 +PE 74.9239 +PP 1.90877 0.0865944 0.929703 +PW 0 +SE +ID 5215 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.796399) +BD GR Veto +PQ 0.0955344 +SE +ET UN +ID 5216 +TI 1771360831.476526407 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET UN +ID 5217 +TI 1771360831.476830407 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 5218 +TI 1771360831.477272591 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 82.1011 +SE +ET UN +ID 5219 +TI 1771360831.477346341 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.2128 +SE +ID 5220 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 114.553112) +BD GR Veto +PQ 0.339614 +SE +ET PH +ID 5221 +TI 1771360831.478497707 +CC NStripHits 3 +PE 208.377 +PP 2.6072 0.00978555 -3.95936 +PW 0 +SE +ET PH +ID 5222 +TI 1771360831.479227591 +CC NStripHits 2 +PE 61.3508 +PP 2.72361 0.3782 -1.63123 +PW 0 +SE +ET UN +ID 5223 +TI 1771360831.479427224 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 80.4009 +SE +ET PH +ID 5224 +TI 1771360831.480311974 +CC NStripHits 2 +PE 83.0643 +PP 3.65486 -0.0547559 1.16252 +PW 0 +SE +ET PH +ID 5225 +TI 1771360831.481082891 +CC NStripHits 3 +PE 279.537 +PP 0.511891 0.371247 -4.30858 +PW 0 +SE +ET PH +ID 5226 +TI 1771360831.481351708 +CC NStripHits 2 +PE 191.709 +PP 2.02517 0.227047 -0.00154687 +PW 0 +SE +ET PH +ID 5227 +TI 1771360831.482491858 +CC NStripHits 2 +PE 61.5169 +PP -0.419359 -0.646211 -4.54139 +PW 0 +SE +ID 5228 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5229 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.099148) +BD GR Veto +PQ +SE +ET PH +ID 5230 +TI 1771360831.483841824 +CC NStripHits 2 +PE 52.848 +PP -2.63108 0.292241 -2.56248 +PW 0 +SE +ET PH +ID 5231 +TI 1771360831.484015874 +CC NStripHits 2 +PE 286.513 +PP 3.53845 0.0496363 -3.49373 +PW 0 +SE +ID 5232 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.916386) +BD GR Veto +PQ +SE +ID 5233 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ET UN +ID 5234 +TI 1771360831.485725924 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.3347 +SE +ET UN +ID 5235 +TI 1771360831.485936091 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.296 +SE +ET PH +ID 5236 +TI 1771360831.487697091 +CC NStripHits 2 +PE 81.1942 +PP 0.744703 0.365104 0.231266 +PW 0 +SE +ET UN +ID 5237 +TI 1771360831.488235074 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8637 +SE +ET PH +ID 5238 +TI 1771360831.489888374 +CC NStripHits 2 +PE 88.6141 +PP 1.21033 -0.861764 -3.61014 +PW 0 +SE +ID 5239 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5240 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET UN +ID 5241 +TI 1771360831.493501891 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5242 +TI 1771360831.497735841 +CC NStripHits 2 +PE 57.1553 +PP 0.279078 0.357244 -0.00154687 +PW 0 +SE +ID 5243 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.789298) +QA StripPairing (Best reduced chi square is not below 25 (57.040025)) (GR Hit: Detector ID 0 and Energy 220.064707) +BD GR Veto +PQ 57.04 +SE +ET UN +ID 5244 +TI 1771360831.500440908 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5245 +TI 1771360831.500874841 +CC NStripHits 2 +PE 54.1554 +PP 1.44314 -1.06414 -4.19217 +PW 0 +SE +ET PH +ID 5246 +TI 1771360831.501271308 +CC NStripHits 2 +PE 80.1903 +PP -1.1178 0.164218 2.6758 +PW 0 +SE +ET UN +ID 5247 +TI 1771360831.501825708 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 165.221 +SE +ET UN +ID 5248 +TI 1771360831.502200775 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5249 +TI 1771360831.502410408 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.5641 +SE +ET PH +ID 5250 +TI 1771360831.502996191 +CC NStripHits 4 +PE 383.789 +PP 1.67595 -0.269923 -0.117953 +PW 0 +SE +ET PH +ID 5251 +TI 1771360831.503860641 +CC NStripHits 3 +PE 179.371 +PP 1.90877 -0.519472 0.464078 +PW 0 +SE +ET PH +ID 5252 +TI 1771360831.504551908 +CC NStripHits 2 +PE 141.368 +PP -1.81623 0.329327 0.347672 +PW 0 +SE +ET PH +ID 5253 +TI 1771360831.504873191 +CC NStripHits 2 +PE 34.4114 +PP -1.81623 0.143279 -3.95936 +PW 0 +SE +ID 5254 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 107.870469) +BD GR Veto +PQ 0.577123 +SE +ET UN +ID 5255 +TI 1771360831.507787391 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5016 +SE +ET PH +ID 5256 +TI 1771360831.508174358 +CC NStripHits 2 +PE 190.74 +PP -1.81623 0.352244 -4.30858 +PW 0 +SE +ID 5257 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 146.416346) +BD GR Veto +PQ 0.000504451 +SE +ET PH +ID 5258 +TI 1771360831.509572475 +CC NStripHits 3 +PE 652.399 +PP 1.90877 -0.664963 -1.86405 +PW 0 +SE +ET CO +ID 5259 +TI 1771360831.510571208 +CC NStripHits 4 +PQ 0.0446007 +SQ 2 +CT 0 1 +TL 1 +TE 136.221 +CE 221.005 0.994493 136.221 1.0224 +CD -1.81623 -0.385707 -0.350766 0.0336036 0.0245832 0.0336036 -1.46702 -0.840871 -2.56248 0.0336036 0.0204893 0.0336036 0 0 0 0 0 0 +LA 2.28491 +SE +ET UN +ID 5260 +TI 1771360831.510843358 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.1965 +SE +ID 5261 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET PH +ID 5262 +TI 1771360831.511763641 +CC NStripHits 2 +PE 302.361 +PP -0.302953 0.215897 -1.86405 +PW 0 +SE +ET PH +ID 5263 +TI 1771360831.512912025 +CC NStripHits 2 +PE 30.3903 +PP 0.628297 0.229923 -0.117953 +PW 0 +SE +ET PH +ID 5264 +TI 1771360831.513217441 +CC NStripHits 3 +PE 81.2492 +PP 3.77127 0.356157 -1.74764 +PW 0 +SE +ID 5265 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 139.121428) +BD GR Veto +PQ 3.84546e-05 +SE +ET PH +ID 5266 +TI 1771360831.514230541 +CC NStripHits 2 +PE 47.9435 +PP 1.55955 -1.03193 -1.16561 +PW 0 +SE +ET UN +ID 5267 +TI 1771360831.515520708 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 41.1518 +SE +ID 5268 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 55.016087) +BD GR Veto +PQ 0.187825 +SE +ID 5269 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.799292) +BD GR Veto +PQ 0.255509 +SE +ET PH +ID 5270 +TI 1771360831.520534425 +CC NStripHits 2 +PE 126.596 +PP 0.395484 -1.10311 -3.14452 +PW 0 +SE +ET PH +ID 5271 +TI 1771360831.521271258 +CC NStripHits 2 +PE 78.114 +PP 2.02517 -0.0652871 1.86095 +PW 0 +SE +ET UN +ID 5272 +TI 1771360831.521577142 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.1207 +SE +ET UN +ID 5273 +TI 1771360831.522419808 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9848 +SE +ET PH +ID 5274 +TI 1771360831.524237292 +CC NStripHits 2 +PE 81.2383 +PP -1.69983 0.34634 -2.67889 +PW 0 +SE +ID 5275 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 247.481052) +BD GR Veto +PQ 0.0990086 +SE +ET PH +ID 5276 +TI 1771360831.524866558 +CC NStripHits 2 +PE 186.588 +PP -0.186547 -0.516574 0.813297 +PW 0 +SE +ET PH +ID 5277 +TI 1771360831.526901642 +CC NStripHits 2 +PE 152.48 +PP 1.44314 -0.439123 2.32658 +PW 0 +SE +ET PH +ID 5278 +TI 1771360831.527943358 +CC NStripHits 2 +PE 87.7635 +PP 2.84002 -0.331173 2.44298 +PW 0 +SE +ET PH +ID 5279 +TI 1771360831.529280792 +CC NStripHits 2 +PE 29.4818 +PP -1.81623 0.0850048 -1.16561 +PW 0 +SE +ID 5280 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.668315) +BD GR Veto +PQ 0.261355 +SE +ET PH +ID 5281 +TI 1771360831.534059875 +CC NStripHits 2 +PE 212.076 +PP -0.768578 0.3283 1.86095 +PW 0 +SE +ET UN +ID 5282 +TI 1771360831.535916725 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5283 +TI 1771360831.536097525 +CC NStripHits 3 +PE 358.298 +PP 2.95642 -0.230582 -2.32967 +PW 0 +SE +ID 5284 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 30.618189)) (GR Hit: Detector ID 0 and Energy 70.881460) +BD GR Veto +PQ 16.4884 +SE +ET PH +ID 5285 +TI 1771360831.539456158 +CC NStripHits 2 +PE 82.1434 +PP -1.58342 0.269981 1.27892 +PW 0 +SE +ID 5286 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.740809) +BD GR Veto +PQ 0.28879 +SE +ID 5287 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.242599) +BD GR Veto +PQ 0.449268 +SE +ET CO +ID 5288 +TI 1771360831.544123575 +CC NStripHits 6 +PQ 0.550792 +SQ 2 +CT 0 1 +TL 1 +TE 91.4423 +CE 157.559 1.44566 91.4423 0.993907 +CD 1.90877 -0.790964 -3.49373 0.0336036 0.0210412 0.0336036 2.14158 -0.989232 -3.72655 0.0336036 0.0195417 0.0336036 0 0 0 0 0 0 +LA 0.384338 +SE +ID 5289 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 115.031877) +BD GR Veto +PQ 11.016 +SE +ET PH +ID 5290 +TI 1771360831.544686542 +CC NStripHits 2 +PE 71.6554 +PP 1.09392 0.347158 -1.98045 +PW 0 +SE +ET PH +ID 5291 +TI 1771360831.547920792 +CC NStripHits 2 +PE 43.7229 +PP 1.32673 -0.629981 -3.95936 +PW 0 +SE +ET UN +ID 5292 +TI 1771360831.548502325 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 273.122 +SE +ET PH +ID 5293 +TI 1771360831.548758859 +CC NStripHits 3 +PE 141.006 +PP 1.21033 0.368911 0.696891 +PW 0 +SE +ET PH +ID 5294 +TI 1771360831.549897625 +CC NStripHits 2 +PE 64.7929 +PP -2.16545 -0.661025 -4.54139 +PW 0 +SE +ET UN +ID 5295 +TI 1771360831.550024409 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 215.621 +SE +ET PH +ID 5296 +TI 1771360831.550432825 +CC NStripHits 3 +PE 178.035 +PP -1.81623 0.122001 -4.42498 +PW 0 +SE +ID 5297 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.502914) +BD GR Veto +PQ 10.0505 +SE +ET UN +ID 5298 +TI 1771360831.551617559 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.0701 +SE +ET PH +ID 5299 +TI 1771360831.556170442 +CC NStripHits 3 +PE 70.7928 +PP -2.51467 0.28507 -0.583578 +PW 0 +SE +ET PH +ID 5300 +TI 1771360831.556614309 +CC NStripHits 2 +PE 80.7295 +PP 3.30564 0.217354 -4.19217 +PW 0 +SE +ET PH +ID 5301 +TI 1771360831.556706425 +CC NStripHits 2 +PE 60.9849 +PP -2.28186 -1.0515 1.39533 +PW 0 +SE +ID 5302 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.117547) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 46.803443)) (GR Hit: Detector ID 0 and Energy 64.210427) (GR Hit: Detector ID 0 and Energy 33.940165) +BD GR Veto +PQ 9.39872 +SE +ET PH +ID 5303 +TI 1771360831.558931292 +CC NStripHits 2 +PE 80.115 +PP 2.14158 0.163515 -2.32967 +PW 0 +SE +ET UN +ID 5304 +TI 1771360831.559092859 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.4557 +SE +ID 5305 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.663512) +BD GR Veto +PQ 1.43318 +SE +ID 5306 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.816100) +BD GR Veto +PQ 0.900665 +SE +ID 5307 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.595481) +BD GR Veto +PQ 0.225259 +SE +ID 5308 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.298007) +BD GR Veto +PQ 0.331396 +SE +ID 5309 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (56.891757)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 47.356424)) (GR Hit: Detector ID 0 and Energy 217.118762) +BD GR Veto +PQ 56.8918 +SE +ID 5310 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.330832) +BD GR Veto +PQ 0.207627 +SE +ET PH +ID 5311 +TI 1771360831.565464142 +CC NStripHits 2 +PE 73.1013 +PP 0.0462656 -1.14445 0.464078 +PW 0 +SE +ID 5312 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.657448) +BD GR Veto +PQ 4.44869 +SE +ET UN +ID 5313 +TI 1771360831.566068792 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 5314 +BD StripPairingError (More than maximum number of strip hits allowed on one side (8)) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.953168) (Strip hit removed with energy 15.073470) (Strip hit removed with energy 15.021121) (Strip hit removed with energy 14.916823) (Strip hit removed with energy 9.691315) (Strip hit removed with energy 8.445107) (Strip hit removed with energy 6.878826) (Strip hit removed with energy 10.837057) +BD GR Veto +PQ +SE +ID 5315 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.877241) +BD GR Veto +PQ 0.853705 +SE +ET PH +ID 5316 +TI 1771360831.569267692 +CC NStripHits 4 +PE 357.467 +PP 0.0462656 -0.121967 -2.67889 +PW 0 +SE +ID 5317 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 178.914381) +BD GR Veto +PQ 0.0813612 +SE +ID 5318 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.157119) +BD GR Veto +PQ +SE +ET UN +ID 5319 +TI 1771360831.575254276 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 5320 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.091490) +BD GR Veto +PQ 0.00441773 +SE +ET UN +ID 5321 +TI 1771360831.579581342 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 301.971 +SE +ET PH +ID 5322 +TI 1771360831.580865709 +CC NStripHits 3 +PE 213.019 +PP 3.42205 -0.551016 1.51173 +PW 0 +SE +ET PH +ID 5323 +TI 1771360831.582856376 +CC NStripHits 2 +PE 65.295 +PP -2.39827 -0.996405 1.86095 +PW 0 +SE +ID 5324 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET UN +ID 5325 +TI 1771360831.584562959 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.0823 +SE +ID 5326 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.471008) +BD GR Veto +PQ 0.19011 +SE +ID 5327 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.490610) +BD GR Veto +PQ 0.409949 +SE +ET UN +ID 5328 +TI 1771360831.585981426 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5329 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (40.728845)) (GR Hit: Detector ID 0 and Energy 167.702069) +BD GR Veto +PQ 40.7288 +SE +ET PH +ID 5330 +TI 1771360831.589424759 +CC NStripHits 2 +PE 80.908 +PP 2.02517 0.161187 -1.63123 +PW 0 +SE +ID 5331 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.813101) +BD GR Veto +PQ 0.00888237 +SE +ET UN +ID 5332 +TI 1771360831.589963293 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.8278 +SE +ET PH +ID 5333 +TI 1771360831.590949559 +CC NStripHits 2 +PE 82.7404 +PP 3.07283 0.368392 2.32658 +PW 0 +SE +ET CO +ID 5334 +TI 1771360831.591552859 +CC NStripHits 5 +PQ 0.455926 +SQ 2 +CT 0 1 +TL 1 +TE 124.95 +CE 135.68 1.01569 124.95 1.19373 +CD -1.1178 0.256456 -3.61014 0.0336036 0.0374214 0.0336036 -0.768578 0.124894 -4.42498 0.0336036 0.0294293 0.0336036 0 0 0 0 0 0 +LA 0.89623 +SE +ID 5335 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ET CO +ID 5336 +TI 1771360831.594513209 +CC NStripHits 5 +PQ 25.5494 +SQ 2 +CT 0 1 +TL 1 +TE 65.1845 +CE 134.669 2.03328 65.1845 1.603 +CD 2.25798 -0.0770756 -4.07577 0.0336036 0.026979 0.0336036 2.14158 -0.038465 -3.14452 0.0336036 0.027337 0.0336036 0 0 0 0 0 0 +LA 0.93929 +SE +ET UN +ID 5337 +TI 1771360831.594752476 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5338 +TI 1771360831.597833009 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5339 +TI 1771360831.598181293 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.033 +SE +ET PH +ID 5340 +TI 1771360831.598782693 +CC NStripHits 2 +PE 128.43 +PP -1.93264 -0.226192 2.09377 +PW 0 +SE +ID 5341 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.887154) +BD GR Veto +PQ 0.0650505 +SE +ET PH +ID 5342 +TI 1771360831.601705226 +CC NStripHits 3 +PE 304.585 +PP -2.63108 0.364271 -0.117953 +PW 0 +SE +ET PH +ID 5343 +TI 1771360831.602626293 +CC NStripHits 3 +PE 75.9252 +PP 3.42205 -0.282609 0.696891 +PW 0 +SE +ID 5344 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 401.776980) +BD GR Veto +PQ 0.488981 +SE +ET PH +ID 5345 +TI 1771360831.604995376 +CC NStripHits 4 +PE 107.476 +PP 0.395484 -0.337211 2.44298 +PW 0 +SE +ID 5346 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5347 +TI 1771360831.608849193 +CC NStripHits 2 +PE 79.259 +PP -0.535766 -0.318835 1.62814 +PW 0 +SE +ID 5348 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.708135) +BD GR Veto +PQ 0.0573041 +SE +ET PH +ID 5349 +TI 1771360831.610632326 +CC NStripHits 2 +PE 28.0683 +PP 0.395484 -0.337245 -2.9117 +PW 0 +SE +ET UN +ID 5350 +TI 1771360831.610982093 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.9952 +SE +ET UN +ID 5351 +TI 1771360831.611512143 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 82.1121 +SE +ET PH +ID 5352 +TI 1771360831.613727760 +CC NStripHits 4 +PE 239.919 +PP -0.186547 0.340358 -4.30858 +PW 0 +SE +ID 5353 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.997825) +BD GR Veto +PQ 0.288326 +SE +ET UN +ID 5354 +TI 1771360831.614654160 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 351.981 +SE +ET PH +ID 5355 +TI 1771360831.615223126 +CC NStripHits 2 +PE 83.8125 +PP 2.84002 0.165505 2.6758 +PW 0 +SE +ET PH +ID 5356 +TI 1771360831.615318393 +CC NStripHits 2 +PE 59.5227 +PP 2.95642 -1.15628 -0.00154687 +PW 0 +SE +ET UN +ID 5357 +TI 1771360831.615962460 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.3722 +SE +ET UN +ID 5358 +TI 1771360831.616758693 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 128.242 +SE +ET UN +ID 5359 +TI 1771360831.618376976 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5360 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (41.045758)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 48.492884)) (GR Hit: Detector ID 0 and Energy 357.833308) +BD GR Veto +PQ 41.0458 +SE +ET PH +ID 5361 +TI 1771360831.621018927 +CC NStripHits 2 +PE 86.4164 +PP 3.18923 0.348766 -1.51483 +PW 0 +SE +ET PH +ID 5362 +TI 1771360831.621249027 +CC NStripHits 2 +PE 127.158 +PP 1.21033 -0.98632 -2.32967 +PW 0 +SE +ET PH +ID 5363 +TI 1771360831.621742693 +CC NStripHits 2 +PE 62.8971 +PP 3.18923 0.116718 -0.350766 +PW 0 +SE +ET PH +ID 5364 +TI 1771360831.622116693 +CC NStripHits 2 +PE 80.608 +PP -0.0701406 -0.230912 1.16252 +PW 0 +SE +ID 5365 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (63.723821)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 79.592928)) (GR Hit: Detector ID 0 and Energy 143.922452) +BD GR Veto +PQ 63.7238 +SE +ET PH +ID 5366 +TI 1771360831.623266127 +CC NStripHits 2 +PE 79.2852 +PP 1.55955 0.375284 -2.21327 +PW 0 +SE +ID 5367 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.798041) +BD GR Veto +PQ 0.205874 +SE +ET PH +ID 5368 +TI 1771360831.624135960 +CC NStripHits 2 +PE 76.0376 +PP -0.186547 0.166326 1.74455 +PW 0 +SE +ID 5369 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.672487) +BD GR Veto +PQ 0.000583855 +SE +ET PH +ID 5370 +TI 1771360831.626031910 +CC NStripHits 2 +PE 140.972 +PP 0.0462656 -1.05073 -3.61014 +PW 0 +SE +ET PH +ID 5371 +TI 1771360831.627865710 +CC NStripHits 3 +PE 155.198 +PP 2.95642 0.154188 2.21017 +PW 0 +SE +ET PH +ID 5372 +TI 1771360831.628861810 +CC NStripHits 2 +PE 77.9015 +PP 2.4908 -0.228664 -1.63123 +PW 0 +SE +ET UN +ID 5373 +TI 1771360831.629290177 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.834 +SE +ID 5374 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.930567) +BD GR Veto +PQ 0.31489 +SE +ET UN +ID 5375 +TI 1771360831.630536293 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5376 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.878432) +QA StripPairing (Best reduced chi square is not below 25 (40.180362)) (GR Hit: Detector ID 0 and Energy 31.777781) +BD GR Veto +PQ 40.1804 +SE +ET PH +ID 5377 +TI 1771360831.631812543 +CC NStripHits 2 +PE 78.7413 +PP 0.744703 0.358681 0.813297 +PW 0 +SE +ET UN +ID 5378 +TI 1771360831.633206543 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5379 +TI 1771360831.633705543 +CC NStripHits 2 +PE 81.0854 +PP 3.65486 0.0415162 -4.30858 +PW 0 +SE +ET PH +ID 5380 +TI 1771360831.635085460 +CC NStripHits 3 +PE 181.424 +PP 2.25798 -0.0805833 -1.98045 +PW 0 +SE +ID 5381 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.224639) +BD GR Veto +PQ 5.16078 +SE +ET PH +ID 5382 +TI 1771360831.635602260 +CC NStripHits 2 +PE 74.8919 +PP -0.302953 0.24924 0.114859 +PW 0 +SE +ET UN +ID 5383 +TI 1771360831.635807743 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 252.179 +SE +ET UN +ID 5384 +TI 1771360831.637267243 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5385 +TI 1771360831.638651510 +CC NStripHits 2 +PE 80.5384 +PP 2.37439 0.232967 -3.84295 +PW 0 +SE +ET PH +ID 5386 +TI 1771360831.639902277 +CC NStripHits 2 +PE 81.2621 +PP 3.18923 0.372257 -0.467172 +PW 0 +SE +ET PH +ID 5387 +TI 1771360831.640774577 +CC NStripHits 2 +PE 108.72 +PP 2.25798 -0.850369 -4.07577 +PW 0 +SE +ET UN +ID 5388 +TI 1771360831.643673360 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5389 +TI 1771360831.646639027 +CC NStripHits 2 +PE 79.407 +PP -0.186547 0.150794 -2.44608 +PW 0 +SE +ET PH +ID 5390 +TI 1771360831.647246894 +CC NStripHits 2 +PE 203.218 +PP 1.55955 -1.08835 2.6758 +PW 0 +SE +ET UN +ID 5391 +TI 1771360831.648628910 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5392 +TI 1771360831.650193394 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 49.1277 +SE +ET PH +ID 5393 +TI 1771360831.652081094 +CC NStripHits 2 +PE 78.0026 +PP 1.21033 0.231488 0.696891 +PW 0 +SE +ET UN +ID 5394 +TI 1771360831.652856594 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5395 +TI 1771360831.652981310 +CC NStripHits 3 +PE 159.617 +PP 1.09392 -0.458393 0.347672 +PW 0 +SE +ID 5396 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.201134) +BD GR Veto +PQ 0.0262113 +SE +ET PH +ID 5397 +TI 1771360831.659961360 +CC NStripHits 2 +PE 77.8356 +PP 1.44314 0.222215 -1.98045 +PW 0 +SE +ID 5398 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5399 +TI 1771360831.661551844 +CC NStripHits 2 +PE 53.1988 +PP 0.744703 0.297894 1.04611 +PW 0 +SE +ET PH +ID 5400 +TI 1771360831.662458627 +CC NStripHits 2 +PE 76.8109 +PP 2.6072 0.346868 1.39533 +PW 0 +SE +ID 5401 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.933051) +BD GR Veto +PQ 0.615542 +SE +ET PH +ID 5402 +TI 1771360831.666692377 +CC NStripHits 2 +PE 208.096 +PP 2.25798 -0.494992 -1.39842 +PW 0 +SE +ET UN +ID 5403 +TI 1771360831.667034011 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 251.524 +SE +ID 5404 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.443937) +BD GR Veto +PQ 0.000407457 +SE +ET UN +ID 5405 +TI 1771360831.668848711 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.7034 +SE +ET PH +ID 5406 +TI 1771360831.669766077 +CC NStripHits 3 +PE 301.045 +PP 2.25798 -0.437407 -1.63123 +PW 0 +SE +ID 5407 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.036085) +BD GR Veto +PQ 0.843959 +SE +ET PH +ID 5408 +TI 1771360831.672158094 +CC NStripHits 2 +PE 30.5458 +PP 2.6072 -0.298107 -0.816391 +PW 0 +SE +ID 5409 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.286846) +BD GR Veto +PQ 0.153007 +SE +ID 5410 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 134.701230) +BD GR Veto +PQ 6.13406 +SE +ET UN +ID 5411 +TI 1771360831.676619227 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.8358 +SE +ET UN +ID 5412 +TI 1771360831.678785277 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 148.246 +SE +ID 5413 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.089005) +BD GR Veto +PQ 0.513204 +SE +ET UN +ID 5414 +TI 1771360831.681118978 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.1915 +SE +ET PH +ID 5415 +TI 1771360831.681210011 +CC NStripHits 2 +PE 76.0586 +PP 3.88767 -0.429156 -4.30858 +PW 0 +SE +ET PH +ID 5416 +TI 1771360831.681460228 +CC NStripHits 2 +PE 28.7969 +PP 3.53845 0.128758 -0.699984 +PW 0 +SE +ID 5417 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5418 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ET PH +ID 5419 +TI 1771360831.683833678 +CC NStripHits 2 +PE 151.226 +PP 2.4908 0.01107 -1.39842 +PW 0 +SE +ID 5420 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.752938) +BD GR Veto +PQ +SE +ET PH +ID 5421 +TI 1771360831.684931411 +CC NStripHits 2 +PE 145.138 +PP 2.02517 -0.390079 -3.95936 +PW 0 +SE +ID 5422 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 5423 +TI 1771360831.686406744 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 5424 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.288768) +BD GR Veto +PQ 0.824135 +SE +ID 5425 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.948520) (Strip hit removed with energy 16.608806) +BD GR Veto +PQ +SE +ET CO +ID 5426 +TI 1771360831.690250044 +CC NStripHits 8 +PQ 0.787591 +SQ 3 +CT 0.00090621 0.269829 +TL 1 +TE 210.324 +CE 144.342 1.7125 210.324 1.17459 +CD 2.02517 -0.410028 -3.14452 0.0336036 0.0243116 0.0336036 0.511891 -0.871709 -1.98045 0.0336036 0.0202513 0.0336036 0 0 0 0 0 0 +LA 0.520884 +SE +ET PH +ID 5427 +TI 1771360831.692924611 +CC NStripHits 3 +PE 200.45 +PP -1.58342 -0.709501 -3.26092 +PW 0 +SE +ID 5428 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET PH +ID 5429 +TI 1771360831.693294411 +CC NStripHits 2 +PE 76.2131 +PP -2.16545 0.251159 1.62814 +PW 0 +SE +ET UN +ID 5430 +TI 1771360831.693761478 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 5431 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.262908)) (GR Hit: Detector ID 0 and Energy 72.064058) +BD GR Veto +PQ 18.6509 +SE +ET PH +ID 5432 +TI 1771360831.699749361 +CC NStripHits 2 +PE 99.2406 +PP -1.1178 0.37191 -1.63123 +PW 0 +SE +ET PH +ID 5433 +TI 1771360831.700088261 +CC NStripHits 2 +PE 77.9554 +PP -0.186547 0.159765 -3.37733 +PW 0 +SE +ID 5434 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 84.644399) +BD GR Veto +PQ 0.14081 +SE +ET PH +ID 5435 +TI 1771360831.703329961 +CC NStripHits 2 +PE 30.9662 +PP -0.652172 -0.0477228 0.813297 +PW 0 +SE +ET UN +ID 5436 +TI 1771360831.704970945 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9004 +SE +ET PH +ID 5437 +TI 1771360831.708596845 +CC NStripHits 2 +PE 161.061 +PP -1.00139 0.245469 -0.117953 +PW 0 +SE +ET PH +ID 5438 +TI 1771360831.708730578 +CC NStripHits 2 +PE 75.837 +PP 1.44314 0.350848 1.39533 +PW 0 +SE +ET PH +ID 5439 +TI 1771360831.708909011 +CC NStripHits 2 +PE 100.984 +PP -1.00139 0.352396 -0.467172 +PW 0 +SE +ID 5440 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 98.252995) +BD GR Veto +PQ 0.27773 +SE +ET PH +ID 5441 +TI 1771360831.709701678 +CC NStripHits 2 +PE 133.96 +PP -1.58342 -0.0282959 0.929703 +PW 0 +SE +ID 5442 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5443 +TI 1771360831.710309445 +CC NStripHits 2 +PE 77.2624 +PP 4.3533 0.142714 0.696891 +PW 0 +SE +ID 5444 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET UN +ID 5445 +TI 1771360831.711405845 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5446 +TI 1771360831.711509261 +CC NStripHits 2 +PE 114.584 +PP 3.65486 -0.672535 1.97736 +PW 0 +SE +ET PH +ID 5447 +TI 1771360831.712040328 +CC NStripHits 2 +PE 124.549 +PP 0.861109 -0.973837 -2.21327 +PW 0 +SE +ET UN +ID 5448 +TI 1771360831.717762261 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7577 +SE +ET UN +ID 5449 +TI 1771360831.720813678 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.4044 +SE +ID 5450 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 21.149948)) (GR Hit: Detector ID 0 and Energy 172.572544) +BD GR Veto +PQ 3.69957 +SE +ET PH +ID 5451 +TI 1771360831.723620295 +CC NStripHits 2 +PE 106.447 +PP 3.30564 -1.06297 -2.32967 +PW 0 +SE +ID 5452 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.561257) +BD GR Veto +PQ 0.0845019 +SE +ET PH +ID 5453 +TI 1771360831.724672962 +CC NStripHits 3 +PE 226.227 +PP 1.90877 -0.606508 2.09377 +PW 0 +SE +ET PH +ID 5454 +TI 1771360831.725392945 +CC NStripHits 2 +PE 207.961 +PP -0.419359 -0.959873 -1.98045 +PW 0 +SE +ET PH +ID 5455 +TI 1771360831.726816162 +CC NStripHits 2 +PE 76.1682 +PP -1.2342 0.316494 1.27892 +PW 0 +SE +ET CO +ID 5456 +TI 1771360831.728421528 +CC NStripHits 6 +PQ 20.3909 +SQ 3 +CT 0.0558612 1.44372 +TL 1 +TE 72.1684 +CE 281.767 1.42351 72.1684 1.41691 +CD -2.16545 -0.12834 0.464078 0.0336036 0.026477 0.0336036 -2.04905 -0.456755 0.580484 0.0336036 0.0238679 0.0336036 0 0 0 0 0 0 +LA 0.367363 +SE +ID 5457 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.802930) +BD GR Veto +PQ 0.247409 +SE +ET PH +ID 5458 +TI 1771360831.730075862 +CC NStripHits 2 +PE 81.2005 +PP 3.42205 0.13556 -0.117953 +PW 0 +SE +ET PH +ID 5459 +TI 1771360831.730175345 +CC NStripHits 2 +PE 75.0686 +PP -1.58342 0.358944 1.97736 +PW 0 +SE +ET PH +ID 5460 +TI 1771360831.731164128 +CC NStripHits 2 +PE 79.2995 +PP -0.0701406 -0.87205 2.32658 +PW 0 +SE +ET UN +ID 5461 +TI 1771360831.732922095 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 96.9833 +SE +ET PH +ID 5462 +TI 1771360831.733192628 +CC NStripHits 2 +PE 60.4565 +PP 3.42205 -1.07591 -2.7953 +PW 0 +SE +ID 5463 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.692711) +BD GR Veto +PQ 0.00163533 +SE +ID 5464 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 5465 +TI 1771360831.735361012 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 5466 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.281913) +BD GR Veto +PQ +SE +ET PH +ID 5467 +TI 1771360831.736062378 +CC NStripHits 2 +PE 28.6086 +PP 3.77127 0.125161 -0.350766 +PW 0 +SE +ET PH +ID 5468 +TI 1771360831.736152845 +CC NStripHits 3 +PE 245.602 +PP 1.79236 0.207958 -1.63123 +PW 0 +SE +ET PH +ID 5469 +TI 1771360831.736302345 +CC NStripHits 2 +PE 302.211 +PP 4.12048 -0.633349 0.347672 +PW 0 +SE +ID 5470 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET UN +ID 5471 +TI 1771360831.737491262 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.7895 +SE +ET PH +ID 5472 +TI 1771360831.737844578 +CC NStripHits 2 +PE 117.361 +PP 1.44314 -0.0461474 -1.51483 +PW 0 +SE +ET UN +ID 5473 +TI 1771360831.743135912 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5474 +TI 1771360831.744254845 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 22.2092 +SE +ID 5475 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 172.796110) +BD GR Veto +PQ 0.928115 +SE +ET UN +ID 5476 +TI 1771360831.747200729 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5477 +TI 1771360831.748028712 +CC NStripHits 2 +PE 60.3786 +PP 2.37439 0.365577 2.09377 +PW 0 +SE +ET PH +ID 5478 +TI 1771360831.749805662 +CC NStripHits 2 +PE 80.7483 +PP 3.77127 0.289604 -0.00154687 +PW 0 +SE +ET PH +ID 5479 +TI 1771360831.750769062 +CC NStripHits 2 +PE 80.5159 +PP 0.395484 0.041551 2.44298 +PW 0 +SE +ET PH +ID 5480 +TI 1771360831.751787329 +CC NStripHits 2 +PE 82.68 +PP 0.0462656 -1.10501 2.55939 +PW 0 +SE +ET PH +ID 5481 +TI 1771360831.752151345 +CC NStripHits 2 +PE 81.626 +PP 4.00408 0.158808 -3.84295 +PW 0 +SE +ET PH +ID 5482 +TI 1771360831.753971462 +CC NStripHits 2 +PE 192.53 +PP -2.16545 0.361578 -2.32967 +PW 0 +SE +ID 5483 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.593515) +QA StripPairing (Best reduced chi square is not below 25 (47.165130)) (GR Hit: Detector ID 0 and Energy 119.044878) +BD GR Veto +PQ 47.1651 +SE +ET PH +ID 5484 +TI 1771360831.757366729 +CC NStripHits 2 +PE 71.4128 +PP 1.44314 0.37459 1.39533 +PW 0 +SE +ET PH +ID 5485 +TI 1771360831.757464179 +CC NStripHits 3 +PE 122.501 +PP -2.74748 0.0348707 -2.44608 +PW 0 +SE +ET UN +ID 5486 +TI 1771360831.758523229 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5487 +TI 1771360831.758916595 +CC NStripHits 2 +PE 57.5175 +PP 3.65486 -0.815953 0.347672 +PW 0 +SE +ET UN +ID 5488 +TI 1771360831.760315546 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.3499 +SE +ET UN +ID 5489 +TI 1771360831.760582712 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.1122 +SE +ID 5490 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.734455) +BD GR Veto +PQ 0.00608181 +SE +ET PH +ID 5491 +TI 1771360831.761613362 +CC NStripHits 2 +PE 299.337 +PP 1.90877 -0.382453 -4.30858 +PW 0 +SE +ET PH +ID 5492 +TI 1771360831.761813062 +CC NStripHits 3 +PE 70.318 +PP 2.25798 0.348753 -3.61014 +PW 0 +SE +ET PH +ID 5493 +TI 1771360831.763687262 +CC NStripHits 2 +PE 80.7445 +PP -0.419359 0.355177 0.696891 +PW 0 +SE +ET UN +ID 5494 +TI 1771360831.765904212 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5495 +TI 1771360831.768737112 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.8848 +SE +ET PH +ID 5496 +TI 1771360831.769764762 +CC NStripHits 2 +PE 94.9973 +PP 4.3533 -1.14044 -3.61014 +PW 0 +SE +ET PH +ID 5497 +TI 1771360831.770181629 +CC NStripHits 2 +PE 183.655 +PP 0.395484 -0.094923 1.97736 +PW 0 +SE +ID 5498 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.111523) +BD GR Veto +PQ 0.154367 +SE +ET PH +ID 5499 +TI 1771360831.771640562 +CC NStripHits 2 +PE 29.7045 +PP 4.00408 0.11799 -3.37733 +PW 0 +SE +ID 5500 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 354.382587) +BD GR Veto +PQ 0.121244 +SE +ET PH +ID 5501 +TI 1771360831.774093729 +CC NStripHits 2 +PE 108.559 +PP 1.44314 0.121392 0.813297 +PW 0 +SE +ID 5502 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.854347) +BD GR Veto +PQ 0.327651 +SE +ID 5503 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.882321) +BD GR Veto +PQ 2.26842 +SE +ID 5504 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.291784) +BD GR Veto +PQ 1.15217 +SE +ET PH +ID 5505 +TI 1771360831.778597229 +CC NStripHits 2 +PE 99.7659 +PP 0.162672 -1.16578 -3.61014 +PW 0 +SE +ET PH +ID 5506 +TI 1771360831.779322846 +CC NStripHits 2 +PE 28.3363 +PP -2.86389 -0.732351 2.09377 +PW 0 +SE +ID 5507 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 0.500457 +SE +ID 5508 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5509 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5510 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET CO +ID 5511 +TI 1771360831.784477379 +CC NStripHits 5 +PQ 0.0403704 +SQ 2 +CT 0 1 +TL 1 +TE 30.5732 +CE 158.484 1.21774 30.5732 1.00109 +CD 1.79236 -0.0531672 -2.44608 0.0336036 0.0271421 0.0336036 2.02517 -0.275923 -2.09686 0.0336036 0.025329 0.0336036 0 0 0 0 0 0 +LA 0.475158 +SE +ET UN +ID 5512 +TI 1771360831.785070213 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.4828 +SE +ET PH +ID 5513 +TI 1771360831.785786913 +CC NStripHits 2 +PE 246.28 +PP 0.279078 0.36186 -1.51483 +PW 0 +SE +ET PH +ID 5514 +TI 1771360831.787468346 +CC NStripHits 2 +PE 71.7216 +PP -1.2342 0.335719 0.347672 +PW 0 +SE +ET UN +ID 5515 +TI 1771360831.790066979 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 74.7611 +SE +ET PH +ID 5516 +TI 1771360831.790329979 +CC NStripHits 4 +PE 158.596 +PP 2.95642 0.0806304 -2.56248 +PW 0 +SE +ET UN +ID 5517 +TI 1771360831.790658779 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7122 +SE +ET PH +ID 5518 +TI 1771360831.794910646 +CC NStripHits 2 +PE 29.6138 +PP -0.884984 0.253204 0.114859 +PW 0 +SE +ET PH +ID 5519 +TI 1771360831.795277646 +CC NStripHits 2 +PE 227.33 +PP 4.00408 0.345999 2.21017 +PW 0 +SE +ET UN +ID 5520 +TI 1771360831.795519196 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3265 +SE +ET PH +ID 5521 +TI 1771360831.797323679 +CC NStripHits 3 +PE 355.628 +PP 0.861109 0.340426 -3.84295 +PW 0 +SE +ET PH +ID 5522 +TI 1771360831.799311179 +CC NStripHits 2 +PE 75.7121 +PP -1.58342 0.317556 1.16252 +PW 0 +SE +ET CO +ID 5523 +TI 1771360831.800129080 +CC NStripHits 6 +PQ 12.2379 +SQ 2 +CT 0 1 +TL 1 +TE 77.7809 +CE 147.049 1.02794 77.7809 1.32917 +CD -1.2342 -0.060635 -1.51483 0.0336036 0.0270719 0.0336036 -1.58342 -0.573494 -1.16561 0.0336036 0.0229449 0.0336036 0 0 0 0 0 0 +LA 0.711993 +SE +ET PH +ID 5524 +TI 1771360831.801010296 +CC NStripHits 2 +PE 150.238 +PP -1.81623 0.279207 1.62814 +PW 0 +SE +ET PH +ID 5525 +TI 1771360831.802906030 +CC NStripHits 2 +PE 57.0112 +PP 0.0462656 -1.13198 -3.02811 +PW 0 +SE +ET CO +ID 5526 +TI 1771360831.804913980 +CC NStripHits 6 +PQ 1.32206 +SQ 2 +CT 0 1 +TL 1 +TE 42.3309 +CE 313.214 1.39913 42.3309 0.98779 +CD -0.768578 -0.679288 2.44298 0.0336036 0.022384 0.0336036 -0.884984 -0.68929 2.6758 0.0336036 0.0223172 0.0336036 0 0 0 0 0 0 +LA 0.260491 +SE +ET PH +ID 5527 +TI 1771360831.805795063 +CC NStripHits 3 +PE 180.65 +PP 2.14158 -0.216324 -0.350766 +PW 0 +SE +ET PH +ID 5528 +TI 1771360831.806220363 +CC NStripHits 2 +PE 71.1439 +PP 3.07283 0.372857 2.21017 +PW 0 +SE +ET PH +ID 5529 +TI 1771360831.806799663 +CC NStripHits 2 +PE 154.005 +PP 2.6072 0.307785 -3.84295 +PW 0 +SE +ET PH +ID 5530 +TI 1771360831.807241680 +CC NStripHits 3 +PE 79.8377 +PP 2.02517 0.0376771 0.580484 +PW 0 +SE +ET PH +ID 5531 +TI 1771360831.807586096 +CC NStripHits 2 +PE 128.207 +PP 3.53845 0.372349 -4.30858 +PW 0 +SE +ID 5532 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 355.806023) +BD GR Veto +PQ 0.0205245 +SE +ID 5533 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.990635) +BD GR Veto +PQ 0.0033548 +SE +ET PH +ID 5534 +TI 1771360831.809005330 +CC NStripHits 2 +PE 79.388 +PP -2.74748 -0.717068 -3.95936 +PW 0 +SE +ET UN +ID 5535 +TI 1771360831.810861430 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5536 +TI 1771360831.810973646 +CC NStripHits 2 +PE 81.3399 +PP -1.58342 0.345306 2.6758 +PW 0 +SE +ET UN +ID 5537 +TI 1771360831.811428363 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7676 +SE +ET UN +ID 5538 +TI 1771360831.812367780 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.1681 +SE +ET PH +ID 5539 +TI 1771360831.814899863 +CC NStripHits 4 +PE 124.174 +PP 1.90877 -0.484802 -2.32967 +PW 0 +SE +ID 5540 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 269.672603) +BD GR Veto +PQ 0.267416 +SE +ET PH +ID 5541 +TI 1771360831.818896513 +CC NStripHits 2 +PE 158.785 +PP 2.95642 0.287516 1.04611 +PW 0 +SE +ID 5542 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.861340) +BD GR Veto +PQ 0.170064 +SE +ID 5543 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (79.942842)) (GR Hit: Detector ID 0 and Energy 205.008353) +BD GR Veto +PQ 79.9428 +SE +ID 5544 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.174716) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 43.656565)) (GR Hit: Detector ID 0 and Energy 75.122664) +BD GR Veto +PQ 0.979073 +SE +ET UN +ID 5545 +TI 1771360831.823661230 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.9638 +SE +ET UN +ID 5546 +TI 1771360831.824479630 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.754 +SE +ET UN +ID 5547 +TI 1771360831.824835997 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5548 +TI 1771360831.825061180 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 117.469 +SE +ID 5549 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ET PH +ID 5550 +TI 1771360831.827588263 +CC NStripHits 3 +PE 356.959 +PP -2.04905 0.318169 -0.699984 +PW 0 +SE +ID 5551 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 354.323494) +BD GR Veto +PQ 0.364709 +SE +ID 5552 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.969267) +BD GR Veto +PQ 0.260862 +SE +ET UN +ID 5553 +TI 1771360831.828585630 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 5554 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 131.459785) (GR Hit: Detector ID 0 and Energy 168.683684) +BD GR Veto +PQ 0.132716 +SE +ET UN +ID 5555 +TI 1771360831.830176880 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 5556 +TI 1771360831.830499647 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.212 +SE +ID 5557 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.318779) +BD GR Veto +PQ 0.428182 +SE +ID 5558 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 305.029161) +BD GR Veto +PQ 4.8021e-05 +SE +ET UN +ID 5559 +TI 1771360831.834376513 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.8218 +SE +ET PH +ID 5560 +TI 1771360831.835198663 +CC NStripHits 2 +PE 155.199 +PP -0.768578 -0.968071 -3.02811 +PW 0 +SE +ET PH +ID 5561 +TI 1771360831.835413147 +CC NStripHits 2 +PE 53.3057 +PP 4.12048 0.37799 -1.51483 +PW 0 +SE +ET PH +ID 5562 +TI 1771360831.836282663 +CC NStripHits 2 +PE 166.314 +PP 1.44314 -0.323262 -0.583578 +PW 0 +SE +ET PH +ID 5563 +TI 1771360831.837894713 +CC NStripHits 2 +PE 60.1151 +PP 0.162672 0.21323 0.696891 +PW 0 +SE +ET PH +ID 5564 +TI 1771360831.838207197 +CC NStripHits 2 +PE 78.1246 +PP 1.55955 0.2861 0.114859 +PW 0 +SE +ET PH +ID 5565 +TI 1771360831.838868230 +CC NStripHits 2 +PE 81.3477 +PP -0.884984 0.24135 0.464078 +PW 0 +SE +ET PH +ID 5566 +TI 1771360831.839565113 +CC NStripHits 4 +PE 81.3561 +PP -1.46702 0.334314 1.74455 +PW 0 +SE +ET PH +ID 5567 +TI 1771360831.840814247 +CC NStripHits 5 +PE 156.68 +PP 3.18923 -0.483716 -1.51483 +PW 0 +SE +ET UN +ID 5568 +TI 1771360831.841576014 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5569 +TI 1771360831.841951130 +CC NStripHits 2 +PE 96.988 +PP 2.95642 -1.15508 -4.6578 +PW 0 +SE +ET CO +ID 5570 +TI 1771360831.842410264 +CC NStripHits 5 +PQ 47.5296 +SQ 2 +CT 0 1 +TL 1 +TE 138.111 +CE 222.382 2.03249 138.111 1.07351 +CD 1.90877 -0.540342 -0.816391 0.0336036 0.0231818 0.0336036 2.02517 -0.581529 -0.583578 0.0336036 0.0229055 0.0336036 0 0 0 0 0 0 +LA 0.263528 +SE +ET UN +ID 5571 +TI 1771360831.842631414 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5572 +TI 1771360831.842939964 +CC NStripHits 2 +PE 72.1196 +PP 2.4908 -0.894354 0.464078 +PW 0 +SE +ET PH +ID 5573 +TI 1771360831.843519147 +CC NStripHits 2 +PE 73.2375 +PP 4.12048 0.0696692 2.09377 +PW 0 +SE +ET PH +ID 5574 +TI 1771360831.843991164 +CC NStripHits 5 +PE 2174.24 +PP 2.95642 -0.781573 -0.234359 +PW 0 +SE +ET PH +ID 5575 +TI 1771360831.846403197 +CC NStripHits 2 +PE 92.299 +PP 4.3533 -0.658276 1.16252 +PW 0 +SE +ET PH +ID 5576 +TI 1771360831.848998997 +CC NStripHits 3 +PE 103.486 +PP -2.16545 -0.730051 1.04611 +PW 0 +SE +ET PH +ID 5577 +TI 1771360831.849929830 +CC NStripHits 2 +PE 80.2713 +PP 1.21033 0.37719 -0.234359 +PW 0 +SE +ET PH +ID 5578 +TI 1771360831.850174030 +CC NStripHits 3 +PE 174.858 +PP 4.12048 -0.37927 -0.00154687 +PW 0 +SE +ET PH +ID 5579 +TI 1771360831.852648864 +CC NStripHits 2 +PE 152.923 +PP -0.186547 -0.743645 -1.16561 +PW 0 +SE +ID 5580 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 42.271788)) +BD GR Veto +PQ 0.00860128 +SE +ID 5581 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.521229) +BD GR Veto +PQ 0.0513887 +SE +ET PH +ID 5582 +TI 1771360831.855022647 +CC NStripHits 2 +PE 80.1681 +PP 2.6072 -0.966278 -4.30858 +PW 0 +SE +ID 5583 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 5584 +TI 1771360831.864593297 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 5585 +TI 1771360831.866161664 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6075 +SE +ET PH +ID 5586 +TI 1771360831.866653564 +CC NStripHits 3 +PE 107.678 +PP 3.42205 0.262004 1.97736 +PW 0 +SE +ID 5587 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.785863) +BD GR Veto +PQ 0.579142 +SE +ET UN +ID 5588 +TI 1771360831.870300347 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 5589 +TI 1771360831.873474997 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5590 +TI 1771360831.875183547 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9654 +SE +ET PH +ID 5591 +TI 1771360831.876038247 +CC NStripHits 2 +PE 73.8683 +PP 1.09392 -0.222347 -4.6578 +PW 0 +SE +ET PH +ID 5592 +TI 1771360831.878758847 +CC NStripHits 2 +PE 91.9786 +PP -2.16545 -0.0900616 2.44298 +PW 0 +SE +ET PH +ID 5593 +TI 1771360831.880210514 +CC NStripHits 2 +PE 65.7058 +PP -2.51467 0.239322 1.74455 +PW 0 +SE +ET PH +ID 5594 +TI 1771360831.880978014 +CC NStripHits 2 +PE 81.428 +PP -2.28186 0.365434 0.580484 +PW 0 +SE +ID 5595 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5596 +TI 1771360831.883277698 +CC NStripHits 2 +PE 80.35 +PP -2.16545 0.0771761 0.696891 +PW 0 +SE +ID 5597 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5598 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.060526) +BD GR Veto +PQ +SE +ID 5599 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.079834) +BD GR Veto +PQ +SE +ET PH +ID 5600 +TI 1771360831.884732481 +CC NStripHits 2 +PE 71.1188 +PP 2.4908 0.337459 -3.49373 +PW 0 +SE +ET PH +ID 5601 +TI 1771360831.885241114 +CC NStripHits 2 +PE 354.009 +PP -2.28186 0.178433 1.97736 +PW 0 +SE +ET PH +ID 5602 +TI 1771360831.885325248 +CC NStripHits 3 +PE 185.514 +PP -1.46702 0.319663 -2.44608 +PW 0 +SE +ID 5603 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.437878) (Strip hit removed with energy 11.101034) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 24.563738)) (GR Hit: Detector ID 0 and Energy 38.727873) +BD GR Veto +PQ 23.3479 +SE +ET UN +ID 5604 +TI 1771360831.886108448 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 47.9195 +SE +ET PH +ID 5605 +TI 1771360831.886675081 +CC NStripHits 2 +PE 214.719 +PP -2.63108 0.330815 -3.02811 +PW 0 +SE +ET PH +ID 5606 +TI 1771360831.886763731 +CC NStripHits 2 +PE 75.6007 +PP 2.84002 0.113993 -3.72655 +PW 0 +SE +ET PH +ID 5607 +TI 1771360831.888251348 +CC NStripHits 2 +PE 81.3155 +PP -0.652172 0.34914 1.04611 +PW 0 +SE +ET UN +ID 5608 +TI 1771360831.889483748 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 109.533 +SE +ET UN +ID 5609 +TI 1771360831.889792814 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 223.824 +SE +ET PH +ID 5610 +TI 1771360831.891726781 +CC NStripHits 2 +PE 46.4747 +PP 1.09392 0.352567 2.55939 +PW 0 +SE +ET PH +ID 5611 +TI 1771360831.892576531 +CC NStripHits 2 +PE 158.635 +PP 1.09392 0.169456 -4.30858 +PW 0 +SE +ET PH +ID 5612 +TI 1771360831.893194581 +CC NStripHits 2 +PE 140.827 +PP -0.302953 -0.880903 -2.67889 +PW 0 +SE +ET PH +ID 5613 +TI 1771360831.893539148 +CC NStripHits 2 +PE 208.485 +PP -2.51467 0.0657447 -1.98045 +PW 0 +SE +ET UN +ID 5614 +TI 1771360831.894071181 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5615 +TI 1771360831.894246231 +CC NStripHits 2 +PE 80.0231 +PP -1.2342 0.370081 0.696891 +PW 0 +SE +ET PH +ID 5616 +TI 1771360831.894524214 +CC NStripHits 2 +PE 80.5109 +PP -0.535766 0.16089 0.347672 +PW 0 +SE +ET UN +ID 5617 +TI 1771360831.894666131 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.2879 +SE +ID 5618 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 160.317972) +BD GR Veto +PQ 0.353975 +SE +ET PH +ID 5619 +TI 1771360831.899151031 +CC NStripHits 2 +PE 53.2305 +PP -1.81623 -0.549297 -1.51483 +PW 0 +SE +ET UN +ID 5620 +TI 1771360831.900672715 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 53.8837 +SE +ET PH +ID 5621 +TI 1771360831.903131265 +CC NStripHits 2 +PE 126.928 +PP 3.53845 -1.14974 2.32658 +PW 0 +SE +ET PH +ID 5622 +TI 1771360831.904465631 +CC NStripHits 2 +PE 99.7901 +PP 2.02517 0.169847 -1.28202 +PW 0 +SE +ET UN +ID 5623 +TI 1771360831.905934565 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5624 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.375290) +BD GR Veto +PQ 0.239382 +SE +ET UN +ID 5625 +TI 1771360831.907040431 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.5886 +SE +ET PH +ID 5626 +TI 1771360831.907773865 +CC NStripHits 2 +PE 145.558 +PP 0.628297 -0.471179 0.347672 +PW 0 +SE +ET PH +ID 5627 +TI 1771360831.910899931 +CC NStripHits 2 +PE 58.9105 +PP -1.1178 -1.06403 -3.95936 +PW 0 +SE +ET PH +ID 5628 +TI 1771360831.912240431 +CC NStripHits 2 +PE 81.6583 +PP -0.0701406 0.345583 -2.44608 +PW 0 +SE +ET PH +ID 5629 +TI 1771360831.912376515 +CC NStripHits 3 +PE 127.728 +PP 2.95642 0.305007 1.27892 +PW 0 +SE +ID 5630 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.437265) +BD GR Veto +PQ 0.551243 +SE +ET UN +ID 5631 +TI 1771360831.913423198 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7882 +SE +ID 5632 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 48.135726) +BD GR Veto +PQ 0.874792 +SE +ET PH +ID 5633 +TI 1771360831.914225348 +CC NStripHits 2 +PE 164.284 +PP 1.09392 0.365447 2.55939 +PW 0 +SE +ET UN +ID 5634 +TI 1771360831.914740365 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 302.589 +SE +ET UN +ID 5635 +TI 1771360831.915274365 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5683 +SE +ID 5636 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (231.279802)) (GR Hit: Detector ID 0 and Energy 173.264643) +BD GR Veto +PQ 231.28 +SE +ET UN +ID 5637 +TI 1771360831.919266465 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.0095 +SE +ET PH +ID 5638 +TI 1771360831.920661815 +CC NStripHits 3 +PE 175.827 +PP 3.42205 -0.621009 -4.19217 +PW 0 +SE +ET UN +ID 5639 +TI 1771360831.922366048 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5640 +TI 1771360831.923595965 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5641 +TI 1771360831.923698465 +CC NStripHits 2 +PE 141.71 +PP 1.32673 0.263872 1.62814 +PW 0 +SE +ET PH +ID 5642 +TI 1771360831.924278082 +CC NStripHits 3 +PE 163.053 +PP 1.21033 -0.429659 1.62814 +PW 0 +SE +ID 5643 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 89.628114) +BD GR Veto +PQ 0.0758298 +SE +ET UN +ID 5644 +TI 1771360831.928373432 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7646 +SE +ET PH +ID 5645 +TI 1771360831.928641882 +CC NStripHits 2 +PE 127.048 +PP 0.0462656 0.362186 -3.72655 +PW 0 +SE +ET UN +ID 5646 +TI 1771360831.933960382 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 69.9799 +SE +ET PH +ID 5647 +TI 1771360831.934073698 +CC NStripHits 2 +PE 80.1891 +PP 1.44314 0.356256 -2.44608 +PW 0 +SE +ID 5648 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.708077) +BD GR Veto +PQ 9.95494e-06 +SE +ET PH +ID 5649 +TI 1771360831.934760298 +CC NStripHits 2 +PE 30.5779 +PP 0.279078 -0.720436 -2.7953 +PW 0 +SE +ET UN +ID 5650 +TI 1771360831.935132415 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.9865 +SE +ET UN +ID 5651 +TI 1771360831.938269098 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5652 +TI 1771360831.940367665 +CC NStripHits 3 +PE 170.93 +PP 1.67595 -0.0869401 -1.51483 +PW 0 +SE +ID 5653 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5654 +TI 1771360831.941539515 +CC NStripHits 2 +PE 142.412 +PP -2.74748 -0.499732 2.21017 +PW 0 +SE +ID 5655 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 42.926583) +BD GR Veto +PQ 5.55454 +SE +ID 5656 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.129411) +BD GR Veto +PQ 0.0195763 +SE +ET PH +ID 5657 +TI 1771360831.942642532 +CC NStripHits 2 +PE 80.0235 +PP 1.32673 0.123911 -3.95936 +PW 0 +SE +ID 5658 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.717500) +BD GR Veto +PQ 0.109757 +SE +ET CO +ID 5659 +TI 1771360831.946592499 +CC NStripHits 4 +PQ 10.326 +SQ 2 +CT 0 1 +TL 1 +TE 53.5034 +CE 108.153 1.46799 53.5034 0.987791 +CD -2.51467 0.374151 -4.30858 0.0336036 0.0199164 0.0336036 -2.39827 0.374408 -4.42498 0.0336036 0.0197366 0.0336036 0 0 0 0 0 0 +LA 0.164615 +SE +ET PH +ID 5660 +TI 1771360831.949416715 +CC NStripHits 3 +PE 236.977 +PP 1.67595 -0.682037 -4.42498 +PW 0 +SE +ET UN +ID 5661 +TI 1771360831.950618065 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5662 +TI 1771360831.954280532 +CC NStripHits 2 +PE 210.693 +PP 3.18923 -0.178952 -2.32967 +PW 0 +SE +ET PH +ID 5663 +TI 1771360831.955499982 +CC NStripHits 2 +PE 172.186 +PP -0.419359 -0.214711 1.97736 +PW 0 +SE +ET PH +ID 5664 +TI 1771360831.956439249 +CC NStripHits 2 +PE 82.8839 +PP -1.81623 0.344266 1.04611 +PW 0 +SE +ET PH +ID 5665 +TI 1771360831.956856149 +CC NStripHits 2 +PE 188.13 +PP 3.30564 -0.433438 0.231266 +PW 0 +SE +ET PH +ID 5666 +TI 1771360831.956951549 +CC NStripHits 2 +PE 73.0946 +PP -2.51467 0.199382 -0.00154687 +PW 0 +SE +ET PH +ID 5667 +TI 1771360831.957302849 +CC NStripHits 2 +PE 70.9881 +PP -0.652172 0.286414 2.09377 +PW 0 +SE +ET UN +ID 5668 +TI 1771360831.957883299 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5669 +TI 1771360831.959522849 +CC NStripHits 2 +PE 83.4221 +PP 3.30564 -1.17348 -4.54139 +PW 0 +SE +ET PH +ID 5670 +TI 1771360831.962147482 +CC NStripHits 2 +PE 81.5573 +PP -1.2342 0.274477 -0.117953 +PW 0 +SE +ET PH +ID 5671 +TI 1771360831.963664432 +CC NStripHits 2 +PE 80.7492 +PP -0.652172 0.374202 2.55939 +PW 0 +SE +ET CO +ID 5672 +TI 1771360831.963870966 +CC NStripHits 4 +PQ 28.1493 +SQ 2 +CT 0 1 +TL 1 +TE 127.51 +CE 224.357 1.44005 127.51 0.971871 +CD -0.0701406 0.0338485 1.16252 0.0336036 0.027983 0.0336036 0.279078 -0.0564308 1.51173 0.0336036 0.0271081 0.0336036 0 0 0 0 0 0 +LA 0.502047 +SE +ET UN +ID 5673 +TI 1771360831.964476632 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ID 5674 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (69.838625)) (GR Hit: Detector ID 0 and Energy 174.082688) +BD GR Veto +PQ 69.8386 +SE +ET UN +ID 5675 +TI 1771360831.965373516 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 229.446 +SE +ID 5676 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.392068) +BD GR Veto +PQ 0.021837 +SE +ET PH +ID 5677 +TI 1771360831.966130016 +CC NStripHits 2 +PE 79.5702 +PP -0.535766 0.29253 -1.39842 +PW 0 +SE +ID 5678 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.550819) (Strip hit removed with energy 15.783060) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.136703) +BD GR Veto +PQ 20.7108 +SE +ID 5679 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.790208) +BD GR Veto +PQ 0.103751 +SE +ET PH +ID 5680 +TI 1771360831.971949032 +CC NStripHits 2 +PE 64.3922 +PP 3.42205 0.363428 -1.28202 +PW 0 +SE +ID 5681 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 56.488283)) (GR Hit: Detector ID 0 and Energy 212.270712) +BD GR Veto +PQ 4.35942 +SE +ET PH +ID 5682 +TI 1771360831.975111982 +CC NStripHits 3 +PE 106.382 +PP 3.88767 0.188009 -0.234359 +PW 0 +SE +ET UN +ID 5683 +TI 1771360831.975648716 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5684 +TI 1771360831.976341032 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0969 +SE +ET PH +ID 5685 +TI 1771360831.982481383 +CC NStripHits 2 +PE 81.7839 +PP 2.95642 0.214344 -0.234359 +PW 0 +SE +ET UN +ID 5686 +TI 1771360831.983322699 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.5332 +SE +ET PH +ID 5687 +TI 1771360831.984432549 +CC NStripHits 2 +PE 125.895 +PP 3.07283 -0.835222 -4.42498 +PW 0 +SE +ID 5688 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ET UN +ID 5689 +TI 1771360831.985386333 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5690 +TI 1771360831.986642533 +CC NStripHits 3 +PE 119.803 +PP 0.162672 -0.811942 2.55939 +PW 0 +SE +ET PH +ID 5691 +TI 1771360831.987209716 +CC NStripHits 3 +PE 132.355 +PP -0.419359 -0.526212 2.55939 +PW 0 +SE +ET UN +ID 5692 +TI 1771360831.989668516 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5112 +SE +ET PH +ID 5693 +TI 1771360831.990186016 +CC NStripHits 2 +PE 79.0785 +PP 1.55955 0.363005 -2.44608 +PW 0 +SE +ID 5694 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 226.175400) +BD GR Veto +PQ 0.035004 +SE +ET PH +ID 5695 +TI 1771360831.991111799 +CC NStripHits 2 +PE 132.723 +PP 4.3533 -0.586967 -1.28202 +PW 0 +SE +ET UN +ID 5696 +TI 1771360831.991717433 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 278.681 +SE +ID 5697 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ID 5698 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.595884) (Strip hit removed with energy 13.384731) (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET PH +ID 5699 +TI 1771360831.995795583 +CC NStripHits 2 +PE 164.592 +PP 3.07283 -1.08272 -4.30858 +PW 0 +SE +ID 5700 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.092770) +BD GR Veto +PQ 0.327976 +SE +ET PH +ID 5701 +TI 1771360831.996449849 +CC NStripHits 2 +PE 79.2556 +PP 3.77127 0.369469 2.09377 +PW 0 +SE +ET CO +ID 5702 +TI 1771360831.997056749 +CC NStripHits 7 +PQ 4.95035 +SQ 3 +CT 0.00031429 0.0787251 +TL 1 +TE 85.6423 +CE 264.492 1.87307 85.6423 1.03844 +CD 1.79236 0.139538 -0.699984 0.0336036 0.029771 0.0336036 1.44314 -0.899245 -1.39842 0.0336036 0.0199834 0.0336036 0 0 0 0 0 0 +LA 0.398178 +SE +ET PH +ID 5703 +TI 1771360831.997851483 +CC NStripHits 2 +PE 211.283 +PP -2.04905 -0.419081 0.347672 +PW 0 +SE +ET UN +ID 5704 +TI 1771360831.998344916 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET PH +ID 5705 +TI 1771360831.999949833 +CC NStripHits 2 +PE 75.544 +PP 3.42205 -0.460199 -4.19217 +PW 0 +SE +ET PH +ID 5706 +TI 1771360832.002050533 +CC NStripHits 5 +PE 217.325 +PP 1.90877 0.0165795 -0.00154687 +PW 0 +SE +ET UN +ID 5707 +TI 1771360832.003050233 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8865 +SE +ET PH +ID 5708 +TI 1771360832.004466316 +CC NStripHits 2 +PE 69.6603 +PP 0.279078 -1.07757 -2.7953 +PW 0 +SE +ET PH +ID 5709 +TI 1771360832.005111383 +CC NStripHits 3 +PE 78.5903 +PP 0.628297 0.323664 -2.9117 +PW 0 +SE +ET PH +ID 5710 +TI 1771360832.005865300 +CC NStripHits 3 +PE 729.91 +PP -0.652172 -0.97795 -1.74764 +PW 0 +SE +ET UN +ID 5711 +TI 1771360832.006480650 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 131.4 +SE +ID 5712 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.781826) +QA StripPairing (Best reduced chi square is not below 25 (66.318555)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.531574)) +BD GR Veto +PQ 66.3186 +SE +ID 5713 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 24.918269)) (GR Hit: Detector ID 0 and Energy 82.534501) +BD GR Veto +PQ 1.10231 +SE +ID 5714 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.024579) +BD GR Veto +PQ 0.00383988 +SE +ET PH +ID 5715 +TI 1771360832.008693183 +CC NStripHits 3 +PE 180.086 +PP -1.1178 0.248651 0.580484 +PW 0 +SE +ET UN +ID 5716 +TI 1771360832.009555183 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5717 +TI 1771360832.010976916 +CC NStripHits 2 +PE 107.52 +PP -1.93264 -0.193275 -3.14452 +PW 0 +SE +ET PH +ID 5718 +TI 1771360832.013065483 +CC NStripHits 2 +PE 76.7277 +PP 3.18923 0.226253 -3.14452 +PW 0 +SE +ET PH +ID 5719 +TI 1771360832.014314300 +CC NStripHits 2 +PE 72.1151 +PP -0.884984 0.337831 -0.583578 +PW 0 +SE +ET UN +ID 5720 +TI 1771360832.015367850 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 5721 +TI 1771360832.016197333 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 185.145 +SE +ET CO +ID 5722 +TI 1771360832.016510566 +CC NStripHits 4 +PQ 0.633592 +SQ 2 +CT 0 1 +TL 1 +TE 88.8236 +CE 264.993 1.08064 88.8236 1.00794 +CD 1.55955 -0.707262 -1.39842 0.0336036 0.0221728 0.0336036 1.67595 -0.656944 -1.28202 0.0336036 0.0225145 0.0336036 0 0 0 0 0 0 +LA 0.172133 +SE +ET PH +ID 5723 +TI 1771360832.016798050 +CC NStripHits 2 +PE 43.1668 +PP 0.511891 0.303671 -2.67889 +PW 0 +SE +ET UN +ID 5724 +TI 1771360832.017599800 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 183.847 +SE +ET PH +ID 5725 +TI 1771360832.017768150 +CC NStripHits 2 +PE 31.6603 +PP -1.93264 -0.675591 2.6758 +PW 0 +SE +ET PH +ID 5726 +TI 1771360832.018264766 +CC NStripHits 2 +PE 303.392 +PP 0.395484 0.0153785 -4.42498 +PW 0 +SE +ID 5727 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.487337) +BD GR Veto +PQ 0.581951 +SE +ET UN +ID 5728 +TI 1771360832.019904316 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.3713 +SE +ET CO +ID 5729 +TI 1771360832.020727717 +CC NStripHits 4 +PQ 16.9824 +SQ 2 +CT 0 1 +TL 1 +TE 62.5905 +CE 150.251 0.995863 62.5905 1.33863 +CD -1.46702 -0.86727 0.580484 0.0336036 0.0202958 0.0336036 -1.58342 -1.07215 0.231266 0.0336036 0.0208903 0.0336036 0 0 0 0 0 0 +LA 0.421281 +SE +ET UN +ID 5730 +TI 1771360832.023688167 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 4 +PE 0 +SE +ID 5731 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.209510) +BD GR Veto +PQ 1.4919 +SE +ET UN +ID 5732 +TI 1771360832.024475067 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.2659 +SE +ID 5733 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 176.913022) +BD GR Veto +PQ 0.0170984 +SE +ET PH +ID 5734 +TI 1771360832.025328850 +CC NStripHits 2 +PE 81.2417 +PP -1.1178 0.348912 0.347672 +PW 0 +SE +ET PH +ID 5735 +TI 1771360832.025928950 +CC NStripHits 4 +PE 353.955 +PP -1.46702 -0.780763 -4.42498 +PW 0 +SE +ET PH +ID 5736 +TI 1771360832.026992783 +CC NStripHits 2 +PE 42.8888 +PP -2.39827 0.168385 0.696891 +PW 0 +SE +ID 5737 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 140.649449) +BD GR Veto +PQ 0.805964 +SE +ET UN +ID 5738 +TI 1771360832.029675183 +BD DepthCalibrationError (No calibration coefficients) +CC NStripHits 2 +PE 151.977 +SE +ID 5739 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 57.362068) +BD GR Veto +PQ 0.984913 +SE +ET UN +ID 5740 +TI 1771360832.031900633 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3184 +SE +ET PH +ID 5741 +TI 1771360832.034141817 +CC NStripHits 4 +PE 197.957 +PP 3.77127 0.269624 -3.02811 +PW 0 +SE +ET UN +ID 5742 +TI 1771360832.034314150 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.455 +SE +ET UN +ID 5743 +TI 1771360832.034651450 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.6077 +SE +ET PH +ID 5744 +TI 1771360832.035672183 +CC NStripHits 2 +PE 51.2578 +PP 3.77127 -0.682258 1.39533 +PW 0 +SE +ID 5745 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.969809) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.230644) +BD GR Veto +PQ 5.84374 +SE +ET PH +ID 5746 +TI 1771360832.036129467 +CC NStripHits 2 +PE 80.855 +PP 0.279078 0.364226 1.39533 +PW 0 +SE +ET UN +ID 5747 +TI 1771360832.037543667 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5748 +TI 1771360832.041119717 +CC NStripHits 2 +PE 352.529 +PP -0.419359 -0.334159 0.347672 +PW 0 +SE +ET PH +ID 5749 +TI 1771360832.041469967 +CC NStripHits 2 +PE 78.9894 +PP 2.4908 0.278265 -4.30858 +PW 0 +SE +ET PH +ID 5750 +TI 1771360832.044053900 +CC NStripHits 3 +PE 357.121 +PP 2.25798 -0.0702261 2.6758 +PW 0 +SE +ID 5751 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.680313) (Strip hit removed with energy 11.911634) (Strip hit removed with energy 19.387425) +BD GR Veto +PQ +SE +ET UN +ID 5752 +TI 1771360832.045506934 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 71.4122 +SE +ET PH +ID 5753 +TI 1771360832.046874050 +CC NStripHits 2 +PE 113.079 +PP -1.58342 -0.943861 0.347672 +PW 0 +SE +ID 5754 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 84.180057) +BD GR Veto +PQ 5.72231 +SE +ET PH +ID 5755 +TI 1771360832.047172134 +CC NStripHits 3 +PE 162.581 +PP -1.00139 -0.0527531 1.86095 +PW 0 +SE +ID 5756 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.350140) (Strip hit removed with energy 17.662673) +QA StripPairing (Best reduced chi square is not below 25 (65.316784)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 57.362150)) (GR Hit: Detector ID 0 and Energy 126.573470) +BD GR Veto +PQ 65.3168 +SE +ET PH +ID 5757 +TI 1771360832.052172900 +CC NStripHits 2 +PE 31.2152 +PP 1.32673 0.0375285 -0.583578 +PW 0 +SE +ET PH +ID 5758 +TI 1771360832.052953734 +CC NStripHits 3 +PE 353.322 +PP 1.90877 -0.637806 -1.39842 +PW 0 +SE +ID 5759 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.608721)) (GR Hit: Detector ID 0 and Energy 72.516445) +BD GR Veto +PQ 25.6087 +SE +ET UN +ID 5760 +TI 1771360832.055852834 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.8132 +SE +ID 5761 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.720169) +BD GR Veto +PQ 0.0945533 +SE +ET PH +ID 5762 +TI 1771360832.059400184 +CC NStripHits 2 +PE 71.7485 +PP 2.14158 -0.198191 -3.61014 +PW 0 +SE +ET PH +ID 5763 +TI 1771360832.060350934 +CC NStripHits 2 +PE 32.1273 +PP 3.88767 0.0675823 -1.74764 +PW 0 +SE +ET PH +ID 5764 +TI 1771360832.062422251 +CC NStripHits 4 +PE 180.977 +PP 1.67595 0.173145 2.32658 +PW 0 +SE +ET UN +ID 5765 +TI 1771360832.062591067 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8336 +SE +ET PH +ID 5766 +TI 1771360832.063277767 +CC NStripHits 3 +PE 185.069 +PP 2.95642 -0.00779663 -4.30858 +PW 0 +SE +ET CO +ID 5767 +TI 1771360832.064003217 +CC NStripHits 4 +PQ 0.41136 +SQ 2 +CT 0 1 +TL 1 +TE 113.236 +CE 220.096 1.01057 113.236 1.03644 +CD 0.861109 0.377816 -2.7953 0.0336036 0.0172996 0.0336036 2.25798 0.142088 -2.67889 0.0336036 0.0298356 0.0336036 0 0 0 0 0 0 +LA 1.4214 +SE +ET PH +ID 5768 +TI 1771360832.064267167 +CC NStripHits 3 +PE 355.603 +PP 1.21033 -0.134917 -4.30858 +PW 0 +SE +ET PH +ID 5769 +TI 1771360832.065082884 +CC NStripHits 2 +PE 82.0216 +PP 1.90877 0.359619 -1.74764 +PW 0 +SE +ET UN +ID 5770 +TI 1771360832.065182351 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0857 +SE +ET PH +ID 5771 +TI 1771360832.066023384 +CC NStripHits 2 +PE 209.61 +PP -0.0701406 0.291781 -2.67889 +PW 0 +SE +ID 5772 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 126.817453) +BD GR Veto +PQ 0.333487 +SE +ET UN +ID 5773 +TI 1771360832.067066134 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5774 +TI 1771360832.067438717 +CC NStripHits 2 +PE 82.7667 +PP -1.35061 0.378015 -0.350766 +PW 0 +SE +ET PH +ID 5775 +TI 1771360832.067592634 +CC NStripHits 2 +PE 78.934 +PP 2.37439 0.343321 0.114859 +PW 0 +SE +ET PH +ID 5776 +TI 1771360832.069337301 +CC NStripHits 3 +PE 80.9569 +PP -0.0701406 -0.896666 -0.699984 +PW 0 +SE +ET PH +ID 5777 +TI 1771360832.069827384 +CC NStripHits 2 +PE 79.7187 +PP 0.279078 0.350639 -4.07577 +PW 0 +SE +ET UN +ID 5778 +TI 1771360832.070513917 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 52.2959 +SE +ET PH +ID 5779 +TI 1771360832.073244751 +CC NStripHits 2 +PE 153.587 +PP 3.18923 -0.582218 -2.56248 +PW 0 +SE +ET PH +ID 5780 +TI 1771360832.074029584 +CC NStripHits 2 +PE 118.382 +PP 0.977516 -0.953423 -3.02811 +PW 0 +SE +ET PH +ID 5781 +TI 1771360832.074162051 +CC NStripHits 2 +PE 90.8237 +PP -2.28186 -1.14977 1.86095 +PW 0 +SE +ET UN +ID 5782 +TI 1771360832.075212817 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 60.7684 +SE +ET UN +ID 5783 +TI 1771360832.077272417 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8892 +SE +ET UN +ID 5784 +TI 1771360832.077570217 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.0714 +SE +ID 5785 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.815210) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 25.598607)) (GR Hit: Detector ID 0 and Energy 155.282953) +BD GR Veto +PQ 22.8649 +SE +ET UN +ID 5786 +TI 1771360832.078445101 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3768 +SE +ET CO +ID 5787 +TI 1771360832.080918751 +CC NStripHits 4 +PQ 46.1321 +SQ 2 +CT 0.601911 0.398089 +TL 1 +TE 133.189 +CE 137.167 1.01086 133.189 1.3819 +CD 0.162672 -0.872439 -3.72655 0.0336036 0.0202437 0.0336036 0.0462656 -1.15411 -3.37733 0.0336036 0.0262133 0.0336036 0 0 0 0 0 0 +LA 0.463512 +SE +ET UN +ID 5788 +TI 1771360832.082047901 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7341 +SE +ID 5789 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 5790 +TI 1771360832.083546901 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6828 +SE +ET PH +ID 5791 +TI 1771360832.083648418 +CC NStripHits 2 +PE 103.907 +PP 1.79236 0.0487585 1.16252 +PW 0 +SE +ID 5792 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 5793 +TI 1771360832.084083384 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 207.291 +SE +ET PH +ID 5794 +TI 1771360832.084212884 +CC NStripHits 4 +PE 277.127 +PP -1.2342 -0.399528 0.813297 +PW 0 +SE +ID 5795 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5796 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.390968) +BD GR Veto +PQ 12.0955 +SE +ET CO +ID 5797 +TI 1771360832.085796701 +CC NStripHits 7 +PQ 0.722565 +SQ 2 +CT 0.541078 0.458922 +TL 1 +TE 205.143 +CE 178.741 1.02306 205.143 1.53889 +CD -1.35061 0.0922969 0.813297 0.0336036 0.0287659 0.0336036 0.162672 -0.348634 1.86095 0.0336036 0.0248617 0.0336036 0 0 0 0 0 0 +LA 1.89262 +SE +ET UN +ID 5798 +TI 1771360832.085989801 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5799 +TI 1771360832.086211484 +CC NStripHits 3 +PE 159.706 +PP 3.88767 0.171361 -1.86405 +PW 0 +SE +ID 5800 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.218671) +BD GR Veto +PQ 0.109122 +SE +ET PH +ID 5801 +TI 1771360832.089274018 +CC NStripHits 2 +PE 73.8432 +PP 3.88767 -1.15856 -1.39842 +PW 0 +SE +ET PH +ID 5802 +TI 1771360832.090217784 +CC NStripHits 2 +PE 112.533 +PP -0.768578 -0.615865 0.929703 +PW 0 +SE +ID 5803 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.547976) +BD GR Veto +PQ 0.0916096 +SE +ID 5804 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 113.314074) +BD GR Veto +PQ 1.67751 +SE +ET UN +ID 5805 +TI 1771360832.095730384 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 5806 +TI 1771360832.098166701 +CC NStripHits 6 +PQ 9.12429 +SQ 2 +CT 0 1 +TL 1 +TE 76.9552 +CE 281.628 2.22671 76.9552 1.04063 +CD 1.32673 -0.439919 -1.51483 0.0336036 0.024038 0.0336036 0.628297 -0.807587 -1.16561 0.0336036 0.0208379 0.0336036 0 0 0 0 0 0 +LA 0.863101 +SE +ET UN +ID 5807 +TI 1771360832.098925834 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5808 +TI 1771360832.099711951 +CC NStripHits 3 +PE 51.2943 +PP -1.81623 0.377389 -1.28202 +PW 0 +SE +ET PH +ID 5809 +TI 1771360832.100162801 +CC NStripHits 2 +PE 80.1084 +PP 3.65486 0.323824 -3.02811 +PW 0 +SE +ET UN +ID 5810 +TI 1771360832.100505301 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5811 +TI 1771360832.101140301 +CC NStripHits 2 +PE 74.5226 +PP -0.884984 -0.141755 -2.21327 +PW 0 +SE +ID 5812 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 299.128995) +BD GR Veto +PQ 0.101342 +SE +ET UN +ID 5813 +TI 1771360832.103074101 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1754 +SE +ID 5814 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 167.562376) +BD GR Veto +PQ 0.121935 +SE +ET PH +ID 5815 +TI 1771360832.104177935 +CC NStripHits 2 +PE 79.2536 +PP -2.04905 0.219247 -3.14452 +PW 0 +SE +ID 5816 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.865239) +QA StripPairing (Best reduced chi square is not below 25 (67.840446)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 43.593644)) (GR Hit: Detector ID 0 and Energy 176.373237) (GR Hit: Detector ID 0 and Energy 117.845603) +BD GR Veto +PQ 67.8404 +SE +ET PH +ID 5817 +TI 1771360832.105804618 +CC NStripHits 2 +PE 74.0238 +PP -2.51467 0.0981422 -4.30858 +PW 0 +SE +ET PH +ID 5818 +TI 1771360832.107480451 +CC NStripHits 2 +PE 89.6336 +PP 3.53845 -0.587399 -0.117953 +PW 0 +SE +ET PH +ID 5819 +TI 1771360832.111523701 +CC NStripHits 3 +PE 189.256 +PP 0.0462656 0.146065 -1.63123 +PW 0 +SE +ET PH +ID 5820 +TI 1771360832.111831368 +CC NStripHits 2 +PE 148.652 +PP 1.21033 0.372073 -3.02811 +PW 0 +SE +ET PH +ID 5821 +TI 1771360832.112418685 +CC NStripHits 2 +PE 28.7612 +PP -0.884984 0.0169096 0.114859 +PW 0 +SE +ET UN +ID 5822 +TI 1771360832.113912151 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 302.139 +SE +ET PH +ID 5823 +TI 1771360832.117090801 +CC NStripHits 2 +PE 82.9507 +PP -2.04905 0.329143 -1.39842 +PW 0 +SE +ET PH +ID 5824 +TI 1771360832.118198018 +CC NStripHits 2 +PE 20.6964 +PP -0.884984 0.236497 -3.14452 +PW 0 +SE +ET PH +ID 5825 +TI 1771360832.118578735 +CC NStripHits 2 +PE 80.5586 +PP -0.884984 0.334109 0.929703 +PW 0 +SE +ID 5826 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.757780) +BD GR Veto +PQ 0.0216209 +SE +ET UN +ID 5827 +TI 1771360832.121011868 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2947 +SE +ID 5828 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.387425) +BD GR Veto +PQ 0.000100011 +SE +ET PH +ID 5829 +TI 1771360832.123140535 +CC NStripHits 2 +PE 89.2282 +PP 1.09392 0.379765 -1.63123 +PW 0 +SE +ID 5830 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.727380) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 43.194721)) (GR Hit: Detector ID 0 and Energy 97.533762) +BD GR Veto +PQ 8.6875 +SE +ET PH +ID 5831 +TI 1771360832.126078635 +CC NStripHits 2 +PE 54.2004 +PP -0.0701406 0.0361181 -1.86405 +PW 0 +SE +ET PH +ID 5832 +TI 1771360832.127644285 +CC NStripHits 2 +PE 62.9134 +PP 1.67595 0.373865 -0.699984 +PW 0 +SE +ET PH +ID 5833 +TI 1771360832.129220302 +CC NStripHits 3 +PE 136.916 +PP -1.35061 -0.929845 0.464078 +PW 0 +SE +ET PH +ID 5834 +TI 1771360832.129392052 +CC NStripHits 2 +PE 353.82 +PP -0.0701406 0.133246 -0.699984 +PW 0 +SE +ID 5835 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 132.510853) +BD GR Veto +PQ 0.048696 +SE +ET PH +ID 5836 +TI 1771360832.130407002 +CC NStripHits 3 +PE 172.63 +PP 3.88767 0.330303 -3.49373 +PW 0 +SE +ET UN +ID 5837 +TI 1771360832.131540718 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5838 +TI 1771360832.131736468 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0568 +SE +ID 5839 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 185.072231) +BD GR Veto +PQ 0.798525 +SE +ET CO +ID 5840 +TI 1771360832.133418102 +CC NStripHits 6 +PQ 0.59342 +SQ 2 +CT 0 1 +TL 1 +TE 28.9729 +CE 163.931 1.13807 28.9729 0.983562 +CD -1.58342 0.346171 0.231266 0.0336036 0.0346852 0.0336036 -1.46702 -0.775764 0.813297 0.0336036 0.0212523 0.0336036 0 0 0 0 0 0 +LA 1.26927 +SE +ET PH +ID 5841 +TI 1771360832.133825102 +CC NStripHits 5 +PE 358.216 +PP 2.37439 -0.272916 -3.37733 +PW 0 +SE +ET UN +ID 5842 +TI 1771360832.133931668 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5843 +TI 1771360832.134734735 +BD DepthCalibrationError (Out of Range) +CC NStripHits 10 +PE 342.548 +SE +ET PH +ID 5844 +TI 1771360832.136839585 +CC NStripHits 3 +PE 97.3057 +PP 3.18923 -1.10248 -4.6578 +PW 0 +SE +ET PH +ID 5845 +TI 1771360832.137166852 +CC NStripHits 2 +PE 182.695 +PP 0.628297 -0.142473 1.16252 +PW 0 +SE +ID 5846 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 131.570758) +BD GR Veto +PQ 0.373923 +SE +ET PH +ID 5847 +TI 1771360832.138077685 +CC NStripHits 2 +PE 167.02 +PP 3.30564 0.357852 -1.98045 +PW 0 +SE +ID 5848 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.102644) +BD GR Veto +PQ 6.32849e-07 +SE +ID 5849 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.907079) +BD GR Veto +PQ 0.0003157 +SE +ET PH +ID 5850 +TI 1771360832.144899119 +CC NStripHits 2 +PE 179.01 +PP -1.1178 -1.00031 1.16252 +PW 0 +SE +ET PH +ID 5851 +TI 1771360832.145827502 +CC NStripHits 3 +PE 79.3998 +PP -2.28186 0.330055 -1.63123 +PW 0 +SE +ET PH +ID 5852 +TI 1771360832.146383702 +CC NStripHits 2 +PE 80.0266 +PP 3.30564 0.353368 -3.72655 +PW 0 +SE +ET PH +ID 5853 +TI 1771360832.147569235 +CC NStripHits 2 +PE 112.464 +PP 3.42205 -0.449504 -0.816391 +PW 0 +SE +ID 5854 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.391373) +QA StripPairing (Best reduced chi square is not below 25 (39.775824)) (GR Hit: Detector ID 0 and Energy 134.906561) +BD GR Veto +PQ 39.7758 +SE +ID 5855 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.566798) (GR Hit: Detector ID 0 and Energy 74.348067) +BD GR Veto +PQ 20.1058 +SE +ET PH +ID 5856 +TI 1771360832.151965169 +CC NStripHits 3 +PE 211.994 +PP 4.00408 0.084944 1.74455 +PW 0 +SE +ET PH +ID 5857 +TI 1771360832.152208919 +CC NStripHits 3 +PE 107.179 +PP 3.88767 0.215672 0.580484 +PW 0 +SE +ET UN +ID 5858 +TI 1771360832.153260402 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.3774 +SE +ID 5859 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.647454) +BD GR Veto +PQ +SE +ET UN +ID 5860 +TI 1771360832.156297102 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 4 +PE 0 +SE +ET PH +ID 5861 +TI 1771360832.156492252 +CC NStripHits 2 +PE 80.7636 +PP 4.12048 0.376394 -3.26092 +PW 0 +SE +ET CO +ID 5862 +TI 1771360832.156713085 +CC NStripHits 10 +PQ 1.15716 +SQ 4 +CT 0.0137373 0.03614 +TL 1 +TE 48.0062 +CE 308.654 1.9034 48.0062 1.00349 +CD 2.02517 -1.09784 0.231266 0.0336036 0.0235892 0.0336036 2.25798 -0.963373 0.696891 0.0336036 0.0195449 0.0336036 0 0 0 0 0 0 +LA 0.53767 +SE +ET PH +ID 5863 +TI 1771360832.157492735 +CC NStripHits 2 +PE 140.121 +PP -2.39827 0.261861 1.16252 +PW 0 +SE +ET UN +ID 5864 +TI 1771360832.159652402 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 270.214 +SE +ID 5865 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (68.756505)) (GR Hit: Detector ID 0 and Energy 131.550624) +BD GR Veto +PQ 68.7565 +SE +ET PH +ID 5866 +TI 1771360832.161124802 +CC NStripHits 2 +PE 63.5067 +PP 1.09392 0.354926 2.6758 +PW 0 +SE +ET PH +ID 5867 +TI 1771360832.163034886 +CC NStripHits 2 +PE 162.94 +PP -2.39827 -0.882245 -2.67889 +PW 0 +SE +ID 5868 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.834773) (GR Hit: Detector ID 0 and Energy 36.060028) +BD GR Veto +PQ 7.36338 +SE +ET PH +ID 5869 +TI 1771360832.165754602 +CC NStripHits 3 +PE 319.39 +PP 2.4908 -0.911341 -0.117953 +PW 0 +SE +ET UN +ID 5870 +TI 1771360832.166734252 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5871 +TI 1771360832.167348302 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2917 +SE +ID 5872 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.554465) +BD GR Veto +PQ 13.5858 +SE +ET PH +ID 5873 +TI 1771360832.169636686 +CC NStripHits 2 +PE 73.9613 +PP 1.67595 0.305271 2.6758 +PW 0 +SE +ID 5874 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 139.155198) +BD GR Veto +PQ 0.460283 +SE +ID 5875 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET PH +ID 5876 +TI 1771360832.172617636 +CC NStripHits 3 +PE 117.665 +PP 0.0462656 0.319695 -0.234359 +PW 0 +SE +ID 5877 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.468749) +BD GR Veto +PQ 0.0152614 +SE +ET CO +ID 5878 +TI 1771360832.174482302 +CC NStripHits 6 +PQ 0.978846 +SQ 3 +CT 0.0034 0.0385327 +TL 1 +TE 125.481 +CE 176.617 1.42797 125.481 0.994555 +CD -1.58342 0.135064 2.6758 0.0336036 0.0296618 0.0336036 -0.652172 0.21123 2.44298 0.0336036 0.0326194 0.0336036 0 0 0 0 0 0 +LA 0.843079 +SE +ET PH +ID 5879 +TI 1771360832.175442902 +CC NStripHits 2 +PE 74.3501 +PP -0.419359 -0.878007 2.44298 +PW 0 +SE +ET UN +ID 5880 +TI 1771360832.179138736 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.9238 +SE +ET PH +ID 5881 +TI 1771360832.179446702 +CC NStripHits 2 +PE 81.428 +PP -0.419359 0.372885 0.580484 +PW 0 +SE +ET PH +ID 5882 +TI 1771360832.179872852 +CC NStripHits 2 +PE 78.0169 +PP -0.652172 0.280922 2.44298 +PW 0 +SE +ET PH +ID 5883 +TI 1771360832.181134986 +CC NStripHits 4 +PE 180.07 +PP 0.861109 -1.01824 -1.51483 +PW 0 +SE +ID 5884 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 109.144441) +BD GR Veto +PQ 18.7068 +SE +ID 5885 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.262595) +BD GR Veto +PQ +SE +ID 5886 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5887 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.157119) +BD GR Veto +PQ +SE +ID 5888 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.718931) (Strip hit removed with energy 9.658693) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.425602) +BD GR Veto +PQ 5.92822 +SE +ET PH +ID 5889 +TI 1771360832.186839136 +CC NStripHits 3 +PE 123.903 +PP 2.6072 -1.03624 -1.39842 +PW 0 +SE +ET UN +ID 5890 +TI 1771360832.191808786 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1152 +SE +ET UN +ID 5891 +TI 1771360832.194369186 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 336.069 +SE +ET PH +ID 5892 +TI 1771360832.194822053 +CC NStripHits 2 +PE 79.6913 +PP 3.42205 0.376685 -0.350766 +PW 0 +SE +ET PH +ID 5893 +TI 1771360832.196054636 +CC NStripHits 2 +PE 73.3568 +PP 0.977516 0.375473 -1.39842 +PW 0 +SE +ET PH +ID 5894 +TI 1771360832.196849553 +CC NStripHits 3 +PE 356.446 +PP 2.02517 0.353743 -1.86405 +PW 0 +SE +ET PH +ID 5895 +TI 1771360832.197406186 +CC NStripHits 2 +PE 82.1454 +PP -0.302953 0.362135 -2.7953 +PW 0 +SE +ET PH +ID 5896 +TI 1771360832.202279470 +CC NStripHits 2 +PE 81.1072 +PP 3.30564 0.250973 -0.234359 +PW 0 +SE +ID 5897 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.998789) +BD GR Veto +PQ 0.0552492 +SE +ET PH +ID 5898 +TI 1771360832.203629003 +CC NStripHits 2 +PE 72.2674 +PP 3.07283 -0.856989 2.32658 +PW 0 +SE +ET PH +ID 5899 +TI 1771360832.204688503 +CC NStripHits 2 +PE 81.3746 +PP 2.37439 0.366039 0.696891 +PW 0 +SE +ET UN +ID 5900 +TI 1771360832.205033120 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.0251 +SE +ID 5901 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.681664) (Strip hit removed with energy 15.391661) (Strip hit removed with energy 16.608806) +BD GR Veto +PQ 1.66967 +SE +ET PH +ID 5902 +TI 1771360832.207014020 +CC NStripHits 2 +PE 81.462 +PP 4.23689 0.369891 -1.16561 +PW 0 +SE +ET CO +ID 5903 +TI 1771360832.209407736 +CC NStripHits 5 +PQ 0.742098 +SQ 2 +CT 0 1 +TL 1 +TE 24.5612 +CE 89.7549 1.15064 24.5612 0.992394 +CD 0.977516 -0.857132 1.74455 0.0336036 0.020382 0.0336036 -0.419359 -0.0463837 2.32658 0.0336036 0.0272268 0.0336036 0 0 0 0 0 0 +LA 1.71678 +SE +ET UN +ID 5904 +TI 1771360832.209984370 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5905 +TI 1771360832.210080503 +CC NStripHits 2 +PE 169.196 +PP 2.72361 0.00232514 0.929703 +PW 0 +SE +ET PH +ID 5906 +TI 1771360832.211776486 +CC NStripHits 2 +PE 166.365 +PP -2.51467 0.367524 0.813297 +PW 0 +SE +ID 5907 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.760570) (Strip hit removed with energy 15.791573) +QA StripPairing (Best reduced chi square is not below 25 (43.350605)) +BD GR Veto +PQ 43.3506 +SE +ET UN +ID 5908 +TI 1771360832.216505420 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.4074 +SE +ET PH +ID 5909 +TI 1771360832.216636420 +CC NStripHits 2 +PE 673.927 +PP 3.77127 -0.219877 -2.56248 +PW 0 +SE +ET PH +ID 5910 +TI 1771360832.217891636 +CC NStripHits 2 +PE 354.794 +PP -2.04905 0.04677 2.6758 +PW 0 +SE +ID 5911 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ID 5912 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (66.061797)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 80.627885) (GR Hit: Detector ID 0 and Energy 157.432574) +BD GR Veto +PQ 66.0618 +SE +ET PH +ID 5913 +TI 1771360832.222622287 +CC NStripHits 2 +PE 85.7562 +PP 3.88767 -0.23238 -4.19217 +PW 0 +SE +ET PH +ID 5914 +TI 1771360832.225423887 +CC NStripHits 3 +PE 172.214 +PP -0.768578 -0.843791 -3.02811 +PW 0 +SE +ET PH +ID 5915 +TI 1771360832.228125053 +CC NStripHits 2 +PE 80.5088 +PP -1.69983 -0.026843 2.21017 +PW 0 +SE +ET CO +ID 5916 +TI 1771360832.229317453 +CC NStripHits 5 +PQ 0.708054 +SQ 2 +CT 0.723964 0.276036 +TL 1 +TE 364.386 +CE 193.483 1.05982 364.386 1.21272 +CD -2.04905 -0.296596 -1.74764 0.0336036 0.0252059 0.0336036 -2.16545 -0.434108 -1.39842 0.0336036 0.0240856 0.0336036 0 0 0 0 0 0 +LA 0.392954 +SE +ET PH +ID 5917 +TI 1771360832.230194187 +CC NStripHits 2 +PE 197.651 +PP 0.977516 0.338491 -3.84295 +PW 0 +SE +ET PH +ID 5918 +TI 1771360832.230310003 +CC NStripHits 2 +PE 102.524 +PP 4.23689 -1.13312 -2.44608 +PW 0 +SE +ET UN +ID 5919 +TI 1771360832.232128453 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5920 +TI 1771360832.232437387 +CC NStripHits 2 +PE 131.923 +PP 1.32673 -0.456614 -3.14452 +PW 0 +SE +ET PH +ID 5921 +TI 1771360832.232704620 +CC NStripHits 2 +PE 76.9509 +PP -1.58342 -0.881451 2.09377 +PW 0 +SE +ET UN +ID 5922 +TI 1771360832.233859070 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1546 +SE +ET UN +ID 5923 +TI 1771360832.235387637 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 48.6486 +SE +ET PH +ID 5924 +TI 1771360832.238778570 +CC NStripHits 2 +PE 82.6276 +PP 0.511891 0.265707 -2.9117 +PW 0 +SE +ET PH +ID 5925 +TI 1771360832.239076603 +CC NStripHits 2 +PE 63.2072 +PP -2.86389 0.375034 -1.51483 +PW 0 +SE +ET PH +ID 5926 +TI 1771360832.239836753 +CC NStripHits 2 +PE 76.5009 +PP 2.25798 -1.15123 -0.467172 +PW 0 +SE +ID 5927 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 46.854128) +BD GR Veto +PQ 0.0430668 +SE +ID 5928 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.188456)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 32.180370)) (GR Hit: Detector ID 0 and Energy 131.096498) +BD GR Veto +PQ 25.1885 +SE +ET PH +ID 5929 +TI 1771360832.240953837 +CC NStripHits 2 +PE 67.9541 +PP -0.652172 -0.50337 2.21017 +PW 0 +SE +ET PH +ID 5930 +TI 1771360832.241482670 +CC NStripHits 2 +PE 80.4128 +PP 2.4908 0.328567 -0.350766 +PW 0 +SE +ET PH +ID 5931 +TI 1771360832.241926820 +CC NStripHits 2 +PE 81.3802 +PP 0.511891 0.342372 -1.98045 +PW 0 +SE +ET CO +ID 5932 +TI 1771360832.243963904 +CC NStripHits 5 +PQ 5.68401 +SQ 2 +CT 0 1 +TL 1 +TE 123.557 +CE 177.648 1.24701 123.557 1.45109 +CD 1.67595 -1.152 -3.26092 0.0336036 0.0266516 0.0336036 0.861109 -0.798345 -4.07577 0.0336036 0.0209503 0.0336036 0 0 0 0 0 0 +LA 1.20541 +SE +ET CO +ID 5933 +TI 1771360832.245127220 +CC NStripHits 4 +PQ 0.140009 +SQ 2 +CT 0.562617 0.437383 +TL 1 +TE 206.021 +CE 176.802 1.0137 206.021 0.995833 +CD -2.63108 0.206992 1.39533 0.0336036 0.0323543 0.0336036 -2.51467 -0.00185112 0.813297 0.0336036 0.0276454 0.0336036 0 0 0 0 0 0 +LA 0.629229 +SE +ET UN +ID 5934 +TI 1771360832.245562137 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.7628 +SE +ET CO +ID 5935 +TI 1771360832.246245604 +CC NStripHits 6 +PQ 0.421114 +SQ 3 +CT 0.471628 0.91659 +TL 1 +TE 29.5792 +CE 120.978 1.51065 29.5792 0.961782 +CD 3.65486 -0.445958 -1.28202 0.0336036 0.0239825 0.0336036 3.53845 -1.17741 -1.63123 0.0336036 0.0167624 0.0336036 0 0 0 0 0 0 +LA 0.818853 +SE +ET PH +ID 5936 +TI 1771360832.247045137 +CC NStripHits 2 +PE 107.672 +PP 2.84002 0.310016 -0.583578 +PW 0 +SE +ID 5937 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.142148) +BD GR Veto +PQ 0.161829 +SE +ET UN +ID 5938 +TI 1771360832.248320787 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5355 +SE +ID 5939 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.314781) +BD GR Veto +PQ 0.114365 +SE +ET UN +ID 5940 +TI 1771360832.250712937 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.2764 +SE +ET PH +ID 5941 +TI 1771360832.253570520 +CC NStripHits 2 +PE 81.8683 +PP -1.93264 0.120676 -1.74764 +PW 0 +SE +ET PH +ID 5942 +TI 1771360832.256246887 +CC NStripHits 2 +PE 73.4401 +PP 3.77127 0.372311 0.929703 +PW 0 +SE +ET PH +ID 5943 +TI 1771360832.258223804 +CC NStripHits 2 +PE 78.1721 +PP 0.628297 0.115876 -2.7953 +PW 0 +SE +ET PH +ID 5944 +TI 1771360832.258598070 +CC NStripHits 2 +PE 130.902 +PP 0.279078 -0.804764 0.813297 +PW 0 +SE +ET PH +ID 5945 +TI 1771360832.260243387 +CC NStripHits 2 +PE 82.1145 +PP 0.162672 0.367862 -1.86405 +PW 0 +SE +ET PH +ID 5946 +TI 1771360832.260633371 +CC NStripHits 3 +PE 204.706 +PP 3.18923 0.146898 -0.117953 +PW 0 +SE +ET PH +ID 5947 +TI 1771360832.260864171 +CC NStripHits 2 +PE 80.3047 +PP 0.162672 0.347895 -2.67889 +PW 0 +SE +ET PH +ID 5948 +TI 1771360832.263763454 +CC NStripHits 2 +PE 79.9128 +PP 3.88767 -0.784677 -3.26092 +PW 0 +SE +ID 5949 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (36.150140)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 39.636674)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 175.060069) (GR Hit: Detector ID 0 and Energy 138.595746) +BD GR Veto +PQ 36.1501 +SE +ET PH +ID 5950 +TI 1771360832.269591554 +CC NStripHits 2 +PE 135.714 +PP 1.21033 -0.534689 1.62814 +PW 0 +SE +ID 5951 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.697689) +BD GR Veto +PQ 0.38534 +SE +ET PH +ID 5952 +TI 1771360832.276942771 +CC NStripHits 2 +PE 75.7432 +PP -0.652172 0.111242 -1.28202 +PW 0 +SE +ET PH +ID 5953 +TI 1771360832.277077137 +CC NStripHits 2 +PE 354.085 +PP -2.51467 -0.793377 -2.56248 +PW 0 +SE +ET UN +ID 5954 +TI 1771360832.277332337 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.9454 +SE +ET CO +ID 5955 +TI 1771360832.282960388 +CC NStripHits 5 +PQ 1.46651 +SQ 2 +CT 0 1 +TL 1 +TE 147.582 +CE 206.71 1.14895 147.582 1.03633 +CD -2.63108 0.194268 -1.63123 0.0336036 0.0316744 0.0336036 -1.46702 0.119235 -2.44608 0.0336036 0.0293065 0.0336036 0 0 0 0 0 0 +LA 1.4229 +SE +ID 5956 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5957 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.733629) +BD GR Veto +PQ +SE +ET CO +ID 5958 +TI 1771360832.284009754 +CC NStripHits 5 +PQ 2.56317 +SQ 2 +CT 0 1 +TL 1 +TE 115.376 +CE 156.701 1.17583 115.376 1.85026 +CD 0.744703 -1.12124 -1.28202 0.0336036 0.0272013 0.0336036 -2.51467 -0.793243 -1.86405 0.0336036 0.0210126 0.0336036 0 0 0 0 0 0 +LA 3.32714 +SE +ID 5959 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5960 +TI 1771360832.284530704 +CC NStripHits 2 +PE 84.8448 +PP 1.67595 0.232481 -1.28202 +PW 0 +SE +ID 5961 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.321897) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.325992)) (GR Hit: Detector ID 0 and Energy 107.563571) +BD GR Veto +PQ 4.03513 +SE +ET PH +ID 5962 +TI 1771360832.287018638 +CC NStripHits 2 +PE 84.608 +PP 2.02517 0.366645 0.347672 +PW 0 +SE +ID 5963 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 199.157496) +BD GR Veto +PQ 0.0516693 +SE +ET UN +ID 5964 +TI 1771360832.289192254 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5965 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5966 +TI 1771360832.291016171 +CC NStripHits 2 +PE 185.864 +PP 2.4908 0.174027 2.55939 +PW 0 +SE +ET PH +ID 5967 +TI 1771360832.292839421 +CC NStripHits 2 +PE 61.8885 +PP -2.28186 0.339273 -2.32967 +PW 0 +SE +ID 5968 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.951294) +BD GR Veto +PQ 0.0849287 +SE +ET PH +ID 5969 +TI 1771360832.295106954 +CC NStripHits 2 +PE 27.0839 +PP -0.419359 -0.0305073 1.04611 +PW 0 +SE +ET UN +ID 5970 +TI 1771360832.296426738 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8733 +SE +ET PH +ID 5971 +TI 1771360832.296628354 +CC NStripHits 4 +PE 128.485 +PP -0.302953 0.29852 2.55939 +PW 0 +SE +ID 5972 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.588100) +BD GR Veto +PQ 0.651901 +SE +ET PH +ID 5973 +TI 1771360832.299274938 +CC NStripHits 2 +PE 78.4843 +PP 2.02517 0.346916 -1.39842 +PW 0 +SE +ID 5974 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 239.101267) +BD GR Veto +PQ 0.0522266 +SE +ID 5975 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.943756) +BD GR Veto +PQ 0.714839 +SE +ET PH +ID 5976 +TI 1771360832.299957988 +CC NStripHits 2 +PE 81.9733 +PP -1.35061 0.373127 -4.42498 +PW 0 +SE +ET UN +ID 5977 +TI 1771360832.300514438 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5978 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.425931) +BD GR Veto +PQ 0.657553 +SE +ID 5979 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.339884) +BD GR Veto +PQ 0.0965035 +SE +ET PH +ID 5980 +TI 1771360832.303158321 +CC NStripHits 2 +PE 80.497 +PP 1.21033 0.327122 1.04611 +PW 0 +SE +ET UN +ID 5981 +TI 1771360832.303516355 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 5982 +TI 1771360832.307814488 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 113.69 +SE +ET PH +ID 5983 +TI 1771360832.308029555 +CC NStripHits 2 +PE 154.703 +PP 1.55955 -0.183557 1.51173 +PW 0 +SE +ID 5984 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 141.438880) +BD GR Veto +PQ 0.00773272 +SE +ET UN +ID 5985 +TI 1771360832.308549221 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 124.059 +SE +ET CO +ID 5986 +TI 1771360832.309355805 +CC NStripHits 4 +PQ 16.6758 +SQ 2 +CT 0 1 +TL 1 +TE 140.911 +CE 187.306 1.38842 140.911 1.01277 +CD -2.28186 -0.301463 -2.32967 0.0336036 0.0251716 0.0336036 -2.39827 -0.425989 -2.56248 0.0336036 0.0241497 0.0336036 0 0 0 0 0 0 +LA 0.288546 +SE +ET PH +ID 5987 +TI 1771360832.309782188 +CC NStripHits 2 +PE 70.1544 +PP -1.1178 0.258455 -3.26092 +PW 0 +SE +ET PH +ID 5988 +TI 1771360832.311953988 +CC NStripHits 2 +PE 197.021 +PP -0.652172 0.362213 0.696891 +PW 0 +SE +ET PH +ID 5989 +TI 1771360832.312938155 +CC NStripHits 3 +PE 382.879 +PP 1.90877 0.159588 -3.72655 +PW 0 +SE +ET UN +ID 5990 +TI 1771360832.313501438 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7131 +SE +ID 5991 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.926895) +BD GR Veto +PQ 0.00675761 +SE +ET PH +ID 5992 +TI 1771360832.314986605 +CC NStripHits 2 +PE 172.469 +PP -0.0701406 -0.910252 -0.117953 +PW 0 +SE +ID 5993 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 48.250735) +BD GR Veto +PQ 0.26889 +SE +ET PH +ID 5994 +TI 1771360832.315406288 +CC NStripHits 2 +PE 69.1219 +PP 3.53845 0.376459 -4.42498 +PW 0 +SE +ET PH +ID 5995 +TI 1771360832.316696255 +CC NStripHits 3 +PE 136.296 +PP 1.09392 0.35998 1.86095 +PW 0 +SE +ID 5996 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.492817) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 66.630575)) (GR Hit: Detector ID 0 and Energy 38.487981) +BD GR Veto +PQ 4.60694 +SE +ET PH +ID 5997 +TI 1771360832.318426171 +CC NStripHits 3 +PE 277.104 +PP 2.84002 -0.866377 1.86095 +PW 0 +SE +ID 5998 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.316241) +QA StripPairing (GR Hit: Detector ID 0 and Energy 370.599920) +BD GR Veto +PQ 0.63705 +SE +ET UN +ID 5999 +TI 1771360832.320392338 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET UN +ID 6000 +TI 1771360832.321313172 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 6001 +TI 1771360832.323235188 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3266 +SE +ID 6002 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (52.189321)) (GR Hit: Detector ID 0 and Energy 105.383140) +BD GR Veto +PQ 52.1893 +SE +ID 6003 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 205.451108) +BD GR Veto +PQ 0.0163458 +SE +ET PH +ID 6004 +TI 1771360832.330137222 +CC NStripHits 4 +PE 145.56 +PP 2.37439 -0.173062 -3.37733 +PW 0 +SE +ET UN +ID 6005 +TI 1771360832.331950438 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6006 +TI 1771360832.334366772 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 41.1777 +SE +ET PH +ID 6007 +TI 1771360832.336306355 +CC NStripHits 2 +PE 81.0274 +PP -0.419359 0.179721 -3.14452 +PW 0 +SE +ET PH +ID 6008 +TI 1771360832.336460955 +CC NStripHits 2 +PE 79.9862 +PP 2.02517 -0.852577 -1.28202 +PW 0 +SE +ET PH +ID 6009 +TI 1771360832.336745738 +CC NStripHits 2 +PE 72.0347 +PP -1.2342 0.376336 1.16252 +PW 0 +SE +ET PH +ID 6010 +TI 1771360832.338844472 +CC NStripHits 2 +PE 100.426 +PP 2.25798 -0.52848 -2.32967 +PW 0 +SE +ET UN +ID 6011 +TI 1771360832.339015772 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.634 +SE +ET PH +ID 6012 +TI 1771360832.340453272 +CC NStripHits 2 +PE 78.5984 +PP 0.0462656 -0.0956219 1.04611 +PW 0 +SE +ID 6013 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (107.746909)) (GR Hit: Detector ID 0 and Energy 148.889102) +BD GR Veto +PQ 107.747 +SE +ID 6014 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.503921) +BD GR Veto +PQ 1.48233 +SE +ID 6015 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.550874) +BD GR Veto +PQ +SE +ET UN +ID 6016 +TI 1771360832.343447089 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6017 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.198436) (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ID 6018 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.198436) (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ID 6019 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6020 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ +SE +ID 6021 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6022 +TI 1771360832.343991805 +CC NStripHits 2 +PE 81.2414 +PP 3.77127 -0.0385651 1.16252 +PW 0 +SE +ET PH +ID 6023 +TI 1771360832.344213422 +CC NStripHits 3 +PE 96.5451 +PP 3.07283 0.161449 -1.74764 +PW 0 +SE +ET PH +ID 6024 +TI 1771360832.345175205 +CC NStripHits 2 +PE 79.2923 +PP 2.02517 -0.0917972 0.231266 +PW 0 +SE +ET UN +ID 6025 +TI 1771360832.345301055 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.1303 +SE +ET PH +ID 6026 +TI 1771360832.345392555 +CC NStripHits 2 +PE 22.2288 +PP -1.2342 -0.689267 1.51173 +PW 0 +SE +ET PH +ID 6027 +TI 1771360832.347963872 +CC NStripHits 2 +PE 155.265 +PP -0.535766 0.222051 1.04611 +PW 0 +SE +ID 6028 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.293116) +BD GR Veto +PQ 0.135891 +SE +ET PH +ID 6029 +TI 1771360832.349369205 +CC NStripHits 3 +PE 90.0326 +PP 2.95642 -0.245063 -2.44608 +PW 0 +SE +ET UN +ID 6030 +TI 1771360832.350692822 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6031 +TI 1771360832.352643139 +CC NStripHits 2 +PE 22.0087 +PP -0.419359 0.111848 -2.7953 +PW 0 +SE +ET PH +ID 6032 +TI 1771360832.353542989 +CC NStripHits 2 +PE 94.3976 +PP 3.18923 -0.37514 -0.350766 +PW 0 +SE +ET PH +ID 6033 +TI 1771360832.353997472 +CC NStripHits 2 +PE 81.6608 +PP 3.18923 0.377569 -1.51483 +PW 0 +SE +ET UN +ID 6034 +TI 1771360832.354756755 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 4 +PE 62.0583 +SE +ID 6035 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 236.592905) +BD GR Veto +PQ 0.0319673 +SE +ET PH +ID 6036 +TI 1771360832.356877989 +CC NStripHits 2 +PE 80.8818 +PP -2.28186 0.364105 2.21017 +PW 0 +SE +ET PH +ID 6037 +TI 1771360832.357142539 +CC NStripHits 2 +PE 150.723 +PP 0.861109 -0.607586 1.04611 +PW 0 +SE +ET UN +ID 6038 +TI 1771360832.358056272 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 6039 +TI 1771360832.360107656 +CC NStripHits 5 +PQ 64.516 +SQ 2 +CT 0 1 +TL 1 +TE 130.306 +CE 266.087 2.38662 130.306 1.4725 +CD 0.977516 0.368591 2.55939 0.0336036 0.0236134 0.0336036 0.744703 -0.186985 2.21017 0.0336036 0.025954 0.0336036 0 0 0 0 0 0 +LA 0.696291 +SE +ET PH +ID 6040 +TI 1771360832.360636722 +CC NStripHits 2 +PE 62.4012 +PP 4.12048 0.323821 -3.14452 +PW 0 +SE +ET PH +ID 6041 +TI 1771360832.362218239 +CC NStripHits 2 +PE 82.5188 +PP 0.861109 0.256566 1.04611 +PW 0 +SE +ID 6042 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET PH +ID 6043 +TI 1771360832.364211456 +CC NStripHits 2 +PE 81.2627 +PP 2.25798 0.184428 -2.67889 +PW 0 +SE +ET PH +ID 6044 +TI 1771360832.364359556 +CC NStripHits 2 +PE 80.1057 +PP -2.51467 0.289481 -0.583578 +PW 0 +SE +ID 6045 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 355.665090) +BD GR Veto +PQ 0.102937 +SE +ID 6046 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 51.985793) +BD GR Veto +PQ 0.0151636 +SE +ET CO +ID 6047 +TI 1771360832.366272672 +CC NStripHits 5 +PQ 10.7657 +SQ 2 +CT 0 1 +TL 1 +TE 114.325 +CE 125.551 1.48022 114.325 1.20192 +CD 1.21033 -0.920992 -2.44608 0.0336036 0.0198211 0.0336036 0.977516 -0.926469 -3.02811 0.0336036 0.0197771 0.0336036 0 0 0 0 0 0 +LA 0.62689 +SE +ET PH +ID 6048 +TI 1771360832.367291372 +CC NStripHits 2 +PE 81.7464 +PP 1.67595 0.304363 -4.07577 +PW 0 +SE +ID 6049 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.847619) +BD GR Veto +PQ 0.744702 +SE +ET PH +ID 6050 +TI 1771360832.372147406 +CC NStripHits 2 +PE 59.0123 +PP 0.511891 -1.08491 -0.699984 +PW 0 +SE +ET PH +ID 6051 +TI 1771360832.373180389 +CC NStripHits 3 +PE 134.354 +PP 0.861109 -0.573871 2.6758 +PW 0 +SE +ID 6052 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.947124) +BD GR Veto +PQ 0.0107375 +SE +ET PH +ID 6053 +TI 1771360832.373446039 +CC NStripHits 2 +PE 195.402 +PP 0.744703 0.0137242 -4.07577 +PW 0 +SE +ET UN +ID 6054 +TI 1771360832.375953172 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6055 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 41.579719)) (GR Hit: Detector ID 0 and Energy 158.645565) +BD GR Veto +PQ 12.0644 +SE +ET UN +ID 6056 +TI 1771360832.378854389 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6057 +TI 1771360832.379601872 +CC NStripHits 3 +PE 311.777 +PP -1.1178 0.0896463 1.04611 +PW 0 +SE +ET CO +ID 6058 +TI 1771360832.380810823 +CC NStripHits 5 +PQ 1.00144 +SQ 2 +CT 0 1 +TL 1 +TE 51.5143 +CE 125.395 1.1953 51.5143 0.999937 +CD 3.65486 -0.847293 -3.14452 0.0336036 0.0204481 0.0336036 3.77127 -0.268289 -3.84295 0.0336036 0.025369 0.0336036 0 0 0 0 0 0 +LA 0.914659 +SE +ET UN +ID 6059 +TI 1771360832.381289856 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 173.009 +SE +ET PH +ID 6060 +TI 1771360832.381640623 +CC NStripHits 2 +PE 80.1558 +PP 2.84002 0.261657 1.97736 +PW 0 +SE +ID 6061 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 200.172615) +BD GR Veto +PQ 0.069766 +SE +ID 6062 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6063 +TI 1771360832.383619539 +CC NStripHits 2 +PE 92.8694 +PP 3.53845 -1.03315 1.86095 +PW 0 +SE +ID 6064 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ET UN +ID 6065 +TI 1771360832.384410823 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 143.292 +SE +ET PH +ID 6066 +TI 1771360832.385234106 +CC NStripHits 2 +PE 70.5637 +PP 1.90877 0.336923 -3.02811 +PW 0 +SE +ET PH +ID 6067 +TI 1771360832.385764423 +CC NStripHits 2 +PE 34.5197 +PP 3.88767 0.368268 -0.117953 +PW 0 +SE +ID 6068 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET PH +ID 6069 +TI 1771360832.390334673 +CC NStripHits 3 +PE 141.965 +PP -1.69983 0.172123 0.347672 +PW 0 +SE +ET CO +ID 6070 +TI 1771360832.391098323 +CC NStripHits 5 +PQ 11.7492 +SQ 2 +CT 0 1 +TL 1 +TE 90.9741 +CE 143.428 1.13417 90.9741 1.60868 +CD -0.884984 -0.234846 -4.07577 0.0336036 0.0255711 0.0336036 -1.58342 -0.612099 -3.14452 0.0336036 0.022758 0.0336036 0 0 0 0 0 0 +LA 1.22367 +SE +ET PH +ID 6071 +TI 1771360832.391286756 +CC NStripHits 3 +PE 282.387 +PP 1.44314 0.349585 -2.7953 +PW 0 +SE +ID 6072 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.778130) +BD GR Veto +PQ 0.124102 +SE +ET UN +ID 6073 +TI 1771360832.392681289 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5013 +SE +ID 6074 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6075 +TI 1771360832.395900806 +CC NStripHits 2 +PE 78.8498 +PP 1.21033 0.285835 -3.84295 +PW 0 +SE +ET CO +ID 6076 +TI 1771360832.396265739 +CC NStripHits 4 +PQ 3.84556 +SQ 2 +CT 0 1 +TL 1 +TE 44.5021 +CE 130.434 1.02132 44.5021 1.33284 +CD -0.768578 0.0244252 -1.16561 0.0336036 0.0278764 0.0336036 -1.58342 -1.14996 -1.39842 0.0336036 0.027016 0.0336036 0 0 0 0 0 0 +LA 1.44822 +SE +ET PH +ID 6077 +TI 1771360832.396938606 +CC NStripHits 2 +PE 110.128 +PP -1.69983 0.175436 -4.30858 +PW 0 +SE +ET PH +ID 6078 +TI 1771360832.397262739 +CC NStripHits 3 +PE 120.298 +PP -1.46702 0.211629 -4.19217 +PW 0 +SE +ET PH +ID 6079 +TI 1771360832.397959273 +CC NStripHits 3 +PE 60.4874 +PP -2.28186 -1.17969 -2.44608 +PW 0 +SE +ET PH +ID 6080 +TI 1771360832.398480089 +CC NStripHits 2 +PE 80.9321 +PP -2.28186 0.364557 -4.19217 +PW 0 +SE +ET PH +ID 6081 +TI 1771360832.401069840 +CC NStripHits 2 +PE 53.2182 +PP 2.14158 -0.0140948 -4.19217 +PW 0 +SE +ET UN +ID 6082 +TI 1771360832.402075756 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 342.423 +SE +ET UN +ID 6083 +TI 1771360832.402413206 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.3946 +SE +ET PH +ID 6084 +TI 1771360832.403693723 +CC NStripHits 2 +PE 81.4096 +PP -1.69983 0.37419 0.464078 +PW 0 +SE +ET PH +ID 6085 +TI 1771360832.403773106 +CC NStripHits 2 +PE 68.0582 +PP -1.2342 0.366923 -4.30858 +PW 0 +SE +ET PH +ID 6086 +TI 1771360832.404987823 +CC NStripHits 3 +PE 355.153 +PP 1.67595 -0.495297 -0.234359 +PW 0 +SE +ET UN +ID 6087 +TI 1771360832.405770006 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.2301 +SE +ET PH +ID 6088 +TI 1771360832.407436640 +CC NStripHits 2 +PE 81.9683 +PP 3.18923 0.1022 -3.95936 +PW 0 +SE +ET UN +ID 6089 +TI 1771360832.407650706 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 132.855 +SE +ET PH +ID 6090 +TI 1771360832.409086040 +CC NStripHits 2 +PE 79.6654 +PP 3.42205 0.292654 -0.583578 +PW 0 +SE +ET PH +ID 6091 +TI 1771360832.410353473 +CC NStripHits 2 +PE 64.2127 +PP 0.861109 0.348012 0.580484 +PW 0 +SE +ET UN +ID 6092 +TI 1771360832.410572206 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 334.951 +SE +ET PH +ID 6093 +TI 1771360832.413003273 +CC NStripHits 2 +PE 175.935 +PP 1.32673 -1.16893 -3.49373 +PW 0 +SE +ET UN +ID 6094 +TI 1771360832.415296973 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 374.864 +SE +ID 6095 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 158.213493) +BD GR Veto +PQ 0.325415 +SE +ET PH +ID 6096 +TI 1771360832.418262423 +CC NStripHits 2 +PE 70.646 +PP 2.14158 0.189811 -0.234359 +PW 0 +SE +ID 6097 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.981250) +BD GR Veto +PQ 0.0872796 +SE +ID 6098 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 40.440461) +BD GR Veto +PQ 0.0019166 +SE +ET PH +ID 6099 +TI 1771360832.423034240 +CC NStripHits 3 +PE 128.245 +PP 3.65486 0.337954 0.929703 +PW 0 +SE +ID 6100 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6101 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.836899) +BD GR Veto +PQ +SE +ID 6102 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.406262) +BD GR Veto +PQ +SE +ID 6103 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ID 6104 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.931690) +BD GR Veto +PQ +SE +ID 6105 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.906506) +BD GR Veto +PQ +SE +ID 6106 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ID 6107 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6108 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6109 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.955020) +BD GR Veto +PQ +SE +ID 6110 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.406731) +BD GR Veto +PQ +SE +ET PH +ID 6111 +TI 1771360832.426304823 +CC NStripHits 3 +PE 84.1658 +PP -1.58342 0.167682 -2.67889 +PW 0 +SE +ET UN +ID 6112 +TI 1771360832.426614190 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7367 +SE +ET UN +ID 6113 +TI 1771360832.428605140 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET PH +ID 6114 +TI 1771360832.429255607 +CC NStripHits 3 +PE 94.1789 +PP 1.79236 -0.16784 1.16252 +PW 0 +SE +ET PH +ID 6115 +TI 1771360832.430609390 +CC NStripHits 2 +PE 79.7181 +PP -1.46702 0.146738 -4.54139 +PW 0 +SE +ID 6116 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 48.765523) +BD GR Veto +PQ 0.833865 +SE +ET UN +ID 6117 +TI 1771360832.431504623 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.2217 +SE +ET UN +ID 6118 +TI 1771360832.434491623 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.017 +SE +ET PH +ID 6119 +TI 1771360832.435731357 +CC NStripHits 2 +PE 68.4328 +PP -0.419359 0.190646 -2.44608 +PW 0 +SE +ET UN +ID 6120 +TI 1771360832.435938223 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 114.401 +SE +ID 6121 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 202.656835) +BD GR Veto +PQ 0.0878084 +SE +ET UN +ID 6122 +TI 1771360832.437074757 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6123 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.969160) +BD GR Veto +PQ 1.19429 +SE +ET UN +ID 6124 +TI 1771360832.438524573 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 355.865 +SE +ET PH +ID 6125 +TI 1771360832.439317573 +CC NStripHits 2 +PE 82.065 +PP 0.861109 -0.110237 -3.72655 +PW 0 +SE +ET UN +ID 6126 +TI 1771360832.439969190 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.3634 +SE +ET CO +ID 6127 +TI 1771360832.441634390 +CC NStripHits 7 +PQ 25.0483 +SQ 3 +CT 0.000105959 0.190434 +TL 1 +TE 62.1866 +CE 201.594 1.86842 62.1866 1.46607 +CD 3.07283 0.153428 -3.72655 0.0336036 0.0301468 0.0336036 2.95642 0.101287 -2.44608 0.0336036 0.0289353 0.0336036 0 0 0 0 0 0 +LA 1.28681 +SE +ET UN +ID 6128 +TI 1771360832.442185640 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1465 +SE +ET PH +ID 6129 +TI 1771360832.442629057 +CC NStripHits 2 +PE 79.189 +PP 1.67595 0.21006 0.929703 +PW 0 +SE +ET PH +ID 6130 +TI 1771360832.443844107 +CC NStripHits 2 +PE 82.2521 +PP 1.79236 0.174909 -3.26092 +PW 0 +SE +ID 6131 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (399.800783)) (GR Hit: Detector ID 0 and Energy 218.100737) +BD GR Veto +PQ 399.801 +SE +ET CO +ID 6132 +TI 1771360832.446423124 +CC NStripHits 8 +PQ 11.3691 +SQ 2 +CT 0.517294 0.482706 +TL 1 +TE 226.864 +CE 157.647 1.44945 226.864 1.55486 +CD 1.44314 -0.903149 2.09377 0.0336036 0.0199548 0.0336036 1.90877 -0.290449 2.44298 0.0336036 0.0252464 0.0336036 0 0 0 0 0 0 +LA 0.84508 +SE +ET UN +ID 6133 +TI 1771360832.447136740 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 78.7636 +SE +ET PH +ID 6134 +TI 1771360832.449530240 +CC NStripHits 2 +PE 80.9253 +PP -1.1178 0.180083 -4.54139 +PW 0 +SE +ET CO +ID 6135 +TI 1771360832.450588707 +CC NStripHits 6 +PQ 87.4438 +SQ 2 +CT 0 1 +TL 1 +TE 110.462 +CE 250.307 1.519 110.462 1.00633 +CD -2.39827 0.33825 -3.84295 0.0336036 0.0372318 0.0336036 -1.93264 0.361629 -3.95936 0.0336036 0.0277077 0.0336036 0 0 0 0 0 0 +LA 0.48053 +SE +ET PH +ID 6136 +TI 1771360832.451091840 +CC NStripHits 2 +PE 122.526 +PP -1.2342 -0.732131 0.580484 +PW 0 +SE +ET CO +ID 6137 +TI 1771360832.452010490 +CC NStripHits 4 +PQ 0.965966 +SQ 2 +CT 0 1 +TL 1 +TE 36.5068 +CE 81.4841 0.989977 36.5068 0.970559 +CD 0.0462656 -0.010094 0.813297 0.0336036 0.0275987 0.0336036 -0.302953 -1.06345 1.74455 0.0336036 0.0204602 0.0336036 0 0 0 0 0 0 +LA 1.4487 +SE +ET UN +ID 6138 +TI 1771360832.452099840 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6139 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.160507) +BD GR Veto +PQ 0.205701 +SE +ET PH +ID 6140 +TI 1771360832.452500107 +CC NStripHits 3 +PE 75.8969 +PP -0.186547 0.0418835 -1.28202 +PW 0 +SE +ET CO +ID 6141 +TI 1771360832.452849024 +CC NStripHits 5 +PQ 4.2653 +SQ 2 +CT 0.742706 0.257294 +TL 1 +TE 582.941 +CE 305.434 1.12711 582.941 2.10276 +CD 0.744703 -0.700958 0.813297 0.0336036 0.0222288 0.0336036 0.628297 -0.393601 0.464078 0.0336036 0.0245101 0.0336036 0 0 0 0 0 0 +LA 0.479555 +SE +ET UN +ID 6142 +TI 1771360832.454452624 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6143 +TI 1771360832.455766390 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6144 +TI 1771360832.455977274 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6145 +TI 1771360832.456513540 +CC NStripHits 2 +PE 81.2724 +PP 2.4908 0.15724 -0.117953 +PW 0 +SE +ET UN +ID 6146 +TI 1771360832.456806907 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.6294 +SE +ET CO +ID 6147 +TI 1771360832.458360090 +CC NStripHits 5 +PQ 0.466975 +SQ 2 +CT 0 1 +TL 1 +TE 123.893 +CE 151.537 1.03559 123.893 1.10175 +CD 4.12048 -0.603089 -0.816391 0.0336036 0.0228103 0.0336036 2.02517 -0.155179 -4.42498 0.0336036 0.0262416 0.0336036 0 0 0 0 0 0 +LA 4.19677 +SE +ET CO +ID 6148 +TI 1771360832.459314024 +CC NStripHits 6 +PQ 10.3788 +SQ 2 +CT 0 1 +TL 1 +TE 113.824 +CE 320.41 2.03118 113.824 1.14276 +CD -2.63108 -0.094992 -1.86405 0.0336036 0.0268126 0.0336036 -2.86389 0.247009 -1.63123 0.0336036 0.0361257 0.0336036 0 0 0 0 0 0 +LA 0.474732 +SE +ET PH +ID 6149 +TI 1771360832.459959340 +CC NStripHits 4 +PE 179.716 +PP 4.00408 -0.834623 0.114859 +PW 0 +SE +ID 6150 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 6151 +TI 1771360832.461852474 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0466 +SE +ET UN +ID 6152 +TI 1771360832.462454607 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1672 +SE +ET PH +ID 6153 +TI 1771360832.462807107 +CC NStripHits 4 +PE 198.171 +PP 2.14158 -0.44257 1.16252 +PW 0 +SE +ET CO +ID 6154 +TI 1771360832.463164207 +CC NStripHits 4 +PQ 21.8322 +SQ 2 +CT 0.646935 0.353065 +TL 1 +TE 279.089 +CE 193.344 1.02893 279.089 1.43216 +CD -1.58342 -0.0479011 1.27892 0.0336036 0.0272065 0.0336036 -2.04905 -0.485999 1.74455 0.0336036 0.0235745 0.0336036 0 0 0 0 0 0 +LA 0.790919 +SE +ID 6155 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.968967) +BD GR Veto +PQ 0.0143975 +SE +ET PH +ID 6156 +TI 1771360832.467008024 +CC NStripHits 2 +PE 80.182 +PP -2.63108 0.23863 1.39533 +PW 0 +SE +ET UN +ID 6157 +TI 1771360832.467145757 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6158 +TI 1771360832.467376507 +CC NStripHits 3 +PE 101.703 +PP 3.88767 -0.365767 0.696891 +PW 0 +SE +ET PH +ID 6159 +TI 1771360832.467746891 +CC NStripHits 2 +PE 78.6615 +PP 4.23689 -0.0548019 1.97736 +PW 0 +SE +ET UN +ID 6160 +TI 1771360832.468667241 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 57.0388 +SE +ET PH +ID 6161 +TI 1771360832.469267974 +CC NStripHits 3 +PE 395.362 +PP -1.1178 -0.770498 2.44298 +PW 0 +SE +ID 6162 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 150.172012) +BD GR Veto +PQ 0.635206 +SE +ET UN +ID 6163 +TI 1771360832.471856341 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 97.6113 +SE +ID 6164 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (54.592251)) (GR Hit: Detector ID 0 and Energy 82.653715) +BD GR Veto +PQ 54.5923 +SE +ET PH +ID 6165 +TI 1771360832.473415724 +CC NStripHits 2 +PE 80.8425 +PP -2.28186 0.355572 -2.56248 +PW 0 +SE +ET UN +ID 6166 +TI 1771360832.473862624 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6167 +TI 1771360832.474600841 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 158.102 +SE +ET UN +ID 6168 +TI 1771360832.475000241 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.529 +SE +ET UN +ID 6169 +TI 1771360832.475281624 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6170 +TI 1771360832.475833257 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 131.411 +SE +ID 6171 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.992194) +BD GR Veto +PQ 0.520027 +SE +ET UN +ID 6172 +TI 1771360832.477052691 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6173 +TI 1771360832.477674091 +CC NStripHits 2 +PE 82.4337 +PP 4.00408 0.350304 -1.86405 +PW 0 +SE +ET UN +ID 6174 +TI 1771360832.479167357 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 6175 +TI 1771360832.482034224 +CC NStripHits 3 +PE 85.7739 +PP 4.12048 -0.611037 -2.09686 +PW 0 +SE +ID 6176 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6177 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6178 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.406731) +BD GR Veto +PQ 0.0162478 +SE +ET PH +ID 6179 +TI 1771360832.484448891 +CC NStripHits 2 +PE 152.244 +PP 3.42205 0.27356 1.27892 +PW 0 +SE +ID 6180 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ +SE +ID 6181 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 175.797714) +BD GR Veto +PQ 0.0388386 +SE +ET UN +ID 6182 +TI 1771360832.487433224 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4679 +SE +ID 6183 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.493022) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.572642) +BD GR Veto +PQ 0.0064351 +SE +ID 6184 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6185 +TI 1771360832.490503891 +CC NStripHits 2 +PE 182.765 +PP 1.21033 -0.90602 2.21017 +PW 0 +SE +ET PH +ID 6186 +TI 1771360832.490822074 +CC NStripHits 2 +PE 78.3182 +PP 0.0462656 0.372596 2.21017 +PW 0 +SE +ID 6187 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.079834) +BD GR Veto +PQ +SE +ET PH +ID 6188 +TI 1771360832.494454224 +CC NStripHits 2 +PE 156.52 +PP -1.69983 -0.706075 -2.09686 +PW 0 +SE +ET PH +ID 6189 +TI 1771360832.495239908 +CC NStripHits 2 +PE 62.8389 +PP 1.44314 0.367125 1.39533 +PW 0 +SE +ET PH +ID 6190 +TI 1771360832.497176541 +CC NStripHits 2 +PE 78.5025 +PP -0.768578 0.0517763 -2.44608 +PW 0 +SE +ET PH +ID 6191 +TI 1771360832.500680425 +CC NStripHits 2 +PE 62.0915 +PP 1.32673 0.331022 0.464078 +PW 0 +SE +ET CO +ID 6192 +TI 1771360832.500932791 +CC NStripHits 4 +PQ 30.0571 +SQ 2 +CT 0.528602 0.471398 +TL 1 +TE 196.999 +CE 157.561 1.49784 196.999 1.11641 +CD 0.0462656 -0.0522855 -4.6578 0.0336036 0.0271521 0.0336036 -0.768578 -0.195492 -3.84295 0.0336036 0.0258936 0.0336036 0 0 0 0 0 0 +LA 1.16123 +SE +ET PH +ID 6193 +TI 1771360832.501046458 +CC NStripHits 2 +PE 73.9928 +PP 0.628297 -1.17836 2.09377 +PW 0 +SE +ET PH +ID 6194 +TI 1771360832.502411858 +CC NStripHits 2 +PE 156.805 +PP -0.884984 0.0143637 1.39533 +PW 0 +SE +ET PH +ID 6195 +TI 1771360832.502556308 +CC NStripHits 2 +PE 87.3957 +PP 3.42205 -0.974901 -3.84295 +PW 0 +SE +ID 6196 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 6197 +TI 1771360832.506514058 +CC NStripHits 6 +PQ 1.06625 +SQ 2 +CT 0.536274 0.463726 +TL 1 +TE 151.139 +CE 201.31 1.03504 151.139 1.38202 +CD -0.652172 0.367791 -1.39842 0.0336036 0.0241146 0.0336036 -0.884984 -0.24115 -1.16561 0.0336036 0.0255251 0.0336036 0 0 0 0 0 0 +LA 0.692251 +SE +ID 6198 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 53.224639)) +BD GR Veto +PQ 2.98641 +SE +ET UN +ID 6199 +TI 1771360832.510362308 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 78.3352 +SE +ET CO +ID 6200 +TI 1771360832.511150308 +CC NStripHits 6 +PQ 2.14959 +SQ 2 +CT 0 1 +TL 1 +TE 59.4185 +CE 296.384 1.50048 59.4185 1.04538 +CD 2.84002 -0.386076 -3.61014 0.0336036 0.0245803 0.0336036 3.18923 -1.01828 -4.07577 0.0336036 0.0195626 0.0336036 0 0 0 0 0 0 +LA 0.859326 +SE +ID 6201 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6202 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.796710) +BD GR Veto +PQ +SE +ID 6203 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.739683) +BD GR Veto +PQ +SE +ID 6204 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.272005) (Strip hit removed with energy 9.043370) (Strip hit removed with energy 10.072873) +BD GR Veto +PQ +SE +ID 6205 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6206 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.178604) +BD GR Veto +PQ +SE +ID 6207 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.560794) +BD GR Veto +PQ +SE +ET UN +ID 6208 +TI 1771360832.515122525 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1657 +SE +ID 6209 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.290808) +BD GR Veto +PQ 0.515497 +SE +ET UN +ID 6210 +TI 1771360832.518319908 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 228.941 +SE +ET PH +ID 6211 +TI 1771360832.520398192 +CC NStripHits 2 +PE 149.434 +PP 2.95642 -0.238611 2.6758 +PW 0 +SE +ID 6212 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.909581)) (GR Hit: Detector ID 0 and Energy 169.566067) +BD GR Veto +PQ 25.9096 +SE +ID 6213 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.964671) +BD GR Veto +PQ 0.00560423 +SE +ID 6214 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.971323) +BD GR Veto +PQ 0.108977 +SE +ET PH +ID 6215 +TI 1771360832.524664658 +CC NStripHits 2 +PE 80.448 +PP 0.0462656 0.2013 1.97736 +PW 0 +SE +ET PH +ID 6216 +TI 1771360832.525555258 +CC NStripHits 3 +PE 98.2961 +PP 3.53845 -0.82987 -4.42498 +PW 0 +SE +ET UN +ID 6217 +TI 1771360832.527424708 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.0174 +SE +ET UN +ID 6218 +TI 1771360832.530172942 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6219 +TI 1771360832.532598258 +CC NStripHits 4 +PE 357.511 +PP 3.65486 0.16777 0.580484 +PW 0 +SE +ET PH +ID 6220 +TI 1771360832.533200258 +CC NStripHits 5 +PE 112.812 +PP -2.74748 0.346349 -0.699984 +PW 0 +SE +ET PH +ID 6221 +TI 1771360832.534203292 +CC NStripHits 2 +PE 202.858 +PP 4.00408 -0.236855 -3.95936 +PW 0 +SE +ET CO +ID 6222 +TI 1771360832.534590158 +CC NStripHits 4 +PQ 19.1664 +SQ 2 +CT 0 1 +TL 1 +TE 29.5979 +CE 110.364 1.386 29.5979 0.982051 +CD -2.28186 -0.820114 -2.9117 0.0336036 0.0206827 0.0336036 -2.51467 -0.414486 -3.14452 0.0336036 0.0242597 0.0336036 0 0 0 0 0 0 +LA 0.522436 +SE +ID 6223 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 355.480331) +BD GR Veto +PQ 0.0210907 +SE +ID 6224 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.320564) +BD GR Veto +PQ +SE +ID 6225 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.935700) +BD GR Veto +PQ +SE +ID 6226 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.167903) +BD GR Veto +PQ 0.0198639 +SE +ET UN +ID 6227 +TI 1771360832.541505175 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6228 +TI 1771360832.545859309 +CC NStripHits 4 +PE 257.987 +PP 4.3533 0.144672 -1.39842 +PW 0 +SE +ID 6229 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (43.855075)) (GR Hit: Detector ID 0 and Energy 160.830958) +BD GR Veto +PQ 43.8551 +SE +ET PH +ID 6230 +TI 1771360832.547124425 +CC NStripHits 2 +PE 25.2816 +PP 2.37439 -0.0754583 -4.19217 +PW 0 +SE +ID 6231 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.071967) +BD GR Veto +PQ 5.10522 +SE +ET PH +ID 6232 +TI 1771360832.549351159 +CC NStripHits 2 +PE 65.0622 +PP -2.04905 -0.236464 -3.61014 +PW 0 +SE +ET UN +ID 6233 +TI 1771360832.549428092 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.6497 +SE +ET PH +ID 6234 +TI 1771360832.552236175 +CC NStripHits 2 +PE 80.1142 +PP -0.884984 0.192749 -2.7953 +PW 0 +SE +ET UN +ID 6235 +TI 1771360832.552973792 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6236 +TI 1771360832.554325142 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 349.298 +SE +ET PH +ID 6237 +TI 1771360832.555151325 +CC NStripHits 2 +PE 77.9156 +PP 2.6072 -0.835119 -0.350766 +PW 0 +SE +ET PH +ID 6238 +TI 1771360832.555936025 +CC NStripHits 3 +PE 147.347 +PP -2.39827 -0.623464 -1.86405 +PW 0 +SE +ET CO +ID 6239 +TI 1771360832.557192375 +CC NStripHits 4 +PQ 2.10621 +SQ 2 +CT 0 1 +TL 1 +TE 72.1993 +CE 178.81 1.03252 72.1993 1.0026 +CD 1.32673 -0.594562 -3.14452 0.0336036 0.0228513 0.0336036 2.02517 -0.930963 -3.02811 0.0336036 0.0197416 0.0336036 0 0 0 0 0 0 +LA 0.783923 +SE +ET PH +ID 6240 +TI 1771360832.557265259 +CC NStripHits 2 +PE 106.016 +PP -1.46702 0.00430705 -4.54139 +PW 0 +SE +ID 6241 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 52.153565) +BD GR Veto +PQ 0.109185 +SE +ET UN +ID 6242 +TI 1771360832.558878742 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 165.516 +SE +ET PH +ID 6243 +TI 1771360832.562436042 +CC NStripHits 2 +PE 753.75 +PP 2.4908 0.374096 -2.7953 +PW 0 +SE +ID 6244 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6245 +TI 1771360832.564818092 +CC NStripHits 3 +PE 357.293 +PP -1.93264 -0.0655444 -3.95936 +PW 0 +SE +ET PH +ID 6246 +TI 1771360832.566316476 +CC NStripHits 2 +PE 82.9104 +PP 2.72361 0.195148 0.464078 +PW 0 +SE +ET UN +ID 6247 +TI 1771360832.567905259 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 6248 +TI 1771360832.568520576 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.5656 +SE +ET PH +ID 6249 +TI 1771360832.569658576 +CC NStripHits 3 +PE 356.1 +PP -0.884984 0.314797 -1.16561 +PW 0 +SE +ID 6250 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 100.781592) +BD GR Veto +PQ 0.698477 +SE +ET PH +ID 6251 +TI 1771360832.571471609 +CC NStripHits 2 +PE 159.942 +PP 3.42205 0.048453 1.97736 +PW 0 +SE +ET PH +ID 6252 +TI 1771360832.574435676 +CC NStripHits 2 +PE 158.367 +PP -2.9803 0.15406 -0.816391 +PW 0 +SE +ET PH +ID 6253 +TI 1771360832.575263476 +CC NStripHits 2 +PE 79.7512 +PP 2.4908 -0.152662 -0.583578 +PW 0 +SE +ID 6254 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6255 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.001130) +BD GR Veto +PQ 0.410863 +SE +ET UN +ID 6256 +TI 1771360832.576663342 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6257 +TI 1771360832.577315726 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 59.5763 +SE +ET PH +ID 6258 +TI 1771360832.577722326 +CC NStripHits 2 +PE 81.8188 +PP -0.0701406 0.34773 -0.816391 +PW 0 +SE +ID 6259 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.975317) +BD GR Veto +PQ 0.0463467 +SE +ID 6260 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 173.525766) +BD GR Veto +PQ 0.0690861 +SE +ET UN +ID 6261 +TI 1771360832.580992859 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 6262 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (45.752026)) (GR Hit: Detector ID 0 and Energy 137.929637) +BD GR Veto +PQ 45.752 +SE +ID 6263 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.503341) +BD GR Veto +PQ +SE +ID 6264 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 132.279768) +BD GR Veto +PQ 0.0908365 +SE +ET PH +ID 6265 +TI 1771360832.586563526 +CC NStripHits 2 +PE 65.9954 +PP 1.67595 0.358676 -2.32967 +PW 0 +SE +ID 6266 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (217.589228)) (GR Hit: Detector ID 0 and Energy 173.101035) +BD GR Veto +PQ 217.589 +SE +ET PH +ID 6267 +TI 1771360832.588313626 +CC NStripHits 4 +PE 185.189 +PP 3.30564 -1.02737 2.21017 +PW 0 +SE +ET UN +ID 6268 +TI 1771360832.591921926 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6623 +SE +ET UN +ID 6269 +TI 1771360832.593001776 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 188.291 +SE +ET UN +ID 6270 +TI 1771360832.593890059 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 356.711 +SE +ET PH +ID 6271 +TI 1771360832.595076176 +CC NStripHits 2 +PE 355.429 +PP 1.90877 0.364478 -2.09686 +PW 0 +SE +ET UN +ID 6272 +TI 1771360832.595562993 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.1159 +SE +ID 6273 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.267405) +BD GR Veto +PQ 0.750422 +SE +ET PH +ID 6274 +TI 1771360832.598242709 +CC NStripHits 2 +PE 52.8286 +PP 3.07283 0.365039 -3.02811 +PW 0 +SE +ET PH +ID 6275 +TI 1771360832.599264543 +CC NStripHits 2 +PE 72.2006 +PP 3.42205 0.376459 -0.583578 +PW 0 +SE +ET UN +ID 6276 +TI 1771360832.600038626 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.1236 +SE +ET PH +ID 6277 +TI 1771360832.600714776 +CC NStripHits 2 +PE 98.2679 +PP 3.42205 0.36313 -3.26092 +PW 0 +SE +ET UN +ID 6278 +TI 1771360832.600800560 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6935 +SE +ID 6279 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 6280 +TI 1771360832.604219826 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 118.421 +SE +ET UN +ID 6281 +TI 1771360832.604586376 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 71.0794 +SE +ET PH +ID 6282 +TI 1771360832.604863860 +CC NStripHits 3 +PE 75.9507 +PP 3.88767 0.372141 0.813297 +PW 0 +SE +ET PH +ID 6283 +TI 1771360832.605178443 +CC NStripHits 2 +PE 124.608 +PP -1.1178 0.207104 -4.19217 +PW 0 +SE +ET UN +ID 6284 +TI 1771360832.608147943 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3026 +SE +ET PH +ID 6285 +TI 1771360832.608419110 +CC NStripHits 2 +PE 76.1678 +PP -2.28186 -0.883109 -2.67889 +PW 0 +SE +ET UN +ID 6286 +TI 1771360832.609129743 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6287 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.344599) +BD GR Veto +PQ 0.0329102 +SE +ET UN +ID 6288 +TI 1771360832.612936460 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6289 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 6290 +TI 1771360832.614417326 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3859 +SE +ET UN +ID 6291 +TI 1771360832.615588710 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.8349 +SE +ET PH +ID 6292 +TI 1771360832.615748676 +CC NStripHits 2 +PE 81.6913 +PP 0.279078 0.0421145 -0.583578 +PW 0 +SE +ET PH +ID 6293 +TI 1771360832.616026993 +CC NStripHits 2 +PE 79.4635 +PP 3.65486 0.11484 -4.30858 +PW 0 +SE +ET PH +ID 6294 +TI 1771360832.616644076 +CC NStripHits 2 +PE 80.2889 +PP -1.2342 0.345418 -4.42498 +PW 0 +SE +ET PH +ID 6295 +TI 1771360832.617766593 +CC NStripHits 2 +PE 67.1324 +PP 3.30564 -0.798834 0.580484 +PW 0 +SE +ET PH +ID 6296 +TI 1771360832.618468776 +CC NStripHits 2 +PE 51.8148 +PP 2.84002 0.270651 -1.98045 +PW 0 +SE +ET PH +ID 6297 +TI 1771360832.620558477 +CC NStripHits 2 +PE 72.2028 +PP -1.69983 0.136151 0.347672 +PW 0 +SE +ET UN +ID 6298 +TI 1771360832.620761527 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.221 +SE +ET PH +ID 6299 +TI 1771360832.623159443 +CC NStripHits 2 +PE 59.5108 +PP -1.1178 0.370038 -3.26092 +PW 0 +SE +ET UN +ID 6300 +TI 1771360832.623787110 +BD DepthCalibrationError (No calibration coefficients) +CC NStripHits 2 +PE 28.3407 +SE +ET PH +ID 6301 +TI 1771360832.625276643 +CC NStripHits 3 +PE 233.318 +PP 0.861109 -0.486421 -0.00154687 +PW 0 +SE +ET PH +ID 6302 +TI 1771360832.626222193 +CC NStripHits 2 +PE 74.9553 +PP 2.4908 0.0154077 2.21017 +PW 0 +SE +ET UN +ID 6303 +TI 1771360832.626414910 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.4257 +SE +ET CO +ID 6304 +TI 1771360832.626904543 +CC NStripHits 5 +PQ 1.30215 +SQ 2 +CT 0 1 +TL 1 +TE 78.6726 +CE 277.591 1.16795 78.6726 0.974813 +CD 0.0462656 0.349519 0.580484 0.0336036 0.0334089 0.0336036 -0.302953 -0.31405 1.74455 0.0336036 0.0250818 0.0336036 0 0 0 0 0 0 +LA 1.38468 +SE +ET PH +ID 6305 +TI 1771360832.627337510 +CC NStripHits 2 +PE 29.167 +PP 2.6072 0.379635 2.44298 +PW 0 +SE +ID 6306 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET PH +ID 6307 +TI 1771360832.628721093 +CC NStripHits 3 +PE 155.668 +PP 3.18923 -0.886012 -4.42498 +PW 0 +SE +ET PH +ID 6308 +TI 1771360832.629138793 +CC NStripHits 3 +PE 196.324 +PP -0.884984 -0.755167 2.44298 +PW 0 +SE +ET PH +ID 6309 +TI 1771360832.629379560 +CC NStripHits 3 +PE 302.551 +PP -1.58342 -0.121966 -2.21327 +PW 0 +SE +ET PH +ID 6310 +TI 1771360832.629981410 +CC NStripHits 2 +PE 104.715 +PP 3.07283 -1.11896 -1.51483 +PW 0 +SE +ET UN +ID 6311 +TI 1771360832.630973210 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 152.324 +SE +ID 6312 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 216.457059) +BD GR Veto +PQ 0.613693 +SE +ET UN +ID 6313 +TI 1771360832.633751943 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 6314 +TI 1771360832.636269077 +CC NStripHits 5 +PQ 21.5316 +SQ 2 +CT 0 1 +TL 1 +TE 84.5102 +CE 293.813 1.22145 84.5102 1.44754 +CD 1.44314 -0.630713 -2.32967 0.0336036 0.0226477 0.0336036 1.32673 -0.521216 -1.16561 0.0336036 0.023298 0.0336036 0 0 0 0 0 0 +LA 1.17498 +SE +ET PH +ID 6315 +TI 1771360832.636605910 +CC NStripHits 3 +PE 356.4 +PP 2.6072 0.197799 -2.7953 +PW 0 +SE +ID 6316 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.390555) +BD GR Veto +PQ 0.934977 +SE +ET CO +ID 6317 +TI 1771360832.637002410 +CC NStripHits 7 +PQ 98.7583 +SQ 3 +CT 0.162307 0.576693 +TL 1 +TE 100.712 +CE 258.624 1.46423 100.712 1.46884 +CD 3.07283 -0.0949159 -4.19217 0.0336036 0.0268136 0.0336036 3.42205 0.373184 -4.42498 0.0336036 0.0205849 0.0336036 0 0 0 0 0 0 +LA 0.628707 +SE +ET UN +ID 6318 +TI 1771360832.637773260 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.3573 +SE +ET PH +ID 6319 +TI 1771360832.638602710 +CC NStripHits 2 +PE 107.745 +PP 2.25798 0.294554 -2.9117 +PW 0 +SE +ET UN +ID 6320 +TI 1771360832.639422543 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 169.017 +SE +ET UN +ID 6321 +TI 1771360832.641157460 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 69.9601 +SE +ET PH +ID 6322 +TI 1771360832.642117094 +CC NStripHits 2 +PE 24.6511 +PP 4.3533 -0.84291 -0.583578 +PW 0 +SE +ID 6323 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.074396) +BD GR Veto +PQ 1.18777 +SE +ET UN +ID 6324 +TI 1771360832.646929960 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4705 +SE +ET PH +ID 6325 +TI 1771360832.647360177 +CC NStripHits 2 +PE 195.287 +PP -0.302953 -0.278144 1.74455 +PW 0 +SE +ET PH +ID 6326 +TI 1771360832.647872927 +CC NStripHits 2 +PE 34.4429 +PP 4.3533 -0.689687 1.51173 +PW 0 +SE +ET PH +ID 6327 +TI 1771360832.648110260 +CC NStripHits 2 +PE 77.9004 +PP 3.42205 0.354089 -1.63123 +PW 0 +SE +ET PH +ID 6328 +TI 1771360832.648907960 +CC NStripHits 2 +PE 79.1967 +PP 1.79236 0.362695 -3.72655 +PW 0 +SE +ET PH +ID 6329 +TI 1771360832.650826994 +CC NStripHits 3 +PE 216.694 +PP -1.1178 0.131566 -1.74764 +PW 0 +SE +ET UN +ID 6330 +TI 1771360832.650937294 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 165.505 +SE +ID 6331 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 85.232619) +BD GR Veto +PQ 0.209456 +SE +ET PH +ID 6332 +TI 1771360832.652516460 +CC NStripHits 2 +PE 46.8572 +PP 2.95642 -0.335941 2.21017 +PW 0 +SE +ID 6333 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.892893) +BD GR Veto +PQ 0.0116303 +SE +ET UN +ID 6334 +TI 1771360832.655666244 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 188.14 +SE +ET PH +ID 6335 +TI 1771360832.656436360 +CC NStripHits 2 +PE 46.4154 +PP -0.535766 -1.06842 -4.54139 +PW 0 +SE +ET PH +ID 6336 +TI 1771360832.658812344 +CC NStripHits 3 +PE 234.456 +PP -2.16545 -0.413111 2.32658 +PW 0 +SE +ID 6337 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET PH +ID 6338 +TI 1771360832.659669877 +CC NStripHits 3 +PE 161.845 +PP -1.58342 -0.0211958 -3.49373 +PW 0 +SE +ET PH +ID 6339 +TI 1771360832.660451194 +CC NStripHits 2 +PE 85.8032 +PP 3.65486 0.372931 1.62814 +PW 0 +SE +ET PH +ID 6340 +TI 1771360832.661715461 +CC NStripHits 2 +PE 71.7632 +PP -1.1178 -1.10201 1.27892 +PW 0 +SE +ET PH +ID 6341 +TI 1771360832.662493044 +CC NStripHits 3 +PE 90.2267 +PP 3.65486 -0.844545 0.231266 +PW 0 +SE +ET PH +ID 6342 +TI 1771360832.663783194 +CC NStripHits 3 +PE 129.378 +PP -0.0701406 -0.0687624 0.464078 +PW 0 +SE +ID 6343 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 6344 +TI 1771360832.665781777 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4049 +SE +ET PH +ID 6345 +TI 1771360832.666306877 +CC NStripHits 2 +PE 115.226 +PP 1.09392 -1.15839 -1.86405 +PW 0 +SE +ET UN +ID 6346 +TI 1771360832.668064327 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6347 +TI 1771360832.668503461 +CC NStripHits 2 +PE 79.2211 +PP 0.628297 0.376531 1.97736 +PW 0 +SE +ID 6348 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.081099) +BD GR Veto +PQ 0.0139104 +SE +ET PH +ID 6349 +TI 1771360832.671689127 +CC NStripHits 2 +PE 55.0233 +PP 1.79236 0.36359 -2.7953 +PW 0 +SE +ET UN +ID 6350 +TI 1771360832.674036394 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6351 +TI 1771360832.675209561 +CC NStripHits 3 +PE 208.141 +PP -2.74748 0.370406 -1.98045 +PW 0 +SE +ET CO +ID 6352 +TI 1771360832.675470511 +CC NStripHits 4 +PQ 1.69863 +SQ 2 +CT 0 1 +TL 1 +TE 31.1832 +CE 138.52 1.02902 31.1832 1.00095 +CD 1.09392 0.37896 0.696891 0.0336036 0.0164612 0.0336036 1.55955 -0.0437732 -0.699984 0.0336036 0.0272627 0.0336036 0 0 0 0 0 0 +LA 1.53192 +SE +ET PH +ID 6353 +TI 1771360832.675858744 +CC NStripHits 2 +PE 137.27 +PP -1.93264 0.209903 1.16252 +PW 0 +SE +ID 6354 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 102.112518) +BD GR Veto +PQ 1.40431 +SE +ET PH +ID 6355 +TI 1771360832.677941111 +CC NStripHits 2 +PE 51.5662 +PP 0.511891 -1.14517 -1.51483 +PW 0 +SE +ET UN +ID 6356 +TI 1771360832.678192077 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6357 +TI 1771360832.678394244 +CC NStripHits 2 +PE 80.7556 +PP 2.72361 0.314006 -0.699984 +PW 0 +SE +ET PH +ID 6358 +TI 1771360832.679431827 +CC NStripHits 3 +PE 357.943 +PP 0.861109 -0.353122 1.86095 +PW 0 +SE +ET UN +ID 6359 +TI 1771360832.681039344 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 52.671 +SE +ET UN +ID 6360 +TI 1771360832.683237161 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 357.332 +SE +ID 6361 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6362 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 6363 +TI 1771360832.684204444 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7761 +SE +ID 6364 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ID 6365 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 348.609817) +BD GR Veto +PQ 14.9689 +SE +ET UN +ID 6366 +TI 1771360832.691534311 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.4933 +SE +ET CO +ID 6367 +TI 1771360832.692171711 +CC NStripHits 6 +PQ 22.364 +SQ 2 +CT 0.530001 0.469999 +TL 1 +TE 190.216 +CE 177.346 2.01444 190.216 1.40313 +CD -2.63108 -0.73032 -3.49373 0.0336036 0.0219182 0.0336036 -2.51467 -0.893446 -3.02811 0.0336036 0.0200298 0.0336036 0 0 0 0 0 0 +LA 0.506916 +SE +ID 6368 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +BD GR Veto +PQ +SE +ET PH +ID 6369 +TI 1771360832.693956494 +CC NStripHits 3 +PE 80.0126 +PP 0.628297 0.207499 -2.32967 +PW 0 +SE +ET CO +ID 6370 +TI 1771360832.695409411 +CC NStripHits 7 +PQ 9.65096 +SQ 3 +CT 0.138522 0.234946 +TL 1 +TE 69.5641 +CE 260.968 1.47438 69.5641 1.44094 +CD 2.14158 0.0725649 -2.09686 0.0336036 0.0284604 0.0336036 2.84002 -0.591907 -2.21327 0.0336036 0.0228626 0.0336036 0 0 0 0 0 0 +LA 0.971027 +SE +ID 6371 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (167.967347)) (GR Hit: Detector ID 0 and Energy 155.432462) +BD GR Veto +PQ 167.967 +SE +ET PH +ID 6372 +TI 1771360832.695786628 +CC NStripHits 2 +PE 80.1852 +PP -0.186547 0.254108 1.97736 +PW 0 +SE +ID 6373 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.112371) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 142.227952) +BD GR Veto +PQ 4.09642 +SE +ET PH +ID 6374 +TI 1771360832.697528828 +CC NStripHits 2 +PE 54.3973 +PP 3.88767 -0.839936 -2.9117 +PW 0 +SE +ET UN +ID 6375 +TI 1771360832.697871228 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 166.565 +SE +ID 6376 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 219.103825) +BD GR Veto +PQ 0.00053094 +SE +ID 6377 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.340128) +BD GR Veto +PQ 0.0468537 +SE +ET PH +ID 6378 +TI 1771360832.704096545 +CC NStripHits 2 +PE 108.471 +PP 0.162672 0.0631569 -3.14452 +PW 0 +SE +ET PH +ID 6379 +TI 1771360832.705829228 +CC NStripHits 2 +PE 284.782 +PP -0.535766 0.355811 -3.95936 +PW 0 +SE +ID 6380 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.289903) +BD GR Veto +PQ 0.0663154 +SE +ET UN +ID 6381 +TI 1771360832.708354145 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 354.053 +SE +ET UN +ID 6382 +TI 1771360832.709975478 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6383 +TI 1771360832.710705395 +CC NStripHits 3 +PE 100.861 +PP -0.186547 0.172911 1.27892 +PW 0 +SE +ET UN +ID 6384 +TI 1771360832.710878628 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3459 +SE +ET PH +ID 6385 +TI 1771360832.711755095 +CC NStripHits 2 +PE 109.633 +PP 0.279078 -0.0725833 1.04611 +PW 0 +SE +ET PH +ID 6386 +TI 1771360832.713102161 +CC NStripHits 2 +PE 76.5043 +PP -1.81623 0.359579 -0.00154687 +PW 0 +SE +ID 6387 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.765590) +BD GR Veto +PQ 0.265725 +SE +ET PH +ID 6388 +TI 1771360832.715607461 +CC NStripHits 2 +PE 153.544 +PP 2.4908 0.118411 0.347672 +PW 0 +SE +ID 6389 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 176.905736) +BD GR Veto +PQ 0.262198 +SE +ET PH +ID 6390 +TI 1771360832.720562612 +CC NStripHits 2 +PE 80.1919 +PP 4.23689 0.13713 -1.63123 +PW 0 +SE +ET PH +ID 6391 +TI 1771360832.720841462 +CC NStripHits 2 +PE 55.9552 +PP 2.84002 0.361889 -3.37733 +PW 0 +SE +ET CO +ID 6392 +TI 1771360832.722799078 +CC NStripHits 6 +PQ 1.68914 +SQ 2 +CT 0.551848 0.448152 +TL 1 +TE 193.885 +CE 164.565 1.43662 193.885 1.04388 +CD -0.0701406 -0.843859 -1.98045 0.0336036 0.0204698 0.0336036 0.279078 -0.404273 -2.21327 0.0336036 0.0243833 0.0336036 0 0 0 0 0 0 +LA 0.607778 +SE +ID 6393 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.755001) +BD GR Veto +PQ 1.5829 +SE +ET PH +ID 6394 +TI 1771360832.724682978 +CC NStripHits 2 +PE 77.1573 +PP 1.79236 0.113479 -3.14452 +PW 0 +SE +ID 6395 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 109.946860) +BD GR Veto +PQ 0.382878 +SE +ET PH +ID 6396 +TI 1771360832.725458778 +CC NStripHits 2 +PE 52.6398 +PP 4.3533 0.216303 -1.98045 +PW 0 +SE +ID 6397 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 115.412724) +BD GR Veto +PQ 3.35044 +SE +ET PH +ID 6398 +TI 1771360832.727003745 +CC NStripHits 2 +PE 276.735 +PP 0.744703 0.0897637 -0.816391 +PW 0 +SE +ET PH +ID 6399 +TI 1771360832.727118228 +CC NStripHits 2 +PE 79.0893 +PP 0.162672 0.195301 -4.07577 +PW 0 +SE +ET CO +ID 6400 +TI 1771360832.727250195 +CC NStripHits 4 +PQ 1.82811 +SQ 2 +CT 0 1 +TL 1 +TE 142.637 +CE 213.838 1.0674 142.637 0.987726 +CD -0.768578 -0.493469 -3.14452 0.0336036 0.0235074 0.0336036 -0.186547 -0.494529 -2.9117 0.0336036 0.0234979 0.0336036 0 0 0 0 0 0 +LA 0.62687 +SE +ET UN +ID 6401 +TI 1771360832.727547862 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9125 +SE +ET UN +ID 6402 +TI 1771360832.728173778 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 107.552 +SE +ET PH +ID 6403 +TI 1771360832.729029262 +CC NStripHits 3 +PE 93.1828 +PP 3.77127 -0.532234 -4.42498 +PW 0 +SE +ID 6404 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.227510) +BD GR Veto +PQ 0.529147 +SE +ET PH +ID 6405 +TI 1771360832.731178628 +CC NStripHits 3 +PE 164.632 +PP -2.51467 0.28296 -0.816391 +PW 0 +SE +ET PH +ID 6406 +TI 1771360832.733343095 +CC NStripHits 2 +PE 76.1411 +PP -0.0701406 0.203653 1.62814 +PW 0 +SE +ID 6407 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 55.598392) +BD GR Veto +PQ 0.0103775 +SE +ET UN +ID 6408 +TI 1771360832.736008728 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 266.396 +SE +ET UN +ID 6409 +TI 1771360832.737932378 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6410 +TI 1771360832.738304245 +CC NStripHits 2 +PE 57.5398 +PP 0.395484 0.368979 2.6758 +PW 0 +SE +ET PH +ID 6411 +TI 1771360832.738978512 +CC NStripHits 2 +PE 128.194 +PP -0.768578 0.355283 -1.39842 +PW 0 +SE +ID 6412 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 188.005660) +BD GR Veto +PQ 0.884636 +SE +ID 6413 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 146.688439) +BD GR Veto +PQ 0.467196 +SE +ET CO +ID 6414 +TI 1771360832.740638912 +CC NStripHits 4 +PQ 3.06848 +SQ 2 +CT 0 1 +TL 1 +TE 59.9027 +CE 114.709 1.4627 59.9027 1.0084 +CD 2.6072 -1.02617 -1.16561 0.0336036 0.019614 0.0336036 0.977516 -0.411963 -2.9117 0.0336036 0.0242886 0.0336036 0 0 0 0 0 0 +LA 2.46616 +SE +ET UN +ID 6415 +TI 1771360832.741569679 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 131.425 +SE +ID 6416 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 85.722814) +BD GR Veto +PQ 0.0638134 +SE +ET PH +ID 6417 +TI 1771360832.745057445 +CC NStripHits 2 +PE 67.2551 +PP 4.00408 -0.0810622 -4.07577 +PW 0 +SE +ET CO +ID 6418 +TI 1771360832.745505962 +CC NStripHits 4 +PQ 1.47408 +SQ 2 +CT 0 1 +TL 1 +TE 80.2827 +CE 273.697 1.02482 80.2827 1.01362 +CD 2.25798 -0.634058 -3.02811 0.0336036 0.0226301 0.0336036 2.72361 -1.15469 -2.67889 0.0336036 0.0260821 0.0336036 0 0 0 0 0 0 +LA 0.780912 +SE +ID 6419 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.589490) +BD GR Veto +PQ +SE +ET UN +ID 6420 +TI 1771360832.746405829 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2855 +SE +ET PH +ID 6421 +TI 1771360832.747136945 +CC NStripHits 3 +PE 303.801 +PP 2.02517 0.225301 -1.74764 +PW 0 +SE +ET UN +ID 6422 +TI 1771360832.748002579 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.0239 +SE +ET PH +ID 6423 +TI 1771360832.750710579 +CC NStripHits 2 +PE 203.329 +PP 4.12048 -0.321138 -0.816391 +PW 0 +SE +ET UN +ID 6424 +TI 1771360832.751306245 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 22.1043 +SE +ET PH +ID 6425 +TI 1771360832.751694429 +CC NStripHits 2 +PE 80.5533 +PP 2.6072 0.177162 2.55939 +PW 0 +SE +ET UN +ID 6426 +TI 1771360832.752965195 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.6322 +SE +ET UN +ID 6427 +TI 1771360832.753152312 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6428 +TI 1771360832.754674029 +CC NStripHits 2 +PE 82.4209 +PP 0.511891 0.322437 1.97736 +PW 0 +SE +ID 6429 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (29.091634)) (GR Hit: Detector ID 0 and Energy 145.617534) +BD GR Veto +PQ 29.0916 +SE +ET UN +ID 6430 +TI 1771360832.756502529 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7523 +SE +ET PH +ID 6431 +TI 1771360832.758644645 +CC NStripHits 2 +PE 34.5312 +PP -2.28186 -0.596297 0.231266 +PW 0 +SE +ET PH +ID 6432 +TI 1771360832.759707762 +CC NStripHits 2 +PE 32.3697 +PP 0.162672 -0.103998 1.16252 +PW 0 +SE +ET UN +ID 6433 +TI 1771360832.762108529 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.2408 +SE +ID 6434 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.358186) +QA StripPairing (Best reduced chi square is not below 25 (55.442507)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 95.034261)) (GR Hit: Detector ID 0 and Energy 118.966694) (GR Hit: Detector ID 0 and Energy 54.369007) +BD GR Veto +PQ 55.4425 +SE +ET PH +ID 6435 +TI 1771360832.763126329 +CC NStripHits 2 +PE 31.0491 +PP 4.12048 0.217636 -0.117953 +PW 0 +SE +ET PH +ID 6436 +TI 1771360832.763343896 +CC NStripHits 2 +PE 73.7362 +PP 0.279078 0.367915 1.86095 +PW 0 +SE +ET PH +ID 6437 +TI 1771360832.763606846 +CC NStripHits 2 +PE 27.2152 +PP -0.302953 0.0193404 -0.350766 +PW 0 +SE +ET PH +ID 6438 +TI 1771360832.763904829 +CC NStripHits 2 +PE 81.1456 +PP -0.884984 0.364458 -2.9117 +PW 0 +SE +ID 6439 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 143.040760) (GR Hit: Detector ID 0 and Energy 140.293530) +BD GR Veto +PQ 2.8014 +SE +ET PH +ID 6440 +TI 1771360832.765921579 +CC NStripHits 2 +PE 79.8288 +PP -1.2342 0.367328 2.32658 +PW 0 +SE +ET UN +ID 6441 +TI 1771360832.766215929 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.2304 +SE +ET PH +ID 6442 +TI 1771360832.766421279 +CC NStripHits 2 +PE 78.6352 +PP 4.00408 0.372929 -1.74764 +PW 0 +SE +ET PH +ID 6443 +TI 1771360832.768247579 +CC NStripHits 2 +PE 187.035 +PP -2.16545 -0.282372 1.62814 +PW 0 +SE +ET PH +ID 6444 +TI 1771360832.768536062 +CC NStripHits 3 +PE 151.134 +PP -0.768578 0.366293 -3.84295 +PW 0 +SE +ET CO +ID 6445 +TI 1771360832.769649696 +CC NStripHits 6 +PQ 0.176927 +SQ 2 +CT 0 1 +TL 1 +TE 70.5128 +CE 166.714 1.37717 70.5128 1.02914 +CD -1.58342 0.352162 -3.26092 0.0336036 0.0323126 0.0336036 -1.81623 0.285312 -3.37733 0.0336036 0.0410268 0.0336036 0 0 0 0 0 0 +LA 0.268739 +SE +ET UN +ID 6446 +TI 1771360832.769922996 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6664 +SE +ET PH +ID 6447 +TI 1771360832.771118812 +CC NStripHits 2 +PE 80.9814 +PP -2.04905 0.114938 -1.63123 +PW 0 +SE +ET PH +ID 6448 +TI 1771360832.773284312 +CC NStripHits 2 +PE 125.302 +PP -2.16545 0.0278977 -0.583578 +PW 0 +SE +ET PH +ID 6449 +TI 1771360832.774167346 +CC NStripHits 2 +PE 116.737 +PP -1.00139 -0.834733 -2.9117 +PW 0 +SE +ET UN +ID 6450 +TI 1771360832.774309896 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7097 +SE +ET UN +ID 6451 +TI 1771360832.776053829 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6452 +TI 1771360832.777951579 +CC NStripHits 3 +PE 212.855 +PP -0.652172 0.362185 -2.7953 +PW 0 +SE +ID 6453 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 139.326085) +BD GR Veto +PQ 0.297639 +SE +ID 6454 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.211406) +BD GR Veto +PQ 0.00182538 +SE +ID 6455 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.924421) +BD GR Veto +PQ 0.169628 +SE +ET PH +ID 6456 +TI 1771360832.780918229 +CC NStripHits 3 +PE 203.757 +PP 2.37439 -0.0690632 -3.02811 +PW 0 +SE +ET PH +ID 6457 +TI 1771360832.781368729 +CC NStripHits 2 +PE 145.11 +PP 0.162672 -1.02902 -2.09686 +PW 0 +SE +ET PH +ID 6458 +TI 1771360832.782190779 +CC NStripHits 3 +PE 111.612 +PP 2.02517 0.244694 -0.583578 +PW 0 +SE +ID 6459 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6460 +TI 1771360832.784090463 +CC NStripHits 2 +PE 79.2683 +PP 0.744703 0.163659 1.51173 +PW 0 +SE +ET PH +ID 6461 +TI 1771360832.784500179 +CC NStripHits 2 +PE 149.006 +PP 3.07283 -0.962406 2.44298 +PW 0 +SE +ET UN +ID 6462 +TI 1771360832.785489296 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.2205 +SE +ET PH +ID 6463 +TI 1771360832.789382846 +CC NStripHits 2 +PE 61.1187 +PP -1.93264 0.291142 2.21017 +PW 0 +SE +ET UN +ID 6464 +TI 1771360832.790133046 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6465 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.537240) +BD GR Veto +PQ 0.408504 +SE +ET PH +ID 6466 +TI 1771360832.791547729 +CC NStripHits 2 +PE 75.5888 +PP 0.744703 0.231612 1.51173 +PW 0 +SE +ET UN +ID 6467 +TI 1771360832.791701663 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6468 +TI 1771360832.792720463 +CC NStripHits 2 +PE 110.587 +PP 4.23689 -0.170712 -0.816391 +PW 0 +SE +ID 6469 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.555268) +BD GR Veto +PQ 9.0251 +SE +ET PH +ID 6470 +TI 1771360832.795368646 +CC NStripHits 2 +PE 41.4736 +PP 2.6072 -0.202082 2.6758 +PW 0 +SE +ID 6471 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 24.170735)) (GR Hit: Detector ID 0 and Energy 73.640735) +BD GR Veto +PQ 11.4531 +SE +ET PH +ID 6472 +TI 1771360832.796106979 +CC NStripHits 2 +PE 92.3195 +PP 1.79236 -1.12329 -3.37733 +PW 0 +SE +ET PH +ID 6473 +TI 1771360832.796422163 +CC NStripHits 2 +PE 82.0985 +PP -2.39827 0.368324 0.696891 +PW 0 +SE +ET UN +ID 6474 +TI 1771360832.796668963 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 184.927 +SE +ET CO +ID 6475 +TI 1771360832.798795313 +CC NStripHits 6 +PQ 0.500007 +SQ 3 +CT 0.0177445 0.0592017 +TL 1 +TE 139.587 +CE 214.772 1.53382 139.587 1.00394 +CD 1.90877 0.158068 -3.14452 0.0336036 0.0302862 0.0336036 0.861109 -0.584407 -0.816391 0.0336036 0.0228932 0.0336036 0 0 0 0 0 0 +LA 0.269712 +SE +ET PH +ID 6476 +TI 1771360832.799236113 +CC NStripHits 4 +PE 175.457 +PP 0.977516 -0.43438 -1.51483 +PW 0 +SE +ID 6477 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.852956) +BD GR Veto +PQ 0.324351 +SE +ET PH +ID 6478 +TI 1771360832.801151413 +CC NStripHits 2 +PE 132.664 +PP 4.23689 0.0855152 -3.72655 +PW 0 +SE +ID 6479 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.898819) +BD GR Veto +PQ 0.363309 +SE +ET PH +ID 6480 +TI 1771360832.803551363 +CC NStripHits 2 +PE 122.667 +PP 2.25798 -0.0946947 1.27892 +PW 0 +SE +ET UN +ID 6481 +TI 1771360832.803755496 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.8641 +SE +ID 6482 +BD StripPairingError (More than maximum number of strip hits allowed on one side (8)) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.740801) (Strip hit removed with energy 6.303791) (Strip hit removed with energy 8.010620) (Strip hit removed with energy 9.084545) (Strip hit removed with energy 12.185240) (Strip hit removed with energy 13.419191) (Strip hit removed with energy 18.605867) (Strip hit removed with energy 13.114570) +BD GR Veto +PQ +SE +ET PH +ID 6483 +TI 1771360832.804554063 +CC NStripHits 2 +PE 80.7556 +PP -1.1178 -0.145751 -2.67889 +PW 0 +SE +ID 6484 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.547722) +BD GR Veto +PQ 1.0644 +SE +ET UN +ID 6485 +TI 1771360832.805038346 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6486 +TI 1771360832.805634946 +CC NStripHits 2 +PE 82.2082 +PP -0.652172 0.330374 -2.09686 +PW 0 +SE +ID 6487 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.733734) +QA StripPairing (GR Hit: Detector ID 0 and Energy 133.380928) +BD GR Veto +PQ 1.77158 +SE +ID 6488 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.001185) +QA StripPairing (GR Hit: Detector ID 0 and Energy 154.041956) +BD GR Veto +PQ 0.150096 +SE +ET PH +ID 6489 +TI 1771360832.810380263 +CC NStripHits 3 +PE 128.554 +PP 3.77127 -1.09282 0.347672 +PW 0 +SE +ID 6490 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (72.109484)) (GR Hit: Detector ID 0 and Energy 210.245150) +BD GR Veto +PQ 72.1095 +SE +ET UN +ID 6491 +TI 1771360832.812568163 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +CC NStripHits 11 +PE 0 +SE +ID 6492 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.878856) +BD GR Veto +PQ 0.0620578 +SE +ET PH +ID 6493 +TI 1771360832.815173463 +CC NStripHits 2 +PE 108.361 +PP -1.00139 0.368347 -0.350766 +PW 0 +SE +ET PH +ID 6494 +TI 1771360832.815369913 +CC NStripHits 4 +PE 300.912 +PP -0.884984 -1.12532 -0.816391 +PW 0 +SE +ET CO +ID 6495 +TI 1771360832.815684913 +CC NStripHits 5 +PQ 61.5933 +SQ 2 +CT 0.518356 0.481644 +TL 1 +TE 202.256 +CE 157.241 1.46739 202.256 2.01292 +CD -1.69983 -0.56839 -3.02811 0.0336036 0.0229749 0.0336036 -2.9803 0.0945235 -3.37733 0.0336036 0.0288063 0.0336036 0 0 0 0 0 0 +LA 1.48358 +SE +ET UN +ID 6496 +TI 1771360832.819398930 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 126.972 +SE +ET PH +ID 6497 +TI 1771360832.819953230 +CC NStripHits 2 +PE 156.784 +PP 3.42205 0.368672 -1.63123 +PW 0 +SE +ET UN +ID 6498 +TI 1771360832.820587363 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.3885 +SE +ET UN +ID 6499 +TI 1771360832.820979380 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6500 +TI 1771360832.821052480 +CC NStripHits 2 +PE 80.9814 +PP 4.3533 0.110199 -1.63123 +PW 0 +SE +ET PH +ID 6501 +TI 1771360832.828580063 +CC NStripHits 2 +PE 79.9104 +PP 2.4908 0.260657 -3.14452 +PW 0 +SE +ET UN +ID 6502 +TI 1771360832.828854513 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7654 +SE +ET PH +ID 6503 +TI 1771360832.829156913 +CC NStripHits 3 +PE 81.5763 +PP 1.44314 0.370243 -1.74764 +PW 0 +SE +ET UN +ID 6504 +TI 1771360832.830657397 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4029 +SE +ET PH +ID 6505 +TI 1771360832.830866797 +CC NStripHits 2 +PE 165.246 +PP -0.652172 0.0631629 0.114859 +PW 0 +SE +ET UN +ID 6506 +TI 1771360832.832058313 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 272.033 +SE +ET UN +ID 6507 +TI 1771360832.832875697 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.9979 +SE +ET PH +ID 6508 +TI 1771360832.833505613 +CC NStripHits 2 +PE 78.816 +PP 1.09392 0.367919 1.86095 +PW 0 +SE +ET PH +ID 6509 +TI 1771360832.834827930 +CC NStripHits 2 +PE 196.424 +PP 4.12048 -0.293253 -1.28202 +PW 0 +SE +ET PH +ID 6510 +TI 1771360832.836102680 +CC NStripHits 3 +PE 169.085 +PP 4.3533 -0.87845 -1.28202 +PW 0 +SE +ET CO +ID 6511 +TI 1771360832.836475613 +CC NStripHits 9 +PQ 15.5699 +SQ 4 +CT 0.00415593 0.107046 +TL 1 +TE 112.186 +CE 164.363 2.02722 112.186 1.4871 +CD 3.65486 -1.00736 1.16252 0.0336036 0.0195508 0.0336036 3.42205 -0.900614 1.27892 0.0336036 0.0199732 0.0336036 0 0 0 0 0 0 +LA 0.281326 +SE +ET PH +ID 6512 +TI 1771360832.837267830 +CC NStripHits 2 +PE 79.8327 +PP 1.09392 0.132134 1.16252 +PW 0 +SE +ET UN +ID 6513 +TI 1771360832.837852630 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.9513 +SE +ET UN +ID 6514 +TI 1771360832.839284463 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6681 +SE +ET PH +ID 6515 +TI 1771360832.840502447 +CC NStripHits 2 +PE 301.657 +PP 0.511891 -0.362659 -1.74764 +PW 0 +SE +ET UN +ID 6516 +TI 1771360832.840646397 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.1426 +SE +ID 6517 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (89.031108)) (GR Hit: Detector ID 0 and Energy 216.136795) +BD GR Veto +PQ 89.0311 +SE +ID 6518 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.718598) +BD GR Veto +PQ 0.266169 +SE +ID 6519 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 57.048520) +BD GR Veto +PQ 0.868124 +SE +ET UN +ID 6520 +TI 1771360832.846488347 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 354.004 +SE +ET PH +ID 6521 +TI 1771360832.847295114 +CC NStripHits 2 +PE 81.6058 +PP 2.14158 0.37699 1.27892 +PW 0 +SE +ET PH +ID 6522 +TI 1771360832.849639514 +CC NStripHits 2 +PE 64.572 +PP 3.07283 0.188563 1.97736 +PW 0 +SE +ET PH +ID 6523 +TI 1771360832.850666147 +CC NStripHits 2 +PE 353.972 +PP 0.628297 0.347243 -1.28202 +PW 0 +SE +ID 6524 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.637335) +BD GR Veto +PQ 0.0324883 +SE +ET PH +ID 6525 +TI 1771360832.851239247 +CC NStripHits 3 +PE 384.456 +PP -1.00139 -0.822577 0.929703 +PW 0 +SE +ID 6526 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 6527 +TI 1771360832.852285097 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 78.1393 +SE +ET UN +ID 6528 +TI 1771360832.852468514 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.99 +SE +ET UN +ID 6529 +TI 1771360832.855010797 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 275.252 +SE +ET UN +ID 6530 +TI 1771360832.855676580 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.8399 +SE +ID 6531 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (38.519739)) (GR Hit: Detector ID 0 and Energy 102.930167) +BD GR Veto +PQ 38.5197 +SE +ET PH +ID 6532 +TI 1771360832.860149347 +CC NStripHits 3 +PE 173.901 +PP 0.977516 -0.00383225 2.6758 +PW 0 +SE +ET PH +ID 6533 +TI 1771360832.862437281 +CC NStripHits 2 +PE 109.207 +PP -1.58342 0.349986 -2.32967 +PW 0 +SE +ET UN +ID 6534 +TI 1771360832.863322564 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0932 +SE +ET UN +ID 6535 +TI 1771360832.866560947 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 205.38 +SE +ET UN +ID 6536 +TI 1771360832.867990531 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 6537 +TI 1771360832.868911014 +CC NStripHits 7 +PQ 0.194649 +SQ 2 +CT 0.754632 0.245368 +TL 1 +TE 457.017 +CE 200.592 1.41799 457.017 1.21495 +CD -0.419359 0.186623 -2.67889 0.0336036 0.0313272 0.0336036 -1.1178 -0.399077 -1.98045 0.0336036 0.0244478 0.0336036 0 0 0 0 0 0 +LA 1.14834 +SE +ET PH +ID 6538 +TI 1771360832.869225564 +CC NStripHits 2 +PE 79.6615 +PP 3.65486 0.315152 -3.14452 +PW 0 +SE +ET PH +ID 6539 +TI 1771360832.869447581 +CC NStripHits 2 +PE 80.644 +PP 3.42205 0.35546 1.51173 +PW 0 +SE +ET PH +ID 6540 +TI 1771360832.871555464 +CC NStripHits 2 +PE 62.8459 +PP 1.44314 0.364921 -0.816391 +PW 0 +SE +ID 6541 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (84.518490)) (GR Hit: Detector ID 0 and Energy 169.828910) +BD GR Veto +PQ 84.5185 +SE +ID 6542 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 25.781802)) (GR Hit: Detector ID 0 and Energy 187.662932) +BD GR Veto +PQ 9.4914 +SE +ET PH +ID 6543 +TI 1771360832.872756897 +CC NStripHits 2 +PE 77.798 +PP 0.395484 0.318747 0.114859 +PW 0 +SE +ID 6544 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.789274) +BD GR Veto +PQ 0.00990777 +SE +ET PH +ID 6545 +TI 1771360832.876322547 +CC NStripHits 2 +PE 82.3297 +PP 2.84002 0.170214 -0.00154687 +PW 0 +SE +ID 6546 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.693898) +BD GR Veto +PQ 0.683857 +SE +ET UN +ID 6547 +TI 1771360832.876800814 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.6868 +SE +ET PH +ID 6548 +TI 1771360832.877578481 +CC NStripHits 2 +PE 81.0428 +PP 1.09392 0.213361 1.74455 +PW 0 +SE +ET UN +ID 6549 +TI 1771360832.878828747 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.2241 +SE +ID 6550 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.767466) +QA StripPairing (Best reduced chi square is not below 25 (46.454015)) (GR Hit: Detector ID 0 and Energy 197.644457) +BD GR Veto +PQ 46.454 +SE +ET PH +ID 6551 +TI 1771360832.881437964 +CC NStripHits 2 +PE 187.32 +PP -2.16545 0.360391 -3.72655 +PW 0 +SE +ID 6552 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6553 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ID 6554 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 1.10718 +SE +ID 6555 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6556 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.647454) +BD GR Veto +PQ +SE +ET UN +ID 6557 +TI 1771360832.885177014 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2907 +SE +ET UN +ID 6558 +TI 1771360832.886419681 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 150.36 +SE +ET UN +ID 6559 +TI 1771360832.886649631 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 339.219 +SE +ID 6560 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (483.441127)) (GR Hit: Detector ID 0 and Energy 276.214459) +BD GR Veto +PQ 483.441 +SE +ID 6561 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 150.894247) +BD GR Veto +PQ 0.00244291 +SE +ET PH +ID 6562 +TI 1771360832.888760431 +CC NStripHits 2 +PE 76.5898 +PP 0.628297 -0.69618 1.74455 +PW 0 +SE +ET PH +ID 6563 +TI 1771360832.889150164 +CC NStripHits 2 +PE 117.528 +PP 4.23689 -1.03184 0.464078 +PW 0 +SE +ID 6564 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.317538) +BD GR Veto +PQ 0.275819 +SE +ET UN +ID 6565 +TI 1771360832.891119514 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 25.0677 +SE +ID 6566 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.359341) +BD GR Veto +PQ 0.146493 +SE +ET PH +ID 6567 +TI 1771360832.892264381 +CC NStripHits 2 +PE 78.9426 +PP 1.32673 0.381208 -1.16561 +PW 0 +SE +ET UN +ID 6568 +TI 1771360832.894828881 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 165.881 +SE +ID 6569 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.912611) +BD GR Veto +PQ 0.0713956 +SE +ET PH +ID 6570 +TI 1771360832.895763581 +CC NStripHits 3 +PE 242.342 +PP -2.74748 -0.0110863 -0.117953 +PW 0 +SE +ET PH +ID 6571 +TI 1771360832.898621848 +CC NStripHits 2 +PE 78.403 +PP 3.65486 0.196389 -2.09686 +PW 0 +SE +ET UN +ID 6572 +TI 1771360832.900441515 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.1342 +SE +ID 6573 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 154.091970) +BD GR Veto +PQ 0.119134 +SE +ET CO +ID 6574 +TI 1771360832.902284531 +CC NStripHits 5 +PQ 1.10998 +SQ 2 +CT 0 1 +TL 1 +TE 69.3541 +CE 137.555 1.15197 69.3541 0.977831 +CD -2.28186 -0.212263 0.813297 0.0336036 0.0257627 0.0336036 -1.81623 0.0123056 0.464078 0.0336036 0.0277531 0.0336036 0 0 0 0 0 0 +LA 0.623856 +SE +ID 6575 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.572950) +QA StripPairing (GR Hit: Detector ID 0 and Energy 137.874626) +BD GR Veto +PQ 8.22952 +SE +ET PH +ID 6576 +TI 1771360832.903766981 +CC NStripHits 2 +PE 81.3984 +PP -1.93264 0.183719 1.16252 +PW 0 +SE +ET PH +ID 6577 +TI 1771360832.903876765 +CC NStripHits 2 +PE 31.6606 +PP 1.67595 0.37509 2.44298 +PW 0 +SE +ET UN +ID 6578 +TI 1771360832.906186265 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.942 +SE +ET PH +ID 6579 +TI 1771360832.908128965 +CC NStripHits 2 +PE 356.58 +PP 1.67595 -0.249172 -1.16561 +PW 0 +SE +ET PH +ID 6580 +TI 1771360832.908250915 +CC NStripHits 2 +PE 81.0628 +PP 4.12048 0.22761 1.97736 +PW 0 +SE +ET UN +ID 6581 +TI 1771360832.909523465 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.371 +SE +ET PH +ID 6582 +TI 1771360832.909728315 +CC NStripHits 2 +PE 30.7415 +PP -1.1178 -0.55142 0.114859 +PW 0 +SE +ET CO +ID 6583 +TI 1771360832.910623148 +CC NStripHits 6 +PQ 80.3394 +SQ 2 +CT 0.564807 0.435193 +TL 1 +TE 203.555 +CE 174.757 1.44634 203.555 1.43205 +CD 2.14158 0.0457241 0.813297 0.0336036 0.0281238 0.0336036 1.90877 -0.0969347 1.04611 0.0336036 0.0267878 0.0336036 0 0 0 0 0 0 +LA 0.358823 +SE +ET UN +ID 6584 +TI 1771360832.913018715 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7513 +SE +ET UN +ID 6585 +TI 1771360832.914218031 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 50.1412 +SE +ET UN +ID 6586 +TI 1771360832.914784215 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 100.135 +SE +ET UN +ID 6587 +TI 1771360832.916253998 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4576 +SE +ET PH +ID 6588 +TI 1771360832.916973765 +CC NStripHits 2 +PE 160.596 +PP -1.35061 0.185287 2.32658 +PW 0 +SE +ET UN +ID 6589 +TI 1771360832.917671798 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 58.7454 +SE +ID 6590 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (46.165381)) (GR Hit: Detector ID 0 and Energy 155.269103) +BD GR Veto +PQ 46.1654 +SE +ET UN +ID 6591 +TI 1771360832.919695398 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2189 +SE +ID 6592 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.446549) +BD GR Veto +PQ 0.00237261 +SE +ET PH +ID 6593 +TI 1771360832.920211815 +CC NStripHits 2 +PE 83.8923 +PP -2.9803 0.0985257 0.929703 +PW 0 +SE +ET PH +ID 6594 +TI 1771360832.921788198 +CC NStripHits 2 +PE 79.649 +PP 3.88767 -0.514675 -3.26092 +PW 0 +SE +ET UN +ID 6595 +TI 1771360832.922095298 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6596 +TI 1771360832.922680415 +CC NStripHits 3 +PE 111.212 +PP -1.93264 0.257239 -4.6578 +PW 0 +SE +ET PH +ID 6597 +TI 1771360832.924451115 +CC NStripHits 2 +PE 81.5837 +PP -1.69983 0.336437 0.464078 +PW 0 +SE +ET PH +ID 6598 +TI 1771360832.928575632 +CC NStripHits 2 +PE 80.3648 +PP 0.395484 0.355513 -3.14452 +PW 0 +SE +ID 6599 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.145460) +BD GR Veto +PQ 0.179693 +SE +ET UN +ID 6600 +TI 1771360832.933580748 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 76.8078 +SE +ET UN +ID 6601 +TI 1771360832.935477082 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 303.343 +SE +ID 6602 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.166298) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 110.358490) (GR Hit: Detector ID 0 and Energy 145.781111) +BD GR Veto +PQ 0.00414797 +SE +ET UN +ID 6603 +TI 1771360832.938337082 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.2017 +SE +ET PH +ID 6604 +TI 1771360832.941936399 +CC NStripHits 2 +PE 81.6749 +PP 4.12048 0.375317 -2.21327 +PW 0 +SE +ET PH +ID 6605 +TI 1771360832.943138015 +CC NStripHits 3 +PE 1101.65 +PP 2.14158 0.362022 -2.56248 +PW 0 +SE +ET CO +ID 6606 +TI 1771360832.943817865 +CC NStripHits 4 +PQ 1.55913 +SQ 2 +CT 0 1 +TL 1 +TE 129.046 +CE 190.842 1.00545 129.046 1.0194 +CD -2.74748 0.367224 0.114859 0.0336036 0.0244654 0.0336036 -1.93264 -0.519724 -0.234359 0.0336036 0.0233066 0.0336036 0 0 0 0 0 0 +LA 1.25403 +SE +ET PH +ID 6607 +TI 1771360832.944766732 +CC NStripHits 2 +PE 80.5282 +PP -2.16545 -0.15924 -4.07577 +PW 0 +SE +ET UN +ID 6608 +TI 1771360832.946049249 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6609 +TI 1771360832.946534382 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0434 +SE +ET PH +ID 6610 +TI 1771360832.946929599 +CC NStripHits 3 +PE 172.491 +PP -1.81623 -0.754767 -1.16561 +PW 0 +SE +ET PH +ID 6611 +TI 1771360832.947398382 +CC NStripHits 2 +PE 79.2138 +PP 3.42205 0.360582 -0.117953 +PW 0 +SE +ET PH +ID 6612 +TI 1771360832.948214715 +CC NStripHits 2 +PE 30.305 +PP 3.30564 -0.191378 -2.7953 +PW 0 +SE +ET UN +ID 6613 +TI 1771360832.948437515 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.9797 +SE +ET PH +ID 6614 +TI 1771360832.949010065 +CC NStripHits 3 +PE 122.938 +PP -2.16545 -1.12596 -3.49373 +PW 0 +SE +ET PH +ID 6615 +TI 1771360832.951858399 +CC NStripHits 3 +PE 128.101 +PP -2.63108 -0.344871 1.16252 +PW 0 +SE +ET PH +ID 6616 +TI 1771360832.951965849 +CC NStripHits 2 +PE 53.5499 +PP 3.42205 -0.193775 1.16252 +PW 0 +SE +ID 6617 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 132.860517) +BD GR Veto +PQ 2.79864e-06 +SE +ET PH +ID 6618 +TI 1771360832.953990099 +CC NStripHits 3 +PE 106.609 +PP 2.72361 0.100513 -0.699984 +PW 0 +SE +ID 6619 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.353077) (Strip hit removed with energy 4.001515) +QA StripPairing (Best reduced chi square is not below 25 (82.477040)) (GR Hit: Detector ID 0 and Energy 259.186772) +BD GR Veto +PQ 82.477 +SE +ET UN +ID 6620 +TI 1771360832.955047049 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8329 +SE +ET PH +ID 6621 +TI 1771360832.955687015 +CC NStripHits 2 +PE 231.795 +PP -2.28186 -0.00794934 -3.49373 +PW 0 +SE +ID 6622 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 244.750968) +BD GR Veto +PQ 0.000991345 +SE +ET CO +ID 6623 +TI 1771360832.960131816 +CC NStripHits 7 +PQ 6.38368 +SQ 3 +CT 0.000600097 0.159456 +TL 1 +TE 160.723 +CE 202.079 2.06455 160.723 1.21109 +CD 2.84002 -1.03068 -3.84295 0.0336036 0.019665 0.0336036 2.14158 -0.354424 -4.30858 0.0336036 0.0248125 0.0336036 0 0 0 0 0 0 +LA 1.07794 +SE +ET PH +ID 6624 +TI 1771360832.960473566 +CC NStripHits 2 +PE 148.356 +PP -0.302953 -1.15736 -0.583578 +PW 0 +SE +ET CO +ID 6625 +TI 1771360832.960752616 +CC NStripHits 5 +PQ 33.8546 +SQ 2 +CT 0 1 +TL 1 +TE 107.372 +CE 191.608 1.50009 107.372 1.40769 +CD -1.2342 -0.237367 -2.44608 0.0336036 0.0255521 0.0336036 -1.58342 -0.618248 -2.9117 0.0336036 0.0227199 0.0336036 0 0 0 0 0 0 +LA 0.695577 +SE +ID 6626 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.434613) +BD GR Veto +PQ 0.0501719 +SE +ET PH +ID 6627 +TI 1771360832.961400982 +CC NStripHits 2 +PE 353.892 +PP 1.67595 0.0312448 -4.54139 +PW 0 +SE +ET PH +ID 6628 +TI 1771360832.961782566 +CC NStripHits 2 +PE 206.883 +PP 0.279078 0.358448 0.347672 +PW 0 +SE +ET PH +ID 6629 +TI 1771360832.962530866 +CC NStripHits 2 +PE 79.4957 +PP 1.67595 0.31191 1.16252 +PW 0 +SE +ET UN +ID 6630 +TI 1771360832.962825666 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6631 +TI 1771360832.963327016 +CC NStripHits 2 +PE 176.297 +PP -0.419359 -0.999425 0.580484 +PW 0 +SE +ET PH +ID 6632 +TI 1771360832.963903716 +CC NStripHits 3 +PE 89.0936 +PP 3.30564 0.0565174 1.51173 +PW 0 +SE +ID 6633 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 126.569729) +BD GR Veto +PQ 0.460637 +SE +ET UN +ID 6634 +TI 1771360832.970825249 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.2265 +SE +ET UN +ID 6635 +TI 1771360832.972392482 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.7016 +SE +ID 6636 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 88.376647) +BD GR Veto +PQ 24.0952 +SE +ID 6637 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 356.089236) +BD GR Veto +PQ 0.00299845 +SE +ET CO +ID 6638 +TI 1771360832.976523649 +CC NStripHits 4 +PQ 8.91781 +SQ 2 +CT 0 1 +TL 1 +TE 65.785 +CE 289.991 1.41129 65.785 0.974849 +CD -0.768578 0.316778 1.62814 0.0336036 0.0411935 0.0336036 -1.2342 -0.472441 2.6758 0.0336036 0.0237002 0.0336036 0 0 0 0 0 0 +LA 1.39186 +SE +ID 6639 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.549047) (Strip hit removed with energy 19.108184) (Strip hit removed with energy 10.200839) (Strip hit removed with energy 19.376335) +BD GR Veto +PQ +SE +ET UN +ID 6640 +TI 1771360832.978922349 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 90.8877 +SE +ET PH +ID 6641 +TI 1771360832.979116782 +CC NStripHits 2 +PE 146.11 +PP -0.652172 0.110899 -1.98045 +PW 0 +SE +ET PH +ID 6642 +TI 1771360832.980678933 +CC NStripHits 2 +PE 184.79 +PP 0.511891 -0.653924 -3.26092 +PW 0 +SE +ID 6643 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.144244) +BD GR Veto +PQ 10.635 +SE +ID 6644 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 98.665474) +BD GR Veto +PQ 0.000258032 +SE +ID 6645 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6646 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 85.705835) +BD GR Veto +PQ 0.790788 +SE +ET PH +ID 6647 +TI 1771360832.986912449 +CC NStripHits 2 +PE 80.1318 +PP 3.53845 0.371909 1.62814 +PW 0 +SE +ET PH +ID 6648 +TI 1771360832.987089966 +CC NStripHits 3 +PE 241.35 +PP -2.16545 0.373085 -1.63123 +PW 0 +SE +ID 6649 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.101527) +BD GR Veto +PQ 0.0277385 +SE +ET UN +ID 6650 +TI 1771360832.988876333 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 51.2632 +SE +ID 6651 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.959762) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.478654) +BD GR Veto +PQ 4.67111 +SE +ET PH +ID 6652 +TI 1771360832.990659899 +CC NStripHits 2 +PE 52.0256 +PP 2.84002 0.30864 -2.67889 +PW 0 +SE +ET PH +ID 6653 +TI 1771360832.991285666 +CC NStripHits 2 +PE 56.1788 +PP 2.25798 0.371052 0.464078 +PW 0 +SE +ID 6654 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 29.788327)) (GR Hit: Detector ID 0 and Energy 81.999679) +BD GR Veto +PQ 18.4816 +SE +ET PH +ID 6655 +TI 1771360832.991917749 +CC NStripHits 2 +PE 121.176 +PP -0.186547 -0.931698 2.55939 +PW 0 +SE +ID 6656 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.157119) +BD GR Veto +PQ +SE +ET PH +ID 6657 +TI 1771360832.996097616 +CC NStripHits 2 +PE 187.527 +PP -1.1178 -0.861926 -0.467172 +PW 0 +SE +ET PH +ID 6658 +TI 1771360832.997063083 +CC NStripHits 3 +PE 303.825 +PP 0.628297 -0.493123 2.09377 +PW 0 +SE +ET PH +ID 6659 +TI 1771360832.997539683 +CC NStripHits 3 +PE 353.704 +PP 1.67595 -0.251603 1.04611 +PW 0 +SE +ET PH +ID 6660 +TI 1771360832.998844816 +CC NStripHits 2 +PE 81.3306 +PP 1.55955 0.257775 -1.86405 +PW 0 +SE +ET UN +ID 6661 +TI 1771360833.000953650 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 219.637 +SE +ID 6662 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ID 6663 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (51.103724)) +BD GR Veto +PQ 51.1037 +SE +ET UN +ID 6664 +TI 1771360833.003077000 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6665 +TI 1771360833.003353250 +CC NStripHits 2 +PE 115.494 +PP 3.18923 -0.791783 -0.699984 +PW 0 +SE +ET UN +ID 6666 +TI 1771360833.003497433 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 48.1477 +SE +ET UN +ID 6667 +TI 1771360833.005336050 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 31.4983 +SE +ET PH +ID 6668 +TI 1771360833.005575400 +CC NStripHits 2 +PE 300.054 +PP -0.302953 0.361196 -3.95936 +PW 0 +SE +ID 6669 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.123055) +BD GR Veto +PQ 2.45704 +SE +ET PH +ID 6670 +TI 1771360833.008753766 +CC NStripHits 2 +PE 70.3212 +PP 4.00408 0.120148 -2.56248 +PW 0 +SE +ET PH +ID 6671 +TI 1771360833.008879333 +CC NStripHits 2 +PE 78.6844 +PP 2.84002 -0.366 -3.49373 +PW 0 +SE +ET PH +ID 6672 +TI 1771360833.009983533 +CC NStripHits 2 +PE 113.689 +PP -0.419359 0.0552455 -4.54139 +PW 0 +SE +ET PH +ID 6673 +TI 1771360833.010797583 +CC NStripHits 2 +PE 200.478 +PP 3.30564 -0.261671 -0.234359 +PW 0 +SE +ET UN +ID 6674 +TI 1771360833.011413766 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 21.172 +SE +ET UN +ID 6675 +TI 1771360833.011728050 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.1102 +SE +ET PH +ID 6676 +TI 1771360833.014165950 +CC NStripHits 2 +PE 231.465 +PP -0.535766 0.295454 2.21017 +PW 0 +SE +ID 6677 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.667589) +BD GR Veto +PQ 1.69913 +SE +ET PH +ID 6678 +TI 1771360833.015805000 +CC NStripHits 2 +PE 23.8901 +PP -1.00139 -0.597936 -1.98045 +PW 0 +SE +ID 6679 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.704085) +BD GR Veto +PQ 0.435519 +SE +ET PH +ID 6680 +TI 1771360833.017638350 +CC NStripHits 2 +PE 151.322 +PP -0.884984 -0.0849901 0.464078 +PW 0 +SE +ET PH +ID 6681 +TI 1771360833.017712616 +CC NStripHits 2 +PE 28.7204 +PP -0.302953 0.171708 -1.16561 +PW 0 +SE +ET UN +ID 6682 +TI 1771360833.018772883 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 257.446 +SE +ET UN +ID 6683 +TI 1771360833.021030183 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 231.217 +SE +ET UN +ID 6684 +TI 1771360833.025190767 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6685 +TI 1771360833.025579917 +CC NStripHits 2 +PE 30.5066 +PP 0.279078 -0.255621 1.39533 +PW 0 +SE +ID 6686 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.721320) +BD GR Veto +PQ 0.498238 +SE +ET PH +ID 6687 +TI 1771360833.026887700 +CC NStripHits 3 +PE 103.472 +PP -2.28186 0.276091 -2.44608 +PW 0 +SE +ET PH +ID 6688 +TI 1771360833.027214767 +CC NStripHits 2 +PE 159.918 +PP 0.511891 0.297122 -2.7953 +PW 0 +SE +ET PH +ID 6689 +TI 1771360833.028904750 +CC NStripHits 2 +PE 162.441 +PP -0.535766 -0.040947 -0.699984 +PW 0 +SE +ET UN +ID 6690 +TI 1771360833.029163483 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.4954 +SE +ID 6691 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.242451) +BD GR Veto +PQ 0.188441 +SE +ET PH +ID 6692 +TI 1771360833.031131983 +CC NStripHits 2 +PE 200.855 +PP -2.04905 0.23631 1.97736 +PW 0 +SE +ET PH +ID 6693 +TI 1771360833.033135517 +CC NStripHits 2 +PE 178.116 +PP 2.6072 -0.450132 -4.19217 +PW 0 +SE +ET CO +ID 6694 +TI 1771360833.033485700 +CC NStripHits 7 +PQ 4.35129 +SQ 3 +CT 0.0208924 0.152235 +TL 1 +TE 61.045 +CE 215.65 1.48703 61.045 1.31252 +CD -2.63108 -0.617399 1.97736 0.0336036 0.0227252 0.0336036 -1.69983 -0.881998 2.09377 0.0336036 0.0201409 0.0336036 0 0 0 0 0 0 +LA 0.710397 +SE +ET PH +ID 6695 +TI 1771360833.035948200 +CC NStripHits 3 +PE 117.053 +PP 2.4908 -0.940494 -2.32967 +PW 0 +SE +ET PH +ID 6696 +TI 1771360833.036311450 +CC NStripHits 2 +PE 29.2814 +PP 2.02517 0.25806 1.51173 +PW 0 +SE +ID 6697 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 124.383237) +BD GR Veto +PQ 0.00123236 +SE +ET PH +ID 6698 +TI 1771360833.039303400 +CC NStripHits 2 +PE 82.1024 +PP -1.81623 0.123728 -2.9117 +PW 0 +SE +ET PH +ID 6699 +TI 1771360833.039571183 +CC NStripHits 2 +PE 79.4964 +PP -1.69983 -0.400781 0.813297 +PW 0 +SE +ET PH +ID 6700 +TI 1771360833.040010584 +CC NStripHits 3 +PE 176.297 +PP 2.37439 0.0371522 -2.9117 +PW 0 +SE +ET PH +ID 6701 +TI 1771360833.040257450 +CC NStripHits 2 +PE 163.161 +PP 2.84002 0.36526 -0.583578 +PW 0 +SE +ET PH +ID 6702 +TI 1771360833.042199184 +CC NStripHits 2 +PE 30.7467 +PP -2.39827 -0.432225 -2.44608 +PW 0 +SE +ET PH +ID 6703 +TI 1771360833.043469767 +CC NStripHits 2 +PE 45.7539 +PP 2.84002 -0.996874 -2.9117 +PW 0 +SE +ET UN +ID 6704 +TI 1771360833.044564534 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.3009 +SE +ID 6705 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.831813) +BD GR Veto +PQ 0.261205 +SE +ET PH +ID 6706 +TI 1771360833.046347200 +CC NStripHits 2 +PE 219.751 +PP -0.186547 0.0210804 -3.02811 +PW 0 +SE +ET PH +ID 6707 +TI 1771360833.046458317 +CC NStripHits 2 +PE 71.3768 +PP 0.511891 0.214829 0.347672 +PW 0 +SE +ET PH +ID 6708 +TI 1771360833.047006684 +CC NStripHits 3 +PE 302.093 +PP -2.86389 0.372616 -1.74764 +PW 0 +SE +ID 6709 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.930986) +BD GR Veto +PQ 11.7648 +SE +ID 6710 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 6711 +TI 1771360833.048813534 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6712 +TI 1771360833.051106634 +CC NStripHits 2 +PE 50.6544 +PP 4.23689 0.370913 0.696891 +PW 0 +SE +ID 6713 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.904648) (Strip hit removed with energy 7.947109) +BD GR Veto +PQ +SE +ET PH +ID 6714 +TI 1771360833.051818550 +CC NStripHits 2 +PE 74.7042 +PP -1.58342 -0.284857 -3.95936 +PW 0 +SE +ET PH +ID 6715 +TI 1771360833.052389567 +CC NStripHits 2 +PE 117.582 +PP 4.00408 -0.342821 -2.9117 +PW 0 +SE +ET PH +ID 6716 +TI 1771360833.052550034 +CC NStripHits 2 +PE 81.188 +PP -1.00139 0.2636 -2.67889 +PW 0 +SE +ET UN +ID 6717 +TI 1771360833.052963834 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2758 +SE +ET CO +ID 6718 +TI 1771360833.053050167 +CC NStripHits 4 +PQ 0.530468 +SQ 2 +CT 0 1 +TL 1 +TE 53.8257 +CE 117.704 1.03862 53.8257 1.0286 +CD 3.53845 -0.934244 -2.44608 0.0336036 0.0197166 0.0336036 3.65486 -0.467031 -2.21327 0.0336036 0.0237553 0.0336036 0 0 0 0 0 0 +LA 0.534827 +SE +ET PH +ID 6719 +TI 1771360833.053183267 +CC NStripHits 2 +PE 80.9559 +PP 3.77127 0.354226 -3.26092 +PW 0 +SE +ET UN +ID 6720 +TI 1771360833.054588884 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 304.151 +SE +ET PH +ID 6721 +TI 1771360833.055444734 +CC NStripHits 2 +PE 220.283 +PP -1.00139 -0.764097 -0.117953 +PW 0 +SE +ET UN +ID 6722 +TI 1771360833.059587350 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 127.444 +SE +ID 6723 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 293.121651) +BD GR Veto +PQ 0.908266 +SE +ET PH +ID 6724 +TI 1771360833.063342251 +CC NStripHits 2 +PE 79.7498 +PP -0.419359 0.21761 1.74455 +PW 0 +SE +ID 6725 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.062281) +BD GR Veto +PQ 0.219398 +SE +ET PH +ID 6726 +TI 1771360833.064407417 +CC NStripHits 3 +PE 80.9901 +PP -1.46702 0.363797 0.580484 +PW 0 +SE +ET PH +ID 6727 +TI 1771360833.064631817 +CC NStripHits 2 +PE 79.5062 +PP 0.744703 0.0953021 2.6758 +PW 0 +SE +ID 6728 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 235.196010) +BD GR Veto +PQ 0.074464 +SE +ET UN +ID 6729 +TI 1771360833.065821617 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.2038 +SE +ET UN +ID 6730 +TI 1771360833.066710851 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6731 +TI 1771360833.067850301 +CC NStripHits 2 +PE 355.892 +PP 0.395484 -0.00750044 -2.56248 +PW 0 +SE +ET PH +ID 6732 +TI 1771360833.069212267 +CC NStripHits 3 +PE 121.627 +PP 2.25798 0.375535 -0.00154687 +PW 0 +SE +ID 6733 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.547280) +QA StripPairing (Best reduced chi square is not below 25 (84.482067)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 38.323902)) +BD GR Veto +PQ 84.4821 +SE +ET UN +ID 6734 +TI 1771360833.072221967 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 228.713 +SE +ET PH +ID 6735 +TI 1771360833.072621017 +CC NStripHits 2 +PE 111.994 +PP -1.58342 -1.14456 0.929703 +PW 0 +SE +ET UN +ID 6736 +TI 1771360833.072833651 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 238.382 +SE +ET UN +ID 6737 +TI 1771360833.073224367 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 8 +PE 0 +SE +ET PH +ID 6738 +TI 1771360833.073479034 +CC NStripHits 2 +PE 59.2853 +PP 4.00408 -1.16835 -2.67889 +PW 0 +SE +ET PH +ID 6739 +TI 1771360833.073627584 +CC NStripHits 2 +PE 79.2295 +PP 0.861109 0.228712 -1.51483 +PW 0 +SE +ET UN +ID 6740 +TI 1771360833.073837717 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6741 +TI 1771360833.077446634 +CC NStripHits 2 +PE 81.2128 +PP 2.4908 -0.0550442 -3.37733 +PW 0 +SE +ET PH +ID 6742 +TI 1771360833.077707851 +CC NStripHits 4 +PE 133.631 +PP -0.652172 -0.996414 -4.42498 +PW 0 +SE +ET PH +ID 6743 +TI 1771360833.081091584 +CC NStripHits 2 +PE 80.6077 +PP 0.0462656 0.363218 1.04611 +PW 0 +SE +ET CO +ID 6744 +TI 1771360833.081611368 +CC NStripHits 6 +PQ 0.478245 +SQ 2 +CT 0 1 +TL 1 +TE 121.082 +CE 232.67 1.24972 121.082 1.17188 +CD 1.90877 -0.509628 0.813297 0.0336036 0.0233722 0.0336036 3.53845 -0.94667 1.86095 0.0336036 0.0196318 0.0336036 0 0 0 0 0 0 +LA 1.98606 +SE +ET PH +ID 6745 +TI 1771360833.082126818 +CC NStripHits 4 +PE 276.988 +PP 0.511891 -0.24561 -2.09686 +PW 0 +SE +ET PH +ID 6746 +TI 1771360833.083272301 +CC NStripHits 2 +PE 39.0966 +PP 4.23689 0.380667 1.16252 +PW 0 +SE +ID 6747 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6748 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.570180) +BD GR Veto +PQ +SE +ET UN +ID 6749 +TI 1771360833.084052584 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.0695 +SE +ID 6750 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.752938) +BD GR Veto +PQ +SE +ET UN +ID 6751 +TI 1771360833.085074801 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 300.779 +SE +ET UN +ID 6752 +TI 1771360833.085288468 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6753 +TI 1771360833.086312168 +CC NStripHits 2 +PE 97.1088 +PP 2.6072 -0.33116 -3.84295 +PW 0 +SE +ET PH +ID 6754 +TI 1771360833.087485951 +CC NStripHits 2 +PE 80.2562 +PP 1.44314 0.303064 -3.84295 +PW 0 +SE +ET PH +ID 6755 +TI 1771360833.089535518 +CC NStripHits 2 +PE 81.4084 +PP 3.18923 0.378676 1.39533 +PW 0 +SE +ET UN +ID 6756 +TI 1771360833.091095918 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6757 +TI 1771360833.091377751 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 96.0258 +SE +ET PH +ID 6758 +TI 1771360833.092588884 +CC NStripHits 2 +PE 83.3468 +PP 3.42205 -1.156 1.74455 +PW 0 +SE +ET PH +ID 6759 +TI 1771360833.094652301 +CC NStripHits 6 +PE 356.051 +PP -1.93264 -0.797024 2.21017 +PW 0 +SE +ET PH +ID 6760 +TI 1771360833.095551601 +CC NStripHits 2 +PE 198.012 +PP 3.77127 -0.535146 2.32658 +PW 0 +SE +ID 6761 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.542219) +BD GR Veto +PQ 0.166257 +SE +ET UN +ID 6762 +TI 1771360833.099331184 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6763 +TI 1771360833.101057018 +CC NStripHits 3 +PE 356.164 +PP -1.69983 -0.0728706 -0.234359 +PW 0 +SE +ET PH +ID 6764 +TI 1771360833.101781251 +CC NStripHits 3 +PE 81.9931 +PP 2.02517 0.120086 0.114859 +PW 0 +SE +ET PH +ID 6765 +TI 1771360833.102974985 +CC NStripHits 2 +PE 81.7803 +PP 1.21033 0.132726 -2.09686 +PW 0 +SE +ET PH +ID 6766 +TI 1771360833.103755618 +CC NStripHits 2 +PE 80.4492 +PP -0.419359 -0.0396174 0.929703 +PW 0 +SE +ET UN +ID 6767 +TI 1771360833.104065185 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6218 +SE +ET PH +ID 6768 +TI 1771360833.105698168 +CC NStripHits 2 +PE 30.5541 +PP -0.419359 -0.550257 0.114859 +PW 0 +SE +ID 6769 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.383560) +BD GR Veto +PQ 9.98319 +SE +ET PH +ID 6770 +TI 1771360833.108499785 +CC NStripHits 2 +PE 77.2715 +PP -0.535766 -0.368522 1.74455 +PW 0 +SE +ET PH +ID 6771 +TI 1771360833.109738168 +CC NStripHits 2 +PE 81.0111 +PP 2.84002 0.120601 -0.583578 +PW 0 +SE +ET UN +ID 6772 +TI 1771360833.109865701 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.8122 +SE +ET UN +ID 6773 +TI 1771360833.112284985 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.1504 +SE +ET UN +ID 6774 +TI 1771360833.114649501 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6775 +TI 1771360833.115873051 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.6641 +SE +ET PH +ID 6776 +TI 1771360833.117609635 +CC NStripHits 2 +PE 63.7287 +PP -1.58342 -1.1759 -3.02811 +PW 0 +SE +ET PH +ID 6777 +TI 1771360833.118298401 +CC NStripHits 2 +PE 22.2495 +PP -0.768578 -0.528099 2.44298 +PW 0 +SE +ID 6778 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 730.361721) +BD GR Veto +PQ 0.160118 +SE +ET UN +ID 6779 +TI 1771360833.120070052 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 6780 +TI 1771360833.121821835 +CC NStripHits 4 +PQ 0.193121 +SQ 2 +CT 0 1 +TL 1 +TE 62.1099 +CE 145.64 0.982294 62.1099 0.984475 +CD 0.279078 0.0953608 2.21017 0.0336036 0.0288218 0.0336036 -1.35061 0.28628 -0.117953 0.0336036 0.0411102 0.0336036 0 0 0 0 0 0 +LA 2.84824 +SE +ET UN +ID 6781 +TI 1771360833.122170618 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 297.462 +SE +ET PH +ID 6782 +TI 1771360833.127193235 +CC NStripHits 3 +PE 219.851 +PP 2.4908 -0.205489 2.21017 +PW 0 +SE +ID 6783 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.655517) +BD GR Veto +PQ 0.0461642 +SE +ET PH +ID 6784 +TI 1771360833.128818585 +CC NStripHits 3 +PE 160.244 +PP 2.14158 -0.138172 -1.98045 +PW 0 +SE +ET UN +ID 6785 +TI 1771360833.129112168 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.8036 +SE +ET PH +ID 6786 +TI 1771360833.129596535 +CC NStripHits 4 +PE 232.16 +PP -1.69983 0.0228389 -1.74764 +PW 0 +SE +ET PH +ID 6787 +TI 1771360833.130965968 +CC NStripHits 3 +PE 92.1856 +PP 2.4908 -0.989634 1.51173 +PW 0 +SE +ID 6788 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.790206) +QA StripPairing (GR Hit: Detector ID 0 and Energy 245.851998) +BD GR Veto +PQ 0.898587 +SE +ET PH +ID 6789 +TI 1771360833.131834218 +CC NStripHits 2 +PE 46.3258 +PP 3.18923 0.355852 1.39533 +PW 0 +SE +ID 6790 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.241070) +BD GR Veto +PQ 0.00965108 +SE +ET CO +ID 6791 +TI 1771360833.133621635 +CC NStripHits 5 +PQ 3.25902 +SQ 2 +CT 0 1 +TL 1 +TE 63.3071 +CE 183.043 1.02661 63.3071 2.05344 +CD -0.652172 -0.721672 -3.61014 0.0336036 0.0220207 0.0336036 -0.186547 -1.04068 -3.49373 0.0336036 0.0198281 0.0336036 0 0 0 0 0 0 +LA 0.576302 +SE +ET UN +ID 6792 +TI 1771360833.134218318 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.7224 +SE +ET UN +ID 6793 +TI 1771360833.134545368 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4679 +SE +ET UN +ID 6794 +TI 1771360833.136438135 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 170.808 +SE +ID 6795 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 87.585496) +BD GR Veto +PQ 0.141933 +SE +ET CO +ID 6796 +TI 1771360833.138815002 +CC NStripHits 4 +PQ 312.606 +SQ 2 +CT 0.511027 0.488973 +TL 1 +TE 182.606 +CE 174.941 1.48795 182.606 1.07505 +CD 1.32673 0.0430074 -1.63123 0.0336036 0.0280911 0.0336036 -0.186547 -0.0370584 -0.816391 0.0336036 0.0273562 0.0336036 0 0 0 0 0 0 +LA 1.72058 +SE +ID 6797 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.313381) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.444489)) (GR Hit: Detector ID 0 and Energy 206.105264) +BD GR Veto +PQ 0.00289371 +SE +ET UN +ID 6798 +TI 1771360833.139705002 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.8055 +SE +ET PH +ID 6799 +TI 1771360833.140748269 +CC NStripHits 2 +PE 51.4402 +PP 1.09392 0.348055 1.39533 +PW 0 +SE +ET PH +ID 6800 +TI 1771360833.144392819 +CC NStripHits 2 +PE 143.872 +PP 1.09392 -1.08139 -3.02811 +PW 0 +SE +ET PH +ID 6801 +TI 1771360833.145084452 +CC NStripHits 2 +PE 78.0996 +PP -2.9803 0.148086 1.16252 +PW 0 +SE +ET UN +ID 6802 +TI 1771360833.146339885 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6803 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 303.034591) +BD GR Veto +PQ 0.279409 +SE +ET PH +ID 6804 +TI 1771360833.146928019 +CC NStripHits 3 +PE 115.916 +PP -2.74748 0.358683 2.21017 +PW 0 +SE +ET PH +ID 6805 +TI 1771360833.147869785 +CC NStripHits 3 +PE 218.544 +PP -1.46702 0.248936 -3.26092 +PW 0 +SE +ID 6806 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.369981) (Strip hit removed with energy 10.823395) +BD GR Veto +PQ 2.80208 +SE +ET PH +ID 6807 +TI 1771360833.150282935 +CC NStripHits 2 +PE 63.4458 +PP 3.88767 -1.1561 -4.07577 +PW 0 +SE +ID 6808 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.709156) +BD GR Veto +PQ 1.15341 +SE +ID 6809 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 41.944848)) +BD GR Veto +PQ 0.773182 +SE +ET UN +ID 6810 +TI 1771360833.151597469 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.5523 +SE +ET UN +ID 6811 +TI 1771360833.154241635 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.589 +SE +ID 6812 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.403190) +BD GR Veto +PQ 0.152882 +SE +ET PH +ID 6813 +TI 1771360833.155437585 +CC NStripHits 2 +PE 68.3988 +PP 3.77127 -0.0252796 -3.72655 +PW 0 +SE +ID 6814 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.691003) +BD GR Veto +PQ 0.850426 +SE +ID 6815 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.651654) +BD GR Veto +PQ 0.162121 +SE +ET UN +ID 6816 +TI 1771360833.156268869 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 6817 +TI 1771360833.157835519 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6818 +TI 1771360833.161463936 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 329.774 +SE +ID 6819 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.496906) +BD GR Veto +PQ 0.153817 +SE +ET UN +ID 6820 +TI 1771360833.163639752 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.1901 +SE +ID 6821 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6822 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (174.968061)) (GR Hit: Detector ID 0 and Energy 355.491445) +BD GR Veto +PQ 174.968 +SE +ET UN +ID 6823 +TI 1771360833.166711002 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.0754 +SE +ET UN +ID 6824 +TI 1771360833.166917252 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7779 +SE +ET CO +ID 6825 +TI 1771360833.167280536 +CC NStripHits 4 +PQ 0.884586 +SQ 2 +CT 0.513996 0.486004 +TL 1 +TE 179.37 +CE 157.349 1.02987 179.37 1.00994 +CD 2.02517 -1.02004 1.97736 0.0336036 0.0195701 0.0336036 0.977516 -0.437702 1.62814 0.0336036 0.0240567 0.0336036 0 0 0 0 0 0 +LA 1.24846 +SE +ET PH +ID 6826 +TI 1771360833.168571386 +CC NStripHits 4 +PE 172.8 +PP 0.279078 -1.07338 -4.6578 +PW 0 +SE +ET PH +ID 6827 +TI 1771360833.170086152 +CC NStripHits 2 +PE 29.9609 +PP -1.93264 -0.0973603 -3.84295 +PW 0 +SE +ET PH +ID 6828 +TI 1771360833.170408652 +CC NStripHits 3 +PE 168.762 +PP -1.93264 -1.04973 -1.63123 +PW 0 +SE +ID 6829 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.636679) +BD GR Veto +PQ 0.303331 +SE +ET PH +ID 6830 +TI 1771360833.174739102 +CC NStripHits 3 +PE 80.0932 +PP -2.04905 0.357786 -4.19217 +PW 0 +SE +ET PH +ID 6831 +TI 1771360833.175699202 +CC NStripHits 2 +PE 30.7957 +PP 4.12048 0.0961468 1.97736 +PW 0 +SE +ET UN +ID 6832 +TI 1771360833.180431903 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 274.785 +SE +ET UN +ID 6833 +TI 1771360833.180724319 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6919 +SE +ET UN +ID 6834 +TI 1771360833.181762636 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.52 +SE +ID 6835 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6836 +TI 1771360833.184133586 +CC NStripHits 3 +PE 271.556 +PP 0.628297 -0.29343 -1.86405 +PW 0 +SE +ET PH +ID 6837 +TI 1771360833.184843603 +CC NStripHits 2 +PE 130.555 +PP 4.12048 0.368744 1.86095 +PW 0 +SE +ET PH +ID 6838 +TI 1771360833.185270436 +CC NStripHits 2 +PE 29.8964 +PP -1.93264 -0.273724 -0.583578 +PW 0 +SE +ID 6839 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.664792) (Strip hit removed with energy 16.378851) +QA StripPairing (GR Hit: Detector ID 0 and Energy 159.998645) +BD GR Veto +PQ 0.306239 +SE +ET CO +ID 6840 +TI 1771360833.186646719 +CC NStripHits 4 +PQ 0.173369 +SQ 2 +CT 0.557357 0.442643 +TL 1 +TE 198.468 +CE 158.53 1.00456 198.468 1.02288 +CD 2.25798 -0.766409 0.114859 0.0336036 0.0213985 0.0336036 2.37439 -0.498737 -0.00154687 0.0336036 0.0234606 0.0336036 0 0 0 0 0 0 +LA 0.314245 +SE +ID 6841 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (66.269309)) (GR Hit: Detector ID 0 and Energy 94.263303) +BD GR Veto +PQ 66.2693 +SE +ET PH +ID 6842 +TI 1771360833.187999469 +CC NStripHits 3 +PE 120.056 +PP 0.744703 -0.968532 -1.51483 +PW 0 +SE +ET PH +ID 6843 +TI 1771360833.188247803 +CC NStripHits 2 +PE 222.033 +PP 4.12048 -0.308281 0.696891 +PW 0 +SE +ET UN +ID 6844 +TI 1771360833.189265569 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2876 +SE +ET UN +ID 6845 +TI 1771360833.190148769 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.4516 +SE +ET UN +ID 6846 +TI 1771360833.191047303 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 199.03 +SE +ET PH +ID 6847 +TI 1771360833.191631469 +CC NStripHits 2 +PE 81.2656 +PP -1.1178 0.251355 2.32658 +PW 0 +SE +ET UN +ID 6848 +TI 1771360833.191735869 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 140.111 +SE +ET UN +ID 6849 +TI 1771360833.192389286 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 52.7232 +SE +ID 6850 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ET UN +ID 6851 +TI 1771360833.193757853 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6852 +TI 1771360833.194843419 +CC NStripHits 2 +PE 124.296 +PP -1.58342 0.178789 -1.63123 +PW 0 +SE +ET PH +ID 6853 +TI 1771360833.196991636 +CC NStripHits 2 +PE 81.4975 +PP -2.04905 0.374012 -2.44608 +PW 0 +SE +ET PH +ID 6854 +TI 1771360833.197331053 +CC NStripHits 2 +PE 135.357 +PP 0.511891 -0.160523 -4.6578 +PW 0 +SE +ET PH +ID 6855 +TI 1771360833.198335319 +CC NStripHits 2 +PE 57.5887 +PP -1.81623 0.312794 -1.98045 +PW 0 +SE +ET UN +ID 6856 +TI 1771360833.198687819 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.8335 +SE +ET PH +ID 6857 +TI 1771360833.199639819 +CC NStripHits 2 +PE 76.1623 +PP -0.768578 0.368687 0.696891 +PW 0 +SE +ET PH +ID 6858 +TI 1771360833.200480070 +CC NStripHits 2 +PE 66.4998 +PP 0.977516 -0.0283795 2.21017 +PW 0 +SE +ET PH +ID 6859 +TI 1771360833.201565703 +CC NStripHits 2 +PE 142.747 +PP 0.279078 -1.1711 -4.54139 +PW 0 +SE +ET PH +ID 6860 +TI 1771360833.204099570 +CC NStripHits 2 +PE 150.926 +PP -0.302953 -0.481183 1.97736 +PW 0 +SE +ET UN +ID 6861 +TI 1771360833.204719803 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 6862 +TI 1771360833.205581020 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 6863 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 357.368055) +BD GR Veto +PQ 0.156886 +SE +ID 6864 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.204722) +BD GR Veto +PQ 0.0234732 +SE +ET PH +ID 6865 +TI 1771360833.211320870 +CC NStripHits 2 +PE 46.4291 +PP 4.12048 -0.989432 0.347672 +PW 0 +SE +ET PH +ID 6866 +TI 1771360833.214064103 +CC NStripHits 2 +PE 62.8637 +PP -1.2342 0.364944 -2.56248 +PW 0 +SE +ET CO +ID 6867 +TI 1771360833.214971553 +CC NStripHits 6 +PQ 17.3411 +SQ 2 +CT 0 1 +TL 1 +TE 114.209 +CE 143.22 1.95786 114.209 1.15318 +CD 1.90877 0.0159573 2.09377 0.0336036 0.0277879 0.0336036 1.55955 -0.70883 2.32658 0.0336036 0.0221578 0.0336036 0 0 0 0 0 0 +LA 0.837539 +SE +ID 6868 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.559048) +BD GR Veto +PQ 3.29837 +SE +ET PH +ID 6869 +TI 1771360833.215608820 +CC NStripHits 5 +PE 230.838 +PP -0.0701406 -0.0493593 -0.00154687 +PW 0 +SE +ID 6870 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.180918) +BD GR Veto +PQ 0.0400868 +SE +ID 6871 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.825710) +BD GR Veto +PQ 1.05583 +SE +ET PH +ID 6872 +TI 1771360833.218761486 +CC NStripHits 3 +PE 304.161 +PP 3.07283 -0.725276 -3.37733 +PW 0 +SE +ET UN +ID 6873 +TI 1771360833.219119186 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.1429 +SE +ET PH +ID 6874 +TI 1771360833.219535636 +CC NStripHits 2 +PE 81.2214 +PP 3.18923 0.35015 -3.49373 +PW 0 +SE +ID 6875 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 137.569819) +BD GR Veto +PQ 0.0242132 +SE +ET PH +ID 6876 +TI 1771360833.220676837 +CC NStripHits 2 +PE 79.6456 +PP -1.1178 0.377793 -1.28202 +PW 0 +SE +ET UN +ID 6877 +TI 1771360833.221943570 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.7613 +SE +ET PH +ID 6878 +TI 1771360833.223102620 +CC NStripHits 2 +PE 66.5187 +PP 0.162672 0.369764 2.6758 +PW 0 +SE +ET UN +ID 6879 +TI 1771360833.223631003 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5901 +SE +ET UN +ID 6880 +TI 1771360833.224534153 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 6881 +TI 1771360833.225045703 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7233 +SE +ET PH +ID 6882 +TI 1771360833.225748170 +CC NStripHits 2 +PE 54.2083 +PP -1.58342 0.362372 -0.816391 +PW 0 +SE +ID 6883 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.816013) +QA StripPairing (Best reduced chi square is not below 25 (96.928502)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 80.075327)) (GR Hit: Detector ID 0 and Energy 141.163298) +BD GR Veto +PQ 96.9285 +SE +ET CO +ID 6884 +TI 1771360833.228462070 +CC NStripHits 4 +PQ 0.482744 +SQ 2 +CT 0 1 +TL 1 +TE 67.0022 +CE 209.103 1.01995 67.0022 1.006 +CD -0.768578 -0.204533 -0.350766 0.0336036 0.0258259 0.0336036 -0.884984 -0.16407 -0.583578 0.0336036 0.0261461 0.0336036 0 0 0 0 0 0 +LA 0.263418 +SE +ID 6885 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.355173) (Strip hit removed with energy 16.073802) +QA StripPairing (GR Hit: Detector ID 0 and Energy 128.506734) +BD GR Veto +PQ 0.0998411 +SE +ID 6886 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 127.381406) +BD GR Veto +PQ 1.29752 +SE +ET PH +ID 6887 +TI 1771360833.233809220 +CC NStripHits 3 +PE 206.449 +PP -2.86389 0.0619876 -0.583578 +PW 0 +SE +ET UN +ID 6888 +TI 1771360833.233872403 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 6889 +TI 1771360833.234328920 +CC NStripHits 4 +PQ 1.42919 +SQ 2 +CT 0 1 +TL 1 +TE 139.963 +CE 217.224 1.04393 139.963 1.04372 +CD 4.12048 0.0326191 0.231266 0.0336036 0.0279687 0.0336036 2.95642 -0.329742 -1.51483 0.0336036 0.0249885 0.0336036 0 0 0 0 0 0 +LA 2.1296 +SE +ET UN +ID 6890 +TI 1771360833.235682503 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.2971 +SE +ID 6891 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.021061) +BD GR Veto +PQ 0.000499991 +SE +ET UN +ID 6892 +TI 1771360833.236371120 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.0572 +SE +ID 6893 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.315540) +BD GR Veto +PQ 7.00381 +SE +ID 6894 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.356905) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.858475)) +BD GR Veto +PQ 2.06989 +SE +ET UN +ID 6895 +TI 1771360833.238571853 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 68.4629 +SE +ID 6896 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.353693) +BD GR Veto +PQ 0.0333985 +SE +ET PH +ID 6897 +TI 1771360833.238850837 +CC NStripHits 2 +PE 72.027 +PP -2.86389 0.357159 -0.816391 +PW 0 +SE +ET UN +ID 6898 +TI 1771360833.239005453 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 253.357 +SE +ET PH +ID 6899 +TI 1771360833.239720487 +CC NStripHits 2 +PE 82.4914 +PP -1.2342 0.378354 -3.61014 +PW 0 +SE +ID 6900 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.160507) +BD GR Veto +PQ 0.205701 +SE +ET PH +ID 6901 +TI 1771360833.242017970 +CC NStripHits 2 +PE 81.8597 +PP 1.32673 0.329928 0.231266 +PW 0 +SE +ET UN +ID 6902 +TI 1771360833.242897004 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.061 +SE +ET PH +ID 6903 +TI 1771360833.244236970 +CC NStripHits 2 +PE 33.0722 +PP -2.9803 -0.406264 -0.583578 +PW 0 +SE +ET UN +ID 6904 +TI 1771360833.246148854 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 22.7822 +SE +ET UN +ID 6905 +TI 1771360833.246583104 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6906 +TI 1771360833.247096904 +CC NStripHits 2 +PE 147.854 +PP -2.63108 0.130676 -3.02811 +PW 0 +SE +ET UN +ID 6907 +TI 1771360833.248463220 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.6311 +SE +ID 6908 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.325928) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 89.521257)) +BD GR Veto +PQ 0.0126876 +SE +ET UN +ID 6909 +TI 1771360833.251666587 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 157.84 +SE +ET UN +ID 6910 +TI 1771360833.253322837 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9924 +SE +ET UN +ID 6911 +TI 1771360833.254493287 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.7444 +SE +ET PH +ID 6912 +TI 1771360833.255092570 +CC NStripHits 2 +PE 123.314 +PP -0.302953 -0.377299 -0.467172 +PW 0 +SE +ET PH +ID 6913 +TI 1771360833.255998254 +CC NStripHits 4 +PE 356.053 +PP 4.00408 -0.566004 -4.07577 +PW 0 +SE +ET PH +ID 6914 +TI 1771360833.256565204 +CC NStripHits 2 +PE 79.9698 +PP -1.69983 0.33536 -3.49373 +PW 0 +SE +ID 6915 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6916 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.024425) +BD GR Veto +PQ 0.581658 +SE +ET PH +ID 6917 +TI 1771360833.262037487 +CC NStripHits 2 +PE 99.4622 +PP 2.37439 -1.13907 -1.16561 +PW 0 +SE +ET PH +ID 6918 +TI 1771360833.265839304 +CC NStripHits 2 +PE 229.608 +PP 3.77127 0.366121 -4.30858 +PW 0 +SE +ET PH +ID 6919 +TI 1771360833.266650787 +CC NStripHits 2 +PE 53.5846 +PP 2.14158 0.360113 1.86095 +PW 0 +SE +ET PH +ID 6920 +TI 1771360833.268386187 +CC NStripHits 3 +PE 148.428 +PP -0.419359 -1.12954 -2.9117 +PW 0 +SE +ID 6921 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.537582) +BD GR Veto +PQ 0.0587292 +SE +ET PH +ID 6922 +TI 1771360833.271550137 +CC NStripHits 2 +PE 77.7355 +PP 0.861109 0.376247 -2.44608 +PW 0 +SE +ID 6923 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 110.299716) +BD GR Veto +PQ 0.000165517 +SE +ET PH +ID 6924 +TI 1771360833.272136404 +CC NStripHits 2 +PE 47.4707 +PP 1.55955 0.135434 0.464078 +PW 0 +SE +ET UN +ID 6925 +TI 1771360833.272345937 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.5072 +SE +ET PH +ID 6926 +TI 1771360833.277320454 +CC NStripHits 2 +PE 88.6992 +PP 4.12048 0.190581 -0.816391 +PW 0 +SE +ET PH +ID 6927 +TI 1771360833.277396687 +CC NStripHits 3 +PE 149.833 +PP -1.81623 -0.64139 -1.39842 +PW 0 +SE +ET PH +ID 6928 +TI 1771360833.279189121 +CC NStripHits 3 +PE 187.168 +PP 0.511891 -0.643658 2.09377 +PW 0 +SE +ET UN +ID 6929 +TI 1771360833.280221738 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 352.083 +SE +ET UN +ID 6930 +TI 1771360833.280654438 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8993 +SE +ET PH +ID 6931 +TI 1771360833.281004821 +CC NStripHits 3 +PE 82.888 +PP -0.652172 -1.08766 -3.14452 +PW 0 +SE +ET PH +ID 6932 +TI 1771360833.281163021 +CC NStripHits 3 +PE 198.787 +PP 4.3533 0.294519 -2.56248 +PW 0 +SE +ID 6933 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (46.566511)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 51.310029)) (GR Hit: Detector ID 0 and Energy 155.828331) +BD GR Veto +PQ 46.5665 +SE +ID 6934 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6935 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.715845) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 55.279113)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 97.787145) (GR Hit: Detector ID 0 and Energy 97.738850) +BD GR Veto +PQ 5.64088 +SE +ID 6936 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 6937 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6938 +TI 1771360833.284427254 +CC NStripHits 4 +PE 137.75 +PP 4.00408 0.247161 -3.61014 +PW 0 +SE +ID 6939 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.647454) +BD GR Veto +PQ +SE +ID 6940 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.799009) +BD GR Veto +PQ 0.0167512 +SE +ET UN +ID 6941 +TI 1771360833.286960938 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.4206 +SE +ET PH +ID 6942 +TI 1771360833.287642621 +CC NStripHits 2 +PE 65.3188 +PP -0.884984 0.304692 -2.56248 +PW 0 +SE +ET PH +ID 6943 +TI 1771360833.288473388 +CC NStripHits 2 +PE 159.957 +PP -2.63108 -0.0545974 -3.49373 +PW 0 +SE +ET PH +ID 6944 +TI 1771360833.288772654 +CC NStripHits 2 +PE 69.4941 +PP 2.6072 -1.17279 0.464078 +PW 0 +SE +ET UN +ID 6945 +TI 1771360833.290271638 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8363 +SE +ET PH +ID 6946 +TI 1771360833.290970354 +CC NStripHits 4 +PE 146.896 +PP 1.90877 0.130734 1.86095 +PW 0 +SE +ID 6947 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 54.158504) +BD GR Veto +PQ 0.0668686 +SE +ID 6948 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (26.499220)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 37.623532)) (GR Hit: Detector ID 0 and Energy 163.688092) (GR Hit: Detector ID 0 and Energy 67.340981) +BD GR Veto +PQ 26.4992 +SE +ID 6949 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.968335) +QA StripPairing (Best reduced chi square is not below 25 (59.460445)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 46.813580)) (GR Hit: Detector ID 0 and Energy 210.910070) +BD GR Veto +PQ 59.4604 +SE +ID 6950 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 154.565083) +BD GR Veto +PQ 0.499506 +SE +ET PH +ID 6951 +TI 1771360833.294509071 +CC NStripHits 2 +PE 63.2339 +PP -1.46702 -1.09228 -3.95936 +PW 0 +SE +ET PH +ID 6952 +TI 1771360833.294626871 +CC NStripHits 2 +PE 30.0532 +PP -1.2342 0.373449 2.6758 +PW 0 +SE +ET UN +ID 6953 +TI 1771360833.294729671 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.9238 +SE +ET PH +ID 6954 +TI 1771360833.295289854 +CC NStripHits 2 +PE 93.6657 +PP 1.79236 -0.632584 0.114859 +PW 0 +SE +ET UN +ID 6955 +TI 1771360833.295527421 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 151.425 +SE +ID 6956 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 3.316546) +QA StripPairing (GR Hit: Detector ID 0 and Energy 142.055343) +BD GR Veto +PQ 13.8664 +SE +ET UN +ID 6957 +TI 1771360833.297129438 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6958 +TI 1771360833.297370421 +CC NStripHits 2 +PE 227.144 +PP -0.186547 -0.334415 -1.28202 +PW 0 +SE +ET UN +ID 6959 +TI 1771360833.300027505 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.9458 +SE +ET UN +ID 6960 +TI 1771360833.300146521 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6961 +TI 1771360833.300621821 +CC NStripHits 2 +PE 68.0384 +PP 3.30564 0.360589 -3.49373 +PW 0 +SE +ET UN +ID 6962 +TI 1771360833.300726621 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9273 +SE +ID 6963 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.350752) +BD GR Veto +PQ 0.104857 +SE +ID 6964 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.699064) +BD GR Veto +PQ 0.00307465 +SE +ET PH +ID 6965 +TI 1771360833.303975738 +CC NStripHits 3 +PE 278.964 +PP -0.884984 0.234966 0.929703 +PW 0 +SE +ET PH +ID 6966 +TI 1771360833.305016188 +CC NStripHits 2 +PE 79.7167 +PP 1.09392 -0.0333963 -4.54139 +PW 0 +SE +ET UN +ID 6967 +TI 1771360833.306184905 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.1001 +SE +ID 6968 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 171.672757) +BD GR Veto +PQ 0.577213 +SE +ID 6969 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.310683) +BD GR Veto +PQ 0.0627373 +SE +ET UN +ID 6970 +TI 1771360833.307477838 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 48.5289 +SE +ET PH +ID 6971 +TI 1771360833.308789771 +CC NStripHits 3 +PE 193.49 +PP 2.4908 0.170852 0.813297 +PW 0 +SE +ET CO +ID 6972 +TI 1771360833.308886538 +CC NStripHits 4 +PQ 0.13481 +SQ 2 +CT 0 1 +TL 1 +TE 118.141 +CE 177.976 1.0708 118.141 1.0034 +CD -0.302953 0.379306 -2.32967 0.0336036 0.0162065 0.0336036 3.07283 -0.306438 -1.63123 0.0336036 0.0251355 0.0336036 0 0 0 0 0 0 +LA 3.51482 +SE +ET UN +ID 6973 +TI 1771360833.309313588 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.8688 +SE +ET CO +ID 6974 +TI 1771360833.310425555 +CC NStripHits 4 +PQ 3.10215 +SQ 2 +CT 0 1 +TL 1 +TE 45.0831 +CE 168.178 1.42407 45.0831 1.0906 +CD 0.628297 0.316549 -0.350766 0.0336036 0.0412153 0.0336036 -0.0701406 -0.103108 0.231266 0.0336036 0.0267073 0.0336036 0 0 0 0 0 0 +LA 1.00134 +SE +ET UN +ID 6975 +TI 1771360833.313259505 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.5907 +SE +ET PH +ID 6976 +TI 1771360833.314228305 +CC NStripHits 2 +PE 61.0198 +PP 0.395484 0.34071 -3.14452 +PW 0 +SE +ID 6977 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 51.638395) +BD GR Veto +PQ 0.00400963 +SE +ET CO +ID 6978 +TI 1771360833.314537238 +CC NStripHits 5 +PQ 4.52253 +SQ 2 +CT 0 1 +TL 1 +TE 55.0558 +CE 146.546 1.41247 55.0558 0.971859 +CD -0.768578 0.0606704 0.464078 0.0336036 0.0283074 0.0336036 -1.1178 -0.329534 0.813297 0.0336036 0.0249896 0.0336036 0 0 0 0 0 0 +LA 0.62942 +SE +ET PH +ID 6979 +TI 1771360833.314623155 +CC NStripHits 2 +PE 79.7007 +PP 3.65486 0.328676 -4.07577 +PW 0 +SE +ET UN +ID 6980 +TI 1771360833.318135088 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.1397 +SE +ET PH +ID 6981 +TI 1771360833.318905455 +CC NStripHits 2 +PE 114.551 +PP -1.46702 -0.675963 -3.61014 +PW 0 +SE +ET UN +ID 6982 +TI 1771360833.319278038 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6983 +TI 1771360833.320365772 +CC NStripHits 2 +PE 31.2688 +PP 0.395484 0.125554 -2.44608 +PW 0 +SE +ID 6984 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.388583) +BD GR Veto +PQ 0.0619718 +SE +ID 6985 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.835072) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 40.225047)) (GR Hit: Detector ID 0 and Energy 94.490140) +BD GR Veto +PQ 4.47591 +SE +ET PH +ID 6986 +TI 1771360833.322221505 +CC NStripHits 2 +PE 127.301 +PP 2.72361 -1.16329 2.09377 +PW 0 +SE +ET PH +ID 6987 +TI 1771360833.323589372 +CC NStripHits 2 +PE 82.2287 +PP 0.395484 0.302586 2.09377 +PW 0 +SE +ET PH +ID 6988 +TI 1771360833.324097272 +CC NStripHits 3 +PE 100.434 +PP 0.628297 -1.11863 -4.07577 +PW 0 +SE +ID 6989 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 260.097710) +BD GR Veto +PQ 0.346542 +SE +ID 6990 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.792840) +BD GR Veto +PQ 0.413625 +SE +ET PH +ID 6991 +TI 1771360833.330151972 +CC NStripHits 2 +PE 54.8237 +PP 0.628297 0.36648 -1.51483 +PW 0 +SE +ET PH +ID 6992 +TI 1771360833.330569638 +CC NStripHits 2 +PE 65.4038 +PP -2.16545 -0.534027 0.231266 +PW 0 +SE +ET UN +ID 6993 +TI 1771360833.331194155 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3128 +SE +ET PH +ID 6994 +TI 1771360833.332117105 +CC NStripHits 2 +PE 79.1241 +PP 1.21033 0.362153 -3.72655 +PW 0 +SE +ET PH +ID 6995 +TI 1771360833.333489455 +CC NStripHits 2 +PE 28.8934 +PP -1.69983 -0.134363 -1.86405 +PW 0 +SE +ET CO +ID 6996 +TI 1771360833.334836638 +CC NStripHits 7 +PQ 0.262875 +SQ 3 +CT 0.0140777 0.348248 +TL 1 +TE 116.941 +CE 239.442 1.53277 116.941 1.02712 +CD -1.35061 -0.0403426 -0.467172 0.0336036 0.0273109 0.0336036 -0.186547 -0.529403 0.231266 0.0336036 0.0232516 0.0336036 0 0 0 0 0 0 +LA 0.555557 +SE +ID 6997 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.223976) +QA StripPairing (Best reduced chi square is not below 25 (88.946927)) +BD GR Veto +PQ 88.9469 +SE +ET PH +ID 6998 +TI 1771360833.340042972 +CC NStripHits 3 +PE 81.6109 +PP -1.1178 0.169773 -2.67889 +PW 0 +SE +ET PH +ID 6999 +TI 1771360833.341116905 +CC NStripHits 3 +PE 355.225 +PP 3.65486 -0.0788551 -1.28202 +PW 0 +SE +ET UN +ID 7000 +TI 1771360833.341313372 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.2689 +SE +ET PH +ID 7001 +TI 1771360833.342087589 +CC NStripHits 2 +PE 80.4681 +PP -1.46702 -0.179588 -3.72655 +PW 0 +SE +ET PH +ID 7002 +TI 1771360833.343119222 +CC NStripHits 3 +PE 355.317 +PP 1.55955 0.146362 1.04611 +PW 0 +SE +ET PH +ID 7003 +TI 1771360833.343345055 +CC NStripHits 2 +PE 80.1638 +PP -1.58342 0.358989 1.62814 +PW 0 +SE +ID 7004 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.161448) +BD GR Veto +PQ 0.838139 +SE +ET CO +ID 7005 +TI 1771360833.347023139 +CC NStripHits 6 +PQ 1.20467 +SQ 3 +CT 0.265141 0.603058 +TL 1 +TE 198.413 +CE 137.481 1.43025 198.413 1.13708 +CD 0.744703 -0.313984 -2.44608 0.0336036 0.0250822 0.0336036 0.977516 0.377141 -2.67889 0.0336036 0.0177899 0.0336036 0 0 0 0 0 0 +LA 0.765543 +SE +ET PH +ID 7006 +TI 1771360833.347813589 +CC NStripHits 2 +PE 80.3751 +PP 1.32673 0.197028 -1.86405 +PW 0 +SE +ET UN +ID 7007 +TI 1771360833.348570172 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7008 +TI 1771360833.348674022 +CC NStripHits 3 +PE 70.3237 +PP 1.44314 -1.05854 -3.49373 +PW 0 +SE +ET UN +ID 7009 +TI 1771360833.349539772 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 1067.66 +SE +ET UN +ID 7010 +TI 1771360833.350287572 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.3926 +SE +ET PH +ID 7011 +TI 1771360833.350435205 +CC NStripHits 2 +PE 72.0425 +PP 2.4908 0.365123 0.696891 +PW 0 +SE +ET PH +ID 7012 +TI 1771360833.350552389 +CC NStripHits 2 +PE 195.672 +PP 3.53845 -0.0122996 -3.02811 +PW 0 +SE +ET PH +ID 7013 +TI 1771360833.351220222 +CC NStripHits 2 +PE 52.4778 +PP 4.12048 0.377981 1.39533 +PW 0 +SE +ET PH +ID 7014 +TI 1771360833.351346739 +CC NStripHits 2 +PE 80.6493 +PP -2.16545 0.373577 -3.95936 +PW 0 +SE +ET UN +ID 7015 +TI 1771360833.353250822 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 124.534 +SE +ID 7016 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 129.518894) +BD GR Veto +PQ 0.807506 +SE +ET CO +ID 7017 +TI 1771360833.355057639 +CC NStripHits 4 +PQ 4.38713 +SQ 2 +CT 0 1 +TL 1 +TE 69.5961 +CE 285.716 1.05028 69.5961 1.38014 +CD -1.58342 0.378385 -3.84295 0.0336036 0.0168833 0.0336036 -1.93264 0.106357 -3.61014 0.0336036 0.029037 0.0336036 0 0 0 0 0 0 +LA 0.500154 +SE +ET PH +ID 7018 +TI 1771360833.355430222 +CC NStripHits 2 +PE 81.5244 +PP -1.81623 0.368517 1.27892 +PW 0 +SE +ET UN +ID 7019 +TI 1771360833.356342339 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 206.261 +SE +ET PH +ID 7020 +TI 1771360833.356997539 +CC NStripHits 2 +PE 80.0822 +PP 2.37439 0.353433 1.27892 +PW 0 +SE +ET UN +ID 7021 +TI 1771360833.357108655 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.8778 +SE +ET PH +ID 7022 +TI 1771360833.359549639 +CC NStripHits 3 +PE 159.829 +PP 2.6072 -0.849452 -2.44608 +PW 0 +SE +ET PH +ID 7023 +TI 1771360833.360008539 +CC NStripHits 2 +PE 83.6203 +PP 4.3533 0.3551 -2.9117 +PW 0 +SE +ET PH +ID 7024 +TI 1771360833.360412589 +CC NStripHits 2 +PE 29.8843 +PP -2.63108 0.144587 0.464078 +PW 0 +SE +ET UN +ID 7025 +TI 1771360833.363366589 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 159.235 +SE +ID 7026 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 197.632296) +BD GR Veto +PQ 0.123782 +SE +ID 7027 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.583730) +BD GR Veto +PQ 1.76955 +SE +ID 7028 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 154.906620) +BD GR Veto +PQ 0.178596 +SE +ET UN +ID 7029 +TI 1771360833.366582456 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 243.358 +SE +ET PH +ID 7030 +TI 1771360833.366688306 +CC NStripHits 2 +PE 80.4924 +PP 3.18923 0.0778353 1.27892 +PW 0 +SE +ET UN +ID 7031 +TI 1771360833.367481822 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.3384 +SE +ID 7032 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.295053) +BD GR Veto +PQ 0.253016 +SE +ID 7033 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.166514) +BD GR Veto +PQ 2.54668 +SE +ET CO +ID 7034 +TI 1771360833.370681789 +CC NStripHits 5 +PQ 8.92738 +SQ 2 +CT 0 1 +TL 1 +TE 83.1616 +CE 139.006 2.02839 83.1616 1.42753 +CD 1.79236 0.137206 -1.74764 0.0336036 0.0297135 0.0336036 2.02517 0.0158 -1.86405 0.0336036 0.0277864 0.0336036 0 0 0 0 0 0 +LA 0.287213 +SE +ET PH +ID 7035 +TI 1771360833.372199306 +CC NStripHits 2 +PE 70.6619 +PP -0.884984 0.252599 -0.117953 +PW 0 +SE +ET CO +ID 7036 +TI 1771360833.372746722 +CC NStripHits 6 +PQ 10.9463 +SQ 2 +CT 0 1 +TL 1 +TE 162.836 +CE 1095.33 1.66311 162.836 1.50612 +CD 0.395484 -0.545163 -4.19217 0.0336036 0.0231467 0.0336036 -0.186547 -0.281333 -3.95936 0.0336036 0.0252998 0.0336036 0 0 0 0 0 0 +LA 0.680123 +SE +ID 7037 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 54.124825) +BD GR Veto +PQ 0.557015 +SE +ET PH +ID 7038 +TI 1771360833.374193706 +CC NStripHits 2 +PE 257.057 +PP 0.279078 0.341971 -2.21327 +PW 0 +SE +ID 7039 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.017964) (Strip hit removed with energy 10.502155) (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ET PH +ID 7040 +TI 1771360833.375606539 +CC NStripHits 2 +PE 118.526 +PP 2.37439 0.294223 -3.61014 +PW 0 +SE +ET PH +ID 7041 +TI 1771360833.377182339 +CC NStripHits 2 +PE 91.1839 +PP -1.46702 0.360999 -4.54139 +PW 0 +SE +ET PH +ID 7042 +TI 1771360833.377395456 +CC NStripHits 2 +PE 199.584 +PP -1.46702 -0.0344055 2.44298 +PW 0 +SE +ID 7043 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 194.904293) +BD GR Veto +PQ 0.608032 +SE +ET UN +ID 7044 +TI 1771360833.379356189 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 315.251 +SE +ID 7045 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.191048) (Strip hit removed with energy 7.609718) +QA StripPairing (GR Hit: Detector ID 0 and Energy 238.332729) +BD GR Veto +PQ 10.6311 +SE +ET PH +ID 7046 +TI 1771360833.381204823 +CC NStripHits 2 +PE 276.805 +PP 2.02517 -0.949503 0.231266 +PW 0 +SE +ET PH +ID 7047 +TI 1771360833.381311256 +CC NStripHits 2 +PE 30.7466 +PP -1.35061 0.0063295 -0.234359 +PW 0 +SE +ET PH +ID 7048 +TI 1771360833.382554089 +CC NStripHits 2 +PE 27.9089 +PP -0.652172 0.120798 0.347672 +PW 0 +SE +ET PH +ID 7049 +TI 1771360833.383177773 +CC NStripHits 2 +PE 78.6643 +PP -2.86389 0.363516 -0.234359 +PW 0 +SE +ID 7050 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 7051 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 7052 +TI 1771360833.384168789 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 355.407 +SE +ET UN +ID 7053 +TI 1771360833.386356306 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 7054 +TI 1771360833.387083389 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0606 +SE +ET UN +ID 7055 +TI 1771360833.388679873 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1397 +SE +ET PH +ID 7056 +TI 1771360833.389489656 +CC NStripHits 2 +PE 146.032 +PP -0.535766 -0.154711 0.696891 +PW 0 +SE +ET PH +ID 7057 +TI 1771360833.390510039 +CC NStripHits 2 +PE 76.5284 +PP 2.4908 0.204907 1.97736 +PW 0 +SE +ET CO +ID 7058 +TI 1771360833.392428739 +CC NStripHits 6 +PQ 0.715539 +SQ 2 +CT 0.513882 0.486118 +TL 1 +TE 147.789 +CE 154.238 1.03012 147.789 1.41654 +CD -1.81623 -0.586526 -4.42498 0.0336036 0.0228845 0.0336036 -2.16545 0.336385 -4.19217 0.0336036 0.0377395 0.0336036 0 0 0 0 0 0 +LA 1.01386 +SE +ET UN +ID 7059 +TI 1771360833.394423756 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.115 +SE +ET PH +ID 7060 +TI 1771360833.395261156 +CC NStripHits 3 +PE 218.767 +PP -1.69983 0.102066 -4.42498 +PW 0 +SE +ET UN +ID 7061 +TI 1771360833.395624106 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 144.584 +SE +ET PH +ID 7062 +TI 1771360833.396444189 +CC NStripHits 3 +PE 356.055 +PP 0.162672 0.0737052 1.04611 +PW 0 +SE +ET PH +ID 7063 +TI 1771360833.396711223 +CC NStripHits 3 +PE 81.6359 +PP 0.162672 -0.259178 1.86095 +PW 0 +SE +ID 7064 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 358.812263) +BD GR Veto +PQ 0.180147 +SE +ET PH +ID 7065 +TI 1771360833.400162090 +CC NStripHits 2 +PE 80.4512 +PP 3.30564 0.157327 -1.16561 +PW 0 +SE +ET CO +ID 7066 +TI 1771360833.400375373 +CC NStripHits 7 +PQ 0.170722 +SQ 2 +CT 0 1 +TL 1 +TE 123.637 +CE 233.928 1.43517 123.637 1.1863 +CD 0.628297 0.100399 0.231266 0.0336036 0.0289179 0.0336036 1.09392 -0.274263 -0.117953 0.0336036 0.0253377 0.0336036 0 0 0 0 0 0 +LA 0.692192 +SE +ID 7067 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.623116) (Strip hit removed with energy 9.406262) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 43.330432)) (GR Hit: Detector ID 0 and Energy 152.510012) (GR Hit: Detector ID 0 and Energy 118.466320) +BD GR Veto +PQ 21.1404 +SE +ET PH +ID 7068 +TI 1771360833.403400290 +CC NStripHits 2 +PE 159.332 +PP 4.00408 0.17116 -0.234359 +PW 0 +SE +ET PH +ID 7069 +TI 1771360833.406038773 +CC NStripHits 3 +PE 140.361 +PP 0.977516 0.0916957 -3.26092 +PW 0 +SE +ET PH +ID 7070 +TI 1771360833.408015640 +CC NStripHits 3 +PE 106.91 +PP 2.37439 -0.074203 1.27892 +PW 0 +SE +ET UN +ID 7071 +TI 1771360833.409434173 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.519 +SE +ID 7072 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.396264) +BD GR Veto +PQ 0.0497272 +SE +ET PH +ID 7073 +TI 1771360833.410581723 +CC NStripHits 2 +PE 80.4665 +PP 1.90877 0.210982 1.39533 +PW 0 +SE +ID 7074 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (182.236655)) (GR Hit: Detector ID 0 and Energy 139.892466) +BD GR Veto +PQ 182.237 +SE +ET PH +ID 7075 +TI 1771360833.412223890 +CC NStripHits 2 +PE 77.1002 +PP -0.884984 0.375461 -1.63123 +PW 0 +SE +ID 7076 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.265430) +QA StripPairing (GR Hit: Detector ID 0 and Energy 169.176258) (GR Hit: Detector ID 0 and Energy 196.351286) +BD GR Veto +PQ 13.6262 +SE +ET PH +ID 7077 +TI 1771360833.415995623 +CC NStripHits 3 +PE 134.005 +PP -2.51467 -0.0622481 -0.117953 +PW 0 +SE +ID 7078 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 52.344669) +BD GR Veto +PQ 0.868966 +SE +ET UN +ID 7079 +TI 1771360833.421630940 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0587 +SE +ID 7080 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 7081 +TI 1771360833.422837123 +CC NStripHits 2 +PE 83.3174 +PP -0.652172 0.369583 0.929703 +PW 0 +SE +ET UN +ID 7082 +TI 1771360833.422933023 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 7083 +TI 1771360833.423209357 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.1497 +SE +ET PH +ID 7084 +TI 1771360833.424134873 +CC NStripHits 2 +PE 75.0781 +PP -2.86389 0.226183 -1.39842 +PW 0 +SE +ET PH +ID 7085 +TI 1771360833.424352140 +CC NStripHits 2 +PE 200.688 +PP 0.279078 -0.523033 0.696891 +PW 0 +SE +ET UN +ID 7086 +TI 1771360833.424555407 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 7087 +TI 1771360833.430463273 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.9085 +SE +ET UN +ID 7088 +TI 1771360833.431388307 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 7089 +TI 1771360833.432137357 +CC NStripHits 5 +PQ 11.9952 +SQ 2 +CT 0 1 +TL 1 +TE 58.4307 +CE 156.41 1.99515 58.4307 0.980323 +CD 2.37439 -0.835227 1.39533 0.0336036 0.0205303 0.0336036 2.25798 -0.991552 1.51173 0.0336036 0.0195458 0.0336036 0 0 0 0 0 0 +LA 0.227019 +SE +ID 7090 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 7091 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.297371) (Strip hit removed with energy 6.138456) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 183.989887) +BD GR Veto +PQ 3.3072 +SE +ET PH +ID 7092 +TI 1771360833.433371407 +CC NStripHits 2 +PE 80.7464 +PP 0.744703 0.30142 1.27892 +PW 0 +SE +ET PH +ID 7093 +TI 1771360833.434274307 +CC NStripHits 3 +PE 81.425 +PP 1.67595 0.371849 1.27892 +PW 0 +SE +ET PH +ID 7094 +TI 1771360833.436554157 +CC NStripHits 2 +PE 347.491 +PP 2.4908 0.369277 0.580484 +PW 0 +SE +ET UN +ID 7095 +TI 1771360833.436921590 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7096 +TI 1771360833.439480390 +CC NStripHits 2 +PE 78.9992 +PP -0.302953 0.373232 -2.7953 +PW 0 +SE +ET PH +ID 7097 +TI 1771360833.439732373 +CC NStripHits 2 +PE 80.8592 +PP -0.652172 0.335469 -0.583578 +PW 0 +SE +ID 7098 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.647454) +BD GR Veto +PQ +SE +ID 7099 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.454586) +BD GR Veto +PQ 0.138696 +SE +ET UN +ID 7100 +TI 1771360833.442641540 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2466 +SE +ET PH +ID 7101 +TI 1771360833.443167757 +CC NStripHits 2 +PE 80.3032 +PP 3.88767 0.150405 -0.00154687 +PW 0 +SE +ET UN +ID 7102 +TI 1771360833.443296590 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 7103 +TI 1771360833.445098940 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 378.943 +SE +ET PH +ID 7104 +TI 1771360833.446540957 +CC NStripHits 2 +PE 201.292 +PP -0.0701406 0.115066 -3.95936 +PW 0 +SE +ET PH +ID 7105 +TI 1771360833.447356440 +CC NStripHits 2 +PE 119.89 +PP -1.46702 -1.13757 -4.54139 +PW 0 +SE +ET PH +ID 7106 +TI 1771360833.447783207 +CC NStripHits 2 +PE 74.0846 +PP 0.511891 0.318337 -3.84295 +PW 0 +SE +ET PH +ID 7107 +TI 1771360833.448083490 +CC NStripHits 2 +PE 80.6261 +PP -2.9803 0.128166 -1.51483 +PW 0 +SE +ET PH +ID 7108 +TI 1771360833.448569207 +CC NStripHits 2 +PE 73.5436 +PP -0.535766 0.0195476 -0.699984 +PW 0 +SE +ET UN +ID 7109 +TI 1771360833.452181257 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 78.8457 +SE +ET PH +ID 7110 +TI 1771360833.453632590 +CC NStripHits 2 +PE 79.7875 +PP -2.74748 -1.09441 -3.95936 +PW 0 +SE +ET UN +ID 7111 +TI 1771360833.453777240 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 7112 +TI 1771360833.454589140 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 355.538 +SE +ET CO +ID 7113 +TI 1771360833.457404757 +CC NStripHits 7 +PQ 1.3316 +SQ 3 +CT 0.0114548 0.103402 +TL 1 +TE 114.211 +CE 241.25 1.53936 114.211 0.997184 +CD -1.69983 0.332197 -3.02811 0.0336036 0.0387589 0.0336036 0.0462656 -0.479705 -3.61014 0.0336036 0.0236314 0.0336036 0 0 0 0 0 0 +LA 1.54524 +SE +ET PH +ID 7114 +TI 1771360833.458169007 +CC NStripHits 2 +PE 30.7413 +PP 3.18923 0.36323 -3.72655 +PW 0 +SE +ET UN +ID 7115 +TI 1771360833.458489740 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7116 +TI 1771360833.458979890 +CC NStripHits 3 +PE 182.373 +PP 0.395484 -0.635422 -3.49373 +PW 0 +SE +ET PH +ID 7117 +TI 1771360833.459412924 +CC NStripHits 5 +PE 357.407 +PP 1.09392 0.0131525 1.04611 +PW 0 +SE +ET PH +ID 7118 +TI 1771360833.460831224 +CC NStripHits 2 +PE 80.6337 +PP 1.09392 0.32601 0.929703 +PW 0 +SE +ET UN +ID 7119 +TI 1771360833.461917257 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.5502 +SE +ET UN +ID 7120 +TI 1771360833.462058374 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6576 +SE +ET PH +ID 7121 +TI 1771360833.463283707 +CC NStripHits 3 +PE 142.875 +PP 0.0462656 -1.16659 1.74455 +PW 0 +SE +ET PH +ID 7122 +TI 1771360833.465516707 +CC NStripHits 2 +PE 141.072 +PP 3.30564 0.347885 0.231266 +PW 0 +SE +ET UN +ID 7123 +TI 1771360833.465580241 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 7124 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (56.947721)) (GR Hit: Detector ID 0 and Energy 113.232915) +BD GR Veto +PQ 56.9477 +SE +ET CO +ID 7125 +TI 1771360833.466980491 +CC NStripHits 4 +PQ 46.9818 +SQ 2 +CT 0 1 +TL 1 +TE 130.411 +CE 813.7 2.17203 130.411 1.45699 +CD 1.21033 -0.156251 1.74455 0.0336036 0.0262298 0.0336036 0.744703 -0.659359 0.813297 0.0336036 0.0225016 0.0336036 0 0 0 0 0 0 +LA 1.15636 +SE +ET PH +ID 7126 +TI 1771360833.469197507 +CC NStripHits 2 +PE 85.9278 +PP -1.35061 -0.964991 0.813297 +PW 0 +SE +ET PH +ID 7127 +TI 1771360833.471538674 +CC NStripHits 2 +PE 81.0093 +PP 3.42205 -0.123746 1.04611 +PW 0 +SE +ID 7128 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 127.461656) +BD GR Veto +PQ 6.38987 +SE +ET UN +ID 7129 +TI 1771360833.472600924 +BD DepthCalibrationError (Out of Range) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 342.613 +SE +ET UN +ID 7130 +TI 1771360833.476572841 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2888 +SE +ID 7131 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 118.996211) +BD GR Veto +PQ 0.0604854 +SE +ET PH +ID 7132 +TI 1771360833.478195657 +CC NStripHits 3 +PE 77.464 +PP 1.79236 0.35208 -1.51483 +PW 0 +SE +ET UN +ID 7133 +TI 1771360833.479214024 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9551 +SE +ET PH +ID 7134 +TI 1771360833.479626157 +CC NStripHits 2 +PE 77.7863 +PP 3.53845 0.327752 -3.26092 +PW 0 +SE +ET UN +ID 7135 +TI 1771360833.480229991 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7136 +TI 1771360833.482167074 +CC NStripHits 2 +PE 117.447 +PP 2.72361 0.363366 -2.67889 +PW 0 +SE +ID 7137 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.655555) +QA StripPairing (GR Hit: Detector ID 0 and Energy 216.720108) +BD GR Veto +PQ 1.6843 +SE +ET PH +ID 7138 +TI 1771360833.482894991 +CC NStripHits 2 +PE 196.783 +PP 3.18923 -0.314245 1.74455 +PW 0 +SE +ET PH +ID 7139 +TI 1771360833.482998474 +CC NStripHits 2 +PE 100.465 +PP 2.25798 0.137871 0.114859 +PW 0 +SE +ET PH +ID 7140 +TI 1771360833.483104058 +CC NStripHits 3 +PE 348.547 +PP -0.884984 0.354361 -2.9117 +PW 0 +SE +ID 7141 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 7142 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 7143 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 7144 +TI 1771360833.486665858 +CC NStripHits 6 +PE 301.484 +PP 2.25798 0.0656995 0.813297 +PW 0 +SE +ET PH +ID 7145 +TI 1771360833.486820308 +CC NStripHits 3 +PE 749.568 +PP -2.39827 -0.148681 0.929703 +PW 0 +SE +ET PH +ID 7146 +TI 1771360833.487433291 +CC NStripHits 2 +PE 81.3091 +PP -1.69983 0.365805 -4.30858 +PW 0 +SE +ET UN +ID 7147 +TI 1771360833.490800658 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7148 +TI 1771360833.491578474 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7149 +TI 1771360833.493339958 +CC NStripHits 2 +PE 80.1637 +PP 2.02517 0.369874 -1.39842 +PW 0 +SE +ET UN +ID 7150 +TI 1771360833.494403458 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5754 +SE +ET PH +ID 7151 +TI 1771360833.495802008 +CC NStripHits 2 +PE 80.6304 +PP 3.42205 0.370011 -4.30858 +PW 0 +SE +ET PH +ID 7152 +TI 1771360833.497149824 +CC NStripHits 5 +PE 136.558 +PP 1.21033 -0.285562 -1.39842 +PW 0 +SE +ID 7153 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 277.339354) +BD GR Veto +PQ 0.0214742 +SE +ET UN +ID 7154 +TI 1771360833.497522991 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3031 +SE +ET PH +ID 7155 +TI 1771360833.498319174 +CC NStripHits 2 +PE 73.1715 +PP 1.90877 0.367228 0.347672 +PW 0 +SE +ET PH +ID 7156 +TI 1771360833.499660708 +CC NStripHits 2 +PE 39.4934 +PP 2.14158 -0.816572 -0.00154687 +PW 0 +SE +ID 7157 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.172806) +QA StripPairing (GR Hit: Detector ID 0 and Energy 21.656774) +BD GR Veto +PQ 8.24881 +SE +ET UN +ID 7158 +TI 1771360833.501092941 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.803 +SE +ID 7159 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 155.922062) +BD GR Veto +PQ 1.83947e-06 +SE +ET UN +ID 7160 +TI 1771360833.505500108 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9981 +SE +ID 7161 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (29.484748)) (GR Hit: Detector ID 0 and Energy 77.094490) +BD GR Veto +PQ 29.4847 +SE +ET CO +ID 7162 +TI 1771360833.506233591 +CC NStripHits 7 +PQ 7.26956 +SQ 2 +CT 0 1 +TL 1 +TE 66.9523 +CE 291.536 1.92914 66.9523 1.00799 +CD -0.652172 0.150537 -1.51483 0.0336036 0.0300636 0.0336036 -1.35061 -0.909661 -0.583578 0.0336036 0.019908 0.0336036 0 0 0 0 0 0 +LA 1.5745 +SE +ET CO +ID 7163 +TI 1771360833.507357225 +CC NStripHits 5 +PQ 47.0014 +SQ 2 +CT 0 1 +TL 1 +TE 100.971 +CE 141.019 1.94833 100.971 1.53024 +CD -2.28186 -0.653829 -0.350766 0.0336036 0.0225307 0.0336036 -2.63108 -0.0177312 -0.467172 0.0336036 0.0275534 0.0336036 0 0 0 0 0 0 +LA 0.734932 +SE +ET UN +ID 7164 +TI 1771360833.508120025 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 7165 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 193.880844) +BD GR Veto +PQ 12.6372 +SE +ET UN +ID 7166 +TI 1771360833.511280841 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7167 +TI 1771360833.511824258 +CC NStripHits 3 +PE 60.1372 +PP 2.84002 0.0204259 -2.7953 +PW 0 +SE +ET UN +ID 7168 +TI 1771360833.512376225 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.6351 +SE +ET PH +ID 7169 +TI 1771360833.514010891 +CC NStripHits 2 +PE 652.203 +PP -0.652172 0.25197 2.6758 +PW 0 +SE +ET PH +ID 7170 +TI 1771360833.514743858 +CC NStripHits 2 +PE 81.0568 +PP 3.77127 0.281781 -2.67889 +PW 0 +SE +ET PH +ID 7171 +TI 1771360833.515549125 +CC NStripHits 2 +PE 30.9554 +PP -0.884984 -0.235386 -1.86405 +PW 0 +SE +ET UN +ID 7172 +TI 1771360833.517142325 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 7173 +TI 1771360833.517364091 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7174 +TI 1771360833.518623025 +CC NStripHits 2 +PE 157.885 +PP -1.69983 0.166109 -4.19217 +PW 0 +SE +ET PH +ID 7175 +TI 1771360833.519401941 +CC NStripHits 2 +PE 81.3048 +PP 1.67595 0.283101 -3.72655 +PW 0 +SE +ET PH +ID 7176 +TI 1771360833.520807925 +CC NStripHits 2 +PE 78.7968 +PP 3.65486 0.363419 -1.74764 +PW 0 +SE +ET PH +ID 7177 +TI 1771360833.521480108 +CC NStripHits 2 +PE 30.2818 +PP 3.53845 -0.174235 0.114859 +PW 0 +SE +ET PH +ID 7178 +TI 1771360833.522633192 +CC NStripHits 3 +PE 356.411 +PP -0.884984 0.300593 2.09377 +PW 0 +SE +ET PH +ID 7179 +TI 1771360833.523946642 +CC NStripHits 3 +PE 75.1055 +PP -1.46702 0.346887 1.62814 +PW 0 +SE +ET UN +ID 7180 +TI 1771360833.524237392 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 41.5777 +SE +ET CO +ID 7181 +TI 1771360833.524966125 +CC NStripHits 7 +PQ 0.456318 +SQ 2 +CT 0 1 +TL 1 +TE 95.0863 +CE 209.87 1.45257 95.0863 1.20074 +CD 1.32673 0.359055 -3.95936 0.0336036 0.0290677 0.0336036 0.162672 -0.183639 -4.54139 0.0336036 0.025978 0.0336036 0 0 0 0 0 0 +LA 1.41007 +SE +ET PH +ID 7182 +TI 1771360833.526281225 +CC NStripHits 2 +PE 148.97 +PP -2.74748 -1.12649 -3.02811 +PW 0 +SE +ET UN +ID 7183 +TI 1771360833.526637708 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7184 +TI 1771360833.527957258 +CC NStripHits 2 +PE 53.2994 +PP -0.186547 0.314198 1.62814 +PW 0 +SE +ET PH +ID 7185 +TI 1771360833.528820475 +CC NStripHits 2 +PE 32.2346 +PP 0.744703 -0.03013 1.97736 +PW 0 +SE +ET PH +ID 7186 +TI 1771360833.529223542 +CC NStripHits 2 +PE 82.2058 +PP 3.07283 0.0918053 -4.30858 +PW 0 +SE +ET CO +ID 7187 +TI 1771360833.529501908 +CC NStripHits 9 +PQ 25.2617 +SQ 3 +CT 0.251151 0.28513 +TL 1 +TE 145.6 +CE 206.766 2.0584 145.6 2.02834 +CD 2.02517 0.0744896 -3.37733 0.0336036 0.0284866 0.0336036 1.44314 -1.12147 -2.7953 0.0336036 0.0272294 0.0336036 0 0 0 0 0 0 +LA 1.01188 +SE +ET CO +ID 7188 +TI 1771360833.529967242 +CC NStripHits 4 +PQ 3.69551 +SQ 2 +CT 0 1 +TL 1 +TE 80.0801 +CE 135.648 1.44151 80.0801 0.996939 +CD 1.67595 -0.234465 0.813297 0.0336036 0.0255741 0.0336036 2.02517 0.321758 1.62814 0.0336036 0.0406207 0.0336036 0 0 0 0 0 0 +LA 1.04657 +SE +ET PH +ID 7189 +TI 1771360833.530654175 +CC NStripHits 2 +PE 127.97 +PP 1.79236 0.323707 2.6758 +PW 0 +SE +ID 7190 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.235727) +QA StripPairing (GR Hit: Detector ID 0 and Energy 88.516967) +BD GR Veto +PQ 7.65409 +SE +ET UN +ID 7191 +TI 1771360833.531936958 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 7192 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 28.675550)) (GR Hit: Detector ID 0 and Energy 123.953071) +BD GR Veto +PQ 8.34664 +SE +ET UN +ID 7193 +TI 1771360833.532785242 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.6541 +SE +ID 7194 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.062085) +BD GR Veto +PQ 0.0202736 +SE +ET UN +ID 7195 +TI 1771360833.534860858 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 139.5 +SE +ET PH +ID 7196 +TI 1771360833.535489708 +CC NStripHits 2 +PE 116.91 +PP -1.81623 0.374941 2.55939 +PW 0 +SE +ET UN +ID 7197 +TI 1771360833.536153758 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 7198 +TI 1771360833.536476058 +CC NStripHits 8 +PQ 1.36342 +SQ 2 +CT 0.797827 0.202173 +TL 1 +TE 836.735 +CE 344.386 1.22985 836.735 1.66063 +CD 1.55955 -0.524622 -0.00154687 0.0336036 0.0232788 0.0336036 1.21033 -1.17425 2.44298 0.0336036 0.0185933 0.0336036 0 0 0 0 0 0 +LA 2.55337 +SE +ID 7199 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 230.935164) +BD GR Veto +PQ 1.37309 +SE +ID 7200 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (54.280746)) (GR Hit: Detector ID 0 and Energy 107.018477) +BD GR Veto +PQ 54.2807 +SE +ET PH +ID 7201 +TI 1771360833.538864925 +CC NStripHits 2 +PE 79.4822 +PP -2.28186 0.366267 1.62814 +PW 0 +SE +ET PH +ID 7202 +TI 1771360833.539784125 +CC NStripHits 2 +PE 180.674 +PP -1.58342 0.281591 -2.67889 +PW 0 +SE +ID 7203 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.843727) +BD GR Veto +PQ 0.125553 +SE +ET PH +ID 7204 +TI 1771360833.540852292 +CC NStripHits 2 +PE 79.995 +PP 4.3533 0.332761 1.16252 +PW 0 +SE +ID 7205 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.877709) +BD GR Veto +PQ 0.00156935 +SE +ET PH +ID 7206 +TI 1771360833.544561875 +CC NStripHits 2 +PE 123.296 +PP 0.395484 0.138803 0.114859 +PW 0 +SE +ET PH +ID 7207 +TI 1771360833.545999975 +CC NStripHits 3 +PE 69.159 +PP 2.95642 -0.708205 1.51173 +PW 0 +SE +ET PH +ID 7208 +TI 1771360833.550128792 +CC NStripHits 3 +PE 204.241 +PP -1.2342 -0.00636163 1.39533 +PW 0 +SE +ET PH +ID 7209 +TI 1771360833.550488209 +CC NStripHits 2 +PE 65.9368 +PP 1.79236 0.368409 -0.816391 +PW 0 +SE +ET UN +ID 7210 +TI 1771360833.552274759 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 6 +PE 193.061 +SE +ET PH +ID 7211 +TI 1771360833.554416659 +CC NStripHits 2 +PE 167.315 +PP -1.1178 -0.919163 -2.67889 +PW 0 +SE +ET UN +ID 7212 +TI 1771360833.555619925 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2315 +SE +ID 7213 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 60.744911)) (GR Hit: Detector ID 0 and Energy 286.098151) +BD GR Veto +PQ 20.7223 +SE +ET PH +ID 7214 +TI 1771360833.556854342 +CC NStripHits 2 +PE 199.69 +PP 2.02517 -0.823997 2.55939 +PW 0 +SE +ET PH +ID 7215 +TI 1771360833.557094242 +CC NStripHits 2 +PE 65.998 +PP -0.186547 0.351456 -4.42498 +PW 0 +SE +ET UN +ID 7216 +TI 1771360833.557484309 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1115 +SE +ET UN +ID 7217 +TI 1771360833.558110859 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1845 +SE +ET UN +ID 7218 +TI 1771360833.559904992 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.0567 +SE +ET PH +ID 7219 +TI 1771360833.561347792 +CC NStripHits 2 +PE 97.2895 +PP 3.42205 -1.11147 1.97736 +PW 0 +SE +ID 7220 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 304.717371) +BD GR Veto +PQ 0.441436 +SE +ET UN +ID 7221 +TI 1771360833.563358442 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.9666 +SE +ID 7222 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.632904) +BD GR Veto +PQ 0.0955708 +SE +ET UN +ID 7223 +TI 1771360833.564397309 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 449.774 +SE +ID 7224 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.420790) +BD GR Veto +PQ 0.014082 +SE +ET PH +ID 7225 +TI 1771360833.566365859 +CC NStripHits 2 +PE 167.838 +PP -0.535766 0.0644268 2.09377 +PW 0 +SE +ET PH +ID 7226 +TI 1771360833.566577359 +CC NStripHits 3 +PE 102.118 +PP -1.81623 0.328914 1.86095 +PW 0 +SE +ET PH +ID 7227 +TI 1771360833.566982942 +CC NStripHits 2 +PE 80.2317 +PP -0.0701406 0.3572 0.929703 +PW 0 +SE +ET PH +ID 7228 +TI 1771360833.567664359 +CC NStripHits 2 +PE 64.3186 +PP 2.95642 -0.806112 -0.00154687 +PW 0 +SE +ET UN +ID 7229 +TI 1771360833.570845476 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7230 +TI 1771360833.572462459 +CC NStripHits 2 +PE 192.709 +PP 3.42205 0.310388 -0.00154687 +PW 0 +SE +ID 7231 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 43.541631) +BD GR Veto +PQ 0.0273001 +SE +ID 7232 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.611794) +BD GR Veto +PQ 0.334641 +SE +ET PH +ID 7233 +TI 1771360833.573140592 +CC NStripHits 3 +PE 215.868 +PP 3.65486 -0.286672 -1.74764 +PW 0 +SE +ID 7234 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.144325) +BD GR Veto +PQ 0.224824 +SE +ET PH +ID 7235 +TI 1771360833.575603959 +CC NStripHits 3 +PE 357.472 +PP -0.768578 -0.015993 -2.67889 +PW 0 +SE +ID 7236 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.315360) +BD GR Veto +PQ 0.400203 +SE +ET PH +ID 7237 +TI 1771360833.576851909 +CC NStripHits 4 +PE 226.618 +PP 2.25798 -0.641344 2.09377 +PW 0 +SE +ET PH +ID 7238 +TI 1771360833.580702759 +CC NStripHits 2 +PE 77.7175 +PP 2.4908 0.312468 0.929703 +PW 0 +SE +ID 7239 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (66.166411)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 45.306935)) (GR Hit: Detector ID 0 and Energy 149.919684) +BD GR Veto +PQ 66.1664 +SE +ID 7240 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 7241 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.544033) +BD GR Veto +PQ 0.195027 +SE +ID 7242 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.291297) +BD GR Veto +PQ 1.73043 +SE +ET PH +ID 7243 +TI 1771360833.586200259 +CC NStripHits 2 +PE 118.31 +PP 2.02517 -0.0282838 1.39533 +PW 0 +SE +ET PH +ID 7244 +TI 1771360833.587043176 +CC NStripHits 2 +PE 59.9342 +PP 3.77127 0.32336 -0.467172 +PW 0 +SE +ET UN +ID 7245 +TI 1771360833.587825793 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7246 +TI 1771360833.588399976 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7247 +TI 1771360833.588703943 +CC NStripHits 2 +PE 177.683 +PP 2.02517 -0.594819 -0.467172 +PW 0 +SE +ET PH +ID 7248 +TI 1771360833.589047293 +CC NStripHits 2 +PE 67.6346 +PP -1.1178 0.380385 -1.28202 +PW 0 +SE +ID 7249 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.771284) +BD GR Veto +PQ 0.103246 +SE +ID 7250 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.665039) (Strip hit removed with energy 12.840522) (Strip hit removed with energy 14.595884) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 25.346507)) +BD GR Veto +PQ 0.536989 +SE +ET PH +ID 7251 +TI 1771360833.594919593 +CC NStripHits 2 +PE 110.526 +PP 3.07283 0.0984519 -1.16561 +PW 0 +SE +ET PH +ID 7252 +TI 1771360833.595625726 +CC NStripHits 2 +PE 81.0614 +PP -0.419359 0.374275 -0.583578 +PW 0 +SE +ID 7253 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (69.682484)) (GR Hit: Detector ID 0 and Energy 138.420342) +BD GR Veto +PQ 69.6825 +SE +ET PH +ID 7254 +TI 1771360833.597876676 +CC NStripHits 2 +PE 80.1489 +PP 4.3533 -0.458287 -0.583578 +PW 0 +SE +ET UN +ID 7255 +TI 1771360833.598271326 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 167.524 +SE +ID 7256 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 7257 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.630972) +BD GR Veto +PQ 5.29891 +SE +ET PH +ID 7258 +TI 1771360833.601733843 +CC NStripHits 2 +PE 76.2698 +PP -1.58342 0.137879 -3.95936 +PW 0 +SE +ID 7259 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.802381) +BD GR Veto +PQ 3.7264 +SE +ID 7260 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 266.846943) +BD GR Veto +PQ 1.69543 +SE +ET PH +ID 7261 +TI 1771360833.603759726 +CC NStripHits 2 +PE 70.3459 +PP 2.6072 0.202625 2.32658 +PW 0 +SE +ET UN +ID 7262 +TI 1771360833.605515793 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7263 +TI 1771360833.608588960 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2751 +SE +ID 7264 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 200.620474) +BD GR Veto +PQ 0.767176 +SE +ET PH +ID 7265 +TI 1771360833.609758343 +CC NStripHits 3 +PE 184.418 +PP 3.65486 -0.978415 -0.816391 +PW 0 +SE +ET UN +ID 7266 +TI 1771360833.611828576 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.0899 +SE +ET PH +ID 7267 +TI 1771360833.611916693 +CC NStripHits 2 +PE 29.8694 +PP 3.88767 0.0252598 -1.74764 +PW 0 +SE +ET PH +ID 7268 +TI 1771360833.612588660 +CC NStripHits 2 +PE 52.1678 +PP -0.768578 0.338936 1.62814 +PW 0 +SE +ET UN +ID 7269 +TI 1771360833.613092743 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7270 +TI 1771360833.613913126 +CC NStripHits 2 +PE 353.458 +PP -0.768578 -0.429542 -3.84295 +PW 0 +SE +ET CO +ID 7271 +TI 1771360833.614065243 +CC NStripHits 8 +PQ 49.4554 +SQ 3 +CT 0.13582 0.762635 +TL 1 +TE 85.5724 +CE 290.355 2.04716 85.5724 1.37854 +CD 0.162672 -0.19549 0.580484 0.0336036 0.0258936 0.0336036 0.511891 -0.604844 0.696891 0.0336036 0.0228007 0.0336036 0 0 0 0 0 0 +LA 0.550523 +SE +ET PH +ID 7272 +TI 1771360833.614692093 +CC NStripHits 2 +PE 189.714 +PP 3.18923 -0.85202 -0.583578 +PW 0 +SE +ET CO +ID 7273 +TI 1771360833.615268810 +CC NStripHits 4 +PQ 1.48784 +SQ 2 +CT 0 1 +TL 1 +TE 46.4263 +CE 170.227 1.02265 46.4263 0.977157 +CD 1.90877 -0.28797 2.21017 0.0336036 0.0252616 0.0336036 3.30564 -1.14662 2.09377 0.0336036 0.0274971 0.0336036 0 0 0 0 0 0 +LA 1.6438 +SE +ET PH +ID 7274 +TI 1771360833.617076043 +CC NStripHits 2 +PE 81.0091 +PP -2.04905 0.188951 -0.00154687 +PW 0 +SE +ET PH +ID 7275 +TI 1771360833.618258543 +CC NStripHits 2 +PE 80.8769 +PP 3.07283 0.363323 -4.54139 +PW 0 +SE +ET UN +ID 7276 +TI 1771360833.618643210 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 61.959 +SE +ET PH +ID 7277 +TI 1771360833.619032260 +CC NStripHits 3 +PE 358.891 +PP -0.419359 -0.975651 2.44298 +PW 0 +SE +ET UN +ID 7278 +TI 1771360833.619892610 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 76.5509 +SE +ET CO +ID 7279 +TI 1771360833.622473543 +CC NStripHits 5 +PQ 0.010255 +SQ 2 +CT 0 1 +TL 1 +TE 95.8091 +CE 135.136 1.22155 95.8091 1.02854 +CD 3.53845 0.363284 -2.67889 0.0336036 0.0267899 0.0336036 3.88767 -0.521274 -4.19217 0.0336036 0.0232977 0.0336036 0 0 0 0 0 0 +LA 1.78729 +SE +ET CO +ID 7280 +TI 1771360833.622603077 +CC NStripHits 4 +PQ 8.71706 +SQ 2 +CT 0 1 +TL 1 +TE 101.511 +CE 146.367 1.03503 101.511 1.44115 +CD 1.90877 -0.611839 -2.56248 0.0336036 0.0227596 0.0336036 0.162672 -0.00397455 -0.467172 0.0336036 0.0276328 0.0336036 0 0 0 0 0 0 +LA 2.7944 +SE +ID 7281 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.110769) +BD GR Veto +PQ 0.448366 +SE +ID 7282 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 209.892506) +BD GR Veto +PQ 0.110812 +SE +ID 7283 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 84.807796) +BD GR Veto +PQ 0.140868 +SE +ET UN +ID 7284 +TI 1771360833.629230777 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6389 +SE +ID 7285 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 84.658299) +BD GR Veto +PQ 2.52298 +SE +ET PH +ID 7286 +TI 1771360833.630257893 +CC NStripHits 2 +PE 79.6763 +PP 2.37439 0.344551 -2.67889 +PW 0 +SE +ID 7287 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.322432) +BD GR Veto +PQ 0.00881576 +SE +ET PH +ID 7288 +TI 1771360833.632382293 +CC NStripHits 3 +PE 174.141 +PP 1.67595 -0.149918 -0.816391 +PW 0 +SE +ET CO +ID 7289 +TI 1771360833.632858460 +CC NStripHits 5 +PQ 38.0875 +SQ 2 +CT 0 1 +TL 1 +TE 44.2279 +CE 94.4215 1.13359 44.2279 1.34967 +CD -1.35061 -0.39621 -1.51483 0.0336036 0.0244814 0.0336036 -0.652172 0.0173615 0.580484 0.0336036 0.0278019 0.0336036 0 0 0 0 0 0 +LA 2.24704 +SE +ET PH +ID 7290 +TI 1771360833.633095910 +CC NStripHits 2 +PE 231.429 +PP 4.12048 0.225721 0.813297 +PW 0 +SE +ET PH +ID 7291 +TI 1771360833.634356527 +CC NStripHits 3 +PE 133.56 +PP -0.768578 -0.81192 -3.02811 +PW 0 +SE +ET PH +ID 7292 +TI 1771360833.634871260 +CC NStripHits 2 +PE 28.8706 +PP -1.1178 -0.809347 -0.350766 +PW 0 +SE +ID 7293 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.077536) +BD GR Veto +PQ 0.551048 +SE +ID 7294 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 164.920865) +BD GR Veto +PQ 14.6453 +SE +ET CO +ID 7295 +TI 1771360833.637008643 +CC NStripHits 8 +PQ 42.441 +SQ 2 +CT 0 1 +TL 1 +TE 122.892 +CE 234.377 2.04799 122.892 1.18772 +CD 1.44314 -0.169748 2.44298 0.0336036 0.0260907 0.0336036 1.09392 -0.0457413 1.74455 0.0336036 0.0272355 0.0336036 0 0 0 0 0 0 +LA 0.790656 +SE +ID 7296 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.223784)) (GR Hit: Detector ID 0 and Energy 65.813109) +BD GR Veto +PQ 27.2238 +SE +ET PH +ID 7297 +TI 1771360833.638324693 +CC NStripHits 4 +PE 117.066 +PP -2.39827 0.150815 -4.42498 +PW 0 +SE +ET PH +ID 7298 +TI 1771360833.638861827 +CC NStripHits 2 +PE 29.8911 +PP 1.90877 0.209295 -1.16561 +PW 0 +SE +ET PH +ID 7299 +TI 1771360833.640873527 +CC NStripHits 2 +PE 81.1238 +PP 2.6072 0.33273 2.32658 +PW 0 +SE +ET PH +ID 7300 +TI 1771360833.641628277 +CC NStripHits 2 +PE 83.8874 +PP -1.69983 0.349163 2.32658 +PW 0 +SE +ET PH +ID 7301 +TI 1771360833.642509360 +CC NStripHits 3 +PE 380.167 +PP 2.84002 -1.01025 -3.72655 +PW 0 +SE +ID 7302 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (97.077883)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 28.253293)) (GR Hit: Detector ID 0 and Energy 77.308819) +BD GR Veto +PQ 97.0779 +SE +ID 7303 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.076105) +BD GR Veto +PQ 0.0892192 +SE +ET PH +ID 7304 +TI 1771360833.648906760 +CC NStripHits 4 +PE 232.551 +PP -1.2342 0.108542 -3.37733 +PW 0 +SE +ET CO +ID 7305 +TI 1771360833.649962627 +CC NStripHits 5 +PQ 0.00736558 +SQ 2 +CT 0 1 +TL 1 +TE 76.2499 +CE 123.977 1.17043 76.2499 0.999286 +CD 0.0462656 0.369763 -2.21327 0.0336036 0.0228646 0.0336036 0.395484 0.244961 -2.09686 0.0336036 0.0358586 0.0336036 0 0 0 0 0 0 +LA 0.388691 +SE +ET UN +ID 7306 +TI 1771360833.650371544 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ID 7307 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.590889) +BD GR Veto +PQ 0.0616803 +SE +ET UN +ID 7308 +TI 1771360833.652961577 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.0277 +SE +ET UN +ID 7309 +TI 1771360833.655321610 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 7310 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 222.654645) +BD GR Veto +PQ 0.149928 +SE +ET CO +ID 7311 +TI 1771360833.656805310 +CC NStripHits 7 +PQ 2.5498 +SQ 3 +CT 0.209543 0.727472 +TL 1 +TE 421.719 +CE 97.7524 1.36631 421.719 2.1705 +CD 0.861109 0.172353 -1.16561 0.0336036 0.030764 0.0336036 -1.2342 -0.890482 -3.02811 0.0336036 0.020056 0.0336036 0 0 0 0 0 0 +LA 0.322732 +SE +ID 7312 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 218.179371) +BD GR Veto +PQ 0.00738433 +SE +ET PH +ID 7313 +TI 1771360833.660869094 +CC NStripHits 2 +PE 44.8824 +PP -2.86389 -1.07317 -0.234359 +PW 0 +SE +ID 7314 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.571447) +BD GR Veto +PQ 1.40133 +SE +ET PH +ID 7315 +TI 1771360833.661984927 +CC NStripHits 2 +PE 140.786 +PP 2.95642 0.00922791 -3.14452 +PW 0 +SE +ET PH +ID 7316 +TI 1771360833.662496261 +CC NStripHits 3 +PE 140.893 +PP -1.93264 -0.802396 0.464078 +PW 0 +SE +ID 7317 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 128.545491) +BD GR Veto +PQ 4.95667 +SE +ET PH +ID 7318 +TI 1771360833.664443711 +CC NStripHits 2 +PE 108.296 +PP -0.884984 0.231304 -0.00154687 +PW 0 +SE +ID 7319 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 55.147591) +BD GR Veto +PQ 0.225441 +SE +ET PH +ID 7320 +TI 1771360833.665646427 +CC NStripHits 2 +PE 31.442 +PP -2.86389 -0.357903 -2.21327 +PW 0 +SE +ET PH +ID 7321 +TI 1771360833.665919094 +CC NStripHits 4 +PE 214.99 +PP -1.58342 -0.549306 -2.09686 +PW 0 +SE +ET PH +ID 7322 +TI 1771360833.667299394 +CC NStripHits 2 +PE 80.9178 +PP -1.69983 0.336508 -4.19217 +PW 0 +SE +ET UN +ID 7323 +TI 1771360833.667398711 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.718 +SE +ET PH +ID 7324 +TI 1771360833.667725511 +CC NStripHits 2 +PE 80.8766 +PP 1.90877 -0.948006 0.114859 +PW 0 +SE +ET CO +ID 7325 +TI 1771360833.669648727 +CC NStripHits 6 +PQ 0.0922538 +SQ 2 +CT 0 1 +TL 1 +TE 94.5842 +CE 123.553 1.02026 94.5842 1.45865 +CD 3.53845 -0.753035 -0.699984 0.0336036 0.0216091 0.0336036 3.65486 -0.475513 -1.28202 0.0336036 0.0236705 0.0336036 0 0 0 0 0 0 +LA 0.655237 +SE +ET PH +ID 7326 +TI 1771360833.670271911 +CC NStripHits 3 +PE 246.726 +PP 3.18923 -1.0067 0.114859 +PW 0 +SE +ET PH +ID 7327 +TI 1771360833.674101461 +CC NStripHits 5 +PE 168.64 +PP 0.162672 -0.933975 -2.32967 +PW 0 +SE +ET PH +ID 7328 +TI 1771360833.674266211 +CC NStripHits 2 +PE 75.6803 +PP 0.162672 0.230143 -4.42498 +PW 0 +SE +ET CO +ID 7329 +TI 1771360833.675146411 +CC NStripHits 5 +PQ 6.88774 +SQ 2 +CT 0 1 +TL 1 +TE 38.658 +CE 120.134 1.18344 38.658 1.46483 +CD 3.07283 -0.133954 -0.816391 0.0336036 0.0264401 0.0336036 2.84002 0.364983 -0.699984 0.0336036 0.0258115 0.0336036 0 0 0 0 0 0 +LA 0.562751 +SE +ET UN +ID 7330 +TI 1771360833.675338661 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7331 +TI 1771360833.677335827 +CC NStripHits 2 +PE 251.852 +PP 1.90877 0.333069 1.04611 +PW 0 +SE +ID 7332 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 247.369871) +BD GR Veto +PQ 0.143509 +SE +ID 7333 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 7334 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 7335 +TI 1771360833.684536594 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.4125 +SE +ID 7336 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.223976) +BD GR Veto +PQ +SE +ID 7337 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 7338 +TI 1771360833.685913694 +CC NStripHits 3 +PE 76.2155 +PP -1.2342 0.370426 -1.51483 +PW 0 +SE +ID 7339 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 359.216449) +BD GR Veto +PQ 0.438607 +SE +ET PH +ID 7340 +TI 1771360833.687261461 +CC NStripHits 3 +PE 302.205 +PP -1.2342 -0.157856 -2.09686 +PW 0 +SE +ET PH +ID 7341 +TI 1771360833.687747394 +CC NStripHits 2 +PE 90.975 +PP 2.6072 -1.03155 0.114859 +PW 0 +SE +ET UN +ID 7342 +TI 1771360833.688885344 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 41.9392 +SE +ET PH +ID 7343 +TI 1771360833.692690178 +CC NStripHits 4 +PE 154.786 +PP 3.53845 -0.666643 -3.49373 +PW 0 +SE +ET PH +ID 7344 +TI 1771360833.693679611 +CC NStripHits 4 +PE 359.278 +PP 2.14158 0.164884 2.21017 +PW 0 +SE +ET PH +ID 7345 +TI 1771360833.694006661 +CC NStripHits 2 +PE 80.8585 +PP 0.977516 0.120561 -0.00154687 +PW 0 +SE +ET PH +ID 7346 +TI 1771360833.694250761 +CC NStripHits 2 +PE 110.714 +PP -0.419359 -0.706372 -3.95936 +PW 0 +SE +ID 7347 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.642605) +BD GR Veto +PQ 0.217961 +SE +ET UN +ID 7348 +TI 1771360833.694418544 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7349 +TI 1771360833.694914894 +CC NStripHits 2 +PE 81.0193 +PP 3.18923 -0.997773 1.97736 +PW 0 +SE +ID 7350 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ET UN +ID 7351 +TI 1771360833.696443828 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.2205 +SE +ET PH +ID 7352 +TI 1771360833.697527644 +CC NStripHits 2 +PE 80.6078 +PP -2.28186 0.29902 -2.67889 +PW 0 +SE +ET PH +ID 7353 +TI 1771360833.697870161 +CC NStripHits 3 +PE 210.039 +PP 2.37439 -0.475293 -1.98045 +PW 0 +SE +ID 7354 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.125950) +BD GR Veto +PQ 2.52326 +SE +ET PH +ID 7355 +TI 1771360833.699865461 +CC NStripHits 2 +PE 41.0479 +PP -2.39827 -0.972798 -2.67889 +PW 0 +SE +ET PH +ID 7356 +TI 1771360833.700960128 +CC NStripHits 3 +PE 55.3226 +PP 1.44314 0.142098 -3.95936 +PW 0 +SE +ET UN +ID 7357 +TI 1771360833.701647045 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7358 +TI 1771360833.702360395 +CC NStripHits 2 +PE 169.187 +PP 4.00408 0.376287 -4.19217 +PW 0 +SE +ID 7359 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 158.257927) +BD GR Veto +PQ 0.108052 +SE +ET CO +ID 7360 +TI 1771360833.704265411 +CC NStripHits 5 +PQ 38.3086 +SQ 2 +CT 0 1 +TL 1 +TE 84.7846 +CE 220.14 1.19697 84.7846 1.42987 +CD 2.02517 -0.0139895 -2.44608 0.0336036 0.0275768 0.0336036 1.79236 -0.0181188 -2.21327 0.0336036 0.0275508 0.0336036 0 0 0 0 0 0 +LA 0.329269 +SE +ET PH +ID 7361 +TI 1771360833.705980761 +CC NStripHits 2 +PE 83.7823 +PP -0.419359 0.347376 -0.583578 +PW 0 +SE +ET PH +ID 7362 +TI 1771360833.706906361 +CC NStripHits 2 +PE 34.6583 +PP 0.162672 -0.0379081 0.347672 +PW 0 +SE +ET PH +ID 7363 +TI 1771360833.709934895 +CC NStripHits 2 +PE 66.4177 +PP 0.279078 -0.0594655 1.27892 +PW 0 +SE +ET PH +ID 7364 +TI 1771360833.710078328 +CC NStripHits 2 +PE 64.9284 +PP 0.279078 0.346248 -0.816391 +PW 0 +SE +ET PH +ID 7365 +TI 1771360833.710882228 +CC NStripHits 2 +PE 65.493 +PP 3.77127 -1.03314 1.74455 +PW 0 +SE +ID 7366 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 46.277973) +BD GR Veto +PQ 0.559699 +SE +ET UN +ID 7367 +TI 1771360833.717349195 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4935 +SE +ET PH +ID 7368 +TI 1771360833.718430595 +CC NStripHits 2 +PE 356.108 +PP -0.768578 -0.215893 -3.37733 +PW 0 +SE +ET UN +ID 7369 +TI 1771360833.718695245 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 7370 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 36.579340)) (GR Hit: Detector ID 0 and Energy 74.470527) +BD GR Veto +PQ 12.1902 +SE +ID 7371 +BD StripPairingError (More than maximum number of strip hits allowed on one side (11)) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.135602) (Strip hit removed with energy 10.825201) (Strip hit removed with energy 10.925057) (Strip hit removed with energy 18.841883) +BD GR Veto +PQ +SE +ET PH +ID 7372 +TI 1771360833.722469612 +CC NStripHits 2 +PE 76.587 +PP 3.77127 0.378087 -4.42498 +PW 0 +SE +ET PH +ID 7373 +TI 1771360833.722644412 +CC NStripHits 2 +PE 119.965 +PP 4.23689 -1.18142 0.813297 +PW 0 +SE +ET PH +ID 7374 +TI 1771360833.723258578 +CC NStripHits 4 +PE 239.663 +PP 3.65486 -0.371936 -3.95936 +PW 0 +SE +ID 7375 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 116.281640) +BD GR Veto +PQ 0.0162907 +SE +ET UN +ID 7376 +TI 1771360833.727130645 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 119.407 +SE +ET PH +ID 7377 +TI 1771360833.727886712 +CC NStripHits 2 +PE 155.881 +PP -1.00139 -0.0909705 1.86095 +PW 0 +SE +ET PH +ID 7378 +TI 1771360833.728441828 +CC NStripHits 2 +PE 30.35 +PP -2.86389 0.281739 1.27892 +PW 0 +SE +ET PH +ID 7379 +TI 1771360833.728653178 +CC NStripHits 2 +PE 80.1446 +PP 0.511891 0.351486 -3.14452 +PW 0 +SE +ET PH +ID 7380 +TI 1771360833.729086245 +CC NStripHits 3 +PE 80.2692 +PP 1.90877 0.151793 2.6758 +PW 0 +SE +ID 7381 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.720538) +BD GR Veto +PQ 0.684968 +SE +ET UN +ID 7382 +TI 1771360833.732143095 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7383 +TI 1771360833.733044945 +CC NStripHits 2 +PE 80.9334 +PP -1.81623 0.361291 0.813297 +PW 0 +SE +ET UN +ID 7384 +TI 1771360833.733250262 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9497 +SE +ET PH +ID 7385 +TI 1771360833.734423712 +CC NStripHits 3 +PE 353.909 +PP -0.652172 0.0366889 -2.09686 +PW 0 +SE +ET UN +ID 7386 +TI 1771360833.734745728 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.3409 +SE +ET PH +ID 7387 +TI 1771360833.734892095 +CC NStripHits 2 +PE 80.9539 +PP 3.07283 0.177944 -2.9117 +PW 0 +SE +ET UN +ID 7388 +TI 1771360833.735828362 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 173.783 +SE +ID 7389 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 50.118536) +BD GR Veto +PQ 11.972 +SE +ET PH +ID 7390 +TI 1771360833.738770645 +CC NStripHits 2 +PE 55.256 +PP 2.84002 0.373529 0.696891 +PW 0 +SE +ET PH +ID 7391 +TI 1771360833.738938228 +CC NStripHits 2 +PE 65.0335 +PP 1.44314 0.361456 -4.30858 +PW 0 +SE +ET PH +ID 7392 +TI 1771360833.740310379 +CC NStripHits 2 +PE 301.504 +PP 0.162672 -0.285863 -3.37733 +PW 0 +SE +ET UN +ID 7393 +TI 1771360833.742336062 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7394 +TI 1771360833.743739862 +CC NStripHits 3 +PE 270.169 +PP -1.69983 -0.331903 -2.21327 +PW 0 +SE +ID 7395 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 323.392186) +BD GR Veto +PQ 1.4679 +SE +ET PH +ID 7396 +TI 1771360833.745291312 +CC NStripHits 2 +PE 77.3239 +PP -0.302953 -1.04067 -0.117953 +PW 0 +SE +ET PH +ID 7397 +TI 1771360833.745825362 +CC NStripHits 2 +PE 203.394 +PP 3.07283 -0.456697 -0.467172 +PW 0 +SE +ET PH +ID 7398 +TI 1771360833.745965512 +CC NStripHits 2 +PE 73.2228 +PP 2.6072 -1.09934 -3.14452 +PW 0 +SE +ET PH +ID 7399 +TI 1771360833.748286045 +CC NStripHits 2 +PE 356.771 +PP -2.16545 -0.0856283 0.813297 +PW 0 +SE +ID 7400 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 205.199528) +BD GR Veto +PQ 0.0636916 +SE +ET UN +ID 7401 +TI 1771360833.750402362 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.6003 +SE +ET UN +ID 7402 +TI 1771360833.750677729 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 349.854 +SE +ET PH +ID 7403 +TI 1771360833.751204145 +CC NStripHits 2 +PE 84.5491 +PP 3.65486 -0.685656 -0.583578 +PW 0 +SE +ET UN +ID 7404 +TI 1771360833.752483662 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0273 +SE +ET PH +ID 7405 +TI 1771360833.753998412 +CC NStripHits 3 +PE 283.001 +PP 0.395484 0.100076 -4.54139 +PW 0 +SE +ET PH +ID 7406 +TI 1771360833.754768762 +CC NStripHits 2 +PE 80.9165 +PP -1.35061 0.316466 -2.67889 +PW 0 +SE +ET PH +ID 7407 +TI 1771360833.756979262 +CC NStripHits 2 +PE 80.2117 +PP -2.04905 -0.923929 -1.16561 +PW 0 +SE +ET PH +ID 7408 +TI 1771360833.757398945 +CC NStripHits 4 +PE 308.949 +PP -2.39827 -0.506578 -0.117953 +PW 0 +SE +ET PH +ID 7409 +TI 1771360833.758945445 +CC NStripHits 2 +PE 64.864 +PP 1.32673 0.324174 0.813297 +PW 0 +SE +ET UN +ID 7410 +TI 1771360833.759198929 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 124.114 +SE +ET UN +ID 7411 +TI 1771360833.760302029 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.1602 +SE +ET PH +ID 7412 +TI 1771360833.760528879 +CC NStripHits 2 +PE 30.47 +PP -2.16545 -0.0913511 1.04611 +PW 0 +SE +ET PH +ID 7413 +TI 1771360833.762127662 +CC NStripHits 2 +PE 130.602 +PP 2.37439 0.343181 1.27892 +PW 0 +SE +ET UN +ID 7414 +TI 1771360833.762270246 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1366 +SE +ID 7415 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.758887) (Strip hit removed with energy 16.524333) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 48.679080)) +BD GR Veto +PQ 8.63989 +SE +ET PH +ID 7416 +TI 1771360833.763506479 +CC NStripHits 2 +PE 218.665 +PP 2.02517 0.322662 1.74455 +PW 0 +SE +ID 7417 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.160341) +BD GR Veto +PQ 0.0440009 +SE +ID 7418 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 294.378090) +BD GR Veto +PQ 0.000168052 +SE +ID 7419 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.353907) +QA StripPairing (Best reduced chi square is not below 25 (38.309243)) (GR Hit: Detector ID 0 and Energy 228.694404) +BD GR Veto +PQ 38.3092 +SE +ID 7420 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 139.903591) +BD GR Veto +PQ 0.14029 +SE +ET PH +ID 7421 +TI 1771360833.767129296 +CC NStripHits 2 +PE 80.1143 +PP -1.81623 0.311279 -4.07577 +PW 0 +SE +ET PH +ID 7422 +TI 1771360833.768311879 +CC NStripHits 3 +PE 220.743 +PP -0.884984 -0.10237 1.16252 +PW 0 +SE +ET PH +ID 7423 +TI 1771360833.769923329 +CC NStripHits 2 +PE 72.9607 +PP 1.90877 0.262496 1.39533 +PW 0 +SE +ET UN +ID 7424 +TI 1771360833.771089079 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 7425 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.549161) +BD GR Veto +PQ 0.224423 +SE +ID 7426 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.320564) +BD GR Veto +PQ +SE +ET UN +ID 7427 +TI 1771360833.772385096 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7428 +TI 1771360833.773370829 +CC NStripHits 2 +PE 79.78 +PP 3.18923 0.332714 -1.74764 +PW 0 +SE +ET UN +ID 7429 +TI 1771360833.776276112 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7430 +TI 1771360833.776726229 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7431 +TI 1771360833.778459229 +CC NStripHits 3 +PE 79.8845 +PP -0.302953 0.344906 2.21017 +PW 0 +SE +ET UN +ID 7432 +TI 1771360833.779060629 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.94 +SE +ET UN +ID 7433 +TI 1771360833.779165062 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 79.1087 +SE +ET UN +ID 7434 +TI 1771360833.779365762 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 119.345 +SE +ID 7435 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 350.472112) +BD GR Veto +PQ 0.00328801 +SE +ET PH +ID 7436 +TI 1771360833.781747413 +CC NStripHits 2 +PE 77.901 +PP -2.74748 0.342037 -3.49373 +PW 0 +SE +ET UN +ID 7437 +TI 1771360833.783387429 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 139.23 +SE +ID 7438 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.552593) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.694543)) +BD GR Veto +PQ 0.796621 +SE +ET PH +ID 7439 +TI 1771360833.784639496 +CC NStripHits 3 +PE 212.923 +PP 2.14158 0.36427 1.97736 +PW 0 +SE +ID 7440 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (63.852465)) (GR Hit: Detector ID 0 and Energy 95.898524) +BD GR Veto +PQ 63.8525 +SE +ID 7441 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 174.382389) +BD GR Veto +PQ 0.164429 +SE +ID 7442 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.293967) +BD GR Veto +PQ 21.8633 +SE +ET PH +ID 7443 +TI 1771360833.785949613 +CC NStripHits 2 +PE 77.027 +PP 0.628297 0.223238 -1.86405 +PW 0 +SE +ET CO +ID 7444 +TI 1771360833.787650763 +CC NStripHits 7 +PQ 2.74987 +SQ 2 +CT 0 1 +TL 1 +TE 88.4527 +CE 203.764 1.52772 88.4527 1.47281 +CD -1.46702 0.147596 0.929703 0.0336036 0.0299817 0.0336036 -2.04905 -0.00163784 0.580484 0.0336036 0.0276467 0.0336036 0 0 0 0 0 0 +LA 0.69497 +SE +ET CO +ID 7445 +TI 1771360833.788413146 +CC NStripHits 5 +PQ 1.80109 +SQ 2 +CT 0 1 +TL 1 +TE 152.596 +CE 344.964 1.07369 152.596 0.985904 +CD -2.63108 -0.690052 1.27892 0.0336036 0.0223119 0.0336036 -2.9803 -0.395223 0.813297 0.0336036 0.0244925 0.0336036 0 0 0 0 0 0 +LA 0.652444 +SE +ET PH +ID 7446 +TI 1771360833.790721746 +CC NStripHits 2 +PE 113.791 +PP 1.55955 -1.08642 -0.00154687 +PW 0 +SE +ET PH +ID 7447 +TI 1771360833.791370596 +CC NStripHits 2 +PE 135.351 +PP -1.69983 0.340199 0.580484 +PW 0 +SE +ET UN +ID 7448 +TI 1771360833.795695713 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 7449 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 114.761083) +BD GR Veto +PQ 0.00470046 +SE +ET PH +ID 7450 +TI 1771360833.797582129 +CC NStripHits 3 +PE 163.599 +PP 0.977516 0.110658 1.39533 +PW 0 +SE +ET PH +ID 7451 +TI 1771360833.798338796 +CC NStripHits 3 +PE 134.505 +PP -1.69983 -1.03768 1.39533 +PW 0 +SE +ET UN +ID 7452 +TI 1771360833.800281613 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 7453 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.483918) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.090003) +BD GR Veto +PQ 3.29437 +SE +ET PH +ID 7454 +TI 1771360833.802159480 +CC NStripHits 2 +PE 280.289 +PP -2.39827 -1.02754 1.62814 +PW 0 +SE +ET PH +ID 7455 +TI 1771360833.803123746 +CC NStripHits 2 +PE 192.233 +PP -2.04905 -0.15166 0.231266 +PW 0 +SE +ET PH +ID 7456 +TI 1771360833.804579380 +CC NStripHits 2 +PE 115.297 +PP -1.00139 0.0522851 -0.00154687 +PW 0 +SE +ID 7457 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 107.001220) +BD GR Veto +PQ 0.0322818 +SE +ET CO +ID 7458 +TI 1771360833.805178113 +CC NStripHits 5 +PQ 34.4242 +SQ 2 +CT 0 1 +TL 1 +TE 137 +CE 221.46 1.14917 137 1.66421 +CD 0.628297 -0.681778 -0.816391 0.0336036 0.0223678 0.0336036 -1.81623 -0.784064 -0.467172 0.0336036 0.0211321 0.0336036 0 0 0 0 0 0 +LA 2.47146 +SE +ID 7459 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.771489) +QA StripPairing (Best reduced chi square is not below 25 (79.858356)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.160573)) (GR Hit: Detector ID 0 and Energy 104.401947) +BD GR Veto +PQ 79.8584 +SE +ET UN +ID 7460 +TI 1771360833.806013263 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5144 +SE +ET UN +ID 7461 +TI 1771360833.807409463 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 80.2129 +SE +ET UN +ID 7462 +TI 1771360833.808705930 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.1075 +SE +ET PH +ID 7463 +TI 1771360833.811364013 +CC NStripHits 2 +PE 83.783 +PP 2.84002 0.343883 2.44298 +PW 0 +SE +ET UN +ID 7464 +TI 1771360833.812262546 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6161 +SE +ET PH +ID 7465 +TI 1771360833.814144196 +CC NStripHits 2 +PE 81.7822 +PP -0.186547 0.284152 -0.467172 +PW 0 +SE +ET UN +ID 7466 +TI 1771360833.814428063 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1089 +SE +ET PH +ID 7467 +TI 1771360833.815207463 +CC NStripHits 4 +PE 302.785 +PP 3.18923 -0.839823 -2.09686 +PW 0 +SE +ET PH +ID 7468 +TI 1771360833.815614413 +CC NStripHits 3 +PE 82.8469 +PP 2.14158 0.372817 -2.09686 +PW 0 +SE +ET PH +ID 7469 +TI 1771360833.816249063 +CC NStripHits 3 +PE 79.8685 +PP 1.21033 0.324953 -4.30858 +PW 0 +SE +ET UN +ID 7470 +TI 1771360833.816718096 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 52.9713 +SE +ET PH +ID 7471 +TI 1771360833.817853430 +CC NStripHits 3 +PE 230.964 +PP 3.18923 -0.889808 -0.816391 +PW 0 +SE +ET CO +ID 7472 +TI 1771360833.818394596 +CC NStripHits 6 +PQ 11.6464 +SQ 3 +CT 0.0206268 0.265569 +TL 1 +TE 138.702 +CE 203.261 1.73582 138.702 1.0526 +CD 3.42205 -1.09698 1.04611 0.0336036 0.023458 0.0336036 -1.00139 -0.385905 1.62814 0.0336036 0.0245817 0.0336036 0 0 0 0 0 0 +LA 3.68499 +SE +ID 7473 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.063054) +BD GR Veto +PQ 0.00221629 +SE +ET UN +ID 7474 +TI 1771360833.820537263 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 303.23 +SE +ID 7475 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.923890) (Strip hit removed with energy 8.821051) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.935642) +BD GR Veto +PQ 5.28499 +SE +ET PH +ID 7476 +TI 1771360833.824689147 +CC NStripHits 4 +PE 81.7803 +PP -0.186547 0.129431 -2.56248 +PW 0 +SE +ET UN +ID 7477 +TI 1771360833.825396980 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 65.765 +SE +ET UN +ID 7478 +TI 1771360833.825502113 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0194 +SE +ET PH +ID 7479 +TI 1771360833.826185597 +CC NStripHits 2 +PE 68.1148 +PP -1.00139 0.294093 1.51173 +PW 0 +SE +ET PH +ID 7480 +TI 1771360833.826329513 +CC NStripHits 3 +PE 278.52 +PP 0.162672 0.353816 -4.42498 +PW 0 +SE +ET PH +ID 7481 +TI 1771360833.827225963 +CC NStripHits 2 +PE 31.1139 +PP 1.55955 -0.0218457 -0.117953 +PW 0 +SE +ET PH +ID 7482 +TI 1771360833.827550980 +CC NStripHits 3 +PE 126.433 +PP 3.88767 -0.546756 -2.9117 +PW 0 +SE +ET UN +ID 7483 +TI 1771360833.828026997 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.3968 +SE +ET PH +ID 7484 +TI 1771360833.828407130 +CC NStripHits 2 +PE 95.2387 +PP 3.88767 0.372833 -3.61014 +PW 0 +SE +ET UN +ID 7485 +TI 1771360833.829172363 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 64.6973 +SE +ET PH +ID 7486 +TI 1771360833.829965147 +CC NStripHits 2 +PE 182.094 +PP -2.28186 0.358105 -4.19217 +PW 0 +SE +ET PH +ID 7487 +TI 1771360833.830084830 +CC NStripHits 2 +PE 278.557 +PP 0.279078 0.159246 1.74455 +PW 0 +SE +ET PH +ID 7488 +TI 1771360833.830400680 +CC NStripHits 2 +PE 123.179 +PP 3.18923 0.184082 -1.63123 +PW 0 +SE +ET PH +ID 7489 +TI 1771360833.832641230 +CC NStripHits 2 +PE 355.928 +PP -2.28186 0.0771801 -1.28202 +PW 0 +SE +ID 7490 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (49.366556)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.041224)) +BD GR Veto +PQ 49.3666 +SE +ET PH +ID 7491 +TI 1771360833.833381830 +CC NStripHits 2 +PE 73.7128 +PP 1.55955 0.222981 0.929703 +PW 0 +SE +ET UN +ID 7492 +TI 1771360833.833998263 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 230.047 +SE +ET PH +ID 7493 +TI 1771360833.835044463 +CC NStripHits 2 +PE 86.0464 +PP -1.2342 0.353255 2.21017 +PW 0 +SE +ET CO +ID 7494 +TI 1771360833.835292997 +CC NStripHits 4 +PQ 3.51034 +SQ 2 +CT 0 1 +TL 1 +TE 118.859 +CE 238.281 1.44658 118.859 1.06002 +CD 3.53845 -0.554283 -2.09686 0.0336036 0.0230762 0.0336036 3.18923 -0.867608 -1.28202 0.0336036 0.0202925 0.0336036 0 0 0 0 0 0 +LA 0.940261 +SE +ET PH +ID 7495 +TI 1771360833.837379930 +CC NStripHits 3 +PE 353.826 +PP -0.884984 -0.379377 -1.63123 +PW 0 +SE +ID 7496 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 46.879535) +BD GR Veto +PQ 0.362735 +SE +ET PH +ID 7497 +TI 1771360833.841389780 +CC NStripHits 2 +PE 80.9634 +PP 2.14158 0.366457 -3.37733 +PW 0 +SE +ET PH +ID 7498 +TI 1771360833.841480997 +CC NStripHits 2 +PE 80.4381 +PP 4.3533 0.367415 -3.02811 +PW 0 +SE +ET PH +ID 7499 +TI 1771360833.842170780 +CC NStripHits 2 +PE 77.8415 +PP 0.861109 0.0421846 2.09377 +PW 0 +SE +ET PH +ID 7500 +TI 1771360833.846303514 +CC NStripHits 2 +PE 80.8903 +PP -0.768578 0.186023 -3.14452 +PW 0 +SE +ET PH +ID 7501 +TI 1771360833.847957864 +CC NStripHits 3 +PE 164.783 +PP -1.93264 0.0378087 2.32658 +PW 0 +SE +ET CO +ID 7502 +TI 1771360833.849332414 +CC NStripHits 4 +PQ 10.135 +SQ 2 +CT 0 1 +TL 1 +TE 105.351 +CE 172.39 1.02913 105.351 1.5317 +CD 0.395484 -0.250742 -1.63123 0.0336036 0.0254643 0.0336036 0.511891 -0.143408 -1.74764 0.0336036 0.0263637 0.0336036 0 0 0 0 0 0 +LA 0.196526 +SE +ET PH +ID 7503 +TI 1771360833.849493030 +CC NStripHits 2 +PE 112.505 +PP 0.395484 -1.03242 -0.467172 +PW 0 +SE +ET PH +ID 7504 +TI 1771360833.850982630 +CC NStripHits 2 +PE 355.751 +PP 3.18923 0.0653296 1.16252 +PW 0 +SE +ID 7505 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 42.335022) +BD GR Veto +PQ 0.000147594 +SE +ET UN +ID 7506 +TI 1771360833.852639264 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7507 +TI 1771360833.853071564 +CC NStripHits 2 +PE 104.1 +PP -0.419359 0.369282 -3.84295 +PW 0 +SE +ID 7508 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.693237) +QA StripPairing (GR Hit: Detector ID 0 and Energy 177.027687) +BD GR Veto +PQ 15.2521 +SE +ET UN +ID 7509 +TI 1771360833.854091664 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 61.9507 +SE +ET PH +ID 7510 +TI 1771360833.855725764 +CC NStripHits 2 +PE 243.003 +PP -2.74748 0.276172 -1.28202 +PW 0 +SE +ID 7511 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (44.714290)) (GR Hit: Detector ID 0 and Energy 168.192876) +BD GR Veto +PQ 44.7143 +SE +ET PH +ID 7512 +TI 1771360833.857812880 +CC NStripHits 3 +PE 357.243 +PP 3.18923 -0.80121 -0.699984 +PW 0 +SE +ET PH +ID 7513 +TI 1771360833.860524864 +CC NStripHits 2 +PE 57.2306 +PP -2.9803 -0.435188 -0.00154687 +PW 0 +SE +ET UN +ID 7514 +TI 1771360833.860859264 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.386 +SE +ET PH +ID 7515 +TI 1771360833.860953097 +CC NStripHits 3 +PE 357.055 +PP 2.72361 -0.310781 -3.72655 +PW 0 +SE +ET CO +ID 7516 +TI 1771360833.863675347 +CC NStripHits 5 +PQ 1.55789 +SQ 2 +CT 0 1 +TL 1 +TE 56.9494 +CE 130.521 1.15058 56.9494 1.00519 +CD 1.09392 0.233703 0.114859 0.0336036 0.0345253 0.0336036 1.90877 0.356319 -0.117953 0.0336036 0.0304237 0.0336036 0 0 0 0 0 0 +LA 0.856281 +SE +ID 7517 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.249508) +BD GR Veto +PQ 0.279887 +SE +ID 7518 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.574131) +BD GR Veto +PQ 6.34059 +SE +ET PH +ID 7519 +TI 1771360833.866955314 +CC NStripHits 3 +PE 89.7418 +PP 1.67595 -0.192242 -1.98045 +PW 0 +SE +ET CO +ID 7520 +TI 1771360833.867537431 +CC NStripHits 5 +PQ 0.492624 +SQ 2 +CT 0.501106 0.498894 +TL 1 +TE 153.589 +CE 200.756 1.15019 153.589 0.988288 +CD -2.16545 0.330177 2.21017 0.0336036 0.0391931 0.0336036 -2.63108 0.344682 1.27892 0.0336036 0.035214 0.0336036 0 0 0 0 0 0 +LA 1.04127 +SE +ID 7521 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.416266) +BD GR Veto +PQ 0.0267816 +SE +ET PH +ID 7522 +TI 1771360833.871533064 +CC NStripHits 2 +PE 80.6799 +PP 2.84002 0.169934 -1.86405 +PW 0 +SE +ID 7523 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.906636) +BD GR Veto +PQ 0.000497981 +SE +ET PH +ID 7524 +TI 1771360833.879831631 +CC NStripHits 2 +PE 356.134 +PP -0.302953 0.140091 -4.42498 +PW 0 +SE +ID 7525 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.042953) +BD GR Veto +PQ 0.0888567 +SE +ID 7526 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 7527 +TI 1771360833.883807631 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4169 +SE +ID 7528 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.387425) +BD GR Veto +PQ +SE +ID 7529 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET PH +ID 7530 +TI 1771360833.884664564 +CC NStripHits 2 +PE 66.7645 +PP 3.88767 0.12517 0.464078 +PW 0 +SE +ET PH +ID 7531 +TI 1771360833.885377931 +CC NStripHits 2 +PE 77.6694 +PP -2.04905 0.286418 -2.21327 +PW 0 +SE +ET CO +ID 7532 +TI 1771360833.887499481 +CC NStripHits 7 +PQ 13.0959 +SQ 2 +CT 0 1 +TL 1 +TE 71.2089 +CE 285.331 2.02791 71.2089 1.42914 +CD 2.02517 -0.808256 -2.32967 0.0336036 0.0208296 0.0336036 2.25798 -0.715437 -2.56248 0.0336036 0.0220901 0.0336036 0 0 0 0 0 0 +LA 0.342077 +SE +ET PH +ID 7533 +TI 1771360833.889166364 +CC NStripHits 2 +PE 80.3633 +PP 1.44314 0.00257717 -2.32967 +PW 0 +SE +ID 7534 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.806974) +BD GR Veto +PQ 0.018871 +SE +ID 7535 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (406.800061)) (GR Hit: Detector ID 0 and Energy 230.376044) +BD GR Veto +PQ 406.8 +SE +ET PH +ID 7536 +TI 1771360833.890742481 +CC NStripHits 2 +PE 248.203 +PP 3.18923 0.0980866 -0.583578 +PW 0 +SE +ET PH +ID 7537 +TI 1771360833.891436664 +CC NStripHits 3 +PE 202.709 +PP 2.6072 -1.12834 1.97736 +PW 0 +SE +ET UN +ID 7538 +TI 1771360833.893145164 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7539 +TI 1771360833.894617814 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.4759 +SE +ET UN +ID 7540 +TI 1771360833.895438914 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7541 +TI 1771360833.896048348 +CC NStripHits 2 +PE 79.1708 +PP 2.02517 0.049905 -1.63123 +PW 0 +SE +ET UN +ID 7542 +TI 1771360833.896968198 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 113.801 +SE +ID 7543 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 7544 +TI 1771360833.899569698 +CC NStripHits 2 +PE 80.522 +PP 1.90877 0.143591 -0.583578 +PW 0 +SE +ID 7545 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.144750) +BD GR Veto +PQ 0.0872211 +SE +ID 7546 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 119.486391) +BD GR Veto +PQ 0.0601469 +SE +ET PH +ID 7547 +TI 1771360833.903008815 +CC NStripHits 3 +PE 271.435 +PP 1.21033 0.204409 -3.61014 +PW 0 +SE +ET UN +ID 7548 +TI 1771360833.904057598 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 90.942 +SE +ID 7549 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.985775) (Strip hit removed with energy 14.710126) (Strip hit removed with energy 6.638261) +QA StripPairing (GR Hit: Detector ID 0 and Energy 95.769684) +BD GR Veto +PQ 12.8246 +SE +ET PH +ID 7550 +TI 1771360833.904900881 +CC NStripHits 3 +PE 82.2166 +PP -1.58342 -0.214726 1.27892 +PW 0 +SE +ET PH +ID 7551 +TI 1771360833.905222531 +CC NStripHits 3 +PE 80.8844 +PP -2.86389 0.357673 -1.39842 +PW 0 +SE +ET UN +ID 7552 +TI 1771360833.905958315 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 178.819 +SE +ET UN +ID 7553 +TI 1771360833.908427231 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 193.563 +SE +ET PH +ID 7554 +TI 1771360833.908795065 +CC NStripHits 2 +PE 67.7297 +PP -1.58342 -0.380123 2.21017 +PW 0 +SE +ID 7555 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.321251) +BD GR Veto +PQ 0.267014 +SE +ID 7556 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.555169) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 25.442545)) (GR Hit: Detector ID 0 and Energy 65.790757) +BD GR Veto +PQ 2.68995 +SE +ET UN +ID 7557 +TI 1771360833.911001148 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7558 +TI 1771360833.912616798 +CC NStripHits 2 +PE 31.2289 +PP 2.14158 0.0190152 1.27892 +PW 0 +SE +ET PH +ID 7559 +TI 1771360833.913574931 +CC NStripHits 2 +PE 172.455 +PP 2.95642 0.322133 -3.49373 +PW 0 +SE +ET PH +ID 7560 +TI 1771360833.915188565 +CC NStripHits 2 +PE 80.901 +PP -1.2342 0.367903 -3.61014 +PW 0 +SE +ET UN +ID 7561 +TI 1771360833.915673381 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0952 +SE +ID 7562 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 7563 +TI 1771360833.918199215 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9669 +SE +ID 7564 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.866212) (GR Hit: Detector ID 0 and Energy 54.369308) +BD GR Veto +PQ 9.37223 +SE +ET PH +ID 7565 +TI 1771360833.920838232 +CC NStripHits 2 +PE 103.744 +PP -1.81623 -1.14279 -4.42498 +PW 0 +SE +ET UN +ID 7566 +TI 1771360833.921025798 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.4666 +SE +ET CO +ID 7567 +TI 1771360833.921242632 +CC NStripHits 5 +PQ 0.395764 +SQ 2 +CT 0 1 +TL 1 +TE 64.9398 +CE 238.219 1.20306 64.9398 1.01166 +CD 1.55955 0.325238 2.44298 0.0336036 0.040103 0.0336036 1.79236 -0.0361415 2.55939 0.0336036 0.0273686 0.0336036 0 0 0 0 0 0 +LA 0.445362 +SE +ID 7568 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 92.651319) +BD GR Veto +PQ 0.0305988 +SE +ID 7569 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.570180) +BD GR Veto +PQ +SE +ET PH +ID 7570 +TI 1771360833.924065398 +CC NStripHits 2 +PE 27.084 +PP -0.652172 -0.550509 1.51173 +PW 0 +SE +ET PH +ID 7571 +TI 1771360833.925200148 +CC NStripHits 3 +PE 95.4909 +PP -1.58342 -1.07524 1.74455 +PW 0 +SE +ET PH +ID 7572 +TI 1771360833.925924882 +CC NStripHits 2 +PE 71.5091 +PP 0.511891 0.333361 1.74455 +PW 0 +SE +ET PH +ID 7573 +TI 1771360833.926328732 +CC NStripHits 2 +PE 100.917 +PP 1.55955 0.34496 -4.42498 +PW 0 +SE +ET PH +ID 7574 +TI 1771360833.926731065 +CC NStripHits 3 +PE 190.411 +PP 2.02517 0.169481 1.04611 +PW 0 +SE +ET CO +ID 7575 +TI 1771360833.926912182 +CC NStripHits 5 +PQ 0.462938 +SQ 2 +CT 0 1 +TL 1 +TE 157.793 +CE 443.355 1.23918 157.793 1.04111 +CD 1.44314 -0.166708 -2.32967 0.0336036 0.0261197 0.0336036 1.55955 0.113547 -2.56248 0.0336036 0.0291859 0.0336036 0 0 0 0 0 0 +LA 0.382485 +SE +ET CO +ID 7576 +TI 1771360833.929231232 +CC NStripHits 6 +PQ 61.1646 +SQ 2 +CT 0 1 +TL 1 +TE 133.761 +CE 222.257 1.94327 133.761 0.983345 +CD -0.535766 -0.277001 -2.44608 0.0336036 0.0253232 0.0336036 -0.652172 -0.876979 -1.63123 0.0336036 0.0201951 0.0336036 0 0 0 0 0 0 +LA 1.01858 +SE +ET UN +ID 7577 +TI 1771360833.930091898 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.6718 +SE +ET PH +ID 7578 +TI 1771360833.932826565 +CC NStripHits 2 +PE 40.8072 +PP -0.0701406 -0.164073 -3.95936 +PW 0 +SE +ET PH +ID 7579 +TI 1771360833.934569332 +CC NStripHits 3 +PE 187.323 +PP -2.74748 0.370656 1.27892 +PW 0 +SE +ID 7580 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.498818) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.842845) +BD GR Veto +PQ 3.53323 +SE +ET UN +ID 7581 +TI 1771360833.935259965 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.5144 +SE +ET PH +ID 7582 +TI 1771360833.936718098 +CC NStripHits 2 +PE 207.763 +PP 3.65486 -0.119934 -1.63123 +PW 0 +SE +ET PH +ID 7583 +TI 1771360833.937259282 +CC NStripHits 2 +PE 80.1525 +PP 0.744703 0.216338 -0.816391 +PW 0 +SE +ET PH +ID 7584 +TI 1771360833.937487648 +CC NStripHits 3 +PE 185.736 +PP -0.768578 -0.711957 -1.28202 +PW 0 +SE +ET PH +ID 7585 +TI 1771360833.937855065 +CC NStripHits 2 +PE 80.0794 +PP 3.53845 0.0573864 -1.51483 +PW 0 +SE +ID 7586 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.648008) +BD GR Veto +PQ 0.30947 +SE +ET PH +ID 7587 +TI 1771360833.938512848 +CC NStripHits 2 +PE 28.2766 +PP 4.12048 0.136955 1.74455 +PW 0 +SE +ET CO +ID 7588 +TI 1771360833.939565998 +CC NStripHits 4 +PQ 15.559 +SQ 2 +CT 0 1 +TL 1 +TE 93.6087 +CE 209.156 1.00051 93.6087 1.38883 +CD -0.652172 -0.651169 -3.02811 0.0336036 0.0225443 0.0336036 -0.535766 -0.550126 -2.56248 0.0336036 0.0231086 0.0336036 0 0 0 0 0 0 +LA 0.490481 +SE +ID 7589 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.137790) +BD GR Veto +PQ +SE +ET PH +ID 7590 +TI 1771360833.941947515 +CC NStripHits 2 +PE 81.1669 +PP 1.44314 -0.411748 -3.14452 +PW 0 +SE +ID 7591 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.841085) +BD GR Veto +PQ 4.45057 +SE +ID 7592 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.699304) +QA StripPairing (GR Hit: Detector ID 0 and Energy 42.924919) +BD GR Veto +PQ 12.1134 +SE +ET PH +ID 7593 +TI 1771360833.944732815 +CC NStripHits 2 +PE 303.282 +PP 3.53845 0.372875 -2.9117 +PW 0 +SE +ET PH +ID 7594 +TI 1771360833.945321732 +CC NStripHits 2 +PE 79.9191 +PP -1.00139 0.278691 -1.51483 +PW 0 +SE +ET PH +ID 7595 +TI 1771360833.947438365 +CC NStripHits 4 +PE 79.4619 +PP 3.77127 0.075235 1.97736 +PW 0 +SE +ID 7596 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.570180) +BD GR Veto +PQ +SE +ET UN +ID 7597 +TI 1771360833.948894282 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7598 +TI 1771360833.949940099 +CC NStripHits 2 +PE 82.5468 +PP 0.279078 0.0774903 0.464078 +PW 0 +SE +ET PH +ID 7599 +TI 1771360833.950030865 +CC NStripHits 2 +PE 119.697 +PP 4.3533 0.00726323 -0.350766 +PW 0 +SE +ID 7600 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.150915) +BD GR Veto +PQ 2.81097 +SE +ET PH +ID 7601 +TI 1771360833.951415032 +CC NStripHits 3 +PE 185.919 +PP 1.44314 0.233056 0.347672 +PW 0 +SE +ET UN +ID 7602 +TI 1771360833.951579232 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 355.782 +SE +ET UN +ID 7603 +TI 1771360833.952101932 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 7604 +TI 1771360833.953481949 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.3847 +SE +ET PH +ID 7605 +TI 1771360833.954437865 +CC NStripHits 2 +PE 58.1037 +PP -0.302953 -1.15453 -4.07577 +PW 0 +SE +ET PH +ID 7606 +TI 1771360833.954938749 +CC NStripHits 2 +PE 92.1674 +PP 0.395484 0.286496 2.32658 +PW 0 +SE +ET PH +ID 7607 +TI 1771360833.955598182 +CC NStripHits 2 +PE 81.0514 +PP 0.162672 0.303795 -3.14452 +PW 0 +SE +ET PH +ID 7608 +TI 1771360833.955866965 +CC NStripHits 2 +PE 89.292 +PP 0.0462656 0.28191 0.696891 +PW 0 +SE +ET PH +ID 7609 +TI 1771360833.957245615 +CC NStripHits 2 +PE 65.0949 +PP 3.77127 -1.16122 2.44298 +PW 0 +SE +ET UN +ID 7610 +TI 1771360833.957338982 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7611 +TI 1771360833.957423282 +CC NStripHits 2 +PE 61.4982 +PP -2.28186 0.333397 -2.7953 +PW 0 +SE +ET UN +ID 7612 +TI 1771360833.957890915 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0435 +SE +ET CO +ID 7613 +TI 1771360833.959354915 +CC NStripHits 5 +PQ 45.5271 +SQ 2 +CT 0 1 +TL 1 +TE 96.1169 +CE 160.543 1.14498 96.1169 1.45201 +CD -1.81623 0.226458 -2.32967 0.0336036 0.0338043 0.0336036 -1.35061 -0.159509 0.464078 0.0336036 0.0261943 0.0336036 0 0 0 0 0 0 +LA 2.85846 +SE +ET UN +ID 7614 +TI 1771360833.959529182 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7615 +TI 1771360833.959875849 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7616 +TI 1771360833.961011282 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.1557 +SE +ET PH +ID 7617 +TI 1771360833.961980249 +CC NStripHits 3 +PE 140.502 +PP 2.14158 0.261712 0.347672 +PW 0 +SE +ID 7618 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.157119) +BD GR Veto +PQ +SE +ET PH +ID 7619 +TI 1771360833.965725682 +CC NStripHits 2 +PE 60.6278 +PP 0.279078 -0.406322 -0.117953 +PW 0 +SE +ID 7620 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.974344) +BD GR Veto +PQ +SE +ET PH +ID 7621 +TI 1771360833.966290516 +CC NStripHits 2 +PE 63.7281 +PP 2.95642 0.177221 1.62814 +PW 0 +SE +ET PH +ID 7622 +TI 1771360833.966754516 +CC NStripHits 2 +PE 82.6493 +PP -1.00139 0.356978 0.696891 +PW 0 +SE +ET PH +ID 7623 +TI 1771360833.967239816 +CC NStripHits 3 +PE 160.571 +PP 2.84002 0.34074 -1.28202 +PW 0 +SE +ET PH +ID 7624 +TI 1771360833.967973266 +CC NStripHits 2 +PE 115.08 +PP 0.0462656 -1.14868 -0.583578 +PW 0 +SE +ET PH +ID 7625 +TI 1771360833.968777149 +CC NStripHits 4 +PE 355.787 +PP -1.1178 -0.308201 -1.86405 +PW 0 +SE +ET PH +ID 7626 +TI 1771360833.969420999 +CC NStripHits 2 +PE 76.3679 +PP 3.65486 0.369751 -0.00154687 +PW 0 +SE +ET UN +ID 7627 +TI 1771360833.973386149 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5588 +SE +ET PH +ID 7628 +TI 1771360833.974166949 +CC NStripHits 2 +PE 152.645 +PP 1.44314 0.370896 0.929703 +PW 0 +SE +ET UN +ID 7629 +TI 1771360833.974810882 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7630 +TI 1771360833.975054416 +CC NStripHits 2 +PE 75.2417 +PP -0.535766 -0.0676854 -4.42498 +PW 0 +SE +ID 7631 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.333725) (Strip hit removed with energy 10.342286) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.633568) +BD GR Veto +PQ 5.25092 +SE +ET PH +ID 7632 +TI 1771360833.975624549 +CC NStripHits 4 +PE 161.164 +PP 2.4908 0.198675 -1.28202 +PW 0 +SE +ET PH +ID 7633 +TI 1771360833.979024599 +CC NStripHits 2 +PE 78.5949 +PP 1.55955 0.343961 0.114859 +PW 0 +SE +ET UN +ID 7634 +TI 1771360833.979096682 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 81.899 +SE +ET UN +ID 7635 +TI 1771360833.980662366 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1109 +SE +ET UN +ID 7636 +TI 1771360833.982881449 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 25.9113 +SE +ID 7637 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 7638 +TI 1771360833.984929183 +CC NStripHits 7 +PQ 2.49615 +SQ 3 +CT 0.00232302 0.00532731 +TL 1 +TE 46.5697 +CE 183.749 2.16966 46.5697 0.940355 +CD -0.302953 -0.214163 1.97736 0.0336036 0.0257465 0.0336036 -1.2342 -0.537699 1.04611 0.0336036 0.0232 0.0336036 0 0 0 0 0 0 +LA 1.20827 +SE +ET UN +ID 7639 +TI 1771360833.985159799 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 6 +PE 220.617 +SE +ET PH +ID 7640 +TI 1771360833.985507649 +CC NStripHits 2 +PE 25.7464 +PP 3.18923 -0.322397 1.27892 +PW 0 +SE +ET PH +ID 7641 +TI 1771360833.991715249 +CC NStripHits 2 +PE 81.1468 +PP 2.95642 0.334668 -1.86405 +PW 0 +SE +ID 7642 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.786485) +BD GR Veto +PQ 0.0294868 +SE +ID 7643 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 51.511231) +BD GR Veto +PQ 0.0105076 +SE +ID 7644 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 39.185548) +BD GR Veto +PQ 0.333842 +SE +ET PH +ID 7645 +TI 1771360833.994185783 +CC NStripHits 3 +PE 356.688 +PP 2.72361 0.124432 -1.74764 +PW 0 +SE +ET UN +ID 7646 +TI 1771360833.994295133 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.5607 +SE +ET UN +ID 7647 +TI 1771360833.994459849 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 135.596 +SE +ET PH +ID 7648 +TI 1771360833.996005549 +CC NStripHits 3 +PE 304.046 +PP 0.0462656 0.0637077 -1.98045 +PW 0 +SE +ET UN +ID 7649 +TI 1771360833.999375283 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7650 +TI 1771360834.000002600 +CC NStripHits 2 +PE 25.4872 +PP 0.279078 -0.231854 -2.56248 +PW 0 +SE +ID 7651 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.891348) +BD GR Veto +PQ 0.0155693 +SE +ID 7652 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ET PH +ID 7653 +TI 1771360834.001523983 +CC NStripHits 2 +PE 72.2273 +PP -1.2342 0.0881907 -4.07577 +PW 0 +SE +ID 7654 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 228.811387) +BD GR Veto +PQ 1.89527 +SE +ID 7655 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 55.199365) +BD GR Veto +PQ 0.0525573 +SE +ET UN +ID 7656 +TI 1771360834.002366300 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.9693 +SE +ET UN +ID 7657 +TI 1771360834.003605216 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 7658 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 120.554337) +BD GR Veto +PQ 0.0595352 +SE +ET UN +ID 7659 +TI 1771360834.004101600 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7660 +TI 1771360834.005268766 +CC NStripHits 2 +PE 70.9461 +PP 0.0462656 0.117973 -0.467172 +PW 0 +SE +ID 7661 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.350786) +QA StripPairing (GR Hit: Detector ID 0 and Energy 170.447929) +BD GR Veto +PQ 6.166 +SE +ET UN +ID 7662 +TI 1771360834.008938050 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7253 +SE +ET UN +ID 7663 +TI 1771360834.009611983 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.6821 +SE +ET PH +ID 7664 +TI 1771360834.009915933 +CC NStripHits 2 +PE 72.5592 +PP 0.744703 0.31012 -3.37733 +PW 0 +SE +ET UN +ID 7665 +TI 1771360834.013194900 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.343 +SE +ET PH +ID 7666 +TI 1771360834.013992516 +CC NStripHits 2 +PE 86.4419 +PP 3.77127 0.368997 -1.51483 +PW 0 +SE +ID 7667 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 359.489520) +BD GR Veto +PQ 0.00384986 +SE +ET UN +ID 7668 +TI 1771360834.014842566 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 178.463 +SE +ET PH +ID 7669 +TI 1771360834.016177883 +CC NStripHits 2 +PE 54.9929 +PP -2.39827 0.372573 -4.30858 +PW 0 +SE +ID 7670 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.511147) +BD GR Veto +PQ 0.304799 +SE +ET PH +ID 7671 +TI 1771360834.017587533 +CC NStripHits 2 +PE 60.8279 +PP 0.162672 0.278939 -2.56248 +PW 0 +SE +ID 7672 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 148.768915) +BD GR Veto +PQ 0.38595 +SE +ID 7673 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.407262) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.454118) +BD GR Veto +PQ 2.84546 +SE +ET PH +ID 7674 +TI 1771360834.022147933 +CC NStripHits 2 +PE 138.613 +PP 0.279078 -0.36221 0.464078 +PW 0 +SE +ET PH +ID 7675 +TI 1771360834.022255033 +CC NStripHits 2 +PE 50.3306 +PP -1.81623 0.380298 -0.00154687 +PW 0 +SE +ET UN +ID 7676 +TI 1771360834.028617633 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0411 +SE +ET PH +ID 7677 +TI 1771360834.029801667 +CC NStripHits 2 +PE 124.695 +PP -2.63108 0.359802 -0.816391 +PW 0 +SE +ET PH +ID 7678 +TI 1771360834.032878083 +CC NStripHits 2 +PE 162.478 +PP 2.84002 0.15997 -4.6578 +PW 0 +SE +ET UN +ID 7679 +TI 1771360834.033026750 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0818 +SE +ET UN +ID 7680 +TI 1771360834.034005150 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 7681 +TI 1771360834.035673250 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7701 +SE +ET PH +ID 7682 +TI 1771360834.036229933 +CC NStripHits 3 +PE 80.4474 +PP -1.81623 0.378388 -4.07577 +PW 0 +SE +ID 7683 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 145.258334) +BD GR Veto +PQ 0.653701 +SE +ET UN +ID 7684 +TI 1771360834.039675800 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 49.7691 +SE +ET PH +ID 7685 +TI 1771360834.040717284 +CC NStripHits 2 +PE 32.9607 +PP -1.58342 0.368356 -0.816391 +PW 0 +SE +ET PH +ID 7686 +TI 1771360834.042212567 +CC NStripHits 2 +PE 73.4801 +PP -1.1178 -0.397238 0.464078 +PW 0 +SE +ID 7687 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 7688 +TI 1771360834.044536384 +CC NStripHits 2 +PE 32.083 +PP 0.511891 -0.469278 -3.02811 +PW 0 +SE +ET PH +ID 7689 +TI 1771360834.044816017 +CC NStripHits 3 +PE 80.61 +PP 0.511891 -0.159326 -3.26092 +PW 0 +SE +ET UN +ID 7690 +TI 1771360834.045191817 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 79.3355 +SE +ET PH +ID 7691 +TI 1771360834.048009234 +CC NStripHits 2 +PE 81.8958 +PP 2.37439 0.00880439 -2.7953 +PW 0 +SE +ET PH +ID 7692 +TI 1771360834.048831384 +CC NStripHits 2 +PE 189.68 +PP -1.46702 -1.05611 -0.00154687 +PW 0 +SE +ET PH +ID 7693 +TI 1771360834.050683484 +CC NStripHits 2 +PE 79.2363 +PP 1.55955 0.360268 -4.6578 +PW 0 +SE +ET PH +ID 7694 +TI 1771360834.050780500 +CC NStripHits 2 +PE 78.5793 +PP 3.77127 0.123047 0.231266 +PW 0 +SE +ET PH +ID 7695 +TI 1771360834.050931250 +CC NStripHits 2 +PE 79.8478 +PP 1.90877 0.15212 -4.07577 +PW 0 +SE +ET UN +ID 7696 +TI 1771360834.051710900 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1573 +SE +ET PH +ID 7697 +TI 1771360834.052689984 +CC NStripHits 2 +PE 80.7614 +PP -1.69983 0.369316 -4.07577 +PW 0 +SE +ET PH +ID 7698 +TI 1771360834.053094567 +CC NStripHits 4 +PE 41.0831 +PP -0.652172 -0.759613 -0.816391 +PW 0 +SE +ET CO +ID 7699 +TI 1771360834.053912134 +CC NStripHits 5 +PQ 10.1372 +SQ 2 +CT 0.580973 0.419027 +TL 1 +TE 211.259 +CE 171.188 1.50346 211.259 1.95295 +CD -1.1178 -0.781992 -3.61014 0.0336036 0.021161 0.0336036 -1.46702 -0.840248 -3.26092 0.0336036 0.0204935 0.0336036 0 0 0 0 0 0 +LA 0.497296 +SE +ID 7700 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 23.637158) +BD GR Veto +PQ 0.000948666 +SE +ET PH +ID 7701 +TI 1771360834.064682317 +CC NStripHits 2 +PE 32.0537 +PP 3.18923 -0.0324425 -0.117953 +PW 0 +SE +ET PH +ID 7702 +TI 1771360834.064806301 +CC NStripHits 2 +PE 62.2154 +PP -1.2342 0.367662 2.32658 +PW 0 +SE +ET PH +ID 7703 +TI 1771360834.068915967 +CC NStripHits 2 +PE 66.9692 +PP 0.511891 0.367959 -3.95936 +PW 0 +SE +ET PH +ID 7704 +TI 1771360834.069727584 +CC NStripHits 3 +PE 136.613 +PP -1.93264 -0.747315 -3.49373 +PW 0 +SE +ID 7705 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 7706 +TI 1771360834.070338017 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9848 +SE +ET UN +ID 7707 +TI 1771360834.070622717 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 156.394 +SE +ET PH +ID 7708 +TI 1771360834.072157701 +CC NStripHits 3 +PE 114.463 +PP 0.395484 0.334133 -1.16561 +PW 0 +SE +ET UN +ID 7709 +TI 1771360834.073172201 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0554 +SE +ET UN +ID 7710 +TI 1771360834.073894517 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 251.281 +SE +ID 7711 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 41.261823) +BD GR Veto +PQ 0.154485 +SE +ET PH +ID 7712 +TI 1771360834.074588001 +CC NStripHits 2 +PE 69.5002 +PP -0.652172 0.285732 -0.467172 +PW 0 +SE +ET UN +ID 7713 +TI 1771360834.074948001 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.1362 +SE +ET UN +ID 7714 +TI 1771360834.077175667 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.9085 +SE +ET UN +ID 7715 +TI 1771360834.077598117 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 7716 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.048926) +BD GR Veto +PQ 0.169852 +SE +ET PH +ID 7717 +TI 1771360834.080484534 +CC NStripHits 2 +PE 25.8392 +PP -2.04905 -0.943532 0.347672 +PW 0 +SE +ID 7718 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 248.173772) +BD GR Veto +PQ 0.546753 +SE +ET UN +ID 7719 +TI 1771360834.082122718 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0545 +SE +ET UN +ID 7720 +TI 1771360834.083018018 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 76.5689 +SE +ID 7721 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 7722 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.223976) +BD GR Veto +PQ +SE +ID 7723 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 7724 +TI 1771360834.084310368 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7725 +TI 1771360834.084807701 +CC NStripHits 2 +PE 74.5418 +PP -0.768578 0.33387 -1.28202 +PW 0 +SE +ET PH +ID 7726 +TI 1771360834.085884184 +CC NStripHits 2 +PE 159.943 +PP 2.14158 0.0887873 0.580484 +PW 0 +SE +ID 7727 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.679945) +BD GR Veto +PQ 10.4096 +SE +ET PH +ID 7728 +TI 1771360834.090116818 +CC NStripHits 3 +PE 246.952 +PP 1.21033 -0.830087 -3.49373 +PW 0 +SE +ET UN +ID 7729 +TI 1771360834.090195301 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7730 +TI 1771360834.092591468 +CC NStripHits 2 +PE 154.943 +PP 2.95642 -0.966783 -1.86405 +PW 0 +SE +ET PH +ID 7731 +TI 1771360834.095569334 +CC NStripHits 2 +PE 126.343 +PP -1.81623 -0.246252 2.6758 +PW 0 +SE +ET PH +ID 7732 +TI 1771360834.095933418 +CC NStripHits 3 +PE 159.661 +PP -2.51467 -0.486427 -3.02811 +PW 0 +SE +ID 7733 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.962953) +BD GR Veto +PQ 0.0255948 +SE +ET UN +ID 7734 +TI 1771360834.097128751 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 357.204 +SE +ET PH +ID 7735 +TI 1771360834.097748034 +CC NStripHits 2 +PE 72.5984 +PP 2.6072 -0.497218 -4.42498 +PW 0 +SE +ET PH +ID 7736 +TI 1771360834.097899251 +CC NStripHits 3 +PE 79.8337 +PP 3.77127 0.0872941 1.74455 +PW 0 +SE +ET UN +ID 7737 +TI 1771360834.098767518 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7738 +TI 1771360834.099996951 +CC NStripHits 2 +PE 73.2156 +PP 0.861109 0.338747 -1.98045 +PW 0 +SE +ID 7739 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.325647) +BD GR Veto +PQ 0.487143 +SE +ET PH +ID 7740 +TI 1771360834.101205451 +CC NStripHits 2 +PE 80.5419 +PP -2.04905 0.0717205 0.813297 +PW 0 +SE +ET CO +ID 7741 +TI 1771360834.102270468 +CC NStripHits 4 +PQ 4.50052 +SQ 2 +CT 0.513545 0.486455 +TL 1 +TE 183.157 +CE 175.13 1.08082 183.157 1.48528 +CD -1.69983 -0.0976341 1.74455 0.0336036 0.0267787 0.0336036 -2.9803 -0.390789 1.62814 0.0336036 0.0245385 0.0336036 0 0 0 0 0 0 +LA 1.31875 +SE +ET UN +ID 7742 +TI 1771360834.102433035 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 160.33 +SE +ET PH +ID 7743 +TI 1771360834.103186101 +CC NStripHits 2 +PE 48.8977 +PP -0.768578 0.377459 -2.32967 +PW 0 +SE +ET UN +ID 7744 +TI 1771360834.105055368 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7745 +TI 1771360834.108818885 +CC NStripHits 2 +PE 28.6035 +PP 4.3533 0.0151363 0.231266 +PW 0 +SE +ET PH +ID 7746 +TI 1771360834.109080785 +CC NStripHits 3 +PE 209.332 +PP -0.535766 -1.16573 2.21017 +PW 0 +SE +ET PH +ID 7747 +TI 1771360834.111233485 +CC NStripHits 2 +PE 157.579 +PP 2.4908 0.221979 -2.44608 +PW 0 +SE +ID 7748 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.272890) +BD GR Veto +PQ 0.0328299 +SE +ET UN +ID 7749 +TI 1771360834.112283785 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 201.067 +SE +ID 7750 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.144052) +BD GR Veto +PQ 0.0530381 +SE +ET PH +ID 7751 +TI 1771360834.116450851 +CC NStripHits 4 +PE 91.4542 +PP -0.186547 -1.00544 0.580484 +PW 0 +SE +ET PH +ID 7752 +TI 1771360834.118239518 +CC NStripHits 2 +PE 100.148 +PP 3.88767 0.123057 -2.21327 +PW 0 +SE +ET PH +ID 7753 +TI 1771360834.120129902 +CC NStripHits 2 +PE 349.132 +PP -0.768578 -0.138296 2.6758 +PW 0 +SE +ID 7754 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.733824) (Strip hit removed with energy 15.395013) (Strip hit removed with energy 16.935700) +BD GR Veto +PQ +SE +ET PH +ID 7755 +TI 1771360834.121669285 +CC NStripHits 2 +PE 80.7767 +PP -1.35061 -0.112006 0.813297 +PW 0 +SE +ET UN +ID 7756 +TI 1771360834.122709668 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 165.468 +SE +ET UN +ID 7757 +TI 1771360834.122949868 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7758 +TI 1771360834.123395902 +CC NStripHits 2 +PE 141.326 +PP 2.37439 0.205046 -3.26092 +PW 0 +SE +ID 7759 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 231.989520) +BD GR Veto +PQ 1.03541 +SE +ET PH +ID 7760 +TI 1771360834.125702285 +CC NStripHits 2 +PE 129.45 +PP 3.88767 0.277346 1.51173 +PW 0 +SE +ET PH +ID 7761 +TI 1771360834.126412652 +CC NStripHits 3 +PE 60.0633 +PP 3.18923 -1.11467 -1.39842 +PW 0 +SE +ID 7762 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.860410) +BD GR Veto +PQ 0.0813298 +SE +ET PH +ID 7763 +TI 1771360834.129082718 +CC NStripHits 2 +PE 213.18 +PP 0.511891 -0.888772 -1.74764 +PW 0 +SE +ET UN +ID 7764 +TI 1771360834.129215718 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7765 +TI 1771360834.129614252 +CC NStripHits 2 +PE 81.3866 +PP -1.93264 -1.16267 1.51173 +PW 0 +SE +ET UN +ID 7766 +TI 1771360834.129987652 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2121 +SE +ET PH +ID 7767 +TI 1771360834.133042452 +CC NStripHits 4 +PE 355.888 +PP 1.21033 -0.823959 -2.21327 +PW 0 +SE +ET UN +ID 7768 +TI 1771360834.134728735 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.6782 +SE +ET UN +ID 7769 +TI 1771360834.134935252 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.4235 +SE +ET PH +ID 7770 +TI 1771360834.135660018 +CC NStripHits 2 +PE 20.4134 +PP -1.00139 -0.829126 2.09377 +PW 0 +SE +ET PH +ID 7771 +TI 1771360834.137348085 +CC NStripHits 4 +PE 239.807 +PP -1.69983 -0.406689 2.21017 +PW 0 +SE +ID 7772 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.666721) +BD GR Veto +PQ 0.0965707 +SE +ET UN +ID 7773 +TI 1771360834.139390502 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7774 +TI 1771360834.139543118 +CC NStripHits 2 +PE 32.1953 +PP -2.16545 0.373877 2.21017 +PW 0 +SE +ID 7775 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.797762) +BD GR Veto +PQ 0.740023 +SE +ID 7776 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.397366) +BD GR Veto +PQ 0.491969 +SE +ID 7777 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.100456) +BD GR Veto +PQ 0.0205028 +SE +ET PH +ID 7778 +TI 1771360834.144928819 +CC NStripHits 2 +PE 80.2488 +PP -2.04905 0.342558 1.16252 +PW 0 +SE +ID 7779 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.792618) +BD GR Veto +PQ 0.143109 +SE +ET UN +ID 7780 +TI 1771360834.146784652 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 261.095 +SE +ET PH +ID 7781 +TI 1771360834.148454769 +CC NStripHits 2 +PE 107.902 +PP -2.39827 0.340332 0.929703 +PW 0 +SE +ID 7782 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.791573) +BD GR Veto +PQ +SE +ET PH +ID 7783 +TI 1771360834.149891669 +CC NStripHits 3 +PE 98.675 +PP -0.768578 -1.15978 0.347672 +PW 0 +SE +ID 7784 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 39.491801) +BD GR Veto +PQ 1.6763 +SE +ID 7785 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.742590) +BD GR Veto +PQ 0.0654344 +SE +ET PH +ID 7786 +TI 1771360834.156738369 +CC NStripHits 2 +PE 80.2772 +PP 1.55955 0.335841 0.813297 +PW 0 +SE +ET PH +ID 7787 +TI 1771360834.158053869 +CC NStripHits 2 +PE 46.5952 +PP 1.79236 -0.174425 1.04611 +PW 0 +SE +ID 7788 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 180.787503) +BD GR Veto +PQ 6.96176 +SE +ET PH +ID 7789 +TI 1771360834.162702769 +CC NStripHits 2 +PE 34.5026 +PP -2.9803 -0.424367 -0.467172 +PW 0 +SE +ID 7790 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ET PH +ID 7791 +TI 1771360834.163531152 +CC NStripHits 2 +PE 93.8346 +PP 2.95642 0.243485 -1.63123 +PW 0 +SE +ET UN +ID 7792 +TI 1771360834.165002752 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1391 +SE +ET PH +ID 7793 +TI 1771360834.165726302 +CC NStripHits 2 +PE 20.8551 +PP 4.3533 -1.18443 -1.74764 +PW 0 +SE +ET PH +ID 7794 +TI 1771360834.166309936 +CC NStripHits 2 +PE 302.066 +PP 4.00408 -0.17644 1.51173 +PW 0 +SE +ET UN +ID 7795 +TI 1771360834.166804602 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 65.7587 +SE +ET PH +ID 7796 +TI 1771360834.167973202 +CC NStripHits 2 +PE 59.8277 +PP 1.79236 0.256138 -0.816391 +PW 0 +SE +ET UN +ID 7797 +TI 1771360834.168759986 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 127.631 +SE +ET UN +ID 7798 +TI 1771360834.169879586 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.3467 +SE +ET UN +ID 7799 +TI 1771360834.170230102 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7800 +TI 1771360834.171786819 +CC NStripHits 2 +PE 268.882 +PP 2.14158 0.357273 -1.74764 +PW 0 +SE +ET UN +ID 7801 +TI 1771360834.172330502 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.9908 +SE +ID 7802 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.398418) +BD GR Veto +PQ 0.0353452 +SE +ET PH +ID 7803 +TI 1771360834.175080469 +CC NStripHits 3 +PE 80.723 +PP -0.0701406 0.0283645 0.464078 +PW 0 +SE +ID 7804 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 59.116148) +BD GR Veto +PQ 2.15738 +SE +ET PH +ID 7805 +TI 1771360834.176110586 +CC NStripHits 2 +PE 107.399 +PP -0.652172 -0.524297 -0.117953 +PW 0 +SE +ET CO +ID 7806 +TI 1771360834.177671952 +CC NStripHits 4 +PQ 0.784923 +SQ 2 +CT 0 1 +TL 1 +TE 108.981 +CE 192.557 1.01515 108.981 0.983602 +CD -0.535766 0.0735144 1.51173 0.0336036 0.0284733 0.0336036 0.395484 -0.244509 2.6758 0.0336036 0.0255026 0.0336036 0 0 0 0 0 0 +LA 1.52428 +SE +ET UN +ID 7807 +TI 1771360834.179271619 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7808 +TI 1771360834.179947936 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.2397 +SE +ET PH +ID 7809 +TI 1771360834.180460853 +CC NStripHits 2 +PE 80.1273 +PP 1.79236 0.357374 -1.16561 +PW 0 +SE +ET PH +ID 7810 +TI 1771360834.181532136 +CC NStripHits 2 +PE 80.6915 +PP 3.65486 0.279707 -3.72655 +PW 0 +SE +ID 7811 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.445359) +BD GR Veto +PQ +SE +ET UN +ID 7812 +TI 1771360834.183652053 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.4441 +SE +ET PH +ID 7813 +TI 1771360834.184015386 +CC NStripHits 2 +PE 68.7376 +PP -2.51467 0.35735 -3.02811 +PW 0 +SE +ET PH +ID 7814 +TI 1771360834.184783686 +CC NStripHits 2 +PE 29.3557 +PP 1.32673 0.378088 0.464078 +PW 0 +SE +ET UN +ID 7815 +TI 1771360834.186080269 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.2247 +SE +ID 7816 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.618373) +BD GR Veto +PQ 0.159608 +SE +ID 7817 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 119.783527) +BD GR Veto +PQ 0.148494 +SE +ID 7818 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.048194) (Strip hit removed with energy 13.388318) (Strip hit removed with energy 6.813454) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 29.114603)) (GR Hit: Detector ID 0 and Energy 522.453196) (GR Hit: Detector ID 0 and Energy 732.007342) +BD GR Veto +PQ 24.7241 +SE +ET CO +ID 7819 +TI 1771360834.189879853 +CC NStripHits 6 +PQ 0.769586 +SQ 2 +CT 0 1 +TL 1 +TE 132.262 +CE 209.098 1.21493 132.262 1.00554 +CD 1.55955 -0.550084 1.62814 0.0336036 0.0231089 0.0336036 2.37439 -0.439582 1.16252 0.0336036 0.0240409 0.0336036 0 0 0 0 0 0 +LA 0.944975 +SE +ID 7820 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.067864) +BD GR Veto +PQ 8.0407 +SE +ET PH +ID 7821 +TI 1771360834.190266303 +CC NStripHits 3 +PE 201.747 +PP 1.79236 0.35748 1.51173 +PW 0 +SE +ET UN +ID 7822 +TI 1771360834.190549536 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7823 +TI 1771360834.192324019 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.0341 +SE +ID 7824 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.100069) +QA StripPairing (GR Hit: Detector ID 0 and Energy 94.590346) +BD GR Veto +PQ 6.43882 +SE +ID 7825 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.767512) +BD GR Veto +PQ 0.0337244 +SE +ID 7826 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 200.136811) +BD GR Veto +PQ 8.77375 +SE +ET PH +ID 7827 +TI 1771360834.200199303 +CC NStripHits 3 +PE 223.257 +PP -2.63108 0.352678 -2.32967 +PW 0 +SE +ID 7828 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 54.505882) +BD GR Veto +PQ 0.565214 +SE +ET PH +ID 7829 +TI 1771360834.201733253 +CC NStripHits 2 +PE 199.501 +PP -0.419359 -1.11368 1.74455 +PW 0 +SE +ET UN +ID 7830 +TI 1771360834.202563370 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 48.3019 +SE +ET PH +ID 7831 +TI 1771360834.203078253 +CC NStripHits 2 +PE 77.3349 +PP 2.72361 -0.406957 -0.00154687 +PW 0 +SE +ET UN +ID 7832 +TI 1771360834.203666436 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 6 +PE 205.453 +SE +ET PH +ID 7833 +TI 1771360834.204101386 +CC NStripHits 2 +PE 22.9842 +PP -2.63108 -0.58331 -3.84295 +PW 0 +SE +ET PH +ID 7834 +TI 1771360834.205641286 +CC NStripHits 2 +PE 121.005 +PP 0.511891 -0.816582 -1.74764 +PW 0 +SE +ET PH +ID 7835 +TI 1771360834.207647903 +CC NStripHits 2 +PE 68.3239 +PP 4.00408 0.16058 -3.14452 +PW 0 +SE +ET UN +ID 7836 +TI 1771360834.209776520 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 7837 +TI 1771360834.210167820 +CC NStripHits 4 +PQ 1.17924 +SQ 2 +CT 0 1 +TL 1 +TE 135.732 +CE 154.357 1.02911 135.732 1.00504 +CD 1.32673 -0.44936 2.21017 0.0336036 0.0239481 0.0336036 0.977516 -0.690911 1.62814 0.0336036 0.0223058 0.0336036 0 0 0 0 0 0 +LA 0.720456 +SE +ET PH +ID 7838 +TI 1771360834.212218020 +CC NStripHits 2 +PE 80.4562 +PP 2.95642 0.0150271 -3.26092 +PW 0 +SE +ET PH +ID 7839 +TI 1771360834.213469470 +CC NStripHits 2 +PE 36.3753 +PP 2.4908 0.370885 -1.86405 +PW 0 +SE +ID 7840 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 7841 +TI 1771360834.219253820 +CC NStripHits 2 +PE 82.3979 +PP 1.90877 0.35954 2.44298 +PW 0 +SE +ID 7842 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.658882) +BD GR Veto +PQ 0.61027 +SE +ID 7843 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.127111) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.803616) +BD GR Veto +PQ 19.87 +SE +ET PH +ID 7844 +TI 1771360834.223783837 +CC NStripHits 2 +PE 228.241 +PP -2.74748 0.162748 -1.98045 +PW 0 +SE +ET PH +ID 7845 +TI 1771360834.224414103 +CC NStripHits 2 +PE 77.382 +PP 0.628297 -0.916613 -2.09686 +PW 0 +SE +ET CO +ID 7846 +TI 1771360834.225192370 +CC NStripHits 5 +PQ 6.43234 +SQ 2 +CT 0 1 +TL 1 +TE 126.121 +CE 167.723 1.42511 126.121 1.15798 +CD -0.419359 0.282604 -3.61014 0.0336036 0.0407742 0.0336036 -1.00139 0.356614 -4.30858 0.0336036 0.0302819 0.0336036 0 0 0 0 0 0 +LA 0.912171 +SE +ID 7847 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (36.936818)) (GR Hit: Detector ID 0 and Energy 77.585002) +BD GR Veto +PQ 36.9368 +SE +ET UN +ID 7848 +TI 1771360834.225622670 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 112.693 +SE +ID 7849 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 7850 +TI 1771360834.232895787 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.8065 +SE +ET PH +ID 7851 +TI 1771360834.233989587 +CC NStripHits 2 +PE 81.6957 +PP -1.93264 0.37646 -3.14452 +PW 0 +SE +ET PH +ID 7852 +TI 1771360834.234316437 +CC NStripHits 2 +PE 162.454 +PP -2.04905 -1.13751 -3.37733 +PW 0 +SE +ET UN +ID 7853 +TI 1771360834.235266153 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5409 +SE +ET PH +ID 7854 +TI 1771360834.236538487 +CC NStripHits 2 +PE 32.064 +PP 1.21033 -0.845018 -4.42498 +PW 0 +SE +ET PH +ID 7855 +TI 1771360834.236886570 +CC NStripHits 2 +PE 78.9051 +PP -1.35061 0.37592 0.114859 +PW 0 +SE +ID 7856 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 142.974483) +BD GR Veto +PQ 0.302231 +SE +ET PH +ID 7857 +TI 1771360834.240106520 +CC NStripHits 3 +PE 182.892 +PP 3.53845 -0.882495 -3.02811 +PW 0 +SE +ET UN +ID 7858 +TI 1771360834.242403337 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 130.903 +SE +ET PH +ID 7859 +TI 1771360834.243238820 +CC NStripHits 2 +PE 80.4636 +PP 3.77127 0.250566 -2.21327 +PW 0 +SE +ET PH +ID 7860 +TI 1771360834.243971487 +CC NStripHits 2 +PE 60.6668 +PP 4.12048 0.318575 1.74455 +PW 0 +SE +ET UN +ID 7861 +TI 1771360834.244707970 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 7862 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 7863 +TI 1771360834.245557970 +CC NStripHits 5 +PQ 0.97673 +SQ 2 +CT 0.577661 0.422339 +TL 1 +TE 141.624 +CE 159.103 1.17365 141.624 1.00024 +CD 2.84002 -0.538718 1.27892 0.0336036 0.0231931 0.0336036 3.30564 -0.148715 0.813297 0.0336036 0.0263113 0.0336036 0 0 0 0 0 0 +LA 0.765316 +SE +ET PH +ID 7864 +TI 1771360834.245754487 +CC NStripHits 2 +PE 31.0963 +PP 0.861109 0.198816 -1.86405 +PW 0 +SE +ET UN +ID 7865 +TI 1771360834.248458570 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7866 +TI 1771360834.248936137 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 60.629 +SE +ET UN +ID 7867 +TI 1771360834.250157270 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 7868 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.056548) +BD GR Veto +PQ 8.59594 +SE +ET UN +ID 7869 +TI 1771360834.251084887 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 7870 +TI 1771360834.252123820 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7871 +TI 1771360834.252349420 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.2992 +SE +ET PH +ID 7872 +TI 1771360834.252648787 +CC NStripHits 2 +PE 30.9357 +PP -0.652172 -0.624803 -1.16561 +PW 0 +SE +ET UN +ID 7873 +TI 1771360834.254729487 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 243.471 +SE +ID 7874 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.567046) +BD GR Veto +PQ 0.000518055 +SE +ID 7875 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 42.544944) +BD GR Veto +PQ 4.00748 +SE +ET PH +ID 7876 +TI 1771360834.258988404 +CC NStripHits 2 +PE 80.9859 +PP 0.861109 0.375179 -3.49373 +PW 0 +SE +ET PH +ID 7877 +TI 1771360834.259815337 +CC NStripHits 3 +PE 81.5434 +PP 3.30564 0.0765559 -0.699984 +PW 0 +SE +ET PH +ID 7878 +TI 1771360834.260146271 +CC NStripHits 4 +PE 98.0588 +PP 3.77127 0.333629 0.231266 +PW 0 +SE +ET CO +ID 7879 +TI 1771360834.260819087 +CC NStripHits 5 +PQ 1.10041 +SQ 2 +CT 0.529962 0.470038 +TL 1 +TE 189.498 +CE 166.695 0.961912 189.498 1.15303 +CD 0.162672 -0.233432 0.813297 0.0336036 0.0255822 0.0336036 -1.2342 -0.569243 1.16252 0.0336036 0.0229696 0.0336036 0 0 0 0 0 0 +LA 1.47851 +SE +ID 7880 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (43.262123)) (GR Hit: Detector ID 0 and Energy 79.220054) +BD GR Veto +PQ 43.2621 +SE +ET UN +ID 7881 +TI 1771360834.264194621 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.2146 +SE +ET PH +ID 7882 +TI 1771360834.264658854 +CC NStripHits 2 +PE 81.5041 +PP 0.511891 0.230474 1.39533 +PW 0 +SE +ET UN +ID 7883 +TI 1771360834.265371637 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.2482 +SE +ET PH +ID 7884 +TI 1771360834.267593671 +CC NStripHits 2 +PE 53.4831 +PP 1.67595 0.351768 2.32658 +PW 0 +SE +ET CO +ID 7885 +TI 1771360834.268851637 +CC NStripHits 6 +PQ 0.284015 +SQ 3 +CT 0.0487569 0.409303 +TL 1 +TE 164.315 +CE 193.322 1.38472 164.315 0.98505 +CD -1.93264 0.0410822 -0.117953 0.0336036 0.0280681 0.0336036 -2.04905 -0.06759 -0.00154687 0.0336036 0.027028 0.0336036 0 0 0 0 0 0 +LA 0.19726 +SE +ET UN +ID 7886 +TI 1771360834.271234271 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.0515 +SE +ET PH +ID 7887 +TI 1771360834.271633321 +CC NStripHits 2 +PE 50.8431 +PP 1.90877 -0.686739 -3.49373 +PW 0 +SE +ET CO +ID 7888 +TI 1771360834.272463337 +CC NStripHits 6 +PQ 0.791694 +SQ 3 +CT 0.0223017 1.48317 +TL 1 +TE 23.129 +CE 161.205 1.42694 23.129 0.975678 +CD -1.35061 -0.920245 1.86095 0.0336036 0.0198271 0.0336036 -1.1178 -0.758551 0.231266 0.0336036 0.0215236 0.0336036 0 0 0 0 0 0 +LA 0.174366 +SE +ET PH +ID 7889 +TI 1771360834.274969671 +CC NStripHits 2 +PE 35.7599 +PP -0.535766 0.374895 0.813297 +PW 0 +SE +ET PH +ID 7890 +TI 1771360834.275813854 +CC NStripHits 2 +PE 80.2168 +PP 4.3533 0.0323441 -1.98045 +PW 0 +SE +ET PH +ID 7891 +TI 1771360834.276149737 +CC NStripHits 2 +PE 354.746 +PP 0.861109 -0.99253 -4.19217 +PW 0 +SE +ET PH +ID 7892 +TI 1771360834.276672121 +CC NStripHits 2 +PE 53.8486 +PP 0.395484 0.12897 2.32658 +PW 0 +SE +ET UN +ID 7893 +TI 1771360834.277409671 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.7282 +SE +ID 7894 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.975029) +BD GR Veto +PQ 0.00637712 +SE +ID 7895 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.837745) +BD GR Veto +PQ 2.88235 +SE +ET PH +ID 7896 +TI 1771360834.278605087 +CC NStripHits 2 +PE 80.1435 +PP -1.1178 0.298835 -2.56248 +PW 0 +SE +ET PH +ID 7897 +TI 1771360834.279488454 +CC NStripHits 2 +PE 46.5836 +PP 1.44314 0.101662 -1.63123 +PW 0 +SE +ET UN +ID 7898 +TI 1771360834.280503371 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 7899 +TI 1771360834.280866954 +CC NStripHits 2 +PE 193.663 +PP 3.30564 -0.0345733 2.6758 +PW 0 +SE +ID 7900 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 7901 +TI 1771360834.283856821 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7659 +SE +ID 7902 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 7903 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 7904 +TI 1771360834.285318454 +CC NStripHits 2 +PE 84.0825 +PP 0.0462656 0.371876 -1.16561 +PW 0 +SE +ID 7905 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.426043) +BD GR Veto +PQ +SE +ID 7906 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 352.844796) +BD GR Veto +PQ 0.0744001 +SE +ET CO +ID 7907 +TI 1771360834.290676621 +CC NStripHits 5 +PQ 2.03716 +SQ 2 +CT 0 1 +TL 1 +TE 108.257 +CE 172.317 1.22617 108.257 0.974164 +CD -0.535766 0.318799 0.580484 0.0336036 0.0409843 0.0336036 2.95642 0.193927 -0.699984 0.0336036 0.0316581 0.0336036 0 0 0 0 0 0 +LA 3.72163 +SE +ET PH +ID 7908 +TI 1771360834.291172054 +CC NStripHits 2 +PE 86.8553 +PP -1.58342 0.349449 -2.56248 +PW 0 +SE +ET UN +ID 7909 +TI 1771360834.291429504 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.0845 +SE +ET PH +ID 7910 +TI 1771360834.292783088 +CC NStripHits 2 +PE 89.7765 +PP 4.12048 -0.175415 -3.61014 +PW 0 +SE +ET PH +ID 7911 +TI 1771360834.293107638 +CC NStripHits 2 +PE 77.8267 +PP -2.39827 0.269246 2.44298 +PW 0 +SE +ID 7912 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.676342) +BD GR Veto +PQ 0.317923 +SE +ID 7913 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.168606) +BD GR Veto +PQ 2.80471e-06 +SE +ET PH +ID 7914 +TI 1771360834.294534788 +CC NStripHits 4 +PE 226.369 +PP 2.95642 -0.31045 0.347672 +PW 0 +SE +ET UN +ID 7915 +TI 1771360834.294975621 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.125 +SE +ET PH +ID 7916 +TI 1771360834.295255838 +CC NStripHits 2 +PE 29.4477 +PP 0.861109 -1.18334 0.813297 +PW 0 +SE +ID 7917 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.798651) +BD GR Veto +PQ 0.689359 +SE +ET UN +ID 7918 +TI 1771360834.296045338 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 7919 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 7920 +TI 1771360834.298952821 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 60.6764 +SE +ET CO +ID 7921 +TI 1771360834.303614005 +CC NStripHits 7 +PQ 4.83558 +SQ 2 +CT 0 1 +TL 1 +TE 112.88 +CE 175.141 1.41135 112.88 1.96296 +CD 2.02517 -0.295852 0.813297 0.0336036 0.025211 0.0336036 3.30564 -0.0954614 1.39533 0.0336036 0.0268067 0.0336036 0 0 0 0 0 0 +LA 1.42075 +SE +ET PH +ID 7922 +TI 1771360834.303742038 +CC NStripHits 2 +PE 77.6902 +PP -1.46702 0.374643 1.51173 +PW 0 +SE +ET UN +ID 7923 +TI 1771360834.306115455 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 123.951 +SE +ID 7924 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 7925 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 47.502914)) (GR Hit: Detector ID 0 and Energy 161.538187) +BD GR Veto +PQ 20.0902 +SE +ID 7926 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 100.101363) +BD GR Veto +PQ 0.0689604 +SE +ID 7927 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 54.541695) +BD GR Veto +PQ 0.17038 +SE +ID 7928 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.079834) +BD GR Veto +PQ +SE +ET PH +ID 7929 +TI 1771360834.311604421 +CC NStripHits 2 +PE 82.1933 +PP 0.162672 0.29902 -0.234359 +PW 0 +SE +ET PH +ID 7930 +TI 1771360834.312255521 +CC NStripHits 2 +PE 67.3226 +PP -1.69983 0.30851 -1.28202 +PW 0 +SE +ET PH +ID 7931 +TI 1771360834.314123705 +CC NStripHits 2 +PE 80.8795 +PP 0.511891 0.36421 0.347672 +PW 0 +SE +ET PH +ID 7932 +TI 1771360834.314613121 +CC NStripHits 2 +PE 124.639 +PP -2.74748 0.276956 -0.816391 +PW 0 +SE +ET UN +ID 7933 +TI 1771360834.315490688 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.625 +SE +ET UN +ID 7934 +TI 1771360834.316194088 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.0203 +SE +ET UN +ID 7935 +TI 1771360834.316509621 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 7936 +TI 1771360834.317141405 +CC NStripHits 2 +PE 171.437 +PP 1.55955 0.0926249 -2.56248 +PW 0 +SE +ET UN +ID 7937 +TI 1771360834.318251305 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8039 +SE +ET PH +ID 7938 +TI 1771360834.318709155 +CC NStripHits 2 +PE 82.0755 +PP 1.55955 0.356358 1.51173 +PW 0 +SE +ID 7939 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.579660) +BD GR Veto +PQ 3.6818 +SE +ET UN +ID 7940 +TI 1771360834.319355688 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 41.9119 +SE +ET PH +ID 7941 +TI 1771360834.319608238 +CC NStripHits 2 +PE 169.796 +PP -2.86389 0.366214 1.62814 +PW 0 +SE +ID 7942 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 7943 +TI 1771360834.321623338 +CC NStripHits 3 +PE 171.278 +PP -2.74748 -0.401513 1.51173 +PW 0 +SE +ET UN +ID 7944 +TI 1771360834.322683522 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 276.741 +SE +ET UN +ID 7945 +TI 1771360834.323888338 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3681 +SE +ET PH +ID 7946 +TI 1771360834.324641522 +CC NStripHits 3 +PE 115.453 +PP -0.884984 0.122317 2.44298 +PW 0 +SE +ET UN +ID 7947 +TI 1771360834.325918538 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 7948 +TI 1771360834.326109572 +CC NStripHits 5 +PQ 0.346133 +SQ 2 +CT 0 1 +TL 1 +TE 35.1009 +CE 123.542 1.12306 35.1009 0.998285 +CD -2.74748 -0.320261 0.231266 0.0336036 0.0250422 0.0336036 -1.35061 0.233804 0.580484 0.0336036 0.0345361 0.0336036 0 0 0 0 0 0 +LA 1.54279 +SE +ET CO +ID 7949 +TI 1771360834.327351272 +CC NStripHits 4 +PQ 2.80578 +SQ 2 +CT 0 1 +TL 1 +TE 25.5758 +CE 79.1242 0.998757 25.5758 1.01663 +CD -1.69983 -1.1851 -3.61014 0.0336036 0.0115852 0.0336036 -2.51467 -0.471651 -3.37733 0.0336036 0.023708 0.0336036 0 0 0 0 0 0 +LA 1.10778 +SE +ID 7950 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.999369) +BD GR Veto +PQ 0.00059162 +SE +ID 7951 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 7952 +TI 1771360834.333943405 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 7953 +TI 1771360834.334513755 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 204.811 +SE +ET PH +ID 7954 +TI 1771360834.335171172 +CC NStripHits 2 +PE 52.828 +PP 0.977516 0.360251 -4.07577 +PW 0 +SE +ET PH +ID 7955 +TI 1771360834.336289572 +CC NStripHits 2 +PE 61.2683 +PP 3.07283 0.327329 1.16252 +PW 0 +SE +ET PH +ID 7956 +TI 1771360834.337044905 +CC NStripHits 2 +PE 27.7784 +PP 1.79236 0.0481025 -3.26092 +PW 0 +SE +ET UN +ID 7957 +TI 1771360834.337795455 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.0599 +SE +ET PH +ID 7958 +TI 1771360834.339181505 +CC NStripHits 2 +PE 44.1558 +PP -1.35061 -0.777135 -1.86405 +PW 0 +SE +ET PH +ID 7959 +TI 1771360834.339367705 +CC NStripHits 2 +PE 78.691 +PP 1.32673 0.177951 -2.09686 +PW 0 +SE +ET PH +ID 7960 +TI 1771360834.340161189 +CC NStripHits 2 +PE 182.252 +PP 0.511891 0.207895 0.347672 +PW 0 +SE +ID 7961 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.421478) +BD GR Veto +PQ 0.00750871 +SE +ET PH +ID 7962 +TI 1771360834.342452055 +CC NStripHits 2 +PE 80.7906 +PP 3.18923 0.352646 2.09377 +PW 0 +SE +ET PH +ID 7963 +TI 1771360834.342658855 +CC NStripHits 2 +PE 83.5027 +PP 1.21033 -0.298436 -0.467172 +PW 0 +SE +ID 7964 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.900599) +BD GR Veto +PQ 0.0689791 +SE +ID 7965 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.319181) +BD GR Veto +PQ 5.07584 +SE +ET PH +ID 7966 +TI 1771360834.344794089 +CC NStripHits 2 +PE 33.9642 +PP -0.186547 0.356411 -0.467172 +PW 0 +SE +ID 7967 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 112.659741) +BD GR Veto +PQ 3.16131 +SE +ET PH +ID 7968 +TI 1771360834.346624089 +CC NStripHits 3 +PE 80.2618 +PP -0.302953 -1.0198 1.27892 +PW 0 +SE +ET PH +ID 7969 +TI 1771360834.346766672 +CC NStripHits 4 +PE 130.009 +PP -2.28186 -1.15842 -0.467172 +PW 0 +SE +ET UN +ID 7970 +TI 1771360834.350850122 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.4373 +SE +ET UN +ID 7971 +TI 1771360834.351065705 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 42.4803 +SE +ET PH +ID 7972 +TI 1771360834.352257822 +CC NStripHits 2 +PE 78.9469 +PP -2.28186 0.304143 -3.49373 +PW 0 +SE +ID 7973 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ET PH +ID 7974 +TI 1771360834.354860389 +CC NStripHits 2 +PE 196.326 +PP 0.744703 0.344665 1.74455 +PW 0 +SE +ET UN +ID 7975 +TI 1771360834.355229372 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1305 +SE +ET PH +ID 7976 +TI 1771360834.356078439 +CC NStripHits 2 +PE 205.431 +PP 1.44314 -0.0117847 -0.117953 +PW 0 +SE +ET CO +ID 7977 +TI 1771360834.356260439 +CC NStripHits 4 +PQ 20.7098 +SQ 2 +CT 0 1 +TL 1 +TE 138.292 +CE 219.16 1.34346 138.292 1.39755 +CD -2.28186 -0.494773 -3.14452 0.0336036 0.0234957 0.0336036 -1.69983 -0.653025 -3.72655 0.0336036 0.0225348 0.0336036 0 0 0 0 0 0 +LA 0.838189 +SE +ET CO +ID 7978 +TI 1771360834.360013356 +CC NStripHits 5 +PQ 2.24016 +SQ 2 +CT 0.524844 0.475156 +TL 1 +TE 184.292 +CE 170.733 1.13429 184.292 1.60646 +CD -2.9803 -1.14356 0.813297 0.0336036 0.0278151 0.0336036 -2.39827 -0.60119 1.27892 0.0336036 0.0228202 0.0336036 0 0 0 0 0 0 +LA 0.921807 +SE +ET PH +ID 7979 +TI 1771360834.360326072 +CC NStripHits 3 +PE 114.782 +PP 2.72361 -1.13119 1.27892 +PW 0 +SE +ET PH +ID 7980 +TI 1771360834.360690289 +CC NStripHits 2 +PE 138.508 +PP -0.535766 -0.906199 -4.19217 +PW 0 +SE +ET PH +ID 7981 +TI 1771360834.361553539 +CC NStripHits 2 +PE 81.7985 +PP 1.90877 0.35534 1.97736 +PW 0 +SE +ET PH +ID 7982 +TI 1771360834.361801472 +CC NStripHits 2 +PE 81.008 +PP 0.628297 0.369748 -2.32967 +PW 0 +SE +ET PH +ID 7983 +TI 1771360834.363331106 +CC NStripHits 2 +PE 121.54 +PP 4.3533 0.11752 -2.09686 +PW 0 +SE +ID 7984 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 125.214309) +BD GR Veto +PQ 0.412825 +SE +ET PH +ID 7985 +TI 1771360834.366288839 +CC NStripHits 2 +PE 84.0398 +PP 3.07283 -0.46615 1.86095 +PW 0 +SE +ID 7986 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 59.450671) +BD GR Veto +PQ 0.052491 +SE +ET PH +ID 7987 +TI 1771360834.369138856 +CC NStripHits 3 +PE 52.1922 +PP 1.79236 -0.594299 -1.28202 +PW 0 +SE +ID 7988 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.599477) +BD GR Veto +PQ 0.000336673 +SE +ID 7989 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 119.826575) +BD GR Veto +PQ 6.27253 +SE +ID 7990 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.902519) (Strip hit removed with energy 7.850918) +QA StripPairing (GR Hit: Detector ID 0 and Energy 88.406024) +BD GR Veto +PQ 11.0009 +SE +ID 7991 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 172.254967) +BD GR Veto +PQ 0.0278052 +SE +ET PH +ID 7992 +TI 1771360834.373129356 +CC NStripHits 2 +PE 139.282 +PP 2.95642 0.147209 2.21017 +PW 0 +SE +ET UN +ID 7993 +TI 1771360834.374662072 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7608 +SE +ID 7994 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.140107) +BD GR Veto +PQ 0.000522309 +SE +ET CO +ID 7995 +TI 1771360834.379139889 +CC NStripHits 4 +PQ 4.77656 +SQ 2 +CT 0 1 +TL 1 +TE 68.1822 +CE 132.831 1.02519 68.1822 1.36165 +CD -0.535766 -1.07122 -0.699984 0.0336036 0.0208362 0.0336036 2.84002 0.0768944 -3.37733 0.0336036 0.0285202 0.0336036 0 0 0 0 0 0 +LA 4.45895 +SE +ET PH +ID 7996 +TI 1771360834.379441206 +CC NStripHits 3 +PE 143.571 +PP 3.88767 -0.222509 -3.95936 +PW 0 +SE +ET UN +ID 7997 +TI 1771360834.380496923 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.1584 +SE +ET PH +ID 7998 +TI 1771360834.380866839 +CC NStripHits 2 +PE 47.9994 +PP 3.65486 0.374251 -3.26092 +PW 0 +SE +ET UN +ID 7999 +TI 1771360834.381111039 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 6 +PE 205.824 +SE +ET UN +ID 8000 +TI 1771360834.381665139 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 144.701 +SE +ET PH +ID 8001 +TI 1771360834.382867673 +CC NStripHits 2 +PE 77.5413 +PP -2.63108 0.305415 1.97736 +PW 0 +SE +ET CO +ID 8002 +TI 1771360834.383155206 +CC NStripHits 4 +PQ 0.40492 +SQ 2 +CT 0 1 +TL 1 +TE 57.6304 +CE 105.739 0.977225 57.6304 0.99343 +CD -0.186547 -0.780644 1.51173 0.0336036 0.0211803 0.0336036 -0.419359 -0.149106 1.27892 0.0336036 0.0263072 0.0336036 0 0 0 0 0 0 +LA 0.712209 +SE +ID 8003 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8004 +TI 1771360834.385328556 +CC NStripHits 2 +PE 106.928 +PP 0.861109 0.174162 -1.28202 +PW 0 +SE +ET UN +ID 8005 +TI 1771360834.385821239 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8006 +TI 1771360834.386521439 +CC NStripHits 2 +PE 83.9587 +PP -0.535766 -1.13766 1.62814 +PW 0 +SE +ET PH +ID 8007 +TI 1771360834.387186656 +CC NStripHits 2 +PE 62.5368 +PP -0.0701406 0.354427 -0.350766 +PW 0 +SE +ET PH +ID 8008 +TI 1771360834.387626173 +CC NStripHits 2 +PE 82.1253 +PP -1.00139 0.338621 1.04611 +PW 0 +SE +ET PH +ID 8009 +TI 1771360834.390873623 +CC NStripHits 2 +PE 111.155 +PP 0.511891 0.0640797 1.62814 +PW 0 +SE +ID 8010 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.183300) +BD GR Veto +PQ 0.00362613 +SE +ET PH +ID 8011 +TI 1771360834.391190506 +CC NStripHits 3 +PE 68.193 +PP -1.46702 0.368358 -0.583578 +PW 0 +SE +ID 8012 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.168918) +BD GR Veto +PQ 0.081717 +SE +ET PH +ID 8013 +TI 1771360834.392791356 +CC NStripHits 2 +PE 89.2452 +PP -2.28186 -0.343615 1.16252 +PW 0 +SE +ID 8014 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.490906) +BD GR Veto +PQ 0.189685 +SE +ET UN +ID 8015 +TI 1771360834.393916489 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 25.0176 +SE +ET UN +ID 8016 +TI 1771360834.398888689 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.071 +SE +ET UN +ID 8017 +TI 1771360834.400291656 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8018 +TI 1771360834.400653306 +CC NStripHits 2 +PE 88.7223 +PP 1.55955 0.370128 -1.16561 +PW 0 +SE +ET CO +ID 8019 +TI 1771360834.402923206 +CC NStripHits 5 +PQ 13.0504 +SQ 2 +CT 0 1 +TL 1 +TE 90.0644 +CE 188.298 1.22263 90.0644 1.48442 +CD 4.00408 -0.266128 1.16252 0.0336036 0.0253803 0.0336036 3.77127 0.334432 0.929703 0.0336036 0.0382354 0.0336036 0 0 0 0 0 0 +LA 0.684892 +SE +ET PH +ID 8020 +TI 1771360834.403293173 +CC NStripHits 2 +PE 65.9538 +PP -0.535766 0.215076 -3.37733 +PW 0 +SE +ID 8021 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.060526) +BD GR Veto +PQ +SE +ET PH +ID 8022 +TI 1771360834.404168723 +CC NStripHits 2 +PE 82.6034 +PP -1.00139 0.194497 1.97736 +PW 0 +SE +ID 8023 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 148.960580) +BD GR Veto +PQ 0.00848224 +SE +ET UN +ID 8024 +TI 1771360834.404800790 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.6556 +SE +ET PH +ID 8025 +TI 1771360834.405299356 +CC NStripHits 2 +PE 80.0054 +PP 4.12048 0.172991 0.464078 +PW 0 +SE +ET UN +ID 8026 +TI 1771360834.408551173 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.0879 +SE +ET UN +ID 8027 +TI 1771360834.409183356 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8028 +TI 1771360834.409948073 +CC NStripHits 3 +PE 84.2347 +PP 2.25798 -1.00247 2.55939 +PW 0 +SE +ID 8029 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 8030 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 217.524958) +BD GR Veto +PQ 0.653013 +SE +ET PH +ID 8031 +TI 1771360834.414180556 +CC NStripHits 2 +PE 209.742 +PP -1.93264 0.107476 0.347672 +PW 0 +SE +ET UN +ID 8032 +TI 1771360834.416001823 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9574 +SE +ET PH +ID 8033 +TI 1771360834.416311556 +CC NStripHits 2 +PE 175.439 +PP 0.511891 -0.539325 -0.00154687 +PW 0 +SE +ID 8034 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.382780) +BD GR Veto +PQ 0.328663 +SE +ET PH +ID 8035 +TI 1771360834.418051623 +CC NStripHits 2 +PE 302.413 +PP -1.81623 -0.833792 1.51173 +PW 0 +SE +ID 8036 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8037 +TI 1771360834.420312057 +CC NStripHits 2 +PE 79.7872 +PP -0.186547 -1.02071 -1.16561 +PW 0 +SE +ET PH +ID 8038 +TI 1771360834.420850840 +CC NStripHits 2 +PE 98.3314 +PP -1.35061 -0.56612 -4.19217 +PW 0 +SE +ET PH +ID 8039 +TI 1771360834.421244123 +CC NStripHits 2 +PE 82.6738 +PP -0.186547 0.350619 -3.14452 +PW 0 +SE +ET UN +ID 8040 +TI 1771360834.422290623 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.6546 +SE +ID 8041 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.641865) +BD GR Veto +PQ 0.0297353 +SE +ET UN +ID 8042 +TI 1771360834.423343590 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 40.865 +SE +ID 8043 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 52.380739) +BD GR Veto +PQ 0.061225 +SE +ET PH +ID 8044 +TI 1771360834.425556457 +CC NStripHits 2 +PE 92.4085 +PP -2.04905 -0.944544 2.44298 +PW 0 +SE +ET PH +ID 8045 +TI 1771360834.426781057 +CC NStripHits 2 +PE 173.864 +PP 1.32673 0.370158 1.16252 +PW 0 +SE +ET PH +ID 8046 +TI 1771360834.427441307 +CC NStripHits 3 +PE 383.784 +PP 3.07283 -0.00171281 -3.02811 +PW 0 +SE +ET UN +ID 8047 +TI 1771360834.427861907 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8048 +TI 1771360834.429279707 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4628 +SE +ET UN +ID 8049 +TI 1771360834.431177473 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 134.423 +SE +ET UN +ID 8050 +TI 1771360834.431592507 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8051 +TI 1771360834.432836490 +CC NStripHits 4 +PE 259.559 +PP 1.67595 -0.119762 0.347672 +PW 0 +SE +ET UN +ID 8052 +TI 1771360834.433395890 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 8053 +TI 1771360834.433864323 +CC NStripHits 4 +PQ 3.29079 +SQ 2 +CT 0 1 +TL 1 +TE 31.8646 +CE 209.56 1.4047 31.8646 1.0238 +CD 1.44314 -0.0561344 1.04611 0.0336036 0.027111 0.0336036 2.37439 -0.690972 -1.28202 0.0336036 0.0223054 0.0336036 0 0 0 0 0 0 +LA 2.58659 +SE +ET UN +ID 8054 +TI 1771360834.434617590 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.6457 +SE +ET PH +ID 8055 +TI 1771360834.435259257 +CC NStripHits 2 +PE 41.3352 +PP 1.67595 -0.377443 1.39533 +PW 0 +SE +ET PH +ID 8056 +TI 1771360834.435997907 +CC NStripHits 2 +PE 80.3979 +PP 3.88767 0.101541 -0.467172 +PW 0 +SE +ID 8057 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.033288) +BD GR Veto +PQ 0.0746942 +SE +ET UN +ID 8058 +TI 1771360834.436247440 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8847 +SE +ET PH +ID 8059 +TI 1771360834.437702107 +CC NStripHits 2 +PE 80.6639 +PP 2.25798 0.363174 0.464078 +PW 0 +SE +ET PH +ID 8060 +TI 1771360834.438717857 +CC NStripHits 2 +PE 161.124 +PP 0.628297 0.345311 2.55939 +PW 0 +SE +ET UN +ID 8061 +TI 1771360834.440395540 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8062 +TI 1771360834.441003140 +CC NStripHits 2 +PE 191.484 +PP 3.18923 0.3397 -1.86405 +PW 0 +SE +ET PH +ID 8063 +TI 1771360834.443875424 +CC NStripHits 2 +PE 108.596 +PP 4.3533 -0.619107 -3.49373 +PW 0 +SE +ET PH +ID 8064 +TI 1771360834.443996774 +CC NStripHits 2 +PE 46.8703 +PP 2.25798 0.326553 -1.74764 +PW 0 +SE +ID 8065 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.602543) (Strip hit removed with energy 18.717674) +BD GR Veto +PQ 3.15151 +SE +ET PH +ID 8066 +TI 1771360834.445357457 +CC NStripHits 2 +PE 80.324 +PP 1.32673 0.04422 -3.95936 +PW 0 +SE +ET CO +ID 8067 +TI 1771360834.446472440 +CC NStripHits 6 +PQ 0.709192 +SQ 2 +CT 0.500465 0.499535 +TL 1 +TE 178.633 +CE 178.431 1.05548 178.633 1.39711 +CD 1.55955 -0.784833 1.39533 0.0336036 0.0211216 0.0336036 1.67595 -0.80545 0.929703 0.0336036 0.0208642 0.0336036 0 0 0 0 0 0 +LA 0.480398 +SE +ET CO +ID 8068 +TI 1771360834.447303407 +CC NStripHits 4 +PQ 16.8271 +SQ 2 +CT 0 1 +TL 1 +TE 84.8878 +CE 140.184 1.6664 84.8878 1.10018 +CD 0.744703 -0.328607 1.16252 0.0336036 0.0249948 0.0336036 0.628297 0.124152 -0.350766 0.0336036 0.029413 0.0336036 0 0 0 0 0 0 +LA 1.58385 +SE +ET UN +ID 8069 +TI 1771360834.447922657 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8070 +TI 1771360834.448231390 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 148.439 +SE +ID 8071 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.045216) +QA StripPairing (GR Hit: Detector ID 0 and Energy 50.160192) +BD GR Veto +PQ 1.49888 +SE +ET UN +ID 8072 +TI 1771360834.449231474 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 300.892 +SE +ET PH +ID 8073 +TI 1771360834.449659374 +CC NStripHits 3 +PE 170.932 +PP 0.628297 0.292849 -3.61014 +PW 0 +SE +ET PH +ID 8074 +TI 1771360834.450076524 +CC NStripHits 4 +PE 115.778 +PP 0.861109 -0.0209973 0.929703 +PW 0 +SE +ET PH +ID 8075 +TI 1771360834.450163457 +CC NStripHits 2 +PE 61.4875 +PP 2.02517 -1.17644 -3.49373 +PW 0 +SE +ET UN +ID 8076 +TI 1771360834.450884740 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.19 +SE +ET PH +ID 8077 +TI 1771360834.451462124 +CC NStripHits 4 +PE 304.075 +PP 2.14158 -0.158381 1.74455 +PW 0 +SE +ET PH +ID 8078 +TI 1771360834.453103590 +CC NStripHits 2 +PE 80.8162 +PP 3.88767 0.374087 -4.19217 +PW 0 +SE +ET PH +ID 8079 +TI 1771360834.453647540 +CC NStripHits 3 +PE 171.096 +PP -1.35061 -0.563126 -0.117953 +PW 0 +SE +ID 8080 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.334539) +QA StripPairing (Best reduced chi square is not below 25 (43.909499)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 29.850283)) (GR Hit: Detector ID 0 and Energy 98.813303) +BD GR Veto +PQ 43.9095 +SE +ET UN +ID 8081 +TI 1771360834.455328790 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.2973 +SE +ID 8082 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.742287) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.277154) +BD GR Veto +PQ 2.04284 +SE +ET PH +ID 8083 +TI 1771360834.456901640 +CC NStripHits 2 +PE 304.438 +PP -2.51467 -0.738643 -2.56248 +PW 0 +SE +ET PH +ID 8084 +TI 1771360834.456977307 +CC NStripHits 2 +PE 80.2807 +PP 0.744703 0.285526 -2.44608 +PW 0 +SE +ET UN +ID 8085 +TI 1771360834.457257590 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2153 +SE +ET UN +ID 8086 +TI 1771360834.459016357 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1001 +SE +ET PH +ID 8087 +TI 1771360834.460731941 +CC NStripHits 2 +PE 214.64 +PP 4.12048 -0.642061 1.16252 +PW 0 +SE +ET PH +ID 8088 +TI 1771360834.460891707 +CC NStripHits 2 +PE 87.0127 +PP -1.46702 0.117056 -3.26092 +PW 0 +SE +ET UN +ID 8089 +TI 1771360834.461181441 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8139 +SE +ET UN +ID 8090 +TI 1771360834.462098991 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 197.976 +SE +ET PH +ID 8091 +TI 1771360834.462448857 +CC NStripHits 2 +PE 302.523 +PP -0.884984 -0.475561 -1.51483 +PW 0 +SE +ET UN +ID 8092 +TI 1771360834.462762707 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 48.9945 +SE +ET UN +ID 8093 +TI 1771360834.464711057 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.746 +SE +ID 8094 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.454926) +BD GR Veto +PQ 0.168062 +SE +ET PH +ID 8095 +TI 1771360834.469920857 +CC NStripHits 3 +PE 356.158 +PP -2.51467 -0.654982 -2.32967 +PW 0 +SE +ET UN +ID 8096 +TI 1771360834.470767257 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 8097 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.647454) +BD GR Veto +PQ +SE +ET CO +ID 8098 +TI 1771360834.471043391 +CC NStripHits 6 +PQ 1.92499 +SQ 2 +CT 0 1 +TL 1 +TE 145.959 +CE 210.681 1.44353 145.959 0.980823 +CD 0.395484 -0.494379 1.16252 0.0336036 0.0234992 0.0336036 2.14158 -0.369764 1.86095 0.0336036 0.0246914 0.0336036 0 0 0 0 0 0 +LA 1.88472 +SE +ET CO +ID 8099 +TI 1771360834.472201357 +CC NStripHits 5 +PQ 1.35795 +SQ 2 +CT 0 1 +TL 1 +TE 21.3281 +CE 152.706 1.17381 21.3281 0.985152 +CD -1.69983 -0.617704 1.51173 0.0336036 0.0227233 0.0336036 0.279078 -0.422426 1.16252 0.0336036 0.0241802 0.0336036 0 0 0 0 0 0 +LA 2.01895 +SE +ET UN +ID 8100 +TI 1771360834.472703207 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.4605 +SE +ET UN +ID 8101 +TI 1771360834.472945357 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.2197 +SE +ID 8102 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.260816) +BD GR Veto +PQ 0.490356 +SE +ET PH +ID 8103 +TI 1771360834.474748991 +CC NStripHits 2 +PE 77.7414 +PP -1.58342 0.361 -1.86405 +PW 0 +SE +ET PH +ID 8104 +TI 1771360834.475327424 +CC NStripHits 3 +PE 123.651 +PP -1.00139 0.154868 -3.95936 +PW 0 +SE +ID 8105 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.460491) +BD GR Veto +PQ 0.0726912 +SE +ET PH +ID 8106 +TI 1771360834.479222641 +CC NStripHits 4 +PE 357.155 +PP 0.511891 0.213424 0.114859 +PW 0 +SE +ET PH +ID 8107 +TI 1771360834.480284591 +CC NStripHits 2 +PE 74.8171 +PP 3.42205 0.368498 -3.72655 +PW 0 +SE +ET UN +ID 8108 +TI 1771360834.482039208 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 101.962 +SE +ID 8109 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 8110 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.243283) +BD GR Veto +PQ +SE +ID 8111 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8112 +TI 1771360834.487198741 +CC NStripHits 2 +PE 127.997 +PP 3.88767 -0.300687 0.929703 +PW 0 +SE +ID 8113 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.363349) +BD GR Veto +PQ 3.44549 +SE +ET UN +ID 8114 +TI 1771360834.489141224 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 303.28 +SE +ET PH +ID 8115 +TI 1771360834.489440291 +CC NStripHits 2 +PE 78.2462 +PP -1.00139 0.361485 1.86095 +PW 0 +SE +ET PH +ID 8116 +TI 1771360834.490371791 +CC NStripHits 2 +PE 50.932 +PP 3.65486 0.0602379 -0.00154687 +PW 0 +SE +ET UN +ID 8117 +TI 1771360834.492183508 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8118 +TI 1771360834.492757641 +CC NStripHits 2 +PE 247.637 +PP 4.12048 0.344362 -3.49373 +PW 0 +SE +ID 8119 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.472802) +BD GR Veto +PQ 0.781754 +SE +ID 8120 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8121 +TI 1771360834.494553791 +CC NStripHits 3 +PE 157.413 +PP -0.0701406 -0.484904 -0.583578 +PW 0 +SE +ET PH +ID 8122 +TI 1771360834.495807908 +CC NStripHits 2 +PE 82.088 +PP 1.44314 0.368824 -4.07577 +PW 0 +SE +ET PH +ID 8123 +TI 1771360834.496243924 +CC NStripHits 2 +PE 80.5926 +PP 0.744703 0.230469 -2.32967 +PW 0 +SE +ET UN +ID 8124 +TI 1771360834.496498908 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8125 +TI 1771360834.498933358 +CC NStripHits 3 +PE 186.152 +PP -1.46702 0.363643 2.21017 +PW 0 +SE +ET PH +ID 8126 +TI 1771360834.499455708 +CC NStripHits 2 +PE 65.395 +PP 1.67595 0.376019 -1.74764 +PW 0 +SE +ET UN +ID 8127 +TI 1771360834.500053675 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4932 +SE +ET PH +ID 8128 +TI 1771360834.501440925 +CC NStripHits 2 +PE 61.7479 +PP -2.63108 0.355587 1.97736 +PW 0 +SE +ET PH +ID 8129 +TI 1771360834.503110775 +CC NStripHits 3 +PE 356.627 +PP -2.16545 0.0587869 0.347672 +PW 0 +SE +ET PH +ID 8130 +TI 1771360834.503397508 +CC NStripHits 2 +PE 38.8985 +PP -0.652172 -0.758193 -3.14452 +PW 0 +SE +ET PH +ID 8131 +TI 1771360834.503738041 +CC NStripHits 2 +PE 140.979 +PP -0.302953 0.349012 0.231266 +PW 0 +SE +ID 8132 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.140728) +BD GR Veto +PQ 0.109887 +SE +ET PH +ID 8133 +TI 1771360834.505927875 +CC NStripHits 2 +PE 182.85 +PP -0.768578 0.295272 0.347672 +PW 0 +SE +ET PH +ID 8134 +TI 1771360834.508224425 +CC NStripHits 3 +PE 165.596 +PP 0.628297 0.331307 -0.583578 +PW 0 +SE +ET PH +ID 8135 +TI 1771360834.509380075 +CC NStripHits 2 +PE 79.8291 +PP -1.69983 0.319919 0.580484 +PW 0 +SE +ET PH +ID 8136 +TI 1771360834.509962608 +CC NStripHits 2 +PE 28.6239 +PP 2.4908 0.377645 1.16252 +PW 0 +SE +ET PH +ID 8137 +TI 1771360834.510471858 +CC NStripHits 2 +PE 167.752 +PP 4.23689 -1.11202 -2.21327 +PW 0 +SE +ET UN +ID 8138 +TI 1771360834.514757108 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.9882 +SE +ET UN +ID 8139 +TI 1771360834.518869541 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 352.399 +SE +ET UN +ID 8140 +TI 1771360834.519799475 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 221.958 +SE +ID 8141 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 173.362243) +BD GR Veto +PQ 0.742303 +SE +ET UN +ID 8142 +TI 1771360834.520561642 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8143 +TI 1771360834.520922625 +CC NStripHits 3 +PE 108.412 +PP 1.90877 -0.360473 2.32658 +PW 0 +SE +ET UN +ID 8144 +TI 1771360834.525864625 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 206.027 +SE +ET UN +ID 8145 +TI 1771360834.525987792 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.7478 +SE +ET PH +ID 8146 +TI 1771360834.527102192 +CC NStripHits 2 +PE 79.0452 +PP 2.4908 0.230878 0.580484 +PW 0 +SE +ID 8147 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.615461) +QA StripPairing (Best reduced chi square is not below 25 (46.697443)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 182.214089) +BD GR Veto +PQ 46.6974 +SE +ET PH +ID 8148 +TI 1771360834.528954608 +CC NStripHits 2 +PE 161.306 +PP -2.51467 -1.00001 2.21017 +PW 0 +SE +ET UN +ID 8149 +TI 1771360834.529123875 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.0366 +SE +ET PH +ID 8150 +TI 1771360834.532478842 +CC NStripHits 2 +PE 81.2111 +PP -0.302953 0.167536 1.74455 +PW 0 +SE +ID 8151 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.326656) +BD GR Veto +PQ 0.0067497 +SE +ID 8152 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8153 +TI 1771360834.535725725 +CC NStripHits 2 +PE 24.3069 +PP -1.1178 0.155449 -2.09686 +PW 0 +SE +ET PH +ID 8154 +TI 1771360834.536944758 +CC NStripHits 2 +PE 76.4671 +PP -1.2342 -0.814668 -3.72655 +PW 0 +SE +ET PH +ID 8155 +TI 1771360834.537172025 +CC NStripHits 2 +PE 276.279 +PP 3.88767 -0.0188321 -4.07577 +PW 0 +SE +ET PH +ID 8156 +TI 1771360834.537465992 +CC NStripHits 4 +PE 1217.32 +PP 2.84002 -0.599499 -4.07577 +PW 0 +SE +ET PH +ID 8157 +TI 1771360834.537853992 +CC NStripHits 2 +PE 77.8395 +PP 2.84002 0.1358 -4.07577 +PW 0 +SE +ID 8158 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.862144) +BD GR Veto +PQ 0.772014 +SE +ET PH +ID 8159 +TI 1771360834.540429325 +CC NStripHits 3 +PE 81.0464 +PP 3.88767 0.147469 -3.37733 +PW 0 +SE +ET PH +ID 8160 +TI 1771360834.540538775 +CC NStripHits 2 +PE 108.496 +PP 0.162672 -1.1365 -3.49373 +PW 0 +SE +ET PH +ID 8161 +TI 1771360834.545609509 +CC NStripHits 2 +PE 75.6056 +PP 1.90877 0.352373 -2.67889 +PW 0 +SE +ET PH +ID 8162 +TI 1771360834.546782509 +CC NStripHits 3 +PE 151.134 +PP 3.07283 0.350819 -0.699984 +PW 0 +SE +ID 8163 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 122.423387) +BD GR Veto +PQ 0.465465 +SE +ET UN +ID 8164 +TI 1771360834.548102525 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 49.1437 +SE +ET CO +ID 8165 +TI 1771360834.549970859 +CC NStripHits 4 +PQ 18.0112 +SQ 2 +CT 0 1 +TL 1 +TE 75.8583 +CE 154.527 1.08825 75.8583 1.40105 +CD -0.535766 0.296095 0.114859 0.0336036 0.041718 0.0336036 -1.1178 0.3649 -0.816391 0.0336036 0.0258599 0.0336036 0 0 0 0 0 0 +LA 1.10033 +SE +ET PH +ID 8166 +TI 1771360834.550092559 +CC NStripHits 2 +PE 69.4067 +PP -2.16545 0.196023 0.347672 +PW 0 +SE +ID 8167 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 149.905976) +BD GR Veto +PQ 0.0226147 +SE +ET PH +ID 8168 +TI 1771360834.551776492 +CC NStripHits 3 +PE 356.992 +PP -1.35061 -0.137374 -1.86405 +PW 0 +SE +ID 8169 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 99.708537) +BD GR Veto +PQ 0.11837 +SE +ET PH +ID 8170 +TI 1771360834.552981192 +CC NStripHits 2 +PE 83.2246 +PP 1.90877 0.335039 1.16252 +PW 0 +SE +ET UN +ID 8171 +TI 1771360834.553714409 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.1364 +SE +ET UN +ID 8172 +TI 1771360834.554654225 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 50.1043 +SE +ET PH +ID 8173 +TI 1771360834.558461175 +CC NStripHits 2 +PE 54.7024 +PP 3.18923 0.347141 1.97736 +PW 0 +SE +ET PH +ID 8174 +TI 1771360834.559147009 +CC NStripHits 2 +PE 124.445 +PP -0.652172 -0.304536 2.09377 +PW 0 +SE +ET UN +ID 8175 +TI 1771360834.560213709 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 8176 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.739876) +QA StripPairing (GR Hit: Detector ID 0 and Energy 205.403533) +BD GR Veto +PQ 3.72044 +SE +ET UN +ID 8177 +TI 1771360834.561180609 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 115.186 +SE +ET PH +ID 8178 +TI 1771360834.561874192 +CC NStripHits 3 +PE 79.6072 +PP -2.28186 0.224238 -0.816391 +PW 0 +SE +ID 8179 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 192.762186) +BD GR Veto +PQ 0.0235685 +SE +ET PH +ID 8180 +TI 1771360834.563537676 +CC NStripHits 3 +PE 81.0293 +PP 3.53845 0.362967 2.44298 +PW 0 +SE +ET UN +ID 8181 +TI 1771360834.564366092 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 305.573 +SE +ET PH +ID 8182 +TI 1771360834.564953576 +CC NStripHits 2 +PE 75.2303 +PP 0.0462656 0.211905 1.86095 +PW 0 +SE +ET CO +ID 8183 +TI 1771360834.566281876 +CC NStripHits 6 +PQ 33.5659 +SQ 2 +CT 0.536668 0.463332 +TL 1 +TE 185.835 +CE 163.817 1.51136 185.835 1.14718 +CD -0.419359 -0.741593 1.97736 0.0336036 0.0217737 0.0336036 -0.0701406 -0.14214 1.86095 0.0336036 0.0263753 0.0336036 0 0 0 0 0 0 +LA 0.703455 +SE +ET PH +ID 8184 +TI 1771360834.566710376 +CC NStripHits 2 +PE 54.2381 +PP 3.18923 0.225655 1.04611 +PW 0 +SE +ID 8185 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.671892) +BD GR Veto +PQ 0.108021 +SE +ET PH +ID 8186 +TI 1771360834.568137542 +CC NStripHits 3 +PE 78.3838 +PP 1.55955 0.368011 -0.816391 +PW 0 +SE +ET PH +ID 8187 +TI 1771360834.568920342 +CC NStripHits 2 +PE 81.4356 +PP 3.30564 0.288269 -3.72655 +PW 0 +SE +ET UN +ID 8188 +TI 1771360834.569105809 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 228.771 +SE +ET UN +ID 8189 +TI 1771360834.569673726 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 172.086 +SE +ET PH +ID 8190 +TI 1771360834.573562059 +CC NStripHits 3 +PE 305.009 +PP -0.419359 0.0719313 -0.583578 +PW 0 +SE +ET PH +ID 8191 +TI 1771360834.574092226 +CC NStripHits 2 +PE 71.919 +PP 1.79236 0.337955 1.62814 +PW 0 +SE +ET CO +ID 8192 +TI 1771360834.574497009 +CC NStripHits 6 +PQ 3.2544 +SQ 2 +CT 0 1 +TL 1 +TE 65.0442 +CE 291.489 2.55659 65.0442 0.978817 +CD 3.88767 0.356258 1.97736 0.0336036 0.0304529 0.0336036 3.65486 -0.0919152 1.74455 0.0336036 0.0268501 0.0336036 0 0 0 0 0 0 +LA 0.556112 +SE +ET PH +ID 8193 +TI 1771360834.576939609 +CC NStripHits 2 +PE 34.8523 +PP 4.12048 -0.193869 0.580484 +PW 0 +SE +ET UN +ID 8194 +TI 1771360834.578444826 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7796 +SE +ID 8195 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 140.383178) +BD GR Veto +PQ 23.6308 +SE +ET PH +ID 8196 +TI 1771360834.579000626 +CC NStripHits 2 +PE 76.0816 +PP -1.81623 0.370685 -3.37733 +PW 0 +SE +ET CO +ID 8197 +TI 1771360834.581139243 +CC NStripHits 6 +PQ 12.1671 +SQ 3 +CT 0.00808149 0.01274 +TL 1 +TE 119.046 +CE 244.506 2.03174 119.046 1.19624 +CD 0.744703 -0.338553 -0.816391 0.0336036 0.0249365 0.0336036 0.162672 0.337941 0.347672 0.0336036 0.0373181 0.0336036 0 0 0 0 0 0 +LA 1.01761 +SE +ID 8198 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8199 +TI 1771360834.584025759 +CC NStripHits 2 +PE 51.5407 +PP 0.511891 -0.37446 -3.84295 +PW 0 +SE +ET PH +ID 8200 +TI 1771360834.585544326 +CC NStripHits 2 +PE 293.542 +PP 3.30564 -0.810586 -2.21327 +PW 0 +SE +ID 8201 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.563986) +BD GR Veto +PQ 0.57538 +SE +ET UN +ID 8202 +TI 1771360834.586545159 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.1111 +SE +ET PH +ID 8203 +TI 1771360834.587907076 +CC NStripHits 2 +PE 78.6247 +PP 0.0462656 0.30158 -1.39842 +PW 0 +SE +ET PH +ID 8204 +TI 1771360834.588442426 +CC NStripHits 2 +PE 80.0872 +PP 4.3533 -0.0550316 -0.467172 +PW 0 +SE +ET UN +ID 8205 +TI 1771360834.589303676 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 8206 +TI 1771360834.590592176 +CC NStripHits 5 +PQ 54.608 +SQ 2 +CT 0 1 +TL 1 +TE 127.695 +CE 130.08 1.47321 127.695 1.43173 +CD -0.535766 -0.607513 0.464078 0.0336036 0.0227855 0.0336036 -0.652172 -0.644943 0.347672 0.0336036 0.0225755 0.0336036 0 0 0 0 0 0 +LA 0.168825 +SE +ET CO +ID 8207 +TI 1771360834.590895209 +CC NStripHits 4 +PQ 1.93482 +SQ 2 +CT 0 1 +TL 1 +TE 61.8553 +CE 291.806 1.1432 61.8553 1.00821 +CD 1.21033 0.333573 0.580484 0.0336036 0.0384421 0.0336036 0.628297 -0.252687 0.347672 0.0336036 0.025453 0.0336036 0 0 0 0 0 0 +LA 0.858292 +SE +ID 8208 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.810899) +BD GR Veto +PQ +SE +ET UN +ID 8209 +TI 1771360834.592984859 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.1708 +SE +ET UN +ID 8210 +TI 1771360834.594089443 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9305 +SE +ET PH +ID 8211 +TI 1771360834.594312459 +CC NStripHits 2 +PE 79.461 +PP 2.37439 0.368962 2.55939 +PW 0 +SE +ET UN +ID 8212 +TI 1771360834.595162743 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 52.7774 +SE +ET CO +ID 8213 +TI 1771360834.596542676 +CC NStripHits 5 +PQ 36.6137 +SQ 2 +CT 0.529676 0.470324 +TL 1 +TE 185.513 +CE 166.877 1.5417 185.513 1.17578 +CD 3.42205 0.298429 0.813297 0.0336036 0.0417912 0.0336036 4.12048 0.0773984 0.114859 0.0336036 0.0285274 0.0336036 0 0 0 0 0 0 +LA 1.01216 +SE +ET UN +ID 8214 +TI 1771360834.598394826 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.3695 +SE +ET UN +ID 8215 +TI 1771360834.599742193 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 325.236 +SE +ID 8216 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 8217 +TI 1771360834.602889060 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8218 +TI 1771360834.606996010 +CC NStripHits 2 +PE 49.653 +PP 0.511891 -0.835085 -3.84295 +PW 0 +SE +ID 8219 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.690745) +BD GR Veto +PQ 0.0330362 +SE +ET PH +ID 8220 +TI 1771360834.614583576 +CC NStripHits 3 +PE 78.9654 +PP -2.28186 0.352602 -2.7953 +PW 0 +SE +ET PH +ID 8221 +TI 1771360834.614719993 +CC NStripHits 2 +PE 86.6025 +PP -0.652172 0.35735 -2.32967 +PW 0 +SE +ET PH +ID 8222 +TI 1771360834.615298326 +CC NStripHits 2 +PE 80.6123 +PP 4.00408 -1.17868 1.74455 +PW 0 +SE +ET UN +ID 8223 +TI 1771360834.617420076 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 223.608 +SE +ET UN +ID 8224 +TI 1771360834.618458743 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 189.94 +SE +ID 8225 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.702643) +BD GR Veto +PQ 0.0283798 +SE +ET UN +ID 8226 +TI 1771360834.621961427 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.438 +SE +ET PH +ID 8227 +TI 1771360834.622182677 +CC NStripHits 2 +PE 201.449 +PP 0.977516 -1.15889 -4.30858 +PW 0 +SE +ET UN +ID 8228 +TI 1771360834.622836010 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.4528 +SE +ET UN +ID 8229 +TI 1771360834.625090260 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.7767 +SE +ET UN +ID 8230 +TI 1771360834.626094177 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 147.874 +SE +ET CO +ID 8231 +TI 1771360834.626622493 +CC NStripHits 4 +PQ 0.632034 +SQ 2 +CT 0.521286 0.478714 +TL 1 +TE 195.808 +CE 186.278 1.07307 195.808 1.04015 +CD 3.65486 -0.279183 1.97736 0.0336036 0.0253115 0.0336036 4.23689 -0.471265 1.51173 0.0336036 0.0237119 0.0336036 0 0 0 0 0 0 +LA 0.769718 +SE +ET UN +ID 8232 +TI 1771360834.627011027 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8233 +TI 1771360834.628751160 +CC NStripHits 2 +PE 54.203 +PP 0.162672 -1.17627 -4.19217 +PW 0 +SE +ET PH +ID 8234 +TI 1771360834.631493793 +CC NStripHits 2 +PE 59.7512 +PP 0.744703 -0.375396 -3.49373 +PW 0 +SE +ET PH +ID 8235 +TI 1771360834.633123293 +CC NStripHits 2 +PE 135.567 +PP 0.511891 -0.0670572 -2.9117 +PW 0 +SE +ET PH +ID 8236 +TI 1771360834.634125260 +CC NStripHits 3 +PE 75.9265 +PP 3.07283 0.309016 -4.30858 +PW 0 +SE +ET PH +ID 8237 +TI 1771360834.634287927 +CC NStripHits 3 +PE 64.1815 +PP 0.279078 -0.212441 1.97736 +PW 0 +SE +ET PH +ID 8238 +TI 1771360834.634433577 +CC NStripHits 2 +PE 80.7742 +PP 1.44314 0.352737 -3.37733 +PW 0 +SE +ID 8239 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 85.755479) +BD GR Veto +PQ 0.173761 +SE +ET PH +ID 8240 +TI 1771360834.635358843 +CC NStripHits 2 +PE 205.45 +PP -2.04905 -1.10232 -4.42498 +PW 0 +SE +ET PH +ID 8241 +TI 1771360834.636557010 +CC NStripHits 3 +PE 297.033 +PP 3.18923 0.345189 -3.61014 +PW 0 +SE +ID 8242 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.238210) +BD GR Veto +PQ 0.329414 +SE +ID 8243 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.065907) +BD GR Veto +PQ 0.191431 +SE +ET UN +ID 8244 +TI 1771360834.639033710 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4944 +SE +ID 8245 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 189.909802) +BD GR Veto +PQ 0.295185 +SE +ET CO +ID 8246 +TI 1771360834.642106894 +CC NStripHits 5 +PQ 0.582468 +SQ 2 +CT 0 1 +TL 1 +TE 56.4512 +CE 104.225 1.14891 56.4512 0.991762 +CD 2.72361 -0.13947 -0.816391 0.0336036 0.0263983 0.0336036 2.6072 0.284903 -1.16561 0.0336036 0.0409904 0.0336036 0 0 0 0 0 0 +LA 0.561781 +SE +ID 8247 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.233556) +BD GR Veto +PQ 4.99043 +SE +ET PH +ID 8248 +TI 1771360834.643383110 +CC NStripHits 2 +PE 82.6413 +PP 1.90877 0.216429 -0.583578 +PW 0 +SE +ID 8249 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (872.328876)) (GR Hit: Detector ID 0 and Energy 340.254136) +BD GR Veto +PQ 872.329 +SE +ID 8250 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.671525) +BD GR Veto +PQ 0.032846 +SE +ET PH +ID 8251 +TI 1771360834.645698894 +CC NStripHits 2 +PE 141.457 +PP -0.535766 -0.123996 -3.49373 +PW 0 +SE +ET PH +ID 8252 +TI 1771360834.646253060 +CC NStripHits 2 +PE 79.4944 +PP -2.74748 0.362078 -2.7953 +PW 0 +SE +ET PH +ID 8253 +TI 1771360834.646881227 +CC NStripHits 3 +PE 149.126 +PP -1.58342 -1.11442 -0.00154687 +PW 0 +SE +ET PH +ID 8254 +TI 1771360834.648026977 +CC NStripHits 2 +PE 80.6913 +PP -1.1178 0.204613 -1.39842 +PW 0 +SE +ET PH +ID 8255 +TI 1771360834.651484110 +CC NStripHits 3 +PE 254.558 +PP 2.72361 0.116942 -0.583578 +PW 0 +SE +ET UN +ID 8256 +TI 1771360834.651908044 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET PH +ID 8257 +TI 1771360834.653426577 +CC NStripHits 2 +PE 352.889 +PP 3.07283 -1.03624 -1.74764 +PW 0 +SE +ET PH +ID 8258 +TI 1771360834.653716694 +CC NStripHits 2 +PE 79.724 +PP 0.744703 0.377242 1.51173 +PW 0 +SE +ET PH +ID 8259 +TI 1771360834.655545444 +CC NStripHits 3 +PE 302.272 +PP 4.3533 -0.0172647 -1.63123 +PW 0 +SE +ET PH +ID 8260 +TI 1771360834.657482344 +CC NStripHits 2 +PE 56.863 +PP -1.00139 0.35731 0.929703 +PW 0 +SE +ET PH +ID 8261 +TI 1771360834.657905777 +CC NStripHits 2 +PE 154.724 +PP 3.42205 0.244291 -4.42498 +PW 0 +SE +ET PH +ID 8262 +TI 1771360834.661333711 +CC NStripHits 2 +PE 72.323 +PP 0.279078 0.368942 -0.00154687 +PW 0 +SE +ET UN +ID 8263 +TI 1771360834.661441561 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.1226 +SE +ID 8264 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 95.039882) +BD GR Veto +PQ 0.313148 +SE +ET UN +ID 8265 +TI 1771360834.663447694 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8266 +TI 1771360834.665178211 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.38 +SE +ET PH +ID 8267 +TI 1771360834.666209327 +CC NStripHits 2 +PE 82.5834 +PP 2.95642 0.354843 -3.49373 +PW 0 +SE +ET PH +ID 8268 +TI 1771360834.666749177 +CC NStripHits 3 +PE 272.524 +PP 1.55955 -0.458222 -0.816391 +PW 0 +SE +ET PH +ID 8269 +TI 1771360834.667259427 +CC NStripHits 2 +PE 83.0195 +PP -1.93264 0.375879 -3.02811 +PW 0 +SE +ET PH +ID 8270 +TI 1771360834.668380661 +CC NStripHits 2 +PE 77.6941 +PP 2.37439 0.255178 -2.21327 +PW 0 +SE +ET UN +ID 8271 +TI 1771360834.668859777 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 8272 +TI 1771360834.669009461 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 8273 +TI 1771360834.671145144 +CC NStripHits 4 +PQ 0.295566 +SQ 2 +CT 0.544404 0.455596 +TL 1 +TE 189.956 +CE 165.476 1.01177 189.956 1.02019 +CD 2.6072 -0.112545 -2.56248 0.0336036 0.0265976 0.0336036 2.37439 0.373718 -2.21327 0.0336036 0.0202171 0.0336036 0 0 0 0 0 0 +LA 0.642339 +SE +ET PH +ID 8274 +TI 1771360834.674584644 +CC NStripHits 3 +PE 159.741 +PP 0.628297 0.220492 -2.56248 +PW 0 +SE +ID 8275 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (49.599349)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 126.088656) (GR Hit: Detector ID 0 and Energy 207.790375) +BD GR Veto +PQ 49.5993 +SE +ET UN +ID 8276 +TI 1771360834.677194861 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 8277 +TI 1771360834.677937427 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8899 +SE +ID 8278 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.255972) +BD GR Veto +PQ 0.106278 +SE +ID 8279 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.877774) +BD GR Veto +PQ +SE +ET UN +ID 8280 +TI 1771360834.680413761 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8281 +TI 1771360834.680595978 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 195.949 +SE +ID 8282 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.193519) +BD GR Veto +PQ 0.0588314 +SE +ET PH +ID 8283 +TI 1771360834.682967628 +CC NStripHits 5 +PE 305.514 +PP 2.84002 0.118071 -0.117953 +PW 0 +SE +ID 8284 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 8285 +TI 1771360834.683586161 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9069 +SE +ID 8286 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 8287 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8288 +TI 1771360834.684763494 +CC NStripHits 2 +PE 60.1743 +PP 3.42205 0.125602 -3.61014 +PW 0 +SE +ET PH +ID 8289 +TI 1771360834.689021428 +CC NStripHits 2 +PE 301.282 +PP 3.42205 -1.0347 -3.49373 +PW 0 +SE +ET UN +ID 8290 +TI 1771360834.690540061 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 8291 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.653567) +BD GR Veto +PQ 0.00676254 +SE +ID 8292 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.833525) +BD GR Veto +PQ 0.134189 +SE +ID 8293 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 94.327657) +BD GR Veto +PQ 1.07671 +SE +ET PH +ID 8294 +TI 1771360834.697722111 +CC NStripHits 2 +PE 84.1008 +PP 1.79236 0.376895 -1.98045 +PW 0 +SE +ID 8295 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 167.899912) +BD GR Veto +PQ 0.0221752 +SE +ET CO +ID 8296 +TI 1771360834.701832628 +CC NStripHits 5 +PQ 11.9541 +SQ 2 +CT 0 1 +TL 1 +TE 69.5474 +CE 227.111 2.28978 69.5474 1.05719 +CD 4.23689 -0.922293 -2.44608 0.0336036 0.0198107 0.0336036 4.3533 -0.678452 -2.21327 0.0336036 0.0223893 0.0336036 0 0 0 0 0 0 +LA 0.356665 +SE +ET UN +ID 8297 +TI 1771360834.702275861 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8298 +TI 1771360834.702491411 +CC NStripHits 2 +PE 66.8438 +PP 1.79236 0.355639 0.347672 +PW 0 +SE +ET PH +ID 8299 +TI 1771360834.703065445 +CC NStripHits 2 +PE 191.071 +PP 2.02517 -0.95199 -3.37733 +PW 0 +SE +ET PH +ID 8300 +TI 1771360834.703315928 +CC NStripHits 2 +PE 72.6364 +PP -0.535766 0.357293 -1.86405 +PW 0 +SE +ET PH +ID 8301 +TI 1771360834.706491378 +CC NStripHits 3 +PE 152.686 +PP 2.84002 -0.513491 -4.42498 +PW 0 +SE +ET UN +ID 8302 +TI 1771360834.708071778 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 353.777 +SE +ET UN +ID 8303 +TI 1771360834.708458861 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 8304 +TI 1771360834.709024628 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1448 +SE +ET PH +ID 8305 +TI 1771360834.711168545 +CC NStripHits 3 +PE 356.516 +PP 2.72361 0.169759 1.62814 +PW 0 +SE +ID 8306 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.577152) +BD GR Veto +PQ 1.53503 +SE +ID 8307 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.599256) (Strip hit removed with energy 7.660359) +QA StripPairing (GR Hit: Detector ID 0 and Energy 140.454755) (GR Hit: Detector ID 0 and Energy 92.301060) +BD GR Veto +PQ 2.6683 +SE +ET PH +ID 8308 +TI 1771360834.711608845 +CC NStripHits 2 +PE 79.8095 +PP 3.53845 0.357758 -1.16561 +PW 0 +SE +ET PH +ID 8309 +TI 1771360834.711694978 +CC NStripHits 2 +PE 126.559 +PP 0.628297 -1.04234 -4.07577 +PW 0 +SE +ET PH +ID 8310 +TI 1771360834.712104728 +CC NStripHits 2 +PE 73.5904 +PP -0.768578 -0.331754 -4.07577 +PW 0 +SE +ET UN +ID 8311 +TI 1771360834.712761728 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 107.448 +SE +ID 8312 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (36.622037)) (GR Hit: Detector ID 0 and Energy 119.447603) +BD GR Veto +PQ 36.622 +SE +ID 8313 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8314 +TI 1771360834.715790478 +CC NStripHits 2 +PE 355.47 +PP 1.09392 -0.364489 0.929703 +PW 0 +SE +ET PH +ID 8315 +TI 1771360834.716533328 +CC NStripHits 2 +PE 356.15 +PP -1.00139 0.366082 -4.42498 +PW 0 +SE +ID 8316 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.240164) +BD GR Veto +PQ 0.00662351 +SE +ET PH +ID 8317 +TI 1771360834.719404028 +CC NStripHits 2 +PE 78.3153 +PP 3.88767 0.159619 -2.09686 +PW 0 +SE +ET UN +ID 8318 +TI 1771360834.719570661 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET PH +ID 8319 +TI 1771360834.720113862 +CC NStripHits 2 +PE 79.1441 +PP -0.0701406 0.0270112 -0.00154687 +PW 0 +SE +ET UN +ID 8320 +TI 1771360834.721008612 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8321 +TI 1771360834.722282395 +CC NStripHits 2 +PE 80.0516 +PP 2.6072 0.179435 1.97736 +PW 0 +SE +ET PH +ID 8322 +TI 1771360834.725177828 +CC NStripHits 3 +PE 77.4451 +PP 4.23689 0.181698 -3.26092 +PW 0 +SE +ET PH +ID 8323 +TI 1771360834.726475828 +CC NStripHits 2 +PE 126.64 +PP -2.51467 0.37228 -0.699984 +PW 0 +SE +ET UN +ID 8324 +TI 1771360834.726569212 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.6548 +SE +ET PH +ID 8325 +TI 1771360834.727107545 +CC NStripHits 2 +PE 28.0842 +PP -2.04905 0.092177 0.347672 +PW 0 +SE +ET UN +ID 8326 +TI 1771360834.727803062 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8327 +TI 1771360834.729586178 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8406 +SE +ET PH +ID 8328 +TI 1771360834.731334512 +CC NStripHits 2 +PE 79.8321 +PP -1.35061 0.323113 -4.54139 +PW 0 +SE +ET PH +ID 8329 +TI 1771360834.732463845 +CC NStripHits 2 +PE 79.4739 +PP 1.21033 0.365119 -1.98045 +PW 0 +SE +ET UN +ID 8330 +TI 1771360834.733057078 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 61.9256 +SE +ID 8331 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 8332 +TI 1771360834.735568678 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 77.493 +SE +ET PH +ID 8333 +TI 1771360834.736290662 +CC NStripHits 3 +PE 477.039 +PP 4.3533 -1.14697 1.16252 +PW 0 +SE +ET PH +ID 8334 +TI 1771360834.739348695 +CC NStripHits 3 +PE 79.7251 +PP -1.35061 0.145504 1.51173 +PW 0 +SE +ID 8335 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.463629) +BD GR Veto +PQ 0.456871 +SE +ET UN +ID 8336 +TI 1771360834.745499595 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8337 +TI 1771360834.745862045 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8338 +TI 1771360834.745975112 +CC NStripHits 2 +PE 79.5406 +PP 2.4908 0.343901 -3.95936 +PW 0 +SE +ET UN +ID 8339 +TI 1771360834.747622262 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.9884 +SE +ET PH +ID 8340 +TI 1771360834.749847379 +CC NStripHits 2 +PE 75.5895 +PP -0.884984 0.182756 2.55939 +PW 0 +SE +ET UN +ID 8341 +TI 1771360834.750900262 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 153.835 +SE +ET PH +ID 8342 +TI 1771360834.751646929 +CC NStripHits 2 +PE 81.1809 +PP -0.419359 0.192225 -2.09686 +PW 0 +SE +ET UN +ID 8343 +TI 1771360834.751965029 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 8344 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.621706) +BD GR Veto +PQ 0.227236 +SE +ID 8345 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.587087) +BD GR Veto +PQ 0.471417 +SE +ET PH +ID 8346 +TI 1771360834.758775679 +CC NStripHits 2 +PE 72.0864 +PP 0.279078 0.367198 -3.61014 +PW 0 +SE +ET PH +ID 8347 +TI 1771360834.759474562 +CC NStripHits 2 +PE 154.236 +PP 0.744703 -0.402924 -4.07577 +PW 0 +SE +ID 8348 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 209.947515) +BD GR Veto +PQ 0.0454064 +SE +ID 8349 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.112956) +BD GR Veto +PQ 0.161656 +SE +ET CO +ID 8350 +TI 1771360834.763167079 +CC NStripHits 6 +PQ 98.2851 +SQ 3 +CT 0.0916516 0.83203 +TL 1 +TE 68.9442 +CE 265.92 2.01828 68.9442 1.42902 +CD 2.02517 -0.0585324 0.231266 0.0336036 0.0270889 0.0336036 1.67595 -0.412186 0.347672 0.0336036 0.0242859 0.0336036 0 0 0 0 0 0 +LA 0.500678 +SE +ET PH +ID 8351 +TI 1771360834.764143179 +CC NStripHits 3 +PE 141.263 +PP -0.768578 -0.915237 -3.26092 +PW 0 +SE +ID 8352 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.973329) (Strip hit removed with energy 14.912073) +QA StripPairing (GR Hit: Detector ID 0 and Energy 142.276759) +BD GR Veto +PQ 0.438055 +SE +ET UN +ID 8353 +TI 1771360834.765355596 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.2837 +SE +ET UN +ID 8354 +TI 1771360834.765690229 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 59.9243 +SE +ET PH +ID 8355 +TI 1771360834.768854429 +CC NStripHits 2 +PE 120.295 +PP 2.84002 -0.559498 2.6758 +PW 0 +SE +ET PH +ID 8356 +TI 1771360834.769148429 +CC NStripHits 4 +PE 416.919 +PP -1.2342 -0.637215 -3.49373 +PW 0 +SE +ET PH +ID 8357 +TI 1771360834.770242829 +CC NStripHits 2 +PE 29.947 +PP 1.67595 0.213487 -3.49373 +PW 0 +SE +ET UN +ID 8358 +TI 1771360834.771512996 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 157.931 +SE +ET PH +ID 8359 +TI 1771360834.773365562 +CC NStripHits 2 +PE 166.757 +PP 1.90877 -0.131239 0.929703 +PW 0 +SE +ID 8360 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 160.034838) +BD GR Veto +PQ 0.190424 +SE +ID 8361 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 102.986109) +BD GR Veto +PQ 3.77412 +SE +ET UN +ID 8362 +TI 1771360834.774033196 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.3776 +SE +ET PH +ID 8363 +TI 1771360834.774202746 +CC NStripHits 3 +PE 147.589 +PP -1.35061 -0.0603985 1.27892 +PW 0 +SE +ET PH +ID 8364 +TI 1771360834.776906262 +CC NStripHits 2 +PE 54.7776 +PP 3.30564 0.141628 -4.19217 +PW 0 +SE +ID 8365 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 279.191689) +BD GR Veto +PQ 0.655497 +SE +ET UN +ID 8366 +TI 1771360834.777940779 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7882 +SE +ET PH +ID 8367 +TI 1771360834.778039746 +CC NStripHits 2 +PE 80.0395 +PP -0.884984 0.372716 -4.30858 +PW 0 +SE +ET PH +ID 8368 +TI 1771360834.778894179 +CC NStripHits 2 +PE 71.8373 +PP -2.39827 0.276314 0.813297 +PW 0 +SE +ET PH +ID 8369 +TI 1771360834.780770196 +CC NStripHits 2 +PE 82.0954 +PP -2.63108 0.324485 -0.467172 +PW 0 +SE +ET UN +ID 8370 +TI 1771360834.781917546 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 49.1797 +SE +ID 8371 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8372 +TI 1771360834.785776579 +CC NStripHits 2 +PE 64.1059 +PP -0.884984 -1.06497 -4.30858 +PW 0 +SE +ID 8373 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 290.527185) +BD GR Veto +PQ 0.58264 +SE +ET PH +ID 8374 +TI 1771360834.787412229 +CC NStripHits 2 +PE 34.282 +PP 3.77127 0.165639 -0.234359 +PW 0 +SE +ET UN +ID 8375 +TI 1771360834.787621446 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3244 +SE +ET UN +ID 8376 +TI 1771360834.787880696 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 105.641 +SE +ET UN +ID 8377 +TI 1771360834.789089513 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 54.0704 +SE +ET PH +ID 8378 +TI 1771360834.789933996 +CC NStripHits 3 +PE 184.047 +PP 4.00408 -0.46088 -3.49373 +PW 0 +SE +ET UN +ID 8379 +TI 1771360834.790725929 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.5585 +SE +ET PH +ID 8380 +TI 1771360834.791871313 +CC NStripHits 2 +PE 50.848 +PP 0.744703 0.360122 0.929703 +PW 0 +SE +ET CO +ID 8381 +TI 1771360834.793312996 +CC NStripHits 4 +PQ 39.8383 +SQ 2 +CT 0 1 +TL 1 +TE 127.73 +CE 140.651 1.50567 127.73 1.45863 +CD 3.30564 -0.338012 -1.63123 0.0336036 0.02494 0.0336036 3.07283 -0.43634 -1.51483 0.0336036 0.0240678 0.0336036 0 0 0 0 0 0 +LA 0.278241 +SE +ET PH +ID 8382 +TI 1771360834.793575746 +CC NStripHits 2 +PE 355.139 +PP 3.18923 0.221684 1.74455 +PW 0 +SE +ET UN +ID 8383 +TI 1771360834.793820329 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.5486 +SE +ID 8384 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.346042) +QA StripPairing (Best reduced chi square is not below 25 (33.766655)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.819894)) +BD GR Veto +PQ 33.7667 +SE +ID 8385 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.399614) +BD GR Veto +PQ 0.195715 +SE +ET PH +ID 8386 +TI 1771360834.795561946 +CC NStripHits 2 +PE 54.0569 +PP -2.28186 -0.98436 2.32658 +PW 0 +SE +ET PH +ID 8387 +TI 1771360834.796107196 +CC NStripHits 3 +PE 117.452 +PP 0.861109 0.0423824 -3.95936 +PW 0 +SE +ET PH +ID 8388 +TI 1771360834.796353313 +CC NStripHits 2 +PE 82.1826 +PP -1.00139 0.124651 1.62814 +PW 0 +SE +ET PH +ID 8389 +TI 1771360834.796702413 +CC NStripHits 3 +PE 69.554 +PP 3.65486 0.296322 -0.350766 +PW 0 +SE +ID 8390 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (49.083211)) (GR Hit: Detector ID 0 and Energy 160.340177) +BD GR Veto +PQ 49.0832 +SE +ET UN +ID 8391 +TI 1771360834.796945429 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6731 +SE +ET PH +ID 8392 +TI 1771360834.797119963 +CC NStripHits 2 +PE 92.2112 +PP -0.884984 -0.764462 0.114859 +PW 0 +SE +ET UN +ID 8393 +TI 1771360834.797394796 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.0022 +SE +ET PH +ID 8394 +TI 1771360834.798100246 +CC NStripHits 2 +PE 106.605 +PP 3.30564 0.25825 -2.21327 +PW 0 +SE +ID 8395 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (57.973886)) (GR Hit: Detector ID 0 and Energy 85.269887) +BD GR Veto +PQ 57.9739 +SE +ET PH +ID 8396 +TI 1771360834.799198646 +CC NStripHits 3 +PE 103.006 +PP 0.628297 -0.745973 -2.44608 +PW 0 +SE +ET UN +ID 8397 +TI 1771360834.799454679 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 8398 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.592604) +BD GR Veto +PQ 0.01498 +SE +ET UN +ID 8399 +TI 1771360834.802156146 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 73.1262 +SE +ID 8400 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 118.916478) +BD GR Veto +PQ 0.120863 +SE +ET UN +ID 8401 +TI 1771360834.805491513 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 177.15 +SE +ET PH +ID 8402 +TI 1771360834.807483863 +CC NStripHits 3 +PE 357.16 +PP -0.768578 0.266402 1.74455 +PW 0 +SE +ET PH +ID 8403 +TI 1771360834.810546746 +CC NStripHits 2 +PE 96.5489 +PP 0.977516 -0.224186 -4.54139 +PW 0 +SE +ET PH +ID 8404 +TI 1771360834.811937763 +CC NStripHits 3 +PE 182.792 +PP -0.884984 -0.125911 -3.49373 +PW 0 +SE +ET PH +ID 8405 +TI 1771360834.812823646 +CC NStripHits 3 +PE 177.681 +PP 0.861109 0.0598556 -3.84295 +PW 0 +SE +ET UN +ID 8406 +TI 1771360834.813034630 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 8407 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.748506) +BD GR Veto +PQ 13.2343 +SE +ET PH +ID 8408 +TI 1771360834.813630080 +CC NStripHits 2 +PE 142.987 +PP -0.0701406 -1.13653 0.231266 +PW 0 +SE +ET UN +ID 8409 +TI 1771360834.814004813 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 8410 +TI 1771360834.815015496 +CC NStripHits 7 +PQ 15.9036 +SQ 3 +CT 0.0243687 0.526681 +TL 1 +TE 335.58 +CE 256.713 2.3945 335.58 1.38094 +CD -1.46702 -0.201858 2.09377 0.0336036 0.0258465 0.0336036 -0.884984 -0.684541 2.32658 0.0336036 0.0223496 0.0336036 0 0 0 0 0 0 +LA 0.79117 +SE +ET UN +ID 8411 +TI 1771360834.816364430 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 80.427 +SE +ET PH +ID 8412 +TI 1771360834.817337096 +CC NStripHits 2 +PE 79.6565 +PP 1.32673 0.322374 0.464078 +PW 0 +SE +ET CO +ID 8413 +TI 1771360834.817632113 +CC NStripHits 5 +PQ 36.78 +SQ 2 +CT 0 1 +TL 1 +TE 57.0901 +CE 128.238 1.94686 57.0901 1.50557 +CD 4.00408 -0.677811 -0.350766 0.0336036 0.0223934 0.0336036 3.77127 -0.463775 -1.16561 0.0336036 0.0237902 0.0336036 0 0 0 0 0 0 +LA 0.874061 +SE +ET PH +ID 8414 +TI 1771360834.818182530 +CC NStripHits 2 +PE 301.633 +PP -2.63108 0.147449 -2.67889 +PW 0 +SE +ID 8415 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.430706) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 52.888871)) (GR Hit: Detector ID 0 and Energy 233.322293) +BD GR Veto +PQ 16.6587 +SE +ET PH +ID 8416 +TI 1771360834.822588630 +CC NStripHits 2 +PE 60.2382 +PP 0.279078 -1.17572 2.44298 +PW 0 +SE +ET CO +ID 8417 +TI 1771360834.823000430 +CC NStripHits 4 +PQ 11.7383 +SQ 2 +CT 0.528 0.472 +TL 1 +TE 181.872 +CE 165.148 1.02593 181.872 1.35918 +CD -1.81623 -0.678362 -0.234359 0.0336036 0.0223899 0.0336036 -2.16545 -1.08358 0.347672 0.0336036 0.0217794 0.0336036 0 0 0 0 0 0 +LA 0.790516 +SE +ID 8418 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.897517) +BD GR Veto +PQ 0.981384 +SE +ET PH +ID 8419 +TI 1771360834.826102530 +CC NStripHits 2 +PE 89.2696 +PP 1.21033 0.366596 2.6758 +PW 0 +SE +ET PH +ID 8420 +TI 1771360834.827007480 +CC NStripHits 2 +PE 125.192 +PP 1.44314 0.35933 -2.09686 +PW 0 +SE +ET PH +ID 8421 +TI 1771360834.829581263 +CC NStripHits 2 +PE 79.2379 +PP 3.42205 0.374 -1.28202 +PW 0 +SE +ET PH +ID 8422 +TI 1771360834.829992097 +CC NStripHits 2 +PE 80.4628 +PP -1.35061 -1.07227 -2.56248 +PW 0 +SE +ID 8423 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 59.652115) +BD GR Veto +PQ 1.43749 +SE +ID 8424 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.061732) +BD GR Veto +PQ 0.0619161 +SE +ID 8425 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 8426 +TI 1771360834.833791880 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6958 +SE +ET PH +ID 8427 +TI 1771360834.836349813 +CC NStripHits 2 +PE 202.774 +PP -1.35061 -0.555371 2.21017 +PW 0 +SE +ET PH +ID 8428 +TI 1771360834.837507213 +CC NStripHits 2 +PE 79.2826 +PP 0.162672 0.295226 -4.07577 +PW 0 +SE +ID 8429 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.269908) +BD GR Veto +PQ 0.0692562 +SE +ET UN +ID 8430 +TI 1771360834.839735647 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9717 +SE +ET CO +ID 8431 +TI 1771360834.840383914 +CC NStripHits 7 +PQ 27.8453 +SQ 2 +CT 0.585175 0.414825 +TL 1 +TE 217.995 +CE 175.468 1.44458 217.995 1.41229 +CD 4.3533 0.292684 1.27892 0.0336036 0.0415592 0.0336036 3.88767 0.193423 1.74455 0.0336036 0.0316341 0.0336036 0 0 0 0 0 0 +LA 0.665939 +SE +ET PH +ID 8432 +TI 1771360834.842264264 +CC NStripHits 2 +PE 48.413 +PP 2.4908 0.101037 -4.07577 +PW 0 +SE +ET PH +ID 8433 +TI 1771360834.842867964 +CC NStripHits 3 +PE 176.941 +PP -0.535766 0.366465 -2.21327 +PW 0 +SE +ET PH +ID 8434 +TI 1771360834.844978647 +CC NStripHits 2 +PE 80.8311 +PP -1.58342 0.344 -4.6578 +PW 0 +SE +ET PH +ID 8435 +TI 1771360834.845540747 +CC NStripHits 5 +PE 354.877 +PP 2.02517 -0.841141 -4.6578 +PW 0 +SE +ET CO +ID 8436 +TI 1771360834.846821347 +CC NStripHits 5 +PQ 2.85603 +SQ 2 +CT 0.58374 0.41626 +TL 1 +TE 244.711 +CE 186.941 1.15993 244.711 1.50044 +CD 0.279078 -0.223046 0.114859 0.0336036 0.0256692 0.0336036 -1.35061 0.106929 -1.39842 0.0336036 0.0290486 0.0336036 0 0 0 0 0 0 +LA 2.24828 +SE +ET UN +ID 8437 +TI 1771360834.847549814 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.3927 +SE +ID 8438 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.440477) +QA StripPairing (GR Hit: Detector ID 0 and Energy 125.662546) +BD GR Veto +PQ 10.8688 +SE +ET UN +ID 8439 +TI 1771360834.849418080 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 8440 +TI 1771360834.853134530 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 70.0681 +SE +ET UN +ID 8441 +TI 1771360834.853300630 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 408.237 +SE +ID 8442 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 246.055676) +BD GR Veto +PQ 0.00134116 +SE +ID 8443 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.616929) +BD GR Veto +PQ 0.0278021 +SE +ET PH +ID 8444 +TI 1771360834.855146347 +CC NStripHits 3 +PE 133.895 +PP -0.768578 -0.167802 -4.6578 +PW 0 +SE +ET UN +ID 8445 +TI 1771360834.855698314 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.4818 +SE +ET PH +ID 8446 +TI 1771360834.861677197 +CC NStripHits 3 +PE 73.6037 +PP 3.07283 0.336637 -3.26092 +PW 0 +SE +ET PH +ID 8447 +TI 1771360834.863240664 +CC NStripHits 2 +PE 98.4467 +PP 1.55955 0.370713 -0.583578 +PW 0 +SE +ET PH +ID 8448 +TI 1771360834.864142831 +CC NStripHits 2 +PE 67.5115 +PP 0.0462656 0.245216 -1.28202 +PW 0 +SE +ET PH +ID 8449 +TI 1771360834.865896314 +CC NStripHits 2 +PE 80.113 +PP -0.0701406 0.341902 -0.00154687 +PW 0 +SE +ET PH +ID 8450 +TI 1771360834.867230814 +CC NStripHits 2 +PE 82.4955 +PP 1.09392 0.212195 1.62814 +PW 0 +SE +ET PH +ID 8451 +TI 1771360834.867304431 +CC NStripHits 2 +PE 63.8626 +PP 0.861109 -0.759815 -0.467172 +PW 0 +SE +ET PH +ID 8452 +TI 1771360834.871015781 +CC NStripHits 2 +PE 173.641 +PP 0.279078 -1.03604 -3.02811 +PW 0 +SE +ET PH +ID 8453 +TI 1771360834.872307847 +CC NStripHits 2 +PE 66.951 +PP -1.00139 0.37225 0.464078 +PW 0 +SE +ID 8454 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.684798) +BD GR Veto +PQ 0.0491632 +SE +ET PH +ID 8455 +TI 1771360834.875130831 +CC NStripHits 3 +PE 304.397 +PP -0.768578 -0.904433 1.04611 +PW 0 +SE +ET CO +ID 8456 +TI 1771360834.875742214 +CC NStripHits 7 +PQ 9.93287 +SQ 3 +CT 0.000124614 0.13999 +TL 1 +TE 53.5642 +CE 301.606 1.76917 53.5642 0.963583 +CD -1.81623 -0.587818 -0.00154687 0.0336036 0.0228793 0.0336036 -0.884984 -0.865381 -1.16561 0.0336036 0.0203135 0.0336036 0 0 0 0 0 0 +LA 1.40834 +SE +ET PH +ID 8457 +TI 1771360834.875939547 +CC NStripHits 2 +PE 70.8755 +PP 1.32673 0.260332 -4.30858 +PW 0 +SE +ID 8458 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.464681) +QA StripPairing (GR Hit: Detector ID 0 and Energy 149.798464) +BD GR Veto +PQ 3.11913 +SE +ET PH +ID 8459 +TI 1771360834.877068364 +CC NStripHits 2 +PE 81.6795 +PP -2.74748 0.210461 -3.49373 +PW 0 +SE +ET CO +ID 8460 +TI 1771360834.877294214 +CC NStripHits 5 +PQ 0.88346 +SQ 2 +CT 0 1 +TL 1 +TE 87.6298 +CE 266.989 1.23307 87.6298 0.980593 +CD -2.51467 0.246122 -1.86405 0.0336036 0.0360093 0.0336036 -2.28186 0.294917 -1.63123 0.0336036 0.0416699 0.0336036 0 0 0 0 0 0 +LA 0.332846 +SE +ID 8461 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.459469) +BD GR Veto +PQ 1.19323 +SE +ET UN +ID 8462 +TI 1771360834.878903264 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.9486 +SE +ET PH +ID 8463 +TI 1771360834.879595364 +CC NStripHits 2 +PE 78.7799 +PP 2.14158 0.36628 -3.26092 +PW 0 +SE +ET PH +ID 8464 +TI 1771360834.880349314 +CC NStripHits 3 +PE 303.502 +PP 4.12048 -0.971889 -3.95936 +PW 0 +SE +ET UN +ID 8465 +TI 1771360834.881692981 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.458 +SE +ET PH +ID 8466 +TI 1771360834.882067098 +CC NStripHits 2 +PE 30.6133 +PP -0.419359 -0.133053 -3.61014 +PW 0 +SE +ID 8467 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 22.092546) +BD GR Veto +PQ 0.116676 +SE +ID 8468 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.118466) +BD GR Veto +PQ 13.2104 +SE +ET PH +ID 8469 +TI 1771360834.883257231 +CC NStripHits 2 +PE 65.372 +PP 3.42205 0.32763 0.580484 +PW 0 +SE +ID 8470 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ID 8471 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.060526) +BD GR Veto +PQ +SE +ID 8472 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.955020) +BD GR Veto +PQ +SE +ET PH +ID 8473 +TI 1771360834.884778831 +CC NStripHits 2 +PE 29.9072 +PP 0.628297 0.251673 1.62814 +PW 0 +SE +ET PH +ID 8474 +TI 1771360834.885182381 +CC NStripHits 2 +PE 150.397 +PP 4.00408 0.00747979 -0.816391 +PW 0 +SE +ET PH +ID 8475 +TI 1771360834.885773331 +CC NStripHits 2 +PE 30.6353 +PP -1.69983 0.295919 -1.51483 +PW 0 +SE +ET UN +ID 8476 +TI 1771360834.887408831 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.9264 +SE +ET UN +ID 8477 +TI 1771360834.889147548 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 76.0931 +SE +ID 8478 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.501696) +BD GR Veto +PQ 0.520898 +SE +ET PH +ID 8479 +TI 1771360834.889681764 +CC NStripHits 2 +PE 98.9689 +PP 1.09392 0.233855 2.32658 +PW 0 +SE +ET UN +ID 8480 +TI 1771360834.890731748 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.4875 +SE +ET PH +ID 8481 +TI 1771360834.891377914 +CC NStripHits 2 +PE 72.8505 +PP 0.977516 0.363911 -3.61014 +PW 0 +SE +ID 8482 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.625740) +BD GR Veto +PQ 0.000768991 +SE +ET PH +ID 8483 +TI 1771360834.893704564 +CC NStripHits 4 +PE 163.608 +PP 3.88767 -0.765448 -0.234359 +PW 0 +SE +ET PH +ID 8484 +TI 1771360834.894492664 +CC NStripHits 3 +PE 181.208 +PP -2.63108 -0.240688 -2.67889 +PW 0 +SE +ET PH +ID 8485 +TI 1771360834.895621798 +CC NStripHits 2 +PE 354.313 +PP 2.25798 -1.11507 -3.61014 +PW 0 +SE +ID 8486 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.320564) +BD GR Veto +PQ +SE +ET CO +ID 8487 +TI 1771360834.898502748 +CC NStripHits 5 +PQ 0.0856523 +SQ 2 +CT 0 1 +TL 1 +TE 94.6666 +CE 265.152 1.26087 94.6666 1.03568 +CD 2.25798 0.374717 -0.467172 0.0336036 0.0195203 0.0336036 1.90877 0.26331 -0.350766 0.0336036 0.0383862 0.0336036 0 0 0 0 0 0 +LA 0.38459 +SE +ET UN +ID 8488 +TI 1771360834.898991731 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.5178 +SE +ET PH +ID 8489 +TI 1771360834.899134914 +CC NStripHits 2 +PE 45.8395 +PP 3.88767 -0.57469 -4.30858 +PW 0 +SE +ET UN +ID 8490 +TI 1771360834.899625981 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.5342 +SE +ET PH +ID 8491 +TI 1771360834.901071115 +CC NStripHits 2 +PE 114.178 +PP 2.72361 0.155479 1.04611 +PW 0 +SE +ET UN +ID 8492 +TI 1771360834.901712031 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4267 +SE +ID 8493 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.861340) +BD GR Veto +PQ 0.170064 +SE +ET PH +ID 8494 +TI 1771360834.902720265 +CC NStripHits 3 +PE 146.867 +PP -2.74748 -0.879533 -1.86405 +PW 0 +SE +ID 8495 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (199.079669)) (GR Hit: Detector ID 0 and Energy 183.572356) +BD GR Veto +PQ 199.08 +SE +ET PH +ID 8496 +TI 1771360834.906441231 +CC NStripHits 3 +PE 88.191 +PP 4.00408 0.306762 1.27892 +PW 0 +SE +ET PH +ID 8497 +TI 1771360834.907435715 +CC NStripHits 2 +PE 143.679 +PP -0.768578 -0.0642542 1.39533 +PW 0 +SE +ID 8498 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.357946) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 58.306499)) +BD GR Veto +PQ 11.1714 +SE +ET UN +ID 8499 +TI 1771360834.908457665 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3189 +SE +ET PH +ID 8500 +TI 1771360834.910490515 +CC NStripHits 2 +PE 80.4249 +PP 1.67595 -0.125087 -3.14452 +PW 0 +SE +ET PH +ID 8501 +TI 1771360834.911389131 +CC NStripHits 2 +PE 211.117 +PP 1.90877 -0.0504976 1.97736 +PW 0 +SE +ET UN +ID 8502 +TI 1771360834.912297081 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3459 +SE +ET PH +ID 8503 +TI 1771360834.913328381 +CC NStripHits 2 +PE 72.4902 +PP 1.32673 0.36064 -0.467172 +PW 0 +SE +ET UN +ID 8504 +TI 1771360834.914478615 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9318 +SE +ET PH +ID 8505 +TI 1771360834.914651315 +CC NStripHits 2 +PE 80.5308 +PP 3.65486 0.263685 -4.07577 +PW 0 +SE +ET UN +ID 8506 +TI 1771360834.914872181 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 8507 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 43.700318) +BD GR Veto +PQ 0.0734955 +SE +ET PH +ID 8508 +TI 1771360834.916587065 +CC NStripHits 2 +PE 30.3813 +PP 0.395484 -0.056071 2.32658 +PW 0 +SE +ET PH +ID 8509 +TI 1771360834.918436831 +CC NStripHits 2 +PE 75.6791 +PP -1.69983 0.316266 -2.44608 +PW 0 +SE +ET PH +ID 8510 +TI 1771360834.920463882 +CC NStripHits 2 +PE 31.5688 +PP 2.72361 -0.00834756 1.39533 +PW 0 +SE +ET PH +ID 8511 +TI 1771360834.922182115 +CC NStripHits 2 +PE 71.6586 +PP 0.395484 0.225389 1.16252 +PW 0 +SE +ET UN +ID 8512 +TI 1771360834.924035932 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 210.797 +SE +ET UN +ID 8513 +TI 1771360834.926919298 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8514 +TI 1771360834.927372965 +CC NStripHits 2 +PE 181.292 +PP 1.09392 -1.10823 -2.67889 +PW 0 +SE +ET PH +ID 8515 +TI 1771360834.927603548 +CC NStripHits 2 +PE 302.548 +PP 1.32673 0.135295 0.813297 +PW 0 +SE +ET UN +ID 8516 +TI 1771360834.929181382 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.6862 +SE +ID 8517 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.737502) +BD GR Veto +PQ 0.00336087 +SE +ET PH +ID 8518 +TI 1771360834.932647832 +CC NStripHits 3 +PE 95.5863 +PP 0.628297 -0.105667 -1.86405 +PW 0 +SE +ID 8519 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.196567) +BD GR Veto +PQ 0.711578 +SE +ID 8520 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.119901) +BD GR Veto +PQ 4.11598 +SE +ET PH +ID 8521 +TI 1771360834.933972515 +CC NStripHits 4 +PE 208.7 +PP -2.63108 0.0358261 -1.63123 +PW 0 +SE +ET PH +ID 8522 +TI 1771360834.934174132 +CC NStripHits 2 +PE 62.6072 +PP -0.419359 -1.03802 2.09377 +PW 0 +SE +ID 8523 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.277383) (Strip hit removed with energy 15.076442) (Strip hit removed with energy 15.137790) +QA StripPairing (GR Hit: Detector ID 0 and Energy 201.733253) +BD GR Veto +PQ 1.54573 +SE +ET CO +ID 8524 +TI 1771360834.935107498 +CC NStripHits 5 +PQ 0.0835655 +SQ 2 +CT 0 1 +TL 1 +TE 64.0927 +CE 124.517 1.12351 64.0927 0.991103 +CD -0.652172 -0.35572 1.74455 0.0336036 0.0248013 0.0336036 -0.768578 0.140048 1.97736 0.0336036 0.0297838 0.0336036 0 0 0 0 0 0 +LA 0.559944 +SE +ET CO +ID 8525 +TI 1771360834.936765165 +CC NStripHits 7 +PQ 0.98836 +SQ 2 +CT 0 1 +TL 1 +TE 45.6659 +CE 136.356 1.63241 45.6659 1.03763 +CD 2.02517 -0.66331 -1.63123 0.0336036 0.0224799 0.0336036 0.628297 -1.12982 -0.583578 0.0336036 0.0279706 0.0336036 0 0 0 0 0 0 +LA 1.80734 +SE +ET PH +ID 8526 +TI 1771360834.940498249 +CC NStripHits 2 +PE 56.8536 +PP -2.04905 0.376269 -4.19217 +PW 0 +SE +ET PH +ID 8527 +TI 1771360834.940926132 +CC NStripHits 2 +PE 78.1836 +PP 0.511891 0.185524 -1.16561 +PW 0 +SE +ET PH +ID 8528 +TI 1771360834.941636949 +CC NStripHits 3 +PE 215.215 +PP 4.12048 0.28678 1.97736 +PW 0 +SE +ET PH +ID 8529 +TI 1771360834.943703849 +CC NStripHits 3 +PE 110.001 +PP 2.72361 0.374757 -1.16561 +PW 0 +SE +ET PH +ID 8530 +TI 1771360834.944179515 +CC NStripHits 3 +PE 159.768 +PP 2.6072 -0.0155259 0.114859 +PW 0 +SE +ID 8531 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.584736) +BD GR Veto +PQ 0.577293 +SE +ET UN +ID 8532 +TI 1771360834.946530782 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.2099 +SE +ET PH +ID 8533 +TI 1771360834.948442182 +CC NStripHits 2 +PE 80.1668 +PP -1.00139 0.337703 -0.583578 +PW 0 +SE +ET UN +ID 8534 +TI 1771360834.948648749 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 8535 +TI 1771360834.950688782 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 8536 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 190.117337) +BD GR Veto +PQ 16.2312 +SE +ID 8537 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 8538 +TI 1771360834.953502615 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.6294 +SE +ET PH +ID 8539 +TI 1771360834.954670732 +CC NStripHits 2 +PE 99.5958 +PP 0.977516 -1.01199 -0.816391 +PW 0 +SE +ID 8540 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.951219) +QA StripPairing (GR Hit: Detector ID 0 and Energy 186.130154) +BD GR Veto +PQ 1.9691 +SE +ET PH +ID 8541 +TI 1771360834.957009665 +CC NStripHits 2 +PE 77.9143 +PP 4.00408 0.159232 -0.350766 +PW 0 +SE +ID 8542 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 170.190428) +BD GR Veto +PQ 0.0427075 +SE +ET PH +ID 8543 +TI 1771360834.959223249 +CC NStripHits 4 +PE 506.89 +PP -1.81623 -0.0632428 2.21017 +PW 0 +SE +ET PH +ID 8544 +TI 1771360834.959496532 +CC NStripHits 3 +PE 130.378 +PP -0.186547 0.368227 -1.74764 +PW 0 +SE +ET UN +ID 8545 +TI 1771360834.960138849 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3736 +SE +ET UN +ID 8546 +TI 1771360834.960837282 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 68.903 +SE +ID 8547 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 89.399703) +BD GR Veto +PQ 1.39287 +SE +ET PH +ID 8548 +TI 1771360834.964462999 +CC NStripHits 2 +PE 197.529 +PP 2.02517 0.18719 2.09377 +PW 0 +SE +ET PH +ID 8549 +TI 1771360834.964824366 +CC NStripHits 2 +PE 45.3365 +PP -1.00139 -0.925258 0.347672 +PW 0 +SE +ID 8550 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.484008) +BD GR Veto +PQ +SE +ET PH +ID 8551 +TI 1771360834.967665232 +CC NStripHits 3 +PE 95.9905 +PP -1.1178 0.348313 -3.02811 +PW 0 +SE +ET PH +ID 8552 +TI 1771360834.970221216 +CC NStripHits 2 +PE 28.7675 +PP -0.535766 0.0276242 -1.16561 +PW 0 +SE +ID 8553 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.647427) +BD GR Veto +PQ 0.18767 +SE +ET PH +ID 8554 +TI 1771360834.972123282 +CC NStripHits 6 +PE 200.931 +PP 4.00408 -0.190603 -0.117953 +PW 0 +SE +ID 8555 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.930986) +BD GR Veto +PQ 22.8788 +SE +ID 8556 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.143924) +QA StripPairing (Best reduced chi square is not below 25 (681.795355)) (GR Hit: Detector ID 0 and Energy 533.552537) +BD GR Veto +PQ 681.795 +SE +ID 8557 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.993674) +BD GR Veto +PQ +SE +ID 8558 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.312280) +BD GR Veto +PQ 0.198412 +SE +ID 8559 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.337071) +BD GR Veto +PQ 0.241775 +SE +ET UN +ID 8560 +TI 1771360834.976306716 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.9619 +SE +ID 8561 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 8562 +TI 1771360834.976898799 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.1835 +SE +ET UN +ID 8563 +TI 1771360834.979258082 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7891 +SE +ET PH +ID 8564 +TI 1771360834.980957233 +CC NStripHits 3 +PE 347.13 +PP -1.58342 0.183135 -3.61014 +PW 0 +SE +ET PH +ID 8565 +TI 1771360834.981123666 +CC NStripHits 3 +PE 138.763 +PP -0.0701406 0.365281 -3.61014 +PW 0 +SE +ET PH +ID 8566 +TI 1771360834.981527566 +CC NStripHits 2 +PE 82.9964 +PP -2.39827 -0.151931 0.929703 +PW 0 +SE +ID 8567 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 145.108021) +BD GR Veto +PQ 0.132336 +SE +ET UN +ID 8568 +TI 1771360834.982317799 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.8442 +SE +ET PH +ID 8569 +TI 1771360834.982850316 +CC NStripHits 2 +PE 81.2989 +PP -1.93264 0.370286 -2.09686 +PW 0 +SE +ID 8570 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.281913) +BD GR Veto +PQ +SE +ET UN +ID 8571 +TI 1771360834.984908366 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.5035 +SE +ET UN +ID 8572 +TI 1771360834.985753549 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 159.059 +SE +ET PH +ID 8573 +TI 1771360834.987467049 +CC NStripHits 5 +PE 354.479 +PP 1.67595 -0.965029 0.580484 +PW 0 +SE +ID 8574 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.496819) +BD GR Veto +PQ 0.0730531 +SE +ET CO +ID 8575 +TI 1771360834.987937883 +CC NStripHits 5 +PQ 0.195261 +SQ 2 +CT 0 1 +TL 1 +TE 40.3498 +CE 184.105 1.22263 40.3498 0.954617 +CD -1.2342 -0.423364 -2.44608 0.0336036 0.0241719 0.0336036 -0.768578 0.0900673 -1.98045 0.0336036 0.0287267 0.0336036 0 0 0 0 0 0 +LA 0.835001 +SE +ET UN +ID 8576 +TI 1771360834.990811933 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 297.629 +SE +ET PH +ID 8577 +TI 1771360834.992968199 +CC NStripHits 2 +PE 78.8954 +PP 3.07283 0.0289796 1.97736 +PW 0 +SE +ET UN +ID 8578 +TI 1771360834.994709349 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7161 +SE +ET UN +ID 8579 +TI 1771360834.994978816 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8580 +TI 1771360834.995480749 +CC NStripHits 2 +PE 353.378 +PP -2.39827 0.263344 -3.37733 +PW 0 +SE +ET PH +ID 8581 +TI 1771360834.995878383 +CC NStripHits 2 +PE 81.3006 +PP -1.58342 0.315647 -2.09686 +PW 0 +SE +ET UN +ID 8582 +TI 1771360834.996313283 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 261.257 +SE +ET UN +ID 8583 +TI 1771360834.998051883 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 44.2197 +SE +ET PH +ID 8584 +TI 1771360834.999633716 +CC NStripHits 2 +PE 102.123 +PP -2.04905 -0.0963455 0.114859 +PW 0 +SE +ET PH +ID 8585 +TI 1771360834.999781199 +CC NStripHits 2 +PE 354.608 +PP -0.0701406 -0.19703 -2.21327 +PW 0 +SE +ET PH +ID 8586 +TI 1771360835.000215783 +CC NStripHits 2 +PE 80.2488 +PP 0.628297 0.331927 -4.30858 +PW 0 +SE +ET PH +ID 8587 +TI 1771360835.000604550 +CC NStripHits 2 +PE 29.4195 +PP -2.86389 0.109008 -0.583578 +PW 0 +SE +ET UN +ID 8588 +TI 1771360835.003580483 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8763 +SE +ET UN +ID 8589 +TI 1771360835.004365633 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.3118 +SE +ID 8590 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.547066) +BD GR Veto +PQ 11.1963 +SE +ET PH +ID 8591 +TI 1771360835.006259400 +CC NStripHits 2 +PE 80.978 +PP -1.58342 0.0688533 2.09377 +PW 0 +SE +ET PH +ID 8592 +TI 1771360835.008073433 +CC NStripHits 2 +PE 76.2952 +PP 0.628297 0.367624 -1.39842 +PW 0 +SE +ET UN +ID 8593 +TI 1771360835.011177266 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 8594 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 84.039866) +BD GR Veto +PQ 0.524542 +SE +ET PH +ID 8595 +TI 1771360835.015297416 +CC NStripHits 2 +PE 183.639 +PP 0.395484 -0.488145 1.51173 +PW 0 +SE +ET PH +ID 8596 +TI 1771360835.015593766 +CC NStripHits 4 +PE 209.997 +PP -1.35061 0.325387 -1.98045 +PW 0 +SE +ET UN +ID 8597 +TI 1771360835.016687683 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.299 +SE +ET UN +ID 8598 +TI 1771360835.017451400 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.2423 +SE +ET PH +ID 8599 +TI 1771360835.020532250 +CC NStripHits 2 +PE 73.8509 +PP 1.09392 0.342716 -4.42498 +PW 0 +SE +ET UN +ID 8600 +TI 1771360835.022366650 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET CO +ID 8601 +TI 1771360835.022931167 +CC NStripHits 5 +PQ 4.39234 +SQ 2 +CT 0 1 +TL 1 +TE 56.9781 +CE 247.264 1.50114 56.9781 1.00739 +CD 0.162672 -0.661781 -3.02811 0.0336036 0.0224884 0.0336036 0.279078 -0.759176 -3.72655 0.0336036 0.0215137 0.0336036 0 0 0 0 0 0 +LA 0.714741 +SE +ET PH +ID 8602 +TI 1771360835.024039917 +CC NStripHits 2 +PE 79.2516 +PP 0.279078 0.111006 -1.39842 +PW 0 +SE +ET PH +ID 8603 +TI 1771360835.024824333 +CC NStripHits 2 +PE 151.532 +PP -2.28186 0.295125 0.696891 +PW 0 +SE +ET PH +ID 8604 +TI 1771360835.024923917 +CC NStripHits 3 +PE 63.5332 +PP 3.18923 -1.00498 -4.19217 +PW 0 +SE +ET UN +ID 8605 +TI 1771360835.027247633 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 57.2895 +SE +ET PH +ID 8606 +TI 1771360835.029335033 +CC NStripHits 2 +PE 79.5749 +PP 2.72361 0.364675 0.813297 +PW 0 +SE +ET UN +ID 8607 +TI 1771360835.030048233 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 8608 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.721002) +BD GR Veto +PQ 0.1313 +SE +ID 8609 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 326.490884) +BD GR Veto +PQ 5.20953e-06 +SE +ET PH +ID 8610 +TI 1771360835.038216417 +CC NStripHits 2 +PE 82.2454 +PP 0.861109 -0.256251 -2.44608 +PW 0 +SE +ET UN +ID 8611 +TI 1771360835.038734017 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8612 +TI 1771360835.039104100 +CC NStripHits 2 +PE 30.0194 +PP -2.86389 0.247948 1.04611 +PW 0 +SE +ET PH +ID 8613 +TI 1771360835.039376417 +CC NStripHits 2 +PE 487.728 +PP 0.279078 -0.500345 -3.14452 +PW 0 +SE +ET PH +ID 8614 +TI 1771360835.040852450 +CC NStripHits 2 +PE 194.443 +PP -1.46702 0.192826 -2.44608 +PW 0 +SE +ET UN +ID 8615 +TI 1771360835.044098584 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.0181 +SE +ET UN +ID 8616 +TI 1771360835.045123884 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7584 +SE +ID 8617 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.063158) +BD GR Veto +PQ 0.553766 +SE +ET PH +ID 8618 +TI 1771360835.046264767 +CC NStripHits 2 +PE 81.0419 +PP -1.2342 0.182565 -2.67889 +PW 0 +SE +ID 8619 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 97.866161) +BD GR Veto +PQ 0.0438828 +SE +ET PH +ID 8620 +TI 1771360835.046642117 +CC NStripHits 2 +PE 178.169 +PP 2.72361 0.0729713 0.813297 +PW 0 +SE +ET PH +ID 8621 +TI 1771360835.046904317 +CC NStripHits 2 +PE 173.588 +PP 1.21033 0.145614 2.21017 +PW 0 +SE +ET PH +ID 8622 +TI 1771360835.049145934 +CC NStripHits 2 +PE 81.5001 +PP -1.35061 0.136005 -0.583578 +PW 0 +SE +ET PH +ID 8623 +TI 1771360835.049531634 +CC NStripHits 3 +PE 111.099 +PP 1.90877 -0.667205 2.55939 +PW 0 +SE +ID 8624 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 269.509494) +BD GR Veto +PQ 0.268171 +SE +ET PH +ID 8625 +TI 1771360835.050209300 +CC NStripHits 3 +PE 277.501 +PP -1.1178 -0.42794 -0.234359 +PW 0 +SE +ID 8626 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 21.849566)) (GR Hit: Detector ID 0 and Energy 166.571579) +BD GR Veto +PQ 11.596 +SE +ET PH +ID 8627 +TI 1771360835.053152234 +CC NStripHits 3 +PE 155.907 +PP 1.21033 0.301234 1.39533 +PW 0 +SE +ET CO +ID 8628 +TI 1771360835.054311984 +CC NStripHits 7 +PQ 6.43668 +SQ 3 +CT 8.95636e-05 0.596868 +TL 1 +TE 159.548 +CE 189.699 1.38561 159.548 2.1248 +CD -0.0701406 -0.615164 -1.51483 0.0336036 0.0227391 0.0336036 -0.768578 0.261168 0.696891 0.0336036 0.0380857 0.0336036 0 0 0 0 0 0 +LA 0.862606 +SE +ET PH +ID 8629 +TI 1771360835.054939567 +CC NStripHits 2 +PE 30.5226 +PP 2.4908 0.37282 0.114859 +PW 0 +SE +ID 8630 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 107.812948) +BD GR Veto +PQ 0.0524638 +SE +ET PH +ID 8631 +TI 1771360835.055682150 +CC NStripHits 2 +PE 94.1669 +PP 0.861109 -0.581307 -0.816391 +PW 0 +SE +ET PH +ID 8632 +TI 1771360835.056005450 +CC NStripHits 2 +PE 21.4751 +PP 2.6072 -0.699211 -2.56248 +PW 0 +SE +ET PH +ID 8633 +TI 1771360835.056189884 +CC NStripHits 2 +PE 79.1116 +PP -0.186547 0.0961551 1.27892 +PW 0 +SE +ET UN +ID 8634 +TI 1771360835.056945484 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 134.558 +SE +ET PH +ID 8635 +TI 1771360835.058112284 +CC NStripHits 2 +PE 23.9367 +PP 1.55955 -0.775979 -4.6578 +PW 0 +SE +ET PH +ID 8636 +TI 1771360835.058560584 +CC NStripHits 2 +PE 52.1408 +PP -0.768578 0.380686 -3.02811 +PW 0 +SE +ID 8637 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 209.390548) +BD GR Veto +PQ 1.075 +SE +ET UN +ID 8638 +TI 1771360835.061197017 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 66.0768 +SE +ET PH +ID 8639 +TI 1771360835.064165851 +CC NStripHits 2 +PE 140.168 +PP -2.74748 -1.10316 0.347672 +PW 0 +SE +ET PH +ID 8640 +TI 1771360835.066324501 +CC NStripHits 2 +PE 141.918 +PP -2.9803 0.337395 0.114859 +PW 0 +SE +ET PH +ID 8641 +TI 1771360835.068188584 +CC NStripHits 2 +PE 54.6882 +PP -2.74748 -1.13465 0.231266 +PW 0 +SE +ET CO +ID 8642 +TI 1771360835.069110901 +CC NStripHits 7 +PQ 0.500484 +SQ 3 +CT 0.211125 0.222722 +TL 1 +TE 42.7382 +CE 727.475 1.63729 42.7382 0.996497 +CD 1.55955 -0.745121 -2.9117 0.0336036 0.0217251 0.0336036 1.79236 -0.279212 -2.44608 0.0336036 0.0253114 0.0336036 0 0 0 0 0 0 +LA 0.274933 +SE +ET CO +ID 8643 +TI 1771360835.071518534 +CC NStripHits 4 +PQ 0.898403 +SQ 2 +CT 0 1 +TL 1 +TE 22.383 +CE 156.6 1.01015 22.383 1.00008 +CD 4.23689 -0.935816 1.97736 0.0336036 0.019705 0.0336036 -0.302953 -0.300755 1.74455 0.0336036 0.0251767 0.0336036 0 0 0 0 0 0 +LA 4.58995 +SE +ET UN +ID 8644 +TI 1771360835.072639884 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 8645 +TI 1771360835.072711751 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8844 +SE +ID 8646 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (150.181733)) (GR Hit: Detector ID 0 and Energy 135.476138) +BD GR Veto +PQ 150.182 +SE +ET PH +ID 8647 +TI 1771360835.073081101 +CC NStripHits 2 +PE 354.25 +PP -0.186547 -0.238729 0.464078 +PW 0 +SE +ET PH +ID 8648 +TI 1771360835.074189734 +CC NStripHits 2 +PE 351.403 +PP 3.65486 -0.0444836 -1.16561 +PW 0 +SE +ET PH +ID 8649 +TI 1771360835.075664817 +CC NStripHits 2 +PE 77.8615 +PP -0.535766 0.199147 0.347672 +PW 0 +SE +ET PH +ID 8650 +TI 1771360835.075874817 +CC NStripHits 2 +PE 80.8945 +PP 3.42205 0.213742 -3.72655 +PW 0 +SE +ET UN +ID 8651 +TI 1771360835.076506301 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8652 +TI 1771360835.076604234 +CC NStripHits 2 +PE 81.8729 +PP 2.14158 0.0755376 -3.84295 +PW 0 +SE +ET PH +ID 8653 +TI 1771360835.077046017 +CC NStripHits 2 +PE 59.7252 +PP 1.44314 0.355471 0.114859 +PW 0 +SE +ET PH +ID 8654 +TI 1771360835.080019084 +CC NStripHits 3 +PE 219.041 +PP -1.00139 -0.00626125 1.86095 +PW 0 +SE +ET PH +ID 8655 +TI 1771360835.081669918 +CC NStripHits 2 +PE 260.147 +PP -2.86389 -0.0020714 0.929703 +PW 0 +SE +ID 8656 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.743192) +BD GR Veto +PQ 0.0267852 +SE +ET PH +ID 8657 +TI 1771360835.082956501 +CC NStripHits 2 +PE 85.5498 +PP -0.652172 -1.16048 0.813297 +PW 0 +SE +ID 8658 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 8659 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 8660 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8661 +TI 1771360835.085420101 +CC NStripHits 2 +PE 159.698 +PP 2.37439 -0.636132 0.464078 +PW 0 +SE +ID 8662 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8663 +TI 1771360835.086283984 +CC NStripHits 2 +PE 79.8204 +PP -1.46702 0.0656646 -1.51483 +PW 0 +SE +ET UN +ID 8664 +TI 1771360835.086428934 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 71.1615 +SE +ET PH +ID 8665 +TI 1771360835.088392201 +CC NStripHits 2 +PE 65.0355 +PP -2.28186 0.335858 1.51173 +PW 0 +SE +ET PH +ID 8666 +TI 1771360835.092174134 +CC NStripHits 2 +PE 140.698 +PP -0.0701406 0.310488 1.27892 +PW 0 +SE +ET PH +ID 8667 +TI 1771360835.093282018 +CC NStripHits 2 +PE 118.513 +PP 3.53845 0.372205 -3.72655 +PW 0 +SE +ID 8668 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.733285) (Strip hit removed with energy 14.467008) +QA StripPairing (GR Hit: Detector ID 0 and Energy 101.907177) +BD GR Veto +PQ 0.0339604 +SE +ID 8669 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.244620) +QA StripPairing (Best reduced chi square is not below 25 (174.298512)) (GR Hit: Detector ID 0 and Energy 338.124358) +BD GR Veto +PQ 174.299 +SE +ET PH +ID 8670 +TI 1771360835.094957434 +CC NStripHits 3 +PE 78.5252 +PP -2.74748 0.336739 -0.234359 +PW 0 +SE +ET UN +ID 8671 +TI 1771360835.096070801 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1794 +SE +ET PH +ID 8672 +TI 1771360835.097118618 +CC NStripHits 3 +PE 89.9494 +PP 3.65486 0.256547 -0.350766 +PW 0 +SE +ID 8673 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.469533) +BD GR Veto +PQ 7.30173 +SE +ET PH +ID 8674 +TI 1771360835.099170751 +CC NStripHits 2 +PE 83.0214 +PP 2.37439 0.360715 2.44298 +PW 0 +SE +ET PH +ID 8675 +TI 1771360835.099842201 +CC NStripHits 2 +PE 81.7662 +PP -1.46702 0.354928 -1.51483 +PW 0 +SE +ET UN +ID 8676 +TI 1771360835.099958734 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6662 +SE +ET UN +ID 8677 +TI 1771360835.102326451 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7911 +SE +ET UN +ID 8678 +TI 1771360835.103543985 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.3845 +SE +ET PH +ID 8679 +TI 1771360835.104606635 +CC NStripHits 5 +PE 226.335 +PP -0.535766 -0.384086 1.97736 +PW 0 +SE +ID 8680 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (44.634062)) (GR Hit: Detector ID 0 and Energy 149.052683) +BD GR Veto +PQ 44.6341 +SE +ID 8681 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.024323) +BD GR Veto +PQ 0.153152 +SE +ET UN +ID 8682 +TI 1771360835.107417418 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 8683 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8684 +TI 1771360835.108323201 +CC NStripHits 2 +PE 30.4887 +PP -0.652172 -0.644765 1.62814 +PW 0 +SE +ID 8685 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.246069) +BD GR Veto +PQ 0.0694898 +SE +ET UN +ID 8686 +TI 1771360835.110300401 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 208.803 +SE +ET PH +ID 8687 +TI 1771360835.110681951 +CC NStripHits 2 +PE 140.429 +PP 2.37439 0.357763 0.347672 +PW 0 +SE +ID 8688 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 303.458323) +BD GR Veto +PQ 0.00361506 +SE +ET PH +ID 8689 +TI 1771360835.111771385 +CC NStripHits 2 +PE 91.7467 +PP -1.35061 -0.0781264 -1.98045 +PW 0 +SE +ID 8690 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.645077) +BD GR Veto +PQ 0.0100196 +SE +ID 8691 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.628127) +BD GR Veto +PQ +SE +ET PH +ID 8692 +TI 1771360835.114606135 +CC NStripHits 2 +PE 120.386 +PP 3.77127 -1.12373 0.580484 +PW 0 +SE +ID 8693 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.160641) +BD GR Veto +PQ 0.0118722 +SE +ET UN +ID 8694 +TI 1771360835.115189301 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3831 +SE +ET PH +ID 8695 +TI 1771360835.117428851 +CC NStripHits 2 +PE 79.8237 +PP -0.419359 -0.298941 -1.74764 +PW 0 +SE +ET UN +ID 8696 +TI 1771360835.117817485 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.5876 +SE +ET PH +ID 8697 +TI 1771360835.118506985 +CC NStripHits 2 +PE 302.572 +PP -1.1178 -0.531253 0.696891 +PW 0 +SE +ET CO +ID 8698 +TI 1771360835.118666668 +CC NStripHits 5 +PQ 15.1304 +SQ 2 +CT 0 1 +TL 1 +TE 100.727 +CE 176.003 1.94742 100.727 1.45756 +CD -0.535766 -0.0457276 2.44298 0.0336036 0.0272357 0.0336036 -0.419359 0.0782852 2.21017 0.0336036 0.0285401 0.0336036 0 0 0 0 0 0 +LA 0.288323 +SE +ID 8699 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.799002) +BD GR Veto +PQ 0.495298 +SE +ET PH +ID 8700 +TI 1771360835.125937818 +CC NStripHits 2 +PE 29.9738 +PP 2.02517 0.378997 0.696891 +PW 0 +SE +ET PH +ID 8701 +TI 1771360835.126322802 +CC NStripHits 2 +PE 81.2212 +PP 2.95642 0.356585 -0.234359 +PW 0 +SE +ET UN +ID 8702 +TI 1771360835.126589735 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5305 +SE +ID 8703 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (83.758186)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 64.804813)) (GR Hit: Detector ID 0 and Energy 96.635742) +BD GR Veto +PQ 83.7582 +SE +ID 8704 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (29.854717)) (GR Hit: Detector ID 0 and Energy 82.653715) +BD GR Veto +PQ 29.8547 +SE +ET PH +ID 8705 +TI 1771360835.132158568 +CC NStripHits 2 +PE 78.684 +PP 3.65486 0.365161 -2.56248 +PW 0 +SE +ET PH +ID 8706 +TI 1771360835.136874952 +CC NStripHits 3 +PE 82.6108 +PP 2.14158 -0.161001 1.16252 +PW 0 +SE +ET UN +ID 8707 +TI 1771360835.137444635 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9147 +SE +ET PH +ID 8708 +TI 1771360835.138129652 +CC NStripHits 2 +PE 81.6253 +PP 1.09392 0.345863 -2.09686 +PW 0 +SE +ET PH +ID 8709 +TI 1771360835.138494602 +CC NStripHits 3 +PE 221.794 +PP 2.95642 -0.864553 0.696891 +PW 0 +SE +ET UN +ID 8710 +TI 1771360835.138870235 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4618 +SE +ID 8711 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.295991) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.520437)) (GR Hit: Detector ID 0 and Energy 63.554289) +BD GR Veto +PQ 0.0621093 +SE +ID 8712 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 130.906117) +BD GR Veto +PQ 0.0430565 +SE +ET PH +ID 8713 +TI 1771360835.144692869 +CC NStripHits 3 +PE 80.8857 +PP 1.55955 0.179011 0.347672 +PW 0 +SE +ID 8714 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 222.274754) +BD GR Veto +PQ 0.0710223 +SE +ET PH +ID 8715 +TI 1771360835.149007669 +CC NStripHits 2 +PE 80.233 +PP 0.395484 0.20364 -3.37733 +PW 0 +SE +ET UN +ID 8716 +TI 1771360835.149180135 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 155.06 +SE +ID 8717 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.698048) +BD GR Veto +PQ 0.75133 +SE +ET PH +ID 8718 +TI 1771360835.150302552 +CC NStripHits 2 +PE 81.2061 +PP 0.511891 0.361649 -2.9117 +PW 0 +SE +ET UN +ID 8719 +TI 1771360835.150952219 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8720 +TI 1771360835.153378435 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.655 +SE +ET UN +ID 8721 +TI 1771360835.156922102 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET UN +ID 8722 +TI 1771360835.157531502 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 207.907 +SE +ET PH +ID 8723 +TI 1771360835.157752819 +CC NStripHits 3 +PE 121.87 +PP -2.63108 -0.986332 0.114859 +PW 0 +SE +ID 8724 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.965413) +BD GR Veto +PQ 0.0129512 +SE +ID 8725 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 102.353289) +BD GR Veto +PQ 0.25988 +SE +ID 8726 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.690673) +BD GR Veto +PQ 0.384796 +SE +ET PH +ID 8727 +TI 1771360835.159598669 +CC NStripHits 3 +PE 302.102 +PP 1.21033 -0.211313 -0.699984 +PW 0 +SE +ET UN +ID 8728 +TI 1771360835.160457202 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7138 +SE +ET UN +ID 8729 +TI 1771360835.161823502 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 354.82 +SE +ID 8730 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.810503) +BD GR Veto +PQ 10.7471 +SE +ET PH +ID 8731 +TI 1771360835.164307869 +CC NStripHits 2 +PE 162.735 +PP 1.09392 0.369627 -4.07577 +PW 0 +SE +ET PH +ID 8732 +TI 1771360835.165111252 +CC NStripHits 5 +PE 144.843 +PP 1.21033 -0.739568 -3.26092 +PW 0 +SE +ET PH +ID 8733 +TI 1771360835.165272936 +CC NStripHits 2 +PE 78.9417 +PP 1.55955 0.0788503 1.74455 +PW 0 +SE +ET PH +ID 8734 +TI 1771360835.165336586 +CC NStripHits 2 +PE 28.8156 +PP 0.0462656 -1.00193 -2.09686 +PW 0 +SE +ET UN +ID 8735 +TI 1771360835.168363219 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 72.3539 +SE +ET PH +ID 8736 +TI 1771360835.168933202 +CC NStripHits 2 +PE 81.5337 +PP 1.09392 0.272689 -1.98045 +PW 0 +SE +ET PH +ID 8737 +TI 1771360835.169196186 +CC NStripHits 2 +PE 65.5451 +PP -2.04905 0.359307 -2.67889 +PW 0 +SE +ET PH +ID 8738 +TI 1771360835.169287069 +CC NStripHits 4 +PE 92.3104 +PP -2.74748 -0.809369 -0.00154687 +PW 0 +SE +ID 8739 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 31.099687) +BD GR Veto +PQ 0.0199762 +SE +ET PH +ID 8740 +TI 1771360835.170530752 +CC NStripHits 2 +PE 30.1937 +PP -0.186547 -0.262838 -3.49373 +PW 0 +SE +ET PH +ID 8741 +TI 1771360835.171985702 +CC NStripHits 3 +PE 275.889 +PP 1.55955 -0.192598 -2.09686 +PW 0 +SE +ID 8742 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.926374) +BD GR Veto +PQ 0.167445 +SE +ET PH +ID 8743 +TI 1771360835.173590836 +CC NStripHits 3 +PE 111.111 +PP 0.744703 0.00975649 -4.6578 +PW 0 +SE +ET PH +ID 8744 +TI 1771360835.174402052 +CC NStripHits 2 +PE 34.0476 +PP -1.81623 0.212428 0.114859 +PW 0 +SE +ET UN +ID 8745 +TI 1771360835.175828236 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 321.135 +SE +ET UN +ID 8746 +TI 1771360835.175967636 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8747 +TI 1771360835.176105786 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8748 +TI 1771360835.176557952 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 61.5261 +SE +ET PH +ID 8749 +TI 1771360835.177373252 +CC NStripHits 2 +PE 70.0191 +PP -1.93264 -0.79377 -1.28202 +PW 0 +SE +ID 8750 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 0.684392) +QA StripPairing (GR Hit: Detector ID 0 and Energy 111.196773) +BD GR Veto +PQ 0.320694 +SE +ET UN +ID 8751 +TI 1771360835.180439369 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 55.724 +SE +ET CO +ID 8752 +TI 1771360835.180620553 +CC NStripHits 6 +PQ 2.37336 +SQ 2 +CT 0 1 +TL 1 +TE 103.985 +CE 232.58 1.97311 103.985 1.00156 +CD -0.419359 -0.426288 -2.21327 0.0336036 0.0241472 0.0336036 0.977516 0.25704 -1.74764 0.0336036 0.0375036 0.0336036 0 0 0 0 0 0 +LA 1.62327 +SE +ET PH +ID 8753 +TI 1771360835.181076503 +CC NStripHits 2 +PE 73.9389 +PP -1.2342 -0.568822 -3.26092 +PW 0 +SE +ET UN +ID 8754 +TI 1771360835.181777019 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4441 +SE +ET UN +ID 8755 +TI 1771360835.183292519 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0453 +SE +ID 8756 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 8757 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.301236) +BD GR Veto +PQ +SE +ID 8758 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.278732) +BD GR Veto +PQ 2.98317 +SE +ET PH +ID 8759 +TI 1771360835.185586369 +CC NStripHits 2 +PE 77.3031 +PP 2.84002 0.353044 -1.98045 +PW 0 +SE +ET PH +ID 8760 +TI 1771360835.186042253 +CC NStripHits 3 +PE 96.3069 +PP -1.1178 -0.492468 -4.07577 +PW 0 +SE +ID 8761 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 157.066435) +BD GR Veto +PQ 0.143571 +SE +ET UN +ID 8762 +TI 1771360835.190028469 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.8028 +SE +ET PH +ID 8763 +TI 1771360835.191361153 +CC NStripHits 2 +PE 80.0945 +PP -0.535766 0.370488 -2.56248 +PW 0 +SE +ET PH +ID 8764 +TI 1771360835.191686936 +CC NStripHits 2 +PE 81.6867 +PP 2.25798 0.200437 -2.9117 +PW 0 +SE +ET UN +ID 8765 +TI 1771360835.191950653 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8766 +TI 1771360835.194351903 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1002 +SE +ET UN +ID 8767 +TI 1771360835.195462603 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7321 +SE +ET CO +ID 8768 +TI 1771360835.196036636 +CC NStripHits 5 +PQ 0.884312 +SQ 2 +CT 0 1 +TL 1 +TE 127.175 +CE 162.62 1.01035 127.175 1.20636 +CD -0.652172 0.35728 -1.63123 0.0336036 0.029958 0.0336036 -1.00139 0.294197 -2.21327 0.0336036 0.041637 0.0336036 0 0 0 0 0 0 +LA 0.681691 +SE +ET UN +ID 8769 +TI 1771360835.196295019 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 4 +PE 70.6016 +SE +ET CO +ID 8770 +TI 1771360835.196954503 +CC NStripHits 4 +PQ 5.32897 +SQ 2 +CT 0 1 +TL 1 +TE 90.121 +CE 121.131 1.46149 90.121 1.01137 +CD 2.84002 -0.171083 -2.7953 0.0336036 0.0260786 0.0336036 3.30564 0.369251 -2.32967 0.0336036 0.0231939 0.0336036 0 0 0 0 0 0 +LA 0.851806 +SE +ID 8771 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (309.992131)) (GR Hit: Detector ID 0 and Energy 354.508329) +BD GR Veto +PQ 309.992 +SE +ET CO +ID 8772 +TI 1771360835.198106836 +CC NStripHits 5 +PQ 9.38794 +SQ 2 +CT 0 1 +TL 1 +TE 121.932 +CE 155.321 1.27125 121.932 1.49689 +CD 4.00408 -0.555623 -1.51483 0.0336036 0.0230658 0.0336036 2.72361 0.0764599 -0.816391 0.0336036 0.0285141 0.0336036 0 0 0 0 0 0 +LA 1.58964 +SE +ET UN +ID 8773 +TI 1771360835.199067636 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 289.123 +SE +ID 8774 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.202762) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.730470) +BD GR Veto +PQ 1.37803 +SE +ID 8775 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.113537)) (GR Hit: Detector ID 0 and Energy 77.912011) +BD GR Veto +PQ 25.1135 +SE +ID 8776 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.881640) +BD GR Veto +PQ 0.0032917 +SE +ET UN +ID 8777 +TI 1771360835.204835436 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 8778 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.016582) +BD GR Veto +PQ 0.675612 +SE +ET PH +ID 8779 +TI 1771360835.205338920 +CC NStripHits 3 +PE 104.266 +PP 0.977516 -1.08714 -2.9117 +PW 0 +SE +ET CO +ID 8780 +TI 1771360835.207535086 +CC NStripHits 5 +PQ 14.9994 +SQ 2 +CT 0.710758 0.289242 +TL 1 +TE 134.039 +CE 144.452 1.45329 134.039 1.4663 +CD 2.95642 0.318304 -2.32967 0.0336036 0.0410383 0.0336036 3.18923 0.370777 -2.21327 0.0336036 0.0222031 0.0336036 0 0 0 0 0 0 +LA 0.265524 +SE +ET PH +ID 8781 +TI 1771360835.209071070 +CC NStripHits 2 +PE 80.3691 +PP 0.0462656 0.365274 1.51173 +PW 0 +SE +ET PH +ID 8782 +TI 1771360835.210695870 +CC NStripHits 3 +PE 188.776 +PP 4.12048 0.0695498 0.347672 +PW 0 +SE +ET CO +ID 8783 +TI 1771360835.211282436 +CC NStripHits 5 +PQ 0.00277631 +SQ 2 +CT 0 1 +TL 1 +TE 20.571 +CE 105.839 1.16402 20.571 0.980491 +CD 2.02517 -0.130962 1.27892 0.0336036 0.0264602 0.0336036 1.90877 0.00796327 1.51173 0.0336036 0.0277153 0.0336036 0 0 0 0 0 0 +LA 0.295042 +SE +ET PH +ID 8784 +TI 1771360835.211789370 +CC NStripHits 2 +PE 72.54 +PP 3.07283 0.365075 -3.14452 +PW 0 +SE +ET PH +ID 8785 +TI 1771360835.211978970 +CC NStripHits 3 +PE 80.4608 +PP 2.02517 0.337217 -2.32967 +PW 0 +SE +ET UN +ID 8786 +TI 1771360835.215884270 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8559 +SE +ET PH +ID 8787 +TI 1771360835.216370570 +CC NStripHits 2 +PE 80.3252 +PP 3.65486 0.125992 2.32658 +PW 0 +SE +ET UN +ID 8788 +TI 1771360835.217157820 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8789 +TI 1771360835.217721903 +CC NStripHits 2 +PE 74.5917 +PP -2.16545 0.357471 0.231266 +PW 0 +SE +ET PH +ID 8790 +TI 1771360835.218280903 +CC NStripHits 2 +PE 33.0629 +PP 0.162672 -0.228376 -2.7953 +PW 0 +SE +ID 8791 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.535426) +BD GR Veto +PQ 0.00325101 +SE +ET UN +ID 8792 +TI 1771360835.224240620 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 197.327 +SE +ET PH +ID 8793 +TI 1771360835.224726887 +CC NStripHits 2 +PE 75.9602 +PP 0.395484 0.341394 2.55939 +PW 0 +SE +ET UN +ID 8794 +TI 1771360835.225875887 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 49.9939 +SE +ET CO +ID 8795 +TI 1771360835.226167003 +CC NStripHits 5 +PQ 0.0795332 +SQ 2 +CT 0 1 +TL 1 +TE 100.177 +CE 175.382 1.26438 100.177 1.00582 +CD 3.42205 0.0163522 1.16252 0.0336036 0.0277918 0.0336036 4.3533 -0.0135138 0.813297 0.0336036 0.0275796 0.0336036 0 0 0 0 0 0 +LA 0.995025 +SE +ET PH +ID 8796 +TI 1771360835.226823487 +CC NStripHits 4 +PE 49.1506 +PP -2.28186 0.376652 -3.14452 +PW 0 +SE +ET UN +ID 8797 +TI 1771360835.227333203 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.2978 +SE +ET CO +ID 8798 +TI 1771360835.229318137 +CC NStripHits 6 +PQ 3.43155 +SQ 3 +CT 0.368612 0.522989 +TL 1 +TE 84.0469 +CE 254.267 2.22005 84.0469 0.99762 +CD 1.44314 -0.449257 -0.00154687 0.0336036 0.0239492 0.0336036 0.511891 -0.929053 -0.350766 0.0336036 0.0197565 0.0336036 0 0 0 0 0 0 +LA 0.26413 +SE +ID 8799 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 153.017201) +BD GR Veto +PQ 0.00203083 +SE +ET PH +ID 8800 +TI 1771360835.231399537 +CC NStripHits 2 +PE 276.563 +PP 3.30564 0.046822 -4.54139 +PW 0 +SE +ET UN +ID 8801 +TI 1771360835.231858237 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.8907 +SE +ID 8802 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.748492) +BD GR Veto +PQ 0.382788 +SE +ET PH +ID 8803 +TI 1771360835.233216920 +CC NStripHits 2 +PE 53.0778 +PP -2.04905 0.357745 -0.234359 +PW 0 +SE +ID 8804 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 144.017951) +BD GR Veto +PQ 0.628201 +SE +ET UN +ID 8805 +TI 1771360835.235656270 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8806 +TI 1771360835.236167020 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 8807 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.724149) +BD GR Veto +PQ 1.16071 +SE +ET UN +ID 8808 +TI 1771360835.239241570 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8809 +TI 1771360835.239583103 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8810 +TI 1771360835.239806820 +CC NStripHits 3 +PE 113.178 +PP 1.32673 -0.214536 -2.56248 +PW 0 +SE +ET UN +ID 8811 +TI 1771360835.241784104 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.4621 +SE +ET PH +ID 8812 +TI 1771360835.242084387 +CC NStripHits 2 +PE 82.2013 +PP -0.884984 -0.0800684 -3.72655 +PW 0 +SE +ET PH +ID 8813 +TI 1771360835.243972704 +CC NStripHits 2 +PE 77.3163 +PP 3.53845 0.325066 -3.02811 +PW 0 +SE +ET CO +ID 8814 +TI 1771360835.245371220 +CC NStripHits 4 +PQ 7.35721 +SQ 2 +CT 0 1 +TL 1 +TE 30.1528 +CE 124.821 1.00786 30.1528 1.38665 +CD -2.04905 -1.17591 -4.19217 0.0336036 0.0176567 0.0336036 -2.39827 -0.272282 -3.95936 0.0336036 0.0253481 0.0336036 0 0 0 0 0 0 +LA 0.996343 +SE +ET PH +ID 8815 +TI 1771360835.245903337 +CC NStripHits 3 +PE 80.453 +PP -0.0701406 0.186816 0.464078 +PW 0 +SE +ET PH +ID 8816 +TI 1771360835.246223420 +CC NStripHits 2 +PE 80.4575 +PP -0.186547 0.375295 -1.98045 +PW 0 +SE +ET UN +ID 8817 +TI 1771360835.248502204 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8818 +TI 1771360835.248642820 +CC NStripHits 3 +PE 467.364 +PP -1.93264 -1.17838 -2.21327 +PW 0 +SE +ET CO +ID 8819 +TI 1771360835.249847554 +CC NStripHits 4 +PQ 88.7483 +SQ 2 +CT 0.524138 0.475862 +TL 1 +TE 185.526 +CE 174.291 1.43536 185.526 1.47013 +CD 2.14158 -0.854865 1.39533 0.0336036 0.0203984 0.0336036 2.02517 -0.619722 0.929703 0.0336036 0.0227109 0.0336036 0 0 0 0 0 0 +LA 0.534464 +SE +ET UN +ID 8820 +TI 1771360835.254912837 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.6373 +SE +ET UN +ID 8821 +TI 1771360835.257024854 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8822 +TI 1771360835.258914970 +CC NStripHits 2 +PE 39.3692 +PP 2.4908 -1.1582 -1.28202 +PW 0 +SE +ET CO +ID 8823 +TI 1771360835.260069321 +CC NStripHits 6 +PQ 2.88685 +SQ 2 +CT 0.55447 0.44553 +TL 1 +TE 193.653 +CE 165.924 1.25717 193.653 1.1815 +CD 1.09392 -0.0325986 0.464078 0.0336036 0.0274141 0.0336036 0.744703 -0.220144 0.347672 0.0336036 0.0256945 0.0336036 0 0 0 0 0 0 +LA 0.41313 +SE +ET PH +ID 8824 +TI 1771360835.260371571 +CC NStripHits 2 +PE 68.8063 +PP -1.35061 0.33987 1.86095 +PW 0 +SE +ET PH +ID 8825 +TI 1771360835.261276854 +CC NStripHits 3 +PE 215.983 +PP -0.768578 0.0887756 -4.30858 +PW 0 +SE +ET UN +ID 8826 +TI 1771360835.261763921 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 100.408 +SE +ID 8827 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 70.066674) +BD GR Veto +PQ 0.561126 +SE +ET PH +ID 8828 +TI 1771360835.265067087 +CC NStripHits 2 +PE 64.8526 +PP -2.9803 0.372502 1.04611 +PW 0 +SE +ET PH +ID 8829 +TI 1771360835.269341621 +CC NStripHits 2 +PE 79.0018 +PP -1.1178 0.323273 -3.95936 +PW 0 +SE +ET UN +ID 8830 +TI 1771360835.270193771 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 8 +PE 354.741 +SE +ID 8831 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.132028) +BD GR Veto +PQ 1.32197 +SE +ET PH +ID 8832 +TI 1771360835.272372621 +CC NStripHits 2 +PE 70.2588 +PP 1.55955 0.16592 -0.234359 +PW 0 +SE +ID 8833 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.894097) +BD GR Veto +PQ 0.0918617 +SE +ET PH +ID 8834 +TI 1771360835.273139021 +CC NStripHits 2 +PE 79.5692 +PP 0.861109 0.375664 -2.56248 +PW 0 +SE +ET PH +ID 8835 +TI 1771360835.274263021 +CC NStripHits 3 +PE 164.232 +PP 2.84002 0.208507 0.580484 +PW 0 +SE +ET PH +ID 8836 +TI 1771360835.275721471 +CC NStripHits 3 +PE 132.077 +PP 2.14158 -1.09869 -3.61014 +PW 0 +SE +ET UN +ID 8837 +TI 1771360835.278647171 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 354.201 +SE +ET UN +ID 8838 +TI 1771360835.279854471 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 165.591 +SE +ET UN +ID 8839 +TI 1771360835.281790238 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 130.772 +SE +ET PH +ID 8840 +TI 1771360835.282664054 +CC NStripHits 2 +PE 69.2127 +PP -1.69983 0.203926 -0.583578 +PW 0 +SE +ET CO +ID 8841 +TI 1771360835.283379871 +CC NStripHits 8 +PQ 4.43162 +SQ 3 +CT 0.00760482 0.0125293 +TL 1 +TE 139.843 +CE 235.723 1.81672 139.843 1.54223 +CD 1.32673 0.0923982 -3.61014 0.0336036 0.0287678 0.0336036 2.37439 -0.418415 -3.37733 0.0336036 0.0242182 0.0336036 0 0 0 0 0 0 +LA 0.36356 +SE +ID 8842 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 8843 +TI 1771360835.283744804 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.4873 +SE +ID 8844 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.589490) +BD GR Veto +PQ +SE +ET UN +ID 8845 +TI 1771360835.284389071 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.2981 +SE +ID 8846 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8847 +TI 1771360835.285085788 +CC NStripHits 2 +PE 79.9282 +PP -0.768578 0.16957 -0.117953 +PW 0 +SE +ID 8848 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (56.085510)) (GR Hit: Detector ID 0 and Energy 360.079441) +BD GR Veto +PQ 56.0855 +SE +ET PH +ID 8849 +TI 1771360835.286201354 +CC NStripHits 4 +PE 192.003 +PP 3.53845 -0.306824 2.09377 +PW 0 +SE +ID 8850 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 140.115192) +BD GR Veto +PQ 0.00491854 +SE +ET PH +ID 8851 +TI 1771360835.287251854 +CC NStripHits 2 +PE 79.1026 +PP 0.628297 0.195363 -3.26092 +PW 0 +SE +ID 8852 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.698832) +BD GR Veto +PQ 0.190554 +SE +ID 8853 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.443563) +BD GR Veto +PQ 0.026774 +SE +ET PH +ID 8854 +TI 1771360835.288546588 +CC NStripHits 2 +PE 81.374 +PP 1.67595 -0.0296698 -1.63123 +PW 0 +SE +ID 8855 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 194.245761) +BD GR Veto +PQ 0.00177861 +SE +ET PH +ID 8856 +TI 1771360835.290403738 +CC NStripHits 2 +PE 81.9955 +PP -1.58342 0.361905 -0.00154687 +PW 0 +SE +ET PH +ID 8857 +TI 1771360835.291288554 +CC NStripHits 2 +PE 163.684 +PP 2.02517 0.327166 -0.117953 +PW 0 +SE +ET UN +ID 8858 +TI 1771360835.292180054 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0935 +SE +ID 8859 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 100.985753) +BD GR Veto +PQ 6.82561 +SE +ET UN +ID 8860 +TI 1771360835.294335538 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.726 +SE +ET PH +ID 8861 +TI 1771360835.295026588 +CC NStripHits 2 +PE 31.2361 +PP 3.53845 0.146898 -4.30858 +PW 0 +SE +ET PH +ID 8862 +TI 1771360835.297417221 +CC NStripHits 2 +PE 241.522 +PP -0.768578 -0.268313 -3.14452 +PW 0 +SE +ID 8863 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 76.798419) +BD GR Veto +PQ 0.0015406 +SE +ET PH +ID 8864 +TI 1771360835.300839538 +CC NStripHits 4 +PE 354.223 +PP 0.511891 0.239426 -0.350766 +PW 0 +SE +ID 8865 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 219.828642) +BD GR Veto +PQ 0.00623713 +SE +ET UN +ID 8866 +TI 1771360835.304692571 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.9192 +SE +ET PH +ID 8867 +TI 1771360835.305429605 +CC NStripHits 2 +PE 81.7146 +PP -1.81623 0.362759 -1.98045 +PW 0 +SE +ET PH +ID 8868 +TI 1771360835.305931455 +CC NStripHits 2 +PE 129.373 +PP 2.4908 0.351868 -2.09686 +PW 0 +SE +ET UN +ID 8869 +TI 1771360835.307579905 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 8870 +TI 1771360835.308680421 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8871 +TI 1771360835.310969271 +CC NStripHits 2 +PE 206.423 +PP -2.28186 0.341994 0.580484 +PW 0 +SE +ET PH +ID 8872 +TI 1771360835.311483271 +CC NStripHits 2 +PE 53.1102 +PP 2.14158 -0.692281 0.580484 +PW 0 +SE +ET UN +ID 8873 +TI 1771360835.312316838 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 385.544 +SE +ET CO +ID 8874 +TI 1771360835.314215371 +CC NStripHits 4 +PQ 1.72806 +SQ 2 +CT 0 1 +TL 1 +TE 69.5975 +CE 160.769 1.00521 69.5975 1.06718 +CD 2.6072 -0.567812 -4.07577 0.0336036 0.0229786 0.0336036 2.72361 -0.25385 -4.30858 0.0336036 0.0254464 0.0336036 0 0 0 0 0 0 +LA 0.407828 +SE +ID 8875 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.543760) +BD GR Veto +PQ 0.0689376 +SE +ID 8876 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 193.046739) +BD GR Veto +PQ 0.0274428 +SE +ET PH +ID 8877 +TI 1771360835.316805405 +CC NStripHits 2 +PE 70.1453 +PP -1.58342 0.268134 -4.30858 +PW 0 +SE +ET PH +ID 8878 +TI 1771360835.317350788 +CC NStripHits 3 +PE 79.776 +PP 4.12048 0.286199 0.813297 +PW 0 +SE +ET PH +ID 8879 +TI 1771360835.319291621 +CC NStripHits 2 +PE 78.1938 +PP 3.30564 0.0614091 2.09377 +PW 0 +SE +ET PH +ID 8880 +TI 1771360835.320025288 +CC NStripHits 2 +PE 78.9424 +PP -0.884984 0.37441 -3.14452 +PW 0 +SE +ET UN +ID 8881 +TI 1771360835.325235988 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 206.831 +SE +ET PH +ID 8882 +TI 1771360835.326097055 +CC NStripHits 2 +PE 62.3003 +PP -2.16545 0.331491 -2.44608 +PW 0 +SE +ET PH +ID 8883 +TI 1771360835.326308138 +CC NStripHits 2 +PE 59.7931 +PP -0.884984 0.352822 1.27892 +PW 0 +SE +ET PH +ID 8884 +TI 1771360835.328471172 +CC NStripHits 2 +PE 35.206 +PP 0.628297 -0.123026 1.62814 +PW 0 +SE +ET UN +ID 8885 +TI 1771360835.328568472 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.8512 +SE +ET UN +ID 8886 +TI 1771360835.328857822 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 336.125 +SE +ET PH +ID 8887 +TI 1771360835.329124255 +CC NStripHits 2 +PE 252.946 +PP -0.186547 -0.430866 -2.32967 +PW 0 +SE +ET PH +ID 8888 +TI 1771360835.329530788 +CC NStripHits 2 +PE 80.0291 +PP 0.162672 0.23152 -2.21327 +PW 0 +SE +ET UN +ID 8889 +TI 1771360835.330801105 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 264.523 +SE +ET CO +ID 8890 +TI 1771360835.333107922 +CC NStripHits 4 +PQ 6.32693 +SQ 2 +CT 0 1 +TL 1 +TE 105.882 +CE 247.856 1.40924 105.882 1.04019 +CD 0.279078 -0.850464 -0.583578 0.0336036 0.020428 0.0336036 -0.0701406 -1.11322 -0.234359 0.0336036 0.0260799 0.0336036 0 0 0 0 0 0 +LA 0.559418 +SE +ET PH +ID 8891 +TI 1771360835.333547072 +CC NStripHits 2 +PE 75.8983 +PP 3.77127 0.208708 -0.234359 +PW 0 +SE +ID 8892 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.007450) +QA StripPairing (GR Hit: Detector ID 0 and Energy 124.749464) +BD GR Veto +PQ 4.3273 +SE +ET UN +ID 8893 +TI 1771360835.338287072 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.3824 +SE +ET UN +ID 8894 +TI 1771360835.338523022 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 306.493 +SE +ID 8895 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.144935) +BD GR Veto +PQ 0.0168507 +SE +ID 8896 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 8897 +TI 1771360835.341643655 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.7219 +SE +ET PH +ID 8898 +TI 1771360835.342449839 +CC NStripHits 2 +PE 72.7818 +PP 1.55955 -0.93733 -0.467172 +PW 0 +SE +ET UN +ID 8899 +TI 1771360835.344306755 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 8900 +TI 1771360835.345543072 +CC NStripHits 2 +PE 148.124 +PP 1.90877 -1.12944 -3.49373 +PW 0 +SE +ET PH +ID 8901 +TI 1771360835.345772622 +CC NStripHits 2 +PE 27.0891 +PP 0.628297 -1.18579 -1.39842 +PW 0 +SE +ET PH +ID 8902 +TI 1771360835.346704355 +CC NStripHits 3 +PE 357.117 +PP 2.84002 -0.541954 -3.72655 +PW 0 +SE +ET PH +ID 8903 +TI 1771360835.346804122 +CC NStripHits 2 +PE 118.989 +PP 1.67595 0.355528 1.39533 +PW 0 +SE +ET PH +ID 8904 +TI 1771360835.347137322 +CC NStripHits 3 +PE 89.5172 +PP 1.32673 0.355561 0.347672 +PW 0 +SE +ET PH +ID 8905 +TI 1771360835.347364422 +CC NStripHits 2 +PE 124.183 +PP 1.79236 0.341178 1.97736 +PW 0 +SE +ET UN +ID 8906 +TI 1771360835.349275372 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.7891 +SE +ET PH +ID 8907 +TI 1771360835.349403855 +CC NStripHits 2 +PE 355.127 +PP -1.93264 0.316701 0.231266 +PW 0 +SE +ET PH +ID 8908 +TI 1771360835.349955989 +CC NStripHits 2 +PE 200.007 +PP -0.302953 0.102205 1.62814 +PW 0 +SE +ET UN +ID 8909 +TI 1771360835.350074772 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.5806 +SE +ET PH +ID 8910 +TI 1771360835.352829122 +CC NStripHits 2 +PE 30.4111 +PP -0.884984 0.352272 -4.42498 +PW 0 +SE +ET PH +ID 8911 +TI 1771360835.353054289 +CC NStripHits 3 +PE 218.024 +PP 3.18923 0.14134 -1.98045 +PW 0 +SE +ET UN +ID 8912 +TI 1771360835.356114455 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 173.943 +SE +ET PH +ID 8913 +TI 1771360835.356869505 +CC NStripHits 2 +PE 63.4591 +PP 1.09392 -1.08406 -1.16561 +PW 0 +SE +ET PH +ID 8914 +TI 1771360835.359417622 +CC NStripHits 3 +PE 158.922 +PP 0.395484 0.0417772 -1.28202 +PW 0 +SE +ET UN +ID 8915 +TI 1771360835.359711239 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 78.9628 +SE +ET UN +ID 8916 +TI 1771360835.360034756 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 314.493 +SE +ET PH +ID 8917 +TI 1771360835.362772089 +CC NStripHits 3 +PE 79.0188 +PP -0.652172 0.31112 -0.699984 +PW 0 +SE +ET PH +ID 8918 +TI 1771360835.362913656 +CC NStripHits 2 +PE 74.1965 +PP 2.37439 -0.600872 1.16252 +PW 0 +SE +ET PH +ID 8919 +TI 1771360835.363379889 +CC NStripHits 2 +PE 29.2375 +PP 0.861109 0.134711 -0.234359 +PW 0 +SE +ET PH +ID 8920 +TI 1771360835.364351422 +CC NStripHits 2 +PE 128.865 +PP 4.00408 -0.535318 2.21017 +PW 0 +SE +ET PH +ID 8921 +TI 1771360835.364473856 +CC NStripHits 2 +PE 138.187 +PP -1.00139 -0.517287 0.929703 +PW 0 +SE +ET UN +ID 8922 +TI 1771360835.366976022 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 8923 +TI 1771360835.367786972 +CC NStripHits 3 +PE 193.904 +PP -2.04905 0.256492 -2.44608 +PW 0 +SE +ID 8924 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 8925 +TI 1771360835.368349889 +CC NStripHits 2 +PE 28.4926 +PP 3.65486 0.362687 -0.00154687 +PW 0 +SE +ET PH +ID 8926 +TI 1771360835.370805956 +CC NStripHits 3 +PE 110.895 +PP -2.04905 -0.367962 1.86095 +PW 0 +SE +ID 8927 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 249.424425) +BD GR Veto +PQ 0.0119871 +SE +ET PH +ID 8928 +TI 1771360835.372916739 +CC NStripHits 4 +PE 140.986 +PP -0.535766 0.111935 2.44298 +PW 0 +SE +ET PH +ID 8929 +TI 1771360835.373668039 +CC NStripHits 2 +PE 80.7829 +PP 1.32673 -0.074887 2.32658 +PW 0 +SE +ET PH +ID 8930 +TI 1771360835.373833439 +CC NStripHits 2 +PE 114.169 +PP 4.00408 0.222755 -3.02811 +PW 0 +SE +ET UN +ID 8931 +TI 1771360835.374431539 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.2113 +SE +ET UN +ID 8932 +TI 1771360835.376324022 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.657 +SE +ET UN +ID 8933 +TI 1771360835.380343756 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 67.2517 +SE +ET PH +ID 8934 +TI 1771360835.380521639 +CC NStripHits 2 +PE 184.517 +PP 0.977516 0.183611 -3.61014 +PW 0 +SE +ET PH +ID 8935 +TI 1771360835.381739739 +CC NStripHits 4 +PE 255.56 +PP -1.2342 -0.967714 -4.42498 +PW 0 +SE +ET PH +ID 8936 +TI 1771360835.382848173 +CC NStripHits 2 +PE 149.093 +PP 3.65486 -0.252376 -3.61014 +PW 0 +SE +ET CO +ID 8937 +TI 1771360835.383453506 +CC NStripHits 6 +PQ 59.3458 +SQ 3 +CT 0.0451407 0.197991 +TL 1 +TE 87.5264 +CE 169.407 2.03748 87.5264 1.04521 +CD 4.23689 -1.10788 1.39533 0.0336036 0.0252166 0.0336036 -1.69983 0.367044 2.21017 0.0336036 0.0245755 0.0336036 0 0 0 0 0 0 +LA 6.0586 +SE +ID 8938 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 234.848501) +BD GR Veto +PQ 1.14038 +SE +ET PH +ID 8939 +TI 1771360835.384809723 +CC NStripHits 2 +PE 78.1989 +PP -1.93264 -0.0215469 -0.117953 +PW 0 +SE +ET PH +ID 8940 +TI 1771360835.385321556 +CC NStripHits 2 +PE 123.798 +PP 1.55955 0.356752 0.231266 +PW 0 +SE +ET PH +ID 8941 +TI 1771360835.386371539 +CC NStripHits 3 +PE 156.48 +PP -2.04905 -0.165564 2.09377 +PW 0 +SE +ID 8942 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.630263) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 57.528444)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 20.593000) (GR Hit: Detector ID 0 and Energy 410.979034) (GR Hit: Detector ID 0 and Energy 214.172884) +BD GR Veto +PQ 4.06617 +SE +ET PH +ID 8943 +TI 1771360835.388904823 +CC NStripHits 2 +PE 29.0609 +PP -1.46702 0.279658 1.97736 +PW 0 +SE +ID 8944 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 8945 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.744423) +QA StripPairing (GR Hit: Detector ID 0 and Energy 717.478657) +BD GR Veto +PQ 1.70517 +SE +ET PH +ID 8946 +TI 1771360835.392830189 +CC NStripHits 4 +PE 355.618 +PP -0.884984 -0.40517 2.32658 +PW 0 +SE +ET UN +ID 8947 +TI 1771360835.398022139 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 230.749 +SE +ET PH +ID 8948 +TI 1771360835.399154339 +CC NStripHits 2 +PE 88.0643 +PP 4.23689 0.36989 -3.95936 +PW 0 +SE +ET CO +ID 8949 +TI 1771360835.400568323 +CC NStripHits 5 +PQ 0.28547 +SQ 2 +CT 0 1 +TL 1 +TE 33.0042 +CE 124.767 1.19131 33.0042 0.999333 +CD 1.44314 -0.756092 -2.7953 0.0336036 0.0215621 0.0336036 1.79236 -0.60305 -2.9117 0.0336036 0.0228105 0.0336036 0 0 0 0 0 0 +LA 0.398655 +SE +ID 8950 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.738004) +BD GR Veto +PQ 0.310994 +EN + + diff --git a/resource/unittestdata/406-1/hp52406-1.coeffs.csv b/resource/unittestdata/406-1/hp52406-1.coeffs.csv new file mode 100644 index 00000000..a834813c --- /dev/null +++ b/resource/unittestdata/406-1/hp52406-1.coeffs.csv @@ -0,0 +1,3860 @@ +6,1.2094256498378886,16.480030975938444,11.53287147228923,2.3801404743169 +7,1.1840648768256774,16.88379743036138,11.48589180858626,4.22356219541513 +8,1.1848128841469237,14.260254188156672,12.432854430539141,3.0359827330253353 +9,1.1828988412739825,18.32486168462298,12.470179957680116,2.757093066828285 +10,1.189037128842478,14.930038032982196,12.063161379267719,3.127044166753693 +11,1.1898320505473305,18.47689984669518,11.867114419154797,3.6485896630157306 +12,1.1984840090395454,14.166333953382447,11.471985773614653,4.365454200707643 +13,1.195790689026728,16.1702333281993,12.07569405527915,4.084726275573874 +14,1.1955692119421553,19.483920546867328,12.342273843637164,2.9070289050164724 +15,1.2010440587761069,9.521214094811913,10.527836753598404,4.650076264136404 +16,1.1970092791006408,15.892502269747876,11.534385539878247,4.305799377380007 +17,1.195373932264126,18.14997128875618,11.955860332885475,4.634791046541345 +18,1.1956359555937275,16.302607745634862,11.529130028082104,5.287700819708234 +19,1.194943469901365,18.91790939135277,11.859516837001536,3.641635622623412 +20,1.1991036075212185,17.18980989611185,11.718771147611308,4.00038869518145 +21,1.1971661493875976,14.740990865579919,11.260600428147479,4.987920289557693 +22,1.1948057234187963,16.98790343467769,11.730461966767567,5.439580668531951 +23,1.198283559140859,18.321662993814545,12.276801181145512,4.571367939890937 +24,1.2001581913268573,17.745448461293314,12.122371774858602,5.297887610909433 +25,1.2040381943363654,18.26996660987151,11.777727846711342,3.8764240373494983 +26,1.2110572864570108,18.782021961871365,11.883804405070702,4.07743162054879 +27,1.2093286143472124,18.9751544285585,12.11412601506562,4.999934162297339 +28,1.2113090463785026,17.773039264360563,11.77902766116688,6.359745826973244 +29,1.2096732196335231,18.348103255335296,12.032075929603064,5.5518173527584604 +30,1.2125327285133731,19.890479841543236,12.447167509189416,7.245454026697778 +33,1.2414294067517129,17.04266775819221,12.53627034065189,6.24628048838701 +34,1.2517265278043521,18.046303667178563,12.220706190103494,6.277972365251609 +35,1.2602356759770346,20.38312029502425,13.494572127536165,6.040654570061036 +36,1.2702900467264477,21.926718738235504,14.070907062747413,4.481516802122919 +37,1.2825614431010737,23.678352760334043,13.720023913098562,4.959153532404061 +38,1.2924069037869106,26.271412912588943,14.63859197066604,4.174857785156099 +39,1.294805659404873,28.38138865990189,15.692049699336595,2.512130748403871 +40,1.2859122740010387,29.43950290080059,15.906990757498196,2.353410855424094 +41,1.2566010649457688,34.79950864540613,17.1701340280022,1.45154076736283 +42,1.209418587673032,48.507525818890464,28.191960458401834,0.6278572509290714 +50,1.9321458655767398,44.4081191141292,2.83827324439886,2.7218596659398338 +51,1.2080566874989822,43.5615128589077,16.62470188225687,0.7842515670590413 +52,1.2505517978348586,32.59396812327557,14.11168680883569,1.629037631460246 +53,1.2656573447399593,27.743452374662272,16.488931220778657,2.344244440765627 +54,1.2746813075456391,25.36492271115265,15.532442231983811,2.535900648253337 +55,1.2740580331543223,25.961601641150967,14.422310464544458,4.36240634825314 +56,1.2895359213039594,25.320730407126934,13.874208163041208,3.8129509339254 +105,1.1966800532851243,15.542853997047162,11.41279176305885,3.278283432638139 +106,1.1769046755870376,15.805297637306413,11.530777107542459,2.65521861239092 +107,1.1729969177014805,17.167120995976312,11.010159543226441,2.9519780677388754 +108,1.177410444185183,15.297078185431893,11.710449888873736,3.8666104198629427 +109,1.1753183861045933,19.343697586773594,11.783911039010523,2.1232058319878853 +110,1.180237322672022,15.60270488923139,11.939501799959492,2.9056478269650587 +111,1.184271709154568,18.750257455384727,11.690318104321051,3.1646282827038372 +112,1.1918948194574412,14.996597792359875,11.160091060181447,3.820843773332928 +113,1.1868500950133274,16.78060848071755,12.086835685233051,3.670320472359104 +114,1.1898446262445195,20.17345150075971,11.870031387624264,4.5792616078385855 +115,1.1918700167451355,10.323015038427553,10.478404629868772,4.943050532777759 +116,1.1879328572099057,16.676762488498927,11.568982413874808,4.337342749236693 +117,1.1834846147337323,19.79057577352692,11.630349306101058,5.772795377281702 +118,1.1884850505492983,16.692138372438734,11.424788122980019,3.356695595708073 +119,1.1888783006547692,19.835793520579347,11.759641565334304,3.3277604820181748 +120,1.1882803404847435,18.20414030246428,11.337220285431512,4.559181855276939 +121,1.1865978500550831,15.575891020089708,11.128814391366426,2.5431130821704064 +122,1.1887431462982274,17.975680339940585,11.17948488226118,3.514120494401615 +123,1.1885842922093954,18.932437463651272,11.962387527126399,3.146720342676453 +124,1.187716701810207,18.85094462066881,11.774823902310372,7.2131223276288985 +125,1.193971784659852,19.480244492660177,12.145829519166595,3.988621079165007 +126,1.1974514033526338,19.881524634303567,11.928742587845429,3.4885506093260967 +127,1.1965047741703798,20.072721746601342,11.782174080902347,4.353380842437153 +128,1.2002244819885524,19.099969659176253,11.893688302391176,4.282367487667524 +129,1.201533424190997,18.88536312055953,11.432734041282647,4.639613299152302 +130,1.203789170527034,19.816501674508388,12.209636191657124,5.121497218855901 +133,1.22783980289511,17.042764823564156,11.346883249707295,6.068674852127341 +134,1.2335008355690642,17.722306843130582,11.814143172418705,8.087795147542879 +135,1.2390546793105501,19.51666096038937,11.937536907341308,7.395391355298268 +136,1.2469685769876169,19.69989144859409,12.625797403402418,7.28981041087893 +137,1.2564347114755752,20.811159077516056,12.559695471954438,6.956640997735736 +138,1.2722200234750027,21.91745937026633,12.457899722481464,6.892570711941147 +139,1.2799421655972092,24.59855185464602,13.298278268430469,5.323495019914852 +140,1.2789956265700917,24.658995825792246,13.589584311816688,5.289776375856144 +141,1.289588801715768,25.684628254927762,13.523245650691264,4.02217710567554 +142,1.2947507429571232,26.79208392114235,13.952072844815294,5.133626355431913 +143,1.2964404505161942,29.92982038510187,14.47934627932573,3.1307914441942812 +144,1.2941952255029578,28.308472814038712,15.698082747124987,3.0660968512172473 +145,1.285441517141524,31.46317485925787,14.440540081769674,2.809544572063142 +146,1.2888659831910079,30.176381841763654,15.877743473808051,2.3445730083551046 +147,1.2912621229559678,26.07288356725388,15.36991796255634,2.5868235307079193 +148,1.2934917073548244,29.630896840255907,15.268523315368977,2.754410947646578 +149,1.289550216861685,29.7527562922889,15.182114930814567,2.5668400044277226 +150,1.283379550633774,30.29985098615313,15.382541568799638,3.5201787219711553 +151,1.286319740952468,27.882587815600136,14.515474317686213,4.183064578389814 +152,1.2812329356557781,26.859729396229383,14.265725281088105,4.516821292248315 +153,1.2694630615641476,25.977454619377838,14.634283045403352,4.426118770484784 +154,1.2643715325501734,21.974585604768063,13.995516406006928,5.901314907892077 +155,1.255287197789093,22.977315799561154,13.58303202628449,5.904209687106571 +156,1.2399848042518582,20.871285338024578,12.777988880219144,7.138754503351086 +157,1.2501335160804845,21.201952474699855,12.52280958739159,6.320698151163914 +204,1.1815694303869952,12.913901253205603,11.975101486262604,2.872862801284504 +205,1.1665768472389924,11.835304379289084,11.218872417050557,2.9591457485377535 +206,1.1566217090617237,12.821868566291963,11.509643530185931,2.2551096000143374 +207,1.1569668906624668,14.161074958589781,11.310510550159087,2.479586409218691 +208,1.1634569526911531,11.847779459015541,11.643452358314653,2.7476065344189147 +209,1.1613917916991807,15.866816526589648,11.725631899448532,2.7796991397799915 +210,1.1645930194525114,12.72356859583269,12.109610350731197,2.465198996344781 +211,1.164271118819225,15.641817721798553,11.943912136317788,1.896076122014804 +212,1.174400271143082,11.593544343671676,11.02990513412992,2.468785361019754 +213,1.1694949039848261,13.002327155855586,11.521104458955723,2.5750999217313852 +214,1.1671275275129758,17.098197845369974,12.005847588833435,3.8035224411172632 +215,1.1705612222817847,6.710014487804519,10.571128454903356,3.790054217420637 +216,1.1666066606421708,13.49594810996463,11.422432495809442,3.315272756421945 +217,1.1657543189525723,16.050033585976948,11.658451123297123,4.63529400852582 +218,1.1653314186090193,14.028976049012048,11.2843887401115,2.838549276062522 +219,1.167116214874076,16.439602616621375,11.82139097088942,3.2731138432000755 +220,1.16862161476459,14.633738598493636,11.429115763441871,3.538423419148594 +221,1.1671021158111712,11.603008833976757,11.202877601374365,2.810500845535716 +222,1.1674744050902837,14.565794985958968,11.615594265585372,2.6607950314877575 +223,1.1677721832868155,16.367105530626983,11.576242384912291,1.948579654918465 +224,1.169204807884481,15.5302164323636,11.428296479467464,5.257277162635327 +225,1.169383962999974,16.51645576801651,11.535173130630954,4.089453326406173 +226,1.1756450253026063,16.805106292947553,11.783625546097829,2.8471665998232716 +227,1.1795578051795292,16.10028155332582,11.562246863974694,3.424878612194639 +228,1.180998567542256,14.988297047315454,11.147847736558539,3.1794647165982326 +229,1.1790728379835973,14.877045276587573,11.296520025592658,3.5635319611388816 +230,1.1800882937209782,16.199683732364143,12.361213823410937,4.816682169978045 +233,1.1960066357375494,12.586625851300902,11.190431675881127,4.620674799692694 +234,1.2059256679572807,12.371071451037427,10.88652014058933,5.31754696343858 +235,1.2053250573167889,14.256278553546988,11.228295950736847,5.396911947671392 +236,1.205805773504273,14.296974331570851,12.437340910000579,5.455697581647001 +237,1.216762548437486,15.022864514015483,11.379831302221444,5.583103852705013 +238,1.2261946581845007,15.782490776141806,11.56036816801735,6.5588485714310485 +239,1.2326044937464602,16.896408428974038,12.172482074090736,5.928556540202768 +240,1.2417616400063944,15.40895953741712,12.244100235923945,6.273359056823845 +241,1.2414231519466403,17.16267586299688,13.077875996982455,5.9333403938679865 +242,1.2514545466315643,16.218596982956765,12.973683254013778,6.067405153729693 +243,1.2459713503797265,19.559728649931465,12.951927732751452,5.9006717957780195 +244,1.2525090467614182,18.116086105705435,13.35950982841864,4.7905584177135685 +245,1.252642325712184,20.134275877203027,13.584788800767331,4.902277044481059 +246,1.2609930922680612,19.67045294947436,13.461514108426039,5.04271078075853 +247,1.2541334719880746,15.685416021825498,13.144990470654317,5.159726265054125 +248,1.2556607499916088,19.453322840826498,13.541371679713334,5.171803340099658 +249,1.255272684073437,19.629386588656406,13.525870153715697,4.754943790391711 +250,1.2524362680240644,19.515192613883254,13.33170559936213,5.166754049609432 +251,1.2449973831246781,18.83355217468665,13.689226006215128,5.835684220099541 +252,1.2431087555032878,17.48253153173727,12.52625828121278,4.300241243241432 +253,1.2297280386229155,17.439017924206,13.261687129451861,4.380544168563979 +254,1.2308448898334095,14.001946966101382,13.119172731220214,4.958442213792654 +255,1.2234818662765787,16.559193808966736,12.261384156264532,6.274649955531287 +256,1.2139344486421544,14.549496706832475,12.120675771558952,5.34291989984317 +257,1.205681319732265,15.612084864540089,11.61103115767649,5.342515191423217 +258,1.2131510884112158,14.373067423786896,12.795853602873485,5.412613452683189 +303,1.1864622775810305,16.073916373571965,11.94556803732174,2.7524239323507986 +304,1.1634239543840577,17.056708587770395,11.623003717137198,3.3344299396677717 +305,1.1630953435602558,16.25309512041374,10.926907746394448,2.6497282258201507 +306,1.1634465837320664,17.274296534061865,11.580262802842695,2.2805089771767166 +307,1.1636378308499016,18.919484026528064,11.383634904460143,2.407591120803717 +308,1.1704181328873668,16.531383792932278,12.150468083614484,2.697034697511782 +309,1.1657102008893112,20.798960138966105,12.328612355451797,3.069642871906187 +310,1.1684625088741563,17.989990086631558,12.196171429592079,2.4394543676359035 +311,1.168777537342061,20.747368390558993,11.877613852246013,3.1821660131691236 +312,1.17504711769278,16.46877660695872,11.306357975166724,3.26262785554104 +313,1.172438009437109,18.090579552436413,11.968892713159233,3.616106284551669 +314,1.170248846189714,22.3460829104354,11.877074699849441,3.5226572186414997 +315,1.1724411904706924,12.340585994572972,10.473256186564724,4.699145198015569 +316,1.1686355966373652,18.528005938345554,11.920411921063423,3.132399652747038 +317,1.1663440402652832,21.1171482060027,12.033510737879679,6.56963924897455 +318,1.1702898717232493,18.497944978900765,11.36273975435559,3.3047947356436937 +319,1.1691857317347412,21.63774887715173,11.875245814248402,3.293792526237748 +320,1.172263993030327,19.598778371260437,11.97022482951116,3.025557261971822 +321,1.1699541149002335,16.894726327206648,11.28430953985259,3.2853729151116315 +322,1.1726779722649947,19.16911345762267,11.88345240837516,2.472795911346516 +323,1.1705787563371464,21.123929235262153,12.127652668622323,3.4930731740903167 +324,1.1735702376770492,20.108778134925693,11.932980974716072,6.128396709586703 +325,1.178073017865564,21.006002547911887,12.03049305327944,3.3766767236895325 +326,1.1780638519482738,22.348865173072326,11.976472691660312,3.277705504423503 +327,1.1835042186463534,21.24417340208395,11.643955945829394,3.6956951351392298 +328,1.183194883297135,20.087603737966496,11.63280349763643,3.8432797877273006 +329,1.183351167698084,20.311346908183403,11.680789699562576,3.513557118890574 +330,1.1823985923580038,21.538413058934864,12.22920153349474,3.938514476530239 +333,1.1970355538626887,17.291708994071453,11.564420580689225,6.162841259383223 +334,1.2033817715843544,17.571401663684497,11.384929166324712,5.294365806763584 +335,1.2016173222396103,18.73763149828973,11.877777492587638,5.8923558915546845 +336,1.2085806231683447,18.335025038116484,12.402990027006885,5.112398714416141 +337,1.2146972344375195,18.72294180467145,11.993148197747061,5.981384966128477 +338,1.2251223338995594,18.714630594105202,11.143566539072504,6.408883473505397 +339,1.2254690285361958,20.18476869013098,12.005085803822983,6.5809340116743 +340,1.2273886896718977,19.073201610390512,12.206168325621082,6.225889347372783 +341,1.2292658808662187,20.710925790588163,12.626393444585773,6.154897346059253 +342,1.2402065365205186,19.54863024153685,12.175398583572061,6.919070163283978 +343,1.236536060652365,21.60449022787899,12.00853334244385,6.601165265079474 +344,1.2378264862212305,20.51230126484472,12.66468127619843,5.945243110686203 +345,1.2372150760992122,23.19530366881906,12.667607253529491,6.518821546879053 +346,1.244476410186437,22.062377235401392,12.624271834786228,7.8155676440714315 +347,1.2483328390702233,17.455787560224685,12.232900046037074,7.032323508092461 +348,1.2433140168847623,21.47332369578141,12.697731537265161,6.406302464630169 +349,1.2410372067588047,22.80214160128224,13.103154614580289,5.7167960587415845 +350,1.2402793547764552,22.675736961133563,12.764311458316511,5.24786056485724 +351,1.235263145398762,22.231646956239935,13.032715320254095,5.640535151331236 +352,1.233963597193219,20.94136603310501,12.230702239114583,6.2552351585486115 +353,1.2270002389519707,21.163833549012967,12.761932045310756,5.199032186932321 +354,1.2246281920862818,18.873910763364584,13.127324151419568,6.139146964134683 +355,1.2216696980671835,20.866640844377756,12.271268659153414,5.572573819383625 +356,1.2125911017139688,19.987743408321982,11.9901983693299,5.506582896469791 +357,1.209600499505065,19.84749777587702,11.885476683837837,5.335401606736854 +358,1.2044035900237005,16.887478623833008,12.621459373341281,6.159855851135655 +359,1.2062752752493888,19.91253087295398,12.716014742910607,7.540125370885662 +402,1.1815028845845197,14.223256863537005,12.294206949494725,2.2832418122454707 +403,1.1671659308976345,12.47738397319948,11.690859253048622,2.4097563298689577 +404,1.156819976538988,14.227270909492857,11.391428813915967,3.225998540685357 +405,1.165177386628041,13.246820036515865,11.226156785374878,2.5086302890654024 +406,1.1624698178924884,14.402724039164735,11.383086814223123,2.6249487017859128 +407,1.1608603124456742,16.187835139320217,11.434026987586707,1.8603622612335367 +408,1.1669106871999493,13.421782990542333,11.986271195242686,3.2094654515047516 +409,1.1626273930401143,18.12370906413083,12.205414965914851,1.8801280462502836 +410,1.1644874953954933,14.722556306840643,12.107216191079614,2.278339446736325 +411,1.166997286698391,17.3741708305763,11.738035944527747,2.25175594799767 +412,1.1725164898688714,13.278299099331761,11.24702217013644,1.7278718272672968 +413,1.1688780131933654,14.886998212298504,11.860681761463228,2.5961317592688253 +414,1.1669138644388992,19.208674949064815,12.2361421863526,2.2574057633923057 +415,1.1700328432746678,8.825642712213337,10.931700394760929,3.7619931850189454 +416,1.1653672939401507,15.519777140549301,12.137526456982405,2.769999156754261 +417,1.1650881220068734,17.887390333454498,12.130221359529994,5.128866476385679 +418,1.1670419338414,15.201624449268074,11.572329210330755,2.043240570490981 +419,1.165948580538362,18.477131934232577,11.9636627365621,3.126824613074825 +420,1.1672973932314719,16.755871324840676,12.108394511505729,3.694021297574487 +421,1.1670504229509469,13.258743558134382,11.739326026998047,3.3745821637468625 +422,1.168171530449655,16.427398330109682,11.854589662639262,2.8354043874357715 +423,1.1681132949742254,17.968715756135875,12.576887815018999,3.2656057359970343 +424,1.169779000461976,17.558181209709154,11.447406493452949,6.065116291353557 +425,1.1701622611020521,18.18559596656139,12.42557306037286,3.4272515362786327 +426,1.1761882131618169,18.56858521265084,12.108370912239684,3.032694810682684 +427,1.1772034673716696,18.290671133643407,11.924613938099403,3.7646333595911736 +428,1.1754607564024007,17.58650503547577,11.79732693474745,3.540388195694526 +429,1.1770398828700024,17.46079325740703,11.725517216414184,4.365023589754796 +430,1.1766515022342678,18.147295031279018,12.031834319853287,3.4642591462798813 +433,1.1912411675062367,13.395377286236826,11.518831747775561,4.992558309585668 +434,1.193993464196333,14.014861262786194,11.318431587029563,4.10862378929558 +435,1.1932119966076218,15.459748637847913,11.776213667789037,7.061476886079435 +436,1.1970140237855593,14.402449002139754,12.57055837856127,5.212971854728879 +437,1.2024869741388045,14.670455045142804,11.666639204915622,4.692212602724467 +438,1.2092481561656694,15.182011848256147,11.075338901127443,6.051057807868997 +439,1.2067494526152809,16.636397534507555,11.825384727288863,4.623685308119091 +440,1.2124186663689183,14.717240244554883,11.811181171855644,5.166369184057343 +441,1.2100262098168706,16.02394078469754,12.311398085492646,5.707050243205461 +442,1.218050538812629,14.897242989741285,11.325869003873253,4.783634741420477 +443,1.2179635404681957,17.434895579041733,11.903016222614973,5.0050295598024475 +444,1.2193435890287425,15.250896395178469,12.537888014790498,5.068061659526227 +445,1.2177721057181214,18.28234310093399,12.068403047868696,6.592529524642643 +446,1.2229659714306804,17.024060960012626,12.655678994089895,5.969242637819996 +447,1.2264548660256653,12.375822775520191,11.43653525095844,7.4874991647455955 +448,1.2251639754321648,16.679121012997395,11.82301232968615,5.544309858886027 +449,1.2231039013514688,17.68708148198979,11.940315088927495,5.947916946833067 +450,1.2200304916788924,18.622933822809685,12.094664319215251,6.238725348440473 +451,1.2184184524411878,17.73707792639385,12.494863197386577,4.384767303859534 +452,1.2188193981695097,17.07714711680774,11.790672643843452,5.8286876244404375 +453,1.2130937757751172,16.83275231131279,12.63077699792439,5.9286147127285656 +454,1.2156358807188323,14.333229722366738,12.796621675310739,4.936889080444 +455,1.2168694842756895,16.932878235704752,11.757193256953373,4.553040373072383 +456,1.2068086759946577,16.030509975393674,12.048264011003063,6.29247106221802 +457,1.2019722408505193,17.20808681752063,11.808099507635017,6.075776946654139 +458,1.1984973749462327,14.43806161461266,12.761835126892569,4.5021039794956055 +459,1.1936576514703838,15.2106251998204,12.54712814842126,5.63137169158162 +460,1.2105028005163114,15.032267591978869,10.53388594162371,6.374809723307847 +501,1.1890846689975154,15.646969754410271,10.9708974655226,1.9720559011958378 +502,1.1677942960344856,17.26992181538535,11.938695090317752,2.729711161170185 +503,1.169754422127798,16.18957966659644,11.65789586512321,2.137561331203535 +504,1.163433073807884,18.14764649223244,11.807400929465757,4.016780037987097 +505,1.17091995122972,17.135226371882908,11.433444465643403,2.4640691718407988 +506,1.168638731573916,18.23330325005767,12.282074982363376,1.8550249376079597 +507,1.1680880775624225,19.418380584105517,11.423852120313384,1.634526235848586 +508,1.1749865376190822,17.089990777745104,11.687781798507743,2.688592912222926 +509,1.169050042966596,21.311262363539598,12.355289379974051,2.058956252197994 +510,1.1699623795649439,18.15508525556724,12.802006220458507,2.935013262579445 +511,1.1718141122187462,20.69052783977364,12.456006372777601,2.0646914177292874 +512,1.1766199932159283,17.00011731199318,11.58700084980296,1.7358803323194059 +513,1.173825146402813,18.381693167169757,12.14142621404866,1.578867002033894 +514,1.1729856926641027,22.032720813280033,12.287412279106565,1.8663730841881845 +515,1.1767144083847632,11.66908636645556,10.555775009379198,2.155386354410066 +516,1.172730031539818,18.76976126903549,12.167737389336567,2.595278892667497 +517,1.1691657672860043,21.47513616601515,12.16761996197802,7.486413082411019 +518,1.1719589634696916,18.754239140852775,11.536743676613371,2.289183691291873 +519,1.1719083954868281,21.590908835802257,12.133801453639059,2.2823516599861002 +520,1.174052524884526,19.88779407415819,12.114490160569945,3.0604073278633352 +521,1.1720073536742728,17.36985470823407,11.395052464407694,3.0731659725363567 +522,1.1747496727470488,19.90559425046687,12.235182679060353,2.974187306870652 +523,1.1740830940347524,21.380809221305405,12.603747123559026,2.6275341407458424 +524,1.1740776941607765,20.980010121879282,11.842089441827266,6.550493512973846 +525,1.173555865771102,22.07672170029812,12.509656457038927,4.207135534215184 +526,1.181188443460189,22.198255845114613,12.274242339399613,2.438683951677411 +527,1.1813846871621292,22.077184548883803,12.284284153183807,2.8372278384807634 +528,1.183458355722091,20.690697800339546,11.832595900847604,3.484649242963875 +529,1.1808211345901551,21.00187334485343,12.160368665911667,4.378659465467992 +530,1.183533488298932,21.411978813596477,12.663611198168862,3.5874282936538027 +533,1.190722212184153,17.075821313082116,11.405458331720446,3.900368956303797 +534,1.1938069704688254,17.326109365598846,11.634799708672054,4.802169831117681 +535,1.1935746224613648,18.33078453816103,11.784930047661383,5.237431464153213 +536,1.1953184640584895,17.714142610313584,12.730659740398231,3.260083083587133 +537,1.1983418000308492,18.420346379380927,11.6697133590268,5.410854362494293 +538,1.20462273790625,18.39395876688294,11.083304928817808,4.804085314865717 +539,1.2045454070677455,19.309370721004402,12.311274911751006,4.992339628805348 +540,1.2090666231252014,17.648052309150277,11.607302177153723,4.186598635927148 +541,1.2029109691544937,19.067792245653887,12.291501890884051,3.9266702425248736 +542,1.2137473601117064,17.521977038244607,11.609350863956417,3.883419624352172 +543,1.2106637733116856,19.937201888315233,11.717165934668444,4.871840359871413 +544,1.2123667058322298,18.017820486765515,12.462155867977465,4.66205367473269 +545,1.2094893665987254,20.9104854162187,11.871728824813788,5.7906423087967935 +546,1.2173756389345012,19.122149893937173,11.822676488567577,5.589654239919928 +547,1.2211327522407442,14.563334341309481,11.470682104374644,4.764379622649525 +548,1.2185587026479243,19.22731239930544,11.920682699117716,5.700705827690989 +549,1.2164147349792724,20.546097803298643,11.765329507180962,4.858163036601121 +550,1.2147600921853055,21.54494819612162,12.433355940488834,5.248740416119522 +551,1.2136381033193133,20.617072784574574,13.084539334853416,5.183482226388072 +552,1.2188112476972155,19.20166601051704,11.93062028870649,5.173998595994019 +553,1.2120722777068174,19.82425686472123,12.870494473298457,5.476925464341931 +554,1.2116384604670947,17.800976692317118,12.955954314676555,4.727716997832432 +555,1.2143855093210407,20.3873176379787,12.203058868281163,4.884516573782867 +556,1.2110045528844904,18.710779691283026,11.939191340456677,5.767966291740306 +557,1.2055157334624127,20.502605240492198,12.010538321009205,5.165093911761687 +558,1.2055890649454963,17.793634611273674,12.89684668263485,3.8933123216551513 +559,1.2027171280929267,18.898220276010882,12.60247484943759,4.814784845666281 +560,1.2088354637990346,16.2788681242921,11.045302297806193,6.505020935920592 +561,1.21157867915823,17.973617218683213,11.634934321436171,6.853984737756207 +600,1.1905240428832657,12.127918490590629,11.246738823722268,2.006026250106936 +601,1.1570919723497182,12.424242736777249,11.57292544476325,4.470640692328185 +602,1.1497014352271644,14.470999770522937,12.133153254341149,2.1722149013047005 +603,1.1565972975370753,13.344218650200121,11.284036381741657,2.049476943367695 +604,1.1528260140027045,14.681866252708456,11.564030715322524,3.407071056912236 +605,1.1587716122357592,13.905719508246804,11.173370886357402,2.271325620820317 +606,1.1569912614296634,14.702107558321238,11.539138797779408,1.867729712157296 +607,1.157247490176759,15.676261328108355,11.123601487540427,1.9717665311730415 +608,1.1587956301920486,13.486985327121195,11.895476125411479,3.0126038914189417 +609,1.1550395254507495,17.496688765229703,12.671686760937426,2.02832769391581 +610,1.1585977385911874,14.31274232344112,11.880953155760169,2.095437019499286 +611,1.1570338516152525,17.297788581410828,11.950462549206394,1.7991257138941052 +612,1.1625403603968054,12.79737918004221,11.49210530425202,2.5082958460014346 +613,1.1600136664947285,14.468106786625007,11.662152705497014,2.1253367140057673 +614,1.1559645084885528,18.86941457576479,12.063395778550884,2.427423084311781 +615,1.162955249878529,8.053961042458868,10.460810196218477,3.372516733554541 +616,1.1579736757488852,14.967328703034132,11.250620573736681,2.109207254279399 +617,1.1559802350292738,17.886046625655737,12.087093463651357,5.392394153501331 +618,1.1569611024565838,14.99351995850451,11.435510624677619,2.7364341110887245 +619,1.1578400848111006,17.891640805470484,11.763117913742589,2.7170991730114764 +620,1.1583969561162981,16.31764169287251,11.508815236192481,3.1635473658451523 +621,1.1574997341162598,13.18383184928261,11.346069693588934,3.2880767825719874 +622,1.1604871326492099,16.115519844690553,11.712083655361587,2.141480478363672 +623,1.1647158731220233,17.368053210298083,12.198067310154563,2.4901888357579343 +624,1.160989312361731,17.01621474788732,11.257281549470788,6.308665698622753 +625,1.1615503059577437,18.000760185679717,11.99579234615782,2.1704747225203995 +626,1.1643170075578206,18.744595618830115,12.119314403447767,3.9144777595310183 +627,1.168879822895684,18.16728876288598,11.96418742236038,2.3195101948731915 +628,1.1685954472394804,16.972198459256262,11.697131769334243,2.6421762318490427 +629,1.1683396454857726,17.020284154813123,11.524862993475237,4.022066876318788 +630,1.1674674991396545,17.71092163323656,12.267150002754661,2.7771395634683183 +633,1.17219384709437,13.47096591466291,11.546891231366079,4.170281500774733 +634,1.176290590046221,13.067118124129637,11.068116321329063,3.9716462985330767 +635,1.174944904698855,14.204739584776448,11.387995308211865,4.755461479357453 +636,1.176603360302004,13.662304956666665,12.18573164344587,3.540376765632825 +637,1.1813749213717712,13.172090204117096,11.485024719871076,5.0123680309466945 +638,1.187089535094192,13.508295810577406,10.978114790396436,4.147689272904444 +639,1.1836075177641705,15.244714435124937,11.471248843965483,4.827357908125101 +640,1.1844797361824486,13.290173712208055,11.366565736623917,4.371286308496903 +641,1.1830631554282631,14.337892542156116,11.786870222722415,4.290459657403113 +642,1.1917565256158484,12.682496831696104,11.21715625439598,4.215744021338451 +643,1.1866353310058975,15.476230211772275,11.610472467323909,4.5653811073667 +644,1.1930985229594895,13.006852527614088,11.280287169035335,3.980322268327199 +645,1.1882829045503127,15.539386728178451,11.4555686991419,6.580067789362266 +646,1.1932748796264072,14.469537423021729,11.679571123325971,5.067065824732234 +647,1.1988615898875554,9.312918206091592,10.961554407397099,5.241377843873476 +648,1.1923118932042875,14.722411502448278,11.821543285009481,5.72456242591678 +649,1.1936591541834118,15.804088215801732,11.978824712363634,4.556311409863394 +650,1.1928514881368752,16.308075438902836,12.020866072038372,6.373936139551309 +651,1.1934221239890397,15.574734932947553,12.553473742449912,4.329082941069417 +652,1.199404326178156,14.414576267205861,11.053031793215405,4.464430443225515 +653,1.18924646922377,15.241389697915906,12.457925734346395,4.1881602484373195 +654,1.1963875166020064,12.567195215819325,12.37469027281862,3.529736460188757 +655,1.1989834796067929,15.515616959720191,11.884231479447244,4.566286638373839 +656,1.1972332615856278,13.734041130222955,11.644272934281473,5.227264880719928 +657,1.1896293279412833,16.140749910499597,11.694503219598383,5.3476617853026 +658,1.1936993123291737,13.17506510372366,12.9073069245629,4.261112612625994 +659,1.187051080926195,14.854103301376627,12.76628950420788,4.355970993562136 +660,1.1924616271617146,13.68732336374291,10.766321111773188,4.848023151091062 +661,1.1872396138414818,13.506136853317345,11.438756953198823,5.084678670028353 +662,1.1985248163761593,13.520016908204695,11.79070997323429,5.198824531394808 +700,1.1617789911654977,12.220047427737866,12.101595187803778,3.9934736397541437 +701,1.1459838904685924,13.493604071990887,11.685080987562648,2.7708722962834766 +702,1.1437451893545,16.146742894894313,12.491649022113448,1.697181824506768 +703,1.1521010118807087,13.740853757099057,11.721453013321707,1.9179842036095502 +704,1.1467983162129907,15.10853367433319,12.036712862491454,3.1120629649445775 +705,1.155374253303766,14.079971855632165,11.343748057957212,2.7023087300435975 +706,1.1520808094836559,15.060325481470045,11.76371615321125,2.6253454573106634 +707,1.1509038912308123,16.221903438812426,11.60108709401685,2.0010935339476332 +708,1.154484328268191,14.095344548401739,11.868028701083439,2.546757316123251 +709,1.1484975282402168,18.391833886597464,12.668461648955027,1.8550272198311262 +710,1.149934981989178,15.16105017699427,12.136848180725112,1.8859759414249413 +711,1.1486348076860537,17.936017626321345,12.140123262813038,1.8993772380622023 +712,1.1551594462282933,13.893559694606648,11.525343703221797,1.9646748049094462 +713,1.1504582127840832,15.145635616888663,11.897129090921304,1.803964796570984 +714,1.150710641739854,19.10372038248118,12.099333476161199,1.851823545533205 +715,1.1548813894499643,8.582603509886528,10.709744222916022,2.1304015058874697 +716,1.1501948214926423,15.821530223211514,11.837532906352354,2.6669072878833187 +717,1.1490732296610875,18.549167766570868,11.910398070347693,5.202101064912253 +718,1.1499743868716652,15.871362428545085,11.560317645356635,2.601058736351041 +719,1.1496028633444464,18.641121882028685,12.189925457258937,2.6268887205698834 +720,1.1523336440499905,17.199020728375984,11.934684329530592,2.468129297828205 +721,1.151991241948538,14.098839280304423,11.376776965398726,2.3822579288937815 +722,1.1518380915359796,17.01818556305035,11.548144663760732,2.452641992111261 +723,1.1546087420951594,18.829570188086606,12.09043670321785,2.3913591964308476 +724,1.151549331317545,17.851668979329236,11.969338685656522,4.806040186665511 +725,1.1533905044386732,18.67190202272127,12.013757280869633,3.608834308375769 +726,1.1609439724128652,19.15400233963337,12.28512646073289,2.6701018782708927 +727,1.161690572218485,19.289215979240325,11.75735933601269,3.4101971716004593 +728,1.1613712249294135,17.344437766129527,11.99353607018603,3.1980015621620317 +729,1.1572706728004556,17.74685138612284,11.724767005391188,3.869444556953195 +730,1.1594303143893048,18.62165393231564,12.086440938960052,2.737292171890112 +733,1.1649318157819768,14.096746424524545,11.106703695800615,4.685364233504498 +734,1.1659332155558322,13.692716507163396,11.32376687198347,3.4395335503286724 +735,1.1621451742862536,14.562838262080293,11.607793129659292,4.964808528633467 +736,1.1668164333403879,13.772489634914562,12.229056951412844,3.280194373095289 +737,1.1689688954502782,13.909262247045852,11.031948109508809,4.733695953425016 +738,1.1736362372704228,13.870813996757423,11.086800491009486,4.071961956536884 +739,1.1726708993707016,15.083851294004267,11.520156460099582,3.889966466891917 +740,1.1737864391235864,13.669168692181929,11.555484050335027,3.6915543712171957 +741,1.1703752799950757,14.419765309404012,11.951446313167274,2.7710638298252612 +742,1.176791265249147,13.179779323869553,10.986295829784408,4.725609758782497 +743,1.1747876293039314,14.813863995904066,11.29458108994511,4.004111166631987 +744,1.1763614323902802,13.668932375483527,11.55438775457714,3.3409478981127645 +745,1.1751353733998886,15.513217322628574,11.36425668475474,5.08365521682634 +746,1.1781196558508416,14.68796111776395,11.860778753346429,4.222635020887807 +747,1.1844506095375071,9.274077375512457,10.624767467619202,5.063705627930655 +748,1.1780756154341758,14.77963082030344,11.527899521203032,4.145929245669608 +749,1.1798449930770702,15.368095836007093,12.024559038837335,3.518182906811125 +750,1.1778797883562442,17.080330127510948,11.65992759623894,4.774480116998608 +751,1.1807629189403608,15.485842808317875,12.364472541649892,4.46041204213452 +752,1.1857838037153108,14.360016974741598,11.534833756710817,4.460523979796582 +753,1.1844624136200215,14.320526013598403,12.32696629075348,4.090573026050859 +754,1.1819646441149259,13.48496757289274,12.55693323170878,4.714660714822572 +755,1.1861584412415414,16.318530697382116,11.691304249827088,4.615603968013601 +756,1.1863387863347248,14.559531762033567,11.165168916617779,4.95749604655231 +757,1.1837884758005852,15.757046332932793,11.71045045114141,4.973156426480497 +758,1.179256689586987,14.628022310937425,13.00719309546125,4.649203059308927 +759,1.1761821553631449,15.865426798599163,12.9408565057946,4.273619287970297 +760,1.1851878524826873,14.063048951148641,10.891970982262855,4.588796484628582 +761,1.1754976391371734,14.66646630086438,11.819839225464538,4.8150825224039835 +762,1.1740010692442315,13.80713689506228,11.803589378228033,5.803725011910013 +763,1.1970047735069285,17.1226025513802,11.512014498922307,3.102737785032649 +800,1.1645440350874774,13.14750645443746,11.494454830561754,5.106439131787482 +801,1.1556910386543677,14.210991696729286,11.824948550734398,3.4842838826609444 +802,1.1555684579164553,16.3788145943652,12.526646466302129,1.8170140303544369 +803,1.1659594542563498,14.403160946461062,12.012849658651975,1.877429689815293 +804,1.157873887844175,16.42203494216018,11.975249962581785,4.357922426934422 +805,1.1665672060608023,14.874297199194121,11.08621754433794,2.2524429752568422 +806,1.1626326099741984,16.10621948400647,12.063265085917878,1.6675653794626906 +807,1.1592809617083026,17.635083448867583,11.813897332082291,1.7658243094114332 +808,1.1644138718121202,15.256328261938986,12.095275408164213,3.479775676395144 +809,1.158386258399902,19.437835956003248,12.247558367549475,1.5455633709062717 +810,1.158706597085295,15.814221184104769,12.455407350605325,2.3176548027555737 +811,1.1570061046325442,19.01127062020602,12.131211953470922,1.6322253897669667 +812,1.1640818032338331,14.764298098734168,11.712608974834632,1.4055665657063587 +813,1.1573696443767891,16.41498289537022,12.234999223123303,1.7653546326902056 +814,1.159593204307589,19.914144174274046,12.1371785866692,1.7660063163735462 +815,1.1633567746490967,9.812392444908943,10.733693982526804,2.338690273282553 +816,1.1580034085843804,16.807860374958405,12.23403092384357,2.561810779099491 +817,1.1577030680358729,19.598801038619087,12.220072727760623,5.786662983959385 +818,1.1589145107098207,17.023379725338646,11.434621155004484,1.4287322709370556 +819,1.1597935799157952,19.893084419788753,12.16509804254198,2.6438825722743107 +820,1.161534149802973,17.902928862789846,12.096733912062177,3.007447562478367 +821,1.1605752839903754,15.582948211184744,11.42184066355355,3.0304966632328267 +822,1.163259887910081,17.926617941828322,12.09552516189849,1.821409372855329 +823,1.165647773409599,19.236862046601566,12.594080209865151,2.196576137283202 +824,1.1617622384955693,18.818429346330998,12.046021195712374,8.74738022707819 +825,1.1649863802283378,19.965687057789896,12.53668867227644,3.1016388001831636 +826,1.1690905356284271,19.998319809106206,12.48951816573457,2.5503643723375706 +827,1.17020480220803,20.187647328042246,11.962270222230199,2.0724079868891003 +828,1.1701429440384041,18.697402224575733,11.962443951032562,2.0272697635016113 +829,1.1671653186105477,18.690512506950874,12.137399318256737,3.5141554764959526 +830,1.1699843902653735,19.49865956169496,12.315858046821809,1.7409118771624645 +833,1.1745232299785435,14.8603090612161,11.367226098985634,5.373713174156732 +834,1.1746771966212743,14.768093608802277,11.683118822218399,2.9806374167177085 +835,1.1705524660498428,15.98792273239338,11.92112011513122,5.715302714108675 +836,1.171508755954331,14.988713337778293,12.853335177383276,2.7071901523893356 +837,1.1742977612726933,15.159355027996845,11.581347574869863,4.229911676140554 +838,1.1788996374611285,15.11133102370871,11.10988153707118,3.067954338132004 +839,1.1773376111950495,16.658464232345068,11.586630117529689,3.73092493558024 +840,1.1769170996120957,14.653365831878725,11.68232650801361,3.3863039025478523 +841,1.174502168441644,15.863096921994496,11.873850871573454,3.168076569721039 +842,1.1784640031399456,14.141196509213508,11.665306822897154,2.86452407793787 +843,1.1756753715457382,16.8119910034061,11.987285854511507,2.469930464437235 +844,1.180689947790068,14.263792513205807,12.134107852981321,3.377448929033324 +845,1.175829906344218,17.3386269614446,11.970583541914015,6.518833485653259 +846,1.1841457466160328,15.467337897405555,12.291626961095217,3.778991435606364 +847,1.1866589150184685,10.932394786135555,10.858164883754943,3.4849670530992096 +848,1.1838299304356117,15.858755979314306,12.174521808289981,3.764395898529196 +849,1.186521242857525,16.791470378430052,12.257489830190337,3.1421725460073535 +850,1.183832356134571,18.18410647906636,12.186132697779644,5.687888708794473 +851,1.1898880921550532,17.072934700491217,12.660490789693283,4.097024512570386 +852,1.1909452678010601,16.331459127738984,11.795165572174735,4.171304220575554 +853,1.1883163420015725,16.66749937651166,12.729177432787699,4.034129223171024 +854,1.1913794955818886,14.860758995745003,12.833497882211676,3.506486416832009 +855,1.1938684297791837,17.617907651687165,12.314724974962427,4.303501427084308 +856,1.194657437865351,16.189646470884927,11.85675256141585,5.214388182175355 +857,1.192715962335228,17.910987736736512,11.782459428367988,4.675704388705558 +858,1.1937292059868454,15.466330704043505,13.17908833940822,5.041422373157498 +859,1.189564479722267,17.23092162129779,12.920641697785761,4.131098432083083 +860,1.195351467426878,15.531370886754654,11.411241140652221,4.902539439033728 +861,1.1885604721969305,16.033333724750815,12.26561673571885,4.78676834105772 +862,1.1863368094091424,14.122797278616819,11.739740395359343,3.817033559924852 +863,1.2016618713910214,17.30861996794675,11.609901990721463,3.5610674023804796 +900,1.158014146028513,12.69928461000292,11.63612954237082,3.6260333970425798 +901,1.1503976040567874,13.13704794283524,11.839654854971918,3.2499751673149135 +902,1.1500448986737422,15.175027963678502,12.346677550411227,2.1016301032853213 +903,1.1602236159731414,13.256046990016545,11.473158225543814,2.077414950061116 +904,1.1541479975827666,14.73323339402108,11.764770259062445,4.102674796277648 +905,1.1639650246246838,13.314989716118793,11.176928419122179,2.316062328696773 +906,1.1597478320044028,14.51102107572817,11.532090410802747,1.6066816235476686 +907,1.155963776785911,16.071597963443804,11.786464835190436,2.2014455121811296 +908,1.1612303197016474,13.658564309165504,11.641597705308593,2.4713572656998846 +909,1.153108913937193,17.703473686656842,12.273081562781613,1.9414257355075863 +910,1.1557697491661763,14.379727685024278,12.23070014418591,1.9556722556420623 +911,1.154433289628067,16.94685597617409,11.885464596294918,1.860031777507167 +912,1.1589409031421019,13.115469016617377,11.76241483681215,2.2414560636104817 +913,1.1562425153265867,14.40774691116138,11.811759041213147,1.6430917275177528 +914,1.1559379881445657,18.16613401046507,12.05680824842516,3.0325396631336097 +915,1.158448426607699,7.800117959990598,10.32860099369985,2.4328367657478647 +916,1.151839517945126,15.034570619618316,11.656287715489604,3.3428895956549587 +917,1.152349782735522,17.99435591085199,11.963648869237469,5.416056813539698 +918,1.1567112662666896,14.964162918130139,11.280918904126644,2.1400194473174 +919,1.1548528478383757,18.028696558331234,12.131833159594933,2.828144675902629 +920,1.1561673151215923,16.399844634813252,12.12709788253456,3.1749057567643497 +921,1.1555065510190239,13.751762048021039,11.309936163870338,2.5776938991957317 +922,1.1598728441520625,16.033338333573138,11.806611776364146,2.206398569532254 +923,1.1623449780638355,17.47147848085736,12.332749261491275,2.513481096916704 +924,1.159544853684248,17.042816315089194,11.907969571417604,7.339502386087893 +925,1.161300007837145,17.89826357110328,11.944690234729444,3.264018022569332 +926,1.165138878884794,18.47822332937372,11.841232461994545,2.28351498785541 +927,1.1651993898895376,18.566069619671943,12.101279008024031,2.561443156178984 +928,1.1646408237719328,17.401705113047527,11.78211248962184,3.1042282880461216 +929,1.1642428925965003,16.651159202481875,11.605751951962635,4.620142301817639 +930,1.1664735901198988,17.389157786546633,12.28455014580752,2.3924708408014306 +933,1.1642977504335124,13.243225646173693,11.515448890409152,4.918113655880866 +934,1.1686902841077507,12.623681610516325,11.045742723489257,2.995631982195079 +935,1.1633913182602136,13.861857237552298,11.884904692522932,5.328911531967394 +936,1.1660138005692187,12.74809871606237,12.27892915935103,3.277250220794184 +937,1.1673546135222934,12.92302299058008,11.541830163351477,4.853775775544527 +938,1.1720689414102918,13.13130813430846,10.726321362947255,2.695488350638995 +939,1.168280837422181,14.499750676080051,11.673429920817219,4.124107420774699 +940,1.1692087511659963,12.356844915627423,11.707595469878992,3.784575028620384 +941,1.1639553429298388,13.665059326996975,12.331978835747949,3.4517914979679465 +942,1.1720043498986799,12.03880243978248,11.315941630456756,3.178832983298124 +943,1.1683522198053613,14.223485611384698,11.49168511722615,2.9821418335022876 +944,1.1713349915088334,12.299605302930035,11.59466110296622,3.475757101666191 +945,1.1692533885361576,14.847214168882278,11.589008618311839,6.235277425844642 +946,1.1728615317289441,13.83986823007032,11.960047696902484,4.177099057796323 +947,1.1777484601294805,8.210956111830738,10.519653822718437,3.870387660398606 +948,1.1782659835725988,13.056075168844774,11.836740457662117,3.5571377547048244 +949,1.1755602288866718,14.539785008056478,12.338753253916108,3.785417633005527 +950,1.180187705751847,15.250657744141114,11.636200480692498,5.759375463670159 +951,1.1815696940475016,14.780462267705822,12.290994516437486,4.404085416425705 +952,1.185132729119466,13.477404851781895,11.579219643740831,4.749669065078261 +953,1.1828845241878436,14.452592995353958,12.584037908103427,4.061478650886638 +954,1.1841264893618826,12.484855390467983,12.619604405666195,4.229480235999092 +955,1.1878322580184986,15.875144289397296,11.879170896539854,4.755118401691392 +956,1.1852835694588713,14.859733237911932,11.963250353787059,4.944775491655041 +957,1.1892140803408642,15.37259352737121,11.564809727569038,5.136717670324562 +958,1.1895708860376915,13.31784793591741,12.91878883935512,3.9492724427246775 +959,1.1855012562241785,15.273289559277595,12.526709053135487,4.40148404353122 +960,1.1880547786454159,13.341042711313383,11.059583488409912,5.579468750843468 +961,1.1808305291594017,14.297802614481277,12.257363518591113,4.179311524901964 +962,1.177311661981611,12.766751763555018,11.808436016553866,4.535609772830451 +963,1.1907130385253766,16.623997730437182,12.465193508996986,3.2874902991527932 +1000,1.162042354237246,15.861619356677608,11.27394525571103,4.294550378213997 +1001,1.151027823721435,17.07467059797783,12.279244784079776,3.336489362233028 +1002,1.1532661730637799,18.97293221855216,12.25339850005008,2.195929480388542 +1003,1.1602170540754833,17.236568718413192,11.535959288543067,2.0240796076114713 +1004,1.1553824477616506,18.626443500285983,11.795292968874907,3.9782923931232617 +1005,1.1622957089883876,17.391883700333366,11.48217461022889,1.8530290855998581 +1006,1.15910072000363,18.521452018529807,12.279608505460429,2.0410491817660836 +1007,1.1577296574029239,19.74455144244638,12.077962737905347,2.007826648258611 +1008,1.1612974105577214,17.57973104936803,12.184505410925071,2.56290380645496 +1009,1.155303368581899,21.605942227614676,12.452409380045776,1.819683527651678 +1010,1.155100049278824,18.31734634494782,12.507769821696552,2.536378222387685 +1011,1.1542614169947536,21.1201673968179,12.567946095676392,1.5622861461537811 +1012,1.1587121918695598,17.012931526996933,11.778638590833294,1.5394794562058023 +1013,1.1549252313587917,18.229936063280313,12.141023046622575,1.8194908582351388 +1014,1.1520877554042073,22.165792634679065,12.611238316752639,2.5028685649379074 +1015,1.1556204576074962,12.049212849575868,10.764580234288635,2.6022265003689435 +1016,1.1532676584648511,18.643003733925905,12.18059899248042,2.6821901286670515 +1017,1.1505457709236524,21.521804727053933,12.424697140225637,7.360404101603817 +1018,1.1550325168889748,19.06790073379227,11.59211338036194,1.4219023009873681 +1019,1.1571604146989303,21.8571125717019,12.20735309523005,2.996124881111375 +1020,1.1560169729440937,20.531212457006806,11.929310874930064,2.656405020979175 +1021,1.158817637870637,17.12518127536835,11.643183438372027,3.1173287867351633 +1022,1.1603232118487556,20.48692545456374,11.86150083334736,1.5723377723715086 +1023,1.1616830250576178,21.461330967775684,12.623034775002596,1.6609030971236614 +1024,1.1568633709986662,21.031461369570057,11.931384322417774,5.727439949053213 +1025,1.1626060242200056,21.842012969944978,12.578525404626546,3.5628972907164873 +1026,1.1669155295424616,21.884874391801173,12.124305930852547,2.401982755362007 +1027,1.167535465604469,22.176915574710854,11.917274674044236,1.9846618025986598 +1028,1.1633070320006895,21.26363042739044,12.092770457714892,2.2859410803924325 +1029,1.162977972843484,20.821590431553215,12.354390257348593,4.074894696925658 +1030,1.1657242949815128,21.32526244957723,12.567190344654314,2.006336101889834 +1033,1.1670163628652204,16.67775067904919,11.761181066128712,4.987422350281521 +1034,1.1695102110617313,16.655109287058906,11.31390371416087,2.7827842568309316 +1035,1.1634410267409068,17.753094340981583,12.014456598410773,6.3263394849715455 +1036,1.1662068125399803,16.681778867207893,12.55861861653804,2.0329004136086337 +1037,1.1665770953301335,17.068621216670653,11.571803376692879,5.362745030755696 +1038,1.1702307770070184,16.7747431570622,11.060029553425641,3.2895790699004466 +1039,1.1656348628068285,18.36306029276811,11.92573659498912,4.281898532940216 +1040,1.1684811117479768,16.438385875694983,11.66839400654128,2.6688156482631142 +1041,1.164311422965607,17.500617525663902,12.123829249801856,2.7281189262043792 +1042,1.1680889622022563,15.938468819547333,11.274214441496502,3.164541751643535 +1043,1.167236044448767,17.99234746424878,11.833847406026875,3.436144452239518 +1044,1.1667672779385878,16.25422214440786,12.112059630875777,3.0991373257092336 +1045,1.1644000175927463,19.229126742408088,11.96119695504889,5.299175151748193 +1046,1.170165280217811,17.56117290349719,12.096802301058595,2.5009211390794928 +1047,1.1761772622966682,12.396729486023435,11.011398601450056,4.01864077358387 +1048,1.1738022203980936,17.18734128435411,12.17094243470714,3.9373527969145226 +1049,1.1751896306178693,18.782399362621735,12.22010272120925,3.6675838857448646 +1050,1.1739328727836018,19.579624401240526,11.989340334406922,5.556166247745086 +1051,1.1789517079504368,18.341432101911344,12.709067763226647,3.0079211477437515 +1052,1.1836590247849295,17.458019848888895,11.460813978011984,4.146261758498083 +1053,1.1831557139516165,18.048262473102078,12.284534592429422,3.8785221513571635 +1054,1.183961920719862,16.38183006840778,12.90518474306659,2.7246453736048064 +1055,1.1898075551222518,19.1221299476187,11.972968851427417,4.630040293428079 +1056,1.1873700374261038,18.07279087215362,11.890325189229662,4.700843039570941 +1057,1.1871660308069556,19.195328322272665,11.858568939422907,4.841590661105501 +1058,1.1866536412990814,17.249127445974768,12.895649213809843,3.13870458490804 +1059,1.1877538506231826,18.603680882016953,13.044244173199148,4.335975461951035 +1060,1.1930921633343716,16.801801483033298,11.182906552612929,3.601942681856401 +1061,1.181195462844285,18.37973160411398,12.229585770355156,3.6929094095539687 +1062,1.181586677429403,15.968074299300584,11.866355628620594,4.2905036054598815 +1063,1.193116366822568,19.99472998944595,12.177213474681077,4.882969247959343 +1100,1.157506782457327,11.2056343780004,11.076523568090266,4.04280367494524 +1101,1.1456475116224114,11.880372948221432,11.67520328264722,2.3659419202550214 +1102,1.1460771367232343,13.769062423166954,12.359379915751422,1.6749227025807683 +1103,1.1523607805796638,11.960264002866184,11.716851505837893,1.861095583443117 +1104,1.1470281399290505,13.032974143293888,11.73655727596544,2.9554287833416257 +1105,1.1543641536503395,12.276644369422028,10.792770617320741,1.852011633977828 +1106,1.1505977569205283,12.863362575583086,11.703181303955706,2.4884971537321507 +1107,1.1503351749075819,14.087905217875887,11.459004731884697,2.094388948659668 +1108,1.151804496367929,12.274764987372363,11.613864846939064,3.1609969049001676 +1109,1.1466970077909036,16.523072343676986,12.622553475363937,1.7140902594289935 +1110,1.1460968359844936,12.918961201103864,12.208524621087003,1.6399050553334649 +1111,1.14502971053813,15.449536893190007,12.160732539417655,1.6007363097275473 +1112,1.1488746136367223,11.782893123990718,11.497698082107844,1.8432394022000063 +1113,1.1468785010966531,12.674385535980258,12.004426558679302,1.2309667658404793 +1114,1.1437409279591486,16.583950296712533,12.21400265567686,1.9221380204424154 +1115,1.1474920548917809,6.031447807843298,10.66373452646401,2.7712964539581204 +1116,1.1438486329737474,13.272679069717379,11.664808328479563,2.7117483624399523 +1117,1.143662046602242,15.81083048307408,11.955875897885837,7.387490481756801 +1118,1.1459132572751276,13.384747737954983,11.312799232940927,2.430092150602982 +1119,1.1462598471244894,16.751487824194218,11.880479928485668,2.44513442512553 +1120,1.1485070818959084,15.185986150124839,11.767315871956557,2.6862347781903537 +1121,1.1481598417692347,11.980108581063634,11.27059223713038,3.373532754956314 +1122,1.1519090889301253,14.854579001733958,11.747996122203133,1.688980014958871 +1123,1.1539848819488276,15.822717857069458,12.317941718401835,1.8594482660376386 +1124,1.1510247223054453,15.805842692170392,11.84174712071311,6.614435936937908 +1125,1.1530937611894219,16.534063530166247,12.304042659406258,3.4495913411233987 +1126,1.160246328743997,16.649287865619613,12.110818561946186,1.9992558419757003 +1127,1.157796407762159,16.74306339175096,11.510310657638874,2.590225813572851 +1128,1.1583919400913139,15.245727324882916,11.726687258542631,2.7770218605607147 +1129,1.1537715237332868,15.721798206453371,11.576062010260683,3.831346652804242 +1130,1.1563339642140948,15.852399683989518,12.15167686640979,1.8255214288244366 +1133,1.1571333620347324,11.534408326143058,11.281872465801019,4.604130294716171 +1134,1.1561829594327304,11.265293826116197,11.061731986560455,3.2285889140283897 +1135,1.154705103425583,12.107570854867006,11.418133386814725,4.760441274353342 +1136,1.1551974289586828,11.106823890257704,12.543280422341503,3.0311197033673514 +1137,1.1550018669859141,10.99290596972289,11.185180210435878,4.9727143278958525 +1138,1.1576612130958004,11.728473020987794,10.342894545848624,3.1724679690471764 +1139,1.1542037562915757,12.958414327019467,11.559743015364074,3.8211765014736327 +1140,1.1567734675238015,10.872083035203623,11.618065310849598,3.014336365352643 +1141,1.155411358582083,11.472099450846931,11.626951083061156,3.00318405539127 +1142,1.1580644739096613,10.235901259758709,10.72946924552748,3.2447179419950536 +1143,1.1545607024986608,12.415561229787349,11.163377446572078,3.242689353863779 +1144,1.15710225121952,10.058558441507941,11.623843905739726,2.8587870093302 +1145,1.1544320076606072,13.09395796897929,11.607333237200615,6.51218283010822 +1146,1.158474341230251,11.70763246359805,11.431994436166121,3.495965142652851 +1147,1.162000170129955,6.558664942141314,10.376403072243823,3.8803875832766064 +1148,1.1627732005014377,11.122971002510871,11.410874999409804,3.728271417275464 +1149,1.165232754191543,12.367022926206024,11.468727238743973,3.4610521357082367 +1150,1.1631890589555607,13.543249722035002,12.030243016307505,4.454631145320997 +1151,1.1636241707252368,13.089972693256684,12.263801820862666,3.8751010647086996 +1152,1.1728978842400621,11.35644025437876,11.16657444774212,4.257828567796218 +1153,1.1706189907416273,12.061994414429385,12.440476024182802,3.7240251379614016 +1154,1.1736877358374702,10.167090512845402,12.483744078090432,3.436597967903448 +1155,1.1801744800969678,12.836777784141171,11.489480825575068,4.169563349499896 +1156,1.1757731333413735,12.164188344368501,11.119812253587204,4.432433063075256 +1157,1.1775774262856262,13.272940903124303,11.618854030674118,4.431183921832367 +1158,1.1763552014348753,11.626300602062715,12.978228107334086,3.5227217069767147 +1159,1.1751634414732897,13.190579098508017,12.828970315366725,4.002144864808949 +1160,1.1797994110857537,11.37564353723784,11.020568496349735,4.169071477519918 +1161,1.17345679693972,12.631869927373154,11.770100735098348,4.980383701210234 +1162,1.1720503374427873,10.429862793107333,11.913509429251949,4.799617945482696 +1163,1.1854117285155794,14.840924131138996,12.265915494339389,3.462820402777477 +1200,1.1590480264700491,14.940339386990306,10.988256075551085,5.258607952202344 +1201,1.143231320198611,15.895822421815236,11.553242618115169,2.752506017082947 +1202,1.1453915105265546,17.45470385082132,12.3708026240259,1.7267592145450679 +1203,1.1521712755124973,15.588800271191728,11.375812823271529,1.8689097574206777 +1204,1.144873695844705,17.124579251399066,11.989243990796083,5.037650497644413 +1205,1.1529617541550599,15.970844962936276,10.865934347033694,2.147602337619968 +1206,1.1501000249611664,16.862818947559887,11.382193841430322,1.6980289049218626 +1207,1.1468935477432918,18.603162348439195,11.336644851948112,1.4030046593537073 +1208,1.1519972319387701,16.278272608660842,11.302054588131007,3.4744199893732497 +1209,1.1455713786407473,20.3203995752514,12.118096029264521,1.6354693141344927 +1210,1.1437275884296862,17.038002855786175,11.952765335384786,2.3774034170342513 +1211,1.1438467302210944,19.587306359481165,11.71372213475148,2.170297288559612 +1212,1.148851417030987,15.508930693654646,11.21706846710707,1.420589257639793 +1213,1.1432606036465836,16.978992516609004,11.452960964065756,1.9134851679747595 +1214,1.1402680097024136,21.094643396362823,12.147105177644892,1.5735750900443795 +1215,1.1426892469761083,10.3211898913925,10.33402089636574,2.0494178708804744 +1216,1.1403994214509616,17.12356806678795,11.585138053060192,1.980374741535039 +1217,1.1391473055726726,19.928356939765376,11.998068421265389,6.557176450563445 +1218,1.142336996480853,17.487795242767543,11.190819216347968,1.5745228627030372 +1219,1.1446339044696052,20.551842204658612,11.788720201159824,2.257568697010526 +1220,1.1461616586831387,18.873216649177746,11.666831648400596,2.9401409040830537 +1221,1.1469411915088228,15.864796700009988,11.346938596298049,2.671599665370759 +1222,1.1493264998931165,18.305226671185967,11.388636481698173,2.0222512256932412 +1223,1.1495789071511338,20.318052660083048,12.29810176162816,2.284116019377685 +1224,1.1493105928066234,19.18069739014389,11.731785131440837,7.2612175563047945 +1225,1.149600257090822,20.663895862456517,12.13449067009968,3.0943131362936827 +1226,1.1562084184922887,20.644245736057986,11.884466314184419,1.4827088014096057 +1227,1.158163438663499,20.44710039493517,11.633970033466582,2.1607270830709226 +1228,1.1551690548344864,19.16778210137191,11.532480106559717,2.1699757899725625 +1229,1.1549042314543179,19.1734080752452,11.284137810307003,3.7638630151913848 +1230,1.1548461394781382,19.607599685035265,12.045595404578092,1.7120653127684915 +1233,1.1532672000732558,15.155751982546347,10.84454696330654,4.700476569531197 +1234,1.1549997062138344,15.15399802915851,10.742658701797373,2.20586982164576 +1235,1.1494234481176868,16.223223746939293,11.308574857920703,6.388709337005861 +1236,1.1517344667226985,14.833138092754664,12.385304675404972,1.8261837433096917 +1237,1.1523297543034468,15.178129819501148,10.885029357647571,4.821377050675735 +1238,1.1560448963546064,15.277781384634789,10.3300162601583,1.9981803469028012 +1239,1.1527009383155027,16.050292161865972,11.436636437870085,4.0155872115735844 +1240,1.1531268244257606,14.601414408077023,11.060700763962396,2.506213738311573 +1241,1.1496472153605795,15.732862914789013,11.623330748376896,1.820497901327272 +1242,1.1542952435129372,14.077236222502458,11.032510923933586,2.4818860500987676 +1243,1.1517882400640722,16.088597218074824,11.112003658075603,2.0870153944916043 +1244,1.1514626763037745,14.11971569745141,11.643026123388108,3.246535803288637 +1245,1.1505201159729657,16.913702841910425,11.277199573698955,4.846089985028644 +1246,1.154315901444276,15.749405600256349,11.534891712322276,3.1777342058109084 +1247,1.1581494234070802,10.394038040192756,10.481693953817256,3.448577445039281 +1248,1.158772498874594,14.538197441918369,11.713222376333936,3.5780842495117486 +1249,1.1563591136170628,16.688516162330533,11.857635585151996,2.9081066883472237 +1250,1.1564956716030652,17.409948239668417,11.870578111248198,5.919327530092102 +1251,1.1620229372971316,16.631646546353373,11.979201442327623,2.9099786477359384 +1252,1.1684305143358027,15.35411543163949,11.108066948354757,2.9391269508083937 +1253,1.164300548500172,16.035117854055866,12.460806512296585,3.469587525662429 +1254,1.1658889839183455,14.513425399222088,12.263747372554196,3.417387844796978 +1255,1.1725542269594105,16.970575372469447,11.715453510286371,3.505824376554039 +1256,1.1709013679248874,16.26408499337591,11.0876404971896,3.6685701077014965 +1257,1.1727286084375925,17.269938676829543,11.133241527021395,4.029313952194667 +1258,1.1731870118211982,15.962261886990635,12.605419754308882,3.205412874718277 +1259,1.171200009800056,17.120795552054545,12.636869601754935,2.834341611713699 +1260,1.1774910126732894,15.507160704475496,10.786755478051274,4.817396296822125 +1261,1.1724029719645122,16.121433532627506,11.959134607211956,3.983817927397969 +1262,1.1731574998932432,14.299766465814713,11.904087315719197,4.484378000696986 +1263,1.1849617152189034,18.175990110720438,11.520576391301963,3.22233899229237 +1300,1.1595892031148622,14.936902343768045,11.074073866081719,3.537738075107183 +1301,1.1494288881483599,15.60755028937954,11.942556885033328,2.2847033507631287 +1302,1.1499659147244699,17.358341398147918,12.324844092635074,2.2801794561041766 +1303,1.157273236676502,15.157275338492175,11.490863734823506,1.7358800643834966 +1304,1.1493037541241464,17.218049842438838,11.833675988322792,4.360638139278758 +1305,1.156303783136355,15.545727011041862,11.333402081466213,1.9103222057042961 +1306,1.1545443922870038,16.696492072536273,11.636019679096933,1.6395656475911966 +1307,1.1516034336712722,18.14256316848522,12.035943526967158,2.2397447469249094 +1308,1.1545457160110282,15.729213390073625,11.53715703343523,3.1911670492198168 +1309,1.1475107802765416,20.048041218389454,12.582016847054977,2.0304954647797704 +1310,1.147107771943594,16.59543181013415,12.704125793690666,2.3460019267915597 +1311,1.1476316833551652,19.599026689159903,11.675838320437963,1.8040893718637439 +1312,1.1499470693957372,15.549072682354524,11.572604811879982,1.6137621524540042 +1313,1.1457169442438522,16.616214790336524,12.183678245956228,1.4215261501845622 +1314,1.1449224368265551,20.473513807934438,12.190036424590074,1.7266163559839547 +1315,1.146139165149488,9.9060473959576,10.670676963997318,2.276241694011728 +1316,1.1426313642442827,17.191916131783973,12.058004359517248,2.979411757173801 +1317,1.1415230053572916,19.822550043843144,12.192832592753009,7.045588637725849 +1318,1.1453787266131072,17.412072530979298,11.532577016965693,1.5282268603932965 +1319,1.1472510432712342,20.24146167899089,12.122738389374682,3.292088724665081 +1320,1.1502234169291512,18.529554928821664,11.86066493693862,2.390388949867103 +1321,1.1501031168895257,15.518571833969267,11.394260518939452,2.294722954605462 +1322,1.1549059147470102,18.25168640419977,11.408684012167855,1.3188045494428313 +1323,1.1552517195388807,19.494438541932894,12.145164282439847,2.024062433116835 +1324,1.1525080596710169,19.140033318458123,11.856418154527562,6.546641051100732 +1325,1.1528957841945178,20.35996963084667,12.259342421349812,3.566420402289886 +1326,1.161465723565617,20.728395864882895,12.050450356340269,2.2357359656709397 +1327,1.1619196271677723,20.22576541832384,11.767885750323982,2.358905533404963 +1328,1.1628427158391683,18.845582040072973,11.3284182550076,2.4269923938176436 +1329,1.158173925015281,18.78743055354073,11.805247937276327,4.14763561329004 +1330,1.1562332942818736,20.109219331696885,12.17374550724911,2.819627608268926 +1333,1.1588069539229597,14.76524035183084,11.493803265164726,4.767321148013252 +1334,1.1601928132775674,14.564201533201528,11.261836797872611,2.7807016775638562 +1335,1.1546320559562329,15.92302762878901,11.267169637736929,4.722885524024654 +1336,1.1530646807014917,15.426824896257704,12.504434954135817,2.6046265567013145 +1337,1.156145453400408,15.05581451660055,11.276980270298845,4.493768924119076 +1338,1.1592601942367744,14.937998889111327,10.921505732085695,2.841711982285099 +1339,1.1547364654549022,16.34858730455884,11.589432172329868,4.2424113956685465 +1340,1.157020983977519,14.092494910137027,11.411162045822923,2.468182452214649 +1341,1.152925121613317,15.232130953204415,11.924930375044676,2.057992439578023 +1342,1.1567482829298767,13.968205700201116,11.459256060595639,2.840903365569524 +1343,1.1521599803845148,16.254158617444855,11.339988073873489,2.346202699061532 +1344,1.1535833111759406,14.247702943244407,11.673669651172911,3.1005568138303157 +1345,1.1511402525337604,16.791085904596002,11.842472232008314,5.6946599190260345 +1346,1.156150937034403,15.41686179707863,11.533024044525058,3.2262998027296894 +1347,1.1593180897123654,10.551783764168233,10.202881657629618,2.6382185294940848 +1348,1.158353066148351,15.018911343169432,11.63674868911831,3.4724733491225703 +1349,1.1601135782025773,16.131584861669584,12.037090371023703,2.8593190299438067 +1350,1.1616448104038943,17.15445515510508,12.123971500014868,4.806529592285935 +1351,1.1658338077241042,16.18754759486756,12.372177902460503,2.5954502331848945 +1352,1.1702989850360546,15.487798833160038,11.438648087155084,3.908438380866824 +1353,1.1690425123818877,15.885724303174344,12.578739975966348,4.103640171971019 +1354,1.1726035147442455,14.009981245841661,12.485529243718734,2.614478426428678 +1355,1.179445785175986,16.70494388112086,11.885915032874518,3.2732985915566704 +1356,1.1791332609740606,15.389322095556967,11.558176689370631,4.116816944131278 +1357,1.179960655739808,16.651282809939577,11.529532817093758,3.9952272427311764 +1358,1.1805638295665777,15.068634445616764,12.713776845284409,3.7027992236558904 +1359,1.1761320520552998,16.97005029948262,13.238027139699799,3.8242731687632303 +1360,1.1811435695869639,15.54470146723125,10.936610096420523,3.630202556733297 +1361,1.1755264026438492,16.124307039564204,12.148287086545588,3.482622290509043 +1362,1.1747030312030118,14.369553922992658,11.768936087738338,3.99911817364649 +1363,1.1851420885060093,18.295655826616684,12.455601792407341,4.172278091479991 +1400,1.1610711803925233,14.496712608830968,10.71802880170924,4.987852170695349 +1401,1.149438533339396,15.110598431574925,11.598398024620241,2.440792352585853 +1402,1.1491426453073246,16.848937591191554,12.257198431641013,2.007116927327299 +1403,1.1578085987174398,14.816138249024368,11.579858648699705,1.979971687428106 +1404,1.1501547930490583,16.28186138356408,12.145623915833749,4.4239013721691895 +1405,1.1569315891346774,15.226227462941244,11.284219689134403,2.427363164255852 +1406,1.151622877023595,16.233222658119068,11.903924267552991,1.4077010078868817 +1407,1.1514676938408075,17.2156923016652,11.594884590715054,1.718707979505534 +1408,1.1553502746463684,15.02825905375184,11.79839080474447,3.429720458057831 +1409,1.1467809842787335,19.59815903996651,12.299488137900306,1.5470139855736318 +1410,1.1460961195787234,16.21328316512119,12.3668527225346,2.051766543479394 +1411,1.1473304570266745,18.8269413707866,12.417236691749045,2.118204859262293 +1412,1.15238580965335,14.867707965360335,11.347677375873792,1.9751042577987692 +1413,1.1470246460606024,16.333716590053072,11.865658562443794,1.4927460432513886 +1414,1.1443088542169488,20.043626043498538,12.188533616816771,2.4095739121476836 +1415,1.1475841691121262,9.472275401340967,10.904213237643381,1.9729844691128287 +1416,1.1432302759738253,16.7275346632664,11.878142742048858,3.0702356613239594 +1417,1.143276959406056,19.187881059204805,12.034743733639038,8.70773235707798 +1418,1.1444192721853153,16.765200837995593,11.545836883220092,1.5667919148316438 +1419,1.1473604636761614,19.7967933773614,12.358394238992306,2.3793023362957606 +1420,1.1502934953196755,18.217741975390837,11.495490964574968,1.9515331638963664 +1421,1.1494844150311483,15.337326166033108,11.146695620282948,2.340380523739671 +1422,1.1523719980714178,17.704492980745147,11.692569203605737,2.258467735958653 +1423,1.154535054604624,19.5608298461018,12.280864759847024,1.5351063470610686 +1424,1.1506633208991068,18.551614863086574,12.279687278223177,7.058514114695124 +1425,1.1559871026481323,19.45261874377343,12.025774328773963,3.2925712210254927 +1426,1.1599596474229728,20.23890178073319,11.88238703808308,2.2894738847313496 +1427,1.1624357431499113,19.575204554312737,11.804327304055239,2.2578414212419706 +1428,1.1603672811718024,18.767147842293518,11.689453688375298,1.8397911853912363 +1429,1.1593879368755666,18.437961230287993,11.276890244016123,3.7299861457830907 +1430,1.1615797431753292,19.297770317860007,12.224348259819523,2.3318031080432045 +1433,1.1591800794013856,14.408426422776646,11.406827059333038,4.861019439847919 +1434,1.1578818034315717,14.031610019742843,11.458337137072332,2.154148282809836 +1435,1.1542235461374526,15.290069435708663,11.747969400555556,6.094117751888344 +1436,1.1551022173259184,14.262035635261048,12.891993896519184,2.2658126631039592 +1437,1.1546757301447146,14.395295057294842,11.335823036556524,4.133354090359676 +1438,1.1581288923503281,14.526958966574801,10.815942414400673,2.386329455598842 +1439,1.1543611749149194,15.635934869305553,11.760986119223574,3.9102070479010878 +1440,1.1567962535852432,13.711961578600503,11.521377016204768,2.9474523058092514 +1441,1.1512537707013144,14.787037882615229,11.96532058722984,2.0500641319401836 +1442,1.1527809829145232,13.34086609222942,11.231826746727709,2.816011056419633 +1443,1.1498206568001772,15.732918835504787,11.488572558767192,2.484673666584845 +1444,1.1523741769978133,13.181748742706297,11.984311058902314,2.9398415629638 +1445,1.1487258031402736,15.96151447337344,11.940843465007605,5.509428729707107 +1446,1.1555388968131786,14.57370229127991,11.87520927342548,2.6979649359341424 +1447,1.1577223829891448,9.525485601271992,10.976374664394879,3.6727388172502042 +1448,1.1594440281890221,14.193867730121394,11.608326214521572,2.976872096022292 +1449,1.1569970079419831,16.04974120838558,11.982810285346325,3.140892080464768 +1450,1.1604876107188729,16.863407634196918,12.159168509504218,6.060338727732494 +1451,1.1639163658202656,15.79986572979118,12.341033186538336,2.4460527992274077 +1452,1.1696315653315061,15.336028290180295,11.241614013761836,2.5361744220336524 +1453,1.1662494839414506,14.97819115049706,12.413991723380676,4.39840450935549 +1454,1.1690350722959273,13.881047728564914,13.109307672726551,3.1612600552442176 +1455,1.1760638605833316,16.362471634030666,11.540257359779973,3.840545687137277 +1456,1.1762260826835222,15.516306953879296,11.405611484175314,3.692380949444974 +1457,1.1755817999445703,17.086734001584713,11.4923093642775,4.881501582534085 +1458,1.1808206522606948,14.481719156585545,12.908407304460633,3.442875164050522 +1459,1.1767095861561694,16.661200433005646,12.764423490614696,3.257497582177045 +1460,1.1824122255803315,14.757437009141261,11.023738736073211,4.053857674981159 +1461,1.177778164771111,15.570013202551362,11.985685676056459,3.571546238019847 +1462,1.1756695992961161,13.941758280147384,11.707695224401515,3.1358929096489745 +1463,1.1908501431992244,17.412801115796167,11.966553633360592,3.474109371434979 +1500,1.1538134915652287,19.929404830977326,11.252854025143757,4.268854702182977 +1501,1.1397221895402438,20.35921907060514,11.905019651679895,2.72815108765797 +1502,1.1387608734316348,21.96458617719851,12.043759357978734,1.590507234699898 +1503,1.1442917418407081,20.030098728153174,11.246887233671954,1.7113820956382542 +1504,1.1388917524122395,21.226776107081776,11.486828105851519,3.575595826485129 +1505,1.1471516104208086,20.013885335071354,10.818627098804845,1.459537061201556 +1506,1.1440759410254446,21.2612970060556,11.28391439609908,1.5087782030302834 +1507,1.1396750019715183,23.14691450448039,11.158671194791246,1.3403452904832658 +1508,1.1427063129573367,20.748362179038214,11.422598348916937,3.1457598941194918 +1509,1.137602835638389,24.363565322597513,12.462876687338259,1.5570867672558848 +1510,1.1351226570895419,21.71341062473699,12.130272398071174,2.3630879304499537 +1511,1.1353305213973008,24.19697486013551,11.727773144175655,1.3867635928603217 +1512,1.1431580603431837,19.765777336681662,10.99648057674253,1.539782694567821 +1513,1.1361726346651475,21.24631219480443,11.780647777343917,1.3338920122571614 +1514,1.1339813678542738,25.19007702724377,12.132001059347699,1.9004974003622332 +1515,1.1362297242321948,14.493709869604876,10.41971203741815,1.5129257600418873 +1516,1.1335045139866446,21.52700852008841,11.576067036595637,2.5282438496614685 +1517,1.1355720108433625,23.984832306015885,11.676501247791666,5.132187352077976 +1518,1.1372903147452424,21.781472658460665,11.450743908294431,1.8076650680638124 +1519,1.1354167193336073,24.71063866175835,12.11680871895106,2.5985929171166773 +1520,1.137264302205655,23.296439328906775,11.553439297853858,2.9732950430890974 +1521,1.140025633229025,20.386217570427352,11.266605689246392,2.9552295207649526 +1522,1.1415352199054185,23.10039171610533,11.49692902025993,1.9810463118901733 +1523,1.1445327088174255,24.66143545726849,11.836950399866167,1.8598203541279725 +1524,1.1421475495373494,23.701938817758876,11.30460308320715,6.91416285601454 +1525,1.14387620387894,24.762223556323626,11.931153031489037,2.9975425145588175 +1526,1.1517196699102616,24.87119441236592,11.679584852654434,2.2655820927769317 +1527,1.1509396920697335,25.09396330000346,11.271432274184962,2.452405307487175 +1528,1.1516718375314565,23.365889225973426,11.273602025599919,2.2861982333468718 +1529,1.148593936697733,23.55426233939552,11.114622071178044,3.799729658779731 +1530,1.1508563618299024,23.93243204385709,12.107911176992467,1.9177120789721704 +1533,1.1506009072692087,19.392199663764913,10.901261823087426,3.3199947372639707 +1534,1.1504075220272312,19.06419752296306,10.893872780995322,2.2131481506185082 +1535,1.1464035662903456,20.10111123564411,10.835743608004096,4.950932688212988 +1536,1.1462880304102578,19.459857230463257,11.918090772948686,1.9158842577712558 +1537,1.1464608112540042,19.713186585261052,10.872094920984969,3.4124419666904813 +1538,1.1503916223614015,19.880737132709804,10.332371323863555,1.9893499211497037 +1539,1.1459014653334652,20.839363025961518,11.504653277180719,4.235718489861037 +1540,1.1464023373702787,18.59412208793159,11.160085036524569,2.374042032140352 +1541,1.1420186904948877,19.725794879862956,11.430063021637855,3.1488707545351913 +1542,1.144287792686851,18.299442610848935,10.770505894571164,1.8280019671155796 +1543,1.1418129272698379,20.27788136222048,11.372602110744836,2.5580175921926664 +1544,1.139879748671762,18.37829932534544,11.626079526357387,1.9942313860716683 +1545,1.1399956662854676,21.017322490852838,11.232034680696056,5.6155822899997405 +1546,1.1435036623661234,19.631721891601245,11.493544314174413,3.3299819541189 +1547,1.1480466221984018,14.304329648017328,10.331149385460582,2.569675716712774 +1548,1.1453350341197832,18.95756769453311,11.413024220931659,3.0589296170883755 +1549,1.1466629286511276,20.14502609301477,11.608107706078897,2.45431267142407 +1550,1.1439956044740376,21.679996178850182,12.083039340163854,4.495892028665859 +1551,1.1490052738270309,20.34866232456804,12.036256384335019,2.9063434543133977 +1552,1.1557958251157725,19.30476398720547,11.41733535204434,2.8649453348070795 +1553,1.1516929785240586,20.248725884261276,12.014941032415976,3.0551177217526955 +1554,1.1578967702723086,17.957886502784692,12.192274309003238,4.247009359546508 +1555,1.1623360836776888,21.187413725582896,11.271195342709868,3.356999778482556 +1556,1.165017325638318,19.735686353061805,10.892124478707972,3.9073675334699782 +1557,1.164897175712042,21.37066010985893,11.066499950026591,3.8576375884055447 +1558,1.1646626270264027,19.602779593226717,12.737197453386397,2.9432460923178643 +1559,1.1620389927972317,21.604914816994356,12.833200517226592,2.9491253566304074 +1560,1.168698926184214,19.78013131172737,10.306546353369217,3.615380731759916 +1561,1.163004379780624,20.79959460955555,11.710827955836475,3.7230303662743998 +1562,1.1633687738740661,19.30499058302346,11.458746526584111,3.3321496479082873 +1563,1.1809809661772042,22.58972774869685,11.836169511660877,2.8424962578357325 +1600,1.1597664555061569,14.507988335430277,11.01155846305305,4.7290306964430355 +1601,1.1465372616882414,15.344349674553456,11.545907141943108,2.8629548981034922 +1602,1.1478141750391024,16.837333561929203,12.715897769101492,1.78806914164545 +1603,1.1545791437127662,14.897046512911901,11.611347092964689,1.456630619785627 +1604,1.147512056395036,16.593801015025935,11.966954310824958,4.782789463079005 +1605,1.1547615638548552,15.40893666365184,11.21260072220861,1.5666318285972283 +1606,1.1496735592038179,16.823947853596366,11.635449093152308,1.3688996072818056 +1607,1.1488544517959838,17.686540413337188,11.983168748959683,1.6061666541277368 +1608,1.1517266329955604,15.787856514615214,12.169082408973287,2.8279970729313533 +1609,1.1466899971145954,19.7857861644174,12.514286086031305,1.622833378089827 +1610,1.144663754066749,16.77425234451027,12.607030825453196,2.256271415655403 +1611,1.1441652827571445,19.213630469414838,12.180629791652736,1.1833123852879928 +1612,1.149393040907709,14.886442248695657,11.708668382976303,1.7900669009710273 +1613,1.1434146425199054,16.750964378726774,11.845998970528898,1.3684632331406164 +1614,1.1423007318093246,20.397367378999938,12.02996160133551,1.681095250192133 +1615,1.1467177708229859,9.63669448627007,10.794044662215668,2.1069413919876494 +1616,1.1416960144326833,16.509808991295895,11.705194901161354,2.6506350628888304 +1617,1.1427069793017461,19.699800675233494,11.896341773537184,5.587713450262866 +1618,1.1470291042204017,16.698283806469284,11.607026069885933,1.7400210725088239 +1619,1.146407881798489,19.706352160316104,12.762188690555412,2.921751609718347 +1620,1.1472206098556088,18.36344090367817,12.033495873412585,2.6200305434783404 +1621,1.1500678422891575,15.214905731411797,11.6065558485961,2.628667477576778 +1622,1.1532698973344284,18.256679407034973,11.866886663684436,1.2171543372878852 +1623,1.153372958563672,19.88701204122319,12.624970841048912,1.810683440433757 +1624,1.153657954290164,19.175123577286435,12.14183333860577,6.927513518245668 +1625,1.1558256431525755,19.85930319023812,12.32716800170328,2.757948351317574 +1626,1.1630902566298145,20.212752747818513,12.077390176072536,1.976310228909874 +1627,1.1608334485228027,20.445770742354448,11.972055817682591,1.9896413676995566 +1628,1.1626086060156018,19.182684635857928,11.500802530395035,2.5332729098763878 +1629,1.1587642574904506,19.148207929131136,11.953617299296297,3.7525425349345762 +1630,1.1614410492159384,19.93680164263627,12.438442499684095,2.364558328779542 +1633,1.1614717371405745,14.674066857091733,11.231205905093285,5.952464436775658 +1634,1.161675663546088,14.872605780106829,11.191466699353581,2.0946653134217517 +1635,1.1562142233050172,15.589792076179188,11.53778495570608,6.910580016124587 +1636,1.158121932308974,15.098735232782078,12.604058786126869,2.6079118168855726 +1637,1.1569083738354726,15.15969728852861,11.114188154222543,4.696222230514323 +1638,1.1598556270656437,15.175538029463103,10.637777113878776,2.4015218182233515 +1639,1.156704355543502,16.33279831293823,11.418556110390053,3.9762205513942286 +1640,1.1560519840684769,14.48771149263958,11.2660721198101,2.224561771543071 +1641,1.1486033205284862,15.436479214253291,12.245503032166457,2.1969707144134727 +1642,1.1563097000768363,13.695757735684182,10.931848677664984,2.9622628518897534 +1643,1.1509745930853175,16.03831764389661,11.355547126313375,2.420910917090344 +1644,1.150630381582576,13.545536858821446,11.930011039200302,1.895978833767158 +1645,1.1472585473299421,16.63047428522878,11.886395394501001,7.8342099341420015 +1646,1.1507502031504722,15.160544943900893,12.081328863847267,2.566027806464346 +1647,1.1555820611601488,9.914981315753842,10.775242969314213,2.218468556595852 +1648,1.1535474518746187,14.589752169105143,11.629107540605515,3.1157527737219497 +1649,1.1542075910671232,16.32218522920703,11.86334000472755,3.014337909028685 +1650,1.1543034167683404,17.0476975540492,11.711060762082372,4.9466050520379765 +1651,1.1585048083527245,16.05244115209296,12.24544003564531,2.774921450546068 +1652,1.1678990015900526,14.590787685585424,11.481934591831406,3.4114825646524944 +1653,1.163269973542146,15.602212774829006,12.53746101432991,3.2244320133949764 +1654,1.1662412226123204,13.888667441503506,12.6677392779487,2.803063778398431 +1655,1.173723696903244,16.851991670017696,11.495946480392456,3.8985440760719405 +1656,1.1734774517216677,15.289769150085267,11.692123663703114,4.155161900895622 +1657,1.174406968565165,17.2910236279088,11.530487040780873,3.3969035665174716 +1658,1.1775537538310714,15.028044535985828,12.587519469911033,3.973067099547577 +1659,1.1765007264950267,16.51613059005762,12.48193483327409,3.214724828057653 +1660,1.1792060706792702,15.46287536859605,11.164336814348742,4.218282747634329 +1661,1.174646362411143,15.7093984569877,12.526211513301776,3.1631475640706332 +1662,1.1742986035662772,14.27176766276033,11.784221469500723,3.777543141568272 +1663,1.1866588428350684,18.178654701386385,11.824352661655535,3.85320281857806 +1700,1.1640812057456968,14.642539287902267,11.191707635833767,4.814493586054703 +1701,1.1514825473033201,15.36656996899999,11.972945352653396,3.584365902559394 +1702,1.1513920363842851,17.462420612341038,12.360765772642399,1.5004274724872697 +1703,1.1566052288025368,15.407269164343273,11.651603239350619,1.7047010840341457 +1704,1.1518749692294579,16.86273375088452,11.971878631691219,4.967860846818728 +1705,1.1568293236984015,15.441774886660124,11.67733699292079,2.2511262533996983 +1706,1.1540629754760077,17.16866162601245,11.885559643311815,1.8380045686245023 +1707,1.1543166812983967,18.060922252256407,11.930265746743105,1.6576770218942614 +1708,1.1560700133555557,16.14737412529599,11.859488731403989,2.841323895859163 +1709,1.147804488879113,20.286413976399334,12.696468241711685,1.3672058784089542 +1710,1.1501484485116076,16.818396138961553,12.60502336974182,2.039095748693844 +1711,1.1486927906715074,19.87235852894018,12.194003319058318,1.569879280073774 +1712,1.1529283777481572,15.34394030169253,11.651651206325267,1.1770155568906622 +1713,1.1484180918834603,16.86918959635828,12.233157324408488,1.4985636930726645 +1714,1.1472907922486502,20.827610869002687,12.088426966571927,2.468360792210399 +1715,1.1474110786566696,10.24578590308152,11.085924187833207,2.5008727726199105 +1716,1.1478673601235216,16.9131445531601,11.919930590066086,2.4135252288961007 +1717,1.1447296401509612,19.952953624271018,12.17653633224273,7.119595145053148 +1718,1.1489686841458189,17.640382014937824,11.397632277072647,1.0264605792109267 +1719,1.1521003434751618,20.717923838547517,12.117767897969749,1.9670974789494753 +1720,1.151383727499834,19.068427315703328,12.021802566151317,3.491896027751357 +1721,1.1543839674374607,15.797686175995977,11.558636895705861,2.201431222782736 +1722,1.1576129196488139,18.841763203270073,11.765940784664108,1.601893071139782 +1723,1.15960857371168,20.287307737605964,12.538020697749399,2.3070116566110914 +1724,1.1567033497979942,19.647013854916,12.162743262367965,9.151464487750701 +1725,1.1620691979068325,20.20067952890038,12.528177141770522,3.12294111288306 +1726,1.1662613359657201,20.98063694354387,12.296754708195875,1.9154698587394396 +1727,1.1689382947883402,20.88595854089525,11.73076016976243,2.284041218213051 +1728,1.16570739510195,19.604893460755687,11.917557583261429,2.1897751039270434 +1729,1.1662184857056748,19.74332337910761,11.827093856447432,3.9789047286642547 +1730,1.1675302351057584,20.189733509321083,12.227129031212595,1.7239139330810114 +1733,1.1664475433912453,15.541003640149553,11.637583312127077,5.113193464711862 +1734,1.1687674468050344,15.284055473454208,11.205723362605173,2.4640317943362557 +1735,1.1619021502620077,16.4340913652053,11.82341554807796,6.169416907010249 +1736,1.1642909462432192,15.23449587831326,12.29126906094832,2.2441175782169345 +1737,1.164212702646799,15.537368179984538,11.323561416012593,3.94887862137265 +1738,1.1663892339250896,15.787477300310924,10.94804181476247,2.6178933962449333 +1739,1.1604079396957416,16.981040429330772,11.772565740947961,3.381294088829155 +1740,1.1619736108379666,14.765515283445625,11.718104359955516,3.0533502027408437 +1741,1.1573540791300154,15.970540396312611,11.68634981577496,2.460997159703402 +1742,1.158505581712263,14.397814784384407,11.288097673644101,2.464527825137141 +1743,1.1553182076544741,16.014438190137636,11.339904510640404,2.1388792080795307 +1744,1.1532692989130688,14.515421477390401,11.998717404917084,1.1487778384258336 +1745,1.1505313625503688,16.785083225082587,11.58850403030029,7.285810117426748 +1746,1.154881234298992,15.64979425632218,11.937914362537379,2.0274064053894194 +1747,1.1557738628731722,10.411417964002455,10.81269986588593,3.0871986455694334 +1748,1.1556341702246458,15.154027541589539,11.892567089419307,3.011175101134846 +1749,1.1573664414762612,15.912488184585442,12.058083187892,2.6830568259404264 +1750,1.157522855373522,17.50297252998116,12.113907056969776,5.797706254266562 +1751,1.1599657997605235,16.709249450346363,12.759506321454474,2.3508170182035824 +1752,1.1685806043975349,15.311267655289743,11.116563982976842,2.778405495697433 +1753,1.1656674382651762,16.03407771698027,12.573079037329709,2.888239960558261 +1754,1.1698973814435816,13.978861894196324,12.630895103955526,3.3183859827618534 +1755,1.175236575635143,17.211418213347294,11.682652412677461,2.547350943569255 +1756,1.177905588614839,15.756141829986918,11.388880644614817,3.8109599622523787 +1757,1.1776500740375397,17.632146598219176,11.520132674342685,3.4229349683091455 +1758,1.1778548056462557,15.701819195674927,12.94358399763388,3.2162737582008436 +1759,1.1794024332146822,17.428174896003572,12.713418536192956,3.166618806864148 +1760,1.1869102151909348,15.930888717879169,11.377361611140373,5.423169460461511 +1761,1.1764637463257923,16.858694495721682,12.384989152325012,3.6416509773159302 +1762,1.1755805425623704,15.163503692239066,11.96232960103913,3.5052917669691808 +1763,1.1867843851507829,18.87878612953041,12.157666937813186,4.635628595487342 +1800,1.163871326635814,17.591912299319834,11.146006521731861,4.440443761640403 +1801,1.1522925066764178,18.11251964436674,11.961621307929727,2.9241007553522853 +1802,1.1510073047871965,20.182742392383066,12.642628458858672,1.4317233436437278 +1803,1.159058153770644,18.733203639457397,11.920167640986893,1.5709372683967704 +1804,1.1505777722918242,19.864630328868856,12.284652430314528,5.092862440108096 +1805,1.1568170062492482,18.90223614383781,11.812954074474243,1.6058681978204863 +1806,1.1550290144755295,19.877115705297857,11.886166605834562,1.2666756611222796 +1807,1.153703889946487,21.35855011198215,11.918995909066536,1.737411942715279 +1808,1.1557448683905143,19.317342491094408,11.961878137581206,2.926072319450677 +1809,1.149720551470098,22.912687397157242,12.688350863409637,1.4870133714800444 +1810,1.1499654676391895,19.963772419155692,12.279816256388012,2.265280700831145 +1811,1.148063164667466,22.839195557757662,12.115102849290652,1.273506474638491 +1812,1.1544558118700554,18.36192968933958,11.818307304538465,1.4313249045771468 +1813,1.1491576909779628,19.763710635553892,12.238039261391267,1.5972057128129302 +1814,1.1487602614297274,23.96473950227781,12.310145073124179,1.8494472677034075 +1815,1.15105221173994,13.250863749327499,10.716058351857354,1.9116550106496155 +1816,1.1466740503610449,19.976790173550125,12.206970769330045,3.098407085504075 +1817,1.148738328823309,22.762061188776265,12.123884381267958,7.284779039710516 +1818,1.149244082031386,20.410633742148153,11.864417179180444,1.6280783339687273 +1819,1.1534250803665613,23.25099843423585,11.934309316713469,2.3759476762410694 +1820,1.153692934345364,21.918164769763482,12.235971241173067,2.9254242338749257 +1821,1.1560267326888007,18.679198679473654,11.771806522474858,2.956066339655485 +1822,1.1596248115007333,21.434536930843688,11.927527448811436,2.56344110656991 +1823,1.1600251403100188,23.32236088681696,12.496471741946499,1.5853681532302695 +1824,1.159386217458016,22.651149707404734,11.963209853969854,9.089151046334976 +1825,1.1629834770997212,23.692474959648308,12.267171194404767,4.128986127830652 +1826,1.1690608721006073,24.022579298537952,12.209700705071892,2.161154921313166 +1827,1.1708704522146116,23.77579368291607,12.082326363030749,2.1168972543503366 +1828,1.1707264713527412,22.561287610611945,12.222765960239864,2.573891352212408 +1829,1.1682244739812315,22.50223027979233,12.089487543827467,3.6514373724913955 +1830,1.169911810501966,23.342286350743667,12.362065445529689,2.0034103250878608 +1833,1.1703024774634876,18.851695418108893,11.130584156750126,5.413268988027208 +1834,1.1712417356057439,18.64105777531585,11.463106301715783,2.6196882061968116 +1835,1.1654360640122392,19.428402530462716,12.085212150864855,5.853553837672817 +1836,1.1654994149852513,18.429513431327177,13.038112360547453,2.715242087380238 +1837,1.1680373039024454,18.438152985516393,11.316905104177275,3.710747739406919 +1838,1.1697159073019663,18.413652614697718,10.660595506286592,2.276267149921278 +1839,1.1646952232907724,20.149778850541903,11.605017525081731,4.925009958307183 +1840,1.1638524363757472,17.668975314287955,11.825951407246516,2.3138201906763762 +1841,1.1578576173115671,18.979747482980514,12.170092595767983,1.9874392950245192 +1842,1.1600963106882953,17.132960218576503,11.170560829709157,2.8389127345228387 +1843,1.1570671526086431,18.82770694629197,11.8110035495955,2.1324886911953405 +1844,1.1516228743066093,17.38216954786185,12.281409686236946,1.6773421650092932 +1845,1.1514447648109196,20.073014907157184,11.424062473190505,7.309905845270901 +1846,1.1542116300635172,18.492142620602717,11.864363240753411,2.3823863539255448 +1847,1.1567272881511388,13.492423579343596,11.058096420985683,2.968851323867117 +1848,1.1563655381195488,17.935494849348462,11.838336886594213,2.5361030354205076 +1849,1.1562000262369054,19.233659163879565,12.380999264884375,3.074201874448726 +1850,1.15634558299211,20.29644592556815,11.960816846373207,7.144672946479405 +1851,1.162054306987377,19.311981596755096,12.088190341926168,1.9707464392674037 +1852,1.1654611767013794,18.54422240169716,11.741425098986829,3.081881865238431 +1853,1.1627699323133405,18.812330282569317,12.77577809551027,3.3267341584816155 +1854,1.1675940181876059,17.510836218077195,12.809830412989045,3.0902864746345613 +1855,1.1753778680143299,20.02787024468727,11.981730511833423,3.37463979919625 +1856,1.176354135484583,18.63315488498456,11.574233909554112,3.505271126907845 +1857,1.1783004143016202,20.38791845956082,11.790701007612281,3.168974739273016 +1858,1.1779840301887643,18.40503202972467,13.058699464067717,3.3366268755833435 +1859,1.1770206525075275,20.32505088992907,13.27837615765228,2.9158262551921803 +1860,1.183003651348178,18.724051617068888,11.384555644905802,4.1347404389273175 +1861,1.1785147457636047,19.485990981947833,12.130664510740683,3.5325922884888237 +1862,1.1775476850260944,17.353056203076328,11.911065226598245,3.8680684515000716 +1863,1.1927991406171221,20.467128999716586,12.073254743447139,3.95965085811443 +1900,1.1624481705897314,14.756682476903604,11.254805336450044,4.373771214139916 +1901,1.150656390488217,15.66900210653755,11.712981456661211,2.6708120201202905 +1902,1.1510483308519082,17.18563483337419,12.877121718021526,2.1700235481974435 +1903,1.1564934587192035,15.765273730350067,11.638907075893977,1.460340555216197 +1904,1.1502595201233925,17.28634519220332,12.02230714687359,5.036745006590518 +1905,1.1552533348877956,15.895970186376942,11.344596167903099,1.3540331434279582 +1906,1.1535042195217633,17.118054378023768,11.580337120265952,1.257250737813866 +1907,1.1509267248822548,18.505787749763527,11.881616211179647,1.6945119487803952 +1908,1.1555952716063007,16.16351413564242,11.89564948088819,2.8000966817723594 +1909,1.1475663998691905,20.507492930327523,12.845002092090805,2.091227415720634 +1910,1.1489230533218164,17.23495639419028,12.128164516460364,2.024416621239395 +1911,1.14634570763577,20.23044867567748,12.195712208011765,1.3650787010954195 +1912,1.1530955936819416,15.768218965997695,11.762153497084254,1.571366751165454 +1913,1.1485438992164068,17.01762217097282,12.193364690110323,1.792402172905739 +1914,1.1483457421707315,20.931360054385586,12.388738963601817,1.9892278354866473 +1915,1.1507475743977118,10.357487501246213,11.112674241386507,2.317193207416373 +1916,1.1491040455069543,17.20409735031436,12.008228906947728,3.2578248209530707 +1917,1.1489478806415623,20.073939907470894,11.884812465563517,8.14773412286722 +1918,1.150318597790162,17.94113837892033,11.246774296858632,1.5476917933197907 +1919,1.1518020540080363,21.00328825158279,12.345143881268076,2.804401064808667 +1920,1.1558852481692807,19.01524764998977,12.086756477954381,2.0777878308051796 +1921,1.1567030898296906,16.030875516164684,11.574820269342988,2.9429685297980117 +1922,1.1605549372603556,18.956912608610672,11.68577016292715,1.5147975840452117 +1923,1.1616459422448686,20.7926147946969,12.388373116501176,1.908085590997501 +1924,1.160525147271614,20.227545399321553,12.36611660599606,6.996841257234932 +1925,1.1652472170384944,20.754496839403902,12.129065828053875,3.2124549782700327 +1926,1.1712281583201978,21.434931368233556,12.017336311460776,1.7636275177490137 +1927,1.170074847698002,21.277980180395716,11.56366826221832,2.25659758752101 +1928,1.1711751746770205,19.960300588095404,12.025271222492274,2.2880640243421015 +1929,1.1691415993678032,19.88296405881421,11.960195257100107,4.512225392216125 +1930,1.1742074904785036,20.53704252457801,12.151595997260445,2.3822097509569424 +1933,1.1697608180909016,15.997449651462674,11.463598580419513,5.462073120259288 +1934,1.171251987598338,15.331201707661046,11.476935730703108,2.3785019762276822 +1935,1.1669118490178372,16.69207645747279,11.292212271988072,5.123339540107223 +1936,1.166236896526211,16.237038671842758,12.325684181696047,2.187760041582537 +1937,1.1679804699227005,15.594841656625379,11.352964632466065,3.4962977158800577 +1938,1.1695572733554036,15.493415481123561,10.837843338217374,2.673399350412779 +1939,1.1645654891884052,17.4284008129711,11.615992437947108,3.82426240931213 +1940,1.162885330321458,15.149608385953563,11.925453264251171,2.812803401541471 +1941,1.1583063285187603,16.300422682846396,11.877347883725685,2.005600954868889 +1942,1.161672514457666,14.175463376691152,11.04413037072002,1.9803478580013114 +1943,1.1566110121128936,16.47506090233587,11.33207082617499,2.0391150487703626 +1944,1.1547102457482021,14.615893841251205,12.021733121458691,2.0587585879367802 +1945,1.1521698745729392,17.05138819219261,11.955357985896953,7.098303736448317 +1946,1.155328218259638,15.739763178085443,11.797990356741463,2.6741188192109155 +1947,1.1582281105800687,10.590459742835163,10.785190872985815,2.507988206885164 +1948,1.1545727945742212,15.420004495006799,11.728359010561421,3.3943903105881925 +1949,1.1560487508566104,16.34017739294673,11.924622208799844,2.8396635942937554 +1950,1.157690621370099,17.48495331279125,11.792077153421758,5.446388291984023 +1951,1.1577314306245245,16.93237337240272,12.373640407048672,1.9995942706163827 +1952,1.1643479584355505,15.4354106799358,11.114610420566255,2.7023309300544476 +1953,1.1625761879298835,15.82386007932747,12.722248650556057,3.6549152783620773 +1954,1.1654278560113303,14.15052883542692,12.488572274603332,2.5635736226214973 +1955,1.1725189480749088,17.10247129162125,11.815951811153342,3.2117055294910393 +1956,1.172076934592444,16.354065335698063,11.26749610840943,3.7082574386814016 +1957,1.1741249848139361,17.348781090777866,11.32015700282801,3.2783258968835622 +1958,1.178298706462079,15.19525010432181,12.810003906832026,3.962522917175885 +1959,1.1751702229658685,17.33723887165604,12.927996653023571,2.940056275862008 +1960,1.181092725300464,15.885426843323248,10.955108241740174,3.5612372758771196 +1961,1.1762721214180294,16.859552079749168,11.883494254373499,3.4621072390764813 +1962,1.1766680015929802,14.31579363891908,11.958492833638688,3.288270603497132 +1963,1.1925796640673154,17.40619053987005,12.311570435854101,3.6470815702774146 +2000,1.1538599704960244,12.712339779178775,11.43275340479659,4.6722923673245695 +2001,1.1427836289218376,13.326877432641416,11.587553657675095,2.667810722875142 +2002,1.1412195919805825,14.948514632727173,12.47502090177768,2.1108715678180707 +2003,1.148325334207346,12.919286165899333,11.46773157837916,1.732840144081489 +2004,1.1414528799493546,14.5434244649664,11.796328531904438,3.2514695908153035 +2005,1.1487918120303102,13.173582708818971,10.959064395654208,1.0028324814380107 +2006,1.144486811740933,14.743489417657226,11.514371691407634,1.579325363936414 +2007,1.1444844608694973,15.602994528350232,11.547578149882524,1.6624755586441053 +2008,1.1467331329482477,13.461277441474968,11.87024063146506,2.83288098682538 +2009,1.1410301891476178,17.42335059123272,12.533968763505113,1.2198269298512991 +2010,1.1412755411711182,14.552121175356131,12.105215991930546,1.6082455117851333 +2011,1.1411160589446079,16.660445364333558,11.87972270547987,1.17820154126025 +2012,1.1458877241777607,12.834154875494104,11.356615175353383,1.5191150014430135 +2013,1.140268125710381,14.062002115209246,12.025444466806785,1.7331452332454698 +2014,1.1376255321202655,18.020035018726194,12.425433046643569,1.7093507361139746 +2015,1.1427179115953705,7.89510139135983,10.593343310745524,2.1913014838791227 +2016,1.1418320390561398,14.42692665542065,11.579767920091566,2.6378340042001165 +2017,1.1400220890391735,17.789985595995606,11.89637493106815,7.345636166819894 +2018,1.1464597572649584,14.652469303959576,11.497308514070335,2.002147669471711 +2019,1.1489424785209308,17.593173905197567,11.73298144810815,2.7077671897160314 +2020,1.150470192830293,16.255902466289108,11.754571318444583,2.5738572664421486 +2021,1.15142086803928,13.469744177650952,11.20739953757468,2.169009905700328 +2022,1.155012615571956,15.937909141405187,11.650734594835058,1.6365994796059056 +2023,1.1560893417215115,17.592613888499034,12.245771983774828,2.0505944056862795 +2024,1.1542818623666515,17.042016733126836,11.873733250951853,7.061154071887049 +2025,1.1589080210389027,18.05833748834213,12.242143110758038,3.031865340703932 +2026,1.1653752809752957,18.500536947674473,12.13930739729611,2.067562988936729 +2027,1.1681285656593805,18.245495058043563,12.04560912037955,2.4421173542817876 +2028,1.165342699290027,16.94273390002427,11.895955971503454,2.6916305209500675 +2029,1.163586505234147,17.336935342384884,11.610261568367813,4.507501077837147 +2030,1.1663965985619567,17.758737956499782,12.264661133498313,3.4769203653882155 +2033,1.16693103734792,13.214731269305718,11.180922773272401,4.270278037227758 +2034,1.1652870679069285,13.056368269185118,11.0471279723167,2.6431632692368567 +2035,1.1617825696782678,13.836664966816741,11.514464120609693,5.331911439210927 +2036,1.1605723334073137,12.926197792628138,12.613039457899236,2.0500793447407637 +2037,1.1610184504494319,13.159267521346887,11.133226733071242,4.386651427376954 +2038,1.1628857132168942,13.212195917623903,10.697932827285118,3.6221138706483296 +2039,1.1569795105885592,14.453923516749096,11.518756066872788,4.093447039150154 +2040,1.1559788886163311,12.485287519379103,11.710889496859233,2.7962514310550084 +2041,1.1498462321990508,13.281730804218146,11.960816361642436,2.571139784098668 +2042,1.1542888085838268,11.58044571624695,11.081752678100662,2.4968383622743384 +2043,1.1487697244175155,13.92342060785685,11.512551482580085,2.170598133624096 +2044,1.1482143885977545,11.482294532167291,11.90246095031113,1.747065446222258 +2045,1.1435663953126065,14.278054834865944,11.440506783025166,7.142271041439673 +2046,1.1466509636762452,12.71659192924797,11.680327081852552,2.6358290966001285 +2047,1.1509522830324,7.315297335053618,10.779855803797675,2.9776500563512296 +2048,1.146429622715903,11.974849203171523,11.824860364929743,2.959386667036857 +2049,1.148304244546856,13.868276665548395,12.174411388696063,2.5739449030057386 +2050,1.1468268141025093,14.788191388010686,11.532544813578015,5.830405128031281 +2051,1.1515697339321609,13.485988758971905,12.057318146594978,2.2140301880448097 +2052,1.1563724586356312,11.996763588728292,11.285564826250628,2.4526919094050097 +2053,1.152578068873802,13.321738835486675,12.418913117858448,3.904985716081277 +2054,1.1565977317374496,10.935939116374858,12.608772458515913,2.6411190801191813 +2055,1.1613148053970785,13.78385895079619,11.51376544263711,3.3596105503354385 +2056,1.1633306024564616,12.828698674210829,11.709422407882974,4.28277043104518 +2057,1.1636929773772702,14.492715048213233,11.228405158835681,3.723729718679653 +2058,1.165800401404663,12.42576938655608,12.92875962373676,3.029288599719326 +2059,1.1649166718473196,14.048132714634344,13.019085477005234,3.1372377122498563 +2060,1.1720547607728589,12.263888662198214,10.808205493775883,3.635534557292712 +2061,1.1643089282588641,13.825555461471195,12.12686202432912,3.0565647235911064 +2062,1.1656589589897535,11.929389348830806,11.925366430690369,3.4776324682180246 +2063,1.1811740284556111,15.735512400816525,11.980455869065782,3.3008121331786096 +2100,1.1557008116879328,13.812688693503073,11.396022564221425,4.559116335351131 +2101,1.1423552772212364,13.994765044433695,11.865148124599072,2.483463511708102 +2102,1.1416456727210738,15.98896927616662,12.28175425858977,1.8078780070126799 +2103,1.1484147693837665,13.890434500258594,11.564407742437506,2.3876365576310112 +2104,1.14414261452338,15.3326212330537,11.56223238245892,3.7775085287094075 +2105,1.1484986777737085,14.50938953136143,10.984257375029895,2.200320188420901 +2106,1.1442901734089237,15.784802802033433,11.371134350985969,1.6371235929943817 +2107,1.143561755146742,16.88962814113861,11.390266933486444,1.7201789846247086 +2108,1.1459867940589714,14.434523869557726,11.963124676311535,3.2801817098987414 +2109,1.1414585907177297,18.378468469899556,12.416227213769135,1.8130071574282158 +2110,1.1416024214153406,15.239735198029491,12.147845767830274,1.9602212213535146 +2111,1.1406921746437182,18.148483524456726,11.892287254934555,1.6368351544390305 +2112,1.1462946636286158,13.857764466439768,11.308780934839668,1.6393700876940371 +2113,1.1430847139470726,14.89432545237372,11.65624617576645,1.2556789285895873 +2114,1.1403897596549204,19.358275491352135,11.88203797292965,1.6063657701927134 +2115,1.1440911697458025,8.598367738020707,10.708404632215716,1.5942429792391724 +2116,1.143401074871193,15.709165739724924,11.756265497213066,2.1245655246830863 +2117,1.1445427884596882,18.055337750590592,11.506501897381446,5.309067999380686 +2118,1.1453115457591474,16.156448175171388,11.027871159846113,1.7654581766994992 +2119,1.1511683587348815,18.836179787243626,11.89320391655006,3.536300593868195 +2120,1.1500657543458288,17.427730461656328,12.092821115494175,3.121851858001685 +2121,1.1523306301077523,14.778412123556585,11.35911941699194,2.849908800403747 +2122,1.1562573901686424,17.173294797004733,11.689182590357134,1.8525855308770096 +2123,1.1576824339127054,18.90442648655775,12.165435965316332,2.5815976293139604 +2124,1.1558948993863722,18.16283708686308,11.780907760345157,6.41232629262608 +2125,1.160819436247633,19.138868441400053,12.012143914525824,3.1430637235175247 +2126,1.1673587278632411,19.663018622940694,11.72121400797726,2.481452287389514 +2127,1.169190972841243,18.891415727164713,11.424263959143046,3.1576249866346706 +2128,1.1678818446207893,18.12471817941871,11.487835338575486,2.7876133529930893 +2129,1.1651895786132118,17.903598558891392,11.760286037646793,3.1808106979708812 +2130,1.1678388789390246,18.906884348290443,12.13883998018573,2.3877001026827074 +2133,1.1673451605556249,14.245807377095176,10.987130374150112,5.628012673381368 +2134,1.1673520013578569,13.925819951808528,10.984506006810292,3.5082488969936008 +2135,1.1619556800365984,15.153700785326429,11.51579373350067,5.61363829441454 +2136,1.1613954112675429,14.161895581309473,12.116975261404377,2.5232394713712676 +2137,1.1614183302347802,13.905209809253352,11.007696686483769,5.0549615219880755 +2138,1.1655114576780146,14.104469742290384,10.557334932083293,2.441024583112738 +2139,1.1602867938959105,15.430757664581908,11.83577643135825,3.913978372357407 +2140,1.1572236018022157,13.450201277446231,11.207510030336813,2.7035438191642553 +2141,1.151586525802399,14.474392757684472,11.541384180608151,2.7200589230224654 +2142,1.1551385431584653,12.831036895570465,10.828052935453456,3.0408100963439457 +2143,1.1508693033421162,14.881601521729282,11.131196901091418,2.8625094764920718 +2144,1.1498135801796097,12.546227449545118,11.773699813788056,2.3715285910234294 +2145,1.1452640554187277,15.045116990506454,11.709022618390302,5.590497641931926 +2146,1.1503907610416717,13.776328929673914,11.714202365182674,2.5714200946349193 +2147,1.1517413473037477,8.44285006617733,10.34369438932182,3.198079760223745 +2148,1.1472583724143892,13.357878385923891,11.50847848269618,2.502982485052761 +2149,1.1489857699219606,14.42912528500833,12.183349539862983,2.7888005087962875 +2150,1.145092651783241,15.932940219478045,11.831475754211063,5.671842432481512 +2151,1.148767505902335,14.711595467544656,12.304236048179872,2.5430294347327616 +2152,1.1549413974079683,13.679777319995665,11.010680404268978,2.9432126284810773 +2153,1.1535162312977991,13.645745195164363,12.418563212383797,3.4377488844773825 +2154,1.1536947409566076,12.002550448374109,12.417264831806142,2.4182291173863106 +2155,1.1625359292464188,14.532861453820669,11.557433453572829,2.5835172881725326 +2156,1.160725168395612,13.7804713413322,11.46068891507462,4.045898866820299 +2157,1.1621385112995135,15.061840579886361,11.292266354800493,3.4712793306625116 +2158,1.1639424756735406,13.01727058290631,12.724992682853035,3.282290627185855 +2159,1.1623465110639999,14.480574457784403,12.678282009079503,2.7650271260901302 +2160,1.1678473846036843,13.265537770177328,11.164544085348393,4.017181366284519 +2161,1.165932620377968,14.520336708809705,12.156277101418203,3.2883726878746367 +2162,1.1629700218043673,13.121950562138352,12.157944162898088,4.205777937800382 +2163,1.1776945289808056,17.26911630360487,12.49022403192712,3.2811321231246713 +2200,1.164363335204927,12.849056812111325,11.225585657899872,3.775577090858947 +2201,1.151469836464281,13.225521896827264,11.771861845497115,4.0822412905066585 +2202,1.150495227234884,15.3921623646253,12.408508128825725,1.296436283176229 +2203,1.1555798049367987,13.395494734973802,11.963613965040148,1.7854639002958155 +2204,1.1487424809210256,15.16206000316428,12.392420473666713,4.755814638828058 +2205,1.153511070310167,14.565040196963944,11.458144572919277,1.8046614635750753 +2206,1.1532829238341202,15.161637849134786,12.06930237498219,1.8631245379410377 +2207,1.1503848885995889,16.717784333861935,11.98431710526513,1.89239920255237 +2208,1.1541979916056346,14.408161825416684,12.082901543248864,2.8346237891744854 +2209,1.1488905171431747,18.147993069204436,12.649672403600297,1.4153507061544262 +2210,1.1476302921444008,15.34402763199295,12.633609991761922,1.6863017795553659 +2211,1.146240284169427,17.96493150864534,12.587468621715242,1.0688246571185203 +2212,1.1535358896148804,13.793520685930861,11.729464359639515,1.5484114962659181 +2213,1.1514288379837052,15.137568302467365,11.954957391435505,1.483103149837502 +2214,1.1496293251560104,19.080931479152728,12.020453979212219,2.2064915934014766 +2215,1.1524377204546756,8.737891170639024,10.569047219096538,2.079362489330407 +2216,1.1487062750615677,15.826241100981443,11.860827216430044,2.6472035498632245 +2217,1.1505022715506052,18.502878410944792,11.867332673669587,6.851433727922513 +2218,1.15582224712209,16.19595315891363,11.551426540920291,1.9213253278306208 +2219,1.1578501087189164,19.095873922107824,12.086909945184,2.869973902470107 +2220,1.1595283657057422,17.81262760995308,12.141375240895774,2.714409360397079 +2221,1.1619951314214447,14.435798398572945,11.72313629953364,2.501594303244142 +2222,1.1650551877527455,17.613268121296706,11.476389552014206,1.7487791496439054 +2223,1.1684461603685956,18.591658852490937,12.534380220596349,2.192446446782008 +2224,1.1643691905064861,18.30528171938254,12.044731969532833,8.319170974387326 +2225,1.1717802104721893,18.893250468747528,12.202186204788536,3.2527822885295112 +2226,1.1732948091187723,19.44467177729453,12.329345446970242,2.7518983934474073 +2227,1.1767530502200507,19.28575304840921,12.18953026665782,2.4406683707043575 +2228,1.1775050518738048,18.13470531392904,11.870960309264603,2.64615691916496 +2229,1.1739403980159404,18.039848715082325,11.881609670815994,3.588567010421599 +2230,1.1769441681510895,18.85953055810118,12.31584978491468,2.5308576659448105 +2233,1.1777017286099365,14.579087916079985,11.365278986216692,4.656807121560399 +2234,1.1775930350341652,14.48605777342723,11.461755855216476,2.5779556425870513 +2235,1.1716720383021946,15.062802786857198,12.009475233305452,6.089102005547884 +2236,1.1714304406718787,14.41823687260034,12.581757074897531,2.8181177403269446 +2237,1.172002612285972,14.491502864699319,11.482949815454013,3.891908210818157 +2238,1.1759750727709388,14.169235296599416,11.126496648938632,2.2558958578910326 +2239,1.1689603757426135,15.444255930355986,12.041014807828812,4.058470454524029 +2240,1.1684924497747005,13.55588114187869,11.383656800801038,2.328489024484337 +2241,1.162113232831202,14.518189828586515,11.731782167831996,2.0906946441798624 +2242,1.1648545195112856,12.723439445421747,11.092626817702515,2.6508177667279758 +2243,1.1585325232932142,14.930040434472945,11.636891034889835,2.247611080640988 +2244,1.1567921935519296,12.832614769408696,12.266421493057099,1.7575206993412478 +2245,1.152827429609167,15.136892180107617,11.932670595185211,5.8232607659828854 +2246,1.1553184675968529,13.831215153650094,11.93410924000876,2.7659536284009714 +2247,1.158307412667791,8.491659119822646,10.862248350659751,2.4344242404896157 +2248,1.1568426938864584,13.351101311490257,11.797766668399344,2.3475369435717415 +2249,1.1544261639095617,14.599627100785215,12.192024383124348,2.256751142516773 +2250,1.1554987038011966,15.618734803490007,11.937349960614204,5.545230271981828 +2251,1.1575278807134157,14.848477994611008,12.364432894051223,2.082200607066238 +2252,1.1619278676081857,13.428259423169754,11.50311414578584,2.247581826222422 +2253,1.1572869483334478,14.23544138805707,12.61721145754128,3.177281391811204 +2254,1.1591558248214484,11.95944854368386,12.762055828565561,2.298373430326603 +2255,1.1663016716530696,15.075670723525514,11.991195825416286,2.3780216563401524 +2256,1.1674303842510703,14.013381518890755,11.512997744432308,2.6676425767946452 +2257,1.1694890324374836,15.355620017999637,11.541424795777548,2.792986598228459 +2258,1.1679968070896833,13.360808674339747,13.070259830660813,3.2304381098118546 +2259,1.1678456986545194,14.952288293656723,13.114006584006955,3.1484583557542423 +2260,1.1757038523858037,13.369719886962912,11.032908355153445,3.5199938192168436 +2261,1.1676702862488748,14.897908594473419,12.277403194754767,3.3370423755757166 +2262,1.1695859417846408,13.057290593996125,12.065385165894055,3.2012862383333283 +2263,1.1847339536681356,16.474931960406497,12.1287549853438,3.553820993758944 +2300,1.1558835556603504,14.601178961809044,11.060078171741138,3.760791958788056 +2301,1.1409178596088594,14.86679205458028,11.994486665562137,1.9130433563890707 +2302,1.1375789868939263,16.877557819201662,12.733995635518475,1.6359522930176338 +2303,1.1459200636435456,14.738415851902678,11.685394757307042,3.426157256401936 +2304,1.1391706861160054,16.085866500458994,12.118468191873543,3.8676815377829508 +2305,1.146884390527427,14.768613922017607,11.13807325096363,1.5827817065775371 +2306,1.141132815825831,16.39036801577726,11.792814375667898,1.2730295860182128 +2307,1.140301131533083,17.538797533305207,11.674202811775956,1.6224385761732965 +2308,1.145014570154821,15.125804595412008,11.803915255398639,3.0726561844071734 +2309,1.1391057939268827,19.42161377752907,12.392502942223764,1.3410127773466904 +2310,1.1386006520906555,15.964718806903484,12.489249293431298,2.1697764156070503 +2311,1.1398982404727573,18.75961586293495,12.382958909844325,1.7901924909949543 +2312,1.1452587235584206,14.462396889174347,11.38589725264067,1.8779483291436252 +2313,1.140973788268573,16.1072231355733,12.054861269654387,1.5694155281285924 +2314,1.140263963619837,20.022410182561472,12.013623116258248,1.5068100215652303 +2315,1.142955688677506,9.617626699250515,10.593229162507788,1.949635401470986 +2316,1.143491930382694,16.515603437314372,11.594874586329935,2.73497932403502 +2317,1.1431026037824608,19.298759087428447,12.110408186222518,5.457375569691338 +2318,1.1470288777915865,16.54747395854507,11.423206142060177,2.090225257158056 +2319,1.1490374657389701,19.94217828956661,11.74192647878622,2.247560711151309 +2320,1.1525470688085289,18.234362326031444,11.594090974387303,2.596276486076396 +2321,1.1539958024734036,15.291487109651476,11.03210791141231,2.756195193290943 +2322,1.1583306123836101,17.81943361318329,11.757791380067168,2.784442053680337 +2323,1.1572172638978016,19.90146595915889,12.370971919694497,2.448360047844359 +2324,1.1602146740728232,18.73070618373253,11.489092636075162,6.841058967666448 +2325,1.161345825305955,19.595987168772968,12.330358671863507,2.870954645543799 +2326,1.1655365325817322,20.2037169453709,12.277871608066087,2.6234009582192748 +2327,1.1696930899159295,19.6534495559893,11.887902304032167,2.141759943374077 +2328,1.1650634988711273,18.881698211309743,11.933670205810913,2.7853896152005158 +2329,1.1654109037753624,18.727353172272462,11.874393297871988,5.220161871018571 +2330,1.1693268415805558,19.622281018923832,12.14043611857591,3.3662517620044072 +2333,1.1682716695457316,14.908749508586807,11.459048818537026,3.6996331959710784 +2334,1.1706875033275668,14.210245689189284,11.443693360486911,3.3927265312938624 +2335,1.1664442996453586,15.412046538119903,11.58484177824686,4.929310276287624 +2336,1.1626825717129121,15.114070569897814,12.586560254979199,2.9198777430406264 +2337,1.1630267339537683,14.523226125952469,11.271757217161943,4.592850637898878 +2338,1.1658968793429723,14.967790990107693,10.708995786992768,3.6392475749308204 +2339,1.1608886716671265,15.730808180210328,11.819684582145621,3.549985345025117 +2340,1.1613805762359657,13.851416998804671,11.406426455467352,3.2291330125450863 +2341,1.1525794857215754,14.842798099713008,11.886304021682747,2.811072532901599 +2342,1.156022135124342,13.5228181311316,10.965671911365941,1.976202432439621 +2343,1.151600561457345,15.188504757836418,11.39190492563652,2.9196592246195845 +2344,1.1479611033048656,13.385314081106461,11.933647035761954,2.4526711499415383 +2345,1.1429142986540424,16.028012435082097,11.613938953009049,5.564095839927145 +2346,1.146691961442529,14.58133389574946,11.715386824803945,2.8118158972946246 +2347,1.1497306603223727,9.237759248703954,10.612132957389864,2.9516274471417483 +2348,1.1478933122260795,14.057341960142505,11.455739023144162,2.4093133806996536 +2349,1.145005738315616,15.24706240068374,12.075902010493207,2.3998935978308786 +2350,1.1440972567442638,16.11133484415861,11.828338642805377,4.8344627415973775 +2351,1.1456509094928338,15.018932532262838,12.643974848801681,2.2783895714872124 +2352,1.149357140709256,14.008490645991783,11.021147258098194,3.0245100266604363 +2353,1.1470505856771767,14.429222416513982,12.381781694145774,3.4579431777422664 +2354,1.1515414898071217,12.297957244355569,12.465608870260159,2.2024089097768758 +2355,1.1563158691839528,15.49026254907591,11.667229215470172,3.4678226744987932 +2356,1.1547396861894796,14.256407817315463,11.477507821388144,3.2348027576222194 +2357,1.1583442979898158,15.47505305572154,11.139471057971706,2.9971805884325042 +2358,1.1603927804989955,13.485415958988417,13.022306719419536,2.291907215867468 +2359,1.1555154339876603,15.886467368215685,13.094259892489914,2.298767399756459 +2360,1.1653006363830973,13.862516034715894,10.834693592644436,4.179691936476793 +2361,1.1570934434917315,15.147186850093174,12.267440636770731,3.237364645894179 +2362,1.1572563473521047,13.885640640802126,12.110814246571229,3.8073701331955574 +2363,1.179821511293316,16.82907190434588,12.223911197795159,2.8428223953361984 +2400,1.162175961324666,15.655801217441356,11.685789780008372,5.502578769970811 +2401,1.1486430897474365,16.317039459784738,11.833890574253097,3.166230892666262 +2402,1.1487746712616078,18.4488952906048,12.520066045756131,1.8298610246374112 +2403,1.1543191200513538,16.30737190987852,11.670523968089038,1.900692159340915 +2404,1.1479286643695499,17.961928203492395,11.896467115825137,4.409125525666862 +2405,1.154106624825758,16.6728347680033,11.233230031118872,1.9438770451998437 +2406,1.1516244191565328,17.945937198958074,11.949286405635673,1.3121320246003523 +2407,1.1509071645490045,19.06557631446015,11.657051675756454,1.424051953489407 +2408,1.1536310313552258,16.989306406936553,12.130183260888826,2.431939456670241 +2409,1.1487430299869759,21.009409633727103,12.570117255494498,1.3779235398949774 +2410,1.1475156917419334,18.066200684686134,12.485866308512733,1.938878041293849 +2411,1.1482131238435551,20.57386335535488,12.007205163840105,1.2093289644318888 +2412,1.1540337513921977,16.834641554234278,11.510300592545086,1.5781451080866529 +2413,1.1499761518783764,17.944276150759993,11.988247231314162,1.8361440895630743 +2414,1.1477546785192123,21.662832590159915,12.59363948542754,2.0320711139209564 +2415,1.1521738544796603,11.342308658081638,10.779233855136548,2.0690727844950145 +2416,1.152302612437828,18.43776533408309,11.729363186714595,3.2606597420394 +2417,1.1519594883903386,21.006059679409777,12.205346962583869,6.7245462564173 +2418,1.157938671677494,18.44817076732116,11.684305154963766,2.28842832688436 +2419,1.1585231967861345,21.396067231372424,12.46546714271249,2.602778900049651 +2420,1.1628246625329939,20.45763723821204,11.867083404718102,2.1611411081441507 +2421,1.162257472159449,17.45316809434732,11.709183614726314,3.477400901222172 +2422,1.1666198705227204,20.254861493174314,11.878464873811561,2.417585962237731 +2423,1.168261541819467,21.438542229389824,12.520795225554194,2.1540469253983394 +2424,1.1670374128668153,20.94260199400964,11.508105610889746,6.017643386093438 +2425,1.1711867176678825,21.727571265969427,12.471599332685471,3.8831954594296896 +2426,1.1736345712254084,22.062459579551067,12.314732042446655,2.4036910593864436 +2427,1.1779436442348479,21.90922664095553,11.859575307477186,2.6258380699088564 +2428,1.176334314029582,20.661993386596137,11.772470067773028,3.025320255818471 +2429,1.1748413181600343,20.71895007762989,12.179569618927907,3.828299282628042 +2430,1.175557780491413,21.756808902598056,12.578462489441344,3.603685181758408 +2433,1.177438366718876,17.17284490081727,11.413871131854078,4.869372365156525 +2434,1.1802735372284114,16.63343469691161,11.438735960285348,3.946799546662685 +2435,1.1728417048151185,17.6481428835083,11.63969898145347,5.7915636386393405 +2436,1.1719697541913419,16.827334932941593,12.38018449370516,2.92656973877514 +2437,1.1732418088616416,16.53682261261752,11.170184288500112,4.278819003489176 +2438,1.1746523696664057,17.060983028126127,10.788735761260712,3.412108719081898 +2439,1.1697013986284652,17.893460913977794,11.863596625293377,3.8017324705302373 +2440,1.166890438589713,15.820720041905913,11.8650627268955,2.692923770329605 +2441,1.1630343037225706,17.137511437425545,11.734020657181183,2.3261384089924637 +2442,1.164784331368128,15.172720145209263,11.254959725040766,2.9918608288970465 +2443,1.160263085246917,17.469107524616142,11.225433984683951,3.09547970965045 +2444,1.1556073859409195,15.31857454457798,12.062046668150982,2.0082579256328557 +2445,1.1539246549030464,17.886715545775957,11.841582181821972,6.185963709949262 +2446,1.1549989586519882,16.425505813459523,12.184918674105703,2.034988449532342 +2447,1.1568900141002156,11.220167952401725,10.87073893489245,2.6338144695956673 +2448,1.1533008452719087,16.100574464093565,11.619656216641056,2.4540561313398364 +2449,1.15275595312155,17.00325139511821,12.432766139378076,3.1031244324729506 +2450,1.148634418322628,18.39453464608167,12.266151352810134,6.611912785805858 +2451,1.15494227129902,16.93866372695746,12.518865391023988,2.082293488828251 +2452,1.159397181047831,16.05763667182689,11.686950514833125,3.0806658287102286 +2453,1.1559015728181798,16.339442616810917,12.584791845379689,4.324719089427727 +2454,1.1604511333829617,14.391730346069096,12.457736580997702,3.1600216453818217 +2455,1.164982031680338,17.16838205080294,11.96434876646697,2.245123266720445 +2456,1.1635116579448763,16.080190524186975,11.566531217268883,3.4261030937301222 +2457,1.16528271007198,17.346320222086778,11.530290966656812,3.0109433237313112 +2458,1.163712120004278,15.977456194798872,13.206964973868535,2.4395987846088065 +2459,1.1624915499305328,17.6785990103151,13.06107738888204,3.1713337854778736 +2460,1.1712275874499385,15.815033360779173,11.380867032984046,3.6160986064878258 +2461,1.1639977833883468,17.026952991370774,12.183355600976613,2.812990109624038 +2462,1.1674671207179437,14.728292384285453,12.03559976432267,2.864620720301582 +2463,1.1766934339669006,18.75192470599916,12.620521075047293,2.7599849813451995 +2500,1.1634984211095325,15.046162185296776,10.954828547832374,3.8163992693453173 +2501,1.1502576238186988,15.59111386470761,12.128207898384035,2.9153200546362923 +2502,1.1463350939792778,17.68492882547802,12.685531956412905,1.6854454661830334 +2503,1.15315601349487,15.878446309627384,11.910807550564373,1.60840270241603 +2504,1.150748858309427,16.78002275468078,12.611900583364571,3.4393368572392506 +2505,1.156790262093492,16.204827183064832,11.163815436305438,1.3838756747799092 +2506,1.150029498385046,17.268729082626827,11.877587821336846,1.9445373666393881 +2507,1.1499932462556846,18.55224510528304,11.784742580762398,1.4604591988649558 +2508,1.1532327098220752,16.209058278144404,12.10926652888847,3.1982677733363336 +2509,1.1485336609410477,20.390839022478374,12.606885363619162,1.4338535619792259 +2510,1.14826506560034,16.99682345562913,12.576147540886298,1.9354520318972512 +2511,1.1489585647938017,20.07399302530477,12.031025743763257,1.5970040670970844 +2512,1.1524648904609769,15.801065153175657,11.754195427333496,1.3196525809774697 +2513,1.1492314501781646,17.261989963917564,11.924749754639333,1.6050171733650065 +2514,1.1471443418994065,21.254408265877586,12.343542100342779,2.0991697664454185 +2515,1.1548797917951517,10.71723546322311,10.507142868441331,1.8579867930494143 +2516,1.149440190398582,17.699001427241114,12.11946123011159,2.732155747782531 +2517,1.1511646806348688,20.247702649952274,12.114858172558929,6.884460110890466 +2518,1.156786691183172,18.05568282766916,11.641977307044964,2.02809422506391 +2519,1.1583530384623149,20.62901151212821,12.219401081290926,2.593916175318852 +2520,1.1628034024446725,19.278754219150326,12.064043683215393,2.7793186615493317 +2521,1.1624142451192425,16.59823027873703,11.565198407176151,2.5447995188026793 +2522,1.168075126217122,19.020881498430906,12.078060768029072,2.5807654383055363 +2523,1.1684211217436402,20.95291953363193,12.376994442256418,2.3227185634235377 +2524,1.166992044063386,20.076489334548445,11.93999154363075,9.321870204620451 +2525,1.1712337669105617,21.30643874873225,12.142728449921469,4.208298306359884 +2526,1.1765306734310441,21.535537045649743,12.265552363126806,2.7209342214257877 +2527,1.1764876775796584,21.624351802390645,12.171280612123246,2.6035875258338463 +2528,1.1775867430240723,19.887086735029726,11.886662414850608,3.5771153244780303 +2529,1.1740702692421994,20.299906787562488,11.964412410356722,4.26198064507364 +2530,1.1791337868575316,20.691750020002733,12.300291846657611,2.399873132668389 +2533,1.1807575939218249,15.78592053874935,11.530517303347835,4.963684805620495 +2534,1.1811720774806478,15.793318308037092,11.340173582597002,2.8746156529544615 +2535,1.1736920578335268,16.954178494812002,11.530733418529543,5.161883216289585 +2536,1.1738616723276352,16.33018781171868,12.201637416905548,3.155722750888942 +2537,1.171235409089564,16.411381858306935,11.632029540897864,4.696500023523371 +2538,1.1754837534767593,16.178065968521494,10.94492266125645,3.2705790307336606 +2539,1.1696324793954256,17.72072856204383,11.963535777963353,2.7579482676299003 +2540,1.1704201368612683,15.606448093179473,11.475756822109098,3.038554197560313 +2541,1.164495019130928,16.329716889939107,11.929891121412114,2.208017869199974 +2542,1.1640732740320807,14.65103532619296,11.188650993473257,2.796541896052153 +2543,1.1596629698555794,16.849230996327943,11.81074299993129,2.115561247836522 +2544,1.1582326767895172,14.689832786199544,11.988676204142514,2.1080588761467425 +2545,1.1526968367873776,17.34350864645508,11.627418601148216,7.380126493633259 +2546,1.156750169637075,16.02917643041567,11.714885356990083,2.4485438968107975 +2547,1.1579612985390468,10.346488695820739,10.876935301823034,3.556485752415725 +2548,1.1563673332933184,15.356853549177826,11.781599207728044,3.1262912284754663 +2549,1.1535665381735074,16.770023472047868,11.915118223058716,2.51765721350666 +2550,1.152476807552449,17.630911470562367,12.080211872787796,5.1472161812606645 +2551,1.1533683504122199,16.310616612588664,12.515707002657763,2.306723735876396 +2552,1.1582493088305506,15.263177267068887,11.612241616504441,2.30041866256111 +2553,1.1569538330313716,15.705027476306583,12.24170602404503,3.316205552631003 +2554,1.1572278217945793,14.321143793829044,12.616904344395483,2.2048526481580875 +2555,1.1629359778036412,16.75477760520699,11.608142304385398,2.3590856775225864 +2556,1.164751792899882,15.22144233371484,11.543167400328134,2.9531411787127997 +2557,1.164804030821651,16.786667079882115,11.544341539364462,3.3752465207698767 +2558,1.1624541517635276,14.836876129116352,13.166009335318334,3.0377602900511818 +2559,1.1628046177831248,16.69653286562992,12.912780391633312,2.9005558225194488 +2560,1.17160893745015,14.660641494750239,11.43853726565806,3.7490650262516634 +2561,1.165396626166987,15.779529153111966,12.064789188127971,2.5463908240691624 +2562,1.1653355558910694,14.276234904777853,12.143805438577616,3.0031339508154566 +2563,1.1848873801195456,17.060941946649212,12.373668703429088,3.276362319128303 +2600,1.159560747403455,15.394132044669803,11.0824662906205,4.375572327128758 +2601,1.1469939769187982,15.630193492733243,12.070891590079494,3.247346428013526 +2602,1.145639176683009,17.681251535694848,12.724857194325867,1.4824409665938068 +2603,1.150379158089612,15.890087299568325,11.834323987657504,1.779656219389461 +2604,1.1437777032721281,17.526552965235656,12.262867638423955,4.618679762822273 +2605,1.1504888129249555,16.065685598190203,11.383754438172488,1.4814242748428377 +2606,1.1490809265925725,17.275573332078608,11.87648191289968,1.8482100653852493 +2607,1.1484145357840685,18.359990675275515,11.995923650589573,1.647166685578201 +2608,1.150753611061728,16.025530578081774,12.308837538933034,3.02694685502288 +2609,1.1435443226332285,20.33727727369405,12.662005414524625,1.979576767852968 +2610,1.143449116226055,17.428488863567257,12.504288178394848,2.212774230476732 +2611,1.1447076463503747,19.982743680183255,12.231226454227684,1.9783814288186874 +2612,1.1499410348690033,15.849716333449843,11.58807980676485,1.5666086709905722 +2613,1.14751185642504,16.917598164502337,12.266737760711358,2.205966245018674 +2614,1.1473182124658932,20.876753143347905,12.22773784448855,1.916511038307579 +2615,1.149220523977508,10.5239467790532,10.863075296924842,2.1768169874527903 +2616,1.147301214569256,17.75278750227803,11.97133953387266,2.7878762915641238 +2617,1.1487952796450234,20.496711681828803,12.160200672978029,5.945026290556058 +2618,1.1527129062246166,17.95613049546285,11.585525561646316,2.6258795843557716 +2619,1.1560208212815732,20.888190276616385,12.27294637250798,2.902278269725781 +2620,1.1590054563151793,19.811657579640386,11.795253939781754,2.605186233760245 +2621,1.158232334194302,16.74739724419403,11.674060945725005,3.1930719011356024 +2622,1.1629874290504711,19.592130784354566,12.015247551349672,2.4590102088615633 +2623,1.1650114473176039,20.81543007013406,12.308481487351985,2.192315977694641 +2624,1.1658771679386009,19.918768731591793,11.986158610096599,6.906293703255189 +2625,1.1678895087164114,21.130303148947878,12.108964883171515,2.5123311566612325 +2626,1.1719713655388588,21.681891961280108,12.327489816379401,2.0723074639487207 +2627,1.174521917041576,21.343711263197186,12.352885735523083,3.1911189999562275 +2628,1.1742652692211155,19.87515687382374,11.885723962472955,2.9463889869586515 +2629,1.1718718186549741,19.949307533537525,11.972462479990378,4.371173600753045 +2630,1.174264335107367,20.49110207089497,12.711645960630896,2.434552482443544 +2633,1.1750220646841532,16.237657808256426,11.571237188442433,4.7473880402348225 +2634,1.1754760093872483,16.085444403104383,11.3911136846749,3.753600822590548 +2635,1.170284602959227,17.080023345889504,11.883925601732434,4.896386527946746 +2636,1.16885183430177,16.230503978106142,12.7052745620619,2.753128378332957 +2637,1.168343507548894,16.371743277165205,11.429772774825643,4.659882802246477 +2638,1.1723304436579234,16.151308693362168,10.891311767268968,2.938721742936573 +2639,1.168249789861275,17.166156549261476,11.565414719293804,3.9133766885074905 +2640,1.1643545534504456,15.147326152373601,11.613287132841137,2.8882712587894748 +2641,1.1592451235945376,16.454804197677277,12.209985430075033,2.829215921122713 +2642,1.1638182633480414,14.529245108258424,11.325748432223042,2.5325915183308765 +2643,1.1558849012283345,16.554810920953976,11.413189340799606,2.4474371992500563 +2644,1.155786363769312,14.493453872496113,12.025406866380356,1.8696614258527762 +2645,1.1515550176900629,17.064977113900593,12.013654155604785,5.486405207743966 +2646,1.151967342372364,16.099759597237604,12.185081441509412,2.6550435842264273 +2647,1.1548608102796765,10.619359395884462,10.665510346475724,3.3194886857953394 +2648,1.1514520419247936,15.302328175497516,12.173652384901791,2.8288511472552607 +2649,1.152719075532322,16.27456707267842,12.143723676251556,2.4524201977639852 +2650,1.1489514987993128,17.326043837629904,12.311962484485694,5.697053100749193 +2651,1.1518226634303739,15.975439894674874,12.267125683558998,1.5541643668406968 +2652,1.154885115128971,15.105802404646745,11.437859331837705,2.318587555423199 +2653,1.1532682661242737,15.45323238539523,12.811935223650927,4.0502452765898385 +2654,1.1524747813215603,13.790935033213703,12.388809804276564,2.085226500435579 +2655,1.159708921164016,16.572112503006014,11.733989521916024,2.792758448301197 +2656,1.1582286213603825,15.343283482217803,12.117763174130566,3.0929130759536205 +2657,1.1610334945495673,16.333065874827934,11.828131567138186,2.9660087937617647 +2658,1.1639064009109297,14.425529459922526,12.983812647560823,2.4639525923441115 +2659,1.1577438379326177,16.61400890305412,13.145848828400954,2.756115098975497 +2660,1.1634524615535682,14.953453766347014,11.36326316087607,3.730354612035532 +2661,1.1581576468026828,15.78922611100612,12.437647480395263,2.7012121892435803 +2662,1.1613307469217624,13.835257216758496,12.0598220085571,3.763068519086565 +2663,1.1751207579929497,18.133762939140485,12.085419090804546,2.905478576980398 +2700,1.1644319527608518,15.382032623569788,11.385148430350538,3.862518271597608 +2701,1.150204671779865,15.975424164369288,11.810987373816078,3.1346267619600585 +2702,1.149644119515839,17.584542554333883,12.4186590388487,2.0036581957409805 +2703,1.1548734638367666,15.959463371836597,11.89016207672384,1.4354259429656875 +2704,1.1509834537956323,17.098921352852706,12.165758632038974,4.4905931895719275 +2705,1.1568955209598906,15.984056915142046,11.623583631073712,1.7788644565458298 +2706,1.1532387895847598,17.31977114052097,12.1127809204133,1.5952079293412518 +2707,1.1524312974315394,18.680529761226303,11.76403887011142,1.5104904602909086 +2708,1.1544929801831199,16.37987921845867,12.20750042239941,2.9700636632815116 +2709,1.1497491782883207,20.47641511190605,12.637015942536904,1.322994846042778 +2710,1.1494320189982143,17.572218015465147,12.297617643079999,1.6348005908319867 +2711,1.1495326062215578,20.236435900271726,12.215093181504267,1.6773605046947038 +2712,1.1569812542929476,15.881741933558311,11.651670494314944,2.000832255480761 +2713,1.1523168945560736,17.21255487664162,11.941897024459328,2.0039258353231784 +2714,1.1509124960718577,21.174977820080304,12.286856031132526,1.9748540598701259 +2715,1.155960194277457,10.619499331086102,10.682747253582068,1.7851356202573543 +2716,1.1525589670640446,17.681054604634053,11.912685490027958,2.2513672235920534 +2717,1.1531501815431264,20.400195960277333,12.477051566166159,8.811821488073784 +2718,1.1584723266804584,18.026199262119523,11.895463250971517,1.6228626169486298 +2719,1.1589962291771336,20.91761757940788,12.232661398706403,2.7290877432661755 +2720,1.1652782582914847,19.4066516008233,11.944645811397532,2.234356341492442 +2721,1.1642319372690246,16.621943407996245,12.018878115154019,2.860309124579055 +2722,1.1683552746612298,19.516074981648032,11.596993397490824,2.4026417501470707 +2723,1.1719383327247959,20.688983124821945,12.030504165901217,2.0216789275016964 +2724,1.1706005231679393,20.251636871968902,12.06227176065506,7.4354613525771045 +2725,1.171235707848591,21.255755807712887,12.431595189709732,3.090773171282257 +2726,1.177004211829259,21.51975296216652,12.53136370790221,2.593785343109426 +2727,1.180564016545798,21.396005164296025,11.907325000347665,1.9223046467238571 +2728,1.1762382225108954,20.12951417222037,12.359534870538113,2.577198432149039 +2729,1.1762491040901628,19.744352038182484,12.52542590718643,3.8701123174619236 +2730,1.1779408197753989,20.962814442790528,12.790959076765358,2.8276864077741113 +2733,1.1810173290996344,16.361506573525556,11.554008535891887,4.425031859363927 +2734,1.180205071715083,16.171206030798896,11.495939883005882,2.7723924749066997 +2735,1.175628123642173,17.259024028840646,11.838361061204926,5.747885284280811 +2736,1.175859537669741,16.080571806537613,12.633708465190068,2.4605305459132216 +2737,1.1763767306026118,15.963235303349613,11.592481819219975,4.810797178643338 +2738,1.1769018187709934,16.205515254595845,11.239302974094231,3.507190724812784 +2739,1.1713831391940646,17.497364616851495,11.940738368288757,5.100934042457374 +2740,1.1701276955548254,15.418602466746568,11.762257169390827,3.2417546283508827 +2741,1.1655266522957717,16.33313226432874,12.430150228614417,2.236350046566307 +2742,1.1692093170594955,14.903827907051529,11.527099179326635,2.860439112834564 +2743,1.1597748749577377,16.92572541686694,11.86203838867727,2.7890855487763133 +2744,1.159164147244003,15.180481849184865,12.089081834645482,2.057106732808961 +2745,1.1524182708573032,17.445269945360298,11.959542613577273,6.9127982346520085 +2746,1.1587175036451833,15.899736414055885,11.826861745788394,2.4063435730198672 +2747,1.1587523554894983,10.721075956645219,11.055492181582363,3.673631292852345 +2748,1.157887298234594,15.193288444122992,11.76723352777103,2.5449663294240197 +2749,1.153466826872945,16.189679451795705,12.39490811446137,2.744826148309543 +2750,1.1522633064086603,17.564078487175546,12.332662601408142,5.553032144296364 +2751,1.1541859876201308,16.534427779657868,12.124856784635652,2.7517027073441525 +2752,1.1572011884098743,15.312183520636356,11.617918508993165,2.323648350382814 +2753,1.1531987827095298,16.141171622067805,12.586800953401182,2.721235914811048 +2754,1.1577661807901678,13.818036050417225,12.794300803448454,2.291271965634827 +2755,1.1609176453020293,16.970662180721785,12.31338687043724,2.923996455944204 +2756,1.1597934459462562,15.732720939471093,11.782273383714536,3.283206704912378 +2757,1.1632205239631128,16.90872170559829,11.892646706793494,3.458249086740912 +2758,1.1642275813970178,14.984408777421109,12.931812366179328,2.6643519026824785 +2759,1.1629653218004559,16.645191359341585,13.181071679268795,2.8044399964832176 +2760,1.1667393663828889,15.051194544541438,11.436236424332774,3.440523398118005 +2761,1.1656060184492985,15.754788457591244,12.188885935914604,3.139009515848011 +2762,1.1637209037737408,14.169521739466687,11.833953084339536,3.5837687330459866 +2763,1.1800265187592291,17.34702528469154,12.161688261554366,3.107803374576947 +2800,1.1587600286126036,15.842778682269012,11.568555069856851,4.073754682894026 +2801,1.1434483767458454,16.339678771442145,11.929323845813984,3.028637445006975 +2802,1.144067665147668,18.04279940599659,12.591374735644536,2.2132458845542686 +2803,1.1504283561142785,16.238551048532493,11.554347384332607,2.1900252637017212 +2804,1.1441512959192996,17.49407972846937,12.126559689756274,4.197295844776076 +2805,1.149170860534753,16.208197683479906,11.42344594556935,2.025201704170341 +2806,1.1443561271507083,17.327789663746284,12.04372228617349,1.6906806229118847 +2807,1.144589949194011,18.789357804717802,12.120630768907205,1.8730234431680284 +2808,1.1473270184803412,16.431664791804064,12.031682404190608,2.652276482969457 +2809,1.1441219152924873,20.578395558070277,12.579368253288928,2.4000927566531085 +2810,1.1450755196986948,17.137709653958517,12.521546335513888,1.913791741663599 +2811,1.1435792841829637,20.2888745693619,12.23055438463665,1.6642889443461872 +2812,1.1494781262216338,15.761963312802246,11.701205519519219,1.7735079263574087 +2813,1.1454583890474546,17.27788575650585,11.92350233161662,1.8388080318764093 +2814,1.1441722260205471,21.37342440450463,12.151039038231028,2.223646917918836 +2815,1.148949185163393,10.689541519099164,10.668413298914738,2.8316072774955154 +2816,1.1463251788531819,17.6651378140057,11.924641536490782,3.3197508047498197 +2817,1.1487955129685543,20.324800034816445,12.167616324759713,6.403952072276533 +2818,1.1520368850521094,17.948258033205086,11.473040523748109,2.53091148073486 +2819,1.1531363951154454,21.071628466723883,11.91242111907586,2.1738519009684274 +2820,1.1577517552825058,19.42577758405754,12.204046156719755,3.6243970386238553 +2821,1.158825822822708,16.62995015726118,11.704008696973478,2.742107066844958 +2822,1.1617337237413408,19.25507626814933,11.901947421620623,2.25307914954034 +2823,1.1635737194889735,21.009924840198003,12.260681403394043,2.9456639559135995 +2824,1.1624800072515613,20.136357791013896,12.278899227461102,6.305105144221682 +2825,1.162011572189255,21.427747270982287,12.807022833550837,4.3750650790856005 +2826,1.1682120993584957,21.61389281134264,12.244945302911235,2.8436773247687332 +2827,1.171380657074328,21.72542282665943,11.77989467437728,3.1481225785799456 +2828,1.1694582424840148,19.90805770751707,12.340812861336804,3.4219391123704117 +2829,1.1697655016556643,20.23921190182373,11.790004205433476,3.92260380343948 +2830,1.172671979110623,20.480299367147246,12.896567410467407,3.4454302284490788 +2833,1.1763880375488736,16.068072835624125,11.380888976279183,4.128409130833522 +2834,1.1746628836457007,15.997258189370525,11.45677864739204,3.400684900894297 +2835,1.1687118943181238,16.872142196933577,11.540051208890281,4.569241441930435 +2836,1.1670193944036398,16.280355563409582,12.34206002691476,2.6419357432242427 +2837,1.16881374560661,15.787224437422436,11.63487789067336,4.684642561384032 +2838,1.1718214431377696,16.079085993716568,10.859483543533889,3.6448458457033133 +2839,1.165141764721651,17.46558053446283,12.076138662703514,3.2551141539912614 +2840,1.1654266578207413,15.30362034926383,11.556706612698369,3.182675313137089 +2841,1.1569354046987508,16.463428949405216,12.309877081845773,3.085076185661009 +2842,1.1605969905167806,14.57337489244435,11.336898773402446,2.8147178081626323 +2843,1.1551952573464186,16.882515414083745,11.728547291505233,3.1196296396612744 +2844,1.1534915940365091,14.509864394246934,12.14499463377169,2.8966739025860897 +2845,1.1489239757555127,17.110650343603655,11.60726948240666,6.155704222296632 +2846,1.151664943747119,15.888692601722482,12.271914046030778,3.157362534499845 +2847,1.1512727302283352,10.761247940916231,10.714764446268982,3.2717199189872095 +2848,1.149085219409107,15.28717988779224,12.023132807692248,2.5254467748303364 +2849,1.1465010259059163,16.42128000688221,12.272876453761281,2.905683814715221 +2850,1.1459799597845926,17.428839335489208,11.94240491822496,4.440782742273407 +2851,1.1472824964450232,16.689042541798933,12.427071330997727,2.555345213686125 +2852,1.1516720198984618,15.206650942214305,11.285741332167852,2.7994972741183535 +2853,1.147062578260248,15.679139582449023,12.633472240722954,2.627529931151578 +2854,1.1511423465272923,13.522077164026692,12.756846690268384,2.4619027568583016 +2855,1.1556627857368225,16.36510584961022,12.190751927272627,3.104345765788244 +2856,1.1555181648355504,15.21014894938449,11.763416713413985,3.838024855259175 +2857,1.1528487808754124,16.887661580995047,11.691179750826496,3.6022598162855988 +2858,1.1547839037791745,14.975819937086825,13.35683574266375,3.0570417632965396 +2859,1.1569753567347352,16.50575944337021,13.158661392340669,3.0183749520857095 +2860,1.1615742303272452,14.773785359483107,11.043026065999161,3.8333011738323 +2861,1.157085481344288,15.589777658944227,12.30648509557497,2.986545786383625 +2862,1.1555769026954015,14.430855503219737,12.08210536928041,3.5568376562791917 +2863,1.168334094792459,18.985101386856517,12.120027688386555,3.483297529108237 +2900,1.1721692745449692,17.956147865051495,11.636467897224119,4.565925598876216 +2901,1.1550424376102388,19.21158709717885,12.095656223638365,2.941122885694287 +2902,1.1554291142717048,21.336733416549137,13.118835392838879,1.4355909674092417 +2903,1.161077299093234,19.592133517892815,12.311138380041598,1.0459433190661969 +2904,1.154138998408991,20.858503393395413,12.675670494645802,4.927929705848432 +2905,1.1622561727107135,20.122934592125155,11.628426104465683,1.431217074207257 +2906,1.1596052553740537,21.15360696008067,12.264059423152538,1.2791394470694557 +2907,1.156698487239122,22.914271631217176,12.328831437596065,1.3000418806179086 +2908,1.1599531005930552,20.447556582492133,12.715999390433094,2.1518480958051853 +2909,1.1533376839057137,24.561717562843732,13.229263481872911,1.438639716273439 +2910,1.1537393181873004,21.616187756547586,13.261349075932088,1.256456790121639 +2911,1.1547696172468886,24.323475179633437,12.796936196295015,1.106612050117494 +2912,1.1628212452824203,19.821115932660675,12.214733409122429,0.9025870553870767 +2913,1.1592803529963234,21.09676781621319,12.392946525486515,1.290437547884246 +2914,1.1565733651761148,25.548889982845445,12.413852834908988,2.1725314701180003 +2915,1.1616782603142952,14.871487335968615,11.70630535414188,1.238082329442918 +2916,1.1576954351309487,21.84290264916278,12.816088599703907,2.2909106318208807 +2917,1.1586083093631276,24.948399424429486,12.21076139543979,7.818358765533637 +2918,1.1620108824275726,22.086402880234417,11.909209772090954,1.4036043245614944 +2919,1.1634709784574253,25.24684359429433,12.507990857335368,2.8328828700799997 +2920,1.1687998931701784,23.5137051115381,12.346847370372252,2.648713755349571 +2921,1.1684175702306339,20.94536885692568,11.83124896944505,2.059516249520494 +2922,1.1738917620073108,23.614750550017895,12.261935484736282,1.791753579361632 +2923,1.1727815904462657,24.933341096111327,12.484609650957129,1.32671066369423 +2924,1.1741138696884932,24.67723271021577,12.123141453628925,5.864925838762179 +2925,1.1723013304990937,25.46181555678036,12.58242904914058,3.9938849750112304 +2926,1.1819268998849448,26.015808210398223,12.19425992235598,1.6362474091920447 +2927,1.1815522604490174,25.9632716665865,12.047142700300215,1.7577785994800512 +2928,1.1799621267600318,24.49361302587812,12.040352620513387,2.190968435724463 +2929,1.179246510636906,24.690990926859214,11.775951281620793,2.8894479524181267 +2930,1.183275709201545,25.42304806232444,12.094278487308438,2.0057984138164353 +2933,1.183771420916778,20.495841047761047,11.579876054418849,4.237027507795205 +2934,1.181141639160514,20.756590182727773,11.658130600937135,1.5351413275769261 +2935,1.1788102248246892,21.294616192777376,12.061799355317165,4.307652055303222 +2936,1.1784896242150589,20.561818826036188,12.555679699330398,2.099359708497627 +2937,1.1762802472065272,20.661608713725382,11.806473841753657,3.665718803135649 +2938,1.1835045116481209,20.379582925131302,10.939661207549186,2.3050675469825332 +2939,1.177477115630216,21.587243088569338,11.967365704362306,2.3449778818653435 +2940,1.1733273095256491,20.13045929116583,11.709406323360122,1.5872573389276028 +2941,1.1714040661349963,20.860611032333743,12.329108827958992,1.7550711788794482 +2942,1.1713297496060786,19.281675156458384,11.529776855575966,2.435843919181458 +2943,1.1681934825024565,20.716414453666967,11.54777988460916,1.8598340588681186 +2944,1.1619771179494198,19.20636617701981,11.995633277592992,1.7779701911738468 +2945,1.1605973679108257,21.279819672821482,11.858434152343902,5.535120118763028 +2946,1.1602632597831026,20.109358532516588,12.281376078483808,2.2025567422214105 +2947,1.1636387293043449,14.838209939410767,11.21250623334769,1.9229488331811295 +2948,1.1587482784585632,19.64510202335237,12.317895733824773,2.439726282739125 +2949,1.1574771877545385,20.919780895090543,12.357313059275931,2.591616440613871 +2950,1.1554282558452917,21.783600464460275,12.44670807152592,4.847716435823333 +2951,1.1540469551942736,20.709685693597553,12.74409196709118,1.803193101205038 +2952,1.1604929025277657,19.551581562540175,11.719759104496998,1.6436088402033635 +2953,1.1552622044725667,20.261070032991608,13.04740853738292,3.1053107802911195 +2954,1.15633698360846,17.882128347209058,13.147934244551276,1.446269547008996 +2955,1.1629542680323184,21.084060115121744,12.022272378173058,2.352474675485742 +2956,1.1634930472936293,19.45777082306991,11.684338092903483,2.470704857417963 +2957,1.1636621781378969,21.273692221074374,11.941980919610268,2.021580609581924 +2958,1.1668093869092129,18.944707772375228,13.33651851406373,2.061402759052398 +2959,1.1657871027353877,20.61407729126708,13.344971273190927,2.04634500222883 +2960,1.1711461439070296,19.20899801800198,10.990987015138169,2.6522420169596876 +2961,1.1699468176734693,19.808803120867918,12.572624440896075,2.2428226476846156 +2962,1.1704783400439833,17.47197555677139,12.433567204668844,2.6129351039965893 +2963,1.1872302925575497,18.860203146417597,12.622688131162485,3.129627331684382 +3000,1.1610492330404936,16.028867263401345,11.378466272786664,4.288946497934696 +3001,1.146814509961751,15.999923450245221,12.138257474978788,2.6251888745055942 +3002,1.1447811213888324,18.19376845776004,12.17117070364489,1.3074528287780387 +3003,1.149535283897612,16.243935654379452,11.807657142713893,1.7449695905234852 +3004,1.1453537992923415,17.759514560681684,12.062801766631452,3.8510761689961326 +3005,1.1532828887240911,16.5042823819339,11.530745965057179,1.8169449642368818 +3006,1.1480293618849746,18.1071860619231,12.068709510787224,1.9377623066649277 +3007,1.148172675831618,18.876726214215513,12.379851845273468,2.001425443650442 +3008,1.1527707356255192,17.21303819754388,12.480076627737905,2.2441632042419335 +3009,1.1466027518941457,21.220809353935845,12.953269113436859,1.4215720126134548 +3010,1.1487636605834068,17.94735677809889,12.495255896278788,1.912350563127373 +3011,1.1461426979879292,20.74963949112512,12.541410042594297,1.3455585309402618 +3012,1.1541380183773422,16.585276395733946,11.803863079141687,1.314031664365168 +3013,1.1468313804174175,18.165367243542494,12.625730887090281,1.5257275048713712 +3014,1.1464140084304306,21.463634840874597,12.890783344915983,1.7008313828972161 +3015,1.1526454189671873,11.178777859795986,10.838096348338043,2.119290165639786 +3016,1.1501007515284778,18.206808463256,11.882424535593405,3.0026133916194744 +3017,1.1511075664597599,20.91964237537416,12.380983392764167,5.959350650965053 +3018,1.1546640663983285,18.65016725820289,11.881116129124933,2.0957751921611787 +3019,1.1572516845210752,21.237506999702333,12.277828181551705,2.341629853235933 +3020,1.1586891814361422,20.296338616126913,12.148040278260023,1.9296575085031966 +3021,1.160421837298645,17.00997403444796,11.791255387079925,2.8339398951907553 +3022,1.165730382156728,20.16405472800867,12.198975939133206,2.068138057794947 +3023,1.164698660402957,21.47789934845268,12.764937707468418,2.083329544491758 +3024,1.1649009812862305,20.692592791656466,12.036189816962045,7.831112516505691 +3025,1.1673972749821957,21.758602926645487,12.433852000161684,3.646053094660296 +3026,1.1714092390898243,22.22906205459553,12.29468661501504,2.4004767413287853 +3027,1.1750742143040604,21.661661711069353,12.16183709682938,2.852873743950211 +3028,1.175072408717632,20.31359802857413,12.020436359833438,2.2557885135725684 +3029,1.1734197732749305,20.133363458251598,12.414562513885611,4.363984378484611 +3030,1.1751618692811951,21.337967937736845,12.752091871625952,2.5028069430796904 +3033,1.1798434074690851,16.44941325739444,11.263016257006713,4.314083766370928 +3034,1.174207868672846,16.949977556681034,11.582836800716935,3.218331338109577 +3035,1.1701512217806056,17.914562359710807,12.376824665683447,5.171415673296494 +3036,1.170164251809243,17.30589337541696,12.560673962914798,2.877742968832105 +3037,1.1703747926729144,16.96053096683985,11.566179056872697,4.437980270901751 +3038,1.1736405344644827,17.061448971224877,11.340863067801314,3.452405417092044 +3039,1.170101520959882,17.674736982276123,12.135636972898908,4.006185881783298 +3040,1.167960203702573,16.28333604376956,11.881379824020657,2.985221383253586 +3041,1.1631517751097367,17.024019611512323,12.136543521078798,2.436755706250496 +3042,1.1650255245794596,14.960825857120845,11.521638662116985,3.1501354268718296 +3043,1.1577344988029803,17.452616700673122,11.386794696487794,2.3630577356351914 +3044,1.1550005462184967,15.650730025370235,12.339717254524711,2.416435285449733 +3045,1.1501501976986186,17.950422094222038,11.785208015808848,7.6497485324042875 +3046,1.1526393948949174,16.627187225626525,11.93350670893218,2.579504175211498 +3047,1.1530510398326221,11.034917880098039,11.062990614549948,2.9384059698772402 +3048,1.15095791809121,15.775894859902508,12.027827053438925,2.116599500067962 +3049,1.150681533852086,16.71064398395549,12.511517293750114,2.668390414639428 +3050,1.1470167007124181,17.895434900702508,12.088390998249547,4.671624996239596 +3051,1.1495423682757635,16.750831862021272,12.873596254486023,3.0262491928882995 +3052,1.1514184602923505,16.10536968622325,11.41016514554648,2.019225441723212 +3053,1.148749551543239,15.820889266640004,12.784938971419034,3.676192382554993 +3054,1.1514507961632965,14.178264694566405,12.809922082468017,2.4327164137345036 +3055,1.1541995142880495,17.348020930821974,11.944525654814552,2.3619845675064473 +3056,1.155117929192356,15.81909151095949,11.976453729915312,3.1796137735857535 +3057,1.1527073457004025,17.876152260645043,11.585460688075047,3.20701076918782 +3058,1.15658845536837,15.231086291134746,13.077444876054267,2.2896079499576674 +3059,1.1562501647371712,17.05312448679819,13.452052747502227,2.625090760339176 +3060,1.1620649526258022,15.660366827656743,11.366018542149584,3.151562405847315 +3061,1.1559906895839542,16.66844876432427,12.280765657002911,3.234935379177507 +3062,1.157260397834227,14.714611807646666,12.017919374753395,3.3798643694423953 +3063,1.1721716822325547,18.072550786432995,12.511343962347508,3.2295784918867145 +3100,1.1602859169276099,14.872560178534808,11.093899147201437,3.784451713758675 +3101,1.1458968273548584,14.754550443389798,11.697827570142783,3.0173331761196462 +3102,1.1416542681565232,16.66864880788664,12.586123945976519,1.9024371805219673 +3103,1.1461019834956017,15.270277573082055,11.718438242031256,1.6011199290704758 +3104,1.1428552613409446,16.34447657339905,11.653969056520406,4.166536940749862 +3105,1.1488231191335672,15.191476850094155,10.979129893226968,2.3232195766634964 +3106,1.1460334285823206,16.52086507872589,11.18952330780665,1.654132017933184 +3107,1.1434417758269717,17.970568450420835,11.479759315501774,1.9159646176205225 +3108,1.149282695829598,15.227351778723303,11.730278943202986,3.7261201192648215 +3109,1.1438411281189929,19.40917693297498,12.123734476558953,1.6586162743157138 +3110,1.1439290213667088,16.4749113200615,12.138787102830094,2.450042257999781 +3111,1.146946815000292,18.41970771094521,11.909444219818747,1.4826726216471289 +3112,1.1505106198490431,14.850027655291338,11.704320906971367,1.6083453631685367 +3113,1.1461606959233799,16.29004460663839,11.914243766626909,1.9157638721966685 +3114,1.1425585033697052,20.166550772716775,12.249449283866406,2.73992253884269 +3115,1.1493365785682585,9.861159549417648,10.612418354690037,2.119172557520386 +3116,1.1484027992749284,16.162508457702856,12.063551144650157,2.976309902858945 +3117,1.1467413502155523,19.381978709072623,12.293468108138406,6.420786872409449 +3118,1.1527653139780696,16.67677037904582,11.603112553388945,2.664815273495204 +3119,1.1522844101336553,20.15329601294239,12.16040087038475,3.4365281228071094 +3120,1.1568583097685035,18.452135685804567,12.038936504624747,2.413632608487881 +3121,1.1582463251674555,15.130196118952103,11.58005236824187,2.8609026548256162 +3122,1.1593034322412727,18.103975135352954,11.724465276648804,2.3526218276858963 +3123,1.1648772316465286,19.534071797835644,12.332395256036605,2.5541770094718146 +3124,1.1616946273166153,18.987632209867893,11.704670743614518,6.977405583167935 +3125,1.1657226312460334,19.74449821015783,12.122313867739722,2.769286465048288 +3126,1.1688628566735215,20.141616010714436,12.274448281810885,2.850332176427306 +3127,1.1716682998638255,19.878665639190615,11.686519449849472,2.9465171586385397 +3128,1.1681845104049107,18.70234271084631,11.780880015592674,3.2269293660086085 +3129,1.1678164323842741,18.920323132016758,11.81233508878371,4.412201274947254 +3130,1.1717494029795348,19.39192391105611,11.924987181946735,3.1414873631492624 +3133,1.1738043237767084,15.003366972646468,11.021503034002851,5.1301277062505495 +3134,1.172954251019149,15.125455218479923,11.387844935982935,3.485593466105797 +3135,1.1696554626156612,16.016768769248173,11.523956717232997,5.116328429366955 +3136,1.1699792469299655,14.791972434809365,12.135953893682858,3.0717508583685516 +3137,1.1686335194037545,14.749292641716231,11.331925405228308,5.341581981627349 +3138,1.1690410403047304,15.192875802901554,11.012189428424783,3.4959431400908785 +3139,1.1665760405525027,16.10597939538116,11.685811322135642,3.475866615440932 +3140,1.164015694187918,14.459529307047275,11.430084382183589,2.46032231405686 +3141,1.1580071939672922,15.522091676145008,11.636250921948246,2.9079083946886595 +3142,1.162343093811161,13.4205180088881,11.18428967455206,2.997695518186738 +3143,1.1545413275353813,16.043424097350442,11.366947057527948,3.07124059114711 +3144,1.1515450557547267,13.78788440091746,11.743486844701385,2.1449060757643608 +3145,1.1484659085207396,15.934028040279896,12.034320377239043,5.6120313317305035 +3146,1.1480932368360994,14.83810682792746,11.624272678132987,1.8784740977029517 +3147,1.1509098073840593,9.519955572024173,10.888497047727707,3.257736351769597 +3148,1.1435538700520351,14.403318207242837,11.233645242094099,2.0244843118214044 +3149,1.1453738868356205,15.279166487397962,11.451265160866178,2.254538724540724 +3150,1.142499621488776,16.362049346724433,11.668904881803824,4.789896693234374 +3151,1.1449053228316668,15.370548629304444,12.119823969230854,2.5951445471748076 +3152,1.1459171794630503,14.111564442407118,11.145423899498443,2.283083375858784 +3153,1.1437964250055137,14.631137994486638,12.352802857610277,3.117340554264336 +3154,1.1468117532740887,12.501149271718246,12.602765908470259,2.6333579172917725 +3155,1.1515902625026646,15.360054746350277,11.572125002869269,2.712770063260538 +3156,1.1487203424743335,14.418861956590368,11.629602821336748,3.578323821565996 +3157,1.1500834215283737,15.674178909623492,11.318313931890922,3.2403126649816394 +3158,1.153161077501838,13.510196600044598,12.923479674966536,3.1670321759962006 +3159,1.1520746608728234,15.43934053243099,12.85402689943728,2.4778647964477982 +3160,1.158115630689533,13.91033653500919,10.96494756461699,3.1279922840809014 +3161,1.1543311685041806,14.667558344360321,11.825109601780266,3.4219740073362104 +3162,1.1535653485252289,13.735038864030308,11.83927865481637,3.184494301758638 +3163,1.1696803520462902,17.80311556479963,12.175136864421102,3.3662251845672624 +3200,1.1625587110064783,15.32310516975885,11.462955050728729,3.860303407531941 +3201,1.1482348994804639,15.493055132444432,11.81848852167334,2.7565719785252 +3202,1.1450186975078376,17.208131601703194,12.930192655300528,1.9747042776537942 +3203,1.154106730935594,15.181225616398516,11.93720644519472,1.0326754292403115 +3204,1.1461994254440249,16.49819047956674,11.922163980744168,4.379342281103902 +3205,1.153649772978767,15.805600197872105,11.61282322464995,2.2702826324663476 +3206,1.1501042287943477,16.94705137650649,11.976965978718335,2.143135818369318 +3207,1.1492468770116804,18.37846094235075,12.375846252891014,2.3996267145123045 +3208,1.1533765683062416,15.637017780511634,12.432051154172438,2.481150582724919 +3209,1.1464485436146703,20.529206235142148,12.664107653726987,1.5279971796545677 +3210,1.1487687014666426,17.243627527369256,12.3965353183608,2.1802151545654946 +3211,1.148479192766751,19.461960129646176,12.707440302448962,1.83844659533867 +3212,1.152039350817567,15.877529159545846,11.986754724276109,2.7084888740674344 +3213,1.1503186304751534,16.877413562343296,12.093146296909064,1.4835899738791265 +3214,1.1495713037460764,20.43321124011155,12.580683170754032,2.345745959514628 +3215,1.1562599216349927,10.104006121303309,10.67640669815486,1.7287213884648347 +3216,1.1519741507188166,16.854423975185718,11.87519114090759,3.1762226012659966 +3217,1.152335440821676,19.787140905198367,12.347629253783102,5.822032370826592 +3218,1.1563615203790798,17.686107319161703,11.634130865912994,2.1891872972721336 +3219,1.1570543879997708,20.617354859676443,12.588426748663672,2.026394971389999 +3220,1.1608277219553815,18.916795819336624,12.543176502624501,2.970648252206055 +3221,1.1606866123660664,15.913748570799967,11.940627901269584,2.731320807534855 +3222,1.1645249118311494,18.784791594174898,12.236166830823041,2.5050294931607584 +3223,1.1638693863871534,20.71759267142145,12.428332351113776,2.626870080544649 +3224,1.1657948777676677,19.370400928067756,12.46650081405134,6.360184801179466 +3225,1.1670996436323549,20.551399020128212,12.492511770066635,2.9268084575401816 +3226,1.1709652993594561,20.910644897396995,12.321043516128203,1.8404943333412276 +3227,1.174990240332527,20.374823766803253,12.293596590479751,3.250183717729571 +3228,1.1723774278592165,19.545857355933528,12.086216651135096,2.616787599373442 +3229,1.1716972967531745,19.14755993077408,11.857877708404926,3.4865239822122795 +3230,1.1761144746993681,20.22263792081751,12.389198009141326,2.8805359097586076 +3233,1.1771220721465572,15.700161225005848,11.816799681861355,5.139607150377713 +3234,1.1759608450812649,15.61767536636029,11.837486714355533,3.583603916795458 +3235,1.1709439669026898,16.592290276948685,11.913069579451326,4.195953923548589 +3236,1.1728678388400597,15.615953313527518,12.593907404241003,3.2171905282224884 +3237,1.1710086397644972,15.978838530791853,11.280833623906371,4.040011052377181 +3238,1.173933822907741,15.947867440315836,10.81991590319667,3.189592648589894 +3239,1.1670886624146422,17.528822256723714,11.956135370817378,3.9397425553511325 +3240,1.1660691520520579,15.105856129384742,12.008639078545688,3.0501679412627714 +3241,1.1611479314484154,16.205808208203965,11.939000119123104,2.7454858000784825 +3242,1.1627513355419494,14.478377054106534,11.51120320838649,3.194546612449636 +3243,1.1575157722387495,16.189779959590997,11.70800321035009,3.3509040628060047 +3244,1.155201077385138,14.179520092965113,12.499014773167671,2.2678912483432625 +3245,1.1499641323949183,16.484649907909148,11.756875702556169,5.130124815139407 +3246,1.149810794671084,15.352813440867093,12.113906477495306,2.6504161204042136 +3247,1.153415116019725,9.952256635591748,11.021386867262613,2.018711567121145 +3248,1.148650185589107,14.549020014227246,12.082087840804551,2.92079282453494 +3249,1.1454822217283378,15.858822598724498,12.642052226224907,2.4200991828849636 +3250,1.1464562138663235,16.59365830857901,11.984573846617089,5.625643753180921 +3251,1.1481693772978043,15.669703845648352,12.63172804318438,2.8542854527272006 +3252,1.1487900512224107,14.7685733920832,11.896269451688845,4.452111005105585 +3253,1.1437974252226053,15.25987600468041,12.889354090272965,3.6946538902663044 +3254,1.1483255895555946,12.973819820870165,12.637610533437671,1.9965553878160631 +3255,1.1516515702177423,16.080684106902208,12.28621159267635,2.7829467431621744 +3256,1.1522460518878337,14.78717260702783,11.730173534414488,3.6685840007385377 +3257,1.1499935859752257,16.590013006959225,11.857908993894176,3.26855771620337 +3258,1.1526414416936936,14.235911048928937,13.22511774869915,2.542398442597844 +3259,1.1532073533576983,16.127733908521762,13.069346164898532,2.079752533881256 +3260,1.1580104662114858,14.78363765143655,11.367833015110602,3.791013687349032 +3261,1.1556188949994237,15.832342133062852,12.753035871831182,3.964646515325027 +3262,1.1554740925843194,14.55955729330531,12.17063407548531,2.9637629467380857 +3263,1.1735659658513222,17.448082919147584,12.885467239723617,3.5695080201862153 +3300,1.1578067142302444,15.73136309225355,11.55462808101185,3.0783711394837527 +3301,1.1400677845113554,15.585467597797491,12.55829354941326,2.209969489330614 +3302,1.1378952253162118,17.514764103983744,12.514108292880037,1.1016688638902346 +3303,1.1436909772194483,15.672720724947295,11.76214070358157,1.48615907421861 +3304,1.1378388420168257,16.98048097302401,12.323773885668668,3.033442135376915 +3305,1.1457674656929775,15.623554412123335,11.520442579072192,2.058362379921179 +3306,1.142617241974493,17.138365970609392,12.271166762763558,2.119988246465681 +3307,1.140353048585727,18.313055284301946,12.070318580103388,2.0303140308075815 +3308,1.1448604069514867,15.828126810764902,12.564513839952172,2.7635064850306517 +3309,1.141190828555905,19.986302553931544,12.914639045206977,2.1463474595425054 +3310,1.137688225582469,17.39233994477048,12.912055624340415,1.8829468940301182 +3311,1.1406166438357832,19.3532847720434,12.427042544085811,1.5856451299665626 +3312,1.1466534206321077,15.36695923213685,11.743259810136937,1.6589815509496457 +3313,1.1427620961052383,16.959153109699823,12.056841279580917,1.5155234685492123 +3314,1.1425377933006373,21.05921360488806,12.226204308429828,1.9728875208301018 +3315,1.1454304827173452,10.148596126924819,11.030989741026822,2.3424954603497086 +3316,1.1429240527123468,17.361080105386964,12.134173337824189,3.208796687891758 +3317,1.143994630230443,19.867176002538468,12.26035956425352,4.460933483761397 +3318,1.1475182892979179,17.0976967958254,11.82499993512178,1.883718340403146 +3319,1.1474046473785806,20.495775569233167,12.314798732099531,2.4734969905723796 +3320,1.1511069930055937,18.81563034620694,12.061472415856885,2.652044225959979 +3321,1.1524846676519953,15.925683600721518,11.670024982180987,3.1055199312134607 +3322,1.1577039193891312,18.393639742009466,12.13349371554998,2.23736376143247 +3323,1.1594286399084013,20.00978826860426,12.221948677800047,1.8729169010393742 +3324,1.1565944926029372,19.124098603647212,12.206984700461035,4.8794463942731 +3325,1.161067787143763,20.53788840366304,12.190903299521954,3.4886584937204677 +3326,1.1639186556024432,20.892983926430972,12.413328265650998,3.0164900695663084 +3327,1.1660697273660008,20.191500701590183,11.976463920105147,2.877412798528589 +3328,1.1656686655642516,18.97293468017095,12.10678316978579,3.4196242971434625 +3329,1.1640665983819982,18.94332475632377,11.924430996289127,3.281177698995469 +3330,1.1664634875034838,19.814939202425734,12.555086912599961,2.8901022417084468 +3333,1.167820868798919,15.619970436798011,11.518581962815558,3.2240274379505833 +3334,1.168496172506705,15.719183722554474,11.542229431968337,3.7509163463883053 +3335,1.1641348784430996,16.363314523792127,11.865930357755914,3.8421696488575767 +3336,1.16223502507446,15.755154677910761,12.333785278309692,2.2183724822514432 +3337,1.1628736051587396,15.609989942697126,11.358169452941906,4.428597173844621 +3338,1.1679604870776406,15.26527613954393,10.79434450946448,3.98739122904006 +3339,1.1628630351468279,16.60589692169931,11.714985530418463,3.1485008593844914 +3340,1.1599649198658992,14.923064262670739,11.803798675222925,3.2027490463772152 +3341,1.1516189392919272,16.029119688418877,12.074566069085007,2.5597787415996494 +3342,1.1540618230604265,14.121965652558357,11.334026613647229,2.761805709830839 +3343,1.1511979232933731,15.828512662691157,11.578279545576413,2.785229509897073 +3344,1.146264638166944,14.1942851059782,12.061921661787697,2.526665109882859 +3345,1.141511421161351,16.506033767367743,11.98711010262587,4.899938090841518 +3346,1.1426197817715331,15.01225043514167,12.11314038612382,2.110932676780161 +3347,1.1447694128623407,9.643796780270828,10.59197902931948,2.3560161999982467 +3348,1.1409378258553182,14.079178359689987,11.84174663514392,2.2736836082065466 +3349,1.1388599989850803,15.593160090245654,12.167164300655475,2.431280067109799 +3350,1.13704178813606,16.950774483504233,12.157326947042575,4.60060365804882 +3351,1.137024074205737,15.569011756876678,12.556609521372753,2.3518769008312432 +3352,1.139639832184762,14.639215442056686,11.731790290777816,3.0138352651324665 +3353,1.1367987396209143,15.036532531586706,12.430337193105494,2.307137146704285 +3354,1.138242991517511,13.23485949745175,12.666369901443183,2.786285280706878 +3355,1.1414915473878824,16.04999829175724,11.886706636321378,1.8990668358559646 +3356,1.1416405662942575,14.615636405416343,11.421277033877367,2.7027765747852803 +3357,1.1432718082817608,16.17812626926942,11.41364058386777,2.9143367884897113 +3358,1.1421330770071492,14.357173696853787,13.11511122892454,2.82033211103332 +3359,1.142399742657506,16.216936519629176,12.97129462914931,2.9730400397082573 +3360,1.1483408190394628,14.945036620773191,11.127354088650003,3.1162727130648396 +3361,1.1420069301298965,16.156558342839713,12.277158433055892,3.396039448453668 +3362,1.147555575392993,14.24536789375181,12.128575833102866,3.423601164649145 +3363,1.1660017849110158,17.877464412544217,12.366728188667112,2.841553773930259 +3400,1.158633265256221,18.500277737203017,11.621080036240873,2.960549685703933 +3401,1.146156118012653,17.8567880534699,12.173533431573293,1.9131909647697833 +3402,1.1401222872958607,19.868980462018627,13.133302461550786,1.5418770971472655 +3403,1.1485130402677046,17.972020060762148,12.061837873143597,2.0894861820254778 +3404,1.1430689308247084,19.060891584300276,12.493778299631666,3.8449076538375393 +3405,1.1475422388395573,18.496547301037083,11.66526805525719,2.504912782947285 +3406,1.1464094430548297,19.41315999838167,12.07547631663263,1.5773134864756495 +3407,1.1437192718068105,20.839633296107287,11.829310372131486,2.0678403906149967 +3408,1.1488227066256513,18.279546497219226,12.07110927056981,3.0153187396894006 +3409,1.142516376091779,22.51610660749232,13.221279316981654,1.6408574968853735 +3410,1.1415103959552269,19.524842352605376,12.56899576545732,1.742443402419279 +3411,1.1450098469371366,22.146108454015717,12.222824621186783,1.6357348992837752 +3412,1.1485047190647755,18.041787318245813,11.961071396631604,2.0374103036698106 +3413,1.1456429965734585,18.917220887157924,12.164756821182964,1.5659081808247777 +3414,1.1459622749631317,23.10374215497601,11.829375047934503,2.553050685113806 +3415,1.1481763390651387,13.016616642294485,10.730744655965328,2.5965762226907394 +3416,1.146018374389882,19.50207890241712,11.839963400747246,2.1304691792931774 +3417,1.1479609035104639,22.111979619137255,12.437831038949502,7.372480989062218 +3418,1.1528564282034621,19.51300965298529,11.369785639317465,2.4219616118737837 +3419,1.1498117579974847,22.66159895784981,12.276646289059377,2.8392096626594663 +3420,1.1542609064296692,21.379717398573042,12.357337376826983,2.4873923180221333 +3421,1.1561455610592053,18.13322505168253,11.774756759889502,2.1502832653509216 +3422,1.158938238207372,20.757146439101007,12.35147225231207,2.728963415885874 +3423,1.160329472105852,22.42354277605051,12.544458258366946,1.919516311868127 +3424,1.1590778644735413,21.614760505278376,11.979125481571469,6.655381278283552 +3425,1.1613522037112816,23.064253523396218,12.41531620299724,3.332748343358543 +3426,1.1687380248250698,23.034896165492857,12.343512661753753,2.1680501130324066 +3427,1.1688532538784424,22.83713420877344,12.173442846837865,3.009139255610555 +3428,1.1676350843600256,21.604608557988193,11.9693475344064,2.5963478501541655 +3429,1.1640029599792698,21.654020827351165,11.90850605038745,3.3957432820562627 +3430,1.1696777847608149,22.348274916624852,12.111210373716071,2.867906299157349 +3433,1.1694047004483368,18.03280975158049,11.436141129110172,5.274482749998319 +3434,1.172530875242835,17.707963775819465,11.583222913031593,3.2313264164886433 +3435,1.1660759017114626,18.831046843872485,12.013620065640081,4.290993094518811 +3436,1.164044873846098,18.175884050557247,12.437738038471977,2.51555926075721 +3437,1.1682528379686417,17.63892301634606,11.292742372166451,4.130855592431558 +3438,1.1681664888875711,18.027164709141207,11.068843314535735,3.037793029028695 +3439,1.163374940259218,18.837189738166316,12.068231426128984,4.407574738847712 +3440,1.1597109603614577,17.550163684389663,11.74563115465652,2.337677204137833 +3441,1.1543859001463033,18.359993965477642,12.083804469180494,2.517267160686452 +3442,1.158608764258753,16.890527499592718,10.989103012725861,1.8304410541323446 +3443,1.1521090491614703,18.290578221944298,11.590522725766384,2.2346800859795515 +3444,1.1483395715302445,16.614784786355116,11.852862696537514,1.9413260249435593 +3445,1.1443810758551916,18.808137694235302,11.457739260473208,5.3557023044756855 +3446,1.1438974391042993,17.546019819806194,12.4801102036781,2.2240287450649316 +3447,1.1456049156082626,12.1821357369139,10.696913592460154,3.5233520572049057 +3448,1.142304428158762,16.67596300467722,11.665340483482458,2.400059067273517 +3449,1.1401500674031613,18.087648752240405,12.21478058409921,2.479620774189289 +3450,1.1393839808314492,19.08513526474368,12.173798975286761,5.285777412882014 +3451,1.1403035769475232,17.764860565224808,12.932710723477989,2.1785970324342014 +3452,1.1437887434621348,16.764920053303047,11.702815666940193,2.3252714777326435 +3453,1.136583827865735,17.17336291206561,12.716631231777589,2.885396276037713 +3454,1.1377707604379839,15.116565834779857,12.804211626832256,2.0005547995867423 +3455,1.1437339262605186,18.70061840715958,12.04062449870336,2.6802428435793266 +3456,1.1435299569319843,17.540510996497787,11.508775894037822,2.721909916764722 +3457,1.1437604385808908,18.885305317674128,11.65231767348265,3.089985123525542 +3458,1.1431593868366814,16.872741515938383,13.20625487857385,2.3206060293772692 +3459,1.1437664127042464,18.262337416142817,13.294791640053484,2.1230509253688092 +3460,1.1514768593993694,16.536873131617654,11.018192247305775,3.0615480989560875 +3461,1.1464132758774854,18.05044322697635,12.41625450472532,2.7398669471988706 +3462,1.1472649831049846,16.951401864623133,12.464258104123733,3.1082218011384324 +3463,1.1628642269733342,20.598755758598152,12.743950858371328,2.7298409184767976 +3500,1.1570305135764278,16.640719087899356,11.894175839866985,2.848593705904756 +3501,1.1402243955123395,16.51460752360609,12.427021168807332,1.8450667794850248 +3502,1.1371173678875246,18.360442743518618,13.03222112876473,1.3160545730808353 +3503,1.1435876477479925,15.953633763073158,12.013943021358937,1.442393187412809 +3504,1.1373681195871224,17.73799321459922,12.334352754697267,3.9994175215654924 +3505,1.1432666513149246,16.5823029238039,11.627203418825145,2.1171132668640142 +3506,1.1426188706277587,17.353842796042468,11.95225866032993,1.5003427568277588 +3507,1.13947378984928,19.05191670756631,12.016947270157665,1.8459861811936569 +3508,1.146757184185739,16.140240702182435,12.058341478875723,1.7893773875580672 +3509,1.1378924132693693,21.156230500903238,12.600906810111448,1.555735292770629 +3510,1.1370200265759904,18.12786185301002,12.38074139389514,2.6158344515822782 +3511,1.1385144349708265,20.88071596986266,12.361055342377835,1.9009722826654123 +3512,1.1433611075712904,16.393198624665015,11.653042212755256,1.612122737129366 +3513,1.1405936422031486,17.307735503888047,12.21515618788009,2.0705605082873193 +3514,1.1406366672359947,21.347293989984163,12.682317562196236,2.2446222950994503 +3515,1.1431510922370862,11.04055829830076,10.676966483630958,2.2133253471993166 +3516,1.1405965119060462,18.00934868006669,11.888261322702764,2.196257414754928 +3517,1.1426260898556886,20.32228480662418,12.060992721311358,4.540325572636175 +3518,1.1450830319239527,18.15042013315721,11.532192566090163,2.114139442926589 +3519,1.1474933197381574,21.04634636490269,12.035082083137963,2.611128393974657 +3520,1.1493049128589976,19.713696038107468,11.821599585354525,3.327452297458937 +3521,1.1490184036254762,16.39224666848096,11.994918984220657,2.651671715400984 +3522,1.1512235033795233,19.49375157625274,12.08325659294996,2.6536733479006696 +3523,1.1557140373136905,21.080624256618503,12.293613932809954,2.1943950896799644 +3524,1.1531895309839806,20.02646540383347,12.194138629115807,5.961003548395112 +3525,1.15768756185339,21.15815480527994,12.176817194277694,2.8886865256818726 +3526,1.1601221890251565,21.757051004789965,12.304502115210212,2.429892474968991 +3527,1.1633070619555956,21.068450128717426,11.922031653473892,2.2755870287306696 +3528,1.1604505944018495,20.223720492904604,11.817974518986038,2.781080425328845 +3529,1.1605057473661644,19.62766270951432,11.953040766407264,3.860976577003564 +3530,1.163966364920727,20.638833732129623,12.44547475268179,2.902252459690735 +3533,1.1639691042339775,16.203832532029367,11.314879543894456,3.87389759483018 +3534,1.1656369729098446,16.08477040090901,11.707096619167434,3.5706672014043987 +3535,1.1609845503592369,17.01603608920947,11.870543355828765,4.0868076223494585 +3536,1.158915981471679,16.305035668401644,12.739770990206397,2.523604255602167 +3537,1.1589150813572133,16.237841431291116,11.413850885607648,3.8604485142950424 +3538,1.1603130474412904,16.570933950306475,10.809962666600637,4.043662067588689 +3539,1.1578009808278742,17.67371748214177,11.566858338734102,3.3166026548174448 +3540,1.1559408354849636,15.877064122976314,11.784159215705603,3.2735684222342187 +3541,1.1499789774799767,16.752388841067983,12.008330707317873,2.44052776674643 +3542,1.1498764240307726,15.267265962154541,11.30771542502675,2.111075403392875 +3543,1.1490094003391522,16.73899228633371,11.789913421349295,2.3170161624082546 +3544,1.1412595076861478,14.959567293390077,12.244946102511307,2.2300800564575542 +3545,1.1371375490054476,17.149011893394686,12.197353471512331,4.482108491655776 +3546,1.1391767832512032,15.843630355789406,12.016184726493737,2.500166242928184 +3547,1.1396862982282037,10.211274198281343,10.887715146053132,3.4911484509629256 +3548,1.1359554513437744,15.393297790385702,11.997138152587533,1.9002506107904233 +3549,1.1336368987236385,16.536301841124665,12.01853796772822,2.341785765372258 +3550,1.129983637020113,17.328894684255637,12.230820978245436,4.305478638206174 +3551,1.1313660536798809,16.58792058559415,12.787194156167855,1.8018882316522908 +3552,1.1354961391608063,15.293236237669563,11.521268973380563,2.0843821981068196 +3553,1.1299458123951915,15.52182670369856,13.062326536038336,3.4662134474577186 +3554,1.1343102606265687,13.451321186308872,12.870812634831216,1.4127522358920637 +3555,1.1385888053409274,16.56897005597296,11.955507291204245,1.9987822723330737 +3556,1.1366402744936512,15.209664991172223,11.874926543491636,3.0869355556503417 +3557,1.136173230610702,17.108103650212694,11.735671066786534,2.1725714021754556 +3558,1.136826522047309,15.016299262296405,13.210083304402978,1.868862592908826 +3559,1.1369795461314767,16.614753047574787,13.046921997503915,2.281462703683805 +3560,1.1453308339370563,14.974032249072332,11.13453626542384,2.7045023160049677 +3561,1.1371681314886577,16.630191833889885,12.458694308414959,1.93712058495085 +3562,1.1405109727046003,14.828750139764054,12.330084881824028,3.2502864146157955 +3563,1.1590375192163593,18.13930558424478,12.619334977610217,2.881323216341624 +3600,1.165942061360836,16.147641988193236,11.278873171375691,3.4329830208147274 +3601,1.145594881417936,16.239922818495966,11.939978013700205,2.0675038407968875 +3602,1.143394336794325,18.29214537557817,12.581337443125626,1.2447058637237403 +3603,1.1488271320671688,16.703060630340744,11.956411781510548,2.2023135732555095 +3604,1.14533696907459,17.499097408667698,12.330399760846273,4.266096618226795 +3605,1.1495082191580503,16.735480848751553,11.438451623432043,1.8596938850382072 +3606,1.1454464168675125,18.006308491081704,12.210542474649555,1.5376190972853936 +3607,1.147123904714273,19.17152957385099,11.682275836033764,1.644713788262202 +3608,1.1498298396502593,16.53797106734826,12.146862183554541,2.5967160917355723 +3609,1.144971847068605,21.063307583505594,12.72617160672961,1.4362762887522154 +3610,1.1439882682520233,18.14453416890004,12.459363748426323,2.6535441313266803 +3611,1.1457968239962968,20.585509485488235,12.214290958576873,1.7411558299673495 +3612,1.1511477880675094,16.550305057613414,11.57229713088989,1.625516380385825 +3613,1.1470988754496674,17.74839812149538,12.17897335772212,2.4150064838490923 +3614,1.144865834100417,21.802615340607726,12.399322623517136,2.3886395427225775 +3615,1.1491595441397227,11.053613430443024,11.044628442525715,1.9793770105360229 +3616,1.1469500952433898,17.901659850782213,11.976954574577528,1.7260955158192746 +3617,1.147192259216637,20.90423036843111,12.241815991448318,5.36717702771759 +3618,1.149718544048106,18.156284081336135,11.516547980894915,2.0332983889171343 +3619,1.1507967676360251,21.456211868467037,12.028005835870637,2.5358290631989577 +3620,1.156603715185464,19.427824316542626,12.125931679730677,3.0871088364195334 +3621,1.156141160582328,16.635938732474393,11.563363121755689,2.0941423563845296 +3622,1.1585770878080517,19.398842787093393,11.907641034252874,1.8407790718145889 +3623,1.1581588590426837,21.053886726410703,12.421895605982932,1.9502183633141912 +3624,1.157369037524996,20.31006791281768,12.07732456440365,5.120780151099233 +3625,1.1638782916283015,21.12785066182802,12.21033822280931,3.098030438000553 +3626,1.166277518001773,21.71498794348685,12.404579345169655,2.6279056509284313 +3627,1.168449282160824,21.629456500996728,11.787314021982738,2.5266377605555554 +3628,1.1672984376743496,20.004999471763877,12.08241116164535,2.598315371193714 +3629,1.168379139665516,19.724007238233746,11.671454839715388,3.728632304178044 +3630,1.167552405556895,20.888888300713727,12.361278327619624,2.977356532958738 +3633,1.1730269486456495,16.1429955276962,11.437458733646846,3.8908254017163544 +3634,1.1707203796704386,16.499968246146043,11.388306958657422,2.796079719784142 +3635,1.1677161585150888,17.089815165022628,11.432385540083704,4.270706932528108 +3636,1.1654431547541348,16.659438118131867,12.23063910951921,2.7824964799032332 +3637,1.1673142584774256,16.13172996409409,11.329981117033489,3.268750349386205 +3638,1.1682806724725836,16.113878872826298,10.948620066304057,3.320243971044502 +3639,1.1645462023131392,17.4415363637934,11.5721206181445,3.4961268510755064 +3640,1.159309469181274,16.152946369155618,11.757977569189165,2.843242663565118 +3641,1.153481552644138,16.82538734243749,12.08345003717287,1.9612654215255751 +3642,1.1550011253693997,15.559369492389967,11.395359626021989,3.2933299515373675 +3643,1.1524054595963011,17.099445896138896,10.956836462843615,2.330003061877609 +3644,1.1482541956475063,14.853184944117126,11.786925253335268,1.886211889055457 +3645,1.141282025331766,17.263479784894383,11.979672056681723,6.682723633636166 +3646,1.1411362408619015,16.159498574608303,12.066440303995787,2.614348388014916 +3647,1.1443822110294082,10.07627356064751,10.821170374725982,2.8636921007943292 +3648,1.1396229822384656,15.408111419968751,11.730873705564287,2.330918330596632 +3649,1.138929047786136,16.473498959069687,12.201408222147196,2.0911339696274984 +3650,1.1380579061878195,17.452809842466596,11.928807728320978,5.188803984077643 +3651,1.1372827261092955,16.4875429061138,12.479273874402827,2.129763654067082 +3652,1.1416895558364533,15.316999273815915,11.532867165434942,2.2825268574693087 +3653,1.1357052441342044,15.697706555718103,13.211868393130482,3.2775310726192175 +3654,1.1383629869786003,13.995002902966407,12.412165373829332,1.810133296751116 +3655,1.1434566836468572,16.54307802977364,11.968153446745049,2.028082682262499 +3656,1.1445322986411743,15.301456474164702,11.412774681362851,2.1000805123827453 +3657,1.1420534213305973,16.864227349350035,11.392013578513888,2.6205265199871106 +3658,1.1436704875054926,14.932511785294567,13.425000172578017,2.3858935490446886 +3659,1.1414494708465346,16.675940075143306,12.9621306481836,2.183358273338127 +3660,1.1488461185772874,15.024040814133924,10.897583148090556,2.2645017516073733 +3661,1.1421351945697311,16.357965699657967,12.285845109810813,2.0615653186461613 +3662,1.1445595296241564,14.799055932270093,12.26163786078113,2.362973261556904 +3663,1.1596573557088996,18.118436416499787,12.568753412815965,3.401787891936528 +3700,1.1641517215201684,16.565786992620506,11.482483493581617,4.094275516784955 +3701,1.1438900004593626,17.341036080364315,12.043729837780575,2.9151047189204466 +3702,1.1428181104498103,18.488036584855156,12.815484570607165,1.6379912051548948 +3703,1.1502246958349853,16.755161542831427,12.125517926707197,1.7965418084943698 +3704,1.1431690322732155,18.157260911556836,12.301080985929651,3.3530214648507974 +3705,1.1490097003879858,17.140638864788638,11.233114328824827,2.3262284673914326 +3706,1.1455112091021666,17.995544869952568,11.940333101735831,1.9609399999559836 +3707,1.1471257697437414,18.994436369255325,11.836573391596266,1.7336520874124723 +3708,1.1491985741129163,16.978408915440482,12.052011017106626,2.5352319436980277 +3709,1.1443238770423307,21.201778194398745,12.714751423925701,1.8291479081943904 +3710,1.1414214261937228,18.680815780110528,12.397858625166661,2.0748642739215835 +3711,1.1454317527677078,20.630561646604065,12.114864074356301,1.8263593581249764 +3712,1.151923405604016,16.483570113845282,12.015859619435213,1.5029336278504077 +3713,1.1469570491508276,17.856654097211255,12.065715056443754,1.6709996627809074 +3714,1.144804257328227,21.81528799318816,12.539951562698144,2.0138046050932834 +3715,1.1499846394829307,11.271892716686756,10.737805446191514,2.4615696062308086 +3716,1.1475073665840336,18.157367377357602,11.79055840929401,2.5856083415954227 +3717,1.1471948136571353,20.959724504057586,12.128208199192457,6.033857251829894 +3718,1.1507956609399381,18.66328153804935,11.415733183269866,1.9817487135413328 +3719,1.1470664103326316,21.71683358396567,12.31192733739958,2.6802441641936836 +3720,1.1512112533243701,19.898131540157312,12.38853288638745,1.8845717528588657 +3721,1.1529494951669805,17.246538294534535,11.561305936283805,2.9160702626380397 +3722,1.1551667284710034,20.101903365238243,11.841788667349707,2.022551195168564 +3723,1.1584417305251677,21.13403225437138,12.369876355621894,2.3739988511019803 +3724,1.157606581747928,20.699091822622552,11.990025039123653,6.305505440681462 +3725,1.1580539828763776,21.584262231212765,12.224577464635354,2.9333888633885046 +3726,1.1620392357499056,22.261924918374998,12.231710458762242,2.6716062172444635 +3727,1.167097594517202,21.69566408832435,11.771697672981748,3.0042464252077137 +3728,1.1644780024275616,20.26789919382832,12.294257992320569,2.585277597739944 +3729,1.1650079774504818,19.991922433650807,11.698020399440036,3.0927373371019637 +3730,1.167525526436819,21.097956155781585,12.028988354768241,2.863174810454803 +3733,1.1703597087520152,16.558096586245437,11.464586103875197,3.50923213138698 +3734,1.1711218042337106,16.718164522266488,11.333147528228904,2.8240998807782276 +3735,1.1653841021707092,17.635242770368695,11.566777522458665,4.373664835004959 +3736,1.1658350941354774,16.188045409343246,12.518786240760713,1.8876054088532985 +3737,1.1659595574535486,16.36467284871778,11.288862532874393,3.2483909608405366 +3738,1.164245335253127,16.73831365548812,10.994838944819001,3.067935557852448 +3739,1.1617535689385778,17.509735867481876,11.985864015098208,3.295945512068372 +3740,1.159036343169124,16.102218914708654,11.545429104821238,2.547047230981882 +3741,1.151637355063843,17.311915407554164,12.19449783032803,2.6277819945392933 +3742,1.153581038089043,15.7599396323251,11.292220668376443,3.05834473963102 +3743,1.1499333318874339,17.224955294061413,11.53764221700811,2.5670716362271424 +3744,1.1450258705718914,15.242416352291576,11.983789714009262,2.2207603449417066 +3745,1.1405505620145002,17.547860588987813,11.522883987504928,5.5433106688975355 +3746,1.1401811967529047,16.32859579259653,12.11519392518575,2.3344117126770136 +3747,1.1409252834155523,10.93766916856733,10.789521822524339,2.5010118403987773 +3748,1.1366208544112728,15.624462261726396,11.96445950919133,2.620037714724574 +3749,1.1347726842217378,16.923871714746763,12.325373718026123,2.6595806449415775 +3750,1.1328783763916688,17.628665426431734,12.270659433152709,3.941209107974458 +3751,1.1365337574145815,16.850310289227586,12.40490574227208,2.3108672349756394 +3752,1.1363179561551389,15.857876520161534,11.510060026927674,2.8918645821259807 +3753,1.1362782502569844,15.69742441561755,12.740931633237379,2.952744465087908 +3754,1.1381754819836636,13.714899182788336,12.805749909813285,1.6792810828788125 +3755,1.1395736290445013,16.85065412633424,12.12440150727557,2.538334030620466 +3756,1.141851352903204,15.452186627910047,11.185114563858157,2.8389211250331936 +3757,1.138438151054183,17.470054668543444,11.971920970610917,2.4351484706945095 +3758,1.1407010114562977,14.80582034988314,13.191221449556439,2.9416814486460443 +3759,1.136091857340671,17.33355446276471,12.98153952275679,2.8850780529516036 +3760,1.1444456740492364,15.664115466579977,11.186225874452958,2.6201550663681186 +3761,1.1385824855232383,16.81067205849205,12.245986379995982,2.7064324374851525 +3762,1.1386789974617386,14.943867070197768,12.378665330948532,2.4859935890522755 +3763,1.1574093260725509,17.63710906918197,12.210800932686652,3.325795157888962 +3800,1.168091776099906,20.701137373021364,11.337487135079106,4.405491151411032 +3801,1.1509375944177496,20.8137581285794,12.155826297521575,2.634620496936598 +3802,1.1480728401394746,22.30285794788622,12.626744951483392,2.0833137041242202 +3803,1.1553856521569539,20.48660435682913,11.526257730375608,2.4387866550177058 +3804,1.14999064021204,21.552092052207183,12.077069538656144,2.6522665802090297 +3805,1.1551508013462972,20.43697898435842,11.545773178250329,2.7443573004508153 +3806,1.1522785150501702,21.69876001584129,11.589789879533692,2.168293975076661 +3807,1.15139961086887,22.74590278870605,11.748286501658981,1.6801999805906793 +3808,1.1544074865253922,20.307272800978236,12.231308466435536,3.455867310530272 +3809,1.1466148906667823,24.69591124707098,12.607663454297965,1.3634336563045621 +3810,1.1502863141319613,21.225427963818827,12.473500811090151,1.5171755326677248 +3811,1.1509518006880424,24.249914938676373,12.107925340118031,1.5644578907738194 +3812,1.1546889834939669,20.27433256504406,11.669774470368402,1.560853671233345 +3813,1.1506018974133523,21.706236685729863,12.019021980841192,1.6274685279937382 +3814,1.1511874487350704,25.436712895970373,12.008586180631783,1.7652199931166659 +3815,1.1532481942589523,14.9912412175319,10.653037760186747,2.0627385054855054 +3816,1.152650013231185,21.55997071947616,11.514059345697982,2.2811161744567108 +3817,1.153200939026128,23.99321745139011,12.038523944755433,4.383069121110241 +3818,1.152577368413283,21.914075762234237,11.882927170160734,2.35553348474025 +3819,1.1563633054594566,24.934134861797745,11.733136226573817,2.1405383047525057 +3820,1.1570378019482739,23.57482261418451,11.737368375830275,2.475836888048916 +3821,1.1575782697747685,20.40654092640816,11.562016540698986,3.341125963774813 +3822,1.1613833935448963,23.145438857233042,11.87060862154067,3.1031596226945415 +3823,1.1612112186134784,24.93359523720087,12.44103039528171,2.449869619741761 +3824,1.1610896378135296,24.3033228866446,11.6816584149679,7.517632872490679 +3825,1.162934243726643,25.09568686494197,12.452335272559937,3.2859545349892643 +3826,1.167867676813546,25.416116040851225,12.141997045710083,2.963121238373186 +3827,1.1701106155753895,25.171230441384026,11.778415944250373,2.363383592692385 +3828,1.1688970524632958,23.738331080358478,11.91865436697167,2.301648794106332 +3829,1.168992738624184,23.239749448408386,11.969893033907214,3.7847924988417287 +3830,1.1710091641057088,24.40191951736484,12.183494032354343,2.961832662466224 +3833,1.1710834641861578,20.472186696391088,11.131105363787503,4.705579556609561 +3834,1.175328820920999,19.841981154150787,11.36640512266972,3.728057284449623 +3835,1.1702664827826919,20.84043907078768,11.416930118126329,4.136521232927353 +3836,1.1674264760169493,20.292157765219244,12.868693055319001,2.7682052795130123 +3837,1.1692171259625646,19.923503203038837,11.376648392776223,3.838621255243135 +3838,1.167764218163342,20.22118649251897,11.31957661079768,3.9921060544416953 +3839,1.1665887393697656,21.32483381713183,11.417292493483814,2.7223286977620154 +3840,1.161534066066023,19.705846383141164,11.28855734297817,3.172799709124817 +3841,1.1547379684730972,20.88490040971626,11.909778323137191,2.70106527239852 +3842,1.1606108659828032,18.89129583113908,11.21187799467009,3.004881724904997 +3843,1.152061963629705,20.94929923510018,11.212390181433861,2.473292093974289 +3844,1.1503271756924172,18.77162244610353,11.978273116304855,2.2907474355308666 +3845,1.1443522627940812,21.21393850087782,11.682480212158953,6.429295672055928 +3846,1.1452739367112723,19.888056132646437,12.140418413022356,2.4003717725660074 +3847,1.1456440654417113,14.428273940072737,10.751860588305,2.568911946781296 +3848,1.1423785385956533,19.066365090947944,12.03394447398489,2.486885046902904 +3849,1.139791155623864,20.332395247074935,11.880484229924422,2.387228657976188 +3850,1.1388765610242082,21.248010679462677,11.96331388622772,3.92711378123833 +3851,1.1398076626587246,20.31724780734602,12.619844120611566,1.8660191789665592 +3852,1.1437249418556295,18.99529159780877,11.471258025199532,2.804024153715469 +3853,1.1380890600122155,19.833453434508495,12.504532354333987,2.590509855593458 +3854,1.1412221354308014,17.60317253995412,12.73882150055703,2.0557028951897447 +3855,1.1448143906967083,20.55107919967598,11.71122656590755,2.1585290994868545 +3856,1.1433626512673063,19.23167301228148,11.680639108252368,2.4512465450812266 +3857,1.142165623483791,20.943467736397583,11.560413172736077,2.912883410676935 +3858,1.1418932239952073,18.845142187850453,13.174729568661801,2.1452760608831674 +3859,1.1398359657495927,20.43818011131123,12.73540416492882,2.256481893271095 +3860,1.1469675912332045,18.867741042645967,11.029451215313875,2.5725394559206736 +3861,1.1406692898953568,19.873257394273796,12.333881779608069,2.0821534272735205 +3862,1.141393963375952,18.54405838070748,12.051774621883741,2.7066221600153804 +3863,1.1592639310943031,21.854313864771616,12.461210180552222,2.501122945256971 +3900,1.1649903239462882,14.107032779572895,11.563744601761268,4.537712004512639 +3901,1.1449973916123817,14.21364838615316,12.06624512653725,2.300276299645301 +3902,1.1425631392358246,16.175644461793325,12.560705052478303,1.4989828694765468 +3903,1.1511195403313792,14.064949763067343,12.020340895292797,1.8246144258669061 +3904,1.146250268065492,15.616116578645766,11.961047077564771,4.208288378193808 +3905,1.1504407594231838,14.697802242264832,10.98019446998847,1.9697518024598901 +3906,1.149257783952705,15.912097927535633,11.659784377482854,1.2136603261256584 +3907,1.145452692365718,16.981862762069078,11.694568918548262,2.0866563469100985 +3908,1.1503451164112473,14.561320045608584,12.13431672563477,2.6776380375997317 +3909,1.1451673821279775,18.68600307734965,12.596373272540001,1.8587920570655752 +3910,1.1449143570581053,15.76895678908888,11.883684192824317,1.7851859933850485 +3911,1.1443013725499558,18.405349167262155,12.131899395861776,1.8082957274216562 +3912,1.1493770577591673,14.170750232544279,11.52105651535435,1.8627186926737538 +3913,1.1458521885352637,15.323144646610356,11.931516047053137,1.7474315455814837 +3914,1.144466551772643,19.182176429227102,12.11584215284119,2.4321748342906537 +3915,1.1479053961085082,8.528521578703133,10.67977804982674,2.2001487225879366 +3916,1.1469610167851396,15.753626234017839,11.763488320082518,2.2014318655525624 +3917,1.1462521852773753,18.250929866999204,11.95531937439402,5.46425170246908 +3918,1.148668716025524,15.757108627702207,11.190100682731389,2.3236783447607854 +3919,1.1468949888102522,19.285235052927028,12.03946068524534,1.8454855939205148 +3920,1.154347793368938,17.070669835306383,11.808739790715165,2.974735236728387 +3921,1.15361966986068,13.954670030395738,11.37911962144848,2.98862766973408 +3922,1.1571059737132225,16.926687532304094,11.93977828225807,2.0168112056267784 +3923,1.15770341239812,18.88427817579203,12.503601120338981,2.2810710238967187 +3924,1.1580326693239178,17.685736467422362,11.756704724472966,6.258696165906768 +3925,1.1583227169378967,18.88227135181936,12.577180983422775,3.25609000158227 +3926,1.1631678091597453,19.328543381630215,12.113354396803109,2.0549744944690587 +3927,1.1661439522198584,19.020472373897846,11.603071598207997,2.5015090631068997 +3928,1.1629269747067472,17.996480907714,11.579365900790847,2.8347060126189567 +3929,1.1622640694864201,17.777946705312054,11.816228844598703,3.956989555296 +3930,1.1642120899660187,18.73652761283025,12.313054608808226,3.07667882288649 +3933,1.1685004139875999,14.539145071510376,11.159909188316952,4.144656473265052 +3934,1.1666096876616234,14.47971081004887,11.409873529735437,3.1293488068662736 +3935,1.1646966493192163,14.951048451033722,11.664064414311373,5.851162673266313 +3936,1.1640213658932776,14.347016516148647,12.08125621840943,3.465394183941928 +3937,1.16384283568136,14.122292007689275,10.995018555092281,4.475340938330597 +3938,1.1655717153907257,14.110080408239353,10.674807880443087,3.9326550025759834 +3939,1.161387049118289,15.256827884139316,11.590876431619042,3.291939310854901 +3940,1.1583978773654195,13.770420277472482,11.34596343552015,3.461668616913772 +3941,1.1500857696891953,14.766225368924953,11.891704241701488,2.732295969305878 +3942,1.1538812298746135,13.106476525854264,10.767536696155753,2.988690884319777 +3943,1.147306753227823,14.675788896110761,11.319944834889032,2.8368045867639196 +3944,1.1434993308900978,12.598731445495542,11.847289329943752,1.8593257799064935 +3945,1.1413947074863005,14.674160562256324,11.536568162620757,6.939800860846662 +3946,1.139834375796735,13.606407051716959,12.05694292504326,2.4225469757357585 +3947,1.1420760629159146,8.325955959505825,10.587176587466201,2.7469306338332338 +3948,1.136326420012686,13.27682891027359,11.924404269193714,2.5094443184848907 +3949,1.133975996688319,14.207565745085358,11.837721453150754,2.4418712377477356 +3950,1.1336297594226503,15.339823717188565,11.740492348485606,5.58560291608584 +3951,1.135351654395258,14.213232448678252,12.397081602261995,1.9625975947841503 +3952,1.137965717506401,13.024796293797065,11.462659153441454,1.9012141925778807 +3953,1.1334903213097167,13.441878338164347,12.5587447919391,2.890093796292628 +3954,1.1342137377500734,11.700558017600976,12.42617666203148,2.0937277933800305 +3955,1.1391709059328687,14.558819641030533,11.664869747325364,2.7432581464533046 +3956,1.1383323378559094,13.36784840808443,11.218731379049979,2.265965110802734 +3957,1.1368234001752662,14.6441049956807,11.787592189820813,2.6787535631785895 +3958,1.1398225431548152,12.263678249337215,12.940477509151695,2.4857407146146384 +3959,1.1342342085393038,14.367218835336693,13.084030434081118,2.331472497878031 +3960,1.1397116754906564,12.976636529213268,11.07376370617431,2.3638466385457995 +3961,1.1359701602119676,14.006932057619277,12.110714241983505,2.2909905361412157 +3962,1.1357230143910584,12.63736386899735,11.974401784074361,3.06719811545471 +3963,1.1486124407769098,16.2061379069018,12.763004084725273,2.685656658901376 +4000,1.1643050295369266,15.825134878458401,11.42919808623707,3.929616064174604 +4001,1.1448965370848139,15.933511006635014,11.97741349031175,2.164397000027381 +4002,1.1429256173182192,17.628225605693306,12.4198220075483,1.6107727676906594 +4003,1.1490695537664752,16.096283694697426,11.832783726867609,1.7149850908465907 +4004,1.1456978849036297,17.071536577558188,11.731731378188568,3.9453548261061933 +4005,1.149946855572042,16.539919906052358,11.05834025033431,1.7414166842461871 +4006,1.146343602390765,17.318028835293124,12.042848665071823,1.8933829391776318 +4007,1.1445807812757542,18.61221244687319,11.813576635209687,1.7219918724640417 +4008,1.1478975005507481,16.12265425561803,11.861062603144573,2.999600759679402 +4009,1.141476074471397,20.828068230111917,12.418403989919437,1.2176631646661746 +4010,1.1414849935092586,17.203728076142205,12.26056753935693,1.6929951271941452 +4011,1.1430132395062007,19.952788067446313,11.859477697061934,1.6328425921279015 +4012,1.1476868380040368,15.668067170149891,11.376392689310983,1.9842050733081595 +4013,1.1437144702118218,16.782978831322055,12.183292892072524,1.5660414691238789 +4014,1.1394250831959407,21.086568122737305,12.337899613457777,1.797090359291656 +4015,1.146630821023986,10.244862428450773,10.771759744473288,2.2982268296375814 +4016,1.143181382842538,17.612498822668577,11.652630317323302,2.2709427541784724 +4017,1.1420763089816346,19.878388073857195,11.733251293194083,4.810849889041303 +4018,1.1452591062990436,17.547739981786613,11.41494763789112,1.883461736946403 +4019,1.1434849612643516,20.83875000119061,12.081155217940113,2.027689808823089 +4020,1.149244526244447,19.14459998697944,11.927252834120539,1.8311448916803486 +4021,1.1514779153069825,15.753285464926606,11.259020829273277,2.5131299762615806 +4022,1.1537972894823,18.770297119930138,11.749413298691175,2.029278993399803 +4023,1.1539602499365946,20.89519564157777,12.22560608825221,2.111278724684274 +4024,1.1516052154630656,19.897073276632913,11.829582778693743,5.159467320856354 +4025,1.152070987440158,20.318604799378008,12.410217578001536,2.7651189446872593 +4026,1.1586800876079464,21.32356778954467,12.09764506941475,3.093674576977241 +4027,1.1621859543236468,20.485558306967775,11.646114846550468,2.9065439515888225 +4028,1.1611616636375168,19.204407074992,12.0650711858797,2.2753899641128235 +4029,1.159814331819997,19.221473585711692,11.756904709144324,4.285148577036294 +4030,1.163284604076744,20.03864554090636,12.403116846518559,3.449225640156871 +4033,1.164603297957081,16.351254960931943,11.146986500895503,5.184657091560394 +4034,1.1674697985077438,15.905472541549491,11.022992283092977,2.689135925690469 +4035,1.1634378822327642,16.645944553951487,11.442269595903854,5.007808660132143 +4036,1.1626736526571275,15.578751744960961,12.344631169210157,3.0607836372250934 +4037,1.160469279016374,15.620070652959674,11.13375170277514,4.575483488135355 +4038,1.159955712210636,16.047332851715307,10.988271229560956,3.0286316781721685 +4039,1.1553109110066775,17.25212916556019,11.728306762636999,3.6388026467063272 +4040,1.1556255452776893,14.912699043495683,11.54551452580592,2.838068964282359 +4041,1.1469949933407173,16.573641204964268,11.939588585696377,2.638515323621303 +4042,1.1492942508403359,14.67992359588996,11.159286619922876,2.5826816268934514 +4043,1.1453249071209635,16.294658978788036,11.287652958553428,3.019901262908679 +4044,1.1412342939299795,14.461250284237172,11.906061439343334,2.255452742374281 +4045,1.136648937416742,16.928135715688025,11.831565128669848,7.189341908796801 +4046,1.1376267275788143,15.210571124576914,11.712972476123216,1.7883190341705055 +4047,1.1390243544005991,9.95539344702185,10.675157095525178,2.6986054868072142 +4048,1.1362133433616182,14.440615044010455,12.108043262909812,1.7802913212292768 +4049,1.1330627260023296,16.258808735447573,12.059120231499803,2.639446215895262 +4050,1.1320233723737674,16.792004770663446,12.041369069886805,5.279923297921558 +4051,1.130647072171146,15.841634039802654,12.76655000937668,1.9664355155098656 +4052,1.13638636734937,14.72377529286314,11.105455835863044,3.115966485781155 +4053,1.13400768096699,14.889579817420765,12.341792333641834,3.8362093851761934 +4054,1.1345576809057394,13.123586385259344,12.436343801527252,2.1535858988230934 +4055,1.1361479044788978,16.14859515130884,11.896487528056278,1.797710379856413 +4056,1.135226986858413,14.915056620510061,11.380623191193296,2.8676896246564727 +4057,1.1334244135558604,16.315065749701912,11.431115091667383,2.2790751427144618 +4058,1.1355746166759637,14.072317606495954,12.889345899394687,2.0258730906092515 +4059,1.1336251714701004,15.693063670452544,13.135230948209946,2.225802924981084 +4060,1.1375959668910538,14.266816693891512,11.117394238629332,2.155243224150036 +4061,1.1310662443894774,15.632323945079579,12.536725596327662,2.2443465790673582 +4062,1.1323692165012331,13.858227808782742,12.342150469935678,1.9023393824343173 +4063,1.1492404717348892,16.902868842880654,12.498359885719886,2.8694895447486677 +4100,1.1624333355151402,16.308837643545868,11.294453638667164,3.4081622188047187 +4101,1.1430446910579461,15.875362736687443,12.211876383349596,2.9578221347140468 +4102,1.14045940216763,17.99907444843845,12.62474359974701,2.121694575798897 +4103,1.1465041563399372,16.120011464590412,11.873161620752228,2.3955559305509464 +4104,1.1436323375327175,17.206445652147707,11.884251954213354,2.9787327642326216 +4105,1.1481611744941183,16.431390777556967,11.145902700343656,1.8594161912522296 +4106,1.1444504564024087,17.555030181444703,12.140381558186963,2.3529374716247577 +4107,1.1442911241368732,18.789550197743218,11.624978959857495,1.7136026098424482 +4108,1.1491990428801238,16.21079822001411,11.974368543748763,3.3528802184714417 +4109,1.140229218923107,20.31713507195572,12.79679213120061,1.6945221082691593 +4110,1.1414721813641573,17.442325294567166,12.051747944813815,1.8235316642633292 +4111,1.1378483113486628,20.141381133963485,12.302187811875273,1.22088955673388 +4112,1.1446523788626337,15.86399102195554,11.867722761585995,1.951457721693189 +4113,1.1389455591804438,17.693507442344572,12.19626945229678,1.8725701340324723 +4114,1.1409638749836992,21.149238373629473,12.42364332505508,1.9375013242011376 +4115,1.1434397278549726,10.94101612131299,10.71352764850255,2.0993419262065567 +4116,1.139005902209,17.424791363204506,12.03482465986822,2.148286096441857 +4117,1.1395212670969979,20.441583180003597,11.831086093042586,4.916004376215272 +4118,1.1427527703016542,17.583260862196866,11.27858331729697,2.188391289484474 +4119,1.1434737632679746,20.884813815292397,12.031530910801463,1.7178220908473754 +4120,1.1457419240692754,19.32177457091923,11.819247989139512,2.3530695355146047 +4121,1.1456808851776612,16.211856934684324,11.675141107773898,2.7062329702158694 +4122,1.1509358464781059,18.972784674470475,11.8383788758245,3.1551430244924994 +4123,1.1501669133068126,20.750418542541233,12.243201286577088,2.5906050360754564 +4124,1.1482576735638934,19.924251832175333,11.955255810910405,6.420704604542474 +4125,1.1529653182603072,20.604679323571357,12.227286330983677,2.583319846638296 +4126,1.1560889767368563,21.1445043411125,12.129483560922427,1.8091209636103487 +4127,1.1593507021853315,20.950494112543367,11.873385827111347,2.4270635508315452 +4128,1.1580099260355858,19.671864326026476,11.770185899436967,2.801549416195174 +4129,1.1577681097275607,19.723115652270245,11.51718915580859,3.2578511689341223 +4130,1.1608299041809176,20.28397416704715,12.31885557816807,3.043538661020432 +4133,1.1615333900773925,16.641762955896407,11.156819683906255,4.471644589650404 +4134,1.1663004123225482,15.933655759546458,11.207148188106094,3.3903675157966733 +4135,1.1595957722246548,17.231045481535933,11.227030562172027,4.353971117668482 +4136,1.1609823897762435,16.05443390032673,12.638249676612782,2.3308572705293393 +4137,1.157855097748347,16.119357548204857,11.180810267402395,4.299271802569096 +4138,1.1586967139428235,16.524182258070425,10.809021715114946,2.8749759164524678 +4139,1.153848911558559,17.54274569635302,11.711149879212048,3.1564312659967495 +4140,1.153274866412688,15.562286041077362,11.324578141101233,2.7122417564619754 +4141,1.1455830243799343,17.064171138756187,11.808989575643327,2.4394567294694527 +4142,1.1510974988694955,14.459061878216437,10.916144821835,2.6271270512151164 +4143,1.1444406393592856,16.517797743922692,10.98819740634838,2.235128111726008 +4144,1.140289828828106,14.739130928218168,11.918272988232196,2.4046226979570355 +4145,1.1377157042613015,16.72141304792595,11.678032200609966,5.177046399925771 +4146,1.1363184413966432,15.632993751917832,11.57790678429573,2.050479086177043 +4147,1.1365107111474992,10.4728249135497,10.62665648924905,2.332169759522661 +4148,1.1323730682369928,15.26440537219859,11.770535567437403,2.7145053035123285 +4149,1.1305663723919743,16.424088358320535,12.235835677692899,2.396363681805905 +4150,1.1298627721247039,17.413354773923025,11.686403176204267,4.618662735196581 +4151,1.129831415109427,16.097588189006807,12.486329209440878,2.4508063708931873 +4152,1.1345360278960657,14.839106101240443,11.239723026372202,2.195423147341791 +4153,1.1287174144592145,15.774921997688192,12.827233629358286,3.4310112729308497 +4154,1.131683782708957,13.326574736341053,12.624059714126302,2.188238886542569 +4155,1.1329779122444603,16.348823532103737,12.07081199089306,2.415299750916198 +4156,1.1323805294641986,14.906766690716195,11.788251515455356,2.7911549369719233 +4157,1.129199667848197,17.03268466309655,11.606805846198311,2.5968512661203813 +4158,1.1321521891809414,14.422099197383673,13.072464686937087,2.6150558943660687 +4159,1.127167602872217,16.89508618481836,13.145538662850447,2.0972599155092655 +4160,1.1334693246347736,14.633497272100712,11.270341041611479,2.617878032890734 +4161,1.1281025023342621,15.709601978452062,12.222229071287003,2.7127136923848174 +4162,1.126479466118908,14.455747373402302,12.581593156111872,2.1731474842597143 +4163,1.1447867992422638,17.421728415270206,12.764294030026422,2.402842523815581 +4200,1.1553064019530437,16.90046289696898,11.971452923371945,3.1762581870868134 +4201,1.1376978418867743,16.65770480296559,12.390335617605139,1.9510612879763483 +4202,1.1349291803812567,18.56161571699531,12.58670154682718,1.616449913609968 +4203,1.1425010009795467,16.050106130131773,12.04050896789598,1.8412091739245031 +4204,1.1352969054145816,17.26661302028524,11.912806603725212,4.312675517225816 +4205,1.1437766827078195,16.5586956581782,11.136708387595911,2.114853975297894 +4206,1.1385391269848995,17.739286085749423,11.958577754695447,1.8451240934061572 +4207,1.1399520570766455,18.76409728023208,11.580585067104392,1.9118445381420137 +4208,1.1416193079169488,16.093978954215956,11.930260441684302,2.5687961311617333 +4209,1.1339048534213338,20.8852878665165,12.838445731979768,1.3839985738047806 +4210,1.1360738713632472,17.456462698685336,12.367890751345294,2.330638504879234 +4211,1.1332623985235755,20.11289433771865,12.327062141243134,2.038058008402139 +4212,1.1394980610125731,15.99106327752304,11.881831130834097,1.5779590298699502 +4213,1.1338557778001843,17.246664594857787,12.359449514975525,1.8610111082357907 +4214,1.132656117185305,21.09544023238181,12.831896409025362,1.5444920411290917 +4215,1.1341562364887046,10.662112237054677,11.093873375357386,2.1856800388579636 +4216,1.1324278993120647,17.37867567730563,12.238647246899141,2.3885845082793407 +4217,1.1314966069864973,20.294294636248356,12.555549254602498,4.562565718480244 +4218,1.133693538899596,18.01058696014166,12.231009938402156,1.9459241140308345 +4219,1.1348702521314749,20.742716630653874,12.413607254928285,2.349604320925813 +4220,1.1381051708081211,18.82961357572705,12.157215198050729,1.9765703028168953 +4221,1.1423885580804143,15.753236694293259,11.703435358662214,2.397881513062952 +4222,1.1424100489545967,18.63112336860515,11.85772743157588,2.015078167623117 +4223,1.1433573716511904,20.529137033256745,12.20887678911489,1.5732680712911646 +4224,1.1443436331766226,19.394265093645835,11.724360416438982,5.404068809845634 +4225,1.1446766455519977,20.50688904886227,12.376638718758866,2.986882798291572 +4226,1.1478771584592458,21.135594807282157,12.113830608424884,2.2856130852082717 +4227,1.1510887736599744,20.678291834001463,11.692120161098451,2.8249154583399396 +4228,1.1474885003221655,19.67044650635392,12.011007229058643,3.051720334169823 +4229,1.149382566153885,19.25867011554654,11.893509583933954,3.3704930079672235 +4230,1.1523700685250942,20.11412894864402,12.355560035355067,2.2696584278743686 +4233,1.1542694573943306,16.2257933175599,11.51455897270348,4.121045612849704 +4234,1.1561545265980075,16.07757853842096,11.231203874596476,2.153861723481062 +4235,1.1539524732272457,16.43221157620297,11.856973554513578,4.156996640338672 +4236,1.1509809726743572,16.197749189984048,12.523704412409836,2.8077725663993496 +4237,1.1526644881753527,15.464146578090805,11.511668385587926,3.067363497143694 +4238,1.1530450488523318,15.850673504595953,11.41991577860057,3.1346520654269225 +4239,1.1482636721016515,16.834501810667078,11.790674319158489,2.871822085473457 +4240,1.1444871824307472,15.304570529806233,11.84246071528955,2.567710334701052 +4241,1.1380511338964996,16.334623299532815,11.938462711943316,1.852765930347946 +4242,1.1417403557111667,14.424823374867184,11.194431485419665,1.9932751587693163 +4243,1.1358949799942095,16.225222589796516,11.569660708535968,2.0994226692080273 +4244,1.135577823384041,14.187600428478087,12.516808841468904,2.681529680927835 +4245,1.127893713201505,16.84993658390092,12.036132007098635,5.198810017288713 +4246,1.1279969233607774,15.90634768983935,12.153462248306553,2.1134851167070483 +4247,1.1292926448256335,10.344554670475933,10.643110790596056,2.2528094163301753 +4248,1.1253584664936396,14.945410158619111,12.392323344450153,2.561349057069816 +4249,1.1238588404746765,16.316082277989135,11.97139553879693,2.3971701855935565 +4250,1.1213481718106342,17.127541593192362,12.122724134701851,4.695466812392064 +4251,1.122712668771725,16.085164488390387,12.745886000763832,2.112169950039602 +4252,1.1265871615738583,14.75963476152789,11.71393184918872,1.9238951303909595 +4253,1.1207513804477836,15.509529012971958,12.835529964030423,2.587136340571458 +4254,1.12391254604584,13.404656942599427,12.715978029487388,1.335778310528579 +4255,1.125716764488758,16.58446227631813,11.821630208109655,2.367828250651441 +4256,1.126989757811766,14.94993783585229,11.35823596394681,2.5363178643644044 +4257,1.1226950365784187,16.47998567715029,11.574597692075319,2.467458494752195 +4258,1.1246775150707555,13.990546125769011,13.055685218368215,1.9653418949177013 +4259,1.1216529862943843,15.946246903452673,13.303533423012134,1.6852942749481816 +4260,1.1253751629180457,14.815138543998982,11.246516139075178,2.608031419913283 +4261,1.1220068124685671,15.84840528459865,12.39827680601956,1.9316422351290274 +4262,1.1231941240446737,14.36934026518603,12.740341789850316,1.9674068440280867 +4263,1.1392639621965968,17.88002619993479,12.564377799782802,2.146210160345285 +4300,1.1610017658861946,16.037045661879073,11.504322411628609,4.395308485751201 +4301,1.141427121705395,16.294405256889704,11.946379509870782,2.8872265812552493 +4302,1.1393208508119235,17.745225433574014,12.265912294143186,1.982047725811967 +4303,1.1462886053544237,15.650717003806063,11.335168406487522,1.29112572010209 +4304,1.1412200722273311,16.78817725943769,11.632218484341417,3.6204389575221003 +4305,1.1435230758687203,16.19549794920844,11.081023398169032,2.0708340366123554 +4306,1.1425914056006694,17.42623368229722,11.580179212783309,1.416936345351439 +4307,1.1391466326153512,18.407973263017503,11.786530460097055,1.6167218708160467 +4308,1.143849347393508,15.922074327177834,11.740052497769108,3.4759913068709394 +4309,1.1355226780317398,20.71681871103553,12.635445284634725,1.8063243417355836 +4310,1.1384994006953366,17.10582639318222,11.971348997045972,1.8446035595424837 +4311,1.1339115564240434,20.07811548398831,12.207108933262697,1.7836636607758503 +4312,1.1405175415620126,15.880183125465392,11.309635387247525,2.0132389390608796 +4313,1.1353335505903488,17.2024932065386,12.163761100610568,2.1809474752023172 +4314,1.1349853031950519,21.071305435002,11.94213881199308,1.6705797129002546 +4315,1.1359038377952129,10.440598180577732,10.5592032211118,1.6733875628235215 +4316,1.1349645617532913,17.369086381700345,11.617418131835072,2.50132722007694 +4317,1.132763184448287,20.59267160345471,11.778821082109213,5.36924857525418 +4318,1.1369547790368437,17.359096777826874,11.346248923401214,1.5718887813012346 +4319,1.1365746852321608,20.765251766958922,12.188746077639825,2.9055259089693357 +4320,1.1385943900640219,18.937303390513343,11.896377626294623,2.298060281499956 +4321,1.1387494273365741,16.079194640229026,11.401416003367641,2.062708690804467 +4322,1.1411844447950161,18.9918120461323,11.526495834354717,1.9000986647678073 +4323,1.1432443956014249,20.594068993661367,12.28557053177327,1.954402414205787 +4324,1.1406624350751466,19.86346682208997,11.340295594669263,6.219129719022318 +4325,1.1422701547262952,20.704625804898896,12.177099949708143,3.170866026226083 +4326,1.1481912812897441,21.187374802115404,12.279911074292677,2.156538152297713 +4327,1.1496957517654758,20.846409636810396,11.817176981547187,2.4885129797504066 +4328,1.1493298952428423,19.346666264594088,11.870219730888882,2.5441357027344353 +4329,1.1481662004272772,19.35401387431141,11.51841850226497,2.8493523078267735 +4330,1.1524135166350655,19.750093697914217,12.279675219360078,2.518128174229419 +4333,1.1575095789288483,15.896403430104039,11.057153113196271,4.159008418750497 +4334,1.1566961697675373,15.860191575257625,11.187670780717644,3.6968269621286236 +4335,1.1547800891729099,16.71032725780819,11.195606665267917,3.8360137297049777 +4336,1.154087165569285,15.317981738064114,12.366542199355068,3.015904934057656 +4337,1.152199720336384,15.563766035771266,11.269182875952193,3.1501945912111164 +4338,1.1508977365647302,15.902831730956157,10.689414103468227,2.5603013746415235 +4339,1.14827875496187,16.967611257067027,11.489761266060919,3.8330523773575065 +4340,1.1482209255876743,15.098620178386561,11.423332641915982,2.510722394761927 +4341,1.1393076010713457,16.355836881721736,11.56224834286039,2.586644925669401 +4342,1.143924207373034,14.017496434042096,10.508299533569287,2.390120554813488 +4343,1.1369304998921752,16.124010547883277,11.56886045492455,2.4432861878975483 +4344,1.132460293622524,14.397480545388746,11.906544122673434,1.5354477154592272 +4345,1.1311559237571271,16.52532228794645,11.461988976972908,4.688279007144412 +4346,1.130939383589928,15.413512804356504,11.715156601777192,2.042725675135478 +4347,1.133786668980934,9.80040164646213,10.36388010554642,2.1910152836375714 +4348,1.1297661480462005,14.741945112760034,11.77948878904464,2.0945383554785932 +4349,1.1269742025957512,15.873202485589028,11.961593840804618,2.296553517777024 +4350,1.1232568832851748,17.33828310098831,11.58690815134789,3.9032652051735175 +4351,1.1259513257983302,15.926589817653754,12.084280884633673,1.7784922992637988 +4352,1.127526791733251,14.748201668828692,11.338240565321849,2.539267863252891 +4353,1.1243696806070962,15.123804367240453,12.356770048416267,2.8276265214323733 +4354,1.1249806246830678,13.221856646269103,12.587446675516354,2.362554845083205 +4355,1.1297708228236623,15.843014996541992,11.761671371685713,2.57236485671092 +4356,1.1292505365181598,14.402928019031128,11.366985204841681,2.523223138502636 +4357,1.1256653436558592,16.243767645968664,11.46348434334934,1.9740753326838218 +4358,1.1259773798662558,13.809012759015483,13.017279415956919,2.453949675245153 +4359,1.1228190622753877,16.001507204154564,13.366270869176027,1.7431054614662647 +4360,1.1280103567176496,14.29036303115511,10.74086207641594,1.9897612121099137 +4361,1.123385235852112,15.100339892265001,11.908450449509605,2.1674396228625477 +4362,1.1241652501459782,13.810063278075374,12.196200187451266,2.258324284509944 +4363,1.1409639833150689,16.991678164683037,12.889394847545638,2.7881516026085897 +4400,1.165802250047002,17.96949089688693,11.262155146618136,3.7937059536982756 +4401,1.146925094482002,18.20061825363878,11.841270071411039,2.463851983115742 +4402,1.1461408924427134,19.834109842881276,12.399733490439647,1.7394234016280203 +4403,1.1543629159936826,17.741429755611144,11.833014339669962,2.0660094927294876 +4404,1.146418312159127,19.270478443843185,12.098387222645517,2.7107829843981475 +4405,1.1535465709412127,17.93827961351539,11.219073965214958,1.7034953018385832 +4406,1.1480870677572355,19.408026208565015,11.706551443742953,1.724082926976975 +4407,1.1490291441399647,20.6701310940361,11.625988183878853,1.557476444425464 +4408,1.1539615777265735,18.109726889134905,11.599318863634375,2.5612489651589194 +4409,1.1440163859472314,22.66286127865508,12.714626750414615,1.8124122647244019 +4410,1.1427743256449918,19.55350083625843,12.486597834944545,2.3325818379463623 +4411,1.141381113518454,22.355714569407457,12.221992002733048,1.426213076432978 +4412,1.1461550604162158,18.129814421696416,11.385320032271837,1.5173206641182317 +4413,1.1434371790319042,19.33266517515803,11.996715326655504,1.4269031303954762 +4414,1.142375346722761,23.14946317548247,12.151349915481925,2.3495941143818024 +4415,1.1441729455736807,12.685102863920724,10.50373895534018,1.8644291909463413 +4416,1.1401127112198828,19.39699840176138,11.748882875918804,1.8755715253045808 +4417,1.1396347599674255,22.527598394929036,11.858518734000834,7.293713462480543 +4418,1.1428958910944504,19.522522310588474,11.41705986788476,1.748294399745791 +4419,1.1426032754012352,22.834399637073073,12.293395857881098,2.46623639501651 +4420,1.1447412200286922,21.3365330356533,11.553422106952272,3.448147732236651 +4421,1.1468410380870682,18.036233117578046,11.559521888988538,2.760780228574258 +4422,1.1503886627125153,20.723473116706558,11.536635780827828,3.00403486495335 +4423,1.1511737945806177,22.368130371934924,12.471035180761051,1.435454614943236 +4424,1.148018723335185,21.527691770775633,12.13492637066083,6.405213886460944 +4425,1.148775619681228,22.842766343314622,12.271661305668605,3.133293938744326 +4426,1.1557175812092075,22.842689142990814,12.34293090081375,1.6483075286487678 +4427,1.15812246152049,22.854311527575966,11.6916279105171,2.5309011341256022 +4428,1.15611137487681,21.156345286722228,12.005486203423034,1.668796357487776 +4429,1.155015443989106,21.427385292069328,11.558588625641939,3.4154445269257123 +4430,1.1572814237500013,22.50647843473206,12.493562539574041,2.113752669737121 +4433,1.162462352258658,18.188287486353662,11.41910422057258,3.783650913518533 +4434,1.1634083306073515,18.07151651129376,11.320740787841789,3.321426663289801 +4435,1.1579794308348426,19.431758472676762,11.442451192091715,4.690311679663279 +4436,1.1584658400950887,18.444770120500145,12.655237248096153,2.392624072101043 +4437,1.1590973518791146,17.831017869474984,11.342902281815125,4.760534627109407 +4438,1.1592373588302967,18.04390019025441,10.829929657272071,2.934141780427443 +4439,1.1534397317060583,19.14141374588272,11.759954334555,3.7737865488903983 +4440,1.1505322272748413,17.773135039619447,11.780667388132374,2.96707918039056 +4441,1.1452798388618421,18.549642515274716,11.94220210087272,1.9787974382071774 +4442,1.149086677788485,16.60012965791787,11.136395181338514,2.7663959401880964 +4443,1.1429042510837946,18.24018027527761,11.813623295852471,2.4799614902755525 +4444,1.1395034438644065,16.803261315966974,12.140978463742575,2.1373739946810577 +4445,1.137414553466806,18.97908048969041,11.442630511779306,6.3572220061466975 +4446,1.1355304192528248,17.505576484055528,11.840277431361278,2.923730286714082 +4447,1.138837438771768,12.225234050412912,10.556956392137579,2.4872066041285 +4448,1.1344445459285617,16.759774291965908,11.666250260731182,2.3849416977929927 +4449,1.1330584994459092,18.39221170674225,11.886525845313772,2.5854410734553923 +4450,1.1293093591508332,19.299466079699187,12.167473450019212,5.61052212393035 +4451,1.134199904967275,17.954147828889294,12.314280973792183,1.9822734638877941 +4452,1.133789233154544,17.288429439845316,11.071397959158173,1.774035996331604 +4453,1.1299214966353748,17.18955491597904,12.660897002391083,3.3916230509769667 +4454,1.1321241141660592,15.491393635788418,12.709667661894203,1.3959155122774383 +4455,1.1332270693409108,18.30611145319565,11.984987999857587,1.7277841181993385 +4456,1.1339685059960616,16.756324692159104,11.38624261787849,2.589907338322712 +4457,1.1318849459122768,18.51255583155393,11.325021754123577,2.5220030318667783 +4458,1.1320473054095481,16.295077735636657,13.051838260902095,2.0325340098193494 +4459,1.128888138045456,17.334377137892673,13.565549464191221,1.4869085818854912 +4460,1.1349441906230033,16.141622293716484,11.053771040123134,2.2263182829247294 +4461,1.1282171177552807,17.19083050162981,12.255088516172323,2.1866661603849753 +4462,1.1292025212018957,15.847936195338514,11.955205082362362,3.017618305775028 +4463,1.1439155132976588,18.228430294030776,12.27076261907031,2.807641301565442 +4500,1.1658508977354296,17.4031679079699,10.825376174827888,4.108165307318443 +4501,1.148385523857917,17.28188019622521,11.514108594693948,2.2295060520318937 +4502,1.143289789989301,19.754760724078317,12.427179711724099,1.5796380680014002 +4503,1.1520242838610375,17.52634014961039,11.560904704635696,1.8817280584296556 +4504,1.1456626368007083,18.698671112873754,11.583069556483307,3.5003874233075845 +4505,1.1515102587444923,17.542022816363573,11.064432854291221,1.8743947241750931 +4506,1.1470317734203301,18.582303899636265,11.53290385271587,2.0962366072418916 +4507,1.1466946751602387,19.86932302931481,11.44732840137471,1.259950942386608 +4508,1.1487266294183585,17.52430897939902,11.751056183305176,2.301423629991337 +4509,1.1395888799752323,22.115791330636196,12.654084064365845,1.5586662715458466 +4510,1.1391205367444173,19.276100888686827,12.14152496190164,2.3406462724286814 +4511,1.1407150477099914,21.62152006796834,11.84815607248441,1.541388117130743 +4512,1.1457789706627601,17.108039389090226,11.156916878541633,2.066247371560219 +4513,1.1380595841930023,18.571319410234683,12.181400468403673,1.4124574389099727 +4514,1.1367542154996944,22.488412358087327,11.987648580543427,1.7358905416177337 +4515,1.1393032106809584,11.711901398139394,10.61349203807333,1.982070523485051 +4516,1.1361323341318081,18.800902137201717,12.131832030707063,2.7657482199226404 +4517,1.1366981736195878,21.590252048307548,12.031553377479803,7.323718523418265 +4518,1.1378383503867695,19.338131130218088,11.309673224720953,1.5399724674351727 +4519,1.1385156362300741,21.93189882389407,12.2302414944164,2.092870401213503 +4520,1.1419366855435016,20.56218797723952,11.69438901174337,2.3862738242706056 +4521,1.142723363121667,17.077385928805185,11.59412942004863,2.299358277443966 +4522,1.1445809028863028,20.257905452479203,11.906311406589362,1.7672293176904526 +4523,1.1435807408927532,22.245882059681914,12.122256448378607,1.830775193266352 +4524,1.143194212843296,21.27566076340318,11.885113869178031,7.253805295422905 +4525,1.1447720270488406,22.048574179772206,12.06130351380001,2.9858358235203557 +4526,1.1487239859262524,22.535259435366385,12.180640490907294,1.8633665893905627 +4527,1.152078376377427,22.16499980446547,11.599410620060148,2.224302240961367 +4528,1.1541955446396708,20.569332048009695,11.683936531396288,1.6036605048395698 +4529,1.1509990478670946,20.43045200705583,11.615219770392576,3.9927479322286272 +4530,1.1522701160308249,21.821046521839534,12.10357495747209,2.5344283842534088 +4533,1.1601971129803552,17.391847753949186,11.22346933607676,4.16634176797641 +4534,1.1588697973513353,17.171705537080054,11.185555851486331,2.7268364085602705 +4535,1.157122048146163,18.141009515760377,11.47880659568257,4.431761400499354 +4536,1.1575119774863454,17.28252514843471,12.190028106676412,2.7410052199018122 +4537,1.1544074806648965,17.68285277059465,11.29159275010768,4.204321214933817 +4538,1.1582761750485298,17.131336700370472,10.672920207493148,2.6374805533928045 +4539,1.152040077346151,18.453241525220808,11.472197802004871,3.718101658740828 +4540,1.1482560115535445,17.033463388164456,11.47750278993217,2.196432653205689 +4541,1.1438909286898475,17.989518471581114,11.819326797069174,2.1223088006659445 +4542,1.146023268415321,15.902223527158299,10.862046212154784,2.7038260406918453 +4543,1.1383073111425326,18.01380837844781,11.243005122760799,1.7967686084706225 +4544,1.1371657225401572,15.855677065068232,12.003595436272537,1.821006654604391 +4545,1.1338413353384185,18.36741349360128,11.264498316263882,4.133494291547371 +4546,1.1337642291449737,16.851332465442734,11.782032973133186,2.563885104224346 +4547,1.136145699982163,11.914114906124976,10.335420446889687,2.7726711616453166 +4548,1.1327524950517012,16.376626126705766,11.725607521343683,2.0549128977414646 +4549,1.130309630921495,17.747495011023723,11.989268809828143,3.141647842862509 +4550,1.1266335745528557,18.647244316544217,11.83249981592272,5.307096719218778 +4551,1.130147524931904,17.638025834869758,12.17007147022213,1.906001131431989 +4552,1.1309141204404296,16.785257869901756,11.306608195541013,2.0870576263782112 +4553,1.1273652753881076,16.7263361730143,12.597669674273796,3.8261214399868093 +4554,1.1277457898456742,14.87161716947955,12.48540586624656,1.9380854424304725 +4555,1.1315074648744956,17.884119587857448,11.872279626425739,2.5227103760275953 +4556,1.1321993154187744,16.12760895999104,11.313445976050128,2.0936797055735035 +4557,1.1284192406636164,17.90421412938493,11.13629539720398,2.8466948385113438 +4558,1.1278242926762834,15.843606866062006,13.207666628719958,1.9983735796338111 +4559,1.1269696018647026,17.34127751769405,12.887164169080547,1.7808312929618282 +4560,1.1300595052284461,15.689031945788448,10.974067745856347,1.9075558333094604 +4561,1.1267213378505474,16.66023501295147,11.942730471715674,1.8290837847089463 +4562,1.128388741152455,15.190706565012038,11.876900317931936,2.042306634574268 +4563,1.1401415094569267,18.60531932748762,12.363859253432427,2.3484882034337042 +4600,1.169790228677284,16.562359611396825,11.533049016975422,4.421911989398801 +4601,1.1530530411855016,16.77069582021632,12.237025462063603,2.382873685091685 +4602,1.1527124580728236,18.73913170612399,12.866283723638933,2.146828055434219 +4603,1.1589616786772718,16.81952480808427,11.92176042409521,1.7789168853638713 +4604,1.1544955242962576,18.22654275167426,12.039733861761368,4.545830485055672 +4605,1.1572811726990395,17.15081822947412,11.405499744384468,1.7428287412573351 +4606,1.1543485428685918,18.352363492891403,11.559767267209683,1.3695104341568431 +4607,1.1516595680725066,19.810656375782152,12.03456504849021,1.7229250866459054 +4608,1.1570652335933342,16.62285385406316,11.842023167569604,2.4748278958201477 +4609,1.149157730848299,21.085140068134866,12.469634004582387,1.6786871387755793 +4610,1.1461572929729138,18.36284100657578,12.310573749409457,2.367084986239556 +4611,1.1439841561314008,21.068728333626495,12.605740386468282,1.343810791306549 +4612,1.151946202037174,16.443603768301767,12.03691819150083,1.6075643051195965 +4613,1.1447606673317816,17.876740388874175,12.409057279657324,1.1671509645170417 +4614,1.142059344018131,21.759132427024422,12.383967229023048,1.670249918650259 +4615,1.1461429323909234,11.681174168617657,10.660659742743729,1.6746031507977273 +4616,1.1427866270385416,18.393683064307996,11.687075125025975,2.6068769487485772 +4617,1.1428564796035863,20.71756920961785,11.964604270694059,6.680708231720669 +4618,1.144202171891226,18.49734469275847,12.080790208560506,1.355629610467855 +4619,1.1434081128300342,21.68448401395127,12.486213156368352,2.2189657239094087 +4620,1.1477037625691042,20.13624170173721,11.522592450292775,2.536441367424856 +4621,1.1466938571732788,16.59888381941316,11.811388200288524,2.466679539196916 +4622,1.149046620472217,19.619616503155914,12.339564463722871,1.9138898208377104 +4623,1.1485905156603127,21.200581288651737,12.732160661558762,1.4675486567334879 +4624,1.1485069936453205,20.411446971432696,11.99182307904365,6.087424824543065 +4625,1.14978522367153,21.325735581820243,12.574743239472435,3.3066349696321398 +4626,1.1551792286214781,21.949964346528144,12.2093509743663,1.5652974567236582 +4627,1.155407950975235,21.96055971851357,11.717145112165904,1.7194963680731379 +4628,1.1563038278320603,20.07124297716291,12.178219208657547,2.1736146897602406 +4629,1.156747714782179,19.97180416096667,11.779741439704905,4.21094723934794 +4630,1.1613608750375517,20.819150790380487,12.361774843363714,1.6638713389796271 +4633,1.1658236217375906,17.058039281556,11.519126981198728,4.948291485560611 +4634,1.1663669814029227,16.682192116425178,11.694706930475206,2.6272815516642365 +4635,1.1610603040720262,17.940904016378873,11.938062619279691,3.8659809176539435 +4636,1.1613575979783053,16.960584804458218,12.833520568397573,2.194005314376145 +4637,1.1609925525224347,16.90007109556074,11.619784405941877,4.422521926288842 +4638,1.1625586298711543,17.248008097600408,10.862284223109278,1.9855194444492368 +4639,1.1595752954532497,17.949538282961203,11.818370396555126,3.692454385891148 +4640,1.155683795839909,16.28104913446227,11.83830966792445,2.7304769282399333 +4641,1.1480223626852113,17.03644607692304,12.11121091063705,2.0908281887617925 +4642,1.150718870728762,15.575904935031474,11.148896856183027,3.1745299902148467 +4643,1.145160259686207,17.22751594997523,11.719074048145096,2.1536041339005374 +4644,1.1448944349766417,15.077379920442768,11.782199163958213,1.6033097475834204 +4645,1.1424389906406647,17.515773664983985,11.834181680410314,4.900336473093609 +4646,1.1403166520799999,16.508595719257414,11.907636943003087,2.5481885452288404 +4647,1.1421455166598689,11.088731218425496,10.706256327329209,2.67213216820243 +4648,1.14061349564592,15.782404656662433,11.759028737175548,2.2902013356876063 +4649,1.1378926163315926,17.038601650178006,12.087643465926526,2.1048288305554066 +4650,1.136155662162718,17.847469393583687,12.0885619963303,4.04355163256252 +4651,1.1368138033634527,17.083355810971458,12.609947335903895,2.285339128490426 +4652,1.1379617736314962,15.865724274362845,11.68431093342291,2.454483145684875 +4653,1.1347959399785947,16.351075976268,12.62382704453958,2.275019460696404 +4654,1.135793190364482,14.241629102407224,12.927072626703877,1.613342492859813 +4655,1.1374599665887966,17.06229166071826,12.194571816186949,2.6899538288009572 +4656,1.1370819576453803,15.761589461762219,11.811468049305175,1.7508938828386225 +4657,1.1352927126152796,16.94666178410357,11.82057426886381,1.8416742626273357 +4658,1.1372238775061307,15.225324134889702,12.804091907405416,1.8024754191528607 +4659,1.1320440754306818,17.07025360746815,13.332159332740979,1.6541448039222566 +4660,1.1368364538484064,14.933240812910233,11.38945953705373,2.5598093546638587 +4661,1.131534093202208,15.730062084667898,12.007339998001486,1.8987803298144645 +4662,1.1301649616349978,14.382105097468505,12.387814742651697,1.8515461130139381 +4663,1.1447515138405273,16.98968106705698,12.490630851189072,3.050965247741058 +4700,1.1707627415605757,20.455280909163644,11.267523791414886,4.52334492352043 +4701,1.154985523271734,21.03136181182257,11.680107956679636,3.3135059853522444 +4702,1.1509411385993225,23.079337405080057,12.112633236673174,1.550370228958977 +4703,1.1569346601102974,21.296054665856758,11.71331236365327,2.0970313278968944 +4704,1.1510720533573726,22.401825685827475,11.810864767167352,3.5651563742186525 +4705,1.1570174279238428,21.1895217632403,10.993949548407594,2.247892231157645 +4706,1.1542454341514043,22.094289079607172,11.542901360484281,1.837346007317687 +4707,1.1485763728958935,23.662943850521433,11.554113687900482,1.4018963328280136 +4708,1.1528533091334483,21.049136657849417,12.1024854436388,3.0285052274536626 +4709,1.144153031702231,25.83938863035006,12.561582184582104,1.5318959875239226 +4710,1.1449228983065753,22.4375827035516,12.038819343517426,1.877456213668019 +4711,1.1443531421701745,25.210264984095506,11.648817094551486,1.4814631187263188 +4712,1.1468692101862394,20.690165906761333,11.607904302425851,1.4027805152317574 +4713,1.1440406690317773,21.936694054343608,12.019257490914825,1.617225230131823 +4714,1.139328144255443,26.32763270150636,12.125902261876888,1.9466308721692631 +4715,1.141789385775178,15.427587675000472,10.92106577756362,1.9129535605074393 +4716,1.1385955928747191,22.390792213185893,11.829873380051977,2.871652405238545 +4717,1.13593856308141,25.107028158771733,11.66763534236939,7.7453930067791426 +4718,1.1413408099034554,22.431752399242377,11.438436526552128,1.8355021945835612 +4719,1.1399455061387027,26.327637366853487,12.0729045912369,2.484948497187249 +4720,1.1427279263219516,24.292625023633043,11.793037775455948,2.850651982826998 +4721,1.143302251030153,20.87443450354715,11.132425767792453,2.0582831046274275 +4722,1.1448378053029888,23.82595239858534,11.442597079142415,2.2171822019601444 +4723,1.1454978353776142,25.571274860669178,12.115075929997692,1.6804595627148882 +4724,1.1436245213536063,24.599667675676592,11.854218625933143,7.902754989220286 +4725,1.1473674548195465,25.589505915227242,12.115796210506483,2.9962470954663996 +4726,1.1501526178143984,25.97509724893048,12.045561963087236,1.715870927588551 +4727,1.1514812920484416,25.913290126796376,11.584980332385886,1.7027442721019548 +4728,1.1530469571393116,24.598666231002163,11.542515054260713,1.5416093090188268 +4729,1.1533297587739797,24.140598037001038,11.709926542642485,3.767737251360627 +4730,1.155681020514095,24.932802783892328,12.24362293700085,2.2544488024726794 +4733,1.1613326387193261,21.075272314515754,11.063636869860188,4.671586204517369 +4734,1.1623184516743446,20.675243972344603,11.344776816407624,1.9589749649528574 +4735,1.1586813913239118,21.407632376631188,11.558453555412374,5.588751599372129 +4736,1.1608721966309257,20.693373934563866,12.47011273973674,2.9384772596030575 +4737,1.1585319987715959,21.07068380991448,11.533289306108584,4.43451016523146 +4738,1.160449248050036,20.924902928347638,10.539591337800525,2.8542864078480514 +4739,1.154855698124468,22.343118039361155,11.6937528907057,2.848575131633157 +4740,1.156205062542175,20.08262390335431,11.142453667638884,1.9451885715090116 +4741,1.1462032465439465,21.258726893427035,11.642568676069384,1.80411405710764 +4742,1.1477268351800225,19.77107225462949,11.034809111774209,2.445915377129197 +4743,1.1442681260829772,21.473161476952267,10.975838809029518,1.6927017086361664 +4744,1.1432350136573544,19.385240083702897,11.712808988207026,1.493151439077239 +4745,1.1371838365433686,21.929088833411054,11.487979689029274,6.705268376594202 +4746,1.1402170641557368,20.590921673307506,11.51320328910387,1.970099612611027 +4747,1.1391095965841331,15.356136122455249,10.603952365970402,1.9713995732654264 +4748,1.1371530833064785,19.94760770494785,11.585435141086053,2.0611180824175217 +4749,1.137140557062055,20.958372435937353,11.92661677262737,2.043533171544706 +4750,1.1326662535094667,22.248487655522755,11.659025119145783,5.06567263858538 +4751,1.1337139851156575,21.412830811588634,12.22237403658986,1.786646599990214 +4752,1.1360007105965562,20.111250409698595,11.13437314438569,1.3266256105938068 +4753,1.1327019863136771,20.41592449932105,12.447862683878427,4.096547089193651 +4754,1.1341450434378342,17.965475223865802,12.713832057060703,2.00989544444869 +4755,1.136873326505766,21.273082791603553,11.58924450614554,1.3739590414926284 +4756,1.135925815741373,19.64117446478357,11.37071913468226,2.3648193326639393 +4757,1.132002957148383,21.522890286095922,11.304080051783272,2.0895131249098915 +4758,1.1322847815728998,19.447209478405902,12.90472268975903,1.865248374343423 +4759,1.129468411460073,20.79686980616693,12.965865177631922,2.372155998529086 +4760,1.1340117324656762,19.442021425172285,10.70891697498504,1.817149378374176 +4761,1.1291221096098825,20.0800131477867,12.030932480047063,2.0109186854010965 +4762,1.1297914404194342,18.647286620561278,11.861417580302634,2.160110672334827 +4763,1.1447803844847078,20.809082903887848,12.164294041110058,2.3296760948769446 +4800,1.162578996979858,17.358712221656674,11.779344660037275,4.279126114992553 +4801,1.1452875108697087,17.864030404914637,12.013714651210325,2.7584772132897655 +4802,1.144530961142548,19.605172550481196,12.369256275379586,1.926643454168147 +4803,1.1502170704509396,17.475124913435906,12.118438502710294,2.0511671428582647 +4804,1.1442618354412348,19.09089584875938,12.138932514678332,3.206554843225666 +4805,1.150669354627471,17.872604685465184,11.017742561515874,2.827499085970528 +4806,1.1446366584365162,18.63913134343865,11.976117176591028,2.590870453110192 +4807,1.1444231453039322,19.92860188181894,11.81767943725164,1.9359040940689314 +4808,1.1472440090154985,17.22504094232503,12.232030887074549,3.2869706821122584 +4809,1.1392423142647534,21.602016738095575,12.554099397990285,1.4736593838207306 +4810,1.1373937183603324,18.63855740262899,12.53846869244504,1.7239088499842632 +4811,1.1366349599505035,21.35439803814047,12.015862476509087,1.1608775038951284 +4812,1.1409299486876348,16.871881249825385,11.721891281188714,1.7068308440331041 +4813,1.135769225393294,18.294504140073023,11.889479903364347,1.7707749747632258 +4814,1.1309610633059743,22.420786908222613,12.608952874280773,2.313443536850505 +4815,1.1363681872866969,11.957966009642321,11.008636956877284,2.2747295261148808 +4816,1.131095851756101,18.509811792181566,12.155514359118001,2.8775920862768527 +4817,1.1326284302719822,21.404505322328806,12.157135340977545,6.0567380740817605 +4818,1.1344430504013983,19.111387692174713,11.76647825035649,1.6362547598286405 +4819,1.13396445478731,22.078701786339302,12.436349859986775,2.894206697876631 +4820,1.134245142118029,20.498703238256013,12.096839370700632,2.0436584252324472 +4821,1.1343866440184909,17.241026504053856,11.782645860459203,3.4228569974865164 +4822,1.1386773017640905,20.282974561026993,11.74063292593594,1.7050866401541378 +4823,1.1381135279318328,22.034744534917106,12.287713323477035,1.6149485470905618 +4824,1.1379545657136978,20.692989066014995,12.018012083684294,5.456848614271663 +4825,1.1401781757102059,21.72441842179122,12.319469118181317,3.3889896438753473 +4826,1.1439848930276393,22.143555129772235,12.517834202773038,2.118757381679802 +4827,1.1449986364493023,21.88878677416572,11.934532214950572,1.9067982961764496 +4828,1.1452359320088599,20.61437668479879,11.968345370380717,1.5839669398620206 +4829,1.1442450101569877,20.231155539786233,11.96251074458504,3.827746669557901 +4830,1.1452728757705397,21.38531947247789,12.685845186223457,2.1121611205327433 +4833,1.1553783761844327,16.511423316251122,11.473392501089466,4.213467869751706 +4834,1.1540484042729524,17.34381166645505,11.491987728988851,2.7076562304778764 +4835,1.1509066716738998,18.328084425873058,11.75863976087561,5.112001193943253 +4836,1.151297766269848,17.339207494603595,12.582196886687145,2.294918937158977 +4837,1.1500261843963793,17.108427941790318,11.527916645939865,3.2878429734290937 +4838,1.1540753305848188,17.197836252747894,11.036859393952417,2.781263789059716 +4839,1.146236401751191,19.06371057181328,11.756001207538663,3.425022453772985 +4840,1.1459952661149275,16.51914097852619,11.57886670641177,2.3625283614463486 +4841,1.1428009558304044,17.479342188670934,11.915796303813659,2.420217672396105 +4842,1.1438511777359863,15.42909653119074,11.452329797788005,2.511853435706363 +4843,1.1373700485574147,17.903067864265847,11.622225546308908,2.5226023833994042 +4844,1.136742462176013,15.933235076525003,11.890641413903746,2.1289989825104616 +4845,1.1309975160211885,18.093108196260683,11.624354686488598,6.146468563834622 +4846,1.132280472271434,17.09865038439348,12.275736569203568,1.8759948494940417 +4847,1.1343202792183076,11.489993099879761,10.987390053829921,2.6125719871239723 +4848,1.1320310185598323,16.109930581744717,11.932260275578859,2.583255690841115 +4849,1.128768816267949,17.248924795001994,11.711769948498485,2.6389144201638515 +4850,1.1277409348138496,18.494096120890124,12.128401741232935,5.193935452751281 +4851,1.1253846367955664,17.54310828119316,12.528199354117158,2.526065324489985 +4852,1.1288314838279856,16.541462162531555,11.33500882433148,1.9806839345787848 +4853,1.126670185445677,16.77847239340678,12.73713482107367,2.5395513560596394 +4854,1.1271732666599728,14.622041872006477,12.654240128402492,2.049467391406525 +4855,1.1300226401541884,17.373329507250695,12.030129545376791,2.5129041153975624 +4856,1.1291431955483173,16.20887225560526,11.278199257679505,2.5998492953003955 +4857,1.1273039102252977,17.833622111104884,11.626945380223802,1.9856836686202584 +4858,1.1255264094060762,15.269107515979153,13.237177409322257,1.977270170087998 +4859,1.1215970046930623,17.30315859858125,13.214282956234573,1.7738398838732556 +4860,1.1241124806944063,16.010252364889794,11.0271225338428,2.3434371984970324 +4861,1.120916440527041,16.45313253336447,12.172312177787903,1.5924180648510693 +4862,1.119853847731,15.189472180736976,12.460862196440521,2.0106956263483484 +4863,1.136255288847922,17.931965358927183,12.363436591549545,3.400347444711977 +4900,1.162519574477958,16.669089005034436,11.979599213213994,3.5897839729835233 +4901,1.1444678768454342,17.06280070756714,11.951120262016564,2.474384211892659 +4902,1.1426524127659288,18.819387488792813,12.634691878413845,1.8349727237353897 +4903,1.1511028642396062,16.54169405605001,11.657479958722337,1.9254218834814074 +4904,1.1428784567359878,18.17059944558659,12.277419381671667,3.761120205725164 +4905,1.1496895203121316,16.800407311112192,11.301389251816024,2.163076287564505 +4906,1.1433075912712796,18.37778168900507,11.82325460295948,2.010355487170242 +4907,1.1427831729787836,19.199859469552646,11.46961368015463,2.3125649053475605 +4908,1.1433960401515986,17.170241264552878,11.97670543885663,2.5533434431025803 +4909,1.1380735759698728,20.81302742529005,12.840842188725837,1.5607924274200973 +4910,1.1348338421098225,17.878396237102525,12.565755045789084,2.3016662434432043 +4911,1.1340870635068052,20.722826078556203,12.335715708289698,1.705225303416115 +4912,1.1382186501669755,16.5879703867775,11.575881419290887,1.7085635264376815 +4913,1.1329639195503416,17.604153238786715,11.945868601914741,1.5508563668290767 +4914,1.1328215225436238,21.315018764484023,12.221899898127973,1.4882470803047203 +4915,1.1348800071464011,10.778306689723998,10.268554883471408,1.916696409574121 +4916,1.1317890016815026,17.942811739044267,11.992111598436837,2.875092632531592 +4917,1.1308376715554347,20.72108924499678,12.106948428819358,6.612681404151828 +4918,1.1325598627118179,18.21432243137059,11.61952159068009,2.713617803887419 +4919,1.131776082966757,21.67223785456907,12.121246235322161,2.7629965697144665 +4920,1.1332076445482386,19.756683840520598,11.960539861882646,2.072611358380566 +4921,1.1331730964588873,16.71519874945281,11.378728937128024,2.7595483750959002 +4922,1.135380666582575,19.559203779622806,11.902874040267147,1.2350041060311538 +4923,1.1365100663164915,21.355182708629723,12.241353440286494,1.8744958193700305 +4924,1.1364307537188993,19.642058461815594,12.094304186463784,7.150309772657065 +4925,1.1356437166508577,20.906859606856106,12.567125670192816,3.2274832896271177 +4926,1.1410678028100367,21.6515834391356,12.509395739642002,1.7398342160954532 +4927,1.1451193419760506,21.294036150713808,11.76714078725471,1.7606094641579986 +4928,1.1438692067772003,19.824081352530747,12.013265949309739,2.1787860025133874 +4929,1.1436162924909707,19.62679457851942,11.741384279613886,3.1493174565031703 +4930,1.141295864724001,21.028648979867995,12.79604915632702,2.5599831352236837 +4933,1.1510696455791594,16.245608976319822,11.3242529925388,3.9075060938227097 +4934,1.1528617600667461,16.329390557258883,11.517518994500985,3.042980159712105 +4935,1.1482024275793867,17.506331283690233,11.520384232948963,3.9119152508738706 +4936,1.1502696119727007,16.48231657740413,12.441335113152126,2.171317027806719 +4937,1.1508623296010496,16.178771691877746,11.517659031540164,3.5050856277467806 +4938,1.1528373910179628,16.433922722332582,11.057437764437518,2.689266719613268 +4939,1.146559340670402,18.013481522158166,11.667909516685516,3.628130881148997 +4940,1.1467461048025294,15.780867311521346,11.369188982075421,2.7888101940991943 +4941,1.138753915954976,16.83824119074628,11.843066491819146,2.130570441307579 +4942,1.1435110671352116,14.579703441422765,11.182494167237229,3.439878495148517 +4943,1.138015941395076,17.02746319078996,11.745927426817463,2.978191963600813 +4944,1.1354071247066115,15.179006360840612,12.06973521480679,2.4094615320896056 +4945,1.1313593854582482,17.40946474797572,11.672339880276489,4.697938408154819 +4946,1.1350753524096624,15.914409535881614,11.560892376385311,2.3926630843448193 +4947,1.134938688103088,10.447581535618374,10.90935830063985,2.150078041012821 +4948,1.132414325389864,15.099170677776732,11.720906220871104,2.3872684947105975 +4949,1.1294348913450776,16.7070269454454,11.92232921396057,2.6415810932466273 +4950,1.1261422956684828,17.93211860483276,11.864504559069475,4.469197040297129 +4951,1.1262588479483704,16.843234872499107,12.344564636317909,2.2021217057673073 +4952,1.1308311947280123,15.353875697173454,11.316931620982428,2.2831131990200637 +4953,1.1245782028884863,16.042993808302114,12.675296616734132,2.7673046949042113 +4954,1.1245349422209414,13.870225862919472,12.411667094752886,1.9240811601000376 +4955,1.1302075772559057,16.83339926115533,11.841158754521533,1.7944213349628928 +4956,1.128534279027484,15.396790499613116,11.56227908735995,2.4335513996900273 +4957,1.1224055540161428,17.328206866755046,11.966029304421138,2.808068336031633 +4958,1.1265056686708397,14.431205808757692,13.206206400515786,2.1253555991035813 +4959,1.1204208551675037,16.484674620999254,13.23950704061074,2.029812812149791 +4960,1.1248666546915806,15.006955868790588,10.906336415189326,2.196084497600752 +4961,1.1200955506745642,16.031253680286664,12.447269797038574,2.032736216213723 +4962,1.117304568062387,14.437443548958365,12.320596986413758,1.8338957058402297 +4963,1.1341965849442788,17.14904392345352,12.763618644569071,2.1817748580397125 +5000,1.1613842061486002,16.619805623671297,12.017386764005913,3.5534455347253506 +5001,1.1414574262517578,17.04624234399041,12.066086569045021,2.0267720059924232 +5002,1.1393252529669446,18.616347724675695,12.576505919436922,1.1328885487063673 +5003,1.1485630181569144,16.61090865947876,11.775430410903038,2.2476831048158523 +5004,1.140984837900101,17.93332170472091,12.116867203125823,2.7933256832801887 +5005,1.1460552705169322,16.725761753983566,11.336005319611337,2.939625649775233 +5006,1.143760514341214,17.720844226782006,11.847461191700772,1.3017748064807484 +5007,1.1392740745894017,19.38189556683979,11.779461721092186,1.6992197583729376 +5008,1.1438764553338665,16.92431571561419,11.757922366800315,2.1754256416388182 +5009,1.1353707111443958,21.238466378060778,12.96503680059942,1.9609437309249418 +5010,1.1329048452687178,18.093750416387913,12.527650770546742,1.9185829961200216 +5011,1.133665263993009,20.481833190539223,12.410229252664065,1.764284854393185 +5012,1.1383733712289859,16.386274667432442,11.56756574368043,1.3919351962903412 +5013,1.133449860328933,17.544639702502163,11.810528612887449,1.1011501713398877 +5014,1.128763235027382,21.803286016163895,12.36832945415352,1.9883448571185198 +5015,1.131992103944025,11.198086635167998,10.825642598339202,2.019304539766506 +5016,1.1274668881833265,18.2747209076203,12.014355807744218,2.497616779089166 +5017,1.1263719238618621,20.958450927621605,12.258924964913115,5.233292484720587 +5018,1.1288640626903756,18.33123270551493,12.04283730832996,1.7884371706599491 +5019,1.1303574684994948,21.32437766373679,12.214256497467046,1.9049267410070716 +5020,1.1322154760104641,19.93402311586889,12.114050227632253,2.149532374133183 +5021,1.1330527708680422,16.953909734699447,11.271523404332886,2.0948036196958237 +5022,1.1319838430305156,19.664238853173277,12.082845313755309,2.053977200698069 +5023,1.1326247737397976,20.973785492587012,12.621463985073898,1.2921754023436396 +5024,1.13324153086598,20.01766062146732,11.60952595819272,5.56272515936882 +5025,1.13567619689143,20.93467541236857,12.171824677747248,2.4359564385138484 +5026,1.140242192525015,21.567625670326752,12.243409398204088,1.7551243405487271 +5027,1.1415371262635674,21.342810940621714,11.839791376708735,2.1881238188084042 +5028,1.1386386050784956,20.043495260977352,11.716218899178884,1.5463179657152741 +5029,1.1403253414127725,19.791830790725474,11.537291981413938,3.468973556306956 +5030,1.1410290151131324,20.556232188894782,12.52850121484612,2.328595258605288 +5033,1.1463038908381376,16.549971476014065,11.188325485889957,2.837225209308238 +5034,1.149846854401677,16.102628528219842,11.140015172500048,2.6382088754169333 +5035,1.1457269782519202,17.325801955349682,11.366794939361341,4.016842652188553 +5036,1.1513179793535129,16.263439605695844,12.216792674230222,1.9215637446342593 +5037,1.1484982588033228,16.60050073737548,11.219082031477113,3.5511166572259825 +5038,1.1495149492721617,16.62401292498244,10.692377948577668,2.2064724105092752 +5039,1.1436236694729647,17.870426865838134,11.714960362589068,2.755499350061809 +5040,1.1460817434309516,15.550390984893376,11.68156927967701,2.422298212203084 +5041,1.1400202512803634,16.619188737809818,12.172991050757659,2.661430606338646 +5042,1.1410034865422596,15.025547212653747,10.989169755794668,2.289482883423028 +5043,1.133847284281277,17.429467527533827,11.456485861792295,2.488226781777485 +5044,1.1339717520618666,14.95668457327501,11.996843750940794,1.846239810424844 +5045,1.1307996320670421,17.537474612757308,11.996383124260463,5.308994145884865 +5046,1.1307529871184696,16.27085887538492,12.241888130985922,2.391604427336501 +5047,1.1315958327764348,10.995667481645283,10.682529376546867,1.7037051266609793 +5048,1.1270319500504244,15.989937336159933,11.755078979907086,2.445731688338811 +5049,1.128189631519847,16.89714203881609,12.244720570975844,2.017101374632064 +5050,1.1263184878140369,17.726902028671116,11.627426067622777,4.447593003704802 +5051,1.1248194788308865,16.807630834573093,12.3682738998788,1.9186940561074297 +5052,1.1275462953760462,15.761383449513476,11.159756288808206,1.7740696967270126 +5053,1.1224398513245109,15.872096400315314,12.865066344919454,2.8337374297511744 +5054,1.125285050335778,13.662396061297128,12.743368615328341,1.427139267511063 +5055,1.1279640291244877,16.598134501587385,11.833540689963721,1.5231541727974263 +5056,1.1235339189941236,15.57535737060845,11.339892111795209,2.0839472799781675 +5057,1.1210713515576554,17.012397502868662,12.010998582668975,2.6808490115224206 +5058,1.122076927115696,14.684550643642389,13.751716802014945,2.1203312977811883 +5059,1.1185720779722566,16.858333823218118,13.186244483050759,1.2772621678949372 +5060,1.1213746810611056,15.07556814519539,10.892268666751272,2.3004815420714406 +5061,1.1141369973228905,16.521652608291188,12.32120727625373,1.8626899747572516 +5062,1.1148463818884664,15.001087318149583,12.348986647704063,2.1889696618408725 +5063,1.135111960960257,17.351463114768805,12.63099529915022,2.6729182819067328 +5100,1.1575516200699616,16.25920599033104,11.991975505361003,3.2087571519632716 +5101,1.1389075535642386,16.313071710110226,11.975058910472102,1.889977887086956 +5102,1.1398019043136989,17.685233618598474,12.269486556783853,1.8296930282910575 +5103,1.1451638057118205,16.227678094871386,11.926186156498316,1.3816663634947752 +5104,1.1388682444629015,17.20912569554327,11.992947356571536,2.618224393651724 +5105,1.1454282682723906,16.434155435736415,11.319196346065677,2.3586454363571208 +5106,1.1408101158729482,17.27787860583269,12.247544711342965,2.1304788277729867 +5107,1.1400627452959873,18.792238192125144,11.744695190444132,1.7272163502296158 +5108,1.1419490341263545,16.277386070107465,11.864070738885404,2.874894791889501 +5109,1.1335508578769382,20.896558798438093,12.705340965825464,1.4783224680432483 +5110,1.135132905013289,17.432086153141547,12.379520433104677,1.8396733449216915 +5111,1.129926662107195,20.010793736762885,12.720603306984463,1.3265223716162817 +5112,1.1402593087266117,15.387227418233438,11.926012792773271,2.138743409146244 +5113,1.130779818708158,17.08862745283384,11.776757083294267,1.5099592725118296 +5114,1.128276222452616,21.00814163660213,12.39228654030119,1.6871402746954507 +5115,1.1323539641301594,10.37043515625137,11.019339380611536,1.912752320831099 +5116,1.1273770532100045,17.59677745867396,12.046482863318769,2.2712471589069096 +5117,1.1273515621828236,20.298423805763296,12.479049892263951,6.170811702274446 +5118,1.1306140032020437,17.77678261009265,11.885746477588473,1.8897937187080402 +5119,1.1298918108261413,20.871621868318215,12.597355333200413,2.4191175488774057 +5120,1.1291801221250308,19.36337602865022,12.211770126130466,2.232482544224965 +5121,1.1294042268547413,15.970291318884126,11.788042982436458,2.534829718929347 +5122,1.1362273462871195,18.811756286862238,11.920385785139551,1.4719067016753276 +5123,1.1354691246893125,20.471072400042257,12.50741211281772,1.8012904919161934 +5124,1.132523052036527,19.591427784573032,12.177070523356521,5.692563410152183 +5125,1.133547035886261,20.444749944828665,12.378643971683195,2.3242937869644984 +5126,1.1367025729242828,21.05359176647173,12.544894137282489,1.62689827978638 +5127,1.1404744542447907,20.432852567413082,12.158333061620631,2.3033406407740045 +5128,1.1410820234870978,19.249744288482077,12.156667994648574,2.542158068230881 +5129,1.137720693140066,19.444245672015143,11.769538910702051,3.6108925745415483 +5130,1.1430960149371854,19.756748451682466,12.614720245662028,1.7182903401241207 +5133,1.1459445081130757,15.845583917299962,11.866751002634349,4.792953122357512 +5134,1.1484235234999964,16.04885744706638,11.597673293129338,2.384062321568105 +5135,1.1482823329957004,16.29441762966852,11.875866165085887,4.607090515203221 +5136,1.1486515371843011,15.817403930941442,12.793463675476536,2.6172120008646735 +5137,1.1492523780501727,16.018963360929725,11.071051165520352,3.9746339074099604 +5138,1.150533966740516,15.960784340828202,11.05684983180135,2.7689380414657982 +5139,1.1453368281761447,17.573374355577823,11.985626803975522,3.5390579318293858 +5140,1.1480713729089989,14.810546025701626,11.91510143912421,2.752540777157741 +5141,1.138480685820138,16.49487997652043,12.482661441400749,3.3574887403535874 +5142,1.1436534937146905,14.785173046229367,11.31302723565405,2.44491841777988 +5143,1.1392893674662925,16.151841695487793,11.343729289982285,2.8019652929703294 +5144,1.1375725749952563,14.233334405609698,12.106555047941127,2.1943760570484496 +5145,1.1313943866981901,17.234554176284895,11.963638613799683,5.739448304416541 +5146,1.1341108303765781,15.773312421163904,12.21509490388609,3.288641449012233 +5147,1.1367340996099577,10.16703115182459,10.872952488309235,2.9090752431857894 +5148,1.1319234343057527,15.125999547128002,11.648402482625642,2.501675161570822 +5149,1.1301845969081705,16.269485875105463,12.223104166017789,2.3388022387879426 +5150,1.1266523206116588,17.3996528269768,11.870041540794572,4.301908678874366 +5151,1.1280957415825776,16.05977501170026,12.472472225168367,2.335296147601533 +5152,1.1277316149584948,15.167103731963637,11.525424257272274,2.368489318412411 +5153,1.1243924745654437,15.261809118204082,12.903773302847659,2.9564658091182068 +5154,1.1271153915724095,13.315135056711949,12.480087222196259,2.426850164540724 +5155,1.1284099799188454,16.320081001737407,12.025463319300401,2.2668865335903803 +5156,1.1261453760808167,14.699818605187772,11.892740607894787,3.0002449839129324 +5157,1.1236032812187586,16.449424731466642,11.741617986531281,2.6993316265751996 +5158,1.1223879418410534,14.0723965150958,13.238559021338604,2.36261849964574 +5159,1.1172488527388076,15.97718675488559,13.225784474051283,1.4544596980706843 +5160,1.1205130491726136,14.559813796802972,10.986261829470521,2.3114780536786825 +5161,1.1153227054124115,15.375016635075792,12.239470858506497,2.2474860716357106 +5162,1.113083751494445,14.330062410174802,12.523697316147464,1.8318191416995622 +5163,1.1276652797716118,16.990393036783306,13.143425903058771,2.7031068030987697 +5200,1.1521910919496448,18.22055528158492,12.21012716020147,2.97696258570689 +5201,1.137584861970639,18.188066259221458,12.215630738031312,2.8309716501961693 +5202,1.1324322012225896,20.31467234134089,13.05034650474511,1.607308069322874 +5203,1.140713467209357,18.04465675770012,12.073073607888315,1.902018764518197 +5204,1.1372405882212748,19.060405167872513,12.219247327826388,3.5801448604387938 +5205,1.1437791969227438,18.16205440255234,11.508700832491263,1.910737619964573 +5206,1.1379227633152684,19.670214983912388,12.057532079533424,2.1271265122213308 +5207,1.1358354737099525,20.73613346356351,12.142677131819404,1.2298339781776269 +5208,1.1377843022733767,18.47555517931649,12.668255752731033,2.4507335023591073 +5209,1.1304776395418998,22.386972818509456,13.174009283102574,1.3516983872740862 +5210,1.1312504195056525,19.479038741560114,12.4201774760016,1.5771074412078743 +5211,1.1316288514341828,22.09282648126962,12.558357717607858,1.4174491341199176 +5212,1.1350094630367151,17.941084651138254,11.970582602431296,1.4771304141677648 +5213,1.1301373481525971,19.543115410424203,11.77050951612784,1.6051516295203525 +5214,1.1270226508952859,23.454913717798483,12.284955961406295,1.7676541919580357 +5215,1.1312437703595615,12.467531846745414,10.563746995408444,2.1432860489473518 +5216,1.1279945350699985,19.545343178550212,11.475922977660145,1.7482971480299536 +5217,1.1274916114528848,22.34534582572296,12.347400125374913,5.2863735460690915 +5218,1.1297993525073322,19.88995942273202,11.790815380697904,1.6664139128393172 +5219,1.1274592745422862,22.941615641817062,12.711132187516736,1.7171700758133404 +5220,1.1310003975621326,20.955836052113145,12.458607721000874,2.2484567053129534 +5221,1.1276908581552685,18.276396458140265,11.865614250368901,2.4661655440854395 +5222,1.1312031011034596,20.832350656468613,12.436982997926664,1.5198010694272248 +5223,1.1298202306198424,22.663232011462775,12.801715303845366,1.3371564530479598 +5224,1.1294984242882984,21.648252793792427,12.19854558459983,7.490584240670248 +5225,1.1316999147323654,22.592620914997475,12.443161873129812,2.0845289774742044 +5226,1.1365323917053123,22.97617105598551,12.204086935000895,2.0380748343982487 +5227,1.1385787886858099,22.714249431481498,11.931954217162664,2.17190948181028 +5228,1.1364971077242931,21.608809850228525,11.990819654412794,2.0536480175574616 +5229,1.1359586069033185,21.429574911049308,12.312818928859596,3.1119512878732665 +5230,1.1386968617965754,22.183578143189663,12.814973121837616,2.124816947923955 +5233,1.1456411899475716,17.52537991767951,11.418362196979249,3.770921029787251 +5234,1.1483228612481517,17.510071902217646,11.460700046535889,2.426677189232293 +5235,1.143961870095415,18.73660838955182,11.936360004491839,5.017834497697682 +5236,1.1444364370599245,18.227314563165802,12.783127531215863,2.0328269863552757 +5237,1.146441262802894,17.89400683514414,11.321326924015706,3.9891214881052495 +5238,1.1471266489934726,18.232922763174056,10.878436941876453,2.1083604014988344 +5239,1.1422309891684845,19.86266595152413,12.119134810532985,2.4906763186980885 +5240,1.1398956435783616,17.64366955363512,12.118136332133924,2.8693588493670243 +5241,1.1373362033190806,18.629587640730325,11.821080892079882,2.5853573739652718 +5242,1.141255888502502,16.637005378430814,11.439734229190998,2.7163673671299584 +5243,1.1343525090129931,19.008516008168858,11.625077206637952,2.408942870062366 +5244,1.1345232543006003,16.86559840834988,12.03085282472183,2.2152483315190126 +5245,1.1313175409403462,19.04289676411851,12.082687508130602,3.9386983015559025 +5246,1.1306625066137597,17.73133617412407,12.248098242103454,2.6104033627961303 +5247,1.1346736894102714,12.33472871911312,10.879618559908964,2.2401055978597992 +5248,1.130237562074452,17.186589567266488,12.077118673474072,2.2420451446084826 +5249,1.1284842621451288,18.394115344468517,11.971988487132048,2.8260050340170553 +5250,1.1234207364040314,19.58640332353558,12.33769654453988,4.2756582205698415 +5251,1.1242501684090613,18.618561424264662,12.860341811197662,2.164908138678719 +5252,1.1271247779302256,17.015056672623466,11.56518273449979,2.303634269777491 +5253,1.1223499418851115,17.566914986538123,12.86554697103315,1.9933810661520472 +5254,1.1239217587446346,15.155903620383711,12.515640480740565,1.9859659777551997 +5255,1.1255221128237431,18.704547690992552,12.167368477581736,2.5471954063226474 +5256,1.1201069021960215,17.37269597564138,11.871816280594492,2.541056233059717 +5257,1.1208373392262314,18.61671055153901,11.82882078974569,2.4075792866794594 +5258,1.1207428314751322,16.467592798576092,13.05573583259796,1.7559554828226072 +5259,1.113875666792474,18.644963563956306,13.374560018361326,1.6302912736051671 +5260,1.1191680411886469,16.78091856033929,11.104524593112597,1.9567019677363024 +5261,1.110245592962042,17.868328084112388,12.37850326520969,1.6540831313922257 +5262,1.1098732754897533,16.786818588135155,12.435598108054952,1.9678017050392966 +5263,1.1255188154026086,19.115430044608495,13.091288837735842,2.7602780213286153 +5300,1.1597007004320306,16.53733447577308,11.964393086523025,3.0658955201238616 +5301,1.144482421831576,16.753914389947994,11.904672949894742,1.8101937681012958 +5302,1.1442516296991405,18.673886912425186,12.585093934371145,1.6681162830771188 +5303,1.1498669710302571,17.17972912465254,11.772885814098917,2.2414261672739753 +5304,1.144695662561544,18.129703923305854,12.133868618925163,3.4786676970461117 +5305,1.1529944978707092,17.611037764797803,11.318302141563475,1.8501344725868207 +5306,1.1482970530130514,18.116889251914586,11.904394114490184,1.3216451916296614 +5307,1.146331560060243,19.83287826092927,11.941288748689994,1.2828550484538097 +5308,1.1480027019974979,17.499236433474245,12.111622775730963,2.78058039938421 +5309,1.1402894967357,21.725487042901886,13.132859454880688,1.2841763611994157 +5310,1.1411226834850967,18.43311435210572,12.53545996639029,1.6067407849656548 +5311,1.1399882067203537,21.184671141953483,12.191025649039036,1.5628311468475902 +5312,1.145113364713338,17.0016830690245,11.955155966472915,1.309121692129893 +5313,1.1391960512523915,18.366478658067706,12.209055794980172,1.5392974297839497 +5314,1.1379640649209317,22.096853129777294,12.486973684150945,2.123069532884912 +5315,1.1416274450003867,11.618387270437479,10.694187368802941,2.1518752323270625 +5316,1.136375093248441,18.690182807050913,12.152391495956978,2.2226144732081767 +5317,1.1368111361674946,21.443882205788903,12.578740392932135,5.369355177602746 +5318,1.1364309616115047,19.26641066897746,11.89204624608592,1.9058314987470582 +5319,1.1380396629672076,21.905065377527,12.702352662062859,1.965477159173376 +5320,1.1397371504983307,20.56649147207195,12.291965135755346,2.152967143023007 +5321,1.1379192083267966,17.276535470738576,11.93886246754131,2.3304389773391083 +5322,1.143487304989946,19.813571015098024,11.969230921386357,1.5733852831735857 +5323,1.1430097135554673,21.85701743377189,12.608630465985977,1.9979178712397532 +5324,1.13806509211041,20.911333715042847,12.189768134457566,8.127049373805136 +5325,1.1404629509330404,22.16916183776501,12.383682098849555,2.728803742368818 +5326,1.1442789589095377,22.595300216368216,12.513564924408072,1.606586607248353 +5327,1.1483828865515768,22.210405455370474,12.052442744236274,1.83617454362767 +5328,1.1466551812907784,20.88168656300559,11.93695095707859,2.291666230425995 +5329,1.1463296818744717,20.289363196648612,12.018502560549345,3.9271268410792963 +5330,1.1494558540069097,21.295804820211544,12.585273843588087,1.9835762676425632 +5333,1.1530889871981407,17.37205574858958,11.710517918301415,4.388391262101777 +5334,1.157444446720422,17.48122892417691,11.686332967671397,2.9708481374243583 +5335,1.1544436506177425,18.221618643382072,11.774584764345118,3.8023404659187023 +5336,1.155818126970904,17.22493511396028,12.938272929398034,2.2317210677125328 +5337,1.1561209121335394,17.52568749174126,11.731810452391622,4.291548447983812 +5338,1.1599189201031666,17.369855364049187,10.976768275742982,2.8006867440809096 +5339,1.153860966820575,18.944397887275496,12.083356547129465,3.4263814007567692 +5340,1.1559019193355358,16.55774152189382,11.790618910172512,2.83767075753717 +5341,1.1497109450084666,17.690889725391063,11.96698368240705,2.599551585689382 +5342,1.150855181349278,16.403658158696445,11.820902677628029,3.167432396014813 +5343,1.1479788312434203,18.22427893275281,11.687541247612272,2.55411438728468 +5344,1.1461880290949,15.769651650770637,12.213337340110206,1.9667379138823464 +5345,1.1426598837891209,18.526696918635547,11.625120365519244,5.369092479426055 +5346,1.1441670612533938,17.148334829651937,12.178769862901545,2.2987575927863566 +5347,1.1438279033659389,12.19482939707418,11.057871803028196,2.500561174252444 +5348,1.1414862143762003,16.988336263281766,12.111373310403026,2.7649102386852675 +5349,1.136856220088946,17.988283841020813,12.270785946178417,2.2952523434113825 +5350,1.1345390298045874,18.68444551023844,12.124969762779596,5.687515739748106 +5351,1.1352377221706402,17.525886624261776,12.678207330270858,2.09117525971408 +5352,1.1374544989479616,16.388449336485525,11.414280662176134,2.1383353948064734 +5353,1.1336929309925161,16.340333483616995,13.089861931117548,3.2488335286794245 +5354,1.1339605451410026,14.654208887708702,13.021177072160109,1.7357448384242207 +5355,1.1337887402635336,17.700074306914015,12.014952315513538,1.392839534922741 +5356,1.1341666169868199,16.100492029598,11.421909580741122,2.7130481002273803 +5357,1.1280502514607016,18.154802344460016,11.611412460161805,2.2132992273948418 +5358,1.129094939281736,15.48729290580875,13.382605614171952,2.097162943734606 +5359,1.1284250406717455,16.741949755860464,13.045642187145246,1.6182933950648248 +5360,1.1278900780244074,15.706621143275221,11.168311231415856,2.1328217559601583 +5361,1.12123105544026,16.358407356558903,12.136483620792482,2.185932191991603 +5362,1.118958310527709,14.832898132160754,11.885475076856052,1.9701137761226597 +5363,1.1336157511104936,16.841978671494605,12.587855200709306,3.210064211700653 +5400,1.1494348168756927,16.313895264377337,11.8956341963181,3.754127911194234 +5401,1.1320768600819708,16.103009130536336,12.217546349392157,1.9375921949133545 +5402,1.129614511785938,17.972689251583358,12.517708598801995,1.7912370462142366 +5403,1.1359282485658708,16.33186755703396,11.85528651715891,1.7981420854019505 +5404,1.1287941483055042,17.670313960674708,12.162798706765368,2.671782568768056 +5405,1.1362230924425814,16.446656388186256,11.430262389832144,1.7711749157405507 +5406,1.1333343256657804,17.904722586845892,11.646492699652194,1.8793961348448704 +5407,1.132614801907764,18.849733355659303,11.975298219983953,1.725344438801052 +5408,1.133502837763883,16.341931584750657,12.53626957913101,2.189697765491257 +5409,1.1250669746976947,21.065320468620026,12.741352081009033,1.3495750229042565 +5410,1.1278205258005995,17.542109171948656,12.610669041156308,1.5749627961255803 +5411,1.1254229322199902,20.431198542504898,12.339007383305043,1.6508593154930007 +5412,1.1323596782095775,16.189628062175544,12.016512267810963,1.5267429713404048 +5413,1.126544053434936,17.523993715896236,12.5245824392659,1.5566000684254158 +5414,1.1258227139042598,21.767966983117827,12.375239233875462,1.9222609237458395 +5415,1.129662360864086,10.617369947953554,10.9972596052638,1.4392584063172198 +5416,1.1233207771674159,17.79846934828544,12.22425929014954,1.7497721854228985 +5417,1.122351719393987,20.606580108132174,12.216050509996187,5.87012756704655 +5418,1.1236138337756627,18.51664238633009,11.71991576113389,1.1361838197966334 +5419,1.122645945098188,21.167195695370168,12.746734105767299,2.1787300005945474 +5420,1.1263615079212048,19.67160952014121,12.258798702484237,1.7677161581401304 +5421,1.1263636685015004,16.38259552098806,11.832276817462162,2.070454926653561 +5422,1.1290947243984406,19.20107803765876,11.921574095303663,1.3663446573638398 +5423,1.1266529161158116,21.12389950963582,12.73083282028853,1.3568685691572873 +5424,1.1257599819939343,20.237159125973626,12.027685044543585,6.633323898115314 +5425,1.1291949945406379,20.89855455178625,12.475742259411811,2.30526924813582 +5426,1.1332464266069702,21.25503561336332,12.862839567624894,1.912880048524602 +5427,1.1334558298314548,21.51411400721333,12.2879368078118,1.9631812026210047 +5428,1.1344881497804076,19.77582147598846,12.064267255492236,1.6539971301799439 +5429,1.1332275655581445,19.57980092881565,12.239293489602709,3.050840937034993 +5430,1.1335855404820163,20.72367143821206,12.668990636777695,1.7465408778075868 +5433,1.1392603545470164,15.976547013545899,11.66503859383732,3.3262939801992575 +5434,1.1402218891222466,16.292723298414483,11.589455664105742,2.786789425108604 +5435,1.1399171330521525,17.17576686827397,11.891124693129555,4.079322084303432 +5436,1.141122812662511,16.23549204488905,12.888058156835454,2.3062834292186123 +5437,1.1429394436625695,16.209589195799357,11.687388908452816,2.738033647839101 +5438,1.1434112294973455,16.494858387793,11.218377970051844,2.0756300459778165 +5439,1.1380028095716326,17.847786349041638,11.868754661541804,3.277389047463575 +5440,1.14058529477552,15.670456042009384,11.686976777099138,2.5324182533136406 +5441,1.1360483737644884,16.45370885954107,12.177584515414623,1.8948938227063352 +5442,1.1390694214752806,15.062813023861441,11.375168016002092,2.8340438520415465 +5443,1.1342767076961344,17.16055311294779,11.534354454505165,2.4346893160461502 +5444,1.1333542889622659,15.327034381636523,12.138952724973363,1.6869426691691076 +5445,1.131221664583173,17.458968299438805,11.378579270155708,4.212877258392321 +5446,1.1322986559223454,16.65264953909083,12.321856631950654,2.1094699779096753 +5447,1.135431516195854,10.871416600823292,10.65661865840234,2.6516488306303936 +5448,1.1281168321889958,15.797809992980328,11.823839841860488,1.980131034243116 +5449,1.1258705817601553,16.942920965463745,12.155927275905604,2.622480933324378 +5450,1.124536121778585,17.635940835750226,12.22290214480054,4.840274650083926 +5451,1.1238636727358016,16.70129692028421,12.30154184196315,2.4338616955417476 +5452,1.1243480577279412,15.569224349207046,11.743771005250686,1.7112222795736922 +5453,1.120722350109226,15.740361303886036,12.879072965034679,2.485021492650078 +5454,1.1209467476842976,13.588096892517642,12.574446602691001,1.6587430812361716 +5455,1.1215962280421605,16.54587688533721,12.209206334326598,1.6149537020488027 +5456,1.11913793429403,15.286031998181784,11.536484072416297,1.3910279703487978 +5457,1.1139625136260238,17.401114936945625,11.966734188074966,2.2211564509695156 +5458,1.1152696880930457,14.728511561160596,13.112485092002395,1.8492725669040415 +5459,1.1102221745977565,16.489638937042834,13.078894917899413,1.0389215840771564 +5460,1.1171004624180503,14.971180951337427,11.081652997412759,1.8023183838260095 +5461,1.1080041407346382,16.0109104376195,12.491217322975684,1.2891576488177614 +5462,1.1073306609220392,14.742338783219417,12.303476167999996,1.9818575693259968 +5463,1.124745403366538,16.77816533424467,12.341431681417943,2.529159977455272 +5500,1.1601432938334195,17.377010571585068,12.030087040155985,2.8238300069263085 +5501,1.1430573145963348,17.809375952168946,11.764457323677421,2.076681619787352 +5502,1.1405328944167463,20.142828831569588,12.242099036296539,1.781321081596245 +5503,1.145659156252324,18.23118505292996,12.17161307533347,1.7081388508224284 +5504,1.1431160944266014,19.29168031769248,12.060244232444445,3.5853598647958536 +5505,1.1480778790244461,18.568338342229197,11.213938631537978,1.6920160791340055 +5506,1.1455797660240337,19.830777062430116,11.838158767199827,1.4736958654004155 +5507,1.1419168589965416,20.638808275284017,11.957691334647535,2.035556695247136 +5508,1.1470532759812238,18.665112318716815,12.30481795625546,1.947496175905917 +5509,1.1423480792588498,22.56944389337014,12.586589659475234,1.8474800958045476 +5510,1.141083786088883,19.506438968343538,12.727532881243162,1.110390861746411 +5511,1.1395167793613286,22.22512920114355,12.494795599822671,1.631022565005506 +5512,1.1457285301846614,18.071039451573004,11.7321248128516,1.4577259754871286 +5513,1.1406084973702355,19.45011996194396,12.00106607196101,1.4216526055322438 +5514,1.1371712939322542,23.89132262743323,12.168003740499081,1.5271721510168021 +5515,1.1423159588416154,12.93041254675492,10.920962322528261,1.8581168039632092 +5516,1.1368034667829507,19.8790557807629,12.556045902682785,1.9600722651262972 +5517,1.1356667524893338,22.429123014566645,12.369380431081511,5.194033307314327 +5518,1.1376196018726723,20.229456241759134,11.740572404857394,1.6017666579563166 +5519,1.1365916865567869,23.514561882087012,12.415053790765086,1.95059693080959 +5520,1.1398756785259734,21.701821349455603,12.167464797994487,2.060283166485645 +5521,1.137669040638062,18.619588774822105,11.797322422896412,2.2978337438461307 +5522,1.1428708933112366,21.08461924899993,11.89851659372821,2.0498875720504666 +5523,1.141191147503721,22.94112753486597,12.529855970959064,1.6294046172588463 +5524,1.1404552880006276,22.06604734901359,12.28182866047279,6.796930355055578 +5525,1.1428185935264383,23.213988234184267,12.775424880796912,3.3891580410879323 +5526,1.1484678677601565,23.516948913837375,12.664357862833588,1.391207574832488 +5527,1.1470640996506158,23.569141449802252,12.310504370077908,1.7985817926656575 +5528,1.1482869774877702,22.002667123947475,11.696498884838666,2.4689673745855822 +5529,1.145917474239098,21.7261023169494,11.82802772565346,3.9422322818734976 +5530,1.1472728052371566,22.703937138584262,12.593150758826154,2.0309964194617183 +5533,1.1533971599285837,18.682757077400463,11.762807017242453,4.222433126960639 +5534,1.157687081715841,18.02722519742142,11.525755577095198,3.0019711519468264 +5535,1.1536217453071809,19.39016599358332,11.580907984772187,5.522325642671731 +5536,1.1534381622960963,18.421261903115447,12.825340661013417,2.4322854429285723 +5537,1.1558569453625636,18.636959857642285,11.42162268740925,4.476434186665868 +5538,1.157422198728974,18.630692097057374,11.158808371747952,3.085038970227169 +5539,1.1569779383599552,20.169759104905427,11.91245539986163,4.086338374235899 +5540,1.1558093763823043,18.12075066569082,11.795401895789572,2.9546567502640966 +5541,1.1498946450568037,18.79388507586657,12.117685260037634,2.5634756841752786 +5542,1.1534154609046279,17.516305426998795,11.588966828473968,2.8631320753319427 +5543,1.1509799726236034,19.24655188121276,11.924124638887823,1.9493793292100026 +5544,1.149717267788183,17.38336199800573,11.970544745415891,2.411111996598556 +5545,1.1446526454038788,19.812867358775886,11.97831704086497,5.868327909391096 +5546,1.1483491958288867,18.32216425395539,11.993111437370013,2.7890165650530254 +5547,1.1474966374219866,13.201856201838142,11.138945777978961,2.5949762900332303 +5548,1.1440720175848451,18.0324640071543,12.116023235578265,1.991611255450613 +5549,1.140724004619952,19.042311049176746,12.05774849275292,3.394947085055973 +5550,1.136848808282457,20.216713090772746,12.17303275177173,4.297337844135522 +5551,1.1357186262509165,19.033643369447656,12.81713520117632,2.0473992429200343 +5552,1.1395234511386905,17.546063863124754,11.41666788325129,2.3738754680725633 +5553,1.1318673744262393,18.113049213062272,12.726027113346184,3.1057741914201666 +5554,1.1309778831233745,16.039021428710257,13.084817414672786,2.28188162869481 +5555,1.1329408790378188,19.221698929643356,12.231701114051427,2.351264251760004 +5556,1.132323622777105,17.663678674285357,11.524602409742092,2.7902369539583844 +5557,1.1260285750788277,19.26630339021302,11.436971600672614,2.4663047024707474 +5558,1.1289461595592998,16.28329800459522,13.28233487336679,1.9592965368485993 +5559,1.1225414800167375,18.62807085603307,13.287684927494693,1.7828753401307293 +5560,1.125860175156456,17.11292350903664,11.148232573088569,2.072680754941453 +5561,1.1214586487972646,17.4473471463684,12.21704289529838,2.0364407042848325 +5562,1.119045883534447,16.067583429126337,12.088794770570791,1.3988228331165207 +5563,1.1309506673112597,18.426001289735265,12.229781682153753,2.789517587132233 +5600,1.170560218889585,14.170463284139263,12.043809348256499,2.354784921215523 +5601,1.1507036288057961,16.096974883890233,11.832128064323841,3.203481094878103 +5602,1.1463256943113318,18.68672536682838,12.667381759101747,1.6945251453917254 +5603,1.1515844935424293,17.150429960191186,12.124538679051355,1.4459703454411417 +5604,1.1458521536592197,18.826191459760697,12.277724524664125,4.362003094523028 +5605,1.1524034093706537,17.67470472486167,11.609712946086471,1.8231588742251665 +5606,1.1491514764658444,19.058337017645915,12.326427513995455,1.2885218416578705 +5607,1.1489073390681168,20.350985077995862,12.233817142391397,1.4872883691455974 +5608,1.1520442265359934,17.987918854722405,12.58297293916324,2.768011928725701 +5609,1.14457916824933,22.024350977988412,12.915286462772285,0.9129799139360787 +5610,1.1463021411360919,19.01232883435535,12.876972382334031,2.5024349274391295 +5611,1.145751091492786,21.523606968893624,12.911697479016409,1.103283238474374 +5612,1.151629201041534,17.431028620028883,12.33292371466858,1.447880403261601 +5613,1.1462437047616014,18.761762848102297,12.372404505083981,1.5601006022781347 +5614,1.1437784713962602,22.579704322743094,12.800680323105174,1.3372551048108225 +5615,1.1487049143217283,12.025543505702286,10.848462148779259,1.9821432419435854 +5616,1.1447665466990036,18.901729016870007,12.183312587437069,2.451962716989231 +5617,1.1436163887418795,21.775763446006547,12.592148361404549,5.97046162335158 +5618,1.144771228946964,19.78172694993463,12.032912181182628,1.4128556102219976 +5619,1.143206585642581,22.300951607459353,12.682531898142816,2.256539774177034 +5620,1.1457040281285258,21.020500850212454,12.728291809405993,2.125400200751108 +5621,1.1465784699673853,17.730547161869453,11.686283089289086,2.0718782208566586 +5622,1.148805084058491,20.664520042268045,12.343969538766078,1.5441886580327433 +5623,1.1471157417057736,22.083569774403404,12.826903236617648,1.7969828897288371 +5624,1.1465390024221702,21.21570390222841,12.776728202221202,9.174311982788238 +5625,1.1497433884480666,22.38637889546467,12.634637727894903,2.9716125715165917 +5626,1.154178119080103,22.608424519278984,12.438714224958213,1.9683361973042437 +5627,1.1534699342839714,23.137117501334345,12.018686292923974,1.9577676096799526 +5628,1.15230481051805,21.318917940405026,12.357310340615683,1.673093183703317 +5629,1.1534656040696747,21.022813350050907,12.21301366462782,3.278766689868942 +5630,1.1557446436942005,22.123753608232445,12.59433795348816,1.703200691762351 +5633,1.159171438675084,17.80117242382656,11.879857655479661,5.609169801545548 +5634,1.1641727858674538,17.594725977767023,11.859721592179373,1.8911152146816372 +5635,1.161217991184524,18.29575983965876,12.016626309476296,5.470529679444927 +5636,1.1613068140713327,18.12631580758739,12.7796413310149,2.6256557641839042 +5637,1.1626510898736517,17.820629774812762,11.728117187206196,4.0213148028324595 +5638,1.1657492827436933,17.940847496322906,11.142317753094357,2.8150175083022684 +5639,1.1637552376776115,19.363242594620242,12.405988181504528,3.650018495794503 +5640,1.163960015080618,17.55462874848147,12.12192362960501,2.798622900106269 +5641,1.1591831231980434,18.185082647175008,12.1785823015131,2.2191911179264774 +5642,1.160777811980444,17.062153749255817,11.732455729562274,3.4244003600515733 +5643,1.157633597533611,18.70128115665939,12.122168219238793,1.901087200590645 +5644,1.1554512776702275,16.535668110574086,12.596670909668854,1.7316685971002626 +5645,1.1520379937133962,19.339741439186056,12.187463844617223,5.590990284629083 +5646,1.1538452111831263,18.219315168419353,12.372034627955644,2.271320725536426 +5647,1.1546474723571032,12.70875591790893,11.288861082410211,2.9933223069908155 +5648,1.152301312877554,17.1112681307115,12.190454692863844,3.0353589998337753 +5649,1.1480613486442872,18.303556788087505,12.484932857365493,2.634159905203519 +5650,1.1440595660972857,19.134215149504154,12.642713952955054,5.92396439652946 +5651,1.1432218847556725,18.213395131969556,12.909925298888393,1.4445021899242145 +5652,1.1447010257256636,16.693870587118536,11.580420848903284,1.7295739296953703 +5653,1.1389683859554791,17.551266644302707,13.10303948390002,2.8725621069767255 +5654,1.1402589102234189,14.855074021194932,12.654802302583526,1.5245165647682457 +5655,1.139470709351706,18.047788532432772,12.10526283283038,1.9970154810061895 +5656,1.1382012511960384,16.38339616150121,11.96696857636502,2.469245610338407 +5657,1.1354221951895977,18.102117052784617,12.254081038442209,2.3710634763620733 +5658,1.1344857988829176,15.594537210715275,13.272775680571602,1.757969107444613 +5659,1.1292784221959185,17.00656122048928,13.310068093014575,1.5155245431222306 +5660,1.1312388596547873,15.862133963691402,11.621858572306103,2.0733481488311116 +5661,1.1256556811514835,16.445499152250328,12.360745458757558,1.7507524220242054 +5662,1.1241635588642451,14.469391111062132,12.37081962025757,2.2676615226832735 +5663,1.1420230803823195,16.29384052992285,12.476582873074216,3.0651472891923635 +5701,1.1488803687067075,16.959025633294832,11.661085330057716,3.241759087233546 +5702,1.1329604003816052,18.760319193227815,12.283457847028073,1.9695124125934442 +5703,1.1324732370564254,17.067284632469878,12.266937866921422,1.6101272689384125 +5704,1.1316564376454432,18.76056908607562,11.828635929511547,3.316560689230378 +5705,1.1357770983700184,17.45814077157077,11.428614156155552,1.8067035461180934 +5706,1.1327961757739053,19.04266280064533,12.192883223663982,1.648490887827501 +5707,1.137407079459749,20.33917935824163,11.725339837445203,1.655237500703749 +5708,1.1368660255835805,17.818523968839884,12.218044931253639,1.7904071819808491 +5709,1.1296587356236294,22.188406005493842,12.755701031125863,1.1461555337730491 +5710,1.1303917520520932,18.89852144065233,13.07588231167067,1.7070452228179998 +5711,1.1324983579169436,21.622476866850537,12.209280801965894,1.3868993431931902 +5712,1.1363394619470812,17.19795456990265,11.729921266329551,1.8362226288884795 +5713,1.1325181878268045,18.62123091291822,12.377583534695045,1.3656889839968847 +5714,1.1315750401851723,22.99539995909169,12.310877011481702,1.806387093650652 +5715,1.1328086281455947,12.155740819385107,11.292737509943473,1.7378756742054955 +5716,1.1304982428752024,19.249842906732447,12.184253604374666,2.465181694277233 +5717,1.1291037941407944,21.626021856582142,12.324033075433382,5.8509066379408825 +5718,1.132376116858203,19.204824446854996,11.439273000873849,1.720311557381067 +5719,1.1307645992599529,22.35636478258572,12.145019850574103,1.6663734818647655 +5720,1.1316165187052314,20.9757870782959,12.024515876219576,2.530945343369168 +5721,1.1315311984677525,17.603156567939564,12.003971637377013,2.718051622968306 +5722,1.1334204412994529,20.292341312556115,12.01553954271913,1.4151176596230306 +5723,1.1338260153617508,22.120089829702383,12.65471761734118,1.4710017341225243 +5724,1.1361115494174208,20.818481880259448,12.1325136765277,4.77195218787025 +5725,1.1361169358941212,22.06148610052857,12.456629847452193,1.970363034958463 +5726,1.1380932709929252,22.80700688359463,12.321829918843616,2.28721526536183 +5727,1.139870859965374,23.080163051023394,12.0073320315512,2.41525171472294 +5728,1.1393844830191682,21.07429930167454,12.038632478583956,2.047674777543261 +5729,1.1385384671199763,20.88749598681116,11.839455048375031,4.587192797487758 +5730,1.1395038438102238,22.12622553029289,12.735276053511008,1.840090652108896 +5733,1.1442476310878449,17.388298658422343,11.75975637289755,3.0257039480612073 +5734,1.147920785922854,17.428517107283444,11.536205436157822,3.2838841688059075 +5735,1.1490952872743665,18.506149838892966,11.339365288700968,4.954648895411422 +5736,1.1457933403882783,17.500448823594198,12.90558076194445,2.737718521983689 +5737,1.1477857337238455,17.65368319480381,11.623117594019218,4.142445513561467 +5738,1.1531356930538716,17.47455117621838,11.27235764531761,2.4814557402343027 +5739,1.1498115269731546,18.89320802059828,12.179669607269705,3.9968434450694708 +5740,1.1477795804572721,17.307972286834094,11.461629705850033,3.325301890116845 +5741,1.1433279410412738,18.220583387343144,12.219325622558623,3.265770125615389 +5742,1.147803117786654,16.631807777258995,11.07727134274826,3.274093655847443 +5743,1.1436727887037306,18.593365751342954,11.459018549531075,2.5444963739063486 +5744,1.141405336645338,16.313761643579056,12.122308446730738,2.074321520993801 +5745,1.1391144570679177,19.110253636046096,11.684300459394441,5.146341858725541 +5746,1.1404066601259084,17.660493558179322,11.765298361268922,2.552300077064902 +5747,1.1412428439230164,12.170911942530177,10.947393287433576,2.525090568197291 +5748,1.1372569823257666,16.89898021688554,11.641323608342004,2.8203654873553727 +5749,1.134267043885044,18.00296832238974,11.940246899395186,2.211369420769552 +5750,1.1299024453888677,19.18659680587475,11.84531927436623,3.88569443757159 +5751,1.1303051351872904,17.648633415208614,12.530626052064889,1.8923448207255131 +5752,1.1296692617473827,16.99515920426661,11.715534885112454,1.9225336589503261 +5753,1.123632511975856,16.907591850676642,12.733498575865179,2.662532615842212 +5754,1.1234444801877745,14.896803972189751,12.526612408541379,1.9505040802626397 +5755,1.1272645126097307,17.640123544720623,11.746400902160099,2.4194737712192667 +5756,1.120711292582877,16.765769329514796,11.676418391214218,2.034873215024724 +5757,1.1152476029091916,18.620304160946393,11.566629783594816,2.5126881353608748 +5758,1.1159003904025118,15.458386123757991,13.179135247116626,1.7277955704839907 +5759,1.11528131138056,17.232546530762566,12.80157156259859,1.8217119715136592 +5760,1.1172028600973112,16.125749501843206,11.211453949832562,1.9838820069966576 +5761,1.1106368044003452,16.6893491956427,12.242189475289294,1.5766379491317148 +5762,1.12706690269321,15.567424842304028,12.188892925477736,2.820166878399281 +5802,1.1444690855552775,20.823857950525337,13.065160143271358,2.411710603547077 +5803,1.1362831809308664,18.94482258886408,12.356572426106453,2.0498871356535893 +5804,1.1306444322670373,20.692233822354776,12.136161325691456,3.278497332398669 +5805,1.1336201965161685,19.918124415783705,11.979583882675687,1.8914293466220773 +5806,1.1320068759684374,21.313305472826464,12.530589386270295,1.1721937051300781 +5807,1.132006160110027,22.68573853777257,11.933007295935516,1.6158128954624087 +5808,1.1373650795163481,19.68571823977329,12.587278678708879,3.017608259442435 +5809,1.1272138186268084,24.88998199472021,13.334747980317895,1.7565017741085376 +5810,1.1330001395992355,21.278557769594144,12.520802127225197,2.0186813905880974 +5811,1.1319539578537348,23.863968480370684,12.616812800449289,1.465308706148915 +5812,1.1378361575661453,19.361196287207314,12.169629848925263,1.482444548311447 +5813,1.1345183131379017,21.010652689636927,12.42401092637704,1.7638214213954269 +5814,1.1304630943107377,24.9040099717078,12.712796677776302,1.5023898362587105 +5815,1.1377010749738388,14.317916601654142,11.040044794713369,2.1900252528843707 +5816,1.1324505939956429,21.402899827125776,12.109605549743836,1.9646266834679227 +5817,1.1295491567188796,24.213393178631282,12.570667717346756,4.6976346723489515 +5818,1.1316245500850488,21.67825258093076,11.633807139933957,1.9892412571821614 +5819,1.1311428985346912,24.54606902042324,12.559571155100873,1.756838613255216 +5820,1.1314615316561958,22.835523479988765,12.44770550956756,2.534312746456321 +5821,1.1328705843877143,19.87514102063414,12.119965060367113,1.9397478662183119 +5822,1.1346178117798644,22.430977528506723,12.269580300156804,1.6069996084346017 +5823,1.1354071864610502,24.26790388866951,12.726324739634569,1.7597134329639277 +5824,1.1337551604442635,23.739516861814884,11.89375153893042,5.0079751102924135 +5825,1.1363611660517567,24.213063620347974,12.47663902780207,2.8494404309461125 +5826,1.1418847112150612,24.457282174057735,12.55353393848978,1.3916384351019069 +5827,1.1405410892100085,24.908303334146016,12.33078787385346,2.110490139951777 +5828,1.1381215674739114,23.67013603224815,12.423698132464626,1.8027850180531217 +5829,1.1397641793347255,23.08148694610641,12.177607007263443,3.032100827815171 +5830,1.1422161388966756,23.834836903093013,12.714282057425887,2.7044296040026343 +5833,1.1501225677202689,19.217147843591494,11.515452037782389,3.414750662536594 +5834,1.1500584606145539,19.396693607812775,11.646120165960776,3.2027627424937295 +5835,1.1460797850411826,21.11604138063555,11.907031519844377,5.431756114425296 +5836,1.1491671272868413,19.83885122323958,12.603555385280133,2.058978464143417 +5837,1.1509605532975316,19.561853626304682,11.37308976404607,3.938598087604431 +5838,1.1505143608468904,20.320571270998986,11.274170622021696,3.2946998514222487 +5839,1.1505286291883519,21.09755360749948,12.104103596958671,2.9290432524428702 +5840,1.1504593469647932,18.958513909858418,11.945371420908097,2.5525755434851547 +5841,1.1453231248120392,20.485012152959435,11.941302933417031,2.4422047921113554 +5842,1.1489702523080316,18.518619548311673,11.684456767944168,2.661866260640128 +5843,1.144263703474459,20.717694404098438,11.630402163892168,3.160253719416056 +5844,1.1406174705605454,18.874516878026277,12.360350240480555,2.327358543373775 +5845,1.1404186014508393,20.858310345275292,12.233117767846176,4.079989421664572 +5846,1.1405610473470047,19.870660267431536,12.376152720979087,2.7939796475794494 +5847,1.1426404199016857,14.730936554229473,11.006090682258101,1.894798577370202 +5848,1.136186894301256,19.713386575873052,11.842261473446284,2.8282871487905226 +5849,1.1345232714304003,20.367797547682567,11.95172173653707,1.9319307118132434 +5850,1.1323398679225392,21.24110447021397,12.35926399458811,4.259728590812249 +5851,1.1279719056763582,20.44317485983428,12.776885028127012,1.8599069311835754 +5852,1.130755507415159,18.895376460628896,11.669192004747364,2.5568463384606837 +5853,1.126988480268988,18.730096458372742,12.735423250722043,2.931495262887852 +5854,1.1238006050619784,17.128515340260904,13.018814182263174,2.0082567250720267 +5855,1.125299884720805,20.120872971765042,12.014373641890591,1.9218842876321012 +5856,1.1221830982407262,19.233827343127107,11.731351429488356,2.5956486486249966 +5857,1.1157342068180875,20.661325742460548,12.063298395967186,2.1545062091606777 +5858,1.114727404091994,18.101702671135005,13.234534458944344,1.762133074038082 +5859,1.1102897035821944,19.82012002511051,13.52009333663859,1.2100276348417083 +5860,1.1155947616156965,18.92578679854381,11.273340696939577,1.71514917594101 +5861,1.1268527274895324,19.364754247108763,12.58706687477289,2.710157390185257 +5903,1.1473832651956508,17.44570837306756,12.236314233531473,1.5816901681777957 +5904,1.1290378780099934,19.104240291487294,12.213027883011755,4.441948305020642 +5905,1.1308276393710588,18.45481287590956,11.808734813991402,1.6134841269663531 +5906,1.1296371083446166,19.93648952634551,11.901133249148572,1.5544334817023358 +5907,1.1314125357415814,20.665277226097555,11.758772446083189,1.8186166591792645 +5908,1.1331203608246219,18.910915243050567,12.61841634528071,2.2243472806907247 +5909,1.1290460108889,22.868278672602834,12.867455930597265,1.7334131689200456 +5910,1.1311328433515493,19.41089314085751,12.828685604589506,1.7819333851895303 +5911,1.1289984008000835,22.41619994882419,12.555652061179039,1.8669513548821246 +5912,1.135898309947203,17.980192205181392,11.684704536867093,1.3846704560469547 +5913,1.1338408585514475,19.401327444285904,12.291960091948757,1.7823339309387372 +5914,1.1311899987019174,23.379530302230503,12.20665082927954,1.4875551097386353 +5915,1.1322974313215424,12.806447984507749,11.07850077020675,2.109959310332302 +5916,1.1296101182131244,19.549140539800643,12.116754813634941,1.8723239181997708 +5917,1.1285883144630429,22.109644804397522,12.739724709565891,4.179141685166039 +5918,1.1319534822783635,19.883494898854007,11.764096495323361,1.4856616310018584 +5919,1.1313306224383526,22.775390259644066,12.172383142528517,2.464731037705999 +5920,1.1324647401786767,21.278578145586945,12.12796843223976,2.598381736919187 +5921,1.1329998070004061,17.96134469498243,11.764027467659727,2.6439588551698683 +5922,1.1316613919073535,21.241207763497677,12.329135955195499,2.014762428492615 +5923,1.133134801689719,22.65857856876725,13.027409102138467,1.6893118419516011 +5924,1.1294022441627938,22.157342633570707,12.29052601871009,5.447290644402592 +5925,1.1334584515634234,22.811128909763564,12.630199236404454,2.6350322657751346 +5926,1.1365517605626667,24.012353103176768,12.479712681756405,2.1087574250992267 +5927,1.142405248834364,23.03382521508076,12.387118562516166,1.9672638435400767 +5928,1.140304720644687,21.848418073694845,12.072580838072936,2.4544097143906103 +5929,1.140014891849217,21.732268947496628,11.867036038629818,2.7398604633802663 +5930,1.1384741973458214,22.4151280436617,13.010072229236089,2.084491233358532 +5933,1.144883744252514,18.205758972149027,11.891087879294345,3.6511333915606716 +5934,1.1497828475976692,17.79484417246865,11.733759336024574,2.735803382152025 +5935,1.1461454156357953,19.087904853010418,11.766037558647925,4.010677412280278 +5936,1.147871788571219,18.173051593390518,12.757896561938237,2.9620851193669138 +5937,1.1507587419759926,18.28311039807163,11.521068648120487,3.7055930337099325 +5938,1.1521395661357232,18.695103530194974,11.331845432210926,2.9633439047353614 +5939,1.150058633619824,19.6266018766496,11.786109330013245,3.2178651444787434 +5940,1.1480454073371762,17.76003211500266,11.683322028920825,2.4238135073856886 +5941,1.1421170983265718,19.12221687944323,11.915890249078616,3.2813147994454908 +5942,1.1499621719553252,17.15820674041712,11.213651718756003,2.9500013347518044 +5943,1.141030187998589,19.80545365670411,11.803013821855266,2.8514483713032095 +5944,1.1425289798069873,16.992241409335893,11.957027826813363,1.8000406828878812 +5945,1.1382234772943176,19.396202187152756,11.722740953298803,4.597073848662565 +5946,1.1389511185024974,18.52802455376923,12.226756346898847,3.202287775498214 +5947,1.1411430688976276,13.299729929379692,10.835852464354678,2.7987130653277825 +5948,1.1354000408960925,18.345985017604324,11.663149513012938,2.720048044862753 +5949,1.1310997704721784,18.96106554124311,12.393561120884494,2.4078796438543617 +5950,1.1286560526009162,20.164119931014277,12.059639051064117,4.078463045830438 +5951,1.1259550362230168,18.872959236441158,12.6809589381235,1.985242398337007 +5952,1.1291408246872945,17.883966426469605,11.571859625269425,1.7051903962508348 +5953,1.123236268252059,17.7969954873512,12.663755770879638,2.2076260784896076 +5954,1.1237723123850551,15.321007302741108,12.67191899487514,1.7305277442944105 +5955,1.1241106412136277,18.31642982570309,12.232941732895357,1.6537188819523683 +5956,1.118205313650965,17.398841868404094,11.431679438474761,2.313694621280394 +5957,1.111613420981694,19.238537444678126,11.773275972951598,1.6619191389892036 +5958,1.1141497403462077,16.24847534719857,12.933538721383352,1.753470860208219 +5959,1.1112727522470913,17.596903910885064,13.316939200905765,1.8478806161602581 +5960,1.1294189589459604,17.384828238606534,11.254109549423626,2.1138607618051717 +5961,1.1653478243176316,17.890338132289184,11.444078137262602,1.4701414844410534 +6004,1.1420439007322873,18.823119501268597,11.94453990417626,4.241399247348834 +6005,1.1350315642146247,18.197552402070226,11.38509646002005,1.9445683752465965 +6006,1.1324493772644757,18.90343011942663,12.087136017362473,1.8055861011787617 +6007,1.133267487406514,20.21875498556812,11.436512071466039,1.6370845824573572 +6008,1.1345666625229303,18.47322044420541,12.30921235298428,2.1427928839617394 +6009,1.1306860843840139,22.22255142810946,12.738149391650687,1.8548087029242557 +6010,1.1334412218472951,18.81886881558895,12.456956548517013,1.9753705004132538 +6011,1.1360254412017716,21.685069801842555,12.210652878182595,1.8662867694057284 +6012,1.1430042089299348,17.546270191938753,11.566588455121492,1.4702882872000567 +6013,1.135069776707279,18.997323691142135,12.087936521045275,1.4874882205043698 +6014,1.1333683537424586,22.78547578198601,12.233779106712026,1.9558033819518543 +6015,1.1402177986041826,12.17200489657207,10.82446717518765,2.0692774908771354 +6016,1.1336498501021375,19.37172373780355,11.921638498482311,2.7021773131926587 +6017,1.1340552544730862,22.540617028333642,11.844520346095573,5.077149186190604 +6018,1.135639407946306,19.431568192725788,11.459543279754708,2.2454829435075845 +6019,1.1356017411239443,22.636819556892164,12.19029199985094,1.9238311439094329 +6020,1.1360438458319058,20.717536678445708,11.775839620380674,2.2399087739297388 +6021,1.1368677341503397,17.708327108611506,11.64455077504249,2.511044923395448 +6022,1.138931842817977,20.619250459113037,11.874454093793947,1.811820018514176 +6023,1.1385811086242863,22.212990892394476,12.338052964684037,2.6408058027316663 +6024,1.1372402443443224,21.32247290997057,12.00689668339346,5.894114190909572 +6025,1.140608234921334,22.14624785703929,12.472509081183912,2.5633841518220053 +6026,1.1435795115696907,23.009936249742932,12.082333415419024,2.1648048696319275 +6027,1.1459135280410964,22.524003199623984,11.78504147898842,2.390253234199608 +6028,1.1442407956127072,21.057852415293116,12.209194922045425,1.8924450903864538 +6029,1.1448227309434502,21.007779369220078,11.889868705474267,3.179160404072095 +6030,1.1435724754454886,21.99419562064557,12.6379951600985,2.509824852915756 +6033,1.1533901454902353,17.531548062680862,11.511594479541806,4.511285014897663 +6034,1.1523364402979919,17.801556552720903,11.411771326556304,2.801573371744593 +6035,1.152060139852423,18.545006706858,11.769175223700769,4.59644508024431 +6036,1.154404017885136,17.79050082245721,12.631335721507577,2.7886637106037666 +6037,1.1540928313229113,18.23868332746199,11.075687068500562,4.264807287390637 +6038,1.1584129853210654,18.48663129865039,11.027513129343898,3.890812992579228 +6039,1.1557246399365375,19.25213420055566,11.657469561310513,4.558793295682544 +6040,1.154558696539306,17.494960102557172,11.731619829706345,2.591755242439864 +6041,1.1512103809191698,18.53683402358786,11.742971695025718,3.8914671305174755 +6042,1.1535152609772037,16.860687978891217,10.879312118611274,3.710804067506458 +6043,1.146518187357434,19.14759295631528,11.529085480792808,3.5814526330086727 +6044,1.1465425366257453,16.909357910711034,12.0394943602746,2.4764741549560876 +6045,1.143195123950619,18.95546480806983,11.39717564085885,7.018631691091405 +6046,1.1451469067874591,17.878567711693,11.811611769325559,2.853477977504089 +6047,1.1434173018623777,12.873154090926882,10.791210343745314,2.970756183327266 +6048,1.1412267263823495,17.502204037134863,11.510459713840886,3.23519883073462 +6049,1.1375857056057956,18.480221359982483,12.068446867656892,2.8491759243403263 +6050,1.1339678025089956,19.447712310284537,11.924846111484849,4.765591837723855 +6051,1.1317413718464227,18.299119993797955,12.43344162368582,2.7510727567975746 +6052,1.131104164155932,17.21963624068403,11.165022039496893,2.620108398073363 +6053,1.1248523404363469,17.33231820223243,12.204768092743173,2.9220640461646856 +6054,1.1230486522167622,15.308947563614781,12.616689943890494,1.623985670937298 +6055,1.1238745625853133,18.36149831915073,11.910462394375015,2.4225259142410263 +6056,1.1202979063541711,16.95980310044278,11.110833743849785,2.2034490192367953 +6057,1.1134805397916776,18.68078594590344,11.787432300119226,1.7516640897883327 +6058,1.1165984757131746,15.308028080948818,13.12175108466119,2.09875957342547 +6059,1.1262942115814951,17.026118612232548,12.951902716272,2.2765115716859707 +6060,1.164479442581164,17.78011111582723,10.439234573899098,1.1723140054747776 +6105,1.1546754916740718,16.102498252657327,11.661561208114541,2.5177134484570756 +6106,1.1388751688150023,18.338780863426052,11.961154757725339,1.6659292660841276 +6107,1.1390628792061772,19.741512137501328,11.677420181376934,1.7381352829464578 +6108,1.1429421586902946,17.689039752185096,12.322810520967968,2.0299706870913545 +6109,1.1413881709588134,21.603315049864243,12.39481054868006,1.6544118523582894 +6110,1.142414017540715,18.58829204486052,12.44105465267104,1.478764584966812 +6111,1.1453355852570568,21.321830245607,12.33415643419917,2.608185717392134 +6112,1.1479856355259006,17.12189786610311,11.854922408691174,2.129761028170221 +6113,1.1454887611366233,18.64118113129776,12.278225944023779,2.3087577153945036 +6114,1.1433967564713905,22.48133234388672,12.291262703497788,2.659238778596556 +6115,1.1495045765603613,11.81914536202932,11.08444787860008,2.805316326769607 +6116,1.1436912677567588,18.76787687129993,11.989121402923153,3.6729086749900905 +6117,1.141083674393614,21.69729998602834,12.1904455301141,4.7498847690882 +6118,1.1455838792861084,18.777080725016166,11.923269344500646,2.0829941485251586 +6119,1.1455236729404792,21.59639506232029,12.121326428392052,2.881543518895759 +6120,1.1454181688683054,20.494586036301612,11.917217519558855,3.754245339002121 +6121,1.1473774075565681,17.145899218786855,11.664156049549169,2.419153398290831 +6122,1.1465098496123216,20.102778054690823,12.062332524840839,2.250483878523651 +6123,1.1480644292984188,21.54719019605813,12.55839288830254,1.6948593297284036 +6124,1.146658902874067,20.945433472742774,12.237889769956457,7.05749447736376 +6125,1.150001123783181,21.58283671981167,12.295327543879516,2.50907589849071 +6126,1.1543711265761516,21.96271421807229,12.670884786705225,2.3720812593658462 +6127,1.1547962061871178,22.047174938271876,12.074644619040113,2.3167772109761646 +6128,1.153128964807038,21.007139116356385,11.966529767471375,2.546261812302523 +6129,1.1561988647261703,20.482834575084624,11.830346893124863,3.774657877571202 +6130,1.1559698811087,21.616612646163713,12.521275433679902,1.956437443662375 +6133,1.1633963943417682,17.254754309191352,11.625547769585125,4.729351433876332 +6134,1.1663877652224786,17.02707096740754,11.537174358334344,3.929079496921519 +6135,1.1637160326292657,18.42114233038575,11.579449547385975,6.137362753227569 +6136,1.1647088706300526,17.356553312821845,12.456044836381135,2.8632112209461478 +6137,1.1673112810894322,18.380435096386826,11.328446858609633,3.5781382791307723 +6138,1.1734111544957266,17.829897441028354,11.112669873115761,3.635082116832266 +6139,1.164919186883621,19.016230614296497,11.838615569995778,3.9530132001307074 +6140,1.167302230875434,17.02860227740407,11.676013843143853,4.110443180137765 +6141,1.1611553593088297,18.10432983002492,11.780066778455405,3.413241537742583 +6142,1.164476581026368,16.74947079684888,11.070157455737018,3.519399205164268 +6143,1.1620015193301876,18.134466860331454,11.33438304375711,3.5255868091531744 +6144,1.1573166219176974,16.41254787213993,12.105849954087041,2.638424185929626 +6145,1.1542941453426554,18.400115738876394,12.268361059127269,6.492950714488573 +6146,1.1557002556220195,17.44871137347474,12.028182831588799,3.493454672842971 +6147,1.1570152679944141,12.148828906902935,10.938083017270506,3.2582966212251128 +6148,1.1490970467841066,17.103355105340558,11.66501652066797,2.9726225555072445 +6149,1.1470563040356858,17.969391417115627,11.834177175191456,2.7200755415515143 +6150,1.1422490942848733,18.93009956094267,11.87482038545397,3.9232667359291407 +6151,1.1411076356348735,17.467836976656557,12.63417039409231,2.006401420637193 +6152,1.139541856378838,16.67321411670572,11.717818620455363,2.718852219440683 +6153,1.1355640052596412,16.691647875536177,12.386817385584989,4.082716168668466 +6154,1.133568938999285,14.655122736896187,12.579601629387758,2.513185071427558 +6155,1.1320520254332458,17.540155056621735,11.626409119523728,2.122374672703618 +6156,1.1276645094067168,15.926185507867075,11.487151494781127,2.9697369589216245 +6157,1.1230584562565822,17.534404880436004,11.27660201006618,2.704562740016429 +6158,1.138116607283678,14.053612995788866,12.871023757209857,3.315032071780558 +6159,1.1712258819755772,16.961511049289474,13.204882354519885,0.7815171839698416 +6206,1.1542606152434454,18.218266820168655,12.058387315820935,2.426463867444801 +6207,1.143908856450504,20.3018060378258,11.395943820107616,2.05679546099277 +6208,1.142491471062317,17.809939014801834,12.911796204475172,2.394444603548535 +6209,1.139902576973716,22.133434789345788,12.86591531381125,1.8827644573478177 +6210,1.1437836759872662,18.889168840492637,12.645653945995548,1.69137262398869 +6211,1.1454068225186156,22.06201688937927,12.123064918470293,1.8563917059184936 +6212,1.154070036553593,17.602767827107836,11.680476759606696,2.039084984408717 +6213,1.1496758339395203,19.1320965731965,12.168109632415087,1.7942510073125006 +6214,1.147924801306117,23.091469672257954,11.902029989373576,2.4764525800378974 +6215,1.1540838894899357,12.581076796820925,10.857053793612442,2.308769882273007 +6216,1.1479053761639577,19.7761065840226,11.93334474958708,2.590259739999252 +6217,1.145851039784104,22.068994052090463,12.494036640661303,6.015458621774577 +6218,1.1506264693852037,19.43861660223863,11.682324776635102,2.1049372491358604 +6219,1.1455869012118942,22.885318084542067,12.377254629398196,2.6534603605141407 +6220,1.1514391026859947,20.908215941981876,12.114278406817114,2.7723102861714284 +6221,1.1508716861397748,17.939478854613807,11.635372745803213,3.061889155934867 +6222,1.1516820694090204,20.634795384972538,12.122454190776518,1.877413490336371 +6223,1.149994252093091,22.532647859767632,12.69771481637685,2.5234252155394006 +6224,1.1530052956657757,21.687833506159464,11.758596252906834,4.811085189362693 +6225,1.1527882277569077,22.680901469394847,12.314427127535863,3.384374144611433 +6226,1.156917448118005,22.693504970477733,12.481203060088827,1.9754277137476748 +6227,1.1594287812851123,22.871335731491605,12.169757403938416,2.2680455263296486 +6228,1.1580008384880824,21.735066287308076,11.820550642471447,3.024215959396093 +6229,1.1596611239337116,21.28679773763321,11.93798237552469,3.8684872917538753 +6230,1.1600127161947713,21.86004189838903,12.670783762622959,2.4099693735559535 +6233,1.1678510062120524,17.942337272184158,11.522192205338056,4.693943456349327 +6234,1.168212751462372,18.192387338247848,11.134715684197344,3.4320618845032653 +6235,1.169807421282423,18.61237328700027,11.60158467011515,4.699047301156795 +6236,1.1715685096184763,17.948842968745303,12.124422452090478,2.5391720126320587 +6237,1.173800571350995,18.871220803849155,11.729500980120076,4.670969103298907 +6238,1.178450835954768,18.68278572694217,11.33371755709932,3.2491382901898573 +6239,1.1739548887762024,19.644148842731695,11.595813645602565,3.884035287015104 +6240,1.1710274504552503,17.88507469488398,11.638824387352702,3.1344878987888714 +6241,1.1675214414153787,18.289361884609605,11.963919597724674,3.585973091471598 +6242,1.168811133643561,17.25667020513499,11.733832289769895,2.965404460392606 +6243,1.162695004101107,18.985501936981443,11.843068286442923,3.1146054476960003 +6244,1.160652580266494,17.080984530430737,12.094319526515369,3.051770303192728 +6245,1.1587089890399183,19.310580375126833,11.824231639511956,5.5937062533454895 +6246,1.161003623862784,17.899929925264566,11.921024151952276,3.6088198543202537 +6247,1.157982526066364,13.637822065165214,10.67970400476325,2.943733475112898 +6248,1.1536557795697888,17.84138205088585,11.77655705507463,3.095205104726748 +6249,1.1506143759658138,18.752123838935912,11.906385211107118,3.098052241024783 +6250,1.1476923374915298,19.456341325963287,11.884396236548326,5.041041480969802 +6251,1.1462882217172854,18.08629205781936,12.323714813061974,2.9577896916950572 +6252,1.1450310234303205,17.501050852415553,11.479107834580962,3.3540057214507843 +6253,1.1372312578978097,17.276708840943233,12.713493113842537,3.496413597680253 +6254,1.134157833041228,15.388129412862673,12.720247266204238,1.6680225288326984 +6255,1.134265918351756,18.167042928861832,12.053633576784863,1.9398626070115699 +6256,1.130040390508441,16.68070005934967,11.035470352194835,2.0044758525349167 +6257,1.1372915017098566,18.48076132585581,11.36555907555645,3.1597118793481918 +6258,1.1983375057744328,16.303702764659253,11.290463282121715,1.381133301771887 +6307,1.1657148263676362,19.806142803123155,12.1959877976274,2.3613558576195564 +6308,1.1592010956441492,16.18581029981523,13.691695476564778,2.755187573465745 +6309,1.158484063298604,20.49104763154305,12.782168069128675,1.9780817131541981 +6310,1.158386972864309,17.646003118681445,13.242846533565439,1.7122777500223325 +6311,1.1584911409717196,20.61583729709097,13.104795554405591,2.1396395704435 +6312,1.1680422348734205,16.52455826831392,12.368605160661774,1.9733401566219408 +6313,1.1647616262309943,17.581857751949926,12.468044617480379,2.2019420050591187 +6314,1.1638585176535143,21.37621465424278,12.979692685219467,2.572885826309427 +6315,1.1662293132830155,12.234830058369933,11.33227086585961,2.617582140663966 +6316,1.1641173927030461,18.11703300249955,12.620242898699253,2.8912598956881808 +6317,1.1629439219385937,20.599693331433965,13.122634943005702,3.9345809838891173 +6318,1.1654192682401177,18.295765124763975,12.468763204404569,2.7810806995589266 +6319,1.1656397051407965,20.805716806296502,13.219753589463693,3.1049814118653867 +6320,1.1651018864065463,19.539377354747625,12.678967775607546,2.7853116417655017 +6321,1.1665010159509428,16.865167230652318,12.021955573990963,2.3908436497176124 +6322,1.1674308414235202,19.041033405866294,13.071334375034725,2.2095244351365486 +6323,1.1685621164250726,20.401084718962522,13.438323049912185,2.367193028530057 +6324,1.16691067498435,20.27524993974981,12.638076016806282,5.380552279419746 +6325,1.1673427535964804,20.786127849545927,13.123961986012338,3.397184206577839 +6326,1.1749016513858292,21.146699708342723,12.907520196391607,2.8746753637720097 +6327,1.1754467949375929,21.585995714720546,12.491552379276072,2.7474488362902316 +6328,1.1764979175928931,19.919012020114774,12.483945101982762,3.345414548794976 +6329,1.177647372966356,19.86517464425564,12.53819042670287,4.160559672384479 +6330,1.1775024590011693,20.377031202526787,12.843053859816763,3.5352770973288457 +6333,1.1819073705858094,16.620648983730124,12.268361899858524,3.9273746471991955 +6334,1.1855594143932398,16.492619184938434,12.081548037047394,3.1316084418848256 +6335,1.184414268609213,17.705541478566058,12.170420091173352,4.52283085177656 +6336,1.1879772276937948,17.001872879852296,12.570572799220875,3.4361874437408897 +6337,1.1924314377590195,17.38360039168496,12.168990804598408,4.699492670963092 +6338,1.194909732189104,17.2934182440925,11.987834678249547,5.163605681268219 +6339,1.1870993099050597,18.529790271619287,12.716384289512028,4.86074748447392 +6340,1.18768405375266,16.551752140993845,12.187863040058451,3.498754322934418 +6341,1.1803644951234522,16.93746187808688,12.661465437133835,4.50278876966619 +6342,1.1830926409010623,16.064003795187737,11.8638357845192,3.2625824155432115 +6343,1.178852600994694,17.83514907868561,11.858283960137815,3.1952721146108543 +6344,1.173938021440942,15.5747773133153,12.633928397026413,3.5700858320474445 +6345,1.173016685604589,18.038047821014864,12.219814797160817,3.802392914481639 +6346,1.1719897868599976,17.213981670014338,12.26125899727866,2.9019820742476967 +6347,1.1738196010181954,11.94193611278343,11.93164554660496,3.8421678786175035 +6348,1.1714593859588929,16.097841389505724,12.146178204620284,3.1579158812507244 +6349,1.16385171663047,18.069536764611424,12.388766513744772,3.1445873538441353 +6350,1.1605736864772647,18.628786792389857,12.461466082644565,4.754206619091231 +6351,1.1596097738151085,16.883631922579358,13.219038807722566,2.537314202936028 +6352,1.1594225340076414,16.16399726150735,11.830447731211693,2.73691900708325 +6353,1.1476871041788803,16.273896216033528,13.089457258113757,3.5823501887150466 +6354,1.143066385135196,14.31870981963146,13.028754071058414,2.6634344730908817 +6355,1.1436779868898697,17.607018353390096,11.929568053809845,2.2905514688318975 +6356,1.1501391467289532,17.287463054571894,12.288546881230001,3.262883000897095 diff --git a/resource/unittestdata/406-1/hp52406-1.full.ecal b/resource/unittestdata/406-1/hp52406-1.full.ecal new file mode 100644 index 00000000..5abec591 --- /dev/null +++ b/resource/unittestdata/406-1/hp52406-1.full.ecal @@ -0,0 +1,1919 @@ +# Energy calibration file created with Melinator + +# Used files and isotopes: +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52406-1/roa_withtaccal/gse_20260213T083940.hdf5.roa" with isotopes: Isotope Am-241 with the following lines: 59.541 keV (0.359) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52406-1/roa_withtaccal/gse_20260213T110418.hdf5.roa" with isotopes: Isotope Ba-133 with the following lines: 80.997 keV (34.06), 276.398 keV (7.164), 302.853 keV (18.33), 356.017 keV (62.05), 383.851 keV (8.94) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52406-1/roa/gse_20260212T191053.hdf5.roa" with isotopes: Isotope Cs-137 with the following lines: 661.657 keV (0.851) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52406-1/roa/gse_20260217T082615.hdf5.roa" with isotopes: Isotope Na-22 with the following lines: 510.99 keV (1.8069), 1274.58 keV (0.9994) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52406-1/roa/gse_20260217T105216.hdf5.roa" with isotopes: Isotope Na-22 with the following lines: 510.99 keV (1.8069), 1274.58 keV (0.9994) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52406-1/roa_withtaccal/gse_20260213T062501.hdf5.roa" with isotopes: Isotope Am-241 with the following lines: 59.541 keV (0.359) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52406-1/roa_withtaccal/gse_20260213T110418.hdf5.roa" with isotopes: Isotope Ba-133 with the following lines: 80.997 keV (34.06), 276.398 keV (7.164), 302.853 keV (18.33), 356.017 keV (62.05), 383.851 keV (8.94) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52406-1/roa/gse_20260212T191053.hdf5.roa" with isotopes: Isotope Cs-137 with the following lines: 661.657 keV (0.851) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52406-1/roa/gse_20260217T082615.hdf5.roa" with isotopes: Isotope Na-22 with the following lines: 510.99 keV (1.8069), 1274.58 keV (0.9994) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52406-1/roa/gse_20260217T105216.hdf5.roa" with isotopes: Isotope Na-22 with the following lines: 510.99 keV (1.8069), 1274.58 keV (0.9994) + +# Keyword description +# CL - calibration points: the fit parameters plus uncertainty for each calibration point +# CP - calibration points: the data points going into the calibration +# pawk = ADCs, Energy in keV, FWHM of energy in keV for each point +# CM - calibration model energy: the energy calibration model +# CR - calibration model fwhm: the FWHM calibration model + + +TYPE ECAL + + +# ROU: dss 0 0 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1285.44 389.848 0.652676 0.197227 1050.51 30.8689 150.907 18.6877 1933.17 0.0519322 10.478 0.0338209 7659.48 0.0338209 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 1 param+error 575.604 914.024 -0.105641 0.432946 272.848 34.6024 303.576 382.305 2066.64 0.25725 11.1493 0.184472 1297.86 0.184472 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 2 param+error 194.309 59.193 -0.0539284 0.0177506 8.43004 13.7633 17.22 19.8375 3303.92 2.90202 10.6851 1.58611 18.6322 1.58611 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 3 param+error 263.279 80.2025 -0.0728835 0.0228579 24.4175 18.7733 8.30359 3.5267 3471.14 1.07582 9.82002 0.660829 33.3187 0.660829 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 4 param+error -41.2274 134.91 0.0107213 0.0350713 2.61561 1.54891 37993.7 21154.2 3805.88 0.443565 12.1418 0.246512 70.7087 0.246512 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 5 param+error 6.2719 7.79187 -0.00151026 0.00194567 3.0134 3.48665 13.6845 7.79928 3988.64 3.98732 8.37071 1.85557 3.04822 1.85557 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 6 param+error 71.4298 46.3894 -0.0127832 0.00951424 12.8826 3.5614 41.0415 13.9207 4792.39 1.08442 10.2785 0.743968 33.1229 0.743968 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 7 param+error -2013.95 5.03474 0.348032 0.000868127 31.2122 3.45613 1078.68 3010.18 5758.93 0.460131 12.0623 0.296199 119.389 0.296199 +CP dss 0 0 l pakw 8 1933.17 59.541 3.91764 2066.64 80.997 4.16552 3303.92 276.398 3.96757 3471.14 302.853 3.64368 3805.88 356.017 4.49891 3988.64 383.851 3.0994 4792.39 510.99 3.79518 5758.93 661.657 4.44231 +CM dss 0 0 l poly3 -249.158 0.160772 -5.84732e-07 2.36849e-11 error 12.3938 0.0117469 3.37542e-06 3.00432e-10 +CR dss 0 0 l poly2 4.33027 -0.00412381 6.26911e-06 error 0.415737 0.00260397 3.69237e-06 + +# ROU: dss 0 1 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1762.56 581.978 0.88818 0.292639 1568.43 42.1696 116.812 12.7184 1953.25 0.0335394 8.38199 0.0217439 13288.7 0.0217439 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 1 param+error -8727.75 3500.75 4.34063 1.65526 591.13 28.5812 177.977 97.728 2083.95 0.130212 9.08127 0.12923 2201.23 0.12923 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 2 param+error 358.055 37.2372 -0.100977 0.0112235 26.7299 24.3651 11.4653 2.61137 3295.01 1.5035 8.86473 0.978566 19.7033 0.978566 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 3 param+error 5.75015 5.96756 0.00153074 0.00170957 6.81997 3.13809 208.426 537.602 3456.43 0.600455 10.3876 0.488685 67.6716 0.488685 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 4 param+error -467.328 319.866 0.122453 0.0837506 20.8314 6.93791 59.7319 51.7031 3784.81 0.523476 9.41189 0.350238 115.64 0.350238 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 5 param+error 1.97824 60.3672 -0.000451008 0.0151595 2.10094 3.84159 19.6481 38.5198 3955.55 1.62309 8.19122 1.03325 10.3197 1.03325 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 6 param+error -38.7425 171.247 0.01047 0.0358759 25.08 15.6338 40.6162 8.85287 4735.48 0.832706 10.4979 0.56405 36.4545 0.56405 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 7 param+error -2256.88 574.736 0.397072 0.10096 59.7466 2.84295 140.572 44.7706 5655.59 0.344115 10.1974 0.287366 155.063 0.287366 +CP dss 0 1 l pakw 8 1953.25 59.541 3.19511 2083.95 80.997 3.46047 3295.01 276.398 3.37929 3456.43 302.853 3.96199 3784.81 356.017 3.59507 3955.55 383.851 3.13178 4735.48 510.99 4.03765 5655.59 661.657 3.96298 +CM dss 0 1 l poly3 -258.349 0.164174 -9.38798e-07 1.19629e-10 error 30.357 0.0289505 8.39043e-06 7.51991e-10 +CR dss 0 1 l poly2 3.33494 -7.44253e-05 1.39559e-06 error 0.345905 0.00228608 3.2918e-06 + +# ROU: dss 0 2 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 0 param+error -2329.95 8.14299 1.17873 0.00411128 1419.56 40.6397 176.55 28.3883 1945.24 0.0299521 8.51161 0.018042 15345 0.018042 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 1 param+error 1185.14 1243.57 -0.337908 0.588127 449.229 21.793 114.992 29.0179 2076.61 0.0915238 9.09151 0.0801521 2764.19 0.0801521 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 2 param+error 271.266 198.51 -0.0738312 0.0593274 0.256706 6.448 33003.8 31436.7 3300.98 0.846979 10.7071 0.52974 47.4331 0.52974 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 3 param+error 17.5359 303.117 -0.00137587 0.0864488 42.57 35.0574 13.47 3.83241 3472.59 0.67641 8.93871 0.396873 65.4068 0.396873 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 4 param+error 0.158236 3.3797 9.15361e-05 0.000879207 30.6853 16.9907 14.731 4.60759 3809.43 0.58708 9.85134 0.270645 119.241 0.270645 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 5 param+error 0.0760793 0.13708 1.78183e-05 3.09306e-05 0.269123 0.1527 13609.4 10246.1 3987.88 0.753134 9.82545 0.690049 11.2843 0.690049 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 6 param+error -240.84 275.179 0.0517693 0.0566327 29.7 20.103 47.6069 13.4305 4812.36 0.791538 12.4843 0.576378 44.8479 0.576378 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 7 param+error -1433.21 365.48 0.245817 0.0625066 81.51 0.565449 72.0335 8.21868 5806.21 0.292742 11.1053 0.241274 156.929 0.241274 +CP dss 0 2 l pakw 8 1945.24 59.541 3.25178 2076.61 80.997 3.46285 3300.98 276.398 3.97119 3472.59 302.853 3.30376 3809.43 356.017 3.61685 3987.88 383.851 3.59497 4812.36 510.99 4.49981 5806.21 661.657 3.93896 +CM dss 0 2 l poly3 -263.572 0.170271 -2.25265e-06 6.43878e-11 error 12.4867 0.011823 3.39103e-06 2.99817e-10 +CR dss 0 2 l poly2 3.30137 0.000814298 1.79222e-07 error 0.350826 0.00232854 3.3276e-06 + +# ROU: dss 0 3 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1398.05 644.046 0.703857 0.322674 1527 44.5265 138.438 19.3365 1959.98 0.0289978 8.38956 0.0194039 16386.5 0.0194039 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 1 param+error 243.522 4.21943 0.114517 0.00193206 544.331 31.8137 85.7645 13.5562 2091.61 0.100015 8.88631 0.070325 2961.41 0.070325 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 2 param+error -77.0717 201.484 0.0304613 0.0604994 4.76819 2.31783 32841.4 17797.7 3306.42 0.68135 9.31878 0.549453 50.83 0.549453 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 3 param+error 110.758 276.189 -0.0279757 0.0787731 35.64 35.6391 11.7948 4.18828 3471.43 0.722258 9.17692 0.394839 63.8236 0.394839 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 4 param+error -315.904 341.809 0.0825932 0.089121 7.19995 3.50886 207.638 793.713 3800.5 0.340705 9.47864 0.262098 126.576 0.262098 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 5 param+error 8.4467 17.9528 -0.00205511 0.0044939 1.06649 3.34139 19.0936 42.9091 3973.13 1.44461 8.43102 1.00068 11.3713 1.00068 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 6 param+error -1260.44 488.072 0.265261 0.101679 23.4961 4.29875 217.574 310.481 4752.52 0.846947 13.0767 0.720466 79.1915 0.720466 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 7 param+error -7038.5 6.25854 1.23214 0.00109534 109.23 1.4356 128.716 6.48322 5679.65 0.23953 11.0957 0.194208 233.907 0.194208 +CP dss 0 3 l pakw 8 1959.98 59.541 3.18468 2091.61 80.997 3.37161 3306.42 276.398 3.53471 3471.43 302.853 3.4828 3800.5 356.017 3.60271 3973.13 383.851 3.20776 4752.52 510.99 5.00738 5679.65 661.657 4.29826 +CM dss 0 3 l poly3 -258.613 0.164056 -1.13282e-06 1.3761e-10 error 12.7196 0.0120715 3.48891e-06 3.12376e-10 +CR dss 0 3 l poly2 3.32568 -0.000711602 3.15231e-06 error 0.34291 0.00229462 3.38174e-06 + +# ROU: dss 0 4 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 0 param+error -4264.64 12.7032 2.13772 0.0063607 1567.93 33.081 177.04 20.0112 1963.73 0.0247734 8.32163 0.0158007 17319.4 0.0158007 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 1 param+error 261.624 3.78521 0.12066 0.00188921 552.487 41.676 96.4742 24.0953 2094 0.105031 8.59205 0.0685504 3233.54 0.0685504 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 2 param+error 311.32 202.885 -0.0843062 0.0607984 1.06565 2.6051 32502.8 17291.7 3298.84 0.578673 9.95928 0.381232 71.5613 0.381232 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 3 param+error 8.61719 7.39905 0.00270956 0.00211778 43.0029 45.7847 11.3268 3.77458 3463.71 0.71979 9.10798 0.35912 113.949 0.35912 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 4 param+error -631.059 355.804 0.165051 0.0929525 10.5099 3.15623 32666.5 32575.7 3793.44 0.223416 9.60012 0.125704 224.131 0.125704 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 5 param+error -11.0425 2.50961 0.00282689 0.000626652 0.484018 1.17679 39693 26867.6 3966.89 0.717403 9.48137 0.486824 23.3119 0.486824 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 6 param+error -1061.16 398.808 0.222604 0.0828127 20.2643 3.76838 340.342 652.501 4768.34 0.651814 12.752 0.525123 94.2299 0.525123 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 7 param+error 457.673 225.846 -0.0787496 0.0391268 112.2 5.77075 27.3575 1.72624 5732.6 0.258714 10.9867 0.154913 237.214 0.154913 +CP dss 0 4 l pakw 8 1963.73 59.541 3.20614 2094 80.997 3.30618 3298.84 276.398 3.78036 3463.71 302.853 3.44976 3793.44 356.017 3.61972 3966.89 383.851 3.56601 4768.34 510.99 4.73596 5732.6 661.657 4.00924 +CM dss 0 4 l poly3 -264.183 0.165886 -3.84294e-07 -6.60809e-11 error 12.582 0.0119041 3.42747e-06 3.05167e-10 +CR dss 0 4 l poly2 3.17476 0.00131161 -1.29185e-07 error 0.342688 0.00231083 3.33466e-06 + +# ROU: dss 0 5 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1025.74 477.786 0.530038 0.24539 1583.3 52.2444 200.806 46.5224 1909.8 0.0292167 8.38646 0.0184552 18116.1 0.0184552 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 1 param+error 266.436 4.08674 0.126267 0.00217325 570.552 36.1874 86.7068 15.4709 2041.47 0.0949234 8.73654 0.0643068 3343.22 0.0643068 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 2 param+error -1073.45 522.498 0.334635 0.159027 15.2682 4.92056 29100.1 18018.9 3259.4 0.715748 9.3623 0.463808 71.0533 0.463808 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 3 param+error -136.095 199.02 0.0442316 0.0576553 50.4899 45.4875 12.0994 2.2928 3424.92 0.42932 8.2137 0.277386 98.5335 0.277386 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 4 param+error -334.896 133.503 0.0884106 0.0351712 9.10806 2.19106 158.99 195.654 3755.86 0.212097 9.36756 0.157602 187.11 0.157602 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 5 param+error -7.51889 0.32014 0.00199335 6.78919e-05 1.75205 2.46694 21.0402 25.1576 3930.94 1.04604 8.93863 0.739707 16.1364 0.739707 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 6 param+error -385.413 529.966 0.083514 0.111151 28.2515 14.6852 39.5879 37.355 4723.82 1.02777 11.4201 0.693927 94.8002 0.693927 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.45808 7.1248 0.000289231 0.00124959 125.745 19.537 24.2316 3.02141 5667.23 0.40792 10.1248 0.202482 290.363 0.202482 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 8 param+error 2.07847 0.0183399 -0.000198895 1.65007e-07 0.76125 0.246758 119.882 41.2439 9500.84 3.02394 14.7724 2.09989 3.11648 2.09989 +CP dss 0 5 l pakw 9 1909.8 59.541 3.17897 2041.47 80.997 3.31016 3259.4 276.398 3.53461 3424.92 302.853 3.09975 3755.86 356.017 3.53264 3930.94 383.851 3.36971 4723.82 510.99 4.29972 5667.23 661.657 3.80876 9500.84 1274.58 5.57835 +CM dss 0 5 l poly3 -248.975 0.162285 -4.04714e-07 2.12943e-11 error 3.36988 0.00281617 6.59408e-07 4.28403e-11 +CR dss 0 5 l poly2 3.24813 -0.000179158 1.57212e-06 error 0.28508 0.00126985 1.00519e-06 + +# ROU: dss 0 6 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.46646 0.883046 0.000991646 0.000472321 1571.35 39.7214 229.253 41.3518 1874.17 0.0259051 8.52517 0.0160497 18525.4 0.0160497 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 1 param+error 271.357 4.11291 0.129991 0.0022366 576.46 41.5788 91.7429 19.9904 2007.84 0.104916 8.87433 0.0687612 3388.81 0.0687612 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 2 param+error 187.607 195.777 -0.0475051 0.0599381 3.91408 2.49273 32148.9 26257.4 3242.31 0.486028 9.67842 0.416837 85.8213 0.416837 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 3 param+error 145.624 134.964 -0.0365253 0.039545 62.04 53.6482 9.14555 1.49755 3410.81 0.368189 9.09277 0.287264 125.497 0.287264 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 4 param+error -344.838 225.801 0.0912725 0.0595986 15.2463 3.96473 63.8249 46.9958 3748.53 0.192669 9.84066 0.164113 270.997 0.164113 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 5 param+error 0.284566 8.49958 -5.57823e-05 0.00214494 13.86 12.2446 10.3616 3.52033 3929.65 2.01836 8.1691 0.762005 17.7258 0.762005 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 6 param+error 5.21232 0.715495 0.00112596 0.000154776 13.7085 3.73565 77.4027 37.226 4744.72 0.508497 11.7946 0.437111 103.192 0.437111 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 7 param+error -2066.28 6.13872 0.359229 0.0010654 80.9657 10.2683 57.9132 11.7694 5723.56 0.300941 10.8387 0.170057 327.703 0.170057 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 8 param+error 4.60409 21.2881 -0.000442467 0.0021767 0.593928 0.382205 78.5121 108.539 9740.71 2.40542 10.5983 2.2129 2.98225 2.2129 +CP dss 0 6 l pakw 9 1874.17 59.541 3.21096 2007.84 80.997 3.33626 3242.31 276.398 3.58225 3410.81 302.853 3.35908 3748.53 356.017 3.62212 3929.65 383.851 3.00125 4744.72 510.99 4.30043 5723.56 661.657 3.92298 9740.71 1274.58 3.80071 +CM dss 0 6 l poly3 -244.489 0.164719 -1.42469e-06 5.38432e-11 error 3.27995 0.00275289 6.40066e-07 4.06267e-11 +CR dss 0 6 l poly2 3.19289 0.000735722 -1.78302e-07 error 0.28687 0.00124693 9.07244e-07 + +# ROU: dss 0 7 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 0 param+error -3057.09 910.396 1.53967 0.457653 1678.58 40.4256 180.745 27.2333 1954.5 0.0254346 8.46024 0.0179812 19041.8 0.0179812 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 1 param+error 279.664 4.11026 0.130873 0.0021421 672.962 47.4649 63.188 9.38804 2087.85 0.104069 8.76685 0.0676378 3471.57 0.0676378 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 2 param+error 350.997 592.046 -0.0949179 0.176466 2.63125 5.39423 32959.5 32878.7 3319.53 0.612172 9.41243 0.39749 90.9365 0.39749 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 3 param+error -165.566 497.868 0.0523795 0.14133 29.8106 28.9428 20.282 25.1596 3486.59 0.783858 8.66264 0.454697 154.425 0.454697 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 4 param+error -93.7548 0.608437 0.0245873 0.000156904 29.0999 22.8095 22.6714 15.2935 3821.54 0.488451 9.17699 0.245277 281.157 0.245277 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 5 param+error 119.806 31.8012 -0.0299211 0.00794295 8.57896 9.55246 1.00122 20886.1 3996.16 0.610659 12.1758 0.666854 25.7235 0.666854 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 6 param+error 181.74 565.464 -0.035148 0.11689 7.60581 4.68673 47709.3 37240.8 4797.95 0.528002 11.8619 0.280306 115.759 0.280306 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 7 param+error -2092.22 0.798599 0.362188 0.000193464 153.45 131.742 27.1913 0.679033 5754.14 0.175642 9.66902 0.131361 327.295 0.131361 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 8 param+error 0.859546 3.33312 -7.15433e-05 0.00033539 1.00994 0.443189 65.0841 31.2497 9671.66 2.77295 11.0296 2.13219 3.42347 2.13219 +CP dss 0 7 l pakw 9 1954.5 59.541 3.16768 2087.85 80.997 3.28199 3319.53 276.398 3.51717 3486.59 302.853 3.23596 3821.54 356.017 3.42574 3996.16 383.851 4.54345 4797.95 510.99 4.4175 5754.14 661.657 3.5905 9671.66 1274.58 4.0247 +CM dss 0 7 l poly3 -251.353 0.159158 4.80075e-09 -1.5293e-11 error 3.36079 0.00273645 6.22887e-07 3.93139e-11 +CR dss 0 7 l poly2 3.143 0.00132107 -5.13571e-07 error 0.281141 0.00124697 9.2458e-07 + +# ROU: dss 0 8 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1123.79 917.176 0.57702 0.468455 1617.96 41.2061 238.971 49.3303 1922.16 0.0262553 8.67041 0.0187003 18916.3 0.0187003 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 1 param+error 5971.85 2564.04 -2.58932 1.22756 848.308 91.0607 32.2559 7.29694 2055.74 0.139056 8.61755 0.111654 3229.19 0.111654 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 2 param+error 682.974 1.99965 -0.196557 0.000701338 4.01339e-06 2.94137 715.454 29690.2 3280.61 0.313451 9.26524 0.364911 93.5298 0.364911 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 3 param+error -775.129 681.032 0.227696 0.195647 14.2326 6.34967 34472.3 19223.3 3447.35 0.383957 9.7402 0.198122 175.617 0.198122 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 4 param+error 67.7404 185.01 -0.017415 0.0484576 110.55 106.104 10.274 1.07912 3782.48 0.23763 9.15359 0.131521 250.526 0.131521 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 5 param+error 35.4505 52.4816 -0.00885115 0.0131176 12.54 10.4778 12.5493 12.1558 3959.18 2.72237 8.9421 1.01078 22.7563 1.01078 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.52757 7.55791 0.00135489 0.00157621 18.7711 7.77088 65.5802 57.1154 4760.51 0.537496 10.3747 0.374426 117.497 0.374426 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.21248 5.88251 0.0002467 0.0010223 75.2958 12.5923 38.6835 7.32351 5716.12 0.273651 10.376 0.152639 368.926 0.152639 +CP dss 0 8 l pakw 8 1922.16 59.541 3.27506 2055.74 80.997 3.2515 3280.61 276.398 3.467 3447.35 302.853 3.64156 3782.48 356.017 3.41693 3959.18 383.851 3.33559 4760.51 510.99 3.86087 5716.12 661.657 3.85797 +CM dss 0 8 l poly3 -251.701 0.163679 -1.02614e-06 6.06911e-11 error 11.1735 0.010669 3.08993e-06 2.76749e-10 +CR dss 0 8 l poly2 3.25489 0.000329657 8.04111e-07 error 0.342682 0.00226644 3.24398e-06 + +# ROU: dss 0 9 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 0 param+error -2325.31 669.775 1.20207 0.345226 1567.96 44.7795 299.152 87.2131 1903.98 0.0264075 8.48692 0.0177834 19357.1 0.0177834 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 1 param+error 275.088 3.36938 0.133366 0.00173319 545.45 21.3291 123.35 16.5606 2037.2 0.073081 8.826 0.053685 3615.56 0.053685 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 2 param+error 308.152 343.794 -0.083576 0.104324 13.6538 27.7166 11.5845 36.1698 3265.01 1.5812 8.46322 0.820916 76.4928 0.820916 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 3 param+error 368.265 146.533 -0.101244 0.0424187 64.0172 48.486 5.86593 2.28316 3431.5 0.520878 8.767 0.304266 128.058 0.304266 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 4 param+error -267.657 350.307 0.0705762 0.0921257 16.9007 9.635 40.8842 46.3155 3767.6 0.319911 9.12053 0.246633 213.951 0.246633 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 5 param+error 41.3068 21.8991 -0.0103725 0.00554538 5.721 4.69882 1.01017 0.000154916 3944.07 0.00258274 8.77407 5.01174e-05 20.7797 5.01174e-05 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.83326 0.681893 0.00153152 0.000155494 30.4377 6.19176 28.5924 5.63023 4753.19 0.389796 10.3341 0.366167 102.482 0.366167 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.3249 6.78146 0.000157212 0.00117886 90.29 15.3974 32.351 5.51018 5717.95 0.284321 10.0395 0.158798 381.437 0.158798 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 8 param+error 17.5789 31.367 -0.001772 0.00321894 1.19816 1.31545 19.0769 19.1979 9694.59 2.66346 9.52182 2.12835 3.03705 2.12835 +CP dss 0 9 l pakw 9 1903.98 59.541 3.20429 2037.2 80.997 3.32829 3265.01 276.398 3.15813 3431.5 302.853 3.26712 3767.6 356.017 3.38991 3944.07 383.851 3.25674 4753.19 510.99 3.81326 5717.95 661.657 3.68111 9694.59 1274.58 3.42817 +CM dss 0 9 l poly3 -248.491 0.163349 -8.53448e-07 2.16032e-11 error 3.17604 0.00263285 6.0789e-07 3.85282e-11 +CR dss 0 9 l poly2 3.14634 0.000695423 -3.5101e-07 error 0.283721 0.00122462 8.78987e-07 + +# ROU: dss 0 10 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 0 param+error -3017.52 820.854 1.5691 0.426321 1632.33 37.1567 261.341 52.1969 1890.93 0.0239772 8.3401 0.0169319 19686.6 0.0169319 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 1 param+error 277.761 3.74283 0.136296 0.00201915 728.879 50.4032 55.5737 7.29986 2022.93 0.10649 8.57919 0.066404 3494.9 0.066404 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 2 param+error 94.4629 314.782 -0.0176168 0.0962654 44.88 43.8532 8.42251 4.2253 3238.4 0.960041 8.88117 0.543356 70.648 0.543356 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 3 param+error 292.764 139.991 -0.0801412 0.0410349 66.3289 66.0343 10.1863 1.45037 3402.85 0.35405 8.63504 0.272501 134.092 0.272501 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 4 param+error -122.157 160.036 0.0325821 0.0424196 44.2013 39.2428 16.1692 11.5314 3733.3 0.551491 8.90491 0.243426 268.133 0.243426 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 5 param+error -37.1357 0.305007 0.00954359 6.37682e-05 11.0703 12.4442 10.3797 3.88873 3907.22 1.33673 8.3746 0.682689 23.2156 0.682689 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 6 param+error 194.499 455.688 -0.0381185 0.0963612 57.75 46.8946 15.5697 3.75269 4698.63 0.585861 9.74924 0.346082 91.2322 0.346082 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.465277 0.425902 7.07753e-05 7.56455e-05 30.2387 1.04046 30299.4 2687.6 5628.91 0.132544 10.3206 0.10594 439.014 0.10594 +CP dss 0 10 l pakw 8 1890.93 59.541 3.18046 2022.93 80.997 3.26676 3238.4 276.398 3.35506 3402.85 302.853 3.26124 3733.3 356.017 3.3634 3907.22 383.851 3.16422 4698.63 510.99 3.69966 5628.91 661.657 3.95895 +CM dss 0 10 l poly3 -251.359 0.167612 -2.04563e-06 1.9269e-10 error 10.8079 0.0104942 3.09063e-06 2.81631e-10 +CR dss 0 10 l poly2 3.29396 -0.00106847 3.06068e-06 error 0.337003 0.00220988 3.19946e-06 + +# ROU: dss 0 11 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1787.44 514.754 0.902304 0.258985 1682.46 47.9408 186.022 33.8572 1951.18 0.0260709 8.24281 0.0167304 19832.8 0.0167304 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 1 param+error 278.384 4.45202 0.133224 0.0024493 612.771 34.9611 82.2007 12.3655 2082.82 0.0879734 8.64915 0.0612619 3631.91 0.0612619 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 2 param+error 98.2713 166.127 -0.0198838 0.0498013 44.22 42.9643 7.82213 2.86991 3294.61 0.858653 8.60114 0.50523 61.9339 0.50523 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 3 param+error -550.384 698.354 0.163423 0.20019 9.6422 4.44085 197.143 864.539 3457.36 0.337913 8.32995 0.29164 143.017 0.29164 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 4 param+error -213.751 377.71 0.056399 0.098913 15.695 8.05791 32.5824 33.1047 3784.73 0.248763 8.65048 0.205119 221.583 0.205119 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 5 param+error 0.894307 1.83474 -0.000222856 0.000458608 8.58 6.69604 9.10911 10.3911 3957.8 2.93831 8.2005 0.939812 16.0298 0.939812 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.25094 0.581845 0.00135544 0.000127542 29.463 9.54166 29.4077 8.03333 4735.16 0.599023 10.7976 0.370257 112.305 0.370257 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.683164 0.412492 0.000212737 7.43436e-05 63.4141 10.7975 48.5704 11.5184 5662.04 0.248405 9.92441 0.14082 416.04 0.14082 +CP dss 0 11 l pakw 8 1951.18 59.541 3.12579 2082.82 80.997 3.28149 3294.61 276.398 3.27899 3457.36 302.853 3.17777 3784.73 356.017 3.30465 3957.8 383.851 3.13511 4735.16 510.99 4.14245 5662.04 661.657 3.82431 +CM dss 0 11 l poly3 -253.518 0.159972 2.46075e-07 9.16678e-12 error 11.624 0.0110665 3.20883e-06 2.88302e-10 +CR dss 0 11 l poly2 3.26878 -0.00111397 2.89833e-06 error 0.33377 0.00217348 3.12545e-06 + +# ROU: dss 0 12 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 0 param+error 3.24531 0.971692 0.00170118 0.000510271 1538.28 39.6459 294.261 70.0499 1857.77 0.0249881 8.46866 0.015174 19587.3 0.015174 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 1 param+error 284.637 3.94307 0.140025 0.0021477 672.325 49.8659 62.4467 9.95341 1990.54 0.10558 8.67421 0.0668113 3534.8 0.0668113 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 2 param+error 17.5934 9.14382 0.00551035 0.00280982 10.5317 7.55672 35.4498 31.6927 3226.57 0.623688 9.03999 0.502068 89.3899 0.502068 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 3 param+error 7.88229 1.72803 0.0028651 0.000573043 12.8821 3.48062 39.4509 13.7849 3395.64 0.269024 9.54401 0.199979 157.493 0.199979 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 4 param+error 276.015 106.564 -0.0728687 0.0282791 104.602 52.5063 7.57727 1.08873 3738.79 0.253459 9.22705 0.148254 237.403 0.148254 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 5 param+error -1.64677 50.9319 0.000439358 0.0128763 0.698241 1.54766 39221 23841.1 3918.84 0.703607 9.42892 0.488207 28.4258 0.488207 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 6 param+error -34.3501 617.421 0.00981127 0.128715 22.8611 14.7041 34.6301 41.4107 4754.57 0.782785 11.1934 0.602607 110.797 0.602607 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.692584 6.65272 0.000194915 0.00114834 91.9666 17.8607 31.8407 6.06509 5757.36 0.326329 10.4639 0.174334 368.225 0.174334 +CP dss 0 12 l pakw 8 1857.77 59.541 3.21666 1990.54 80.997 3.28307 3226.57 276.398 3.31943 3395.64 302.853 3.49141 3738.79 356.017 3.35094 3918.84 383.851 3.41175 4754.57 510.99 3.98825 5757.36 661.657 3.67283 +CM dss 0 12 l poly3 -248.245 0.170433 -2.74476e-06 1.02856e-10 error 10.2948 0.0100319 2.9426e-06 2.6508e-10 +CR dss 0 12 l poly2 3.22373 0.000346797 4.8574e-07 error 0.340246 0.00222881 3.15302e-06 + +# ROU: dss 0 13 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1143.4 493.002 0.591354 0.253176 1586.25 46.7214 321.449 105.016 1910.53 0.0255849 8.24323 0.0165774 20104.2 0.0165774 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 1 param+error 276.884 4.11136 0.13392 0.00205911 592.59 33.8759 92.338 15.7926 2042.39 0.0843918 8.5968 0.059559 3752.78 0.059559 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 2 param+error 176.8 250.467 -0.0425904 0.0762287 49.5 41.7155 9.5876 2.80441 3256.53 0.79948 7.60715 0.523006 60.3039 0.523006 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 3 param+error 46.3216 568.599 -0.00826495 0.164855 4.1157 5.16793 34155.5 26171.3 3417.81 0.328065 8.97526 0.180276 174.489 0.180276 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 4 param+error -140.626 554.071 0.0375036 0.146654 28.2699 26.7433 21.4125 26.9149 3747.28 0.420251 8.70662 0.289404 257.991 0.289404 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 5 param+error -27.3401 0.118624 0.00693543 2.0313e-05 1.76367 2.1433 39.9998 68.0044 3919.45 0.694295 9.04763 0.439959 26.8457 0.439959 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 6 param+error -1540.38 314.253 0.328087 0.0663232 19.9665 2.77671 46951.2 46882.3 4700.47 0.378101 10.835 0.22781 128.033 0.22781 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1810.26 568.558 -0.319438 0.100439 172.26 119.278 15.3741 1.34048 5627.98 0.204407 9.11747 0.1116 358.562 0.1116 +CP dss 0 13 l pakw 8 1910.53 59.541 3.12224 2042.39 80.997 3.25761 3256.53 276.398 2.89523 3417.81 302.853 3.41802 3747.28 356.017 3.31996 3919.45 383.851 3.45234 4700.47 510.99 4.14758 5627.98 661.657 3.50422 +CM dss 0 13 l poly3 -246.75 0.159901 2.23319e-07 8.42524e-12 error 9.88305 0.00954921 2.80501e-06 2.54722e-10 +CR dss 0 13 l poly2 3.14778 2.09765e-05 8.63978e-07 error 0.333426 0.00216468 3.03451e-06 + +# ROU: dss 0 14 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1082.78 421.615 0.563722 0.218317 1543.27 49.1934 372.567 153.075 1893.84 0.0264871 8.29313 0.0167244 19987.2 0.0167244 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 1 param+error 280.893 4.18219 0.136752 0.00210793 603.41 34.8824 92.316 16.0028 2026.54 0.0883571 8.64865 0.0623353 3647 0.0623353 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 2 param+error 18.3005 0.763264 0.00566501 0.000239905 5.53439 1.11079 120.535 7.529 3244.84 0.387469 9.301 0.330717 89.1702 0.330717 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 3 param+error 370.262 155.656 -0.101741 0.0453657 67.9793 67.6094 7.55877 1.78075 3409.71 0.415356 8.62621 0.267649 143.939 0.267649 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 4 param+error 574.974 443.923 -0.152206 0.117794 107.033 59.5348 6.50227 4.64783 3740.27 0.688295 8.64643 0.230732 260.559 0.230732 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 5 param+error 0.00673465 0.18362 1.87085e-07 4.6826e-05 0.399256 0.193171 3320.55 3004.84 3913.09 0.453193 9.33833 0.337236 26.6172 0.337236 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 6 param+error 7.17644 7.57714 0.00159556 0.00159953 41.7182 14.7029 20.8965 5.57359 4704.86 0.683088 9.50786 0.38397 107.629 0.38397 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.19226 9.33518 4.0188e-05 0.00164528 92.0223 16.5847 30.4634 5.47418 5644.14 0.26623 9.75687 0.168977 409.492 0.168977 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 8 param+error -46.4487 33.9317 0.00489185 0.00355835 0.7296 0.130962 94201.7 67524.4 9490.65 1.09252 11.4943 0.918059 6.64348 0.918059 +CP dss 0 14 l pakw 9 1893.84 59.541 3.13195 2026.54 80.997 3.26694 3244.84 276.398 3.51775 3409.71 302.853 3.26273 3740.27 356.017 3.27049 3913.09 383.851 3.53211 4704.86 510.99 3.5945 5644.14 661.657 3.68359 9490.65 1274.58 4.2761 +CM dss 0 14 l poly3 -243.447 0.159562 2.89032e-07 -2.61491e-11 error 3.28548 0.002749 6.41195e-07 4.13764e-11 +CR dss 0 14 l poly2 3.14828 0.000675179 1.65986e-07 error 0.279774 0.00122964 9.20391e-07 + +# ROU: dss 0 15 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.46916 0.902478 0.0018073 0.000461972 1573.95 38.0827 143.531 15.781 1938.62 0.0234971 8.20518 0.0147622 19501.6 0.0147622 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 1 param+error 282.999 4.48632 0.129487 0.00245693 571.714 41.0166 98.6794 23.3943 2071.13 0.0914132 8.6318 0.0618336 3753.73 0.0618336 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 2 param+error 41.5526 10.2799 -0.0031419 0.00309057 4.66335 4.23987 6983.45 20634.7 3300.52 0.532159 8.70093 0.46695 80.16 0.46695 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 3 param+error -274.264 285.006 0.0831926 0.0813082 6.49568 3.03264 34503.9 19627.9 3468.07 0.311721 9.17603 0.198179 138.843 0.198179 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 4 param+error -3.15373 143.034 0.00107936 0.037226 82.83 78.7719 8.41249 1.05642 3806.37 0.265661 8.48453 0.143913 182.875 0.143913 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 5 param+error -3.9096 164.201 0.00100054 0.0408439 0.62625 1.31762 39856.9 38664.3 3982.99 0.822773 9.1533 0.756761 20.5217 0.756761 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 6 param+error 255.693 634.156 -0.0502212 0.131315 52.7977 49.289 15.6334 5.09265 4792.82 0.595822 10.4027 0.339879 101.42 0.339879 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 7 param+error -3225 6.07751 0.557666 0.00105019 71.7924 10.9581 114.389 62.5865 5751.13 0.246676 10.194 0.140812 423.271 0.140812 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 8 param+error -47.0795 74.222 0.00489268 0.00767487 0.815658 0.198081 243.011 584.611 9631.08 1.53078 9.27817 1.13421 4.21457 1.13421 +CP dss 0 15 l pakw 9 1938.62 59.541 3.09683 2071.13 80.997 3.25271 3300.52 276.398 3.23966 3468.07 302.853 3.41225 3806.37 356.017 3.14796 3982.99 383.851 3.39258 4792.82 510.99 3.84244 5751.13 661.657 3.76062 9631.08 1274.58 3.51198 +CM dss 0 15 l poly3 -255.375 0.165018 -1.47491e-06 8.67322e-11 error 3.30689 0.00272028 6.25275e-07 3.96496e-11 +CR dss 0 15 l poly2 3.04633 0.00112281 -5.74926e-07 error 0.277647 0.00121355 8.77168e-07 + +# ROU: dss 0 16 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 0 param+error -33.7862 1.83897e-05 -0.0191377 3.21504e-05 3264.28 1.2996 56.1941 11682.2 1896.36 0.00188809 11.3494 0.000886315 20175.3 0.000886315 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 1 param+error -4741.92 2344.95 2.57414 1.13596 644.052 37.9217 122.258 44.9379 2031.65 0.0924492 8.63498 0.0798606 3678.41 0.0798606 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 2 param+error 388.828 161.062 -0.107983 0.0492862 49.1693 29.4661 6.75428 2.54572 3248.65 0.767371 7.9744 0.462635 73.6366 0.462635 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 3 param+error 652.393 537.344 -0.184231 0.156357 16.0069 39.1212 8.88 17.1149 3412 0.652822 8.66046 0.337335 164.721 0.337335 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 4 param+error -327.571 371.039 0.0870441 0.098184 21.9617 9.32839 34.9563 27.7806 3744.46 0.227724 8.79852 0.181438 289.949 0.181438 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 5 param+error -60.9358 161.772 0.0154077 0.0409219 3.14988 3.12402 31.822 63.6888 3919.48 0.860068 8.71482 0.627442 24.573 0.627442 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.69274 7.59268 0.00144087 0.00159968 29.6116 12.2576 26.9474 10.1161 4713.96 0.639127 10.3184 0.400734 113.496 0.400734 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.984101 0.412231 0.000174467 7.30805e-05 73.9304 19.5037 38.7154 13.1047 5663.77 0.311341 9.70988 0.160312 419.544 0.160312 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 8 param+error 36.1989 9.03989 -0.003745 0.000939748 3.92468 2.65913 24.8779 5.31012 9585.85 97.4806 6.85053 17.7018 0.018869 17.7018 +CP dss 0 16 l pakw 9 1896.36 59.541 4.29542 2031.65 80.997 3.26758 3248.65 276.398 3.01014 3412 302.853 3.26754 3744.46 356.017 3.31606 3919.48 383.851 3.28245 4713.96 510.99 3.87348 5663.77 661.657 3.6266 9585.85 1274.58 2.47326 +CM dss 0 16 l poly3 -245.466 0.160684 1.07256e-07 -3.41886e-11 error 3.27738 0.00269151 6.21634e-07 3.95447e-11 +CR dss 0 16 l poly2 3.47645 -0.000226824 -4.13808e-07 error 0.31571 0.00130372 8.87944e-07 + +# ROU: dss 0 17 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1441.82 535.102 0.766182 0.282872 1558.24 45.4757 404.816 164.004 1854.93 0.0255513 8.39139 0.0172154 20045.8 0.0172154 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 1 param+error -2581.62 3563.5 1.54403 1.76501 599.839 30.5144 127.851 59.4945 1988.24 0.0835813 8.85325 0.0834892 3727.21 0.0834892 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 2 param+error 363.3 246.725 -0.103194 0.0762665 1.50657 2.74889 31819.9 23618.3 3210.37 0.503905 8.90726 0.417246 77.8704 0.417246 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 3 param+error 29.3017 492.07 -0.00376051 0.144402 3.76663 4.49075 33156.5 20469.4 3374.27 0.357798 9.04903 0.214635 141.493 0.214635 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 4 param+error -2.41026 3.39399 0.000899123 0.000907921 15.2001 8.72723 21.07 9.21668 3704.48 0.250915 8.58825 0.159092 218.095 0.159092 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 5 param+error 22.3251 10.7069 -0.00565358 0.00277974 6.30399e-07 10.1321 1.09215 0.00770118 3876.57 0.497264 8.94005 0.394484 19.1057 0.394484 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 6 param+error 394.75 253.751 -0.0810619 0.0540052 52.3927 49.5206 13.2157 7.16765 4660.35 1.0138 10.0492 0.458969 108.72 0.458969 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.860397 0.422401 0.000137405 7.55007e-05 30.6887 1.07704 52279.3 4615.94 5587.84 0.127854 10.0394 0.102668 459.917 0.102668 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 8 param+error 24.7869 17.3751 -0.0026064 0.00184788 2.24974 0.715744 24.4194 8.01891 9379.87 1.71244 4.08522 20.3736 2.73872 20.3736 +CP dss 0 17 l pakw 9 1854.93 59.541 3.13819 1988.24 80.997 3.31612 3210.37 276.398 3.37606 3374.27 302.853 3.43404 3704.48 356.017 3.26651 3876.57 383.851 3.40385 4660.35 510.99 3.84003 5587.84 661.657 3.84368 9379.87 1274.58 1.53506 +CM dss 0 17 l poly3 -231.169 0.154452 1.39812e-06 -7.99768e-11 error 3.29642 0.00280435 6.63001e-07 4.30036e-11 +CR dss 0 17 l poly2 2.9627 0.00256856 -2.88683e-06 error 0.281556 0.00121718 8.21999e-07 + +# ROU: dss 0 18 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 0 param+error 3.00257 0.824342 0.00125173 0.000425552 1584.33 46.7996 249.36 57.1293 1928.64 0.0268562 8.54657 0.0161334 19588.7 0.0161334 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 1 param+error 280.217 4.01563 0.131997 0.00213969 643.174 53.2741 70.0414 13.7356 2062.29 0.110703 8.82721 0.0689056 3580.62 0.0689056 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 2 param+error 54.7889 613.961 -0.00666951 0.185143 4.07442 5.60815 32817 28833.1 3289.07 0.632711 9.15072 0.376046 88.7347 0.376046 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 3 param+error 127.858 263.015 -0.0315177 0.0754289 53.7065 32.6091 8.49379 9.07343 3455.65 1.16205 8.49906 0.449055 142.647 0.449055 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 4 param+error 168.752 196.428 -0.0438136 0.0513006 37.9811 64.6816 11.6729 11.5219 3789.78 0.655971 8.82996 0.285051 237.808 0.285051 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 5 param+error -68.0142 108.395 0.017048 0.02709 1.82478 3.1347 41.6616 150.501 3965.18 0.892784 8.21507 0.604507 25.1908 0.604507 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 6 param+error -708.591 784.36 0.150361 0.163231 19.7728 4.07971 106.724 142.377 4767.42 0.412 10.4909 0.390791 129.711 0.390791 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 7 param+error 2.26427 10.4318 0.000425625 0.0018133 124.273 23.4289 23.1491 3.57679 5723.64 0.317439 9.52296 0.176706 385.836 0.176706 +CP dss 0 18 l pakw 8 1928.64 59.541 3.21491 2062.29 80.997 3.31922 3289.07 276.398 3.42715 3455.65 302.853 3.18113 3789.78 356.017 3.30073 3965.18 383.851 3.06872 4767.42 510.99 3.90526 5723.64 661.657 3.52842 +CM dss 0 18 l poly3 -249.22 0.160419 -1.28354e-07 -1.63389e-11 error 11.2194 0.0106904 3.08811e-06 2.75541e-10 +CR dss 0 18 l poly2 3.33485 -0.000889478 1.71766e-06 error 0.339425 0.00217232 3.05105e-06 + +# ROU: dss 0 19 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 0 param+error 1.71783 0.746396 0.00121835 0.000375528 1624.32 45.3443 214.146 41.2681 1864.22 0.0258829 8.40099 0.0153776 19916.8 0.0153776 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 1 param+error 1580.85 1328.14 -0.501185 0.652769 760.063 104.067 45.4245 12.634 1997.77 0.154349 8.5949 0.0931785 3591.4 0.0931785 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 2 param+error 206.811 251.374 -0.0528381 0.0773084 0.894675 2.77578 31787.8 16354.6 3226.58 0.476528 8.85398 0.370626 86.0575 0.370626 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 3 param+error 490.98 95.1716 -0.138369 0.0281725 1.5207e-06 4.45191 26759.9 20228.3 3394.33 0.221464 9.39176 0.228816 144.71 0.228816 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 4 param+error -63.2811 240.632 0.0170417 0.06376 28.3994 59.9143 12.772 37.6981 3732.93 1.64789 9.20655 0.632853 206.2 0.632853 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 5 param+error 8.70589e-09 2.53126e-07 1.74834e-12 1.20635e-07 0.0335086 9.53996 39284.4 17.7182 3908.99 1.58537 10.0044 1.42904 19.085 1.42904 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 6 param+error -1323.28 596.457 0.279688 0.124977 23.7254 5.38898 197.031 319.146 4730.93 0.531768 11.4576 0.428062 123.377 0.428062 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.40764 6.36276 0.000210239 0.00110695 45.3916 11.4372 96.884 74.9796 5710.9 0.240325 10.2377 0.142668 431.947 0.142668 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 8 param+error 16.2367 14.011 -0.00162614 0.00142316 3.63 2.73652 20.1981 7.93907 9771.12 8.19582 8.37765 2.95352 2.25704 2.95352 +CP dss 0 19 l pakw 9 1864.22 59.541 3.18649 1997.77 80.997 3.2525 3226.58 276.398 3.2853 3394.33 302.853 3.47632 3732.93 356.017 3.39157 3908.99 383.851 3.67672 4730.93 510.99 4.16782 5710.9 661.657 3.68588 9771.12 1274.58 2.95882 +CM dss 0 19 l poly3 -246.022 0.166939 -1.7393e-06 5.94685e-11 error 3.1552 0.00264427 6.12124e-07 3.86372e-11 +CR dss 0 19 l poly2 3.06322 0.00176353 -1.44088e-06 error 0.280809 0.00122572 8.6688e-07 + +# ROU: dss 0 20 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.40339 1.0067 0.00143541 0.000547541 1546.86 40.1237 379.078 115.364 1921.94 0.0245751 8.49241 0.0151997 19776.5 0.0151997 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 1 param+error 279.026 3.88302 0.134209 0.00201307 759.937 55.4483 53.3419 7.22583 2054.08 0.10925 8.70656 0.0664339 3549.23 0.0664339 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 2 param+error -82.4943 549.522 0.0356129 0.166684 19.6552 31.3503 17.4892 33.6308 3264.74 1.27439 9.16614 0.769485 77.3188 0.769485 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 3 param+error -5446.82 1574.74 1.5812 0.455679 47.6023 11.9718 34187.1 33403.2 3429.44 0.541867 9.33729 0.238907 165.066 0.238907 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 4 param+error 125.265 97.1621 -0.0327911 0.0255697 92.4 47.0712 8.76583 4.24433 3758.01 0.882718 8.65637 0.304337 225.863 0.304337 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 5 param+error -45.7836 143.093 0.0116595 0.0361327 1.42924 1.50623 38.9031 114.054 3929.22 0.583995 8.15741 0.469067 26.0417 0.469067 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 6 param+error 179.912 436.072 -0.0348272 0.0918211 24.6977 13.7742 26.9823 22.2618 4711.26 0.5735 10.3703 0.419629 124.263 0.419629 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.352666 6.58301 5.99948e-05 0.00116179 72.6222 15.3878 43.0426 13.1084 5632.6 0.251944 9.80693 0.143595 437.061 0.143595 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 8 param+error 10.4063 12.7793 -0.00107965 0.00136773 0.463213 0.429858 61.9294 89.1295 9306.99 1.36364 10.7159 1.1437 6.06775 1.1437 +CP dss 0 20 l pakw 9 1921.94 59.541 3.22183 2054.08 80.997 3.30386 3264.74 276.398 3.4905 3429.44 302.853 3.55804 3758.01 356.017 3.30336 3929.22 383.851 3.11552 4711.26 510.99 3.97803 5632.6 661.657 3.78602 9306.99 1274.58 4.29831 +CM dss 0 20 l poly3 -249.846 0.161069 -1.17171e-07 4.40624e-11 error 3.47839 0.00290135 6.79654e-07 4.43396e-11 +CR dss 0 20 l poly2 3.24401 0.000240455 4.75982e-07 error 0.285529 0.00124103 9.25137e-07 + +# ROU: dss 0 21 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1174.1 492.659 0.611794 0.255024 1556.62 46.8443 431.817 191.906 1894.62 0.026054 8.37437 0.0168648 20041.9 0.0168648 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 1 param+error 276.916 4.36094 0.135607 0.00250333 613.6 34.1733 85.8085 13.1179 2026.97 0.0848634 8.66965 0.0594214 3728.45 0.0594214 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 2 param+error -91.7116 513.869 0.0375955 0.156927 10.3122 25.4388 29.4065 78.3568 3239.61 1.05201 8.95461 0.682904 77.5663 0.682904 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 3 param+error 7.40159 0.822857 0.00226288 0.000272809 10.033 6.50056 33.0921 24.2985 3402.61 0.393287 8.9928 0.304468 132.97 0.304468 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 4 param+error 0.382036 4.23018 0.00011839 0.00112486 10.0612 4.59428 31.2206 14.2572 3730.86 0.21144 8.72746 0.152928 215.473 0.152928 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 5 param+error -26.9509 37.4154 0.00691221 0.00952985 9.23795 6.65259 8.46239 2.46963 3905.16 0.844921 7.52216 0.551844 14.7314 0.551844 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.74312 7.27608 0.00147211 0.00154002 41.9703 17.9803 20.0042 7.35208 4688.62 0.793509 9.82117 0.396064 110.883 0.396064 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 7 param+error -3654.49 6.736 0.646415 0.00119093 64.9579 9.90053 171.319 145.689 5623.11 0.209305 9.80237 0.129694 462.668 0.129694 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 8 param+error 22.1783 17.4448 -0.00230515 0.0018305 0.2771 0.32602 61.3642 104.773 9449.59 1.79569 10.1152 1.29757 3.92407 1.29757 +CP dss 0 21 l pakw 9 1894.62 59.541 3.1734 2026.97 80.997 3.28696 3239.61 276.398 3.40624 3402.61 302.853 3.42166 3730.86 356.017 3.32202 3905.16 383.851 2.86363 4688.62 510.99 3.73891 5623.11 661.657 3.72697 9449.59 1274.58 3.76875 +CM dss 0 21 l poly3 -243.859 0.15925 5.65376e-07 -4.37268e-11 error 3.30633 0.00277448 6.50403e-07 4.20898e-11 +CR dss 0 21 l poly2 3.19388 0.000170942 2.45111e-07 error 0.281785 0.00121071 8.82344e-07 + +# ROU: dss 0 22 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.84231 0.797742 0.00184758 0.000391619 1607.85 49.1903 240.812 58.9083 1982.67 0.0265164 8.35521 0.0156554 20130.8 0.0156554 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 1 param+error -8132.05 3223.85 4.05004 1.50217 605.882 31.1723 312.685 242.351 2114.67 0.0838502 8.9165 0.0760072 3816.24 0.0760072 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 2 param+error 181.051 261.326 -0.0424878 0.0779286 1.77874 2.7945 33040.4 17131.9 3330.48 0.443578 8.92629 0.359475 95.4863 0.359475 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 3 param+error -641.193 608.376 0.187358 0.172435 13.0024 5.47163 34681 17874.4 3497.24 0.337927 9.00732 0.183606 176.832 0.183606 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 4 param+error -447.18 433.019 0.115954 0.111967 38.4017 21.6594 23.4005 16.5986 3831.66 0.327874 9.00733 0.233517 309.294 0.233517 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 5 param+error 27.2468 0.152463 -0.00670267 3.08738e-05 11.4437 6.99779 7.92505 9.51997 4008.17 2.76879 8.96072 0.950203 27.5589 0.950203 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 6 param+error -39.3548 728.714 0.0106911 0.150154 24.7593 13.7072 35.1941 41.3155 4813.41 0.652872 10.334 0.568812 117.102 0.568812 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.643657 6.92861 0.000114461 0.00119346 72.627 11.4413 41.6148 8.23249 5772.29 0.222353 9.83154 0.138496 430.892 0.138496 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 8 param+error 24.5764 20.7117 -0.00250488 0.0021371 3.3 3.294 18.2356 3.59681 9677.98 2.08044 5.68393 1.41158 2.91641 1.41158 +CP dss 0 22 l pakw 9 1982.67 59.541 3.19415 2114.67 80.997 3.40188 3330.48 276.398 3.3515 3497.24 302.853 3.37572 3831.66 356.017 3.36421 4008.17 383.851 3.34126 4813.41 510.99 3.82924 5772.29 661.657 3.62605 9677.98 1274.58 2.12316 +CM dss 0 22 l poly3 -267.93 0.168349 -1.77465e-06 8.76452e-11 error 3.38468 0.00273517 6.1929e-07 3.87398e-11 +CR dss 0 22 l poly2 3.11901 0.00160172 -1.86034e-06 error 0.284755 0.00121378 8.30514e-07 + +# ROU: dss 0 23 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 0 param+error -915.612 7.80808 0.478645 0.00405745 1589.29 42.0305 340.522 98.7973 1888.53 0.0245489 8.33006 0.0150644 20278.9 0.0150644 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 1 param+error -1833.64 1279.82 1.16457 0.621925 579.832 21.5542 144.71 33.4591 2020.67 0.0701598 8.71063 0.0616089 3820.53 0.0616089 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 2 param+error 364.481 117.81 -0.102466 0.0364217 41.2475 30.4745 6.53419 2.61499 3242.51 0.815803 8.84807 0.580801 64.565 0.580801 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 3 param+error -51.5659 526.931 0.0192774 0.153146 4.03 4.72108 8260.97 18939.3 3408.42 0.383836 9.08357 0.219009 134.454 0.219009 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 4 param+error -172.284 537.92 0.0460538 0.142426 10.5004 4.56653 44.4275 77.1427 3746.96 0.204065 8.85645 0.193264 207.274 0.193264 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 5 param+error -46.4056 76.1377 0.0117501 0.0192182 0.667728 0.705267 6220.96 32365.7 3924.29 0.696232 9.23624 0.463444 18.0539 0.463444 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.46913 0.550826 0.00135841 0.000117991 12.0216 3.17568 79.6578 38.9931 4741.97 0.35995 10.92 0.273939 126.764 0.273939 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.898777 0.625293 0.000128829 0.000108482 35.5488 1.38968 56625.9 2822.99 5715.35 0.141399 10.1004 0.112684 455.22 0.112684 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 8 param+error 23.1317 0.0376949 -0.00235536 2.73338e-07 1.2786 0.62261 38.0966 12.7843 9643.62 1.62433 10.4778 1.06207 5.78532 1.06207 +CP dss 0 23 l pakw 9 1888.53 59.541 3.19157 2020.67 80.997 3.32664 3242.51 276.398 3.29477 3408.42 302.853 3.37305 3746.96 356.017 3.2717 3924.29 383.851 3.40365 4741.97 510.99 3.98863 5715.35 661.657 3.66998 9643.62 1274.58 3.95323 +CM dss 0 23 l poly3 -255.982 0.172006 -2.91379e-06 1.59198e-10 error 3.19385 0.00266619 6.18675e-07 3.94585e-11 +CR dss 0 23 l poly2 3.1912 0.000508035 8.29941e-08 error 0.28363 0.00123208 9.05913e-07 + +# ROU: dss 0 24 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 0 param+error -699.78 565.646 0.367653 0.295097 1633.96 46.2362 221.665 47.0003 1880 0.0260543 8.45561 0.0171621 19845.2 0.0171621 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 1 param+error -1693.05 1327.05 1.09588 0.647259 557.016 21.2077 182.174 51.9249 2012.98 0.0713525 8.88863 0.06312 3787.91 0.06312 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 2 param+error -767.891 33577.7 0.229904 10.1623 46.0857 30.3256 32465.9 23542.5 3258.31 17.5565 20.4198 16.2558 33.0689 16.2558 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 3 param+error 10.0981 7.99522 0.00249248 0.00233064 4.28099 3.05672 360.055 4552.21 3403.16 0.279386 9.38291 0.263123 163.152 0.263123 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 4 param+error -1172.93 351.895 0.311139 0.0933155 15.3383 3.12905 35649.7 32231.6 3737.89 0.185558 9.33519 0.106672 274.063 0.106672 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 5 param+error -77.2495 1.88587 0.0196405 0.000478072 0.999703 0.928145 454.002 29586.6 3913.39 0.568407 8.6117 0.408207 25.5999 0.408207 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.02928 0.540233 0.00132463 0.000119166 28.6111 10.5895 31.1595 10.5825 4715.79 0.640535 10.5208 0.360859 117.183 0.360859 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.767653 0.421704 0.000142726 7.44512e-05 115.112 24.2049 25.175 4.40235 5673.06 0.352648 9.58964 0.171617 395.439 0.171617 +CP dss 0 24 l pakw 8 1880 59.541 3.17388 2012.98 80.997 3.3375 3258.31 276.398 7.66482 3403.16 302.853 3.52048 3737.89 356.017 3.49802 3913.39 383.851 3.22415 4715.79 510.99 3.9174 5673.06 661.657 3.53554 +CM dss 0 24 l poly3 -238.607 0.157499 7.97065e-07 -1.03333e-10 error 12.0844 0.0116544 3.38343e-06 3.02992e-10 +CR dss 0 24 l poly2 3.15785 0.00253902 -3.19943e-06 error 0.339797 0.00229955 3.2514e-06 + +# ROU: dss 0 25 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 0 param+error -21594.2 6130.52 11.5353 3.28261 1748.71 85.6773 18355.1 11858.2 1845.17 0.0343017 8.43931 0.0189936 20169.5 0.0189936 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 1 param+error 282.87 4.07598 0.138844 0.00215719 586.304 36.1972 99.1996 19.5397 1977.66 0.0873099 8.73768 0.0596489 3813.84 0.0596489 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 2 param+error -504.723 650.984 0.165756 0.20118 8.87646 6.37483 32057.2 16044.7 3199.47 0.768072 10.2973 0.481413 79.6948 0.481413 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 3 param+error 9.39832 9.41356 0.00282096 0.00277718 24.7198 24.0934 12.7347 8.75649 3364.14 0.576494 8.85858 0.333183 133.417 0.333183 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 4 param+error -10.6055 290.568 0.00327394 0.0778764 23.2308 18.3388 17.718 15.0146 3697.14 0.311381 8.70297 0.212647 225.38 0.212647 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 5 param+error -1.20832 1.78947 0.000332244 0.000457812 1.16612 4.31872 21.6702 68.6833 3871.57 0.983613 8.10856 0.62335 23.5567 0.62335 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 6 param+error 554.568 177.042 -0.114995 0.0376458 57.7499 41.8928 13.4393 1.98809 4669.17 0.425406 9.58594 0.282784 109.52 0.282784 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.463262 0.52839 7.91865e-05 9.38718e-05 61.8463 14.3073 45.0853 14.6947 5619.19 0.259279 10.073 0.150733 433.132 0.150733 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 8 param+error 8.83196 26.9086 -0.000889308 0.00281646 1.10252 1.16021 33.1544 38.8072 9518.62 3.20985 11.2697 2.63871 3.17176 2.63871 +CP dss 0 25 l pakw 9 1845.17 59.541 3.19025 1977.66 80.997 3.30171 3199.47 276.398 3.87586 3364.14 302.853 3.3325 3697.14 356.017 3.27025 3871.57 383.851 3.04505 4669.17 510.99 3.58963 5619.19 661.657 3.75858 9518.62 1274.58 4.13499 +CM dss 0 25 l poly3 -237.401 0.161376 -2.13404e-07 -5.5157e-12 error 3.23733 0.00275288 6.48162e-07 4.19205e-11 +CR dss 0 25 l poly2 3.24089 0.000215858 3.96731e-07 error 0.284009 0.00122826 9.09883e-07 + +# ROU: dss 0 26 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1837.97 740.987 0.950734 0.38185 1597.62 42.1955 405.221 146.261 1904.81 0.0253326 8.49802 0.0174362 19872.5 0.0174362 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 1 param+error 283.518 4.35 0.138067 0.0021916 658.966 35.0953 76.6126 9.94293 2035.74 0.0857121 8.721 0.060993 3725.7 0.060993 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 2 param+error 446.333 88.6111 -0.126992 0.0275922 3.63497e-06 3.99904 20750.4 16923.9 3242.05 0.352144 9.25196 0.378355 82.9755 0.378355 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 3 param+error 27.0467 379.502 -0.00288547 0.110303 37.746 48.3422 12.4025 13.5819 3408.33 0.961632 8.51088 0.484355 125.171 0.484355 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 4 param+error 157.589 62.4943 -0.0410376 0.0167316 85.4699 77.9827 6.19054 0.779832 3739.92 0.236482 8.47864 0.167679 191.47 0.167679 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 5 param+error -41.827 140.518 0.0106083 0.035629 0.587916 1.09249 37226.4 37994.1 3914.24 0.693573 8.93202 0.384671 22.4688 0.384671 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.83096 0.713354 0.00144577 0.000152973 12.2604 1.33154 72.8834 7.53634 4712.22 0.24167 10.593 0.213773 131.171 0.213773 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.24398 0.50977 0.000224134 9.00389e-05 87.8713 20.1773 30.6903 7.03281 5666 0.30904 9.70835 0.162528 415.146 0.162528 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 8 param+error 3.86911 2.81788 -0.000362205 0.00030185 2.16245 1.16426 22.8434 9.09086 9531.49 2.08362 6.42353 1.45473 4.36615 1.45473 +CP dss 0 26 l pakw 9 1904.81 59.541 3.27473 2035.74 80.997 3.35372 3242.05 276.398 3.50036 3408.33 302.853 3.21401 3739.92 356.017 3.19095 3914.24 383.851 3.35609 4712.22 510.99 3.95601 5666 661.657 3.61029 9531.49 1274.58 2.42971 +CM dss 0 26 l poly3 -257.573 0.169687 -1.86381e-06 9.71235e-11 error 3.26495 0.00271645 6.30654e-07 4.02926e-11 +CR dss 0 26 l poly2 3.17839 0.00107195 -1.28885e-06 error 0.286785 0.00121659 8.39138e-07 + +# ROU: dss 0 27 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 0 param+error 4.66337 0.90127 0.00230894 0.000457546 1613.02 50.3299 259.502 68.9096 1926.84 0.0269495 8.47165 0.0158252 19837.7 0.0158252 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 1 param+error 285.396 4.37012 0.137493 0.0021794 635.393 35.8728 77.3868 10.8629 2059.07 0.0864829 8.72852 0.0607253 3731.96 0.0607253 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 2 param+error 32.8575 483.845 -0.000338783 0.145993 8.20883 8.36551 73.5565 252.467 3277.66 0.707232 8.89268 0.520743 84.8088 0.520743 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 3 param+error -119.171 805.295 0.0393301 0.231778 67.3196 48.8303 8.07238 4.27221 3444.09 0.695123 8.88022 0.338627 123.157 0.338627 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 4 param+error -1168.67 457.001 0.306715 0.119896 20.3682 3.73203 107.186 106.342 3778.79 0.20647 9.18661 0.17577 243.181 0.17577 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 5 param+error 127.793 0.204769 -0.0320258 4.32051e-05 1.21812 9.73827 17.2611 174.344 3955.35 1.28057 8.01961 0.627782 25.0288 0.627782 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.53353 0.704147 0.00143923 0.000155845 20.5779 7.19791 38.6729 14.3226 4768.44 0.522318 10.826 0.385495 120.231 0.385495 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 7 param+error 3.31741 1.16281 -7.81917e-06 0.000232439 29.7728 1.11356 26115.3 2119.15 5739.46 0.131019 10.2398 0.105244 451.683 0.105244 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 8 param+error 16.3476 0.0290981 -0.00163526 2.21138e-07 1.44388 0.594341 43.4791 12.279 9751.14 1.86134 11.4348 1.30237 5.25558 1.30237 +CP dss 0 27 l pakw 9 1926.84 59.541 3.24078 2059.07 80.997 3.33129 3277.66 276.398 3.32812 3444.09 302.853 3.31545 3778.79 356.017 3.4139 3955.35 383.851 2.97323 4768.44 510.99 3.9743 5739.46 661.657 3.72299 9751.14 1274.58 4.09883 +CM dss 0 27 l poly3 -259.298 0.16874 -1.82504e-06 6.68669e-11 error 3.2646 0.00269003 6.18648e-07 3.90964e-11 +CR dss 0 27 l poly2 3.25387 -7.71211e-05 6.07295e-07 error 0.286197 0.00123229 9.09271e-07 + +# ROU: dss 0 28 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 0 param+error -2173.66 18.483 1.09252 0.00925151 1696.57 40.0021 207.333 30.8711 1963.5 0.0255395 8.6675 0.0160511 19311 0.0160511 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 1 param+error 284.056 4.11112 0.130009 0.00223187 601.518 40.2942 90.9243 17.9307 2097 0.0932507 9.00559 0.063905 3696.05 0.063905 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 2 param+error 786.426 2930.54 -0.233918 0.870742 16.2259 25.0786 31820 17163.4 3325.56 10.684 13.617 7.04454 64.1189 7.04454 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 3 param+error 9.00711 0.703234 0.00259109 0.000201306 5.16164 1.2835 59.1493 7.13321 3486.88 0.246725 9.29097 0.208185 150.183 0.208185 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 4 param+error 0.386865 0.531184 0.00010604 0.000148812 7.6076 3.02725 61.5887 44.1623 3819.89 0.181973 9.05306 0.145265 246.432 0.145265 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 5 param+error 36.8351 24.7976 -0.00906616 0.00612412 5.27259e-07 7.19912 15.1193 25206.4 3994.02 1.19256 9.46118 0.694257 23.8006 0.694257 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 6 param+error 218.125 573.324 -0.041993 0.118841 56.1 44.9611 16.1354 4.54843 4793.01 0.585462 9.58706 0.309797 102.991 0.309797 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 7 param+error -0.134105 2.1862 0.000594872 0.000411161 70.9573 15.4995 38.3259 10.5003 5734.33 0.268495 9.77956 0.155145 431.648 0.155145 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 8 param+error 33.9982 26.0404 -0.00350843 0.00270958 0.719481 0.706977 39.3482 50.2988 9543.48 2.6144 11.9563 1.98468 3.11347 1.98468 +CP dss 0 28 l pakw 9 1963.5 59.541 3.26138 2097 80.997 3.38783 3325.56 276.398 5.11629 3486.88 302.853 3.49071 3819.89 356.017 3.40128 3994.02 383.851 3.55476 4793.01 510.99 3.60415 5734.33 661.657 3.68214 9543.48 1274.58 4.57142 +CM dss 0 28 l poly3 -254.921 0.160664 -3.03185e-07 2.74107e-11 error 3.6849 0.0029977 6.80689e-07 4.31564e-11 +CR dss 0 28 l poly2 3.3938 0.000498704 2.95718e-07 error 0.290578 0.00126686 9.58341e-07 + +# ROU: dss 0 29 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.41566 1.43758 0.00163104 0.000755467 1616.07 35.4036 263.045 45.5586 1892.1 0.0238443 8.52472 0.0152279 19795 0.0152279 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 1 param+error 285.586 4.18743 0.136166 0.002198 619.51 41.6342 86.6775 16.5259 2024.31 0.0951372 8.88702 0.064455 3716.25 0.064455 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 2 param+error -94.8438 658.786 0.039327 0.201335 6.17343 6.17141 32404.5 16203.2 3240.68 0.700762 9.22279 0.361109 84.8408 0.361109 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 3 param+error 289.833 375.335 -0.0789077 0.109031 16.0116 54.0082 16.2417 33.6948 3404.83 0.768622 8.82671 0.405132 151.191 0.405132 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 4 param+error -1.7399 3.64477 0.000668193 0.000966554 20.1783 12.0958 20.3624 8.94422 3736.15 0.266162 9.01732 0.153878 260.468 0.153878 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 5 param+error -0.465139 199.575 0.000127207 0.0505684 0.282665 2.04849 39139.8 39072.3 3909.83 0.733642 9.57024 0.663369 26.4067 0.663369 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 6 param+error -587.853 435.573 0.126557 0.0917501 13.4621 3.63154 46745.5 25974.3 4705.25 0.386091 11.274 0.249019 135.293 0.249019 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 7 param+error -2.0553 2.64757 0.000711206 0.000501744 64.864 20.1855 44.2545 20.4153 5652.48 0.319424 9.95997 0.171881 435.104 0.171881 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 8 param+error 1.29914 4.49765 -0.000120398 0.000460802 1.0008 0.661354 56.2569 42.63 9538.29 2.51928 10.3038 1.78979 4.29749 1.78979 +CP dss 0 29 l pakw 9 1892.1 59.541 3.23827 2024.31 80.997 3.37414 3240.68 276.398 3.48486 3404.83 302.853 3.33304 3736.15 356.017 3.40056 3909.83 383.851 3.6066 4705.25 510.99 4.23533 5652.48 661.657 3.7277 9538.29 1274.58 3.79739 +CM dss 0 29 l poly3 -246.78 0.162521 -3.19496e-07 2.88899e-13 error 3.32373 0.00278077 6.48498e-07 4.16752e-11 +CR dss 0 29 l poly2 3.21863 0.000892278 -3.36128e-07 error 0.287863 0.00125338 9.13589e-07 + +# ROU: dss 0 30 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 0 param+error -2550.06 738.95 1.3283 0.383943 1535.69 48.2084 766.065 611.851 1887.62 0.0285125 8.87849 0.0191757 19102.9 0.0191757 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 1 param+error 285.677 3.17215 0.140686 0.00159545 606.645 35.4587 87.7658 13.8428 2020.3 0.0922512 9.15015 0.061 3603.46 0.061 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 2 param+error -402.173 489.07 0.133412 0.149023 8.83402 4.68205 32073.7 16308 3244.83 0.524096 9.33484 0.404966 97.0828 0.404966 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 3 param+error 290.275 89.9755 -0.0785383 0.0261671 68.3087 66.8934 7.68295 1.46352 3411.63 0.384777 9.59078 0.246325 136.206 0.246325 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 4 param+error -747.74 569.539 0.198169 0.150659 25.7397 7.16394 47.6421 39.5931 3746.49 0.216627 9.37996 0.181791 296.145 0.181791 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 5 param+error 49.4485 24.0523 -0.0124901 0.00613765 1.31831e-06 1.2033 31748.3 20857.8 3921.83 0.398381 9.23256 0.318751 29.9293 0.318751 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 6 param+error 11.8738 531.808 -8.48546e-05 0.111438 11.4454 5.68843 193.492 666.244 4729.99 0.513158 11.0457 0.431001 126.774 0.431001 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.78254 0.558787 0.000426457 0.000104868 60.9001 11.672 47.1026 12.1737 5694.95 0.24568 10.2643 0.146413 417.47 0.146413 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 8 param+error -0.0253926 3.06054 1.53084e-05 0.000307975 0.496898 0.373304 218.415 640.181 9652.63 1.78053 11.6028 1.49067 4.46631 1.49067 +CP dss 0 30 l pakw 9 1887.62 59.541 3.36573 2020.3 80.997 3.46365 3244.83 276.398 3.49028 3411.63 302.853 3.58055 3746.49 356.017 3.49164 3921.83 383.851 3.43175 4729.99 510.99 4.0805 5694.95 661.657 3.76886 9652.63 1274.58 4.21815 +CM dss 0 30 l poly3 -247.756 0.164789 -1.12193e-06 4.02612e-11 error 3.33793 0.00278253 6.44622e-07 4.10873e-11 +CR dss 0 30 l poly2 3.38477 0.000288658 2.92816e-07 error 0.296775 0.00128362 9.48038e-07 + +# ROU: dss 0 31 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 0 param+error -7984.44 11.1927 4.14835 0.00581417 1814.1 26.9128 199.366 14.022 1885.99 0.0269577 10.0357 0.0173066 16755.1 0.0173066 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 1 param+error -4376.09 1161.76 2.39779 0.563136 522.661 36.3393 548.628 651.057 2019.71 0.118408 10.7472 0.089322 3301.86 0.089322 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 2 param+error 41.9488 578.661 -0.00176211 0.176267 9.89772 7.26143 53.2239 119.966 3249.09 0.897043 11.1036 0.672459 72.5131 0.672459 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 3 param+error -803.694 622.261 0.239051 0.180248 13.5556 5.99584 22484.2 23135.9 3414.93 0.410223 10.4619 0.271519 162.124 0.271519 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 4 param+error -273.807 250.864 0.0726001 0.066167 11.3985 3.15024 243.905 512.125 3748.88 0.195375 10.779 0.156911 288.363 0.156911 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 5 param+error 0.915559 1.61172 -0.000242293 0.000406262 1.48281 1.56381 43.9297 53.9993 3924.46 0.652996 10.4532 0.475093 30.0172 0.475093 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.40918 0.540078 0.00142286 0.000123058 21.4255 6.18286 39.1807 11.5332 4725.58 0.47246 10.5059 0.331941 120.754 0.331941 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 7 param+error -9929.27 8.46319 1.73616 0.00147978 91.9045 8.39272 1515.03 5720.38 5684.15 0.249359 11.8263 0.165331 401.113 0.165331 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 8 param+error 15.867 16.1912 -0.00161186 0.00166997 3.77406 0.594485 22.0842 5.44176 9651.27 2.36934 5.45835 5.12042 0.00989752 5.12042 +CP dss 0 31 l pakw 9 1885.99 59.541 3.7648 2019.71 80.997 4.03144 3249.09 276.398 4.15693 3414.93 302.853 3.9149 3748.88 356.017 4.02931 3924.46 383.851 3.90508 4725.58 510.99 3.91103 5684.15 661.657 4.37797 9651.27 1274.58 1.94107 +CM dss 0 31 l poly3 -240.683 0.158961 2.13952e-07 -4.32132e-11 error 3.80671 0.00317 7.31147e-07 4.61814e-11 +CR dss 0 31 l poly2 3.64086 0.00243581 -2.94923e-06 error 0.337299 0.0014387 9.71656e-07 + +# ROU: dss 0 32 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 0 param+error -14693.5 2319.26 7.74469 1.22361 772.997 40.1062 18566.7 17077.1 1858.47 0.0664184 11.0852 0.0574522 6942.79 0.0574522 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 1 param+error -2728.67 1312.27 1.61713 0.645606 489.011 43.3447 803.211 1732.26 1988.07 0.151005 11.661 0.111431 3014.15 0.111431 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 2 param+error 100.137 391.535 -0.0209549 0.120567 6.63921 5.10441 32057.9 23758.5 3201.46 0.881942 12.6441 0.537078 74.4006 0.537078 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 3 param+error 177.604 429.731 -0.0463043 0.126217 3.17965 4.91529 33592.1 26617.9 3365.03 0.477966 11.559 0.249884 134.948 0.249884 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 4 param+error -336.428 419.838 0.0904308 0.112367 10.289 3.8773 36917.6 25481.6 3694.12 0.264085 11.7665 0.222675 237.07 0.222675 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 5 param+error 24.5828 1.97901 -0.00623428 0.000511676 2.81646e-06 0.631388 17126.3 29652.4 3864.1 0.491753 11.3286 0.490616 22.1288 0.490616 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.72306 1.00943 0.0014596 0.000221848 23.9062 11.2576 31.889 15.5765 4650.19 0.613415 10.2735 0.435408 124.164 0.435408 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 7 param+error -4081.87 1280.13 0.725647 0.227583 56.2697 9.09747 55823.7 39817.3 5584.83 0.302867 12.8735 0.148989 375.157 0.148989 +CP dss 0 32 l pakw 8 1858.47 59.541 4.21867 1988.07 80.997 4.43724 3201.46 276.398 4.8086 3365.03 302.853 4.39599 3694.12 356.017 4.47527 3864.1 383.851 4.30908 4650.19 510.99 3.91033 5584.83 661.657 4.90689 +CM dss 0 32 l poly3 -241.077 0.162148 -2.03082e-07 2.12158e-11 error 13.4531 0.0131932 3.91441e-06 3.59703e-10 +CR dss 0 32 l poly2 4.3355 6.26028e-05 1.10058e-06 error 0.45083 0.00294594 4.18384e-06 + +# ROU: dss 0 33 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 0 param+error -433.729 216.794 0.229178 0.113032 524.111 97.7115 39.4078 11.5619 1877.01 0.115047 8.9815 0.0536718 4489.76 0.0536718 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 1 param+error 278.312 4.21446 0.134931 0.00233186 698.449 56.977 61.2395 9.97702 2008.09 0.12609 9.47683 0.0771255 3363.8 0.0771255 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 2 param+error 435.701 373.707 -0.121606 0.11375 0.915096 27.8746 32508.5 28211 3240.62 0.922885 10.549 0.751886 79.6198 0.751886 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 3 param+error 598.762 7.98658 -0.168181 0.00232854 47.4624 59.0249 6.59865 3.52077 3410.47 0.662776 9.4673 0.321462 135.079 0.321462 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 4 param+error -895.744 455.598 0.23673 0.12028 25.0264 9.91627 62.5793 67.6177 3750.97 0.310085 10.0127 0.233049 262.539 0.233049 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 5 param+error 81.139 29.2906 -0.0205749 0.00749624 7.30489e-07 1.86988 33648.3 20591.2 3930.68 0.463274 10.2313 0.439646 25.5837 0.439646 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 6 param+error -502.68 604.749 0.107079 0.125859 25.2224 6.12218 62.32 49.6139 4765.06 0.57355 10.8621 0.470784 103.577 0.470784 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 7 param+error 2.77197 8.15025 0.000485402 0.001404 84.8008 19.8843 32.5299 7.96201 5768.48 0.349268 10.7954 0.187654 357.556 0.187654 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 8 param+error 17.7989 73.0423 -0.00175588 0.00727828 2.4087 2.76359 22.6922 27.7593 9997.45 6.82515 11.0552 2.97278 2.54742 2.97278 +CP dss 0 33 l pakw 9 1877.01 59.541 3.4232 2008.09 80.997 3.59952 3240.62 276.398 3.88612 3410.47 302.853 3.47397 3750.97 356.017 3.64609 3930.68 383.851 3.71112 4765.06 510.99 3.87322 5768.48 661.657 3.78079 9997.45 1274.58 3.71154 +CM dss 0 33 l poly3 -252.258 0.170746 -2.59018e-06 7.87582e-11 error 3.27497 0.00271188 6.17567e-07 3.82781e-11 +CR dss 0 33 l poly2 3.45842 0.000784708 -4.6035e-07 error 0.303796 0.0013064 9.42134e-07 + +# ROU: dss 0 34 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 0 param+error 756.015 347.231 -0.402645 0.185794 747.3 49.2398 106.984 26.5524 1829.05 0.0471931 8.88609 0.0287374 9265.5 0.0287374 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 1 param+error 286.635 4.17492 0.142944 0.00225549 675.155 50.6791 65.5411 10.3581 1960.7 0.112927 9.20289 0.0712689 3506.94 0.0712689 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 2 param+error 427.134 105.348 -0.121738 0.0331304 9.69664 10.1085 21.5901 21.9369 3187.12 0.695974 9.27249 0.518946 80.3292 0.518946 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 3 param+error 340.014 753.406 -0.0947061 0.222486 6.7228 11.6218 38.3417 218.892 3353.24 0.460298 9.38147 0.396405 154.183 0.396405 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 4 param+error -741.088 401.344 0.199477 0.107811 12.2455 3.64666 36875.7 18448.2 3688.25 0.202535 9.6932 0.11795 267.694 0.11795 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 5 param+error -155.983 90.7782 0.0401551 0.0232934 1.79882 1.2504 38649.6 38631.2 3863.86 0.643132 9.14253 0.496588 27.4774 0.496588 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 6 param+error -757.676 520.019 0.163579 0.110425 13.2647 4.41163 46676.3 33995.3 4669.84 0.453593 11.5864 0.248652 129.777 0.248652 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.96043 0.425463 0.000460357 8.53745e-05 60.2129 11.0764 44.4326 10.1126 5635.53 0.244043 10.3813 0.142429 412.11 0.142429 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 8 param+error 28.0839 35.0504 -0.00287729 0.00361796 0.745714 0.879432 32.4061 50.7107 9626.96 1.8068 8.98044 1.29093 4.7899 1.29093 +CP dss 0 34 l pakw 9 1829.05 59.541 3.36149 1960.7 80.997 3.4775 3187.12 276.398 3.4685 3353.24 302.853 3.50453 3688.25 356.017 3.6112 3863.86 383.851 3.40125 4669.84 510.99 4.28299 5635.53 661.657 3.80891 9626.96 1274.58 3.20125 +CM dss 0 34 l poly3 -236.479 0.16318 -7.12094e-07 6.86746e-12 error 3.22693 0.00274634 6.45495e-07 4.13769e-11 +CR dss 0 34 l poly2 3.30112 0.00105328 -8.74516e-07 error 0.296735 0.0012755 9.02786e-07 + +# ROU: dss 0 35 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 0 param+error 1.92559 0.891621 0.0012667 0.00047784 397.806 23.0424 118.112 24.6518 1907.17 0.0483941 8.96353 0.0308501 5559.53 0.0308501 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 1 param+error 284.718 4.28684 0.134876 0.00234905 696.395 55.9101 64.9324 11.2911 2039.03 0.119537 9.14804 0.0745467 3498.4 0.0745467 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 2 param+error 87.3045 609.796 -0.0152264 0.184403 7.0429 12.2401 76.8232 786.889 3270.78 1.02197 9.34331 0.719546 84.3177 0.719546 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 3 param+error -1373.73 550.557 0.401367 0.158419 19.682 5.23411 34105 22241.8 3439.28 0.365086 9.88344 0.235057 168.185 0.235057 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 4 param+error -1868.95 4.47192 0.490643 0.00117329 29.4391 4.47457 173.439 134.52 3777.36 0.198061 9.85677 0.132866 297.908 0.132866 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 5 param+error -12.6222 0.288411 0.00323162 6.53558e-05 4.22334 4.0977 21.7123 16.4526 3955.05 0.903166 9.2517 0.540587 28.0435 0.540587 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 6 param+error -1393.94 799.152 0.292155 0.166013 23.6392 4.83267 196.264 331.365 4773.52 0.495653 11.4514 0.438783 125.015 0.438783 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 7 param+error 2.31922 7.98515 0.000398701 0.00137936 52.5792 12.593 54.3372 21.851 5753.34 0.25075 10.541 0.151657 418.265 0.151657 +CP dss 0 35 l pakw 8 1907.17 59.541 3.39747 2039.03 80.997 3.45894 3270.78 276.398 3.46242 3439.28 302.853 3.65395 3777.36 356.017 3.62793 3955.05 383.851 3.39782 4773.52 510.99 4.16962 5753.34 661.657 3.81069 +CM dss 0 35 l poly3 -253.49 0.167737 -2.04493e-06 9.37893e-11 error 11.6082 0.0111293 3.22675e-06 2.88314e-10 +CR dss 0 35 l poly2 3.42489 6.88334e-05 7.37534e-07 error 0.358299 0.00233274 3.29042e-06 + +# ROU: dss 0 36 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1621.41 1002.95 0.819315 0.505473 170.733 15.5373 19514.8 15984.1 1952.97 0.0796521 9.07542 0.044996 2246.13 0.044996 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 1 param+error 266.318 4.40127 0.124902 0.00228145 555.752 37.4064 115.829 27.682 2083.15 0.098817 9.52394 0.0691974 3571.37 0.0691974 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 2 param+error 314.463 657.92 -0.0832782 0.197026 3.36799 5.99915 30790 24001.4 3303.46 0.685816 9.54733 0.446844 87.6612 0.446844 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 3 param+error -163.3 506.196 0.0521763 0.14431 26.8394 47.5235 20.7482 41.9043 3468.92 1.1634 9.56027 0.584681 154.197 0.584681 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 4 param+error 0.686602 0.338611 0.000176339 8.76576e-05 19.5228 11.2331 28.8694 16.136 3800.92 0.261617 9.70716 0.158025 273.729 0.158025 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 5 param+error 53.5864 12.3274 -0.0133071 0.00309128 12.21 10.2101 6.63012 11.603 3976.09 4.10015 9.78191 1.15652 21.8566 1.15652 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 6 param+error -319.615 1.34975 0.069635 0.000430672 54.7799 47.3478 20.0148 1.30256 4779.52 0.351647 9.55231 0.312285 99.605 0.312285 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 7 param+error -1286.31 8.28837 0.223552 0.00143624 146.096 20.9926 22.2241 2.36982 5736.25 0.311919 10.0183 0.161303 370.401 0.161303 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 8 param+error -6.35185 123.439 0.000677166 0.012654 1.19384 2.57324 47.5455 144.787 9714.87 4.1753 10.0415 3.04612 3.89616 3.04612 +CP dss 0 36 l pakw 9 1952.97 59.541 3.45038 2083.15 80.997 3.6173 3303.46 276.398 3.59205 3468.92 302.853 3.59225 3800.92 356.017 3.6379 3976.09 383.851 3.66083 4779.52 510.99 3.55198 5736.25 661.657 3.69634 9714.87 1274.58 3.58111 +CM dss 0 36 l poly3 -257.959 0.163833 -6.0269e-07 -2.38581e-12 error 3.4622 0.00281133 6.36984e-07 3.99239e-11 +CR dss 0 36 l poly2 3.48258 0.000566106 -3.82512e-07 error 0.304267 0.00129928 9.31796e-07 + +# ROU: dss 0 37 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 0 param+error 3.55332 2.59466 -0.00416365 0.00146444 583.03 18.4834 164.932 23.5512 1924.54 0.03615 8.97496 0.0266994 7938.17 0.0266994 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 1 param+error 288.992 4.12951 0.137907 0.00215279 707.035 52.3204 62.6976 9.57114 2056.3 0.113729 9.12828 0.0719617 3534.73 0.0719617 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 2 param+error 223.059 332.585 -0.0553864 0.100794 2.42831 3.57989 32593.9 21537 3275.1 0.578602 9.52408 0.466983 81.7632 0.466983 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 3 param+error -210.522 705.353 0.0663378 0.203046 8.5841 6.58514 34406.8 34379.2 3441.01 0.41474 9.90841 0.214004 165.38 0.214004 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 4 param+error 0.989002 0.271355 0.000243117 7.18063e-05 8.93392 1.14148 9519.79 6380.25 3772.91 0.159897 9.63773 0.124201 293.759 0.124201 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 5 param+error -9.72383 72.7509 0.00251653 0.018243 0.460869 0.689173 39162.2 25872.2 3946.1 0.498926 9.1507 0.324812 30.1431 0.324812 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 6 param+error 328.755 320.012 -0.0656191 0.0669207 23.1474 16.9273 24.8151 22.2355 4743.95 0.701282 10.7021 0.44919 118.745 0.44919 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 7 param+error 2.27497 7.54168 0.000403527 0.00131583 84.5182 18.6029 31.408 7.1809 5695.97 0.278585 10.0542 0.152293 420.897 0.152293 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 8 param+error -21.4036 70.3251 0.00223591 0.00727714 0.954228 0.405618 92.7666 156.966 9627.68 2.67904 11.8209 2.19742 2.77842 2.19742 +CP dss 0 37 l pakw 9 1924.54 59.541 3.40248 2056.3 80.997 3.45892 3275.1 276.398 3.59079 3441.01 302.853 3.73286 3772.91 356.017 3.62517 3946.1 383.851 3.43904 4743.95 510.99 4.00533 5695.97 661.657 3.74205 9627.68 1274.58 4.2712 +CM dss 0 37 l poly3 -251.177 0.161932 -1.94994e-07 -1.70321e-11 error 3.47727 0.00286359 6.57805e-07 4.18009e-11 +CR dss 0 37 l poly2 3.43032 0.000351047 2.35529e-07 error 0.298144 0.00128983 9.55393e-07 + +# ROU: dss 0 38 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1126.77 588.77 0.569819 0.296158 510.854 29.9146 167.502 58.0608 1951.96 0.0472929 8.8529 0.0330058 6781.74 0.0330058 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 1 param+error -11246 3632.3 5.59069 1.71764 638.113 33.7213 439.029 476.957 2082.87 0.0918583 9.28457 0.0852166 3701.98 0.0852166 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 2 param+error 603.491 1.99968 -0.170925 0.000717284 2.42549e-08 2.76824 7456.39 29221.8 3304.76 0.344131 10.1757 0.43237 88.1392 0.43237 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 3 param+error 8.87136 7.95486 0.00278304 0.00227019 38.7512 22.5506 15.3013 5.68702 3471.64 0.593138 9.39671 0.315526 149.739 0.315526 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 4 param+error 353.61 281.254 -0.0915993 0.073359 35.0344 68.3874 12.989 14.2209 3803.24 0.509246 9.08481 0.250199 281.141 0.250199 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 5 param+error 19.229 1.99974 -0.00470839 0.000503338 0.176665 0.191093 29902.9 20592.2 3976.74 0.401241 8.81849 0.343064 30.4072 0.343064 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 6 param+error 385.919 655.761 -0.0772675 0.136247 24.5398 39.938 21.2196 35.8819 4772 1.03677 10.4285 0.690353 120.108 0.690353 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 7 param+error -3607.79 6.48819 0.627458 0.00112748 57.1366 7.92674 623.095 1600.09 5718.33 0.206918 10.3321 0.130011 453.209 0.130011 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 8 param+error -59.7315 27.4484 0.00619587 0.00283626 0.651857 0.207964 95292 89781.3 9641.15 1.29849 10.122 1.13585 5.37133 1.13585 +CP dss 0 38 l pakw 9 1951.96 59.541 3.33787 2082.87 80.997 3.50111 3304.76 276.398 3.8364 3471.64 302.853 3.54189 3803.24 356.017 3.42222 3976.74 383.851 3.32057 4772 510.99 3.91687 5718.33 661.657 3.86315 9641.15 1274.58 3.64796 +CM dss 0 38 l poly3 -252.114 0.159196 3.75482e-07 -4.80107e-11 error 3.56433 0.00291625 6.67093e-07 4.21717e-11 +CR dss 0 38 l poly2 3.36201 0.00068173 -3.45504e-07 error 0.297558 0.00127906 9.2091e-07 + +# ROU: dss 0 39 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 0 param+error -2024.46 2994.39 1.01958 1.50809 519.455 40.7953 19505.1 19511.2 1956.65 0.0466762 8.6635 0.0269003 7976.91 0.0269003 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 1 param+error 280.882 4.06785 0.131998 0.00208293 688.2 48.3857 68.4015 10.5855 2088.69 0.107149 8.97489 0.0681709 3628.42 0.0681709 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 2 param+error -139.77 549.902 0.0530747 0.164336 7.22725 5.1673 15825 18877.5 3311.03 0.559016 8.98059 0.383471 94.6828 0.383471 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 3 param+error 10.626 0.676546 0.00303084 0.000198789 10.9847 1.48079 91.0372 16.5508 3477.31 0.23947 9.02388 0.206204 173.708 0.206204 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 4 param+error -59.2856 477.235 0.0159476 0.12416 50.8856 33.0763 17.254 11.8067 3809.68 0.394752 8.81866 0.251161 288.552 0.251161 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 5 param+error 55.6105 115.655 -0.0137943 0.0287994 0.0399171 9.23345 34489.8 32349 3981.9 0.476834 8.73592 0.320363 32.4534 0.320363 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 6 param+error -377.034 523.234 0.0813692 0.108727 9.94347 4.26003 47547.8 44026.6 4774.12 0.439908 11.0866 0.240521 129.464 0.240521 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.14902 0.497234 0.000184818 8.76834e-05 29.9011 1.08598 55197.5 3123.53 5707.78 0.124636 10.0952 0.0993119 483.795 0.0993119 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 8 param+error -49.2693 114.004 0.00521867 0.0120153 0.707113 0.311235 242.39 1274.75 9433.43 1.65288 11.6784 1.5269 5.01235 1.5269 +CP dss 0 39 l pakw 9 1956.65 59.541 3.26505 2088.69 80.997 3.38184 3311.03 276.398 3.38494 3477.31 302.853 3.40226 3809.68 356.017 3.32745 3981.9 383.851 3.29786 4774.12 510.99 4.19831 5707.78 661.657 3.84367 9433.43 1274.58 4.62684 +CM dss 0 39 l poly3 -254.374 0.161164 -4.59317e-07 5.89883e-11 error 3.53422 0.00290684 6.73247e-07 4.34389e-11 +CR dss 0 39 l poly2 3.28552 5.65596e-05 8.03523e-07 error 0.290532 0.00126808 9.55561e-07 + +# ROU: dss 0 40 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.90186 0.895481 0.00201884 0.000502634 364.836 25.6756 104.227 24.7281 1897.2 0.0572779 8.87456 0.0344809 4757.04 0.0344809 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 1 param+error 319.336 3.07532 0.118039 0.00165641 605.331 33.6447 83.1769 11.5361 2028.48 0.0870781 9.24025 0.0584009 3599.29 0.0584009 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 2 param+error 200.146 321.172 -0.04842 0.0977814 2.74749 2.42183 161.554 1053.95 3258.56 0.452852 9.1376 0.399124 91.6178 0.399124 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 3 param+error 716.693 105.89 -0.201927 0.0310249 3.28163e-06 16.808 13475 27082.8 3426.22 0.199955 9.66822 0.206326 179.917 0.206326 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 4 param+error -322.989 288.051 0.0852603 0.0757317 12.9679 3.68747 220.676 495.86 3763.76 0.187754 9.86794 0.156007 311.288 0.156007 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 5 param+error 96.9806 1.99721 -0.0243154 0.000505293 1.01794e-08 1.71271 40.2468 34274.6 3941.63 0.379933 9.19659 0.333407 31.3974 0.333407 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 6 param+error -858.256 726.483 0.181788 0.15145 25.6157 6.49503 79.327 84.323 4756.35 0.5653 10.9681 0.525602 116.465 0.525602 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 7 param+error -3174.95 7.8572 0.551311 0.00136293 66.4409 9.65876 108.218 50.4505 5729.78 0.229357 10.5813 0.142764 435.645 0.142764 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.01572 16.6461 -0.000581117 0.00169059 1.65504 0.768371 32.9069 16.9828 9782.92 1.69034 7.25562 1.5412 4.75678 1.5412 +CP dss 0 40 l pakw 9 1897.2 59.541 3.35634 2028.48 80.997 3.48878 3258.56 276.398 3.39847 3426.22 302.853 3.5888 3763.76 356.017 3.6488 3941.63 383.851 3.39377 4756.35 510.99 4.01202 5729.78 661.657 3.83298 9782.92 1274.58 2.54772 +CM dss 0 40 l poly3 -248.917 0.164794 -1.17668e-06 2.55734e-11 error 3.32121 0.00275096 6.31714e-07 3.96349e-11 +CR dss 0 40 l poly2 3.24854 0.00157003 -1.65143e-06 error 0.29673 0.00127221 8.79858e-07 + +# ROU: dss 0 41 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1223.91 631.098 0.631583 0.324779 149.137 17.629 2453.38 17872.6 1910.12 0.085527 8.85167 0.0605454 2199.46 0.0605454 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 1 param+error 268.985 4.15943 0.128572 0.0021028 633.055 43.808 77.7712 13.6164 2040.99 0.100205 9.08894 0.0669472 3603.56 0.0669472 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 2 param+error 78.0888 1.99892 -0.0118149 0.000955378 4.59523 1.24548 25296.9 16535.3 3267.2 0.412061 9.78261 0.392821 94.2376 0.392821 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 3 param+error 9.72436 0.999857 0.00283802 0.000349115 19.5081 8.98686 33.9903 17.5776 3434.61 0.360733 9.49637 0.283494 184.403 0.283494 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 4 param+error -1208.33 4.81029 0.317902 0.0012645 29.8868 5.27374 91.7797 44.4958 3770.26 0.176055 9.52623 0.120985 362.681 0.120985 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 5 param+error -51.292 188.592 0.0128196 0.0474418 1.36056 1.52906 39030.8 25737.9 3946.21 0.562408 9.5816 0.315752 38.3915 0.315752 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 6 param+error 5.63504 0.663651 0.0012296 0.000142842 19.4032 5.09189 47.9349 15.7125 4752.53 0.422977 10.7207 0.314187 125.536 0.314187 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 7 param+error -3178.33 7.26228 0.553711 0.00126419 62.2612 7.82635 141.548 72.4268 5709.57 0.202117 10.4364 0.131375 452.746 0.131375 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 8 param+error 7.54013 25.8171 -0.000761099 0.00267882 0.551522 0.488138 83.5497 164.498 9594.38 2.5972 13.2257 2.04209 3.47885 2.04209 +CP dss 0 41 l pakw 9 1910.12 59.541 3.35177 2040.99 80.997 3.43656 3267.2 276.398 3.65639 3434.61 302.853 3.54492 3770.26 356.017 3.5479 3946.21 383.851 3.56466 4752.53 510.99 3.97308 5709.57 661.657 3.85905 9594.38 1274.58 4.97516 +CM dss 0 41 l poly3 -251.316 0.165103 -1.33652e-06 7.34717e-11 error 3.45659 0.00286652 6.62614e-07 4.23993e-11 +CR dss 0 41 l poly2 3.39264 0.000248041 7.70598e-07 error 0.296893 0.00130526 9.9698e-07 + +# ROU: dss 0 42 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1116.31 478.082 0.568997 0.242481 597.447 36.3552 102.858 22.9039 1934.87 0.0459414 8.76834 0.030525 7674.45 0.030525 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 1 param+error 276.382 4.43388 0.130802 0.00217881 564.094 34.4858 110.377 23.1101 2067.21 0.0904641 9.20451 0.0642621 3655.59 0.0642621 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 2 param+error 650.638 124.913 -0.184144 0.0376278 49.17 48.4734 1.2096 0.00374667 3302.88 0.84475 9.72789 0.158557 86.9766 0.158557 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 3 param+error -547.702 781.919 0.162032 0.223096 18.281 7.79759 72.3433 131.666 3471.78 0.411022 9.03216 0.353417 161.999 0.353417 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 4 param+error -848.466 367.733 0.220942 0.0956755 15.075 3.25891 37289.5 34923.6 3808.99 0.183362 9.65945 0.110699 296.432 0.110699 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 5 param+error -174.617 148.27 0.0435911 0.0369313 1.89848 1.20362 39460.5 24901 3986.14 0.576182 8.9169 0.335123 31.1221 0.335123 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.28079 5.90705 0.00142593 0.00122119 20.2972 5.92539 37.0234 10.5934 4797.93 0.430032 10.3254 0.304124 129.65 0.304124 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.29876 8.80156 0.000328561 0.00151953 167.31 112.787 18.3208 0.537229 5761 0.164503 9.61722 0.126527 371.886 0.126527 +CP dss 0 42 l pakw 8 1934.87 59.541 3.306 2067.21 80.997 3.4627 3302.88 276.398 3.60338 3471.78 302.853 3.34118 3808.99 356.017 3.56567 3986.14 383.851 3.28891 4797.93 510.99 3.80453 5761 661.657 3.55953 +CM dss 0 42 l poly3 -256.618 0.167436 -2.39891e-06 1.74552e-10 error 11.1834 0.0106034 3.0453e-06 2.7011e-10 +CR dss 0 42 l poly2 3.38029 0.00011492 1.88452e-07 error 0.351877 0.00226777 3.1625e-06 + +# ROU: dss 0 43 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 0 param+error -766.835 433.024 0.402837 0.226026 488.89 31.1802 97.1842 21.5952 1879.44 0.0493792 8.65022 0.0331698 6230.5 0.0331698 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 1 param+error 279.844 4.42911 0.137652 0.00249675 607.399 37.9293 89.8476 16.4047 2010.44 0.0950976 8.97131 0.0655566 3639.78 0.0655566 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 2 param+error -93.0209 677.052 0.0399398 0.207627 6.9478 6.45788 32265 28069.5 3234.53 0.685171 9.61162 0.426259 93.8606 0.426259 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 3 param+error 183.846 634.358 -0.0468428 0.184787 5.27752 5.79177 31118.6 18376.5 3401.01 0.344217 9.08562 0.194274 180.785 0.194274 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 4 param+error 358.754 429.457 -0.0947328 0.113823 98.3825 115.512 10.8832 7.99972 3738.09 0.779596 8.88133 0.327273 310.734 0.327273 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 5 param+error 45.4458 117.64 -0.0114895 0.0298174 1.31005 3.39333 23.391 89.5251 3912.86 0.666487 9.18254 0.44258 35.6243 0.44258 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 6 param+error 6.62485 6.21865 0.00144918 0.00130552 25.9231 10.3218 27.652 9.3271 4723.31 0.576404 10.2497 0.349095 120.491 0.349095 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.17472 0.669652 0.000235716 0.000121349 107.059 27.325 26.8428 6.36824 5689.23 0.369891 9.55261 0.185925 412.253 0.185925 +CP dss 0 43 l pakw 8 1879.44 59.541 3.29923 2010.44 80.997 3.41314 3234.53 276.398 3.58716 3401.01 302.853 3.38403 3738.09 356.017 3.29594 3912.86 383.851 3.40213 4723.31 510.99 3.77674 5689.23 661.657 3.51336 +CM dss 0 43 l poly3 -251.286 0.169393 -2.3775e-06 1.42585e-10 error 10.7685 0.0104404 3.05691e-06 2.75818e-10 +CR dss 0 43 l poly2 3.35747 0.000103098 1.58922e-07 error 0.349278 0.00224782 3.13054e-06 + +# ROU: dss 0 44 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 0 param+error 0.535354 0.866565 0.000282914 0.000461298 652.126 26.5503 170.503 35.9741 1899.83 0.0381806 8.8748 0.0240349 8730.39 0.0240349 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 1 param+error 896.505 2321.14 -0.159415 1.1243 577.441 54.4408 89.8742 36.835 2029.93 0.115722 9.29366 0.0925961 3609.59 0.0925961 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 2 param+error 18.0689 11.1252 0.00560096 0.00340167 8.77658 9.83897 71.5157 241.018 3244.47 0.709702 8.92365 0.512683 90.556 0.512683 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 3 param+error 481.483 482.323 -0.134947 0.140144 20.8049 24.6722 18.1616 27.2403 3408.91 0.576248 9.0008 0.368404 155.911 0.368404 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 4 param+error 0.613482 4.65063 0.000217742 0.00123314 24.8043 10.2332 23.8302 7.86134 3738.07 0.244717 9.22949 0.150425 279.517 0.150425 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 5 param+error -83.8301 174.359 0.0212685 0.0441879 1.25672 1.68267 155.047 1887.51 3910.96 0.702723 9.53655 0.476815 28.9536 0.476815 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 6 param+error -574.476 596.953 0.124087 0.125946 15.4636 5.11885 203.097 524.908 4698.55 0.464796 10.7891 0.414761 132.976 0.414761 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 7 param+error 2.13355 0.549248 0.000392403 0.000100837 75.5744 22.492 34.3796 11.8216 5631.47 0.323917 9.72173 0.163504 438.02 0.163504 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 8 param+error 3.98037 11.9268 -0.000394795 0.00126502 1.06809 0.668428 44.5802 34.61 9382.54 1.74277 8.59777 1.33099 4.66571 1.33099 +CP dss 0 44 l pakw 9 1899.83 59.541 3.37331 2029.93 80.997 3.53149 3244.47 276.398 3.38598 3408.91 302.853 3.41519 3738.07 356.017 3.50229 3910.96 383.851 3.61923 4698.55 510.99 4.09921 5631.47 661.657 3.70324 9382.54 1274.58 3.35425 +CM dss 0 44 l poly3 -247.942 0.162592 -4.30481e-07 4.22554e-11 error 3.40847 0.00284683 6.65139e-07 4.30513e-11 +CR dss 0 44 l poly2 3.34497 0.00073545 -5.59818e-07 error 0.297921 0.0012763 9.0849e-07 + +# ROU: dss 0 45 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1435.04 470.749 0.75466 0.246773 421.156 26.3689 96.9236 21.2939 1872.35 0.051449 8.61819 0.0358294 5182.92 0.0358294 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 1 param+error 273.726 4.47068 0.134449 0.00223313 565.412 34.2499 108.303 22.1792 2003.24 0.0887931 9.06826 0.0626211 3667.9 0.0626211 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 2 param+error 678.914 384.908 -0.197104 0.118158 17.2863 34.1508 10.0961 29.0213 3223.56 1.67603 8.55948 0.742432 82.9736 0.742432 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 3 param+error -138.282 389.052 0.045966 0.113545 36.5833 24.235 23.4127 18.8253 3389.38 0.691561 8.80423 0.370239 156.058 0.370239 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 4 param+error 719.886 135.628 -0.1913 0.0361359 111.87 91.465 7.01955 1.10391 3720.48 0.258955 8.88063 0.140039 273.821 0.140039 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 5 param+error 189.403 57.4593 -0.0482705 0.014636 12.87 12.827 1.06769 0.194966 3893.75 0.759174 9.40663 0.406139 30.2697 0.406139 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 6 param+error 5.67599 1.13103 0.00136761 0.000293546 16.5032 5.69025 59.0628 33.3493 4685.44 0.436702 10.2921 0.314739 126.792 0.314739 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.446582 7.09325 8.60546e-05 0.00125368 70.4803 15.0679 43.3137 13.3443 5624.94 0.252702 9.76448 0.142417 435.175 0.142417 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 8 param+error 1.66719 3.25426 -0.000159501 0.000334909 0.73362 0.352884 80.5687 49.4974 9448.14 1.47791 10.334 1.20588 5.26627 1.20588 +CP dss 0 45 l pakw 9 1872.35 59.541 3.25487 2003.24 80.997 3.42487 3223.56 276.398 3.23283 3389.38 302.853 3.32527 3720.48 356.017 3.35413 3893.75 383.851 3.55278 4685.44 510.99 3.88712 5624.94 661.657 3.68768 9448.14 1274.58 3.90087 +CM dss 0 45 l poly3 -240.582 0.160359 8.88603e-09 -8.48186e-13 error 3.24568 0.0027348 6.42494e-07 4.1658e-11 +CR dss 0 45 l poly2 3.24806 0.000460094 5.62507e-08 error 0.289495 0.00125381 9.16441e-07 + +# ROU: dss 0 46 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 0 param+error -82.169 1504.73 0.0427429 0.778131 95.2814 21.7643 18873.7 9524.27 1906.61 0.140731 8.89739 0.0624786 1329.1 0.0624786 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 1 param+error 263.835 4.22535 0.124264 0.00232234 608.663 50.1601 80.6985 17.5907 2039.11 0.113315 9.02516 0.0711434 3519.58 0.0711434 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 2 param+error -840.93 531.192 0.264828 0.160314 14.2765 4.99827 32833.3 23862.2 3278.69 0.556099 8.87995 0.375586 92.8832 0.375586 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 3 param+error -307.439 482.597 0.0942575 0.138584 7.12267 4.41759 33872.5 18813.7 3445.71 0.295068 9.27715 0.206207 182.867 0.206207 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 4 param+error -817.745 412.317 0.214418 0.107956 15.6092 3.96007 1286.44 25610.6 3784.8 0.185222 9.35234 0.132751 312.876 0.132751 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 5 param+error 55.4732 0.068655 -0.0137832 1.73243e-05 7.26618e-09 9.98329 397.001 25655.4 3961.42 0.137153 8.12456 0.0932506 29.8548 0.0932506 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 6 param+error 139.367 517.215 -0.0266421 0.10745 14.6356 5.80645 50.8569 56.8198 4774.66 0.432382 10.8047 0.34148 129.946 0.34148 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 7 param+error -1669.8 6.17846 0.289314 0.00106912 73.9195 13.2707 55.5214 17.7268 5743.21 0.250914 10.0684 0.141297 427.583 0.141297 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 8 param+error 9.54112 0.0494494 -0.000952797 3.00909e-07 0.659722 0.283593 79.9201 35.7443 9693.6 1.79195 11.4202 1.46385 4.87397 1.46385 +CP dss 0 46 l pakw 9 1906.61 59.541 3.33146 2039.11 80.997 3.37536 3278.69 276.398 3.2892 3445.71 302.853 3.43248 3784.8 356.017 3.45291 3961.42 383.851 2.99649 4774.66 510.99 3.96839 5743.21 661.657 3.68468 9693.6 1274.58 4.18337 +CM dss 0 46 l poly3 -246.351 0.162163 -9.47069e-07 4.17063e-11 error 3.2409 0.00267923 6.17212e-07 3.916e-11 +CR dss 0 46 l poly2 3.34498 -0.000346086 8.11181e-07 error 0.291132 0.00124681 9.21354e-07 + +# ROU: dss 0 47 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 0 param+error 609.838 508.447 -0.304203 0.255552 772.182 35.223 125.734 25.0182 1952.48 0.0375428 8.60852 0.025497 9968.88 0.025497 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 1 param+error 284.414 4.45406 0.133086 0.00231779 540.318 31.7436 125.267 28.3692 2083.97 0.086775 9.04862 0.0630721 3653.6 0.0630721 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 2 param+error 218.039 703.943 -0.0547585 0.210503 3.31769 6.4064 33063.3 19780 3311.27 0.718582 9.46618 0.372443 87.6182 0.372443 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 3 param+error 162.294 595.962 -0.040828 0.169692 3.85036 5.41056 34796 34798.7 3477.83 0.364154 9.55426 0.218122 161.543 0.218122 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 4 param+error 200.162 192.857 -0.0515375 0.0500274 6.35229 11.3682 38225 19265.4 3812.68 0.339271 9.41692 0.207762 284.344 0.207762 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 5 param+error 33.2931 0.0881136 -0.00822776 1.50349e-05 0.773445 0.492187 98.1257 124.839 3987.88 0.465225 9.03403 0.352438 27.8708 0.352438 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 6 param+error 23.8766 445.462 -0.00201343 0.0922581 25.7438 9.33672 30.5278 19.6647 4789.82 0.486595 10.1899 0.376564 119.06 0.376564 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.43115 0.505042 0.000253498 8.90942e-05 71.1194 19.9925 37.8538 13.2739 5743.94 0.309443 10.0078 0.159169 422.218 0.159169 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 8 param+error 18.6636 22.8447 -0.00190126 0.00236217 3.95984 3.79445 17.882 5.73553 9681.79 6.18208 9.16727 2.79703 0.606992 2.79703 +CP dss 0 47 l pakw 9 1952.48 59.541 3.24141 2083.97 80.997 3.40561 3311.27 276.398 3.54677 3477.83 302.853 3.57742 3812.68 356.017 3.52119 3987.88 383.851 3.37555 4789.82 510.99 3.79407 5743.94 661.657 3.70938 9681.79 1274.58 3.32052 +CM dss 0 47 l poly3 -253.46 0.160824 -2.04914e-07 -1.08e-11 error 3.43897 0.00280374 6.37885e-07 4.01003e-11 +CR dss 0 47 l poly2 3.23928 0.00113259 -8.33682e-07 error 0.288595 0.00124584 8.9034e-07 + +# ROU: dss 0 48 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 0 param+error 0.544211 1.15922 0.00113962 0.000611737 1180.51 32.8925 135.399 15.3015 1907.93 0.0286467 8.71191 0.0181256 14330.5 0.0181256 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 1 param+error 291.272 4.35084 0.137008 0.00237987 607.075 48.3061 86.7415 19.4297 2039.31 0.111577 9.0113 0.071394 3602.93 0.071394 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 2 param+error 519.244 1.99967 -0.147514 0.000720161 3.66978e-07 4.18853 1088.02 24448.4 3264.6 0.340931 10.0939 0.41242 88.1498 0.41242 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 3 param+error -0.388627 579.836 0.00531255 0.167333 27.3402 21.0496 21.8793 25.0085 3431.71 0.573725 9.11726 0.390618 150.119 0.390618 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 4 param+error 1.07156 0.628745 0.000248265 0.000180086 7.69864 2.95834 117.339 144.962 3763.6 0.183552 9.45514 0.141228 282.063 0.141228 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 5 param+error 18.7204 24.7956 -0.00468563 0.00629462 11.22 9.1011 9.30308 1.83943 3940.2 0.647755 8.27425 0.458463 24.2403 0.458463 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 6 param+error 5.84723 6.28099 0.00128462 0.00131593 15.1106 5.223 62.8665 36.4283 4734.05 0.428173 10.7993 0.308837 131.43 0.308837 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.53265 0.590386 0.000271537 0.000104213 67.4296 14.6211 39.5163 10.525 5684.03 0.248637 9.85819 0.145208 434.8 0.145208 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 8 param+error 8.24752 22.5679 -0.000837485 0.00234209 0.514816 0.493414 57.3947 93.1834 9551.34 1.60425 11.6282 1.29866 5.36825 1.29866 +CP dss 0 48 l pakw 9 1907.93 59.541 3.28027 2039.31 80.997 3.39228 3264.6 276.398 3.79235 3431.71 302.853 3.42452 3763.6 356.017 3.54957 3940.2 383.851 3.10539 4734.05 510.99 4.04805 5684.03 661.657 3.68986 9551.34 1274.58 4.32751 +CM dss 0 48 l poly3 -245.856 0.160399 -1.33719e-07 7.14007e-13 error 3.39886 0.00282313 6.537e-07 4.18802e-11 +CR dss 0 48 l poly2 3.36328 -6.47702e-06 5.99731e-07 error 0.290351 0.00125173 9.33374e-07 + +# ROU: dss 0 49 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.69549 0.671151 0.00133333 0.00034246 1056.67 50.425 172.615 47.8722 1885.21 0.0352112 8.66065 0.0197402 14004.5 0.0197402 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 1 param+error 282.907 4.3253 0.134424 0.00238021 604.356 41.0997 90.3939 17.8069 2017.13 0.0983225 8.99068 0.0655075 3631.43 0.0655075 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 2 param+error 429.64 74.8067 -0.120916 0.0231167 3.74076 36.1994 7.95181 25.1204 3241.88 1.02793 8.99355 0.602321 75.8155 0.602321 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 3 param+error -135.307 564.882 0.0443627 0.164185 6.1009 5.20531 29379.4 31448.8 3407.63 0.379754 9.33804 0.211092 149.369 0.211092 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 4 param+error 184.961 0.0106497 -0.0487915 4.60424e-07 83.16 1.50295 7.06938 2.50517 3741.08 0.14182 9.28875 0.1167 192.882 0.1167 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 5 param+error 34.4299 1.99234 -0.00865151 0.000511551 5.02852e-07 1.09495 30362.8 34621.6 3913.44 0.417513 8.52331 0.37006 23.6113 0.37006 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 6 param+error 281.215 673.624 -0.0565411 0.142088 16.7734 11.4816 37.1271 57.9634 4701.42 0.519391 10.1038 0.492967 129.74 0.492967 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.87825 0.61673 0.000342819 0.000110363 79.3288 18.9312 32.801 8.36106 5634.42 0.280163 9.86584 0.159113 436.01 0.159113 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 8 param+error 8.93098 11.5193 -0.000918614 0.00121153 0.517068 0.28026 81.3114 83.3819 9385.75 1.45293 10.1504 1.54118 4.50117 1.54118 +CP dss 0 49 l pakw 9 1885.21 59.541 3.24708 2017.13 80.997 3.37265 3241.88 276.398 3.39137 3407.63 302.853 3.52383 3741.08 356.017 3.51041 3913.44 383.851 3.22362 4701.42 510.99 3.83512 5634.42 661.657 3.76131 9385.75 1274.58 3.94475 +CM dss 0 49 l poly3 -239.331 0.158034 2.9814e-07 5.31469e-12 error 3.35421 0.00281766 6.60536e-07 4.28905e-11 +CR dss 0 49 l poly2 3.25066 0.000564382 -2.96004e-09 error 0.288345 0.00125056 9.16479e-07 + +# ROU: dss 0 50 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 0 param+error -811.589 474.341 0.408151 0.237513 426.717 25.745 119.479 30.4809 1960.9 0.0480121 8.70818 0.0334707 5842.95 0.0334707 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 1 param+error 277.363 4.39392 0.131589 0.00223193 620.514 37.6188 79.1715 12.0025 2091.41 0.0946342 9.11214 0.0655156 3584.49 0.0655156 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 2 param+error 16.1544 8.79221 0.00429389 0.00263083 7.43891 4.4468 98.1378 175.054 3314.42 0.592376 9.33737 0.523796 80.8626 0.523796 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 3 param+error 197.978 177.587 -0.0512517 0.0506594 61.0491 59.8359 8.08986 2.16593 3481 0.480228 9.14208 0.297294 123.098 0.297294 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 4 param+error -87.1172 208.295 0.0229408 0.0540534 5.01774 1.87696 38223.7 22807.5 3813.81 0.177206 9.51633 0.129763 242.185 0.129763 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 5 param+error 65.7951 457.485 -0.0163577 0.113836 1.65532e-07 8.68506 18870.6 26718.5 3988.38 1.16444 9.49727 0.610846 22.2991 0.610846 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 6 param+error -2017.33 1136.24 0.420706 0.235381 22.4761 7.97998 47601.8 47695.1 4791.72 0.61598 11.419 0.302939 127.191 0.302939 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.58544 0.570386 0.000262591 0.000109325 56.8886 16.1961 57.3181 29.0451 5745.07 0.298161 10.2094 0.168232 432.065 0.168232 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 8 param+error -19.9716 65.5349 0.00208673 0.00677356 0.539259 0.219936 95367.3 48116.8 9614.45 1.51011 14.5095 1.29642 5.53962 1.29642 +CP dss 0 50 l pakw 9 1960.9 59.541 3.3053 2091.41 80.997 3.45422 3314.42 276.398 3.50411 3481 302.853 3.42703 3813.81 356.017 3.56013 3988.38 383.851 3.54961 4791.72 510.99 4.25305 5745.07 661.657 3.79438 9614.45 1274.58 5.46553 +CM dss 0 50 l poly3 -259.934 0.165044 -1.16812e-06 6.2682e-11 error 3.52261 0.00287839 6.60233e-07 4.21476e-11 +CR dss 0 50 l poly2 3.40214 -0.000227044 1.42987e-06 error 0.295087 0.00130268 1.01939e-06 + +# ROU: dss 0 51 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 0 param+error -0.616563 1.40604 -0.000437862 0.000800208 1339.7 33.9691 206.325 31.7054 1852.28 0.0278242 8.93866 0.0177664 16341.1 0.0177664 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 1 param+error -5644.04 3197.95 3.07411 1.58427 551.771 35.3781 534.151 800.869 1985.97 0.0981032 9.4692 0.0881838 3607.86 0.0881838 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 2 param+error 607.465 1.99973 -0.176374 0.000696416 9.84814e-09 2.13822 12882.7 21053.7 3230.35 0.396383 9.23682 0.439135 68.6984 0.439135 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 3 param+error 156.298 226.546 -0.0412612 0.0660549 51.4658 51.2445 11.6132 2.81053 3400.8 0.531888 8.99676 0.313332 96.7861 0.313332 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 4 param+error 200.122 375.824 -0.052677 0.0996931 71.1795 45.5089 8.62304 2.81724 3742.13 0.44617 8.96376 0.209459 171.721 0.209459 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 5 param+error 10.7403 31.4568 -0.00270179 0.00793198 0.268332 0.954915 39257 20054.1 3920.02 0.792778 9.48033 0.570963 18.5855 0.570963 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 6 param+error -1439.08 466.479 0.303219 0.0974441 19.5553 3.83697 47484.2 27536.8 4747.44 0.418171 11.4034 0.247297 128.255 0.247297 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.831599 6.46333 0.000156087 0.00111967 92.6977 19.455 29.9909 6.09477 5736.76 0.309048 10.4171 0.161776 389.519 0.161776 +CP dss 0 51 l pakw 8 1852.28 59.541 3.34407 1985.97 80.997 3.53585 3230.35 276.398 3.39209 3400.8 302.853 3.29686 3742.13 356.017 3.27103 3920.02 383.851 3.45218 4747.44 510.99 4.11356 5736.76 661.657 3.7199 +CM dss 0 51 l poly3 -238.758 0.163415 -1.32209e-06 3.44213e-11 error 10.8898 0.0106418 3.12855e-06 2.82372e-10 +CR dss 0 51 l poly2 3.50556 -0.00126763 2.4017e-06 error 0.356738 0.00227347 3.18973e-06 + +# ROU: dss 0 52 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.04837 0.983351 0.00147741 0.000530995 767.352 31.4242 126.99 20.4848 1907.05 0.0361841 8.84218 0.0221551 10180.3 0.0221551 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 1 param+error -4505.31 2518.2 2.44037 1.21476 576.568 42.6133 212.799 150.333 2038.97 0.1079 9.37458 0.0906183 3573.52 0.0906183 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 2 param+error 17.5692 541.58 0.00461762 0.163747 4.25093 5.13325 32336.8 32545.6 3270.2 0.670852 9.84724 0.476811 80.548 0.476811 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 3 param+error 261.094 491.283 -0.0702175 0.141344 8.23778 13.5488 46.5463 169.455 3438.23 0.570531 9.5562 0.395968 147.869 0.395968 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 4 param+error -2.75467 387.7 0.00114853 0.101719 11.7649 12.6821 32.7 54.9709 3774.45 0.324685 9.75449 0.219169 246.927 0.219169 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 5 param+error 35.778 43.5935 -0.00894795 0.0109594 8.58278 9.35044 5.78055 11.6634 3951.88 2.64075 9.14408 0.86081 20.4485 0.86081 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 6 param+error 202.306 107.571 -0.0390653 0.0224861 55.4392 48.2467 16.2638 1.53933 4760.07 0.374334 9.24167 0.286813 98.2651 0.286813 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 7 param+error -0.698172 0.978844 -0.000121019 0.000176408 75.2491 26.2811 39.259 18.5181 5715.63 0.378376 10.2344 0.220537 417.575 0.220537 +CP dss 0 52 l pakw 8 1907.05 59.541 3.35147 2038.97 80.997 3.5438 3270.2 276.398 3.65789 3438.23 302.853 3.54507 3774.45 356.017 3.61182 3951.88 383.851 3.38386 4760.07 510.99 3.42363 5715.63 661.657 3.82566 +CM dss 0 52 l poly3 -255.104 0.169983 -3.05766e-06 2.4192e-10 error 11.5668 0.0110914 3.218e-06 2.88612e-10 +CR dss 0 52 l poly2 3.44658 5.23399e-05 7.15851e-07 error 0.358704 0.0023341 3.29717e-06 + +# ROU: dss 0 53 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 0 param+error 1.32047 1.17408 0.00168056 0.000618211 897.879 30.3875 122.658 15.3303 1899.63 0.033048 8.76768 0.0204624 10986.8 0.0204624 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 1 param+error 289.998 4.37793 0.136735 0.00243338 628.845 53.14 78.8693 17.4795 2030.22 0.11625 9.15948 0.0724609 3499.8 0.0724609 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 2 param+error -374.408 296.875 0.124318 0.090594 41.9099 41.1733 16.1565 4.43806 3251.31 0.778799 8.41052 0.54101 53.8686 0.54101 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 3 param+error 348.279 427.208 -0.0966332 0.123788 1.52008 3.90324 33195.4 29696.7 3413.75 0.341439 9.60014 0.24764 143.796 0.24764 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 4 param+error 0.647408 0.548694 0.000162581 0.000140743 7.70006 3.74321 60.4418 51.8168 3747.76 0.206041 9.46994 0.173337 224.17 0.173337 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 5 param+error -16.3731 55.442 0.00415361 0.0139917 4.85486 7.26815 15.4311 15.9639 3923.78 1.12879 8.17385 0.649608 20.0226 0.649608 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 6 param+error -168.399 469.327 0.037942 0.0985199 9.3697 3.89486 47162 38049.4 4722.64 0.423569 11.3211 0.255626 127.331 0.255626 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 7 param+error -5736.8 5.44497 1.00457 0.00095331 77.7113 7.47899 223.321 137.613 5676.22 0.210025 10.4492 0.125952 433.333 0.125952 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 8 param+error 8.58077 31.3286 -0.000842772 0.00326884 1.54551 1.17183 23.8551 18.7412 9575.09 2.09971 7.15164 1.67929 4.0822 1.67929 +CP dss 0 53 l pakw 9 1899.63 59.541 3.33232 2030.22 80.997 3.47759 3251.31 276.398 3.16513 3413.75 302.853 3.60905 3747.76 356.017 3.55279 3923.78 383.851 3.06339 4722.64 510.99 4.22509 5676.22 661.657 3.884 9575.09 1274.58 2.64507 +CM dss 0 53 l poly3 -249.509 0.164227 -8.35505e-07 3.2126e-11 error 3.35472 0.00280043 6.52439e-07 4.16882e-11 +CR dss 0 53 l poly2 3.22813 0.00102053 -1.13808e-06 error 0.295291 0.00125933 8.71789e-07 + +# ROU: dss 0 54 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1005.4 247.838 0.529247 0.12975 1366.47 28.05 106.909 6.69448 1868.88 0.0259389 8.81058 0.0172631 15308.3 0.0172631 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 1 param+error 287.715 4.27146 0.138945 0.00234174 655.092 50.4969 71.4605 12.8758 2000.05 0.112632 9.17829 0.0706873 3529.2 0.0706873 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 2 param+error -88.2021 882.318 0.0383822 0.271567 9.47601 7.26645 236.6 2522.81 3216.2 0.778868 9.46045 0.595026 85.3116 0.595026 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 3 param+error 1154.58 1.99989 -0.33333 0.000793039 4.73807e-08 43.6105 11535.8 20388.8 3380.29 0.193428 9.50783 0.2527 173.416 0.2527 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 4 param+error -417.085 414.002 0.111772 0.110488 17.5314 5.90416 104.542 149.555 3711.7 0.210946 9.25213 0.162888 307.499 0.162888 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 5 param+error 13.785 69.6853 -0.00344274 0.0177432 0.173341 0.620115 38783.8 37727.3 3884.98 0.444201 8.91782 0.327946 33.8728 0.327946 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 6 param+error 887.83 7.01557 -0.185512 0.00148741 22.4893 40.357 14.8436 11.7628 4679.47 0.728435 10.0681 0.365119 123.489 0.365119 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 7 param+error -1.0947 1.90152 0.000740894 0.000355981 70.3063 13.1661 39.0025 8.3447 5628.35 0.247067 10.1073 0.141161 425.953 0.141161 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 8 param+error 0.293094 0.0157841 3.01814e-05 1.67564e-06 4.01207e-06 3.00107 1.78453 70872.8 9532.6 0.315527 11.6992 0.229373 4.85558 0.229373 +CP dss 0 54 l pakw 9 1868.88 59.541 3.34982 2000.05 80.997 3.48785 3216.2 276.398 3.57712 3380.29 302.853 3.59245 3711.7 356.017 3.49068 3884.98 383.851 3.3619 4679.47 510.99 3.78132 5628.35 661.657 3.77787 9532.6 1274.58 4.27194 +CM dss 0 54 l poly3 -243.139 0.162523 -2.5915e-07 -9.23887e-12 error 3.34729 0.00281815 6.59175e-07 4.24836e-11 +CR dss 0 54 l poly2 3.40262 0.000205614 3.79409e-07 error 0.297053 0.0012832 9.49831e-07 + +# ROU: dss 0 55 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1872.41 627.426 0.918319 0.306898 431.488 26.1303 281.175 165.515 2008.47 0.0493259 9.04712 0.035039 6081.36 0.035039 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 1 param+error -1992.9 1055.21 1.17247 0.483675 553.45 31.9784 158.731 51.8796 2140.2 0.0940441 9.48237 0.0728401 3510.95 0.0728401 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 2 param+error 57.7615 649.7 -0.00720177 0.190443 5.84328 5.98009 33764.3 25846.8 3374.94 0.668912 10.0724 0.452466 89.6122 0.452466 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 3 param+error -591.815 496.758 0.170526 0.138805 12.104 4.70702 27560 19189.6 3541.45 0.355655 9.82194 0.247603 160.3 0.247603 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 4 param+error -61.1082 326.42 0.015941 0.0833669 6.58907 3.16643 5564.02 22686.6 3878.11 0.184254 9.67208 0.126645 279.233 0.126645 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 5 param+error 71.2056 39.3777 -0.0174689 0.00975257 0.00134028 7.46306 1.89087 40562.7 4054.65 4.57276 10.4706 1.11233 28.2459 1.11233 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 6 param+error -50.3581 561.372 0.0129074 0.114364 9.71573 4.7129 206.405 644.681 4867.07 0.464196 11.2233 0.34731 128.422 0.34731 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 7 param+error -3671.5 7.33746 0.625524 0.00124934 60.3795 8.39102 248.836 243.934 5836.52 0.235962 11.2288 0.151292 411.78 0.151292 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 8 param+error -55.4909 28.35 0.00565743 0.00287538 0.652998 0.228146 97334 86490.6 9809.49 2.36668 13.7454 1.77088 3.14879 1.77088 +CP dss 0 55 l pakw 9 2008.47 59.541 3.4069 2140.2 80.997 3.56589 3374.94 276.398 3.74361 3541.45 302.853 3.64535 3878.11 356.017 3.5799 4054.65 383.851 3.87011 4867.07 510.99 4.12459 5836.52 661.657 4.10365 9809.49 1274.58 4.98317 +CM dss 0 55 l poly3 -265.233 0.163776 -1.07939e-06 3.93321e-11 error 3.76291 0.00301428 6.77634e-07 4.22624e-11 +CR dss 0 55 l poly2 3.42439 0.00074026 3.81569e-07 error 0.305714 0.00135376 1.02593e-06 + +# ROU: dss 0 56 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 0 param+error -2998.48 664.382 1.54224 0.340989 1101.01 49.7874 563.673 484.167 1910.47 0.0371856 9.2007 0.0237916 13823.4 0.0237916 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 1 param+error 297.414 5.27683 0.135238 0.00307171 559.649 41.4288 121.916 33.598 2042.19 0.114076 9.63739 0.0769844 3437.22 0.0769844 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 2 param+error 284.413 751.533 -0.0763036 0.22742 2.77004 6.79315 32729.3 17320.4 3271.92 0.822585 9.8587 0.398075 80.0383 0.398075 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 3 param+error -544.694 675.705 0.162064 0.194524 12.196 6.25082 34375.9 32247.7 3441.66 0.441999 9.71403 0.229645 144.034 0.229645 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 4 param+error -704.583 551.245 0.18483 0.144398 28.1593 25.0067 35.2446 51.8602 3781.44 0.55333 9.9637 0.310523 234.832 0.310523 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 5 param+error 81.594 26.413 -0.0203249 0.00661404 8.54938e-12 10.0826 11468.7 30174 3958.35 0.461788 9.24737 0.412296 25.4123 0.412296 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 6 param+error 5.95765 0.575232 0.00136007 0.000125997 11.3485 4.70052 97.1003 100.41 4782.37 0.422418 11.0279 0.307031 131.622 0.307031 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.14521 6.81859 0.000193436 0.00117458 42.0231 11.6861 91.7788 71.7391 5768.1 0.247758 10.8117 0.148874 429.225 0.148874 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 8 param+error -14.6763 52.3902 0.00150231 0.00528624 0.357125 0.204247 821.771 13224 9853.77 1.885 14.8595 1.6212 4.24513 1.6212 +CP dss 0 56 l pakw 9 1910.47 59.541 3.49575 2042.19 80.997 3.65175 3271.92 276.398 3.65003 3441.66 302.853 3.58609 3781.44 356.017 3.6579 3958.35 383.851 3.38555 4782.37 510.99 3.99033 5768.1 661.657 3.86744 9853.77 1274.58 5.22981 +CM dss 0 56 l poly3 -255.278 0.168588 -2.11739e-06 7.75863e-11 error 3.40616 0.00280426 6.41261e-07 4.03256e-11 +CR dss 0 56 l poly2 3.62119 -0.000687837 1.53039e-06 error 0.310022 0.00134077 1.02678e-06 + +# ROU: dss 0 57 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 0 param+error -2383.87 693.834 1.22945 0.357431 631.919 29.9039 380.885 233.925 1905 0.0398 9.03607 0.0282805 8977.32 0.0282805 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 1 param+error 277.215 3.80098 0.137632 0.00199467 518.424 23.7664 132.953 22.1584 2036.45 0.0817941 9.48364 0.0590235 3427.46 0.0590235 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 2 param+error 554.678 139.403 -0.157901 0.042799 44.8969 34.4132 5.03241 3.79942 3266.73 0.995328 9.24954 0.683332 67.7932 0.683332 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 3 param+error 351.509 160.308 -0.0959565 0.0463913 34.5514 39.4208 6.4781 8.17218 3433.48 1.13633 9.78597 0.442243 143.102 0.442243 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 4 param+error -718.624 4.48279 0.189157 0.00117842 15.0471 3.69656 199.113 283.682 3769.84 0.195849 9.66939 0.137966 266.521 0.137966 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 5 param+error -18.5755 73.9823 0.00466245 0.0185452 0.36694 0.711578 39227.5 22276.7 3945.38 0.60897 10.2348 0.389114 24.643 0.389114 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 6 param+error -795.013 449.964 0.168639 0.0937707 13.1289 3.73054 42506.9 25823.4 4754.7 0.431393 11.6127 0.290474 123.34 0.290474 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.464695 6.68158 0.00034948 0.00115992 119.064 20.3873 23.9052 3.10635 5725.46 0.326084 10.0001 0.164203 362.47 0.164203 +CP dss 0 57 l pakw 8 1905 59.541 3.41288 2036.45 80.997 3.57714 3266.73 276.398 3.44772 3433.48 302.853 3.64215 3769.84 356.017 3.58802 3945.38 383.851 3.79206 4754.7 510.99 4.27379 5725.46 661.657 3.65344 +CM dss 0 57 l poly3 -249.014 0.163763 -9.50547e-07 2.30573e-11 error 12.0107 0.0115542 3.36237e-06 3.01355e-10 +CR dss 0 57 l poly2 3.41794 0.000825804 -6.71647e-07 error 0.364707 0.00236575 3.28388e-06 + +# ROU: dss 0 58 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 0 param+error -898.731 419.916 0.467487 0.2174 755.564 49.4256 155.728 54.8217 1892.92 0.0457654 8.97928 0.028097 10009.1 0.028097 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 1 param+error -4704.13 2579.06 2.55436 1.25363 564.273 40.3269 187.395 116.015 2023.62 0.108156 9.37314 0.0910234 3409.39 0.0910234 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 2 param+error 148.342 511.527 -0.035618 0.156198 21.3217 21.4732 15.8665 42.0047 3237.56 2.61549 9.04118 1.22012 67.3652 1.22012 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 3 param+error 10.1494 7.74476 0.00304963 0.00225609 9.20601 12.2781 24.0841 29.8755 3400.41 0.478098 9.55378 0.319608 141.107 0.319608 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 4 param+error 82.0941 412.546 -0.0214391 0.109605 5.1536 3.7098 37217.9 20287.5 3729 0.211965 9.6559 0.124351 253.825 0.124351 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 5 param+error 8.21423 43.2149 -0.0020414 0.0109844 11.88 11.6645 9.25195 2.84795 3902.18 0.977353 8.78288 0.557794 17.779 0.557794 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 6 param+error -33.6025 978.523 0.00961031 0.207533 9.64741 6.93313 46810.4 25695.4 4680.37 0.566993 10.789 0.265455 124.203 0.265455 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 7 param+error -3631.09 6.67416 0.644669 0.00118433 50.3178 1.17429 55911 51661.7 5599.84 0.136342 10.4785 0.106624 436.449 0.106624 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 8 param+error 20.3509 22.7723 -0.00214976 0.0024569 1.55476 1.10134 19.9369 12.3522 9266.34 2.00522 7.76237 1.54563 3.60629 1.54563 +CP dss 0 58 l pakw 9 1892.92 59.541 3.39784 2023.62 80.997 3.54885 3237.56 276.398 3.44384 3400.41 302.853 3.64247 3729 356.017 3.68862 3902.18 383.851 3.35873 4680.37 510.99 4.14756 5599.84 661.657 4.05642 9266.34 1274.58 3.11553 +CM dss 0 58 l poly3 -243.494 0.159745 1.67337e-07 2.94918e-11 error 3.62432 0.00305494 7.21199e-07 4.71453e-11 +CR dss 0 58 l poly2 3.30289 0.00135185 -1.15459e-06 error 0.302691 0.00130764 9.19534e-07 + +# ROU: dss 0 59 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 0 param+error 0.969612 0.940711 0.000972175 0.00051505 956.647 40.8242 110.849 16.2984 1881.68 0.0381929 9.17787 0.0225033 11266.9 0.0225033 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 1 param+error 267.12 4.20176 0.128057 0.0021462 573.139 56.5155 79.7948 20.8787 2014.38 0.136218 9.49734 0.0829528 3143.97 0.0829528 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 2 param+error 16.2456 8.78396 0.00510689 0.00267744 14.0472 9.64886 30.9263 23.965 3250.34 0.893334 9.05183 0.618346 68.3186 0.618346 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 3 param+error 7.86453 7.60218 0.00235157 0.00220369 21.4812 12.2362 25.0062 12.7378 3417.29 0.523514 9.70562 0.330165 132.369 0.330165 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 4 param+error 1.45362 4.46956 -0.000121206 0.0011796 8.37402 4.19538 163.955 400.572 3753.95 0.211778 9.89859 0.149143 254.284 0.149143 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 5 param+error 4.04888 1.9976 -0.000982746 0.000503318 0.459805 0.144878 16570 26334.2 3931.89 0.474737 9.21761 0.364167 22.8938 0.364167 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 6 param+error -53.4482 550.979 0.0139136 0.115258 18.1876 7.11029 49.1845 52.1554 4740.68 0.553034 10.3243 0.458245 107.529 0.458245 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 7 param+error 22.9274 6.4543 -0.00353648 0.00112518 95.7843 18.8513 25.9749 4.24851 5700.58 0.331058 10.1189 0.173457 342.32 0.173457 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 8 param+error -0.287173 3.76423 4.41355e-05 0.000383103 0.805554 0.505466 55.9705 46.3767 9583.35 1.72764 8.99327 1.36677 3.98465 1.36677 +CP dss 0 59 l pakw 9 1881.68 59.541 3.44217 2014.38 80.997 3.55812 3250.34 276.398 3.36343 3417.29 302.853 3.60331 3753.95 356.017 3.6694 3931.89 383.851 3.41459 4740.68 510.99 3.81599 5700.58 661.657 3.73745 9583.35 1274.58 3.38458 +CM dss 0 59 l poly3 -242.796 0.162409 -1.00518e-06 6.05251e-11 error 3.31949 0.0027643 6.39438e-07 4.07489e-11 +CR dss 0 59 l poly2 3.41144 0.000586852 -4.6517e-07 error 0.30196 0.00128837 9.16339e-07 + +# ROU: dss 0 60 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 0 param+error -3702.23 775.816 1.93386 0.404693 623.671 31.3079 237.657 99.7491 1881.03 0.0442467 9.2263 0.0320577 8054.17 0.0320577 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 1 param+error -1901.46 981.184 1.17752 0.477707 516.998 32.5584 127.947 37.5498 2012.33 0.107899 9.67033 0.0827918 3010.34 0.0827918 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 2 param+error 497.44 303.69 -0.142507 0.0926125 1.01181 3.04985 22844.4 22682.1 3238.04 0.628695 9.05781 0.511489 63.966 0.511489 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 3 param+error 73.9763 308.536 -0.0166797 0.0896359 2.46009 3.38394 33948.4 29814.6 3402.95 0.37579 10.1113 0.239812 125.746 0.239812 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 4 param+error 0.271897 3.74908 7.28531e-05 0.000993687 14.1278 11.7491 21.3446 13.06 3736.5 0.31744 10.3398 0.182485 210.122 0.182485 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 5 param+error 15.8493 51.2385 -0.00396839 0.0129426 0.501615 1.69956 39186.9 21363.5 3911.03 0.89288 9.87009 0.627218 23.7991 0.627218 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 6 param+error 316.035 186.807 -0.0638287 0.0393871 48.1794 44.2531 14.496 2.39255 4709.36 0.47512 9.78977 0.311093 85.0523 0.311093 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.78413 0.630874 0.000283163 0.000118435 31.8249 10.4521 141.136 194.727 5657.26 0.277405 10.72 0.174624 364.585 0.174624 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 8 param+error 26.7808 11.4441 -0.00275868 0.0011931 4.28871 2.15584 13.3235 3.84388 9572.55 4.71679 6.45496 2.48852 1.05527 2.48852 +CP dss 0 60 l pakw 9 1881.03 59.541 3.47367 2012.33 80.997 3.64065 3238.04 276.398 3.40522 3402.95 302.853 3.80006 3736.5 356.017 3.88312 3911.03 383.851 3.70511 4709.36 510.99 3.66615 5657.26 661.657 3.99939 9572.55 1274.58 2.3454 +CM dss 0 60 l poly3 -240.955 0.159677 1.36784e-07 -2.9089e-11 error 2.96564 0.00246361 5.7009e-07 3.63263e-11 +CR dss 0 60 l poly2 3.32145 0.00214039 -2.2702e-06 error 0.308204 0.00132816 9.11366e-07 + +# ROU: dss 0 61 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 0 param+error -2787.72 682.454 1.45489 0.355887 989.172 44.2388 265.157 106.167 1879.88 0.0392705 9.33439 0.0262263 12045.5 0.0262263 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 1 param+error 248.514 2.97397 0.121011 0.00146384 429.538 31.9063 167.43 61.4615 2011.96 0.112982 9.77332 0.0750112 2841.24 0.0750112 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 2 param+error -121.034 1.99349 0.0461228 0.000712488 5.81744 1.2715 4693.05 29759.1 3238.53 0.527058 10.1571 0.469066 71.3418 0.469066 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 3 param+error 7.81357 7.89576 0.00226822 0.00230108 9.14926 4.03459 99.765 128.146 3403.43 0.373819 9.91409 0.33052 129.743 0.33052 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 4 param+error -391.689 523.336 0.10427 0.138751 13.3332 6.85158 102.301 224.148 3735.34 0.283236 10.0988 0.214696 245.253 0.214696 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 5 param+error 38.0748 30.4427 -0.00957745 0.00773442 10.89 10.0864 1.29573 0.000122516 3907.21 0.00160604 9.54241 0.00036219 24.741 0.00036219 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 6 param+error 5.98357 0.516285 0.00128368 0.000110264 16.0664 7.41434 40.8022 22.2277 4699.97 0.61564 10.5714 0.411036 96.4675 0.411036 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 7 param+error -626.768 6.08856 0.110856 0.00107266 59.3082 13.0154 49.3341 16.6964 5638.63 0.31653 10.5107 0.173198 321.923 0.173198 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 8 param+error -46.2747 28.3896 0.00489212 0.00299113 0.535394 0.231769 93054.1 62237.8 9440.08 2.79629 14.2561 2.18671 2.63447 2.18671 +CP dss 0 61 l pakw 9 1879.88 59.541 3.50218 2011.96 80.997 3.66845 3238.53 276.398 3.82647 3403.43 302.853 3.73659 3735.34 356.017 3.80948 3907.21 383.851 3.60115 4699.97 510.99 3.99673 5638.63 661.657 3.98108 9440.08 1274.58 5.42016 +CM dss 0 61 l poly3 -238.849 0.15823 3.22657e-07 -1.0721e-11 error 3.61198 0.00303412 7.1005e-07 4.61322e-11 +CR dss 0 61 l poly2 3.6211 -0.000142818 1.2005e-06 error 0.312367 0.00136771 1.05438e-06 + +# ROU: dss 0 62 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 0 param+error -3688.8 5.91267 1.83428 0.0029373 735.262 16.9428 158.334 13.9082 1973.68 0.0358261 9.74356 0.0235376 8093.67 0.0235376 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 1 param+error -4496.55 2268.15 2.32175 1.06082 404.847 35.2724 21029.8 19615.1 2104.62 0.12993 10.3273 0.0683152 2556.04 0.0683152 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 2 param+error 11.9619 0.68872 0.00361401 0.000208393 7.21502 1.23822 69.2456 5.16581 3325.13 0.577918 9.89759 0.466742 55.3946 0.466742 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 3 param+error 471.368 85.7372 -0.130222 0.0245194 41.91 21.4342 1.4179 0.0394548 3488.99 0.736402 11.1529 0.20148 94.7998 0.20148 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 4 param+error 0.36731 0.221838 9.1434e-05 5.68205e-05 5.48999 0.982375 6860.79 12084.9 3821.37 0.220938 10.2452 0.173549 173.73 0.173549 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 5 param+error 0.128939 23.5636 -2.87372e-05 0.00582505 0.582949 1.55051 40023 33231.4 3995.33 1.07718 10.2235 0.735013 18.0878 0.735013 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 6 param+error -934.948 733.095 0.196074 0.151815 14.1584 4.95618 47974.4 26754 4792.44 0.544362 10.462 0.338393 96.2426 0.338393 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 7 param+error -4130.57 1182.47 0.71532 0.204713 48.0592 7.28318 57342.4 57345.6 5739.83 0.29388 11.5102 0.149326 296.905 0.149326 +CP dss 0 62 l pakw 8 1973.68 59.541 3.70303 2104.62 80.997 3.92062 3325.13 276.398 3.72807 3488.99 302.853 4.19779 3821.37 356.017 3.8512 3995.33 383.851 3.84094 4792.44 510.99 3.9249 5739.83 661.657 4.32074 +CM dss 0 62 l poly3 -262.118 0.164951 -1.12149e-06 7.42012e-11 error 12.7243 0.0119532 3.42021e-06 3.0371e-10 +CR dss 0 62 l poly2 3.81661 -0.00028119 1.5343e-06 error 0.396875 0.00258498 3.66687e-06 + +# ROU: dss 0 63 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1307.86 246.908 0.657466 0.124237 647.132 76.7693 19387.6 13613.9 1932.4 0.104114 13.9552 0.0525957 7891.56 0.0525957 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 1 param+error -3619.65 1177.25 1.91027 0.555694 372.814 26.8081 20706.5 10357 2067.11 0.224832 14.308 0.187776 1667.31 0.187776 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 2 param+error 11.9782 167.288 0.00305647 0.0499135 5.47585 2.61999 32938.4 30904.4 3306.78 1.17834 13.6498 0.690459 38.8458 0.690459 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 3 param+error 127.088 1.99831 -0.0326815 0.000586393 3.20791 0.483911 34781.3 29709.4 3472.76 0.455002 15.0723 0.399886 72.0313 0.399886 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 4 param+error -321.81 200.361 0.0834065 0.0518846 10.7288 2.62588 38090.4 38089.2 3810.68 0.382011 14.721 0.205858 143.098 0.205858 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 5 param+error 15.5613 1.9815 -0.0038066 0.000493239 6.06107e-08 0.808703 31500 35574.6 3985.69 0.740996 15.1604 0.713764 13.9119 0.713764 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 6 param+error -281.834 500.56 0.0602779 0.103495 14.9073 5.55007 55.1433 60.9094 4796.36 0.691669 10.8781 0.559523 72.2066 0.559523 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 7 param+error -662.117 518.627 0.114796 0.089232 19.4567 4.48172 57600.5 57203.6 5759.83 0.402027 15.4045 0.213019 196.096 0.213019 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 8 param+error 10.7007 23.0223 -0.00108739 0.00236657 0.498272 0.701775 51.0998 108.179 9650.87 4.86339 12.7416 4.00471 1.86029 4.00471 +CP dss 0 63 l pakw 9 1932.4 59.541 5.21072 2067.11 80.997 5.33829 3306.78 276.398 5.06299 3472.76 302.853 5.58722 3810.68 356.017 5.45103 3985.69 383.851 5.61093 4796.36 510.99 4.01925 5759.83 661.657 5.68793 9650.87 1274.58 4.76208 +CM dss 0 63 l poly3 -248.876 0.160827 -7.04695e-07 4.11172e-11 error 5.12821 0.00417098 9.42764e-07 5.90605e-11 +CR dss 0 63 l poly2 5.0841 0.00170328 -1.52189e-06 error 0.455909 0.001957 1.38111e-06 + +# ROU: dss 0 64 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 0 param+error -178940 2739.31 84.8199 1.29802 17501.7 149.01 19698.7 19434.4 1971.42 0.102636 46.4151 0.0849967 52054.4 0.0849967 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 1 param+error -1676.19 0 0.611725 0 0.042822 0 3.50771 0 3490.81 0 47.198 0 658.212 0 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 2 param+error 3481.48 0 -0.899771 0 11.0023 0 1.61533 0 3839.59 0 47.2609 0 1996.09 0 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 3 param+error 55.2135 2.17716 0.0118763 0.000477648 111.791 25.5004 94.7411 32.1645 4828.57 0.271609 22.8318 0.198219 1365.08 0.198219 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 4 param+error -5332.12 151 0.888484 0.0251678 226.008 16.0392 58545.3 55621.2 5836.04 0.221683 45.8244 0.145749 2993.85 0.145749 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 5 param+error -306.122 3.09061 0.030661 0.000308486 48.7904 37.6925 37.0443 5.01569 9942.75 1.04135 24.8892 0.518772 100.956 0.518772 +CP dss 0 64 l pakw 6 1971.42 59.541 17.8671 3490.81 302.853 17.4699 3839.59 356.017 17.3587 4828.57 510.99 8.22738 5836.04 661.657 16.2666 9942.75 1274.58 8.73333 +CM dss 0 64 l poly3 -272.768 0.174102 -3.0516e-06 1.20001e-10 error 19.3577 0.0153959 3.32854e-06 1.99328e-10 +CR dss 0 64 l poly2 17.5555 0.00266395 -7.51323e-06 error 1.9749 0.00737815 4.85464e-06 + +# ROU: dss 0 0 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 0 param+error -736.265 468.761 0.36834 0.233001 1144.37 46.2669 146.442 29.986 1974.21 0.0331703 8.52963 0.0209861 14063.3 0.0209861 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 1 param+error -570.811 2743.92 0.488144 1.28351 335.795 28.7763 312.22 395.538 2105.77 0.0760193 8.8845 0.0695391 3933.6 0.0695391 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 2 param+error -73.0728 718.581 0.0303139 0.215862 19.9108 11.9063 32.9858 48.7227 3297 1.18224 8.96564 0.861725 57.0048 0.861725 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 3 param+error -938.881 1.06496 0.273409 0.000441961 54.12 46.7753 34.5819 1.76941 3459.58 0.33693 9.00383 0.295885 100.531 0.295885 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 4 param+error -347.006 233.047 0.090917 0.0609648 61.4829 9.63817 36.5479 8.38608 3783.48 0.367006 9.86623 0.241241 218.659 0.241241 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 5 param+error -13.9919 24.8459 0.00353195 0.00619514 12.87 1.63243 19.8899 2.09046 3957.31 0.797829 7.52963 0.500173 20.0145 0.500173 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 6 param+error 60.0069 456.521 -0.0108593 0.0954161 30.903 28.6525 36.312 29.4408 4737.66 1.44088 11.5588 1.0047 68.4474 1.0047 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1049.45 409.736 0.183877 0.0717429 112.53 2.89815 49.3472 3.77276 5673.09 0.233743 9.92454 0.17942 218.228 0.17942 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 8 param+error 11.0613 38.5445 -0.00114247 0.00405426 1.12385 0.865944 49.4839 65.2563 9469.84 6.02028 6.98757 4.57318 1.96865 4.57318 +CP dss 0 0 h pakw 9 1974.21 59.541 3.31082 2105.77 80.997 3.4448 3297 276.398 3.4462 3459.58 302.853 3.45737 3783.48 356.017 3.78136 3957.31 383.851 2.88309 4737.66 510.99 4.40971 5673.09 661.657 3.77456 9469.84 1274.58 2.66324 +CM dss 0 0 h poly3 -268.993 0.168088 -9.54475e-07 4.40244e-11 error 3.5828 0.00293259 6.76236e-07 4.32031e-11 +CR dss 0 0 h poly2 3.26602 0.000801282 -9.81992e-07 error 0.292617 0.00124003 8.60018e-07 + +# ROU: dss 0 1 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 0 param+error -707.102 8.72749 0.365856 0.00446345 1239.97 45.5741 102.243 12.8193 1919.19 0.031218 8.32433 0.0185673 14668 0.0185673 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 1 param+error -943.006 2473.99 0.690756 1.18873 387.514 32.1295 124.394 70.9457 2048.81 0.0738921 8.74989 0.0674228 4195.38 0.0674228 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 2 param+error 425.921 85.3811 -0.121875 0.0262802 22.31 32.2389 14.5446 14.1871 3221.65 1.87316 9.20093 0.915802 58.8144 0.915802 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 3 param+error 8.1619 8.59764 0.00244065 0.00252323 28.2377 7.99804 38.2976 13.0337 3379.34 0.528521 9.92954 0.399988 121.795 0.399988 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 4 param+error -804.769 453.656 0.216069 0.121552 97.02 5.11424 31.3272 3.92034 3698.27 0.246317 9.50822 0.187168 196.116 0.187168 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 5 param+error 17.5037 23.3715 -0.00445012 0.00599759 11.22 7.02176 14.5968 2.64993 3863.06 0.886629 10.051 0.581436 19.8646 0.581436 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 6 param+error 80.3247 57.1701 -0.0147855 0.0122687 38.9762 28.7469 30.3966 5.49754 4627.39 0.971855 10.5228 0.547435 70.3939 0.547435 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 7 param+error -386.095 380.451 0.0694142 0.0682393 119.79 2.37012 41.4736 2.84486 5536.55 0.228802 9.92348 0.169169 235.569 0.169169 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 8 param+error 1.13311 3.17799 -0.000107541 0.000334239 0.564049 0.159295 212.475 129.722 9238.4 2.23319 13.4597 1.56244 3.07441 1.56244 +CP dss 0 1 h pakw 9 1919.19 59.541 3.26773 2048.81 80.997 3.43483 3221.65 276.398 3.61084 3379.34 302.853 3.89641 3698.27 356.017 3.73023 3863.06 383.851 3.94263 4627.39 510.99 4.12429 5536.55 661.657 3.88405 9238.4 1274.58 5.21539 +CM dss 0 1 h poly3 -260.306 0.166505 9.25158e-08 -1.43175e-11 error 3.68329 0.00309023 7.2871e-07 4.80321e-11 +CR dss 0 1 h poly2 3.32834 0.00102998 3.05063e-07 error 0.29383 0.00131955 1.02226e-06 + +# ROU: dss 0 2 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1240.02 548.676 0.639191 0.281564 1390.23 40.4963 126.537 15.9262 1912.87 0.0274051 8.26095 0.0183056 16391.2 0.0183056 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 1 param+error 253.835 3.99605 0.122268 0.00215865 395.547 30.4705 125.182 39.8367 2040.49 0.0654452 8.48284 0.047752 4481.34 0.047752 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 2 param+error 15.3335 0.73299 0.00487975 0.000240055 17.7277 7.88543 39.3307 24.0898 3182.58 0.79505 8.17052 0.545738 69.0729 0.545738 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 3 param+error -322.902 505.866 0.100317 0.150129 61.38 45.799 24.5071 6.08884 3339.2 0.454546 9.06907 0.301975 103.184 0.301975 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 4 param+error -271.99 149.386 0.0739528 0.0404673 100.65 2.96456 24.6972 1.38777 3654.7 0.21622 8.97446 0.146227 207.594 0.146227 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 5 param+error 9.20787 43.2584 -0.00234522 0.0112094 10.89 7.8778 18.3354 3.67909 3820.88 0.782126 9.43638 0.491084 21.2942 0.491084 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 6 param+error -686.97 653.532 0.150724 0.141174 41.0814 8.36345 49.0014 28.3 4590.32 0.918758 10.5276 0.700077 77.953 0.700077 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1645.75 5.19008 0.296777 0.000935262 105.442 10.533 62.8054 11.8953 5515.47 0.323721 9.48406 0.168115 300.714 0.168115 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 8 param+error 7.53847 1.1001 -0.00077183 0.00011581 6.70016e-05 2.65583 2.92743 81650.3 9292.06 1.85455 15.3447 1.63105 4.1116 1.63105 +CP dss 0 2 h pakw 9 1912.87 59.541 3.38016 2040.49 80.997 3.45931 3182.58 276.398 3.24381 3339.2 302.853 3.58904 3654.7 356.017 3.53005 3820.88 383.851 3.70059 4590.32 510.99 4.07876 5515.47 661.657 3.63593 9292.06 1274.58 5.91037 +CM dss 0 2 h poly3 -282.561 0.184215 -3.15326e-06 1.46522e-10 error 3.50429 0.00294826 6.99162e-07 4.62962e-11 +CR dss 0 2 h poly2 3.50012 -0.00088496 2.12675e-06 error 0.297207 0.00131082 1.04862e-06 + +# ROU: dss 0 3 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.04824 1.01879 0.00201318 0.000531267 1316.58 40.9756 122.582 14.7605 1969.94 0.0291178 8.62306 0.0175843 15766.7 0.0175843 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 1 param+error 253.521 3.79023 0.118051 0.00197445 503.6 53.0231 60.8605 13.2642 2102.23 0.0903838 8.91177 0.0580831 4345.47 0.0580831 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 2 param+error 517.683 336.23 -0.146823 0.101295 20.2896 31.2533 15.5525 17.3878 3289.87 1.01304 8.5663 0.630685 72.7209 0.630685 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 3 param+error -1305.35 8.26431 0.379805 0.00237314 43.4256 7.30046 52.5128 14.3292 3450.97 0.509976 9.52618 0.332993 124.668 0.332993 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 4 param+error -354.644 174.367 0.0933475 0.0457257 95.7 3.57054 26.2506 1.70551 3774.52 0.230993 9.68193 0.162122 195.932 0.162122 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 5 param+error 8.15445 115.717 -0.00201903 0.029072 12.1665 6.40463 19.0286 9.1215 3944.21 1.36412 9.62475 0.7299 18.1521 0.7299 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 6 param+error 265.907 45.3811 -0.0535142 0.00957827 53.46 36.4646 22.3107 1.25193 4722.84 0.455815 10.6947 0.331209 70.5787 0.331209 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1577.21 0.589652 0.277478 0.000137622 125.4 108.121 50.6325 1.00778 5650.24 0.196603 10.2275 0.14045 270.792 0.14045 +CP dss 0 3 h pakw 8 1969.94 59.541 3.32355 2102.23 80.997 3.43854 3289.87 276.398 3.31845 3450.97 302.853 3.68939 3774.52 356.017 3.74575 3944.21 383.851 3.72044 4722.84 510.99 4.10672 5650.24 661.657 3.87357 +CM dss 0 3 h poly3 -258.7 0.158586 1.87679e-06 -1.97945e-10 error 12.2171 0.0115914 3.36036e-06 3.02305e-10 +CR dss 0 3 h poly2 3.28486 0.00105268 -1.92888e-07 error 0.355061 0.0023507 3.3266e-06 + +# ROU: dss 0 4 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1461.61 525.586 0.725481 0.259256 1395.42 52.1617 169.229 37.1072 1989.96 0.0302778 8.49877 0.0190851 17358.8 0.0190851 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 1 param+error 8759.33 4831.82 -3.8336 2.24228 471.467 91.761 37.8356 24.7857 2123.26 0.0884422 8.70325 0.109943 4543.53 0.109943 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 2 param+error 15.1398 8.19816 0.00475824 0.00241155 31.1725 11.4819 20.14 5.50501 3370.87 1.15951 8.55644 0.670023 56.3212 0.670023 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 3 param+error 238.66 458.484 -0.0621993 0.128445 59.3999 49.3515 19.6522 4.90707 3538.83 0.497631 9.46615 0.302777 106.653 0.302777 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 4 param+error 16.4435 210.964 -0.00417571 0.0539893 86.79 6.30492 26.774 2.41916 3874.01 0.280255 10.2226 0.168748 191.142 0.168748 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 5 param+error -70.3887 99.7748 0.0172451 0.0244021 11.22 10.474 26.4824 7.71061 4049.49 0.962836 10.5227 0.633889 16.7697 0.633889 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 6 param+error -36.0068 280.528 0.00973031 0.0574235 43.89 4.7879 32.4519 6.07505 4848.26 0.573708 11.5841 0.411665 75.8394 0.411665 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 7 param+error -4715.5 5.06022 0.809671 0.000868611 124.74 3.34983 90.9544 2.47639 5786.61 0.22373 11.8158 0.160172 262.278 0.160172 +CP dss 0 4 h pakw 8 1989.96 59.541 3.15223 2123.26 80.997 3.22515 3370.87 276.398 3.16779 3538.83 302.853 3.50779 3874.01 356.017 3.79779 4049.49 383.851 3.91604 4848.26 510.99 4.35947 5786.61 661.657 4.53588 +CM dss 0 4 h poly3 -257.841 0.162537 -1.94755e-06 2.29179e-10 error 12.0713 0.0112993 3.22615e-06 2.85592e-10 +CR dss 0 4 h poly2 3.1048 0.000554918 2.58134e-06 error 0.339073 0.00233887 3.47973e-06 + +# ROU: dss 0 5 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 0 param+error -2213.1 843.41 1.12553 0.427488 1402.73 40.6129 137.242 19.2458 1937.9 0.0276027 8.504 0.0194901 16818.6 0.0194901 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4069.39 1972.46 2.19018 0.937662 413.838 35.8795 637.577 1331.75 2069.43 0.071871 8.88995 0.057745 4845.52 0.057745 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 2 param+error 280.268 199.362 -0.0746499 0.0604886 46.1998 30.8568 13.4873 2.66485 3285.94 0.723479 8.15484 0.547737 51.4458 0.547737 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 3 param+error -425.893 480.906 0.127073 0.13804 68.6394 64.1391 20.3451 4.34794 3449.01 0.449739 9.35738 0.306619 109.013 0.306619 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 4 param+error -1839.17 640.094 0.482621 0.167877 95.04 60.5324 39.3276 6.90417 3779.43 0.243915 10.0171 0.211069 199.447 0.211069 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 5 param+error 38.8466 12.7158 -0.00973985 0.00324175 11.22 6.98901 15.9142 1.83569 3951.15 0.861399 10.6341 0.625128 19.4713 0.625128 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 6 param+error 4.19965 129.747 0.00152083 0.0271018 50.49 39.3786 29.016 2.83043 4748.1 0.457341 10.4056 0.339143 78.3414 0.339143 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 7 param+error -2317.44 5.05452 0.404913 0.000882849 130.871 7.43985 55.6167 3.93027 5689.17 0.314457 10.4598 0.172772 291.795 0.172772 +CP dss 0 5 h pakw 8 1937.9 59.541 3.23384 2069.43 80.997 3.37857 3285.94 276.398 3.08469 3449.01 302.853 3.53777 3779.43 356.017 3.78366 3951.15 383.851 4.01496 4748.1 510.99 3.92235 5689.17 661.657 3.93884 +CM dss 0 5 h poly3 -254.964 0.16328 -5.48653e-07 2.96391e-11 error 12.8637 0.0123217 3.59132e-06 3.23644e-10 +CR dss 0 5 h poly2 3.17675 0.00105531 3.16253e-07 error 0.348516 0.00232611 3.30967e-06 + +# ROU: dss 0 6 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1.24929 1.08153 0.00125068 0.000549326 1243.89 32.2629 111.45 9.87363 1964.04 0.0253957 8.37154 0.0163739 15951.9 0.0163739 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 1 param+error 271.193 4.08181 0.129959 0.00212935 490.305 38.593 81.9814 17.6125 2096.7 0.0697391 8.64374 0.0485526 4906.45 0.0485526 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 2 param+error 56.3884 398.5 -0.00762521 0.118928 42.57 31.7277 20.7512 6.03043 3323.81 0.756086 7.85559 0.490428 54.0102 0.490428 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 3 param+error -306.684 844.243 0.09227 0.239715 29.2442 11.4039 49.8169 57.1491 3487.51 0.594683 9.83368 0.475044 132.621 0.475044 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 4 param+error 128.947 177.496 -0.0329265 0.0459667 99.33 13.6569 21.088 1.55827 3823.38 0.238553 9.71602 0.151571 215.349 0.151571 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 5 param+error -84.2803 146.517 0.0209412 0.0362815 2.0946 0.80022 39773.1 39482 3995.94 0.671778 11.912 0.609692 24.6945 0.609692 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 6 param+error 5.56001 0.581702 0.00123193 0.000128371 29.4304 7.27061 39.6956 9.40891 4799.22 0.634183 11.5922 0.398752 106.335 0.398752 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 7 param+error -922.112 409.005 0.159375 0.0706176 144.54 3.32852 39.5335 2.37864 5751.41 0.203482 10.5363 0.152617 293.637 0.152617 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 8 param+error 22.5815 49.2596 -0.00233439 0.00511404 1.58583 0.730388 52.3636 44.7717 9607.34 3.16873 8.99548 1.911 2.82108 1.911 +CP dss 0 6 h pakw 9 1964.04 59.541 3.15831 2096.7 80.997 3.25844 3323.81 276.398 2.94361 3487.51 302.853 3.68254 3823.38 356.017 3.6343 3995.94 383.851 4.4534 4799.22 510.99 4.32602 5751.41 661.657 3.92875 9607.34 1274.58 3.39247 +CM dss 0 6 h poly3 -257.236 0.162597 -7.30734e-07 4.18802e-11 error 3.4762 0.00283967 6.51009e-07 4.12734e-11 +CR dss 0 6 h poly2 2.93939 0.00258961 -1.74171e-06 error 0.282201 0.00127421 9.16705e-07 + +# ROU: dss 0 7 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1991.31 1265.43 0.972798 0.616297 1434.61 35.5174 128.188 14.9885 2019.55 0.0255669 8.48367 0.0191782 17300.7 0.0191782 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 1 param+error -8637.24 1833.4 4.21244 0.83982 491.891 26.6849 21529.4 12788.6 2149.4 0.0588538 8.9641 0.0375612 5088.24 0.0375612 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 2 param+error 162.321 469.739 -0.038309 0.139671 47.3493 25.5409 14.2536 8.8389 3327.34 1.63847 9.06941 0.735305 61.9863 0.735305 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 3 param+error -1.17991 579.594 0.00559513 0.16446 36.4954 21.1069 28.1704 27.9259 3484.94 0.718014 9.70488 0.578742 142.131 0.578742 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 4 param+error -152.022 170.674 0.0399945 0.0443929 102.96 10.1866 23.1863 1.44121 3806.44 0.216106 9.20846 0.138323 227.909 0.138323 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 5 param+error -82.7679 99.8995 0.0206242 0.0249002 2.31348 1.04699 39678.1 22711 3971.9 0.722164 11.1445 0.393679 27.1783 0.393679 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 6 param+error 5.84975 7.81981 0.00123949 0.00163576 36.5142 12.2181 33.7768 12.1651 4746.58 0.749954 11.2517 0.460281 105.89 0.460281 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 7 param+error -839.607 354.826 0.147238 0.0621386 161.04 4.39778 37.0881 1.75746 5672.03 0.18485 9.67729 0.136664 314.527 0.136664 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 8 param+error 15.1767 0.0449346 -0.00156401 3.01123e-07 2.50808 0.669106 38.0173 6.77065 9437.73 2.56313 8.29405 1.58197 3.34584 1.58197 +CP dss 0 7 h pakw 9 2019.55 59.541 3.33569 2149.4 80.997 3.52105 3327.34 276.398 3.53287 3484.94 302.853 3.77662 3806.44 356.017 3.5764 3971.9 383.851 4.32413 4746.58 510.99 4.34768 5672.03 661.657 3.72402 9437.73 1274.58 3.16971 +CM dss 0 7 h poly3 -280.654 0.169978 -8.3581e-07 3.02749e-11 error 3.81479 0.0030736 6.99862e-07 4.45364e-11 +CR dss 0 7 h poly2 3.3025 0.00181514 -1.51254e-06 error 0.296674 0.00129144 9.16887e-07 + +# ROU: dss 0 8 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.05206 1.24541 0.00168558 0.00065101 1364.32 36.5172 117.373 11.1981 1915.39 0.0274934 8.61735 0.0169824 16390.6 0.0169824 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4755.42 2361.9 2.56095 1.13532 525.644 40.9437 138.166 71.0946 2046.69 0.0740712 8.94449 0.0637161 4978.79 0.0637161 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 2 param+error -1043.08 751.704 0.328162 0.229122 19.2689 7.2176 32479.4 31214.9 3251.57 0.830446 9.70088 0.426775 82.8585 0.426775 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 3 param+error 8.81716 7.33933 0.00272486 0.00212661 46.113 10.5356 28.5265 5.55192 3413.45 0.551522 9.19034 0.327502 139.205 0.327502 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 4 param+error -974.759 449.14 0.258633 0.119064 99.3299 81.7096 28.3931 3.49804 3737.46 0.240927 9.81878 0.172636 214.797 0.172636 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 5 param+error -60.085 70.6656 0.0152579 0.0178947 13.5248 12.1552 19.8998 4.18643 3908.88 0.928823 9.54082 0.519472 18.3541 0.519472 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1019.75 543.443 0.218141 0.114926 29.7188 4.01908 131.193 108.036 4683.29 0.542573 12.359 0.497434 114.085 0.497434 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 7 param+error -0.0334344 5.93717 6.72625e-06 0.00105296 150.15 5.63028 37.4063 1.05473 5604.69 0.20479 10.0281 0.150273 298.891 0.150273 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 8 param+error 0.0718371 1.20088 7.72155e-06 0.000127327 0.760869 0.321309 167.299 206.759 9392.59 1.74886 10.5432 1.53776 4.05054 1.53776 +CP dss 0 8 h pakw 9 1915.39 59.541 3.27568 2046.69 80.997 3.40441 3251.57 276.398 3.72601 3413.45 302.853 3.53293 3737.46 356.017 3.77998 3908.88 383.851 3.67527 4683.29 510.99 4.76863 5604.69 661.657 3.86691 9392.59 1274.58 3.93686 +CM dss 0 8 h poly3 -245.976 0.157346 1.32078e-06 -8.91212e-11 error 3.60988 0.00301486 7.05144e-07 4.57197e-11 +CR dss 0 8 h poly2 3.24833 0.00150135 -7.59328e-07 error 0.292114 0.00128738 9.42977e-07 + +# ROU: dss 0 9 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1331.56 9.30014 0.687359 0.00477421 1244.26 44.0547 98.4872 11.2574 1912.06 0.0295024 8.40947 0.0178099 15466.8 0.0178099 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 1 param+error 280.909 4.17195 0.135309 0.00215091 467.716 34.458 108.922 27.6269 2042.07 0.0658234 8.71645 0.0469099 5070.78 0.0469099 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 2 param+error 18.4183 8.23618 0.00337972 0.00252527 11.138 2.09264 300.484 338.876 3236.02 0.429368 9.35081 0.388215 95.313 0.388215 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 3 param+error -1115.62 361.974 0.330547 0.105388 21.444 4.03195 33938.5 22533.6 3397.1 0.356605 10.2696 0.212843 159.234 0.212843 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 4 param+error 358.642 361.564 -0.0957736 0.0963892 102.96 13.1895 20.5259 2.40208 3723.34 0.271252 9.47291 0.173137 219.94 0.173137 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 5 param+error 44.4813 55.4447 -0.0112749 0.0141052 14.85 3.09562 16.247 2.82881 3894.61 0.935514 8.25765 0.569262 18.0306 0.569262 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 6 param+error -296.822 1.29748 0.0657387 0.000336082 53.7899 46.9774 29.4207 1.31286 4673.48 0.361187 10.4035 0.295793 98.3119 0.295793 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 7 param+error -43.2435 307.366 0.00787677 0.054505 159.06 8.23711 30.3894 1.38016 5597.91 0.177593 9.90669 0.132485 335.585 0.132485 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 8 param+error 0.826361 0.0176468 -7.14562e-05 1.6929e-07 1.11546 0.179271 137.92 23.4063 9379.08 1.80488 9.39844 1.32949 4.84194 1.32949 +CP dss 0 9 h pakw 9 1912.06 59.541 3.2486 2042.07 80.997 3.36602 3236.02 276.398 3.60008 3397.1 302.853 3.95227 3723.34 356.017 3.64287 3894.61 383.851 3.17428 4673.48 510.99 3.99229 5597.91 661.657 3.79446 9379.08 1274.58 3.57849 +CM dss 0 9 h poly3 -254.924 0.164948 -2.51302e-07 5.52172e-12 error 3.5749 0.00298841 6.98206e-07 4.51984e-11 +CR dss 0 9 h poly2 3.25505 0.00112199 -6.78663e-07 error 0.288618 0.00125184 9.04395e-07 + +# ROU: dss 0 10 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 0 param+error 12.5648 8.88025 -0.0222326 0.00590387 1492.18 59.6087 90.0815 11.7601 1965.28 0.0303491 8.3158 0.0243968 17330.9 0.0243968 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 1 param+error 284.611 3.93505 0.134615 0.0018749 482.011 7.43209 103.778 1.47104 2094.95 0.0410225 8.5461 0.0351696 5145.29 0.0351696 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 2 param+error 1163.66 253.543 -0.342563 0.0769488 50.1596 47.4583 6.56446 3.31883 3262.07 0.965287 7.98011 0.521462 69.9965 0.521462 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 3 param+error 7.92963 8.71989 0.00236941 0.0025292 33.9636 9.10828 33.7319 9.78201 3418.93 0.4633 9.29605 0.329424 151.967 0.329424 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 4 param+error -356.063 297.009 0.0947594 0.0787655 120.12 8.27701 20.1334 1.54961 3736.27 0.221878 9.03879 0.153637 232.445 0.153637 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 5 param+error -0.0321511 1.75089 5.01798e-05 0.000444448 6.00267 2.02558 29.6918 7.55355 3901.52 0.7629 9.41701 0.483594 28.0675 0.483594 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 6 param+error -204.832 392.543 0.0461533 0.0833195 31.7411 13.4149 45.3885 33.2643 4666.84 0.831143 10.93 0.504015 114.003 0.504015 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 7 param+error 311.61 271.84 -0.055223 0.048346 169.29 12.0777 25.5481 1.04775 5581.81 0.170373 9.51599 0.12184 350.484 0.12184 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 8 param+error -121.939 75.7738 0.0130346 0.00809608 1.12703 0.452394 91435.3 67987.2 9314.13 2.05518 13.1968 1.25055 4.83329 1.25055 +CP dss 0 10 h pakw 9 1965.28 59.541 3.29084 2094.95 80.997 3.37989 3262.07 276.398 3.13888 3418.93 302.853 3.65386 3736.27 356.017 3.54761 3901.52 383.851 3.6933 4666.84 510.99 4.27209 5581.81 661.657 3.70468 9314.13 1274.58 5.06132 +CM dss 0 10 h poly3 -272.427 0.169678 -4.2633e-07 4.35277e-12 error 3.60896 0.00298086 6.96963e-07 4.56005e-11 +CR dss 0 10 h poly2 3.31442 0.000127496 9.59221e-07 error 0.290698 0.00128452 9.90415e-07 + +# ROU: dss 0 11 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 0 param+error -791.107 10.1448 0.402455 0.00510358 1515.45 48.6053 117.703 14.643 1951.65 0.0275013 8.4029 0.0164665 18365.2 0.0164665 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 1 param+error 283.433 4.49425 0.13123 0.00234619 448.492 29.6577 155.279 49.5812 2082.75 0.0608739 8.69682 0.0453237 5153.88 0.0453237 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 2 param+error 664.635 251.839 -0.190601 0.0761428 49.5 31.9962 12.6242 2.77417 3282.43 0.690108 7.37111 0.532359 57.1768 0.532359 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 3 param+error 7.78721 1.02218 0.0020367 0.000373988 17.8209 5.71775 107.4 106.6 3442.04 0.38198 10.1411 0.310921 158.609 0.310921 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 4 param+error 0.704372 5.22552 0.000245567 0.00137351 99.8973 17.4828 20.5293 2.53824 3770.68 0.405802 9.12607 0.193809 237.826 0.193809 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 5 param+error -18.8287 49.0767 0.00475622 0.0123427 11.55 7.9029 16.4924 3.60214 3942.21 0.864529 9.57331 0.529033 21.1909 0.529033 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 6 param+error 4.57005 0.699167 0.000992359 0.000149182 25.0431 6.7305 49.9555 17.0254 4728.88 0.551951 11.6028 0.413311 118.321 0.413311 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 7 param+error -79.3906 282.06 0.0141191 0.0493954 169.95 10.0756 26.7896 1.09824 5669.17 0.179333 9.83298 0.12533 341.307 0.12533 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 8 param+error 0.0463804 1.13169 5.62017e-06 0.000118861 1.53936 0.774807 41.5425 20.3468 9478.71 2.27759 10.5093 1.72549 4.24968 1.72549 +CP dss 0 11 h pakw 9 1951.65 59.541 3.24717 2082.75 80.997 3.35682 3282.43 276.398 2.81887 3442.04 302.853 3.87417 3770.68 356.017 3.4795 3942.21 383.851 3.64654 4728.88 510.99 4.40346 5669.17 661.657 3.72121 9478.71 1274.58 4.00051 +CM dss 0 11 h poly3 -263.965 0.167592 -1.044e-06 5.13923e-11 error 3.41021 0.00280893 6.5169e-07 4.19474e-11 +CR dss 0 11 h poly2 3.15971 0.000799226 -9.33374e-08 error 0.287005 0.00125934 9.25942e-07 + +# ROU: dss 0 12 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 0 param+error -745.968 8.88028 0.378008 0.00445039 940.599 39.8175 131.618 24.2851 1959.13 0.0305657 8.37609 0.0186687 13862.3 0.0186687 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 1 param+error 282.033 4.49331 0.13092 0.00234728 422.126 25.9774 129.11 31.1289 2092.13 0.0581499 8.65679 0.0443401 5017.86 0.0443401 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 2 param+error 14.7946 1.13547 0.004346 0.000445583 17.4757 4.45729 57.1216 23.7017 3317.1 0.584413 9.29671 0.506238 84.7917 0.506238 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 3 param+error -912.357 942.42 0.265031 0.268158 53.433 14.2653 36.335 25.7029 3482.41 0.647515 9.08446 0.493424 135.674 0.493424 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 4 param+error -90.6544 223.386 0.0237908 0.0579738 88.1129 22.7325 23.0821 5.73019 3812.98 0.566809 9.32881 0.306371 235.883 0.306371 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 5 param+error -21.1564 49.8736 0.00532333 0.0124346 12.21 8.5884 17.2103 3.1016 3987.18 0.768228 8.67399 0.504029 20.8636 0.504029 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 6 param+error 6.22208 6.48347 0.00136534 0.00134481 40.2291 11.3975 28.3986 6.62937 4781.23 0.783319 11.2278 0.433789 101.723 0.433789 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.152049 4.59466 6.06688e-05 0.00079805 145.645 10.7608 32.9571 1.92244 5721.59 0.283976 9.76271 0.154279 352.619 0.154279 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 8 param+error -73.2663 1.15554 0.00764608 0.000120372 0.994481 0.271129 290.358 298.285 9566.1 1.67427 11.3414 1.38733 4.66696 1.38733 +CP dss 0 12 h pakw 9 1959.13 59.541 3.14486 2092.13 80.997 3.25163 3317.1 276.398 3.5024 3482.41 302.853 3.42338 3812.98 356.017 3.51706 3987.18 383.851 3.27082 4781.23 510.99 4.23577 5721.59 661.657 3.68171 9566.1 1274.58 4.2275 +CM dss 0 12 h poly3 -251.528 0.158086 4.32452e-07 -2.93882e-11 error 3.45354 0.00282531 6.48124e-07 4.12964e-11 +CR dss 0 12 h poly2 3.16389 0.000725467 8.19507e-08 error 0.279724 0.00122759 9.17384e-07 + +# ROU: dss 0 13 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 0 param+error 8.65816 1.5238 -0.00154019 0.000726801 1419.14 36.1626 110.704 9.45482 1939.96 0.025629 8.51655 0.0162597 17152.7 0.0162597 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 1 param+error 272.724 4.36995 0.128045 0.00233161 467.772 35.8036 106.182 27.5843 2073.64 0.0673225 8.87926 0.0485511 5017.97 0.0485511 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 2 param+error -188.914 838.976 0.065801 0.249027 10.9696 7.08811 131.982 496.515 3336.56 0.756496 9.4102 0.569426 85.3217 0.569426 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 3 param+error 514.436 136.038 -0.140099 0.0384087 74.2488 72.1795 13.4907 1.53627 3509.57 0.384856 8.86705 0.260798 118.513 0.260798 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 4 param+error 217.818 159.363 -0.0555862 0.0409237 103.95 17.3536 20.2258 1.30117 3854.43 0.22404 9.32513 0.141247 217.665 0.141247 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 5 param+error -28.4154 134.956 0.00706661 0.0332039 13.86 11.3987 19.456 5.67274 4035.5 0.987829 8.51243 0.560242 18.1755 0.560242 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 6 param+error 448.148 306.783 -0.0894044 0.0627105 52.47 34.6435 22.3403 4.0339 4855.25 0.551685 10.997 0.347126 86.84 0.347126 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.129655 6.07376 8.83665e-05 0.00103747 148.171 11.6227 32.6973 1.96668 5818.99 0.336146 10.4935 0.18056 319.799 0.18056 +CP dss 0 13 h pakw 8 1939.96 59.541 3.16189 2073.64 80.997 3.28399 3336.56 276.398 3.40633 3509.57 302.853 3.20703 3854.43 356.017 3.37226 4035.5 383.851 3.08067 4855.25 510.99 4.02151 5818.99 661.657 3.94031 +CM dss 0 13 h poly3 -258.19 0.171705 -4.90353e-06 4.41246e-10 error 10.945 0.0103287 2.94939e-06 2.60022e-10 +CR dss 0 13 h poly2 3.30888 -0.0012573 3.2436e-06 error 0.336186 0.00219831 3.18322e-06 + +# ROU: dss 0 14 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 0 param+error -846.048 8.01553 0.424898 0.0039865 1272.46 41.6961 164.53 30.0901 1973.98 0.0257087 8.19237 0.0158159 17820.1 0.0158159 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4851.31 270.259 2.54379 0.126604 580.875 19.5029 111.079 13.2399 2102.71 0.0477268 8.39778 0.0364547 5276.83 0.0364547 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 2 param+error -1437.21 701.266 0.450471 0.214323 20.6604 6.61965 32360 31307.6 3241.28 0.669237 9.18269 0.360605 93.2115 0.360605 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 3 param+error 9.48845 0.777963 0.00282231 0.000235985 22.3589 8.84146 44.1174 26.1152 3393.93 0.400973 8.86251 0.275196 168.355 0.275196 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 4 param+error -985.5 4.72965 0.263927 0.00126476 55.8486 8.55611 46.8494 10.5448 3706.52 0.269074 9.05907 0.157037 278.853 0.157037 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 5 param+error -257.618 166.285 0.0660127 0.0425619 4.08641 1.03245 38640.5 38289.3 3869.61 0.589307 9.87186 0.477894 31.7738 0.477894 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 6 param+error 645.337 464.328 -0.135645 0.0996997 62.3695 52.2784 16.1591 3.59629 4625.93 0.500587 9.74504 0.303657 108.643 0.303657 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.578195 5.07003 0.00012264 0.000909935 179.087 27.6109 24.7598 2.42614 5537.05 0.338659 9.07843 0.159457 371.508 0.159457 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 8 param+error -42.1333 128.194 0.00455239 0.0137996 0.920197 0.27708 201.228 718.601 9242.78 1.71604 11.9478 1.69797 4.70554 1.69797 +CP dss 0 14 h pakw 9 1973.98 59.541 3.34311 2102.71 80.997 3.41989 3241.28 276.398 3.67859 3393.93 302.853 3.54339 3706.52 356.017 3.60817 3869.61 383.851 3.92446 4625.93 510.99 3.84366 5537.05 661.657 3.55412 9242.78 1274.58 4.64575 +CM dss 0 14 h poly3 -288.863 0.179711 -1.85261e-06 7.67096e-11 error 3.73597 0.00307584 7.16053e-07 4.67973e-11 +CR dss 0 14 h poly2 3.42712 0.000294238 4.72425e-07 error 0.293129 0.00127957 9.70337e-07 + +# ROU: dss 0 15 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 0 param+error -30131 6234.1 15.1438 3.13656 1758.95 81.9411 19580.5 12088.3 1965.06 0.0336674 8.3986 0.0185876 19924.1 0.0185876 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 1 param+error -1557.4 2128.19 1.00579 1.00028 459.053 38.811 206.283 158.119 2093.87 0.0680084 8.63157 0.0573248 5265.38 0.0573248 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 2 param+error 229.151 629.427 -0.059534 0.193617 24.365 36.1841 21.4551 54.1533 3214.18 2.17703 8.42378 1.20149 84.3789 1.20149 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 3 param+error 531.146 181.401 -0.150967 0.0537253 73.26 45.9628 13.7049 1.5745 3365.49 0.320083 8.4936 0.258259 135.012 0.258259 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 4 param+error -523.976 306.547 0.141749 0.0827179 114.84 7.39108 21.7933 1.7125 3672.38 0.208079 8.71327 0.142744 238.404 0.142744 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 5 param+error -120.415 54.941 0.031127 0.0142151 2.50897 0.65235 38036.8 35785.4 3831.71 0.562641 10.4416 0.397259 28.747 0.397259 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 6 param+error 304.916 253.06 -0.0630547 0.0547981 54.45 6.51971 20.3701 3.06261 4581.05 0.431725 9.72529 0.291798 105.117 0.291798 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 7 param+error -702.288 372.994 0.127347 0.0675051 129.888 13.0782 36.6421 4.8732 5485.85 0.263836 9.47082 0.161572 411.188 0.161572 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 8 param+error 22.7848 10.8213 -0.00244222 0.00118305 1.99911 1.09969 29.4634 13.0371 9230.52 3.29875 7.65518 2.10331 2.73077 2.10331 +CP dss 0 15 h pakw 9 1965.06 59.541 3.47686 2093.87 80.997 3.56647 3214.18 276.398 3.42413 3365.49 302.853 3.44504 3672.38 356.017 3.51875 3831.71 383.851 4.20724 4581.05 510.99 3.87803 5485.85 661.657 3.73072 9230.52 1274.58 2.87993 +CM dss 0 15 h poly3 -291.521 0.181168 -1.4211e-06 1.88866e-11 error 3.73765 0.0030957 7.26123e-07 4.74248e-11 +CR dss 0 15 h poly2 3.36162 0.00132546 -1.32857e-06 error 0.303637 0.00130226 9.0978e-07 + +# ROU: dss 0 16 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1569.47 11.9479 0.78351 0.00593507 1384.37 38.2615 158.757 21.8467 1978.23 0.0255766 8.45462 0.016029 17831.1 0.016029 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 1 param+error 278.944 4.7204 0.124949 0.00251066 459.624 43.1264 141.759 63.2154 2109.89 0.073771 8.73857 0.048782 5124.91 0.048782 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 2 param+error -149.453 3.32928 0.0537353 0.00099056 47.1035 23.637 17.5869 6.0722 3328.36 1.38213 9.57794 0.626122 64.2224 0.626122 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 3 param+error 446.741 128.972 -0.121496 0.0365898 74.58 15.0118 12.4691 1.46524 3493.53 0.375685 8.94864 0.259382 127.637 0.259382 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 4 param+error 0.40465 4.26337 0.000130757 0.00110428 73.4251 17.0066 24.7822 4.7505 3825.19 0.398618 9.43154 0.196738 251.214 0.196738 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 5 param+error -35.6221 1.8397 0.00886966 0.000459285 11.5497 10.0577 15.9196 1.44901 3999.43 0.62305 9.17426 0.479408 20.9661 0.479408 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 6 param+error -199.759 677.603 0.0440332 0.140319 29.4543 8.39894 43.9467 35.1922 4793.7 0.535937 10.8709 0.461174 114.675 0.461174 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 7 param+error -2575.27 1093.2 0.445902 0.189312 159.06 9.76596 37.2068 4.56807 5738.85 0.18733 10.3746 0.16118 348.609 0.16118 +CP dss 0 16 h pakw 8 1978.23 59.541 3.21286 2109.89 80.997 3.31739 3328.36 276.398 3.61084 3493.53 302.853 3.37157 3825.19 356.017 3.55011 3999.43 383.851 3.45199 4793.7 510.99 4.08824 5738.85 661.657 3.90888 +CM dss 0 16 h poly3 -262.747 0.164847 -1.11651e-06 8.06634e-11 error 12.0095 0.0112801 3.22752e-06 2.86207e-10 +CR dss 0 16 h poly2 3.22653 0.000589525 6.26305e-07 error 0.342494 0.00227642 3.26572e-06 + +# ROU: dss 0 17 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1.6197 2.72195 -0.00167346 0.00151532 1716.04 120.568 80.2309 17.8435 1900.63 0.0418264 8.25945 0.0218852 18835.4 0.0218852 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 1 param+error 290.228 3.89905 0.13703 0.00201374 522.348 45.3669 91.3548 25.2731 2029.3 0.0703948 8.5214 0.0472906 5192.05 0.0472906 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 2 param+error 17.8329 11.2387 0.00567586 0.003497 30.0672 17.3488 20.4406 11.4975 3189.63 1.02874 8.40691 0.613133 74.8339 0.613133 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 3 param+error -844.821 671.957 0.255848 0.198945 20.2311 6.37299 33436.4 22478.5 3346.06 0.373074 9.4097 0.20171 177.302 0.20171 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 4 param+error 145.402 211.043 -0.038725 0.0570169 106.59 14.7708 19.3795 1.26633 3663.35 0.212564 8.63844 0.156233 230.515 0.156233 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 5 param+error -66.2075 82.5824 0.0171072 0.0213407 2.07677 0.856136 36833.9 37307.5 3826.68 0.635394 10.5433 0.421378 26.9812 0.421378 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 6 param+error -531.944 711.945 0.117558 0.15377 32.0644 8.81031 53.3721 44.2516 4589.79 0.600467 10.9579 0.52451 122.217 0.52451 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 7 param+error 75.9763 664.088 -0.0134126 0.119857 174.9 110.261 25.7343 1.86622 5504.96 0.177171 9.28871 0.133188 361.565 0.133188 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 8 param+error 31.0983 0.0619102 -0.00333901 5.63804e-07 3.87243 0.862984 34.379 4.9373 9238.1 3.71879 6.73193 1.39087 2.02157 1.39087 +CP dss 0 17 h pakw 9 1900.63 59.541 3.29346 2029.3 80.997 3.39452 3189.63 276.398 3.32058 3346.06 302.853 3.71267 3663.35 356.017 3.40113 3826.68 383.851 4.14669 4589.79 510.99 4.2894 5504.96 661.657 3.61743 9238.1 1274.58 2.58399 +CM dss 0 17 h poly3 -264.944 0.172072 -7.79899e-07 2.08553e-11 error 3.49296 0.00294231 6.95115e-07 4.55125e-11 +CR dss 0 17 h poly2 3.18639 0.00190654 -1.86551e-06 error 0.28926 0.00125035 8.70587e-07 + +# ROU: dss 0 18 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 0 param+error 6.34195 7.34973 -0.015067 0.00475067 1202.16 57.4917 70.1168 8.61102 1948.89 0.0337157 8.29422 0.0262395 14260.9 0.0262395 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 1 param+error 285.563 3.98656 0.134787 0.00206476 531.173 44.1767 71.0588 14.4077 2078.85 0.0703903 8.48252 0.0476122 5116.13 0.0476122 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 2 param+error 18.8331 1.16147 0.00582508 0.000376611 14.5463 6.48726 48.5975 34.877 3266.92 0.655498 8.54211 0.552594 82.4904 0.552594 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 3 param+error 430.747 182.864 -0.119085 0.0532046 75.57 8.40268 12.8821 1.54823 3429.26 0.383742 8.63073 0.306893 130.911 0.306893 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 4 param+error 164.409 247.408 -0.0428593 0.0654373 111.54 16.9719 18.0007 1.47919 3756.45 0.233049 8.86504 0.161431 234.618 0.161431 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 5 param+error -274.08 221.619 0.0692378 0.0559247 6.90746 2.08025 70.0391 85.9917 3927.07 0.930584 9.93063 0.773651 25.0329 0.773651 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 6 param+error -584.006 678.591 0.125137 0.142621 20.3077 6.22541 139.27 236.92 4715.74 0.553375 11.8288 0.46989 128.451 0.46989 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 7 param+error -768.31 6.27473 0.135282 0.00110212 167.112 126.294 28.977 2.15364 5659.4 0.272016 9.53088 0.145551 362.707 0.145551 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 8 param+error -7.16718 103.901 0.000770023 0.0108642 1.14488 0.418324 71.7905 106.661 9530.99 1.20059 7.73484 1.01295 6.05383 1.01295 +CP dss 0 18 h pakw 9 1948.89 59.541 3.24499 2078.85 80.997 3.31211 3266.92 276.398 3.28133 3429.26 302.853 3.30878 3756.45 356.017 3.38563 3927.07 383.851 3.7854 4715.74 510.99 4.47349 5659.4 661.657 3.57749 9530.99 1274.58 2.88029 +CM dss 0 18 h poly3 -269.612 0.171851 -1.65622e-06 6.55151e-11 error 3.38011 0.00277947 6.41567e-07 4.09346e-11 +CR dss 0 18 h poly2 3.13618 0.00139527 -1.24579e-06 error 0.284067 0.00122661 8.63361e-07 + +# ROU: dss 0 19 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 0 param+error -4012.71 16.2828 2.06313 0.00835378 1576.32 39.3757 188.05 27.257 1914.93 0.025037 8.52152 0.0157098 19209.7 0.0157098 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 1 param+error 282.544 4.16217 0.132859 0.00224255 499.322 50.2042 94.2997 29.5584 2046.04 0.0801134 8.85905 0.0523483 5063.87 0.0523483 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 2 param+error -1157.44 713.784 0.363267 0.218079 20.6238 6.88363 32396.9 24068.1 3242.14 0.785359 9.51964 0.411619 84.5378 0.411619 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 3 param+error 7.1755 0.966564 0.00211683 0.000307095 25.0904 6.94747 48.1176 19.5339 3403.63 0.402306 9.36476 0.298939 156.46 0.298939 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 4 param+error -1186.47 4.89726 0.315528 0.00130104 59.6695 8.27662 52.1277 11.5081 3730.97 0.284395 9.46065 0.169067 262.785 0.169067 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 5 param+error 73.1725 59.5226 -0.0185348 0.015124 13.86 12.0554 11.8405 2.66914 3903.09 0.710952 7.9262 0.418834 24.317 0.418834 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 6 param+error 98.8533 308.526 -0.0185602 0.065303 55.4399 41.2717 23.3145 3.99419 4686.76 0.491512 10.8342 0.323907 95.1231 0.323907 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 7 param+error -2577.99 4.7165 0.456121 0.000834347 109.933 6.80176 63.9109 5.78712 5616.11 0.231235 10.4494 0.136579 394.846 0.136579 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 8 param+error -18.3914 82.5194 0.00197519 0.00874616 0.809881 0.289232 119.074 265.102 9397.02 1.57543 9.99305 1.4503 4.5579 1.4503 +CP dss 0 19 h pakw 9 1914.93 59.541 3.2918 2046.04 80.997 3.41939 3242.14 276.398 3.65119 3403.63 302.853 3.58928 3730.97 356.017 3.62135 3903.09 383.851 3.03212 4686.76 510.99 4.13519 5616.11 661.657 3.98231 9397.02 1274.58 3.83534 +CM dss 0 19 h poly3 -256.79 0.166474 -7.49472e-07 4.00018e-11 error 3.6007 0.00301476 7.07113e-07 4.58603e-11 +CR dss 0 19 h poly2 3.29001 0.000660231 -1.59103e-07 error 0.293707 0.00127157 9.23235e-07 + +# ROU: dss 0 20 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 0 param+error 4.19546 2.91017 -0.00114711 0.00162111 1822.56 125.178 68.7937 12.8259 1964.7 0.0437643 8.32738 0.0232197 18551.7 0.0232197 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 1 param+error 288.023 4.2223 0.132964 0.00212769 516.816 46.4057 87.2471 23.6567 2093.57 0.0720873 8.61381 0.0481398 5210.08 0.0481398 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 2 param+error 197.453 668.64 -0.0496973 0.204839 8.81418 6.29071 27914.7 20131.9 3232.83 0.672804 9.04558 0.383606 88.207 0.383606 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 3 param+error -2.63157 740.193 0.00640347 0.216525 46.0958 22.3181 23.0602 18.9438 3387.13 0.616295 8.71581 0.441665 147.545 0.441665 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 4 param+error -310.998 315.748 0.0836762 0.0846361 104.94 91.3978 19.8956 1.85677 3697.08 0.21511 8.94778 0.139582 237.762 0.139582 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 5 param+error 2.08512 47.6842 -0.000588862 0.0122851 13.86 9.10099 14.623 2.78243 3859.01 0.809418 9.22669 0.492905 23.2092 0.492905 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 6 param+error 316.186 292.502 -0.0652568 0.0630069 55.11 35.8698 20.8575 3.74734 4606.81 0.53133 10.6655 0.336012 97.534 0.336012 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.611618 5.25291 0.000125445 0.000948115 155.977 20.8761 28.0474 3.47899 5504.76 0.343415 9.4462 0.16071 375.319 0.16071 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 8 param+error -92.4773 131.411 0.0100378 0.0142562 1.25481 0.354934 362.656 1106.95 9180.9 1.62884 10.8109 1.21597 4.96046 1.21597 +CP dss 0 20 h pakw 9 1964.7 59.541 3.36878 2093.57 80.997 3.4828 3232.83 276.398 3.63864 3387.13 302.853 3.50334 3697.08 356.017 3.59097 3859.01 383.851 3.6998 4606.81 510.99 4.25935 5504.76 661.657 3.75224 9180.9 1274.58 4.17878 +CM dss 0 20 h poly3 -279.444 0.172984 -2.54455e-07 -1.64747e-11 error 3.79636 0.00315123 7.41127e-07 4.87713e-11 +CR dss 0 20 h poly2 3.38885 0.000620008 -5.69881e-09 error 0.29761 0.00129323 9.5424e-07 + +# ROU: dss 0 21 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.51538 1.22301 0.00244169 0.000674898 1540.91 41.0012 153.226 19.4883 1930.71 0.0257559 8.5628 0.0160556 18881 0.0160556 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 1 param+error -1440.59 2458.96 0.949267 1.17271 448.016 35.2064 251.962 221.896 2063.67 0.0683082 8.88635 0.0591612 5102.16 0.0591612 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 2 param+error 855.439 180.884 -0.248266 0.0546581 46.1996 39.1313 6.28013 4.0052 3289.42 1.14523 9.36715 0.656269 69.0965 0.656269 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 3 param+error 845.831 289.753 -0.23717 0.0830892 62.0391 56.1356 11.4969 2.9995 3456.89 0.551677 9.51659 0.301919 117.949 0.301919 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 4 param+error -691.411 432.107 0.180905 0.112873 98.67 20.0027 25.7948 3.09657 3794.03 0.237548 9.5607 0.168028 212.939 0.168028 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 5 param+error -77.099 69.6551 0.0193932 0.017419 12.54 8.56631 20.5483 4.24053 3971.07 0.934158 8.65254 0.611213 16.6904 0.611213 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 6 param+error -583.878 1.04319 0.123906 0.000294095 51.4799 44.4659 33.7078 1.58199 4776.92 0.393809 11.5392 0.341051 92.6183 0.341051 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 7 param+error -2550.78 5.44839 0.442504 0.000944892 148.627 13.9654 49.3047 6.92379 5731.27 0.355498 10.0369 0.17229 334.364 0.17229 +CP dss 0 21 h pakw 8 1930.71 59.541 3.25452 2063.67 80.997 3.36855 3289.42 276.398 3.48914 3456.89 302.853 3.53985 3794.03 356.017 3.54887 3971.07 383.851 3.20954 4776.92 510.99 4.2816 5731.27 661.657 3.75289 +CM dss 0 21 h poly3 -259.895 0.170361 -2.98515e-06 2.29749e-10 error 11.5667 0.0110158 3.18029e-06 2.83528e-10 +CR dss 0 21 h poly2 3.31515 0.000101454 7.59413e-07 error 0.345594 0.00226064 3.2085e-06 + +# ROU: dss 0 22 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 0 param+error -3457.21 649.298 1.72254 0.322783 1123.65 38.6831 120.931 17.6668 1976.37 0.0287322 8.44465 0.0201354 14652 0.0201354 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4060.13 1042.3 2.1478 0.485648 425.503 17.9496 5681.14 3943.74 2108.37 0.0508546 8.83302 0.0333732 5133.06 0.0333732 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 2 param+error -139.14 667.217 0.0512748 0.199682 10.5101 6.26164 33065.8 20257.7 3315.34 0.738639 9.71494 0.445461 84.7783 0.445461 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 3 param+error -164.237 544.809 0.0516336 0.154958 27.4063 19.589 51.6719 86.7954 3478.44 0.7868 9.57884 0.487308 149.158 0.487308 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 4 param+error -28.6883 147.579 0.00770081 0.0383779 99.3297 73.3476 22.5009 1.31101 3806.24 0.219743 9.36489 0.143748 212.249 0.143748 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 5 param+error -41.8892 1.98432 0.0104467 0.000499666 10.56 9.0857 21.7112 1.74541 3978.85 0.756931 9.05804 0.534194 17.0181 0.534194 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 6 param+error 472.546 133.458 -0.0962383 0.0279376 50.82 5.00565 19.8543 2.27552 4761.23 0.504272 11.4346 0.393589 89.5224 0.393589 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 7 param+error -384.074 335.583 0.0672258 0.0585261 153.12 7.50604 34.7064 1.69169 5692.75 0.189288 10.0819 0.137169 324.151 0.137169 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 8 param+error 11.2619 13.4979 -0.00115998 0.00142178 1.48851 0.499485 48.9514 20.6543 9487.17 2.00197 8.2251 1.97272 3.25991 1.97272 +CP dss 0 22 h pakw 9 1976.37 59.541 3.2186 2108.37 80.997 3.36716 3315.34 276.398 3.70708 3478.44 302.853 3.65541 3806.24 356.017 3.57414 3978.85 383.851 3.45714 4761.23 510.99 4.3639 5692.75 661.657 3.84565 9487.17 1274.58 3.11522 +CM dss 0 22 h poly3 -259.808 0.161283 1.88997e-07 -1.49292e-11 error 3.68768 0.00301071 6.90515e-07 4.3981e-11 +CR dss 0 22 h poly2 3.1686 0.00183655 -1.46933e-06 error 0.287722 0.00125529 8.90882e-07 + +# ROU: dss 0 23 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.23503 1.41665 0.00167692 0.000938027 657.049 27.1867 64.0266 5.20895 1971.8 0.0349071 8.41429 0.0222729 8698.23 0.0222729 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 1 param+error 273.688 3.9463 0.12773 0.00194754 447.34 39.7033 83.2556 20.4974 2103.85 0.0737267 8.68334 0.051462 4594.45 0.051462 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 2 param+error 908.188 10.6214 -0.260838 0.00315675 28.7778 37.5982 11.3355 7.17089 3341.95 1.1582 9.48259 0.700561 68.2312 0.700561 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 3 param+error -87.0433 489.339 0.0291405 0.137911 26.2913 7.0152 56.0919 47.4459 3509.11 0.440721 10.0411 0.392288 143.565 0.392288 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 4 param+error 179.324 170.1 -0.0457641 0.0437668 91.74 57.2084 22.6953 1.62779 3845.38 0.255331 9.90885 0.161938 193.966 0.161938 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 5 param+error 31.937 43.8864 -0.00783713 0.0108138 11.55 9.79494 15.1097 3.38863 4019.44 0.921067 10.0351 0.550749 17.7619 0.550749 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 6 param+error 227.625 451.796 -0.0443673 0.0929268 53.3745 47.8871 24.2555 9.81254 4821.83 0.966951 11.0482 0.547802 86.7689 0.547802 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1357.65 476.345 0.233875 0.0820256 147.84 5.3054 44.2787 2.94874 5767.94 0.199451 10.5708 0.16188 299.216 0.16188 +CP dss 0 23 h pakw 8 1971.8 59.541 3.15966 2103.85 80.997 3.25502 3341.95 276.398 3.52272 3509.11 302.853 3.72947 3845.38 356.017 3.68164 4019.44 383.851 3.73068 4821.83 510.99 4.13214 5767.94 661.657 4.01 +CM dss 0 23 h poly3 -260.781 0.166469 -2.45658e-06 2.30083e-10 error 11.9531 0.0112244 3.20577e-06 2.83504e-10 +CR dss 0 23 h poly2 3.04972 0.00229983 -1.28796e-06 error 0.339184 0.00232114 3.35118e-06 + +# ROU: dss 0 24 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 0 param+error 36.2533 11.4184 -0.0301849 0.00820347 1271.59 53.107 135.084 27.192 1941.36 0.0301034 8.42124 0.0247479 16849.1 0.0247479 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 1 param+error 279.687 4.13267 0.131998 0.00216136 496.68 35.1723 108.308 26.8879 2073.34 0.0659814 8.66432 0.0470776 5060.46 0.0470776 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 2 param+error 202.49 181.581 -0.051127 0.055018 46.53 8.2315 16.4562 2.97383 3265.79 0.670749 7.92264 0.51048 57.3088 0.51048 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 3 param+error -304.83 1.67244 0.0938042 0.00058938 63.6899 55.3546 23.015 1.23214 3425.51 0.318878 9.15529 0.280064 118.071 0.280064 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 4 param+error -1182.95 1.04002 0.31314 0.000301201 96.36 82.9899 32.523 0.949047 3747.33 0.219316 9.52315 0.156678 200.787 0.156678 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 5 param+error -26.2976 71.7264 0.00665223 0.0181933 10.89 7.46929 21.1604 4.9703 3915.14 0.813037 9.08564 0.528767 20.2058 0.528767 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 6 param+error -740.858 461.241 0.159402 0.0976054 55.44 5.55813 37.6358 7.96165 4688.02 0.472891 10.9767 0.373263 87.8827 0.373263 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 7 param+error -863.693 464.067 0.153358 0.0822899 147.18 6.5406 41.5587 2.79953 5600.79 0.196725 10.19 0.147842 302.758 0.147842 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 8 param+error 12.9255 36.6685 -0.00136392 0.00392018 1.07583 0.804775 67.0192 91.4347 9312.35 5.9743 12.2156 3.64825 2.11994 3.64825 +CP dss 0 24 h pakw 9 1941.36 59.541 3.23947 2073.34 80.997 3.33551 3265.79 276.398 3.06758 3425.51 302.853 3.54705 3747.33 356.017 3.6938 3915.14 383.851 3.526 4688.02 510.99 4.26838 5600.79 661.657 3.9676 9312.35 1274.58 4.726 +CM dss 0 24 h poly3 -255.565 0.161082 6.95197e-07 -3.74249e-11 error 3.59646 0.00299614 7.04838e-07 4.61755e-11 +CR dss 0 24 h poly2 3.16393 0.000842064 3.22078e-07 error 0.288902 0.00128859 9.75254e-07 + +# ROU: dss 0 25 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1299.39 8.36443 0.6489 0.00415646 996.683 42.6751 106.274 15.7723 1975.7 0.033784 8.68399 0.020113 12875.3 0.020113 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4786.26 2065.99 2.49258 0.966568 419.404 30.597 21045.5 19028.3 2106.23 0.0657325 9.05052 0.0367747 4934.76 0.0367747 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 2 param+error 287.053 248.504 -0.0759086 0.0745041 48.1774 41.4165 15.7649 3.60733 3305.35 0.799098 8.44997 0.550605 51.9014 0.550605 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 3 param+error 8.53605 8.67056 0.0026651 0.00247835 59.2908 14.1971 23.2249 4.8128 3467.36 0.795888 9.49339 0.42725 112.531 0.42725 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 4 param+error -1437.74 551.997 0.375734 0.144137 94.71 3.6398 40.0242 6.09479 3794.87 0.250345 9.95185 0.221095 194.035 0.221095 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 5 param+error 31.1821 21.3366 -0.00772324 0.00534695 9.9678 3.62004 24.4856 7.18745 3967.03 1.69473 9.26081 0.822204 15.5777 0.822204 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 6 param+error -16.4296 233.682 0.0059284 0.0487036 48.51 6.60722 31.6298 4.75783 4754.71 0.486884 11.1344 0.356925 83.5792 0.356925 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1125.87 510.102 0.19659 0.0889448 146.85 5.57444 43.6187 3.13881 5695.84 0.209364 10.4373 0.170751 278.212 0.170751 +CP dss 0 25 h pakw 8 1975.7 59.541 3.34729 2106.23 80.997 3.4866 3305.35 276.398 3.23455 3467.36 302.853 3.63024 3794.87 356.017 3.79722 3967.03 383.851 3.52926 4754.71 510.99 4.21733 5695.84 661.657 3.91955 +CM dss 0 25 h poly3 -264.883 0.164604 -1.15716e-07 -3.91623e-11 error 12.2497 0.0115743 3.33808e-06 2.98443e-10 +CR dss 0 25 h poly2 3.38046 7.7917e-05 1.15593e-06 error 0.357594 0.00234298 3.32145e-06 + +# ROU: dss 0 26 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1893 14.5611 0.975901 0.00747033 1068.81 36.0921 90.749 8.67993 1914.83 0.0298724 8.56058 0.0187947 13513.3 0.0187947 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4412.07 2018 2.39138 0.973034 432.679 31 20401.4 17030.7 2043.6 0.0651347 8.95781 0.0360888 5046.42 0.0360888 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 2 param+error -184.897 686.232 0.0676866 0.213132 26.0849 34.3682 38.4333 67.6571 3183.68 1.651 9.4164 1.03714 74.8424 1.03714 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 3 param+error -2309.51 1084.93 0.690962 0.321856 48.4475 8.45686 109.228 123.772 3337.72 0.60598 9.90655 0.512003 136.373 0.512003 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 4 param+error 76.4604 186.878 -0.020492 0.0507051 92.73 14.4782 25.1853 1.9083 3647.91 0.240247 9.55636 0.155776 199.782 0.155776 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 5 param+error 109.53 50.2281 -0.0284387 0.0131061 13.2 10.8217 12.5175 3.20025 3811.22 1.11713 9.6396 0.792368 17.0608 0.792368 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 6 param+error 301.109 131.246 -0.062693 0.0285141 48.18 6.03405 26.5504 2.93807 4563.21 0.456316 10.7666 0.339909 85.8225 0.339909 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 7 param+error 892.702 469.137 -0.162088 0.0852648 149.82 9.56061 31.3636 2.38088 5467.74 0.216763 9.95087 0.140374 301.042 0.140374 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 8 param+error -53.2735 81.6138 0.00581441 0.00886394 0.755365 0.232377 871.293 8268.42 9171.98 1.25819 9.2661 1.28787 5.19187 1.28787 +CP dss 0 26 h pakw 9 1914.83 59.541 3.47234 2043.6 80.997 3.62942 3183.68 276.398 3.7787 3337.72 302.853 3.97036 3647.91 356.017 3.82036 3811.22 383.851 3.84858 4563.21 510.99 4.27312 5467.74 661.657 3.92236 9171.98 1274.58 3.56276 +CM dss 0 26 h poly3 -273.355 0.175244 -8.15657e-07 1.1879e-11 error 3.87035 0.00326199 7.73127e-07 5.09624e-11 +CR dss 0 26 h poly2 3.46357 0.00150112 -1.12131e-06 error 0.308235 0.00133716 9.57777e-07 + +# ROU: dss 0 27 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1513.06 569.413 0.752555 0.281903 1069.67 48.9029 76.6147 9.66625 1982.98 0.036368 8.62649 0.0234678 12400.7 0.0234678 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 1 param+error -7532.59 2310.74 3.77196 1.07762 493.568 34.7042 904.913 2126.91 2110.69 0.071075 8.98149 0.0586119 4916.85 0.0586119 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 2 param+error -1265.75 591.998 0.394612 0.179996 23.7831 6.355 32516.1 18494.5 3256.62 0.917575 10.6652 0.500326 74.9066 0.500326 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 3 param+error -761.388 624.232 0.226409 0.181347 68.64 9.14468 31.0459 7.86795 3411.59 0.428735 9.10716 0.330427 104.695 0.330427 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 4 param+error 163.915 197.826 -0.043284 0.0526805 93.06 5.08609 25.8684 2.11754 3720.54 0.267971 9.76419 0.169497 190.865 0.169497 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 5 param+error 31.5268 26.5596 -0.00805665 0.00679838 6.20099 3.10611 30.2689 15.1223 3882.84 1.28499 10.3809 0.802603 20.5673 0.802603 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 6 param+error -2887.11 477.246 0.620915 0.102194 38.3378 4.49331 46239.9 42671.3 4630.21 0.596408 12.8301 0.316874 110.612 0.316874 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1305.74 4.92849 0.234727 0.00088554 148.249 8.66408 45.9206 2.80983 5529.68 0.324283 10.1915 0.173685 297.804 0.173685 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 8 param+error -55.9234 93.9975 0.00605586 0.0101546 1.27246 0.34482 153.017 273.663 9206.02 3.69398 14.643 2.7569 2.33141 2.7569 +CP dss 0 27 h pakw 9 1982.98 59.541 3.46962 2110.69 80.997 3.6118 3256.62 276.398 4.27863 3411.59 302.853 3.65193 3720.54 356.017 3.91155 3882.84 383.851 4.15625 4630.21 510.99 5.12134 5529.68 661.657 4.04957 9206.02 1274.58 5.64873 +CM dss 0 27 h poly3 -279.418 0.170806 1.02697e-07 -3.49189e-11 error 4.16062 0.00343925 8.06611e-07 5.31501e-11 +CR dss 0 27 h poly2 3.55662 0.000726125 6.60876e-07 error 0.31056 0.00138891 1.08318e-06 + +# ROU: dss 0 28 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1886.94 576.385 0.960454 0.2923 884.395 43.6198 80.4528 11.5616 1935.55 0.0380854 8.69876 0.0253198 10889.3 0.0253198 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 1 param+error -7900.92 3203.62 4.01738 1.52676 529.445 30.9089 237.86 171.036 2066.63 0.0698707 8.98723 0.0650839 4653.32 0.0650839 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 2 param+error 16.1258 0.860066 0.00522966 0.000308334 17.1092 6.18264 54.7532 28.8275 3270.29 0.889989 10.284 0.608448 68.3979 0.608448 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 3 param+error -132.649 1059.63 0.0435546 0.305587 45.0293 16.8079 34.0789 33.272 3435.19 0.824779 9.46575 0.661487 109.207 0.661487 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 4 param+error -1120.05 225.803 0.294554 0.0593347 84.81 2.43479 44.6565 3.72886 3765.2 0.265758 10.771 0.206952 175.165 0.206952 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 5 param+error -98.1057 1.27867 0.0247239 0.000330909 8.90993 7.69264 43.2733 3.37644 3938.7 0.835819 9.89302 0.667285 15.3267 0.667285 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 6 param+error 27.065 156.261 -0.00305356 0.0327433 53.46 7.59265 30.192 3.37108 4731.75 0.565169 11.2063 0.371581 74.6058 0.371581 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1183.32 445.084 0.207481 0.0779442 112.785 7.8776 62.9471 9.85579 5668.32 0.346772 10.8793 0.235528 294.131 0.235528 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 8 param+error -1.22804 0.0743287 0.000143621 4.60486e-07 0.907258 0.204444 175.966 61.5429 9490 2.26635 14.8169 1.70042 3.83633 1.70042 +CP dss 0 28 h pakw 9 1935.55 59.541 3.34345 2066.63 80.997 3.45022 3270.29 276.398 3.91159 3435.19 302.853 3.59662 3765.2 356.017 4.0848 3938.7 383.851 3.74844 4731.75 510.99 4.23198 5668.32 661.657 4.09957 9490 1274.58 5.64386 +CM dss 0 28 h poly3 -259.598 0.166788 -1.08904e-06 5.78821e-11 error 3.78395 0.00313485 7.27268e-07 4.69371e-11 +CR dss 0 28 h poly2 3.36861 0.000983932 5.90977e-07 error 0.299803 0.0013554 1.06261e-06 + +# ROU: dss 0 29 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 0 param+error 0.820773 8.504 -0.0247432 0.00628853 923.867 58.1884 84.6672 16.3066 1956.94 0.0406953 8.76086 0.0340813 11574.9 0.0340813 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 1 param+error -7968.13 2484.55 4.00338 1.17146 502.754 34.4191 487.792 665.488 2087.52 0.0727632 9.08692 0.0620815 4777.11 0.0620815 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 2 param+error 665.412 175.47 -0.192387 0.053389 41.91 41.0827 13.6547 3.50652 3267.16 0.884892 9.86382 0.625951 56.3835 0.625951 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 3 param+error 408.731 114.986 -0.113081 0.0333059 63.3599 55.9307 19.8635 1.89091 3424.55 0.379043 9.00625 0.281591 97.6358 0.281591 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 4 param+error -485.637 189.727 0.128856 0.0501852 86.13 1.93611 35.9508 2.52977 3740.8 0.251045 9.82449 0.187587 177.922 0.187587 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 5 param+error -66.8691 152.133 0.0169749 0.0386242 8.91 6.97579 30.5374 15.3351 3905.26 1.03456 10.6134 0.683418 17.0127 0.683418 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 6 param+error -2152.73 5.64425 0.459234 0.00119837 37.6637 2.3733 495.991 295.17 4668.53 0.499126 12.4988 0.375648 103.203 0.375648 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1226.57 521.462 0.218549 0.0928512 132.33 5.19724 53.1511 4.54127 5576.8 0.212343 10.602 0.171439 278.854 0.171439 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 8 param+error 1.03567 0.00892136 -0.000102995 2.32656e-07 1.13778 0.446788 126.762 45.1825 9308.02 5.02037 14.5548 3.27502 4.29266 3.27502 +CP dss 0 29 h pakw 9 1956.94 59.541 3.40533 2087.52 80.997 3.5361 3267.16 276.398 3.86757 3424.55 302.853 3.53357 3740.8 356.017 3.85854 3905.26 383.851 4.17001 4668.53 510.99 4.9137 5576.8 661.657 4.15995 9308.02 1274.58 5.49338 +CM dss 0 29 h poly3 -259.963 0.161055 1.30838e-06 -9.66985e-11 error 3.92608 0.00325975 7.65027e-07 5.01628e-11 +CR dss 0 29 h poly2 3.40359 0.00106671 4.28901e-07 error 0.30579 0.00137873 1.06799e-06 + +# ROU: dss 0 30 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 0 param+error -806.333 469.613 0.407384 0.23533 1137.6 56.6581 64.3635 7.43898 1957.85 0.0387806 8.62293 0.0238541 12319.1 0.0238541 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 1 param+error 259.663 4.50172 0.118573 0.00241862 501.785 43.4544 88.4194 22.4309 2087.21 0.0764642 8.94952 0.0523647 4781.88 0.0523647 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 2 param+error 14.7572 0.913212 0.00464419 0.000320931 14.2067 3.26126 121.1 79.519 3264.81 0.527756 10.8483 0.529493 68.6641 0.529493 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 3 param+error 7.30911 0.664583 0.00214158 0.000199066 20.1857 6.46705 80.1961 54.0588 3423.59 0.53336 11.4339 0.372154 131.109 0.372154 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 4 param+error 7.85795 217.322 -0.00166594 0.0574487 88.44 12.8527 30.9639 2.57084 3744.59 0.258671 9.74098 0.176689 178.295 0.176689 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 5 param+error 0.0643804 11.9554 -9.88235e-06 0.00301638 11.55 6.68607 16.9802 10.3404 3904.72 5.13492 15.909 1.83975 13.4635 1.83975 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 6 param+error -751.823 6.36246 0.161611 0.00134827 32.071 5.74181 85.458 32.5645 4678.59 0.68302 11.9443 0.424701 96.3821 0.424701 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 7 param+error -817.297 462.918 0.145215 0.0821874 142.89 1.82285 46.4067 3.2432 5592.38 0.220372 10.6106 0.174688 269.177 0.174688 +CP dss 0 30 h pakw 8 1957.85 59.541 3.35934 2087.21 80.997 3.48974 3264.81 276.398 4.24722 3423.59 302.853 4.4763 3744.59 356.017 3.81164 3904.72 383.851 6.22232 4678.59 510.99 4.65205 5592.38 661.657 4.09449 +CM dss 0 30 h poly3 -260.876 0.161309 1.4999e-06 -1.51487e-10 error 14.0985 0.0134817 3.93833e-06 3.56829e-10 +CR dss 0 30 h poly2 2.94736 0.00720136 -8.18168e-06 error 0.367325 0.00263558 3.73387e-06 + +# ROU: dss 0 32 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 0 param+error -41.6257 13.9884 0.0211242 0.0069003 0.839594 0.347592 19801.4 15900.5 1982.77 1.09757 8.43168 0.738035 7.32164 0.738035 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 1 param+error -246.114 425.999 0.129081 0.192467 37.2226 7.68799 21725.8 11467.4 2173.63 0.269241 11.4585 0.144877 383.901 0.144877 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 2 param+error 20.8017 12.5678 -0.0052932 0.00367501 6.92999 5.01321 21.1448 3.8446 3396.27 2.2109 6.73159 1.39875 4.03364 1.39875 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 3 param+error 33.8157 53.996 -0.0089849 0.01502 0.497469 0.654223 113.068 740.179 3553.59 0.949954 11.7794 0.773245 15.4529 0.773245 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 4 param+error -130.792 97.3369 0.0333365 0.0247795 8.63865 1.71845 61.869 36.1891 3884.7 0.844039 10.8188 0.65446 29.091 0.65446 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 5 param+error -2.13504 5.45386 0.000542771 0.00133467 2.31 1.62871 32.1512 9.66212 4071.49 106.41 6.63221 19.2317 0.280337 19.2317 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 6 param+error -76.1871 211.69 0.0175251 0.043342 50.16 6.05303 36.3175 4.78038 4847.02 0.509162 11.1443 0.367833 78.4392 0.367833 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1425.08 4.22415 0.244968 0.000725876 125.4 4.02854 60.9503 1.09303 5776.64 0.243682 12.3459 0.170277 238.111 0.170277 +CP dss 0 32 h pakw 8 1982.77 59.541 2.71523 2173.63 80.997 3.83132 3396.27 276.398 2.59477 3553.59 302.853 4.5766 3884.7 356.017 4.24484 4071.49 383.851 2.60615 4847.02 510.99 4.27227 5776.64 661.657 4.27441 +CM dss 0 32 h poly3 -138.299 0.0527109 2.80025e-05 -2.28955e-09 error 8.63348 0.0080831 2.31341e-06 2.06455e-10 +CR dss 0 32 h poly2 3.18167 -0.00213164 5.50286e-06 error 0.32169 0.0021565 3.23293e-06 + +# ROU: dss 0 33 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1.15406 1.23017 0.00127384 0.000670469 857.987 32.0515 88.0328 8.72021 1931.73 0.0375573 8.93096 0.0234896 9722.37 0.0234896 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 1 param+error 55.2951 2217.03 0.163943 1.05715 339.559 40.5076 120.754 85.1197 2062.84 0.0934288 9.33736 0.0804088 3732.13 0.0804088 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 2 param+error 191.296 199.155 -0.0504084 0.0599054 40.26 33.2981 20.2595 4.14924 3300.7 0.769035 9.1292 0.550278 46.6517 0.550278 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 3 param+error -426.615 647.953 0.124972 0.185134 57.7499 51.3994 30.4425 9.82163 3467.82 0.505636 10.1207 0.355069 92.848 0.355069 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 4 param+error -646.73 147.579 0.168191 0.0383662 77.22 1.55124 42.2299 3.11736 3804.05 0.276749 11.4215 0.185296 169.059 0.185296 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 5 param+error 4.37127 6.53891 -0.00107113 0.00162243 9.9 9.54751 16.5253 10.3478 3971.71 6.04446 17.4072 2.05109 11.0459 2.05109 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 6 param+error 106.874 141.422 -0.0197274 0.0292929 44.55 9.88272 29.3377 3.61069 4788.48 0.527703 11.9081 0.394734 74.9692 0.394734 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 7 param+error -612.361 427.185 0.105952 0.0738474 130.02 5.47835 49.8994 4.00842 5743.52 0.238353 11.3503 0.175773 243.65 0.175773 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 8 param+error -42.3823 110.755 0.00439886 0.0114372 1.02401 0.328884 145.406 367.441 9636.12 2.65882 12.8906 2.38902 3.08632 2.38902 +CP dss 0 33 h pakw 9 1931.73 59.541 3.34352 2062.84 80.997 3.49327 3300.7 276.398 3.39687 3467.82 302.853 3.76358 3804.05 356.017 4.24271 3971.71 383.851 6.46306 4788.48 510.99 4.41306 5743.52 661.657 4.20162 9636.12 1274.58 4.80646 +CM dss 0 33 h poly3 -249.182 0.160982 -6.13052e-07 3.29352e-11 error 3.70988 0.00305265 7.00389e-07 4.44972e-11 +CR dss 0 33 h poly2 3.18407 0.00291477 -1.31505e-06 error 0.302071 0.00140725 1.06202e-06 + +# ROU: dss 0 34 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.14381 1.06211 0.00187516 0.00058129 722.514 32.1732 83.9587 9.73745 1955.19 0.040885 8.84538 0.0251545 8445.12 0.0251545 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 1 param+error 11079.1 605.054 -4.99436 0.285988 1436.82 271.033 10.1088 0.41709 2090.79 0.0858177 8.63183 0.0558703 2856.86 0.0558703 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 2 param+error 14.9468 0.948312 0.00457235 0.000310643 28.3295 9.62028 37.2548 13.6192 3354.55 1.43102 10.1573 0.881593 53.0589 0.881593 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 3 param+error -819.689 718.704 0.235018 0.202159 60.72 9.39432 37.1282 12.0062 3524.6 0.44924 9.61689 0.365475 96.4636 0.365475 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 4 param+error -811.574 277.158 0.208135 0.0709978 77.55 2.29376 46.6376 5.13008 3864.42 0.270003 10.7689 0.212977 168.013 0.212977 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 5 param+error 1.98803 45.61 -0.000444973 0.01116 8.91 6.11234 29.8636 6.41574 4042.18 1.07444 10.1023 0.674822 13.7085 0.674822 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 6 param+error 200.121 138.837 -0.0388297 0.0284013 48.84 7.80229 33.0078 3.54677 4855.54 0.541328 12.0039 0.3965 74.3316 0.3965 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 7 param+error -2085.12 4.17065 0.356583 0.000712955 124.41 2.67454 70.4679 2.09894 5808.34 0.238488 11.7574 0.161249 255.407 0.161249 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 8 param+error 10.8263 22.4301 -0.00109778 0.00231149 1.36848 0.78447 61.2699 36.4461 9677.75 19.3972 9.12736 6.29085 0.5609 6.29085 +CP dss 0 34 h pakw 9 1955.19 59.541 3.20977 2090.79 80.997 3.1357 3354.55 276.398 3.72393 3524.6 302.853 3.52971 3864.42 356.017 3.96088 4042.18 383.851 3.71962 4855.54 510.99 4.43923 5808.34 661.657 4.36655 9677.75 1274.58 3.41534 +CM dss 0 34 h poly3 -238.954 0.151336 7.86471e-07 -2.72478e-11 error 3.72919 0.00304838 6.9572e-07 4.37887e-11 +CR dss 0 34 h poly2 2.90876 0.00343634 -2.37019e-06 error 0.2838 0.00129895 9.3429e-07 + +# ROU: dss 0 35 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1.84807 0.811711 0.00135848 0.000378558 666.102 32.6572 74.0904 8.62433 2033.58 0.0440927 8.64059 0.0261946 7493.92 0.0261946 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 1 param+error 249.558 5.49786 0.104693 0.0032211 344.53 21.7096 94.5365 16.1908 2164.49 0.072297 9.01432 0.0618704 3424.84 0.0618704 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 2 param+error -1100.86 604.007 0.331775 0.177001 21.5587 6.24694 33752 31298.3 3376.2 0.867589 10.7943 0.482784 73.442 0.482784 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 3 param+error 153.484 553.437 -0.0385833 0.154985 62.0399 44.0005 22.1576 6.29597 3539.87 0.625188 10.1975 0.374283 92.6265 0.374283 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 4 param+error 7.97785 243.076 -0.00191696 0.0623207 90.42 6.49243 30.1571 2.8382 3866.68 0.305638 10.167 0.190504 165.644 0.190504 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 5 param+error 39.2072 19.5038 -0.00959828 0.00479518 10.23 2.05657 22.5492 3.04182 4037.08 0.982684 10.3634 0.670248 14.9925 0.670248 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 6 param+error 5.41258 0.469835 0.00120643 0.000100088 36.4121 5.86273 45.3645 6.93142 4818.48 0.706669 11.8995 0.440188 89.735 0.440188 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 7 param+error -0.215985 5.95176 5.77606e-05 0.00102935 141.24 114.812 42.0916 0.832087 5747.81 0.215975 10.6232 0.16235 264.03 0.16235 +CP dss 0 35 h pakw 8 2033.58 59.541 3.28272 2164.49 80.997 3.42576 3376.2 276.398 4.11466 3539.87 302.853 3.88889 3866.68 356.017 3.88068 4037.08 383.851 3.95751 4818.48 510.99 4.55434 5747.81 661.657 4.07746 +CM dss 0 35 h poly3 -267.719 0.160649 1.49951e-07 6.2809e-12 error 15.1938 0.0140345 3.96327e-06 3.47581e-10 +CR dss 0 35 h poly2 3.12664 0.00363425 -3.37728e-06 error 0.354565 0.00244715 3.51173e-06 + +# ROU: dss 0 36 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.07031 0.867688 0.00190195 0.000428449 840.919 41.9286 63.9889 6.6729 2008.53 0.0436852 8.76159 0.0251281 8832.61 0.0251281 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 1 param+error 261.643 4.59477 0.122433 0.0023607 409.23 36.1848 78.504 17.7072 2137.73 0.083081 8.93313 0.0592954 3782.5 0.0592954 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 2 param+error 124.349 266.774 -0.0266052 0.0802675 45.54 7.25357 20.9885 4.93744 3299.02 1.05699 8.81249 0.747172 45.6739 0.747172 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 3 param+error 502.651 302.657 -0.138849 0.0871926 61.38 7.37725 18.8978 3.29253 3452.77 0.487344 9.20604 0.407499 104.467 0.407499 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 4 param+error -184.555 212.701 0.0488268 0.0558849 94.7099 11.0369 28.8789 2.20816 3767.59 0.26432 9.8619 0.181096 177.483 0.181096 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 5 param+error -25.9606 72.1957 0.00655529 0.0181671 11.22 8.14699 29.2184 6.62846 3934.52 0.995571 9.51601 0.615355 15.2284 0.615355 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 6 param+error -56.8521 751.936 0.014504 0.158838 41.1313 17.4386 34.6942 29.0647 4692.42 1.19696 11.2481 0.826702 93.7712 0.826702 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 7 param+error -39.0621 629.398 0.00691165 0.111629 146.19 7.56917 37.6898 3.61187 5603.98 0.230954 10.4401 0.150162 285.695 0.150162 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 8 param+error -33.1766 20.5778 0.0035617 0.00220212 0.663965 0.209993 461.4 370.857 9343.62 1.50056 10.773 1.21913 4.71427 1.21913 +CP dss 0 36 h pakw 9 2008.53 59.541 3.48347 2137.73 80.997 3.55047 3299.02 276.398 3.48912 3452.77 302.853 3.64269 3767.59 356.017 3.89697 3934.52 383.851 3.75745 4692.42 510.99 4.42446 5603.98 661.657 4.08442 9343.62 1274.58 4.08103 +CM dss 0 36 h poly3 -280.327 0.169339 -3.46893e-08 -2.98618e-11 error 3.98791 0.00325324 7.53586e-07 4.87487e-11 +CR dss 0 36 h poly2 3.38135 0.00124437 -5.315e-07 error 0.307483 0.00134986 9.84175e-07 + +# ROU: dss 0 37 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 0 param+error -3325.55 630.617 1.74509 0.331085 156.183 10.9236 18587.9 12090.7 1876.7 0.0820709 8.99568 0.0483011 1772.24 0.0483011 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 1 param+error -1897.58 1832.99 1.15135 0.898313 131.434 25.9339 1302.81 13924.3 2007.1 0.171896 9.49398 0.127149 1409.86 0.127149 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 2 param+error -335.388 625.542 0.114151 0.193801 26.7897 7.85934 49.4862 48.4717 3193.14 0.914542 9.17875 0.746466 67.2504 0.746466 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 3 param+error 7.61372 0.729476 0.00237204 0.000224319 24.0346 3.96602 70.6973 18.8183 3352.24 0.43873 10.4657 0.32675 125.247 0.32675 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 4 param+error -1212.44 917.928 0.327137 0.247676 89.43 8.57783 41.7583 11.7042 3676.32 0.297949 10.1794 0.220351 185.13 0.220351 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 5 param+error 43.6773 16.8818 -0.0111483 0.00437148 11.22 1.43886 16.5302 2.13558 3845.35 0.976998 9.09446 0.709507 15.2391 0.709507 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 6 param+error -244.063 439.992 0.0553737 0.0944143 49.83 39.1977 32.4564 7.36881 4621.92 0.496373 10.5086 0.361816 83.8309 0.361816 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 7 param+error -509.3 372.776 0.0913254 0.0666733 144.87 4.21083 42.1454 2.38268 5551.1 0.19756 10.1206 0.149192 300.672 0.149192 +CP dss 0 37 h pakw 8 1876.7 59.541 3.48455 2007.1 80.997 3.68002 3193.14 276.398 3.56218 3352.24 302.853 4.0596 3676.32 356.017 3.94259 3845.35 383.851 3.51872 4621.92 510.99 4.03705 5551.1 661.657 3.83547 +CM dss 0 37 h poly3 -246.443 0.160991 1.41313e-06 -1.70295e-10 error 11.9331 0.0116998 3.481e-06 3.20282e-10 +CR dss 0 37 h poly2 3.51468 0.0009581 -7.63169e-07 error 0.373297 0.00243889 3.41249e-06 + +# ROU: dss 0 38 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1.77464 0.565086 0.000790377 0.000298667 320.43 22.8956 64.3581 9.47551 1922.14 0.0633011 8.62628 0.0382311 3596.45 0.0382311 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 1 param+error 244.589 3.64381 0.116815 0.00204629 250.662 41.752 65.8011 24.8924 2054.08 0.129001 8.89041 0.0861387 2387.59 0.0861387 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 2 param+error 246.026 111.323 -0.0644206 0.0338669 45.21 29.4547 17.0279 2.58859 3264.42 0.768081 9.5617 0.544987 50.9906 0.544987 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 3 param+error -27.8603 603.173 0.0130561 0.174407 55.1097 54.3378 24.4495 8.07027 3426.81 0.523654 9.80366 0.301186 106.951 0.301186 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 4 param+error -1329.81 593.311 0.351183 0.156563 92.4 7.60989 37.785 6.40733 3755.83 0.266091 10.0356 0.21915 180.862 0.21915 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 5 param+error -29.0156 46.235 0.00741849 0.0116621 11.22 1.48302 24.5561 3.99085 3929.33 0.816545 8.05201 0.591721 15.9253 0.591721 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 6 param+error -433.498 507.809 0.0935334 0.10667 31.9481 6.47207 59.7785 38.2568 4715.52 0.63719 11.9115 0.555095 103.719 0.555095 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 7 param+error -492.259 664.501 0.0866913 0.116855 145.2 140.619 40.2981 4.05428 5651.81 0.219649 10.3448 0.150025 287.974 0.150025 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 8 param+error -1.0165 0.0201384 0.000120083 1.60458e-07 1.56544 0.343374 92.1058 17.6521 9484.92 2.5484 12.0229 1.58365 4.36652 1.58365 +CP dss 0 38 h pakw 9 1922.14 59.541 3.28377 2054.08 80.997 3.38435 3264.42 276.398 3.63824 3426.81 302.853 3.72978 3755.83 356.017 3.81672 3929.33 383.851 3.06169 4715.52 510.99 4.52369 5651.81 661.657 3.92073 9484.92 1274.58 4.48924 +CM dss 0 38 h poly3 -250.963 0.161399 1.2157e-07 -1.90478e-11 error 3.59726 0.00299415 6.97532e-07 4.49863e-11 +CR dss 0 38 h poly2 3.32028 0.00046972 3.58451e-07 error 0.2922 0.00127761 9.56836e-07 + +# ROU: dss 0 39 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1.26447 5.99422 -0.0114034 0.00407488 590.559 39.6859 80.6343 15.9161 1941.41 0.0501815 8.46404 0.0416335 6771.51 0.0416335 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 1 param+error 256.032 3.90874 0.121412 0.00211578 352.831 38.4161 62.4129 14.3233 2071.86 0.0990065 8.72479 0.0697083 3008.79 0.0697083 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 2 param+error 450.766 679.437 -0.125493 0.203911 4.71398 6.36097 32910.9 17382.1 3294.53 0.818008 10.4593 0.563905 77.3275 0.563905 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 3 param+error -262.242 1072.02 0.0805435 0.307229 39.2772 12.9976 37.9059 40.2005 3460.62 0.618387 9.44421 0.525696 117.798 0.525696 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 4 param+error -477.977 197.691 0.12511 0.051628 85.47 2.4266 37.3056 2.70387 3790.26 0.249915 9.88403 0.19093 175.071 0.19093 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 5 param+error 2.76695 19.1874 -0.000613074 0.00482237 11.22 8.21323 23.3468 2.63928 3961.05 0.91186 9.53919 0.589329 14.4611 0.589329 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 6 param+error 6.58121 6.71513 0.00144463 0.00140405 32.1798 8.87387 38.9286 11.0785 4743.22 0.784232 11.8132 0.465511 93.79 0.465511 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.403743 6.45472 0.000101525 0.00113338 135.688 9.75884 39.2468 2.58777 5659.62 0.363336 10.711 0.206536 282.574 0.206536 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 8 param+error 7.93106 14.0256 -0.00081197 0.00147691 2.26221 0.523855 38.8748 10.5909 9409.72 2.53856 5.03855 1.67155 1.91159 1.67155 +CP dss 0 39 h pakw 9 1941.41 59.541 3.16008 2071.86 80.997 3.2635 3294.53 276.398 3.97071 3460.62 302.853 3.59129 3790.26 356.017 3.76995 3961.05 383.851 3.64367 4743.22 510.99 4.53706 5659.62 661.657 4.13063 9409.72 1274.58 1.92575 +CM dss 0 39 h poly3 -243.097 0.153185 1.61435e-06 -8.00362e-11 error 3.79119 0.00314092 7.28142e-07 4.66868e-11 +CR dss 0 39 h poly2 2.93516 0.00380888 -3.60471e-06 error 0.28396 0.0012667 8.69302e-07 + +# ROU: dss 0 40 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.5732 0.589156 0.00159322 0.000308576 330.028 28.1059 47.2363 6.56566 1974.98 0.0682648 8.34259 0.0401103 3393.5 0.0401103 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 1 param+error -7537.63 1946.89 3.78143 0.911812 326.89 31.7622 159.064 114.81 2101.95 0.108156 8.68318 0.0915037 2618.32 0.0915037 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 2 param+error 17.5033 0.99928 0.00548752 0.000326588 21.8475 7.13889 51.1044 25.2173 3210.69 0.896105 9.65248 0.658883 69.4714 0.658883 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 3 param+error 196.754 428.468 -0.0524934 0.126178 64.0198 43.3638 19.5008 4.08139 3361.25 0.433744 9.01352 0.311675 109.072 0.311675 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 4 param+error -633.405 427.088 0.171334 0.115401 93.39 9.17483 32.6787 4.03005 3666.82 0.245685 9.43318 0.186392 193.898 0.186392 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 5 param+error -21.5853 30.5484 0.00561901 0.00790501 12.54 1.51336 21.5591 2.95088 3828.95 0.892065 9.07222 0.555964 17.1396 0.555964 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 6 param+error -299.287 6.41293 0.0680073 0.00139034 41.4412 6.41383 41.0243 6.25775 4573.07 0.675916 10.8642 0.422951 91.6811 0.422951 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1308.28 4.50013 0.237585 0.000816948 146.708 7.74257 48.9165 2.89206 5474.46 0.297455 9.37298 0.156147 309.261 0.156147 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 8 param+error 16.6419 28.3852 -0.00177199 0.00309741 0.681747 0.341259 70.413 81.7717 9147.79 1.31602 7.90572 1.23112 4.6767 1.23112 +CP dss 0 40 h pakw 9 1974.98 59.541 3.50686 2101.95 80.997 3.63877 3210.69 276.398 3.94773 3361.25 302.853 3.67564 3666.82 356.017 3.82512 3828.95 383.851 3.66833 4573.07 510.99 4.34232 5474.46 661.657 3.7062 9147.79 1274.58 3.10982 +CM dss 0 40 h poly3 -302.959 0.188692 -2.96215e-06 1.29651e-10 error 3.94789 0.00326756 7.66132e-07 5.02299e-11 +CR dss 0 40 h poly2 3.52912 0.00103046 -1.07047e-06 error 0.30765 0.00130706 9.20369e-07 + +# ROU: dss 0 41 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.11208 0.689583 0.00182629 0.000343674 633.504 39.9385 51.5597 5.76986 2014.53 0.051788 8.4906 0.0295551 6293.95 0.0295551 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 1 param+error 264.46 3.82189 0.123663 0.00188361 347.759 35.941 73.8257 18.8545 2144.75 0.0912684 8.72035 0.0646271 3295.2 0.0646271 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 2 param+error 227.385 168.839 -0.0575757 0.050542 41.9093 39.3 15.5331 3.55975 3310.67 0.85924 9.40707 0.559177 52.8389 0.559177 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 3 param+error 9.1014 8.65226 0.00273116 0.00247387 45.6621 12.2273 25.5712 5.89112 3467.09 0.586919 9.30903 0.361447 125.807 0.361447 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 4 param+error -725.049 252.194 0.18992 0.0659922 70.4212 9.39271 43.6609 9.57298 3782.63 0.40843 9.9267 0.257933 212.056 0.257933 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 5 param+error -207.807 0.51105 0.0521046 0.000126411 3.84944 0.958011 26314.5 30507.8 3946.73 1.0948 10.8672 0.809614 23.5311 0.809614 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 6 param+error -648.461 561.194 0.139072 0.118104 39.5827 7.87916 55.7236 32.7969 4708.15 0.760554 11.1206 0.641467 101.719 0.641467 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 7 param+error -876.965 436.372 0.155374 0.0771665 158.07 6.9163 38.3753 2.27445 5616.89 0.190415 9.87099 0.139482 311.191 0.139482 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 8 param+error 8.84115 7.45222 -0.00091496 0.000784695 2.63934 2.47731 33.6144 9.77371 9352.52 9.78107 7.98582 4.21343 1.21131 4.21343 +CP dss 0 41 h pakw 9 2014.53 59.541 3.35016 2144.75 80.997 3.44143 3310.67 276.398 3.71306 3467.09 302.853 3.67372 3782.63 356.017 3.91551 3946.73 383.851 4.28504 4708.15 510.99 4.37515 5616.89 661.657 3.86742 9352.52 1274.58 3.02266 +CM dss 0 41 h poly3 -277.185 0.166393 4.52157e-07 -5.37891e-11 error 3.95971 0.00320893 7.35881e-07 4.71811e-11 +CR dss 0 41 h poly2 3.2253 0.00260494 -2.17463e-06 error 0.296296 0.00130743 9.24473e-07 + +# ROU: dss 0 42 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 0 param+error -613.327 484.241 0.300966 0.235956 592.864 29.1059 93.4111 15.2686 2016.77 0.0410817 8.38248 0.0284194 7459.5 0.0284194 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 1 param+error 267.947 5.60679 0.11293 0.00325446 330.273 19.7484 102.273 18.1874 2148.3 0.0659541 8.68744 0.0561624 3546.34 0.0561624 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 2 param+error 16.6429 0.626922 0.00511985 0.000200251 16.0206 5.31269 55.0631 27.7366 3348.84 0.683401 9.65122 0.49762 78.3668 0.49762 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 3 param+error 8.59718 0.634734 0.00279745 0.000187732 21.0255 5.48815 52.1682 17.8796 3510.34 0.439314 10.04 0.326832 139.152 0.326832 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 4 param+error -231.763 165.856 0.0599365 0.0427761 95.0397 7.59783 26.995 1.62966 3838.71 0.227677 9.46674 0.156435 198.582 0.156435 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 5 param+error -202.525 58.9787 0.0500858 0.0145939 3.49854 0.695771 39806.8 21522.3 4007.77 0.637005 10.9651 0.43345 26.5969 0.43345 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 6 param+error 26.5559 314.469 -0.00295577 0.0649626 35.0851 10.7151 36.2507 17.9105 4795.12 0.752945 11.5845 0.533758 99.2078 0.533758 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.030631 0.404704 3.50347e-05 7.18412e-05 139.142 11.273 37.1524 2.62925 5731.31 0.320037 10.2668 0.16739 321.776 0.16739 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 8 param+error -0.364455 19.3772 0.000125162 0.00205856 4.29 3.26584 11.3496 126.369 9559.4 185.326 22.1633 26.6009 1.59455 26.6009 +CP dss 0 42 h pakw 9 2016.77 59.541 3.22627 2148.3 80.997 3.34158 3348.84 276.398 3.69237 3510.34 302.853 3.83848 3838.71 356.017 3.61436 4007.77 383.851 4.18353 4795.12 510.99 4.40624 5731.31 661.657 3.89185 9559.4 1274.58 8.3128 +CM dss 0 42 h poly3 -271.755 0.165122 -4.4531e-07 9.73853e-12 error 3.88676 0.0031415 7.19105e-07 4.65921e-11 +CR dss 0 42 h poly2 3.42835 -0.00049096 3.11862e-06 error 0.292099 0.00137673 1.22583e-06 + +# ROU: dss 0 43 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.27446 0.717023 0.00150751 0.000363534 558.727 27.989 59.8302 5.79064 1914.34 0.0468244 8.35983 0.0279697 5979.4 0.0279697 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 1 param+error 257.644 4.2426 0.123948 0.00231082 309.027 25.6554 85.2936 18.8059 2044.21 0.0813639 8.71245 0.0635036 3121.25 0.0635036 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 2 param+error 183.662 425.065 -0.0459445 0.130127 6.94954 3.05916 260.364 1170.64 3227.89 0.548792 9.98186 0.472645 83.7128 0.472645 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 3 param+error -406.285 435.318 0.124026 0.127016 25.7516 5.18225 69.2172 52.083 3389.19 0.376458 9.5936 0.322678 150.747 0.322678 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 4 param+error -614.487 355.201 0.164168 0.0947725 101.97 4.54902 25.606 2.4883 3713 0.231235 9.41823 0.171701 213.553 0.171701 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 5 param+error -14.3895 1.95334 0.00376011 0.000504981 11.8798 10.2865 16.6253 1.52207 3882.66 0.640147 9.1495 0.481778 21.0298 0.481778 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 6 param+error -398.631 691.524 0.087359 0.147106 30.5717 9.27305 57.7014 52.4959 4660.13 0.659354 10.7169 0.571238 120.762 0.571238 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 7 param+error 418.584 381.394 -0.074143 0.0677638 169.29 33.5488 27.1588 1.56005 5593.99 0.185929 9.66083 0.118501 339.818 0.118501 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 8 param+error 1.35732 0.0192162 -0.000123759 1.37129e-07 1.99726 0.488382 60.9789 11.5666 9419.31 2.27956 10.6028 1.47449 4.47632 1.47449 +CP dss 0 43 h pakw 9 1914.34 59.541 3.2693 2044.21 80.997 3.4034 3227.89 276.398 3.86188 3389.19 302.853 3.70709 3713 356.017 3.63053 3882.66 383.851 3.52258 4660.13 510.99 4.10383 5593.99 661.657 3.67777 9419.31 1274.58 3.96858 +CM dss 0 43 h poly3 -261.203 0.169065 -8.43539e-07 2.16945e-11 error 3.564 0.00297172 6.92001e-07 4.46938e-11 +CR dss 0 43 h poly2 3.32912 0.000977969 -3.93265e-07 error 0.29027 0.00126294 9.29057e-07 + +# ROU: dss 0 44 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1360.86 1087.56 0.688274 0.546836 927.316 30.7013 82.2532 9.33495 1955.56 0.0333704 8.49876 0.0255458 10516 0.0255458 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 1 param+error 270.062 4.02804 0.129693 0.00212865 424.751 35.4651 84.0572 19.4193 2088.83 0.0752199 8.78785 0.0535186 4197.93 0.0535186 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 2 param+error 39.8178 200.805 -0.00227429 0.0602864 8.40658 2.53541 29583 25090.3 3307.99 0.490713 9.77122 0.425583 88.2048 0.425583 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 3 param+error 506.695 273.486 -0.139696 0.0780768 69.9596 53.6455 12.6168 2.46697 3474.48 0.484292 9.20328 0.298512 119.54 0.298512 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 4 param+error -284.726 297.66 0.0744191 0.0773888 64.9181 11.3064 35.2735 9.4792 3807.51 0.376922 9.65801 0.252767 230.208 0.252767 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 5 param+error 28.5375 22.9186 -0.00702554 0.0057188 11.55 7.93382 18.5936 2.31349 3983.04 0.684793 8.73998 0.488464 20.0002 0.488464 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 6 param+error -800.109 678.667 0.168438 0.140746 19.5328 6.43997 201.416 467.997 4779.04 0.608331 12.2191 0.48569 124.754 0.48569 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1364.69 492.794 0.236824 0.0854437 124.455 14.3274 45.0889 8.18775 5726.95 0.345076 10.4585 0.210878 369.428 0.210878 +CP dss 0 44 h pakw 8 1955.56 59.541 3.22139 2088.83 80.997 3.32771 3307.99 276.398 3.67482 3474.48 302.853 3.45901 3807.51 356.017 3.62602 3983.04 383.851 3.27988 4779.04 510.99 4.58068 5726.95 661.657 3.92411 +CM dss 0 44 h poly3 -258.045 0.164106 -1.00384e-06 6.83787e-11 error 12.1744 0.0115189 3.3126e-06 2.94656e-10 +CR dss 0 44 h poly2 3.25584 0.000476205 7.05894e-07 error 0.34302 0.00227961 3.27696e-06 + +# ROU: dss 0 45 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.21828 0.579562 0.00132809 0.000299587 331.177 28.9799 54.3632 8.8737 1959.1 0.073293 8.52736 0.0414732 3335.26 0.0414732 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 1 param+error 249.278 4.06767 0.119297 0.0018149 223.956 28.6074 71.5976 21.206 2091 0.111105 8.79715 0.0827407 2232.9 0.0827407 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 2 param+error -93.3264 208.176 0.0381547 0.0618819 12.1996 3.54612 107.453 117.183 3315.33 0.575634 9.66686 0.462997 81.4269 0.462997 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 3 param+error -1849.62 717.919 0.530574 0.204293 30.3489 6.73078 34659.5 29229.5 3481.69 0.453876 10.1793 0.240947 154.976 0.240947 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 4 param+error 621.767 250.967 -0.162151 0.0654035 109.89 21.8536 16.8345 1.56741 3812.89 0.278806 9.68588 0.200552 209.807 0.200552 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 5 param+error -84.0925 75.1509 0.0210003 0.0187201 11.55 1.73622 22.4034 4.88093 3986.61 0.813797 8.66347 0.555116 20.8616 0.555116 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1431.09 591.059 0.299685 0.122786 23.9962 4.95147 18979.1 35070.5 4772.39 0.519474 12.2922 0.29588 125.209 0.29588 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 7 param+error -867.847 399.088 0.151203 0.0694026 158.07 5.76305 35.2841 1.91662 5710.04 0.186618 10.1084 0.138546 321.5 0.138546 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 8 param+error 21.1789 22.4257 -0.00218182 0.00234345 0.677848 0.525069 60.0187 79.0288 9541.33 1.9469 11.7301 1.65718 4.18807 1.65718 +CP dss 0 45 h pakw 9 1959.1 59.541 3.19305 2091 80.997 3.29732 3315.33 276.398 3.64974 3481.69 302.853 3.846 3812.89 356.017 3.66425 3986.61 383.851 3.27933 4772.39 510.99 4.66105 5710.04 661.657 3.83421 9541.33 1274.58 4.36637 +CM dss 0 45 h poly3 -249.059 0.155966 9.50016e-07 -5.866e-11 error 3.64297 0.00298616 6.86007e-07 4.37837e-11 +CR dss 0 45 h poly2 3.21494 0.00106592 -1.38678e-07 error 0.284874 0.00125859 9.43417e-07 + +# ROU: dss 0 46 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1.87791 0.801469 0.00164021 0.000424792 924.519 37.939 59.6506 4.78596 2001.69 0.037737 8.3508 0.0221143 9638.63 0.0221143 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4938.17 2093.46 2.53023 0.965855 440.477 39.2362 164.362 110.065 2133.64 0.0843304 8.71775 0.0714054 4100.39 0.0714054 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 2 param+error -549.425 750.286 0.172888 0.221684 12.9068 6.87964 33090.8 27084.4 3354.63 0.81808 9.63091 0.43545 79.4748 0.43545 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 3 param+error 122.259 418.333 -0.0295345 0.117757 65.01 50.3961 16.6966 3.95268 3521.53 0.497939 9.59057 0.289002 120.481 0.289002 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 4 param+error -224.619 377.953 0.0579698 0.0971213 99.33 21.0206 21.069 2.34758 3857.05 0.250593 9.45867 0.157174 215.122 0.157174 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 5 param+error 54.3223 21.5518 -0.0133222 0.00533377 11.55 7.44373 13.5202 1.92377 4032.13 0.67238 9.00954 0.496252 23.0733 0.496252 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 6 param+error 367.348 101.731 -0.0730451 0.0208843 55.44 35.7528 19.2356 1.84136 4834.19 0.411422 11.1954 0.279744 97.2638 0.279744 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 7 param+error -453.212 531.929 0.0781529 0.0913452 140.866 15.6605 34.1046 5.17097 5783.82 0.326445 10.0512 0.203177 357.894 0.203177 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 8 param+error -53.8209 22.8603 0.00558544 0.00236492 0.736028 0.204928 95135.2 69742.8 9618.18 2.07717 13.1772 1.38341 4.06536 1.38341 +CP dss 0 46 h pakw 9 2001.69 59.541 3.16849 2133.64 80.997 3.30324 3354.63 276.398 3.61274 3521.53 302.853 3.59394 3857.05 356.017 3.53819 4032.13 383.851 3.36752 4834.19 510.99 4.17448 5783.82 661.657 3.74699 9618.18 1274.58 5.04995 +CM dss 0 46 h poly3 -266.965 0.165508 -1.34417e-06 8.32136e-11 error 3.60998 0.00291122 6.60184e-07 4.1797e-11 +CR dss 0 46 h poly2 3.25098 0.000417226 7.52544e-07 error 0.283714 0.00125865 9.75263e-07 + +# ROU: dss 0 47 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 0 param+error -773.872 499.054 0.392683 0.251061 565.444 31.0868 99.2879 19.6056 1951.76 0.0449849 8.49965 0.0306163 7004.57 0.0306163 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 1 param+error 273.267 4.0385 0.130321 0.00203794 365.191 31.4641 75.4544 15.8153 2082.86 0.0811964 8.69972 0.0591291 3505.47 0.0591291 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 2 param+error 725.268 1.99983 -0.208732 0.000696997 5.6826e-06 8.54262 27625.9 29773.8 3268.51 0.337018 9.49397 0.373375 90.3272 0.373375 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 3 param+error 398.016 334.28 -0.109877 0.0965342 68.6399 46.8194 13.669 2.80964 3432.28 0.432143 8.72598 0.247758 126.236 0.247758 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 4 param+error -1515.63 4.56131 0.400344 0.00120404 70.4864 9.12247 43.9204 7.54866 3755.11 0.322014 9.53289 0.180184 242.79 0.180184 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 5 param+error 64.5231 26.3252 -0.0163336 0.00674019 13.2 9.37767 13.0794 1.72322 3924.93 0.6725 8.90584 0.539137 20.6026 0.539137 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 6 param+error 299.105 629.982 -0.0606815 0.132809 54.12 49.7401 19.2246 17.8064 4702.55 2.10985 11.0876 1.00418 88.0778 1.00418 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 7 param+error -57.7061 406.474 0.0104281 0.0716704 158.69 20.9751 28.5934 3.97923 5630.32 0.398418 10.0238 0.215843 357.376 0.215843 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 8 param+error -40.753 57.1504 0.00433452 0.00604459 1.38133 0.361732 73.867 58.7305 9413.82 1.7637 8.99469 1.28862 4.14407 1.28862 +CP dss 0 47 h pakw 9 1951.76 59.541 3.30575 2082.86 80.997 3.38116 3268.51 276.398 3.66805 3432.28 302.853 3.36882 3755.11 356.017 3.67513 3924.93 383.851 3.43093 4702.55 510.99 4.25849 5630.32 661.657 3.83804 9413.82 1274.58 3.42186 +CM dss 0 47 h poly3 -264.742 0.167141 -5.61765e-07 1.87694e-11 error 3.61986 0.00298841 6.93781e-07 4.4689e-11 +CR dss 0 47 h poly2 3.23358 0.00129337 -8.88919e-07 error 0.291871 0.00126827 9.08137e-07 + +# ROU: dss 0 48 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1.95761 0.822958 0.00173952 0.000400743 610.423 32.0546 63.8024 6.98392 1993.35 0.0436241 8.48785 0.025838 7115.9 0.025838 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 1 param+error 271.659 4.14091 0.12722 0.00202651 408.572 31.9259 71.3704 12.7147 2123.54 0.0767962 8.7488 0.0556263 3798.61 0.0556263 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 2 param+error 18.131 0.858071 0.00556604 0.000264122 18.9845 10.9381 30.9589 19.2027 3279.76 0.818527 9.05576 0.549971 83.294 0.549971 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 3 param+error 795.762 218.808 -0.22382 0.0632342 73.9194 73.7505 10.879 1.6902 3434.83 0.361333 8.11355 0.232629 132.625 0.232629 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 4 param+error -972.854 508.751 0.257534 0.134572 65.1536 13.6465 38.1426 14.7166 3746.49 0.365038 9.42069 0.249049 255.451 0.249049 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 5 param+error -169.431 110.659 0.0429305 0.0280297 2.77755 1.11093 38708.9 37338.1 3909.36 0.695491 10.7152 0.386704 27.8043 0.386704 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 6 param+error 5.35804 6.45251 0.00131346 0.00137243 34.8857 8.7138 33.0481 7.40271 4663.44 0.583913 10.8672 0.357702 119.26 0.357702 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 7 param+error -405.042 316.493 0.0725036 0.0564572 172.92 14.8579 28.4666 1.23082 5566.84 0.167162 9.41502 0.115734 359.41 0.115734 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 8 param+error 9.69106 19.0386 -0.00101789 0.0020485 1.38732 0.77667 43.842 31.635 9261.59 1.91003 8.60413 1.56288 4.90559 1.56288 +CP dss 0 48 h pakw 9 1993.35 59.541 3.37593 2123.54 80.997 3.48043 3279.76 276.398 3.60406 3434.83 302.853 3.22865 3746.49 356.017 3.74732 3909.36 383.851 4.26108 4663.44 510.99 4.31317 5566.84 661.657 3.72302 9261.59 1274.58 3.29728 +CM dss 0 48 h poly3 -276.359 0.167724 4.50839e-07 -5.18246e-11 error 3.77747 0.0030907 7.17147e-07 4.65473e-11 +CR dss 0 48 h poly2 3.28748 0.00150485 -1.17401e-06 error 0.297063 0.00129247 9.20659e-07 + +# ROU: dss 0 49 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 0 param+error -0.74039 2.61843 -5.64019e-05 0.00134001 1232.5 28.0408 65.1009 2.75337 1996.67 0.0275335 8.47551 0.0197358 12790.6 0.0197358 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 1 param+error 293.944 4.06424 0.134539 0.00205781 489.52 41.3469 87.8979 21.9366 2127.27 0.07419 8.72465 0.0505576 4689.13 0.0505576 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 2 param+error -811.842 521.886 0.256402 0.157908 16.3429 5.42732 32674.7 24252.3 3274.29 0.725119 9.87345 0.405684 81.9158 0.405684 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 3 param+error 431.177 93.329 -0.118462 0.027017 72.2699 53.4107 14.4317 1.25924 3430.22 0.357908 8.17123 0.248875 111.99 0.248875 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 4 param+error -114.355 221.777 0.0305962 0.0586458 73.5754 17.0204 26.2078 6.49646 3741 0.427346 9.40519 0.259005 242.671 0.259005 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 5 param+error 0.0488242 2.23748 2.28079e-05 0.000568158 7.33681 3.12613 25.1619 8.41255 3905.94 0.815783 8.5891 0.497697 29.331 0.497697 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 6 param+error 6.2994 7.99895 0.00144724 0.00170547 56.554 45.6467 21.2484 4.37743 4659.09 0.795768 10.6234 0.447689 106.219 0.447689 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 7 param+error -636.238 379.958 0.113767 0.067703 168.96 9.01007 29.695 1.50043 5574.69 0.171285 9.36608 0.123716 355.071 0.123716 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 8 param+error -33.8695 68.4064 0.00364102 0.00730794 0.8768 0.230016 197.846 389.193 9317 1.33453 10.3197 1.26272 5.42072 1.26272 +CP dss 0 49 h pakw 9 1996.67 59.541 3.41281 2127.27 80.997 3.50974 3274.29 276.398 3.93747 3430.22 302.853 3.25469 3741 356.017 3.73706 3905.94 383.851 3.40833 4659.09 510.99 4.19004 5574.69 661.657 3.66604 9317 1274.58 3.90394 +CM dss 0 49 h poly3 -284.64 0.173431 -5.88559e-07 -6.96527e-12 error 3.75774 0.00306945 7.10659e-07 4.60254e-11 +CR dss 0 49 h poly2 3.45574 0.000228326 9.66192e-08 error 0.299385 0.0012807 9.33004e-07 + +# ROU: dss 0 50 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1010.22 12.3162 0.502303 0.0060699 1453.85 43.7217 96.878 8.97854 1993.76 0.0295271 8.51055 0.0179311 15797.2 0.0179311 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 1 param+error 285.593 4.0627 0.131144 0.00182842 569.603 49.69 76.5759 17.6293 2126.1 0.0810704 8.70006 0.0534237 4822.15 0.0534237 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 2 param+error 423.158 198.772 -0.115363 0.0593522 47.19 31.7802 13.8942 2.60769 3342.02 0.69629 8.09725 0.540773 59.1998 0.540773 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 3 param+error -876.153 949.698 0.252671 0.26842 24.1972 7.4731 177.401 466.959 3504.43 0.471356 9.69693 0.414597 153.397 0.414597 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 4 param+error -105.377 351.973 0.0273902 0.091108 99 10.8093 22.3721 2.46842 3836.05 0.265704 9.26632 0.176729 208.043 0.176729 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 5 param+error 50.4424 14.9861 -0.0124879 0.00374669 10.56 7.22118 15.9482 2.01282 4007.36 0.77394 10.1926 0.517386 20.0443 0.517386 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 6 param+error -3.35452 333.574 0.00315327 0.0689761 54.45 40.7125 20.8619 4.2545 4797.23 0.568068 11.6331 0.340305 95.803 0.340305 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 7 param+error -339.35 523.255 0.0588916 0.0907625 158.07 22.2056 32.1731 2.43258 5729.55 0.201529 10.2727 0.124917 333.802 0.124917 +CP dss 0 50 h pakw 8 1993.76 59.541 3.22953 2126.1 80.997 3.30029 3342.02 276.398 3.06757 3504.43 302.853 3.67389 3836.05 356.017 3.512 4007.36 383.851 3.86417 4797.23 510.99 4.41991 5729.55 661.657 3.92025 +CM dss 0 50 h poly3 -263.09 0.162782 -5.94891e-07 6.18743e-11 error 12.2689 0.0115082 3.29714e-06 2.92794e-10 +CR dss 0 50 h poly2 3.17658 0.000710661 7.41143e-07 error 0.344202 0.00229242 3.27342e-06 + +# ROU: dss 0 51 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 0 param+error -2.99787 0.000164847 -0.00149714 1.32024e-07 1379.66 4.79067 153.7 14387.1 1966.95 0.00370089 10.0109 0.00224278 15748.2 0.00224278 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 1 param+error 290.52 4.13896 0.133708 0.00228866 522.865 41.1973 93.5339 22.5496 2096.05 0.0735065 8.80063 0.0501612 4918.56 0.0501612 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 2 param+error 131.656 544.327 -0.0285706 0.164218 24.8667 36.8526 16.899 26.0343 3279.53 1.44896 8.87513 0.812116 77.8719 0.812116 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 3 param+error 374.102 314.487 -0.102391 0.0906211 71.61 46.9273 13.1248 2.58346 3440.06 0.480016 8.78621 0.281386 120.471 0.281386 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 4 param+error -354.207 343.154 0.0934584 0.09039 103.95 10.3113 20.231 2.09689 3761.61 0.24013 9.50517 0.152987 220.58 0.152987 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 5 param+error -245.438 176.773 0.0619822 0.0446141 10.89 8.14857 30.5645 12.6908 3931.91 0.731851 9.09541 0.532233 21.0546 0.532233 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1235.09 6.71678 0.263378 0.0014167 38.2735 5.10168 67.6192 15.1225 4703.48 0.523837 10.8249 0.349652 115.737 0.349652 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 7 param+error -661.156 369.608 0.116973 0.0652681 164.67 4.74083 31.3467 1.60537 5623.66 0.182308 9.96654 0.128051 340.407 0.128051 +CP dss 0 51 h pakw 8 1966.95 59.541 3.90003 2096.05 80.997 3.42772 3279.53 276.398 3.44751 3440.06 302.853 3.4115 3761.61 356.017 3.68728 3931.91 383.851 3.52653 4703.48 510.99 4.1864 5623.66 661.657 3.84084 +CM dss 0 51 h poly3 -266.273 0.165824 -4.67794e-08 -1.73361e-11 error 12.7195 0.0120582 3.49678e-06 3.14866e-10 +CR dss 0 51 h poly2 3.7351 -0.0015999 2.71014e-06 error 0.38278 0.00242156 3.36259e-06 + +# ROU: dss 0 52 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1249.43 9.83152 0.647211 0.00506562 1316.87 41.6409 110.746 12.3828 1905.37 0.0299806 8.50826 0.0181862 15040.7 0.0181862 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 1 param+error 269.5 3.71175 0.150693 0.00198092 470.919 21.6741 128.911 21.3903 2036.61 0.0567173 8.81801 0.0427524 4807.41 0.0427524 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 2 param+error 17.8323 9.43791 0.00370778 0.00289291 10.1521 3.86837 408.888 1794.09 3235.55 0.624432 10.6514 0.556122 84.0729 0.556122 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 3 param+error 128.828 549.309 -0.0322694 0.159872 26.6077 28.3094 30.2933 53.7342 3398.36 0.9798 9.41698 0.570412 148.679 0.570412 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 4 param+error -258.335 250.674 0.0689267 0.0665753 52.2344 9.81217 41.6522 12.9205 3725.57 0.35263 9.71023 0.245712 241.349 0.245712 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 5 param+error -9.81294 82.255 0.0024795 0.0209451 11.22 2.51831 20.754 5.27204 3898.28 0.870945 8.58529 0.508954 20.548 0.508954 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 6 param+error 339.896 265.866 -0.0694374 0.0563844 53.46 37.7882 19.3865 3.43334 4678.79 0.489639 10.8792 0.304199 102.34 0.304199 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 7 param+error -2453.13 4.54703 0.434605 0.000805494 123.401 7.37296 55.3476 4.15637 5608.67 0.255124 10.3299 0.143645 366.412 0.143645 +CP dss 0 52 h pakw 8 1905.37 59.541 3.27389 2036.61 80.997 3.39108 3235.55 276.398 4.0792 3398.36 302.853 3.60505 3725.57 356.017 3.71487 3898.28 383.851 3.28358 4678.79 510.99 4.15811 5608.67 661.657 3.94993 +CM dss 0 52 h poly3 -253.456 0.165298 -6.18587e-07 4.26221e-11 error 13.0578 0.0126291 3.70581e-06 3.36373e-10 +CR dss 0 52 h poly2 3.29508 0.00106604 -2.8312e-07 error 0.348917 0.00233185 3.3481e-06 + +# ROU: dss 0 53 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1.53062 0.891736 0.00160139 0.000466568 1113.5 38.8234 70.4639 5.52251 1978.64 0.0343297 8.55983 0.0205562 11618.8 0.0205562 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 1 param+error 283.892 4.16533 0.130934 0.00217912 506.868 47.2216 70.3969 15.6645 2110.54 0.0858008 8.82215 0.0566187 4320.69 0.0566187 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 2 param+error 343.865 543.063 -0.0919497 0.160669 41.9165 30.4295 14.9169 19.7621 3345.81 3.0191 8.50624 1.33902 58.1561 1.33902 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 3 param+error -1474.87 677.706 0.42042 0.190966 31.0414 11.458 230.81 753.369 3512.07 0.663566 10.1919 0.454651 143.338 0.454651 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 4 param+error 0.502751 4.89976 0.000157675 0.00126116 70.4305 16.3284 26.1486 5.1354 3850.08 0.451598 9.89809 0.2243 218.416 0.2243 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 5 param+error 35.8558 20.629 -0.00871892 0.00515232 13.2 8.43727 13.6204 1.47309 4027.64 0.692984 8.39674 0.577895 19.182 0.577895 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 6 param+error 341.077 476.451 -0.0679853 0.0977696 39.4995 40.4824 26.5233 20.7827 4832.98 1.14651 11.8644 0.67802 102.26 0.67802 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1336.67 1.82969 0.229533 0.000322606 153.78 134.684 37.3734 0.736612 5792.09 0.182538 10.4368 0.126648 322.195 0.126648 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 8 param+error 1.75266 4.10974 -0.000161286 0.000414933 1.32016 0.417193 56.7266 19.653 9678.19 1.76623 8.94151 1.26377 4.0405 1.26377 +CP dss 0 53 h pakw 9 1978.64 59.541 3.21045 2110.54 80.997 3.30576 3345.81 276.398 3.16463 3512.07 302.853 3.78891 3850.08 356.017 3.67464 4027.64 383.851 3.11529 4832.98 510.99 4.39239 5792.09 661.657 3.86009 9678.19 1274.58 3.35219 +CM dss 0 53 h poly3 -258.061 0.162104 -8.60783e-07 4.89808e-11 error 3.49857 0.00283794 6.45637e-07 4.06025e-11 +CR dss 0 53 h poly2 3.12362 0.00128125 -8.46333e-07 error 0.284873 0.00124158 8.88495e-07 + +# ROU: dss 0 54 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.22722 0.677708 0.00154399 0.000348856 1014.15 46.4159 58.4305 5.29771 1951.34 0.0380738 8.40338 0.021725 10801.8 0.021725 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 1 param+error 297.885 4.08579 0.140735 0.00215029 554.453 49.3953 61.8163 11.738 2078.74 0.0823968 8.64373 0.0550666 4563.16 0.0550666 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 2 param+error 190.97 976.729 -0.0482355 0.303553 11.5665 8.58466 98.1149 415.346 3184.33 0.863419 9.61831 0.769067 82.0296 0.769067 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 3 param+error 592.752 119.776 -0.170599 0.0356034 72.5998 44.7686 12.5672 1.3834 3333.55 0.348489 8.5478 0.237109 127.025 0.237109 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 4 param+error -923.343 494.872 0.252048 0.134912 61.9781 13.702 43.772 19.4889 3633.45 0.385278 9.3796 0.257948 257.71 0.257948 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 5 param+error 44.318 83.024 -0.0115158 0.0216857 12.87 11.0099 15.7778 13.1614 3792.03 2.54185 9.12857 1.11247 20.8578 1.11247 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 6 param+error 5.83476 1.46909 0.00161565 0.000391966 20.8006 5.69715 59.0515 25.1144 4519.87 0.43433 10.5343 0.306986 134.801 0.306986 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.733749 5.10966 0.000207531 0.000938669 170.099 12.4578 28.073 1.44102 5408.06 0.295886 9.27492 0.154932 357.378 0.154932 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 8 param+error -8.81989 58.5277 0.00100495 0.0064301 1.52326 0.897733 46.8095 53.1473 9061 2.08926 9.73305 1.50561 4.63177 1.50561 +CP dss 0 54 h pakw 9 1951.34 59.541 3.51065 2078.74 80.997 3.60746 3184.33 276.398 3.97654 3333.55 302.853 3.52909 3633.45 356.017 3.86149 3792.03 383.851 3.75233 4519.87 510.99 4.29785 5408.06 661.657 3.74642 9061 1274.58 3.73356 +CM dss 0 54 h poly3 -289.425 0.17974 -5.06096e-07 -3.11421e-11 error 3.94446 0.00330235 7.83814e-07 5.20654e-11 +CR dss 0 54 h poly2 3.53493 0.000761411 -4.83928e-07 error 0.307576 0.00131946 9.5178e-07 + +# ROU: dss 0 55 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1968.27 10.6941 0.974332 0.00527221 1529.39 50.3293 97.4704 10.1563 1992.22 0.0314959 8.66159 0.0184113 15959.4 0.0184113 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 1 param+error 294.556 4.54146 0.136445 0.00218079 509.956 33.1471 109.306 24.0263 2123.75 0.0672569 8.92494 0.0499897 4881.67 0.0499897 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 2 param+error -483.567 594.125 0.154183 0.176245 21.6578 33.6777 48.2683 118.278 3333.86 1.72304 9.38494 0.989439 73.9821 0.989439 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 3 param+error 398.277 384.545 -0.107862 0.108994 70.95 49.287 16.3194 3.23752 3498.56 0.482635 8.92619 0.282165 109.331 0.282165 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 4 param+error 167.188 349.178 -0.0427792 0.0906107 99 14.6077 21.2856 2.40355 3828.74 0.284171 9.47631 0.201066 206.017 0.201066 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 5 param+error 28.7265 19.3688 -0.00703071 0.00486994 11.55 2.48391 17.3799 2.01526 4002.5 0.957761 9.23582 0.781089 16.1951 0.781089 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1054.9 465.017 0.220638 0.096077 20.7589 3.94546 645.692 2137.68 4792.23 0.536098 12.9485 0.450964 119.629 0.450964 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 7 param+error -1050.46 460.155 0.182013 0.0796698 118.662 12.5253 49.2151 8.67238 5735.28 0.342496 10.5558 0.210106 347.951 0.210106 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 8 param+error 11.4052 85.4561 -0.00116642 0.00890127 0.711378 0.370549 101.799 274.81 9560.62 1.70141 10.5636 1.9115 4.16815 1.9115 +CP dss 0 55 h pakw 9 1992.22 59.541 3.30814 2123.75 80.997 3.40606 3333.86 276.398 3.55971 3498.56 302.853 3.38338 3828.74 356.017 3.58733 4002.5 383.851 3.49416 4792.23 510.99 4.88762 5735.28 661.657 3.97794 9560.62 1274.58 4.00284 +CM dss 0 55 h poly3 -265.756 0.16456 -7.00648e-07 3.5569e-11 error 3.69924 0.0030081 6.89847e-07 4.39029e-11 +CR dss 0 55 h poly2 3.24345 0.00105865 -3.44301e-07 error 0.294217 0.00129025 9.43742e-07 + +# ROU: dss 0 56 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.50422 2.80543 0.00121826 0.00141963 1450.84 31.0289 66.4574 2.69963 1964.5 0.027537 8.49537 0.0192886 14032.7 0.0192886 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 1 param+error 253.415 4.03462 0.163839 0.00221543 474.406 21.7659 121.344 18.7262 2092.92 0.0565326 8.8479 0.0430106 4825.91 0.0430106 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 2 param+error -139.811 463.629 0.0542762 0.141288 50.49 41.1289 19.028 5.49319 3248.87 0.846136 8.23374 0.62103 50.1831 0.62103 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 3 param+error -1479.91 983.486 0.436757 0.286388 34.4655 7.53656 179.434 346.927 3401.23 0.490345 9.51669 0.417951 153.651 0.417951 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 4 param+error -758.454 403.374 0.202648 0.107634 110.22 23.5332 25.5554 2.60359 3714.41 0.235563 9.24876 0.162152 213.972 0.162152 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 5 param+error -107.369 136.79 0.0274672 0.0349204 3.56727 1.0681 125.016 223.262 3876.84 0.784019 10.7871 0.632542 24.9558 0.632542 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 6 param+error -303.902 673.189 0.0679393 0.144157 40.7194 14.1817 36.8443 27.0771 4630.72 0.822749 10.2597 0.651722 110.532 0.651722 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 7 param+error -628.591 492.441 0.113109 0.0884608 137.507 14.631 38.9548 6.09788 5528.04 0.346368 9.76911 0.209568 358.876 0.209568 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 8 param+error 0.90568 0.0204485 -7.80387e-05 1.40127e-07 1.6776 0.407335 74.7591 15.4361 9184.59 2.44418 9.67965 1.56947 4.48767 1.56947 +CP dss 0 56 h pakw 9 1964.5 59.541 3.38687 2092.92 80.997 3.52764 3248.87 276.398 3.28246 3401.23 302.853 3.79352 3714.41 356.017 3.68568 3876.84 383.851 4.29794 4630.72 510.99 4.08306 5528.04 661.657 3.87979 9184.59 1274.58 3.78232 +CM dss 0 56 h poly3 -272.771 0.168813 2.006e-07 -2.5927e-11 error 3.82061 0.00316526 7.42468e-07 4.87071e-11 +CR dss 0 56 h poly2 3.30319 0.0015707 -9.36617e-07 error 0.300624 0.00132318 9.58716e-07 + +# ROU: dss 0 57 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.23666 0.79681 0.00196106 0.000377205 1142.24 54.79 72.9709 8.599 1997.97 0.0409399 8.61662 0.0225052 11669.1 0.0225052 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 1 param+error -12353.9 2096.87 5.97973 0.970364 517.912 30.9289 21283.7 12070.8 2129.34 0.0735211 9.11778 0.0410366 4351.65 0.0410366 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 2 param+error 143.702 769.844 -0.0326756 0.228443 16.5929 13.9723 31.3014 60.6939 3338.2 0.96565 9.7719 0.723986 77.5704 0.723986 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 3 param+error 8.74772 0.634442 0.00273811 0.000198012 46.2006 10.8758 26.7646 5.09021 3503.57 0.599815 9.0443 0.34883 125.132 0.34883 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 4 param+error -1484.31 531.816 0.383915 0.137466 95.37 20.4929 36.2557 5.18445 3834.37 0.245476 9.8516 0.201628 197.39 0.201628 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 5 param+error -152.678 57.171 0.0376974 0.014118 3.23703 0.740242 39943.9 39884.3 4002.87 0.776798 12.2882 0.459653 24.0593 0.459653 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 6 param+error 4.73128 5.46715 0.00121554 0.00112939 29.589 7.00353 42.105 9.84015 4794.44 0.646996 12.086 0.403095 103.82 0.403095 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.155701 5.56615 9.42796e-05 0.00096535 159.198 117.247 33.944 1.35643 5731.32 0.296297 10.0711 0.165625 283.291 0.165625 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 8 param+error -11.236 0.885997 0.00118222 9.25147e-05 0.699853 0.273732 232.673 219.999 9519.97 3.09774 16.5031 2.41018 3.67458 2.41018 +CP dss 0 57 h pakw 9 1997.97 59.541 3.29037 2129.34 80.997 3.47957 3338.2 276.398 3.71235 3503.57 302.853 3.4344 3834.37 356.017 3.73808 4002.87 383.851 4.6611 4794.44 510.99 4.57998 5731.32 661.657 3.81683 9519.97 1274.58 6.3427 +CM dss 0 57 h poly3 -266.301 0.164226 -6.39457e-07 4.10486e-11 error 3.77271 0.00305609 6.98649e-07 4.48894e-11 +CR dss 0 57 h poly2 3.41892 0.000260543 1.48622e-06 error 0.296851 0.00135283 1.10122e-06 + +# ROU: dss 0 58 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3750.07 880.044 -1.92138 0.446782 5412.33 4842.33 8.29401 1.40784 1930.45 0.253443 10.7751 0.0754047 12718 0.0754047 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 1 param+error 291.959 4.15926 0.136767 0.00222088 519.388 47.4099 87.2503 23.4285 2062.39 0.0838925 8.94553 0.0557079 4576.83 0.0557079 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 2 param+error 17.4941 9.3667 0.00554422 0.00288236 20.2605 11.2477 34.3297 22.7555 3218.29 1.06718 9.62197 0.696799 69.2921 0.696799 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 3 param+error 466.928 156.209 -0.131656 0.0458427 60.3899 39.0656 15.6641 2.24611 3374.76 0.428111 9.43205 0.286157 113.261 0.286157 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 4 param+error -191.302 193.882 0.0518615 0.0520384 91.74 5.0696 26.1809 2.03252 3687.71 0.23856 9.5689 0.153617 202.561 0.153617 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 5 param+error 15.7854 43.7794 -0.0039958 0.0112519 11.5498 10.4691 18.8101 3.53175 3852.63 0.883846 8.91245 0.514975 16.9956 0.514975 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 6 param+error 401.216 114.676 -0.0839229 0.0247363 53.4598 35.1965 20.3835 2.12074 4604.63 0.486353 10.7425 0.343422 88.3972 0.343422 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.788284 6.69656 0.000166836 0.00120845 149.16 16.6315 32.2811 0.918448 5507.33 0.195027 9.95664 0.143658 308.87 0.143658 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 8 param+error 12.6436 7.94657 -0.00133446 0.000852301 1.5403 0.527972 40.1445 16.0963 9207.25 1.62594 6.11367 1.28188 4.08108 1.28188 +CP dss 0 58 h pakw 9 1930.45 59.541 4.27552 2062.39 80.997 3.55091 3218.29 276.398 3.8259 3374.76 302.853 3.75037 3687.71 356.017 3.80413 3852.63 383.851 3.54252 4604.63 510.99 4.26311 5507.33 661.657 3.93694 9207.25 1274.58 2.33462 +CM dss 0 58 h poly3 -264.671 0.166792 6.27677e-07 -6.3641e-11 error 3.94477 0.00327057 7.66715e-07 5.00274e-11 +CR dss 0 58 h poly2 3.73274 0.000742534 -1.43079e-06 error 0.333592 0.0013868 9.40988e-07 + +# ROU: dss 0 59 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 0 param+error -2020.65 11.3338 1.00069 0.00558848 1326.87 47.8275 104.259 12.7199 1992.04 0.0338749 8.69218 0.0198453 14171.4 0.0198453 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 1 param+error 280.761 4.15808 0.131559 0.0020498 578.045 39.4814 68.9299 10.6315 2121.92 0.0772476 8.85181 0.0533782 4375.14 0.0533782 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 2 param+error 186.089 286.226 -0.0459783 0.0868676 35.5033 36.8323 18.1921 12.0433 3268.2 1.40451 8.30039 0.755678 59.5076 0.755678 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 3 param+error 8.58914 1.13142 0.00255587 0.000344562 40.499 10.5638 31.1029 8.12421 3420.97 0.59069 9.3665 0.433943 124.858 0.433943 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 4 param+error -899.872 1.20092 0.239372 0.000344458 94.0499 81.857 30.4605 0.968084 3730.7 0.23084 9.67673 0.165181 200.057 0.165181 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 5 param+error -28.0359 43.0938 0.00718959 0.010962 9.9 1.20662 29.1769 5.08594 3893.87 0.788948 8.52084 0.525265 18.8411 0.525265 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 6 param+error -654.624 488.982 0.142366 0.104558 48.18 9.62783 39.2707 9.8016 4639.09 0.449074 10.3288 0.363499 86.8306 0.363499 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 7 param+error -855.149 396.631 0.153824 0.0711626 149.49 6.40192 35.4054 2.0452 5534.45 0.203309 9.92071 0.150648 282.876 0.150648 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 8 param+error 34.5725 27.0498 -0.00370446 0.00293807 1.51176 1.02466 21.1934 14.1303 9203.55 2.12979 5.34627 2.09738 2.64402 2.09738 +CP dss 0 59 h pakw 9 1992.04 59.541 3.48217 2121.92 80.997 3.54765 3268.2 276.398 3.33318 3420.97 302.853 3.76132 3730.7 356.017 3.88526 3893.87 383.851 3.42053 4639.09 510.99 4.13925 5534.45 661.657 3.9601 9203.55 1274.58 2.05397 +CM dss 0 59 h poly3 -277.824 0.168076 7.29602e-07 -7.22375e-11 error 5.3687 0.00443815 1.03805e-06 6.75007e-11 +CR dss 0 59 h poly2 3.28081 0.00201267 -2.32396e-06 error 0.304885 0.00130574 8.88322e-07 + +# ROU: dss 0 60 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1.37144 0.742062 0.0012047 0.000368748 853.435 39.6036 63.1504 5.97522 2001.08 0.0447491 8.69884 0.0252406 8351.78 0.0252406 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 1 param+error -2447.3 1310.02 1.37214 0.603748 381.146 19.7094 173.775 62.6182 2132.16 0.0682885 9.10266 0.0581667 3746.44 0.0581667 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 2 param+error 251.535 194.55 -0.0653721 0.0582734 42.57 6.91237 18.8168 3.23895 3315.26 0.622002 7.27562 0.492507 50.8464 0.492507 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 3 param+error 7.58241 8.11721 0.0022472 0.00231487 38.9665 13.0962 28.9536 9.53716 3473.66 0.679937 9.80559 0.390267 118.95 0.390267 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 4 param+error -592.748 181.763 0.154744 0.0473747 90.0899 7.81932 30.2494 2.0306 3797.71 0.239829 9.71184 0.161721 188.393 0.161721 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 5 param+error -1.61378 65.759 0.000447836 0.0164338 12.21 10.864 22.2201 4.35485 3968.62 0.810521 8.37966 0.541509 16.7338 0.541509 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 6 param+error 424.209 156.994 -0.0866226 0.0328737 46.53 28.7544 20.6446 2.83701 4744.5 0.537074 11.4592 0.406965 76.7734 0.406965 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 7 param+error -855.677 503.209 0.150107 0.0881211 130.35 6.11571 42.3367 3.36826 5672.19 0.20917 10.1283 0.171695 264.577 0.171695 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 8 param+error 7.50658 14.2389 -0.000768068 0.00150077 0.544011 0.356167 97.1853 136.001 9447.03 2.52308 10.8284 2.89456 2.84536 2.89456 +CP dss 0 60 h pakw 9 2001.08 59.541 3.40021 2132.16 80.997 3.5545 3315.26 276.398 2.81823 3473.66 302.853 3.79463 3797.71 356.017 3.75144 3968.62 383.851 3.23389 4744.5 510.99 4.40603 5672.19 661.657 3.88106 9447.03 1274.58 4.1398 +CM dss 0 60 h poly3 -275.566 0.168977 -8.52181e-07 3.53906e-11 error 3.62468 0.00295013 6.81623e-07 4.38594e-11 +CR dss 0 60 h poly2 3.3336 5.11788e-05 4.96093e-07 error 0.300867 0.00130094 9.52215e-07 + +# ROU: dss 0 61 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 0 param+error -3854.22 11.22 1.91859 0.00557477 1133.76 45.5386 98.208 12.3636 1976.48 0.0398579 8.97668 0.0230157 11322.7 0.0230157 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 1 param+error 260.932 3.96625 0.121882 0.0019468 474.362 54.2801 70.0513 18.9985 2110.14 0.107506 9.25023 0.0673423 3757.22 0.0673423 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 2 param+error -856.199 953.956 0.25951 0.279672 16.5567 9.05566 33764.5 28179.7 3377.78 1.31966 11.1018 0.524829 60.7099 0.524829 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 3 param+error 408.248 186.106 -0.109904 0.0519031 57.7498 38.0244 19.1346 2.915 3552.14 0.522666 10.2311 0.343664 91.922 0.343664 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 4 param+error -213.715 211.796 0.0544711 0.0537182 86.79 54.0489 30.606 2.46996 3900.88 0.273439 10.7267 0.1916 172.492 0.1916 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 5 param+error 37.9077 26.3672 -0.00915437 0.00638646 10.1789 10.5161 19.9253 14.2092 4083.44 4.19226 10.4727 1.72477 16.4155 1.72477 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 6 param+error -217.136 264.45 0.0458105 0.0533157 40.92 6.51981 38.9642 7.30201 4916.64 0.626561 11.6933 0.439885 60.9193 0.439885 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 7 param+error -3366.8 6.66178 0.567612 0.00112245 108.9 4.93206 92.479 2.71509 5898.13 0.252704 11.6301 0.195488 217.913 0.195488 +CP dss 0 61 h pakw 8 1976.48 59.541 3.34042 2110.14 80.997 3.42546 3377.78 276.398 3.98544 3552.14 302.853 3.66543 3900.88 356.017 3.83382 4083.44 383.851 3.7417 4916.64 510.99 4.20366 5898.13 661.657 4.2796 +CM dss 0 61 h poly3 -267.879 0.175243 -5.73992e-06 4.66939e-10 error 12.5809 0.0116886 3.28931e-06 2.85933e-10 +CR dss 0 61 h poly2 3.28231 0.00164639 -2.77738e-07 error 0.356928 0.00242878 3.52616e-06 + +# ROU: dss 0 62 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 0 param+error -822.311 346.534 0.409668 0.1716 557.191 17.7082 56.9403 3.74857 1981.12 0.0443548 8.87052 0.0321177 5314.99 0.0321177 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 1 param+error -6184.93 2341.67 3.12182 1.09195 440.176 43.6984 91.9806 45.0333 2110.43 0.122372 9.25676 0.106066 2856.27 0.106066 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 2 param+error -42.79 361.221 0.0230884 0.10937 38.94 38.2869 17.468 5.9751 3274.99 0.897508 9.00275 0.587586 51.1116 0.587586 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 3 param+error -1824.55 8.28055 0.530874 0.00239065 49.26 4.86882 77.2955 16.6101 3435.48 0.480746 9.22546 0.338495 116.291 0.338495 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 4 param+error -458.163 156.327 0.120912 0.0411695 94.38 5.09633 28.5209 1.63794 3758.13 0.227114 9.46797 0.152325 196.978 0.152325 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 5 param+error -0.111115 1.85484 3.05436e-05 0.000467672 5.67614 2.93534 30.2904 12.0248 3925.89 1.31216 11.4044 0.742343 20.9877 0.742343 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 6 param+error 31.7453 195.267 -0.00480022 0.0411224 40.9482 33.7797 30.1071 10.2078 4709.14 1.03522 10.672 0.568114 73.3614 0.568114 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 7 param+error -596.39 424.529 0.105088 0.0746546 93.432 7.99459 54.0037 9.62168 5644.39 0.35728 10.6528 0.251378 260.585 0.251378 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 8 param+error -13.5541 42.5735 0.00147022 0.00448671 0.821635 0.256319 105.013 133.745 9449.41 1.96941 8.05702 2.30748 2.65284 2.30748 +CP dss 0 62 h pakw 9 1981.12 59.541 3.55348 2110.43 80.997 3.69672 3274.99 276.398 3.50845 3435.48 302.853 3.58498 3758.13 356.017 3.65953 3925.89 383.851 4.39661 4709.14 510.99 4.07265 5644.39 661.657 4.03308 9449.41 1274.58 3.09887 +CM dss 0 62 h poly3 -286.874 0.179995 -2.92044e-06 1.43835e-10 error 3.82071 0.00312247 7.19862e-07 4.60688e-11 +CR dss 0 62 h poly2 3.41224 0.00172142 -1.53041e-06 error 0.31434 0.00136367 9.56407e-07 + +# ROU: dss 0 63 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 0 param+error 76.1085 118.327 -0.0354346 0.0573787 2864.07 1701.05 23.0191 0.73015 2012.22 0.100576 10.2971 0.0443368 6940.17 0.0443368 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 1 param+error -10945.2 2264.39 5.2488 1.03763 452.072 28.1641 21407.4 16024.9 2140.92 0.11961 12.0195 0.110739 2945.47 0.110739 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 2 param+error 79.9663 98.1806 -0.0135621 0.0296559 34.32 24.9149 17.4868 3.19268 3305.24 1.12405 9.68633 0.86453 33.8866 0.86453 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 3 param+error 217.814 550.786 -0.0577193 0.157057 27.6204 37.0441 37.2206 60.8861 3460.39 1.63485 12.3956 1.18307 94.7144 1.18307 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 4 param+error -448.226 290.606 0.11749 0.0759435 69.1765 18.9132 38.408 14.5163 3778.44 0.869519 11.996 0.525417 186.927 0.525417 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 5 param+error 17.107 26.6191 -0.00424397 0.00666795 10.56 1.72815 20.0768 3.2985 3946.95 1.00915 10.6919 0.618381 16.9589 0.618381 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 6 param+error 68.0354 290.324 -0.0121567 0.0612217 41.3812 38.8622 27.804 12.9061 4707.27 1.40822 10.2715 0.78344 68.7071 0.78344 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 7 param+error -2978.3 3.98405 0.52563 0.000703055 86.3695 4.57958 124.916 15.1099 5622.2 0.386652 13.3861 0.21449 220.126 0.21449 +CP dss 0 63 h pakw 8 2012.22 59.541 4.05388 2140.92 80.997 4.73731 3305.24 276.398 3.83139 3460.39 302.853 4.90092 3778.44 356.017 4.73564 3946.95 383.851 4.21585 4707.27 510.99 4.01582 5622.2 661.657 5.14408 +CM dss 0 63 h poly3 -271.711 0.161036 2.27298e-06 -2.46792e-10 error 14.8673 0.01398 4.03869e-06 3.64461e-10 +CR dss 0 63 h poly2 4.36842 -0.00125786 3.67877e-06 error 0.451476 0.00294261 4.21715e-06 + +# ROU: dss 0 64 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 0 param+error -180708 688.043 91.2068 0.344068 34860 247.659 110.315 1.68549 1949.69 0.0325415 14.9861 0.0165665 100004 0.0165665 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 1 param+error -19225.5 3307.14 12.2375 1.54768 6248.48 94.7453 20826.9 10467.5 2077.75 0.0498518 15.6836 0.0408687 31092 0.0408687 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 2 param+error -6083.16 2188.84 1.97156 0.658336 199.286 33.7986 32592.6 27533.7 3273.62 0.43794 17.3671 0.187892 1009.83 0.187892 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 3 param+error 130.95 3.30166 0.0420996 0.00145411 763.335 134.245 27.927 3.06029 3436.68 0.46542 16.617 0.216912 1704.63 0.216912 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 4 param+error 1357.26 425.2 -0.334776 0.111727 1702.14 28.0633 24.4067 0.50754 3761.26 0.0858545 17.2927 0.0568428 3958.38 0.0568428 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 5 param+error -1929.21 899.707 0.487759 0.22538 104.678 27.5669 93.4977 69.0868 3930.47 0.543421 18.3013 0.402185 536.053 0.402185 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 6 param+error -3060.3 871.557 0.66421 0.183279 690.36 16.6807 40.2719 2.16179 4706.73 0.175925 18.1709 0.111035 1454.31 0.111035 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 7 param+error -0.158145 1639.19 -0.00155837 0.287994 2160.51 1335.31 42.5212 3.08557 5619.6 0.22431 20.3596 0.125031 4999.83 0.125031 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 8 param+error -583.705 111.311 0.062001 0.0118238 44.88 0.339004 121.45 10.2014 9334.19 0.615002 23.1598 0.386095 94.2268 0.386095 +CP dss 0 64 h pakw 9 1949.69 59.541 5.76937 2077.75 80.997 6.03868 3273.62 276.398 6.69635 3436.68 302.853 6.40859 3761.26 356.017 6.67236 3930.47 383.851 7.06335 4706.73 510.99 7.02218 5619.6 661.657 7.88195 9334.19 1274.58 9.05385 +CM dss 0 64 h poly3 -258.797 0.163274 3.02462e-08 8.31791e-12 error 7.02551 0.00584615 1.36897e-06 8.92569e-11 +CR dss 0 64 h poly2 5.60558 0.00371993 -7.7373e-07 error 0.525724 0.00240925 1.83946e-06 + diff --git a/resource/unittestdata/406-1/hp52406-1.gse_20260217T124025.hdf5 b/resource/unittestdata/406-1/hp52406-1.gse_20260217T124025.hdf5 new file mode 100644 index 00000000..5b45eb14 Binary files /dev/null and b/resource/unittestdata/406-1/hp52406-1.gse_20260217T124025.hdf5 differ diff --git a/resource/unittestdata/406-1/hp52406-1.revan.cfg b/resource/unittestdata/406-1/hp52406-1.revan.cfg new file mode 100644 index 00000000..653ed5e7 --- /dev/null +++ b/resource/unittestdata/406-1/hp52406-1.revan.cfg @@ -0,0 +1,104 @@ + + 2 + 49000 + + + 1 + 0 + 0 + 2 + 0 + 1 + 0 + 1e-06 + 1000 + MLP + + 0.2 + 1.1 + 0.3 + 0 + 0.2 + 0.3 + 0.3 + 0.3 + 0 + 1.5 + 1 + + true + true + false + true + 2 + 1 + false + 6 + + SStrip + + false + 3 + false + true + false + false + + 0 + 1000 + + 7 + + 0 + 0 + 10000 + + + 0 + 0 + 0 + + + + + + + BDTD + + 0 + 25000 + + + 0 + 1000 + + + -1 + -1 + + true + + 3 + 20 + + 1 + + 120 + false + 0 + 2500 + + true + false + true + false + true + false + false + true + false + 1000 + true + 1 + 12200 + diff --git a/resource/unittestdata/406-1/hp52406-1.simplified.geo.setup b/resource/unittestdata/406-1/hp52406-1.simplified.geo.setup new file mode 100644 index 00000000..af099bba --- /dev/null +++ b/resource/unittestdata/406-1/hp52406-1.simplified.geo.setup @@ -0,0 +1,151 @@ +# Simplified mass model for COSI STTC HP52406-1 +# Single germanium detector: active wafer + guard ring only. + +SurroundingSphere 20 0.0 0.0 0.0 20 +ShowSurroundingSphere False + +# ------------------------------------------------------- +# Constants + +Constant DetectorHalfHeight {1.6/2} +Constant DetectorHalfWidth 4.025 +Constant GuardRingSize 0.3 +Constant IngotRadius {2 * 2.54} + +Constant Xshift 1.342 +Constant Yshift 0.991 +Constant Zshift -0.4 + +# ------------------------------------------------------- +# Materials + +Material Vacuum +Vacuum.Density 1E-12 +Vacuum.Component H 1 + +Material active_ge_recoil +active_ge_recoil.Density 5.323 +active_ge_recoil.ComponentByMass Ge 1 + +# ------------------------------------------------------- +# World volume + +Volume WorldVolume +WorldVolume.Material Vacuum +WorldVolume.Visibility 0 +WorldVolume.Shape Sphere 0.0 100 +WorldVolume.Mother 0 + +# ------------------------------------------------------- +# Detector geometry + +Volume SingleDetector +SingleDetector.Material Vacuum +SingleDetector.Shape BRIK 6.1225 5.791 {DetectorHalfHeight+.9} +SingleDetector.Visibility 0 +SingleDetector.Virtual true +SingleDetector.Rotation -90.0 0.0 0.0 +SingleDetector.Position 0.0 0.0 0.0 +SingleDetector.Mother WorldVolume + +Shape BRIK ActiveWaferOuterBox +ActiveWaferOuterBox.Parameters { DetectorHalfWidth - GuardRingSize } { DetectorHalfWidth - GuardRingSize } DetectorHalfHeight + +Shape TUBE ActiveWaferCutDisk +ActiveWaferCutDisk.Parameters 0.0 { IngotRadius - GuardRingSize } DetectorHalfHeight + +Shape Intersection ActiveWafer +ActiveWafer.Parameters ActiveWaferOuterBox ActiveWaferCutDisk + +Shape BRIK WaferOuterBox +WaferOuterBox.Parameters DetectorHalfWidth DetectorHalfWidth DetectorHalfHeight + +Shape TUBE WaferCutDisk +WaferCutDisk.Parameters 0.0 IngotRadius DetectorHalfHeight + +Shape Intersection WholeWafer +WholeWafer.Parameters WaferOuterBox WaferCutDisk + +Shape Subtraction GuardRing_AlmostThere +GuardRing_AlmostThere.Parameters WholeWafer ActiveWafer + +Shape Intersection GuardRing +GuardRing.Parameters WaferOuterBox GuardRing_AlmostThere + +Volume D1_GeWafer +D1_GeWafer.Material active_ge_recoil +D1_GeWafer.Visibility 1 +D1_GeWafer.Color 4 +D1_GeWafer.Shape ActiveWafer +D1_GeWafer.Position {-0.6555+Xshift} {0.0+Yshift} {Zshift} +D1_GeWafer.Mother SingleDetector + +Volume GeWaferGuardRing +GeWaferGuardRing.Material active_ge_recoil +GeWaferGuardRing.Visibility 1 +GeWaferGuardRing.Color 3 +GeWaferGuardRing.Shape GuardRing +GeWaferGuardRing.Position {-0.6555+Xshift} {0.0+Yshift} {Zshift} +GeWaferGuardRing.Mother SingleDetector + +# ------------------------------------------------------- +# Detector definitions + +MDStrip3D GeD_0 + +GeD_0.DetectorVolume D1_GeWafer +GeD_0.SensitiveVolume D1_GeWafer + +GeD_0.Offset 0.0 0.0 +GeD_0.StripNumber 64 64 + +GeD_0.NoiseThreshold 15 +GeD_0.TriggerThreshold 30 + +GeD_0.DepthResolution 10 0.02 +GeD_0.DepthResolution 100 0.02 +GeD_0.DepthResolution 1000 0.02 + +GeD_0.EnergyResolution Gaus 10 10 0.417 +GeD_0.EnergyResolution Gaus 20 20 0.425 +GeD_0.EnergyResolution Gaus 50 50 0.4375 +GeD_0.EnergyResolution Gaus 100 100 0.454 +GeD_0.EnergyResolution Gaus 200 200 0.492 +GeD_0.EnergyResolution Gaus 500 500 0.5875 +GeD_0.EnergyResolution Gaus 1000 1000 0.7217 +GeD_0.EnergyResolution Gaus 2000 2000 0.9317 +GeD_0.EnergyResolution Gaus 5000 5000 1.3819 +GeD_0.EnergyResolution Gaus 10000 10000 1.9094 +GeD_0.EnergyResolution Gaus 100000 100000 5.907 + +GeD_0.FailureRate 0.0 + + +Simple GuardRingDetector + +GuardRingDetector.DetectorVolume GeWaferGuardRing +GuardRingDetector.SensitiveVolume GeWaferGuardRing + +GuardRingDetector.TriggerThreshold 40 +GuardRingDetector.NoiseThresholdEqualsTriggerThreshold true + +GuardRingDetector.EnergyResolution Gaus 10 10 3 +GuardRingDetector.EnergyResolution Gaus 20 20 3 +GuardRingDetector.EnergyResolution Gaus 50 50 3 +GuardRingDetector.EnergyResolution Gaus 100 100 3 +GuardRingDetector.EnergyResolution Gaus 200 200 3 +GuardRingDetector.EnergyResolution Gaus 500 500 3 +GuardRingDetector.EnergyResolution Gaus 1000 1000 3 +GuardRingDetector.EnergyResolution Gaus 2000 2000 3 +GuardRingDetector.EnergyResolution Gaus 5000 5000 3 + + +Trigger GeD_0Trigger +GeD_0Trigger.Veto false +GeD_0Trigger.TriggerByChannel true +GeD_0Trigger.Detector GeD_0 1 + +Trigger GuardRingVeto +GuardRingVeto.Veto true +GuardRingVeto.TriggerByChannel true +GuardRingVeto.Detector GuardRingDetector 1 diff --git a/resource/unittestdata/406-1/hp52406-1.splines.csv b/resource/unittestdata/406-1/hp52406-1.splines.csv new file mode 100644 index 00000000..a5ac400e --- /dev/null +++ b/resource/unittestdata/406-1/hp52406-1.splines.csv @@ -0,0 +1,320 @@ +-0.79995,-180.27856562724597 +-0.7949499999999999,-180.1823760256774 +-0.7899499999999999,-180.17610282726267 +-0.78495,-179.81978059660483 +-0.77995,-179.47572781735616 +-0.77495,-178.93125857197106 +-0.7699499999999999,-178.49273484924473 +-0.76495,-177.75460042606719 +-0.75995,-177.00552808645782 +-0.75495,-176.1322676087259 +-0.74995,-175.289127622852 +-0.74495,-174.36320000612776 +-0.73995,-173.20849188665957 +-0.73495,-172.19272082277485 +-0.72995,-171.08398054360273 +-0.72495,-169.7756911527252 +-0.71995,-168.6597133509529 +-0.71495,-167.34215212893673 +-0.70995,-166.07611514942874 +-0.70495,-164.77070844781798 +-0.6999500000000001,-163.3659485187214 +-0.69495,-162.07042075482025 +-0.68995,-160.60407581669588 +-0.68495,-159.1273457557163 +-0.67995,-157.73802162051894 +-0.67495,-156.2921823997067 +-0.6699499999999999,-154.75422487652128 +-0.6649499999999999,-153.33787352430147 +-0.65995,-151.75247725447394 +-0.65495,-150.21511275835243 +-0.64995,-148.7112948172043 +-0.6449499999999999,-147.17400442216183 +-0.63995,-145.65865328245116 +-0.63495,-144.05250184259108 +-0.62995,-142.56932978440346 +-0.62495,-141.04525539755147 +-0.61995,-139.51037067220304 +-0.61495,-138.06836793346304 +-0.60995,-136.550325317865 +-0.60495,-134.92143794270353 +-0.59995,-133.37119739643163 +-0.59495,-131.8691913916279 +-0.58995,-130.26364891757183 +-0.58495,-128.82869554602024 +-0.57995,-127.15826878193725 +-0.5749500000000001,-125.59921626643488 +-0.56995,-124.13915856652714 +-0.56495,-122.67266444427815 +-0.55995,-121.06822233459253 +-0.55495,-119.46392855808661 +-0.54995,-118.02099727012411 +-0.5449499999999999,-116.46835740178877 +-0.5399499999999999,-114.92659191459268 +-0.53495,-113.4580743635025 +-0.52995,-111.83849175393588 +-0.52495,-110.364679671599 +-0.5199499999999999,-108.82978401115517 +-0.51495,-107.33825826380576 +-0.50995,-105.80718687358439 +-0.50495,-104.27969680622209 +-0.49995,-102.77382772505526 +-0.49494999999999995,-101.29739824448662 +-0.48995,-99.81512881549718 +-0.48495,-98.27349867405123 +-0.47995,-96.92269250519757 +-0.47495000000000004,-95.42190596691873 +-0.46995,-93.77768713368373 +-0.46495,-92.34621652276405 +-0.45994999999999997,-90.95266125813136 +-0.45495,-89.44743040556175 +-0.44995,-87.97575210464072 +-0.44494999999999996,-86.44701672682882 +-0.43994999999999995,-84.98722959314941 +-0.43495,-83.57146298091408 +-0.42995,-82.17869681049962 +-0.42495000000000005,-80.65055106133389 +-0.41994999999999993,-79.22015097531572 +-0.41495,-77.76642700686541 +-0.40995,-76.39509808757096 +-0.40495000000000003,-74.8390581604663 +-0.39994999999999997,-73.36453349122193 +-0.39495,-71.95943847110485 +-0.38995,-70.54469227460969 +-0.38495,-69.14799659781673 +-0.37995,-67.6503887930649 +-0.37495,-66.2483884176318 +-0.36995,-64.83526016178563 +-0.36495,-63.47916532850862 +-0.35995,-62.03747217315088 +-0.35495,-60.67095209181899 +-0.34995,-59.28206069591014 +-0.34495,-57.88961599611882 +-0.33995000000000003,-56.540413570210475 +-0.33494999999999997,-55.167202527461974 +-0.32995,-53.81328903425618 +-0.32494999999999996,-52.399525591545355 +-0.31995,-51.07828498386077 +-0.31495,-49.848934843277824 +-0.30995,-48.36157508637522 +-0.30495,-47.02091771260892 +-0.29995,-45.69738788008438 +-0.29495,-44.29535841084279 +-0.28995000000000004,-43.01337865203652 +-0.28495,-41.71071663928527 +-0.27995000000000003,-40.259799894947726 +-0.27494999999999997,-38.994176934564926 +-0.26995,-37.62500264768727 +-0.26495,-36.32187798803728 +-0.25995,-34.94035156083091 +-0.25495,-33.60765710620959 +-0.24994999999999998,-32.30641183647061 +-0.24495,-31.02918266245301 +-0.23995000000000002,-29.62772990292717 +-0.23495,-28.30729773665387 +-0.22995000000000002,-27.041399072094205 +-0.22494999999999998,-25.620532692428004 +-0.21995,-24.346977566258857 +-0.21495000000000003,-23.113958130022375 +-0.20995,-21.713907666096848 +-0.20495000000000002,-20.430304684030002 +-0.19995000000000002,-19.052005392112537 +-0.19495,-17.72746038399258 +-0.18995,-16.424817166514064 +-0.18495,-15.212128219173831 +-0.17995,-13.741461309377852 +-0.17495,-12.519273853881016 +-0.16995,-11.277810632462113 +-0.16494999999999999,-9.909910816394765 +-0.15994999999999998,-8.574495730883267 +-0.15495,-7.36329730094263 +-0.14995,-5.932224757525515 +-0.14495,-4.783372499897005 +-0.13995,-3.397399856300155 +-0.13495,-2.123256256775524 +-0.12995,-0.7887496522634492 +-0.12495,0.41203779114102085 +-0.11995,1.8637721839842543 +-0.11495,3.1265787188430636 +-0.10994999999999999,4.245621133317162 +-0.10495000000000002,5.575625844046718 +-0.09995000000000001,6.952847977657972 +-0.09495,8.094367170358629 +-0.08995,9.44773539539658 +-0.08495,10.741968998152883 +-0.07995,12.046329663897096 +-0.07495,13.212495585080644 +-0.06995,14.538190734273243 +-0.06495,15.824751638030554 +-0.05995,17.025687027663366 +-0.05495,18.294619074199623 +-0.04995,19.630627023494174 +-0.044950000000000004,20.806107237706772 +-0.03995,22.119195869829603 +-0.034949999999999995,23.38844548200788 +-0.029949999999999997,24.548507819753645 +-0.02495,25.92557175261307 +-0.019950000000000002,27.027279257724466 +-0.01495,28.306575407443635 +-0.00995,29.5380114040701 +-0.00495,30.711965116878766 +5.0e-5,31.884308180728773 +0.005050000000000001,33.13789929128075 +0.01005,34.47525966629389 +0.01505,35.6618973302701 +0.020050000000000002,36.913884805147575 +0.02505,38.175113994319005 +0.03005,39.27152177835394 +0.03505,40.476227674965116 +0.04005,41.763865838486666 +0.04505,42.856100669660904 +0.05005,44.21170801297998 +0.05505,45.23905593906552 +0.060050000000000006,46.59054954314466 +0.06505,47.798087251156005 +0.07005,49.00833862189439 +0.07504999999999999,50.164751787955886 +0.08005,51.36611354726444 +0.08505,52.47334186774046 +0.09004999999999999,53.70297011794594 +0.09505,54.881946797964375 +0.10005,56.166408345509076 +0.10505,57.347635866319 +0.11005000000000001,58.44132266437317 +0.11505000000000001,59.762149229824246 +0.12004999999999999,60.78782619254457 +0.12505,62.1243565359466 +0.13005,63.2707517558403 +0.13505,64.42680169239976 +0.14005,65.5391020259944 +0.14504999999999998,66.85825719000498 +0.15005,67.95193487826258 +0.15505,69.20458266695968 +0.16005,70.30839287893554 +0.16505,71.49326828726001 +0.17004999999999998,72.66514901588806 +0.17504999999999998,73.81137481423372 +0.18005,75.02452224072627 +0.18505,76.0867973611709 +0.19005,77.39054472100788 +0.19505,78.64715524178094 +0.20005,79.6171849139131 +0.20505,80.81284181648219 +0.21005,81.99605680891933 +0.21505000000000002,83.23497752675162 +0.22005,84.24179662441529 +0.22505000000000003,85.47541593638871 +0.23005,86.71108722498724 +0.23504999999999998,87.72704823138896 +0.24005,88.87283215134089 +0.24505,90.09046183330403 +0.25005,91.12861770676875 +0.25505,92.30058046076341 +0.26005,93.4213945174119 +0.26505,94.61531370460253 +0.27005,95.81866284759849 +0.27505,96.91300613965565 +0.28005,98.04795202960554 +0.28504999999999997,99.21224728918202 +0.29005000000000003,100.18129087132968 +0.29505,101.35031126356601 +0.30005000000000004,102.47766855217333 +0.30505,103.57572351763694 +0.31005,104.65312565581921 +0.31505,105.90255693188243 +0.32005,107.01854387008582 +0.32505,108.14445129888644 +0.33005,109.34282048856338 +0.33504999999999996,110.40574932019479 +0.34005,111.49225996059772 +0.34504999999999997,112.48529056658838 +0.35005000000000003,113.46646110422873 +0.35505,114.73407444812202 +0.36005,115.76730145708999 +0.36505,116.85543245909419 +0.37005,118.04797950832655 +0.37505,119.21134381389683 +0.38005,120.29553241033011 +0.38505,121.2775375309852 +0.39005,122.35882780779131 +0.39505,123.55127472112916 +0.40004999999999996,124.56374454204331 +0.40505,125.64956395950496 +0.41005,126.7110733179366 +0.41505000000000003,127.86648733032523 +0.42005,128.73084673545162 +0.42505,129.9047650555362 +0.43005000000000004,131.13496248592023 +0.43505000000000005,132.03827997997246 +0.44005,133.17752322309846 +0.44505,134.3342414256219 +0.45004999999999995,135.27768637650314 +0.45505000000000007,136.24520176065806 +0.46005,137.49064588276482 +0.46505,138.45746777305817 +0.47004999999999997,139.6725306545479 +0.47505,140.6230802022387 +0.48005000000000003,141.84322311185858 +0.48505000000000004,142.78527267557493 +0.49005,143.75068544171322 +0.49505,144.86836276328626 +0.50005,145.83475451434128 +0.50505,146.8785207419414 +0.51005,147.98961004517344 +0.51505,149.12599317887148 +0.52005,150.0635357393467 +0.52505,151.12698807507908 +0.53005,152.03211331724552 +0.53505,153.09208456687674 +0.54005,154.034841087151 +0.54505,155.26993483359732 +0.5500499999999999,156.0684475608926 +0.55505,157.06717593213497 +0.56005,158.14148929184972 +0.56505,159.10688260754208 +0.57005,160.04023871591966 +0.57505,161.15230563478548 +0.5800500000000001,162.02961809997527 +0.5850500000000001,163.09967960843008 +0.59005,164.05896074475163 +0.59505,164.87847787829614 +0.60005,165.8667018309357 +0.6050500000000001,166.86237890669895 +0.61005,167.85280525075683 +0.61505,168.9862075711408 +0.62005,169.80397097341393 +0.62505,170.56042452455787 +0.63005,171.4723424435643 +0.63505,172.57577370684217 +0.64005,173.44824305432414 +0.64505,174.17125975543394 +0.65005,175.15911006112162 +0.65505,175.8899286300991 +0.66005,176.97347061222214 +0.66505,177.81970181347268 +0.67005,178.59540119607797 +0.6750499999999999,179.56444231587247 +0.68005,180.33665032782542 +0.68505,181.06094080934636 +0.69005,181.80357456890857 +0.69505,182.58259085106133 +0.70005,183.30679160003749 +0.7050500000000001,184.0736949551005 +0.7100500000000001,184.89485304917235 +0.71505,185.52078960483456 +0.72005,186.18300836347942 +0.72505,186.87798883772834 +0.7300500000000001,187.65274551218295 +0.73505,188.1554707119568 +0.74005,188.56316612424638 +0.74505,189.14516864194846 +0.75005,189.69807321485007 +0.75505,190.2182133580728 +0.76005,190.7566301150376 +0.76505,191.07148098423497 +0.77005,191.52452773417377 +0.77505,191.6550277177984 +0.78005,191.96911221275795 +0.78505,192.1772848751208 +0.79005,192.23293847024928 +0.79505,192.2983688619338 diff --git a/resource/unittestdata/406-1/hp52406-1.stripmap.map b/resource/unittestdata/406-1/hp52406-1.stripmap.map new file mode 100644 index 00000000..4816da9a --- /dev/null +++ b/resource/unittestdata/406-1/hp52406-1.stripmap.map @@ -0,0 +1,2082 @@ +# Columns are strip_id, rtb, drm, is_primary, asic, channel, detector, side (0=LV, 1=HV), strip +0 0 0 0 0 0 0 1 32 +1 0 0 0 0 1 0 1 33 +2 0 0 0 0 2 0 1 34 +3 0 0 0 0 3 0 1 35 +4 0 0 0 0 4 0 1 36 +5 0 0 0 0 5 0 1 37 +6 0 0 0 0 6 0 1 38 +7 0 0 0 0 7 0 1 39 +8 0 0 0 0 8 0 1 40 +9 0 0 0 0 9 0 1 41 +10 0 0 0 0 10 0 1 42 +11 0 0 0 0 11 0 1 43 +12 0 0 0 0 12 0 1 44 +13 0 0 0 0 13 0 1 45 +14 0 0 0 0 14 0 1 46 +15 0 0 0 0 15 0 1 47 +16 0 0 0 0 16 0 1 48 +17 0 0 0 0 17 0 1 49 +18 0 0 0 0 18 0 1 50 +19 0 0 0 0 19 0 1 51 +20 0 0 0 0 20 0 1 52 +21 0 0 0 0 21 0 1 53 +22 0 0 0 0 22 0 1 54 +23 0 0 0 0 23 0 1 55 +24 0 0 0 0 24 0 1 56 +25 0 0 0 0 25 0 1 57 +26 0 0 0 0 26 0 1 58 +27 0 0 0 0 27 0 1 59 +28 0 0 0 0 28 0 1 60 +29 0 0 0 0 29 0 1 61 +30 0 0 0 0 30 0 1 62 +31 0 0 0 0 31 0 1 63 +32 0 0 0 1 0 0 1 0 +33 0 0 0 1 1 0 1 1 +34 0 0 0 1 2 0 1 2 +35 0 0 0 1 3 0 1 3 +36 0 0 0 1 4 0 1 4 +37 0 0 0 1 5 0 1 5 +38 0 0 0 1 6 0 1 6 +39 0 0 0 1 7 0 1 7 +40 0 0 0 1 8 0 1 8 +41 0 0 0 1 9 0 1 9 +42 0 0 0 1 10 0 1 10 +43 0 0 0 1 11 0 1 11 +44 0 0 0 1 12 0 1 12 +45 0 0 0 1 13 0 1 13 +46 0 0 0 1 14 0 1 14 +47 0 0 0 1 15 0 1 15 +48 0 0 0 1 16 0 1 16 +49 0 0 0 1 17 0 1 17 +50 0 0 0 1 18 0 1 18 +51 0 0 0 1 19 0 1 19 +52 0 0 0 1 20 0 1 20 +53 0 0 0 1 21 0 1 21 +54 0 0 0 1 22 0 1 22 +55 0 0 0 1 23 0 1 23 +56 0 0 0 1 24 0 1 24 +57 0 0 0 1 25 0 1 25 +58 0 0 0 1 26 0 1 26 +59 0 0 0 1 27 0 1 27 +60 0 0 0 1 28 0 1 28 +61 0 0 0 1 29 0 1 29 +62 0 0 0 1 30 0 1 30 +63 0 0 0 1 31 0 1 31 +64 0 0 1 0 0 0 0 32 +65 0 0 1 0 1 0 0 33 +66 0 0 1 0 2 0 0 34 +67 0 0 1 0 3 0 0 35 +68 0 0 1 0 4 0 0 36 +69 0 0 1 0 5 0 0 37 +70 0 0 1 0 6 0 0 38 +71 0 0 1 0 7 0 0 39 +72 0 0 1 0 8 0 0 40 +73 0 0 1 0 9 0 0 41 +74 0 0 1 0 10 0 0 42 +75 0 0 1 0 11 0 0 43 +76 0 0 1 0 12 0 0 44 +77 0 0 1 0 13 0 0 45 +78 0 0 1 0 14 0 0 46 +79 0 0 1 0 15 0 0 47 +80 0 0 1 0 16 0 0 48 +81 0 0 1 0 17 0 0 49 +82 0 0 1 0 18 0 0 50 +83 0 0 1 0 19 0 0 51 +84 0 0 1 0 20 0 0 52 +85 0 0 1 0 21 0 0 53 +86 0 0 1 0 22 0 0 54 +87 0 0 1 0 23 0 0 55 +88 0 0 1 0 24 0 0 56 +89 0 0 1 0 25 0 0 57 +90 0 0 1 0 26 0 0 58 +91 0 0 1 0 27 0 0 59 +92 0 0 1 0 28 0 0 60 +93 0 0 1 0 29 0 0 61 +94 0 0 1 0 30 0 0 62 +95 0 0 1 0 31 0 0 63 +96 0 0 1 1 0 0 0 0 +97 0 0 1 1 1 0 0 1 +98 0 0 1 1 2 0 0 2 +99 0 0 1 1 3 0 0 3 +100 0 0 1 1 4 0 0 4 +101 0 0 1 1 5 0 0 5 +102 0 0 1 1 6 0 0 6 +103 0 0 1 1 7 0 0 7 +104 0 0 1 1 8 0 0 8 +105 0 0 1 1 9 0 0 9 +106 0 0 1 1 10 0 0 10 +107 0 0 1 1 11 0 0 11 +108 0 0 1 1 12 0 0 12 +109 0 0 1 1 13 0 0 13 +110 0 0 1 1 14 0 0 14 +111 0 0 1 1 15 0 0 15 +112 0 0 1 1 16 0 0 16 +113 0 0 1 1 17 0 0 17 +114 0 0 1 1 18 0 0 18 +115 0 0 1 1 19 0 0 19 +116 0 0 1 1 20 0 0 20 +117 0 0 1 1 21 0 0 21 +118 0 0 1 1 22 0 0 22 +119 0 0 1 1 23 0 0 23 +120 0 0 1 1 24 0 0 24 +121 0 0 1 1 25 0 0 25 +122 0 0 1 1 26 0 0 26 +123 0 0 1 1 27 0 0 27 +124 0 0 1 1 28 0 0 28 +125 0 0 1 1 29 0 0 29 +126 0 0 1 1 30 0 0 30 +127 0 0 1 1 31 0 0 31 +128 0 1 0 0 0 1 1 32 +129 0 1 0 0 1 1 1 33 +130 0 1 0 0 2 1 1 34 +131 0 1 0 0 3 1 1 35 +132 0 1 0 0 4 1 1 36 +133 0 1 0 0 5 1 1 37 +134 0 1 0 0 6 1 1 38 +135 0 1 0 0 7 1 1 39 +136 0 1 0 0 8 1 1 40 +137 0 1 0 0 9 1 1 41 +138 0 1 0 0 10 1 1 42 +139 0 1 0 0 11 1 1 43 +140 0 1 0 0 12 1 1 44 +141 0 1 0 0 13 1 1 45 +142 0 1 0 0 14 1 1 46 +143 0 1 0 0 15 1 1 47 +144 0 1 0 0 16 1 1 48 +145 0 1 0 0 17 1 1 49 +146 0 1 0 0 18 1 1 50 +147 0 1 0 0 19 1 1 51 +148 0 1 0 0 20 1 1 52 +149 0 1 0 0 21 1 1 53 +150 0 1 0 0 22 1 1 54 +151 0 1 0 0 23 1 1 55 +152 0 1 0 0 24 1 1 56 +153 0 1 0 0 25 1 1 57 +154 0 1 0 0 26 1 1 58 +155 0 1 0 0 27 1 1 59 +156 0 1 0 0 28 1 1 60 +157 0 1 0 0 29 1 1 61 +158 0 1 0 0 30 1 1 62 +159 0 1 0 0 31 1 1 63 +160 0 1 0 1 0 1 1 0 +161 0 1 0 1 1 1 1 1 +162 0 1 0 1 2 1 1 2 +163 0 1 0 1 3 1 1 3 +164 0 1 0 1 4 1 1 4 +165 0 1 0 1 5 1 1 5 +166 0 1 0 1 6 1 1 6 +167 0 1 0 1 7 1 1 7 +168 0 1 0 1 8 1 1 8 +169 0 1 0 1 9 1 1 9 +170 0 1 0 1 10 1 1 10 +171 0 1 0 1 11 1 1 11 +172 0 1 0 1 12 1 1 12 +173 0 1 0 1 13 1 1 13 +174 0 1 0 1 14 1 1 14 +175 0 1 0 1 15 1 1 15 +176 0 1 0 1 16 1 1 16 +177 0 1 0 1 17 1 1 17 +178 0 1 0 1 18 1 1 18 +179 0 1 0 1 19 1 1 19 +180 0 1 0 1 20 1 1 20 +181 0 1 0 1 21 1 1 21 +182 0 1 0 1 22 1 1 22 +183 0 1 0 1 23 1 1 23 +184 0 1 0 1 24 1 1 24 +185 0 1 0 1 25 1 1 25 +186 0 1 0 1 26 1 1 26 +187 0 1 0 1 27 1 1 27 +188 0 1 0 1 28 1 1 28 +189 0 1 0 1 29 1 1 29 +190 0 1 0 1 30 1 1 30 +191 0 1 0 1 31 1 1 31 +192 0 1 1 0 0 1 0 32 +193 0 1 1 0 1 1 0 33 +194 0 1 1 0 2 1 0 34 +195 0 1 1 0 3 1 0 35 +196 0 1 1 0 4 1 0 36 +197 0 1 1 0 5 1 0 37 +198 0 1 1 0 6 1 0 38 +199 0 1 1 0 7 1 0 39 +200 0 1 1 0 8 1 0 40 +201 0 1 1 0 9 1 0 41 +202 0 1 1 0 10 1 0 42 +203 0 1 1 0 11 1 0 43 +204 0 1 1 0 12 1 0 44 +205 0 1 1 0 13 1 0 45 +206 0 1 1 0 14 1 0 46 +207 0 1 1 0 15 1 0 47 +208 0 1 1 0 16 1 0 48 +209 0 1 1 0 17 1 0 49 +210 0 1 1 0 18 1 0 50 +211 0 1 1 0 19 1 0 51 +212 0 1 1 0 20 1 0 52 +213 0 1 1 0 21 1 0 53 +214 0 1 1 0 22 1 0 54 +215 0 1 1 0 23 1 0 55 +216 0 1 1 0 24 1 0 56 +217 0 1 1 0 25 1 0 57 +218 0 1 1 0 26 1 0 58 +219 0 1 1 0 27 1 0 59 +220 0 1 1 0 28 1 0 60 +221 0 1 1 0 29 1 0 61 +222 0 1 1 0 30 1 0 62 +223 0 1 1 0 31 1 0 63 +224 0 1 1 1 0 1 0 0 +225 0 1 1 1 1 1 0 1 +226 0 1 1 1 2 1 0 2 +227 0 1 1 1 3 1 0 3 +228 0 1 1 1 4 1 0 4 +229 0 1 1 1 5 1 0 5 +230 0 1 1 1 6 1 0 6 +231 0 1 1 1 7 1 0 7 +232 0 1 1 1 8 1 0 8 +233 0 1 1 1 9 1 0 9 +234 0 1 1 1 10 1 0 10 +235 0 1 1 1 11 1 0 11 +236 0 1 1 1 12 1 0 12 +237 0 1 1 1 13 1 0 13 +238 0 1 1 1 14 1 0 14 +239 0 1 1 1 15 1 0 15 +240 0 1 1 1 16 1 0 16 +241 0 1 1 1 17 1 0 17 +242 0 1 1 1 18 1 0 18 +243 0 1 1 1 19 1 0 19 +244 0 1 1 1 20 1 0 20 +245 0 1 1 1 21 1 0 21 +246 0 1 1 1 22 1 0 22 +247 0 1 1 1 23 1 0 23 +248 0 1 1 1 24 1 0 24 +249 0 1 1 1 25 1 0 25 +250 0 1 1 1 26 1 0 26 +251 0 1 1 1 27 1 0 27 +252 0 1 1 1 28 1 0 28 +253 0 1 1 1 29 1 0 29 +254 0 1 1 1 30 1 0 30 +255 0 1 1 1 31 1 0 31 +256 0 2 0 0 0 2 1 32 +257 0 2 0 0 1 2 1 33 +258 0 2 0 0 2 2 1 34 +259 0 2 0 0 3 2 1 35 +260 0 2 0 0 4 2 1 36 +261 0 2 0 0 5 2 1 37 +262 0 2 0 0 6 2 1 38 +263 0 2 0 0 7 2 1 39 +264 0 2 0 0 8 2 1 40 +265 0 2 0 0 9 2 1 41 +266 0 2 0 0 10 2 1 42 +267 0 2 0 0 11 2 1 43 +268 0 2 0 0 12 2 1 44 +269 0 2 0 0 13 2 1 45 +270 0 2 0 0 14 2 1 46 +271 0 2 0 0 15 2 1 47 +272 0 2 0 0 16 2 1 48 +273 0 2 0 0 17 2 1 49 +274 0 2 0 0 18 2 1 50 +275 0 2 0 0 19 2 1 51 +276 0 2 0 0 20 2 1 52 +277 0 2 0 0 21 2 1 53 +278 0 2 0 0 22 2 1 54 +279 0 2 0 0 23 2 1 55 +280 0 2 0 0 24 2 1 56 +281 0 2 0 0 25 2 1 57 +282 0 2 0 0 26 2 1 58 +283 0 2 0 0 27 2 1 59 +284 0 2 0 0 28 2 1 60 +285 0 2 0 0 29 2 1 61 +286 0 2 0 0 30 2 1 62 +287 0 2 0 0 31 2 1 63 +288 0 2 0 1 0 2 1 0 +289 0 2 0 1 1 2 1 1 +290 0 2 0 1 2 2 1 2 +291 0 2 0 1 3 2 1 3 +292 0 2 0 1 4 2 1 4 +293 0 2 0 1 5 2 1 5 +294 0 2 0 1 6 2 1 6 +295 0 2 0 1 7 2 1 7 +296 0 2 0 1 8 2 1 8 +297 0 2 0 1 9 2 1 9 +298 0 2 0 1 10 2 1 10 +299 0 2 0 1 11 2 1 11 +300 0 2 0 1 12 2 1 12 +301 0 2 0 1 13 2 1 13 +302 0 2 0 1 14 2 1 14 +303 0 2 0 1 15 2 1 15 +304 0 2 0 1 16 2 1 16 +305 0 2 0 1 17 2 1 17 +306 0 2 0 1 18 2 1 18 +307 0 2 0 1 19 2 1 19 +308 0 2 0 1 20 2 1 20 +309 0 2 0 1 21 2 1 21 +310 0 2 0 1 22 2 1 22 +311 0 2 0 1 23 2 1 23 +312 0 2 0 1 24 2 1 24 +313 0 2 0 1 25 2 1 25 +314 0 2 0 1 26 2 1 26 +315 0 2 0 1 27 2 1 27 +316 0 2 0 1 28 2 1 28 +317 0 2 0 1 29 2 1 29 +318 0 2 0 1 30 2 1 30 +319 0 2 0 1 31 2 1 31 +320 0 2 1 0 0 2 0 32 +321 0 2 1 0 1 2 0 33 +322 0 2 1 0 2 2 0 34 +323 0 2 1 0 3 2 0 35 +324 0 2 1 0 4 2 0 36 +325 0 2 1 0 5 2 0 37 +326 0 2 1 0 6 2 0 38 +327 0 2 1 0 7 2 0 39 +328 0 2 1 0 8 2 0 40 +329 0 2 1 0 9 2 0 41 +330 0 2 1 0 10 2 0 42 +331 0 2 1 0 11 2 0 43 +332 0 2 1 0 12 2 0 44 +333 0 2 1 0 13 2 0 45 +334 0 2 1 0 14 2 0 46 +335 0 2 1 0 15 2 0 47 +336 0 2 1 0 16 2 0 48 +337 0 2 1 0 17 2 0 49 +338 0 2 1 0 18 2 0 50 +339 0 2 1 0 19 2 0 51 +340 0 2 1 0 20 2 0 52 +341 0 2 1 0 21 2 0 53 +342 0 2 1 0 22 2 0 54 +343 0 2 1 0 23 2 0 55 +344 0 2 1 0 24 2 0 56 +345 0 2 1 0 25 2 0 57 +346 0 2 1 0 26 2 0 58 +347 0 2 1 0 27 2 0 59 +348 0 2 1 0 28 2 0 60 +349 0 2 1 0 29 2 0 61 +350 0 2 1 0 30 2 0 62 +351 0 2 1 0 31 2 0 63 +352 0 2 1 1 0 2 0 0 +353 0 2 1 1 1 2 0 1 +354 0 2 1 1 2 2 0 2 +355 0 2 1 1 3 2 0 3 +356 0 2 1 1 4 2 0 4 +357 0 2 1 1 5 2 0 5 +358 0 2 1 1 6 2 0 6 +359 0 2 1 1 7 2 0 7 +360 0 2 1 1 8 2 0 8 +361 0 2 1 1 9 2 0 9 +362 0 2 1 1 10 2 0 10 +363 0 2 1 1 11 2 0 11 +364 0 2 1 1 12 2 0 12 +365 0 2 1 1 13 2 0 13 +366 0 2 1 1 14 2 0 14 +367 0 2 1 1 15 2 0 15 +368 0 2 1 1 16 2 0 16 +369 0 2 1 1 17 2 0 17 +370 0 2 1 1 18 2 0 18 +371 0 2 1 1 19 2 0 19 +372 0 2 1 1 20 2 0 20 +373 0 2 1 1 21 2 0 21 +374 0 2 1 1 22 2 0 22 +375 0 2 1 1 23 2 0 23 +376 0 2 1 1 24 2 0 24 +377 0 2 1 1 25 2 0 25 +378 0 2 1 1 26 2 0 26 +379 0 2 1 1 27 2 0 27 +380 0 2 1 1 28 2 0 28 +381 0 2 1 1 29 2 0 29 +382 0 2 1 1 30 2 0 30 +383 0 2 1 1 31 2 0 31 +384 0 3 0 0 0 3 1 32 +385 0 3 0 0 1 3 1 33 +386 0 3 0 0 2 3 1 34 +387 0 3 0 0 3 3 1 35 +388 0 3 0 0 4 3 1 36 +389 0 3 0 0 5 3 1 37 +390 0 3 0 0 6 3 1 38 +391 0 3 0 0 7 3 1 39 +392 0 3 0 0 8 3 1 40 +393 0 3 0 0 9 3 1 41 +394 0 3 0 0 10 3 1 42 +395 0 3 0 0 11 3 1 43 +396 0 3 0 0 12 3 1 44 +397 0 3 0 0 13 3 1 45 +398 0 3 0 0 14 3 1 46 +399 0 3 0 0 15 3 1 47 +400 0 3 0 0 16 3 1 48 +401 0 3 0 0 17 3 1 49 +402 0 3 0 0 18 3 1 50 +403 0 3 0 0 19 3 1 51 +404 0 3 0 0 20 3 1 52 +405 0 3 0 0 21 3 1 53 +406 0 3 0 0 22 3 1 54 +407 0 3 0 0 23 3 1 55 +408 0 3 0 0 24 3 1 56 +409 0 3 0 0 25 3 1 57 +410 0 3 0 0 26 3 1 58 +411 0 3 0 0 27 3 1 59 +412 0 3 0 0 28 3 1 60 +413 0 3 0 0 29 3 1 61 +414 0 3 0 0 30 3 1 62 +415 0 3 0 0 31 3 1 63 +416 0 3 0 1 0 3 1 0 +417 0 3 0 1 1 3 1 1 +418 0 3 0 1 2 3 1 2 +419 0 3 0 1 3 3 1 3 +420 0 3 0 1 4 3 1 4 +421 0 3 0 1 5 3 1 5 +422 0 3 0 1 6 3 1 6 +423 0 3 0 1 7 3 1 7 +424 0 3 0 1 8 3 1 8 +425 0 3 0 1 9 3 1 9 +426 0 3 0 1 10 3 1 10 +427 0 3 0 1 11 3 1 11 +428 0 3 0 1 12 3 1 12 +429 0 3 0 1 13 3 1 13 +430 0 3 0 1 14 3 1 14 +431 0 3 0 1 15 3 1 15 +432 0 3 0 1 16 3 1 16 +433 0 3 0 1 17 3 1 17 +434 0 3 0 1 18 3 1 18 +435 0 3 0 1 19 3 1 19 +436 0 3 0 1 20 3 1 20 +437 0 3 0 1 21 3 1 21 +438 0 3 0 1 22 3 1 22 +439 0 3 0 1 23 3 1 23 +440 0 3 0 1 24 3 1 24 +441 0 3 0 1 25 3 1 25 +442 0 3 0 1 26 3 1 26 +443 0 3 0 1 27 3 1 27 +444 0 3 0 1 28 3 1 28 +445 0 3 0 1 29 3 1 29 +446 0 3 0 1 30 3 1 30 +447 0 3 0 1 31 3 1 31 +448 0 3 1 0 0 3 0 32 +449 0 3 1 0 1 3 0 33 +450 0 3 1 0 2 3 0 34 +451 0 3 1 0 3 3 0 35 +452 0 3 1 0 4 3 0 36 +453 0 3 1 0 5 3 0 37 +454 0 3 1 0 6 3 0 38 +455 0 3 1 0 7 3 0 39 +456 0 3 1 0 8 3 0 40 +457 0 3 1 0 9 3 0 41 +458 0 3 1 0 10 3 0 42 +459 0 3 1 0 11 3 0 43 +460 0 3 1 0 12 3 0 44 +461 0 3 1 0 13 3 0 45 +462 0 3 1 0 14 3 0 46 +463 0 3 1 0 15 3 0 47 +464 0 3 1 0 16 3 0 48 +465 0 3 1 0 17 3 0 49 +466 0 3 1 0 18 3 0 50 +467 0 3 1 0 19 3 0 51 +468 0 3 1 0 20 3 0 52 +469 0 3 1 0 21 3 0 53 +470 0 3 1 0 22 3 0 54 +471 0 3 1 0 23 3 0 55 +472 0 3 1 0 24 3 0 56 +473 0 3 1 0 25 3 0 57 +474 0 3 1 0 26 3 0 58 +475 0 3 1 0 27 3 0 59 +476 0 3 1 0 28 3 0 60 +477 0 3 1 0 29 3 0 61 +478 0 3 1 0 30 3 0 62 +479 0 3 1 0 31 3 0 63 +480 0 3 1 1 0 3 0 0 +481 0 3 1 1 1 3 0 1 +482 0 3 1 1 2 3 0 2 +483 0 3 1 1 3 3 0 3 +484 0 3 1 1 4 3 0 4 +485 0 3 1 1 5 3 0 5 +486 0 3 1 1 6 3 0 6 +487 0 3 1 1 7 3 0 7 +488 0 3 1 1 8 3 0 8 +489 0 3 1 1 9 3 0 9 +490 0 3 1 1 10 3 0 10 +491 0 3 1 1 11 3 0 11 +492 0 3 1 1 12 3 0 12 +493 0 3 1 1 13 3 0 13 +494 0 3 1 1 14 3 0 14 +495 0 3 1 1 15 3 0 15 +496 0 3 1 1 16 3 0 16 +497 0 3 1 1 17 3 0 17 +498 0 3 1 1 18 3 0 18 +499 0 3 1 1 19 3 0 19 +500 0 3 1 1 20 3 0 20 +501 0 3 1 1 21 3 0 21 +502 0 3 1 1 22 3 0 22 +503 0 3 1 1 23 3 0 23 +504 0 3 1 1 24 3 0 24 +505 0 3 1 1 25 3 0 25 +506 0 3 1 1 26 3 0 26 +507 0 3 1 1 27 3 0 27 +508 0 3 1 1 28 3 0 28 +509 0 3 1 1 29 3 0 29 +510 0 3 1 1 30 3 0 30 +511 0 3 1 1 31 3 0 31 +512 0 4 0 0 0 4 1 32 +513 0 4 0 0 1 4 1 33 +514 0 4 0 0 2 4 1 34 +515 0 4 0 0 3 4 1 35 +516 0 4 0 0 4 4 1 36 +517 0 4 0 0 5 4 1 37 +518 0 4 0 0 6 4 1 38 +519 0 4 0 0 7 4 1 39 +520 0 4 0 0 8 4 1 40 +521 0 4 0 0 9 4 1 41 +522 0 4 0 0 10 4 1 42 +523 0 4 0 0 11 4 1 43 +524 0 4 0 0 12 4 1 44 +525 0 4 0 0 13 4 1 45 +526 0 4 0 0 14 4 1 46 +527 0 4 0 0 15 4 1 47 +528 0 4 0 0 16 4 1 48 +529 0 4 0 0 17 4 1 49 +530 0 4 0 0 18 4 1 50 +531 0 4 0 0 19 4 1 51 +532 0 4 0 0 20 4 1 52 +533 0 4 0 0 21 4 1 53 +534 0 4 0 0 22 4 1 54 +535 0 4 0 0 23 4 1 55 +536 0 4 0 0 24 4 1 56 +537 0 4 0 0 25 4 1 57 +538 0 4 0 0 26 4 1 58 +539 0 4 0 0 27 4 1 59 +540 0 4 0 0 28 4 1 60 +541 0 4 0 0 29 4 1 61 +542 0 4 0 0 30 4 1 62 +543 0 4 0 0 31 4 1 63 +544 0 4 0 1 0 4 1 0 +545 0 4 0 1 1 4 1 1 +546 0 4 0 1 2 4 1 2 +547 0 4 0 1 3 4 1 3 +548 0 4 0 1 4 4 1 4 +549 0 4 0 1 5 4 1 5 +550 0 4 0 1 6 4 1 6 +551 0 4 0 1 7 4 1 7 +552 0 4 0 1 8 4 1 8 +553 0 4 0 1 9 4 1 9 +554 0 4 0 1 10 4 1 10 +555 0 4 0 1 11 4 1 11 +556 0 4 0 1 12 4 1 12 +557 0 4 0 1 13 4 1 13 +558 0 4 0 1 14 4 1 14 +559 0 4 0 1 15 4 1 15 +560 0 4 0 1 16 4 1 16 +561 0 4 0 1 17 4 1 17 +562 0 4 0 1 18 4 1 18 +563 0 4 0 1 19 4 1 19 +564 0 4 0 1 20 4 1 20 +565 0 4 0 1 21 4 1 21 +566 0 4 0 1 22 4 1 22 +567 0 4 0 1 23 4 1 23 +568 0 4 0 1 24 4 1 24 +569 0 4 0 1 25 4 1 25 +570 0 4 0 1 26 4 1 26 +571 0 4 0 1 27 4 1 27 +572 0 4 0 1 28 4 1 28 +573 0 4 0 1 29 4 1 29 +574 0 4 0 1 30 4 1 30 +575 0 4 0 1 31 4 1 31 +576 0 4 1 0 0 4 0 32 +577 0 4 1 0 1 4 0 33 +578 0 4 1 0 2 4 0 34 +579 0 4 1 0 3 4 0 35 +580 0 4 1 0 4 4 0 36 +581 0 4 1 0 5 4 0 37 +582 0 4 1 0 6 4 0 38 +583 0 4 1 0 7 4 0 39 +584 0 4 1 0 8 4 0 40 +585 0 4 1 0 9 4 0 41 +586 0 4 1 0 10 4 0 42 +587 0 4 1 0 11 4 0 43 +588 0 4 1 0 12 4 0 44 +589 0 4 1 0 13 4 0 45 +590 0 4 1 0 14 4 0 46 +591 0 4 1 0 15 4 0 47 +592 0 4 1 0 16 4 0 48 +593 0 4 1 0 17 4 0 49 +594 0 4 1 0 18 4 0 50 +595 0 4 1 0 19 4 0 51 +596 0 4 1 0 20 4 0 52 +597 0 4 1 0 21 4 0 53 +598 0 4 1 0 22 4 0 54 +599 0 4 1 0 23 4 0 55 +600 0 4 1 0 24 4 0 56 +601 0 4 1 0 25 4 0 57 +602 0 4 1 0 26 4 0 58 +603 0 4 1 0 27 4 0 59 +604 0 4 1 0 28 4 0 60 +605 0 4 1 0 29 4 0 61 +606 0 4 1 0 30 4 0 62 +607 0 4 1 0 31 4 0 63 +608 0 4 1 1 0 4 0 0 +609 0 4 1 1 1 4 0 1 +610 0 4 1 1 2 4 0 2 +611 0 4 1 1 3 4 0 3 +612 0 4 1 1 4 4 0 4 +613 0 4 1 1 5 4 0 5 +614 0 4 1 1 6 4 0 6 +615 0 4 1 1 7 4 0 7 +616 0 4 1 1 8 4 0 8 +617 0 4 1 1 9 4 0 9 +618 0 4 1 1 10 4 0 10 +619 0 4 1 1 11 4 0 11 +620 0 4 1 1 12 4 0 12 +621 0 4 1 1 13 4 0 13 +622 0 4 1 1 14 4 0 14 +623 0 4 1 1 15 4 0 15 +624 0 4 1 1 16 4 0 16 +625 0 4 1 1 17 4 0 17 +626 0 4 1 1 18 4 0 18 +627 0 4 1 1 19 4 0 19 +628 0 4 1 1 20 4 0 20 +629 0 4 1 1 21 4 0 21 +630 0 4 1 1 22 4 0 22 +631 0 4 1 1 23 4 0 23 +632 0 4 1 1 24 4 0 24 +633 0 4 1 1 25 4 0 25 +634 0 4 1 1 26 4 0 26 +635 0 4 1 1 27 4 0 27 +636 0 4 1 1 28 4 0 28 +637 0 4 1 1 29 4 0 29 +638 0 4 1 1 30 4 0 30 +639 0 4 1 1 31 4 0 31 +640 0 5 0 0 0 5 1 32 +641 0 5 0 0 1 5 1 33 +642 0 5 0 0 2 5 1 34 +643 0 5 0 0 3 5 1 35 +644 0 5 0 0 4 5 1 36 +645 0 5 0 0 5 5 1 37 +646 0 5 0 0 6 5 1 38 +647 0 5 0 0 7 5 1 39 +648 0 5 0 0 8 5 1 40 +649 0 5 0 0 9 5 1 41 +650 0 5 0 0 10 5 1 42 +651 0 5 0 0 11 5 1 43 +652 0 5 0 0 12 5 1 44 +653 0 5 0 0 13 5 1 45 +654 0 5 0 0 14 5 1 46 +655 0 5 0 0 15 5 1 47 +656 0 5 0 0 16 5 1 48 +657 0 5 0 0 17 5 1 49 +658 0 5 0 0 18 5 1 50 +659 0 5 0 0 19 5 1 51 +660 0 5 0 0 20 5 1 52 +661 0 5 0 0 21 5 1 53 +662 0 5 0 0 22 5 1 54 +663 0 5 0 0 23 5 1 55 +664 0 5 0 0 24 5 1 56 +665 0 5 0 0 25 5 1 57 +666 0 5 0 0 26 5 1 58 +667 0 5 0 0 27 5 1 59 +668 0 5 0 0 28 5 1 60 +669 0 5 0 0 29 5 1 61 +670 0 5 0 0 30 5 1 62 +671 0 5 0 0 31 5 1 63 +672 0 5 0 1 0 5 1 0 +673 0 5 0 1 1 5 1 1 +674 0 5 0 1 2 5 1 2 +675 0 5 0 1 3 5 1 3 +676 0 5 0 1 4 5 1 4 +677 0 5 0 1 5 5 1 5 +678 0 5 0 1 6 5 1 6 +679 0 5 0 1 7 5 1 7 +680 0 5 0 1 8 5 1 8 +681 0 5 0 1 9 5 1 9 +682 0 5 0 1 10 5 1 10 +683 0 5 0 1 11 5 1 11 +684 0 5 0 1 12 5 1 12 +685 0 5 0 1 13 5 1 13 +686 0 5 0 1 14 5 1 14 +687 0 5 0 1 15 5 1 15 +688 0 5 0 1 16 5 1 16 +689 0 5 0 1 17 5 1 17 +690 0 5 0 1 18 5 1 18 +691 0 5 0 1 19 5 1 19 +692 0 5 0 1 20 5 1 20 +693 0 5 0 1 21 5 1 21 +694 0 5 0 1 22 5 1 22 +695 0 5 0 1 23 5 1 23 +696 0 5 0 1 24 5 1 24 +697 0 5 0 1 25 5 1 25 +698 0 5 0 1 26 5 1 26 +699 0 5 0 1 27 5 1 27 +700 0 5 0 1 28 5 1 28 +701 0 5 0 1 29 5 1 29 +702 0 5 0 1 30 5 1 30 +703 0 5 0 1 31 5 1 31 +704 0 5 1 0 0 5 0 32 +705 0 5 1 0 1 5 0 33 +706 0 5 1 0 2 5 0 34 +707 0 5 1 0 3 5 0 35 +708 0 5 1 0 4 5 0 36 +709 0 5 1 0 5 5 0 37 +710 0 5 1 0 6 5 0 38 +711 0 5 1 0 7 5 0 39 +712 0 5 1 0 8 5 0 40 +713 0 5 1 0 9 5 0 41 +714 0 5 1 0 10 5 0 42 +715 0 5 1 0 11 5 0 43 +716 0 5 1 0 12 5 0 44 +717 0 5 1 0 13 5 0 45 +718 0 5 1 0 14 5 0 46 +719 0 5 1 0 15 5 0 47 +720 0 5 1 0 16 5 0 48 +721 0 5 1 0 17 5 0 49 +722 0 5 1 0 18 5 0 50 +723 0 5 1 0 19 5 0 51 +724 0 5 1 0 20 5 0 52 +725 0 5 1 0 21 5 0 53 +726 0 5 1 0 22 5 0 54 +727 0 5 1 0 23 5 0 55 +728 0 5 1 0 24 5 0 56 +729 0 5 1 0 25 5 0 57 +730 0 5 1 0 26 5 0 58 +731 0 5 1 0 27 5 0 59 +732 0 5 1 0 28 5 0 60 +733 0 5 1 0 29 5 0 61 +734 0 5 1 0 30 5 0 62 +735 0 5 1 0 31 5 0 63 +736 0 5 1 1 0 5 0 0 +737 0 5 1 1 1 5 0 1 +738 0 5 1 1 2 5 0 2 +739 0 5 1 1 3 5 0 3 +740 0 5 1 1 4 5 0 4 +741 0 5 1 1 5 5 0 5 +742 0 5 1 1 6 5 0 6 +743 0 5 1 1 7 5 0 7 +744 0 5 1 1 8 5 0 8 +745 0 5 1 1 9 5 0 9 +746 0 5 1 1 10 5 0 10 +747 0 5 1 1 11 5 0 11 +748 0 5 1 1 12 5 0 12 +749 0 5 1 1 13 5 0 13 +750 0 5 1 1 14 5 0 14 +751 0 5 1 1 15 5 0 15 +752 0 5 1 1 16 5 0 16 +753 0 5 1 1 17 5 0 17 +754 0 5 1 1 18 5 0 18 +755 0 5 1 1 19 5 0 19 +756 0 5 1 1 20 5 0 20 +757 0 5 1 1 21 5 0 21 +758 0 5 1 1 22 5 0 22 +759 0 5 1 1 23 5 0 23 +760 0 5 1 1 24 5 0 24 +761 0 5 1 1 25 5 0 25 +762 0 5 1 1 26 5 0 26 +763 0 5 1 1 27 5 0 27 +764 0 5 1 1 28 5 0 28 +765 0 5 1 1 29 5 0 29 +766 0 5 1 1 30 5 0 30 +767 0 5 1 1 31 5 0 31 +768 0 6 0 0 0 6 1 32 +769 0 6 0 0 1 6 1 33 +770 0 6 0 0 2 6 1 34 +771 0 6 0 0 3 6 1 35 +772 0 6 0 0 4 6 1 36 +773 0 6 0 0 5 6 1 37 +774 0 6 0 0 6 6 1 38 +775 0 6 0 0 7 6 1 39 +776 0 6 0 0 8 6 1 40 +777 0 6 0 0 9 6 1 41 +778 0 6 0 0 10 6 1 42 +779 0 6 0 0 11 6 1 43 +780 0 6 0 0 12 6 1 44 +781 0 6 0 0 13 6 1 45 +782 0 6 0 0 14 6 1 46 +783 0 6 0 0 15 6 1 47 +784 0 6 0 0 16 6 1 48 +785 0 6 0 0 17 6 1 49 +786 0 6 0 0 18 6 1 50 +787 0 6 0 0 19 6 1 51 +788 0 6 0 0 20 6 1 52 +789 0 6 0 0 21 6 1 53 +790 0 6 0 0 22 6 1 54 +791 0 6 0 0 23 6 1 55 +792 0 6 0 0 24 6 1 56 +793 0 6 0 0 25 6 1 57 +794 0 6 0 0 26 6 1 58 +795 0 6 0 0 27 6 1 59 +796 0 6 0 0 28 6 1 60 +797 0 6 0 0 29 6 1 61 +798 0 6 0 0 30 6 1 62 +799 0 6 0 0 31 6 1 63 +800 0 6 0 1 0 6 1 0 +801 0 6 0 1 1 6 1 1 +802 0 6 0 1 2 6 1 2 +803 0 6 0 1 3 6 1 3 +804 0 6 0 1 4 6 1 4 +805 0 6 0 1 5 6 1 5 +806 0 6 0 1 6 6 1 6 +807 0 6 0 1 7 6 1 7 +808 0 6 0 1 8 6 1 8 +809 0 6 0 1 9 6 1 9 +810 0 6 0 1 10 6 1 10 +811 0 6 0 1 11 6 1 11 +812 0 6 0 1 12 6 1 12 +813 0 6 0 1 13 6 1 13 +814 0 6 0 1 14 6 1 14 +815 0 6 0 1 15 6 1 15 +816 0 6 0 1 16 6 1 16 +817 0 6 0 1 17 6 1 17 +818 0 6 0 1 18 6 1 18 +819 0 6 0 1 19 6 1 19 +820 0 6 0 1 20 6 1 20 +821 0 6 0 1 21 6 1 21 +822 0 6 0 1 22 6 1 22 +823 0 6 0 1 23 6 1 23 +824 0 6 0 1 24 6 1 24 +825 0 6 0 1 25 6 1 25 +826 0 6 0 1 26 6 1 26 +827 0 6 0 1 27 6 1 27 +828 0 6 0 1 28 6 1 28 +829 0 6 0 1 29 6 1 29 +830 0 6 0 1 30 6 1 30 +831 0 6 0 1 31 6 1 31 +832 0 6 1 0 0 6 0 32 +833 0 6 1 0 1 6 0 33 +834 0 6 1 0 2 6 0 34 +835 0 6 1 0 3 6 0 35 +836 0 6 1 0 4 6 0 36 +837 0 6 1 0 5 6 0 37 +838 0 6 1 0 6 6 0 38 +839 0 6 1 0 7 6 0 39 +840 0 6 1 0 8 6 0 40 +841 0 6 1 0 9 6 0 41 +842 0 6 1 0 10 6 0 42 +843 0 6 1 0 11 6 0 43 +844 0 6 1 0 12 6 0 44 +845 0 6 1 0 13 6 0 45 +846 0 6 1 0 14 6 0 46 +847 0 6 1 0 15 6 0 47 +848 0 6 1 0 16 6 0 48 +849 0 6 1 0 17 6 0 49 +850 0 6 1 0 18 6 0 50 +851 0 6 1 0 19 6 0 51 +852 0 6 1 0 20 6 0 52 +853 0 6 1 0 21 6 0 53 +854 0 6 1 0 22 6 0 54 +855 0 6 1 0 23 6 0 55 +856 0 6 1 0 24 6 0 56 +857 0 6 1 0 25 6 0 57 +858 0 6 1 0 26 6 0 58 +859 0 6 1 0 27 6 0 59 +860 0 6 1 0 28 6 0 60 +861 0 6 1 0 29 6 0 61 +862 0 6 1 0 30 6 0 62 +863 0 6 1 0 31 6 0 63 +864 0 6 1 1 0 6 0 0 +865 0 6 1 1 1 6 0 1 +866 0 6 1 1 2 6 0 2 +867 0 6 1 1 3 6 0 3 +868 0 6 1 1 4 6 0 4 +869 0 6 1 1 5 6 0 5 +870 0 6 1 1 6 6 0 6 +871 0 6 1 1 7 6 0 7 +872 0 6 1 1 8 6 0 8 +873 0 6 1 1 9 6 0 9 +874 0 6 1 1 10 6 0 10 +875 0 6 1 1 11 6 0 11 +876 0 6 1 1 12 6 0 12 +877 0 6 1 1 13 6 0 13 +878 0 6 1 1 14 6 0 14 +879 0 6 1 1 15 6 0 15 +880 0 6 1 1 16 6 0 16 +881 0 6 1 1 17 6 0 17 +882 0 6 1 1 18 6 0 18 +883 0 6 1 1 19 6 0 19 +884 0 6 1 1 20 6 0 20 +885 0 6 1 1 21 6 0 21 +886 0 6 1 1 22 6 0 22 +887 0 6 1 1 23 6 0 23 +888 0 6 1 1 24 6 0 24 +889 0 6 1 1 25 6 0 25 +890 0 6 1 1 26 6 0 26 +891 0 6 1 1 27 6 0 27 +892 0 6 1 1 28 6 0 28 +893 0 6 1 1 29 6 0 29 +894 0 6 1 1 30 6 0 30 +895 0 6 1 1 31 6 0 31 +896 0 7 0 0 0 7 1 32 +897 0 7 0 0 1 7 1 33 +898 0 7 0 0 2 7 1 34 +899 0 7 0 0 3 7 1 35 +900 0 7 0 0 4 7 1 36 +901 0 7 0 0 5 7 1 37 +902 0 7 0 0 6 7 1 38 +903 0 7 0 0 7 7 1 39 +904 0 7 0 0 8 7 1 40 +905 0 7 0 0 9 7 1 41 +906 0 7 0 0 10 7 1 42 +907 0 7 0 0 11 7 1 43 +908 0 7 0 0 12 7 1 44 +909 0 7 0 0 13 7 1 45 +910 0 7 0 0 14 7 1 46 +911 0 7 0 0 15 7 1 47 +912 0 7 0 0 16 7 1 48 +913 0 7 0 0 17 7 1 49 +914 0 7 0 0 18 7 1 50 +915 0 7 0 0 19 7 1 51 +916 0 7 0 0 20 7 1 52 +917 0 7 0 0 21 7 1 53 +918 0 7 0 0 22 7 1 54 +919 0 7 0 0 23 7 1 55 +920 0 7 0 0 24 7 1 56 +921 0 7 0 0 25 7 1 57 +922 0 7 0 0 26 7 1 58 +923 0 7 0 0 27 7 1 59 +924 0 7 0 0 28 7 1 60 +925 0 7 0 0 29 7 1 61 +926 0 7 0 0 30 7 1 62 +927 0 7 0 0 31 7 1 63 +928 0 7 0 1 0 7 1 0 +929 0 7 0 1 1 7 1 1 +930 0 7 0 1 2 7 1 2 +931 0 7 0 1 3 7 1 3 +932 0 7 0 1 4 7 1 4 +933 0 7 0 1 5 7 1 5 +934 0 7 0 1 6 7 1 6 +935 0 7 0 1 7 7 1 7 +936 0 7 0 1 8 7 1 8 +937 0 7 0 1 9 7 1 9 +938 0 7 0 1 10 7 1 10 +939 0 7 0 1 11 7 1 11 +940 0 7 0 1 12 7 1 12 +941 0 7 0 1 13 7 1 13 +942 0 7 0 1 14 7 1 14 +943 0 7 0 1 15 7 1 15 +944 0 7 0 1 16 7 1 16 +945 0 7 0 1 17 7 1 17 +946 0 7 0 1 18 7 1 18 +947 0 7 0 1 19 7 1 19 +948 0 7 0 1 20 7 1 20 +949 0 7 0 1 21 7 1 21 +950 0 7 0 1 22 7 1 22 +951 0 7 0 1 23 7 1 23 +952 0 7 0 1 24 7 1 24 +953 0 7 0 1 25 7 1 25 +954 0 7 0 1 26 7 1 26 +955 0 7 0 1 27 7 1 27 +956 0 7 0 1 28 7 1 28 +957 0 7 0 1 29 7 1 29 +958 0 7 0 1 30 7 1 30 +959 0 7 0 1 31 7 1 31 +960 0 7 1 0 0 7 0 32 +961 0 7 1 0 1 7 0 33 +962 0 7 1 0 2 7 0 34 +963 0 7 1 0 3 7 0 35 +964 0 7 1 0 4 7 0 36 +965 0 7 1 0 5 7 0 37 +966 0 7 1 0 6 7 0 38 +967 0 7 1 0 7 7 0 39 +968 0 7 1 0 8 7 0 40 +969 0 7 1 0 9 7 0 41 +970 0 7 1 0 10 7 0 42 +971 0 7 1 0 11 7 0 43 +972 0 7 1 0 12 7 0 44 +973 0 7 1 0 13 7 0 45 +974 0 7 1 0 14 7 0 46 +975 0 7 1 0 15 7 0 47 +976 0 7 1 0 16 7 0 48 +977 0 7 1 0 17 7 0 49 +978 0 7 1 0 18 7 0 50 +979 0 7 1 0 19 7 0 51 +980 0 7 1 0 20 7 0 52 +981 0 7 1 0 21 7 0 53 +982 0 7 1 0 22 7 0 54 +983 0 7 1 0 23 7 0 55 +984 0 7 1 0 24 7 0 56 +985 0 7 1 0 25 7 0 57 +986 0 7 1 0 26 7 0 58 +987 0 7 1 0 27 7 0 59 +988 0 7 1 0 28 7 0 60 +989 0 7 1 0 29 7 0 61 +990 0 7 1 0 30 7 0 62 +991 0 7 1 0 31 7 0 63 +992 0 7 1 1 0 7 0 0 +993 0 7 1 1 1 7 0 1 +994 0 7 1 1 2 7 0 2 +995 0 7 1 1 3 7 0 3 +996 0 7 1 1 4 7 0 4 +997 0 7 1 1 5 7 0 5 +998 0 7 1 1 6 7 0 6 +999 0 7 1 1 7 7 0 7 +1000 0 7 1 1 8 7 0 8 +1001 0 7 1 1 9 7 0 9 +1002 0 7 1 1 10 7 0 10 +1003 0 7 1 1 11 7 0 11 +1004 0 7 1 1 12 7 0 12 +1005 0 7 1 1 13 7 0 13 +1006 0 7 1 1 14 7 0 14 +1007 0 7 1 1 15 7 0 15 +1008 0 7 1 1 16 7 0 16 +1009 0 7 1 1 17 7 0 17 +1010 0 7 1 1 18 7 0 18 +1011 0 7 1 1 19 7 0 19 +1012 0 7 1 1 20 7 0 20 +1013 0 7 1 1 21 7 0 21 +1014 0 7 1 1 22 7 0 22 +1015 0 7 1 1 23 7 0 23 +1016 0 7 1 1 24 7 0 24 +1017 0 7 1 1 25 7 0 25 +1018 0 7 1 1 26 7 0 26 +1019 0 7 1 1 27 7 0 27 +1020 0 7 1 1 28 7 0 28 +1021 0 7 1 1 29 7 0 29 +1022 0 7 1 1 30 7 0 30 +1023 0 7 1 1 31 7 0 31 +1024 1 0 0 0 0 8 1 32 +1025 1 0 0 0 1 8 1 33 +1026 1 0 0 0 2 8 1 34 +1027 1 0 0 0 3 8 1 35 +1028 1 0 0 0 4 8 1 36 +1029 1 0 0 0 5 8 1 37 +1030 1 0 0 0 6 8 1 38 +1031 1 0 0 0 7 8 1 39 +1032 1 0 0 0 8 8 1 40 +1033 1 0 0 0 9 8 1 41 +1034 1 0 0 0 10 8 1 42 +1035 1 0 0 0 11 8 1 43 +1036 1 0 0 0 12 8 1 44 +1037 1 0 0 0 13 8 1 45 +1038 1 0 0 0 14 8 1 46 +1039 1 0 0 0 15 8 1 47 +1040 1 0 0 0 16 8 1 48 +1041 1 0 0 0 17 8 1 49 +1042 1 0 0 0 18 8 1 50 +1043 1 0 0 0 19 8 1 51 +1044 1 0 0 0 20 8 1 52 +1045 1 0 0 0 21 8 1 53 +1046 1 0 0 0 22 8 1 54 +1047 1 0 0 0 23 8 1 55 +1048 1 0 0 0 24 8 1 56 +1049 1 0 0 0 25 8 1 57 +1050 1 0 0 0 26 8 1 58 +1051 1 0 0 0 27 8 1 59 +1052 1 0 0 0 28 8 1 60 +1053 1 0 0 0 29 8 1 61 +1054 1 0 0 0 30 8 1 62 +1055 1 0 0 0 31 8 1 63 +1056 1 0 0 1 0 8 1 0 +1057 1 0 0 1 1 8 1 1 +1058 1 0 0 1 2 8 1 2 +1059 1 0 0 1 3 8 1 3 +1060 1 0 0 1 4 8 1 4 +1061 1 0 0 1 5 8 1 5 +1062 1 0 0 1 6 8 1 6 +1063 1 0 0 1 7 8 1 7 +1064 1 0 0 1 8 8 1 8 +1065 1 0 0 1 9 8 1 9 +1066 1 0 0 1 10 8 1 10 +1067 1 0 0 1 11 8 1 11 +1068 1 0 0 1 12 8 1 12 +1069 1 0 0 1 13 8 1 13 +1070 1 0 0 1 14 8 1 14 +1071 1 0 0 1 15 8 1 15 +1072 1 0 0 1 16 8 1 16 +1073 1 0 0 1 17 8 1 17 +1074 1 0 0 1 18 8 1 18 +1075 1 0 0 1 19 8 1 19 +1076 1 0 0 1 20 8 1 20 +1077 1 0 0 1 21 8 1 21 +1078 1 0 0 1 22 8 1 22 +1079 1 0 0 1 23 8 1 23 +1080 1 0 0 1 24 8 1 24 +1081 1 0 0 1 25 8 1 25 +1082 1 0 0 1 26 8 1 26 +1083 1 0 0 1 27 8 1 27 +1084 1 0 0 1 28 8 1 28 +1085 1 0 0 1 29 8 1 29 +1086 1 0 0 1 30 8 1 30 +1087 1 0 0 1 31 8 1 31 +1088 1 0 1 0 0 8 0 32 +1089 1 0 1 0 1 8 0 33 +1090 1 0 1 0 2 8 0 34 +1091 1 0 1 0 3 8 0 35 +1092 1 0 1 0 4 8 0 36 +1093 1 0 1 0 5 8 0 37 +1094 1 0 1 0 6 8 0 38 +1095 1 0 1 0 7 8 0 39 +1096 1 0 1 0 8 8 0 40 +1097 1 0 1 0 9 8 0 41 +1098 1 0 1 0 10 8 0 42 +1099 1 0 1 0 11 8 0 43 +1100 1 0 1 0 12 8 0 44 +1101 1 0 1 0 13 8 0 45 +1102 1 0 1 0 14 8 0 46 +1103 1 0 1 0 15 8 0 47 +1104 1 0 1 0 16 8 0 48 +1105 1 0 1 0 17 8 0 49 +1106 1 0 1 0 18 8 0 50 +1107 1 0 1 0 19 8 0 51 +1108 1 0 1 0 20 8 0 52 +1109 1 0 1 0 21 8 0 53 +1110 1 0 1 0 22 8 0 54 +1111 1 0 1 0 23 8 0 55 +1112 1 0 1 0 24 8 0 56 +1113 1 0 1 0 25 8 0 57 +1114 1 0 1 0 26 8 0 58 +1115 1 0 1 0 27 8 0 59 +1116 1 0 1 0 28 8 0 60 +1117 1 0 1 0 29 8 0 61 +1118 1 0 1 0 30 8 0 62 +1119 1 0 1 0 31 8 0 63 +1120 1 0 1 1 0 8 0 0 +1121 1 0 1 1 1 8 0 1 +1122 1 0 1 1 2 8 0 2 +1123 1 0 1 1 3 8 0 3 +1124 1 0 1 1 4 8 0 4 +1125 1 0 1 1 5 8 0 5 +1126 1 0 1 1 6 8 0 6 +1127 1 0 1 1 7 8 0 7 +1128 1 0 1 1 8 8 0 8 +1129 1 0 1 1 9 8 0 9 +1130 1 0 1 1 10 8 0 10 +1131 1 0 1 1 11 8 0 11 +1132 1 0 1 1 12 8 0 12 +1133 1 0 1 1 13 8 0 13 +1134 1 0 1 1 14 8 0 14 +1135 1 0 1 1 15 8 0 15 +1136 1 0 1 1 16 8 0 16 +1137 1 0 1 1 17 8 0 17 +1138 1 0 1 1 18 8 0 18 +1139 1 0 1 1 19 8 0 19 +1140 1 0 1 1 20 8 0 20 +1141 1 0 1 1 21 8 0 21 +1142 1 0 1 1 22 8 0 22 +1143 1 0 1 1 23 8 0 23 +1144 1 0 1 1 24 8 0 24 +1145 1 0 1 1 25 8 0 25 +1146 1 0 1 1 26 8 0 26 +1147 1 0 1 1 27 8 0 27 +1148 1 0 1 1 28 8 0 28 +1149 1 0 1 1 29 8 0 29 +1150 1 0 1 1 30 8 0 30 +1151 1 0 1 1 31 8 0 31 +1152 1 1 0 0 0 9 1 32 +1153 1 1 0 0 1 9 1 33 +1154 1 1 0 0 2 9 1 34 +1155 1 1 0 0 3 9 1 35 +1156 1 1 0 0 4 9 1 36 +1157 1 1 0 0 5 9 1 37 +1158 1 1 0 0 6 9 1 38 +1159 1 1 0 0 7 9 1 39 +1160 1 1 0 0 8 9 1 40 +1161 1 1 0 0 9 9 1 41 +1162 1 1 0 0 10 9 1 42 +1163 1 1 0 0 11 9 1 43 +1164 1 1 0 0 12 9 1 44 +1165 1 1 0 0 13 9 1 45 +1166 1 1 0 0 14 9 1 46 +1167 1 1 0 0 15 9 1 47 +1168 1 1 0 0 16 9 1 48 +1169 1 1 0 0 17 9 1 49 +1170 1 1 0 0 18 9 1 50 +1171 1 1 0 0 19 9 1 51 +1172 1 1 0 0 20 9 1 52 +1173 1 1 0 0 21 9 1 53 +1174 1 1 0 0 22 9 1 54 +1175 1 1 0 0 23 9 1 55 +1176 1 1 0 0 24 9 1 56 +1177 1 1 0 0 25 9 1 57 +1178 1 1 0 0 26 9 1 58 +1179 1 1 0 0 27 9 1 59 +1180 1 1 0 0 28 9 1 60 +1181 1 1 0 0 29 9 1 61 +1182 1 1 0 0 30 9 1 62 +1183 1 1 0 0 31 9 1 63 +1184 1 1 0 1 0 9 1 0 +1185 1 1 0 1 1 9 1 1 +1186 1 1 0 1 2 9 1 2 +1187 1 1 0 1 3 9 1 3 +1188 1 1 0 1 4 9 1 4 +1189 1 1 0 1 5 9 1 5 +1190 1 1 0 1 6 9 1 6 +1191 1 1 0 1 7 9 1 7 +1192 1 1 0 1 8 9 1 8 +1193 1 1 0 1 9 9 1 9 +1194 1 1 0 1 10 9 1 10 +1195 1 1 0 1 11 9 1 11 +1196 1 1 0 1 12 9 1 12 +1197 1 1 0 1 13 9 1 13 +1198 1 1 0 1 14 9 1 14 +1199 1 1 0 1 15 9 1 15 +1200 1 1 0 1 16 9 1 16 +1201 1 1 0 1 17 9 1 17 +1202 1 1 0 1 18 9 1 18 +1203 1 1 0 1 19 9 1 19 +1204 1 1 0 1 20 9 1 20 +1205 1 1 0 1 21 9 1 21 +1206 1 1 0 1 22 9 1 22 +1207 1 1 0 1 23 9 1 23 +1208 1 1 0 1 24 9 1 24 +1209 1 1 0 1 25 9 1 25 +1210 1 1 0 1 26 9 1 26 +1211 1 1 0 1 27 9 1 27 +1212 1 1 0 1 28 9 1 28 +1213 1 1 0 1 29 9 1 29 +1214 1 1 0 1 30 9 1 30 +1215 1 1 0 1 31 9 1 31 +1216 1 1 1 0 0 9 0 32 +1217 1 1 1 0 1 9 0 33 +1218 1 1 1 0 2 9 0 34 +1219 1 1 1 0 3 9 0 35 +1220 1 1 1 0 4 9 0 36 +1221 1 1 1 0 5 9 0 37 +1222 1 1 1 0 6 9 0 38 +1223 1 1 1 0 7 9 0 39 +1224 1 1 1 0 8 9 0 40 +1225 1 1 1 0 9 9 0 41 +1226 1 1 1 0 10 9 0 42 +1227 1 1 1 0 11 9 0 43 +1228 1 1 1 0 12 9 0 44 +1229 1 1 1 0 13 9 0 45 +1230 1 1 1 0 14 9 0 46 +1231 1 1 1 0 15 9 0 47 +1232 1 1 1 0 16 9 0 48 +1233 1 1 1 0 17 9 0 49 +1234 1 1 1 0 18 9 0 50 +1235 1 1 1 0 19 9 0 51 +1236 1 1 1 0 20 9 0 52 +1237 1 1 1 0 21 9 0 53 +1238 1 1 1 0 22 9 0 54 +1239 1 1 1 0 23 9 0 55 +1240 1 1 1 0 24 9 0 56 +1241 1 1 1 0 25 9 0 57 +1242 1 1 1 0 26 9 0 58 +1243 1 1 1 0 27 9 0 59 +1244 1 1 1 0 28 9 0 60 +1245 1 1 1 0 29 9 0 61 +1246 1 1 1 0 30 9 0 62 +1247 1 1 1 0 31 9 0 63 +1248 1 1 1 1 0 9 0 0 +1249 1 1 1 1 1 9 0 1 +1250 1 1 1 1 2 9 0 2 +1251 1 1 1 1 3 9 0 3 +1252 1 1 1 1 4 9 0 4 +1253 1 1 1 1 5 9 0 5 +1254 1 1 1 1 6 9 0 6 +1255 1 1 1 1 7 9 0 7 +1256 1 1 1 1 8 9 0 8 +1257 1 1 1 1 9 9 0 9 +1258 1 1 1 1 10 9 0 10 +1259 1 1 1 1 11 9 0 11 +1260 1 1 1 1 12 9 0 12 +1261 1 1 1 1 13 9 0 13 +1262 1 1 1 1 14 9 0 14 +1263 1 1 1 1 15 9 0 15 +1264 1 1 1 1 16 9 0 16 +1265 1 1 1 1 17 9 0 17 +1266 1 1 1 1 18 9 0 18 +1267 1 1 1 1 19 9 0 19 +1268 1 1 1 1 20 9 0 20 +1269 1 1 1 1 21 9 0 21 +1270 1 1 1 1 22 9 0 22 +1271 1 1 1 1 23 9 0 23 +1272 1 1 1 1 24 9 0 24 +1273 1 1 1 1 25 9 0 25 +1274 1 1 1 1 26 9 0 26 +1275 1 1 1 1 27 9 0 27 +1276 1 1 1 1 28 9 0 28 +1277 1 1 1 1 29 9 0 29 +1278 1 1 1 1 30 9 0 30 +1279 1 1 1 1 31 9 0 31 +1280 1 2 0 0 0 10 1 32 +1281 1 2 0 0 1 10 1 33 +1282 1 2 0 0 2 10 1 34 +1283 1 2 0 0 3 10 1 35 +1284 1 2 0 0 4 10 1 36 +1285 1 2 0 0 5 10 1 37 +1286 1 2 0 0 6 10 1 38 +1287 1 2 0 0 7 10 1 39 +1288 1 2 0 0 8 10 1 40 +1289 1 2 0 0 9 10 1 41 +1290 1 2 0 0 10 10 1 42 +1291 1 2 0 0 11 10 1 43 +1292 1 2 0 0 12 10 1 44 +1293 1 2 0 0 13 10 1 45 +1294 1 2 0 0 14 10 1 46 +1295 1 2 0 0 15 10 1 47 +1296 1 2 0 0 16 10 1 48 +1297 1 2 0 0 17 10 1 49 +1298 1 2 0 0 18 10 1 50 +1299 1 2 0 0 19 10 1 51 +1300 1 2 0 0 20 10 1 52 +1301 1 2 0 0 21 10 1 53 +1302 1 2 0 0 22 10 1 54 +1303 1 2 0 0 23 10 1 55 +1304 1 2 0 0 24 10 1 56 +1305 1 2 0 0 25 10 1 57 +1306 1 2 0 0 26 10 1 58 +1307 1 2 0 0 27 10 1 59 +1308 1 2 0 0 28 10 1 60 +1309 1 2 0 0 29 10 1 61 +1310 1 2 0 0 30 10 1 62 +1311 1 2 0 0 31 10 1 63 +1312 1 2 0 1 0 10 1 0 +1313 1 2 0 1 1 10 1 1 +1314 1 2 0 1 2 10 1 2 +1315 1 2 0 1 3 10 1 3 +1316 1 2 0 1 4 10 1 4 +1317 1 2 0 1 5 10 1 5 +1318 1 2 0 1 6 10 1 6 +1319 1 2 0 1 7 10 1 7 +1320 1 2 0 1 8 10 1 8 +1321 1 2 0 1 9 10 1 9 +1322 1 2 0 1 10 10 1 10 +1323 1 2 0 1 11 10 1 11 +1324 1 2 0 1 12 10 1 12 +1325 1 2 0 1 13 10 1 13 +1326 1 2 0 1 14 10 1 14 +1327 1 2 0 1 15 10 1 15 +1328 1 2 0 1 16 10 1 16 +1329 1 2 0 1 17 10 1 17 +1330 1 2 0 1 18 10 1 18 +1331 1 2 0 1 19 10 1 19 +1332 1 2 0 1 20 10 1 20 +1333 1 2 0 1 21 10 1 21 +1334 1 2 0 1 22 10 1 22 +1335 1 2 0 1 23 10 1 23 +1336 1 2 0 1 24 10 1 24 +1337 1 2 0 1 25 10 1 25 +1338 1 2 0 1 26 10 1 26 +1339 1 2 0 1 27 10 1 27 +1340 1 2 0 1 28 10 1 28 +1341 1 2 0 1 29 10 1 29 +1342 1 2 0 1 30 10 1 30 +1343 1 2 0 1 31 10 1 31 +1344 1 2 1 0 0 10 0 32 +1345 1 2 1 0 1 10 0 33 +1346 1 2 1 0 2 10 0 34 +1347 1 2 1 0 3 10 0 35 +1348 1 2 1 0 4 10 0 36 +1349 1 2 1 0 5 10 0 37 +1350 1 2 1 0 6 10 0 38 +1351 1 2 1 0 7 10 0 39 +1352 1 2 1 0 8 10 0 40 +1353 1 2 1 0 9 10 0 41 +1354 1 2 1 0 10 10 0 42 +1355 1 2 1 0 11 10 0 43 +1356 1 2 1 0 12 10 0 44 +1357 1 2 1 0 13 10 0 45 +1358 1 2 1 0 14 10 0 46 +1359 1 2 1 0 15 10 0 47 +1360 1 2 1 0 16 10 0 48 +1361 1 2 1 0 17 10 0 49 +1362 1 2 1 0 18 10 0 50 +1363 1 2 1 0 19 10 0 51 +1364 1 2 1 0 20 10 0 52 +1365 1 2 1 0 21 10 0 53 +1366 1 2 1 0 22 10 0 54 +1367 1 2 1 0 23 10 0 55 +1368 1 2 1 0 24 10 0 56 +1369 1 2 1 0 25 10 0 57 +1370 1 2 1 0 26 10 0 58 +1371 1 2 1 0 27 10 0 59 +1372 1 2 1 0 28 10 0 60 +1373 1 2 1 0 29 10 0 61 +1374 1 2 1 0 30 10 0 62 +1375 1 2 1 0 31 10 0 63 +1376 1 2 1 1 0 10 0 0 +1377 1 2 1 1 1 10 0 1 +1378 1 2 1 1 2 10 0 2 +1379 1 2 1 1 3 10 0 3 +1380 1 2 1 1 4 10 0 4 +1381 1 2 1 1 5 10 0 5 +1382 1 2 1 1 6 10 0 6 +1383 1 2 1 1 7 10 0 7 +1384 1 2 1 1 8 10 0 8 +1385 1 2 1 1 9 10 0 9 +1386 1 2 1 1 10 10 0 10 +1387 1 2 1 1 11 10 0 11 +1388 1 2 1 1 12 10 0 12 +1389 1 2 1 1 13 10 0 13 +1390 1 2 1 1 14 10 0 14 +1391 1 2 1 1 15 10 0 15 +1392 1 2 1 1 16 10 0 16 +1393 1 2 1 1 17 10 0 17 +1394 1 2 1 1 18 10 0 18 +1395 1 2 1 1 19 10 0 19 +1396 1 2 1 1 20 10 0 20 +1397 1 2 1 1 21 10 0 21 +1398 1 2 1 1 22 10 0 22 +1399 1 2 1 1 23 10 0 23 +1400 1 2 1 1 24 10 0 24 +1401 1 2 1 1 25 10 0 25 +1402 1 2 1 1 26 10 0 26 +1403 1 2 1 1 27 10 0 27 +1404 1 2 1 1 28 10 0 28 +1405 1 2 1 1 29 10 0 29 +1406 1 2 1 1 30 10 0 30 +1407 1 2 1 1 31 10 0 31 +1408 1 3 0 0 0 11 1 32 +1409 1 3 0 0 1 11 1 33 +1410 1 3 0 0 2 11 1 34 +1411 1 3 0 0 3 11 1 35 +1412 1 3 0 0 4 11 1 36 +1413 1 3 0 0 5 11 1 37 +1414 1 3 0 0 6 11 1 38 +1415 1 3 0 0 7 11 1 39 +1416 1 3 0 0 8 11 1 40 +1417 1 3 0 0 9 11 1 41 +1418 1 3 0 0 10 11 1 42 +1419 1 3 0 0 11 11 1 43 +1420 1 3 0 0 12 11 1 44 +1421 1 3 0 0 13 11 1 45 +1422 1 3 0 0 14 11 1 46 +1423 1 3 0 0 15 11 1 47 +1424 1 3 0 0 16 11 1 48 +1425 1 3 0 0 17 11 1 49 +1426 1 3 0 0 18 11 1 50 +1427 1 3 0 0 19 11 1 51 +1428 1 3 0 0 20 11 1 52 +1429 1 3 0 0 21 11 1 53 +1430 1 3 0 0 22 11 1 54 +1431 1 3 0 0 23 11 1 55 +1432 1 3 0 0 24 11 1 56 +1433 1 3 0 0 25 11 1 57 +1434 1 3 0 0 26 11 1 58 +1435 1 3 0 0 27 11 1 59 +1436 1 3 0 0 28 11 1 60 +1437 1 3 0 0 29 11 1 61 +1438 1 3 0 0 30 11 1 62 +1439 1 3 0 0 31 11 1 63 +1440 1 3 0 1 0 11 1 0 +1441 1 3 0 1 1 11 1 1 +1442 1 3 0 1 2 11 1 2 +1443 1 3 0 1 3 11 1 3 +1444 1 3 0 1 4 11 1 4 +1445 1 3 0 1 5 11 1 5 +1446 1 3 0 1 6 11 1 6 +1447 1 3 0 1 7 11 1 7 +1448 1 3 0 1 8 11 1 8 +1449 1 3 0 1 9 11 1 9 +1450 1 3 0 1 10 11 1 10 +1451 1 3 0 1 11 11 1 11 +1452 1 3 0 1 12 11 1 12 +1453 1 3 0 1 13 11 1 13 +1454 1 3 0 1 14 11 1 14 +1455 1 3 0 1 15 11 1 15 +1456 1 3 0 1 16 11 1 16 +1457 1 3 0 1 17 11 1 17 +1458 1 3 0 1 18 11 1 18 +1459 1 3 0 1 19 11 1 19 +1460 1 3 0 1 20 11 1 20 +1461 1 3 0 1 21 11 1 21 +1462 1 3 0 1 22 11 1 22 +1463 1 3 0 1 23 11 1 23 +1464 1 3 0 1 24 11 1 24 +1465 1 3 0 1 25 11 1 25 +1466 1 3 0 1 26 11 1 26 +1467 1 3 0 1 27 11 1 27 +1468 1 3 0 1 28 11 1 28 +1469 1 3 0 1 29 11 1 29 +1470 1 3 0 1 30 11 1 30 +1471 1 3 0 1 31 11 1 31 +1472 1 3 1 0 0 11 0 32 +1473 1 3 1 0 1 11 0 33 +1474 1 3 1 0 2 11 0 34 +1475 1 3 1 0 3 11 0 35 +1476 1 3 1 0 4 11 0 36 +1477 1 3 1 0 5 11 0 37 +1478 1 3 1 0 6 11 0 38 +1479 1 3 1 0 7 11 0 39 +1480 1 3 1 0 8 11 0 40 +1481 1 3 1 0 9 11 0 41 +1482 1 3 1 0 10 11 0 42 +1483 1 3 1 0 11 11 0 43 +1484 1 3 1 0 12 11 0 44 +1485 1 3 1 0 13 11 0 45 +1486 1 3 1 0 14 11 0 46 +1487 1 3 1 0 15 11 0 47 +1488 1 3 1 0 16 11 0 48 +1489 1 3 1 0 17 11 0 49 +1490 1 3 1 0 18 11 0 50 +1491 1 3 1 0 19 11 0 51 +1492 1 3 1 0 20 11 0 52 +1493 1 3 1 0 21 11 0 53 +1494 1 3 1 0 22 11 0 54 +1495 1 3 1 0 23 11 0 55 +1496 1 3 1 0 24 11 0 56 +1497 1 3 1 0 25 11 0 57 +1498 1 3 1 0 26 11 0 58 +1499 1 3 1 0 27 11 0 59 +1500 1 3 1 0 28 11 0 60 +1501 1 3 1 0 29 11 0 61 +1502 1 3 1 0 30 11 0 62 +1503 1 3 1 0 31 11 0 63 +1504 1 3 1 1 0 11 0 0 +1505 1 3 1 1 1 11 0 1 +1506 1 3 1 1 2 11 0 2 +1507 1 3 1 1 3 11 0 3 +1508 1 3 1 1 4 11 0 4 +1509 1 3 1 1 5 11 0 5 +1510 1 3 1 1 6 11 0 6 +1511 1 3 1 1 7 11 0 7 +1512 1 3 1 1 8 11 0 8 +1513 1 3 1 1 9 11 0 9 +1514 1 3 1 1 10 11 0 10 +1515 1 3 1 1 11 11 0 11 +1516 1 3 1 1 12 11 0 12 +1517 1 3 1 1 13 11 0 13 +1518 1 3 1 1 14 11 0 14 +1519 1 3 1 1 15 11 0 15 +1520 1 3 1 1 16 11 0 16 +1521 1 3 1 1 17 11 0 17 +1522 1 3 1 1 18 11 0 18 +1523 1 3 1 1 19 11 0 19 +1524 1 3 1 1 20 11 0 20 +1525 1 3 1 1 21 11 0 21 +1526 1 3 1 1 22 11 0 22 +1527 1 3 1 1 23 11 0 23 +1528 1 3 1 1 24 11 0 24 +1529 1 3 1 1 25 11 0 25 +1530 1 3 1 1 26 11 0 26 +1531 1 3 1 1 27 11 0 27 +1532 1 3 1 1 28 11 0 28 +1533 1 3 1 1 29 11 0 29 +1534 1 3 1 1 30 11 0 30 +1535 1 3 1 1 31 11 0 31 +1536 1 4 0 0 0 12 1 32 +1537 1 4 0 0 1 12 1 33 +1538 1 4 0 0 2 12 1 34 +1539 1 4 0 0 3 12 1 35 +1540 1 4 0 0 4 12 1 36 +1541 1 4 0 0 5 12 1 37 +1542 1 4 0 0 6 12 1 38 +1543 1 4 0 0 7 12 1 39 +1544 1 4 0 0 8 12 1 40 +1545 1 4 0 0 9 12 1 41 +1546 1 4 0 0 10 12 1 42 +1547 1 4 0 0 11 12 1 43 +1548 1 4 0 0 12 12 1 44 +1549 1 4 0 0 13 12 1 45 +1550 1 4 0 0 14 12 1 46 +1551 1 4 0 0 15 12 1 47 +1552 1 4 0 0 16 12 1 48 +1553 1 4 0 0 17 12 1 49 +1554 1 4 0 0 18 12 1 50 +1555 1 4 0 0 19 12 1 51 +1556 1 4 0 0 20 12 1 52 +1557 1 4 0 0 21 12 1 53 +1558 1 4 0 0 22 12 1 54 +1559 1 4 0 0 23 12 1 55 +1560 1 4 0 0 24 12 1 56 +1561 1 4 0 0 25 12 1 57 +1562 1 4 0 0 26 12 1 58 +1563 1 4 0 0 27 12 1 59 +1564 1 4 0 0 28 12 1 60 +1565 1 4 0 0 29 12 1 61 +1566 1 4 0 0 30 12 1 62 +1567 1 4 0 0 31 12 1 63 +1568 1 4 0 1 0 12 1 0 +1569 1 4 0 1 1 12 1 1 +1570 1 4 0 1 2 12 1 2 +1571 1 4 0 1 3 12 1 3 +1572 1 4 0 1 4 12 1 4 +1573 1 4 0 1 5 12 1 5 +1574 1 4 0 1 6 12 1 6 +1575 1 4 0 1 7 12 1 7 +1576 1 4 0 1 8 12 1 8 +1577 1 4 0 1 9 12 1 9 +1578 1 4 0 1 10 12 1 10 +1579 1 4 0 1 11 12 1 11 +1580 1 4 0 1 12 12 1 12 +1581 1 4 0 1 13 12 1 13 +1582 1 4 0 1 14 12 1 14 +1583 1 4 0 1 15 12 1 15 +1584 1 4 0 1 16 12 1 16 +1585 1 4 0 1 17 12 1 17 +1586 1 4 0 1 18 12 1 18 +1587 1 4 0 1 19 12 1 19 +1588 1 4 0 1 20 12 1 20 +1589 1 4 0 1 21 12 1 21 +1590 1 4 0 1 22 12 1 22 +1591 1 4 0 1 23 12 1 23 +1592 1 4 0 1 24 12 1 24 +1593 1 4 0 1 25 12 1 25 +1594 1 4 0 1 26 12 1 26 +1595 1 4 0 1 27 12 1 27 +1596 1 4 0 1 28 12 1 28 +1597 1 4 0 1 29 12 1 29 +1598 1 4 0 1 30 12 1 30 +1599 1 4 0 1 31 12 1 31 +1600 1 4 1 0 0 12 0 32 +1601 1 4 1 0 1 12 0 33 +1602 1 4 1 0 2 12 0 34 +1603 1 4 1 0 3 12 0 35 +1604 1 4 1 0 4 12 0 36 +1605 1 4 1 0 5 12 0 37 +1606 1 4 1 0 6 12 0 38 +1607 1 4 1 0 7 12 0 39 +1608 1 4 1 0 8 12 0 40 +1609 1 4 1 0 9 12 0 41 +1610 1 4 1 0 10 12 0 42 +1611 1 4 1 0 11 12 0 43 +1612 1 4 1 0 12 12 0 44 +1613 1 4 1 0 13 12 0 45 +1614 1 4 1 0 14 12 0 46 +1615 1 4 1 0 15 12 0 47 +1616 1 4 1 0 16 12 0 48 +1617 1 4 1 0 17 12 0 49 +1618 1 4 1 0 18 12 0 50 +1619 1 4 1 0 19 12 0 51 +1620 1 4 1 0 20 12 0 52 +1621 1 4 1 0 21 12 0 53 +1622 1 4 1 0 22 12 0 54 +1623 1 4 1 0 23 12 0 55 +1624 1 4 1 0 24 12 0 56 +1625 1 4 1 0 25 12 0 57 +1626 1 4 1 0 26 12 0 58 +1627 1 4 1 0 27 12 0 59 +1628 1 4 1 0 28 12 0 60 +1629 1 4 1 0 29 12 0 61 +1630 1 4 1 0 30 12 0 62 +1631 1 4 1 0 31 12 0 63 +1632 1 4 1 1 0 12 0 0 +1633 1 4 1 1 1 12 0 1 +1634 1 4 1 1 2 12 0 2 +1635 1 4 1 1 3 12 0 3 +1636 1 4 1 1 4 12 0 4 +1637 1 4 1 1 5 12 0 5 +1638 1 4 1 1 6 12 0 6 +1639 1 4 1 1 7 12 0 7 +1640 1 4 1 1 8 12 0 8 +1641 1 4 1 1 9 12 0 9 +1642 1 4 1 1 10 12 0 10 +1643 1 4 1 1 11 12 0 11 +1644 1 4 1 1 12 12 0 12 +1645 1 4 1 1 13 12 0 13 +1646 1 4 1 1 14 12 0 14 +1647 1 4 1 1 15 12 0 15 +1648 1 4 1 1 16 12 0 16 +1649 1 4 1 1 17 12 0 17 +1650 1 4 1 1 18 12 0 18 +1651 1 4 1 1 19 12 0 19 +1652 1 4 1 1 20 12 0 20 +1653 1 4 1 1 21 12 0 21 +1654 1 4 1 1 22 12 0 22 +1655 1 4 1 1 23 12 0 23 +1656 1 4 1 1 24 12 0 24 +1657 1 4 1 1 25 12 0 25 +1658 1 4 1 1 26 12 0 26 +1659 1 4 1 1 27 12 0 27 +1660 1 4 1 1 28 12 0 28 +1661 1 4 1 1 29 12 0 29 +1662 1 4 1 1 30 12 0 30 +1663 1 4 1 1 31 12 0 31 +1664 1 5 0 0 0 13 1 32 +1665 1 5 0 0 1 13 1 33 +1666 1 5 0 0 2 13 1 34 +1667 1 5 0 0 3 13 1 35 +1668 1 5 0 0 4 13 1 36 +1669 1 5 0 0 5 13 1 37 +1670 1 5 0 0 6 13 1 38 +1671 1 5 0 0 7 13 1 39 +1672 1 5 0 0 8 13 1 40 +1673 1 5 0 0 9 13 1 41 +1674 1 5 0 0 10 13 1 42 +1675 1 5 0 0 11 13 1 43 +1676 1 5 0 0 12 13 1 44 +1677 1 5 0 0 13 13 1 45 +1678 1 5 0 0 14 13 1 46 +1679 1 5 0 0 15 13 1 47 +1680 1 5 0 0 16 13 1 48 +1681 1 5 0 0 17 13 1 49 +1682 1 5 0 0 18 13 1 50 +1683 1 5 0 0 19 13 1 51 +1684 1 5 0 0 20 13 1 52 +1685 1 5 0 0 21 13 1 53 +1686 1 5 0 0 22 13 1 54 +1687 1 5 0 0 23 13 1 55 +1688 1 5 0 0 24 13 1 56 +1689 1 5 0 0 25 13 1 57 +1690 1 5 0 0 26 13 1 58 +1691 1 5 0 0 27 13 1 59 +1692 1 5 0 0 28 13 1 60 +1693 1 5 0 0 29 13 1 61 +1694 1 5 0 0 30 13 1 62 +1695 1 5 0 0 31 13 1 63 +1696 1 5 0 1 0 13 1 0 +1697 1 5 0 1 1 13 1 1 +1698 1 5 0 1 2 13 1 2 +1699 1 5 0 1 3 13 1 3 +1700 1 5 0 1 4 13 1 4 +1701 1 5 0 1 5 13 1 5 +1702 1 5 0 1 6 13 1 6 +1703 1 5 0 1 7 13 1 7 +1704 1 5 0 1 8 13 1 8 +1705 1 5 0 1 9 13 1 9 +1706 1 5 0 1 10 13 1 10 +1707 1 5 0 1 11 13 1 11 +1708 1 5 0 1 12 13 1 12 +1709 1 5 0 1 13 13 1 13 +1710 1 5 0 1 14 13 1 14 +1711 1 5 0 1 15 13 1 15 +1712 1 5 0 1 16 13 1 16 +1713 1 5 0 1 17 13 1 17 +1714 1 5 0 1 18 13 1 18 +1715 1 5 0 1 19 13 1 19 +1716 1 5 0 1 20 13 1 20 +1717 1 5 0 1 21 13 1 21 +1718 1 5 0 1 22 13 1 22 +1719 1 5 0 1 23 13 1 23 +1720 1 5 0 1 24 13 1 24 +1721 1 5 0 1 25 13 1 25 +1722 1 5 0 1 26 13 1 26 +1723 1 5 0 1 27 13 1 27 +1724 1 5 0 1 28 13 1 28 +1725 1 5 0 1 29 13 1 29 +1726 1 5 0 1 30 13 1 30 +1727 1 5 0 1 31 13 1 31 +1728 1 5 1 0 0 13 0 32 +1729 1 5 1 0 1 13 0 33 +1730 1 5 1 0 2 13 0 34 +1731 1 5 1 0 3 13 0 35 +1732 1 5 1 0 4 13 0 36 +1733 1 5 1 0 5 13 0 37 +1734 1 5 1 0 6 13 0 38 +1735 1 5 1 0 7 13 0 39 +1736 1 5 1 0 8 13 0 40 +1737 1 5 1 0 9 13 0 41 +1738 1 5 1 0 10 13 0 42 +1739 1 5 1 0 11 13 0 43 +1740 1 5 1 0 12 13 0 44 +1741 1 5 1 0 13 13 0 45 +1742 1 5 1 0 14 13 0 46 +1743 1 5 1 0 15 13 0 47 +1744 1 5 1 0 16 13 0 48 +1745 1 5 1 0 17 13 0 49 +1746 1 5 1 0 18 13 0 50 +1747 1 5 1 0 19 13 0 51 +1748 1 5 1 0 20 13 0 52 +1749 1 5 1 0 21 13 0 53 +1750 1 5 1 0 22 13 0 54 +1751 1 5 1 0 23 13 0 55 +1752 1 5 1 0 24 13 0 56 +1753 1 5 1 0 25 13 0 57 +1754 1 5 1 0 26 13 0 58 +1755 1 5 1 0 27 13 0 59 +1756 1 5 1 0 28 13 0 60 +1757 1 5 1 0 29 13 0 61 +1758 1 5 1 0 30 13 0 62 +1759 1 5 1 0 31 13 0 63 +1760 1 5 1 1 0 13 0 0 +1761 1 5 1 1 1 13 0 1 +1762 1 5 1 1 2 13 0 2 +1763 1 5 1 1 3 13 0 3 +1764 1 5 1 1 4 13 0 4 +1765 1 5 1 1 5 13 0 5 +1766 1 5 1 1 6 13 0 6 +1767 1 5 1 1 7 13 0 7 +1768 1 5 1 1 8 13 0 8 +1769 1 5 1 1 9 13 0 9 +1770 1 5 1 1 10 13 0 10 +1771 1 5 1 1 11 13 0 11 +1772 1 5 1 1 12 13 0 12 +1773 1 5 1 1 13 13 0 13 +1774 1 5 1 1 14 13 0 14 +1775 1 5 1 1 15 13 0 15 +1776 1 5 1 1 16 13 0 16 +1777 1 5 1 1 17 13 0 17 +1778 1 5 1 1 18 13 0 18 +1779 1 5 1 1 19 13 0 19 +1780 1 5 1 1 20 13 0 20 +1781 1 5 1 1 21 13 0 21 +1782 1 5 1 1 22 13 0 22 +1783 1 5 1 1 23 13 0 23 +1784 1 5 1 1 24 13 0 24 +1785 1 5 1 1 25 13 0 25 +1786 1 5 1 1 26 13 0 26 +1787 1 5 1 1 27 13 0 27 +1788 1 5 1 1 28 13 0 28 +1789 1 5 1 1 29 13 0 29 +1790 1 5 1 1 30 13 0 30 +1791 1 5 1 1 31 13 0 31 +1792 1 6 0 0 0 14 1 32 +1793 1 6 0 0 1 14 1 33 +1794 1 6 0 0 2 14 1 34 +1795 1 6 0 0 3 14 1 35 +1796 1 6 0 0 4 14 1 36 +1797 1 6 0 0 5 14 1 37 +1798 1 6 0 0 6 14 1 38 +1799 1 6 0 0 7 14 1 39 +1800 1 6 0 0 8 14 1 40 +1801 1 6 0 0 9 14 1 41 +1802 1 6 0 0 10 14 1 42 +1803 1 6 0 0 11 14 1 43 +1804 1 6 0 0 12 14 1 44 +1805 1 6 0 0 13 14 1 45 +1806 1 6 0 0 14 14 1 46 +1807 1 6 0 0 15 14 1 47 +1808 1 6 0 0 16 14 1 48 +1809 1 6 0 0 17 14 1 49 +1810 1 6 0 0 18 14 1 50 +1811 1 6 0 0 19 14 1 51 +1812 1 6 0 0 20 14 1 52 +1813 1 6 0 0 21 14 1 53 +1814 1 6 0 0 22 14 1 54 +1815 1 6 0 0 23 14 1 55 +1816 1 6 0 0 24 14 1 56 +1817 1 6 0 0 25 14 1 57 +1818 1 6 0 0 26 14 1 58 +1819 1 6 0 0 27 14 1 59 +1820 1 6 0 0 28 14 1 60 +1821 1 6 0 0 29 14 1 61 +1822 1 6 0 0 30 14 1 62 +1823 1 6 0 0 31 14 1 63 +1824 1 6 0 1 0 14 1 0 +1825 1 6 0 1 1 14 1 1 +1826 1 6 0 1 2 14 1 2 +1827 1 6 0 1 3 14 1 3 +1828 1 6 0 1 4 14 1 4 +1829 1 6 0 1 5 14 1 5 +1830 1 6 0 1 6 14 1 6 +1831 1 6 0 1 7 14 1 7 +1832 1 6 0 1 8 14 1 8 +1833 1 6 0 1 9 14 1 9 +1834 1 6 0 1 10 14 1 10 +1835 1 6 0 1 11 14 1 11 +1836 1 6 0 1 12 14 1 12 +1837 1 6 0 1 13 14 1 13 +1838 1 6 0 1 14 14 1 14 +1839 1 6 0 1 15 14 1 15 +1840 1 6 0 1 16 14 1 16 +1841 1 6 0 1 17 14 1 17 +1842 1 6 0 1 18 14 1 18 +1843 1 6 0 1 19 14 1 19 +1844 1 6 0 1 20 14 1 20 +1845 1 6 0 1 21 14 1 21 +1846 1 6 0 1 22 14 1 22 +1847 1 6 0 1 23 14 1 23 +1848 1 6 0 1 24 14 1 24 +1849 1 6 0 1 25 14 1 25 +1850 1 6 0 1 26 14 1 26 +1851 1 6 0 1 27 14 1 27 +1852 1 6 0 1 28 14 1 28 +1853 1 6 0 1 29 14 1 29 +1854 1 6 0 1 30 14 1 30 +1855 1 6 0 1 31 14 1 31 +1856 1 6 1 0 0 14 0 32 +1857 1 6 1 0 1 14 0 33 +1858 1 6 1 0 2 14 0 34 +1859 1 6 1 0 3 14 0 35 +1860 1 6 1 0 4 14 0 36 +1861 1 6 1 0 5 14 0 37 +1862 1 6 1 0 6 14 0 38 +1863 1 6 1 0 7 14 0 39 +1864 1 6 1 0 8 14 0 40 +1865 1 6 1 0 9 14 0 41 +1866 1 6 1 0 10 14 0 42 +1867 1 6 1 0 11 14 0 43 +1868 1 6 1 0 12 14 0 44 +1869 1 6 1 0 13 14 0 45 +1870 1 6 1 0 14 14 0 46 +1871 1 6 1 0 15 14 0 47 +1872 1 6 1 0 16 14 0 48 +1873 1 6 1 0 17 14 0 49 +1874 1 6 1 0 18 14 0 50 +1875 1 6 1 0 19 14 0 51 +1876 1 6 1 0 20 14 0 52 +1877 1 6 1 0 21 14 0 53 +1878 1 6 1 0 22 14 0 54 +1879 1 6 1 0 23 14 0 55 +1880 1 6 1 0 24 14 0 56 +1881 1 6 1 0 25 14 0 57 +1882 1 6 1 0 26 14 0 58 +1883 1 6 1 0 27 14 0 59 +1884 1 6 1 0 28 14 0 60 +1885 1 6 1 0 29 14 0 61 +1886 1 6 1 0 30 14 0 62 +1887 1 6 1 0 31 14 0 63 +1888 1 6 1 1 0 14 0 0 +1889 1 6 1 1 1 14 0 1 +1890 1 6 1 1 2 14 0 2 +1891 1 6 1 1 3 14 0 3 +1892 1 6 1 1 4 14 0 4 +1893 1 6 1 1 5 14 0 5 +1894 1 6 1 1 6 14 0 6 +1895 1 6 1 1 7 14 0 7 +1896 1 6 1 1 8 14 0 8 +1897 1 6 1 1 9 14 0 9 +1898 1 6 1 1 10 14 0 10 +1899 1 6 1 1 11 14 0 11 +1900 1 6 1 1 12 14 0 12 +1901 1 6 1 1 13 14 0 13 +1902 1 6 1 1 14 14 0 14 +1903 1 6 1 1 15 14 0 15 +1904 1 6 1 1 16 14 0 16 +1905 1 6 1 1 17 14 0 17 +1906 1 6 1 1 18 14 0 18 +1907 1 6 1 1 19 14 0 19 +1908 1 6 1 1 20 14 0 20 +1909 1 6 1 1 21 14 0 21 +1910 1 6 1 1 22 14 0 22 +1911 1 6 1 1 23 14 0 23 +1912 1 6 1 1 24 14 0 24 +1913 1 6 1 1 25 14 0 25 +1914 1 6 1 1 26 14 0 26 +1915 1 6 1 1 27 14 0 27 +1916 1 6 1 1 28 14 0 28 +1917 1 6 1 1 29 14 0 29 +1918 1 6 1 1 30 14 0 30 +1919 1 6 1 1 31 14 0 31 +1920 1 7 0 0 0 15 1 32 +1921 1 7 0 0 1 15 1 33 +1922 1 7 0 0 2 15 1 34 +1923 1 7 0 0 3 15 1 35 +1924 1 7 0 0 4 15 1 36 +1925 1 7 0 0 5 15 1 37 +1926 1 7 0 0 6 15 1 38 +1927 1 7 0 0 7 15 1 39 +1928 1 7 0 0 8 15 1 40 +1929 1 7 0 0 9 15 1 41 +1930 1 7 0 0 10 15 1 42 +1931 1 7 0 0 11 15 1 43 +1932 1 7 0 0 12 15 1 44 +1933 1 7 0 0 13 15 1 45 +1934 1 7 0 0 14 15 1 46 +1935 1 7 0 0 15 15 1 47 +1936 1 7 0 0 16 15 1 48 +1937 1 7 0 0 17 15 1 49 +1938 1 7 0 0 18 15 1 50 +1939 1 7 0 0 19 15 1 51 +1940 1 7 0 0 20 15 1 52 +1941 1 7 0 0 21 15 1 53 +1942 1 7 0 0 22 15 1 54 +1943 1 7 0 0 23 15 1 55 +1944 1 7 0 0 24 15 1 56 +1945 1 7 0 0 25 15 1 57 +1946 1 7 0 0 26 15 1 58 +1947 1 7 0 0 27 15 1 59 +1948 1 7 0 0 28 15 1 60 +1949 1 7 0 0 29 15 1 61 +1950 1 7 0 0 30 15 1 62 +1951 1 7 0 0 31 15 1 63 +1952 1 7 0 1 0 15 1 0 +1953 1 7 0 1 1 15 1 1 +1954 1 7 0 1 2 15 1 2 +1955 1 7 0 1 3 15 1 3 +1956 1 7 0 1 4 15 1 4 +1957 1 7 0 1 5 15 1 5 +1958 1 7 0 1 6 15 1 6 +1959 1 7 0 1 7 15 1 7 +1960 1 7 0 1 8 15 1 8 +1961 1 7 0 1 9 15 1 9 +1962 1 7 0 1 10 15 1 10 +1963 1 7 0 1 11 15 1 11 +1964 1 7 0 1 12 15 1 12 +1965 1 7 0 1 13 15 1 13 +1966 1 7 0 1 14 15 1 14 +1967 1 7 0 1 15 15 1 15 +1968 1 7 0 1 16 15 1 16 +1969 1 7 0 1 17 15 1 17 +1970 1 7 0 1 18 15 1 18 +1971 1 7 0 1 19 15 1 19 +1972 1 7 0 1 20 15 1 20 +1973 1 7 0 1 21 15 1 21 +1974 1 7 0 1 22 15 1 22 +1975 1 7 0 1 23 15 1 23 +1976 1 7 0 1 24 15 1 24 +1977 1 7 0 1 25 15 1 25 +1978 1 7 0 1 26 15 1 26 +1979 1 7 0 1 27 15 1 27 +1980 1 7 0 1 28 15 1 28 +1981 1 7 0 1 29 15 1 29 +1982 1 7 0 1 30 15 1 30 +1983 1 7 0 1 31 15 1 31 +1984 1 7 1 0 0 15 0 32 +1985 1 7 1 0 1 15 0 33 +1986 1 7 1 0 2 15 0 34 +1987 1 7 1 0 3 15 0 35 +1988 1 7 1 0 4 15 0 36 +1989 1 7 1 0 5 15 0 37 +1990 1 7 1 0 6 15 0 38 +1991 1 7 1 0 7 15 0 39 +1992 1 7 1 0 8 15 0 40 +1993 1 7 1 0 9 15 0 41 +1994 1 7 1 0 10 15 0 42 +1995 1 7 1 0 11 15 0 43 +1996 1 7 1 0 12 15 0 44 +1997 1 7 1 0 13 15 0 45 +1998 1 7 1 0 14 15 0 46 +1999 1 7 1 0 15 15 0 47 +2000 1 7 1 0 16 15 0 48 +2001 1 7 1 0 17 15 0 49 +2002 1 7 1 0 18 15 0 50 +2003 1 7 1 0 19 15 0 51 +2004 1 7 1 0 20 15 0 52 +2005 1 7 1 0 21 15 0 53 +2006 1 7 1 0 22 15 0 54 +2007 1 7 1 0 23 15 0 55 +2008 1 7 1 0 24 15 0 56 +2009 1 7 1 0 25 15 0 57 +2010 1 7 1 0 26 15 0 58 +2011 1 7 1 0 27 15 0 59 +2012 1 7 1 0 28 15 0 60 +2013 1 7 1 0 29 15 0 61 +2014 1 7 1 0 30 15 0 62 +2015 1 7 1 0 31 15 0 63 +2016 1 7 1 1 0 15 0 0 +2017 1 7 1 1 1 15 0 1 +2018 1 7 1 1 2 15 0 2 +2019 1 7 1 1 3 15 0 3 +2020 1 7 1 1 4 15 0 4 +2021 1 7 1 1 5 15 0 5 +2022 1 7 1 1 6 15 0 6 +2023 1 7 1 1 7 15 0 7 +2024 1 7 1 1 8 15 0 8 +2025 1 7 1 1 9 15 0 9 +2026 1 7 1 1 10 15 0 10 +2027 1 7 1 1 11 15 0 11 +2028 1 7 1 1 12 15 0 12 +2029 1 7 1 1 13 15 0 13 +2030 1 7 1 1 14 15 0 14 +2031 1 7 1 1 15 15 0 15 +2032 1 7 1 1 16 15 0 16 +2033 1 7 1 1 17 15 0 17 +2034 1 7 1 1 18 15 0 18 +2035 1 7 1 1 19 15 0 19 +2036 1 7 1 1 20 15 0 20 +2037 1 7 1 1 21 15 0 21 +2038 1 7 1 1 22 15 0 22 +2039 1 7 1 1 23 15 0 23 +2040 1 7 1 1 24 15 0 24 +2041 1 7 1 1 25 15 0 25 +2042 1 7 1 1 26 15 0 26 +2043 1 7 1 1 27 15 0 27 +2044 1 7 1 1 28 15 0 28 +2045 1 7 1 1 29 15 0 29 +2046 1 7 1 1 30 15 0 30 +2047 1 7 1 1 31 15 0 31 +# Guard ring strips +2048 0 0 0 2 15 0 1 64 +2049 0 0 1 2 15 0 0 64 +2050 0 1 0 2 15 1 1 64 +2051 0 1 1 2 15 1 0 64 +2052 0 2 0 2 15 2 1 64 +2053 0 2 1 2 15 2 0 64 +2054 0 3 0 2 15 3 1 64 +2055 0 3 1 2 15 3 0 64 +2056 0 4 0 2 15 4 1 64 +2057 0 4 1 2 15 4 0 64 +2058 0 5 0 2 15 5 1 64 +2059 0 5 1 2 15 5 0 64 +2060 0 6 0 2 15 6 1 64 +2061 0 6 1 2 15 6 0 64 +2062 0 7 0 2 15 7 1 64 +2063 0 7 1 2 15 7 0 64 +2064 1 0 0 2 15 8 1 64 +2065 1 0 1 2 15 8 0 64 +2066 1 1 0 2 15 9 1 64 +2067 1 1 1 2 15 9 0 64 +2068 1 2 0 2 15 10 1 64 +2069 1 2 1 2 15 10 0 64 +2070 1 3 0 2 15 11 1 64 +2071 1 3 1 2 15 11 0 64 +2072 1 4 0 2 15 12 1 64 +2073 1 4 1 2 15 12 0 64 +2074 1 5 0 2 15 13 1 64 +2075 1 5 1 2 15 13 0 64 +2076 1 6 0 2 15 14 1 64 +2077 1 6 1 2 15 14 0 64 +2078 1 7 0 2 15 15 1 64 +2079 1 7 1 2 15 15 0 64 diff --git a/resource/unittestdata/406-1/hp52406-1.taccal.csv b/resource/unittestdata/406-1/hp52406-1.taccal.csv new file mode 100644 index 00000000..356dc638 --- /dev/null +++ b/resource/unittestdata/406-1/hp52406-1.taccal.csv @@ -0,0 +1,129 @@ +#STRIP_ID,Detector,Side,Strip,TAC_calibration,TAC_calibration_error,TAC_offset,TAC_offset_error +64,0,0,32,0.4423391665088008,0.0007670267299492,-530.2777585696434,7.648851604387419 +65,0,0,33,0.4594269266222844,0.0006474867615472,-524.2263357525463,6.208314593615694 +66,0,0,34,0.449523893707546,0.0006383972522233,-500.6506663826394,6.223338825936949 +67,0,0,35,0.4557591322974691,0.0009909289867238,-627.5027910797174,9.79708452507628 +68,0,0,36,0.4531087394069914,0.001073816776559,-633.4881976112396,10.69253591647334 +69,0,0,37,0.4398289332100831,0.0008739434194418,-575.3952031993595,8.85229292141196 +70,0,0,38,0.4428068314801254,0.0009446218731797,-559.7750999749411,9.471321794199916 +71,0,0,39,0.4512987973185355,0.0007496127939929,-517.4732363723897,7.306036444223775 +72,0,0,40,0.4474151478179216,0.0007564453260102,-488.50233806258166,7.388832721498867 +73,0,0,41,0.4496986626736199,0.001243790472918,-642.0975094350777,12.502232369764474 +74,0,0,42,0.4542017382431532,0.0005577098475214,-503.7008040123561,5.384428274118526 +75,0,0,43,0.4588986033907049,0.0012435298025801,-667.1812746665258,12.315451464145076 +76,0,0,44,0.4509267855817803,0.000782010885938,-523.582616776445,7.638429421842414 +77,0,0,45,0.4467945709911483,0.0011865692350814,-596.1669947394696,11.885417109197125 +78,0,0,46,0.4514091541610849,0.000611124857815,-570.6223781741195,6.025059273187221 +79,0,0,47,0.4462517124057642,0.0006217802105012,-486.0255270552677,6.085914012190301 +80,0,0,48,0.4571256494427616,0.0011008676066167,-650.6262652713099,10.905899645822382 +81,0,0,49,0.4526959570548807,0.0007421367830332,-589.4756359114679,7.326085827222213 +82,0,0,50,0.4458407556656915,0.0005144830500126,-493.549359361181,5.0488136552277325 +83,0,0,51,0.4523072876968306,0.0011786546903714,-622.5652650115686,11.72944516495448 +84,0,0,52,0.4441642324687794,0.0008763468263437,-565.4467314221575,8.770829984432423 +85,0,0,53,0.4554296697561251,0.0009293589805731,-626.46942788447,9.192943111370852 +86,0,0,54,0.4513913827977219,0.0011227878752309,-646.9998312654681,11.255542675416452 +87,0,0,55,0.4504856234566761,0.0004764164427878,-477.6389959851392,4.610631771944719 +88,0,0,56,0.4399786813686383,0.0006735577855412,-501.300600979733,6.709517361590825 +89,0,0,57,0.4464480415341874,0.0010331052161929,-620.2271355758547,10.410645797850536 +90,0,0,58,0.4474693292717089,0.000544394309147,-480.88381376800726,5.307868070064751 +91,0,0,59,0.4517188947588058,0.0008515229032017,-588.1120851442888,8.42157426326148 +92,0,0,60,0.4583706411009839,0.0005158964061787,-529.1089204674024,4.96334590465335 +93,0,0,61,0.4363241668028062,0.0006407515384919,-491.87577031621527,6.422680300376001 +94,0,0,62,0.4446514031008773,0.000601152334646,-499.84602114642,5.923416616968817 +95,0,0,63,0.4454641680895066,0.0006744856051039,-522.7701636451343,6.667745870408667 +96,0,0,0,0.435354131795756,0.000901073164967,-604.8538498347169,9.280455277296772 +97,0,0,1,0.4234697482021918,0.0006986313210047,-488.8564199600243,7.210559490691503 +98,0,0,2,0.4370726382905194,0.0011565612213777,-642.559915402185,11.96245638921478 +99,0,0,3,0.442220589012977,0.0007022205967474,-563.2980974825051,7.055663920426312 +100,0,0,4,0.4282737657055466,0.001201582347435,-612.7904811770289,12.601845927341438 +101,0,0,5,0.4274063719339324,0.0008759020724556,-534.8942843006863,9.048968594341977 +102,0,0,6,0.4252137706112682,0.0007418198111778,-504.7571685393468,7.651969330374112 +103,0,0,7,0.4288553380682494,0.0008027941733188,-522.2874554450364,8.242634353005785 +104,0,0,8,0.4247615174793323,0.0013861692049033,-621.1097466024429,14.684469039263757 +105,0,0,9,0.4258524468366571,0.0006168447392508,-485.288197518515,6.325778812306777 +106,0,0,10,0.4274159446521173,0.0011437265088995,-609.9970970082529,12.01184318981433 +107,0,0,11,0.4249751558365154,0.0007101228692596,-517.0177127625792,7.349115667342107 +108,0,0,12,0.4290216965304038,0.0006781837556935,-504.1610154949129,6.932544279572066 +109,0,0,13,0.4279591040349574,0.0008746753160445,-529.7220060754955,9.014306073611488 +110,0,0,14,0.4308750017115691,0.0008789441779593,-595.8891413773251,9.128784359707486 +111,0,0,15,0.430210142283452,0.0012371769381089,-620.8788460944635,12.939473653232705 +112,0,0,16,0.4372135999809602,0.0015180392780803,-685.1887462727967,15.84086806668632 +113,0,0,17,0.4278346654777962,0.0007392726664702,-529.878892993649,7.621342513689394 +114,0,0,18,0.4344102293323045,0.0005938670977556,-538.5980482985204,6.041283555501511 +115,0,0,19,0.4281222524174532,0.0009718449831107,-579.0529569959732,10.121234382237835 +116,0,0,20,0.4331671396080678,0.0006909496456037,-516.3333642044681,7.014392669304453 +117,0,0,21,0.4285572544853576,0.0008069199092636,-575.3901981240699,8.388365904569532 +118,0,0,22,0.4360027861190027,0.0005788971244773,-518.9880093718879,5.842074636958103 +119,0,0,23,0.4314977977207872,0.0004569096013283,-500.4970384104629,4.6400438204281365 +120,0,0,24,0.4327361134895812,0.0006698340520774,-505.2369960902523,6.790043625670989 +121,0,0,25,0.4340653927722947,0.0010897896612156,-612.3935675627333,11.275924490868226 +122,0,0,26,0.4309845747311916,0.0012865426929329,-637.4276432352502,13.479871280197136 +123,0,0,27,0.4365229912806184,0.0009849430751828,-605.998771018136,10.119619846600935 +124,0,0,28,0.4349153819083269,0.0006356659101633,-502.5248144596246,6.407528688459109 +125,0,0,29,0.4362481030210087,0.0009618313453679,-608.4966743747225,9.89376931338606 +126,0,0,30,0.4303943436757703,0.0012202980447291,-635.2101849454922,12.797178038091973 +127,0,0,31,0.4425309115969053,0.0004941113612472,-483.2058934384232,4.873898433845572 +0,0,1,32,0.4328028122804499,0.0005943318388505,-476.6006898782038,5.985392495716633 +1,0,1,33,0.457408206592246,0.0009164206380576,-606.66929393448,8.986995804093931 +2,0,1,34,0.446793595536089,0.0010268560856484,-520.6215734876922,10.116140843846129 +3,0,1,35,0.4538123076201932,0.00129306551759,-645.1579404639524,12.888234423074014 +4,0,1,36,0.4453329796915714,0.0008215319650962,-524.4282913981287,8.12677577657563 +5,0,1,37,0.4462275574870531,0.0011517887755175,-599.3106658481753,11.55962000045835 +6,0,1,38,0.4404531910567449,0.0008518231499483,-478.4928128365463,8.43309927987151 +7,0,1,39,0.4568654174253349,0.0010902601307285,-595.736940435508,10.678993956640804 +8,0,1,40,0.4523512086405886,0.0006807202012831,-491.48688294965,6.580988335573602 +9,0,1,41,0.4488739013650205,0.0007990944747412,-529.5062654796031,7.851285279030788 +10,0,1,42,0.4508128906843753,0.0008965721806143,-564.963899671003,8.839976891493178 +11,0,1,43,0.443331424887519,0.0011098662797407,-518.4426209633201,11.013985060295049 +12,0,1,44,0.447370807477891,0.0008277416685934,-491.9818576900242,8.092325492291003 +13,0,1,45,0.4437632089345938,0.0012993382991859,-612.070740321233,13.149372925337204 +14,0,1,46,0.4438988110620776,0.0008651218051737,-496.868399403413,8.533212777092706 +15,0,1,47,0.4571019080088663,0.0011546163898544,-605.1521538243921,11.32673554412366 +16,0,1,48,0.4405646039861144,0.0010087339909055,-514.0933127705362,10.063527408555371 +17,0,1,49,0.4434958019150092,0.0008990380033339,-560.0401690733088,9.000792861338912 +18,0,1,50,0.4406164058219773,0.0012875693518877,-591.44575443197,13.06445997831231 +19,0,1,51,0.4486913618098668,0.0009908367265818,-588.3133115756749,9.865944562784785 +20,0,1,52,0.4428218695670967,0.000942725276268,-509.7731302584377,9.348082315699058 +21,0,1,53,0.4462287531096206,0.0009860558794194,-610.3683665592832,9.920128430719693 +22,0,1,54,0.4461132763046523,0.0002945953207609,-544.7503908251239,2.9222039533147157 +23,0,1,55,0.4480028349386546,0.0006053410454474,-516.7003790596282,5.942291126553972 +24,0,1,56,0.4397227119154312,0.0009243514102046,-518.1694005980177,9.247711446617226 +25,0,1,57,0.4396040219740294,0.0008965531046155,-512.7865186477399,8.961310826778426 +26,0,1,58,0.444968280768474,0.0007321533451276,-481.728059868128,7.180005208974026 +27,0,1,59,0.4493435328663818,0.0007362336232186,-526.6660671770976,7.221561115022625 +28,0,1,60,0.4496476649694809,0.0007931799897126,-534.2514827427083,7.787933493119959 +29,0,1,61,0.4423998348399216,0.0007645539507514,-527.5624520272577,7.618567318969807 +30,0,1,62,0.4458754964115172,0.000675485576149,-554.0251081075992,6.717689943146748 +31,0,1,63,0.4489513139953675,0.0007282970239036,-538.997054800009,7.169478156797585 +32,0,1,0,0.4231784940197879,0.0009536081734932,-567.7521103885092,10.022463107501668 +33,0,1,1,0.4326771520882899,0.0012385319028456,-592.8013579573797,12.80127808903666 +34,0,1,2,0.4173619785724985,0.0012245871320237,-544.8100462157846,12.984109955695065 +35,0,1,3,0.4245795558722064,0.0008302497397034,-492.8696870117445,8.554247823225156 +36,0,1,4,0.4258862588685888,0.0013219760383118,-597.4095591573717,13.895586808262044 +37,0,1,5,0.4210105823147287,0.0007826745085098,-467.8861055239634,8.087123697228677 +38,0,1,6,0.4249086360670414,0.000988350554582,-492.89675227403706,10.175369734910552 +39,0,1,7,0.426263961310364,0.0015017803219682,-527.7812984714598,15.532049613738632 +40,0,1,8,0.4287187187513141,0.001400315482983,-585.6001065895689,14.584110882280996 +41,0,1,9,0.417465671767292,0.0011066391746206,-515.2923079545969,11.654241439375925 +42,0,1,10,0.4270372038504824,0.0010236892838305,-560.6498905695579,10.645176449576867 +43,0,1,11,0.4274434088758056,0.0009684084090562,-508.165858803984,9.944688995832164 +44,0,1,12,0.4242455744739211,0.0009062063345607,-537.4770853841411,9.43717856924222 +45,0,1,13,0.4290302883258509,0.0006183469479138,-472.8331456398816,6.276704108878639 +46,0,1,14,0.423721681153917,0.0014317325702442,-580.2937634147087,15.06965772266832 +47,0,1,15,0.445929028828912,0.0006774583352873,-521.5515344510217,6.688345057100048 +48,0,1,16,0.4207488346301746,0.0012407311498536,-572.4338889096397,13.128918196127218 +49,0,1,17,0.438436873761458,0.0012525101231083,-636.9334187559982,12.898850489450682 +50,0,1,18,0.4319025128550862,0.0009623437166543,-517.1805989539574,9.799981612126334 +51,0,1,19,0.4171513871290345,0.0013203180990939,-555.1713292265711,14.038211934753717 +52,0,1,20,0.424212351625659,0.0010698676497192,-582.6691757727484,11.253687517201756 +53,0,1,21,0.4372530453984505,0.0010036037948769,-577.1243766402567,10.229402183792043 +54,0,1,22,0.4255222822186094,0.0008164228494474,-516.8557820858945,8.438054901838226 +55,0,1,23,0.4293311934786784,0.0009030711948877,-519.3885878089922,9.255993653510806 +56,0,1,24,0.4194601840865619,0.0014701414110731,-614.8776507670647,15.749525723213951 +57,0,1,25,0.4200673054323411,0.0012144451316827,-575.797589733266,12.8811158289634 +58,0,1,26,0.4254867667380502,0.0009021608581133,-488.7988983219872,9.266924244691674 +59,0,1,27,0.4257469473006812,0.000967767462554,-519.3226506730532,10.002455080264758 +60,0,1,28,0.4233408177649949,0.0008734490531748,-490.9622839089901,9.021833347562657 +61,0,1,29,0.4306328093442946,0.0012856368176445,-611.4099025506417,13.405494600097404 +62,0,1,30,0.419585933908181,0.001086357474321,-516.4980887037264,11.385885306372142 +63,0,1,31,0.4325596873587821,0.0007557362419446,-499.8151721007255,7.654707606168888 diff --git a/resource/unittestdata/406-1/hp52406-1.taccut.csv b/resource/unittestdata/406-1/hp52406-1.taccut.csv new file mode 100644 index 00000000..8a92b7cb --- /dev/null +++ b/resource/unittestdata/406-1/hp52406-1.taccut.csv @@ -0,0 +1,131 @@ +# DetID,Strip voltage, StripID, Shaping Offset, Coincidence Window, Disable Time, Flag-to-enable Delay, FL noise cut, Flag delay +0,l,0,2255,500,1400,100,200,200 +0,l,1,2255,500,1400,100,200,200 +0,l,2,2255,500,1400,100,200,200 +0,l,3,2255,500,1400,100,200,200 +0,l,4,2255,500,1400,100,200,200 +0,l,5,2255,500,1400,100,200,200 +0,l,6,2255,500,1400,100,200,200 +0,l,7,2255,500,1400,100,200,200 +0,l,8,2255,500,1400,100,200,200 +0,l,9,2255,500,1400,100,200,200 +0,l,10,2255,500,1400,100,200,200 +0,l,11,2255,500,1400,100,200,200 +0,l,12,2255,500,1400,100,200,200 +0,l,13,2255,500,1400,100,200,200 +0,l,14,2255,500,1400,100,200,200 +0,l,15,2255,500,1400,100,200,200 +0,l,16,2255,500,1400,100,200,200 +0,l,17,2255,500,1400,100,200,200 +0,l,18,2255,500,1400,100,200,200 +0,l,19,2255,500,1400,100,200,200 +0,l,20,2255,500,1400,100,200,200 +0,l,21,2255,500,1400,100,200,200 +0,l,22,2255,500,1400,100,200,200 +0,l,23,2255,500,1400,100,200,200 +0,l,24,2255,500,1400,100,200,200 +0,l,25,2255,500,1400,100,200,200 +0,l,26,2255,500,1400,100,200,200 +0,l,27,2255,500,1400,100,200,200 +0,l,28,2255,500,1400,100,200,200 +0,l,29,2255,500,1400,100,200,200 +0,l,30,2255,500,1400,100,200,200 +0,l,31,2255,500,1400,100,200,200 +0,l,32,2255,500,1400,100,200,200 +0,l,33,2255,500,1400,100,200,200 +0,l,34,2255,500,1400,100,200,200 +0,l,35,2255,500,1400,100,200,200 +0,l,36,2255,500,1400,100,200,200 +0,l,37,2255,500,1400,100,200,200 +0,l,38,2255,500,1400,100,200,200 +0,l,39,2255,500,1400,100,200,200 +0,l,40,2255,500,1400,100,200,200 +0,l,41,2255,500,1400,100,200,200 +0,l,42,2255,500,1400,100,200,200 +0,l,43,2255,500,1400,100,200,200 +0,l,44,2255,500,1400,100,200,200 +0,l,45,2255,500,1400,100,200,200 +0,l,46,2255,500,1400,100,200,200 +0,l,47,2255,500,1400,100,200,200 +0,l,48,2255,500,1400,100,200,200 +0,l,49,2255,500,1400,100,200,200 +0,l,50,2255,500,1400,100,200,200 +0,l,51,2255,500,1400,100,200,200 +0,l,52,2255,500,1400,100,200,200 +0,l,53,2255,500,1400,100,200,200 +0,l,54,2255,500,1400,100,200,200 +0,l,55,2255,500,1400,100,200,200 +0,l,56,2255,500,1400,100,200,200 +0,l,57,2255,500,1400,100,200,200 +0,l,58,2255,500,1400,100,200,200 +0,l,59,2255,500,1400,100,200,200 +0,l,60,2255,500,1400,100,200,200 +0,l,61,2255,500,1400,100,200,200 +0,l,62,2255,500,1400,100,200,200 +0,l,63,2255,500,1400,100,200,200 +0,l,64,2255,500,1400,100,200,200 +0,h,65,2255,500,1400,100,200,200 +0,h,0,2255,500,1400,100,200,200 +0,h,1,2255,500,1400,100,200,200 +0,h,2,2255,500,1400,100,200,200 +0,h,3,2255,500,1400,100,200,200 +0,h,4,2255,500,1400,100,200,200 +0,h,5,2255,500,1400,100,200,200 +0,h,6,2255,500,1400,100,200,200 +0,h,7,2255,500,1400,100,200,200 +0,h,8,2255,500,1400,100,200,200 +0,h,9,2255,500,1400,100,200,200 +0,h,10,2255,500,1400,100,200,200 +0,h,11,2255,500,1400,100,200,200 +0,h,12,2255,500,1400,100,200,200 +0,h,13,2255,500,1400,100,200,200 +0,h,14,2255,500,1400,100,200,200 +0,h,15,2255,500,1400,100,200,200 +0,h,16,2255,500,1400,100,200,200 +0,h,17,2255,500,1400,100,200,200 +0,h,18,2255,500,1400,100,200,200 +0,h,19,2255,500,1400,100,200,200 +0,h,20,2255,500,1400,100,200,200 +0,h,21,2255,500,1400,100,200,200 +0,h,22,2255,500,1400,100,200,200 +0,h,23,2255,500,1400,100,200,200 +0,h,24,2255,500,1400,100,200,200 +0,h,25,2255,500,1400,100,200,200 +0,h,26,2255,500,1400,100,200,200 +0,h,27,2255,500,1400,100,200,200 +0,h,28,2255,500,1400,100,200,200 +0,h,29,2255,500,1400,100,200,200 +0,h,30,2255,500,1400,100,200,200 +0,h,31,2255,500,1400,100,200,200 +0,h,32,2255,500,1400,100,200,200 +0,h,33,2255,500,1400,100,200,200 +0,h,34,2255,500,1400,100,200,200 +0,h,35,2255,500,1400,100,200,200 +0,h,36,2255,500,1400,100,200,200 +0,h,37,2255,500,1400,100,200,200 +0,h,38,2255,500,1400,100,200,200 +0,h,39,2255,500,1400,100,200,200 +0,h,40,2255,500,1400,100,200,200 +0,h,41,2255,500,1400,100,200,200 +0,h,42,2255,500,1400,100,200,200 +0,h,43,2255,500,1400,100,200,200 +0,h,44,2255,500,1400,100,200,200 +0,h,45,2255,500,1400,100,200,200 +0,h,46,2255,500,1400,100,200,200 +0,h,47,2255,500,1400,100,200,200 +0,h,48,2255,500,1400,100,200,200 +0,h,49,2255,500,1400,100,200,200 +0,h,50,2255,500,1400,100,200,200 +0,h,51,2255,500,1400,100,200,200 +0,h,52,2255,500,1400,100,200,200 +0,h,53,2255,500,1400,100,200,200 +0,h,54,2255,500,1400,100,200,200 +0,h,55,2255,500,1400,100,200,200 +0,h,56,2255,500,1400,100,200,200 +0,h,57,2255,500,1400,100,200,200 +0,h,58,2255,500,1400,100,200,200 +0,h,59,2255,500,1400,100,200,200 +0,h,60,2255,500,1400,100,200,200 +0,h,61,2255,500,1400,100,200,200 +0,h,62,2255,500,1400,100,200,200 +0,h,63,2255,500,1400,100,200,200 diff --git a/resource/unittestdata/542-1/hdf5-to-roa.nuclearizer.cfg b/resource/unittestdata/542-1/hdf5-to-roa.nuclearizer.cfg new file mode 100644 index 00000000..ee9b747e --- /dev/null +++ b/resource/unittestdata/542-1/hdf5-to-roa.nuclearizer.cfg @@ -0,0 +1,32 @@ + + 1 + + XmlTagMeasurementLoaderHDF + XmlTagEventSaver + + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.simplified.geo.setup + + + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.gse_20251016T191639.hdf5 + true + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.stripmap.map + false + + + $(NUCLEARIZER)/resource/unittestdata/542-1/hdf5-to-tra.roa + 0 + true + true + false + false + 600 + true + true + false + false + true + false + true + + + diff --git a/resource/unittestdata/542-1/hdf5-to-roa.reference.roa b/resource/unittestdata/542-1/hdf5-to-roa.reference.roa new file mode 100644 index 00000000..8395fbd8 --- /dev/null +++ b/resource/unittestdata/542-1/hdf5-to-roa.reference.roa @@ -0,0 +1,54637 @@ + +TYPE ROA +UF doublesidedstrip adc_tac_flags +SE +ID 1 +TI 1760667399.582988500 +UH 0 41 l 4053 10452 4 +UH 0 42 l 1727 10539 4 +UH 0 49 h 1780 10251 4 +UH 0 50 h 4203 10105 4 +PQ +SE +ID 2 +TI 1760667399.583013296 +UH 0 53 l 1685 4653 0 +UH 0 12 h 1651 11605 4 +PQ +SE +ID 3 +TI 1760667399.583032369 +UH 0 64 l 1646 0 5 +UH 0 64 h 1829 0 5 +BD GR Veto +PQ +SE +ID 4 +TI 1760667399.583040952 +UH 0 22 l 3589 10506 4 +UH 0 23 l 2419 10585 4 +UH 0 63 h 4508 10911 4 +PQ +SE +ID 5 +TI 1760667399.583059787 +UH 0 63 l 3625 10189 4 +UH 0 21 h 3689 11271 4 +PQ +SE +ID 6 +TI 1760667399.583075284 +UH 0 41 l 2213 11000 4 +UH 0 43 l 1535 5067 0 +UH 0 50 l 1846 10705 4 +UH 0 19 h 2327 11219 4 +UH 0 21 h 1596 4889 0 +UH 0 26 h 1881 11358 4 +PQ +SE +ID 7 +TI 1760667399.583118438 +UH 0 20 l 2689 10382 4 +UH 0 21 l 1599 4891 0 +UH 0 2 h 1765 11458 4 +UH 0 3 h 2599 11036 4 +PQ +SE +ID 8 +TI 1760667399.583141326 +UH 0 31 l 2254 11167 4 +UH 0 50 h 2370 11007 4 +PQ +SE +ID 9 +TI 1760667399.583159923 +UH 0 61 l 3739 8698 4 +UH 0 62 l 1617 8972 4 +UH 0 48 h 3860 9301 4 +PQ +SE +ID 10 +TI 1760667399.583180427 +UH 0 31 l 5570 9250 4 +UH 0 0 h 3094 8943 4 +UH 0 1 h 4069 8888 4 +UH 0 64 h 1685 0 5 +BD GR Veto +PQ +SE +ID 11 +TI 1760667399.583200931 +UH 0 64 l 2107 0 5 +UH 0 64 h 2236 0 5 +BD GR Veto +PQ +SE +ID 12 +TI 1760667399.583209276 +UH 0 43 l 2091 10773 4 +UH 0 53 h 2223 11082 4 +PQ +SE +ID 13 +TI 1760667399.583227396 +UH 0 53 l 2178 10874 4 +UH 0 8 h 2203 11041 4 +PQ +SE +ID 14 +TI 1760667399.583245038 +UH 0 5 l 3831 10742 4 +UH 0 55 h 1933 10532 4 +UH 0 56 h 3638 10770 4 +PQ +SE +ID 15 +TI 1760667399.583272218 +UH 0 64 l 1985 0 5 +UH 0 64 h 2098 0 5 +BD GR Veto +PQ +SE +ID 16 +TI 1760667399.583280801 +UH 0 63 l 1693 5035 0 +UH 0 64 l 1754 0 5 +UH 0 46 h 2096 11295 4 +BD GR Veto +PQ +SE +ID 17 +TI 1760667399.583298206 +UH 0 32 l 3907 9704 4 +UH 0 29 l 2011 9567 4 +UH 0 6 h 1645 3792 0 +UH 0 7 h 1898 9873 4 +UH 0 10 h 1572 10118 4 +UH 0 11 h 3911 9855 4 +UH 0 12 h 1592 9834 4 +PQ +SE +ID 18 +TI 1760667399.583342790 +UH 0 38 l 1894 11222 4 +UH 0 1 h 2019 11154 4 +PQ +SE +ID 19 +TI 1760667399.583360195 +UH 0 44 l 3897 7120 4 +UH 0 12 l 2532 10492 4 +UH 0 13 l 3194 10939 4 +UH 0 6 h 4063 7908 4 +UH 0 18 h 1732 10957 4 +UH 0 19 h 3549 11121 4 +UH 0 20 h 2020 10901 4 +PQ +SE +ID 20 +TI 1760667399.583404064 +UH 0 17 l 2183 10479 4 +UH 0 18 l 1685 4604 0 +UH 0 12 h 2385 11335 4 +PQ +SE +ID 21 +TI 1760667399.583424568 +UH 0 64 l 1643 0 5 +UH 0 64 h 1738 0 5 +BD GR Veto +PQ +SE +ID 22 +TI 1760667399.583431959 +UH 0 36 l 1616 5168 0 +UH 0 13 h 1632 4678 0 +PQ +SE +ID 23 +TI 1760667399.583449602 +UH 0 38 l 3967 10884 4 +UH 0 64 l 2923 0 5 +UH 0 53 h 4060 10302 4 +UH 0 64 h 2941 0 5 +BD GR Veto +PQ +SE +ID 24 +TI 1760667399.583472728 +UH 0 47 l 2995 8942 4 +UH 0 48 l 1525 5401 0 +UH 0 61 l 1714 1536 0 +UH 0 62 l 1689 1540 0 +UH 0 63 l 1650 1352 0 +UH 0 7 h 3355 9678 4 +PQ +SE +ID 25 +TI 1760667399.583502531 +UH 0 53 l 1923 10674 4 +UH 0 56 l 2385 11008 4 +UH 0 57 l 2188 10692 4 +UH 0 58 h 2292 10958 4 +UH 0 59 h 2456 11073 4 +UH 0 62 h 2042 11092 4 +PQ +SE +ID 26 +TI 1760667399.583540678 +UH 0 21 l 2647 11058 4 +UH 0 22 l 2298 10816 4 +UH 0 23 l 1954 10519 4 +UH 0 47 h 1909 10774 4 +UH 0 49 h 1770 10722 4 +UH 0 50 h 3303 10589 4 +PQ +SE +ID 27 +TI 1760667399.583568334 +UH 0 0 l 1887 10507 4 +UH 0 1 l 1725 10869 4 +UH 0 3 l 1771 10448 4 +UH 0 4 l 1918 10591 4 +UH 0 5 l 4372 10692 4 +UH 0 13 h 1900 11001 4 +UH 0 14 h 2971 11071 4 +UH 0 15 h 3609 11214 4 +UH 0 16 h 1658 10981 4 +PQ +SE +ID 28 +TI 1760667399.583602666 +UH 0 8 l 2204 10299 4 +UH 0 9 l 2269 10288 4 +UH 0 19 l 4025 10671 4 +UH 0 24 h 5461 10936 4 +PQ +SE +ID 29 +TI 1760667399.583630561 +UH 0 24 l 1675 5341 0 +UH 0 25 l 3678 9033 4 +UH 0 28 l 2410 9071 4 +UH 0 29 l 2434 8774 4 +UH 0 33 h 3701 8858 4 +UH 0 34 h 2170 9020 4 +UH 0 35 h 2673 9198 4 +PQ +SE +ID 30 +TI 1760667399.583670616 +UH 0 21 l 1947 10930 4 +UH 0 15 h 2005 11841 4 +PQ +SE +ID 31 +TI 1760667399.583688735 +UH 0 4 l 1848 11250 4 +UH 0 5 l 1868 11039 4 +UH 0 60 h 1812 10680 4 +UH 0 61 h 1841 11085 4 +PQ +SE +ID 32 +TI 1760667399.583711385 +UH 0 46 l 1520 4279 0 +UH 0 47 l 1599 5079 0 +UH 0 57 h 1746 11709 4 +PQ +SE +ID 33 +TI 1760667399.583731651 +UH 0 35 l 2010 11057 4 +UH 0 35 h 1743 4467 0 +UH 0 36 h 1948 10559 4 +PQ +SE +ID 34 +TI 1760667399.583751678 +UH 0 12 l 1854 5026 0 +UH 0 10 h 1762 11963 4 +PQ +SE +ID 35 +TI 1760667399.583769798 +UH 0 46 l 2758 10791 4 +UH 0 47 l 3035 10713 4 +UH 0 48 l 1778 10910 4 +UH 0 49 l 2060 10933 4 +UH 0 61 l 1652 3570 0 +UH 0 62 l 1631 2631 0 +UH 0 63 l 1580 2124 0 +UH 0 7 h 2286 11110 4 +UH 0 8 h 3500 11554 4 +UH 0 13 h 2488 11137 4 +UH 0 14 h 2025 11298 4 +PQ +SE +ID 36 +TI 1760667399.583816528 +UH 0 57 l 2248 10598 4 +UH 0 57 h 2364 11326 4 +PQ +SE +ID 37 +TI 1760667399.583834648 +UH 0 64 l 3121 0 5 +UH 0 54 h 2695 10811 4 +UH 0 64 h 1997 0 5 +BD GR Veto +PQ +SE +ID 38 +TI 1760667399.583849906 +UH 0 32 l 4155 10801 4 +UH 0 23 h 4126 10733 4 +PQ +SE +ID 39 +TI 1760667399.583867788 +UH 0 36 l 1673 3691 0 +UH 0 38 l 2031 10048 4 +UH 0 25 l 3314 10141 4 +UH 0 26 l 1679 10401 4 +UH 0 28 l 1673 10435 4 +UH 0 29 l 1760 10182 4 +UH 0 30 l 2562 10375 4 +UH 0 31 l 1609 4345 0 +UH 0 39 h 1740 4165 0 +UH 0 41 h 3460 10301 4 +UH 0 42 h 2180 9893 4 +UH 0 44 h 1738 10043 4 +UH 0 45 h 1626 10246 4 +UH 0 46 h 2691 9966 4 +PQ +SE +ID 40 +TI 1760667399.583930015 +UH 0 20 l 2188 10857 4 +UH 0 41 h 2181 10872 4 +PQ +SE +ID 41 +TI 1760667399.583948373 +UH 0 39 l 1765 3536 0 +UH 0 40 l 4213 8775 4 +UH 0 41 l 1497 9157 4 +UH 0 24 h 1877 9268 4 +UH 0 25 h 4136 9417 4 +PQ +SE +ID 42 +TI 1760667399.583973407 +UH 0 18 l 3646 10605 4 +UH 0 19 l 1776 11006 4 +UH 0 20 l 2197 10635 4 +UH 0 47 h 2453 10461 4 +UH 0 48 h 3905 10535 4 +PQ +SE +ID 43 +TI 1760667399.583997726 +UH 0 45 l 1578 5275 0 +UH 0 50 h 1697 4711 0 +PQ +SE +ID 44 +TI 1760667399.584015130 +UH 0 37 l 1592 4618 0 +UH 0 38 l 3370 8156 4 +UH 0 39 l 1611 5227 0 +UH 0 40 l 2613 8292 4 +UH 0 48 h 2681 8565 4 +UH 0 57 h 3534 8788 4 +PQ +SE +ID 45 +TI 1760667399.584047555 +UH 0 34 l 2254 10605 4 +UH 0 64 l 1927 0 5 +UH 0 2 h 2391 11475 4 +UH 0 64 h 1982 0 5 +BD GR Veto +PQ +SE +ID 46 +TI 1760667399.584070444 +UH 0 14 l 3124 10925 4 +UH 0 2 h 1619 6522 0 +UH 0 3 h 3190 10560 4 +UH 0 4 h 1681 11136 4 +PQ +SE +ID 47 +TI 1760667399.584115266 +UH 0 22 l 1931 11135 4 +UH 0 28 h 2003 10913 4 +PQ +SE +ID 48 +TI 1760667399.584134101 +UH 0 36 l 1685 10305 4 +UH 0 37 l 2896 10500 4 +UH 0 47 l 2347 10817 4 +UH 0 48 l 2209 10787 4 +UH 0 54 l 2007 10637 4 +UH 0 55 l 1510 4680 0 +UH 0 63 l 1532 2618 0 +UH 0 12 h 1893 10838 4 +UH 0 13 h 2078 10892 4 +UH 0 16 h 2341 11157 4 +UH 0 20 h 2239 11001 4 +UH 0 22 h 3197 10951 4 +PQ +SE +ID 49 +TI 1760667399.584201097 +UH 0 29 l 1865 9187 4 +UH 0 30 l 4206 9349 4 +UH 0 12 h 4534 9256 4 +UH 0 13 h 1595 9455 4 +PQ +SE +ID 50 +TI 1760667399.584224224 +UH 0 34 l 1820 10716 4 +UH 0 10 h 1658 5109 0 +UH 0 11 h 1759 4998 0 +PQ +SE +ID 51 +TI 1760667399.584245204 +UH 0 38 l 2215 9946 4 +UH 0 41 l 2182 10536 4 +UH 0 42 l 1611 10576 4 +UH 0 43 l 3763 10440 4 +UH 0 25 h 1513 10592 4 +UH 0 26 h 3875 10632 4 +UH 0 27 h 3124 10697 4 +UH 0 28 h 1646 10355 4 +PQ +SE +ID 52 +TI 1760667399.584287166 +UH 0 3 l 2635 10650 4 +UH 0 51 h 2765 11055 4 +PQ +SE +ID 53 +TI 1760667399.584304809 +UH 0 41 l 1653 4565 0 +UH 0 48 l 1539 3717 0 +UH 0 51 l 1695 10605 4 +UH 0 52 l 3132 10444 4 +UH 0 33 h 3065 10118 4 +UH 0 34 h 1715 10354 4 +UH 0 22 h 1827 10741 4 +UH 0 28 h 1675 4130 0 +PQ +SE +ID 54 +TI 1760667399.584362030 +UH 0 19 l 1871 11091 4 +UH 0 22 h 1937 10777 4 +PQ +SE +ID 55 +TI 1760667399.584380626 +UH 0 64 l 2292 0 5 +UH 0 64 h 2365 0 5 +BD GR Veto +PQ +SE +ID 56 +TI 1760667399.584387779 +UH 0 17 l 3176 10730 4 +UH 0 18 l 2303 10647 4 +UH 0 41 h 4225 11212 4 +PQ +SE +ID 57 +TI 1760667399.584408283 +UH 0 36 l 2921 10153 4 +UH 0 29 l 1667 5365 0 +UH 0 30 l 2134 10733 4 +UH 0 33 h 2949 10033 4 +UH 0 41 h 1895 10519 4 +UH 0 42 h 1904 10091 4 +PQ +SE +ID 58 +TI 1760667399.584443807 +UH 0 64 l 1656 0 5 +UH 0 64 h 1704 0 5 +BD GR Veto +PQ +SE +ID 59 +TI 1760667399.584452390 +UH 0 48 l 1523 8797 4 +UH 0 49 l 3932 8639 4 +UH 0 50 l 1574 8632 4 +UH 0 41 h 4171 9151 4 +PQ +SE +ID 60 +TI 1760667399.584475755 +UH 0 64 l 3127 0 5 +UH 0 64 h 3111 0 5 +BD GR Veto +PQ +SE +ID 61 +TI 1760667399.584483146 +UH 0 16 l 2280 10305 4 +UH 0 19 l 2516 10548 4 +UH 0 21 l 3548 10486 4 +UH 0 54 h 3146 10238 4 +UH 0 55 h 2976 9875 4 +UH 0 56 h 1625 10260 4 +UH 0 62 h 2544 9905 4 +UH 0 63 h 1641 4466 0 +PQ +SE +ID 62 +TI 1760667399.584529638 +UH 0 64 l 2356 0 5 +UH 0 64 h 2417 0 5 +BD GR Veto +PQ +SE +ID 63 +TI 1760667399.601939916 +UH 0 45 l 2098 10778 4 +UH 0 46 l 1809 10849 4 +UH 0 47 l 1887 10942 4 +UH 0 26 h 1865 11399 4 +UH 0 28 h 2141 10923 4 +UH 0 29 h 1573 4381 0 +UH 0 30 h 2201 11322 4 +PQ +SE +ID 64 +TI 1760667399.602001190 +UH 0 40 l 1543 5246 0 +UH 0 41 l 2104 10639 4 +UH 0 64 l 4144 0 5 +UH 0 50 h 2393 10676 4 +UH 0 64 h 4080 0 5 +BD GR Veto +PQ +SE +ID 65 +TI 1760667399.602027893 +UH 0 64 l 2456 0 5 +UH 0 64 h 2489 0 5 +BD GR Veto +PQ +SE +ID 66 +TI 1760667399.602035522 +UH 0 51 l 3852 10300 4 +UH 0 52 l 1613 10391 4 +UH 0 34 h 1847 10027 4 +UH 0 30 h 3069 10789 4 +UH 0 31 h 1972 10207 4 +PQ +SE +ID 67 +TI 1760667399.602064371 +UH 0 31 l 1802 11513 4 +UH 0 26 h 1737 5118 0 +UH 0 27 h 1652 5111 0 +PQ +SE +ID 68 +TI 1760667399.602085351 +UH 0 48 l 1732 5217 0 +UH 0 61 h 1821 11423 4 +PQ +SE +ID 69 +TI 1760667399.602103948 +UH 0 64 l 2457 0 5 +UH 0 64 h 2511 0 5 +BD GR Veto +PQ +SE +ID 70 +TI 1760667399.602112054 +UH 0 17 l 3835 10009 4 +UH 0 26 l 2060 10488 4 +UH 0 27 l 2559 9972 4 +UH 0 7 h 2670 10121 4 +UH 0 8 h 2932 10434 4 +UH 0 17 h 1528 10282 4 +UH 0 18 h 3189 10239 4 +PQ +SE +ID 71 +TI 1760667399.602159261 +UH 0 50 l 3113 10727 4 +UH 0 9 h 2183 10616 4 +UH 0 11 h 2562 10831 4 +PQ +SE +ID 72 +TI 1760667399.602182388 +UH 0 25 l 3347 10688 4 +UH 0 26 l 1988 10955 4 +UH 0 6 h 3766 11254 4 +PQ +SE +ID 73 +TI 1760667399.602202177 +UH 0 20 l 1691 5013 0 +UH 0 21 l 2553 10882 4 +UH 0 20 h 1750 11175 4 +UH 0 21 h 2485 11358 4 +PQ +SE +ID 74 +TI 1760667399.602225065 +UH 0 64 h 1782 0 5 +BD GR Veto +PQ +SE +ID 75 +TI 1760667399.602231264 +UH 0 3 l 2754 10855 4 +UH 0 4 l 1703 5140 0 +UH 0 18 h 2907 10815 4 +UH 0 19 h 1678 11160 4 +PQ +SE +ID 76 +TI 1760667399.602253675 +UH 0 59 l 1862 10839 4 +UH 0 4 h 1990 11612 4 +PQ +SE +ID 77 +TI 1760667399.602272510 +UH 0 26 l 3803 9281 4 +UH 0 27 l 1635 8995 4 +UH 0 51 h 3766 9422 4 +PQ +SE +ID 78 +TI 1760667399.602293491 +UH 0 33 l 2092 8857 4 +UH 0 22 l 2305 8918 4 +UH 0 30 l 3982 9515 4 +UH 0 6 h 4095 9540 4 +UH 0 7 h 1630 9601 4 +UH 0 9 h 2369 9672 4 +UH 0 15 h 1648 2768 0 +UH 0 16 h 2125 9762 4 +PQ +SE +ID 79 +TI 1760667399.602349996 +UH 0 20 l 2341 10305 4 +UH 0 3 h 2415 11178 4 +PQ +SE +ID 80 +TI 1760667399.602367401 +UH 0 55 h 1697 5141 0 +PQ +SE +ID 81 +TI 1760667399.602378129 +UH 0 53 l 1826 10566 4 +UH 0 64 l 2001 0 5 +UH 0 64 h 2333 0 5 +BD GR Veto +PQ +SE +ID 82 +TI 1760667399.602392911 +UH 0 30 l 1621 5532 0 +UH 0 31 l 1648 5453 0 +PQ +SE +ID 83 +TI 1760667399.602405548 +UH 0 64 l 1862 0 5 +UH 0 64 h 2981 0 5 +BD GR Veto +PQ +SE +ID 84 +TI 1760667399.602413415 +UH 0 64 l 1677 0 5 +UH 0 64 h 2578 0 5 +BD GR Veto +PQ +SE +ID 85 +TI 1760667399.602421760 +UH 0 30 l 2358 11012 4 +UH 0 61 h 2370 11295 4 +PQ +SE +ID 86 +TI 1760667399.602438688 +UH 0 44 l 1976 10302 4 +UH 0 64 l 4136 0 5 +UH 0 0 h 2180 11262 4 +UH 0 64 h 4034 0 5 +BD GR Veto +PQ +SE +ID 87 +TI 1760667399.602458953 +UH 0 4 l 2386 11069 4 +UH 0 13 h 2350 11254 4 +UH 0 14 h 1664 5333 0 +PQ +SE +ID 88 +TI 1760667399.602478265 +UH 0 32 l 1689 4555 0 +UH 0 42 h 1749 5151 0 +PQ +SE +ID 89 +TI 1760667399.602496147 +UH 0 58 l 1643 5121 0 +UH 0 51 h 1603 4991 0 +PQ +SE +ID 90 +TI 1760667399.602513074 +UH 0 21 l 2562 11154 4 +UH 0 1 h 1963 11525 4 +UH 0 5 h 2300 11239 4 +PQ +SE +ID 91 +TI 1760667399.602538585 +UH 0 31 l 1844 11070 4 +UH 0 55 h 2002 11084 4 +PQ +SE +ID 92 +TI 1760667399.602553606 +UH 0 56 l 1638 5210 0 +UH 0 58 h 1691 5217 0 +PQ +SE +ID 93 +TI 1760667399.602571249 +UH 0 17 l 5515 9292 4 +UH 0 19 h 1567 9560 4 +UH 0 20 h 5470 9187 4 +UH 0 21 h 1636 9532 4 +UH 0 22 h 1666 9375 4 +PQ +SE +ID 94 +TI 1760667399.602596044 +UH 0 21 l 2313 10656 4 +UH 0 23 l 1713 5336 0 +UH 0 24 l 1743 4240 0 +UH 0 23 h 2352 10864 4 +UH 0 29 h 1706 4931 0 +PQ +SE +ID 95 +TI 1760667399.602633953 +UH 0 47 l 1955 10832 4 +UH 0 37 h 2133 10519 4 +PQ +SE +ID 96 +TI 1760667399.602650403 +UH 0 51 l 2212 10829 4 +UH 0 24 h 2230 11187 4 +PQ +SE +ID 97 +TI 1760667399.602668046 +UH 0 3 l 2776 10471 4 +UH 0 18 l 1732 4595 0 +UH 0 34 h 2827 10823 4 +UH 0 48 h 1786 11005 4 +PQ +SE +ID 98 +TI 1760667399.602705955 +UH 0 44 l 1582 10108 4 +UH 0 45 l 4105 9973 4 +UH 0 60 h 4449 10208 4 +PQ +SE +ID 99 +TI 1760667399.602725982 +UH 0 51 l 1725 5458 0 +UH 0 4 h 1691 5168 0 +UH 0 5 h 1596 4224 0 +PQ +SE +ID 100 +TI 1760667399.602746009 +UH 0 25 l 2322 11044 4 +UH 0 64 l 2953 0 5 +UH 0 5 h 2340 11090 4 +UH 0 64 h 2928 0 5 +BD GR Veto +PQ +SE +ID 101 +TI 1760667399.602768421 +UH 0 56 l 1591 10760 4 +UH 0 57 l 2832 10346 4 +UH 0 14 h 3054 10792 4 +PQ +SE +ID 102 +TI 1760667399.602788925 +UH 0 60 l 2473 10459 4 +UH 0 61 l 1741 5056 0 +UH 0 20 h 1731 4617 0 +UH 0 21 h 2519 11008 4 +PQ +SE +ID 103 +TI 1760667399.602811813 +UH 0 33 l 1575 8407 4 +UH 0 34 l 3709 8691 4 +UH 0 35 l 1562 8734 4 +UH 0 36 l 2000 2959 0 +UH 0 37 l 2611 8490 4 +UH 0 27 h 3849 9131 4 +UH 0 31 h 3254 8812 4 +PQ +SE +ID 104 +TI 1760667399.602849483 +UH 0 64 h 1728 0 5 +BD GR Veto +PQ +SE +ID 105 +TI 1760667399.602855205 +UH 0 20 l 3824 8653 4 +UH 0 21 l 2333 9074 4 +UH 0 22 l 1616 5329 0 +UH 0 36 h 3992 9214 4 +UH 0 39 h 2375 9046 4 +PQ +SE +ID 106 +TI 1760667399.602892637 +UH 0 21 l 2420 10992 4 +UH 0 22 l 3442 10661 4 +UH 0 1 h 4473 11169 4 +PQ +SE +ID 107 +TI 1760667399.602912187 +UH 0 32 l 2379 10770 4 +UH 0 31 l 2504 10885 4 +UH 0 38 h 2503 11271 4 +UH 0 39 h 1745 4581 0 +UH 0 41 h 2491 11286 4 +PQ +SE +ID 108 +TI 1760667399.602940082 +UH 0 3 l 1894 11027 4 +UH 0 64 l 3753 0 5 +UH 0 59 h 1894 10633 4 +UH 0 64 h 3657 0 5 +BD GR Veto +PQ +SE +ID 109 +TI 1760667399.602962255 +UH 0 38 l 2899 9061 4 +UH 0 39 l 2166 9104 4 +UH 0 40 l 3122 9100 4 +UH 0 22 h 3036 9070 4 +UH 0 23 h 1678 9184 4 +UH 0 24 h 3899 9044 4 +UH 0 25 h 1526 9419 4 +PQ +SE +ID 110 +TI 1760667399.602999925 +UH 0 15 h 1614 5691 0 +PQ +SE +ID 111 +TI 1760667399.603010416 +UH 0 57 l 1618 5208 0 +UH 0 58 l 2756 9914 4 +UH 0 59 l 2793 10151 4 +UH 0 60 l 2035 9968 4 +UH 0 61 l 2212 10009 4 +UH 0 47 h 2567 10475 4 +UH 0 48 h 4772 10533 4 +PQ +SE +ID 112 +TI 1760667399.603038549 +UH 0 16 l 2176 10874 4 +UH 0 17 l 1763 10873 4 +UH 0 24 h 1764 11192 4 +UH 0 25 h 2262 11331 4 +PQ +SE +ID 113 +TI 1760667399.603060007 +UH 0 64 l 1633 0 5 +UH 0 64 h 2189 0 5 +BD GR Veto +PQ +SE +ID 114 +TI 1760667399.603067874 +UH 0 64 l 1828 0 5 +UH 0 64 h 1914 0 5 +BD GR Veto +PQ +SE +ID 115 +TI 1760667399.603076696 +UH 0 47 l 2527 10818 4 +UH 0 63 l 1529 2337 0 +UH 0 7 h 2541 10700 4 +UH 0 8 h 1826 11091 4 +PQ +SE +ID 116 +TI 1760667399.603101015 +UH 0 41 l 3634 10476 4 +UH 0 44 l 1946 10205 4 +UH 0 45 l 1572 5264 0 +UH 0 43 h 2078 10351 4 +UH 0 44 h 3326 10158 4 +UH 0 47 h 1749 4121 0 +UH 0 48 h 1643 3999 0 +UH 0 49 h 1713 4364 0 +UH 0 50 h 1670 3559 0 +UH 0 51 h 1556 4214 0 +PQ +SE +ID 117 +TI 1760667399.603149652 +UH 0 36 l 2736 10573 4 +UH 0 30 l 1617 5293 0 +UH 0 56 h 2763 10516 4 +UH 0 57 h 1598 10735 4 +UH 0 62 h 1700 4351 0 +PQ +SE +ID 118 +TI 1760667399.603189945 +UH 0 51 l 1644 3972 0 +UH 0 53 l 3124 10802 4 +UH 0 38 h 3269 10537 4 +UH 0 42 h 1635 4246 0 +PQ +SE +ID 119 +TI 1760667399.603227615 +UH 0 7 l 1789 7303 4 +UH 0 28 l 4122 10876 4 +UH 0 38 h 1977 7083 4 +UH 0 43 h 4166 11035 4 +PQ +SE +ID 120 +TI 1760667399.603265285 +UH 0 8 l 4027 10543 4 +UH 0 9 l 1729 10791 4 +UH 0 10 l 1639 5062 0 +UH 0 23 h 1683 11137 4 +UH 0 24 h 4108 11029 4 +PQ +SE +ID 121 +TI 1760667399.603290081 +UH 0 22 l 2004 10689 4 +UH 0 23 l 3473 10632 4 +UH 0 53 h 3964 10956 4 +PQ +SE +ID 122 +TI 1760667399.603309631 +UH 0 14 l 3250 10825 4 +UH 0 26 h 3296 11314 4 +PQ +SE +ID 123 +TI 1760667399.603327751 +UH 0 63 l 1530 5202 0 +UH 0 64 l 2727 0 5 +UH 0 64 h 4293 0 5 +BD GR Veto +PQ +SE +ID 124 +TI 1760667399.603340387 +UH 0 47 l 2596 10887 4 +UH 0 48 l 2907 10920 4 +UH 0 63 l 1545 2012 0 +UH 0 39 h 2446 10531 4 +UH 0 40 h 1684 10589 4 +UH 0 41 h 3382 10759 4 +PQ +SE +ID 125 +TI 1760667399.603377819 +UH 0 64 l 1660 0 5 +UH 0 64 h 2125 0 5 +BD GR Veto +PQ +SE +ID 126 +TI 1760667399.603385925 +UH 0 16 l 1759 4677 0 +UH 0 22 l 1930 10711 4 +UH 0 1 h 1859 11475 4 +UH 0 5 h 1923 11449 4 +PQ +SE +ID 127 +TI 1760667399.625020980 +UH 0 63 l 1636 5102 0 +UH 0 64 l 1926 0 5 +UH 0 47 h 2059 11102 4 +UH 0 48 h 1683 5004 0 +BD GR Veto +PQ +SE +ID 128 +TI 1760667399.625090837 +UH 0 64 l 2078 0 5 +UH 0 64 h 2139 0 5 +BD GR Veto +PQ +SE +ID 129 +TI 1760667399.625100135 +UH 0 28 l 1858 4651 0 +UH 0 29 l 1758 4363 0 +UH 0 16 h 2058 11446 4 +PQ +SE +ID 130 +TI 1760667399.625120401 +UH 0 12 l 2541 10513 4 +UH 0 13 l 2035 11023 4 +UH 0 43 h 2855 10665 4 +UH 0 44 h 1733 10604 4 +PQ +SE +ID 131 +TI 1760667399.625143051 +UH 0 50 l 1966 10959 4 +UH 0 53 h 1849 10947 4 +UH 0 54 h 1686 11086 4 +PQ +SE +ID 132 +TI 1760667399.625164031 +UH 0 59 l 1647 5283 0 +UH 0 60 l 2712 10093 4 +UH 0 40 h 2009 10668 4 +UH 0 43 h 2455 10799 4 +PQ +SE +ID 133 +TI 1760667399.625192165 +UH 0 14 l 1947 11078 4 +UH 0 15 h 1967 11440 4 +PQ +SE +ID 134 +TI 1760667399.625210285 +UH 0 38 l 2807 9393 4 +UH 0 39 l 1608 9406 4 +UH 0 30 l 3183 9896 4 +UH 0 31 l 2275 9772 4 +UH 0 17 h 1626 10062 4 +UH 0 18 h 2915 9857 4 +UH 0 23 h 3772 9666 4 +UH 0 24 h 1899 9720 4 +PQ +SE +ID 135 +TI 1760667399.625257492 +UH 0 32 l 3886 9215 4 +UH 0 33 l 1581 9038 4 +UH 0 35 l 1733 3593 0 +UH 0 36 l 1653 3575 0 +UH 0 45 h 1884 9388 4 +UH 0 46 h 3952 9178 4 +PQ +SE +ID 136 +TI 1760667399.625285625 +UH 0 18 l 1831 10400 4 +UH 0 19 l 1880 11085 4 +UH 0 64 l 3527 0 5 +UH 0 2 h 2268 11369 4 +UH 0 64 h 3504 0 5 +BD GR Veto +PQ +SE +ID 137 +TI 1760667399.625310420 +UH 0 64 l 2237 0 5 +UH 0 64 h 2300 0 5 +BD GR Veto +PQ +SE +ID 138 +TI 1760667399.625318765 +UH 0 32 l 2870 10495 4 +UH 0 28 l 1835 4584 0 +UH 0 31 l 1983 10688 4 +UH 0 20 h 3290 11045 4 +UH 0 21 h 1831 11367 4 +PQ +SE +ID 139 +TI 1760667399.625355958 +UH 0 64 l 3803 0 5 +UH 0 64 h 4063 0 5 +BD GR Veto +PQ +SE +ID 140 +TI 1760667399.625364303 +UH 0 25 l 2810 11211 4 +UH 0 33 h 2867 10492 4 +PQ +SE +ID 141 +TI 1760667399.625381708 +UH 0 61 l 2361 10379 4 +UH 0 21 h 2355 11433 4 +PQ +SE +ID 142 +TI 1760667399.625399351 +UH 0 25 l 1761 4771 0 +UH 0 52 h 1699 11533 4 +PQ +SE +ID 143 +TI 1760667399.625419378 +UH 0 64 l 2988 0 5 +UH 0 64 h 3560 0 5 +BD GR Veto +PQ +SE +ID 144 +TI 1760667399.625427484 +UH 0 34 l 2374 10143 4 +UH 0 35 l 2196 10381 4 +UH 0 37 l 2620 10502 4 +UH 0 62 l 2894 5359 4 +UH 0 57 h 2968 5428 4 +UH 0 22 h 1863 10967 4 +UH 0 23 h 2514 10954 4 +UH 0 26 h 3176 11358 4 +PQ +SE +ID 145 +TI 1760667399.625476360 +UH 0 37 l 2295 10960 4 +UH 0 54 h 2269 10704 4 +PQ +SE +ID 146 +TI 1760667399.625494003 +UH 0 40 l 2171 10469 4 +UH 0 22 h 2389 11154 4 +PQ +SE +ID 147 +TI 1760667399.625511169 +UH 0 6 l 2560 10973 4 +UH 0 58 h 2659 10870 4 +PQ +SE +ID 148 +TI 1760667399.625529050 +UH 0 37 l 2357 10941 4 +UH 0 11 h 2127 11158 4 +UH 0 12 h 1760 11072 4 +PQ +SE +ID 149 +TI 1760667399.625549077 +UH 0 48 l 2330 10947 4 +UH 0 47 h 2535 11037 4 +PQ +SE +ID 150 +TI 1760667399.625566959 +UH 0 30 l 1784 11386 4 +UH 0 31 l 2759 11145 4 +UH 0 10 h 3085 11462 4 +PQ +SE +ID 151 +TI 1760667399.625588178 +UH 0 35 l 3638 9673 4 +UH 0 13 l 1949 9754 4 +UH 0 14 l 2267 9859 4 +UH 0 28 l 2190 9909 4 +UH 0 13 h 1591 10126 4 +UH 0 14 h 3609 10118 4 +UH 0 15 h 1657 10282 4 +UH 0 16 h 2013 10307 4 +UH 0 20 h 2237 9611 4 +UH 0 25 h 2143 9981 4 +PQ +SE +ID 152 +TI 1760667399.625645637 +UH 0 36 l 1726 4710 0 +UH 0 18 h 1716 5424 0 +UH 0 19 h 1537 4102 0 +PQ +SE +ID 153 +TI 1760667399.625666379 +UH 0 46 l 1873 10820 4 +UH 0 47 l 2190 10840 4 +UH 0 63 l 1525 2530 0 +UH 0 38 h 2406 10901 4 +UH 0 48 h 2049 10704 4 +PQ +SE +ID 154 +TI 1760667399.625703573 +UH 0 32 l 2365 10667 4 +UH 0 33 l 2405 10313 4 +UH 0 9 h 2433 11291 4 +UH 0 10 h 2497 11500 4 +PQ +SE +ID 155 +TI 1760667399.625725507 +UH 0 45 l 1637 4812 0 +UH 0 46 l 1662 4670 0 +UH 0 49 l 2821 10609 4 +UH 0 52 l 3486 10825 4 +UH 0 53 l 1606 10856 4 +UH 0 1 h 2184 11152 4 +UH 0 2 h 1982 11193 4 +UH 0 3 h 2159 10730 4 +UH 0 4 h 1896 11312 4 +UH 0 5 h 3355 10727 4 +UH 0 7 h 1915 10788 4 +PQ +SE +ID 156 +TI 1760667399.625777721 +UH 0 0 l 2909 10632 4 +UH 0 64 l 2850 0 5 +UH 0 8 h 2706 11335 4 +UH 0 9 h 2241 11012 4 +UH 0 64 h 2526 0 5 +BD GR Veto +PQ +SE +ID 157 +TI 1760667399.625801563 +UH 0 5 l 2096 10401 4 +UH 0 6 l 1833 10616 4 +UH 0 11 l 2170 10584 4 +UH 0 51 h 2382 10992 4 +UH 0 57 h 2097 10819 4 +PQ +SE +ID 158 +TI 1760667399.625836849 +UH 0 63 l 2263 10695 4 +UH 0 32 h 2103 10625 4 +UH 0 31 h 1789 10553 4 +PQ +SE +ID 159 +TI 1760667399.625854730 +UH 0 39 l 3060 10645 4 +UH 0 64 l 3418 0 5 +UH 0 43 h 2239 10753 4 +UH 0 44 h 2474 10602 4 +UH 0 64 h 3824 0 5 +BD GR Veto +PQ +SE +ID 160 +TI 1760667399.625881195 +UH 0 20 l 3815 9426 4 +UH 0 27 l 1947 9544 4 +UH 0 46 h 3843 9156 4 +UH 0 47 h 1630 9202 4 +UH 0 49 h 1943 9209 4 +PQ +SE +ID 161 +TI 1760667399.625918626 +UH 0 21 l 1597 5399 0 +UH 0 22 l 2791 10384 4 +UH 0 27 l 4148 10692 4 +UH 0 41 h 2977 10886 4 +UH 0 44 h 1621 10387 4 +UH 0 45 h 2952 10544 4 +UH 0 46 h 2619 10483 4 +PQ +SE +ID 162 +TI 1760667399.625962734 +UH 0 11 l 3434 10006 4 +UH 0 10 h 3406 11418 4 +PQ +SE +ID 163 +TI 1760667399.625980138 +UH 0 51 l 2614 10476 4 +UH 0 21 h 2673 11356 4 +PQ +SE +ID 164 +TI 1760667399.625998497 +UH 0 19 l 1626 5416 0 +UH 0 20 l 2685 10058 4 +UH 0 32 h 2618 10639 4 +PQ +SE +ID 165 +TI 1760667399.626015901 +UH 0 20 l 1779 4538 0 +UH 0 21 l 1589 5472 0 +UH 0 9 h 1752 11636 4 +PQ +SE +ID 166 +TI 1760667399.626036167 +UH 0 7 l 4121 10487 4 +UH 0 46 h 1591 10476 4 +UH 0 47 h 4226 10304 4 +PQ +SE +ID 167 +TI 1760667399.626056671 +UH 0 11 l 2599 10008 4 +UH 0 21 h 2544 11399 4 +PQ +SE +ID 168 +TI 1760667399.626074790 +UH 0 31 l 2018 11267 4 +UH 0 36 h 2126 10991 4 +PQ +SE +ID 169 +TI 1760667399.626091957 +UH 0 32 l 2888 10857 4 +UH 0 12 h 2482 10652 4 +UH 0 13 h 1958 10831 4 +PQ +SE +ID 170 +TI 1760667399.626112222 +UH 0 62 l 1618 9040 4 +UH 0 63 l 1899 8865 4 +UH 0 64 l 4699 0 5 +UH 0 14 h 3436 9219 4 +UH 0 64 h 3563 0 5 +BD GR Veto +PQ +SE +ID 171 +TI 1760667399.626136064 +UH 0 6 l 4018 10661 4 +UH 0 62 h 3429 10016 4 +UH 0 63 h 1935 10113 4 +UH 0 64 h 1826 0 5 +BD GR Veto +PQ +SE +ID 172 +TI 1760667399.626156091 +UH 0 8 l 2413 10670 4 +UH 0 1 h 2481 11377 4 +PQ +SE +ID 173 +TI 1760667399.626173973 +UH 0 36 l 1607 4841 0 +UH 0 37 l 2571 10731 4 +UH 0 26 l 2889 10857 4 +UH 0 27 l 1830 10462 4 +UH 0 28 l 2682 11128 4 +UH 0 33 h 2621 10308 4 +UH 0 41 h 1701 10683 4 +UH 0 42 h 2599 10161 4 +UH 0 30 h 1565 11526 4 +UH 0 31 h 3228 10779 4 +PQ +SE +ID 174 +TI 1760667399.626226902 +UH 0 63 l 1725 10972 4 +UH 0 40 h 1806 11451 4 +PQ +SE +ID 175 +TI 1760667399.626243114 +UH 0 7 l 1705 5056 0 +UH 0 45 h 1692 5452 0 +PQ +SE +ID 176 +TI 1760667399.626261234 +UH 0 64 l 4001 0 5 +UH 0 0 h 3143 10919 4 +UH 0 64 h 2441 0 5 +BD GR Veto +PQ +SE +ID 177 +TI 1760667399.626275062 +UH 0 45 l 1546 8792 4 +UH 0 46 l 4564 8523 4 +UH 0 47 l 1547 8907 4 +UH 0 48 l 2220 8921 4 +UH 0 19 h 4010 9135 4 +UH 0 20 h 1623 8973 4 +UH 0 28 h 2409 8910 4 +UH 0 30 h 2142 9390 4 +PQ +SE +ID 178 +TI 1760667399.626320362 +UH 0 7 l 1959 6321 4 +UH 0 8 l 2476 6242 4 +UH 0 21 l 1999 10854 4 +UH 0 22 l 1680 4632 0 +UH 0 54 h 2160 11203 4 +UH 0 27 h 2531 6805 4 +UH 0 28 h 1991 6656 4 +PQ +SE +ID 179 +TI 1760667399.626360893 +UH 0 2 l 2008 11099 4 +UH 0 55 h 2157 10899 4 +PQ +SE +ID 180 +TI 1760667399.626377820 +UH 0 49 l 2048 10725 4 +UH 0 59 l 2058 10919 4 +UH 0 57 h 2175 11007 4 +UH 0 24 h 1566 5136 0 +UH 0 25 h 2017 10973 4 +PQ +SE +ID 181 +TI 1760667399.626412630 +UH 0 0 l 4594 9338 4 +UH 0 1 l 1648 9479 4 +UH 0 64 l 2385 0 5 +UH 0 13 h 2341 9735 4 +UH 0 14 h 1577 9881 4 +UH 0 15 h 4134 9893 4 +UH 0 16 h 2099 9909 4 +BD GR Veto +PQ +SE +ID 182 +TI 1760667399.626440525 +UH 0 62 l 1626 4694 0 +UH 0 64 l 1743 0 5 +UH 0 64 h 2590 0 5 +BD GR Veto +PQ +SE +ID 183 +TI 1760667399.626456499 +UH 0 34 l 3703 9591 4 +UH 0 19 h 3670 9804 4 +UH 0 20 h 1622 9640 4 +UH 0 21 h 1630 9917 4 +PQ +SE +ID 184 +TI 1760667399.626479864 +UH 0 64 l 2790 0 5 +UH 0 64 h 2790 0 5 +BD GR Veto +PQ +SE +ID 185 +TI 1760667399.626488924 +UH 0 5 l 2291 10385 4 +UH 0 11 h 2382 11410 4 +PQ +SE +ID 186 +TI 1760667399.626506567 +UH 0 32 l 1686 5305 0 +UH 0 33 h 1642 4966 0 +PQ +SE +ID 187 +TI 1760667399.626522541 +UH 0 56 l 4341 10963 4 +UH 0 51 h 3287 10349 4 +UH 0 52 h 2710 10425 4 +PQ +SE +ID 188 +TI 1760667399.626543283 +UH 0 5 l 1803 4666 0 +UH 0 6 l 1868 5395 0 +UH 0 22 h 2014 10966 4 +UH 0 23 h 1719 10988 4 +PQ +SE +ID 189 +TI 1760667399.626566648 +UH 0 59 l 1616 4338 0 +UH 0 60 l 2214 9153 4 +UH 0 61 l 2699 9122 4 +UH 0 62 l 3402 9458 4 +UH 0 63 l 1528 9310 4 +UH 0 32 h 1650 3323 0 +UH 0 40 h 3253 9185 4 +UH 0 41 h 1807 9538 4 +UH 0 42 h 2745 9067 4 +UH 0 29 h 2241 9765 4 +PQ +SE +ID 190 +TI 1760667399.626609563 +UH 0 49 l 4134 9077 4 +UH 0 50 l 1579 9127 4 +UH 0 41 h 2148 9602 4 +UH 0 42 h 3686 9190 4 +PQ +SE +ID 191 +TI 1760667399.645323753 +UH 0 29 l 2021 11051 4 +UH 0 30 l 1643 4816 0 +UH 0 41 h 2141 10826 4 +PQ +SE +ID 192 +TI 1760667399.645372152 +UH 0 60 l 2403 10548 4 +UH 0 30 h 2397 11064 4 +UH 0 31 h 1589 4726 0 +PQ +SE +ID 193 +TI 1760667399.645393610 +UH 0 44 l 2853 10271 4 +UH 0 58 l 2444 10386 4 +UH 0 29 h 3600 11198 4 +UH 0 30 h 1963 11215 4 +PQ +SE +ID 194 +TI 1760667399.645421504 +UH 0 2 l 1940 10708 4 +UH 0 64 l 2077 0 5 +UH 0 38 h 2010 11249 4 +UH 0 64 h 2137 0 5 +BD GR Veto +PQ +SE +ID 195 +TI 1760667399.645444154 +UH 0 52 l 1713 4863 0 +UH 0 53 l 2016 10650 4 +UH 0 33 h 2229 10783 4 +PQ +SE +ID 196 +TI 1760667399.645464658 +UH 0 64 l 5370 0 5 +UH 0 0 h 1662 10913 4 +UH 0 1 h 1664 10949 4 +UH 0 2 h 1641 4604 0 +UH 0 3 h 1639 4133 0 +UH 0 5 h 1591 5999 0 +UH 0 64 h 4381 0 5 +BD GR Veto +PQ +SE +ID 197 +TI 1760667399.645489931 +UH 0 39 l 1857 10963 4 +UH 0 40 l 1739 11031 4 +UH 0 52 h 1813 10706 4 +UH 0 53 h 1906 10551 4 +PQ +SE +ID 198 +TI 1760667399.645512104 +UH 0 64 l 2200 0 5 +UH 0 64 h 2307 0 5 +BD GR Veto +PQ +SE +ID 199 +TI 1760667399.645520448 +UH 0 57 l 2708 10309 4 +UH 0 5 h 2875 11257 4 +PQ +SE +ID 200 +TI 1760667399.645538806 +UH 0 41 l 2154 10690 4 +UH 0 10 h 2350 11639 4 +PQ +SE +ID 201 +TI 1760667399.645569086 +UH 0 45 h 1574 5464 0 +PQ +SE +ID 202 +TI 1760667399.645587682 +UH 0 60 l 1580 5055 0 +UH 0 61 l 3137 8968 4 +UH 0 14 h 3166 9960 4 +PQ +SE +ID 203 +TI 1760667399.645626068 +UH 0 47 l 1552 4275 0 +UH 0 48 l 2898 9359 4 +UH 0 49 l 1513 9319 4 +UH 0 50 l 3624 9050 4 +UH 0 51 l 1763 9277 4 +UH 0 20 h 3145 9254 4 +UH 0 29 h 3873 9343 4 +PQ +SE +ID 204 +TI 1760667399.645691156 +UH 0 46 l 2177 10444 4 +UH 0 16 h 2335 11423 4 +PQ +SE +ID 205 +TI 1760667399.645724773 +UH 0 13 l 1600 8934 4 +UH 0 14 l 3481 8777 4 +UH 0 15 l 3508 8664 4 +UH 0 27 l 1701 1596 0 +UH 0 28 l 1712 1488 0 +UH 0 29 l 1760 1534 0 +UH 0 30 l 1737 1571 0 +UH 0 31 l 1830 1596 0 +UH 0 3 h 5028 9291 4 +UH 0 4 h 2276 9727 4 +PQ +SE +ID 206 +TI 1760667399.645797729 +UH 0 64 l 5095 0 5 +UH 0 64 h 5008 0 5 +BD GR Veto +PQ +SE +ID 207 +TI 1760667399.645812034 +UH 0 13 l 1620 3499 0 +UH 0 14 l 1788 5368 0 +UH 0 15 l 1667 4570 0 +UH 0 8 h 1906 11710 4 +PQ +SE +ID 208 +TI 1760667399.645865440 +UH 0 3 l 3349 10730 4 +UH 0 9 l 1859 11141 4 +UH 0 38 h 3585 11175 4 +UH 0 14 h 1873 11288 4 +PQ +SE +ID 209 +TI 1760667399.645926475 +UH 0 50 l 2941 10717 4 +UH 0 51 l 1695 10958 4 +UH 0 37 h 1682 11091 4 +UH 0 38 h 3068 10885 4 +PQ +SE +ID 210 +TI 1760667399.645967721 +UH 0 31 l 2164 10717 4 +UH 0 11 h 2301 11532 4 +PQ +SE +ID 211 +TI 1760667399.646008491 +UH 0 16 l 1761 11063 4 +UH 0 17 l 2364 10859 4 +UH 0 40 h 2471 10552 4 +UH 0 43 h 1810 10622 4 +PQ +SE +ID 212 +TI 1760667399.646058559 +UH 0 64 h 1854 0 5 +BD GR Veto +PQ +SE +ID 213 +TI 1760667399.646069049 +UH 0 7 l 1768 1473 0 +UH 0 17 l 3367 8638 4 +UH 0 28 l 2925 9171 4 +UH 0 16 h 1579 9360 4 +UH 0 17 h 2914 9092 4 +UH 0 18 h 1939 9036 4 +UH 0 27 h 1726 1567 0 +UH 0 28 h 1759 1381 0 +UH 0 30 h 1757 9093 4 +UH 0 31 h 2737 8440 4 +PQ +SE +ID 214 +TI 1760667399.646171808 +UH 0 13 l 2401 10897 4 +UH 0 16 l 2156 10991 4 +UH 0 32 h 2427 11163 4 +UH 0 36 h 1704 4650 0 +UH 0 37 h 2174 11238 4 +PQ +SE +ID 215 +TI 1760667399.646236419 +UH 0 43 l 1943 10877 4 +UH 0 14 l 3110 10285 4 +UH 0 15 l 2355 10225 4 +UH 0 30 l 1673 1565 0 +UH 0 31 l 1625 2627 0 +UH 0 53 h 2098 10337 4 +UH 0 26 h 3872 11335 4 +PQ +SE +ID 216 +TI 1760667399.646315813 +UH 0 64 l 1945 0 5 +UH 0 64 h 1995 0 5 +BD GR Veto +PQ +SE +ID 217 +TI 1760667399.646330595 +UH 0 64 l 2215 0 5 +UH 0 64 h 2237 0 5 +BD GR Veto +PQ +SE +ID 218 +TI 1760667399.646344661 +UH 0 32 l 1989 10789 4 +UH 0 19 l 1833 11132 4 +UH 0 31 l 2538 10847 4 +UH 0 54 h 1717 10814 4 +UH 0 55 h 1735 4030 0 +UH 0 61 h 3133 11138 4 +PQ +SE +ID 219 +TI 1760667399.646413087 +UH 0 1 l 1879 11323 4 +UH 0 41 h 1931 11498 4 +PQ +SE +ID 220 +TI 1760667399.646445989 +UH 0 41 l 1681 5436 0 +UH 0 55 h 1812 4611 0 +UH 0 56 h 1631 4760 0 +PQ +SE +ID 221 +TI 1760667399.646483182 +UH 0 12 l 1782 4476 0 +UH 0 55 h 1843 11514 4 +PQ +SE +ID 222 +TI 1760667399.646516084 +UH 0 24 l 1713 4957 0 +UH 0 25 l 2391 10929 4 +UH 0 48 h 1620 4424 0 +UH 0 49 h 2455 11086 4 +PQ +SE +ID 223 +TI 1760667399.646557092 +UH 0 27 l 1654 4917 0 +UH 0 6 h 1602 5504 0 +PQ +SE +ID 224 +TI 1760667399.646590232 +UH 0 64 l 2076 0 5 +UH 0 64 h 2129 0 5 +BD GR Veto +PQ +SE +ID 225 +TI 1760667399.646604537 +UH 0 13 l 2108 8738 4 +UH 0 14 l 2776 8869 4 +UH 0 15 l 1718 3054 0 +UH 0 17 l 1617 2856 0 +UH 0 18 l 1716 2774 0 +UH 0 21 l 1594 5464 0 +UH 0 22 l 3190 8611 4 +UH 0 1 h 2643 9336 4 +UH 0 2 h 2205 9360 4 +UH 0 4 h 1915 9692 4 +UH 0 5 h 3581 9468 4 +PQ +SE +ID 226 +TI 1760667399.646706581 +UH 0 64 l 1763 0 5 +UH 0 64 h 1711 0 5 +BD GR Veto +PQ +SE +ID 227 +TI 1760667399.646721839 +UH 0 38 l 2278 10787 4 +UH 0 40 l 2414 10860 4 +UH 0 30 l 2372 11015 4 +UH 0 31 l 2605 10868 4 +UH 0 43 h 2554 10568 4 +UH 0 46 h 2437 10591 4 +UH 0 61 h 3403 10876 4 +UH 0 62 h 1855 10769 4 +PQ +SE +ID 228 +TI 1760667399.646781444 +UH 0 59 l 1859 10588 4 +UH 0 64 l 2948 0 5 +UH 0 55 h 1870 10569 4 +UH 0 56 h 1684 5145 0 +UH 0 64 h 3537 0 5 +BD GR Veto +PQ +SE +ID 229 +TI 1760667399.646805524 +UH 0 64 l 3207 0 5 +UH 0 64 h 3182 0 5 +BD GR Veto +PQ +SE +ID 230 +TI 1760667399.646812677 +UH 0 39 l 2453 10777 4 +UH 0 38 h 1661 4747 0 +UH 0 39 h 2534 11021 4 +PQ +SE +ID 231 +TI 1760667399.646832227 +UH 0 27 l 2767 10517 4 +UH 0 49 h 2882 11017 4 +PQ +SE +ID 232 +TI 1760667399.646850347 +UH 0 48 l 2218 10836 4 +UH 0 49 l 1789 10891 4 +UH 0 52 l 2017 10857 4 +UH 0 1 h 2508 11212 4 +UH 0 5 h 1925 11317 4 +UH 0 6 h 1953 11313 4 +PQ +SE +ID 233 +TI 1760667399.646885871 +UH 0 57 l 2221 10516 4 +UH 0 58 l 4654 10452 4 +UH 0 41 h 2134 10443 4 +UH 0 42 h 4241 9985 4 +UH 0 43 h 2353 10348 4 +PQ +SE +ID 234 +TI 1760667399.646909952 +UH 0 64 l 1820 0 5 +UH 0 64 h 1854 0 5 +BD GR Veto +PQ +SE +ID 235 +TI 1760667399.646917343 +UH 0 58 l 1954 10651 4 +UH 0 61 h 1928 10903 4 +PQ +SE +ID 236 +TI 1760667399.646933794 +UH 0 44 l 1750 5285 0 +UH 0 53 h 1842 11085 4 +PQ +SE +ID 237 +TI 1760667399.646950960 +UH 0 10 l 3270 10497 4 +UH 0 25 l 1779 4927 0 +UH 0 19 h 1685 11002 4 +UH 0 24 h 3361 11024 4 +PQ +SE +ID 238 +TI 1760667399.646987915 +UH 0 49 l 1627 4846 0 +UH 0 64 l 2098 0 5 +UH 0 59 h 1695 4920 0 +UH 0 64 h 2127 0 5 +BD GR Veto +PQ +SE +ID 239 +TI 1760667399.647009372 +UH 0 63 l 2596 10621 4 +UH 0 44 h 2759 10798 4 +PQ +SE +ID 240 +TI 1760667399.647024154 +UH 0 12 l 4825 10395 4 +UH 0 1 h 2119 10985 4 +UH 0 4 h 3855 11267 4 +UH 0 5 h 1968 10910 4 +PQ +SE +ID 241 +TI 1760667399.647050857 +UH 0 64 l 4153 0 5 +UH 0 64 h 4064 0 5 +BD GR Veto +PQ +SE +ID 242 +TI 1760667399.647058963 +UH 0 62 l 1616 4555 0 +UH 0 63 l 2067 10001 4 +UH 0 64 l 1819 0 5 +UH 0 8 h 2212 11318 4 +UH 0 64 h 2623 0 5 +BD GR Veto +PQ +SE +ID 243 +TI 1760667399.647081136 +UH 0 23 l 1738 9581 4 +UH 0 24 l 4016 9531 4 +UH 0 28 l 1967 9551 4 +UH 0 29 l 2560 9738 4 +UH 0 14 h 2127 10355 4 +UH 0 15 h 4212 10353 4 +UH 0 16 h 2231 10384 4 +PQ +SE +ID 244 +TI 1760667399.647114992 +UH 0 64 h 1722 0 5 +BD GR Veto +PQ +SE +ID 245 +TI 1760667399.647120952 +UH 0 48 l 2323 9877 4 +UH 0 49 l 3884 9762 4 +UH 0 50 l 2111 9723 4 +UH 0 54 h 2185 9633 4 +UH 0 55 h 5037 9179 4 +UH 0 56 h 1597 9584 4 +PQ +SE +ID 246 +TI 1760667399.647147417 +UH 0 64 l 2965 0 5 +UH 0 64 h 2946 0 5 +BD GR Veto +PQ +SE +ID 247 +TI 1760667399.647155523 +UH 0 59 l 2303 10614 4 +UH 0 4 h 2419 11505 4 +PQ +SE +ID 248 +TI 1760667399.647172212 +UH 0 50 l 2397 10816 4 +UH 0 53 h 2453 10646 4 +PQ +SE +ID 249 +TI 1760667399.647189855 +UH 0 27 l 1732 10880 4 +UH 0 28 l 2635 11100 4 +UH 0 21 h 2721 11386 4 +UH 0 22 h 1711 11178 4 +PQ +SE +ID 250 +TI 1760667399.647225618 +UH 0 0 l 1859 4815 0 +UH 0 64 l 2588 0 5 +UH 0 7 h 1990 11320 4 +UH 0 8 h 2583 11542 4 +BD GR Veto +PQ +SE +ID 251 +TI 1760667399.647253751 +UH 0 64 l 3811 0 5 +UH 0 64 h 3731 0 5 +BD GR Veto +PQ +SE +ID 252 +TI 1760667399.647262096 +UH 0 20 l 3433 10629 4 +UH 0 47 h 3306 10347 4 +UH 0 48 h 1773 10549 4 +PQ +SE +ID 253 +TI 1760667399.647282123 +UH 0 6 l 1671 4909 0 +UH 0 8 l 1879 10888 4 +UH 0 64 l 2258 0 5 +UH 0 62 h 1777 4750 0 +UH 0 63 h 1676 4910 0 +UH 0 64 h 2467 0 5 +BD GR Veto +PQ +SE +ID 254 +TI 1760667399.647308826 +UH 0 17 l 2477 10381 4 +UH 0 21 l 2535 10916 4 +UH 0 25 l 3419 10891 4 +UH 0 54 h 2523 10574 4 +UH 0 57 h 1621 4472 0 +UH 0 58 h 2535 10027 4 +UH 0 60 h 1592 10087 4 +UH 0 61 h 3400 10415 4 +PQ +SE +ID 255 +TI 1760667399.668289184 +UH 0 64 l 3146 0 5 +UH 0 64 h 3136 0 5 +BD GR Veto +PQ +SE +ID 256 +TI 1760667399.668347358 +UH 0 63 l 1941 10598 4 +UH 0 64 l 2639 0 5 +UH 0 48 h 1943 10943 4 +UH 0 49 h 1668 4793 0 +UH 0 64 h 2648 0 5 +BD GR Veto +PQ +SE +ID 257 +TI 1760667399.668373823 +UH 0 25 l 1660 9363 4 +UH 0 26 l 4702 9333 4 +UH 0 27 l 2325 8964 4 +UH 0 2 h 4424 9804 4 +UH 0 3 h 3006 9506 4 +PQ +SE +ID 258 +TI 1760667399.668400287 +UH 0 46 l 1947 10561 4 +UH 0 47 l 2213 10635 4 +UH 0 50 l 1889 4951 0 +UH 0 51 l 1715 4545 0 +UH 0 7 h 2235 11107 4 +UH 0 8 h 2884 11463 4 +PQ +SE +ID 259 +TI 1760667399.668434858 +UH 0 49 l 3446 10436 4 +UH 0 55 l 1887 10394 4 +UH 0 62 l 2967 10684 4 +UH 0 13 h 2027 11003 4 +UH 0 15 h 2950 11107 4 +UH 0 16 h 1663 11216 4 +UH 0 17 h 2820 11079 4 +UH 0 18 h 2206 10964 4 +PQ +SE +ID 260 +TI 1760667399.668486833 +UH 0 4 l 5457 9943 4 +UH 0 53 h 1591 9652 4 +UH 0 54 h 5227 9686 4 +UH 0 55 h 1962 9397 4 +PQ +SE +ID 261 +TI 1760667399.668509721 +UH 0 34 l 2409 10342 4 +UH 0 35 l 1688 5107 0 +UH 0 37 l 1991 10631 4 +UH 0 57 h 1852 11193 4 +UH 0 58 h 1738 4642 0 +UH 0 62 h 2794 10930 4 +PQ +SE +ID 262 +TI 1760667399.668545961 +UH 0 54 l 2104 11015 4 +UH 0 55 l 1545 5400 0 +UH 0 41 h 2388 11090 4 +PQ +SE +ID 263 +TI 1760667399.668566942 +UH 0 1 l 1654 5166 0 +UH 0 43 h 1612 5489 0 +PQ +SE +ID 264 +TI 1760667399.668585777 +UH 0 47 l 3506 10521 4 +UH 0 60 l 1582 1810 0 +UH 0 61 l 1648 2054 0 +UH 0 62 l 1650 2225 0 +UH 0 63 l 1600 1969 0 +UH 0 13 l 2113 10425 4 +UH 0 34 h 1966 10662 4 +UH 0 35 h 1729 10745 4 +UH 0 15 h 3633 11357 4 +PQ +SE +ID 265 +TI 1760667399.668632984 +UH 0 14 l 3625 10474 4 +UH 0 64 l 1912 0 5 +UH 0 7 h 3482 11203 4 +UH 0 8 h 1921 11608 4 +UH 0 64 h 1998 0 5 +BD GR Veto +PQ +SE +ID 266 +TI 1760667399.668662071 +UH 0 37 l 1728 10743 4 +UH 0 38 l 2252 10668 4 +UH 0 9 h 2618 11213 4 +PQ +SE +ID 267 +TI 1760667399.668682098 +UH 0 35 l 2195 10968 4 +UH 0 37 l 2217 11024 4 +UH 0 12 h 2173 10831 4 +UH 0 13 h 2290 10855 4 +PQ +SE +ID 268 +TI 1760667399.668706417 +UH 0 30 l 3875 11372 4 +UH 0 45 h 3865 11008 4 +PQ +SE +ID 269 +TI 1760667399.668725013 +UH 0 11 l 1837 5099 0 +UH 0 12 l 1734 5036 0 +UH 0 45 h 1598 4359 0 +UH 0 46 h 1776 11159 4 +PQ +SE +ID 270 +TI 1760667399.668746471 +UH 0 7 l 1693 5039 0 +UH 0 8 l 2161 10993 4 +UH 0 43 h 1801 11125 4 +UH 0 44 h 2049 10941 4 +PQ +SE +ID 271 +TI 1760667399.668767690 +UH 0 31 l 2449 11015 4 +UH 0 34 h 2453 11007 4 +PQ +SE +ID 272 +TI 1760667399.668786287 +UH 0 59 l 2490 10664 4 +UH 0 60 l 3058 10532 4 +UH 0 61 l 1788 10623 4 +UH 0 54 h 2954 10977 4 +UH 0 56 h 3062 10856 4 +PQ +SE +ID 273 +TI 1760667399.668812274 +UH 0 50 l 2403 10610 4 +UH 0 51 l 2486 10721 4 +UH 0 54 h 3455 11015 4 +PQ +SE +ID 274 +TI 1760667399.668832302 +UH 0 4 l 1946 8815 4 +UH 0 5 l 2551 8577 4 +UH 0 6 h 1549 9289 4 +UH 0 7 h 3158 9159 4 +PQ +SE +ID 275 +TI 1760667399.668854951 +UH 0 22 l 1684 4843 0 +UH 0 23 l 1720 4199 0 +UH 0 11 h 1784 11655 4 +PQ +SE +ID 276 +TI 1760667399.668883562 +UH 0 64 l 2647 0 5 +UH 0 24 h 1908 11370 4 +UH 0 64 h 2251 0 5 +BD GR Veto +PQ +SE +ID 277 +TI 1760667399.668908596 +UH 0 10 l 1840 4569 0 +UH 0 12 l 1837 5046 0 +UH 0 13 l 2559 10593 4 +UH 0 2 h 1701 4512 0 +UH 0 3 h 1639 3674 0 +UH 0 6 h 1838 11303 4 +UH 0 7 h 2775 11300 4 +PQ +SE +ID 278 +TI 1760667399.668969154 +UH 0 12 l 2606 10439 4 +UH 0 32 h 2510 10952 4 +PQ +SE +ID 279 +TI 1760667399.669001102 +UH 0 8 l 3770 10849 4 +UH 0 45 h 3594 10622 4 +PQ +SE +ID 280 +TI 1760667399.669025897 +UH 0 64 l 2242 0 5 +UH 0 64 h 2268 0 5 +BD GR Veto +PQ +SE +ID 281 +TI 1760667399.669034481 +UH 0 64 l 2823 0 5 +UH 0 64 h 2800 0 5 +BD GR Veto +PQ +SE +ID 282 +TI 1760667399.669042587 +UH 0 13 l 1726 5212 0 +UH 0 43 h 1705 5471 0 +PQ +SE +ID 283 +TI 1760667399.669060468 +UH 0 7 l 1858 11194 4 +UH 0 8 l 1732 4920 0 +UH 0 62 h 1812 11230 4 +UH 0 63 h 1851 11251 4 +PQ +SE +ID 284 +TI 1760667399.669080257 +UH 0 45 l 1755 4935 0 +UH 0 16 h 1789 11479 4 +PQ +SE +ID 285 +TI 1760667399.669098377 +UH 0 37 l 3888 9124 4 +UH 0 41 l 1487 3137 0 +UH 0 42 l 1678 2882 0 +UH 0 46 l 2188 10778 4 +UH 0 47 l 1586 5031 0 +UH 0 43 h 2718 9065 4 +UH 0 44 h 2949 8890 4 +UH 0 61 h 1878 11147 4 +UH 0 62 h 2196 10894 4 +PQ +SE +ID 286 +TI 1760667399.669151306 +UH 0 34 l 3795 10391 4 +UH 0 30 l 3087 10835 4 +UH 0 3 h 3320 10974 4 +UH 0 7 h 4046 11205 4 +PQ +SE +ID 287 +TI 1760667399.669184684 +UH 0 54 l 1965 11046 4 +UH 0 56 l 1619 4895 0 +UH 0 59 l 1563 4851 0 +UH 0 63 l 1537 3543 0 +UH 0 41 h 1600 2597 0 +UH 0 46 h 1653 3694 0 +UH 0 48 h 2083 10696 4 +PQ +SE +ID 288 +TI 1760667399.669254302 +UH 0 33 l 1727 4618 0 +UH 0 34 l 2002 10497 4 +UH 0 10 h 2226 11631 4 +PQ +SE +ID 289 +TI 1760667399.669289112 +UH 0 5 l 1825 10446 4 +UH 0 7 l 3889 10872 4 +UH 0 13 l 1816 4506 0 +UH 0 18 l 1651 5021 0 +UH 0 19 l 2380 10643 4 +UH 0 35 h 4075 10706 4 +UH 0 36 h 1745 10515 4 +UH 0 47 h 1885 10633 4 +UH 0 51 h 1708 4810 0 +UH 0 54 h 2334 10771 4 +PQ +SE +ID 290 +TI 1760667399.669404268 +UH 0 9 l 1844 5240 0 +UH 0 10 l 1695 4828 0 +UH 0 47 h 2023 11306 4 +PQ +SE +ID 291 +TI 1760667399.669441223 +UH 0 1 l 3712 10817 4 +UH 0 16 l 1668 4228 0 +UH 0 32 h 2936 11112 4 +UH 0 4 h 1783 11584 4 +UH 0 31 h 2279 10987 4 +PQ +SE +ID 292 +TI 1760667399.669502973 +UH 0 51 l 1758 10892 4 +UH 0 52 l 2837 10745 4 +UH 0 29 h 1881 11050 4 +UH 0 30 h 2800 11219 4 +PQ +SE +ID 293 +TI 1760667399.669543743 +UH 0 61 l 2324 10604 4 +UH 0 62 l 2007 10571 4 +UH 0 11 h 2379 11367 4 +UH 0 13 h 2051 11441 4 +PQ +SE +ID 294 +TI 1760667399.669589519 +UH 0 7 l 3671 10260 4 +UH 0 8 l 1702 10307 4 +UH 0 43 h 3788 10728 4 +PQ +SE +ID 295 +TI 1760667399.669628858 +UH 0 24 l 1903 11197 4 +UH 0 6 h 1685 11370 4 +UH 0 7 h 1790 11356 4 +PQ +SE +ID 296 +TI 1760667399.669671535 +UH 0 60 l 3393 8291 4 +UH 0 64 l 1636 0 5 +UH 0 4 h 3520 9645 4 +BD GR Veto +PQ +SE +ID 297 +TI 1760667399.669710874 +UH 0 21 l 1922 10786 4 +UH 0 7 h 2017 11452 4 +PQ +SE +ID 298 +TI 1760667399.669744014 +UH 0 21 l 1599 8849 4 +UH 0 22 l 4330 8374 4 +UH 0 23 l 1713 8597 4 +UH 0 29 h 4277 8906 4 +UH 0 30 h 1568 9188 4 +PQ +SE +ID 299 +TI 1760667399.669792413 +UH 0 64 l 1806 0 5 +UH 0 64 h 1898 0 5 +BD GR Veto +PQ +SE +ID 300 +TI 1760667399.669809818 +UH 0 51 l 2685 10908 4 +UH 0 52 l 1714 10964 4 +UH 0 64 l 1962 0 5 +UH 0 45 h 1880 10744 4 +UH 0 46 h 2366 10552 4 +UH 0 47 h 1758 10585 4 +UH 0 64 h 2018 0 5 +BD GR Veto +PQ +SE +ID 301 +TI 1760667399.669867038 +UH 0 7 l 1929 10780 4 +UH 0 62 h 2028 11109 4 +PQ +SE +ID 302 +TI 1760667399.669901609 +UH 0 18 l 1730 5242 0 +UH 0 23 h 1732 5410 0 +PQ +SE +ID 303 +TI 1760667399.669934749 +UH 0 32 l 2036 9060 4 +UH 0 33 l 4196 8672 4 +UH 0 34 l 1579 8897 4 +UH 0 1 h 1727 9323 4 +UH 0 2 h 5002 9312 4 +PQ +SE +ID 304 +TI 1760667399.669981956 +UH 0 28 l 3472 10749 4 +UH 0 29 l 1901 10645 4 +UH 0 13 h 3949 11165 4 +PQ +SE +ID 305 +TI 1760667399.670023679 +UH 0 20 l 1850 10710 4 +UH 0 32 h 1782 11476 4 +PQ +SE +ID 306 +TI 1760667399.670059919 +UH 0 12 l 1968 10504 4 +UH 0 20 h 1937 11556 4 +PQ +SE +ID 307 +TI 1760667399.670099258 +UH 0 16 l 1751 10890 4 +UH 0 17 l 2479 10718 4 +UH 0 40 h 2854 11037 4 +PQ +SE +ID 308 +TI 1760667399.670140743 +UH 0 33 l 1880 10466 4 +UH 0 12 h 1853 11517 4 +PQ +SE +ID 309 +TI 1760667399.670175075 +UH 0 38 l 1543 8679 4 +UH 0 39 l 4141 8459 4 +UH 0 40 l 1527 8642 4 +UH 0 40 h 4287 8814 4 +PQ +SE +ID 310 +TI 1760667399.670217037 +UH 0 8 l 2476 11029 4 +UH 0 36 h 2463 10856 4 +PQ +SE +ID 311 +TI 1760667399.670250177 +UH 0 21 l 2809 10730 4 +UH 0 27 l 4162 10744 4 +UH 0 23 h 2873 11050 4 +UH 0 26 h 1660 11264 4 +UH 0 27 h 2494 10974 4 +UH 0 28 h 2222 10767 4 +UH 0 29 h 2534 10909 4 +PQ +SE +ID 312 +TI 1760667399.670324325 +UH 0 50 l 1860 10890 4 +UH 0 32 h 1861 11496 4 +PQ +SE +ID 313 +TI 1760667399.670340776 +UH 0 6 l 1942 11263 4 +UH 0 14 h 2003 11279 4 +PQ +SE +ID 314 +TI 1760667399.670360565 +UH 0 28 l 1694 10500 4 +UH 0 29 l 3876 10194 4 +UH 0 49 h 4064 10131 4 +PQ +SE +ID 315 +TI 1760667399.670397281 +UH 0 64 l 1902 0 5 +UH 0 64 h 1973 0 5 +BD GR Veto +PQ +SE +ID 316 +TI 1760667399.670413970 +UH 0 58 l 1790 8611 4 +UH 0 59 l 10128 8716 4 +UH 0 60 l 1646 8566 4 +UH 0 5 h 1604 8978 4 +UH 0 6 h 4455 9161 4 +UH 0 7 h 6326 8803 4 +UH 0 8 h 1653 9233 4 +UH 0 13 h 2972 8851 4 +UH 0 14 h 1568 9074 4 +UH 0 64 h 1690 0 5 +BD GR Veto +PQ +SE +ID 317 +TI 1760667399.670475959 +UH 0 39 l 2918 8659 4 +UH 0 40 l 4014 8679 4 +UH 0 41 l 1482 9053 4 +UH 0 20 h 3550 8981 4 +UH 0 21 h 3528 9215 4 +PQ +SE +ID 318 +TI 1760667399.670522451 +UH 0 64 l 1638 0 5 +UH 0 64 h 2036 0 5 +BD GR Veto +PQ +SE +ID 319 +TI 1760667399.688957214 +UH 0 20 l 2412 10736 4 +UH 0 21 l 1799 11270 4 +UH 0 55 h 1707 10720 4 +UH 0 56 h 2650 10912 4 +PQ +SE +ID 320 +TI 1760667399.689014196 +UH 0 33 l 2873 10578 4 +UH 0 50 h 2966 10988 4 +PQ +SE +ID 321 +TI 1760667399.689034223 +UH 0 18 l 2481 10717 4 +UH 0 19 l 2026 10971 4 +UH 0 20 l 1679 5157 0 +UH 0 21 l 2747 10608 4 +UH 0 36 h 1990 10772 4 +UH 0 41 h 2602 10576 4 +UH 0 47 h 2010 10440 4 +UH 0 54 h 2433 10969 4 +PQ +SE +ID 322 +TI 1760667399.689084768 +UH 0 3 l 1625 5206 0 +UH 0 5 l 2654 10717 4 +UH 0 53 h 1632 4726 0 +UH 0 56 h 2704 10978 4 +PQ +SE +ID 323 +TI 1760667399.689116716 +UH 0 4 l 2645 10789 4 +UH 0 5 l 2358 10623 4 +UH 0 38 h 3594 11155 4 +PQ +SE +ID 324 +TI 1760667399.689138650 +UH 0 57 l 2220 10763 4 +UH 0 58 l 2258 10643 4 +UH 0 59 h 2364 10501 4 +UH 0 60 h 2320 10146 4 +PQ +SE +ID 325 +TI 1760667399.689162492 +UH 0 57 l 2151 10845 4 +UH 0 55 h 1933 10826 4 +UH 0 56 h 1957 11155 4 +PQ +SE +ID 326 +TI 1760667399.689183712 +UH 0 51 l 1768 4913 0 +UH 0 52 l 1820 10863 4 +UH 0 53 l 3385 10682 4 +UH 0 2 h 2160 11217 4 +UH 0 3 h 3020 10851 4 +UH 0 5 h 2055 11292 4 +UH 0 10 h 1572 2824 0 +PQ +SE +ID 327 +TI 1760667399.689239025 +UH 0 0 l 1669 4681 0 +UH 0 1 l 1673 4334 0 +UH 0 2 l 1649 4964 0 +UH 0 4 l 1606 5265 0 +UH 0 64 l 3296 0 5 +UH 0 64 h 4999 0 5 +BD GR Veto +PQ +SE +ID 328 +TI 1760667399.689281225 +UH 0 24 l 2003 11276 4 +UH 0 61 h 1750 11139 4 +UH 0 62 h 1789 4480 0 +PQ +SE +ID 329 +TI 1760667399.689316272 +UH 0 6 l 2484 11132 4 +UH 0 17 h 2488 10902 4 +PQ +SE +ID 330 +TI 1760667399.689349412 +UH 0 45 l 1745 5098 0 +UH 0 55 h 1929 11099 4 +PQ +SE +ID 331 +TI 1760667399.689382553 +UH 0 49 l 2420 10707 4 +UH 0 63 h 2549 11013 4 +PQ +SE +ID 332 +TI 1760667399.689413309 +UH 0 21 l 2459 10851 4 +UH 0 22 l 2316 10598 4 +UH 0 25 l 2050 10983 4 +UH 0 52 h 3246 10729 4 +UH 0 53 h 1642 10681 4 +UH 0 54 h 1989 10815 4 +PQ +SE +ID 333 +TI 1760667399.689477205 +UH 0 44 l 2106 10462 4 +UH 0 64 l 1811 0 5 +UH 0 0 h 2596 11246 4 +BD GR Veto +PQ +SE +ID 334 +TI 1760667399.689515829 +UH 0 1 l 2076 11370 4 +UH 0 26 h 2113 11167 4 +PQ +SE +ID 335 +TI 1760667399.689547538 +UH 0 28 l 4162 11163 4 +UH 0 39 h 3328 10431 4 +UH 0 40 h 2466 10486 4 +PQ +SE +ID 336 +TI 1760667399.689586162 +UH 0 38 l 2308 10883 4 +UH 0 16 h 2094 11159 4 +UH 0 22 h 1741 4480 0 +UH 0 23 h 1670 4836 0 +PQ +SE +ID 337 +TI 1760667399.689647197 +UH 0 64 l 2503 0 5 +UH 0 64 h 2544 0 5 +BD GR Veto +PQ +SE +ID 338 +TI 1760667399.689664840 +UH 0 42 l 1946 11299 4 +UH 0 23 h 1974 10943 4 +PQ +SE +ID 339 +TI 1760667399.689700126 +UH 0 25 l 1664 4912 0 +UH 0 26 l 1758 5121 0 +UH 0 29 l 1982 10738 4 +UH 0 30 l 1775 5130 0 +UH 0 3 h 2535 11181 4 +PQ +SE +ID 340 +TI 1760667399.689757108 +UH 0 28 l 3050 11198 4 +UH 0 35 h 2055 11135 4 +UH 0 36 h 2566 11163 4 +PQ +SE +ID 341 +TI 1760667399.689801692 +UH 0 59 l 2219 10717 4 +UH 0 55 h 2015 10313 4 +UH 0 56 h 1910 10646 4 +PQ +SE +ID 342 +TI 1760667399.689845323 +UH 0 11 l 4185 9788 4 +UH 0 12 l 1740 9828 4 +UH 0 16 h 4206 11155 4 +PQ +SE +ID 343 +TI 1760667399.689885139 +UH 0 24 l 2091 11067 4 +UH 0 25 l 2274 11374 4 +UH 0 63 h 2748 10856 4 +PQ +SE +ID 344 +TI 1760667399.689916610 +UH 0 49 l 1679 4761 0 +UH 0 21 h 1770 11735 4 +PQ +SE +ID 345 +TI 1760667399.689953804 +UH 0 43 l 3857 9102 4 +UH 0 44 l 1513 9051 4 +UH 0 28 h 2717 9515 4 +UH 0 29 h 2854 9726 4 +PQ +SE +ID 346 +TI 1760667399.690003871 +UH 0 32 l 2401 10626 4 +UH 0 38 l 3454 10814 4 +UH 0 43 l 2169 11068 4 +UH 0 44 l 1776 10936 4 +UH 0 34 h 2144 10763 4 +UH 0 35 h 1783 10924 4 +UH 0 38 h 3630 10890 4 +UH 0 29 h 1578 4502 0 +UH 0 30 h 2522 11304 4 +PQ +SE +ID 347 +TI 1760667399.690129995 +UH 0 8 l 2537 9352 4 +UH 0 11 l 2002 8897 4 +UH 0 12 l 1717 1857 0 +UH 0 15 l 4118 9236 4 +UH 0 26 l 1753 1629 0 +UH 0 27 l 1705 1589 0 +UH 0 28 l 1749 1480 0 +UH 0 29 l 1799 1514 0 +UH 0 30 l 1788 1561 0 +UH 0 31 l 1921 1589 0 +UH 0 14 h 4069 9522 4 +UH 0 15 h 1650 9695 4 +UH 0 17 h 1527 9649 4 +UH 0 18 h 2972 9446 4 +PQ +SE +ID 348 +TI 1760667399.690247774 +UH 0 64 l 2736 0 5 +UH 0 64 h 2704 0 5 +BD GR Veto +PQ +SE +ID 349 +TI 1760667399.690265417 +UH 0 25 l 2010 11459 4 +UH 0 62 h 2049 10768 4 +PQ +SE +ID 350 +TI 1760667399.690295219 +UH 0 36 l 2184 10568 4 +UH 0 36 h 2284 11325 4 +UH 0 12 h 1528 5061 0 +PQ +SE +ID 351 +TI 1760667399.690345525 +UH 0 64 l 1792 0 5 +UH 0 64 h 1832 0 5 +BD GR Veto +PQ +SE +ID 352 +TI 1760667399.690356492 +UH 0 17 l 1673 4540 0 +UH 0 61 h 1678 5352 0 +PQ +SE +ID 353 +TI 1760667399.690386772 +UH 0 22 l 1786 10856 4 +UH 0 23 l 2586 10806 4 +UH 0 25 l 2491 10856 4 +UH 0 55 h 2916 10447 4 +UH 0 58 h 1645 10788 4 +UH 0 59 h 2342 10857 4 +PQ +SE +ID 354 +TI 1760667399.690435647 +UH 0 28 l 1769 5283 0 +UH 0 29 l 2259 10722 4 +UH 0 45 h 1598 4125 0 +UH 0 46 h 2186 11138 4 +UH 0 50 h 1809 10914 4 +PQ +SE +ID 355 +TI 1760667399.690470933 +UH 0 64 l 1848 0 5 +UH 0 64 h 1903 0 5 +BD GR Veto +PQ +SE +ID 356 +TI 1760667399.690480232 +UH 0 50 l 2000 9503 4 +UH 0 53 l 3340 9720 4 +UH 0 2 l 2202 9894 4 +UH 0 3 h 3535 9824 4 +UH 0 4 h 1660 10493 4 +UH 0 5 h 2087 10236 4 +UH 0 9 h 2248 9916 4 +PQ +SE +ID 357 +TI 1760667399.690532207 +UH 0 35 l 3546 10798 4 +UH 0 26 h 3541 10854 4 +PQ +SE +ID 358 +TI 1760667399.690553903 +UH 0 44 l 2087 10423 4 +UH 0 64 l 4043 0 5 +UH 0 64 h 4562 0 5 +BD GR Veto +PQ +SE +ID 359 +TI 1760667399.690570592 +UH 0 42 l 1784 11092 4 +UH 0 43 l 2761 10973 4 +UH 0 12 h 1563 3809 0 +UH 0 13 h 1584 5223 0 +UH 0 14 h 3018 10903 4 +PQ +SE +ID 360 +TI 1760667399.690600633 +UH 0 37 l 2176 10869 4 +UH 0 38 l 3135 10771 4 +UH 0 24 l 2326 10534 4 +UH 0 25 l 2191 10756 4 +UH 0 27 l 1707 4655 0 +UH 0 32 h 1651 4026 0 +UH 0 34 h 2850 10646 4 +UH 0 25 h 3850 11087 4 +PQ +SE +ID 361 +TI 1760667399.690654754 +UH 0 64 l 2632 0 5 +UH 0 64 h 3108 0 5 +BD GR Veto +PQ +SE +ID 362 +TI 1760667399.690665721 +UH 0 18 l 2669 10674 4 +UH 0 59 h 2733 10471 4 +PQ +SE +ID 363 +TI 1760667399.690685749 +UH 0 35 l 3294 10776 4 +UH 0 3 h 1726 10453 4 +UH 0 4 h 3263 10826 4 +PQ +SE +ID 364 +TI 1760667399.690708398 +UH 0 7 l 4059 10692 4 +UH 0 8 l 2223 10717 4 +UH 0 9 l 2220 10806 4 +UH 0 44 h 1593 10675 4 +UH 0 45 h 4013 10836 4 +UH 0 49 h 2216 10691 4 +UH 0 50 h 1660 3769 0 +UH 0 52 h 2098 10967 4 +UH 0 53 h 1605 4610 0 +PQ +SE +ID 365 +TI 1760667399.690757036 +UH 0 19 l 3637 10469 4 +UH 0 20 l 2169 10213 4 +UH 0 30 h 1611 11399 4 +UH 0 31 h 4353 10666 4 +PQ +SE +ID 366 +TI 1760667399.690780401 +UH 0 26 l 2089 10889 4 +UH 0 28 h 2138 11104 4 +PQ +SE +ID 367 +TI 1760667399.690801143 +UH 0 58 l 3283 10476 4 +UH 0 47 h 1979 10694 4 +UH 0 48 h 3089 10736 4 +PQ +SE +ID 368 +TI 1760667399.690824508 +UH 0 19 l 2103 10419 4 +UH 0 63 h 2050 9917 4 +UH 0 64 h 1669 0 5 +BD GR Veto +PQ +SE +ID 369 +TI 1760667399.690847158 +UH 0 10 l 3183 9929 4 +UH 0 27 l 2430 9872 4 +UH 0 28 l 2778 10137 4 +UH 0 37 h 1626 10230 4 +UH 0 38 h 3786 9995 4 +UH 0 41 h 2475 10011 4 +UH 0 42 h 2465 9584 4 +PQ +SE +ID 370 +TI 1760667399.690892457 +UH 0 46 l 1901 10902 4 +UH 0 5 h 2045 10920 4 +PQ +SE +ID 371 +TI 1760667399.690914392 +UH 0 17 l 2169 10779 4 +UH 0 40 h 2241 11160 4 +PQ +SE +ID 372 +TI 1760667399.690935611 +UH 0 5 l 2217 10932 4 +UH 0 58 h 2206 10387 4 +PQ +SE +ID 373 +TI 1760667399.690956592 +UH 0 19 l 2803 5632 4 +UH 0 64 l 1884 0 5 +UH 0 1 h 2853 6205 4 +UH 0 64 h 1928 0 5 +BD GR Veto +PQ +SE +ID 374 +TI 1760667399.690983057 +UH 0 39 l 2626 10797 4 +UH 0 40 l 2517 10957 4 +UH 0 41 l 1583 5090 0 +UH 0 35 h 2736 10577 4 +UH 0 31 h 2880 10712 4 +PQ +SE +ID 375 +TI 1760667399.691016912 +UH 0 62 l 2500 10633 4 +UH 0 30 h 2498 11473 4 +UH 0 31 h 1562 10915 4 +PQ +SE +ID 376 +TI 1760667399.691037893 +UH 0 14 l 2388 10808 4 +UH 0 4 h 1717 4694 0 +UH 0 5 h 2320 11288 4 +PQ +SE +ID 377 +TI 1760667399.691061019 +UH 0 15 l 1684 4523 0 +UH 0 16 l 1652 4612 0 +UH 0 13 h 1783 11736 4 +PQ +SE +ID 378 +TI 1760667399.691084384 +UH 0 28 l 2644 11318 4 +UH 0 8 h 2409 11329 4 +UH 0 9 h 1770 11058 4 +PQ +SE +ID 379 +TI 1760667399.691107034 +UH 0 30 l 3490 11188 4 +UH 0 0 h 3635 10912 4 +PQ +SE +ID 380 +TI 1760667399.691125392 +UH 0 29 l 1821 4825 0 +UH 0 30 l 1682 5483 0 +UH 0 31 l 2044 10745 4 +UH 0 15 h 1744 5204 0 +UH 0 16 h 2006 11541 4 +UH 0 19 h 1590 4747 0 +UH 0 20 h 1838 10991 4 +PQ +SE +ID 381 +TI 1760667399.691189765 +UH 0 64 l 2745 0 5 +UH 0 64 h 2742 0 5 +BD GR Veto +PQ +SE +ID 382 +TI 1760667399.691207408 +UH 0 1 l 2244 11082 4 +UH 0 42 h 2226 10843 4 +UH 0 43 h 1624 11153 4 +PQ +SE +ID 383 +TI 1760667399.710926055 +UH 0 40 l 1665 5268 0 +UH 0 41 l 1606 5175 0 +UH 0 51 h 1749 10543 4 +UH 0 52 h 1692 10620 4 +PQ +SE +ID 384 +TI 1760667399.711017847 +UH 0 51 l 2403 10622 4 +UH 0 16 h 2439 11362 4 +PQ +SE +ID 385 +TI 1760667399.711058855 +UH 0 22 l 2126 10823 4 +UH 0 8 h 2083 11634 4 +UH 0 9 h 1672 4645 0 +PQ +SE +ID 386 +TI 1760667399.711100101 +UH 0 3 l 1640 4155 0 +UH 0 4 l 1734 5132 0 +UH 0 5 l 2606 10631 4 +UH 0 19 h 1702 5402 0 +UH 0 20 h 1718 4966 0 +UH 0 22 h 2416 11048 4 +UH 0 23 h 1807 11181 4 +PQ +SE +ID 387 +TI 1760667399.711163759 +UH 0 5 l 2029 10792 4 +UH 0 6 l 3791 10906 4 +UH 0 47 h 4363 10797 4 +UH 0 48 h 1610 11003 4 +PQ +SE +ID 388 +TI 1760667399.711207628 +UH 0 28 l 1689 4673 0 +UH 0 27 h 1755 11741 4 +PQ +SE +ID 389 +TI 1760667399.711241006 +UH 0 32 l 1977 10650 4 +UH 0 14 h 1981 11524 4 +PQ +SE +ID 390 +TI 1760667399.711275100 +UH 0 24 l 3226 10594 4 +UH 0 23 h 1646 11035 4 +UH 0 24 h 3072 10926 4 +PQ +SE +ID 391 +TI 1760667399.711313724 +UH 0 32 l 1645 8753 4 +UH 0 33 l 3572 8332 4 +UH 0 16 l 2273 8646 4 +UH 0 17 l 1757 3127 0 +UH 0 18 l 2279 8378 4 +UH 0 32 h 3277 8932 4 +UH 0 43 h 2330 8945 4 +UH 0 45 h 2524 8927 4 +UH 0 31 h 1889 8893 4 +PQ +SE +ID 392 +TI 1760667399.711404800 +UH 0 8 l 2111 11004 4 +UH 0 44 h 2048 10829 4 +PQ +SE +ID 393 +TI 1760667399.711439609 +UH 0 13 l 2621 9813 4 +UH 0 17 l 4305 9778 4 +UH 0 34 h 2305 9298 4 +UH 0 35 h 1906 9496 4 +UH 0 37 h 2041 9664 4 +UH 0 38 h 3940 9476 4 +UH 0 39 h 1651 9329 4 +PQ +SE +ID 394 +TI 1760667399.711511135 +UH 0 51 l 1939 10816 4 +UH 0 52 l 1797 10683 4 +UH 0 53 l 3819 10512 4 +UH 0 58 l 2222 10142 4 +UH 0 57 h 4552 10707 4 +UH 0 58 h 2316 10450 4 +PQ +SE +ID 395 +TI 1760667399.711578369 +UH 0 64 l 1840 0 5 +UH 0 64 h 1860 0 5 +BD GR Veto +PQ +SE +ID 396 +TI 1760667399.711593627 +UH 0 64 l 2098 0 5 +UH 0 64 h 2052 0 5 +BD GR Veto +PQ +SE +ID 397 +TI 1760667399.711601734 +UH 0 50 l 1573 8691 4 +UH 0 51 l 2360 8716 4 +UH 0 52 l 3742 8584 4 +UH 0 53 l 1597 5361 0 +UH 0 10 h 2167 9498 4 +UH 0 11 h 1656 2005 0 +UH 0 13 h 3983 9333 4 +PQ +SE +ID 398 +TI 1760667399.711633682 +UH 0 52 l 3298 10747 4 +UH 0 36 h 3325 11029 4 +PQ +SE +ID 399 +TI 1760667399.711652517 +UH 0 16 l 1708 5250 0 +UH 0 55 h 1745 4520 0 +UH 0 56 h 1653 5265 0 +PQ +SE +ID 400 +TI 1760667399.711672544 +UH 0 32 l 2832 10309 4 +UH 0 6 h 2843 10409 4 +UH 0 7 h 1632 10466 4 +PQ +SE +ID 401 +TI 1760667399.711692571 +UH 0 36 l 3526 8849 4 +UH 0 37 l 1598 9259 4 +UH 0 43 l 2017 9270 4 +UH 0 44 l 1628 3464 0 +UH 0 46 h 2355 9494 4 +UH 0 50 h 3767 9463 4 +PQ +SE +ID 402 +TI 1760667399.711729764 +UH 0 10 l 1824 10911 4 +UH 0 11 l 1870 4723 0 +UH 0 64 l 3152 0 5 +UH 0 3 h 2124 11089 4 +UH 0 64 h 3125 0 5 +BD GR Veto +PQ +SE +ID 403 +TI 1760667399.711754798 +UH 0 0 l 2967 10783 4 +UH 0 27 h 3165 11160 4 +UH 0 64 h 2040 0 5 +BD GR Veto +PQ +SE +ID 404 +TI 1760667399.711772918 +UH 0 18 l 2441 10241 4 +UH 0 16 h 2472 11417 4 +PQ +SE +ID 405 +TI 1760667399.711791038 +UH 0 52 l 2389 10837 4 +UH 0 59 l 1714 4950 0 +UH 0 17 h 1721 10881 4 +UH 0 18 h 2220 10657 4 +UH 0 21 h 1665 3692 0 +UH 0 22 h 1735 4424 0 +PQ +SE +ID 406 +TI 1760667399.711828231 +UH 0 59 l 2377 10761 4 +UH 0 63 l 1531 4673 0 +UH 0 64 l 1779 0 5 +UH 0 44 h 2455 10627 4 +UH 0 52 h 1614 5059 0 +UH 0 64 h 1832 0 5 +BD GR Veto +PQ +SE +ID 407 +TI 1760667399.711863517 +UH 0 64 l 4166 0 5 +UH 0 52 h 1729 4650 0 +UH 0 64 h 3828 0 5 +BD GR Veto +PQ +SE +ID 408 +TI 1760667399.711878299 +UH 0 40 l 3795 8942 4 +UH 0 41 l 1486 9223 4 +UH 0 10 l 1705 3205 0 +UH 0 23 l 1746 3117 0 +UH 0 24 l 1930 3189 0 +UH 0 25 l 1673 2374 0 +UH 0 8 h 1682 3087 0 +UH 0 9 h 1915 9479 4 +UH 0 11 h 1701 2223 0 +UH 0 15 h 3917 9672 4 +PQ +SE +ID 409 +TI 1760667399.711932182 +UH 0 41 l 1845 5673 4 +UH 0 47 l 1888 10942 4 +UH 0 48 l 1558 4323 0 +UH 0 21 l 2047 5867 4 +UH 0 24 l 1762 10964 4 +UH 0 25 l 2864 11080 4 +UH 0 64 l 2877 0 5 +UH 0 55 h 1775 3845 0 +UH 0 56 h 1973 10442 4 +UH 0 63 h 2801 10790 4 +UH 0 0 h 2029 6357 4 +UH 0 4 h 2190 6342 4 +UH 0 64 h 3173 0 5 +BD GR Veto +PQ +SE +ID 410 +TI 1760667399.712002754 +UH 0 2 l 3380 10562 4 +UH 0 9 l 1952 10613 4 +UH 0 10 l 1665 4193 0 +UH 0 18 h 4104 11053 4 +PQ +SE +ID 411 +TI 1760667399.712030887 +UH 0 51 l 1943 10612 4 +UH 0 16 l 2342 10575 4 +UH 0 12 h 2415 11187 4 +UH 0 29 h 1929 11302 4 +PQ +SE +ID 412 +TI 1760667399.712068557 +UH 0 64 l 1766 0 5 +UH 0 64 h 1838 0 5 +BD GR Veto +PQ +SE +ID 413 +TI 1760667399.712076425 +UH 0 0 l 2462 10839 4 +UH 0 1 l 1771 11176 4 +UH 0 64 l 4395 0 5 +UH 0 9 h 2354 11162 4 +UH 0 14 h 1988 11411 4 +UH 0 64 h 4193 0 5 +BD GR Veto +PQ +SE +ID 414 +TI 1760667399.712119817 +UH 0 64 l 2793 0 5 +UH 0 43 h 1609 4275 0 +UH 0 64 h 2693 0 5 +BD GR Veto +PQ +SE +ID 415 +TI 1760667399.712136030 +UH 0 64 l 2112 0 5 +UH 0 64 h 2181 0 5 +BD GR Veto +PQ +SE +ID 416 +TI 1760667399.712144136 +UH 0 4 l 2292 11117 4 +UH 0 5 l 2502 10870 4 +UH 0 22 l 1966 10056 4 +UH 0 23 l 1876 4056 0 +UH 0 30 l 1615 5044 0 +UH 0 5 h 1607 3937 0 +UH 0 11 h 1666 3918 0 +UH 0 12 h 3067 11223 4 +UH 0 13 h 1640 11435 4 +UH 0 15 h 2320 11441 4 +PQ +SE +ID 417 +TI 1760667399.712197542 +UH 0 57 l 1555 5247 0 +UH 0 36 h 1653 3449 0 +PQ +SE +ID 418 +TI 1760667399.712213277 +UH 0 51 l 1691 5470 0 +UH 0 19 h 1608 4562 0 +PQ +SE +ID 419 +TI 1760667399.712230682 +UH 0 33 l 1598 5122 0 +UH 0 34 l 2497 10172 4 +UH 0 31 l 1914 10700 4 +UH 0 6 h 1967 11145 4 +UH 0 8 h 2712 11534 4 +PQ +SE +ID 420 +TI 1760667399.712260723 +UH 0 64 l 2062 0 5 +UH 0 64 h 2336 0 5 +BD GR Veto +PQ +SE +ID 421 +TI 1760667399.712268829 +UH 0 2 l 1765 11056 4 +UH 0 3 l 2631 10872 4 +UH 0 11 h 1789 11195 4 +UH 0 12 h 2567 10995 4 +UH 0 13 h 1699 11159 4 +PQ +SE +ID 422 +TI 1760667399.712293386 +UH 0 64 l 1963 0 5 +UH 0 64 h 2481 0 5 +BD GR Veto +PQ +SE +ID 423 +TI 1760667399.712301015 +UH 0 17 l 1778 10918 4 +UH 0 18 l 2733 10696 4 +UH 0 3 h 2499 10929 4 +UH 0 4 h 2277 11438 4 +PQ +SE +ID 424 +TI 1760667399.712323427 +UH 0 37 l 1883 10688 4 +UH 0 0 h 1997 11478 4 +PQ +SE +ID 425 +TI 1760667399.712339162 +UH 0 48 l 2195 10926 4 +UH 0 49 l 2206 10896 4 +UH 0 35 h 1599 3901 0 +UH 0 37 h 3120 10818 4 +PQ +SE +ID 426 +TI 1760667399.712363481 +UH 0 1 l 1637 5500 0 +PQ +SE +ID 427 +TI 1760667399.712373971 +UH 0 18 l 2629 10741 4 +UH 0 15 h 2437 11148 4 +UH 0 16 h 1807 11130 4 +PQ +SE +ID 428 +TI 1760667399.712393760 +UH 0 35 l 3734 10644 4 +UH 0 36 l 1945 10437 4 +UH 0 59 h 4305 10311 4 +PQ +SE +ID 429 +TI 1760667399.712413787 +UH 0 41 l 2415 10990 4 +UH 0 21 h 2585 10996 4 +PQ +SE +ID 430 +TI 1760667399.712431430 +UH 0 14 l 2342 10525 4 +UH 0 10 h 2398 11621 4 +PQ +SE +ID 431 +TI 1760667399.712449312 +UH 0 41 l 2618 10962 4 +UH 0 42 l 2849 10925 4 +UH 0 29 l 1786 4463 0 +UH 0 48 h 4318 10654 4 +UH 0 54 h 1756 10956 4 +PQ +SE +ID 432 +TI 1760667399.712484598 +UH 0 39 l 1609 5205 0 +UH 0 40 l 4159 8838 4 +UH 0 41 l 1576 9095 4 +UH 0 4 h 4444 9685 4 +PQ +SE +ID 433 +TI 1760667399.712508201 +UH 0 6 l 2435 9900 4 +UH 0 9 l 1643 10069 4 +UH 0 10 l 4446 9934 4 +UH 0 20 h 2962 10076 4 +UH 0 21 h 1691 10437 4 +UH 0 22 h 3041 10084 4 +UH 0 23 h 2555 10249 4 +PQ +SE +ID 434 +TI 1760667399.712550640 +UH 0 13 l 2537 5288 0 +UH 0 14 l 2415 5399 0 +UH 0 64 l 2610 0 5 +UH 0 62 h 1882 4846 0 +UH 0 63 h 3204 5096 0 +UH 0 64 h 2638 0 5 +BD GR Veto +PQ +SE +ID 435 +TI 1760667399.712575674 +UH 0 34 l 1853 10391 4 +UH 0 27 h 1891 11421 4 +PQ +SE +ID 436 +TI 1760667399.712593555 +UH 0 51 l 1630 5111 0 +UH 0 52 l 3763 8736 4 +UH 0 53 l 1605 8823 4 +UH 0 54 l 1931 8975 4 +UH 0 55 l 2523 8689 4 +UH 0 4 h 3651 9550 4 +UH 0 5 h 1820 9453 4 +UH 0 7 h 2492 9345 4 +UH 0 8 h 1631 3901 0 +UH 0 9 h 2275 9284 4 +PQ +SE +ID 437 +TI 1760667399.712632656 +UH 0 34 l 1855 10269 4 +UH 0 37 l 1608 10377 4 +UH 0 38 l 2442 10276 4 +UH 0 28 l 2609 10810 4 +UH 0 33 h 2616 10107 4 +UH 0 26 h 1878 11133 4 +UH 0 28 h 2747 10897 4 +PQ +SE +ID 438 +TI 1760667399.712679386 +UH 0 58 l 2048 10546 4 +UH 0 2 h 2162 10895 4 +PQ +SE +ID 439 +TI 1760667399.712697267 +UH 0 10 l 2479 10545 4 +UH 0 13 l 1777 10836 4 +UH 0 14 l 3660 10853 4 +UH 0 15 l 1874 10610 4 +UH 0 16 l 1917 10780 4 +UH 0 11 h 2574 11168 4 +UH 0 12 h 2445 11083 4 +UH 0 14 h 3561 11235 4 +UH 0 15 h 1650 11404 4 +PQ +SE +ID 440 +TI 1760667399.712738752 +UH 0 56 l 1757 5100 0 +UH 0 57 l 1841 10697 4 +UH 0 58 l 2501 10465 4 +UH 0 58 h 1832 10669 4 +UH 0 59 h 1836 10817 4 +UH 0 60 h 2216 10469 4 +UH 0 61 h 1928 10944 4 +PQ +SE +ID 441 +TI 1760667399.712767839 +UH 0 52 l 1728 5403 0 +UH 0 41 h 1728 5377 0 +PQ +SE +ID 442 +TI 1760667399.712785482 +UH 0 37 l 2134 10197 4 +UH 0 38 l 1661 10307 4 +UH 0 39 l 2206 10195 4 +UH 0 8 l 1779 4566 0 +UH 0 61 h 2596 10371 4 +UH 0 62 h 2126 10218 4 +UH 0 31 h 1715 10980 4 +PQ +SE +ID 443 +TI 1760667399.712824583 +UH 0 11 l 1910 4508 0 +UH 0 12 l 2508 10355 4 +UH 0 64 l 2028 0 5 +UH 0 63 h 2733 10914 4 +UH 0 64 h 2186 0 5 +BD GR Veto +PQ +SE +ID 444 +TI 1760667399.712846755 +UH 0 8 l 1688 4372 0 +UH 0 10 l 2955 10967 4 +UH 0 24 h 1680 11043 4 +UH 0 25 h 2778 11153 4 +PQ +SE +ID 445 +TI 1760667399.712873220 +UH 0 53 l 1917 10870 4 +UH 0 44 h 1748 4030 0 +UH 0 45 h 1700 10466 4 +PQ +SE +ID 446 +TI 1760667399.712893486 +UH 0 64 l 1713 0 5 +UH 0 64 h 1772 0 5 +BD GR Veto +PQ +SE +ID 447 +TI 1760667399.731610298 +UH 0 28 l 3615 10466 4 +UH 0 29 l 1966 10348 4 +UH 0 8 h 4069 11463 4 +PQ +SE +ID 448 +TI 1760667399.731683492 +UH 0 37 l 3250 10625 4 +UH 0 38 l 1598 10697 4 +UH 0 44 l 3528 10478 4 +UH 0 33 h 3331 10150 4 +UH 0 29 h 3649 10697 4 +PQ +SE +ID 449 +TI 1760667399.731771230 +UH 0 18 l 2222 10270 4 +UH 0 20 l 1810 4743 0 +UH 0 22 l 2422 10500 4 +UH 0 11 h 2101 11367 4 +UH 0 12 h 2167 11170 4 +UH 0 14 h 2300 11403 4 +PQ +SE +ID 450 +TI 1760667399.731842517 +UH 0 33 l 1582 8777 4 +UH 0 34 l 3937 8794 4 +UH 0 35 l 1550 9101 4 +UH 0 61 h 2750 9522 4 +UH 0 62 h 2892 9369 4 +PQ +SE +ID 451 +TI 1760667399.731896162 +UH 0 29 l 2199 11081 4 +UH 0 41 h 2200 10745 4 +PQ +SE +ID 452 +TI 1760667399.731949090 +UH 0 38 l 2023 10962 4 +UH 0 13 h 2110 10944 4 +PQ +SE +ID 453 +TI 1760667399.731984376 +UH 0 0 l 1612 5189 0 +UH 0 64 l 2020 0 5 +UH 0 64 h 4016 0 5 +BD GR Veto +PQ +SE +ID 454 +TI 1760667399.732010126 +UH 0 50 l 3152 10426 4 +UH 0 2 h 3428 11387 4 +PQ +SE +ID 455 +TI 1760667399.732040882 +UH 0 10 l 2292 10524 4 +UH 0 4 h 2372 11596 4 +PQ +SE +ID 456 +TI 1760667399.732059717 +UH 0 33 l 1838 8411 4 +UH 0 34 l 5252 8439 4 +UH 0 35 l 1558 8758 4 +UH 0 59 h 5561 8996 4 +PQ +SE +ID 457 +TI 1760667399.732083082 +UH 0 51 l 1638 4114 0 +UH 0 60 h 1584 5197 0 +PQ +SE +ID 458 +TI 1760667399.732197999 +UH 0 64 l 2420 0 5 +UH 0 64 h 2476 0 5 +BD GR Veto +PQ +SE +ID 459 +TI 1760667399.732208728 +UH 0 18 l 2494 10731 4 +UH 0 32 h 1888 10697 4 +UH 0 31 h 2143 10584 4 +PQ +SE +ID 460 +TI 1760667399.732229471 +UH 0 26 l 2316 11480 4 +UH 0 43 h 2256 10518 4 +PQ +SE +ID 461 +TI 1760667399.732248544 +UH 0 14 l 1810 4875 0 +UH 0 15 l 2080 10645 4 +UH 0 18 l 2226 10794 4 +UH 0 19 l 1777 5076 0 +UH 0 23 l 1778 4925 0 +UH 0 38 h 2171 10853 4 +UH 0 41 h 1626 2602 0 +UH 0 42 h 1911 10707 4 +UH 0 43 h 2267 10944 4 +PQ +SE +ID 462 +TI 1760667399.732297897 +UH 0 64 l 1656 0 5 +UH 0 64 h 2159 0 5 +BD GR Veto +PQ +SE +ID 463 +TI 1760667399.732306718 +UH 0 58 l 2324 10567 4 +UH 0 55 h 1839 10695 4 +UH 0 56 h 2240 10946 4 +PQ +SE +ID 464 +TI 1760667399.732330322 +UH 0 42 l 2863 10946 4 +UH 0 39 h 2988 10658 4 +PQ +SE +ID 465 +TI 1760667399.732348442 +UH 0 2 l 2344 10759 4 +UH 0 3 l 1706 5157 0 +UH 0 5 l 1675 4917 0 +UH 0 7 l 1876 10451 4 +UH 0 11 l 2922 10235 4 +UH 0 45 h 2401 10905 4 +UH 0 46 h 1679 10806 4 +UH 0 13 h 2376 11317 4 +UH 0 14 h 1763 11477 4 +UH 0 15 h 1875 11480 4 +UH 0 19 h 1891 11497 4 +UH 0 25 h 1587 5032 0 +PQ +SE +ID 466 +TI 1760667399.732415914 +UH 0 64 l 4716 0 5 +UH 0 64 h 4539 0 5 +BD GR Veto +PQ +SE +ID 467 +TI 1760667399.732424736 +UH 0 22 l 2112 10798 4 +UH 0 3 h 2234 11070 4 +PQ +SE +ID 468 +TI 1760667399.732443332 +UH 0 55 l 5463 10647 4 +UH 0 13 h 3406 10869 4 +UH 0 14 h 2487 10971 4 +UH 0 16 h 1678 10963 4 +UH 0 17 h 2556 10753 4 +PQ +SE +ID 469 +TI 1760667399.732471227 +UH 0 7 l 2360 10809 4 +UH 0 8 l 2607 10742 4 +UH 0 1 h 2909 11284 4 +UH 0 2 h 2230 11336 4 +PQ +SE +ID 470 +TI 1760667399.732494831 +UH 0 21 l 2503 11158 4 +UH 0 46 h 2586 10685 4 +PQ +SE +ID 471 +TI 1760667399.732513189 +UH 0 57 l 1914 10633 4 +UH 0 58 l 1634 4734 0 +UH 0 59 l 1570 5304 0 +UH 0 60 l 1593 4993 0 +UH 0 64 l 2381 0 5 +UH 0 57 h 1619 4508 0 +UH 0 58 h 2223 10660 4 +UH 0 64 h 2411 0 5 +BD GR Veto +PQ +SE +ID 472 +TI 1760667399.732545614 +UH 0 43 l 1537 5477 0 +UH 0 49 h 1590 5045 0 +PQ +SE +ID 473 +TI 1760667399.732563734 +UH 0 13 l 1877 10825 4 +UH 0 14 l 2755 10673 4 +UH 0 20 l 3928 10573 4 +UH 0 43 h 3915 10680 4 +UH 0 27 h 2117 11219 4 +UH 0 28 h 2677 11001 4 +PQ +SE +ID 474 +TI 1760667399.732602119 +UH 0 17 l 1948 10482 4 +UH 0 18 l 3686 10283 4 +UH 0 54 h 4225 11052 4 +PQ +SE +ID 475 +TI 1760667399.732623577 +UH 0 64 l 2122 0 5 +UH 0 64 h 2148 0 5 +BD GR Veto +PQ +SE +ID 476 +TI 1760667399.732632398 +UH 0 15 l 1717 4633 0 +UH 0 16 l 1828 11257 4 +UH 0 61 h 1725 10977 4 +UH 0 62 h 1869 10718 4 +PQ +SE +ID 477 +TI 1760667399.732656240 +UH 0 64 h 1663 0 5 +BD GR Veto +PQ +SE +ID 478 +TI 1760667399.732662200 +UH 0 64 l 3402 0 5 +UH 0 64 h 3356 0 5 +BD GR Veto +PQ +SE +ID 479 +TI 1760667399.732670783 +UH 0 0 l 1616 8854 4 +UH 0 1 l 3816 9037 4 +UH 0 2 l 1677 9224 4 +UH 0 3 l 2324 8932 4 +UH 0 5 l 1640 2842 0 +UH 0 6 l 1658 3431 0 +UH 0 12 l 1752 2318 0 +UH 0 36 h 1752 3005 0 +UH 0 48 h 1678 2903 0 +UH 0 20 h 3658 9486 4 +UH 0 25 h 2383 9516 4 +UH 0 28 h 1873 9423 4 +PQ +SE +ID 480 +TI 1760667399.732738971 +UH 0 64 l 3337 0 5 +UH 0 5 h 2827 11280 4 +UH 0 64 h 2018 0 5 +BD GR Veto +PQ +SE +ID 481 +TI 1760667399.732762813 +UH 0 61 l 1985 10609 4 +UH 0 62 l 3813 10678 4 +UH 0 64 l 2829 0 5 +UH 0 58 h 4099 10787 4 +UH 0 64 h 2916 0 5 +BD GR Veto +PQ +SE +ID 482 +TI 1760667399.732788801 +UH 0 64 l 4300 0 5 +UH 0 64 h 4202 0 5 +BD GR Veto +PQ +SE +ID 483 +TI 1760667399.732796192 +UH 0 25 l 2696 11254 4 +UH 0 61 h 2301 10752 4 +UH 0 62 h 2017 10608 4 +PQ +SE +ID 484 +TI 1760667399.732816696 +UH 0 62 l 1808 5347 0 +UH 0 57 h 1762 10573 4 +PQ +SE +ID 485 +TI 1760667399.732834100 +UH 0 17 l 2087 10425 4 +UH 0 1 h 2208 11429 4 +PQ +SE +ID 486 +TI 1760667399.732852220 +UH 0 54 l 1819 11031 4 +UH 0 55 l 2595 10724 4 +UH 0 58 l 2170 10315 4 +UH 0 59 l 3136 10479 4 +UH 0 16 h 2534 11351 4 +UH 0 18 h 1625 4523 0 +UH 0 19 h 3048 11152 4 +UH 0 20 h 2198 11091 4 +UH 0 21 h 2290 11340 4 +PQ +SE +ID 487 +TI 1760667399.732894897 +UH 0 24 l 2120 10454 4 +UH 0 25 l 1826 4902 0 +UH 0 5 h 2335 11302 4 +PQ +SE +ID 488 +TI 1760667399.732915639 +UH 0 7 l 1907 11180 4 +UH 0 61 h 1887 10797 4 +PQ +SE +ID 489 +TI 1760667399.732932567 +UH 0 43 l 2775 10668 4 +UH 0 27 h 2995 11223 4 +PQ +SE +ID 490 +TI 1760667399.732957363 +UH 0 38 l 1548 5001 0 +UH 0 39 l 2321 10656 4 +UH 0 26 l 4051 10960 4 +UH 0 27 l 2081 10553 4 +UH 0 14 h 1854 11250 4 +UH 0 15 h 2161 11266 4 +UH 0 16 h 1930 11200 4 +UH 0 17 h 3143 10979 4 +UH 0 18 h 2595 10844 4 +PQ +SE +ID 491 +TI 1760667399.732998132 +UH 0 64 l 2579 0 5 +UH 0 64 h 2579 0 5 +BD GR Veto +PQ +SE +ID 492 +TI 1760667399.733006954 +UH 0 33 l 1623 5006 0 +UH 0 45 l 1994 10803 4 +UH 0 48 l 1753 5136 0 +UH 0 26 l 2542 11490 4 +UH 0 30 l 1799 5475 0 +UH 0 14 h 1947 11518 4 +UH 0 15 h 2045 11531 4 +UH 0 19 h 1599 4933 0 +UH 0 20 h 1850 10951 4 +UH 0 22 h 2177 10988 4 +UH 0 23 h 1885 11106 4 +PQ +SE +ID 493 +TI 1760667399.733073711 +UH 0 8 l 2685 10913 4 +UH 0 10 l 2268 10921 4 +UH 0 11 l 1936 10704 4 +UH 0 37 h 2728 11191 4 +UH 0 38 h 1910 10950 4 +UH 0 39 h 2363 10616 4 +PQ +SE +ID 494 +TI 1760667399.733110189 +UH 0 13 l 2126 11044 4 +UH 0 21 h 2165 11073 4 +PQ +SE +ID 495 +TI 1760667399.733129262 +UH 0 59 l 2001 10734 4 +UH 0 42 h 2094 10942 4 +PQ +SE +ID 496 +TI 1760667399.733147859 +UH 0 14 l 2765 10828 4 +UH 0 20 l 1760 4849 0 +UH 0 24 l 2063 11137 4 +UH 0 25 l 1914 11341 4 +UH 0 42 h 1748 4842 0 +UH 0 43 h 2319 10886 4 +UH 0 49 h 2825 11023 4 +PQ +SE +ID 497 +TI 1760667399.733199834 +UH 0 4 l 2020 11048 4 +UH 0 17 h 2030 11378 4 +PQ +SE +ID 498 +TI 1760667399.733219385 +UH 0 4 l 1736 5398 0 +UH 0 5 l 1859 11162 4 +UH 0 2 h 2127 11473 4 +PQ +SE +ID 499 +TI 1760667399.733240842 +UH 0 4 l 2699 11099 4 +UH 0 5 l 1651 5018 0 +UH 0 33 h 1678 4305 0 +UH 0 34 h 2104 10331 4 +UH 0 36 h 2039 10582 4 +PQ +SE +ID 500 +TI 1760667399.733269453 +UH 0 9 l 2184 11021 4 +UH 0 24 h 2208 11175 4 +PQ +SE +ID 501 +TI 1760667399.733287096 +UH 0 54 l 3181 10954 4 +UH 0 42 h 3384 10054 4 +PQ +SE +ID 502 +TI 1760667399.733304977 +UH 0 3 l 1806 9075 4 +UH 0 4 l 1651 2885 0 +UH 0 5 l 3206 9674 4 +UH 0 8 l 3573 9697 4 +UH 0 15 h 3144 9808 4 +UH 0 16 h 1578 9925 4 +UH 0 17 h 1688 9775 4 +UH 0 18 h 3376 9514 4 +UH 0 20 h 1957 9905 4 +PQ +SE +ID 503 +TI 1760667399.733347654 +UH 0 26 l 2058 5091 0 +UH 0 27 l 1894 10416 4 +UH 0 28 l 3744 10596 4 +UH 0 33 h 3539 10525 4 +UH 0 34 h 1683 4470 0 +UH 0 29 h 2347 11279 4 +PQ +SE +ID 504 +TI 1760667399.733380794 +UH 0 64 l 2178 0 5 +UH 0 64 h 2192 0 5 +BD GR Veto +PQ +SE +ID 505 +TI 1760667399.733389616 +UH 0 7 l 2583 10625 4 +UH 0 8 l 2731 10558 4 +UH 0 64 l 3667 0 5 +UH 0 27 h 2344 11180 4 +UH 0 28 h 3040 10941 4 +UH 0 64 h 3438 0 5 +BD GR Veto +PQ +SE +ID 506 +TI 1760667399.733424901 +UH 0 2 l 3642 10956 4 +UH 0 57 h 2941 10661 4 +UH 0 58 h 2271 10348 4 +PQ +SE +ID 507 +TI 1760667399.733445882 +UH 0 60 l 1886 10304 4 +UH 0 61 l 1935 10518 4 +UH 0 62 l 3648 10544 4 +UH 0 45 h 2269 10920 4 +UH 0 56 h 3717 10956 4 +PQ +SE +ID 508 +TI 1760667399.733475923 +UH 0 21 l 2380 11051 4 +UH 0 46 h 2459 11195 4 +PQ +SE +ID 509 +TI 1760667399.733494043 +UH 0 13 l 1617 5267 0 +UH 0 14 l 2268 10733 4 +UH 0 55 h 2458 10644 4 +PQ +SE +ID 510 +TI 1760667399.733514070 +UH 0 36 l 1856 4627 0 +UH 0 37 l 1708 4901 0 +UH 0 27 h 2094 11460 4 +PQ +SE +ID 511 +TI 1760667399.752738714 +UH 0 33 l 1859 10338 4 +UH 0 34 l 2271 10346 4 +UH 0 36 l 2636 10453 4 +UH 0 55 l 2080 10664 4 +UH 0 56 l 2519 10762 4 +UH 0 10 h 2413 11251 4 +UH 0 11 h 1791 11176 4 +UH 0 16 h 1581 11399 4 +UH 0 17 h 2598 11188 4 +UH 0 28 h 2282 10877 4 +UH 0 29 h 2595 11150 4 +PQ +SE +ID 512 +TI 1760667399.752837419 +UH 0 32 l 2610 10849 4 +UH 0 33 l 2440 10455 4 +UH 0 34 l 1938 10581 4 +UH 0 35 l 1866 10934 4 +UH 0 36 l 1613 5122 0 +UH 0 30 l 2313 10831 4 +UH 0 31 l 1733 5307 0 +UH 0 35 h 2356 10886 4 +UH 0 45 h 2829 10938 4 +UH 0 46 h 2894 10839 4 +UH 0 48 h 2031 10879 4 +PQ +SE +ID 513 +TI 1760667399.752889156 +UH 0 5 l 2379 10582 4 +UH 0 6 l 1717 5187 0 +UH 0 54 h 2526 11153 4 +PQ +SE +ID 514 +TI 1760667399.752909660 +UH 0 3 l 2434 10893 4 +UH 0 36 h 2533 10967 4 +PQ +SE +ID 515 +TI 1760667399.752927780 +UH 0 64 l 2596 0 5 +UH 0 64 h 2583 0 5 +BD GR Veto +PQ +SE +ID 516 +TI 1760667399.752936124 +UH 0 47 l 1783 5007 0 +UH 0 50 l 1630 4350 0 +UH 0 1 l 2099 10903 4 +UH 0 43 h 1628 4270 0 +UH 0 50 h 1934 10842 4 +UH 0 28 h 2138 11172 4 +PQ +SE +ID 517 +TI 1760667399.752986907 +UH 0 64 l 2604 0 5 +UH 0 2 h 1620 4323 0 +UH 0 64 h 2106 0 5 +BD GR Veto +PQ +SE +ID 518 +TI 1760667399.753003120 +UH 0 15 l 1854 4720 0 +UH 0 29 h 1769 5631 0 +PQ +SE +ID 519 +TI 1760667399.753021240 +UH 0 8 l 2105 10698 4 +UH 0 5 h 2081 11516 4 +PQ +SE +ID 520 +TI 1760667399.753038406 +UH 0 43 l 1780 10818 4 +UH 0 47 l 1593 5293 0 +UH 0 34 h 1837 10974 4 +UH 0 35 h 1685 4508 0 +PQ +SE +ID 521 +TI 1760667399.753065824 +UH 0 50 l 1710 5365 0 +UH 0 48 h 1738 11489 4 +PQ +SE +ID 522 +TI 1760667399.753083229 +UH 0 15 l 2982 10459 4 +UH 0 27 l 1629 3142 0 +UH 0 29 l 1719 1533 0 +UH 0 30 l 1645 2034 0 +UH 0 31 l 1702 2437 0 +UH 0 24 h 2907 11085 4 +PQ +SE +ID 523 +TI 1760667399.753116846 +UH 0 64 l 4904 0 5 +UH 0 64 h 5387 0 5 +BD GR Veto +PQ +SE +ID 524 +TI 1760667399.753124713 +UH 0 28 l 2273 11126 4 +UH 0 29 l 1825 10994 4 +UH 0 9 h 1820 11324 4 +UH 0 10 h 2308 11516 4 +PQ +SE +ID 525 +TI 1760667399.753146409 +UH 0 1 l 2729 10856 4 +UH 0 24 h 2704 11079 4 +PQ +SE +ID 526 +TI 1760667399.753162860 +UH 0 48 l 1569 4535 0 +UH 0 55 l 2126 10692 4 +UH 0 48 h 2414 11070 4 +PQ +SE +ID 527 +TI 1760667399.753187656 +UH 0 64 l 5559 0 5 +UH 0 64 h 5056 0 5 +BD GR Veto +PQ +SE +ID 528 +TI 1760667399.753195285 +UH 0 63 l 2570 8374 4 +UH 0 7 l 1837 11044 4 +UH 0 60 h 1834 10984 4 +UH 0 12 h 2692 8470 4 +PQ +SE +ID 529 +TI 1760667399.753223657 +UH 0 64 l 2233 0 5 +UH 0 64 h 2301 0 5 +BD GR Veto +PQ +SE +ID 530 +TI 1760667399.753231525 +UH 0 44 l 1520 4974 0 +UH 0 45 l 2340 10840 4 +UH 0 41 h 2578 11184 4 +PQ +SE +ID 531 +TI 1760667399.753251314 +UH 0 1 l 4159 10908 4 +UH 0 42 h 4126 10752 4 +UH 0 43 h 1620 11075 4 +PQ +SE +ID 532 +TI 1760667399.753270626 +UH 0 45 l 1967 10911 4 +UH 0 46 l 1936 10897 4 +UH 0 52 l 1756 4850 0 +UH 0 58 l 1613 4531 0 +UH 0 52 h 1610 4117 0 +UH 0 53 h 1722 4630 0 +UH 0 55 h 1747 4163 0 +UH 0 60 h 2223 10367 4 +UH 0 61 h 1848 10842 4 +PQ +SE +ID 533 +TI 1760667399.753328800 +UH 0 4 l 2223 11188 4 +UH 0 29 h 2265 11082 4 +PQ +SE +ID 534 +TI 1760667399.753346204 +UH 0 26 l 2976 10706 4 +UH 0 20 h 2989 11065 4 +PQ +SE +ID 535 +TI 1760667399.753364086 +UH 0 40 l 1787 5272 0 +UH 0 41 l 2724 10960 4 +UH 0 64 l 3852 0 5 +UH 0 57 h 1957 11094 4 +UH 0 58 h 2841 10706 4 +UH 0 64 h 3771 0 5 +BD GR Veto +PQ +SE +ID 536 +TI 1760667399.753390789 +UH 0 25 l 2966 10786 4 +UH 0 1 h 3031 11219 4 +PQ +SE +ID 537 +TI 1760667399.753407716 +UH 0 49 l 3114 10873 4 +UH 0 14 h 3217 10732 4 +PQ +SE +ID 538 +TI 1760667399.753425359 +UH 0 27 l 1658 8650 4 +UH 0 28 l 7569 8729 4 +UH 0 29 l 2594 8665 4 +UH 0 6 h 1611 8986 4 +UH 0 7 h 8755 8833 4 +UH 0 8 h 1621 9261 4 +PQ +SE +ID 539 +TI 1760667399.753451824 +UH 0 64 h 1991 0 5 +BD GR Veto +PQ +SE +ID 540 +TI 1760667399.753457546 +UH 0 58 l 2562 10574 4 +UH 0 34 h 2544 10444 4 +PQ +SE +ID 541 +TI 1760667399.753475666 +UH 0 10 l 1647 5287 0 +UH 0 11 l 2878 10163 4 +UH 0 12 h 1574 11271 4 +UH 0 13 h 2780 11268 4 +PQ +SE +ID 542 +TI 1760667399.753497123 +UH 0 64 l 1827 0 5 +UH 0 64 h 1903 0 5 +BD GR Veto +PQ +SE +ID 543 +TI 1760667399.753505229 +UH 0 52 l 1963 11056 4 +UH 0 38 h 2038 11392 4 +PQ +SE +ID 544 +TI 1760667399.753522396 +UH 0 61 l 1822 10850 4 +UH 0 6 h 1759 10998 4 +PQ +SE +ID 545 +TI 1760667399.753540039 +UH 0 24 l 2374 11093 4 +UH 0 63 h 2326 10505 4 +PQ +SE +ID 546 +TI 1760667399.753555536 +UH 0 61 l 2983 10702 4 +UH 0 51 h 2913 10711 4 +PQ +SE +ID 547 +TI 1760667399.753572463 +UH 0 38 l 2066 10944 4 +UH 0 47 l 1801 10895 4 +UH 0 0 h 2417 11334 4 +UH 0 1 h 1811 11467 4 +PQ +SE +ID 548 +TI 1760667399.753596782 +UH 0 29 l 1774 5363 0 +UH 0 36 h 1786 5285 0 +PQ +SE +ID 549 +TI 1760667399.753614187 +UH 0 51 l 2330 11015 4 +UH 0 10 h 2298 11060 4 +UH 0 11 h 1649 10981 4 +PQ +SE +ID 550 +TI 1760667399.753633499 +UH 0 33 l 2320 10639 4 +UH 0 51 h 2345 10780 4 +PQ +SE +ID 551 +TI 1760667399.753650665 +UH 0 4 l 4094 9886 4 +UH 0 5 l 2938 9706 4 +UH 0 56 h 1601 9748 4 +UH 0 57 h 2991 9678 4 +UH 0 58 h 4020 9284 4 +PQ +SE +ID 552 +TI 1760667399.753675222 +UH 0 39 l 1625 5069 0 +UH 0 58 h 1636 5219 0 +PQ +SE +ID 553 +TI 1760667399.753692388 +UH 0 58 l 1635 5100 0 +UH 0 2 h 1731 11352 4 +PQ +SE +ID 554 +TI 1760667399.753709077 +UH 0 47 l 1655 4974 0 +UH 0 50 l 2227 10654 4 +UH 0 51 l 1796 5130 0 +UH 0 52 h 1747 4911 0 +UH 0 54 h 2485 11178 4 +PQ +SE +ID 555 +TI 1760667399.753740072 +UH 0 64 l 2012 0 5 +UH 0 64 h 3430 0 5 +BD GR Veto +PQ +SE +ID 556 +TI 1760667399.753748178 +UH 0 38 l 2855 10884 4 +UH 0 30 h 2680 11131 4 +UH 0 31 h 1807 10560 4 +PQ +SE +ID 557 +TI 1760667399.753767728 +UH 0 46 l 2429 10711 4 +UH 0 47 l 2119 10844 4 +UH 0 64 l 3820 0 5 +UH 0 63 h 3352 10713 4 +UH 0 64 h 3748 0 5 +BD GR Veto +PQ +SE +ID 558 +TI 1760667399.753789424 +UH 0 10 l 4152 10693 4 +UH 0 12 l 1797 4345 0 +UH 0 16 l 2566 10325 4 +UH 0 32 h 2247 10605 4 +UH 0 33 h 3410 10146 4 +UH 0 37 h 2731 11008 4 +UH 0 31 h 1706 10736 4 +PQ +SE +ID 559 +TI 1760667399.753830194 +UH 0 64 l 2241 0 5 +UH 0 64 h 2261 0 5 +BD GR Veto +PQ +SE +ID 560 +TI 1760667399.753837823 +UH 0 10 l 1716 5015 0 +UH 0 32 h 1627 5364 0 +PQ +SE +ID 561 +TI 1760667399.753852367 +UH 0 11 l 2829 10033 4 +UH 0 12 l 4241 9795 4 +UH 0 13 l 1694 10352 4 +UH 0 16 h 2020 10812 4 +UH 0 17 h 2270 10659 4 +UH 0 20 h 2207 10391 4 +UH 0 21 h 3629 10578 4 +PQ +SE +ID 562 +TI 1760667399.753890037 +UH 0 35 l 2121 10804 4 +UH 0 36 l 1695 4652 0 +UH 0 37 l 1949 10973 4 +UH 0 47 h 2134 10466 4 +UH 0 48 h 1813 10642 4 +UH 0 51 h 1787 10523 4 +UH 0 52 h 1722 4531 0 +PQ +SE +ID 563 +TI 1760667399.753924369 +UH 0 32 l 2488 8726 4 +UH 0 26 l 2390 7935 4 +UH 0 27 l 2017 7580 4 +UH 0 30 l 1615 9143 4 +UH 0 31 l 4452 8840 4 +UH 0 47 h 1712 2647 0 +UH 0 48 h 3702 9134 4 +UH 0 49 h 3463 9106 4 +UH 0 14 h 1783 7608 4 +UH 0 15 h 1903 7628 4 +UH 0 16 h 2383 7605 4 +PQ +SE +ID 564 +TI 1760667399.753973007 +UH 0 34 l 2226 9779 4 +UH 0 35 l 1563 10200 4 +UH 0 36 l 2422 9828 4 +UH 0 38 l 3733 9805 4 +UH 0 37 h 3213 10000 4 +UH 0 38 h 1678 10017 4 +UH 0 60 h 3725 9697 4 +UH 0 61 h 1640 10186 4 +PQ +SE +ID 565 +TI 1760667399.754011869 +UH 0 17 l 1593 8969 4 +UH 0 18 l 4449 8595 4 +UH 0 19 l 1649 9002 4 +UH 0 26 l 2127 9361 4 +UH 0 28 l 2000 9076 4 +UH 0 38 h 1837 9199 4 +UH 0 39 h 4521 8870 4 +UH 0 40 h 1854 8963 4 +UH 0 45 h 2004 8941 4 +PQ +SE +ID 566 +TI 1760667399.754057168 +UH 0 64 l 2154 0 5 +UH 0 64 h 2201 0 5 +BD GR Veto +PQ +SE +ID 567 +TI 1760667399.754064798 +UH 0 16 l 1939 11098 4 +UH 0 17 l 1880 11012 4 +UH 0 57 h 1735 5194 0 +UH 0 58 h 2220 10944 4 +PQ +SE +ID 568 +TI 1760667399.754087686 +UH 0 0 l 1712 10824 4 +UH 0 1 l 2416 11115 4 +UH 0 2 l 3263 10641 4 +UH 0 5 l 2209 10359 4 +UH 0 6 l 1667 5373 0 +UH 0 64 l 1934 0 5 +UH 0 34 h 2161 10576 4 +UH 0 35 h 1621 10788 4 +UH 0 37 h 3268 10877 4 +UH 0 38 h 3155 10786 4 +BD GR Veto +PQ +SE +ID 569 +TI 1760667399.754128456 +UH 0 55 l 2826 10733 4 +UH 0 49 h 2989 10266 4 +PQ +SE +ID 570 +TI 1760667399.754145860 +UH 0 52 l 2195 11089 4 +UH 0 2 h 2286 11044 4 +PQ +SE +ID 571 +TI 1760667399.754163265 +UH 0 49 l 1571 5377 0 +UH 0 29 h 1625 5156 0 +PQ +SE +ID 572 +TI 1760667399.754180669 +UH 0 9 l 1706 10638 4 +UH 0 10 l 4226 10529 4 +UH 0 64 l 4592 0 5 +UH 0 0 h 1645 9215 4 +UH 0 10 h 1772 11218 4 +UH 0 11 h 4197 10979 4 +UH 0 64 h 4369 0 5 +BD GR Veto +PQ +SE +ID 573 +TI 1760667399.754212617 +UH 0 30 l 2043 10835 4 +UH 0 18 h 2095 11281 4 +PQ +SE +ID 574 +TI 1760667399.754229784 +UH 0 53 l 2082 10744 4 +UH 0 54 l 1829 11027 4 +UH 0 63 h 2561 11046 4 +PQ +SE +ID 575 +TI 1760667399.774368286 +UH 0 59 l 1559 5301 0 +UH 0 61 l 1651 4493 0 +UH 0 62 l 1624 5110 0 +UH 0 63 l 1519 4146 0 +UH 0 64 l 1873 0 5 +UH 0 64 h 3282 0 5 +BD GR Veto +PQ +SE +ID 576 +TI 1760667399.774447679 +UH 0 55 l 2093 10887 4 +UH 0 56 l 1762 11306 4 +UH 0 57 l 1634 5218 0 +UH 0 39 h 1875 10692 4 +UH 0 40 h 2380 10766 4 +PQ +SE +ID 577 +TI 1760667399.774496555 +UH 0 64 h 2070 0 5 +BD GR Veto +PQ +SE +ID 578 +TI 1760667399.774506807 +UH 0 64 l 1696 0 5 +UH 0 64 h 1765 0 5 +BD GR Veto +PQ +SE +ID 579 +TI 1760667399.774521827 +UH 0 10 l 4400 9454 4 +UH 0 11 l 1727 9290 4 +UH 0 64 l 2684 0 5 +UH 0 63 h 3772 9898 4 +UH 0 64 h 3300 0 5 +BD GR Veto +PQ +SE +ID 580 +TI 1760667399.774569511 +UH 0 21 l 1625 5437 0 +UH 0 22 l 2153 10595 4 +UH 0 26 l 2524 10827 4 +UH 0 9 h 1927 11131 4 +UH 0 10 h 1906 11350 4 +UH 0 13 h 2551 11327 4 +PQ +SE +ID 581 +TI 1760667399.774640560 +UH 0 6 l 3449 10742 4 +UH 0 15 l 3623 10758 4 +UH 0 27 l 1637 1899 0 +UH 0 28 l 1658 2038 0 +UH 0 29 l 1688 2334 0 +UH 0 30 l 1689 2578 0 +UH 0 31 l 1799 2301 0 +UH 0 14 h 2664 11297 4 +UH 0 15 h 2394 11387 4 +UH 0 29 h 2529 10958 4 +UH 0 30 h 2442 11197 4 +UH 0 31 h 1659 10603 4 +PQ +SE +ID 582 +TI 1760667399.774747371 +UH 0 56 l 3392 11028 4 +UH 0 33 h 3291 10087 4 +UH 0 34 h 1656 10342 4 +PQ +SE +ID 583 +TI 1760667399.774785041 +UH 0 3 l 4041 9956 4 +UH 0 4 l 1681 10265 4 +UH 0 30 h 4209 11123 4 +PQ +SE +ID 584 +TI 1760667399.774822473 +UH 0 38 l 2210 10513 4 +UH 0 4 h 2343 11555 4 +PQ +SE +ID 585 +TI 1760667399.774854898 +UH 0 19 l 2509 11121 4 +UH 0 61 h 1673 4890 0 +UH 0 62 h 2168 10587 4 +UH 0 63 h 1842 10658 4 +PQ +SE +ID 586 +TI 1760667399.774893045 +UH 0 32 l 1822 4781 0 +UH 0 15 l 1763 5204 0 +UH 0 31 l 1882 11127 4 +UH 0 5 h 1709 4701 0 +UH 0 6 h 1721 11347 4 +UH 0 7 h 2014 11248 4 +PQ +SE +ID 587 +TI 1760667399.774953126 +UH 0 52 l 1944 10883 4 +UH 0 53 l 3947 10722 4 +UH 0 46 h 4342 10600 4 +PQ +SE +ID 588 +TI 1760667399.774997472 +UH 0 11 l 2407 10282 4 +UH 0 12 l 1711 4139 0 +UH 0 15 l 1755 4780 0 +UH 0 16 l 1784 11063 4 +UH 0 17 l 1588 4449 0 +UH 0 57 h 1758 10990 4 +UH 0 58 h 2350 10936 4 +UH 0 59 h 1753 10786 4 +UH 0 60 h 1578 3921 0 +PQ +SE +ID 589 +TI 1760667399.775073289 +UH 0 64 l 2019 0 5 +UH 0 64 h 2107 0 5 +BD GR Veto +PQ +SE +ID 590 +TI 1760667399.775087594 +UH 0 38 l 1656 10814 4 +UH 0 39 l 2644 10651 4 +UH 0 13 h 2783 11315 4 +UH 0 14 h 1651 11473 4 +PQ +SE +ID 591 +TI 1760667399.775132656 +UH 0 64 l 2142 0 5 +UH 0 64 h 3582 0 5 +BD GR Veto +PQ +SE +ID 592 +TI 1760667399.775146961 +UH 0 35 l 1905 10904 4 +UH 0 45 h 1917 11056 4 +PQ +SE +ID 593 +TI 1760667399.775179147 +UH 0 42 l 1610 8998 4 +UH 0 43 l 3719 8894 4 +UH 0 44 l 1933 8791 4 +UH 0 52 h 4369 9307 4 +PQ +SE +ID 594 +TI 1760667399.775211811 +UH 0 0 l 1945 11131 4 +UH 0 23 h 1965 10892 4 +PQ +SE +ID 595 +TI 1760667399.775226831 +UH 0 27 l 2123 11001 4 +UH 0 52 h 2153 10666 4 +PQ +SE +ID 596 +TI 1760667399.775244474 +UH 0 33 l 2595 10321 4 +UH 0 34 l 1840 10527 4 +UH 0 44 h 2163 10920 4 +UH 0 45 h 2356 11189 4 +PQ +SE +ID 597 +TI 1760667399.775267124 +UH 0 29 l 2126 10872 4 +UH 0 57 h 2120 11482 4 +PQ +SE +ID 598 +TI 1760667399.775284767 +UH 0 3 l 2499 10703 4 +UH 0 5 h 2557 11276 4 +PQ +SE +ID 599 +TI 1760667399.775301933 +UH 0 64 l 2872 0 5 +UH 0 64 h 2858 0 5 +BD GR Veto +PQ +SE +ID 600 +TI 1760667399.775308609 +UH 0 57 l 2198 10768 4 +UH 0 39 h 2363 10308 4 +PQ +SE +ID 601 +TI 1760667399.775326013 +UH 0 13 l 1861 11134 4 +UH 0 34 h 1796 11325 4 +PQ +SE +ID 602 +TI 1760667399.775343179 +UH 0 8 l 2016 10789 4 +UH 0 20 l 1738 4285 0 +UH 0 29 l 2704 10698 4 +UH 0 40 h 2685 10990 4 +UH 0 43 h 1661 4671 0 +UH 0 52 h 1976 11119 4 +PQ +SE +ID 603 +TI 1760667399.775389432 +UH 0 32 l 1859 5132 0 +UH 0 35 l 3395 10761 4 +UH 0 31 l 2602 11066 4 +UH 0 40 h 4828 10311 4 +UH 0 41 h 1652 10749 4 +PQ +SE +ID 604 +TI 1760667399.775418043 +UH 0 64 l 4936 0 5 +UH 0 64 h 4707 0 5 +BD GR Veto +PQ +SE +ID 605 +TI 1760667399.775426149 +UH 0 20 l 1794 4605 0 +UH 0 9 h 1738 11645 4 +PQ +SE +ID 606 +TI 1760667399.775442838 +UH 0 3 l 2648 10888 4 +UH 0 24 h 1994 10744 4 +UH 0 25 h 2165 10928 4 +PQ +SE +ID 607 +TI 1760667399.775462388 +UH 0 4 l 2091 11095 4 +UH 0 5 l 3622 10812 4 +UH 0 55 h 3775 10402 4 +UH 0 56 h 2111 10737 4 +PQ +SE +ID 608 +TI 1760667399.775484323 +UH 0 2 l 3611 10929 4 +UH 0 12 h 2285 10812 4 +UH 0 13 h 2826 10871 4 +PQ +SE +ID 609 +TI 1760667399.775504350 +UH 0 25 h 1514 5635 0 +PQ +SE +ID 610 +TI 1760667399.775515556 +UH 0 32 l 1927 11020 4 +UH 0 27 l 2672 10517 4 +UH 0 49 h 1871 10517 4 +UH 0 52 h 2719 10908 4 +PQ +SE +ID 611 +TI 1760667399.775547027 +UH 0 4 l 4226 10442 4 +UH 0 64 l 2383 0 5 +UH 0 3 h 4389 10895 4 +UH 0 64 h 2385 0 5 +BD GR Veto +PQ +SE +ID 612 +TI 1760667399.775569677 +UH 0 0 l 1612 5228 0 +UH 0 64 l 4438 0 5 +UH 0 64 h 4271 0 5 +BD GR Veto +PQ +SE +ID 613 +TI 1760667399.775582551 +UH 0 38 l 1973 10560 4 +UH 0 8 h 2100 11765 4 +PQ +SE +ID 614 +TI 1760667399.775600194 +UH 0 50 l 1603 9606 4 +UH 0 51 l 4743 9618 4 +UH 0 55 l 2150 9548 4 +UH 0 61 h 4913 9431 4 +UH 0 62 h 2363 9339 4 +PQ +SE +ID 615 +TI 1760667399.775629758 +UH 0 1 l 2137 11277 4 +UH 0 35 h 1976 11086 4 +UH 0 36 h 1740 4860 0 +PQ +SE +ID 616 +TI 1760667399.775649309 +UH 0 64 l 2262 0 5 +UH 0 64 h 2271 0 5 +BD GR Veto +PQ +SE +ID 617 +TI 1760667399.775656938 +UH 0 32 l 2106 10459 4 +UH 0 31 l 1839 10657 4 +UH 0 14 h 2440 11434 4 +PQ +SE +ID 618 +TI 1760667399.775677204 +UH 0 64 l 2460 0 5 +UH 0 64 h 2459 0 5 +BD GR Veto +PQ +SE +ID 619 +TI 1760667399.775684595 +UH 0 1 l 1978 11243 4 +UH 0 37 h 2015 11700 4 +PQ +SE +ID 620 +TI 1760667399.775701999 +UH 0 12 l 1943 10296 4 +UH 0 13 l 1775 5052 0 +UH 0 63 h 2152 11168 4 +PQ +SE +ID 621 +TI 1760667399.775718688 +UH 0 41 h 1597 5519 0 +PQ +SE +ID 622 +TI 1760667399.775728702 +UH 0 17 l 3692 10445 4 +UH 0 45 h 3654 11130 4 +PQ +SE +ID 623 +TI 1760667399.775745868 +UH 0 40 l 1655 4925 0 +UH 0 30 h 1749 5727 0 +PQ +SE +ID 624 +TI 1760667399.775763511 +UH 0 22 l 3617 10691 4 +UH 0 20 h 3643 10984 4 +PQ +SE +ID 625 +TI 1760667399.775780677 +UH 0 64 h 1913 0 5 +BD GR Veto +PQ +SE +ID 626 +TI 1760667399.775785923 +UH 0 64 l 4282 0 5 +UH 0 64 h 4171 0 5 +BD GR Veto +PQ +SE +ID 627 +TI 1760667399.775793075 +UH 0 42 l 1608 4466 0 +UH 0 43 l 1600 4623 0 +UH 0 11 h 1775 11773 4 +PQ +SE +ID 628 +TI 1760667399.775812625 +UH 0 64 l 4384 0 5 +UH 0 35 h 3084 10598 4 +UH 0 36 h 2835 10682 4 +BD GR Veto +PQ +SE +ID 629 +TI 1760667399.775826454 +UH 0 38 l 4120 9769 4 +UH 0 39 l 1668 9821 4 +UH 0 13 h 2734 10085 4 +UH 0 14 h 3145 10167 4 +UH 0 15 h 1611 10366 4 +PQ +SE +ID 630 +TI 1760667399.775850534 +UH 0 32 l 1648 8661 4 +UH 0 33 l 5091 8264 4 +UH 0 34 l 1603 8502 4 +UH 0 45 l 2213 8545 4 +UH 0 48 h 1796 9014 4 +UH 0 49 h 2048 8910 4 +UH 0 55 h 5324 8764 4 +PQ +SE +ID 631 +TI 1760667399.775887012 +UH 0 64 l 4480 0 5 +UH 0 64 h 4323 0 5 +BD GR Veto +PQ +SE +ID 632 +TI 1760667399.775895357 +UH 0 58 l 2285 10520 4 +UH 0 61 l 3431 10562 4 +UH 0 56 h 3446 10887 4 +UH 0 60 h 2335 10437 4 +PQ +SE +ID 633 +TI 1760667399.775928020 +UH 0 36 l 2357 10521 4 +UH 0 37 l 2431 10752 4 +UH 0 52 h 3180 11094 4 +UH 0 53 h 1735 11044 4 +PQ +SE +ID 634 +TI 1760667399.775950193 +UH 0 42 l 2502 11046 4 +UH 0 56 h 2515 11147 4 +PQ +SE +ID 635 +TI 1760667399.775967121 +UH 0 63 l 1621 5218 0 +UH 0 19 h 1583 5148 0 +UH 0 20 h 1654 4934 0 +PQ +SE +ID 636 +TI 1760667399.775984287 +UH 0 24 l 1936 4983 0 +UH 0 54 h 1857 11324 4 +PQ +SE +ID 637 +TI 1760667399.776001453 +UH 0 48 l 2412 10691 4 +UH 0 49 l 2106 10720 4 +UH 0 30 h 2097 11465 4 +UH 0 31 h 2669 10766 4 +UH 0 64 h 1661 0 5 +BD GR Veto +PQ +SE +ID 638 +TI 1760667399.776025772 +UH 0 64 h 1662 0 5 +BD GR Veto +PQ +SE +ID 639 +TI 1760667399.796590328 +UH 0 6 l 3056 10799 4 +UH 0 53 h 3120 11021 4 +PQ +SE +ID 640 +TI 1760667399.796669721 +UH 0 64 l 2054 0 5 +UH 0 64 h 3571 0 5 +BD GR Veto +PQ +SE +ID 641 +TI 1760667399.796686649 +UH 0 61 l 1776 4920 0 +UH 0 54 h 1703 5480 0 +PQ +SE +ID 642 +TI 1760667399.796720743 +UH 0 35 l 1667 2806 0 +UH 0 64 l 2596 0 5 +UH 0 5 h 1728 9429 4 +UH 0 64 h 2617 0 5 +BD GR Veto +PQ +SE +ID 643 +TI 1760667399.796765804 +UH 0 45 l 2098 10800 4 +UH 0 50 l 1842 10732 4 +UH 0 60 l 1909 10313 4 +UH 0 61 l 3139 10467 4 +UH 0 32 h 2142 10903 4 +UH 0 28 h 1928 10806 4 +UH 0 30 h 1831 11409 4 +UH 0 31 h 3234 10713 4 +PQ +SE +ID 644 +TI 1760667399.796851634 +UH 0 64 l 3247 0 5 +UH 0 64 h 3145 0 5 +BD GR Veto +PQ +SE +ID 645 +TI 1760667399.796867370 +UH 0 54 l 2669 10954 4 +UH 0 0 h 2733 10765 4 +UH 0 1 h 1668 10887 4 +PQ +SE +ID 646 +TI 1760667399.796902656 +UH 0 64 l 2107 0 5 +UH 0 64 h 2167 0 5 +BD GR Veto +PQ +SE +ID 647 +TI 1760667399.796917438 +UH 0 53 l 2335 10395 4 +UH 0 58 l 1842 10470 4 +UH 0 59 l 1684 5312 0 +UH 0 58 h 2074 10294 4 +UH 0 59 h 2404 10673 4 +PQ +SE +ID 648 +TI 1760667399.796976804 +UH 0 40 l 2507 10422 4 +UH 0 41 l 2041 10618 4 +UH 0 42 l 2519 10471 4 +UH 0 43 l 2658 10969 4 +UH 0 61 h 2574 10429 4 +UH 0 62 h 4453 10658 4 +UH 0 63 h 1742 10751 4 +PQ +SE +ID 649 +TI 1760667399.797022581 +UH 0 34 l 2795 8471 4 +UH 0 35 l 4184 8654 4 +UH 0 36 l 1609 8474 4 +UH 0 64 l 1657 0 5 +UH 0 0 h 4156 9434 4 +UH 0 1 h 3070 9414 4 +BD GR Veto +PQ +SE +ID 650 +TI 1760667399.797048807 +UH 0 52 l 3549 10807 4 +UH 0 25 l 1695 4874 0 +UH 0 26 l 2177 10964 4 +UH 0 34 h 2519 10179 4 +UH 0 35 h 2568 10306 4 +UH 0 22 h 2264 10691 4 +UH 0 23 h 1563 4233 0 +PQ +SE +ID 651 +TI 1760667399.797089576 +UH 0 24 l 3252 10411 4 +UH 0 26 l 1856 5064 0 +UH 0 24 h 3157 10989 4 +UH 0 25 h 1750 11262 4 +PQ +SE +ID 652 +TI 1760667399.797115325 +UH 0 64 l 3435 0 5 +UH 0 64 h 3729 0 5 +BD GR Veto +PQ +SE +ID 653 +TI 1760667399.797123670 +UH 0 18 l 1709 4602 0 +UH 0 23 l 2481 10175 4 +UH 0 24 l 1722 5352 0 +UH 0 52 h 2513 10670 4 +UH 0 57 h 1720 10484 4 +PQ +SE +ID 654 +TI 1760667399.797158002 +UH 0 40 l 1613 5028 0 +UH 0 41 l 1784 10726 4 +UH 0 12 h 1975 11360 4 +PQ +SE +ID 655 +TI 1760667399.797181129 +UH 0 64 l 2032 0 5 +UH 0 64 h 2086 0 5 +BD GR Veto +PQ +SE +ID 656 +TI 1760667399.797188758 +UH 0 6 l 3157 11000 4 +UH 0 7 l 2794 10808 4 +UH 0 51 h 2859 10697 4 +UH 0 52 h 3086 10733 4 +PQ +SE +ID 657 +TI 1760667399.797211170 +UH 0 18 l 1628 4714 0 +UH 0 19 l 2324 10929 4 +UH 0 48 h 2454 11072 4 +PQ +SE +ID 658 +TI 1760667399.797230958 +UH 0 64 l 1743 0 5 +UH 0 64 h 1790 0 5 +BD GR Veto +PQ +SE +ID 659 +TI 1760667399.797238349 +UH 0 19 l 2595 10914 4 +UH 0 20 l 1765 10699 4 +UH 0 10 h 2720 11507 4 +PQ +SE +ID 660 +TI 1760667399.797258377 +UH 0 13 l 3005 10897 4 +UH 0 14 l 1904 10949 4 +UH 0 17 l 2857 10791 4 +UH 0 18 l 1631 4552 0 +UH 0 10 h 2954 11316 4 +UH 0 11 h 1930 11287 4 +UH 0 15 h 2998 11265 4 +UH 0 20 h 1672 4975 0 +PQ +SE +ID 661 +TI 1760667399.797306299 +UH 0 38 l 4196 9378 4 +UH 0 47 l 1691 3292 0 +UH 0 48 l 1558 2752 0 +UH 0 33 h 1830 9039 4 +UH 0 29 h 1576 9518 4 +UH 0 30 h 4238 9615 4 +UH 0 31 h 1571 9087 4 +PQ +SE +ID 662 +TI 1760667399.797343969 +UH 0 37 l 4281 10791 4 +UH 0 28 l 1903 10722 4 +UH 0 29 l 2293 10427 4 +UH 0 31 l 1653 4875 0 +UH 0 42 h 4224 10584 4 +UH 0 43 h 2776 10768 4 +UH 0 44 h 1719 10707 4 +PQ +SE +ID 663 +TI 1760667399.797381639 +UH 0 64 l 1888 0 5 +UH 0 64 h 1972 0 5 +BD GR Veto +PQ +SE +ID 664 +TI 1760667399.797389745 +UH 0 64 l 1981 0 5 +UH 0 64 h 2041 0 5 +BD GR Veto +PQ +SE +ID 665 +TI 1760667399.797396898 +UH 0 30 l 2266 11150 4 +UH 0 25 h 2225 11358 4 +PQ +SE +ID 666 +TI 1760667399.797414541 +UH 0 45 l 1674 5248 0 +UH 0 4 h 1804 5536 0 +PQ +SE +ID 667 +TI 1760667399.797432661 +UH 0 36 l 3703 9129 4 +UH 0 50 l 1582 3632 0 +UH 0 57 l 1967 9376 4 +UH 0 21 h 1573 9912 4 +UH 0 22 h 3725 9520 4 +UH 0 25 h 2042 9639 4 +PQ +SE +ID 668 +TI 1760667399.797474622 +UH 0 13 l 1879 11375 4 +UH 0 16 h 1666 5458 0 +UH 0 17 h 1691 11268 4 +PQ +SE +ID 669 +TI 1760667399.797495603 +UH 0 36 l 4310 10483 4 +UH 0 8 l 1775 4446 0 +UH 0 64 l 2162 0 5 +UH 0 57 h 3290 10419 4 +UH 0 58 h 2484 10082 4 +UH 0 63 h 1724 10534 4 +UH 0 64 h 2204 0 5 +BD GR Veto +PQ +SE +ID 670 +TI 1760667399.797534227 +UH 0 12 l 2223 10465 4 +UH 0 13 l 2614 10971 4 +UH 0 17 l 1601 3730 0 +UH 0 18 l 2424 10236 4 +UH 0 19 l 1670 4902 0 +UH 0 18 h 2602 11086 4 +UH 0 21 h 1603 4388 0 +UH 0 27 h 3198 10788 4 +PQ +SE +ID 671 +TI 1760667399.797581195 +UH 0 57 l 1537 5241 0 +UH 0 58 l 1862 8392 4 +UH 0 59 l 3949 8500 4 +UH 0 60 l 1575 8387 4 +UH 0 16 h 2150 9479 4 +UH 0 17 h 3609 9271 4 +PQ +SE +ID 672 +TI 1760667399.797608375 +UH 0 45 l 1923 10870 4 +UH 0 54 h 1958 10586 4 +PQ +SE +ID 673 +TI 1760667399.797627210 +UH 0 39 l 2118 10690 4 +UH 0 2 h 2112 11576 4 +UH 0 3 h 1654 5090 0 +PQ +SE +ID 674 +TI 1760667399.797648191 +UH 0 46 l 1891 10532 4 +UH 0 47 l 2644 10556 4 +UH 0 63 l 1611 1366 0 +UH 0 14 h 2062 11406 4 +UH 0 15 h 2773 11429 4 +PQ +SE +ID 675 +TI 1760667399.797675848 +UH 0 44 l 2009 10895 4 +UH 0 5 h 2088 11274 4 +UH 0 6 h 1603 5411 0 +PQ +SE +ID 676 +TI 1760667399.797696352 +UH 0 35 l 5046 10444 4 +UH 0 36 l 1738 10258 4 +UH 0 64 l 1875 0 5 +UH 0 63 h 4125 10404 4 +UH 0 64 h 3021 0 5 +BD GR Veto +PQ +SE +ID 677 +TI 1760667399.797721624 +UH 0 64 h 1668 0 5 +BD GR Veto +PQ +SE +ID 678 +TI 1760667399.797729492 +UH 0 23 l 2904 10864 4 +UH 0 5 h 2031 11295 4 +UH 0 6 h 2307 11284 4 +PQ +SE +ID 679 +TI 1760667399.797753810 +UH 0 49 l 2482 10441 4 +UH 0 50 l 2521 10307 4 +UH 0 52 l 1855 4997 0 +UH 0 53 l 1942 4870 0 +UH 0 54 l 1629 5548 0 +UH 0 55 l 2515 10318 4 +UH 0 49 h 3666 10665 4 +UH 0 51 h 1805 4605 0 +UH 0 53 h 2048 10668 4 +UH 0 54 h 2607 10836 4 +PQ +SE +ID 680 +TI 1760667399.797810316 +UH 0 61 l 2571 10547 4 +UH 0 56 h 2537 11138 4 +UH 0 57 h 1604 5102 0 +PQ +SE +ID 681 +TI 1760667399.797833204 +UH 0 64 l 2702 0 5 +UH 0 64 h 2729 0 5 +BD GR Veto +PQ +SE +ID 682 +TI 1760667399.797842502 +UH 0 64 l 3972 0 5 +UH 0 64 h 3863 0 5 +BD GR Veto +PQ +SE +ID 683 +TI 1760667399.797851324 +UH 0 33 l 1713 3238 0 +UH 0 34 l 3879 8447 4 +UH 0 35 l 1562 8741 4 +UH 0 25 h 4027 9356 4 +PQ +SE +ID 684 +TI 1760667399.797873973 +UH 0 20 l 2401 10731 4 +UH 0 6 h 2343 10906 4 +PQ +SE +ID 685 +TI 1760667399.797891378 +UH 0 47 l 2036 10586 4 +UH 0 2 h 2195 11443 4 +PQ +SE +ID 686 +TI 1760667399.797908782 +UH 0 16 l 2111 11027 4 +UH 0 17 l 1625 4586 0 +UH 0 64 l 2042 0 5 +UH 0 63 h 2303 10614 4 +UH 0 64 h 2118 0 5 +BD GR Veto +PQ +SE +ID 687 +TI 1760667399.797930479 +UH 0 51 l 2159 10609 4 +UH 0 52 l 1704 4993 0 +UH 0 19 h 2283 11461 4 +PQ +SE +ID 688 +TI 1760667399.797950506 +UH 0 38 l 2155 10974 4 +UH 0 52 h 2161 11146 4 +UH 0 53 h 1625 4473 0 +PQ +SE +ID 689 +TI 1760667399.797971725 +UH 0 64 l 2133 0 5 +UH 0 44 h 2147 10767 4 +BD GR Veto +PQ +SE +ID 690 +TI 1760667399.797983884 +UH 0 64 l 1859 0 5 +UH 0 64 h 1916 0 5 +BD GR Veto +PQ +SE +ID 691 +TI 1760667399.797992229 +UH 0 33 l 3314 10270 4 +UH 0 34 l 1790 10567 4 +UH 0 38 l 2354 10865 4 +UH 0 25 h 1669 5112 0 +UH 0 26 h 2243 11282 4 +UH 0 27 h 1840 11189 4 +UH 0 28 h 2847 10958 4 +UH 0 29 h 2092 11195 4 +PQ +SE +ID 692 +TI 1760667399.798028707 +UH 0 64 l 2025 0 5 +UH 0 64 h 2096 0 5 +BD GR Veto +PQ +SE +ID 693 +TI 1760667399.798036813 +UH 0 12 l 2425 10514 4 +UH 0 15 h 2383 11490 4 +PQ +SE +ID 694 +TI 1760667399.798053026 +UH 0 39 l 2548 10656 4 +UH 0 55 h 2705 10865 4 +PQ +SE +ID 695 +TI 1760667399.798070430 +UH 0 64 l 4435 0 5 +UH 0 64 h 4294 0 5 +BD GR Veto +PQ +SE +ID 696 +TI 1760667399.798078536 +UH 0 2 l 1874 10875 4 +UH 0 36 h 1898 11311 4 +PQ +SE +ID 697 +TI 1760667399.798096179 +UH 0 41 l 2009 11036 4 +UH 0 42 l 2621 10993 4 +UH 0 22 h 3302 10900 4 +PQ +SE +ID 698 +TI 1760667399.798116683 +UH 0 46 l 1532 4526 0 +UH 0 47 l 1593 5216 0 +UH 0 60 h 1742 5148 0 +PQ +SE +ID 699 +TI 1760667399.798136949 +UH 0 13 l 4287 10796 4 +UH 0 36 h 4354 11025 4 +PQ +SE +ID 700 +TI 1760667399.798154830 +UH 0 18 l 3157 10723 4 +UH 0 9 h 3193 10983 4 +PQ +SE +ID 701 +TI 1760667399.798171997 +UH 0 13 l 1826 11291 4 +UH 0 15 l 2245 10954 4 +UH 0 22 l 1822 4882 0 +UH 0 31 l 1625 2311 0 +UH 0 50 h 1709 4668 0 +UH 0 51 h 1689 5292 0 +UH 0 22 h 2262 11026 4 +UH 0 23 h 1785 5071 0 +PQ +SE +ID 702 +TI 1760667399.798217773 +UH 0 5 h 1589 5489 0 +PQ +SE +ID 703 +TI 1760667399.817301511 +UH 0 50 l 2635 10406 4 +UH 0 4 h 2762 11487 4 +PQ +SE +ID 704 +TI 1760667399.817352771 +UH 0 40 l 1717 4958 0 +UH 0 22 l 1828 4988 0 +UH 0 27 l 1652 4694 0 +UH 0 34 h 1731 11101 4 +UH 0 37 h 1891 11636 4 +UH 0 41 h 1623 4571 0 +PQ +SE +ID 705 +TI 1760667399.817406177 +UH 0 41 l 1729 10712 4 +UH 0 56 l 3461 10766 4 +UH 0 64 l 2097 0 5 +UH 0 57 h 3593 11184 4 +UH 0 63 h 1880 11006 4 +UH 0 64 h 2158 0 5 +BD GR Veto +PQ +SE +ID 706 +TI 1760667399.817442655 +UH 0 19 l 2065 10784 4 +UH 0 16 h 2042 11572 4 +PQ +SE +ID 707 +TI 1760667399.817460775 +UH 0 47 l 1588 5333 0 +UH 0 47 h 1714 4802 0 +PQ +SE +ID 708 +TI 1760667399.817476749 +UH 0 6 l 1591 8536 4 +UH 0 7 l 4613 8307 4 +UH 0 8 l 2534 8376 4 +UH 0 3 h 2199 8762 4 +UH 0 4 h 3246 9083 4 +UH 0 5 h 2680 8932 4 +UH 0 6 h 1839 8993 4 +UH 0 7 h 1912 8960 4 +PQ +SE +ID 709 +TI 1760667399.817510128 +UH 0 64 l 1953 0 5 +UH 0 64 h 2007 0 5 +BD GR Veto +PQ +SE +ID 710 +TI 1760667399.817519426 +UH 0 22 l 2649 10255 4 +UH 0 29 h 2675 11149 4 +PQ +SE +ID 711 +TI 1760667399.817537784 +UH 0 63 l 2251 10739 4 +UH 0 8 h 2392 11708 4 +PQ +SE +ID 712 +TI 1760667399.817553758 +UH 0 40 l 1522 5311 0 +UH 0 20 h 1619 5323 0 +PQ +SE +ID 713 +TI 1760667399.817571640 +UH 0 30 l 1740 5090 0 +UH 0 51 h 1686 5467 0 +PQ +SE +ID 714 +TI 1760667399.817589759 +UH 0 23 l 2500 10506 4 +UH 0 24 l 3281 10641 4 +UH 0 53 h 2286 10366 4 +UH 0 54 h 3238 10431 4 +UH 0 55 h 1712 10172 4 +PQ +SE +ID 715 +TI 1760667399.817615032 +UH 0 6 l 3100 10359 4 +UH 0 15 l 2753 9905 4 +UH 0 16 l 1800 10150 4 +UH 0 29 l 1721 1524 0 +UH 0 30 l 1693 1571 0 +UH 0 31 l 1682 2641 0 +UH 0 36 h 1644 10566 4 +UH 0 37 h 4561 10554 4 +UH 0 38 h 1649 10512 4 +PQ +SE +ID 716 +TI 1760667399.817665576 +UH 0 34 l 3759 10553 4 +UH 0 29 l 2513 10687 4 +UH 0 31 l 2348 10927 4 +UH 0 12 h 2193 10580 4 +UH 0 13 h 3832 10632 4 +UH 0 14 h 1667 10833 4 +UH 0 15 h 2223 10895 4 +UH 0 16 h 1833 10913 4 +PQ +SE +ID 717 +TI 1760667399.817704677 +UH 0 42 l 4132 9272 4 +UH 0 52 l 2948 8897 4 +UH 0 8 h 1593 9727 4 +UH 0 9 h 2986 9270 4 +UH 0 10 h 1606 9617 4 +UH 0 11 h 4169 9122 4 +PQ +SE +ID 718 +TI 1760667399.817738056 +UH 0 64 l 3559 0 5 +UH 0 64 h 3878 0 5 +BD GR Veto +PQ +SE +ID 719 +TI 1760667399.817746162 +UH 0 22 l 2017 10686 4 +UH 0 3 h 2084 11128 4 +PQ +SE +ID 720 +TI 1760667399.817763805 +UH 0 18 l 2311 10410 4 +UH 0 18 h 1821 11353 4 +UH 0 19 h 2036 11583 4 +PQ +SE +ID 721 +TI 1760667399.817783832 +UH 0 12 l 3388 9834 4 +UH 0 5 h 1585 10274 4 +UH 0 6 h 3272 10159 4 +PQ +SE +ID 722 +TI 1760667399.817803621 +UH 0 40 l 1873 10458 4 +UH 0 41 l 1991 10606 4 +UH 0 30 h 2545 11450 4 +PQ +SE +ID 723 +TI 1760667399.817824363 +UH 0 30 l 1915 11486 4 +UH 0 36 h 1976 11099 4 +PQ +SE +ID 724 +TI 1760667399.817841291 +UH 0 64 l 2138 0 5 +UH 0 11 h 1875 11023 4 +UH 0 64 h 2379 0 5 +BD GR Veto +PQ +SE +ID 725 +TI 1760667399.817856788 +UH 0 40 l 4119 10792 4 +UH 0 58 l 1566 5105 0 +UH 0 59 l 2824 10260 4 +UH 0 54 h 4146 10488 4 +UH 0 57 h 2947 10889 4 +PQ +SE +ID 726 +TI 1760667399.817891359 +UH 0 2 l 2551 10927 4 +UH 0 3 l 1675 10888 4 +UH 0 47 h 2713 10454 4 +PQ +SE +ID 727 +TI 1760667399.817911863 +UH 0 11 l 1720 5120 0 +UH 0 20 h 1623 5252 0 +PQ +SE +ID 728 +TI 1760667399.817928552 +UH 0 64 l 2177 0 5 +UH 0 64 h 2184 0 5 +BD GR Veto +PQ +SE +ID 729 +TI 1760667399.817936658 +UH 0 45 l 2497 10632 4 +UH 0 5 h 2474 11304 4 +UH 0 6 h 1639 11382 4 +PQ +SE +ID 730 +TI 1760667399.817956686 +UH 0 40 l 2562 10784 4 +UH 0 41 l 3164 10934 4 +UH 0 42 h 3447 10431 4 +UH 0 43 h 2505 10707 4 +PQ +SE +ID 731 +TI 1760667399.817978858 +UH 0 64 l 2953 0 5 +UH 0 64 h 2957 0 5 +BD GR Veto +PQ +SE +ID 732 +TI 1760667399.817986965 +UH 0 51 l 2215 10825 4 +UH 0 53 h 1584 4726 0 +UH 0 54 h 2116 11185 4 +PQ +SE +ID 733 +TI 1760667399.818006992 +UH 0 38 l 1595 4880 0 +UH 0 32 h 1584 5346 0 +PQ +SE +ID 734 +TI 1760667399.818025112 +UH 0 49 l 3769 8672 4 +UH 0 50 l 1582 8692 4 +UH 0 61 l 2059 8794 4 +UH 0 62 l 1664 2860 0 +UH 0 41 h 3953 8854 4 +UH 0 52 h 2081 8464 4 +PQ +SE +ID 735 +TI 1760667399.818062067 +UH 0 3 l 2208 10514 4 +UH 0 4 l 3487 10623 4 +UH 0 56 h 4243 11052 4 +PQ +SE +ID 736 +TI 1760667399.818082332 +UH 0 61 l 1903 10456 4 +UH 0 62 l 1984 10588 4 +UH 0 8 h 2310 11637 4 +PQ +SE +ID 737 +TI 1760667399.818103551 +UH 0 14 l 2819 10345 4 +UH 0 15 l 2850 10244 4 +UH 0 17 l 1633 4546 0 +UH 0 27 l 1633 2067 0 +UH 0 29 l 1728 1523 0 +UH 0 30 l 1627 2136 0 +UH 0 31 l 1696 2499 0 +UH 0 8 h 1663 4648 0 +UH 0 11 h 4134 11174 4 +PQ +SE +ID 738 +TI 1760667399.818149328 +UH 0 4 l 2715 11018 4 +UH 0 46 h 2705 10410 4 +PQ +SE +ID 739 +TI 1760667399.818166494 +UH 0 16 l 4220 10889 4 +UH 0 18 l 2385 10753 4 +UH 0 19 l 2005 10871 4 +UH 0 41 h 3823 10606 4 +UH 0 25 h 1521 5009 0 +UH 0 26 h 2231 11128 4 +UH 0 27 h 1850 11124 4 +UH 0 28 h 2432 10855 4 +PQ +SE +ID 740 +TI 1760667399.818206548 +UH 0 64 h 1674 0 5 +BD GR Veto +PQ +SE +ID 741 +TI 1760667399.818212032 +UH 0 32 l 2254 10558 4 +UH 0 31 h 2252 10931 4 +PQ +SE +ID 742 +TI 1760667399.818229913 +UH 0 1 l 3448 10715 4 +UH 0 8 l 1921 4727 0 +UH 0 17 l 3319 10374 4 +UH 0 54 h 5247 10980 4 +UH 0 55 h 2006 10684 4 +PQ +SE +ID 743 +TI 1760667399.818263769 +UH 0 60 l 4252 10414 4 +UH 0 58 h 2387 10100 4 +UH 0 59 h 3340 10216 4 +PQ +SE +ID 744 +TI 1760667399.818283319 +UH 0 48 l 2091 8783 4 +UH 0 49 l 2509 8734 4 +UH 0 50 l 1573 5099 0 +UH 0 52 l 1649 8849 4 +UH 0 53 l 3795 8683 4 +UH 0 54 l 1527 5554 0 +UH 0 49 h 3280 9077 4 +UH 0 55 h 4026 8866 4 +PQ +SE +ID 745 +TI 1760667399.818321704 +UH 0 64 l 1822 0 5 +UH 0 64 h 1798 0 5 +BD GR Veto +PQ +SE +ID 746 +TI 1760667399.818330287 +UH 0 47 l 3132 10760 4 +UH 0 61 l 1659 2745 0 +UH 0 62 l 1631 2005 0 +UH 0 63 l 1582 2079 0 +UH 0 31 h 3243 10319 4 +PQ +SE +ID 747 +TI 1760667399.818357467 +UH 0 64 l 5697 0 5 +UH 0 64 h 5435 0 5 +BD GR Veto +PQ +SE +ID 748 +TI 1760667399.818364858 +UH 0 64 l 1674 0 5 +UH 0 64 h 2016 0 5 +BD GR Veto +PQ +SE +ID 749 +TI 1760667399.818373203 +UH 0 54 l 2108 10958 4 +UH 0 59 l 1589 5127 0 +UH 0 60 l 2239 10426 4 +UH 0 61 l 1677 4457 0 +UH 0 22 h 1846 10954 4 +UH 0 23 h 1968 10968 4 +UH 0 28 h 1648 4639 0 +UH 0 31 h 2330 10630 4 +PQ +SE +ID 750 +TI 1760667399.818418502 +UH 0 59 l 1741 10682 4 +UH 0 6 h 1565 5470 0 +UH 0 7 h 1766 11078 4 +PQ +SE +ID 751 +TI 1760667399.818438291 +UH 0 10 l 2596 10696 4 +UH 0 11 l 2217 10399 4 +UH 0 24 h 2525 11041 4 +UH 0 28 h 2180 10976 4 +PQ +SE +ID 752 +TI 1760667399.818466663 +UH 0 53 l 1630 4562 0 +UH 0 54 l 1669 5418 0 +UH 0 64 l 1748 0 5 +UH 0 64 h 2080 0 5 +BD GR Veto +PQ +SE +ID 753 +TI 1760667399.818483829 +UH 0 22 l 1748 4949 0 +UH 0 39 h 1788 5242 0 +PQ +SE +ID 754 +TI 1760667399.818501472 +UH 0 19 l 2398 11016 4 +UH 0 20 l 2016 10804 4 +UH 0 52 h 1950 10584 4 +UH 0 54 h 2355 10799 4 +PQ +SE +ID 755 +TI 1760667399.818526268 +UH 0 40 l 1984 10722 4 +UH 0 41 l 2220 10934 4 +UH 0 42 l 1654 4536 0 +UH 0 53 h 1831 11016 4 +UH 0 54 h 2113 11128 4 +UH 0 62 h 2162 11000 4 +PQ +SE +ID 756 +TI 1760667399.818561553 +UH 0 32 l 2097 10848 4 +UH 0 33 l 2840 10443 4 +UH 0 7 h 2640 10959 4 +UH 0 8 h 2427 11382 4 +PQ +SE +ID 757 +TI 1760667399.818597555 +UH 0 10 l 1844 11197 4 +UH 0 40 h 1758 5197 0 +PQ +SE +ID 758 +TI 1760667399.818615913 +UH 0 44 l 1716 10904 4 +UH 0 46 l 2097 10620 4 +UH 0 47 l 2089 10851 4 +UH 0 63 l 1526 2667 0 +UH 0 49 h 2220 10640 4 +UH 0 50 h 1683 3984 0 +UH 0 51 h 1640 4729 0 +UH 0 57 h 2169 10755 4 +PQ +SE +ID 759 +TI 1760667399.818659543 +UH 0 34 l 1580 8803 4 +UH 0 35 l 1621 8826 4 +UH 0 36 l 5530 8429 4 +UH 0 37 l 1613 8851 4 +UH 0 24 h 1554 9254 4 +UH 0 25 h 5397 9379 4 +PQ +SE +ID 760 +TI 1760667399.818687200 +UH 0 64 l 2226 0 5 +UH 0 64 h 2245 0 5 +BD GR Veto +PQ +SE +ID 761 +TI 1760667399.818694829 +UH 0 29 l 1659 5360 0 +PQ +SE +ID 762 +TI 1760667399.818706035 +UH 0 6 l 1601 4549 0 +UH 0 28 h 1667 5394 0 +PQ +SE +ID 763 +TI 1760667399.818723440 +UH 0 56 l 1772 5314 0 +UH 0 57 l 1561 4723 0 +UH 0 4 h 1960 11665 4 +PQ +SE +ID 764 +TI 1760667399.818747997 +UH 0 17 l 2022 10626 4 +UH 0 20 l 2032 10751 4 +UH 0 22 l 2348 10722 4 +UH 0 33 h 2010 10409 4 +UH 0 50 h 2038 10618 4 +UH 0 51 h 2280 10659 4 +PQ +SE +ID 765 +TI 1760667399.818786382 +UH 0 42 l 2792 9262 4 +UH 0 43 l 1546 9355 4 +UH 0 46 l 4112 9252 4 +UH 0 0 h 2219 9386 4 +UH 0 1 h 2303 9335 4 +UH 0 4 h 2504 9350 4 +UH 0 5 h 3234 9155 4 +UH 0 64 h 1675 0 5 +BD GR Veto +PQ +SE +ID 766 +TI 1760667399.818824768 +UH 0 7 l 4165 10867 4 +UH 0 2 h 1749 11023 4 +UH 0 3 h 4068 10604 4 +PQ +SE +ID 767 +TI 1760667399.837817907 +UH 0 58 l 1535 8131 0 +UH 0 59 l 1790 10660 4 +UH 0 60 l 1849 10360 4 +UH 0 33 h 2169 10326 4 +PQ +SE +ID 768 +TI 1760667399.837869644 +UH 0 18 l 1675 10814 4 +UH 0 19 l 2600 11032 4 +UH 0 43 h 2702 10851 4 +PQ +SE +ID 769 +TI 1760667399.837891101 +UH 0 22 l 3183 10819 4 +UH 0 33 h 3131 10613 4 +PQ +SE +ID 770 +TI 1760667399.837910175 +UH 0 48 l 2374 10674 4 +UH 0 49 l 1774 10637 4 +UH 0 52 l 4296 10761 4 +UH 0 32 h 1671 3969 0 +UH 0 40 h 1862 10397 4 +UH 0 44 h 4040 10155 4 +UH 0 45 h 1823 10508 4 +UH 0 29 h 2279 10884 4 +PQ +SE +ID 771 +TI 1760667399.837968826 +UH 0 16 l 2365 10642 4 +UH 0 17 l 1965 10591 4 +UH 0 60 h 2865 10731 4 +PQ +SE +ID 772 +TI 1760667399.837989568 +UH 0 64 l 2603 0 5 +UH 0 64 h 2593 0 5 +BD GR Veto +PQ +SE +ID 773 +TI 1760667399.837998390 +UH 0 33 l 1656 4606 0 +UH 0 34 l 1657 4669 0 +UH 0 21 h 1804 11644 4 +PQ +SE +ID 774 +TI 1760667399.838019371 +UH 0 50 l 1733 5391 0 +UH 0 54 h 1730 11517 4 +PQ +SE +ID 775 +TI 1760667399.838037014 +UH 0 30 l 2306 11263 4 +UH 0 31 l 2781 11155 4 +UH 0 9 h 2710 10974 4 +UH 0 10 h 2405 11236 4 +PQ +SE +ID 776 +TI 1760667399.838059425 +UH 0 64 l 1699 0 5 +UH 0 64 h 2427 0 5 +BD GR Veto +PQ +SE +ID 777 +TI 1760667399.838068008 +UH 0 9 l 1660 3724 0 +UH 0 13 l 1609 10157 4 +UH 0 14 l 2958 9966 4 +UH 0 1 h 1755 10811 4 +UH 0 2 h 2917 10769 4 +UH 0 6 h 1610 4542 0 +PQ +SE +ID 778 +TI 1760667399.838105678 +UH 0 47 l 1667 2740 0 +UH 0 48 l 2114 8369 4 +UH 0 49 l 3281 8310 4 +UH 0 50 l 1580 8374 4 +UH 0 54 l 2476 8442 4 +UH 0 7 h 1657 2482 0 +UH 0 8 h 2480 9096 4 +UH 0 10 h 3365 9029 4 +UH 0 11 h 2446 8910 4 +PQ +SE +ID 779 +TI 1760667399.838147878 +UH 0 54 l 2073 11077 4 +UH 0 55 l 1654 5373 0 +UH 0 2 h 2063 11075 4 +UH 0 3 h 1904 10776 4 +PQ +SE +ID 780 +TI 1760667399.838170051 +UH 0 2 l 4444 8716 4 +UH 0 3 l 1581 8721 4 +UH 0 64 l 1640 0 5 +UH 0 6 h 1857 9558 4 +UH 0 7 h 4216 9434 4 +BD GR Veto +PQ +SE +ID 781 +TI 1760667399.838194847 +UH 0 7 l 1650 4864 0 +UH 0 42 h 1688 5164 0 +PQ +SE +ID 782 +TI 1760667399.838214874 +UH 0 19 l 1918 11172 4 +UH 0 29 h 1878 11360 4 +PQ +SE +ID 783 +TI 1760667399.838232040 +UH 0 20 l 2246 10641 4 +UH 0 25 l 3296 11103 4 +UH 0 26 l 1852 11385 4 +UH 0 53 h 3122 10924 4 +UH 0 54 h 1908 11129 4 +UH 0 55 h 2220 10683 4 +PQ +SE +ID 784 +TI 1760667399.838269710 +UH 0 10 l 1955 11112 4 +UH 0 54 h 1885 11012 4 +PQ +SE +ID 785 +TI 1760667399.838287115 +UH 0 43 l 2354 10633 4 +UH 0 46 l 1856 10673 4 +UH 0 47 l 2235 10713 4 +UH 0 63 l 1524 2376 0 +UH 0 7 h 2840 11199 4 +UH 0 26 h 2455 11508 4 +PQ +SE +ID 786 +TI 1760667399.838325500 +UH 0 13 l 4202 9776 4 +UH 0 12 h 1540 10348 4 +UH 0 13 h 4184 10318 4 +PQ +SE +ID 787 +TI 1760667399.838345527 +UH 0 26 l 3152 10506 4 +UH 0 27 l 1723 10138 4 +UH 0 29 h 3184 10992 4 +PQ +SE +ID 788 +TI 1760667399.838366031 +UH 0 59 l 2811 10684 4 +UH 0 48 h 2880 10388 4 +PQ +SE +ID 789 +TI 1760667399.838383913 +UH 0 24 l 2092 10530 4 +UH 0 30 h 1988 11570 4 +PQ +SE +ID 790 +TI 1760667399.838401317 +UH 0 64 l 4022 0 5 +UH 0 14 h 3909 11269 4 +UH 0 15 h 1615 11429 4 +BD GR Veto +PQ +SE +ID 791 +TI 1760667399.838416576 +UH 0 4 l 2119 10951 4 +UH 0 5 l 2130 10760 4 +UH 0 60 h 1982 10818 4 +UH 0 61 h 2181 11278 4 +PQ +SE +ID 792 +TI 1760667399.838438749 +UH 0 28 l 2181 10875 4 +UH 0 17 h 1633 5175 0 +UH 0 18 h 2003 11413 4 +PQ +SE +ID 793 +TI 1760667399.838460206 +UH 0 38 l 3509 10841 4 +UH 0 8 h 1768 11267 4 +UH 0 9 h 3391 10840 4 +PQ +SE +ID 794 +TI 1760667399.838479280 +UH 0 25 l 1715 5478 0 +UH 0 26 l 2513 11138 4 +UH 0 10 h 1861 11530 4 +UH 0 11 h 2273 11368 4 +PQ +SE +ID 795 +TI 1760667399.838501214 +UH 0 17 l 1708 5107 0 +UH 0 64 l 2431 0 5 +UH 0 54 h 1563 4718 0 +UH 0 55 h 1760 4172 0 +UH 0 64 h 2462 0 5 +BD GR Veto +PQ +SE +ID 796 +TI 1760667399.838524580 +UH 0 46 l 1949 10531 4 +UH 0 13 h 2063 11491 4 +PQ +SE +ID 797 +TI 1760667399.838542938 +UH 0 55 l 2648 10776 4 +UH 0 2 h 2823 11280 4 +PQ +SE +ID 798 +TI 1760667399.838560342 +UH 0 41 l 2886 10786 4 +UH 0 25 h 2218 11340 4 +UH 0 26 h 2261 11478 4 +PQ +SE +ID 799 +TI 1760667399.838580369 +UH 0 22 l 2558 10938 4 +UH 0 5 h 2461 10916 4 +UH 0 6 h 1592 4635 0 +PQ +SE +ID 800 +TI 1760667399.838600873 +UH 0 53 l 2674 8477 4 +UH 0 54 l 1539 9000 4 +UH 0 55 l 4348 8706 4 +UH 0 56 l 1545 8963 4 +UH 0 18 h 1814 8624 4 +UH 0 19 h 4078 9032 4 +UH 0 20 h 2737 8697 4 +PQ +SE +ID 801 +TI 1760667399.838630437 +UH 0 6 l 3935 10981 4 +UH 0 50 h 4011 10662 4 +PQ +SE +ID 802 +TI 1760667399.838648796 +UH 0 17 l 2973 10276 4 +UH 0 18 l 1758 10272 4 +UH 0 2 h 3349 11291 4 +PQ +SE +ID 803 +TI 1760667399.838668346 +UH 0 31 l 3692 11070 4 +UH 0 5 h 3372 11326 4 +UH 0 6 h 1824 11190 4 +PQ +SE +ID 804 +TI 1760667399.838686943 +UH 0 49 l 2824 10751 4 +UH 0 50 l 1805 10734 4 +UH 0 51 h 3154 10658 4 +PQ +SE +ID 805 +TI 1760667399.838707447 +UH 0 61 l 2403 10826 4 +UH 0 54 h 1927 10728 4 +UH 0 55 h 2030 10344 4 +PQ +SE +ID 806 +TI 1760667399.838727951 +UH 0 33 l 3777 10074 4 +UH 0 1 h 3882 11202 4 +PQ +SE +ID 807 +TI 1760667399.838745832 +UH 0 58 l 1559 8541 4 +UH 0 59 l 5567 8627 4 +UH 0 60 l 1611 8478 4 +UH 0 12 h 1955 8956 4 +UH 0 13 h 5161 8949 4 +UH 0 14 h 1588 9163 4 +PQ +SE +ID 808 +TI 1760667399.838774204 +UH 0 1 l 2567 11183 4 +UH 0 22 l 2262 10530 4 +UH 0 50 h 2595 10490 4 +UH 0 52 h 2243 10942 4 +PQ +SE +ID 809 +TI 1760667399.838803529 +UH 0 36 l 1609 5134 0 +UH 0 37 l 2628 9930 4 +UH 0 24 h 2648 10256 4 +PQ +SE +ID 810 +TI 1760667399.838822841 +UH 0 45 l 1539 5013 0 +UH 0 46 l 2233 8498 4 +UH 0 47 l 2254 8643 4 +UH 0 48 l 1540 8920 4 +UH 0 49 l 3854 8719 4 +UH 0 50 l 1638 8831 4 +UH 0 63 l 1593 1354 0 +UH 0 32 h 3905 9089 4 +UH 0 33 h 1834 8795 4 +UH 0 34 h 2731 8891 4 +PQ +SE +ID 811 +TI 1760667399.838860988 +UH 0 53 l 1654 9173 4 +UH 0 54 l 5432 9277 4 +UH 0 55 l 1502 9185 4 +UH 0 2 h 2885 9530 4 +UH 0 10 h 1845 9447 4 +UH 0 11 h 4041 9210 4 +PQ +SE +ID 812 +TI 1760667399.838893175 +UH 0 35 l 2146 10867 4 +UH 0 57 h 2215 11464 4 +PQ +SE +ID 813 +TI 1760667399.838910579 +UH 0 64 l 1667 0 5 +UH 0 64 h 2086 0 5 +BD GR Veto +PQ +SE +ID 814 +TI 1760667399.838918685 +UH 0 51 l 3083 10924 4 +UH 0 54 l 2468 10844 4 +UH 0 25 h 2834 10878 4 +UH 0 26 h 2627 10874 4 +PQ +SE +ID 815 +TI 1760667399.838945388 +UH 0 35 l 2459 9767 4 +UH 0 36 l 1827 9743 4 +UH 0 37 l 4227 9940 4 +UH 0 38 l 1652 10002 4 +UH 0 5 h 2759 10528 4 +UH 0 6 h 4392 10419 4 +PQ +SE +ID 816 +TI 1760667399.838971376 +UH 0 49 l 5599 9481 4 +UH 0 2 h 1850 9356 4 +UH 0 3 h 5364 8956 4 +UH 0 4 h 1658 9472 4 +PQ +SE +ID 817 +TI 1760667399.838993310 +UH 0 1 l 1924 10998 4 +UH 0 16 h 1954 11531 4 +PQ +SE +ID 818 +TI 1760667399.839011430 +UH 0 54 l 2639 11053 4 +UH 0 34 h 2447 10199 4 +UH 0 35 h 1720 10427 4 +PQ +SE +ID 819 +TI 1760667399.839031457 +UH 0 54 l 2142 11041 4 +UH 0 26 h 2178 11533 4 +PQ +SE +ID 820 +TI 1760667399.839048862 +UH 0 9 l 1802 10570 4 +UH 0 10 l 3930 10473 4 +UH 0 64 l 1769 0 5 +UH 0 61 h 2820 10556 4 +UH 0 62 h 2882 10374 4 +UH 0 64 h 1841 0 5 +BD GR Veto +PQ +SE +ID 821 +TI 1760667399.839076519 +UH 0 16 l 1617 5222 0 +UH 0 17 l 1662 4866 0 +UH 0 43 h 1763 11543 4 +PQ +SE +ID 822 +TI 1760667399.839096784 +UH 0 38 l 3220 10873 4 +UH 0 26 l 2154 10922 4 +UH 0 27 l 2001 10494 4 +UH 0 28 l 1853 4576 0 +UH 0 48 h 2127 10869 4 +UH 0 49 h 2257 10782 4 +UH 0 50 h 2250 10521 4 +UH 0 51 h 2598 10621 4 +PQ +SE +ID 823 +TI 1760667399.839133501 +UH 0 34 l 2835 10514 4 +UH 0 53 h 2849 11023 4 +PQ +SE +ID 824 +TI 1760667399.839151144 +UH 0 20 l 1679 4950 0 +UH 0 22 l 2478 10917 4 +UH 0 41 h 1615 4434 0 +UH 0 43 h 2443 10484 4 +PQ +SE +ID 825 +TI 1760667399.839178085 +UH 0 10 l 2736 10950 4 +UH 0 33 h 1998 10150 4 +UH 0 34 h 2117 10315 4 +PQ +SE +ID 826 +TI 1760667399.839197635 +UH 0 17 l 2750 10700 4 +UH 0 18 l 2341 10645 4 +UH 0 19 l 2047 10948 4 +UH 0 52 h 3935 10728 4 +UH 0 53 h 1627 10701 4 +PQ +SE +ID 827 +TI 1760667399.839222431 +UH 0 15 l 2530 10897 4 +UH 0 30 l 1617 2276 0 +UH 0 31 l 1657 2277 0 +UH 0 26 h 1648 5174 0 +UH 0 27 h 2375 10896 4 +PQ +SE +ID 828 +TI 1760667399.839249849 +UH 0 60 l 2752 9443 4 +UH 0 61 l 2423 9707 4 +UH 0 5 h 1598 10057 4 +UH 0 6 h 3594 9949 4 +PQ +SE +ID 829 +TI 1760667399.839272737 +UH 0 59 l 3194 9032 4 +UH 0 60 l 2544 8777 4 +UH 0 64 l 1717 0 5 +UH 0 3 h 4118 9633 4 +UH 0 4 h 1916 10125 4 +BD GR Veto +PQ +SE +ID 830 +TI 1760667399.839297056 +UH 0 40 l 1565 4953 0 +UH 0 64 l 1920 0 5 +UH 0 64 h 2098 0 5 +BD GR Veto +PQ +SE +ID 831 +TI 1760667399.856194734 +UH 0 43 l 2028 11012 4 +UH 0 44 l 1702 5295 0 +UH 0 58 h 1796 10671 4 +UH 0 60 h 2082 10578 4 +PQ +SE +ID 832 +TI 1760667399.856254577 +UH 0 25 l 2210 11135 4 +UH 0 26 l 2601 11335 4 +UH 0 15 h 2088 11002 4 +UH 0 16 h 2590 10958 4 +PQ +SE +ID 833 +TI 1760667399.856277704 +UH 0 5 l 1929 11108 4 +UH 0 43 h 1860 11257 4 +PQ +SE +ID 834 +TI 1760667399.856296777 +UH 0 5 l 2428 10102 4 +UH 0 6 l 1604 5358 0 +UH 0 7 l 1947 10318 4 +UH 0 32 h 1859 10276 4 +UH 0 30 h 1973 10919 4 +UH 0 31 h 2005 10276 4 +PQ +SE +ID 835 +TI 1760667399.856324434 +UH 0 18 l 1894 11044 4 +UH 0 7 h 1930 11457 4 +PQ +SE +ID 836 +TI 1760667399.856342554 +UH 0 17 l 3738 9007 4 +UH 0 18 l 1589 9016 4 +UH 0 22 h 2102 9618 4 +UH 0 23 h 3292 9622 4 +PQ +SE +ID 837 +TI 1760667399.856371402 +UH 0 64 l 2677 0 5 +UH 0 51 h 2275 10736 4 +UH 0 64 h 1942 0 5 +BD GR Veto +PQ +SE +ID 838 +TI 1760667399.856388330 +UH 0 17 l 2087 10698 4 +UH 0 18 l 3685 10507 4 +UH 0 39 h 4248 10812 4 +PQ +SE +ID 839 +TI 1760667399.856408596 +UH 0 3 l 2027 11006 4 +UH 0 4 l 2441 11079 4 +UH 0 53 h 1588 3584 0 +UH 0 54 h 1663 5190 0 +UH 0 56 h 2713 10755 4 +PQ +SE +ID 840 +TI 1760667399.856436729 +UH 0 50 l 2851 10736 4 +UH 0 48 h 2888 10946 4 +PQ +SE +ID 841 +TI 1760667399.856454133 +UH 0 4 l 2376 10886 4 +UH 0 5 l 2016 10491 4 +UH 0 6 l 1880 11085 4 +UH 0 22 h 2039 11090 4 +UH 0 23 h 2314 10985 4 +UH 0 24 h 1576 11049 4 +UH 0 29 h 1856 10983 4 +PQ +SE +ID 842 +TI 1760667399.856494426 +UH 0 12 l 2326 10657 4 +UH 0 16 l 2249 10983 4 +UH 0 17 l 1670 4996 0 +UH 0 0 h 2542 11111 4 +UH 0 1 h 2159 11231 4 +PQ +SE +ID 843 +TI 1760667399.856522560 +UH 0 45 l 2439 10777 4 +UH 0 18 h 1720 11008 4 +UH 0 19 h 2304 11207 4 +PQ +SE +ID 844 +TI 1760667399.856549739 +UH 0 64 l 2221 0 5 +UH 0 64 h 2242 0 5 +BD GR Veto +PQ +SE +ID 845 +TI 1760667399.856558799 +UH 0 12 l 2433 10238 4 +UH 0 9 h 2104 11420 4 +UH 0 10 h 1605 5236 0 +UH 0 11 h 1731 4697 0 +PQ +SE +ID 846 +TI 1760667399.856580495 +UH 0 4 l 2034 11062 4 +UH 0 36 h 1633 3064 0 +UH 0 37 h 1998 11199 4 +PQ +SE +ID 847 +TI 1760667399.856600522 +UH 0 64 l 2486 0 5 +UH 0 64 h 2509 0 5 +BD GR Veto +PQ +SE +ID 848 +TI 1760667399.856608867 +UH 0 32 l 3431 10818 4 +UH 0 46 h 3411 10753 4 +PQ +SE +ID 849 +TI 1760667399.856628179 +UH 0 64 l 2172 0 5 +UH 0 64 h 2187 0 5 +BD GR Veto +PQ +SE +ID 850 +TI 1760667399.856636047 +UH 0 36 l 2303 10395 4 +UH 0 37 l 3903 10675 4 +UH 0 38 l 1644 10854 4 +UH 0 30 l 1752 5051 0 +UH 0 31 l 2086 10803 4 +UH 0 37 h 3872 10841 4 +UH 0 38 h 2289 10765 4 +UH 0 39 h 2664 10572 4 +PQ +SE +ID 851 +TI 1760667399.856672286 +UH 0 59 l 2762 10749 4 +UH 0 7 h 2872 10861 4 +PQ +SE +ID 852 +TI 1760667399.856689214 +UH 0 57 l 2923 10776 4 +UH 0 32 h 1881 10690 4 +UH 0 33 h 2543 10221 4 +PQ +SE +ID 853 +TI 1760667399.856708288 +UH 0 64 l 2254 0 5 +UH 0 16 h 1678 5020 0 +UH 0 17 h 1971 11234 4 +UH 0 64 h 1748 0 5 +BD GR Veto +PQ +SE +ID 854 +TI 1760667399.856726169 +UH 0 3 l 1851 11010 4 +UH 0 54 h 1844 11136 4 +PQ +SE +ID 855 +TI 1760667399.856743335 +UH 0 41 l 2154 10995 4 +UH 0 48 h 2301 11146 4 +PQ +SE +ID 856 +TI 1760667399.856760978 +UH 0 58 l 3849 9849 4 +UH 0 59 l 1711 10208 4 +UH 0 61 l 1655 5291 0 +UH 0 60 h 1727 10090 4 +UH 0 61 h 3877 10416 4 +UH 0 64 h 1677 0 5 +BD GR Veto +PQ +SE +ID 857 +TI 1760667399.856790542 +UH 0 0 l 2162 11051 4 +UH 0 13 h 2140 10937 4 +PQ +SE +ID 858 +TI 1760667399.856805801 +UH 0 6 l 2975 11035 4 +UH 0 45 h 2788 10490 4 +UH 0 46 h 1635 10434 4 +PQ +SE +ID 859 +TI 1760667399.856825351 +UH 0 64 l 1843 0 5 +UH 0 64 h 1915 0 5 +BD GR Veto +PQ +SE +ID 860 +TI 1760667399.856833457 +UH 0 18 l 1844 10513 4 +UH 0 21 l 2087 11148 4 +UH 0 51 h 1758 10851 4 +UH 0 57 h 2073 10793 4 +PQ +SE +ID 861 +TI 1760667399.856865882 +UH 0 22 l 1895 8991 4 +UH 0 30 l 4139 9622 4 +UH 0 47 h 1925 9402 4 +UH 0 30 h 1565 9944 4 +UH 0 31 h 4141 9230 4 +PQ +SE +ID 862 +TI 1760667399.856899499 +UH 0 54 l 1860 10653 4 +UH 0 55 l 1571 4654 0 +UH 0 60 l 1853 4855 0 +UH 0 62 l 1834 5058 0 +UH 0 63 l 1732 10711 4 +UH 0 64 l 3074 0 5 +UH 0 38 h 2113 10934 4 +UH 0 45 h 1828 10785 4 +UH 0 49 h 2049 10700 4 +UH 0 64 h 3037 0 5 +BD GR Veto +PQ +SE +ID 863 +TI 1760667399.856956243 +UH 0 32 l 2287 9336 4 +UH 0 29 l 2861 9221 4 +UH 0 31 l 3594 9276 4 +UH 0 24 h 1584 2462 0 +UH 0 25 h 2627 9305 4 +UH 0 28 h 1645 9272 4 +UH 0 29 h 4199 9382 4 +UH 0 30 h 1575 9672 4 +PQ +SE +ID 864 +TI 1760667399.857004880 +UH 0 26 l 2495 11346 4 +UH 0 7 h 2233 10912 4 +UH 0 8 h 1805 11307 4 +PQ +SE +ID 865 +TI 1760667399.857024669 +UH 0 18 l 1754 11009 4 +UH 0 2 h 1791 11254 4 +PQ +SE +ID 866 +TI 1760667399.857042551 +UH 0 55 l 2410 10906 4 +UH 0 56 l 2539 11111 4 +UH 0 28 h 3609 10600 4 +PQ +SE +ID 867 +TI 1760667399.857062339 +UH 0 34 l 2261 10776 4 +UH 0 30 h 2253 11307 4 +PQ +SE +ID 868 +TI 1760667399.857079267 +UH 0 21 l 1751 5451 0 +UH 0 21 h 1733 5122 0 +PQ +SE +ID 869 +TI 1760667399.857096433 +UH 0 6 l 4551 10946 4 +UH 0 46 h 2960 10240 4 +UH 0 47 h 2620 10201 4 +UH 0 49 h 2031 10325 4 +PQ +SE +ID 870 +TI 1760667399.857121467 +UH 0 46 l 2926 10724 4 +UH 0 19 h 2908 11159 4 +UH 0 20 h 1629 10975 4 +PQ +SE +ID 871 +TI 1760667399.857147932 +UH 0 0 l 1862 11100 4 +UH 0 41 h 1836 11462 4 +PQ +SE +ID 872 +TI 1760667399.857162952 +UH 0 39 l 2252 10697 4 +UH 0 49 l 1594 4690 0 +UH 0 50 l 1574 4287 0 +UH 0 4 h 1815 5347 0 +UH 0 5 h 2205 11375 4 +PQ +SE +ID 873 +TI 1760667399.857192277 +UH 0 15 l 1933 10491 4 +UH 0 31 h 1843 10969 4 +PQ +SE +ID 874 +TI 1760667399.857210159 +UH 0 38 l 2644 10580 4 +UH 0 41 l 1713 5028 0 +UH 0 64 l 2638 0 5 +UH 0 46 h 2608 10928 4 +UH 0 47 h 1705 4619 0 +UH 0 64 h 2890 0 5 +BD GR Veto +PQ +SE +ID 875 +TI 1760667399.857241153 +UH 0 22 l 2160 10918 4 +UH 0 23 l 2099 11005 4 +UH 0 60 h 1843 10703 4 +UH 0 61 h 2225 11117 4 +PQ +SE +ID 876 +TI 1760667399.857263803 +UH 0 64 l 1990 0 5 +UH 0 64 h 2019 0 5 +BD GR Veto +PQ +SE +ID 877 +TI 1760667399.857272148 +UH 0 62 l 1752 5389 0 +UH 0 37 h 1748 11272 4 +PQ +SE +ID 878 +TI 1760667399.857289314 +UH 0 35 l 1684 5441 0 +UH 0 38 h 1780 11671 4 +PQ +SE +ID 879 +TI 1760667399.857306480 +UH 0 64 l 3878 0 5 +UH 0 64 h 3778 0 5 +BD GR Veto +PQ +SE +ID 880 +TI 1760667399.857314348 +UH 0 43 l 2571 11008 4 +UH 0 61 h 2638 10640 4 +PQ +SE +ID 881 +TI 1760667399.857331991 +UH 0 33 l 2233 10708 4 +UH 0 19 h 2090 11057 4 +UH 0 20 h 1637 4578 0 +PQ +SE +ID 882 +TI 1760667399.857351779 +UH 0 24 l 4288 10921 4 +UH 0 36 h 4161 10594 4 +PQ +SE +ID 883 +TI 1760667399.857368469 +UH 0 64 h 1926 0 5 +BD GR Veto +PQ +SE +ID 884 +TI 1760667399.857373952 +UH 0 26 l 2646 11345 4 +UH 0 24 h 2538 10697 4 +PQ +SE +ID 885 +TI 1760667399.857391834 +UH 0 19 l 1639 5416 0 +UH 0 20 l 1675 3865 0 +UH 0 53 h 1617 3798 0 +PQ +SE +ID 886 +TI 1760667399.857412815 +UH 0 8 l 1768 10319 4 +UH 0 9 l 4387 10257 4 +UH 0 47 h 4550 10622 4 +PQ +SE +ID 887 +TI 1760667399.857432842 +UH 0 61 l 2179 10340 4 +UH 0 62 l 2822 10429 4 +UH 0 11 h 2855 11349 4 +UH 0 14 h 2066 11359 4 +PQ +SE +ID 888 +TI 1760667399.857459545 +UH 0 31 l 2935 11065 4 +UH 0 39 h 2960 10864 4 +PQ +SE +ID 889 +TI 1760667399.857477188 +UH 0 17 l 1616 9479 4 +UH 0 18 l 3766 9272 4 +UH 0 1 h 3901 10347 4 +PQ +SE +ID 890 +TI 1760667399.857496976 +UH 0 21 l 1640 8925 4 +UH 0 22 l 3417 8612 4 +UH 0 23 l 1715 8718 4 +UH 0 24 l 2646 8570 4 +UH 0 29 h 3913 9402 4 +UH 0 30 h 2010 9628 4 +PQ +SE +ID 891 +TI 1760667399.857523918 +UH 0 64 l 2316 0 5 +UH 0 64 h 2515 0 5 +BD GR Veto +PQ +SE +ID 892 +TI 1760667399.857531785 +UH 0 48 l 3966 10957 4 +UH 0 51 l 1818 5121 0 +UH 0 55 l 2370 10560 4 +UH 0 56 l 1903 10842 4 +UH 0 45 h 2478 10941 4 +UH 0 46 h 1753 10838 4 +UH 0 50 h 3822 10608 4 +UH 0 51 h 2140 10810 4 +PQ +SE +ID 893 +TI 1760667399.857578277 +UH 0 34 l 1793 10597 4 +UH 0 35 l 3190 10765 4 +UH 0 38 l 3595 10582 4 +UH 0 9 h 3681 10839 4 +UH 0 26 h 1760 10995 4 +UH 0 27 h 3240 10688 4 +PQ +SE +ID 894 +TI 1760667399.857615709 +UH 0 37 l 2718 10827 4 +UH 0 45 l 2688 10387 4 +UH 0 39 h 2784 10761 4 +UH 0 43 h 2676 10691 4 +PQ +SE +ID 895 +TI 1760667399.880654096 +UH 0 64 l 2496 0 5 +UH 0 64 h 2516 0 5 +BD GR Veto +PQ +SE +ID 896 +TI 1760667399.880689620 +UH 0 43 l 2313 9725 4 +UH 0 45 l 2496 9521 4 +UH 0 46 l 2682 9497 4 +UH 0 4 h 1654 10060 4 +UH 0 5 h 3709 9775 4 +UH 0 7 h 2451 9717 4 +PQ +SE +ID 897 +TI 1760667399.880729198 +UH 0 64 l 1765 0 5 +UH 0 64 h 1810 0 5 +BD GR Veto +PQ +SE +ID 898 +TI 1760667399.880737543 +UH 0 51 l 4506 10851 4 +UH 0 46 h 1680 10271 4 +UH 0 47 h 4395 10115 4 +PQ +SE +ID 899 +TI 1760667399.880758762 +UH 0 64 l 2097 0 5 +UH 0 64 h 2150 0 5 +BD GR Veto +PQ +SE +ID 900 +TI 1760667399.880766630 +UH 0 64 l 2866 0 5 +UH 0 64 h 2854 0 5 +BD GR Veto +PQ +SE +ID 901 +TI 1760667399.880774497 +UH 0 9 l 1694 5066 0 +UH 0 12 l 1802 5074 0 +UH 0 38 h 1709 4321 0 +UH 0 39 h 1756 4984 0 +PQ +SE +ID 902 +TI 1760667399.880801439 +UH 0 22 l 2143 10446 4 +UH 0 20 h 2133 11242 4 +PQ +SE +ID 903 +TI 1760667399.880819082 +UH 0 16 l 2924 10281 4 +UH 0 17 l 2651 10204 4 +UH 0 29 h 3972 11139 4 +PQ +SE +ID 904 +TI 1760667399.880840301 +UH 0 49 h 1591 5376 0 +PQ +SE +ID 905 +TI 1760667399.880850791 +UH 0 50 l 4216 9762 4 +UH 0 51 l 1659 10003 4 +UH 0 36 h 3520 9879 4 +UH 0 37 h 2343 10105 4 +PQ +SE +ID 906 +TI 1760667399.880873203 +UH 0 64 l 3077 0 5 +UH 0 2 h 1628 3976 0 +UH 0 64 h 2375 0 5 +BD GR Veto +PQ +SE +ID 907 +TI 1760667399.880888223 +UH 0 32 l 2322 10901 4 +UH 0 34 l 1697 4818 0 +UH 0 38 l 2134 10980 4 +UH 0 31 l 1681 4731 0 +UH 0 50 h 2239 10599 4 +UH 0 51 h 1647 4837 0 +UH 0 53 h 2450 10761 4 +PQ +SE +ID 908 +TI 1760667399.880929231 +UH 0 6 l 1640 5387 0 +UH 0 58 h 1637 4371 0 +PQ +SE +ID 909 +TI 1760667399.880947351 +UH 0 5 l 2099 10816 4 +UH 0 9 h 2037 11387 4 +PQ +SE +ID 910 +TI 1760667399.880965471 +UH 0 38 l 2236 10958 4 +UH 0 38 h 2296 11403 4 +PQ +SE +ID 911 +TI 1760667399.880983352 +UH 0 54 l 1730 11145 4 +UH 0 55 l 1934 10830 4 +UH 0 37 h 2274 11230 4 +PQ +SE +ID 912 +TI 1760667399.881003379 +UH 0 20 l 1939 10827 4 +UH 0 42 h 1891 10290 4 +PQ +SE +ID 913 +TI 1760667399.881021022 +UH 0 64 l 2260 0 5 +UH 0 64 h 2325 0 5 +BD GR Veto +PQ +SE +ID 914 +TI 1760667399.881029367 +UH 0 33 l 2753 10554 4 +UH 0 45 h 1725 10878 4 +UH 0 46 h 2537 10638 4 +PQ +SE +ID 915 +TI 1760667399.881054639 +UH 0 33 l 2287 10376 4 +UH 0 34 l 1657 5160 0 +UH 0 35 l 2060 10472 4 +UH 0 25 l 3981 10945 4 +UH 0 26 l 1903 11229 4 +UH 0 34 h 2185 10437 4 +UH 0 36 h 4186 10562 4 +UH 0 29 h 2069 11169 4 +UH 0 31 h 1646 4725 0 +PQ +SE +ID 916 +TI 1760667399.881102800 +UH 0 14 l 1648 5355 0 +PQ +SE +ID 917 +TI 1760667399.881114721 +UH 0 43 l 1984 10378 4 +UH 0 44 l 2134 10178 4 +UH 0 48 l 4362 10884 4 +UH 0 55 h 2462 10057 4 +UH 0 56 h 3556 10327 4 +UH 0 60 h 2666 10349 4 +UH 0 61 h 1582 4454 0 +PQ +SE +ID 918 +TI 1760667399.881153821 +UH 0 64 l 2149 0 5 +UH 0 64 h 2222 0 5 +BD GR Veto +PQ +SE +ID 919 +TI 1760667399.881162405 +UH 0 32 l 1666 5274 0 +UH 0 33 l 1787 5031 0 +UH 0 46 h 1802 10921 4 +UH 0 47 h 1662 4286 0 +PQ +SE +ID 920 +TI 1760667399.881191968 +UH 0 34 l 1586 8554 4 +UH 0 35 l 4141 8882 4 +UH 0 36 l 1608 8439 4 +UH 0 39 h 4189 8574 4 +PQ +SE +ID 921 +TI 1760667399.881216764 +UH 0 64 l 1729 0 5 +UH 0 31 h 1813 11112 4 +BD GR Veto +PQ +SE +ID 922 +TI 1760667399.881230831 +UH 0 33 l 1899 10459 4 +UH 0 34 l 4583 10445 4 +UH 0 38 l 1582 4851 0 +UH 0 40 l 2074 10884 4 +UH 0 54 h 4816 11039 4 +UH 0 55 h 1735 10756 4 +UH 0 58 h 2170 10532 4 +PQ +SE +ID 923 +TI 1760667399.881278514 +UH 0 64 l 5706 0 5 +UH 0 64 h 5422 0 5 +BD GR Veto +PQ +SE +ID 924 +TI 1760667399.881286382 +UH 0 37 l 3180 10845 4 +UH 0 64 l 2153 0 5 +UH 0 63 h 3184 10883 4 +UH 0 64 h 2177 0 5 +BD GR Veto +PQ +SE +ID 925 +TI 1760667399.881307125 +UH 0 21 l 2736 10923 4 +UH 0 27 l 2493 10705 4 +UH 0 28 l 3532 11133 4 +UH 0 48 h 2786 10584 4 +UH 0 49 h 1619 10612 4 +UH 0 50 h 2414 10639 4 +UH 0 52 h 3390 10496 4 +PQ +SE +ID 926 +TI 1760667399.881343126 +UH 0 4 l 4336 9287 4 +UH 0 5 l 1671 9215 4 +UH 0 55 h 4487 9409 4 +PQ +SE +ID 927 +TI 1760667399.881363391 +UH 0 59 l 2037 10185 4 +UH 0 28 h 2094 10573 4 +UH 0 29 h 1566 5594 0 +PQ +SE +ID 928 +TI 1760667399.881383419 +UH 0 5 l 1658 8939 4 +UH 0 6 l 4459 8876 4 +UH 0 7 l 2729 8808 4 +UH 0 8 l 1672 8894 4 +UH 0 49 h 1768 9158 4 +UH 0 50 h 5485 9002 4 +PQ +SE +ID 929 +TI 1760667399.881411552 +UH 0 64 l 2590 0 5 +UH 0 64 h 2609 0 5 +BD GR Veto +PQ +SE +ID 930 +TI 1760667399.881419658 +UH 0 0 l 1708 4419 0 +UH 0 4 l 1620 5408 0 +UH 0 32 h 1659 5117 0 +UH 0 25 h 1540 5513 0 +PQ +SE +ID 931 +TI 1760667399.881449460 +UH 0 49 l 1514 5382 0 +UH 0 50 l 4247 8863 4 +UH 0 51 l 1648 9079 4 +UH 0 26 h 4164 9833 4 +PQ +SE +ID 932 +TI 1760667399.881472826 +UH 0 19 l 1898 10714 4 +UH 0 20 l 2884 10296 4 +UH 0 27 h 3158 11215 4 +PQ +SE +ID 933 +TI 1760667399.881492137 +UH 0 60 l 1699 9782 4 +UH 0 61 l 3015 9921 4 +UH 0 62 l 1612 5355 0 +UH 0 63 l 1539 4244 0 +UH 0 64 l 2214 0 5 +UH 0 46 h 3034 9948 4 +UH 0 64 h 3925 0 5 +BD GR Veto +PQ +SE +ID 934 +TI 1760667399.881519794 +UH 0 11 l 1731 10640 4 +UH 0 12 l 3298 10454 4 +UH 0 50 h 3329 10730 4 +PQ +SE +ID 935 +TI 1760667399.881540298 +UH 0 16 l 1838 11016 4 +UH 0 10 h 1732 11893 4 +UH 0 11 h 1694 5221 0 +PQ +SE +ID 936 +TI 1760667399.881560087 +UH 0 25 h 1521 5587 0 +PQ +SE +ID 937 +TI 1760667399.881568431 +UH 0 38 l 1548 5277 0 +UH 0 39 l 2164 10226 4 +UH 0 46 l 3149 10218 4 +UH 0 54 h 2157 10873 4 +UH 0 30 h 3205 11383 4 +PQ +SE +ID 938 +TI 1760667399.881603240 +UH 0 55 l 2026 5251 0 +UH 0 64 l 2650 0 5 +UH 0 2 h 2165 5542 0 +UH 0 64 h 2652 0 5 +BD GR Veto +PQ +SE +ID 939 +TI 1760667399.881626129 +UH 0 39 l 2447 10614 4 +UH 0 54 l 3560 10617 4 +UH 0 8 h 2277 11316 4 +UH 0 9 h 1722 11048 4 +UH 0 30 h 3567 11386 4 +PQ +SE +ID 940 +TI 1760667399.881660938 +UH 0 10 l 3596 10763 4 +UH 0 11 l 1896 10559 4 +UH 0 59 h 3734 10764 4 +PQ +SE +ID 941 +TI 1760667399.881680011 +UH 0 30 l 2346 10942 4 +UH 0 51 h 2284 10994 4 +PQ +SE +ID 942 +TI 1760667399.881695270 +UH 0 43 l 1827 11071 4 +UH 0 44 l 2089 10832 4 +UH 0 57 h 2529 11294 4 +PQ +SE +ID 943 +TI 1760667399.881714582 +UH 0 64 l 1998 0 5 +UH 0 64 h 2055 0 5 +BD GR Veto +PQ +SE +ID 944 +TI 1760667399.881722688 +UH 0 51 l 4685 10813 4 +UH 0 52 l 2523 10802 4 +UH 0 17 h 1834 10900 4 +UH 0 18 h 5356 10660 4 +PQ +SE +ID 945 +TI 1760667399.881746292 +UH 0 64 l 3937 0 5 +UH 0 64 h 3852 0 5 +BD GR Veto +PQ +SE +ID 946 +TI 1760667399.881754636 +UH 0 64 l 2048 0 5 +UH 0 63 h 1936 10932 4 +UH 0 64 h 1792 0 5 +BD GR Veto +PQ +SE +ID 947 +TI 1760667399.881767511 +UH 0 32 l 1647 8639 4 +UH 0 30 l 1608 8899 4 +UH 0 31 l 5635 8679 4 +UH 0 60 h 2833 8276 4 +UH 0 61 h 4357 8549 4 +PQ +SE +ID 948 +TI 1760667399.881792306 +UH 0 10 l 3151 10945 4 +UH 0 11 l 1766 3816 0 +UH 0 58 h 1767 10631 4 +UH 0 61 h 2563 10593 4 +UH 0 62 h 1983 10471 4 +PQ +SE +ID 949 +TI 1760667399.881821870 +UH 0 22 l 2289 10901 4 +UH 0 4 h 2303 11209 4 +PQ +SE +ID 950 +TI 1760667399.881840229 +UH 0 12 l 2556 10031 4 +UH 0 2 h 2515 11384 4 +PQ +SE +ID 951 +TI 1760667399.881857633 +UH 0 64 l 1657 0 5 +BD GR Veto +PQ +SE +ID 952 +TI 1760667399.881863594 +UH 0 23 l 2662 10559 4 +UH 0 29 l 2123 10813 4 +UH 0 30 l 1774 5214 0 +UH 0 2 h 1777 4906 0 +UH 0 3 h 2768 10934 4 +UH 0 4 h 2014 11345 4 +PQ +SE +ID 953 +TI 1760667399.881896734 +UH 0 32 l 2873 10125 4 +UH 0 33 l 1589 9897 4 +UH 0 27 l 4313 10188 4 +UH 0 1 h 4329 10843 4 +UH 0 5 h 2848 10978 4 +PQ +SE +ID 954 +TI 1760667399.881931543 +UH 0 52 l 1812 5214 0 +UH 0 64 l 1696 0 5 +UH 0 37 h 1840 11709 4 +BD GR Veto +PQ +SE +ID 955 +TI 1760667399.881952047 +UH 0 50 l 1825 8325 4 +UH 0 51 l 4189 8347 4 +UH 0 52 l 1599 5402 0 +UH 0 64 l 1633 0 5 +UH 0 1 h 4463 9051 4 +BD GR Veto +PQ +SE +ID 956 +TI 1760667399.881977319 +UH 0 32 l 4474 10764 4 +UH 0 23 l 2129 10364 4 +UH 0 24 l 2383 10394 4 +UH 0 51 h 2696 10632 4 +UH 0 55 h 4544 10063 4 +PQ +SE +ID 957 +TI 1760667399.882011651 +UH 0 44 l 1698 5156 0 +UH 0 45 l 2035 10858 4 +UH 0 41 h 2271 11167 4 +PQ +SE +ID 958 +TI 1760667399.882032632 +UH 0 20 l 3974 10632 4 +UH 0 27 l 2119 10454 4 +UH 0 21 h 2942 10898 4 +UH 0 22 h 2519 10612 4 +UH 0 23 h 2085 10903 4 +PQ +SE +ID 959 +TI 1760667399.898261547 +UH 0 64 l 2027 0 5 +UH 0 64 h 2077 0 5 +BD GR Veto +PQ +SE +ID 960 +TI 1760667399.898315191 +UH 0 49 l 1654 4809 0 +UH 0 50 l 2030 10556 4 +UH 0 14 h 2216 11470 4 +PQ +SE +ID 961 +TI 1760667399.898361921 +UH 0 25 l 1946 11301 4 +UH 0 26 l 2250 11422 4 +UH 0 54 h 2467 11163 4 +PQ +SE +ID 962 +TI 1760667399.898405313 +UH 0 12 l 3202 10506 4 +UH 0 13 l 1718 4980 0 +UH 0 17 h 3085 10856 4 +PQ +SE +ID 963 +TI 1760667399.898446083 +UH 0 63 l 2591 10656 4 +UH 0 53 h 2619 10810 4 +PQ +SE +ID 964 +TI 1760667399.898483753 +UH 0 64 h 1684 0 5 +BD GR Veto +PQ +SE +ID 965 +TI 1760667399.898494243 +UH 0 19 l 1821 11248 4 +UH 0 58 h 1686 4571 0 +UH 0 59 h 1620 4106 0 +PQ +SE +ID 966 +TI 1760667399.898537158 +UH 0 16 l 2313 11005 4 +UH 0 60 h 2329 10577 4 +PQ +SE +ID 967 +TI 1760667399.898574829 +UH 0 64 l 2917 0 5 +UH 0 64 h 2918 0 5 +BD GR Veto +PQ +SE +ID 968 +TI 1760667399.898590564 +UH 0 12 l 2349 8454 4 +UH 0 13 l 4935 9034 4 +UH 0 14 l 1652 8866 4 +UH 0 37 h 4901 9263 4 +UH 0 38 h 1718 9243 4 +UH 0 39 h 2209 8951 4 +PQ +SE +ID 969 +TI 1760667399.898643255 +UH 0 4 l 4295 10605 4 +UH 0 5 l 1841 10525 4 +UH 0 48 h 1990 10924 4 +UH 0 50 h 4152 10792 4 +PQ +SE +ID 970 +TI 1760667399.898691415 +UH 0 4 l 2684 11095 4 +UH 0 59 h 2622 10670 4 +PQ +SE +ID 971 +TI 1760667399.898729562 +UH 0 41 l 3700 8628 4 +UH 0 4 l 1599 5391 0 +UH 0 5 l 2897 8440 4 +UH 0 6 l 2061 8800 4 +UH 0 47 h 1824 8749 4 +UH 0 48 h 3181 8806 4 +UH 0 62 h 3379 8819 4 +UH 0 63 h 2029 8899 4 +PQ +SE +ID 972 +TI 1760667399.898801326 +UH 0 25 l 2517 10907 4 +UH 0 26 l 1695 11185 4 +UH 0 20 h 2496 10861 4 +PQ +SE +ID 973 +TI 1760667399.898828268 +UH 0 64 l 2474 0 5 +UH 0 64 h 2527 0 5 +BD GR Veto +PQ +SE +ID 974 +TI 1760667399.898836851 +UH 0 49 l 2859 10917 4 +UH 0 41 h 2517 10442 4 +UH 0 42 h 1982 10089 4 +PQ +SE +ID 975 +TI 1760667399.898857116 +UH 0 35 l 2098 10678 4 +UH 0 11 h 2223 11433 4 +PQ +SE +ID 976 +TI 1760667399.898874998 +UH 0 46 l 2126 10573 4 +UH 0 47 l 1662 5188 0 +UH 0 1 h 2452 11314 4 +PQ +SE +ID 977 +TI 1760667399.898894786 +UH 0 11 l 2351 10647 4 +UH 0 12 l 2240 10562 4 +UH 0 45 h 2698 10802 4 +PQ +SE +ID 978 +TI 1760667399.898917198 +UH 0 64 l 1635 0 5 +UH 0 64 h 1729 0 5 +BD GR Veto +PQ +SE +ID 979 +TI 1760667399.898925781 +UH 0 32 l 1659 5260 0 +UH 0 36 l 3004 10103 4 +UH 0 37 l 1937 10505 4 +UH 0 15 l 1894 10551 4 +UH 0 31 l 1702 3768 0 +UH 0 32 h 1696 4637 0 +UH 0 34 h 3527 10648 4 +PQ +SE +ID 980 +TI 1760667399.898964881 +UH 0 62 l 2747 10830 4 +UH 0 51 h 2666 10790 4 +PQ +SE +ID 981 +TI 1760667399.898983478 +UH 0 42 l 3057 10996 4 +UH 0 44 h 3046 10640 4 +PQ +SE +ID 982 +TI 1760667399.899001598 +UH 0 55 l 2550 10711 4 +UH 0 56 l 2700 11032 4 +UH 0 34 h 2619 10465 4 +UH 0 24 h 2646 10717 4 +PQ +SE +ID 983 +TI 1760667399.899028539 +UH 0 51 l 2136 10670 4 +UH 0 52 l 2057 10632 4 +UH 0 25 h 2126 11410 4 +UH 0 29 h 1946 11357 4 +PQ +SE +ID 984 +TI 1760667399.899056911 +UH 0 0 l 2445 10223 4 +UH 0 2 l 2423 10280 4 +UH 0 64 l 1965 0 5 +UH 0 53 h 2248 10380 4 +UH 0 54 h 1689 10621 4 +UH 0 56 h 2393 10473 4 +UH 0 64 h 1899 0 5 +BD GR Veto +PQ +SE +ID 985 +TI 1760667399.899089336 +UH 0 64 h 1669 0 5 +BD GR Veto +PQ +SE +ID 986 +TI 1760667399.899095535 +UH 0 4 l 3234 10740 4 +UH 0 5 l 1730 10680 4 +UH 0 60 h 3345 10694 4 +PQ +SE +ID 987 +TI 1760667399.899115800 +UH 0 64 l 4375 0 5 +UH 0 64 h 4246 0 5 +BD GR Veto +PQ +SE +ID 988 +TI 1760667399.899124145 +UH 0 62 l 3112 9490 4 +UH 0 63 l 1532 9440 4 +UH 0 64 l 2452 0 5 +UH 0 25 h 2374 9702 4 +UH 0 26 h 2217 9868 4 +UH 0 64 h 2453 0 5 +BD GR Veto +PQ +SE +ID 989 +TI 1760667399.899149894 +UH 0 2 l 2714 11016 4 +UH 0 43 h 2593 10565 4 +PQ +SE +ID 990 +TI 1760667399.899167776 +UH 0 64 l 1815 0 5 +UH 0 64 h 2181 0 5 +BD GR Veto +PQ +SE +ID 991 +TI 1760667399.899175167 +UH 0 53 l 1958 10487 4 +UH 0 54 l 1597 11086 4 +UH 0 55 l 3008 10744 4 +UH 0 57 l 2516 10685 4 +UH 0 34 h 2142 10455 4 +UH 0 35 h 3429 10558 4 +UH 0 37 h 2086 11010 4 +PQ +SE +ID 992 +TI 1760667399.899217367 +UH 0 50 l 1781 10957 4 +UH 0 59 h 1781 10705 4 +PQ +SE +ID 993 +TI 1760667399.899234294 +UH 0 64 l 2414 0 5 +UH 0 64 h 2429 0 5 +BD GR Veto +PQ +SE +ID 994 +TI 1760667399.899242401 +UH 0 11 l 2290 10410 4 +UH 0 33 h 2133 10887 4 +PQ +SE +ID 995 +TI 1760667399.899260759 +UH 0 64 l 5614 0 5 +UH 0 64 h 5168 0 5 +BD GR Veto +PQ +SE +ID 996 +TI 1760667399.899268627 +UH 0 44 l 2152 10556 4 +UH 0 45 l 1557 5276 0 +UH 0 11 h 2114 10869 4 +UH 0 12 h 1702 10791 4 +PQ +SE +ID 997 +TI 1760667399.899292230 +UH 0 32 l 3161 10252 4 +UH 0 33 l 1599 10047 4 +UH 0 34 l 1713 4679 0 +UH 0 42 l 3637 10225 4 +UH 0 43 l 1661 10308 4 +UH 0 57 h 3802 10593 4 +UH 0 21 h 2279 10817 4 +UH 0 22 h 2080 10540 4 +UH 0 23 h 1570 3962 0 +UH 0 24 h 1838 10593 4 +UH 0 25 h 1676 4783 0 +PQ +SE +ID 998 +TI 1760667399.899341344 +UH 0 49 l 3652 9593 4 +UH 0 50 l 1614 9576 4 +UH 0 54 h 3701 10023 4 +PQ +SE +ID 999 +TI 1760667399.899362325 +UH 0 19 l 1743 5413 0 +UH 0 44 h 1659 4872 0 +UH 0 45 h 1569 5307 0 +PQ +SE +ID 1000 +TI 1760667399.899381160 +UH 0 49 l 2534 10934 4 +UH 0 55 h 2700 10096 4 +PQ +SE +ID 1001 +TI 1760667399.899398565 +UH 0 23 l 3426 9018 4 +UH 0 24 l 2648 9119 4 +UH 0 5 h 4244 9104 4 +UH 0 6 h 1550 9203 4 +PQ +SE +ID 1002 +TI 1760667399.899421930 +UH 0 3 l 3968 8824 4 +UH 0 4 l 1603 9153 4 +UH 0 48 h 4113 9350 4 +PQ +SE +ID 1003 +TI 1760667399.899441957 +UH 0 40 l 2768 10825 4 +UH 0 39 h 2858 10350 4 +PQ +SE +ID 1004 +TI 1760667399.899458646 +UH 0 35 l 2287 10931 4 +UH 0 44 h 2324 10265 4 +PQ +SE +ID 1005 +TI 1760667399.899477243 +UH 0 1 l 1651 9170 4 +UH 0 2 l 4310 8877 4 +UH 0 3 l 1586 5161 0 +UH 0 15 h 4192 9850 4 +PQ +SE +ID 1006 +TI 1760667399.899499893 +UH 0 64 l 3578 0 5 +UH 0 64 h 3465 0 5 +BD GR Veto +PQ +SE +ID 1007 +TI 1760667399.899507761 +UH 0 45 l 1708 8053 4 +UH 0 0 l 1616 8342 4 +UH 0 64 l 13441 0 5 +UH 0 63 h 1634 7927 4 +UH 0 0 h 1775 8385 4 +UH 0 1 h 1858 8374 4 +UH 0 2 h 1647 8589 4 +UH 0 3 h 1662 8367 4 +UH 0 4 h 1655 8748 4 +UH 0 64 h 12176 0 5 +BD GR Veto +PQ +SE +ID 1008 +TI 1760667399.899546861 +UH 0 32 l 1954 10841 4 +UH 0 38 l 1585 4793 0 +UH 0 33 h 1768 10562 4 +UH 0 34 h 1558 4649 0 +UH 0 27 h 1654 4716 0 +PQ +SE +ID 1009 +TI 1760667399.899584531 +UH 0 1 l 2570 10970 4 +UH 0 2 l 1700 10869 4 +UH 0 6 l 1669 4118 0 +UH 0 7 l 2121 10342 4 +UH 0 0 h 2249 11276 4 +UH 0 15 h 2651 11197 4 +PQ +SE +ID 1010 +TI 1760667399.899619340 +UH 0 51 l 2194 11006 4 +UH 0 35 h 2131 10438 4 +PQ +SE +ID 1011 +TI 1760667399.899636983 +UH 0 64 l 4051 0 5 +UH 0 64 h 3976 0 5 +BD GR Veto +PQ +SE +ID 1012 +TI 1760667399.899645090 +UH 0 16 l 3630 10679 4 +UH 0 17 l 2307 10639 4 +UH 0 30 h 4350 11323 4 +PQ +SE +ID 1013 +TI 1760667399.899664640 +UH 0 19 l 1968 11318 4 +UH 0 56 h 1604 4959 0 +UH 0 57 h 1924 10859 4 +PQ +SE +ID 1014 +TI 1760667399.899684906 +UH 0 12 l 2629 10505 4 +UH 0 13 l 1950 11049 4 +UH 0 21 h 2539 11118 4 +UH 0 22 h 1954 10862 4 +PQ +SE +ID 1015 +TI 1760667399.899707317 +UH 0 20 l 3999 10151 4 +UH 0 21 l 1730 10675 4 +UH 0 60 h 4106 10373 4 +PQ +SE +ID 1016 +TI 1760667399.899728298 +UH 0 64 l 2364 0 5 +UH 0 64 h 2380 0 5 +BD GR Veto +PQ +SE +ID 1017 +TI 1760667399.899736881 +UH 0 64 l 2008 0 5 +UH 0 64 h 2054 0 5 +BD GR Veto +PQ +SE +ID 1018 +TI 1760667399.899744510 +UH 0 61 l 1642 8882 4 +UH 0 62 l 3573 8887 4 +UH 0 20 h 3474 9075 4 +PQ +SE +ID 1019 +TI 1760667399.899765014 +UH 0 4 l 1641 5133 0 +UH 0 8 l 3538 10344 4 +UH 0 64 l 3576 0 5 +UH 0 14 h 1630 11297 4 +UH 0 16 h 3381 11299 4 +UH 0 64 h 3489 0 5 +BD GR Veto +PQ +SE +ID 1020 +TI 1760667399.899805545 +UH 0 32 l 3622 8631 4 +UH 0 33 l 2354 8343 4 +UH 0 34 l 1583 8419 4 +UH 0 12 h 3463 8782 4 +UH 0 13 h 2437 8894 4 +PQ +SE +ID 1021 +TI 1760667399.899828433 +UH 0 10 l 2311 10618 4 +UH 0 64 l 2717 0 5 +UH 0 37 h 2283 11150 4 +UH 0 64 h 2748 0 5 +BD GR Veto +PQ +SE +ID 1022 +TI 1760667399.899850845 +UH 0 33 l 2979 10492 4 +UH 0 31 h 2967 10689 4 +PQ +SE +ID 1023 +TI 1760667399.920396327 +UH 0 33 l 1655 4477 0 +UH 0 34 l 1631 4806 0 +UH 0 30 h 1740 11702 4 +PQ +SE +ID 1024 +TI 1760667399.920451641 +UH 0 55 l 1558 5366 0 +UH 0 51 h 1578 4613 0 +PQ +SE +ID 1025 +TI 1760667399.920470714 +UH 0 54 l 3574 9204 4 +UH 0 55 l 1503 8890 4 +UH 0 56 l 2028 9060 4 +UH 0 39 h 3659 8669 4 +UH 0 41 h 2078 9001 4 +PQ +SE +ID 1026 +TI 1760667399.920500040 +UH 0 32 l 2208 10422 4 +UH 0 28 l 2869 10958 4 +UH 0 29 l 2962 10549 4 +UH 0 31 l 2336 10820 4 +UH 0 21 h 2241 11355 4 +UH 0 25 h 3340 11170 4 +UH 0 27 h 2960 11178 4 +PQ +SE +ID 1027 +TI 1760667399.920542001 +UH 0 52 l 1613 4663 0 +UH 0 53 l 1663 4785 0 +UH 0 64 l 3876 0 5 +UH 0 34 h 1594 4785 0 +UH 0 54 h 1567 4308 0 +UH 0 64 h 3765 0 5 +BD GR Veto +PQ +SE +ID 1028 +TI 1760667399.920575857 +UH 0 32 l 2257 10523 4 +UH 0 27 l 3423 10201 4 +UH 0 33 h 2184 10302 4 +UH 0 23 h 3404 11030 4 +PQ +SE +ID 1029 +TI 1760667399.920608520 +UH 0 61 l 3933 9305 4 +UH 0 62 l 2563 9501 4 +UH 0 64 l 1855 0 5 +UH 0 5 h 1622 3435 0 +UH 0 7 h 1641 9565 4 +UH 0 8 h 4709 9768 4 +UH 0 64 h 1921 0 5 +BD GR Veto +PQ +SE +ID 1030 +TI 1760667399.920642137 +UH 0 64 l 3103 0 5 +UH 0 64 h 3055 0 5 +BD GR Veto +PQ +SE +ID 1031 +TI 1760667399.920650720 +UH 0 28 h 1659 5397 0 +PQ +SE +ID 1032 +TI 1760667399.920660972 +UH 0 7 l 3828 10853 4 +UH 0 18 l 1811 4818 0 +UH 0 20 l 1775 4590 0 +UH 0 62 h 2053 10867 4 +UH 0 63 h 3788 10845 4 +PQ +SE +ID 1033 +TI 1760667399.920701742 +UH 0 64 l 1735 0 5 +UH 0 64 h 1772 0 5 +BD GR Veto +PQ +SE +ID 1034 +TI 1760667399.920710563 +UH 0 10 l 1857 10463 4 +UH 0 11 l 1712 3663 0 +UH 0 12 h 1827 11334 4 +PQ +SE +ID 1035 +TI 1760667399.920730590 +UH 0 3 l 2792 10816 4 +UH 0 50 h 2730 10955 4 +UH 0 51 h 1629 11165 4 +PQ +SE +ID 1036 +TI 1760667399.920751810 +UH 0 37 l 3451 8664 4 +UH 0 38 l 1547 8749 4 +UH 0 41 l 2361 8629 4 +UH 0 31 l 2808 8581 4 +UH 0 45 h 1862 8846 4 +UH 0 46 h 4308 8696 4 +UH 0 49 h 2420 8744 4 +PQ +SE +ID 1037 +TI 1760667399.920796155 +UH 0 64 l 2086 0 5 +UH 0 64 h 2134 0 5 +BD GR Veto +PQ +SE +ID 1038 +TI 1760667399.920807838 +UH 0 28 l 2965 10680 4 +UH 0 29 l 1683 10596 4 +UH 0 61 h 3002 10891 4 +PQ +SE +ID 1039 +TI 1760667399.920828104 +UH 0 56 l 1559 5452 0 +UH 0 57 l 3367 8350 4 +UH 0 58 l 2531 8245 4 +UH 0 6 h 4440 9187 4 +PQ +SE +ID 1040 +TI 1760667399.920851230 +UH 0 20 l 2163 10358 4 +UH 0 21 l 2958 10694 4 +UH 0 13 h 1605 10754 4 +UH 0 14 h 3374 10724 4 +PQ +SE +ID 1041 +TI 1760667399.920874357 +UH 0 64 l 1966 0 5 +UH 0 42 h 1977 11056 4 +BD GR Veto +PQ +SE +ID 1042 +TI 1760667399.920887708 +UH 0 33 l 1959 10685 4 +UH 0 9 h 1631 4794 0 +UH 0 10 h 1847 11589 4 +PQ +SE +ID 1043 +TI 1760667399.920907258 +UH 0 6 l 2578 11067 4 +UH 0 55 h 2356 10399 4 +UH 0 60 h 1748 10384 4 +PQ +SE +ID 1044 +TI 1760667399.920937299 +UH 0 34 l 1780 9572 4 +UH 0 37 l 4273 9957 4 +UH 0 42 l 1978 9700 4 +UH 0 5 h 1588 9954 4 +UH 0 6 h 4216 9850 4 +UH 0 7 h 1652 9897 4 +UH 0 9 h 1726 9950 4 +UH 0 10 h 1590 2799 0 +UH 0 21 h 1904 10203 4 +PQ +SE +ID 1045 +TI 1760667399.921013832 +UH 0 0 l 1855 4777 0 +UH 0 1 l 1779 5474 0 +UH 0 33 h 1845 10726 4 +UH 0 34 h 1616 4314 0 +PQ +SE +ID 1046 +TI 1760667399.921034574 +UH 0 5 l 3193 10849 4 +UH 0 54 h 3063 11131 4 +PQ +SE +ID 1047 +TI 1760667399.921052455 +UH 0 52 l 3877 10767 4 +UH 0 62 l 2298 10732 4 +UH 0 25 h 3635 10986 4 +UH 0 26 h 1649 11245 4 +UH 0 30 h 1624 11274 4 +UH 0 31 h 2130 10509 4 +PQ +SE +ID 1048 +TI 1760667399.921087265 +UH 0 54 l 1551 5343 0 +UH 0 48 h 1616 5450 0 +PQ +SE +ID 1049 +TI 1760667399.921105384 +UH 0 52 l 2166 10959 4 +UH 0 53 l 1757 5274 0 +UH 0 14 h 2350 11449 4 +PQ +SE +ID 1050 +TI 1760667399.921124935 +UH 0 64 l 3984 0 5 +UH 0 64 h 3885 0 5 +BD GR Veto +PQ +SE +ID 1051 +TI 1760667399.921133041 +UH 0 64 l 3936 0 5 +UH 0 43 h 1761 10759 4 +UH 0 64 h 3582 0 5 +BD GR Veto +PQ +SE +ID 1052 +TI 1760667399.921148061 +UH 0 24 l 2183 10996 4 +UH 0 50 h 2136 10922 4 +PQ +SE +ID 1053 +TI 1760667399.921166419 +UH 0 35 l 1567 8626 4 +UH 0 36 l 4719 8208 4 +UH 0 37 l 1598 8603 4 +UH 0 36 h 4733 8961 4 +PQ +SE +ID 1054 +TI 1760667399.921188592 +UH 0 59 l 1679 4591 0 +UH 0 24 h 1711 11300 4 +PQ +SE +ID 1055 +TI 1760667399.921207189 +UH 0 7 l 2588 10852 4 +UH 0 64 l 2850 0 5 +UH 0 2 h 1965 11166 4 +UH 0 3 h 2238 10816 4 +UH 0 64 h 2846 0 5 +BD GR Veto +PQ +SE +ID 1056 +TI 1760667399.921233177 +UH 0 8 l 2027 10748 4 +UH 0 9 l 2025 10779 4 +UH 0 17 h 2329 11210 4 +PQ +SE +ID 1057 +TI 1760667399.921253681 +UH 0 53 l 2268 10887 4 +UH 0 49 h 2240 10270 4 +PQ +SE +ID 1058 +TI 1760667399.921271800 +UH 0 40 l 2122 10918 4 +UH 0 11 h 2217 11159 4 +PQ +SE +ID 1059 +TI 1760667399.921289443 +UH 0 58 l 1785 4668 0 +UH 0 30 l 1925 10987 4 +UH 0 64 l 3281 0 5 +UH 0 35 h 1631 3393 0 +UH 0 36 h 1873 10590 4 +UH 0 28 h 1859 10889 4 +UH 0 29 h 1587 5590 0 +UH 0 64 h 3201 0 5 +BD GR Veto +PQ +SE +ID 1060 +TI 1760667399.921332120 +UH 0 48 l 4119 10867 4 +UH 0 55 l 1759 10595 4 +UH 0 56 l 2097 10638 4 +UH 0 58 l 2051 10301 4 +UH 0 48 h 3039 10692 4 +UH 0 57 h 3844 10740 4 +UH 0 58 h 1805 10481 4 +PQ +SE +ID 1061 +TI 1760667399.921374559 +UH 0 52 l 1943 11187 4 +UH 0 53 h 1872 10566 4 +PQ +SE +ID 1062 +TI 1760667399.921392202 +UH 0 11 l 2273 10373 4 +UH 0 59 h 2131 11191 4 +PQ +SE +ID 1063 +TI 1760667399.921410083 +UH 0 57 l 2050 10840 4 +UH 0 28 h 2144 11022 4 +PQ +SE +ID 1064 +TI 1760667399.921427488 +UH 0 16 l 1689 4628 0 +UH 0 11 h 1759 5485 0 +PQ +SE +ID 1065 +TI 1760667399.921445369 +UH 0 25 l 2504 10662 4 +UH 0 64 l 2241 0 5 +UH 0 63 h 1642 10709 4 +UH 0 64 h 3029 0 5 +BD GR Veto +PQ +SE +ID 1066 +TI 1760667399.921466350 +UH 0 27 l 1713 5193 0 +UH 0 28 l 1802 4963 0 +UH 0 55 h 2011 11198 4 +PQ +SE +ID 1067 +TI 1760667399.921486139 +UH 0 40 l 1802 8570 4 +UH 0 41 l 1486 5406 0 +UH 0 64 l 5346 0 5 +UH 0 64 h 5435 0 5 +BD GR Veto +PQ +SE +ID 1068 +TI 1760667399.921503782 +UH 0 30 l 1664 4881 0 +UH 0 31 l 2087 10608 4 +UH 0 29 h 2187 11293 4 +PQ +SE +ID 1069 +TI 1760667399.921523809 +UH 0 51 l 1877 10995 4 +UH 0 5 h 1828 11529 4 +PQ +SE +ID 1070 +TI 1760667399.921541452 +UH 0 1 l 3559 10598 4 +UH 0 3 l 1731 9876 4 +UH 0 64 l 1664 0 5 +UH 0 22 h 1670 10181 4 +UH 0 23 h 3478 10151 4 +UH 0 25 h 1684 10685 4 +UH 0 64 h 2423 0 5 +BD GR Veto +PQ +SE +ID 1071 +TI 1760667399.921575307 +UH 0 46 l 3027 10751 4 +UH 0 56 h 2780 11021 4 +UH 0 57 h 1858 11194 4 +PQ +SE +ID 1072 +TI 1760667399.921595573 +UH 0 14 l 1927 3071 0 +UH 0 15 l 1672 8627 4 +UH 0 16 l 4244 8624 4 +UH 0 1 h 4330 9267 4 +UH 0 2 h 1923 9405 4 +PQ +SE +ID 1073 +TI 1760667399.921622037 +UH 0 10 l 2452 10274 4 +UH 0 19 l 2446 10970 4 +UH 0 64 l 2169 0 5 +UH 0 0 h 3104 11238 4 +UH 0 12 h 2355 10719 4 +BD GR Veto +PQ +SE +ID 1074 +TI 1760667399.921654701 +UH 0 32 l 2689 10844 4 +UH 0 24 l 2683 10611 4 +UH 0 25 l 1735 10909 4 +UH 0 28 l 3410 11177 4 +UH 0 9 h 3840 11068 4 +UH 0 16 h 2321 11025 4 +UH 0 17 h 2444 10884 4 +PQ +SE +ID 1075 +TI 1760667399.921700000 +UH 0 35 l 1555 5444 0 +UH 0 27 l 2493 10703 4 +UH 0 30 l 2001 11071 4 +UH 0 50 h 1954 10894 4 +UH 0 51 h 1589 4413 0 +UH 0 53 h 2290 10872 4 +UH 0 54 h 1630 11068 4 +PQ +SE +ID 1076 +TI 1760667399.921741724 +UH 0 2 l 2180 10850 4 +UH 0 14 h 1692 5638 0 +UH 0 15 h 2003 11755 4 +PQ +SE +ID 1077 +TI 1760667399.921761989 +UH 0 17 l 2828 10809 4 +UH 0 13 h 2842 11095 4 +PQ +SE +ID 1078 +TI 1760667399.921780824 +UH 0 45 l 2088 10613 4 +UH 0 51 h 2064 11188 4 +PQ +SE +ID 1079 +TI 1760667399.921798467 +UH 0 58 l 1627 5111 0 +UH 0 59 l 2100 10718 4 +UH 0 38 h 2287 11119 4 +PQ +SE +ID 1080 +TI 1760667399.921818971 +UH 0 31 l 1702 5474 0 +UH 0 37 h 1731 11280 4 +PQ +SE +ID 1081 +TI 1760667399.921836376 +UH 0 16 l 2550 10707 4 +UH 0 3 h 2658 11070 4 +PQ +SE +ID 1082 +TI 1760667399.921854019 +UH 0 48 l 1666 5003 0 +UH 0 59 h 1704 11328 4 +PQ +SE +ID 1083 +TI 1760667399.921873807 +UH 0 58 l 1568 5096 0 +UH 0 59 l 3832 8109 4 +UH 0 60 l 1719 7951 4 +UH 0 48 h 4124 8572 4 +PQ +SE +ID 1084 +TI 1760667399.921897172 +UH 0 29 l 3895 10745 4 +UH 0 30 l 2798 11199 4 +UH 0 31 l 2066 11150 4 +UH 0 15 h 3691 11267 4 +UH 0 20 h 2248 11166 4 +UH 0 22 h 2748 10980 4 +PQ +SE +ID 1085 +TI 1760667399.921935081 +UH 0 64 h 1741 0 5 +BD GR Veto +PQ +SE +ID 1086 +TI 1760667399.921941518 +UH 0 50 l 3507 10839 4 +UH 0 51 l 1883 10671 4 +UH 0 8 h 2552 11459 4 +UH 0 25 h 2350 10957 4 +UH 0 26 h 1878 11157 4 +PQ +SE +ID 1087 +TI 1760667399.942412614 +UH 0 25 l 1707 11165 4 +UH 0 26 l 2722 11250 4 +UH 0 49 h 2717 10936 4 +PQ +SE +ID 1088 +TI 1760667399.942484378 +UH 0 22 l 1638 8906 4 +UH 0 23 l 4632 8797 4 +UH 0 27 l 2692 8494 4 +UH 0 34 h 2460 8847 4 +UH 0 35 h 1621 8973 4 +UH 0 37 h 4537 9019 4 +PQ +SE +ID 1089 +TI 1760667399.942522287 +UH 0 64 h 1774 0 5 +BD GR Veto +PQ +SE +ID 1090 +TI 1760667399.942528724 +UH 0 50 l 2259 10594 4 +UH 0 49 h 2275 11021 4 +PQ +SE +ID 1091 +TI 1760667399.942548036 +UH 0 23 l 2750 10516 4 +UH 0 10 h 2601 11516 4 +PQ +SE +ID 1092 +TI 1760667399.942566394 +UH 0 40 l 1655 4923 0 +UH 0 20 h 1757 11382 4 +PQ +SE +ID 1093 +TI 1760667399.942586660 +UH 0 2 l 1822 5388 0 +UH 0 58 h 1778 10711 4 +PQ +SE +ID 1094 +TI 1760667399.942605733 +UH 0 41 l 1618 5410 0 +UH 0 49 l 1635 5173 0 +UH 0 20 h 1734 11146 4 +UH 0 26 h 1718 5080 0 +PQ +SE +ID 1095 +TI 1760667399.942642450 +UH 0 64 l 2584 0 5 +UH 0 64 h 2595 0 5 +BD GR Veto +PQ +SE +ID 1096 +TI 1760667399.942651987 +UH 0 53 l 1595 4445 0 +UH 0 54 l 3936 8290 4 +UH 0 55 l 1510 8213 4 +UH 0 45 h 3848 8452 4 +PQ +SE +ID 1097 +TI 1760667399.942675352 +UH 0 14 l 1674 5067 0 +UH 0 12 h 1601 5484 0 +PQ +SE +ID 1098 +TI 1760667399.942694664 +UH 0 8 l 3538 10479 4 +UH 0 9 l 1841 10633 4 +UH 0 14 l 3477 10652 4 +UH 0 49 h 3458 10848 4 +UH 0 59 h 3652 10941 4 +PQ +SE +ID 1099 +TI 1760667399.942731618 +UH 0 31 l 3250 10993 4 +UH 0 15 h 3216 11346 4 +PQ +SE +ID 1100 +TI 1760667399.942751646 +UH 0 64 l 2157 0 5 +UH 0 54 h 2133 11125 4 +BD GR Veto +PQ +SE +ID 1101 +TI 1760667399.942764997 +UH 0 64 l 1728 0 5 +UH 0 64 h 1792 0 5 +BD GR Veto +PQ +SE +ID 1102 +TI 1760667399.942775011 +UH 0 1 l 4357 10832 4 +UH 0 2 l 1774 10399 4 +UH 0 42 h 3813 10148 4 +UH 0 43 h 2219 10456 4 +PQ +SE +ID 1103 +TI 1760667399.942799329 +UH 0 16 l 2497 10572 4 +UH 0 17 l 2100 10491 4 +UH 0 63 h 3083 10931 4 +PQ +SE +ID 1104 +TI 1760667399.942817449 +UH 0 45 l 2885 10706 4 +UH 0 56 h 2933 10713 4 +PQ +SE +ID 1105 +TI 1760667399.942835092 +UH 0 47 l 2372 10517 4 +UH 0 63 l 1529 1784 0 +UH 0 16 h 1593 5108 0 +UH 0 17 h 2293 11228 4 +PQ +SE +ID 1106 +TI 1760667399.942862749 +UH 0 56 l 4317 8735 4 +UH 0 57 l 1547 8587 4 +UH 0 30 h 4311 9381 4 +PQ +SE +ID 1107 +TI 1760667399.942882776 +UH 0 43 l 1512 2983 0 +UH 0 29 h 1577 5613 0 +PQ +SE +ID 1108 +TI 1760667399.942899942 +UH 0 51 l 2935 10841 4 +UH 0 64 l 1657 0 5 +UH 0 44 h 1727 10729 4 +UH 0 45 h 2604 10932 4 +UH 0 64 h 1706 0 5 +BD GR Veto +PQ +SE +ID 1109 +TI 1760667399.942924737 +UH 0 13 l 2859 10923 4 +UH 0 14 l 3266 10782 4 +UH 0 15 l 2168 10697 4 +UH 0 17 l 2082 10666 4 +UH 0 31 l 1632 2582 0 +UH 0 1 h 1760 11097 4 +UH 0 2 h 2920 11051 4 +UH 0 5 h 2970 11266 4 +UH 0 6 h 2664 11238 4 +PQ +SE +ID 1110 +TI 1760667399.942969322 +UH 0 56 l 2130 11004 4 +UH 0 11 h 2224 11509 4 +PQ +SE +ID 1111 +TI 1760667399.942987680 +UH 0 13 l 2715 10931 4 +UH 0 47 h 2742 10921 4 +PQ +SE +ID 1112 +TI 1760667399.943006515 +UH 0 42 l 3589 10651 4 +UH 0 13 l 2615 10939 4 +UH 0 14 l 2586 10890 4 +UH 0 36 h 3451 10756 4 +UH 0 37 h 1726 11044 4 +UH 0 46 h 3551 10906 4 +PQ +SE +ID 1113 +TI 1760667399.943042993 +UH 0 8 l 3159 10471 4 +UH 0 51 h 3037 10993 4 +PQ +SE +ID 1114 +TI 1760667399.943060636 +UH 0 1 l 2992 10866 4 +UH 0 3 l 1815 5007 0 +UH 0 45 h 2860 11173 4 +UH 0 46 h 1829 10986 4 +PQ +SE +ID 1115 +TI 1760667399.943086624 +UH 0 21 l 1883 11233 4 +UH 0 37 h 1845 10841 4 +UH 0 38 h 1648 4958 0 +PQ +SE +ID 1116 +TI 1760667399.943105936 +UH 0 22 l 2992 8736 4 +UH 0 23 l 1705 8959 4 +UH 0 24 l 4311 8934 4 +UH 0 12 h 1563 8885 4 +UH 0 13 h 4141 8853 4 +UH 0 14 h 1570 9180 4 +UH 0 19 h 2286 9206 4 +UH 0 20 h 2199 8852 4 +PQ +SE +ID 1117 +TI 1760667399.943142414 +UH 0 54 l 2005 11013 4 +UH 0 45 h 1967 10748 4 +PQ +SE +ID 1118 +TI 1760667399.943160057 +UH 0 64 l 1783 0 5 +UH 0 64 h 1859 0 5 +BD GR Veto +PQ +SE +ID 1119 +TI 1760667399.943168401 +UH 0 27 l 3570 10332 4 +UH 0 28 l 2178 10689 4 +UH 0 20 h 3154 11109 4 +UH 0 21 h 2425 11386 4 +PQ +SE +ID 1120 +TI 1760667399.943196773 +UH 0 40 l 2756 10345 4 +UH 0 41 l 1827 10589 4 +UH 0 1 h 3237 11218 4 +PQ +SE +ID 1121 +TI 1760667399.943228960 +UH 0 48 l 2280 10486 4 +UH 0 49 l 2646 10581 4 +UH 0 50 l 2498 10458 4 +UH 0 25 h 3347 11171 4 +UH 0 26 h 1676 11398 4 +UH 0 27 h 2400 11178 4 +PQ +SE +ID 1122 +TI 1760667399.943266630 +UH 0 64 l 2357 0 5 +UH 0 64 h 2413 0 5 +BD GR Veto +PQ +SE +ID 1123 +TI 1760667399.943278074 +UH 0 30 l 2327 11014 4 +UH 0 31 l 2653 10887 4 +UH 0 33 h 2075 10530 4 +UH 0 34 h 1854 10729 4 +UH 0 27 h 2458 11246 4 +PQ +SE +ID 1124 +TI 1760667399.943322658 +UH 0 53 l 1825 10834 4 +UH 0 21 h 1793 11112 4 +PQ +SE +ID 1125 +TI 1760667399.943346023 +UH 0 64 l 2643 0 5 +UH 0 64 h 2622 0 5 +BD GR Veto +PQ +SE +ID 1126 +TI 1760667399.943354845 +UH 0 21 l 1833 11104 4 +UH 0 63 h 1764 4393 0 +UH 0 64 h 1671 0 5 +BD GR Veto +PQ +SE +ID 1127 +TI 1760667399.943372964 +UH 0 47 l 2533 9428 4 +UH 0 48 l 2218 9342 4 +UH 0 49 l 3786 9267 4 +UH 0 50 l 1595 9283 4 +UH 0 63 l 1617 1357 0 +UH 0 26 h 2567 9850 4 +UH 0 29 h 2958 9544 4 +UH 0 30 h 3056 9706 4 +PQ +SE +ID 1128 +TI 1760667399.943419218 +UH 0 64 l 2170 0 5 +UH 0 64 h 2219 0 5 +BD GR Veto +PQ +SE +ID 1129 +TI 1760667399.943427324 +UH 0 64 l 5692 0 5 +UH 0 0 h 1632 9252 4 +UH 0 64 h 5367 0 5 +BD GR Veto +PQ +SE +ID 1130 +TI 1760667399.943440914 +UH 0 5 l 1795 4829 0 +UH 0 31 h 1720 11268 4 +PQ +SE +ID 1131 +TI 1760667399.943456649 +UH 0 51 l 1826 4924 0 +UH 0 54 l 2202 10809 4 +UH 0 57 l 2913 10361 4 +UH 0 63 l 1848 10687 4 +UH 0 64 l 2841 0 5 +UH 0 12 h 1811 10886 4 +UH 0 13 h 1649 4128 0 +UH 0 18 h 1828 10913 4 +UH 0 20 h 2942 11065 4 +UH 0 21 h 1590 11321 4 +UH 0 24 h 2168 10906 4 +UH 0 64 h 2779 0 5 +BD GR Veto +PQ +SE +ID 1132 +TI 1760667399.943533420 +UH 0 2 l 2110 11117 4 +UH 0 64 l 1949 0 5 +UH 0 56 h 2130 11108 4 +UH 0 64 h 1906 0 5 +BD GR Veto +PQ +SE +ID 1133 +TI 1760667399.943572521 +UH 0 64 l 3656 0 5 +UH 0 64 h 3541 0 5 +BD GR Veto +PQ +SE +ID 1134 +TI 1760667399.943588495 +UH 0 45 l 1544 8715 4 +UH 0 46 l 4385 8601 4 +UH 0 47 l 1575 8801 4 +UH 0 32 h 4439 9210 4 +PQ +SE +ID 1135 +TI 1760667399.943631172 +UH 0 55 l 2011 10915 4 +UH 0 56 l 1681 5197 0 +UH 0 45 h 1645 5455 0 +UH 0 46 h 2135 11230 4 +PQ +SE +ID 1136 +TI 1760667399.943676471 +UH 0 10 l 3508 10542 4 +UH 0 11 l 1842 10347 4 +UH 0 44 h 3490 10884 4 +UH 0 30 h 1682 5358 0 +PQ +SE +ID 1137 +TI 1760667399.943735122 +UH 0 46 l 1524 5274 0 +UH 0 47 l 1560 4801 0 +UH 0 49 l 2072 10913 4 +UH 0 13 h 2148 11426 4 +UH 0 14 h 1676 5067 0 +PQ +SE +ID 1138 +TI 1760667399.943804979 +UH 0 64 l 3407 0 5 +UH 0 64 h 3338 0 5 +BD GR Veto +PQ +SE +ID 1139 +TI 1760667399.943830251 +UH 0 35 l 4170 10739 4 +UH 0 44 l 1885 10521 4 +UH 0 15 h 1964 11267 4 +UH 0 16 h 1633 11274 4 +UH 0 17 h 1734 11079 4 +UH 0 18 h 3940 10798 4 +PQ +SE +ID 1140 +TI 1760667399.943890094 +UH 0 64 l 4433 0 5 +UH 0 64 h 4277 0 5 +BD GR Veto +PQ +SE +ID 1141 +TI 1760667399.943905830 +UH 0 64 l 2068 0 5 +UH 0 64 h 2147 0 5 +BD GR Veto +PQ +SE +ID 1142 +TI 1760667399.943919897 +UH 0 25 l 1663 9405 4 +UH 0 26 l 4034 9282 4 +UH 0 27 l 1710 8965 4 +UH 0 28 l 3151 8867 4 +UH 0 11 h 3998 9452 4 +UH 0 20 h 3166 9387 4 +PQ +SE +ID 1143 +TI 1760667399.943976402 +UH 0 26 l 3284 9754 4 +UH 0 27 l 3996 9268 4 +UH 0 32 h 5242 9329 4 +UH 0 33 h 1721 9065 4 +UH 0 31 h 1569 9345 4 +PQ +SE +ID 1144 +TI 1760667399.944008111 +UH 0 64 l 5677 0 5 +UH 0 25 h 1535 9714 4 +UH 0 26 h 5399 9755 4 +UH 0 27 h 1603 9635 4 +BD GR Veto +PQ +SE +ID 1145 +TI 1760667399.944037199 +UH 0 35 l 1817 5087 0 +UH 0 30 l 3651 10894 4 +UH 0 47 h 3684 10883 4 +UH 0 51 h 1790 11029 4 +PQ +SE +ID 1146 +TI 1760667399.944077253 +UH 0 33 l 2061 10336 4 +UH 0 34 l 2629 10371 4 +UH 0 7 h 3244 11205 4 +PQ +SE +ID 1147 +TI 1760667399.944121599 +UH 0 52 l 2680 10743 4 +UH 0 53 l 2928 10689 4 +UH 0 64 l 2131 0 5 +UH 0 60 h 1881 10525 4 +UH 0 62 h 3685 10687 4 +UH 0 64 h 2320 0 5 +BD GR Veto +PQ +SE +ID 1148 +TI 1760667399.944152116 +UH 0 4 l 1711 5367 0 +UH 0 52 h 1707 5401 0 +PQ +SE +ID 1149 +TI 1760667399.944170236 +UH 0 16 l 1724 4631 0 +UH 0 19 h 1700 11741 4 +PQ +SE +ID 1150 +TI 1760667399.944188594 +UH 0 64 l 2990 0 5 +UH 0 64 h 2972 0 5 +BD GR Veto +PQ +SE +ID 1151 +TI 1760667399.965291738 +UH 0 37 l 1983 10902 4 +UH 0 14 h 1970 11293 4 +PQ +SE +ID 1152 +TI 1760667399.965346574 +UH 0 0 l 4427 8542 4 +UH 0 1 l 1631 8974 4 +UH 0 64 l 1643 0 5 +UH 0 14 h 4360 9512 4 +BD GR Veto +PQ +SE +ID 1153 +TI 1760667399.965368032 +UH 0 2 l 2190 11061 4 +UH 0 20 h 1945 11014 4 +UH 0 21 h 1738 11306 4 +PQ +SE +ID 1154 +TI 1760667399.965388774 +UH 0 13 l 2568 10889 4 +UH 0 14 l 1696 4883 0 +UH 0 52 h 1782 11226 4 +UH 0 53 h 2385 11042 4 +PQ +SE +ID 1155 +TI 1760667399.965412378 +UH 0 3 l 1735 4886 0 +UH 0 18 h 1772 11460 4 +PQ +SE +ID 1156 +TI 1760667399.965430498 +UH 0 27 l 4432 9815 4 +UH 0 0 h 2902 10133 4 +UH 0 1 h 3060 9900 4 +UH 0 2 h 1625 10032 4 +PQ +SE +ID 1157 +TI 1760667399.965451002 +UH 0 20 l 1805 10300 4 +UH 0 21 l 2427 10648 4 +UH 0 23 h 2586 11191 4 +PQ +SE +ID 1158 +TI 1760667399.965471506 +UH 0 0 l 1706 4580 0 +UH 0 1 l 1626 3224 0 +UH 0 23 h 1731 11533 4 +PQ +SE +ID 1159 +TI 1760667399.965489625 +UH 0 25 l 1680 5469 0 +PQ +SE +ID 1160 +TI 1760667399.965500593 +UH 0 33 l 3479 8340 4 +UH 0 34 l 1579 8606 4 +UH 0 17 l 2717 8760 4 +UH 0 20 l 2571 8758 4 +UH 0 17 h 2613 8918 4 +UH 0 18 h 1617 8824 4 +UH 0 19 h 2217 8786 4 +UH 0 20 h 1769 2824 0 +UH 0 25 h 3330 9048 4 +PQ +SE +ID 1161 +TI 1760667399.965550661 +UH 0 39 l 2007 4736 4 +UH 0 40 l 2356 4761 4 +UH 0 44 l 1963 5093 4 +UH 0 45 l 3964 5172 4 +UH 0 46 l 1618 4981 4 +UH 0 15 l 2101 10905 4 +UH 0 38 h 2063 10725 4 +UH 0 7 h 4638 5354 4 +UH 0 11 h 2829 5482 4 +PQ +SE +ID 1162 +TI 1760667399.965604782 +UH 0 56 l 2942 11009 4 +UH 0 58 l 3107 10427 4 +UH 0 59 l 2562 10530 4 +UH 0 45 h 3162 10476 4 +UH 0 46 h 2489 10518 4 +UH 0 55 h 3007 10407 4 +PQ +SE +ID 1163 +TI 1760667399.965644836 +UH 0 34 l 1594 5289 0 +UH 0 35 l 3292 8155 4 +UH 0 20 h 3283 8549 4 +PQ +SE +ID 1164 +TI 1760667399.965663909 +UH 0 64 l 2299 0 5 +UH 0 64 h 2341 0 5 +BD GR Veto +PQ +SE +ID 1165 +TI 1760667399.965672969 +UH 0 39 l 2398 10827 4 +UH 0 32 h 2325 10973 4 +PQ +SE +ID 1166 +TI 1760667399.965688228 +UH 0 55 l 1663 8531 4 +UH 0 56 l 4138 8573 4 +UH 0 57 l 1536 8481 4 +UH 0 44 h 4367 8293 4 +PQ +SE +ID 1167 +TI 1760667399.965714454 +UH 0 64 l 2621 0 5 +UH 0 54 h 1587 4742 0 +UH 0 64 h 2550 0 5 +BD GR Veto +PQ +SE +ID 1168 +TI 1760667399.965729475 +UH 0 64 l 1704 0 5 +UH 0 64 h 1784 0 5 +BD GR Veto +PQ +SE +ID 1169 +TI 1760667399.965737819 +UH 0 2 l 1705 5183 0 +UH 0 10 h 1623 5689 0 +PQ +SE +ID 1170 +TI 1760667399.965754985 +UH 0 56 l 2190 11109 4 +UH 0 46 h 2214 10427 4 +PQ +SE +ID 1171 +TI 1760667399.965772628 +UH 0 49 l 4346 8673 4 +UH 0 50 l 1745 8687 4 +UH 0 51 l 1625 5471 0 +UH 0 11 h 4604 9360 4 +PQ +SE +ID 1172 +TI 1760667399.965794801 +UH 0 45 l 1621 4928 0 +UH 0 47 l 1575 5081 0 +UH 0 48 l 2041 11147 4 +UH 0 37 h 1759 11303 4 +UH 0 38 h 2028 11133 4 +UH 0 39 h 1721 10922 4 +PQ +SE +ID 1173 +TI 1760667399.965825080 +UH 0 19 l 1650 8905 4 +UH 0 20 l 5443 8720 4 +UH 0 21 l 1816 8834 4 +UH 0 26 h 2554 9342 4 +UH 0 27 h 4523 9092 4 +PQ +SE +ID 1174 +TI 1760667399.965849876 +UH 0 52 l 1736 5129 0 +UH 0 53 l 1652 5051 0 +UH 0 64 l 3673 0 5 +UH 0 1 h 1728 4744 0 +UH 0 2 h 1743 5087 0 +UH 0 64 h 3581 0 5 +BD GR Veto +PQ +SE +ID 1175 +TI 1760667399.965877532 +UH 0 62 l 1636 8720 4 +UH 0 63 l 4147 8751 4 +UH 0 10 h 4175 9263 4 +PQ +SE +ID 1176 +TI 1760667399.965894699 +UH 0 5 l 1697 5047 0 +UH 0 7 l 1654 5187 0 +UH 0 43 h 1651 5460 0 +UH 0 46 h 1651 4145 0 +PQ +SE +ID 1177 +TI 1760667399.965932130 +UH 0 49 l 3269 9096 4 +UH 0 50 l 1575 9088 4 +UH 0 23 h 3298 9596 4 +PQ +SE +ID 1178 +TI 1760667399.965952396 +UH 0 44 l 1848 11116 4 +UH 0 16 h 1912 11186 4 +PQ +SE +ID 1179 +TI 1760667399.965969085 +UH 0 45 l 1602 8916 4 +UH 0 46 l 4667 8805 4 +UH 0 47 l 1537 9172 4 +UH 0 1 h 2566 9532 4 +UH 0 15 h 3791 9662 4 +PQ +SE +ID 1180 +TI 1760667399.965998411 +UH 0 64 l 2013 0 5 +UH 0 64 h 2070 0 5 +BD GR Veto +PQ +SE +ID 1181 +TI 1760667399.966006755 +UH 0 13 l 2162 10780 4 +UH 0 14 l 1844 4878 0 +UH 0 53 h 2376 11108 4 +PQ +SE +ID 1182 +TI 1760667399.966026782 +UH 0 64 l 2448 0 5 +UH 0 64 h 3075 0 5 +BD GR Veto +PQ +SE +ID 1183 +TI 1760667399.966033935 +UH 0 26 l 2705 11221 4 +UH 0 62 h 2713 11021 4 +PQ +SE +ID 1184 +TI 1760667399.966051578 +UH 0 9 l 1850 11294 4 +UH 0 9 h 1678 4954 0 +UH 0 10 h 1660 5080 0 +PQ +SE +ID 1185 +TI 1760667399.966071605 +UH 0 44 l 2153 10472 4 +UH 0 21 h 2226 11424 4 +PQ +SE +ID 1186 +TI 1760667399.966089725 +UH 0 22 l 1679 4671 0 +UH 0 23 l 2010 10697 4 +UH 0 58 h 1993 11061 4 +PQ +SE +ID 1187 +TI 1760667399.966108560 +UH 0 6 l 3594 10697 4 +UH 0 7 l 2046 10622 4 +UH 0 34 h 3937 10816 4 +PQ +SE +ID 1188 +TI 1760667399.966128349 +UH 0 2 l 2255 11029 4 +UH 0 14 h 2199 11470 4 +PQ +SE +ID 1189 +TI 1760667399.966145992 +UH 0 42 l 1618 8672 4 +UH 0 43 l 4274 8579 4 +UH 0 44 l 1524 8518 4 +UH 0 32 h 2890 8957 4 +UH 0 33 h 2870 8610 4 +PQ +SE +ID 1190 +TI 1760667399.966170310 +UH 0 1 l 2155 10776 4 +UH 0 12 h 2075 11363 4 +PQ +SE +ID 1191 +TI 1760667399.966187715 +UH 0 21 l 1747 5482 0 +UH 0 22 l 1955 11120 4 +UH 0 61 h 2096 10894 4 +PQ +SE +ID 1192 +TI 1760667399.966206789 +UH 0 26 l 2180 11420 4 +UH 0 27 l 1722 5042 0 +UH 0 33 h 2018 10396 4 +UH 0 34 h 1635 4917 0 +PQ +SE +ID 1193 +TI 1760667399.966229200 +UH 0 5 l 1930 10834 4 +UH 0 24 h 1862 11385 4 +PQ +SE +ID 1194 +TI 1760667399.966246128 +UH 0 43 l 1516 5499 0 +UH 0 45 l 2255 3144 0 +PQ +SE +ID 1195 +TI 1760667399.966261148 +UH 0 49 l 1679 5378 0 +UH 0 16 l 1678 4845 0 +UH 0 53 h 1692 4493 0 +UH 0 2 h 1803 10870 4 +PQ +SE +ID 1196 +TI 1760667399.966292381 +UH 0 25 l 2057 10910 4 +UH 0 26 l 4074 11014 4 +UH 0 29 l 2761 10344 4 +UH 0 1 h 4338 11054 4 +UH 0 2 h 2512 11184 4 +UH 0 4 h 2044 11405 4 +PQ +SE +ID 1197 +TI 1760667399.966326713 +UH 0 47 l 4251 10535 4 +UH 0 58 l 1570 2080 0 +UH 0 59 l 1637 1518 0 +UH 0 60 l 1598 1717 0 +UH 0 61 l 1685 1977 0 +UH 0 62 l 1690 1975 0 +UH 0 63 l 1691 2090 0 +UH 0 11 h 1700 10506 4 +UH 0 12 h 4153 10280 4 +PQ +SE +ID 1198 +TI 1760667399.966361999 +UH 0 21 l 1622 5116 0 +UH 0 22 l 2160 10951 4 +UH 0 62 h 2268 11138 4 +PQ +SE +ID 1199 +TI 1760667399.966381788 +UH 0 34 l 2345 10635 4 +UH 0 49 l 1919 10665 4 +UH 0 25 l 2072 10731 4 +UH 0 26 l 2370 10894 4 +UH 0 1 h 2050 11163 4 +UH 0 12 h 2704 11091 4 +UH 0 13 h 2350 10884 4 +PQ +SE +ID 1200 +TI 1760667399.966425657 +UH 0 26 l 3195 11176 4 +UH 0 27 l 2752 10675 4 +UH 0 37 h 3206 11358 4 +UH 0 38 h 2657 11248 4 +PQ +SE +ID 1201 +TI 1760667399.966448068 +UH 0 63 l 1557 10596 4 +UH 0 64 l 2742 0 5 +UH 0 41 h 2864 10428 4 +BD GR Veto +PQ +SE +ID 1202 +TI 1760667399.966465473 +UH 0 55 l 2324 10529 4 +UH 0 4 h 2466 11543 4 +PQ +SE +ID 1203 +TI 1760667399.966483592 +UH 0 64 l 5687 0 5 +UH 0 7 h 2331 11260 4 +UH 0 64 h 4681 0 5 +BD GR Veto +PQ +SE +ID 1204 +TI 1760667399.966499328 +UH 0 22 l 1767 5010 0 +UH 0 15 h 1784 12032 4 +PQ +SE +ID 1205 +TI 1760667399.966514587 +UH 0 47 l 1730 11017 4 +UH 0 49 h 1785 11191 4 +PQ +SE +ID 1206 +TI 1760667399.966532707 +UH 0 47 l 1556 4324 0 +UH 0 48 l 2112 10380 4 +UH 0 51 l 1870 10854 4 +UH 0 52 l 4629 10721 4 +UH 0 56 h 3703 10395 4 +UH 0 57 h 2723 10546 4 +UH 0 61 h 2229 10770 4 +PQ +SE +ID 1207 +TI 1760667399.966571331 +UH 0 64 l 2061 0 5 +UH 0 64 h 4273 0 5 +BD GR Veto +PQ +SE +ID 1208 +TI 1760667399.966580390 +UH 0 38 l 3557 8892 4 +UH 0 39 l 1604 8952 4 +UH 0 27 l 1674 3269 0 +UH 0 28 l 1717 3073 0 +UH 0 29 l 2333 8983 4 +UH 0 37 h 3631 9399 4 +UH 0 28 h 2429 9286 4 +UH 0 29 h 1674 3494 0 +PQ +SE +ID 1209 +TI 1760667399.966621875 +UH 0 64 l 3165 0 5 +UH 0 64 h 3145 0 5 +BD GR Veto +PQ +SE +ID 1210 +TI 1760667399.966629981 +UH 0 15 l 3153 10388 4 +UH 0 27 l 1633 1994 0 +UH 0 28 l 1705 1482 0 +UH 0 29 l 1684 2703 0 +UH 0 30 l 1659 2088 0 +UH 0 31 l 1749 2314 0 +UH 0 22 h 3097 10950 4 +PQ +SE +ID 1211 +TI 1760667399.966661453 +UH 0 8 l 2380 10880 4 +UH 0 9 l 1910 11055 4 +UH 0 10 l 2245 10885 4 +UH 0 11 l 1954 4779 0 +UH 0 45 h 2266 11168 4 +UH 0 46 h 2230 11076 4 +UH 0 47 h 2218 10999 4 +PQ +SE +ID 1212 +TI 1760667399.966691017 +UH 0 45 l 2327 9578 4 +UH 0 46 l 3007 9533 4 +UH 0 47 l 1553 9791 4 +UH 0 50 l 3082 9524 4 +UH 0 51 l 1693 4520 0 +UH 0 21 h 3868 10380 4 +UH 0 23 h 1583 2849 0 +UH 0 30 h 1740 10567 4 +UH 0 31 h 2952 9877 4 +PQ +SE +ID 1213 +TI 1760667399.966736555 +UH 0 64 l 2641 0 5 +UH 0 46 h 1924 10179 4 +UH 0 64 h 3331 0 5 +BD GR Veto +PQ +SE +ID 1214 +TI 1760667399.966752767 +UH 0 21 l 1702 11061 4 +UH 0 22 l 2932 10696 4 +UH 0 58 h 3000 10276 4 +PQ +SE +ID 1215 +TI 1760667399.986790418 +UH 0 8 l 2529 10502 4 +UH 0 9 l 1794 10628 4 +UH 0 10 l 2822 10407 4 +UH 0 53 h 2179 10917 4 +UH 0 54 h 2049 11056 4 +UH 0 57 h 2517 11035 4 +UH 0 58 h 1677 10774 4 +PQ +SE +ID 1216 +TI 1760667399.986865043 +UH 0 64 l 3412 0 5 +UH 0 64 h 3389 0 5 +BD GR Veto +PQ +SE +ID 1217 +TI 1760667399.986874580 +UH 0 22 l 4034 10751 4 +UH 0 23 l 1805 4994 0 +UH 0 3 h 1681 4070 0 +UH 0 4 h 1638 4073 0 +UH 0 9 h 2898 10733 4 +UH 0 10 h 2669 10976 4 +PQ +SE +ID 1218 +TI 1760667399.986910820 +UH 0 53 l 1604 8555 4 +UH 0 54 l 5550 8631 4 +UH 0 55 l 1512 8554 4 +UH 0 58 h 3841 8156 4 +UH 0 59 h 3195 8346 4 +PQ +SE +ID 1219 +TI 1760667399.986937046 +UH 0 35 l 2715 10587 4 +UH 0 48 l 2192 11028 4 +UH 0 49 l 1649 5415 0 +UH 0 48 h 2758 10991 4 +UH 0 61 h 2273 10930 4 +UH 0 63 h 1692 10981 4 +PQ +SE +ID 1220 +TI 1760667399.986974716 +UH 0 64 l 1867 0 5 +UH 0 64 h 1921 0 5 +BD GR Veto +PQ +SE +ID 1221 +TI 1760667399.986983060 +UH 0 2 l 2460 11131 4 +UH 0 14 h 2380 11070 4 +PQ +SE +ID 1222 +TI 1760667399.987002372 +UH 0 56 l 3384 10961 4 +UH 0 35 h 3393 10481 4 +PQ +SE +ID 1223 +TI 1760667399.987020015 +UH 0 17 l 1972 11108 4 +UH 0 13 h 1901 11198 4 +UH 0 14 h 1598 4586 0 +PQ +SE +ID 1224 +TI 1760667399.987042188 +UH 0 51 l 1688 5488 0 +UH 0 40 h 1619 5220 0 +PQ +SE +ID 1225 +TI 1760667399.987060546 +UH 0 13 l 4909 10926 4 +UH 0 14 l 2317 10680 4 +UH 0 2 h 2929 11288 4 +UH 0 3 h 4415 10893 4 +PQ +SE +ID 1226 +TI 1760667399.987084627 +UH 0 12 l 3162 9711 4 +UH 0 13 l 1668 5248 0 +UH 0 17 l 2275 10227 4 +UH 0 18 l 3125 10067 4 +UH 0 43 h 3116 10418 4 +UH 0 46 h 1888 10333 4 +UH 0 47 h 3579 10191 4 +PQ +SE +ID 1227 +TI 1760667399.987125158 +UH 0 61 l 2606 8770 4 +UH 0 62 l 1616 5360 0 +UH 0 11 h 2575 9415 4 +PQ +SE +ID 1228 +TI 1760667399.987145900 +UH 0 33 l 1966 10662 4 +UH 0 34 l 3109 10532 4 +UH 0 35 l 2787 10771 4 +UH 0 38 l 2283 10627 4 +UH 0 43 h 1970 10827 4 +UH 0 44 h 4400 10595 4 +UH 0 50 h 2389 10694 4 +PQ +SE +ID 1229 +TI 1760667399.987185716 +UH 0 19 l 2169 10684 4 +UH 0 9 h 2128 11466 4 +PQ +SE +ID 1230 +TI 1760667399.987208843 +UH 0 64 l 1769 0 5 +UH 0 24 h 1618 4765 0 +UH 0 25 h 1591 5142 0 +BD GR Veto +PQ +SE +ID 1231 +TI 1760667399.987224578 +UH 0 6 l 1645 2622 0 +UH 0 7 l 1641 2991 0 +UH 0 19 l 1625 5899 0 +UH 0 20 l 3982 8875 4 +UH 0 21 l 1599 9357 4 +UH 0 13 h 1746 3616 0 +UH 0 15 h 3794 9977 4 +UH 0 16 h 1603 10049 4 +PQ +SE +ID 1232 +TI 1760667399.987263679 +UH 0 64 l 3295 0 5 +UH 0 64 h 3253 0 5 +BD GR Veto +PQ +SE +ID 1233 +TI 1760667399.987272977 +UH 0 62 l 1971 10966 4 +UH 0 35 h 1958 10789 4 +PQ +SE +ID 1234 +TI 1760667399.987290859 +UH 0 64 l 1725 0 5 +UH 0 64 h 1821 0 5 +BD GR Veto +PQ +SE +ID 1235 +TI 1760667399.987298965 +UH 0 37 l 2761 10857 4 +UH 0 61 h 2762 10712 4 +PQ +SE +ID 1236 +TI 1760667399.987317085 +UH 0 2 l 2378 11081 4 +UH 0 38 h 2370 10722 4 +PQ +SE +ID 1237 +TI 1760667399.987334966 +UH 0 9 l 2088 11161 4 +UH 0 55 h 1745 4185 0 +UH 0 56 h 1950 10905 4 +PQ +SE +ID 1238 +TI 1760667399.987356901 +UH 0 21 l 3875 10189 4 +UH 0 29 l 3337 9832 4 +UH 0 30 l 1616 10240 4 +UH 0 12 h 3277 10460 4 +UH 0 14 h 3776 10689 4 +PQ +SE +ID 1239 +TI 1760667399.987390279 +UH 0 64 l 2234 0 5 +UH 0 64 h 2285 0 5 +BD GR Veto +PQ +SE +ID 1240 +TI 1760667399.987398386 +UH 0 2 l 2618 10996 4 +UH 0 64 l 2157 0 5 +UH 0 48 h 2602 10656 4 +UH 0 64 h 2213 0 5 +BD GR Veto +PQ +SE +ID 1241 +TI 1760667399.987421512 +UH 0 44 l 2965 10745 4 +UH 0 10 h 2712 11028 4 +UH 0 11 h 1897 10956 4 +PQ +SE +ID 1242 +TI 1760667399.987443208 +UH 0 13 l 2405 10849 4 +UH 0 16 h 2365 11330 4 +PQ +SE +ID 1243 +TI 1760667399.987461328 +UH 0 64 l 1631 0 5 +UH 0 64 h 1675 0 5 +BD GR Veto +PQ +SE +ID 1244 +TI 1760667399.987470149 +UH 0 21 l 2185 10922 4 +UH 0 27 l 3751 10625 4 +UH 0 7 h 4330 11196 4 +UH 0 8 h 1745 11626 4 +PQ +SE +ID 1245 +TI 1760667399.987498521 +UH 0 27 l 2114 10672 4 +UH 0 33 h 2034 10901 4 +PQ +SE +ID 1246 +TI 1760667399.987517118 +UH 0 7 l 1853 11312 4 +UH 0 8 l 1678 5207 0 +UH 0 44 h 1895 11307 4 +PQ +SE +ID 1247 +TI 1760667399.987539291 +UH 0 7 l 2285 11043 4 +UH 0 8 l 2156 11002 4 +UH 0 34 h 1727 10747 4 +UH 0 35 h 2545 10827 4 +PQ +SE +ID 1248 +TI 1760667399.987561941 +UH 0 64 l 4226 0 5 +UH 0 0 h 1666 11318 4 +UH 0 64 h 4004 0 5 +BD GR Veto +PQ +SE +ID 1249 +TI 1760667399.987575769 +UH 0 1 l 2208 10698 4 +UH 0 4 l 2298 10496 4 +UH 0 12 h 2826 11000 4 +UH 0 13 h 1621 11190 4 +PQ +SE +ID 1250 +TI 1760667399.987604379 +UH 0 7 l 3657 10188 4 +UH 0 8 l 1690 10240 4 +UH 0 2 h 3859 10605 4 +PQ +SE +ID 1251 +TI 1760667399.987625122 +UH 0 63 l 1546 8759 4 +UH 0 64 l 5671 0 5 +UH 0 29 h 1627 9202 4 +UH 0 30 h 2423 9339 4 +UH 0 31 h 4157 8699 4 +UH 0 64 h 2052 0 5 +BD GR Veto +PQ +SE +ID 1252 +TI 1760667399.987648963 +UH 0 9 l 3233 10476 4 +UH 0 11 l 3008 10550 4 +UH 0 12 l 1873 10533 4 +UH 0 14 l 1748 4492 0 +UH 0 15 l 2331 10382 4 +UH 0 30 l 1617 2087 0 +UH 0 31 l 1625 2644 0 +UH 0 54 h 3154 10983 4 +UH 0 23 h 2211 11136 4 +UH 0 25 h 1646 11218 4 +UH 0 27 h 3066 10929 4 +PQ +SE +ID 1253 +TI 1760667399.987710952 +UH 0 40 l 1730 5311 0 +UH 0 22 h 1817 11032 4 +UH 0 23 h 1576 5216 0 +PQ +SE +ID 1254 +TI 1760667399.987731695 +UH 0 30 l 2742 11281 4 +UH 0 41 h 1639 11204 4 +UH 0 42 h 2652 10700 4 +PQ +SE +ID 1255 +TI 1760667399.987752199 +UH 0 17 l 1978 10665 4 +UH 0 18 l 1820 4710 0 +UH 0 12 h 2210 11317 4 +PQ +SE +ID 1256 +TI 1760667399.987773418 +UH 0 3 l 5683 8836 4 +UH 0 4 l 1604 9157 4 +UH 0 29 h 1574 9406 4 +UH 0 30 h 5511 9481 4 +UH 0 31 h 1563 8987 4 +PQ +SE +ID 1257 +TI 1760667399.987798690 +UH 0 32 l 1790 11010 4 +UH 0 33 l 2530 10589 4 +UH 0 47 h 1969 10957 4 +UH 0 48 h 2364 10972 4 +PQ +SE +ID 1258 +TI 1760667399.987818956 +UH 0 52 l 1751 4811 0 +UH 0 6 h 1704 5534 0 +PQ +SE +ID 1259 +TI 1760667399.987837553 +UH 0 1 l 2348 11238 4 +UH 0 46 h 2286 10368 4 +PQ +SE +ID 1260 +TI 1760667399.987855195 +UH 0 37 l 1913 10975 4 +UH 0 38 l 3082 10860 4 +UH 0 18 h 3544 10810 4 +PQ +SE +ID 1261 +TI 1760667399.987875223 +UH 0 57 l 1963 10741 4 +UH 0 58 l 1643 4510 0 +UH 0 64 l 2330 0 5 +UH 0 2 h 2169 11375 4 +UH 0 64 h 2371 0 5 +BD GR Veto +PQ +SE +ID 1262 +TI 1760667399.987901449 +UH 0 27 l 1879 11108 4 +UH 0 61 h 1807 11222 4 +PQ +SE +ID 1263 +TI 1760667399.987919569 +UH 0 39 l 1713 5217 0 +UH 0 54 h 1625 4786 0 +PQ +SE +ID 1264 +TI 1760667399.987937211 +UH 0 64 l 4153 0 5 +UH 0 64 h 4024 0 5 +BD GR Veto +PQ +SE +ID 1265 +TI 1760667399.987944841 +UH 0 4 l 1941 11048 4 +UH 0 5 l 1776 3877 0 +UH 0 64 l 4085 0 5 +UH 0 2 h 1775 11387 4 +UH 0 3 h 2271 10945 4 +UH 0 64 h 3702 0 5 +BD GR Veto +PQ +SE +ID 1266 +TI 1760667399.987971067 +UH 0 60 l 1630 4071 0 +UH 0 18 l 1652 4764 0 +UH 0 19 l 1673 5438 0 +UH 0 20 l 2160 10497 4 +UH 0 38 h 1773 5051 0 +UH 0 39 h 1677 4581 0 +UH 0 40 h 1978 10970 4 +UH 0 54 h 1632 5335 0 +PQ +SE +ID 1267 +TI 1760667399.988021135 +UH 0 37 l 1598 5301 0 +UH 0 64 l 2311 0 5 +UH 0 0 h 2410 11225 4 +BD GR Veto +PQ +SE +ID 1268 +TI 1760667399.988038301 +UH 0 40 l 1561 8999 4 +UH 0 41 l 4241 9023 4 +UH 0 42 l 1608 9148 4 +UH 0 36 h 4355 9405 4 +PQ +SE +ID 1269 +TI 1760667399.988061666 +UH 0 42 l 2124 11039 4 +UH 0 43 l 2006 10872 4 +UH 0 16 h 2099 11236 4 +UH 0 17 h 2010 11015 4 +PQ +SE +ID 1270 +TI 1760667399.988084316 +UH 0 55 l 2577 10691 4 +UH 0 64 l 2000 0 5 +UH 0 9 h 2673 11322 4 +UH 0 64 h 2063 0 5 +BD GR Veto +PQ +SE +ID 1271 +TI 1760667399.988123893 +UH 0 14 l 2201 10573 4 +UH 0 5 h 2137 11387 4 +PQ +SE +ID 1272 +TI 1760667399.988142013 +UH 0 64 h 1690 0 5 +BD GR Veto +PQ +SE +ID 1273 +TI 1760667399.988147735 +UH 0 20 l 1692 4985 0 +UH 0 23 l 1792 5020 0 +UH 0 12 h 1652 11906 4 +UH 0 13 h 1610 4725 0 +PQ +SE +ID 1274 +TI 1760667399.988174438 +UH 0 24 l 2141 10962 4 +UH 0 60 h 2009 10086 4 +PQ +SE +ID 1275 +TI 1760667399.988191604 +UH 0 64 l 2166 0 5 +UH 0 64 h 2197 0 5 +BD GR Veto +PQ +SE +ID 1276 +TI 1760667399.988199234 +UH 0 29 l 2039 10714 4 +UH 0 30 l 2308 10999 4 +UH 0 54 h 2688 11249 4 +PQ +SE +ID 1277 +TI 1760667399.988218784 +UH 0 49 l 2671 10904 4 +UH 0 14 h 2580 10779 4 +UH 0 15 h 1692 10945 4 +PQ +SE +ID 1278 +TI 1760667399.988239288 +UH 0 27 l 2542 10792 4 +UH 0 48 h 2499 10681 4 +PQ +SE +ID 1279 +TI 1760667400.008800745 +UH 0 44 l 2094 10371 4 +UH 0 45 l 2171 10326 4 +UH 0 29 h 2795 11184 4 +PQ +SE +ID 1280 +TI 1760667400.008857011 +UH 0 29 l 1942 11114 4 +UH 0 3 h 1966 11168 4 +PQ +SE +ID 1281 +TI 1760667400.008876085 +UH 0 1 l 2708 11221 4 +UH 0 2 l 1739 11114 4 +UH 0 21 h 2695 11350 4 +UH 0 22 h 1736 11125 4 +PQ +SE +ID 1282 +TI 1760667400.008899211 +UH 0 48 l 1554 3907 0 +UH 0 49 l 2570 10959 4 +UH 0 21 h 1604 4067 0 +UH 0 29 h 1607 4143 0 +UH 0 30 h 2348 10954 4 +UH 0 31 h 1705 10395 4 +PQ +SE +ID 1283 +TI 1760667400.008932828 +UH 0 38 l 1681 4872 0 +UH 0 25 l 1628 6850 0 +UH 0 26 l 2105 11149 4 +UH 0 27 l 3081 10559 4 +UH 0 41 h 3603 11260 4 +UH 0 42 h 1763 4475 0 +UH 0 51 h 1678 1542 0 +PQ +SE +ID 1284 +TI 1760667400.008977890 +UH 0 39 l 3647 10447 4 +UH 0 56 l 2523 10910 4 +UH 0 57 l 2478 10638 4 +UH 0 11 h 3678 11243 4 +UH 0 25 h 3406 11058 4 +PQ +SE +ID 1285 +TI 1760667400.009017944 +UH 0 46 l 1679 4596 0 +UH 0 5 h 1774 11560 4 +PQ +SE +ID 1286 +TI 1760667400.009036779 +UH 0 50 l 2453 10614 4 +UH 0 10 h 2447 11669 4 +PQ +SE +ID 1287 +TI 1760667400.009054899 +UH 0 24 l 1804 5098 0 +UH 0 26 l 2160 11469 4 +UH 0 55 h 1759 4725 0 +UH 0 62 h 2161 10974 4 +PQ +SE +ID 1288 +TI 1760667400.009092569 +UH 0 25 l 1970 10826 4 +UH 0 21 h 1903 11545 4 +PQ +SE +ID 1289 +TI 1760667400.009110689 +UH 0 29 l 5730 9155 4 +UH 0 23 h 1798 9269 4 +UH 0 24 h 5202 9158 4 +UH 0 25 h 1528 9482 4 +PQ +SE +ID 1290 +TI 1760667400.009133338 +UH 0 64 l 2094 0 5 +UH 0 64 h 2139 0 5 +BD GR Veto +PQ +SE +ID 1291 +TI 1760667400.009141206 +UH 0 49 l 3094 10865 4 +UH 0 9 h 2927 10935 4 +UH 0 10 h 1734 11271 4 +PQ +SE +ID 1292 +TI 1760667400.009161472 +UH 0 64 l 2082 0 5 +UH 0 26 h 1968 11374 4 +UH 0 64 h 1727 0 5 +BD GR Veto +PQ +SE +ID 1293 +TI 1760667400.009176969 +UH 0 10 l 3496 9851 4 +UH 0 11 l 1736 9678 4 +UH 0 12 l 2621 9702 4 +UH 0 37 h 1713 10466 4 +UH 0 38 h 2910 10271 4 +UH 0 39 h 1867 10049 4 +UH 0 40 h 1576 2606 0 +UH 0 55 h 1984 9953 4 +UH 0 56 h 2291 10164 4 +PQ +SE +ID 1294 +TI 1760667400.009217977 +UH 0 53 l 2182 10706 4 +UH 0 64 l 2358 0 5 +UH 0 0 h 2425 11267 4 +UH 0 64 h 2156 0 5 +BD GR Veto +PQ +SE +ID 1295 +TI 1760667400.009238004 +UH 0 40 l 1835 10823 4 +UH 0 41 l 1515 5376 0 +UH 0 6 l 2395 10920 4 +UH 0 31 l 2780 10891 4 +UH 0 64 l 2542 0 5 +UH 0 35 h 2383 10848 4 +UH 0 42 h 2833 10673 4 +UH 0 50 h 1718 3936 0 +UH 0 51 h 1700 5009 0 +UH 0 52 h 1653 4639 0 +UH 0 64 h 2567 0 5 +BD GR Veto +PQ +SE +ID 1296 +TI 1760667400.009296178 +UH 0 64 l 1938 0 5 +UH 0 64 h 2392 0 5 +BD GR Veto +PQ +SE +ID 1297 +TI 1760667400.009303092 +UH 0 11 l 1724 4220 0 +UH 0 54 h 1562 5481 0 +PQ +SE +ID 1298 +TI 1760667400.009320259 +UH 0 25 l 2619 10744 4 +UH 0 20 h 2549 11003 4 +PQ +SE +ID 1299 +TI 1760667400.009337902 +UH 0 11 l 2782 10635 4 +UH 0 15 l 2327 10529 4 +UH 0 16 l 1921 4735 0 +UH 0 30 l 1609 1891 0 +UH 0 31 l 1638 2294 0 +UH 0 38 h 3039 11078 4 +UH 0 40 h 2242 10688 4 +PQ +SE +ID 1300 +TI 1760667400.009377956 +UH 0 17 l 2274 10768 4 +UH 0 18 l 3694 10567 4 +UH 0 19 l 2764 11009 4 +UH 0 47 h 4464 10617 4 +UH 0 49 h 2751 10775 4 +PQ +SE +ID 1301 +TI 1760667400.009405612 +UH 0 32 l 1805 4674 0 +UH 0 8 h 1772 11945 4 +PQ +SE +ID 1302 +TI 1760667400.009423255 +UH 0 19 l 2189 10979 4 +UH 0 21 l 1595 5357 0 +UH 0 24 l 1782 4734 0 +UH 0 28 l 1773 5063 0 +UH 0 29 l 2257 10618 4 +UH 0 45 h 2052 11023 4 +UH 0 46 h 1581 4141 0 +UH 0 47 h 1824 10958 4 +UH 0 56 h 2392 11160 4 +PQ +SE +ID 1303 +TI 1760667400.009473800 +UH 0 64 l 1705 0 5 +UH 0 64 h 2787 0 5 +BD GR Veto +PQ +SE +ID 1304 +TI 1760667400.009481668 +UH 0 15 l 1681 5203 0 +UH 0 16 l 2031 10650 4 +UH 0 46 h 2101 10991 4 +PQ +SE +ID 1305 +TI 1760667400.009501218 +UH 0 55 l 1799 10759 4 +UH 0 56 l 2252 10957 4 +UH 0 38 h 2662 11299 4 +UH 0 64 h 1669 0 5 +BD GR Veto +PQ +SE +ID 1306 +TI 1760667400.009523153 +UH 0 1 l 2691 10975 4 +UH 0 36 h 2700 11204 4 +PQ +SE +ID 1307 +TI 1760667400.009540557 +UH 0 57 l 1942 11005 4 +UH 0 2 h 2069 11536 4 +PQ +SE +ID 1308 +TI 1760667400.009558677 +UH 0 12 l 4201 8456 4 +UH 0 13 l 1601 9112 4 +UH 0 19 l 1773 3042 0 +UH 0 21 l 2883 8980 4 +UH 0 4 h 1660 9617 4 +UH 0 5 h 5468 9352 4 +PQ +SE +ID 1309 +TI 1760667400.009610176 +UH 0 30 l 4359 10900 4 +UH 0 59 h 4070 10911 4 +UH 0 60 h 1770 10683 4 +PQ +SE +ID 1310 +TI 1760667400.009638309 +UH 0 39 l 1758 5192 0 +UH 0 49 l 3085 4858 4 +UH 0 39 h 1779 5228 0 +UH 0 21 h 3113 5239 4 +PQ +SE +ID 1311 +TI 1760667400.009670495 +UH 0 56 l 2628 10897 4 +UH 0 57 l 1634 10664 4 +UH 0 62 h 2844 10461 4 +PQ +SE +ID 1312 +TI 1760667400.009689807 +UH 0 56 l 1595 8230 4 +UH 0 57 l 4311 7860 4 +UH 0 58 l 1557 7811 4 +UH 0 11 h 1760 8832 4 +UH 0 12 h 4139 8635 4 +PQ +SE +ID 1313 +TI 1760667400.009714841 +UH 0 10 l 1915 11212 4 +UH 0 39 h 1922 10817 4 +PQ +SE +ID 1314 +TI 1760667400.009733438 +UH 0 39 l 1617 5199 0 +UH 0 25 h 1525 5222 0 +PQ +SE +ID 1315 +TI 1760667400.009751081 +UH 0 2 l 1812 5338 0 +UH 0 5 l 1721 4491 0 +UH 0 28 h 1705 5051 0 +UH 0 29 h 1782 11457 4 +PQ +SE +ID 1316 +TI 1760667400.009780883 +UH 0 49 l 3232 10953 4 +UH 0 50 h 3344 10187 4 +PQ +SE +ID 1317 +TI 1760667400.009798288 +UH 0 24 l 2004 11224 4 +UH 0 1 h 1949 11624 4 +PQ +SE +ID 1318 +TI 1760667400.009815692 +UH 0 3 l 2090 10041 4 +UH 0 19 l 3735 10287 4 +UH 0 20 l 1712 10054 4 +UH 0 56 h 2116 10655 4 +UH 0 57 h 2603 10777 4 +UH 0 58 h 2674 10432 4 +PQ +SE +ID 1319 +TI 1760667400.009847402 +UH 0 64 l 3093 0 5 +UH 0 64 h 2990 0 5 +BD GR Veto +PQ +SE +ID 1320 +TI 1760667400.009854555 +UH 0 35 l 2244 10907 4 +UH 0 6 h 2153 11288 4 +UH 0 7 h 1678 11339 4 +PQ +SE +ID 1321 +TI 1760667400.009875535 +UH 0 63 l 2296 10660 4 +UH 0 43 h 2333 11176 4 +PQ +SE +ID 1322 +TI 1760667400.009890556 +UH 0 20 l 2201 10312 4 +UH 0 21 l 1750 4915 0 +UH 0 24 l 1798 4274 0 +UH 0 27 h 1658 11151 4 +UH 0 28 h 2455 10922 4 +PQ +SE +ID 1323 +TI 1760667400.009918689 +UH 0 16 l 2378 10998 4 +UH 0 34 h 2305 10306 4 +PQ +SE +ID 1324 +TI 1760667400.009936094 +UH 0 52 l 2281 11003 4 +UH 0 54 h 2197 10988 4 +PQ +SE +ID 1325 +TI 1760667400.009953498 +UH 0 18 l 2976 9979 4 +UH 0 19 l 1637 10406 4 +UH 0 10 h 2064 10845 4 +UH 0 11 h 2527 10676 4 +PQ +SE +ID 1326 +TI 1760667400.009977817 +UH 0 4 l 2340 11046 4 +UH 0 54 h 1593 4255 0 +UH 0 55 h 2070 10962 4 +UH 0 56 h 1792 11225 4 +PQ +SE +ID 1327 +TI 1760667400.009999275 +UH 0 58 l 1603 3903 0 +UH 0 62 l 1614 9544 4 +UH 0 63 l 3483 9264 4 +UH 0 8 h 1605 4512 0 +UH 0 18 h 1959 9756 4 +UH 0 19 h 3069 9941 4 +PQ +SE +ID 1328 +TI 1760667400.010035037 +UH 0 14 l 2522 10649 4 +UH 0 15 l 1671 5039 0 +UH 0 47 h 2563 11053 4 +PQ +SE +ID 1329 +TI 1760667400.010055065 +UH 0 38 l 4056 10588 4 +UH 0 39 l 2106 10599 4 +UH 0 20 h 4598 10905 4 +PQ +SE +ID 1330 +TI 1760667400.010075330 +UH 0 49 l 1519 5409 0 +UH 0 50 l 1607 5107 0 +UH 0 36 h 1684 3829 0 +PQ +SE +ID 1331 +TI 1760667400.010095357 +UH 0 48 l 2002 10697 4 +UH 0 29 h 2041 11395 4 +PQ +SE +ID 1332 +TI 1760667400.010113000 +UH 0 34 l 1583 5440 0 +UH 0 35 l 1588 8000 4 +UH 0 36 l 4412 7594 4 +UH 0 37 l 1592 7961 4 +UH 0 34 h 4290 8086 4 +PQ +SE +ID 1333 +TI 1760667400.010136842 +UH 0 12 l 2841 10397 4 +UH 0 15 l 2220 10926 4 +UH 0 31 l 1619 2300 0 +UH 0 35 h 2189 10904 4 +UH 0 36 h 2127 11000 4 +UH 0 10 h 1641 5216 0 +UH 0 11 h 2060 11235 4 +PQ +SE +ID 1334 +TI 1760667400.010177850 +UH 0 13 l 2583 10505 4 +UH 0 14 l 1799 4585 0 +UH 0 24 l 4106 10832 4 +UH 0 64 l 1692 0 5 +UH 0 0 h 2983 11269 4 +UH 0 13 h 2027 11111 4 +UH 0 14 h 3459 11133 4 +BD GR Veto +PQ +SE +ID 1335 +TI 1760667400.010214805 +UH 0 43 l 1880 11102 4 +UH 0 50 h 2013 11319 4 +PQ +SE +ID 1336 +TI 1760667400.010232686 +UH 0 63 l 1728 5205 0 +UH 0 18 h 1789 11187 4 +PQ +SE +ID 1337 +TI 1760667400.010247468 +UH 0 46 l 2151 10827 4 +UH 0 48 l 1915 11206 4 +UH 0 52 h 1985 11245 4 +UH 0 53 h 1791 11083 4 +UH 0 55 h 2056 10728 4 +PQ +SE +ID 1338 +TI 1760667400.010281324 +UH 0 37 l 2806 10652 4 +UH 0 38 l 2342 10650 4 +UH 0 43 h 1648 11051 4 +UH 0 44 h 3530 10851 4 +PQ +SE +ID 1339 +TI 1760667400.010303735 +UH 0 52 l 2572 10910 4 +UH 0 4 h 2593 11321 4 +PQ +SE +ID 1340 +TI 1760667400.010326862 +UH 0 15 l 1734 4520 0 +UH 0 18 l 2345 10750 4 +UH 0 20 l 1836 5046 0 +UH 0 36 h 2391 11338 4 +UH 0 37 h 1801 11590 4 +UH 0 41 h 1657 4062 0 +PQ +SE +ID 1341 +TI 1760667400.010365486 +UH 0 32 l 1742 5256 0 +UH 0 59 h 1683 4509 0 +PQ +SE +ID 1342 +TI 1760667400.010383129 +UH 0 63 l 1527 5097 0 +UH 0 64 l 1749 0 5 +UH 0 64 h 2153 0 5 +BD GR Veto +PQ +SE +ID 1343 +TI 1760667400.030472755 +UH 0 6 l 3624 11000 4 +UH 0 61 h 3302 10478 4 +UH 0 62 h 1876 10369 4 +PQ +SE +ID 1344 +TI 1760667400.030545949 +UH 0 41 l 3239 10485 4 +UH 0 47 l 1542 5335 0 +UH 0 53 h 1592 4187 0 +UH 0 57 h 3300 10388 4 +PQ +SE +ID 1345 +TI 1760667400.030608654 +UH 0 32 l 1816 10806 4 +UH 0 33 l 4692 10360 4 +UH 0 34 l 2236 10546 4 +UH 0 61 h 3144 10603 4 +UH 0 62 h 4072 10349 4 +PQ +SE +ID 1346 +TI 1760667400.030657529 +UH 0 48 l 2184 9177 4 +UH 0 49 l 3559 9087 4 +UH 0 50 l 1574 9109 4 +UH 0 29 h 4201 9694 4 +PQ +SE +ID 1347 +TI 1760667400.030705928 +UH 0 40 l 2195 9968 4 +UH 0 41 l 1528 10193 4 +UH 0 42 l 4036 10052 4 +UH 0 44 l 2170 10059 4 +UH 0 10 h 3282 10518 4 +UH 0 11 h 1715 10448 4 +UH 0 12 h 2182 10277 4 +UH 0 14 h 2819 10235 4 +UH 0 15 h 1640 10405 4 +PQ +SE +ID 1348 +TI 1760667400.030782938 +UH 0 15 l 4847 9774 4 +UH 0 17 l 2379 9958 4 +UH 0 26 l 1781 1649 0 +UH 0 27 l 1741 1606 0 +UH 0 28 l 1785 1504 0 +UH 0 29 l 1850 1542 0 +UH 0 30 l 1848 1584 0 +UH 0 31 l 2050 1607 0 +UH 0 62 h 2752 9769 4 +UH 0 63 h 4331 9757 4 +UH 0 64 h 1746 0 5 +BD GR Veto +PQ +SE +ID 1349 +TI 1760667400.030877113 +UH 0 47 l 3100 10448 4 +UH 0 59 l 1570 2030 0 +UH 0 61 l 1656 2061 0 +UH 0 62 l 1645 2013 0 +UH 0 63 l 1578 1751 0 +UH 0 29 h 2835 11153 4 +UH 0 30 h 1792 11424 4 +PQ +SE +ID 1350 +TI 1760667400.030951738 +UH 0 40 l 1557 8935 4 +UH 0 41 l 3114 8961 4 +UH 0 27 l 1648 8746 4 +UH 0 28 l 3997 8825 4 +UH 0 34 h 3755 8940 4 +UH 0 55 h 3370 8756 4 +PQ +SE +ID 1351 +TI 1760667400.031029462 +UH 0 34 l 2312 10535 4 +UH 0 35 l 3589 10701 4 +UH 0 13 h 4355 11114 4 +PQ +SE +ID 1352 +TI 1760667400.031072139 +UH 0 9 l 3177 10890 4 +UH 0 10 l 1804 4824 0 +UH 0 11 l 1742 3542 0 +UH 0 18 l 2206 10641 4 +UH 0 59 h 3169 10409 4 +UH 0 60 h 2397 10214 4 +PQ +SE +ID 1353 +TI 1760667400.031139850 +UH 0 0 l 1627 8778 4 +UH 0 1 l 2978 9152 4 +UH 0 64 l 4204 0 5 +UH 0 17 h 2813 9089 4 +UH 0 20 h 3256 8878 4 +UH 0 21 h 2205 9142 4 +UH 0 64 h 1843 0 5 +BD GR Veto +PQ +SE +ID 1354 +TI 1760667400.031210660 +UH 0 29 l 2155 10590 4 +UH 0 30 l 1826 10987 4 +UH 0 3 h 2455 11165 4 +PQ +SE +ID 1355 +TI 1760667400.031252622 +UH 0 18 l 2479 10667 4 +UH 0 48 h 2514 10753 4 +PQ +SE +ID 1356 +TI 1760667400.031289339 +UH 0 48 l 2404 9018 4 +UH 0 49 l 4727 9224 4 +UH 0 50 l 1581 9186 4 +UH 0 50 h 5734 8919 4 +PQ +SE +ID 1357 +TI 1760667400.031340122 +UH 0 41 l 1886 10789 4 +UH 0 42 l 2808 10831 4 +UH 0 43 l 1701 10655 4 +UH 0 44 l 1638 4920 0 +UH 0 55 l 1635 4638 0 +UH 0 13 h 2182 11009 4 +UH 0 16 h 3131 11288 4 +PQ +SE +ID 1358 +TI 1760667400.031424999 +UH 0 55 h 1691 5128 0 +PQ +SE +ID 1359 +TI 1760667400.031449317 +UH 0 32 l 1708 4246 0 +UH 0 44 h 1659 5234 0 +PQ +SE +ID 1360 +TI 1760667400.031495332 +UH 0 8 l 1835 5226 0 +UH 0 42 h 1800 11375 4 +PQ +SE +ID 1361 +TI 1760667400.031527519 +UH 0 37 l 1635 5320 0 +UH 0 62 h 1737 4243 0 +PQ +SE +ID 1362 +TI 1760667400.031564235 +UH 0 10 l 2739 10938 4 +UH 0 11 l 1750 4493 0 +UH 0 60 h 2114 10630 4 +UH 0 61 h 2168 11155 4 +PQ +SE +ID 1363 +TI 1760667400.031611442 +UH 0 40 l 2721 10899 4 +UH 0 53 h 2754 10333 4 +PQ +SE +ID 1364 +TI 1760667400.031649112 +UH 0 12 l 3769 10108 4 +UH 0 22 l 1796 4643 0 +UH 0 23 l 1711 5169 0 +UH 0 43 h 1573 10549 4 +UH 0 44 h 3624 10307 4 +UH 0 59 h 1715 4172 0 +UH 0 60 h 1577 3421 0 +PQ +SE +ID 1365 +TI 1760667400.031732797 +UH 0 42 l 1692 5337 0 +UH 0 44 h 1621 3970 0 +PQ +SE +ID 1366 +TI 1760667400.031769275 +UH 0 40 l 1548 5316 0 +UH 0 50 h 1651 4287 0 +PQ +SE +ID 1367 +TI 1760667400.031805753 +UH 0 2 l 2169 8771 4 +UH 0 3 l 3470 8553 4 +UH 0 4 l 1597 8891 4 +UH 0 6 l 1966 8628 4 +UH 0 53 h 4055 8960 4 +UH 0 60 h 1920 8698 4 +PQ +SE +ID 1368 +TI 1760667400.031877517 +UH 0 42 l 3468 10819 4 +UH 0 7 h 3539 11246 4 +PQ +SE +ID 1369 +TI 1760667400.031915187 +UH 0 64 l 4333 0 5 +UH 0 64 h 4225 0 5 +BD GR Veto +PQ +SE +ID 1370 +TI 1760667400.031931877 +UH 0 43 l 3715 10914 4 +UH 0 31 l 2341 11002 4 +UH 0 53 h 3690 10630 4 +UH 0 54 h 1790 10859 4 +UH 0 55 h 2247 10491 4 +PQ +SE +ID 1371 +TI 1760667400.031994819 +UH 0 23 l 1888 5337 0 +UH 0 24 l 2456 11052 4 +UH 0 64 l 1681 0 5 +UH 0 0 h 1948 10989 4 +UH 0 1 h 2389 10958 4 +BD GR Veto +PQ +SE +ID 1372 +TI 1760667400.032021045 +UH 0 8 l 2735 10875 4 +UH 0 57 h 2405 11317 4 +UH 0 58 h 1768 11043 4 +PQ +SE +ID 1373 +TI 1760667400.032041072 +UH 0 64 l 2778 0 5 +UH 0 64 h 2916 0 5 +BD GR Veto +PQ +SE +ID 1374 +TI 1760667400.032049179 +UH 0 15 l 1664 4958 0 +UH 0 16 l 2996 8588 4 +UH 0 17 l 1589 8665 4 +UH 0 18 l 2879 8329 4 +UH 0 19 l 1879 8937 4 +UH 0 20 l 2063 2958 0 +UH 0 22 l 2094 8662 4 +UH 0 44 h 4242 8826 4 +UH 0 45 h 1708 9119 4 +UH 0 46 h 2007 8801 4 +UH 0 47 h 1889 8834 4 +UH 0 48 h 1989 8922 4 +PQ +SE +ID 1375 +TI 1760667400.032100677 +UH 0 64 l 2066 0 5 +UH 0 64 h 2111 0 5 +BD GR Veto +PQ +SE +ID 1376 +TI 1760667400.032111406 +UH 0 27 l 2094 11007 4 +UH 0 28 l 2407 11291 4 +UH 0 48 h 2829 10859 4 +UH 0 49 h 1611 10950 4 +PQ +SE +ID 1377 +TI 1760667400.032133102 +UH 0 39 l 2625 10524 4 +UH 0 3 h 2104 11071 4 +UH 0 4 h 2147 11604 4 +PQ +SE +ID 1378 +TI 1760667400.032153129 +UH 0 64 l 2158 0 5 +UH 0 64 h 2216 0 5 +BD GR Veto +PQ +SE +ID 1379 +TI 1760667400.032160997 +UH 0 9 l 2228 11018 4 +UH 0 48 h 1726 10677 4 +UH 0 49 h 2006 10616 4 +PQ +SE +ID 1380 +TI 1760667400.032181024 +UH 0 3 l 1699 4976 0 +UH 0 54 h 1661 5497 0 +PQ +SE +ID 1381 +TI 1760667400.032198190 +UH 0 7 l 3239 10926 4 +UH 0 11 l 2686 10381 4 +UH 0 38 h 2582 11162 4 +UH 0 41 h 3246 11019 4 +PQ +SE +ID 1382 +TI 1760667400.032229423 +UH 0 21 l 2522 10908 4 +UH 0 52 h 2472 11129 4 +PQ +SE +ID 1383 +TI 1760667400.032246828 +UH 0 17 l 1657 4822 0 +UH 0 18 l 1836 10528 4 +UH 0 58 h 1952 11067 4 +PQ +SE +ID 1384 +TI 1760667400.032266139 +UH 0 64 l 2040 0 5 +UH 0 64 h 2092 0 5 +BD GR Veto +PQ +SE +ID 1385 +TI 1760667400.032274007 +UH 0 26 l 2745 11100 4 +UH 0 13 h 1591 5066 0 +UH 0 14 h 2604 11321 4 +PQ +SE +ID 1386 +TI 1760667400.032293319 +UH 0 64 l 1749 0 5 +UH 0 64 h 1841 0 5 +BD GR Veto +PQ +SE +ID 1387 +TI 1760667400.032301664 +UH 0 46 l 2681 10662 4 +UH 0 64 l 4392 0 5 +UH 0 58 h 2723 10594 4 +UH 0 64 h 4229 0 5 +BD GR Veto +PQ +SE +ID 1388 +TI 1760667400.032322883 +UH 0 60 l 1573 4735 0 +UH 0 61 l 3407 8262 4 +UH 0 62 l 1613 5389 0 +UH 0 51 h 3280 8891 4 +PQ +SE +ID 1389 +TI 1760667400.032344341 +UH 0 6 l 2581 10991 4 +UH 0 14 h 1739 11121 4 +UH 0 15 h 2359 11084 4 +PQ +SE +ID 1390 +TI 1760667400.032364606 +UH 0 46 l 1759 10920 4 +UH 0 37 h 1812 11174 4 +UH 0 45 h 1572 4057 0 +PQ +SE +ID 1391 +TI 1760667400.032388925 +UH 0 34 l 2144 10352 4 +UH 0 20 l 2673 10283 4 +UH 0 22 l 1844 4610 0 +UH 0 30 l 1825 11277 4 +UH 0 31 l 3407 11077 4 +UH 0 3 h 3751 10642 4 +UH 0 5 h 1798 11342 4 +UH 0 6 h 2155 11270 4 +UH 0 7 h 2673 11209 4 +PQ +SE +ID 1392 +TI 1760667400.032437086 +UH 0 64 l 2764 0 5 +UH 0 64 h 2776 0 5 +BD GR Veto +PQ +SE +ID 1393 +TI 1760667400.032444953 +UH 0 64 l 1704 0 5 +UH 0 64 h 2380 0 5 +BD GR Veto +PQ +SE +ID 1394 +TI 1760667400.032452583 +UH 0 41 l 1494 5404 0 +UH 0 42 l 2909 9553 4 +UH 0 45 l 1960 9075 4 +UH 0 8 h 1844 10154 4 +UH 0 9 h 3103 9779 4 +PQ +SE +ID 1395 +TI 1760667400.032482385 +UH 0 55 l 2130 8312 4 +UH 0 56 l 1922 8413 4 +UH 0 57 l 3522 8355 4 +UH 0 58 l 1557 5131 0 +UH 0 12 h 2175 8654 4 +UH 0 13 h 3955 8692 4 +PQ +SE +ID 1396 +TI 1760667400.032510042 +UH 0 46 l 1620 2735 0 +UH 0 54 l 3560 8873 4 +UH 0 55 l 1511 8758 4 +UH 0 7 h 1752 2827 0 +UH 0 9 h 2486 9368 4 +UH 0 10 h 2666 9611 4 +PQ +SE +ID 1397 +TI 1760667400.032552003 +UH 0 54 l 4219 8608 4 +UH 0 55 l 1519 8523 4 +UH 0 56 l 2832 8723 4 +UH 0 57 l 1538 8440 4 +UH 0 32 h 1709 8543 4 +UH 0 33 h 2611 8153 4 +UH 0 36 h 1732 8553 4 +UH 0 38 h 4044 8419 4 +UH 0 39 h 1703 8278 4 +PQ +SE +ID 1398 +TI 1760667400.032593727 +UH 0 45 l 2395 10799 4 +UH 0 63 h 2425 10668 4 +PQ +SE +ID 1399 +TI 1760667400.032608270 +UH 0 58 l 1555 8380 4 +UH 0 59 l 2741 8502 4 +UH 0 23 h 2238 8876 4 +UH 0 24 h 2032 8865 4 +PQ +SE +ID 1400 +TI 1760667400.032630205 +UH 0 39 l 1624 8729 4 +UH 0 40 l 4268 8670 4 +UH 0 41 l 1487 8956 4 +UH 0 30 h 4204 9679 4 +PQ +SE +ID 1401 +TI 1760667400.032652616 +UH 0 2 l 4013 8866 4 +UH 0 3 l 3191 8686 4 +UH 0 5 h 1585 8805 4 +UH 0 6 h 3722 8680 4 +UH 0 7 h 3468 8701 4 +UH 0 8 h 1597 9086 4 +UH 0 64 h 1674 0 5 +BD GR Veto +PQ +SE +ID 1402 +TI 1760667400.032681703 +UH 0 36 l 3339 10145 4 +UH 0 28 l 1639 3355 0 +UH 0 30 l 1616 5525 0 +UH 0 12 h 3252 10789 4 +UH 0 14 h 1579 4910 0 +UH 0 15 h 1630 3432 0 +PQ +SE +ID 1403 +TI 1760667400.032718896 +UH 0 38 l 1988 10015 4 +UH 0 39 l 1628 4066 0 +UH 0 5 l 1910 9736 4 +UH 0 6 l 1850 9909 4 +UH 0 29 l 4248 10223 4 +UH 0 2 h 2194 10528 4 +UH 0 9 h 4168 10032 4 +UH 0 10 h 1578 10384 4 +UH 0 14 h 2092 10400 4 +PQ +SE +ID 1404 +TI 1760667400.032771587 +UH 0 5 l 1632 10124 4 +UH 0 6 l 4139 10221 4 +UH 0 15 h 1614 10547 4 +UH 0 16 h 3985 10417 4 +PQ +SE +ID 1405 +TI 1760667400.032793283 +UH 0 26 l 1834 5322 0 +UH 0 27 l 2109 10874 4 +UH 0 61 h 2091 11297 4 +UH 0 62 h 1789 11113 4 +PQ +SE +ID 1406 +TI 1760667400.032815456 +UH 0 64 l 2180 0 5 +UH 0 64 h 2242 0 5 +BD GR Veto +PQ +SE +ID 1407 +TI 1760667400.054371833 +UH 0 57 l 2627 10640 4 +UH 0 61 l 1799 4948 0 +UH 0 64 l 1822 0 5 +UH 0 19 h 1699 4826 0 +UH 0 20 h 1637 11010 4 +UH 0 21 h 2561 11159 4 +UH 0 64 h 1868 0 5 +BD GR Veto +PQ +SE +ID 1408 +TI 1760667400.054441690 +UH 0 16 l 1716 4545 0 +UH 0 16 h 1721 5707 0 +PQ +SE +ID 1409 +TI 1760667400.054460525 +UH 0 47 l 1918 10888 4 +UH 0 2 h 2036 11591 4 +PQ +SE +ID 1410 +TI 1760667400.054478645 +UH 0 44 l 2498 10411 4 +UH 0 20 h 2576 11045 4 +PQ +SE +ID 1411 +TI 1760667400.054496526 +UH 0 4 l 2117 10582 4 +UH 0 5 l 1726 10674 4 +UH 0 6 l 3100 10744 4 +UH 0 33 h 3676 10151 4 +PQ +SE +ID 1412 +TI 1760667400.054520368 +UH 0 48 l 1528 3887 0 +UH 0 24 l 2256 10828 4 +UH 0 54 h 2112 11144 4 +PQ +SE +ID 1413 +TI 1760667400.054546594 +UH 0 23 l 2775 10630 4 +UH 0 6 h 1862 11486 4 +UH 0 7 h 2382 11384 4 +PQ +SE +ID 1414 +TI 1760667400.054567098 +UH 0 2 l 2102 11153 4 +UH 0 13 h 2041 11233 4 +PQ +SE +ID 1415 +TI 1760667400.054584264 +UH 0 51 l 1765 5399 0 +UH 0 49 h 1693 5362 0 +PQ +SE +ID 1416 +TI 1760667400.054601907 +UH 0 38 l 3036 9136 4 +UH 0 39 l 1609 5234 0 +UH 0 23 h 3107 9830 4 +PQ +SE +ID 1417 +TI 1760667400.054621934 +UH 0 38 l 1588 5290 0 +UH 0 60 h 1611 4819 0 +PQ +SE +ID 1418 +TI 1760667400.054639101 +UH 0 64 l 1981 0 5 +UH 0 64 h 2498 0 5 +BD GR Veto +PQ +SE +ID 1419 +TI 1760667400.054648160 +UH 0 37 l 1834 11297 4 +UH 0 41 h 1832 11097 4 +PQ +SE +ID 1420 +TI 1760667400.054665565 +UH 0 64 l 2254 0 5 +UH 0 64 h 2493 0 5 +BD GR Veto +PQ +SE +ID 1421 +TI 1760667400.054673194 +UH 0 41 l 2324 11095 4 +UH 0 22 h 2467 10608 4 +PQ +SE +ID 1422 +TI 1760667400.054690837 +UH 0 10 l 2233 10564 4 +UH 0 13 l 3299 10868 4 +UH 0 2 h 3121 11281 4 +UH 0 3 h 1849 11029 4 +UH 0 8 h 2205 11722 4 +PQ +SE +ID 1423 +TI 1760667400.054729223 +UH 0 7 l 1615 5332 0 +UH 0 8 l 3023 10496 4 +UH 0 10 l 1655 4439 0 +UH 0 17 l 3062 10591 4 +UH 0 43 h 2958 10979 4 +UH 0 45 h 1574 3680 0 +UH 0 50 h 3119 10817 4 +PQ +SE +ID 1424 +TI 1760667400.054772853 +UH 0 54 l 2084 11016 4 +UH 0 1 h 1958 11344 4 +UH 0 2 h 1819 11360 4 +PQ +SE +ID 1425 +TI 1760667400.054795265 +UH 0 38 l 2310 10875 4 +UH 0 32 h 2303 10519 4 +PQ +SE +ID 1426 +TI 1760667400.054812908 +UH 0 45 l 1945 10482 4 +UH 0 46 l 2233 10410 4 +UH 0 8 h 1929 11657 4 +UH 0 9 h 2396 11303 4 +PQ +SE +ID 1427 +TI 1760667400.054834842 +UH 0 32 l 2295 10702 4 +UH 0 17 l 3714 10326 4 +UH 0 18 l 1645 10321 4 +UH 0 31 l 2664 10792 4 +UH 0 3 h 3869 10709 4 +UH 0 6 h 2396 10877 4 +UH 0 7 h 2559 10891 4 +PQ +SE +ID 1428 +TI 1760667400.054878950 +UH 0 54 l 1822 11321 4 +UH 0 58 h 1629 4321 0 +UH 0 59 h 1739 4682 0 +PQ +SE +ID 1429 +TI 1760667400.054899454 +UH 0 55 l 3047 10658 4 +UH 0 15 h 3111 11397 4 +PQ +SE +ID 1430 +TI 1760667400.054917335 +UH 0 27 l 2843 10843 4 +UH 0 32 h 2740 10814 4 +PQ +SE +ID 1431 +TI 1760667400.054934978 +UH 0 0 l 2268 10004 4 +UH 0 64 l 1871 0 5 +UH 0 32 h 2153 10400 4 +UH 0 33 h 1614 3915 0 +UH 0 64 h 3094 0 5 +BD GR Veto +PQ +SE +ID 1432 +TI 1760667400.054955005 +UH 0 64 l 2322 0 5 +UH 0 64 h 2304 0 5 +BD GR Veto +PQ +SE +ID 1433 +TI 1760667400.054963827 +UH 0 48 l 1526 8845 4 +UH 0 49 l 3623 8606 4 +UH 0 50 l 2075 8585 4 +UH 0 23 h 4072 8733 4 +UH 0 24 h 1649 8811 4 +PQ +SE +ID 1434 +TI 1760667400.054988145 +UH 0 1 l 1635 4297 0 +UH 0 2 l 1980 8987 4 +UH 0 3 l 1582 8850 4 +UH 0 4 l 3720 8808 4 +UH 0 6 l 1598 4924 0 +UH 0 7 l 2096 8449 4 +UH 0 64 l 2405 0 5 +UH 0 34 h 1971 8790 4 +UH 0 35 h 1663 2614 0 +UH 0 36 h 1942 8892 4 +UH 0 38 h 3372 8891 4 +UH 0 28 h 2080 8852 4 +UH 0 29 h 1957 9038 4 +UH 0 30 h 1880 9257 4 +BD GR Veto +PQ +SE +ID 1435 +TI 1760667400.055042743 +UH 0 37 l 2679 10856 4 +UH 0 49 h 1694 10960 4 +UH 0 50 h 2559 10837 4 +PQ +SE +ID 1436 +TI 1760667400.055062055 +UH 0 64 h 1768 0 5 +BD GR Veto +PQ +SE +ID 1437 +TI 1760667400.055067062 +UH 0 31 l 2951 10974 4 +UH 0 42 h 1705 4534 0 +UH 0 43 h 2669 11056 4 +UH 0 44 h 1641 10991 4 +PQ +SE +ID 1438 +TI 1760667400.055089235 +UH 0 27 l 1623 8608 4 +UH 0 28 l 4424 8712 4 +UH 0 29 l 1661 8678 4 +UH 0 44 h 4343 8762 4 +PQ +SE +ID 1439 +TI 1760667400.055111408 +UH 0 24 l 2861 10987 4 +UH 0 25 l 2536 11212 4 +UH 0 32 h 2333 10697 4 +UH 0 33 h 1826 10342 4 +UH 0 30 h 1883 11214 4 +UH 0 31 h 2106 10580 4 +PQ +SE +ID 1440 +TI 1760667400.055139064 +UH 0 64 l 3426 0 5 +UH 0 64 h 3367 0 5 +BD GR Veto +PQ +SE +ID 1441 +TI 1760667400.055146694 +UH 0 64 l 2173 0 5 +UH 0 64 h 2211 0 5 +BD GR Veto +PQ +SE +ID 1442 +TI 1760667400.055155038 +UH 0 32 l 2199 11133 4 +UH 0 56 h 2148 10687 4 +PQ +SE +ID 1443 +TI 1760667400.055173397 +UH 0 25 l 2161 11262 4 +UH 0 36 h 2128 10776 4 +PQ +SE +ID 1444 +TI 1760667400.055190801 +UH 0 52 l 1598 5382 0 +PQ +SE +ID 1445 +TI 1760667400.055198907 +UH 0 64 l 3154 0 5 +UH 0 64 h 3032 0 5 +BD GR Veto +PQ +SE +ID 1446 +TI 1760667400.055207014 +UH 0 34 l 3592 9579 4 +UH 0 35 l 2880 9696 4 +UH 0 10 h 2649 9932 4 +UH 0 11 h 3834 9752 4 +UH 0 12 h 1533 9765 4 +PQ +SE +ID 1447 +TI 1760667400.055231332 +UH 0 0 l 2436 10904 4 +UH 0 33 h 2378 10779 4 +PQ +SE +ID 1448 +TI 1760667400.055246591 +UH 0 47 l 1541 5335 0 +UH 0 49 l 1746 10377 4 +UH 0 61 h 1781 10516 4 +PQ +SE +ID 1449 +TI 1760667400.055270433 +UH 0 64 l 4190 0 5 +UH 0 64 h 4055 0 5 +BD GR Veto +PQ +SE +ID 1450 +TI 1760667400.055278539 +UH 0 43 l 3093 10926 4 +UH 0 29 h 3100 10650 4 +PQ +SE +ID 1451 +TI 1760667400.055296182 +UH 0 36 l 1662 4004 0 +UH 0 37 l 2171 11128 4 +UH 0 7 h 2334 10935 4 +PQ +SE +ID 1452 +TI 1760667400.055315732 +UH 0 40 l 1683 5296 0 +UH 0 3 h 1761 5355 0 +PQ +SE +ID 1453 +TI 1760667400.055333375 +UH 0 58 l 3466 10451 4 +UH 0 15 h 1847 11010 4 +UH 0 16 h 3145 10913 4 +PQ +SE +ID 1454 +TI 1760667400.055351495 +UH 0 49 l 1585 5090 0 +UH 0 16 h 1666 5720 0 +PQ +SE +ID 1455 +TI 1760667400.055368900 +UH 0 55 l 2070 10882 4 +UH 0 56 l 1901 11089 4 +UH 0 32 h 2122 10523 4 +UH 0 31 h 1875 10481 4 +PQ +SE +ID 1456 +TI 1760667400.055391073 +UH 0 29 l 2004 11007 4 +UH 0 32 h 1892 11469 4 +PQ +SE +ID 1457 +TI 1760667400.055406332 +UH 0 36 l 1641 5147 0 +UH 0 34 h 1533 3395 0 +PQ +SE +ID 1458 +TI 1760667400.055423736 +UH 0 26 l 2435 11334 4 +UH 0 53 h 2354 10933 4 +PQ +SE +ID 1459 +TI 1760667400.055440902 +UH 0 57 l 1893 10614 4 +UH 0 10 h 1925 11685 4 +PQ +SE +ID 1460 +TI 1760667400.055457830 +UH 0 53 l 2351 10812 4 +UH 0 53 h 2336 10680 4 +PQ +SE +ID 1461 +TI 1760667400.055475711 +UH 0 64 l 1738 0 5 +UH 0 64 h 1789 0 5 +BD GR Veto +PQ +SE +ID 1462 +TI 1760667400.055483579 +UH 0 64 l 1662 0 5 +UH 0 64 h 1932 0 5 +BD GR Veto +PQ +SE +ID 1463 +TI 1760667400.055491685 +UH 0 44 l 2770 10784 4 +UH 0 44 h 2831 10367 4 +PQ +SE +ID 1464 +TI 1760667400.055509090 +UH 0 46 l 1506 8744 4 +UH 0 47 l 5555 8720 4 +UH 0 48 l 1543 8946 4 +UH 0 56 l 1620 1605 0 +UH 0 58 l 1647 1247 0 +UH 0 59 l 1683 1522 0 +UH 0 60 l 1700 1354 0 +UH 0 61 l 1793 1520 0 +UH 0 62 l 1816 1541 0 +UH 0 63 l 1839 1360 0 +UH 0 26 h 1593 9259 4 +UH 0 27 h 5505 8963 4 +UH 0 28 h 1654 8876 4 +PQ +SE +ID 1465 +TI 1760667400.055562734 +UH 0 64 l 3252 0 5 +UH 0 64 h 3223 0 5 +BD GR Veto +PQ +SE +ID 1466 +TI 1760667400.055570840 +UH 0 12 l 3887 9839 4 +UH 0 8 h 3761 11467 4 +PQ +SE +ID 1467 +TI 1760667400.055588722 +UH 0 64 l 2452 0 5 +UH 0 64 h 2478 0 5 +BD GR Veto +PQ +SE +ID 1468 +TI 1760667400.055597305 +UH 0 35 l 1866 10850 4 +UH 0 39 l 2634 10757 4 +UH 0 34 h 1803 10100 4 +UH 0 36 h 2660 10359 4 +PQ +SE +ID 1469 +TI 1760667400.055627346 +UH 0 36 l 1652 4472 0 +UH 0 46 l 1514 4316 0 +UH 0 54 l 3038 10917 4 +UH 0 17 l 3877 10772 4 +UH 0 48 h 2413 10987 4 +UH 0 49 h 2205 10982 4 +UH 0 50 h 1694 4331 0 +UH 0 54 h 1595 4348 0 +UH 0 62 h 2666 10836 4 +UH 0 63 h 2807 10865 4 +PQ +SE +ID 1470 +TI 1760667400.055690050 +UH 0 46 l 2538 10443 4 +UH 0 20 h 2080 11235 4 +UH 0 21 h 2078 11477 4 +PQ +SE +ID 1471 +TI 1760667400.074045896 +UH 0 64 l 2299 0 5 +UH 0 64 h 1923 0 5 +BD GR Veto +PQ +SE +ID 1472 +TI 1760667400.074095726 +UH 0 26 l 1751 5616 0 +UH 0 31 h 1643 4788 0 +PQ +SE +ID 1473 +TI 1760667400.074138879 +UH 0 41 l 3795 10944 4 +UH 0 6 l 1906 10796 4 +UH 0 45 h 3724 10780 4 +UH 0 16 h 1601 4897 0 +UH 0 17 h 1781 11154 4 +PQ +SE +ID 1474 +TI 1760667400.074210405 +UH 0 28 l 1630 5455 0 +UH 0 29 l 3301 8798 4 +UH 0 30 l 2158 9137 4 +UH 0 42 h 3885 8846 4 +PQ +SE +ID 1475 +TI 1760667400.074253797 +UH 0 41 l 1514 8794 4 +UH 0 42 l 4152 8656 4 +UH 0 43 l 1725 8906 4 +UH 0 44 l 1575 3474 0 +UH 0 40 h 1886 8823 4 +UH 0 42 h 4166 8635 4 +PQ +SE +ID 1476 +TI 1760667400.074316263 +UH 0 3 l 2225 10330 4 +UH 0 4 l 2564 10463 4 +UH 0 30 h 2114 11429 4 +UH 0 31 h 2639 10780 4 +PQ +SE +ID 1477 +TI 1760667400.074364423 +UH 0 0 l 1716 10439 4 +UH 0 1 l 2725 10609 4 +UH 0 11 l 2203 10338 4 +UH 0 28 l 3873 10852 4 +UH 0 16 h 2059 11092 4 +UH 0 23 h 2844 11044 4 +UH 0 26 h 3645 11165 4 +PQ +SE +ID 1478 +TI 1760667400.074454307 +UH 0 32 l 3058 10825 4 +UH 0 26 l 2291 10726 4 +UH 0 27 l 1744 4527 0 +UH 0 35 h 2381 10748 4 +UH 0 37 h 3052 10679 4 +PQ +SE +ID 1479 +TI 1760667400.074516773 +UH 0 60 l 3783 8334 4 +UH 0 64 l 1640 0 5 +UH 0 4 h 3785 9642 4 +BD GR Veto +PQ +SE +ID 1480 +TI 1760667400.074570417 +UH 0 64 l 2082 0 5 +UH 0 64 h 2097 0 5 +BD GR Veto +PQ +SE +ID 1481 +TI 1760667400.074597597 +UH 0 46 l 2301 10866 4 +UH 0 61 h 1631 11019 4 +UH 0 62 h 2337 10741 4 +PQ +SE +ID 1482 +TI 1760667400.074644565 +UH 0 64 l 1991 0 5 +UH 0 64 h 2041 0 5 +BD GR Veto +PQ +SE +ID 1483 +TI 1760667400.074659585 +UH 0 2 l 2382 10486 4 +UH 0 3 l 1689 10511 4 +UH 0 4 l 3793 10716 4 +UH 0 41 h 2322 10625 4 +UH 0 42 h 3104 10191 4 +UH 0 45 h 2079 10569 4 +UH 0 46 h 1826 10464 4 +PQ +SE +ID 1484 +TI 1760667400.074725627 +UH 0 47 l 2813 10672 4 +UH 0 48 l 1975 10850 4 +UH 0 62 l 1618 1868 0 +UH 0 63 l 1560 1878 0 +UH 0 12 h 2263 11252 4 +UH 0 13 h 2584 11321 4 +PQ +SE +ID 1485 +TI 1760667400.074781417 +UH 0 50 l 1673 5010 0 +UH 0 51 l 1629 4897 0 +UH 0 38 h 1782 11476 4 +PQ +SE +ID 1486 +TI 1760667400.074818611 +UH 0 39 l 1640 5229 0 +UH 0 17 h 1545 5371 0 +PQ +SE +ID 1487 +TI 1760667400.074854850 +UH 0 4 l 1647 5248 0 +UH 0 5 l 1677 4797 0 +UH 0 7 l 1654 4530 0 +UH 0 8 l 1758 5126 0 +UH 0 22 h 1737 5239 0 +UH 0 23 h 1663 5394 0 +UH 0 28 h 1777 5276 0 +PQ +SE +ID 1488 +TI 1760667400.074923515 +UH 0 0 l 1626 8421 4 +UH 0 64 l 4279 0 5 +UH 0 44 h 4294 8472 4 +BD GR Veto +PQ +SE +ID 1489 +TI 1760667400.074957370 +UH 0 64 l 3452 0 5 +UH 0 64 h 3387 0 5 +BD GR Veto +PQ +SE +ID 1490 +TI 1760667400.074971914 +UH 0 47 l 1942 10615 4 +UH 0 48 l 2862 10656 4 +UH 0 17 h 3205 11141 4 +PQ +SE +ID 1491 +TI 1760667400.075008630 +UH 0 28 l 4612 11125 4 +UH 0 41 h 1618 10640 4 +UH 0 42 h 2933 10142 4 +UH 0 29 h 2996 11145 4 +PQ +SE +ID 1492 +TI 1760667400.075059890 +UH 0 38 l 3981 10821 4 +UH 0 52 h 2031 10419 4 +UH 0 53 h 3418 10238 4 +UH 0 54 h 1630 10482 4 +PQ +SE +ID 1493 +TI 1760667400.075103521 +UH 0 10 l 2274 11024 4 +UH 0 53 h 1752 10895 4 +UH 0 54 h 1948 11002 4 +PQ +SE +ID 1494 +TI 1760667400.075141191 +UH 0 37 l 2289 11017 4 +UH 0 21 h 2257 10944 4 +PQ +SE +ID 1495 +TI 1760667400.075173377 +UH 0 16 l 3777 8968 4 +UH 0 17 l 1583 9087 4 +UH 0 19 l 2182 8872 4 +UH 0 54 h 2089 9407 4 +UH 0 56 h 3805 9153 4 +PQ +SE +ID 1496 +TI 1760667400.075207233 +UH 0 17 l 1948 8510 4 +UH 0 18 l 3486 8346 4 +UH 0 19 l 1627 5450 0 +UH 0 48 h 3326 8908 4 +UH 0 49 h 2158 8904 4 +PQ +SE +ID 1497 +TI 1760667400.075232028 +UH 0 62 l 1973 10967 4 +UH 0 63 l 1586 5111 0 +UH 0 54 h 2001 11185 4 +PQ +SE +ID 1498 +TI 1760667400.075248718 +UH 0 49 l 1543 5422 0 +PQ +SE +ID 1499 +TI 1760667400.075259685 +UH 0 31 l 2080 11292 4 +UH 0 63 h 2113 10551 4 +PQ +SE +ID 1500 +TI 1760667400.075274944 +UH 0 55 l 2474 9286 4 +UH 0 56 l 3549 9720 4 +UH 0 64 l 2197 0 5 +UH 0 32 h 3473 9058 4 +UH 0 36 h 2564 9297 4 +UH 0 22 h 1785 9158 4 +UH 0 31 h 1561 9089 4 +UH 0 64 h 2082 0 5 +BD GR Veto +PQ +SE +ID 1501 +TI 1760667400.075315475 +UH 0 32 l 3057 10113 4 +UH 0 24 l 2024 10068 4 +UH 0 25 l 3174 10149 4 +UH 0 29 l 2192 9984 4 +UH 0 30 l 1616 10365 4 +UH 0 4 h 2970 10411 4 +UH 0 7 h 2146 10331 4 +UH 0 11 h 1706 4160 0 +UH 0 12 h 2014 10128 4 +UH 0 14 h 2644 10414 4 +UH 0 15 h 1900 10571 4 +PQ +SE +ID 1502 +TI 1760667400.075373411 +UH 0 12 l 2226 10097 4 +UH 0 19 l 2008 10647 4 +UH 0 47 h 2022 10823 4 +UH 0 10 h 2127 11596 4 +PQ +SE +ID 1503 +TI 1760667400.075405120 +UH 0 39 l 3077 10775 4 +UH 0 61 h 2089 10742 4 +UH 0 62 h 2557 10544 4 +PQ +SE +ID 1504 +TI 1760667400.075424432 +UH 0 1 l 2717 11125 4 +UH 0 2 l 1942 11006 4 +UH 0 48 h 3075 10973 4 +PQ +SE +ID 1505 +TI 1760667400.075444221 +UH 0 12 l 1844 4604 0 +UH 0 22 h 1815 5381 0 +PQ +SE +ID 1506 +TI 1760667400.075461864 +UH 0 58 l 2007 10656 4 +UH 0 62 l 1685 5213 0 +UH 0 63 l 2175 10485 4 +UH 0 36 h 2269 10948 4 +UH 0 37 h 2145 11200 4 +PQ +SE +ID 1507 +TI 1760667400.075489044 +UH 0 60 l 2927 10342 4 +UH 0 61 l 2681 10777 4 +UH 0 62 l 2073 10957 4 +UH 0 26 h 2042 11374 4 +UH 0 27 h 3615 11062 4 +UH 0 28 h 1965 10922 4 +PQ +SE +ID 1508 +TI 1760667400.075515508 +UH 0 12 l 2952 10489 4 +UH 0 56 h 2841 10616 4 +PQ +SE +ID 1509 +TI 1760667400.075532436 +UH 0 52 l 1711 8648 4 +UH 0 53 l 4004 8494 4 +UH 0 54 l 1538 5530 0 +UH 0 9 h 4137 9016 4 +PQ +SE +ID 1510 +TI 1760667400.075554609 +UH 0 32 l 2090 10126 4 +UH 0 33 l 1956 9881 4 +UH 0 34 l 1652 4795 0 +UH 0 24 l 1797 4069 0 +UH 0 27 l 1624 10352 4 +UH 0 28 l 2463 10542 4 +UH 0 3 h 2541 10411 4 +UH 0 5 h 1927 10929 4 +UH 0 7 h 2395 10849 4 +PQ +SE +ID 1511 +TI 1760667400.075601339 +UH 0 39 l 1909 11076 4 +UH 0 40 l 1678 5039 0 +UH 0 62 h 2175 11035 4 +PQ +SE +ID 1512 +TI 1760667400.075621604 +UH 0 27 l 2987 10785 4 +UH 0 12 h 2879 10804 4 +PQ +SE +ID 1513 +TI 1760667400.075639009 +UH 0 32 l 2713 10468 4 +UH 0 33 l 1652 4547 0 +UH 0 46 l 1763 10810 4 +UH 0 21 h 1826 11055 4 +UH 0 23 h 2795 11172 4 +PQ +SE +ID 1514 +TI 1760667400.075670003 +UH 0 14 l 2801 10617 4 +UH 0 19 l 2054 11126 4 +UH 0 20 l 2144 10794 4 +UH 0 54 h 2682 10972 4 +UH 0 62 h 2530 10455 4 +PQ +SE +ID 1515 +TI 1760667400.075702667 +UH 0 24 h 1565 5379 0 +PQ +SE +ID 1516 +TI 1760667400.075712203 +UH 0 58 l 2139 10506 4 +UH 0 33 h 2119 10900 4 +PQ +SE +ID 1517 +TI 1760667400.075730085 +UH 0 5 l 3035 10256 4 +UH 0 6 l 3340 10498 4 +UH 0 9 h 2753 11157 4 +UH 0 11 h 3592 11219 4 +PQ +SE +ID 1518 +TI 1760667400.075754404 +UH 0 32 l 3303 10813 4 +UH 0 61 h 3261 11100 4 +PQ +SE +ID 1519 +TI 1760667400.075773000 +UH 0 21 l 5136 10773 4 +UH 0 56 h 1607 10207 4 +UH 0 57 h 4928 10221 4 +PQ +SE +ID 1520 +TI 1760667400.075792551 +UH 0 56 l 2133 10677 4 +UH 0 57 l 1534 5242 0 +UH 0 64 l 1689 0 5 +UH 0 43 h 1980 10484 4 +UH 0 44 h 1723 10374 4 +UH 0 64 h 1732 0 5 +BD GR Veto +PQ +SE +ID 1521 +TI 1760667400.075818777 +UH 0 64 l 2290 0 5 +UH 0 64 h 4375 0 5 +BD GR Veto +PQ +SE +ID 1522 +TI 1760667400.075826883 +UH 0 26 l 2230 11032 4 +UH 0 64 l 3876 0 5 +UH 0 32 h 2075 10929 4 +UH 0 24 h 1562 3725 0 +UH 0 64 h 3772 0 5 +BD GR Veto +PQ +SE +ID 1523 +TI 1760667400.075856685 +UH 0 50 l 2122 9441 4 +UH 0 51 l 5135 9442 4 +UH 0 52 l 1597 9484 4 +UH 0 14 h 1577 9732 4 +UH 0 15 h 4835 9817 4 +UH 0 16 h 1872 9625 4 +UH 0 17 h 1815 9497 4 +PQ +SE +ID 1524 +TI 1760667400.075885057 +UH 0 19 l 2589 10860 4 +UH 0 20 l 1745 10638 4 +UH 0 31 l 2845 11079 4 +UH 0 48 h 2939 10869 4 +UH 0 49 h 2637 10934 4 +UH 0 50 h 1648 10988 4 +PQ +SE +ID 1525 +TI 1760667400.075916528 +UH 0 7 l 1706 4821 0 +UH 0 54 h 1661 5523 0 +PQ +SE +ID 1526 +TI 1760667400.075934648 +UH 0 38 l 3838 8840 4 +UH 0 49 l 1516 9035 4 +UH 0 50 l 3265 8777 4 +UH 0 58 h 3198 8694 4 +UH 0 60 h 3893 8546 4 +PQ +SE +ID 1527 +TI 1760667400.075965881 +UH 0 22 l 1712 5335 0 +UH 0 57 h 1696 5009 0 +PQ +SE +ID 1528 +TI 1760667400.075985431 +UH 0 28 l 1898 11690 4 +UH 0 13 h 1887 11401 4 +PQ +SE +ID 1529 +TI 1760667400.076004505 +UH 0 64 l 2056 0 5 +UH 0 64 h 2101 0 5 +BD GR Veto +PQ +SE +ID 1530 +TI 1760667400.076012372 +UH 0 53 l 3522 10742 4 +UH 0 12 h 3415 10652 4 +PQ +SE +ID 1531 +TI 1760667400.076029777 +UH 0 64 l 2816 0 5 +UH 0 64 h 2814 0 5 +BD GR Veto +PQ +SE +ID 1532 +TI 1760667400.076037406 +UH 0 23 l 2265 10945 4 +UH 0 61 h 2099 10664 4 +PQ +SE +ID 1533 +TI 1760667400.076054573 +UH 0 32 l 1953 11023 4 +UH 0 53 h 1895 11274 4 +PQ +SE +ID 1534 +TI 1760667400.076072216 +UH 0 34 l 1804 4951 0 +UH 0 29 l 2390 10792 4 +UH 0 17 h 1743 10802 4 +UH 0 21 h 2265 10862 4 +UH 0 22 h 1666 10645 4 +PQ +SE +ID 1535 +TI 1760667400.092406511 +UH 0 38 l 1546 8682 4 +UH 0 39 l 4096 8464 4 +UH 0 40 l 1667 8653 4 +UH 0 18 h 1679 9089 4 +UH 0 19 h 4053 9226 4 +PQ +SE +ID 1536 +TI 1760667400.092468738 +UH 0 26 l 2423 10978 4 +UH 0 27 l 1649 4513 0 +UH 0 8 h 2433 11598 4 +PQ +SE +ID 1537 +TI 1760667400.092490196 +UH 0 51 l 3000 2883 4 +UH 0 3 l 3618 8816 4 +UH 0 4 l 1613 9139 4 +UH 0 8 l 3098 8915 4 +UH 0 9 l 2025 9024 4 +UH 0 12 h 3440 9182 4 +UH 0 26 h 1583 9589 4 +UH 0 27 h 3655 9297 4 +PQ +SE +ID 1538 +TI 1760667400.092542648 +UH 0 64 h 2037 0 5 +BD GR Veto +PQ +SE +ID 1539 +TI 1760667400.092549324 +UH 0 34 l 1734 4169 0 +UH 0 37 l 3876 10384 4 +UH 0 19 l 2122 10278 4 +UH 0 21 l 1699 4205 0 +UH 0 32 h 1625 10011 4 +UH 0 33 h 1713 9781 4 +UH 0 34 h 2013 9809 4 +UH 0 30 h 1610 10497 4 +UH 0 31 h 3764 9780 4 +PQ +SE +ID 1540 +TI 1760667400.092596292 +UH 0 33 l 2120 10717 4 +UH 0 47 h 1726 4124 0 +UH 0 48 h 1989 10595 4 +PQ +SE +ID 1541 +TI 1760667400.092616081 +UH 0 52 l 1756 5359 0 +UH 0 53 l 2809 10467 4 +UH 0 54 l 2425 10738 4 +UH 0 64 l 1634 0 5 +UH 0 50 h 2355 10748 4 +UH 0 52 h 2938 10865 4 +UH 0 54 h 1699 4699 0 +UH 0 64 h 1683 0 5 +BD GR Veto +PQ +SE +ID 1542 +TI 1760667400.092658996 +UH 0 41 l 1509 5419 0 +UH 0 42 l 2526 10923 4 +UH 0 28 h 2024 10874 4 +UH 0 29 h 2116 11052 4 +PQ +SE +ID 1543 +TI 1760667400.092680454 +UH 0 64 l 4381 0 5 +UH 0 64 h 4294 0 5 +BD GR Veto +PQ +SE +ID 1544 +TI 1760667400.092688560 +UH 0 3 l 4132 8709 4 +UH 0 4 l 1609 9046 4 +UH 0 8 h 4122 9895 4 +PQ +SE +ID 1545 +TI 1760667400.092709541 +UH 0 57 l 1529 4577 0 +UH 0 58 l 1560 4331 0 +UH 0 59 l 1582 4750 0 +UH 0 60 l 1602 4448 0 +UH 0 61 l 1700 4902 0 +UH 0 62 l 1672 4369 0 +UH 0 63 l 1612 5232 0 +UH 0 64 l 1983 0 5 +UH 0 64 h 3676 0 5 +BD GR Veto +PQ +SE +ID 1546 +TI 1760667400.092737197 +UH 0 64 h 2698 0 5 +BD GR Veto +PQ +SE +ID 1547 +TI 1760667400.092742681 +UH 0 64 l 2267 0 5 +UH 0 64 h 2310 0 5 +BD GR Veto +PQ +SE +ID 1548 +TI 1760667400.092750787 +UH 0 3 l 2153 10535 4 +UH 0 4 l 2443 10593 4 +UH 0 4 h 2211 11544 4 +UH 0 6 h 1609 5126 0 +UH 0 7 h 2367 11388 4 +PQ +SE +ID 1549 +TI 1760667400.092779874 +UH 0 58 l 3756 10277 4 +UH 0 57 h 3735 11208 4 +PQ +SE +ID 1550 +TI 1760667400.092798471 +UH 0 15 l 2135 10583 4 +UH 0 16 l 1589 5239 0 +UH 0 31 l 1609 2401 0 +UH 0 39 h 2146 10883 4 +PQ +SE +ID 1551 +TI 1760667400.092823266 +UH 0 57 l 2246 10328 4 +UH 0 58 l 1564 5123 0 +UH 0 64 l 2384 0 5 +UH 0 42 h 2046 10144 4 +UH 0 53 h 1801 10137 4 +UH 0 54 h 1561 4640 0 +UH 0 64 h 2388 0 5 +BD GR Veto +PQ +SE +ID 1552 +TI 1760667400.092857599 +UH 0 50 l 1643 4454 0 +UH 0 51 l 1628 5456 0 +UH 0 64 l 3020 0 5 +UH 0 64 h 3146 0 5 +BD GR Veto +PQ +SE +ID 1553 +TI 1760667400.092874765 +UH 0 27 l 1689 4615 0 +UH 0 16 h 1677 5750 0 +PQ +SE +ID 1554 +TI 1760667400.092891931 +UH 0 64 l 2013 0 5 +UH 0 11 h 2021 11331 4 +BD GR Veto +PQ +SE +ID 1555 +TI 1760667400.092904806 +UH 0 21 l 4183 10741 4 +UH 0 3 h 4228 10931 4 +PQ +SE +ID 1556 +TI 1760667400.092922687 +UH 0 2 l 1789 4769 0 +UH 0 3 l 1859 10733 4 +UH 0 50 h 2133 11188 4 +PQ +SE +ID 1557 +TI 1760667400.092943191 +UH 0 44 l 1554 4543 0 +UH 0 45 l 1917 10292 4 +UH 0 46 l 1544 4705 0 +UH 0 53 l 2996 10765 4 +UH 0 55 l 2680 10347 4 +UH 0 44 h 1924 10571 4 +UH 0 45 h 1703 10842 4 +UH 0 48 h 3020 10380 4 +UH 0 57 h 2752 10883 4 +PQ +SE +ID 1558 +TI 1760667400.092993974 +UH 0 48 l 1606 8655 4 +UH 0 49 l 8758 8512 4 +UH 0 50 l 1642 8554 4 +UH 0 51 l 1630 8785 4 +UH 0 52 l 1602 8801 4 +UH 0 52 h 1604 8776 4 +UH 0 53 h 8307 8603 4 +UH 0 54 h 1579 8829 4 +PQ +SE +ID 1559 +TI 1760667400.093025684 +UH 0 4 l 4357 10950 4 +UH 0 64 l 2540 0 5 +UH 0 59 h 4076 10366 4 +UH 0 60 h 1647 10175 4 +UH 0 64 h 2758 0 5 +BD GR Veto +PQ +SE +ID 1560 +TI 1760667400.093051195 +UH 0 48 l 3142 10628 4 +UH 0 12 h 3159 11154 4 +PQ +SE +ID 1561 +TI 1760667400.093068122 +UH 0 0 l 1616 4630 0 +UH 0 64 l 2831 0 5 +UH 0 64 h 4121 0 5 +BD GR Veto +PQ +SE +ID 1562 +TI 1760667400.093080759 +UH 0 11 l 2792 10267 4 +UH 0 12 l 1794 4660 0 +UH 0 24 h 2608 11075 4 +UH 0 25 h 1647 11372 4 +PQ +SE +ID 1563 +TI 1760667400.093102931 +UH 0 31 l 1860 11158 4 +UH 0 52 h 1868 11342 4 +PQ +SE +ID 1564 +TI 1760667400.093120813 +UH 0 61 l 1671 5256 0 +UH 0 17 h 1550 5110 0 +PQ +SE +ID 1565 +TI 1760667400.093138694 +UH 0 64 l 3479 0 5 +UH 0 64 h 3388 0 5 +BD GR Veto +PQ +SE +ID 1566 +TI 1760667400.093146800 +UH 0 11 l 2201 10520 4 +UH 0 40 h 2092 11108 4 +PQ +SE +ID 1567 +TI 1760667400.093164205 +UH 0 27 l 2119 10887 4 +UH 0 28 l 2674 11148 4 +UH 0 21 h 1790 11083 4 +UH 0 22 h 2856 10689 4 +UH 0 23 h 1589 10832 4 +PQ +SE +ID 1568 +TI 1760667400.093188047 +UH 0 52 l 2154 10933 4 +UH 0 53 l 1896 10874 4 +UH 0 61 l 2414 10745 4 +UH 0 49 h 1580 10368 4 +UH 0 50 h 2496 10255 4 +UH 0 51 h 2259 10371 4 +PQ +SE +ID 1569 +TI 1760667400.093225479 +UH 0 18 l 2621 10693 4 +UH 0 20 l 2044 10647 4 +UH 0 21 l 2485 11042 4 +UH 0 56 h 1944 10549 4 +UH 0 57 h 3164 10647 4 +UH 0 61 h 1871 10530 4 +PQ +SE +ID 1570 +TI 1760667400.093259572 +UH 0 4 l 3072 9284 4 +UH 0 5 l 1632 5235 0 +UH 0 18 l 2263 8982 4 +UH 0 32 h 2091 9490 4 +UH 0 33 h 2381 9107 4 +UH 0 44 h 2139 9243 4 +UH 0 45 h 1611 2437 0 +PQ +SE +ID 1571 +TI 1760667400.093304872 +UH 0 44 l 1968 10796 4 +UH 0 45 l 1616 5255 0 +UH 0 36 h 1778 4276 0 +UH 0 37 h 1983 10919 4 +PQ +SE +ID 1572 +TI 1760667400.093326330 +UH 0 64 l 2438 0 5 +UH 0 64 h 2472 0 5 +BD GR Veto +PQ +SE +ID 1573 +TI 1760667400.093334436 +UH 0 60 l 1882 10501 4 +UH 0 64 l 2216 0 5 +UH 0 55 h 1955 10025 4 +UH 0 64 h 2262 0 5 +BD GR Veto +PQ +SE +ID 1574 +TI 1760667400.093357324 +UH 0 30 l 1760 4637 0 +UH 0 31 l 1777 4648 0 +UH 0 1 h 2063 5457 0 +PQ +SE +ID 1575 +TI 1760667400.093376159 +UH 0 54 l 1798 8804 4 +UH 0 55 l 3935 8501 4 +UH 0 56 l 1549 5471 0 +UH 0 53 h 1695 9003 4 +UH 0 54 h 4113 9070 4 +PQ +SE +ID 1576 +TI 1760667400.093399763 +UH 0 0 l 2539 9821 4 +UH 0 1 l 1625 5471 0 +UH 0 64 l 1973 0 5 +UH 0 39 h 2058 10056 4 +UH 0 40 h 2556 10001 4 +BD GR Veto +PQ +SE +ID 1577 +TI 1760667400.093421936 +UH 0 64 l 2341 0 5 +UH 0 64 h 2377 0 5 +BD GR Veto +PQ +SE +ID 1578 +TI 1760667400.093429803 +UH 0 14 l 5485 9461 4 +UH 0 15 l 1727 9453 4 +UH 0 8 h 3046 9689 4 +UH 0 9 h 4131 9318 4 +UH 0 10 h 1584 9666 4 +PQ +SE +ID 1579 +TI 1760667400.093453645 +UH 0 34 l 1576 5292 0 +UH 0 35 l 3666 8604 4 +UH 0 36 l 1945 8448 4 +UH 0 35 h 2111 8693 4 +UH 0 36 h 3129 8710 4 +UH 0 60 h 1813 8255 4 +PQ +SE +ID 1580 +TI 1760667400.093486070 +UH 0 64 l 3870 0 5 +UH 0 64 h 3408 0 5 +BD GR Veto +PQ +SE +ID 1581 +TI 1760667400.093493700 +UH 0 34 l 2291 10722 4 +UH 0 63 h 2281 10736 4 +PQ +SE +ID 1582 +TI 1760667400.093509197 +UH 0 40 l 3741 10811 4 +UH 0 42 l 2031 10991 4 +UH 0 58 h 1937 10238 4 +UH 0 59 h 1597 5109 0 +UH 0 61 h 3793 10455 4 +PQ +SE +ID 1583 +TI 1760667400.093538045 +UH 0 33 l 2762 10273 4 +UH 0 36 l 4409 10492 4 +UH 0 49 h 2267 10428 4 +UH 0 50 h 4569 10130 4 +UH 0 51 h 1899 10495 4 +PQ +SE +ID 1584 +TI 1760667400.093567848 +UH 0 43 l 2709 10802 4 +UH 0 44 l 1760 10688 4 +UH 0 59 h 3026 10957 4 +PQ +SE +ID 1585 +TI 1760667400.093586683 +UH 0 9 l 1749 4839 0 +UH 0 10 l 2435 10585 4 +UH 0 64 l 3193 0 5 +UH 0 6 h 1899 11213 4 +UH 0 7 h 2292 11137 4 +UH 0 64 h 3158 0 5 +BD GR Veto +PQ +SE +ID 1586 +TI 1760667400.093614101 +UH 0 64 l 4383 0 5 +UH 0 64 h 4220 0 5 +BD GR Veto +PQ +SE +ID 1587 +TI 1760667400.093622446 +UH 0 16 l 2583 10951 4 +UH 0 18 l 1792 5121 0 +UH 0 19 l 2322 10938 4 +UH 0 56 h 2618 10863 4 +UH 0 57 h 2525 11052 4 +PQ +SE +ID 1588 +TI 1760667400.093650579 +UH 0 6 l 1605 8738 4 +UH 0 7 l 4329 8463 4 +UH 0 57 h 4280 9045 4 +PQ +SE +ID 1589 +TI 1760667400.093670129 +UH 0 40 l 2106 10778 4 +UH 0 41 l 2108 10927 4 +UH 0 6 h 1730 11472 4 +UH 0 7 h 2596 11326 4 +UH 0 8 h 1647 11739 4 +PQ +SE +ID 1590 +TI 1760667400.093695402 +UH 0 39 l 4462 3519 4 +UH 0 44 l 2262 10604 4 +UH 0 51 h 2279 11037 4 +UH 0 7 h 4605 3689 4 +PQ +SE +ID 1591 +TI 1760667400.093725204 +UH 0 64 l 2026 0 5 +UH 0 64 h 2082 0 5 +BD GR Veto +PQ +SE +ID 1592 +TI 1760667400.093733549 +UH 0 8 l 1669 8843 4 +UH 0 9 l 4763 8868 4 +UH 0 10 l 1673 8811 4 +UH 0 11 l 2575 8460 4 +UH 0 55 h 2567 8574 4 +UH 0 56 h 4371 8751 4 +UH 0 57 h 1899 8987 4 +PQ +SE +ID 1593 +TI 1760667400.093762874 +UH 0 21 l 1665 5489 0 +UH 0 22 l 2096 10700 4 +UH 0 24 l 2292 10882 4 +UH 0 36 h 1641 3017 0 +UH 0 37 h 2757 10934 4 +PQ +SE +ID 1594 +TI 1760667400.093789100 +UH 0 64 l 2004 0 5 +UH 0 64 h 3226 0 5 +BD GR Veto +PQ +SE +ID 1595 +TI 1760667400.093797683 +UH 0 21 l 2508 11087 4 +UH 0 22 l 2778 10784 4 +UH 0 32 h 2880 10742 4 +UH 0 31 h 2279 10670 4 +PQ +SE +ID 1596 +TI 1760667400.093820095 +UH 0 34 l 1967 10868 4 +UH 0 7 h 1796 11442 4 +UH 0 8 h 1774 11794 4 +PQ +SE +ID 1597 +TI 1760667400.093839168 +UH 0 42 l 2373 11068 4 +UH 0 64 l 1762 0 5 +UH 0 62 h 2038 10551 4 +UH 0 63 h 1954 10628 4 +UH 0 64 h 1736 0 5 +BD GR Veto +PQ +SE +ID 1598 +TI 1760667400.093861103 +UH 0 64 l 1632 0 5 +BD GR Veto +PQ +SE +ID 1599 +TI 1760667400.111725568 +UH 0 16 l 1846 10539 4 +UH 0 17 l 1664 4296 0 +UH 0 64 l 2435 0 5 +UH 0 12 h 1596 4877 0 +UH 0 13 h 1904 11268 4 +UH 0 21 h 2412 10914 4 +BD GR Veto +PQ +SE +ID 1600 +TI 1760667400.111794710 +UH 0 58 l 1583 8398 4 +UH 0 59 l 4139 8479 4 +UH 0 47 h 4211 8676 4 +PQ +SE +ID 1601 +TI 1760667400.111817359 +UH 0 21 l 3637 11047 4 +UH 0 23 l 2143 10313 4 +UH 0 20 h 3555 10677 4 +UH 0 26 h 2020 11402 4 +PQ +SE +ID 1602 +TI 1760667400.111849069 +UH 0 64 l 2163 0 5 +UH 0 64 h 3152 0 5 +BD GR Veto +PQ +SE +ID 1603 +TI 1760667400.111856698 +UH 0 45 l 1534 9038 4 +UH 0 46 l 3653 8838 4 +UH 0 47 l 1549 9066 4 +UH 0 13 h 1590 9445 4 +UH 0 14 h 3715 9437 4 +PQ +SE +ID 1604 +TI 1760667400.111883878 +UH 0 0 l 2013 10809 4 +UH 0 1 l 1896 11273 4 +UH 0 2 l 1758 5119 0 +UH 0 9 l 1926 11102 4 +UH 0 64 l 1903 0 5 +UH 0 34 h 1821 10736 4 +UH 0 35 h 2120 10936 4 +UH 0 14 h 1888 11282 4 +UH 0 64 h 1975 0 5 +BD GR Veto +PQ +SE +ID 1605 +TI 1760667400.111931562 +UH 0 55 l 1851 10523 4 +UH 0 64 l 2143 0 5 +UH 0 64 h 2555 0 5 +BD GR Veto +PQ +SE +ID 1606 +TI 1760667400.111948251 +UH 0 59 l 2010 10630 4 +UH 0 60 l 1770 10459 4 +UH 0 23 h 2027 11274 4 +UH 0 24 h 1729 11251 4 +PQ +SE +ID 1607 +TI 1760667400.111971616 +UH 0 64 l 2158 0 5 +UH 0 64 h 2356 0 5 +BD GR Veto +PQ +SE +ID 1608 +TI 1760667400.111978769 +UH 0 30 l 2034 11145 4 +UH 0 46 h 2009 10994 4 +PQ +SE +ID 1609 +TI 1760667400.111997365 +UH 0 20 l 1693 5287 0 +UH 0 21 l 2515 10444 4 +UH 0 2 h 2612 11091 4 +PQ +SE +ID 1610 +TI 1760667400.112018346 +UH 0 32 l 3654 10689 4 +UH 0 29 l 1812 4770 0 +UH 0 30 l 2447 10736 4 +UH 0 42 h 3617 10160 4 +UH 0 43 h 1563 10696 4 +UH 0 44 h 2628 10438 4 +PQ +SE +ID 1611 +TI 1760667400.112048864 +UH 0 64 l 1744 0 5 +UH 0 64 h 1807 0 5 +BD GR Veto +PQ +SE +ID 1612 +TI 1760667400.112057924 +UH 0 17 l 1967 8514 4 +UH 0 18 l 3763 8344 4 +UH 0 19 l 1628 8733 4 +UH 0 4 h 4181 9431 4 +PQ +SE +ID 1613 +TI 1760667400.112080812 +UH 0 44 l 1637 5006 0 +UH 0 50 l 1707 5147 0 +UH 0 64 l 2435 0 5 +UH 0 37 h 1716 4473 0 +UH 0 55 h 1811 4426 0 +UH 0 27 h 2127 11013 4 +UH 0 64 h 1895 0 5 +BD GR Veto +PQ +SE +ID 1614 +TI 1760667400.112173795 +UH 0 21 l 2436 11055 4 +UH 0 22 l 2277 10807 4 +UH 0 45 h 1780 11262 4 +UH 0 46 h 2866 11028 4 +PQ +SE +ID 1615 +TI 1760667400.112196922 +UH 0 42 l 2083 10982 4 +UH 0 0 h 2098 11330 4 +PQ +SE +ID 1616 +TI 1760667400.112211704 +UH 0 46 l 2184 10339 4 +UH 0 49 l 1542 5416 0 +UH 0 50 l 1714 4730 0 +UH 0 51 l 2583 10395 4 +UH 0 12 h 1611 4696 0 +UH 0 13 h 2234 11008 4 +UH 0 14 h 2677 11184 4 +PQ +SE +ID 1617 +TI 1760667400.112246513 +UH 0 64 l 1709 0 5 +UH 0 64 h 1891 0 5 +BD GR Veto +PQ +SE +ID 1618 +TI 1760667400.112254381 +UH 0 51 l 1999 11016 4 +UH 0 52 l 2095 10962 4 +UH 0 54 l 2075 10952 4 +UH 0 56 l 1780 10980 4 +UH 0 57 l 1713 4786 0 +UH 0 41 h 2073 10749 4 +UH 0 43 h 2054 10512 4 +UH 0 44 h 2165 10316 4 +UH 0 49 h 1773 10664 4 +PQ +SE +ID 1619 +TI 1760667400.112306594 +UH 0 64 l 4528 0 5 +UH 0 64 h 4365 0 5 +BD GR Veto +PQ +SE +ID 1620 +TI 1760667400.112314701 +UH 0 33 l 1667 5106 0 +UH 0 61 h 1641 5214 0 +PQ +SE +ID 1621 +TI 1760667400.112333297 +UH 0 2 l 1778 4854 0 +UH 0 3 l 2627 10850 4 +UH 0 33 h 2535 10539 4 +UH 0 35 h 1751 5017 0 +PQ +SE +ID 1622 +TI 1760667400.112358331 +UH 0 39 l 1976 10676 4 +UH 0 64 l 1700 0 5 +UH 0 59 h 1955 10982 4 +UH 0 64 h 1782 0 5 +BD GR Veto +PQ +SE +ID 1623 +TI 1760667400.112381696 +UH 0 19 l 1945 10764 4 +UH 0 20 l 2020 10579 4 +UH 0 21 l 1902 11030 4 +UH 0 29 h 2611 11199 4 +PQ +SE +ID 1624 +TI 1760667400.112404823 +UH 0 64 l 3217 0 5 +UH 0 64 h 3204 0 5 +BD GR Veto +PQ +SE +ID 1625 +TI 1760667400.112413167 +UH 0 24 l 3390 10954 4 +UH 0 64 l 2765 0 5 +UH 0 0 h 2479 11211 4 +UH 0 1 h 2398 11248 4 +UH 0 64 h 2762 0 5 +BD GR Veto +PQ +SE +ID 1626 +TI 1760667400.112436771 +UH 0 48 l 2174 11141 4 +UH 0 36 h 1898 10546 4 +UH 0 37 h 1927 10751 4 +PQ +SE +ID 1627 +TI 1760667400.112457990 +UH 0 17 l 2869 10819 4 +UH 0 45 h 2767 10903 4 +PQ +SE +ID 1628 +TI 1760667400.112475872 +UH 0 50 l 1582 5361 0 +UH 0 51 l 2055 10215 4 +UH 0 9 h 2048 10856 4 +PQ +SE +ID 1629 +TI 1760667400.112496137 +UH 0 35 l 2858 10788 4 +UH 0 36 l 1895 10598 4 +UH 0 37 l 1669 4886 0 +UH 0 19 l 2086 10941 4 +UH 0 27 l 1667 4932 0 +UH 0 13 h 1847 11200 4 +UH 0 14 h 3007 11148 4 +UH 0 15 h 2081 11321 4 +UH 0 16 h 1640 5268 0 +PQ +SE +ID 1630 +TI 1760667400.112541437 +UH 0 4 l 2098 10601 4 +UH 0 5 l 1705 4124 0 +UH 0 9 l 2433 10762 4 +UH 0 1 h 2449 11179 4 +UH 0 5 h 2209 11411 4 +PQ +SE +ID 1631 +TI 1760667400.112576246 +UH 0 46 l 2150 10491 4 +UH 0 14 h 2241 11480 4 +PQ +SE +ID 1632 +TI 1760667400.112594366 +UH 0 25 l 1796 4953 0 +UH 0 59 h 1699 5378 0 +PQ +SE +ID 1633 +TI 1760667400.112612724 +UH 0 52 l 2364 10752 4 +UH 0 59 l 2344 10906 4 +UH 0 36 h 2328 10834 4 +UH 0 37 h 1629 5220 0 +UH 0 41 h 2341 10669 4 +PQ +SE +ID 1634 +TI 1760667400.112648010 +UH 0 42 l 3708 10918 4 +UH 0 60 h 3361 10617 4 +UH 0 61 h 1818 11141 4 +PQ +SE +ID 1635 +TI 1760667400.112667322 +UH 0 33 l 2559 10582 4 +UH 0 43 h 2530 10919 4 +PQ +SE +ID 1636 +TI 1760667400.112684488 +UH 0 43 l 2020 10870 4 +UH 0 53 h 2077 11162 4 +PQ +SE +ID 1637 +TI 1760667400.112702369 +UH 0 51 l 2311 10893 4 +UH 0 52 l 1671 5382 0 +UH 0 47 h 2455 10956 4 +PQ +SE +ID 1638 +TI 1760667400.112722396 +UH 0 1 l 2170 11331 4 +UH 0 2 l 1670 5410 0 +UH 0 16 l 1948 10962 4 +UH 0 36 h 2003 11274 4 +UH 0 50 h 2276 11040 4 +UH 0 30 h 1607 5594 0 +PQ +SE +ID 1639 +TI 1760667400.112764835 +UH 0 32 l 1760 4894 0 +UH 0 31 l 2117 10884 4 +UH 0 3 h 1770 4550 0 +UH 0 5 h 2103 11430 4 +PQ +SE +ID 1640 +TI 1760667400.112789154 +UH 0 0 l 1940 10919 4 +UH 0 1 l 1937 11231 4 +UH 0 43 h 1630 4491 0 +UH 0 44 h 2157 10414 4 +PQ +SE +ID 1641 +TI 1760667400.112808704 +UH 0 63 l 1778 10945 4 +UH 0 40 h 1841 10964 4 +PQ +SE +ID 1642 +TI 1760667400.112823963 +UH 0 14 l 1881 5370 0 +UH 0 1 h 1780 11530 4 +UH 0 2 h 1646 4470 0 +PQ +SE +ID 1643 +TI 1760667400.112843036 +UH 0 36 l 2196 10646 4 +UH 0 21 h 2170 10891 4 +PQ +SE +ID 1644 +TI 1760667400.112860679 +UH 0 57 l 2053 10430 4 +UH 0 59 l 1837 4482 0 +UH 0 62 l 2254 10835 4 +UH 0 64 l 1693 0 5 +UH 0 9 h 2382 10812 4 +UH 0 14 h 1834 11339 4 +UH 0 17 h 2043 11099 4 +BD GR Veto +PQ +SE +ID 1645 +TI 1760667400.112906694 +UH 0 32 l 2545 10821 4 +UH 0 33 l 1773 10599 4 +UH 0 26 h 2461 11399 4 +UH 0 27 h 1795 11248 4 +PQ +SE +ID 1646 +TI 1760667400.112928867 +UH 0 49 l 1586 5160 0 +UH 0 52 l 2411 10872 4 +UH 0 64 l 2157 0 5 +UH 0 42 h 1643 4590 0 +UH 0 43 h 2328 10908 4 +UH 0 45 h 1611 4002 0 +UH 0 64 h 2184 0 5 +BD GR Veto +PQ +SE +ID 1647 +TI 1760667400.112966299 +UH 0 10 l 1637 4043 0 +UH 0 6 h 1564 5509 0 +PQ +SE +ID 1648 +TI 1760667400.112984418 +UH 0 42 l 2094 10583 4 +UH 0 43 l 2486 10506 4 +UH 0 15 h 1678 11368 4 +UH 0 16 h 2940 11242 4 +PQ +SE +ID 1649 +TI 1760667400.113007545 +UH 0 7 l 1921 10996 4 +UH 0 8 l 3277 10726 4 +UH 0 9 l 2760 10795 4 +UH 0 13 l 2423 10765 4 +UH 0 35 h 1912 10938 4 +UH 0 38 h 4389 10935 4 +UH 0 30 h 1943 11516 4 +UH 0 31 h 1952 10837 4 +PQ +SE +ID 1650 +TI 1760667400.113055706 +UH 0 13 l 5603 9069 4 +UH 0 14 l 1658 9128 4 +UH 0 25 h 1532 9177 4 +UH 0 26 h 4078 9530 4 +UH 0 27 h 1610 9163 4 +UH 0 29 h 2837 9109 4 +UH 0 30 h 1618 9384 4 +PQ +SE +ID 1651 +TI 1760667400.113089323 +UH 0 48 l 2166 7002 4 +UH 0 50 l 1653 1614 0 +UH 0 51 l 1912 1662 0 +UH 0 64 l 4290 0 5 +UH 0 47 h 1903 10738 4 +UH 0 50 h 1951 7234 4 +UH 0 55 h 2315 7103 4 +UH 0 64 h 3874 0 5 +BD GR Veto +PQ +SE +ID 1652 +TI 1760667400.113133668 +UH 0 36 l 2429 10544 4 +UH 0 15 l 2590 10614 4 +UH 0 29 l 1661 2589 0 +UH 0 30 l 1621 2129 0 +UH 0 31 l 1667 2274 0 +UH 0 54 h 2319 10716 4 +UH 0 55 h 1698 10469 4 +UH 0 56 h 2506 10693 4 +UH 0 64 h 1682 0 5 +BD GR Veto +PQ +SE +ID 1653 +TI 1760667400.113176822 +UH 0 57 l 2628 10803 4 +UH 0 42 h 2101 10163 4 +UH 0 43 h 2089 10402 4 +PQ +SE +ID 1654 +TI 1760667400.113197088 +UH 0 58 l 3242 8374 4 +UH 0 59 l 1579 8827 4 +UH 0 60 l 3212 8322 4 +UH 0 61 l 2300 8613 4 +UH 0 50 h 3328 8941 4 +UH 0 52 h 3882 9129 4 +PQ +SE +ID 1655 +TI 1760667400.113234519 +UH 0 29 l 1942 10568 4 +UH 0 30 l 2223 10826 4 +UH 0 27 h 2581 11303 4 +PQ +SE +ID 1656 +TI 1760667400.113255262 +UH 0 23 l 2471 10891 4 +UH 0 23 h 2330 10965 4 +PQ +SE +ID 1657 +TI 1760667400.113273382 +UH 0 13 l 1612 5191 0 +UH 0 14 l 1717 5150 0 +UH 0 14 h 1576 4094 0 +UH 0 15 h 1711 5716 0 +PQ +SE +ID 1658 +TI 1760667400.113296270 +UH 0 48 l 1547 8778 4 +UH 0 49 l 3176 8601 4 +UH 0 50 l 1590 8618 4 +UH 0 51 l 3021 8783 4 +UH 0 52 l 1596 4929 0 +UH 0 52 h 4633 8867 4 +PQ +SE +ID 1659 +TI 1760667400.113323450 +UH 0 35 l 3715 10549 4 +UH 0 26 h 2000 11420 4 +UH 0 27 h 3255 11142 4 +PQ +SE +ID 1660 +TI 1760667400.113344430 +UH 0 25 l 1951 11350 4 +UH 0 45 h 1781 10859 4 +UH 0 46 h 1603 2946 0 +PQ +SE +ID 1661 +TI 1760667400.113364458 +UH 0 9 l 4452 9011 4 +UH 0 10 l 1638 8996 4 +UH 0 8 h 2788 9654 4 +UH 0 9 h 3166 9281 4 +PQ +SE +ID 1662 +TI 1760667400.113387346 +UH 0 64 l 2566 0 5 +UH 0 11 h 1870 11173 4 +UH 0 12 h 1613 4552 0 +UH 0 64 h 2213 0 5 +BD GR Veto +PQ +SE +ID 1663 +TI 1760667400.132865905 +UH 0 9 l 1798 11177 4 +UH 0 7 h 1807 11559 4 +PQ +SE +ID 1664 +TI 1760667400.132914781 +UH 0 29 l 2023 11138 4 +UH 0 63 h 1978 10905 4 +PQ +SE +ID 1665 +TI 1760667400.132932186 +UH 0 17 l 2122 10448 4 +UH 0 18 l 1589 5203 0 +UH 0 49 h 2009 10721 4 +UH 0 50 h 1667 4482 0 +PQ +SE +ID 1666 +TI 1760667400.132955789 +UH 0 50 l 1628 5389 0 +UH 0 51 l 1634 5143 0 +UH 0 55 h 1699 4337 0 +UH 0 56 h 1619 4704 0 +PQ +SE +ID 1667 +TI 1760667400.132978200 +UH 0 64 l 1900 0 5 +UH 0 64 h 2012 0 5 +BD GR Veto +PQ +SE +ID 1668 +TI 1760667400.132987499 +UH 0 55 l 3709 9086 4 +UH 0 56 l 1555 5488 0 +UH 0 25 h 3651 9474 4 +PQ +SE +ID 1669 +TI 1760667400.133014202 +UH 0 8 l 2974 10879 4 +UH 0 9 l 2760 10917 4 +UH 0 23 h 2904 10925 4 +UH 0 24 h 2667 10916 4 +PQ +SE +ID 1670 +TI 1760667400.133037805 +UH 0 59 l 1905 10840 4 +UH 0 40 h 1914 11247 4 +PQ +SE +ID 1671 +TI 1760667400.133056163 +UH 0 25 l 1653 9081 4 +UH 0 26 l 3835 9139 4 +UH 0 27 l 1634 8841 4 +UH 0 28 l 1841 9079 4 +UH 0 29 l 3214 8593 4 +UH 0 48 h 3843 8739 4 +UH 0 59 h 1885 8906 4 +UH 0 60 h 3017 8589 4 +PQ +SE +ID 1672 +TI 1760667400.133093833 +UH 0 24 l 1673 5155 0 +UH 0 25 l 1949 5218 0 +UH 0 26 l 1681 5417 0 +UH 0 27 l 1667 5241 0 +UH 0 22 h 1778 5074 0 +UH 0 27 h 1949 11437 4 +PQ +SE +ID 1673 +TI 1760667400.133126974 +UH 0 10 l 1855 11371 4 +UH 0 18 h 1821 11313 4 +PQ +SE +ID 1674 +TI 1760667400.133145570 +UH 0 59 l 2540 10778 4 +UH 0 24 h 2012 10686 4 +UH 0 25 h 1983 10902 4 +PQ +SE +ID 1675 +TI 1760667400.133166074 +UH 0 61 l 1652 5280 0 +UH 0 62 l 1615 3920 0 +UH 0 63 l 1527 4536 0 +UH 0 64 l 1717 0 5 +UH 0 64 h 2563 0 5 +BD GR Veto +PQ +SE +ID 1676 +TI 1760667400.133183240 +UH 0 25 l 4550 11163 4 +UH 0 58 h 4333 10742 4 +PQ +SE +ID 1677 +TI 1760667400.133201360 +UH 0 56 l 2118 10628 4 +UH 0 57 l 2000 10365 4 +UH 0 60 l 1622 4326 0 +UH 0 32 h 1575 4302 0 +UH 0 23 h 2662 11176 4 +PQ +SE +ID 1678 +TI 1760667400.133239746 +UH 0 18 l 5087 8626 4 +UH 0 19 l 1653 9033 4 +UH 0 7 h 1633 9240 4 +UH 0 8 h 5085 9434 4 +UH 0 9 h 1590 9200 4 +PQ +SE +ID 1679 +TI 1760667400.133265495 +UH 0 32 l 1661 4841 0 +UH 0 51 l 3914 10819 4 +UH 0 4 h 3803 11010 4 +UH 0 7 h 1632 5238 0 +UH 0 8 h 1608 5498 0 +PQ +SE +ID 1680 +TI 1760667400.133301496 +UH 0 56 l 1660 5447 0 +UH 0 50 h 1746 4798 0 +PQ +SE +ID 1681 +TI 1760667400.133318901 +UH 0 21 l 1599 5493 0 +UH 0 22 l 1620 8201 4 +UH 0 23 l 4569 8100 4 +UH 0 24 l 1693 8304 4 +UH 0 6 h 4496 8911 4 +PQ +SE +ID 1682 +TI 1760667400.133342504 +UH 0 26 l 4348 9307 4 +UH 0 27 l 1624 8999 4 +UH 0 46 h 4227 9324 4 +PQ +SE +ID 1683 +TI 1760667400.133362770 +UH 0 64 l 2820 0 5 +UH 0 34 h 1627 4504 0 +UH 0 64 h 2849 0 5 +BD GR Veto +PQ +SE +ID 1684 +TI 1760667400.133377790 +UH 0 13 l 3138 10299 4 +UH 0 14 l 2555 10268 4 +UH 0 0 h 4101 11150 4 +PQ +SE +ID 1685 +TI 1760667400.133395433 +UH 0 48 l 1595 10971 4 +UH 0 49 l 4251 10849 4 +UH 0 1 h 4388 11129 4 +PQ +SE +ID 1686 +TI 1760667400.133415460 +UH 0 1 l 2539 11156 4 +UH 0 43 h 2450 11169 4 +PQ +SE +ID 1687 +TI 1760667400.133433580 +UH 0 32 l 2480 10596 4 +UH 0 21 h 2406 11475 4 +PQ +SE +ID 1688 +TI 1760667400.133451223 +UH 0 55 l 1543 4958 0 +UH 0 58 l 3047 9834 4 +UH 0 59 l 1576 10154 4 +UH 0 18 h 1620 3827 0 +UH 0 24 h 3052 10688 4 +PQ +SE +ID 1689 +TI 1760667400.133486032 +UH 0 37 l 2082 9746 4 +UH 0 38 l 1678 3807 0 +UH 0 50 l 2413 9766 4 +UH 0 51 l 1634 5457 0 +UH 0 45 h 2393 10207 4 +UH 0 48 h 2252 10169 4 +PQ +SE +ID 1690 +TI 1760667400.133529901 +UH 0 64 h 1800 0 5 +BD GR Veto +PQ +SE +ID 1691 +TI 1760667400.133535385 +UH 0 35 l 1572 5425 0 +UH 0 36 l 2410 10259 4 +UH 0 48 h 2020 10626 4 +UH 0 49 h 1936 10624 4 +PQ +SE +ID 1692 +TI 1760667400.133557319 +UH 0 38 l 3338 10817 4 +UH 0 3 h 3464 10491 4 +PQ +SE +ID 1693 +TI 1760667400.133574724 +UH 0 64 l 3137 0 5 +UH 0 64 h 3083 0 5 +BD GR Veto +PQ +SE +ID 1694 +TI 1760667400.133582353 +UH 0 27 l 2892 10801 4 +UH 0 31 l 1798 11045 4 +UH 0 34 h 1770 10308 4 +UH 0 35 h 2791 10350 4 +PQ +SE +ID 1695 +TI 1760667400.133609771 +UH 0 7 l 1761 9567 4 +UH 0 8 l 2171 9516 4 +UH 0 10 l 1721 3019 0 +UH 0 23 l 3434 9487 4 +UH 0 24 l 1817 3667 0 +UH 0 7 h 1633 9787 4 +UH 0 8 h 3505 9871 4 +UH 0 12 h 1634 3486 0 +UH 0 14 h 2266 9586 4 +PQ +SE +ID 1696 +TI 1760667400.133658885 +UH 0 12 l 2090 10761 4 +UH 0 24 h 1969 10961 4 +PQ +SE +ID 1697 +TI 1760667400.133676528 +UH 0 43 l 1923 10882 4 +UH 0 44 l 1578 4861 0 +UH 0 53 h 2099 11077 4 +PQ +SE +ID 1698 +TI 1760667400.133696556 +UH 0 25 l 2956 10933 4 +UH 0 42 h 2878 10287 4 +UH 0 43 h 1575 10633 4 +PQ +SE +ID 1699 +TI 1760667400.133716583 +UH 0 34 l 1707 5011 0 +UH 0 54 l 3180 10819 4 +UH 0 55 l 1805 10713 4 +UH 0 43 h 1588 4261 0 +UH 0 44 h 1630 10812 4 +UH 0 45 h 3456 10976 4 +PQ +SE +ID 1700 +TI 1760667400.133748531 +UH 0 38 l 2594 10537 4 +UH 0 39 l 1868 10533 4 +UH 0 12 h 1537 10500 4 +UH 0 13 h 2952 10470 4 +PQ +SE +ID 1701 +TI 1760667400.133771181 +UH 0 53 l 2113 10760 4 +UH 0 9 h 2117 11574 4 +PQ +SE +ID 1702 +TI 1760667400.133788824 +UH 0 64 l 1766 0 5 +UH 0 64 h 1842 0 5 +BD GR Veto +PQ +SE +ID 1703 +TI 1760667400.133796215 +UH 0 34 l 2672 10594 4 +UH 0 35 l 2187 10907 4 +UH 0 18 h 2247 11041 4 +UH 0 19 h 2611 11182 4 +PQ +SE +ID 1704 +TI 1760667400.133818864 +UH 0 63 l 1837 10608 4 +UH 0 4 l 2373 9929 4 +UH 0 5 l 1640 2721 0 +UH 0 14 l 2666 8590 4 +UH 0 46 h 2598 8749 4 +UH 0 16 h 1756 10239 4 +UH 0 17 h 2125 10013 4 +UH 0 28 h 1919 11325 4 +UH 0 29 h 1577 5037 0 +PQ +SE +ID 1705 +TI 1760667400.133869409 +UH 0 64 h 1691 0 5 +BD GR Veto +PQ +SE +ID 1706 +TI 1760667400.133875370 +UH 0 32 l 4166 10402 4 +UH 0 33 l 1668 10308 4 +UH 0 16 h 1616 11189 4 +UH 0 17 h 3940 10979 4 +PQ +SE +ID 1707 +TI 1760667400.133898735 +UH 0 36 l 3724 10502 4 +UH 0 10 h 3599 11278 4 +UH 0 11 h 1700 11248 4 +PQ +SE +ID 1708 +TI 1760667400.133919239 +UH 0 21 l 2644 10976 4 +UH 0 46 h 1870 11099 4 +UH 0 47 h 2369 10992 4 +PQ +SE +ID 1709 +TI 1760667400.133943557 +UH 0 5 l 2062 10752 4 +UH 0 6 l 1615 5059 0 +UH 0 47 h 2130 11135 4 +PQ +SE +ID 1710 +TI 1760667400.133963584 +UH 0 55 l 1743 10511 4 +UH 0 56 l 3624 10973 4 +UH 0 57 l 2301 10607 4 +UH 0 58 l 1855 10257 4 +UH 0 59 l 2025 10504 4 +UH 0 26 h 2457 11298 4 +UH 0 30 h 3806 11311 4 +UH 0 31 h 2335 10683 4 +PQ +SE +ID 1711 +TI 1760667400.133996963 +UH 0 57 l 2401 10675 4 +UH 0 57 h 2476 11312 4 +PQ +SE +ID 1712 +TI 1760667400.134014129 +UH 0 22 l 1707 4827 0 +UH 0 24 l 2287 10829 4 +UH 0 20 h 2221 11146 4 +UH 0 21 h 1676 11429 4 +PQ +SE +ID 1713 +TI 1760667400.134038925 +UH 0 4 l 1608 8981 4 +UH 0 5 l 4383 8658 4 +UH 0 6 l 1597 8960 4 +UH 0 28 h 4279 9245 4 +PQ +SE +ID 1714 +TI 1760667400.134061574 +UH 0 39 l 2004 11093 4 +UH 0 13 h 1681 4520 0 +UH 0 14 h 1818 11126 4 +PQ +SE +ID 1715 +TI 1760667400.134081840 +UH 0 35 l 1974 10750 4 +UH 0 36 l 1673 4875 0 +UH 0 39 l 2058 10755 4 +UH 0 31 l 1691 4896 0 +UH 0 11 h 2110 11392 4 +UH 0 17 h 1650 11216 4 +UH 0 19 h 2066 11530 4 +PQ +SE +ID 1716 +TI 1760667400.134135484 +UH 0 10 l 2163 10489 4 +UH 0 11 l 3814 10100 4 +UH 0 1 h 1821 5266 0 +UH 0 4 h 3925 11408 4 +UH 0 5 h 1640 11323 4 +PQ +SE +ID 1717 +TI 1760667400.134165048 +UH 0 13 l 2200 11093 4 +UH 0 14 l 1866 11058 4 +UH 0 23 h 2452 11094 4 +PQ +SE +ID 1718 +TI 1760667400.134185552 +UH 0 21 l 1606 10338 4 +UH 0 22 l 2886 9984 4 +UH 0 59 h 2291 9813 4 +UH 0 60 h 2110 9579 4 +PQ +SE +ID 1719 +TI 1760667400.134208440 +UH 0 1 l 2375 11278 4 +UH 0 64 l 2271 0 5 +UH 0 13 h 1632 4552 0 +UH 0 14 h 2210 11173 4 +UH 0 64 h 2285 0 5 +BD GR Veto +PQ +SE +ID 1720 +TI 1760667400.134233713 +UH 0 3 l 3650 9529 4 +UH 0 4 l 1639 9865 4 +UH 0 29 h 3640 10289 4 +PQ +SE +ID 1721 +TI 1760667400.134253740 +UH 0 29 l 1875 5387 0 +UH 0 2 h 1854 11537 4 +PQ +SE +ID 1722 +TI 1760667400.134271860 +UH 0 6 l 2131 10887 4 +UH 0 7 l 1612 5079 0 +UH 0 37 h 2221 11462 4 +PQ +SE +ID 1723 +TI 1760667400.134291410 +UH 0 43 l 1793 11363 4 +UH 0 37 h 1875 11193 4 +PQ +SE +ID 1724 +TI 1760667400.134306669 +UH 0 63 l 1533 5238 0 +UH 0 64 l 1843 0 5 +UH 0 64 h 2545 0 5 +BD GR Veto +PQ +SE +ID 1725 +TI 1760667400.134319067 +UH 0 64 l 1692 0 5 +UH 0 64 h 2719 0 5 +BD GR Veto +PQ +SE +ID 1726 +TI 1760667400.134326934 +UH 0 64 l 2530 0 5 +UH 0 64 h 2737 0 5 +BD GR Veto +PQ +SE +ID 1727 +TI 1760667400.159193515 +UH 0 31 l 3517 11138 4 +UH 0 2 h 3673 10866 4 +PQ +SE +ID 1728 +TI 1760667400.159272432 +UH 0 13 l 4341 10729 4 +UH 0 61 h 4394 11060 4 +PQ +SE +ID 1729 +TI 1760667400.159312725 +UH 0 56 l 3336 10976 4 +UH 0 51 h 3324 10529 4 +PQ +SE +ID 1730 +TI 1760667400.159352302 +UH 0 0 l 2006 10768 4 +UH 0 1 l 2011 11079 4 +UH 0 64 l 3169 0 5 +UH 0 28 h 1780 4903 0 +UH 0 30 h 2370 11402 4 +UH 0 64 h 2931 0 5 +BD GR Veto +PQ +SE +ID 1731 +TI 1760667400.159409999 +UH 0 55 l 1515 8365 4 +UH 0 56 l 4237 8364 4 +UH 0 57 l 1774 8214 4 +UH 0 58 l 1758 2580 0 +UH 0 9 h 2802 8798 4 +UH 0 10 h 2769 9041 4 +UH 0 11 h 2081 8953 4 +UH 0 12 h 1689 2274 0 +UH 0 13 h 1609 2192 0 +PQ +SE +ID 1732 +TI 1760667400.159482002 +UH 0 39 l 2452 10900 4 +UH 0 3 h 2394 10524 4 +UH 0 4 h 1700 4437 0 +PQ +SE +ID 1733 +TI 1760667400.159525871 +UH 0 64 l 1741 0 5 +UH 0 64 h 2512 0 5 +BD GR Veto +PQ +SE +ID 1734 +TI 1760667400.159541130 +UH 0 15 l 1815 5205 0 +UH 0 62 h 1795 4683 0 +PQ +SE +ID 1735 +TI 1760667400.159581184 +UH 0 64 l 2447 0 5 +UH 0 64 h 2533 0 5 +BD GR Veto +PQ +SE +ID 1736 +TI 1760667400.159595966 +UH 0 37 l 1616 8151 4 +UH 0 38 l 4456 7982 4 +UH 0 39 l 1620 8051 4 +UH 0 28 h 4521 8582 4 +PQ +SE +ID 1737 +TI 1760667400.159643650 +UH 0 0 l 2712 10927 4 +UH 0 48 h 2725 10473 4 +PQ +SE +ID 1738 +TI 1760667400.159681320 +UH 0 39 l 1908 10371 4 +UH 0 40 l 1730 4633 0 +UH 0 52 l 1773 5305 0 +UH 0 61 l 2818 10699 4 +UH 0 23 h 1696 10753 4 +UH 0 24 h 2521 10647 4 +UH 0 27 h 2145 11116 4 +UH 0 28 h 1663 4663 0 +UH 0 29 h 1673 4456 0 +PQ +SE +ID 1739 +TI 1760667400.159776687 +UH 0 63 l 2461 10630 4 +UH 0 52 h 1609 11223 4 +UH 0 53 h 2426 11013 4 +PQ +SE +ID 1740 +TI 1760667400.159814834 +UH 0 36 l 3858 8305 4 +UH 0 37 l 1588 8774 4 +UH 0 25 l 2053 8797 4 +UH 0 4 h 1651 2811 0 +UH 0 5 h 3743 9357 4 +UH 0 23 h 1955 9177 4 +PQ +SE +ID 1741 +TI 1760667400.159919500 +UH 0 58 l 3452 10543 4 +UH 0 35 h 1955 10389 4 +UH 0 36 h 3088 10386 4 +PQ +SE +ID 1742 +TI 1760667400.159962892 +UH 0 50 l 2158 10746 4 +UH 0 51 l 1899 10928 4 +UH 0 52 l 1708 5202 0 +UH 0 51 h 2316 11058 4 +UH 0 52 h 1819 11170 4 +PQ +SE +ID 1743 +TI 1760667400.160017728 +UH 0 3 l 3247 8883 4 +UH 0 4 l 1596 9202 4 +UH 0 20 l 3927 8890 4 +UH 0 21 l 1613 9368 4 +UH 0 34 h 3141 8982 4 +UH 0 15 h 3816 9597 4 +UH 0 16 h 1583 9699 4 +PQ +SE +ID 1744 +TI 1760667400.160141468 +UH 0 15 l 2196 10993 4 +UH 0 31 l 1614 2300 0 +UH 0 40 h 2123 10599 4 +PQ +SE +ID 1745 +TI 1760667400.160185337 +UH 0 20 l 2548 10722 4 +UH 0 24 l 2280 10711 4 +UH 0 53 h 1921 10798 4 +UH 0 54 h 2041 10934 4 +UH 0 56 h 2167 11115 4 +PQ +SE +ID 1746 +TI 1760667400.160247325 +UH 0 36 l 3095 10292 4 +UH 0 21 h 3017 11287 4 +PQ +SE +ID 1747 +TI 1760667400.160282373 +UH 0 34 l 1586 8470 4 +UH 0 35 l 4329 8467 4 +UH 0 6 h 4162 8916 4 +UH 0 7 h 1773 8958 4 +PQ +SE +ID 1748 +TI 1760667400.160325527 +UH 0 37 l 1690 4989 0 +UH 0 38 l 1923 10813 4 +UH 0 41 l 2190 11035 4 +UH 0 42 l 1801 11120 4 +UH 0 10 h 1997 11398 4 +UH 0 14 h 1581 4513 0 +UH 0 18 h 2541 10964 4 +PQ +SE +ID 1749 +TI 1760667400.160411596 +UH 0 37 l 1753 10594 4 +UH 0 38 l 3219 10462 4 +UH 0 11 h 3530 11312 4 +PQ +SE +ID 1750 +TI 1760667400.160450458 +UH 0 41 l 4060 9146 4 +UH 0 42 l 1634 9391 4 +UH 0 31 l 2113 9023 4 +UH 0 10 h 1799 9833 4 +UH 0 11 h 3900 9601 4 +UH 0 13 h 2184 9684 4 +PQ +SE +ID 1751 +TI 1760667400.160517454 +UH 0 29 l 2316 10772 4 +UH 0 5 h 2269 11376 4 +PQ +SE +ID 1752 +TI 1760667400.160551786 +UH 0 56 l 1962 10853 4 +UH 0 57 l 1664 4768 0 +UH 0 56 h 2167 11176 4 +PQ +SE +ID 1753 +TI 1760667400.160590648 +UH 0 23 l 3471 10706 4 +UH 0 24 l 1988 10928 4 +UH 0 56 h 2591 11209 4 +UH 0 57 h 1848 11339 4 +UH 0 58 h 2327 10911 4 +PQ +SE +ID 1754 +TI 1760667400.160639286 +UH 0 40 l 4109 10819 4 +UH 0 64 l 1675 0 5 +UH 0 14 h 3955 10941 4 +UH 0 15 h 1710 11251 4 +UH 0 64 h 1750 0 5 +BD GR Veto +PQ +SE +ID 1755 +TI 1760667400.160669088 +UH 0 9 l 2989 10913 4 +UH 0 11 l 2417 10423 4 +UH 0 0 h 2273 10923 4 +UH 0 1 h 2272 11145 4 +UH 0 2 h 2322 11099 4 +PQ +SE +ID 1756 +TI 1760667400.160694599 +UH 0 38 l 2512 9256 4 +UH 0 39 l 2333 8809 4 +UH 0 44 l 1507 9013 4 +UH 0 45 l 3803 8807 4 +UH 0 14 h 2282 9606 4 +UH 0 16 h 2077 9350 4 +UH 0 17 h 1582 9615 4 +UH 0 18 h 2306 9423 4 +UH 0 19 h 3019 9648 4 +UH 0 23 h 1792 9109 4 +UH 0 24 h 1635 3008 0 +PQ +SE +ID 1757 +TI 1760667400.160748243 +UH 0 4 l 3514 10988 4 +UH 0 23 h 1774 11052 4 +UH 0 24 h 3182 10934 4 +PQ +SE +ID 1758 +TI 1760667400.160769224 +UH 0 23 l 1747 10863 4 +UH 0 24 l 2484 10794 4 +UH 0 26 l 2641 10945 4 +UH 0 50 h 2773 10808 4 +UH 0 51 h 2270 10775 4 +PQ +SE +ID 1759 +TI 1760667400.160796880 +UH 0 64 l 1674 0 5 +UH 0 64 h 1767 0 5 +BD GR Veto +PQ +SE +ID 1760 +TI 1760667400.160805940 +UH 0 52 l 1614 5370 0 +UH 0 53 l 2151 10902 4 +UH 0 29 h 1976 10966 4 +UH 0 30 h 1724 11186 4 +PQ +SE +ID 1761 +TI 1760667400.160829544 +UH 0 64 l 2487 0 5 +UH 0 64 h 2525 0 5 +BD GR Veto +PQ +SE +ID 1762 +TI 1760667400.160837888 +UH 0 50 l 2485 10852 4 +UH 0 15 h 2491 11126 4 +PQ +SE +ID 1763 +TI 1760667400.160860300 +UH 0 34 l 2406 10565 4 +UH 0 57 h 2425 11228 4 +PQ +SE +ID 1764 +TI 1760667400.160878896 +UH 0 25 l 2116 8751 4 +UH 0 27 l 1631 8733 4 +UH 0 28 l 4149 8832 4 +UH 0 8 h 4035 9212 4 +UH 0 15 h 1988 9157 4 +UH 0 16 h 1630 2922 0 +PQ +SE +ID 1765 +TI 1760667400.160914182 +UH 0 63 l 1946 9972 4 +UH 0 64 l 2271 0 5 +UH 0 11 h 2042 10211 4 +UH 0 64 h 2343 0 5 +BD GR Veto +PQ +SE +ID 1766 +TI 1760667400.160934209 +UH 0 64 l 3513 0 5 +UH 0 53 h 3228 10950 4 +UH 0 64 h 1878 0 5 +BD GR Veto +PQ +SE +ID 1767 +TI 1760667400.160948991 +UH 0 38 l 1894 10967 4 +UH 0 39 l 2604 10763 4 +UH 0 41 h 1611 11158 4 +UH 0 42 h 2985 10625 4 +PQ +SE +ID 1768 +TI 1760667400.160971879 +UH 0 13 l 4006 10250 4 +UH 0 14 l 2001 10282 4 +UH 0 16 h 4277 11249 4 +PQ +SE +ID 1769 +TI 1760667400.160992145 +UH 0 39 l 2333 10792 4 +UH 0 41 l 1493 4650 0 +UH 0 55 h 1684 4171 0 +UH 0 56 h 2319 10595 4 +PQ +SE +ID 1770 +TI 1760667400.161018133 +UH 0 14 l 1654 8780 4 +UH 0 15 l 4397 8525 4 +UH 0 16 l 1573 8718 4 +UH 0 26 l 1754 1630 0 +UH 0 27 l 1746 1594 0 +UH 0 28 l 1757 1484 0 +UH 0 29 l 1827 1524 0 +UH 0 30 l 1826 1566 0 +UH 0 31 l 1992 1585 0 +UH 0 60 h 4329 8812 4 +PQ +SE +ID 1771 +TI 1760667400.161056518 +UH 0 8 l 2039 10581 4 +UH 0 9 l 2268 10570 4 +UH 0 53 h 1993 11021 4 +UH 0 54 h 2173 11191 4 +PQ +SE +ID 1772 +TI 1760667400.161078214 +UH 0 57 l 2749 10068 4 +UH 0 29 l 3480 10249 4 +UH 0 30 l 1628 4423 0 +UH 0 49 h 1583 9810 4 +UH 0 50 h 4790 9657 4 +PQ +SE +ID 1773 +TI 1760667400.161110162 +UH 0 40 l 3731 10281 4 +UH 0 41 l 1867 10537 4 +UH 0 19 h 4091 11308 4 +PQ +SE +ID 1774 +TI 1760667400.161131858 +UH 0 6 l 1587 5390 0 +UH 0 7 l 4042 8957 4 +UH 0 8 l 1973 9012 4 +UH 0 18 h 1619 2464 0 +UH 0 19 h 4248 9928 4 +PQ +SE +ID 1775 +TI 1760667400.161157369 +UH 0 64 l 3103 0 5 +UH 0 64 h 3071 0 5 +BD GR Veto +PQ +SE +ID 1776 +TI 1760667400.161166191 +UH 0 34 l 1961 10554 4 +UH 0 35 l 3889 10689 4 +UH 0 33 h 3096 10211 4 +UH 0 34 h 2573 10390 4 +PQ +SE +ID 1777 +TI 1760667400.161189317 +UH 0 64 l 2172 0 5 +UH 0 64 h 2227 0 5 +BD GR Veto +PQ +SE +ID 1778 +TI 1760667400.161196947 +UH 0 64 h 2202 0 5 +BD GR Veto +PQ +SE +ID 1779 +TI 1760667400.161203622 +UH 0 2 l 2796 11004 4 +UH 0 3 l 1614 4744 0 +UH 0 64 l 2480 0 5 +UH 0 14 h 1585 5030 0 +UH 0 15 h 1795 5004 0 +UH 0 23 h 1792 11112 4 +UH 0 26 h 2338 11269 4 +UH 0 27 h 1771 11074 4 +UH 0 64 h 2231 0 5 +BD GR Veto +PQ +SE +ID 1780 +TI 1760667400.161248445 +UH 0 39 l 1708 4866 0 +UH 0 40 l 1845 10938 4 +UH 0 41 l 2630 10983 4 +UH 0 8 h 2256 11463 4 +UH 0 9 h 2526 11144 4 +PQ +SE +ID 1781 +TI 1760667400.161273956 +UH 0 64 h 2050 0 5 +BD GR Veto +PQ +SE +ID 1782 +TI 1760667400.161279439 +UH 0 1 l 1640 4212 0 +UH 0 2 l 1895 10706 4 +UH 0 56 h 1898 11210 4 +PQ +SE +ID 1783 +TI 1760667400.161300897 +UH 0 58 l 2464 10550 4 +UH 0 10 h 2192 11209 4 +UH 0 11 h 1851 11124 4 +PQ +SE +ID 1784 +TI 1760667400.161320686 +UH 0 25 l 2440 10905 4 +UH 0 30 l 1877 5316 0 +UH 0 31 l 1629 5208 0 +UH 0 49 h 2655 11005 4 +UH 0 50 h 1722 10997 4 +PQ +SE +ID 1785 +TI 1760667400.161352157 +UH 0 19 l 2737 11070 4 +UH 0 62 h 2762 10455 4 +PQ +SE +ID 1786 +TI 1760667400.161370277 +UH 0 35 l 2665 10603 4 +UH 0 36 l 1874 10411 4 +UH 0 52 h 2978 11127 4 +PQ +SE +ID 1787 +TI 1760667400.161391258 +UH 0 40 l 2092 10870 4 +UH 0 64 l 1707 0 5 +UH 0 59 h 2137 11141 4 +UH 0 64 h 1768 0 5 +BD GR Veto +PQ +SE +ID 1788 +TI 1760667400.161413669 +UH 0 36 l 1760 10196 4 +UH 0 39 l 2874 10778 4 +UH 0 47 h 1797 10729 4 +UH 0 53 h 2842 10584 4 +PQ +SE +ID 1789 +TI 1760667400.161446571 +UH 0 64 l 2543 0 5 +UH 0 64 h 2960 0 5 +BD GR Veto +PQ +SE +ID 1790 +TI 1760667400.161454916 +UH 0 64 l 1674 0 5 +UH 0 64 h 1663 0 5 +BD GR Veto +PQ +SE +ID 1791 +TI 1760667400.183451414 +UH 0 38 l 1695 5064 0 +UH 0 13 h 1684 5513 0 +UH 0 14 h 1595 5051 0 +PQ +SE +ID 1792 +TI 1760667400.183534145 +UH 0 1 l 1674 5414 0 +UH 0 18 h 1665 5462 0 +PQ +SE +ID 1793 +TI 1760667400.183570384 +UH 0 49 l 1955 10474 4 +UH 0 55 l 1784 10867 4 +UH 0 56 l 1750 11057 4 +UH 0 3 h 1840 10584 4 +UH 0 4 h 1926 10944 4 +UH 0 5 h 2014 11246 4 +PQ +SE +ID 1794 +TI 1760667400.183638572 +UH 0 51 l 1624 8833 4 +UH 0 52 l 2683 8611 4 +UH 0 53 l 2793 8565 4 +UH 0 58 l 1569 5115 0 +UH 0 59 l 3242 8298 4 +UH 0 24 h 3184 9020 4 +UH 0 27 h 3889 9070 4 +PQ +SE +ID 1795 +TI 1760667400.183723211 +UH 0 64 l 2147 0 5 +UH 0 64 h 2171 0 5 +BD GR Veto +PQ +SE +ID 1796 +TI 1760667400.183738946 +UH 0 7 l 2275 10991 4 +UH 0 8 l 1757 5201 0 +UH 0 33 h 2390 10763 4 +PQ +SE +ID 1797 +TI 1760667400.183777093 +UH 0 61 l 1817 5206 0 +UH 0 39 h 1794 5270 0 +PQ +SE +ID 1798 +TI 1760667400.183809757 +UH 0 33 l 1765 10330 4 +UH 0 34 l 2366 10383 4 +UH 0 24 l 1875 5208 0 +UH 0 20 h 2601 11035 4 +UH 0 27 h 1792 10817 4 +PQ +SE +ID 1799 +TI 1760667400.183880329 +UH 0 59 l 2392 10823 4 +UH 0 60 l 2002 10554 4 +UH 0 61 l 1848 10574 4 +UH 0 57 h 2453 10619 4 +UH 0 58 h 2160 10293 4 +PQ +SE +ID 1800 +TI 1760667400.183937549 +UH 0 18 l 2552 10450 4 +UH 0 51 h 2504 11081 4 +PQ +SE +ID 1801 +TI 1760667400.183970928 +UH 0 58 l 1663 4757 0 +UH 0 59 l 1711 5303 0 +UH 0 34 h 1810 10715 4 +PQ +SE +ID 1802 +TI 1760667400.184007883 +UH 0 8 l 1801 4730 0 +UH 0 17 h 1672 11610 4 +PQ +SE +ID 1803 +TI 1760667400.184045791 +UH 0 64 l 2401 0 5 +UH 0 64 h 2413 0 5 +BD GR Veto +PQ +SE +ID 1804 +TI 1760667400.184060573 +UH 0 32 l 3017 10677 4 +UH 0 31 l 1961 10917 4 +UH 0 52 h 3345 11136 4 +PQ +SE +ID 1805 +TI 1760667400.184114456 +UH 0 38 l 1879 10808 4 +UH 0 39 l 3128 10653 4 +UH 0 42 l 1818 4646 0 +UH 0 47 l 3124 10529 4 +UH 0 48 l 1727 10729 4 +UH 0 61 l 1720 1523 0 +UH 0 62 l 1700 1539 0 +UH 0 63 l 1594 2100 0 +UH 0 5 h 3358 11191 4 +UH 0 10 h 3034 11240 4 +UH 0 11 h 2281 11114 4 +PQ +SE +ID 1806 +TI 1760667400.184235095 +UH 0 6 l 2818 10949 4 +UH 0 19 h 2644 11376 4 +UH 0 20 h 1661 11203 4 +PQ +SE +ID 1807 +TI 1760667400.184272527 +UH 0 28 l 4427 10300 4 +UH 0 23 h 1574 10260 4 +UH 0 24 h 4170 10133 4 +PQ +SE +ID 1808 +TI 1760667400.184310436 +UH 0 52 l 2084 11002 4 +UH 0 53 l 2033 10934 4 +UH 0 57 l 2473 10808 4 +UH 0 32 h 2476 10560 4 +UH 0 28 h 2132 10696 4 +UH 0 29 h 1946 10952 4 +PQ +SE +ID 1809 +TI 1760667400.184380769 +UH 0 28 l 2633 11291 4 +UH 0 37 h 2383 11061 4 +UH 0 38 h 1820 11021 4 +PQ +SE +ID 1810 +TI 1760667400.184418201 +UH 0 16 l 2314 10790 4 +UH 0 53 h 2319 11103 4 +PQ +SE +ID 1811 +TI 1760667400.184442520 +UH 0 64 l 2768 0 5 +UH 0 64 h 2803 0 5 +BD GR Veto +PQ +SE +ID 1812 +TI 1760667400.184450864 +UH 0 37 l 2479 10841 4 +UH 0 34 h 2357 10562 4 +PQ +SE +ID 1813 +TI 1760667400.184468507 +UH 0 36 l 1695 4917 0 +UH 0 37 l 2006 11012 4 +UH 0 11 h 2186 11134 4 +PQ +SE +ID 1814 +TI 1760667400.184488773 +UH 0 19 l 2240 10692 4 +UH 0 9 h 2210 11393 4 +PQ +SE +ID 1815 +TI 1760667400.184506893 +UH 0 34 l 1669 2768 0 +UH 0 37 l 1694 8854 4 +UH 0 38 l 4361 8739 4 +UH 0 39 l 1616 8509 4 +UH 0 33 h 1625 1221 0 +UH 0 25 h 1540 3802 0 +UH 0 26 h 2656 9170 4 +UH 0 27 h 3353 8919 4 +PQ +SE +ID 1816 +TI 1760667400.184548616 +UH 0 56 l 2554 10622 4 +UH 0 8 h 2625 11614 4 +PQ +SE +ID 1817 +TI 1760667400.184566259 +UH 0 38 l 1952 11050 4 +UH 0 43 h 1573 4089 0 +UH 0 44 h 1957 10661 4 +PQ +SE +ID 1818 +TI 1760667400.184585809 +UH 0 19 l 2089 10871 4 +UH 0 20 l 2522 10434 4 +UH 0 51 h 2246 11152 4 +UH 0 54 h 2136 11161 4 +PQ +SE +ID 1819 +TI 1760667400.184611797 +UH 0 6 l 2176 11035 4 +UH 0 61 h 2141 11093 4 +PQ +SE +ID 1820 +TI 1760667400.184629201 +UH 0 32 l 3230 10788 4 +UH 0 33 l 2089 10511 4 +UH 0 42 h 3775 10683 4 +PQ +SE +ID 1821 +TI 1760667400.184655427 +UH 0 12 l 3548 10444 4 +UH 0 19 h 2534 11057 4 +UH 0 20 h 2406 10791 4 +PQ +SE +ID 1822 +TI 1760667400.184675216 +UH 0 5 l 1904 11114 4 +UH 0 55 h 1954 10479 4 +PQ +SE +ID 1823 +TI 1760667400.184694051 +UH 0 52 l 2321 10624 4 +UH 0 20 h 2337 11142 4 +PQ +SE +ID 1824 +TI 1760667400.184711694 +UH 0 26 l 2172 11413 4 +UH 0 29 l 2138 10657 4 +UH 0 39 h 2125 10929 4 +UH 0 42 h 2099 10580 4 +PQ +SE +ID 1825 +TI 1760667400.184743642 +UH 0 7 l 1664 4313 0 +UH 0 23 h 1651 5415 0 +PQ +SE +ID 1826 +TI 1760667400.184761285 +UH 0 19 l 4096 10655 4 +UH 0 23 l 2620 10179 4 +UH 0 24 l 2215 10253 4 +UH 0 52 h 1616 10600 4 +UH 0 53 h 4008 10370 4 +UH 0 61 h 1804 10673 4 +UH 0 62 h 2875 10423 4 +PQ +SE +ID 1827 +TI 1760667400.184799909 +UH 0 44 l 1830 10342 4 +UH 0 45 l 3603 10218 4 +UH 0 64 l 2083 0 5 +UH 0 57 h 1588 10600 4 +UH 0 58 h 3895 10157 4 +UH 0 64 h 2128 0 5 +BD GR Veto +PQ +SE +ID 1828 +TI 1760667400.184827327 +UH 0 27 l 1776 10451 4 +UH 0 28 l 2858 10612 4 +UH 0 29 l 2295 10507 4 +UH 0 30 l 1897 10875 4 +UH 0 17 h 2472 11230 4 +UH 0 18 h 3109 11107 4 +PQ +SE +ID 1829 +TI 1760667400.184854030 +UH 0 33 l 3804 10234 4 +UH 0 53 h 1916 10970 4 +UH 0 54 h 3358 11064 4 +PQ +SE +ID 1830 +TI 1760667400.184872865 +UH 0 13 l 2480 8972 4 +UH 0 16 l 1792 9357 4 +UH 0 17 l 1673 9158 4 +UH 0 18 l 4316 9222 4 +UH 0 19 l 1624 9455 4 +UH 0 45 h 4274 9336 4 +UH 0 47 h 1851 9215 4 +UH 0 51 h 2416 9380 4 +PQ +SE +ID 1831 +TI 1760667400.184922695 +UH 0 64 h 1792 0 5 +BD GR Veto +PQ +SE +ID 1832 +TI 1760667400.184928655 +UH 0 50 l 2783 10255 4 +UH 0 54 l 1618 5176 0 +UH 0 55 l 2886 10681 4 +UH 0 4 h 2935 10882 4 +UH 0 9 h 1684 4279 0 +UH 0 14 h 2127 11162 4 +UH 0 15 h 2192 11220 4 +PQ +SE +ID 1833 +TI 1760667400.184971809 +UH 0 1 l 1801 4548 0 +UH 0 2 l 1703 4125 0 +UH 0 4 l 1595 4621 0 +UH 0 5 l 2395 10204 4 +UH 0 64 l 1746 0 5 +UH 0 53 h 2356 10205 4 +UH 0 54 h 1574 4034 0 +UH 0 55 h 1926 10105 4 +UH 0 64 h 2145 0 5 +BD GR Veto +PQ +SE +ID 1834 +TI 1760667400.185007572 +UH 0 35 h 1596 5436 0 +PQ +SE +ID 1835 +TI 1760667400.185023307 +UH 0 7 l 1735 10567 4 +UH 0 8 l 4142 10235 4 +UH 0 9 l 2973 10583 4 +UH 0 22 h 2970 10639 4 +UH 0 23 h 1600 10835 4 +UH 0 24 h 3164 10728 4 +UH 0 25 h 2411 10960 4 +PQ +SE +ID 1836 +TI 1760667400.185052394 +UH 0 42 l 2190 11159 4 +UH 0 29 l 1702 5106 0 +UH 0 30 l 2667 10815 4 +UH 0 41 h 2820 10995 4 +UH 0 43 h 1717 10521 4 +UH 0 44 h 1937 10315 4 +PQ +SE +ID 1837 +TI 1760667400.185087203 +UH 0 9 l 3195 10871 4 +UH 0 51 h 3110 10966 4 +PQ +SE +ID 1838 +TI 1760667400.185104846 +UH 0 44 l 1516 8849 4 +UH 0 45 l 4113 8676 4 +UH 0 46 l 1497 8944 4 +UH 0 48 l 1865 8743 4 +UH 0 49 l 2582 8654 4 +UH 0 15 h 3869 9385 4 +UH 0 16 h 1724 9469 4 +UH 0 26 h 2979 9548 4 +PQ +SE +ID 1839 +TI 1760667400.185143947 +UH 0 36 l 3579 10473 4 +UH 0 34 h 3397 10189 4 +PQ +SE +ID 1840 +TI 1760667400.185162067 +UH 0 15 l 2063 10800 4 +UH 0 16 l 1579 5087 0 +UH 0 53 h 2015 11206 4 +PQ +SE +ID 1841 +TI 1760667400.185186862 +UH 0 53 l 2484 8637 4 +UH 0 54 l 3073 8792 4 +UH 0 55 l 1499 5361 0 +UH 0 19 h 3643 9440 4 +UH 0 20 h 1868 9250 4 +PQ +SE +ID 1842 +TI 1760667400.185211658 +UH 0 13 l 1687 4958 0 +UH 0 25 h 1631 5590 0 +PQ +SE +ID 1843 +TI 1760667400.185233116 +UH 0 39 l 1928 11060 4 +UH 0 40 l 1536 5246 0 +UH 0 48 h 1863 10694 4 +UH 0 49 h 1633 4764 0 +PQ +SE +ID 1844 +TI 1760667400.185267925 +UH 0 64 l 2637 0 5 +UH 0 64 h 2644 0 5 +BD GR Veto +PQ +SE +ID 1845 +TI 1760667400.185276985 +UH 0 43 l 2653 10966 4 +UH 0 7 h 2800 11236 4 +PQ +SE +ID 1846 +TI 1760667400.185294866 +UH 0 33 l 2693 10314 4 +UH 0 34 l 2034 10452 4 +UH 0 38 l 1912 10824 4 +UH 0 39 l 2149 10718 4 +UH 0 47 l 2198 10896 4 +UH 0 9 h 2522 10972 4 +UH 0 14 h 3130 11240 4 +UH 0 28 h 2279 10673 4 +PQ +SE +ID 1847 +TI 1760667400.185346126 +UH 0 23 l 1733 8960 4 +UH 0 24 l 5773 8785 4 +UH 0 25 l 1684 9077 4 +UH 0 40 h 3719 8998 4 +UH 0 41 h 3509 9300 4 +PQ +SE +ID 1848 +TI 1760667400.185370922 +UH 0 10 l 1629 9068 4 +UH 0 11 l 4468 8668 4 +UH 0 12 l 1752 8721 4 +UH 0 15 l 1672 1865 0 +UH 0 23 l 2801 8653 4 +UH 0 51 h 2688 9193 4 +UH 0 53 h 1654 3172 0 +UH 0 56 h 4199 8949 4 +UH 0 57 h 1669 9193 4 +PQ +SE +ID 1849 +TI 1760667400.185427665 +UH 0 64 l 2553 0 5 +UH 0 64 h 2571 0 5 +BD GR Veto +PQ +SE +ID 1850 +TI 1760667400.185436725 +UH 0 52 l 3119 10812 4 +UH 0 7 h 3073 10698 4 +UH 0 8 h 1659 11131 4 +PQ +SE +ID 1851 +TI 1760667400.185475349 +UH 0 33 l 2028 10248 4 +UH 0 34 l 3471 10263 4 +UH 0 3 h 4041 10947 4 +PQ +SE +ID 1852 +TI 1760667400.185505867 +UH 0 64 l 2124 0 5 +UH 0 64 h 2164 0 5 +BD GR Veto +PQ +SE +ID 1853 +TI 1760667400.185519695 +UH 0 34 l 1803 1565 0 +UH 0 38 l 2173 5255 4 +UH 0 11 l 2822 10100 4 +UH 0 10 h 2212 6022 4 +UH 0 12 h 1762 1307 0 +UH 0 30 h 2625 11374 4 +PQ +SE +ID 1854 +TI 1760667400.185570955 +UH 0 13 l 3814 10555 4 +UH 0 14 l 1869 10598 4 +UH 0 16 l 2023 10913 4 +UH 0 17 l 2145 10778 4 +UH 0 39 h 2650 10792 4 +UH 0 40 h 2961 10815 4 +UH 0 50 h 1713 3921 0 +UH 0 57 h 2178 10864 4 +UH 0 58 h 1855 10588 4 +PQ +SE +ID 1855 +TI 1760667400.206568241 +UH 0 17 l 2474 10344 4 +UH 0 30 h 2457 11393 4 +PQ +SE +ID 1856 +TI 1760667400.206623077 +UH 0 64 l 2359 0 5 +UH 0 64 h 2419 0 5 +BD GR Veto +PQ +SE +ID 1857 +TI 1760667400.206633329 +UH 0 64 l 3056 0 5 +UH 0 64 h 3025 0 5 +BD GR Veto +PQ +SE +ID 1858 +TI 1760667400.206641435 +UH 0 55 l 1992 10734 4 +UH 0 56 l 2904 10863 4 +UH 0 59 l 1633 5201 0 +UH 0 64 l 1882 0 5 +UH 0 46 h 3055 10525 4 +UH 0 47 h 2120 10522 4 +UH 0 64 h 1932 0 5 +BD GR Veto +PQ +SE +ID 1859 +TI 1760667400.206677913 +UH 0 33 l 3683 9379 4 +UH 0 55 l 3406 9797 4 +UH 0 2 h 1622 10158 4 +UH 0 3 h 5367 9449 4 +UH 0 4 h 1910 10100 4 +PQ +SE +ID 1860 +TI 1760667400.206715345 +UH 0 64 l 1668 0 5 +UH 0 64 h 1730 0 5 +BD GR Veto +PQ +SE +ID 1861 +TI 1760667400.206724405 +UH 0 39 l 1606 3856 0 +UH 0 40 l 1855 11034 4 +UH 0 35 h 1635 4015 0 +UH 0 36 h 1908 10563 4 +PQ +SE +ID 1862 +TI 1760667400.206747531 +UH 0 64 l 2444 0 5 +UH 0 64 h 2502 0 5 +BD GR Veto +PQ +SE +ID 1863 +TI 1760667400.206756591 +UH 0 35 l 2942 10570 4 +UH 0 42 l 3286 10943 4 +UH 0 10 l 2120 10483 4 +UH 0 11 l 1715 3716 0 +UH 0 51 h 1570 10765 4 +UH 0 52 h 1704 10749 4 +UH 0 53 h 2709 10540 4 +UH 0 55 h 3097 10125 4 +UH 0 56 h 1823 10496 4 +UH 0 62 h 2193 10530 4 +PQ +SE +ID 1864 +TI 1760667400.206815719 +UH 0 15 l 3513 10477 4 +UH 0 16 l 1896 10730 4 +UH 0 27 l 1710 1594 0 +UH 0 28 l 1648 1993 0 +UH 0 29 l 1706 2106 0 +UH 0 30 l 1705 1798 0 +UH 0 31 l 1788 2290 0 +UH 0 47 h 1660 10932 4 +UH 0 48 h 3853 10947 4 +PQ +SE +ID 1865 +TI 1760667400.206860303 +UH 0 41 l 2650 10986 4 +UH 0 30 l 2292 11239 4 +UH 0 5 h 2731 11113 4 +UH 0 8 h 2275 11278 4 +PQ +SE +ID 1866 +TI 1760667400.206898450 +UH 0 64 l 2277 0 5 +UH 0 64 h 2297 0 5 +BD GR Veto +PQ +SE +ID 1867 +TI 1760667400.206906318 +UH 0 64 l 2972 0 5 +UH 0 39 h 2211 11028 4 +UH 0 40 h 2360 11039 4 +BD GR Veto +PQ +SE +ID 1868 +TI 1760667400.206923484 +UH 0 11 l 3102 10242 4 +UH 0 16 l 2597 10795 4 +UH 0 2 h 1806 11422 4 +UH 0 3 h 3906 10943 4 +PQ +SE +ID 1869 +TI 1760667400.206951618 +UH 0 37 l 1776 10632 4 +UH 0 38 l 2950 10474 4 +UH 0 9 h 2975 11195 4 +UH 0 10 h 1782 11490 4 +PQ +SE +ID 1870 +TI 1760667400.206975221 +UH 0 53 l 2295 10804 4 +UH 0 55 l 2528 10450 4 +UH 0 59 l 2440 10698 4 +UH 0 14 h 2217 10760 4 +UH 0 15 h 1633 4556 0 +UH 0 21 h 2596 11117 4 +UH 0 26 h 2433 10917 4 +PQ +SE +ID 1871 +TI 1760667400.207027196 +UH 0 50 l 2002 10819 4 +UH 0 51 l 1688 5398 0 +UH 0 60 h 2079 10887 4 +PQ +SE +ID 1872 +TI 1760667400.207051992 +UH 0 13 l 1715 4703 0 +UH 0 16 l 1612 4627 0 +UH 0 17 l 2204 10596 4 +UH 0 18 l 1898 10841 4 +UH 0 42 h 2327 10809 4 +UH 0 45 h 2041 10922 4 +PQ +SE +ID 1873 +TI 1760667400.207087755 +UH 0 60 l 2655 10484 4 +UH 0 37 h 2312 10596 4 +UH 0 38 h 1938 10495 4 +PQ +SE +ID 1874 +TI 1760667400.207107305 +UH 0 63 l 1539 3761 0 +UH 0 24 h 1584 5368 0 +PQ +SE +ID 1875 +TI 1760667400.207123756 +UH 0 14 l 2349 10984 4 +UH 0 20 l 1693 4225 0 +UH 0 48 h 2146 10765 4 +UH 0 49 h 1653 10806 4 +UH 0 51 h 1550 5307 0 +PQ +SE +ID 1876 +TI 1760667400.207162618 +UH 0 18 l 2269 10534 4 +UH 0 19 l 1727 5251 0 +UH 0 38 h 2462 11346 4 +PQ +SE +ID 1877 +TI 1760667400.207182884 +UH 0 3 l 2046 11017 4 +UH 0 5 l 2087 10895 4 +UH 0 36 h 2509 10661 4 +UH 0 37 h 1642 5098 0 +PQ +SE +ID 1878 +TI 1760667400.207208633 +UH 0 34 l 1725 5256 0 +UH 0 40 h 1726 4878 0 +PQ +SE +ID 1879 +TI 1760667400.207226276 +UH 0 11 l 2738 8814 4 +UH 0 12 l 4657 8598 4 +UH 0 13 l 1630 9114 4 +UH 0 38 h 1640 9213 4 +UH 0 39 h 5454 8850 4 +UH 0 40 h 1716 8957 4 +PQ +SE +ID 1880 +TI 1760667400.207254409 +UH 0 32 l 1743 1322 0 +UH 0 33 l 1647 1235 0 +UH 0 34 l 1657 1567 0 +UH 0 35 l 1618 1657 0 +UH 0 38 l 1614 1256 0 +UH 0 39 l 1689 1448 0 +UH 0 43 l 1582 1656 0 +UH 0 45 l 1631 8481 4 +UH 0 46 l 7175 8378 4 +UH 0 47 l 7616 8509 4 +UH 0 48 l 10492 8624 4 +UH 0 49 l 15253 8729 4 +UH 0 50 l 16032 8559 4 +UH 0 51 l 16046 8683 4 +UH 0 52 l 16039 8641 4 +UH 0 53 l 15985 8588 4 +UH 0 54 l 8294 8776 4 +UH 0 55 l 8126 8590 4 +UH 0 56 l 7760 8751 4 +UH 0 57 l 8084 8469 4 +UH 0 58 l 9274 8269 4 +UH 0 59 l 8457 8474 4 +UH 0 60 l 8352 8222 4 +UH 0 61 l 7958 8450 4 +UH 0 62 l 7604 8597 4 +UH 0 63 l 8231 8444 4 +UH 0 0 l 1921 8560 4 +UH 0 1 l 1635 8874 4 +UH 0 64 l 16038 0 5 +UH 0 41 h 1592 8686 4 +UH 0 42 h 1628 8307 4 +UH 0 43 h 1598 8554 4 +UH 0 44 h 1672 8369 4 +UH 0 45 h 1753 8599 4 +UH 0 46 h 8296 8332 4 +UH 0 47 h 8738 8265 4 +UH 0 48 h 8464 8439 4 +UH 0 49 h 7688 8426 4 +UH 0 50 h 8842 8346 4 +UH 0 51 h 9326 8505 4 +UH 0 52 h 7724 8557 4 +UH 0 53 h 7734 8495 4 +UH 0 54 h 8009 8617 4 +UH 0 55 h 8255 8223 4 +UH 0 56 h 16051 8371 4 +UH 0 57 h 15982 8525 4 +UH 0 58 h 14447 8263 4 +UH 0 59 h 14816 8443 4 +UH 0 60 h 15988 8169 4 +UH 0 61 h 16019 8470 4 +UH 0 62 h 13044 8386 4 +UH 0 63 h 14201 8420 4 +UH 0 0 h 2111 8924 4 +UH 0 1 h 1734 8913 4 +UH 0 2 h 1651 9034 4 +UH 0 3 h 1635 4204 0 +UH 0 31 h 1570 1928 0 +UH 0 64 h 16110 0 5 +BD GR Veto +PQ +SE +ID 1881 +TI 1760667400.207423448 +UH 0 64 l 1754 0 5 +UH 0 64 h 1806 0 5 +BD GR Veto +PQ +SE +ID 1882 +TI 1760667400.207432746 +UH 0 51 l 1842 5050 0 +UH 0 56 h 1810 11435 4 +PQ +SE +ID 1883 +TI 1760667400.207450866 +UH 0 64 l 2181 0 5 +UH 0 64 h 2230 0 5 +BD GR Veto +PQ +SE +ID 1884 +TI 1760667400.207458734 +UH 0 17 l 2768 10559 4 +UH 0 18 l 2200 10519 4 +UH 0 4 h 3435 11448 4 +PQ +SE +ID 1885 +TI 1760667400.207479476 +UH 0 43 l 3453 10964 4 +UH 0 1 h 3543 10875 4 +PQ +SE +ID 1886 +TI 1760667400.207502603 +UH 0 15 l 2569 10916 4 +UH 0 16 l 1793 11130 4 +UH 0 30 l 1630 2502 0 +UH 0 31 l 1667 2303 0 +UH 0 60 h 2745 10390 4 +PQ +SE +ID 1887 +TI 1760667400.207530260 +UH 0 50 l 3751 8634 4 +UH 0 51 l 1640 5477 0 +UH 0 57 l 2447 8567 4 +UH 0 58 l 2440 8395 4 +UH 0 9 h 2778 9396 4 +UH 0 10 h 2498 9663 4 +UH 0 11 h 3438 9498 4 +PQ +SE +ID 1888 +TI 1760667400.207565546 +UH 0 6 l 2765 10632 4 +UH 0 64 l 4429 0 5 +UH 0 4 h 2785 11494 4 +UH 0 64 h 4263 0 5 +BD GR Veto +PQ +SE +ID 1889 +TI 1760667400.207588434 +UH 0 45 l 1929 10657 4 +UH 0 12 h 1845 11291 4 +UH 0 13 h 1640 4501 0 +PQ +SE +ID 1890 +TI 1760667400.207608461 +UH 0 28 l 1946 11237 4 +UH 0 29 l 2126 11088 4 +UH 0 30 l 1940 11328 4 +UH 0 58 h 1974 10662 4 +UH 0 61 h 2201 11092 4 +UH 0 62 h 1724 10958 4 +PQ +SE +ID 1891 +TI 1760667400.207640886 +UH 0 11 l 1712 8817 4 +UH 0 12 l 5298 8644 4 +UH 0 13 l 2031 9157 4 +UH 0 6 h 1835 9389 4 +UH 0 8 h 1826 9670 4 +UH 0 9 h 2117 9345 4 +UH 0 10 h 1590 9458 4 +UH 0 11 h 4452 9191 4 +UH 0 12 h 1530 9202 4 +PQ +SE +ID 1892 +TI 1760667400.207677125 +UH 0 58 l 2327 10669 4 +UH 0 64 l 2513 0 5 +UH 0 37 h 2273 10660 4 +UH 0 38 h 1669 3668 0 +UH 0 40 h 2289 10480 4 +UH 0 64 h 1830 0 5 +BD GR Veto +PQ +SE +ID 1893 +TI 1760667400.207708120 +UH 0 50 l 1601 10790 4 +UH 0 51 l 2608 10835 4 +UH 0 53 l 2001 10905 4 +UH 0 54 l 1962 11081 4 +UH 0 24 h 2560 10829 4 +UH 0 25 h 2403 11136 4 +PQ +SE +ID 1894 +TI 1760667400.207740783 +UH 0 43 l 1543 4905 0 +UH 0 44 l 2394 10329 4 +UH 0 47 l 2376 10560 4 +UH 0 49 l 2757 10773 4 +UH 0 61 l 1653 2353 0 +UH 0 63 l 1543 2235 0 +UH 0 2 h 2477 11218 4 +UH 0 21 h 2531 11363 4 +UH 0 24 h 2461 10900 4 +UH 0 25 h 1786 11196 4 +PQ +SE +ID 1895 +TI 1760667400.207799434 +UH 0 29 l 2247 11103 4 +UH 0 30 l 2019 11339 4 +UH 0 49 h 1928 10643 4 +UH 0 50 h 2323 10493 4 +PQ +SE +ID 1896 +TI 1760667400.207822322 +UH 0 21 l 2674 11130 4 +UH 0 8 h 2656 11286 4 +PQ +SE +ID 1897 +TI 1760667400.207840204 +UH 0 44 l 2368 9529 4 +UH 0 45 l 2112 9511 4 +UH 0 51 l 4170 9776 4 +UH 0 36 h 1641 9551 4 +UH 0 37 h 4116 9834 4 +UH 0 40 h 1639 9412 4 +UH 0 41 h 2993 9601 4 +PQ +SE +ID 1898 +TI 1760667400.207881450 +UH 0 5 l 1815 10696 4 +UH 0 7 l 1612 4754 0 +UH 0 11 l 2334 10413 4 +UH 0 14 l 2930 10288 4 +UH 0 15 l 2548 10269 4 +UH 0 16 l 2320 10401 4 +UH 0 30 l 1622 2126 0 +UH 0 31 l 1658 2622 0 +UH 0 16 h 1590 4591 0 +UH 0 17 h 1701 10940 4 +UH 0 18 h 2274 10755 4 +UH 0 20 h 3682 11065 4 +UH 0 28 h 2471 10973 4 +PQ +SE +ID 1899 +TI 1760667400.207953214 +UH 0 6 l 2412 10782 4 +UH 0 14 h 1573 11532 4 +UH 0 15 h 2404 11519 4 +PQ +SE +ID 1900 +TI 1760667400.207973957 +UH 0 53 l 2257 10630 4 +UH 0 10 h 2246 11686 4 +PQ +SE +ID 1901 +TI 1760667400.207991600 +UH 0 64 l 1887 0 5 +UH 0 20 h 1836 11361 4 +UH 0 21 h 1640 4605 0 +BD GR Veto +PQ +SE +ID 1902 +TI 1760667400.208007097 +UH 0 44 l 1506 5317 0 +UH 0 45 l 4013 8232 4 +UH 0 46 l 1505 8360 4 +UH 0 28 h 4029 8940 4 +PQ +SE +ID 1903 +TI 1760667400.208029985 +UH 0 62 l 1768 5162 0 +UH 0 63 l 2332 10619 4 +UH 0 10 h 1852 11598 4 +UH 0 13 h 2260 11305 4 +PQ +SE +ID 1904 +TI 1760667400.208055019 +UH 0 5 l 2765 10669 4 +UH 0 50 h 2784 10989 4 +PQ +SE +ID 1905 +TI 1760667400.208073139 +UH 0 40 l 1515 8523 4 +UH 0 41 l 4327 8549 4 +UH 0 42 l 1603 8644 4 +UH 0 16 h 1579 8853 4 +UH 0 17 h 4143 8577 4 +PQ +SE +ID 1906 +TI 1760667400.208121776 +UH 0 11 l 4118 9878 4 +UH 0 17 l 2218 10071 4 +UH 0 18 l 1689 4361 0 +UH 0 19 l 1654 4569 0 +UH 0 20 l 2370 10212 4 +UH 0 53 h 3865 10155 4 +UH 0 54 h 1586 10409 4 +UH 0 58 h 2139 9788 4 +UH 0 59 h 2341 10178 4 +UH 0 61 h 1710 4153 0 +PQ +SE +ID 1907 +TI 1760667400.208202600 +UH 0 63 l 1551 4988 0 +UH 0 64 l 2107 0 5 +UH 0 32 h 1954 11359 4 +UH 0 64 h 2435 0 5 +BD GR Veto +PQ +SE +ID 1908 +TI 1760667400.208223581 +UH 0 36 l 1807 4840 0 +UH 0 37 l 1963 10811 4 +UH 0 10 h 2193 11594 4 +PQ +SE +ID 1909 +TI 1760667400.208242654 +UH 0 51 l 3319 10852 4 +UH 0 52 l 2861 10782 4 +UH 0 56 l 1678 4835 0 +UH 0 42 h 1705 10489 4 +UH 0 44 h 4573 10434 4 +PQ +SE +ID 1910 +TI 1760667400.208280563 +UH 0 58 l 1786 10195 4 +UH 0 59 l 1619 4953 0 +UH 0 63 l 1718 5197 0 +UH 0 22 h 1997 11160 4 +UH 0 24 h 1754 10879 4 +PQ +SE +ID 1911 +TI 1760667400.208312273 +UH 0 33 l 1611 8408 4 +UH 0 34 l 5698 8428 4 +UH 0 35 l 1568 8745 4 +UH 0 28 h 1962 9190 4 +UH 0 29 h 5128 9345 4 +PQ +SE +ID 1912 +TI 1760667400.208338499 +UH 0 18 l 2120 10776 4 +UH 0 55 h 1686 4008 0 +UH 0 56 h 2065 10791 4 +PQ +SE +ID 1913 +TI 1760667400.208364248 +UH 0 14 l 3175 10774 4 +UH 0 46 h 3108 11019 4 +PQ +SE +ID 1914 +TI 1760667400.208383321 +UH 0 54 l 2420 10979 4 +UH 0 55 l 1504 5376 0 +UH 0 50 h 1831 10512 4 +UH 0 51 h 2241 10564 4 +PQ +SE +ID 1915 +TI 1760667400.208406686 +UH 0 25 l 1728 5493 0 +UH 0 23 h 1641 4950 0 +PQ +SE +ID 1916 +TI 1760667400.208425283 +UH 0 13 l 2392 10550 4 +UH 0 11 h 2422 11463 4 +PQ +SE +ID 1917 +TI 1760667400.208443403 +UH 0 58 l 2940 10051 4 +UH 0 59 l 3069 10264 4 +UH 0 63 l 1558 4051 0 +UH 0 64 l 2537 0 5 +UH 0 35 h 2655 10014 4 +UH 0 36 h 1633 10173 4 +UH 0 37 h 2191 10263 4 +UH 0 38 h 3166 10321 4 +UH 0 39 h 2324 9816 4 +BD GR Veto +PQ +SE +ID 1918 +TI 1760667400.208481073 +UH 0 10 l 1754 4933 0 +UH 0 58 h 1705 5157 0 +PQ +SE +ID 1919 +TI 1760667400.226434469 +UH 0 23 l 1780 4622 0 +UH 0 24 l 2092 10712 4 +UH 0 26 l 1716 11408 4 +UH 0 27 l 2900 10787 4 +UH 0 7 h 2184 11270 4 +UH 0 22 h 2056 10773 4 +UH 0 23 h 2114 10988 4 +UH 0 24 h 1888 10992 4 +PQ +SE +ID 1920 +TI 1760667400.226508378 +UH 0 42 l 2156 11132 4 +UH 0 48 h 1653 5047 0 +UH 0 49 h 2024 10938 4 +PQ +SE +ID 1921 +TI 1760667400.226530551 +UH 0 43 l 3046 10932 4 +UH 0 22 h 2843 10470 4 +UH 0 23 h 1820 10604 4 +PQ +SE +ID 1922 +TI 1760667400.226551055 +UH 0 8 l 1700 5339 0 +UH 0 36 h 1687 3868 0 +PQ +SE +ID 1923 +TI 1760667400.226569175 +UH 0 32 l 2243 10744 4 +UH 0 30 l 1745 5152 0 +UH 0 31 l 1647 4943 0 +UH 0 19 h 2208 11365 4 +UH 0 20 h 1811 11152 4 +PQ +SE +ID 1924 +TI 1760667400.226594924 +UH 0 33 l 2906 10071 4 +UH 0 34 l 1665 10283 4 +UH 0 26 h 2987 11405 4 +PQ +SE +ID 1925 +TI 1760667400.226615667 +UH 0 27 l 2117 10945 4 +UH 0 28 l 1645 3790 0 +UH 0 43 h 2100 11105 4 +PQ +SE +ID 1926 +TI 1760667400.226635932 +UH 0 43 l 1996 11207 4 +UH 0 52 h 1861 10681 4 +UH 0 53 h 1722 10521 4 +PQ +SE +ID 1927 +TI 1760667400.226656436 +UH 0 50 l 1837 10864 4 +UH 0 41 h 1846 11554 4 +PQ +SE +ID 1928 +TI 1760667400.226674079 +UH 0 0 l 1636 8604 4 +UH 0 64 l 8527 0 5 +UH 0 0 h 1633 8871 4 +UH 0 64 h 8303 0 5 +BD GR Veto +PQ +SE +ID 1929 +TI 1760667400.226692676 +UH 0 14 l 1840 5377 0 +UH 0 3 h 1841 11311 4 +PQ +SE +ID 1930 +TI 1760667400.226710081 +UH 0 44 l 2266 9708 4 +UH 0 45 l 1554 10120 4 +UH 0 46 l 2729 10020 4 +UH 0 47 l 2023 10202 4 +UH 0 49 l 1993 9964 4 +UH 0 32 h 1992 10037 4 +UH 0 18 h 1741 10326 4 +UH 0 19 h 2108 10534 4 +UH 0 23 h 3263 9974 4 +UH 0 24 h 1660 10056 4 +PQ +SE +ID 1931 +TI 1760667400.226763486 +UH 0 63 l 3174 10555 4 +UH 0 32 h 3151 11145 4 +PQ +SE +ID 1932 +TI 1760667400.226779699 +UH 0 27 l 1629 10126 4 +UH 0 28 l 2448 10294 4 +UH 0 6 h 2407 10384 4 +PQ +SE +ID 1933 +TI 1760667400.226799726 +UH 0 16 l 2744 10919 4 +UH 0 34 h 2657 10345 4 +PQ +SE +ID 1934 +TI 1760667400.226817369 +UH 0 32 l 3362 8522 4 +UH 0 33 l 3637 8280 4 +UH 0 34 l 1576 8324 4 +UH 0 35 l 1553 5181 0 +UH 0 31 l 1748 8635 4 +UH 0 40 h 3300 8407 4 +UH 0 41 h 1786 8751 4 +UH 0 43 h 2420 8488 4 +UH 0 44 h 2696 8294 4 +PQ +SE +ID 1935 +TI 1760667400.226854324 +UH 0 9 l 1982 11122 4 +UH 0 32 h 1626 4731 0 +UH 0 33 h 1770 11081 4 +PQ +SE +ID 1936 +TI 1760667400.226874589 +UH 0 58 l 2800 10578 4 +UH 0 24 h 2766 10596 4 +PQ +SE +ID 1937 +TI 1760667400.226891756 +UH 0 21 l 1871 11178 4 +UH 0 24 l 3082 10915 4 +UH 0 7 h 1718 11086 4 +UH 0 8 h 2854 11348 4 +UH 0 12 h 1568 4332 0 +UH 0 13 h 1779 10987 4 +PQ +SE +ID 1938 +TI 1760667400.226932764 +UH 0 12 l 1998 10668 4 +UH 0 53 h 1861 10866 4 +PQ +SE +ID 1939 +TI 1760667400.226950407 +UH 0 46 l 1652 11234 4 +UH 0 25 h 1646 5443 0 +PQ +SE +ID 1940 +TI 1760667400.226968050 +UH 0 34 l 2151 10578 4 +UH 0 35 l 3809 10722 4 +UH 0 36 l 2754 10532 4 +UH 0 51 h 3169 10686 4 +UH 0 52 h 2668 10832 4 +UH 0 53 h 2829 10665 4 +PQ +SE +ID 1941 +TI 1760667400.226995229 +UH 0 48 l 1791 11179 4 +UH 0 12 h 1791 11178 4 +PQ +SE +ID 1942 +TI 1760667400.227016448 +UH 0 48 l 1526 5442 0 +UH 0 49 l 1513 8884 4 +UH 0 50 l 3466 8526 4 +UH 0 51 l 3764 8634 4 +UH 0 52 l 1600 8726 4 +UH 0 40 h 5583 8610 4 +PQ +SE +ID 1943 +TI 1760667400.227047681 +UH 0 52 l 2590 10811 4 +UH 0 62 l 2089 10789 4 +UH 0 44 h 2054 10770 4 +UH 0 48 h 2601 10898 4 +PQ +SE +ID 1944 +TI 1760667400.227079153 +UH 0 64 h 1943 0 5 +BD GR Veto +PQ +SE +ID 1945 +TI 1760667400.227084636 +UH 0 23 l 1729 4822 0 +UH 0 17 h 1589 5536 0 +PQ +SE +ID 1946 +TI 1760667400.227101802 +UH 0 64 l 2274 0 5 +UH 0 64 h 2356 0 5 +BD GR Veto +PQ +SE +ID 1947 +TI 1760667400.227109670 +UH 0 32 l 2318 10645 4 +UH 0 64 l 1638 0 5 +UH 0 63 h 1947 10751 4 +UH 0 64 h 2031 0 5 +BD GR Veto +PQ +SE +ID 1948 +TI 1760667400.227127075 +UH 0 21 l 1609 10044 4 +UH 0 22 l 3476 9690 4 +UH 0 8 h 3446 10769 4 +UH 0 17 h 1575 3174 0 +PQ +SE +ID 1949 +TI 1760667400.227154731 +UH 0 26 l 1710 8989 4 +UH 0 27 l 6518 8405 4 +UH 0 28 l 1974 8870 4 +UH 0 29 l 2271 8814 4 +UH 0 30 l 1607 9062 4 +UH 0 32 h 1695 8841 4 +UH 0 33 h 3489 8428 4 +UH 0 34 h 1608 8637 4 +UH 0 29 h 2349 9050 4 +UH 0 30 h 3898 9178 4 +UH 0 31 h 1906 8696 4 +PQ +SE +ID 1950 +TI 1760667400.227203607 +UH 0 45 l 2402 10797 4 +UH 0 53 h 2439 10525 4 +PQ +SE +ID 1951 +TI 1760667400.227226018 +UH 0 55 l 1649 4047 0 +UH 0 56 l 1961 9553 4 +UH 0 57 l 1536 5243 0 +UH 0 64 l 3915 0 5 +UH 0 7 h 2195 10155 4 +UH 0 64 h 4097 0 5 +BD GR Veto +PQ +SE +ID 1952 +TI 1760667400.227253675 +UH 0 0 l 2695 10235 4 +UH 0 1 l 2392 10570 4 +UH 0 14 h 1664 4580 0 +UH 0 15 h 3320 11345 4 +PQ +SE +ID 1953 +TI 1760667400.227272033 +UH 0 64 l 2105 0 5 +UH 0 64 h 2182 0 5 +BD GR Veto +PQ +SE +ID 1954 +TI 1760667400.227282524 +UH 0 15 l 2413 10493 4 +UH 0 30 l 1612 2309 0 +UH 0 31 l 1639 2431 0 +UH 0 17 h 2235 11238 4 +PQ +SE +ID 1955 +TI 1760667400.227309226 +UH 0 62 l 1921 10983 4 +UH 0 44 h 1880 10879 4 +PQ +SE +ID 1956 +TI 1760667400.227328300 +UH 0 35 l 2391 10675 4 +UH 0 28 h 2478 11074 4 +PQ +SE +ID 1957 +TI 1760667400.227345943 +UH 0 64 l 4212 0 5 +UH 0 0 h 3138 10935 4 +UH 0 64 h 2580 0 5 +BD GR Veto +PQ +SE +ID 1958 +TI 1760667400.227359771 +UH 0 41 l 2376 10987 4 +UH 0 13 h 2471 11013 4 +PQ +SE +ID 1959 +TI 1760667400.227377414 +UH 0 0 l 4303 9087 4 +UH 0 1 l 1999 9502 4 +UH 0 64 l 1635 0 5 +UH 0 53 h 1964 9182 4 +UH 0 54 h 2187 9209 4 +UH 0 55 h 3722 8791 4 +UH 0 64 h 1719 0 5 +BD GR Veto +PQ +SE +ID 1960 +TI 1760667400.227405071 +UH 0 32 l 2611 10751 4 +UH 0 34 l 3408 10621 4 +UH 0 38 l 1782 10763 4 +UH 0 32 h 1774 10639 4 +UH 0 33 h 2305 10199 4 +UH 0 34 h 3074 10269 4 +UH 0 35 h 1921 10657 4 +UH 0 36 h 1642 4680 0 +PQ +SE +ID 1961 +TI 1760667400.227441310 +UH 0 44 l 1860 11054 4 +UH 0 63 h 1947 10848 4 +PQ +SE +ID 1962 +TI 1760667400.227457523 +UH 0 51 l 2585 10902 4 +UH 0 30 h 2499 11327 4 +PQ +SE +ID 1963 +TI 1760667400.227474689 +UH 0 45 l 3652 10471 4 +UH 0 46 l 1610 10586 4 +UH 0 58 l 3100 10251 4 +UH 0 59 l 1726 10544 4 +UH 0 37 h 3335 10691 4 +UH 0 15 h 3758 11041 4 +PQ +SE +ID 1964 +TI 1760667400.227510929 +UH 0 64 l 2904 0 5 +UH 0 64 h 2883 0 5 +BD GR Veto +PQ +SE +ID 1965 +TI 1760667400.227519035 +UH 0 58 l 2640 10450 4 +UH 0 59 l 1737 10778 4 +UH 0 64 l 2411 0 5 +UH 0 60 h 2452 10292 4 +UH 0 61 h 1910 10772 4 +UH 0 64 h 2523 0 5 +BD GR Veto +PQ +SE +ID 1966 +TI 1760667400.227545738 +UH 0 1 l 1724 5466 0 +UH 0 39 h 1732 4808 0 +PQ +SE +ID 1967 +TI 1760667400.227563381 +UH 0 49 l 1772 10804 4 +UH 0 1 h 1940 11589 4 +PQ +SE +ID 1968 +TI 1760667400.227580785 +UH 0 1 l 2709 11230 4 +UH 0 7 l 2434 10770 4 +UH 0 64 l 2595 0 5 +UH 0 33 h 2441 10520 4 +UH 0 34 h 1608 10769 4 +UH 0 35 h 1718 4823 0 +UH 0 51 h 2015 10599 4 +UH 0 52 h 1949 10678 4 +UH 0 53 h 2121 10684 4 +UH 0 54 h 1800 10861 4 +BD GR Veto +PQ +SE +ID 1969 +TI 1760667400.227627754 +UH 0 32 l 1948 10604 4 +UH 0 34 l 2299 10149 4 +UH 0 0 l 1762 2885 0 +UH 0 6 l 3030 8806 4 +UH 0 7 l 1804 8793 4 +UH 0 19 l 3226 10954 4 +UH 0 30 l 2863 11194 4 +UH 0 32 h 1829 10730 4 +UH 0 40 h 3178 10199 4 +UH 0 46 h 2825 10277 4 +UH 0 49 h 3505 9156 4 +UH 0 30 h 2275 11418 4 +PQ +SE +ID 1970 +TI 1760667400.227704524 +UH 0 46 l 1508 8467 4 +UH 0 47 l 4397 8455 4 +UH 0 48 l 1539 8663 4 +UH 0 58 l 1636 1246 0 +UH 0 59 l 1635 1523 0 +UH 0 60 l 1685 1357 0 +UH 0 61 l 1743 1533 0 +UH 0 62 l 1773 1543 0 +UH 0 63 l 1745 1348 0 +UH 0 25 h 4261 9209 4 +PQ +SE +ID 1971 +TI 1760667400.227742671 +UH 0 21 l 2724 10864 4 +UH 0 34 h 2590 10933 4 +PQ +SE +ID 1972 +TI 1760667400.227760553 +UH 0 17 l 3647 9450 4 +UH 0 31 l 3519 9880 4 +UH 0 12 h 3473 9439 4 +UH 0 14 h 1578 9876 4 +UH 0 15 h 3561 9855 4 +UH 0 16 h 1584 9943 4 +PQ +SE +ID 1973 +TI 1760667400.227795600 +UH 0 33 l 2591 8878 4 +UH 0 34 l 1579 5283 0 +UH 0 35 l 1818 3961 0 +UH 0 36 l 2371 9322 4 +UH 0 37 l 2342 9603 4 +UH 0 9 h 2636 9938 4 +UH 0 15 h 3105 9885 4 +UH 0 19 h 1817 9998 4 +PQ +SE +ID 1974 +TI 1760667400.227838039 +UH 0 48 l 2014 10993 4 +UH 0 58 l 1773 10821 4 +UH 0 37 h 1815 10882 4 +UH 0 52 h 1628 4425 0 +UH 0 53 h 1764 10888 4 +UH 0 54 h 1718 5307 0 +PQ +SE +ID 1975 +TI 1760667400.227879285 +UH 0 34 l 2368 10603 4 +UH 0 23 h 2367 10940 4 +PQ +SE +ID 1976 +TI 1760667400.227896928 +UH 0 19 l 3248 10924 4 +UH 0 21 l 2649 11060 4 +UH 0 22 l 1676 4698 0 +UH 0 24 l 2268 10485 4 +UH 0 35 h 2617 10538 4 +UH 0 37 h 3254 10825 4 +UH 0 27 h 2201 11263 4 +UH 0 29 h 1600 5054 0 +UH 0 30 h 1589 5264 0 +PQ +SE +ID 1977 +TI 1760667400.227944850 +UH 0 27 l 2043 10508 4 +UH 0 64 l 3796 0 5 +UH 0 6 h 1980 11124 4 +UH 0 64 h 3696 0 5 +BD GR Veto +PQ +SE +ID 1978 +TI 1760667400.227967023 +UH 0 56 l 1555 5461 0 +UH 0 57 l 3775 9735 4 +UH 0 58 l 1586 9653 4 +UH 0 64 l 1696 0 5 +UH 0 36 h 2758 9910 4 +UH 0 26 h 2530 10114 4 +UH 0 27 h 1632 9966 4 +UH 0 64 h 2590 0 5 +BD GR Veto +PQ +SE +ID 1979 +TI 1760667400.228005170 +UH 0 6 l 3382 10771 4 +UH 0 7 l 1664 10761 4 +UH 0 37 h 3497 11163 4 +PQ +SE +ID 1980 +TI 1760667400.228027105 +UH 0 37 l 2259 10954 4 +UH 0 38 l 1542 5138 0 +UH 0 14 h 2026 11292 4 +UH 0 15 h 1848 11444 4 +PQ +SE +ID 1981 +TI 1760667400.228048086 +UH 0 64 l 4173 0 5 +UH 0 64 h 4039 0 5 +BD GR Veto +PQ +SE +ID 1982 +TI 1760667400.228056430 +UH 0 0 l 2542 10900 4 +UH 0 1 l 2263 10847 4 +UH 0 3 l 2295 10557 4 +UH 0 25 h 1574 4681 0 +UH 0 26 h 3050 11334 4 +UH 0 28 h 2351 10895 4 +PQ +SE +ID 1983 +TI 1760667400.252861499 +UH 0 9 l 2438 10977 4 +UH 0 12 l 1786 4124 0 +UH 0 42 h 2424 10632 4 +UH 0 52 h 1672 5115 0 +PQ +SE +ID 1984 +TI 1760667400.252962112 +UH 0 14 l 1829 4743 0 +UH 0 15 l 1944 10784 4 +UH 0 16 l 4089 10908 4 +UH 0 18 l 1768 10389 4 +UH 0 33 h 3369 10095 4 +UH 0 34 h 2114 10321 4 +UH 0 35 h 2116 10494 4 +UH 0 30 h 1745 11348 4 +PQ +SE +ID 1985 +TI 1760667400.253055572 +UH 0 1 l 1861 11433 4 +UH 0 2 l 2182 11107 4 +UH 0 21 h 1819 11362 4 +UH 0 22 h 2232 10992 4 +PQ +SE +ID 1986 +TI 1760667400.253100872 +UH 0 59 l 2082 10660 4 +UH 0 60 l 1740 5060 0 +UH 0 41 h 1952 10625 4 +UH 0 42 h 1937 10227 4 +PQ +SE +ID 1987 +TI 1760667400.253149509 +UH 0 58 l 2572 10587 4 +UH 0 44 h 2597 10172 4 +UH 0 2 h 1621 16042 0 +PQ +SE +ID 1988 +TI 1760667400.253204584 +UH 0 55 l 1621 5324 0 +UH 0 57 l 1761 10889 4 +UH 0 18 h 1700 5240 0 +UH 0 26 h 1823 11715 4 +PQ +SE +ID 1989 +TI 1760667400.253262519 +UH 0 40 l 2095 10857 4 +UH 0 41 l 2197 11020 4 +UH 0 46 h 1626 10563 4 +UH 0 47 h 2875 10407 4 +PQ +SE +ID 1990 +TI 1760667400.253306388 +UH 0 55 l 3097 8712 4 +UH 0 56 l 1545 8985 4 +UH 0 57 l 2649 8431 4 +UH 0 34 h 1541 8549 4 +UH 0 35 h 2620 8625 4 +UH 0 36 h 2642 8576 4 +UH 0 37 h 2123 8723 4 +PQ +SE +ID 1991 +TI 1760667400.253364324 +UH 0 64 l 2007 0 5 +UH 0 64 h 2064 0 5 +BD GR Veto +PQ +SE +ID 1992 +TI 1760667400.253379344 +UH 0 36 l 2686 10350 4 +UH 0 20 h 2670 11092 4 +PQ +SE +ID 1993 +TI 1760667400.253419160 +UH 0 26 l 2056 11525 4 +UH 0 54 h 1928 10902 4 +PQ +SE +ID 1994 +TI 1760667400.253453731 +UH 0 0 l 1850 5098 0 +UH 0 15 h 1845 11884 4 +PQ +SE +ID 1995 +TI 1760667400.253493309 +UH 0 64 l 2951 0 5 +UH 0 10 h 1836 11345 4 +UH 0 64 h 2638 0 5 +BD GR Veto +PQ +SE +ID 1996 +TI 1760667400.253522634 +UH 0 15 l 3286 10385 4 +UH 0 16 l 1647 10612 4 +UH 0 27 l 1636 2146 0 +UH 0 28 l 1704 1497 0 +UH 0 29 l 1703 1789 0 +UH 0 30 l 1668 2024 0 +UH 0 31 l 1767 2503 0 +UH 0 25 h 1796 11344 4 +UH 0 26 h 2957 11436 4 +PQ +SE +ID 1997 +TI 1760667400.253597974 +UH 0 36 l 3028 10537 4 +UH 0 37 l 1704 4918 0 +UH 0 42 l 1877 10788 4 +UH 0 44 l 2385 10732 4 +UH 0 48 l 2700 10419 4 +UH 0 14 h 1689 10884 4 +UH 0 15 h 3826 10860 4 +UH 0 16 h 1858 10961 4 +UH 0 20 h 2742 10970 4 +PQ +SE +ID 1998 +TI 1760667400.253703832 +UH 0 1 l 4565 11080 4 +UH 0 2 l 2681 10915 4 +UH 0 33 h 5468 10228 4 +PQ +SE +ID 1999 +TI 1760667400.253741979 +UH 0 25 l 3234 11102 4 +UH 0 27 l 1857 5118 0 +UH 0 18 h 3200 11052 4 +UH 0 20 h 1832 11244 4 +PQ +SE +ID 2000 +TI 1760667400.253793954 +UH 0 42 l 1644 5145 0 +UH 0 43 l 2143 10958 4 +UH 0 57 h 2298 11342 4 +PQ +SE +ID 2001 +TI 1760667400.253832817 +UH 0 64 l 1711 0 5 +UH 0 64 h 1765 0 5 +BD GR Veto +PQ +SE +ID 2002 +TI 1760667400.253847599 +UH 0 41 l 2182 10953 4 +UH 0 6 h 1606 4430 0 +UH 0 7 h 2222 10910 4 +PQ +SE +ID 2003 +TI 1760667400.253885746 +UH 0 64 l 1672 0 5 +UH 0 64 h 1743 0 5 +BD GR Veto +PQ +SE +ID 2004 +TI 1760667400.253901004 +UH 0 38 l 2288 8644 4 +UH 0 39 l 3005 8536 4 +UH 0 40 l 1982 8648 4 +UH 0 41 l 2803 8939 4 +UH 0 42 l 1610 5361 0 +UH 0 56 h 2337 8943 4 +UH 0 57 h 4068 9085 4 +UH 0 58 h 2258 8795 4 +PQ +SE +ID 2005 +TI 1760667400.253962755 +UH 0 64 l 1648 0 5 +UH 0 20 h 1651 5245 0 +BD GR Veto +PQ +SE +ID 2006 +TI 1760667400.253988981 +UH 0 17 l 1765 10247 4 +UH 0 18 l 3527 10018 4 +UH 0 22 l 1710 3876 0 +UH 0 17 h 1582 4240 0 +UH 0 18 h 1628 3438 0 +UH 0 22 h 3656 10406 4 +UH 0 23 h 1625 10576 4 +PQ +SE +ID 2007 +TI 1760667400.254067182 +UH 0 64 l 2247 0 5 +UH 0 64 h 2782 0 5 +BD GR Veto +PQ +SE +ID 2008 +TI 1760667400.254084348 +UH 0 52 l 1795 11250 4 +UH 0 59 l 1560 4610 0 +UH 0 28 h 1827 10879 4 +PQ +SE +ID 2009 +TI 1760667400.254132270 +UH 0 23 l 2041 10951 4 +UH 0 24 l 1911 11019 4 +UH 0 5 h 1602 4806 0 +UH 0 6 h 2117 11164 4 +PQ +SE +ID 2010 +TI 1760667400.254176139 +UH 0 49 l 3152 10877 4 +UH 0 11 h 3236 10896 4 +PQ +SE +ID 2011 +TI 1760667400.254198789 +UH 0 14 h 1579 5636 0 +PQ +SE +ID 2012 +TI 1760667400.254210472 +UH 0 0 l 3722 10767 4 +UH 0 1 l 2336 11140 4 +UH 0 28 h 4465 10814 4 +PQ +SE +ID 2013 +TI 1760667400.254230022 +UH 0 64 l 1696 0 5 +UH 0 59 h 1716 11685 4 +BD GR Veto +PQ +SE +ID 2014 +TI 1760667400.254243373 +UH 0 10 l 1925 10825 4 +UH 0 11 l 1792 4500 0 +UH 0 31 h 1994 10938 4 +PQ +SE +ID 2015 +TI 1760667400.254261970 +UH 0 63 l 2581 10649 4 +UH 0 64 l 2351 0 5 +UH 0 19 h 2498 11183 4 +UH 0 20 h 1645 4577 0 +UH 0 64 h 2375 0 5 +BD GR Veto +PQ +SE +ID 2016 +TI 1760667400.254285335 +UH 0 51 l 1883 10853 4 +UH 0 52 l 2778 10688 4 +UH 0 10 h 3017 11499 4 +PQ +SE +ID 2017 +TI 1760667400.254307985 +UH 0 62 l 2477 10745 4 +UH 0 13 h 2451 11292 4 +PQ +SE +ID 2018 +TI 1760667400.254326343 +UH 0 1 l 1898 10479 4 +UH 0 2 l 1742 10071 4 +UH 0 3 l 2160 9855 4 +UH 0 6 l 4156 10458 4 +UH 0 64 l 1905 0 5 +UH 0 21 h 1803 10489 4 +UH 0 22 h 1708 10164 4 +UH 0 23 h 4056 10111 4 +UH 0 27 h 1612 4545 0 +UH 0 30 h 2301 10790 4 +UH 0 64 h 1979 0 5 +BD GR Veto +PQ +SE +ID 2019 +TI 1760667400.254388332 +UH 0 6 l 2457 11054 4 +UH 0 17 l 2405 10670 4 +UH 0 35 h 2453 10733 4 +UH 0 30 h 2383 11514 4 +PQ +SE +ID 2020 +TI 1760667400.254424095 +UH 0 37 l 2567 10708 4 +UH 0 44 l 2130 10575 4 +UH 0 42 h 2209 10604 4 +UH 0 31 h 2548 10814 4 +PQ +SE +ID 2021 +TI 1760667400.254462480 +UH 0 64 l 3538 0 5 +UH 0 64 h 3467 0 5 +BD GR Veto +PQ +SE +ID 2022 +TI 1760667400.254473447 +UH 0 11 l 2388 10475 4 +UH 0 63 h 2285 11007 4 +PQ +SE +ID 2023 +TI 1760667400.254490137 +UH 0 64 l 3982 0 5 +UH 0 64 h 3856 0 5 +BD GR Veto +PQ +SE +ID 2024 +TI 1760667400.254498481 +UH 0 12 l 1940 4803 0 +UH 0 13 l 1847 10710 4 +UH 0 30 h 2104 11509 4 +PQ +SE +ID 2025 +TI 1760667400.254518985 +UH 0 23 l 3815 8690 4 +UH 0 24 l 1676 8899 4 +UH 0 55 h 3836 8964 4 +PQ +SE +ID 2026 +TI 1760667400.254539489 +UH 0 5 l 1641 8952 4 +UH 0 6 l 4511 9022 4 +UH 0 58 h 3247 9198 4 +UH 0 59 h 2693 9367 4 +PQ +SE +ID 2027 +TI 1760667400.254572868 +UH 0 34 l 1586 5265 0 +PQ +SE +ID 2028 +TI 1760667400.254591464 +UH 0 11 l 2339 10454 4 +UH 0 33 h 2154 10951 4 +PQ +SE +ID 2029 +TI 1760667400.254620790 +UH 0 20 l 3954 10632 4 +UH 0 35 h 3859 10424 4 +PQ +SE +ID 2030 +TI 1760667400.254643917 +UH 0 2 l 1888 10821 4 +UH 0 13 h 1854 11461 4 +PQ +SE +ID 2031 +TI 1760667400.254662513 +UH 0 5 l 1644 3942 0 +UH 0 64 l 3073 0 5 +UH 0 53 h 1583 4437 0 +UH 0 54 h 2011 10757 4 +UH 0 64 h 2518 0 5 +BD GR Veto +PQ +SE +ID 2032 +TI 1760667400.254700899 +UH 0 1 l 2083 10761 4 +UH 0 64 l 2566 0 5 +UH 0 35 h 2068 10841 4 +UH 0 64 h 2610 0 5 +BD GR Veto +PQ +SE +ID 2033 +TI 1760667400.254724979 +UH 0 64 l 2062 0 5 +UH 0 64 h 3900 0 5 +BD GR Veto +PQ +SE +ID 2034 +TI 1760667400.254733562 +UH 0 6 l 2605 11034 4 +UH 0 64 l 2379 0 5 +UH 0 59 h 1884 10781 4 +UH 0 60 h 2142 10477 4 +UH 0 61 h 1577 4851 0 +UH 0 64 h 2431 0 5 +BD GR Veto +PQ +SE +ID 2035 +TI 1760667400.254762649 +UH 0 19 l 1669 5390 0 +UH 0 20 l 2260 10479 4 +UH 0 21 l 2235 10875 4 +UH 0 22 l 1774 4905 0 +UH 0 27 l 2966 10734 4 +UH 0 40 h 2266 10731 4 +UH 0 42 h 2960 10464 4 +UH 0 47 h 1837 10808 4 +UH 0 48 h 1606 5267 0 +UH 0 49 h 2107 10824 4 +PQ +SE +ID 2036 +TI 1760667400.254817962 +UH 0 0 l 1613 8849 4 +UH 0 64 l 4557 0 5 +UH 0 52 h 2151 8882 4 +UH 0 64 h 3806 0 5 +BD GR Veto +PQ +SE +ID 2037 +TI 1760667400.254840612 +UH 0 48 l 3000 10866 4 +UH 0 51 h 3022 11019 4 +PQ +SE +ID 2038 +TI 1760667400.254860639 +UH 0 5 l 2420 10899 4 +UH 0 4 h 1700 4603 0 +UH 0 5 h 2243 11125 4 +PQ +SE +ID 2039 +TI 1760667400.254882097 +UH 0 38 l 1836 11055 4 +UH 0 60 h 1631 3945 0 +UH 0 61 h 1746 10688 4 +PQ +SE +ID 2040 +TI 1760667400.254903078 +UH 0 47 l 1811 11035 4 +UH 0 56 h 1860 11046 4 +PQ +SE +ID 2041 +TI 1760667400.254923582 +UH 0 45 l 1998 10550 4 +UH 0 52 l 2794 10819 4 +UH 0 53 l 1637 10833 4 +UH 0 55 l 1722 10521 4 +UH 0 56 l 2283 10650 4 +UH 0 49 h 2800 10442 4 +UH 0 50 h 1661 10480 4 +UH 0 54 h 2526 10860 4 +UH 0 61 h 2007 10711 4 +PQ +SE +ID 2042 +TI 1760667400.254978418 +UH 0 11 l 1754 10103 4 +UH 0 12 l 3934 9916 4 +UH 0 41 h 3986 10882 4 +PQ +SE +ID 2043 +TI 1760667400.255003690 +UH 0 42 l 1734 4705 0 +UH 0 44 l 1928 10715 4 +UH 0 45 l 3635 10575 4 +UH 0 46 l 2217 10649 4 +UH 0 64 l 2111 0 5 +UH 0 61 h 1980 11152 4 +UH 0 62 h 4485 10885 4 +UH 0 63 h 1720 10994 4 +UH 0 64 h 2164 0 5 +BD GR Veto +PQ +SE +ID 2044 +TI 1760667400.255044460 +UH 0 57 l 2105 10718 4 +UH 0 58 l 1592 4809 0 +UH 0 61 l 2528 10685 4 +UH 0 44 h 2138 10911 4 +UH 0 45 h 1591 4891 0 +UH 0 53 h 2452 11035 4 +PQ +SE +ID 2045 +TI 1760667400.255094289 +UH 0 15 l 2574 10867 4 +UH 0 16 l 3247 10909 4 +UH 0 30 l 1611 2163 0 +UH 0 31 l 1665 2300 0 +UH 0 46 h 1696 10594 4 +UH 0 47 h 3170 10418 4 +UH 0 6 h 2469 11105 4 +PQ +SE +ID 2046 +TI 1760667400.255142688 +UH 0 52 l 2262 11036 4 +UH 0 47 h 2279 10687 4 +PQ +SE +ID 2047 +TI 1760667400.276418447 +UH 0 38 l 2197 8325 4 +UH 0 39 l 3878 8158 4 +UH 0 40 l 1524 8417 4 +UH 0 33 h 3984 8249 4 +UH 0 34 h 1923 8437 4 +PQ +SE +ID 2048 +TI 1760667400.276478767 +UH 0 42 l 2239 11157 4 +UH 0 43 l 2833 10950 4 +UH 0 41 h 3320 10884 4 +UH 0 42 h 1871 10543 4 +PQ +SE +ID 2049 +TI 1760667400.276502132 +UH 0 13 l 2136 10543 4 +UH 0 0 h 2161 11411 4 +PQ +SE +ID 2050 +TI 1760667400.276518583 +UH 0 35 l 2226 10618 4 +UH 0 28 l 1841 4488 0 +UH 0 29 l 1730 4757 0 +UH 0 23 h 1935 11130 4 +UH 0 26 h 1660 5070 0 +UH 0 27 h 2169 11360 4 +PQ +SE +ID 2051 +TI 1760667400.276556730 +UH 0 20 l 1980 10590 4 +UH 0 22 l 2457 10616 4 +UH 0 45 h 1576 3327 0 +UH 0 46 h 1825 10945 4 +UH 0 48 h 2470 11063 4 +PQ +SE +ID 2052 +TI 1760667400.276588201 +UH 0 15 l 1715 5204 0 +UH 0 35 h 1640 4910 0 +PQ +SE +ID 2053 +TI 1760667400.276606321 +UH 0 7 l 1598 9410 4 +UH 0 8 l 3619 9213 4 +UH 0 15 l 1761 3280 0 +UH 0 46 h 3518 9702 4 +UH 0 52 h 1680 3096 0 +PQ +SE +ID 2054 +TI 1760667400.276649236 +UH 0 37 l 1635 5036 0 +UH 0 39 l 1796 10771 4 +UH 0 40 l 2548 10716 4 +UH 0 60 h 2809 10239 4 +UH 0 61 h 1625 10804 4 +PQ +SE +ID 2055 +TI 1760667400.276677846 +UH 0 20 l 3707 10634 4 +UH 0 25 l 1916 4995 0 +UH 0 26 l 1867 5162 0 +UH 0 23 h 2088 10647 4 +UH 0 24 h 2785 10644 4 +UH 0 25 h 2252 10873 4 +PQ +SE +ID 2056 +TI 1760667400.276715517 +UH 0 13 l 2892 10658 4 +UH 0 37 h 2903 11340 4 +PQ +SE +ID 2057 +TI 1760667400.276733398 +UH 0 50 l 2103 10795 4 +UH 0 55 l 2566 10810 4 +UH 0 53 h 2084 10618 4 +UH 0 55 h 2446 10424 4 +UH 0 56 h 1828 10832 4 +PQ +SE +ID 2058 +TI 1760667400.276771068 +UH 0 64 l 2775 0 5 +UH 0 64 h 2770 0 5 +BD GR Veto +PQ +SE +ID 2059 +TI 1760667400.276780128 +UH 0 56 l 1678 4779 0 +UH 0 57 l 2142 10566 4 +UH 0 58 l 2354 10290 4 +UH 0 23 h 2296 10646 4 +UH 0 24 h 1557 5355 0 +UH 0 26 h 2372 11028 4 +PQ +SE +ID 2060 +TI 1760667400.276809215 +UH 0 17 l 1633 5054 0 +UH 0 18 l 1684 5071 0 +UH 0 19 l 2198 11123 4 +UH 0 34 h 1689 10966 4 +UH 0 38 h 2209 11244 4 +PQ +SE +ID 2061 +TI 1760667400.276847362 +UH 0 15 l 2213 10860 4 +UH 0 31 l 1608 2327 0 +UH 0 13 h 2083 11329 4 +UH 0 14 h 1574 5069 0 +PQ +SE +ID 2062 +TI 1760667400.276871681 +UH 0 61 l 3637 10662 4 +UH 0 62 l 2417 10848 4 +UH 0 50 h 1855 10348 4 +UH 0 52 h 4051 10424 4 +PQ +SE +ID 2063 +TI 1760667400.276896238 +UH 0 8 l 1822 10941 4 +UH 0 9 l 2216 10872 4 +UH 0 11 l 2184 10407 4 +UH 0 30 l 1621 5527 0 +UH 0 33 h 1579 3469 0 +UH 0 28 h 2097 11039 4 +UH 0 30 h 1754 5306 0 +UH 0 31 h 2144 10682 4 +PQ +SE +ID 2064 +TI 1760667400.276944398 +UH 0 46 l 2186 10607 4 +UH 0 48 h 2285 11112 4 +PQ +SE +ID 2065 +TI 1760667400.276962041 +UH 0 64 l 3955 0 5 +UH 0 64 h 3862 0 5 +BD GR Veto +PQ +SE +ID 2066 +TI 1760667400.276970386 +UH 0 54 l 1683 5541 0 +UH 0 42 h 1787 11232 4 +PQ +SE +ID 2067 +TI 1760667400.276987791 +UH 0 64 l 1675 0 5 +UH 0 64 h 1749 0 5 +BD GR Veto +PQ +SE +ID 2068 +TI 1760667400.276996850 +UH 0 61 l 2455 10293 4 +UH 0 15 h 2432 11526 4 +PQ +SE +ID 2069 +TI 1760667400.277013778 +UH 0 37 l 1835 5242 0 +UH 0 38 l 1764 5290 0 +UH 0 55 h 2197 10739 4 +PQ +SE +ID 2070 +TI 1760667400.277034521 +UH 0 50 l 1915 10765 4 +UH 0 37 h 1918 11164 4 +PQ +SE +ID 2071 +TI 1760667400.277052640 +UH 0 21 l 1881 5246 0 +UH 0 1 h 1937 11770 4 +PQ +SE +ID 2072 +TI 1760667400.277069807 +UH 0 64 l 2095 0 5 +UH 0 64 h 2134 0 5 +BD GR Veto +PQ +SE +ID 2073 +TI 1760667400.277077913 +UH 0 62 l 1843 11026 4 +UH 0 21 h 1770 11259 4 +PQ +SE +ID 2074 +TI 1760667400.277101755 +UH 0 34 l 1651 3055 0 +UH 0 41 l 1493 8872 4 +UH 0 42 l 3976 8707 4 +UH 0 43 l 1533 8853 4 +UH 0 60 h 3365 8664 4 +UH 0 61 h 2225 9040 4 +PQ +SE +ID 2075 +TI 1760667400.277133226 +UH 0 21 l 2032 11098 4 +UH 0 18 h 2047 10794 4 +PQ +SE +ID 2076 +TI 1760667400.277153968 +UH 0 33 l 2283 10210 4 +UH 0 38 l 1607 5290 0 +UH 0 39 l 2248 10472 4 +UH 0 12 l 2526 10011 4 +UH 0 13 l 2827 10610 4 +UH 0 24 l 2026 10824 4 +UH 0 7 h 2885 11196 4 +UH 0 8 h 1944 11405 4 +UH 0 9 h 2438 11288 4 +UH 0 12 h 2213 11222 4 +UH 0 14 h 2252 11346 4 +UH 0 15 h 1641 4287 0 +PQ +SE +ID 2077 +TI 1760667400.277247428 +UH 0 62 l 2341 10821 4 +UH 0 51 h 2245 10841 4 +PQ +SE +ID 2078 +TI 1760667400.277280330 +UH 0 40 l 3832 10085 4 +UH 0 41 l 1849 10341 4 +UH 0 42 l 2452 10392 4 +UH 0 43 l 1944 10398 4 +UH 0 9 h 4272 10569 4 +UH 0 10 h 1576 10765 4 +UH 0 12 h 2853 10413 4 +PQ +SE +ID 2079 +TI 1760667400.277313232 +UH 0 33 l 2252 10640 4 +UH 0 11 h 2279 11518 4 +PQ +SE +ID 2080 +TI 1760667400.277332067 +UH 0 55 l 2464 9999 4 +UH 0 56 l 1614 10140 4 +UH 0 57 l 3359 9767 4 +UH 0 58 l 1882 9695 4 +UH 0 59 l 1760 4138 0 +UH 0 54 h 2959 9980 4 +UH 0 55 h 2238 9515 4 +UH 0 56 h 2406 9791 4 +UH 0 57 h 2127 9965 4 +UH 0 64 h 1661 0 5 +BD GR Veto +PQ +SE +ID 2081 +TI 1760667400.277373075 +UH 0 21 l 2530 10938 4 +UH 0 26 h 2484 11400 4 +PQ +SE +ID 2082 +TI 1760667400.277392387 +UH 0 46 l 2512 10643 4 +UH 0 47 l 1652 10832 4 +UH 0 40 h 2773 10959 4 +PQ +SE +ID 2083 +TI 1760667400.277412891 +UH 0 3 l 1588 5203 0 +UH 0 5 l 3091 9927 4 +UH 0 28 h 1664 3881 0 +UH 0 29 h 1823 10056 4 +UH 0 30 h 2693 10176 4 +UH 0 64 h 1822 0 5 +BD GR Veto +PQ +SE +ID 2084 +TI 1760667400.277442216 +UH 0 23 l 2906 10830 4 +UH 0 28 l 1753 11067 4 +UH 0 30 l 3346 11024 4 +UH 0 49 h 1820 10956 4 +UH 0 50 h 3149 10845 4 +UH 0 56 h 2938 10858 4 +PQ +SE +ID 2085 +TI 1760667400.277481317 +UH 0 48 l 1525 4023 0 +UH 0 49 l 1568 3528 0 +UH 0 50 l 1590 8836 4 +UH 0 51 l 4216 8748 4 +UH 0 52 l 1625 8809 4 +UH 0 64 l 2260 0 5 +UH 0 56 h 1998 9073 4 +UH 0 57 h 3645 9145 4 +UH 0 62 h 1746 2690 0 +UH 0 64 h 2301 0 5 +BD GR Veto +PQ +SE +ID 2086 +TI 1760667400.277523279 +UH 0 55 l 2220 10884 4 +UH 0 58 l 1636 4703 0 +UH 0 35 h 2319 10595 4 +UH 0 36 h 1694 3985 0 +PQ +SE +ID 2087 +TI 1760667400.277550220 +UH 0 64 l 2317 0 5 +UH 0 64 h 2333 0 5 +BD GR Veto +PQ +SE +ID 2088 +TI 1760667400.277558565 +UH 0 25 h 1521 5609 0 +PQ +SE +ID 2089 +TI 1760667400.277569055 +UH 0 64 l 1862 0 5 +UH 0 64 h 1901 0 5 +BD GR Veto +PQ +SE +ID 2090 +TI 1760667400.277576923 +UH 0 22 l 3106 10422 4 +UH 0 1 h 3156 11262 4 +PQ +SE +ID 2091 +TI 1760667400.277594089 +UH 0 20 l 2508 10733 4 +UH 0 20 h 2434 11105 4 +PQ +SE +ID 2092 +TI 1760667400.277611732 +UH 0 21 l 1649 4806 0 +UH 0 22 l 1664 4148 0 +UH 0 45 h 1716 11414 4 +PQ +SE +ID 2093 +TI 1760667400.277631282 +UH 0 18 l 1966 10819 4 +UH 0 19 l 1634 4795 0 +UH 0 58 h 1999 11175 4 +PQ +SE +ID 2094 +TI 1760667400.277650833 +UH 0 8 l 2081 10771 4 +UH 0 45 h 1978 11437 4 +PQ +SE +ID 2095 +TI 1760667400.277669668 +UH 0 64 l 3540 0 5 +UH 0 64 h 3465 0 5 +BD GR Veto +PQ +SE +ID 2096 +TI 1760667400.277678012 +UH 0 55 l 2329 4399 4 +UH 0 58 l 2616 4332 4 +UH 0 59 l 3777 4622 4 +UH 0 3 l 3808 11021 4 +UH 0 32 h 1934 4416 4 +UH 0 33 h 3326 4007 4 +UH 0 34 h 1960 4384 4 +UH 0 35 h 2705 4467 4 +UH 0 38 h 1901 4155 4 +UH 0 39 h 1868 4068 4 +UH 0 42 h 2750 10660 4 +UH 0 43 h 2590 10906 4 +PQ +SE +ID 2097 +TI 1760667400.277741670 +UH 0 16 l 2140 10833 4 +UH 0 17 l 2437 10709 4 +UH 0 7 h 3161 11257 4 +PQ +SE +ID 2098 +TI 1760667400.277762413 +UH 0 35 l 2540 10907 4 +UH 0 37 h 2532 10639 4 +PQ +SE +ID 2099 +TI 1760667400.277780055 +UH 0 64 l 1917 0 5 +UH 0 64 h 1971 0 5 +BD GR Veto +PQ +SE +ID 2100 +TI 1760667400.277787923 +UH 0 62 l 2654 10608 4 +UH 0 63 l 1776 10579 4 +UH 0 32 h 2841 11116 4 +PQ +SE +ID 2101 +TI 1760667400.277805566 +UH 0 14 l 1646 4853 0 +UH 0 15 l 2496 10764 4 +UH 0 30 l 1634 2269 0 +UH 0 31 l 1647 2632 0 +UH 0 63 h 2472 10936 4 +PQ +SE +ID 2102 +TI 1760667400.277830362 +UH 0 19 l 3333 9821 4 +UH 0 20 l 1697 9640 4 +UH 0 24 h 3270 10383 4 +PQ +SE +ID 2103 +TI 1760667400.277850866 +UH 0 10 l 1661 4285 0 +UH 0 17 l 3643 10502 4 +UH 0 18 l 1882 10481 4 +UH 0 48 h 1607 3671 0 +UH 0 31 h 3996 10762 4 +PQ +SE +ID 2104 +TI 1760667400.277889490 +UH 0 23 l 1890 4645 0 +UH 0 25 l 1792 4779 0 +UH 0 32 h 1718 11034 4 +UH 0 30 h 1710 11544 4 +PQ +SE +ID 2105 +TI 1760667400.277920961 +UH 0 63 l 2298 10600 4 +UH 0 64 l 3269 0 5 +UH 0 46 h 1930 10523 4 +UH 0 47 h 2007 10465 4 +UH 0 64 h 3251 0 5 +BD GR Veto +PQ +SE +ID 2106 +TI 1760667400.277943134 +UH 0 32 l 2076 11057 4 +UH 0 30 l 2111 11041 4 +UH 0 61 h 2073 10866 4 +UH 0 63 h 1975 10492 4 +UH 0 64 h 1687 0 5 +BD GR Veto +PQ +SE +ID 2107 +TI 1760667400.277969121 +UH 0 32 l 1669 10125 4 +UH 0 33 l 3303 9701 4 +UH 0 61 h 2223 10499 4 +UH 0 62 h 2704 10304 4 +PQ +SE +ID 2108 +TI 1760667400.277991533 +UH 0 42 l 2602 10549 4 +UH 0 43 l 3363 10537 4 +UH 0 44 l 1510 7323 0 +UH 0 45 l 1612 5034 0 +UH 0 53 l 2617 10695 4 +UH 0 32 h 2507 10607 4 +UH 0 18 h 3323 11042 4 +UH 0 19 h 2683 11337 4 +UH 0 24 h 1618 4551 0 +PQ +SE +ID 2109 +TI 1760667400.278043985 +UH 0 36 l 3304 10559 4 +UH 0 10 h 2642 10910 4 +UH 0 11 h 2207 10840 4 +PQ +SE +ID 2110 +TI 1760667400.278064489 +UH 0 4 l 1885 10966 4 +UH 0 3 h 1937 11404 4 +PQ +SE +ID 2111 +TI 1760667400.295526742 +UH 0 1 l 1630 10068 4 +UH 0 2 l 3382 9744 4 +UH 0 42 h 3392 9469 4 +PQ +SE +ID 2112 +TI 1760667400.295607805 +UH 0 51 l 2469 10946 4 +UH 0 32 h 2353 10492 4 +PQ +SE +ID 2113 +TI 1760667400.295643568 +UH 0 14 l 2500 10633 4 +UH 0 15 l 1663 4701 0 +UH 0 48 h 2507 11084 4 +PQ +SE +ID 2114 +TI 1760667400.295681715 +UH 0 64 l 3633 0 5 +UH 0 64 h 3539 0 5 +BD GR Veto +PQ +SE +ID 2115 +TI 1760667400.295697212 +UH 0 35 l 2384 9230 4 +UH 0 36 l 2379 9210 4 +UH 0 37 l 4033 9430 4 +UH 0 38 l 6290 9361 4 +UH 0 60 h 1610 8956 4 +UH 0 61 h 8979 9034 4 +UH 0 62 h 1752 9006 4 +UH 0 63 h 2894 9080 4 +UH 0 64 h 1962 0 5 +BD GR Veto +PQ +SE +ID 2116 +TI 1760667400.295767307 +UH 0 64 l 1920 0 5 +UH 0 64 h 1967 0 5 +BD GR Veto +PQ +SE +ID 2117 +TI 1760667400.295782804 +UH 0 9 l 2422 11002 4 +UH 0 10 l 1644 4307 0 +UH 0 46 h 2364 11017 4 +UH 0 47 h 1650 11061 4 +PQ +SE +ID 2118 +TI 1760667400.295826435 +UH 0 4 l 2958 11014 4 +UH 0 11 h 2968 11249 4 +PQ +SE +ID 2119 +TI 1760667400.295860767 +UH 0 1 l 2892 11189 4 +UH 0 8 l 1893 4958 0 +UH 0 39 h 1736 3613 0 +UH 0 40 h 1677 4205 0 +UH 0 50 h 2885 10291 4 +PQ +SE +ID 2120 +TI 1760667400.295926332 +UH 0 53 l 2643 9750 4 +UH 0 54 l 3667 9899 4 +UH 0 59 l 1626 2711 0 +UH 0 9 h 4815 9774 4 +UH 0 10 h 1575 10282 4 +UH 0 11 h 1689 10161 4 +PQ +SE +ID 2121 +TI 1760667400.296005964 +UH 0 63 l 1537 9118 4 +UH 0 64 l 4387 0 5 +UH 0 64 h 5419 0 5 +BD GR Veto +PQ +SE +ID 2122 +TI 1760667400.296042203 +UH 0 25 l 2486 11256 4 +UH 0 36 h 2438 11220 4 +PQ +SE +ID 2123 +TI 1760667400.296062231 +UH 0 54 l 2084 8782 4 +UH 0 55 l 2026 8587 4 +UH 0 60 l 3239 8023 4 +UH 0 61 l 1650 8410 4 +UH 0 11 h 3217 8708 4 +UH 0 12 h 1566 8699 4 +UH 0 15 h 2701 8659 4 +PQ +SE +ID 2124 +TI 1760667400.296123981 +UH 0 40 l 2718 10869 4 +UH 0 9 h 2729 10684 4 +UH 0 10 h 1578 5578 0 +PQ +SE +ID 2125 +TI 1760667400.296152114 +UH 0 59 l 3257 10726 4 +UH 0 56 h 3257 10301 4 +PQ +SE +ID 2126 +TI 1760667400.296169519 +UH 0 27 l 2173 8883 4 +UH 0 29 l 1663 9342 4 +UH 0 30 l 4216 9475 4 +UH 0 43 h 2083 9375 4 +UH 0 48 h 1654 9281 4 +UH 0 49 h 4026 9158 4 +UH 0 50 h 1717 9179 4 +PQ +SE +ID 2127 +TI 1760667400.296218872 +UH 0 44 l 1649 5330 0 +UH 0 42 h 1758 4922 0 +PQ +SE +ID 2128 +TI 1760667400.296236276 +UH 0 5 l 1732 10363 4 +UH 0 6 l 3816 10450 4 +UH 0 7 h 4082 11180 4 +PQ +SE +ID 2129 +TI 1760667400.296255588 +UH 0 20 l 2426 10374 4 +UH 0 26 h 2209 11676 4 +UH 0 27 h 1677 5161 0 +PQ +SE +ID 2130 +TI 1760667400.296280860 +UH 0 55 l 2125 9225 4 +UH 0 56 l 4919 9298 4 +UH 0 57 l 1533 9134 4 +UH 0 35 h 1651 9062 4 +UH 0 36 h 4347 9013 4 +UH 0 37 h 2756 9276 4 +PQ +SE +ID 2131 +TI 1760667400.296308517 +UH 0 19 l 1634 8765 4 +UH 0 20 l 4578 8374 4 +UH 0 21 l 1605 8828 4 +UH 0 56 h 4524 9027 4 +PQ +SE +ID 2132 +TI 1760667400.296330690 +UH 0 64 l 2204 0 5 +UH 0 64 h 2239 0 5 +BD GR Veto +PQ +SE +ID 2133 +TI 1760667400.296339511 +UH 0 1 l 2001 11211 4 +UH 0 37 h 1975 11511 4 +PQ +SE +ID 2134 +TI 1760667400.296356678 +UH 0 25 l 3742 10874 4 +UH 0 29 h 3568 11119 4 +PQ +SE +ID 2135 +TI 1760667400.296374320 +UH 0 11 l 1798 4050 0 +UH 0 64 l 4099 0 5 +UH 0 44 h 1673 4612 0 +UH 0 47 h 1671 10917 4 +UH 0 48 h 4081 10928 4 +BD GR Veto +PQ +SE +ID 2136 +TI 1760667400.296404361 +UH 0 14 l 3064 10763 4 +UH 0 15 l 1872 10765 4 +UH 0 39 h 3092 10479 4 +UH 0 40 h 1742 10582 4 +UH 0 23 h 1566 16047 0 +PQ +SE +ID 2137 +TI 1760667400.296433448 +UH 0 9 l 2191 11046 4 +UH 0 42 h 1884 10370 4 +UH 0 43 h 1784 10602 4 +PQ +SE +ID 2138 +TI 1760667400.296453952 +UH 0 39 l 4137 8689 4 +UH 0 40 l 1530 8861 4 +UH 0 21 h 4049 9575 4 +PQ +SE +ID 2139 +TI 1760667400.296473264 +UH 0 6 l 1599 2158 0 +UH 0 7 l 1691 2587 0 +UH 0 14 l 4156 8688 4 +UH 0 15 l 1673 8679 4 +UH 0 29 h 1733 9211 4 +UH 0 30 h 4079 9291 4 +PQ +SE +ID 2140 +TI 1760667400.296504497 +UH 0 63 l 1521 5229 0 +PQ +SE +ID 2141 +TI 1760667400.296513319 +UH 0 55 l 2041 8605 4 +UH 0 60 l 2391 8500 4 +UH 0 61 l 3496 8635 4 +UH 0 25 h 4091 9078 4 +UH 0 26 h 1584 9249 4 +UH 0 28 h 2161 9064 4 +PQ +SE +ID 2142 +TI 1760667400.296546459 +UH 0 27 l 2341 10721 4 +UH 0 59 h 2283 11088 4 +PQ +SE +ID 2143 +TI 1760667400.296563625 +UH 0 13 l 2220 10898 4 +UH 0 16 l 2134 11098 4 +UH 0 44 h 2103 10891 4 +UH 0 45 h 2165 11323 4 +PQ +SE +ID 2144 +TI 1760667400.296589612 +UH 0 4 l 2584 10895 4 +UH 0 5 l 1833 10793 4 +UH 0 60 h 2791 10770 4 +PQ +SE +ID 2145 +TI 1760667400.296610116 +UH 0 55 l 1816 3354 0 +UH 0 56 l 1556 8975 4 +UH 0 57 l 4037 8569 4 +UH 0 58 l 2089 8520 4 +UH 0 60 l 1575 4342 0 +UH 0 61 l 2241 8481 4 +UH 0 24 h 2071 9190 4 +UH 0 25 h 2004 9407 4 +UH 0 26 h 2023 9484 4 +UH 0 31 h 4043 8868 4 +PQ +SE +ID 2146 +TI 1760667400.296658754 +UH 0 34 l 2291 10534 4 +UH 0 37 l 2414 10683 4 +UH 0 51 h 2368 11127 4 +UH 0 53 h 2276 11013 4 +PQ +SE +ID 2147 +TI 1760667400.296687841 +UH 0 43 l 1669 5140 0 +UH 0 44 l 1737 10569 4 +UH 0 4 h 2072 11735 4 +PQ +SE +ID 2148 +TI 1760667400.296704769 +UH 0 13 l 3688 10908 4 +UH 0 15 l 1813 4466 0 +UH 0 54 h 3550 10655 4 +UH 0 55 h 1688 10405 4 +UH 0 57 h 1589 4211 0 +UH 0 58 h 1695 4407 0 +PQ +SE +ID 2149 +TI 1760667400.296737432 +UH 0 39 l 1905 10756 4 +UH 0 40 l 2787 10709 4 +UH 0 43 l 1715 4917 0 +UH 0 64 l 2754 0 5 +UH 0 4 h 2329 11312 4 +UH 0 5 h 2704 11128 4 +UH 0 6 h 1549 4839 0 +UH 0 64 h 2769 0 5 +BD GR Veto +PQ +SE +ID 2150 +TI 1760667400.296773672 +UH 0 59 l 1742 5314 0 +UH 0 32 h 1715 5227 0 +PQ +SE +ID 2151 +TI 1760667400.296788930 +UH 0 34 l 2084 10575 4 +UH 0 3 h 2041 10373 4 +UH 0 4 h 1691 4738 0 +PQ +SE +ID 2152 +TI 1760667400.296808481 +UH 0 58 l 1561 5083 0 +UH 0 59 l 3226 8256 4 +UH 0 60 l 1600 8132 4 +UH 0 64 l 1824 0 5 +UH 0 46 h 3277 8351 4 +UH 0 64 h 1866 0 5 +BD GR Veto +PQ +SE +ID 2153 +TI 1760667400.296835184 +UH 0 45 l 3171 10690 4 +UH 0 55 h 3323 10677 4 +PQ +SE +ID 2154 +TI 1760667400.296853542 +UH 0 64 l 1718 0 5 +UH 0 64 h 1789 0 5 +BD GR Veto +PQ +SE +ID 2155 +TI 1760667400.296860456 +UH 0 0 l 2539 10781 4 +UH 0 54 h 2303 11094 4 +UH 0 55 h 1788 10803 4 +PQ +SE +ID 2156 +TI 1760667400.296876430 +UH 0 20 l 2037 10503 4 +UH 0 3 h 2026 11314 4 +PQ +SE +ID 2157 +TI 1760667400.296893835 +UH 0 26 l 2360 11248 4 +UH 0 17 h 1626 5348 0 +UH 0 18 h 2190 11267 4 +PQ +SE +ID 2158 +TI 1760667400.296913385 +UH 0 5 l 3706 8971 4 +UH 0 6 l 2587 9202 4 +UH 0 8 l 2557 9075 4 +UH 0 27 h 2495 9445 4 +UH 0 28 h 1646 9103 4 +UH 0 29 h 2754 9248 4 +UH 0 30 h 3356 9411 4 +UH 0 31 h 1564 8928 4 +PQ +SE +ID 2159 +TI 1760667400.296947002 +UH 0 64 l 2383 0 5 +UH 0 64 h 2402 0 5 +BD GR Veto +PQ +SE +ID 2160 +TI 1760667400.296954870 +UH 0 22 l 2266 10986 4 +UH 0 52 h 2229 11065 4 +PQ +SE +ID 2161 +TI 1760667400.296972751 +UH 0 55 l 2103 10809 4 +UH 0 38 h 2218 11279 4 +PQ +SE +ID 2162 +TI 1760667400.296991348 +UH 0 0 l 2118 11101 4 +UH 0 54 h 2052 10933 4 +PQ +SE +ID 2163 +TI 1760667400.297006130 +UH 0 36 l 2821 10559 4 +UH 0 39 l 2159 10502 4 +UH 0 37 h 1626 4737 0 +UH 0 38 h 2136 10838 4 +UH 0 39 h 2816 10368 4 +PQ +SE +ID 2164 +TI 1760667400.297035932 +UH 0 47 l 1767 10815 4 +UH 0 0 h 1839 11393 4 +PQ +SE +ID 2165 +TI 1760667400.297051429 +UH 0 14 l 1820 5355 0 +UH 0 14 h 1740 11480 4 +PQ +SE +ID 2166 +TI 1760667400.297068834 +UH 0 16 l 1862 10905 4 +UH 0 49 h 1852 11292 4 +PQ +SE +ID 2167 +TI 1760667400.297086238 +UH 0 50 l 2087 10750 4 +UH 0 49 h 2080 11093 4 +PQ +SE +ID 2168 +TI 1760667400.297103881 +UH 0 51 l 2528 10697 4 +UH 0 52 l 1600 10753 4 +UH 0 54 l 2326 10709 4 +UH 0 56 l 1603 10807 4 +UH 0 57 l 2357 10409 4 +UH 0 60 h 3567 9977 4 +UH 0 61 h 2260 10464 4 +PQ +SE +ID 2169 +TI 1760667400.297136068 +UH 0 43 l 2394 10911 4 +UH 0 52 h 2439 11067 4 +PQ +SE +ID 2170 +TI 1760667400.297154188 +UH 0 61 l 3282 10363 4 +UH 0 16 h 1884 11386 4 +UH 0 17 h 2757 11212 4 +PQ +SE +ID 2171 +TI 1760667400.297173976 +UH 0 15 l 1734 4684 0 +UH 0 16 l 1719 5236 0 +UH 0 61 h 1830 11200 4 +PQ +SE +ID 2172 +TI 1760667400.297194004 +UH 0 29 l 1775 4565 0 +UH 0 49 h 1719 10964 4 +PQ +SE +ID 2173 +TI 1760667400.297211885 +UH 0 27 h 1666 5576 0 +PQ +SE +ID 2174 +TI 1760667400.297222375 +UH 0 57 l 2337 8505 4 +UH 0 61 l 2538 8723 4 +UH 0 62 l 1766 9071 4 +UH 0 63 l 1518 5237 0 +UH 0 64 l 3641 0 5 +UH 0 32 h 2533 8911 4 +UH 0 35 h 2371 9011 4 +UH 0 31 h 1580 2041 0 +UH 0 64 h 3584 0 5 +BD GR Veto +PQ +SE +ID 2175 +TI 1760667400.315452098 +UH 0 64 l 3295 0 5 +UH 0 64 h 3263 0 5 +BD GR Veto +PQ +SE +ID 2176 +TI 1760667400.315505743 +UH 0 34 l 2471 10601 4 +UH 0 60 h 2324 10579 4 +UH 0 61 h 1668 11098 4 +PQ +SE +ID 2177 +TI 1760667400.315543413 +UH 0 6 l 2543 11022 4 +UH 0 5 h 2195 11350 4 +UH 0 6 h 1823 11393 4 +PQ +SE +ID 2178 +TI 1760667400.315579891 +UH 0 64 l 2215 0 5 +UH 0 64 h 2267 0 5 +BD GR Veto +PQ +SE +ID 2179 +TI 1760667400.315593719 +UH 0 25 l 3057 10856 4 +UH 0 27 l 2678 10638 4 +UH 0 29 l 3155 10935 4 +UH 0 33 h 4081 10232 4 +UH 0 40 h 2977 10636 4 +PQ +SE +ID 2180 +TI 1760667400.315654516 +UH 0 20 l 1997 10758 4 +UH 0 21 l 2114 11153 4 +UH 0 54 h 2434 10967 4 +PQ +SE +ID 2181 +TI 1760667400.315695047 +UH 0 56 l 1571 10175 4 +UH 0 57 l 4269 9791 4 +UH 0 10 h 1567 10344 4 +UH 0 11 h 4303 10084 4 +PQ +SE +ID 2182 +TI 1760667400.315734386 +UH 0 19 l 2075 10651 4 +UH 0 20 l 2087 10317 4 +UH 0 5 h 2487 11351 4 +PQ +SE +ID 2183 +TI 1760667400.315771341 +UH 0 18 l 1690 5222 0 +UH 0 33 h 1659 5101 0 +PQ +SE +ID 2184 +TI 1760667400.315802812 +UH 0 4 l 1962 11310 4 +UH 0 21 h 1895 11225 4 +PQ +SE +ID 2185 +TI 1760667400.315830945 +UH 0 0 l 1613 4733 0 +UH 0 1 l 1668 4607 0 +UH 0 9 h 1677 5459 0 +PQ +SE +ID 2186 +TI 1760667400.315857172 +UH 0 34 l 4521 9448 4 +UH 0 35 l 1691 9737 4 +UH 0 9 h 4691 9461 4 +UH 0 10 h 1577 9926 4 +PQ +SE +ID 2187 +TI 1760667400.315891981 +UH 0 47 l 2074 10995 4 +UH 0 48 l 1545 5155 0 +UH 0 63 l 1529 2278 0 +UH 0 21 h 2092 11248 4 +UH 0 24 h 1567 4590 0 +PQ +SE +ID 2188 +TI 1760667400.315941810 +UH 0 19 l 3955 10725 4 +UH 0 26 l 3063 10854 4 +UH 0 27 l 1822 10465 4 +UH 0 28 h 3938 10870 4 +UH 0 31 h 3202 10762 4 +PQ +SE +ID 2189 +TI 1760667400.315996646 +UH 0 8 l 3535 10195 4 +UH 0 20 l 1801 4566 0 +UH 0 23 l 2300 10560 4 +UH 0 8 h 2344 11252 4 +UH 0 9 h 1606 3792 0 +UH 0 14 h 3418 11262 4 +PQ +SE +ID 2190 +TI 1760667400.316066980 +UH 0 40 l 1571 4777 0 +UH 0 29 h 1631 5580 0 +PQ +SE +ID 2191 +TI 1760667400.316122770 +UH 0 26 l 1835 11053 4 +UH 0 27 l 4297 10432 4 +UH 0 7 h 2333 11017 4 +UH 0 8 h 3731 11287 4 +PQ +SE +ID 2192 +TI 1760667400.316159248 +UH 0 58 l 1931 10745 4 +UH 0 39 h 1949 10378 4 +UH 0 40 h 1601 4109 0 +PQ +SE +ID 2193 +TI 1760667400.316192626 +UH 0 64 l 2262 0 5 +UH 0 64 h 2171 0 5 +BD GR Veto +PQ +SE +ID 2194 +TI 1760667400.316205024 +UH 0 8 l 3803 10490 4 +UH 0 19 h 1906 11372 4 +UH 0 20 h 3260 11035 4 +PQ +SE +ID 2195 +TI 1760667400.316239356 +UH 0 7 l 4650 8998 4 +UH 0 64 l 1720 0 5 +UH 0 0 h 4736 9791 4 +UH 0 64 h 1718 0 5 +BD GR Veto +PQ +SE +ID 2196 +TI 1760667400.316271543 +UH 0 23 l 1702 8700 4 +UH 0 24 l 4319 8603 4 +UH 0 25 l 1689 8889 4 +UH 0 26 l 2005 9088 4 +UH 0 55 h 4386 8806 4 +UH 0 56 h 1930 9138 4 +PQ +SE +ID 2197 +TI 1760667400.316314697 +UH 0 12 l 2208 10575 4 +UH 0 2 h 2124 11097 4 +PQ +SE +ID 2198 +TI 1760667400.316344738 +UH 0 15 l 2729 8450 4 +UH 0 16 l 4478 8502 4 +UH 0 17 l 1619 8735 4 +UH 0 30 l 1692 1570 0 +UH 0 31 l 1751 1589 0 +UH 0 49 h 3020 8904 4 +UH 0 50 h 4268 8784 4 +PQ +SE +ID 2199 +TI 1760667400.316397428 +UH 0 9 l 3127 8885 4 +UH 0 15 l 1678 9079 4 +UH 0 16 l 4021 9230 4 +UH 0 4 h 1676 9765 4 +UH 0 5 h 3862 9478 4 +UH 0 6 h 1605 9601 4 +UH 0 8 h 2773 9811 4 +UH 0 9 h 1857 9525 4 +PQ +SE +ID 2200 +TI 1760667400.316459178 +UH 0 64 l 2012 0 5 +UH 0 64 h 2068 0 5 +BD GR Veto +PQ +SE +ID 2201 +TI 1760667400.316472530 +UH 0 64 l 1633 0 5 +UH 0 64 h 1690 0 5 +BD GR Veto +PQ +SE +ID 2202 +TI 1760667400.316485881 +UH 0 36 l 2209 10266 4 +UH 0 37 l 2662 10884 4 +UH 0 51 h 2606 10580 4 +UH 0 54 h 2158 10878 4 +PQ +SE +ID 2203 +TI 1760667400.316533565 +UH 0 64 l 1627 0 5 +UH 0 64 h 1673 0 5 +BD GR Veto +PQ +SE +ID 2204 +TI 1760667400.316547632 +UH 0 0 l 1651 9178 4 +UH 0 64 l 4343 0 5 +UH 0 22 h 4306 9377 4 +BD GR Veto +PQ +SE +ID 2205 +TI 1760667400.316578626 +UH 0 26 l 2453 11140 4 +UH 0 20 h 2371 11189 4 +PQ +SE +ID 2206 +TI 1760667400.316609621 +UH 0 19 l 1643 8880 4 +UH 0 20 l 5388 8396 4 +UH 0 21 l 1875 8843 4 +UH 0 5 h 5216 9273 4 +UH 0 6 h 1806 9345 4 +PQ +SE +ID 2207 +TI 1760667400.316654443 +UH 0 20 l 1806 4513 0 +UH 0 8 h 1753 5752 0 +PQ +SE +ID 2208 +TI 1760667400.316686391 +UH 0 32 l 1649 8025 4 +UH 0 21 l 2821 7996 4 +UH 0 27 l 1709 1588 0 +UH 0 28 l 1755 1481 0 +UH 0 31 l 4094 8239 4 +UH 0 1 h 2864 8119 4 +UH 0 6 h 1716 8323 4 +UH 0 8 h 2227 8489 4 +UH 0 9 h 3434 8088 4 +PQ +SE +ID 2209 +TI 1760667400.316778182 +UH 0 19 l 1618 9003 4 +UH 0 20 l 4645 8575 4 +UH 0 21 l 1600 9067 4 +UH 0 47 h 1635 8782 4 +UH 0 48 h 4594 8822 4 +UH 0 49 h 1621 8871 4 +PQ +SE +ID 2210 +TI 1760667400.316828250 +UH 0 39 l 3038 10792 4 +UH 0 10 h 2991 10901 4 +PQ +SE +ID 2211 +TI 1760667400.316858530 +UH 0 10 l 2001 11230 4 +UH 0 23 h 1935 11020 4 +PQ +SE +ID 2212 +TI 1760667400.316891193 +UH 0 64 l 3117 0 5 +UH 0 64 h 3085 0 5 +BD GR Veto +PQ +SE +ID 2213 +TI 1760667400.316904783 +UH 0 64 l 2992 0 5 +UH 0 64 h 2968 0 5 +BD GR Veto +PQ +SE +ID 2214 +TI 1760667400.316919088 +UH 0 6 l 2347 11148 4 +UH 0 6 h 2282 10987 4 +PQ +SE +ID 2215 +TI 1760667400.316948175 +UH 0 49 l 1838 11075 4 +UH 0 35 h 1908 11114 4 +PQ +SE +ID 2216 +TI 1760667400.316978454 +UH 0 64 l 4463 0 5 +UH 0 64 h 4293 0 5 +BD GR Veto +PQ +SE +ID 2217 +TI 1760667400.316992044 +UH 0 57 l 2070 10940 4 +UH 0 61 l 1761 5050 0 +UH 0 51 h 1687 11345 4 +UH 0 52 h 2118 11303 4 +PQ +SE +ID 2218 +TI 1760667400.317040681 +UH 0 43 l 2265 10922 4 +UH 0 8 h 2330 11593 4 +PQ +SE +ID 2219 +TI 1760667400.317071914 +UH 0 28 l 3064 10443 4 +UH 0 29 l 1732 10180 4 +UH 0 30 l 3201 10218 4 +UH 0 45 h 3209 10221 4 +UH 0 46 h 3003 10068 4 +PQ +SE +ID 2220 +TI 1760667400.317115545 +UH 0 64 h 1707 0 5 +BD GR Veto +PQ +SE +ID 2221 +TI 1760667400.317126035 +UH 0 40 l 1759 10688 4 +UH 0 47 l 1551 4994 0 +UH 0 26 l 1722 4852 0 +UH 0 64 l 3258 0 5 +UH 0 32 h 1597 4064 0 +UH 0 51 h 1776 10724 4 +UH 0 64 h 3229 0 5 +BD GR Veto +PQ +SE +ID 2222 +TI 1760667400.317202806 +UH 0 48 l 2107 11039 4 +UH 0 62 h 1718 4107 0 +UH 0 63 h 2076 10596 4 +PQ +SE +ID 2223 +TI 1760667400.317234992 +UH 0 8 l 1820 4888 0 +UH 0 9 l 1923 10680 4 +UH 0 27 h 1868 11474 4 +UH 0 28 h 1850 11300 4 +PQ +SE +ID 2224 +TI 1760667400.317273616 +UH 0 34 l 1587 5272 0 +UH 0 29 l 1726 3558 0 +UH 0 30 l 1950 9348 4 +UH 0 44 h 2046 9365 4 +PQ +SE +ID 2225 +TI 1760667400.317320585 +UH 0 39 l 2443 10510 4 +UH 0 40 l 2420 10553 4 +UH 0 51 l 3448 10828 4 +UH 0 52 l 1951 10851 4 +UH 0 25 h 2190 10900 4 +UH 0 26 h 3020 10964 4 +UH 0 29 h 3271 10951 4 +PQ +SE +ID 2226 +TI 1760667400.317390680 +UH 0 40 l 1570 5306 0 +UH 0 58 h 1619 4966 0 +PQ +SE +ID 2227 +TI 1760667400.317422151 +UH 0 29 l 2240 11026 4 +UH 0 38 h 2210 11215 4 +PQ +SE +ID 2228 +TI 1760667400.317454338 +UH 0 64 h 1700 0 5 +BD GR Veto +PQ +SE +ID 2229 +TI 1760667400.317464351 +UH 0 3 l 2469 10874 4 +UH 0 4 l 2012 11114 4 +UH 0 6 l 1871 10840 4 +UH 0 23 h 2482 11111 4 +UH 0 24 h 2257 11035 4 +PQ +SE +ID 2230 +TI 1760667400.317512035 +UH 0 64 l 2474 0 5 +UH 0 64 h 2516 0 5 +BD GR Veto +PQ +SE +ID 2231 +TI 1760667400.317527294 +UH 0 53 l 1668 5343 0 +UH 0 54 l 1788 11162 4 +UH 0 33 h 1913 10944 4 +PQ +SE +ID 2232 +TI 1760667400.317562580 +UH 0 40 l 2795 10351 4 +UH 0 41 l 1490 4667 0 +UH 0 4 h 2934 11448 4 +PQ +SE +ID 2233 +TI 1760667400.317598104 +UH 0 28 l 4777 9944 4 +UH 0 29 l 1656 9844 4 +UH 0 32 h 1553 3074 0 +UH 0 33 h 2277 9069 4 +UH 0 21 h 3778 9873 4 +PQ +SE +ID 2234 +TI 1760667400.317650794 +UH 0 3 l 1942 11039 4 +UH 0 36 h 1965 10890 4 +PQ +SE +ID 2235 +TI 1760667400.317681074 +UH 0 17 l 3161 10551 4 +UH 0 17 h 2628 11206 4 +UH 0 18 h 2002 11101 4 +PQ +SE +ID 2236 +TI 1760667400.317717075 +UH 0 1 l 2127 11231 4 +UH 0 38 h 2119 11027 4 +PQ +SE +ID 2237 +TI 1760667400.317748785 +UH 0 1 l 1839 11410 4 +UH 0 12 h 1749 11009 4 +PQ +SE +ID 2238 +TI 1760667400.317780256 +UH 0 64 l 2061 0 5 +UH 0 64 h 2127 0 5 +BD GR Veto +PQ +SE +ID 2239 +TI 1760667400.337332487 +UH 0 61 l 2043 9003 4 +UH 0 62 l 5228 9063 4 +UH 0 17 h 2766 9020 4 +UH 0 18 h 4309 8859 4 +UH 0 64 h 1666 0 5 +BD GR Veto +PQ +SE +ID 2240 +TI 1760667400.337457895 +UH 0 4 l 1660 4755 0 +UH 0 10 l 1680 4870 0 +UH 0 12 l 3804 10201 4 +UH 0 14 h 1571 3584 0 +UH 0 22 h 1718 4492 0 +UH 0 28 h 1902 10978 4 +UH 0 29 h 3330 11101 4 +PQ +SE +ID 2241 +TI 1760667400.337515830 +UH 0 60 l 3857 8490 4 +UH 0 61 l 1639 5257 0 +UH 0 54 h 2843 9377 4 +UH 0 55 h 2639 9009 4 +PQ +SE +ID 2242 +TI 1760667400.337550163 +UH 0 64 l 1988 0 5 +UH 0 64 h 3165 0 5 +BD GR Veto +PQ +SE +ID 2243 +TI 1760667400.337559223 +UH 0 31 l 2622 11095 4 +UH 0 45 h 2568 11082 4 +PQ +SE +ID 2244 +TI 1760667400.337578773 +UH 0 50 l 2544 10752 4 +UH 0 34 h 2394 10431 4 +UH 0 35 h 1593 4071 0 +PQ +SE +ID 2245 +TI 1760667400.337600469 +UH 0 48 l 4163 10101 4 +UH 0 49 l 1588 10186 4 +UH 0 42 h 4329 10173 4 +PQ +SE +ID 2246 +TI 1760667400.337621688 +UH 0 4 l 2328 11204 4 +UH 0 58 h 1715 10417 4 +UH 0 59 h 2073 10557 4 +PQ +SE +ID 2247 +TI 1760667400.337643146 +UH 0 44 l 1919 10384 4 +UH 0 45 l 2593 10296 4 +UH 0 21 h 2550 11362 4 +UH 0 22 h 2133 11029 4 +PQ +SE +ID 2248 +TI 1760667400.337666988 +UH 0 64 l 2156 0 5 +UH 0 64 h 2209 0 5 +BD GR Veto +PQ +SE +ID 2249 +TI 1760667400.337675571 +UH 0 25 l 3935 11133 4 +UH 0 27 l 1807 10881 4 +UH 0 52 h 1762 4350 0 +UH 0 63 h 3844 10675 4 +PQ +SE +ID 2250 +TI 1760667400.337704896 +UH 0 25 h 1520 5594 0 +PQ +SE +ID 2251 +TI 1760667400.337716341 +UH 0 13 l 3348 10950 4 +UH 0 54 h 3280 10837 4 +PQ +SE +ID 2252 +TI 1760667400.337734699 +UH 0 11 l 1794 4639 0 +UH 0 12 l 2604 10465 4 +UH 0 45 h 2554 11210 4 +PQ +SE +ID 2253 +TI 1760667400.337755680 +UH 0 42 l 2016 8977 4 +UH 0 43 l 3817 9135 4 +UH 0 44 l 1512 8936 4 +UH 0 3 h 1647 9081 4 +UH 0 4 h 4307 9392 4 +PQ +SE +ID 2254 +TI 1760667400.337781429 +UH 0 35 l 1842 10974 4 +UH 0 6 h 1844 10881 4 +PQ +SE +ID 2255 +TI 1760667400.337798833 +UH 0 24 l 4576 8736 4 +UH 0 25 l 1656 9029 4 +UH 0 4 h 4439 9471 4 +PQ +SE +ID 2256 +TI 1760667400.337819099 +UH 0 39 l 2856 10355 4 +UH 0 40 l 3051 10391 4 +UH 0 41 l 2399 10649 4 +UH 0 42 l 1826 10705 4 +UH 0 4 h 2962 11325 4 +UH 0 5 h 4148 11197 4 +PQ +SE +ID 2257 +TI 1760667400.337850570 +UH 0 2 l 2283 11068 4 +UH 0 20 h 2233 10893 4 +PQ +SE +ID 2258 +TI 1760667400.337868213 +UH 0 6 l 2054 11200 4 +UH 0 56 h 2055 10716 4 +PQ +SE +ID 2259 +TI 1760667400.337885856 +UH 0 23 l 2094 10892 4 +UH 0 24 l 3769 10919 4 +UH 0 61 h 3529 10710 4 +UH 0 62 h 2179 10587 4 +PQ +SE +ID 2260 +TI 1760667400.337908267 +UH 0 47 l 3045 10801 4 +UH 0 61 l 1666 2002 0 +UH 0 62 l 1630 2191 0 +UH 0 63 l 1588 2266 0 +UH 0 49 h 3101 10621 4 +PQ +SE +ID 2261 +TI 1760667400.337937831 +UH 0 57 l 1798 10647 4 +UH 0 22 h 1933 11312 4 +PQ +SE +ID 2262 +TI 1760667400.337956666 +UH 0 12 l 1995 10641 4 +UH 0 28 h 1944 10990 4 +PQ +SE +ID 2263 +TI 1760667400.337974786 +UH 0 9 l 1929 10396 4 +UH 0 12 l 4491 10431 4 +UH 0 64 l 2411 0 5 +UH 0 40 h 4347 10408 4 +UH 0 48 h 1887 10844 4 +UH 0 64 h 2402 0 5 +BD GR Veto +PQ +SE +ID 2264 +TI 1760667400.338012456 +UH 0 64 l 3391 0 5 +UH 0 64 h 3300 0 5 +BD GR Veto +PQ +SE +ID 2265 +TI 1760667400.338021278 +UH 0 51 l 1629 5401 0 +UH 0 52 l 1604 8201 4 +UH 0 53 l 3622 8001 4 +UH 0 54 l 3507 8206 4 +UH 0 55 l 1507 8139 4 +UH 0 56 l 1554 5432 0 +UH 0 30 h 5501 8912 4 +PQ +SE +ID 2266 +TI 1760667400.338051319 +UH 0 12 l 2916 10436 4 +UH 0 19 h 2740 11355 4 +PQ +SE +ID 2267 +TI 1760667400.338068723 +UH 0 63 l 2782 9092 4 +UH 0 64 l 1645 0 5 +UH 0 56 h 2780 9699 4 +UH 0 64 h 1719 0 5 +BD GR Veto +PQ +SE +ID 2268 +TI 1760667400.338088989 +UH 0 51 l 1664 10322 4 +UH 0 52 l 2975 10161 4 +UH 0 47 h 1688 3953 0 +UH 0 48 h 2990 10542 4 +PQ +SE +ID 2269 +TI 1760667400.338125705 +UH 0 50 l 2261 10758 4 +UH 0 51 l 2312 10855 4 +UH 0 41 h 1813 11304 4 +UH 0 42 h 2058 10831 4 +UH 0 43 h 1598 11167 4 +UH 0 44 h 2150 10918 4 +PQ +SE +ID 2270 +TI 1760667400.338154554 +UH 0 0 l 2407 10879 4 +UH 0 64 l 2183 0 5 +UH 0 40 h 1780 10715 4 +UH 0 41 h 2797 10940 4 +BD GR Veto +PQ +SE +ID 2271 +TI 1760667400.338174581 +UH 0 49 l 4245 8796 4 +UH 0 50 l 1582 8833 4 +UH 0 8 h 4197 9702 4 +PQ +SE +ID 2272 +TI 1760667400.338194370 +UH 0 38 l 1679 10584 4 +UH 0 39 l 2276 10416 4 +UH 0 43 l 2959 10230 4 +UH 0 3 h 1654 10421 4 +UH 0 4 h 2432 10841 4 +UH 0 17 h 2895 10935 4 +PQ +SE +ID 2273 +TI 1760667400.338232517 +UH 0 11 l 2220 10504 4 +UH 0 21 h 2044 11442 4 +UH 0 22 h 1667 4723 0 +PQ +SE +ID 2274 +TI 1760667400.338252067 +UH 0 64 l 2377 0 5 +UH 0 64 h 2396 0 5 +BD GR Veto +PQ +SE +ID 2275 +TI 1760667400.338260173 +UH 0 30 l 2703 11030 4 +UH 0 31 l 1791 11011 4 +UH 0 59 h 2528 11019 4 +UH 0 60 h 1885 10758 4 +PQ +SE +ID 2276 +TI 1760667400.338283061 +UH 0 46 l 1504 8911 4 +UH 0 47 l 4452 8887 4 +UH 0 48 l 1541 9112 4 +UH 0 58 l 1640 1248 0 +UH 0 59 l 1648 1521 0 +UH 0 60 l 1688 1352 0 +UH 0 61 l 1768 1533 0 +UH 0 62 l 1765 1543 0 +UH 0 63 l 1768 1339 0 +UH 0 24 h 1590 9281 4 +UH 0 25 h 4273 9413 4 +PQ +SE +ID 2277 +TI 1760667400.338323593 +UH 0 17 l 1602 5007 0 +UH 0 30 l 1804 5508 0 +UH 0 62 h 1689 4507 0 +UH 0 63 h 1811 11047 4 +PQ +SE +ID 2278 +TI 1760667400.338349819 +UH 0 32 l 2499 10977 4 +UH 0 29 l 1893 5142 0 +UH 0 37 h 2472 11053 4 +UH 0 31 h 1809 10858 4 +PQ +SE +ID 2279 +TI 1760667400.338382244 +UH 0 32 l 1865 10603 4 +UH 0 11 l 3150 10252 4 +UH 0 35 h 3029 11047 4 +UH 0 48 h 1829 11081 4 +PQ +SE +ID 2280 +TI 1760667400.338414430 +UH 0 64 l 2939 0 5 +UH 0 64 h 2923 0 5 +BD GR Veto +PQ +SE +ID 2281 +TI 1760667400.338423252 +UH 0 18 l 1649 5231 0 +UH 0 39 h 1717 5015 0 +PQ +SE +ID 2282 +TI 1760667400.338440656 +UH 0 2 l 1817 11269 4 +UH 0 21 h 1691 11307 4 +UH 0 22 h 1667 3990 0 +PQ +SE +ID 2283 +TI 1760667400.338460206 +UH 0 33 l 1610 9570 4 +UH 0 34 l 2997 9574 4 +UH 0 7 h 2855 10366 4 +UH 0 8 h 1839 10746 4 +PQ +SE +ID 2284 +TI 1760667400.338484048 +UH 0 2 l 2920 10934 4 +UH 0 6 h 1706 11248 4 +UH 0 7 h 2721 11101 4 +PQ +SE +ID 2285 +TI 1760667400.338503837 +UH 0 40 l 3821 10601 4 +UH 0 47 l 2257 10789 4 +UH 0 63 l 1532 1914 0 +UH 0 56 h 2017 10974 4 +UH 0 57 h 1841 11145 4 +UH 0 61 h 3905 11185 4 +PQ +SE +ID 2286 +TI 1760667400.338543176 +UH 0 50 l 1674 4984 0 +UH 0 51 l 1667 4990 0 +UH 0 2 h 1806 11755 4 +PQ +SE +ID 2287 +TI 1760667400.338562965 +UH 0 52 l 1624 3293 0 +UH 0 53 l 2010 8537 4 +UH 0 55 l 1582 8816 4 +UH 0 56 l 4110 8856 4 +UH 0 57 l 1538 8673 4 +UH 0 52 h 2066 9181 4 +UH 0 54 h 1990 9224 4 +UH 0 55 h 3886 8811 4 +PQ +SE +ID 2288 +TI 1760667400.338599920 +UH 0 13 l 2159 10758 4 +UH 0 14 l 2470 10667 4 +UH 0 62 h 3066 10979 4 +PQ +SE +ID 2289 +TI 1760667400.338621139 +UH 0 39 l 2086 10882 4 +UH 0 43 h 2038 10749 4 +PQ +SE +ID 2290 +TI 1760667400.338639497 +UH 0 3 l 2166 10811 4 +UH 0 4 h 2221 11568 4 +PQ +SE +ID 2291 +TI 1760667400.338657617 +UH 0 64 l 1864 0 5 +UH 0 64 h 1910 0 5 +BD GR Veto +PQ +SE +ID 2292 +TI 1760667400.338665723 +UH 0 32 l 2447 8272 4 +UH 0 33 l 3656 7952 4 +UH 0 34 l 1581 8210 4 +UH 0 2 h 4505 8915 4 +UH 0 3 h 2946 8679 4 +PQ +SE +ID 2293 +TI 1760667400.338687896 +UH 0 20 l 2423 10372 4 +UH 0 8 h 2293 11163 4 +UH 0 9 h 1598 5460 0 +PQ +SE +ID 2294 +TI 1760667400.338708400 +UH 0 15 l 1669 5175 0 +UH 0 16 l 2605 9900 4 +UH 0 17 l 1610 4061 0 +UH 0 51 h 2651 10308 4 +PQ +SE +ID 2295 +TI 1760667400.338731050 +UH 0 41 l 3063 10939 4 +UH 0 44 l 1981 10372 4 +UH 0 16 h 1901 11240 4 +UH 0 17 h 1639 11144 4 +UH 0 18 h 3194 10685 4 +PQ +SE +ID 2296 +TI 1760667400.338761568 +UH 0 20 l 2533 10740 4 +UH 0 61 h 2117 10812 4 +UH 0 62 h 1932 10657 4 +PQ +SE +ID 2297 +TI 1760667400.338783264 +UH 0 35 l 2168 10866 4 +UH 0 28 h 2062 10968 4 +UH 0 29 h 1697 11208 4 +PQ +SE +ID 2298 +TI 1760667400.338803291 +UH 0 1 l 1883 10991 4 +UH 0 20 h 1852 11208 4 +PQ +SE +ID 2299 +TI 1760667400.338820457 +UH 0 2 l 3181 10556 4 +UH 0 3 l 1791 10518 4 +UH 0 4 l 2720 10751 4 +UH 0 9 l 2676 10290 4 +UH 0 38 h 2622 10508 4 +UH 0 39 h 2710 10257 4 +UH 0 40 h 2339 10313 4 +UH 0 42 h 1921 10285 4 +UH 0 43 h 2199 10494 4 +PQ +SE +ID 2300 +TI 1760667400.338862419 +UH 0 53 l 1678 5218 0 +UH 0 28 h 1734 5388 0 +PQ +SE +ID 2301 +TI 1760667400.338880300 +UH 0 14 l 3000 10898 4 +UH 0 15 l 2245 10859 4 +UH 0 30 l 1613 2437 0 +UH 0 31 l 1626 2460 0 +UH 0 45 h 3454 10805 4 +PQ +SE +ID 2302 +TI 1760667400.338907718 +UH 0 64 l 3933 0 5 +UH 0 64 h 4146 0 5 +BD GR Veto +PQ +SE +ID 2303 +TI 1760667400.359256505 +UH 0 11 l 2350 10525 4 +UH 0 61 h 2184 11267 4 +PQ +SE +ID 2304 +TI 1760667400.359308719 +UH 0 37 l 1669 5344 0 +UH 0 38 l 1656 5309 0 +UH 0 8 h 1827 11537 4 +PQ +SE +ID 2305 +TI 1760667400.359330892 +UH 0 50 l 1604 4561 0 +UH 0 51 l 3548 10832 4 +UH 0 40 h 1793 10157 4 +UH 0 41 h 3325 10380 4 +PQ +SE +ID 2306 +TI 1760667400.359356164 +UH 0 6 l 3412 10941 4 +UH 0 14 h 3136 11277 4 +UH 0 15 h 1779 11437 4 +PQ +SE +ID 2307 +TI 1760667400.359376192 +UH 0 27 l 2933 10764 4 +UH 0 56 h 2890 11042 4 +PQ +SE +ID 2308 +TI 1760667400.359394311 +UH 0 30 l 3213 11166 4 +UH 0 53 h 3131 10848 4 +UH 0 54 h 1555 11100 4 +PQ +SE +ID 2309 +TI 1760667400.359415769 +UH 0 37 l 1604 8746 4 +UH 0 38 l 4595 8550 4 +UH 0 39 l 1632 8597 4 +UH 0 33 h 2758 8630 4 +UH 0 34 h 3290 8708 4 +PQ +SE +ID 2310 +TI 1760667400.359442472 +UH 0 47 l 4304 10711 4 +UH 0 58 l 1568 2323 0 +UH 0 59 l 1628 1524 0 +UH 0 60 l 1602 2365 0 +UH 0 61 l 1693 2178 0 +UH 0 62 l 1698 2357 0 +UH 0 63 l 1683 2304 0 +UH 0 58 h 4116 10661 4 +UH 0 59 h 1683 10887 4 +PQ +SE +ID 2311 +TI 1760667400.359481096 +UH 0 19 l 1649 4828 0 +UH 0 22 l 2970 10603 4 +UH 0 22 h 1775 11189 4 +UH 0 23 h 2884 11172 4 +PQ +SE +ID 2312 +TI 1760667400.359519004 +UH 0 14 l 2325 10721 4 +UH 0 64 l 1816 0 5 +UH 0 63 h 2313 10944 4 +UH 0 64 h 1886 0 5 +BD GR Veto +PQ +SE +ID 2313 +TI 1760667400.359539747 +UH 0 13 l 1723 5025 0 +UH 0 19 h 1662 5627 0 +PQ +SE +ID 2314 +TI 1760667400.359558582 +UH 0 64 h 1670 0 5 +BD GR Veto +PQ +SE +ID 2315 +TI 1760667400.359564781 +UH 0 64 h 1673 0 5 +BD GR Veto +PQ +SE +ID 2316 +TI 1760667400.359571456 +UH 0 50 l 3374 10744 4 +UH 0 40 h 1710 10152 4 +UH 0 41 h 3233 10347 4 +PQ +SE +ID 2317 +TI 1760667400.359592199 +UH 0 0 l 2223 10948 4 +UH 0 64 l 2157 0 5 +UH 0 17 h 2702 11035 4 +BD GR Veto +PQ +SE +ID 2318 +TI 1760667400.359610319 +UH 0 13 l 1846 10695 4 +UH 0 14 l 2140 10636 4 +UH 0 58 h 2353 10950 4 +PQ +SE +ID 2319 +TI 1760667400.359630823 +UH 0 29 l 2110 10746 4 +UH 0 30 l 1982 11150 4 +UH 0 60 h 1941 10711 4 +UH 0 61 h 2017 11237 4 +PQ +SE +ID 2320 +TI 1760667400.359653234 +UH 0 63 l 1527 5213 0 +UH 0 64 l 4118 0 5 +UH 0 64 h 4010 0 5 +BD GR Veto +PQ +SE +ID 2321 +TI 1760667400.359666585 +UH 0 45 l 4430 9044 4 +UH 0 46 l 1686 9159 4 +UH 0 12 h 4616 9322 4 +UH 0 13 h 1590 9507 4 +PQ +SE +ID 2322 +TI 1760667400.359693288 +UH 0 8 l 1942 10903 4 +UH 0 9 l 2595 10867 4 +UH 0 54 h 2847 10960 4 +PQ +SE +ID 2323 +TI 1760667400.359713315 +UH 0 64 l 2000 0 5 +UH 0 64 h 2052 0 5 +BD GR Veto +PQ +SE +ID 2324 +TI 1760667400.359721899 +UH 0 45 l 3050 10546 4 +UH 0 46 l 1619 10651 4 +UH 0 63 h 3270 10927 4 +PQ +SE +ID 2325 +TI 1760667400.359739542 +UH 0 33 l 3007 10120 4 +UH 0 34 l 1646 5271 0 +UH 0 26 l 1762 5112 0 +UH 0 56 h 1829 10432 4 +UH 0 57 h 2813 10492 4 +UH 0 61 h 1649 4198 0 +PQ +SE +ID 2326 +TI 1760667400.359776735 +UH 0 27 l 1701 4813 0 +UH 0 28 l 1699 5419 0 +UH 0 47 h 1689 4587 0 +UH 0 48 h 1683 5408 0 +PQ +SE +ID 2327 +TI 1760667400.359797477 +UH 0 43 l 2470 10910 4 +UH 0 44 l 1888 10901 4 +UH 0 18 h 2990 11096 4 +PQ +SE +ID 2328 +TI 1760667400.359818220 +UH 0 64 h 1705 0 5 +BD GR Veto +PQ +SE +ID 2329 +TI 1760667400.359823942 +UH 0 64 l 2540 0 5 +UH 0 64 h 2564 0 5 +BD GR Veto +PQ +SE +ID 2330 +TI 1760667400.359832286 +UH 0 18 l 2848 10733 4 +UH 0 19 l 4338 10960 4 +UH 0 32 h 2636 10779 4 +UH 0 35 h 1618 3912 0 +UH 0 36 h 1857 10669 4 +UH 0 44 h 3128 10306 4 +UH 0 45 h 2407 10597 4 +PQ +SE +ID 2331 +TI 1760667400.359870910 +UH 0 64 h 2192 0 5 +BD GR Veto +PQ +SE +ID 2332 +TI 1760667400.359876632 +UH 0 17 l 1759 4713 0 +UH 0 18 l 1647 4278 0 +UH 0 2 h 1939 11503 4 +PQ +SE +ID 2333 +TI 1760667400.359897136 +UH 0 64 l 2914 0 5 +UH 0 64 h 2900 0 5 +BD GR Veto +PQ +SE +ID 2334 +TI 1760667400.359905958 +UH 0 32 l 1921 10714 4 +UH 0 26 l 1765 11280 4 +UH 0 27 l 2668 10673 4 +UH 0 31 l 2566 10768 4 +UH 0 28 h 2787 10790 4 +UH 0 30 h 2015 11405 4 +UH 0 31 h 2370 10738 4 +PQ +SE +ID 2335 +TI 1760667400.359943151 +UH 0 27 l 1650 9542 4 +UH 0 28 l 4306 9680 4 +UH 0 54 h 4205 10076 4 +PQ +SE +ID 2336 +TI 1760667400.359963417 +UH 0 9 l 1761 4576 0 +UH 0 1 h 1767 5492 0 +PQ +SE +ID 2337 +TI 1760667400.359981536 +UH 0 64 l 2115 0 5 +UH 0 64 h 2144 0 5 +BD GR Veto +PQ +SE +ID 2338 +TI 1760667400.359989643 +UH 0 15 l 1722 5181 0 +UH 0 8 h 1611 5344 0 +UH 0 9 h 1627 4959 0 +PQ +SE +ID 2339 +TI 1760667400.360009431 +UH 0 64 l 2591 0 5 +UH 0 64 h 2628 0 5 +BD GR Veto +PQ +SE +ID 2340 +TI 1760667400.360018014 +UH 0 33 l 2851 10277 4 +UH 0 15 h 2857 11451 4 +PQ +SE +ID 2341 +TI 1760667400.360036373 +UH 0 64 h 1839 0 5 +BD GR Veto +PQ +SE +ID 2342 +TI 1760667400.360042095 +UH 0 64 l 3855 0 5 +UH 0 64 h 3274 0 5 +BD GR Veto +PQ +SE +ID 2343 +TI 1760667400.360050678 +UH 0 2 l 1788 4867 0 +UH 0 24 h 1701 11756 4 +PQ +SE +ID 2344 +TI 1760667400.360068082 +UH 0 58 l 1946 10394 4 +UH 0 59 l 3063 10785 4 +UH 0 20 h 2779 10618 4 +UH 0 22 h 2054 10765 4 +UH 0 23 h 1774 10846 4 +PQ +SE +ID 2345 +TI 1760667400.360117435 +UH 0 15 l 3778 10734 4 +UH 0 26 l 1682 3196 0 +UH 0 27 l 1651 2247 0 +UH 0 28 l 1670 1753 0 +UH 0 29 l 1713 2544 0 +UH 0 30 l 1716 2318 0 +UH 0 31 l 1840 2297 0 +UH 0 28 h 3180 10930 4 +UH 0 29 h 2072 11189 4 +PQ +SE +ID 2346 +TI 1760667400.360154628 +UH 0 3 l 3093 10801 4 +UH 0 64 l 3992 0 5 +UH 0 7 h 3241 10909 4 +UH 0 64 h 3889 0 5 +BD GR Veto +PQ +SE +ID 2347 +TI 1760667400.360178947 +UH 0 33 l 1637 8225 4 +UH 0 34 l 6304 8285 4 +UH 0 35 l 12453 8368 4 +UH 0 36 l 15827 8122 4 +UH 0 37 l 12216 8441 4 +UH 0 38 l 16044 8467 4 +UH 0 39 l 14517 8375 4 +UH 0 40 l 13810 8459 4 +UH 0 41 l 12238 8644 4 +UH 0 42 l 15803 8618 4 +UH 0 43 l 11966 8707 4 +UH 0 44 l 16049 8443 4 +UH 0 45 l 1484 8142 4 +UH 0 46 l 1643 8161 4 +UH 0 47 l 1672 8292 4 +UH 0 48 l 1626 8401 4 +UH 0 49 l 1618 8370 4 +UH 0 50 l 1667 8277 4 +UH 0 51 l 1708 8365 4 +UH 0 52 l 1669 8313 4 +UH 0 53 l 1667 8258 4 +UH 0 64 l 15065 0 5 +UH 0 35 h 1598 8430 4 +UH 0 36 h 1650 8491 4 +UH 0 37 h 1644 8625 4 +UH 0 38 h 1681 8501 4 +UH 0 39 h 1728 8272 4 +UH 0 40 h 1739 8256 4 +UH 0 41 h 4809 8561 4 +UH 0 42 h 12506 8167 4 +UH 0 43 h 10672 8437 4 +UH 0 44 h 6236 7992 4 +UH 0 45 h 5679 8488 4 +UH 0 46 h 10224 8347 4 +UH 0 47 h 6445 8261 4 +UH 0 48 h 6266 8407 4 +UH 0 49 h 6891 8362 4 +UH 0 50 h 6595 8144 4 +UH 0 51 h 7371 8313 4 +UH 0 52 h 8254 8332 4 +UH 0 53 h 6631 8315 4 +UH 0 54 h 6673 8444 4 +UH 0 55 h 7564 8079 4 +UH 0 56 h 9116 8314 4 +UH 0 57 h 6385 8515 4 +UH 0 58 h 6536 8187 4 +UH 0 59 h 8956 8335 4 +UH 0 60 h 8059 8094 4 +UH 0 61 h 6849 8445 4 +UH 0 62 h 6138 8323 4 +UH 0 63 h 5832 8365 4 +UH 0 0 h 1667 8819 4 +UH 0 27 h 1632 8735 4 +UH 0 28 h 5588 8578 4 +UH 0 29 h 1851 8821 4 +UH 0 30 h 1576 9006 4 +UH 0 31 h 1574 8380 4 +UH 0 64 h 15231 0 5 +BD GR Veto +PQ +SE +ID 2348 +TI 1760667400.360425710 +UH 0 39 l 2689 8605 4 +UH 0 40 l 1884 8733 4 +UH 0 41 l 1505 8903 4 +UH 0 43 l 2311 8705 4 +UH 0 48 l 2251 8999 4 +UH 0 64 l 2324 0 5 +UH 0 0 h 4255 9011 4 +UH 0 1 h 2943 8924 4 +UH 0 64 h 1667 0 5 +BD GR Veto +PQ +SE +ID 2349 +TI 1760667400.360497236 +UH 0 28 l 1998 11532 4 +UH 0 52 h 1949 11023 4 +PQ +SE +ID 2350 +TI 1760667400.360526084 +UH 0 13 l 2522 11034 4 +UH 0 22 l 1918 5092 0 +UH 0 23 l 2219 10868 4 +UH 0 26 l 2102 11118 4 +UH 0 27 l 1690 4786 0 +UH 0 2 h 1894 11164 4 +UH 0 3 h 1646 3881 0 +UH 0 4 h 2145 11196 4 +UH 0 5 h 2162 11213 4 +UH 0 10 h 2475 11115 4 +PQ +SE +ID 2351 +TI 1760667400.360588550 +UH 0 9 l 2230 10351 4 +UH 0 30 h 2175 11485 4 +PQ +SE +ID 2352 +TI 1760667400.360618829 +UH 0 18 l 2931 10722 4 +UH 0 2 h 1658 11147 4 +UH 0 3 h 2929 10715 4 +PQ +SE +ID 2353 +TI 1760667400.360640287 +UH 0 20 l 2579 8777 4 +UH 0 23 l 4131 9295 4 +UH 0 24 l 1667 5329 0 +UH 0 32 h 1767 8943 4 +UH 0 33 h 1668 8589 4 +UH 0 34 h 3405 9091 4 +UH 0 27 h 2497 9535 4 +PQ +SE +ID 2354 +TI 1760667400.360681533 +UH 0 52 l 3361 8641 4 +UH 0 57 l 1539 8726 4 +UH 0 58 l 3822 8415 4 +UH 0 36 h 3736 8671 4 +UH 0 37 h 1686 8925 4 +UH 0 39 h 3377 8542 4 +PQ +SE +ID 2355 +TI 1760667400.360717773 +UH 0 11 l 2181 10598 4 +UH 0 12 l 2244 10482 4 +UH 0 41 h 2671 11460 4 +PQ +SE +ID 2356 +TI 1760667400.360738277 +UH 0 39 l 3954 9905 4 +UH 0 8 h 1599 10554 4 +UH 0 9 h 3613 10093 4 +UH 0 11 h 1906 10365 4 +PQ +SE +ID 2357 +TI 1760667400.360763549 +UH 0 57 l 2449 10727 4 +UH 0 58 l 2074 10569 4 +UH 0 5 h 2157 10892 4 +UH 0 6 h 2369 10877 4 +PQ +SE +ID 2358 +TI 1760667400.360787868 +UH 0 64 l 4818 0 5 +UH 0 64 h 4607 0 5 +BD GR Veto +PQ +SE +ID 2359 +TI 1760667400.360796451 +UH 0 64 l 5664 0 5 +UH 0 64 h 5435 0 5 +BD GR Veto +PQ +SE +ID 2360 +TI 1760667400.360805034 +UH 0 59 l 2031 10650 4 +UH 0 52 h 1982 11260 4 +UH 0 53 h 1605 3839 0 +PQ +SE +ID 2361 +TI 1760667400.360825538 +UH 0 50 l 3705 10709 4 +UH 0 61 l 3552 10354 4 +UH 0 21 l 1742 1579 0 +UH 0 12 h 3407 10798 4 +UH 0 13 h 2391 10991 4 +UH 0 14 h 2800 11161 4 +UH 0 30 h 1815 5128 4 +PQ +SE +ID 2362 +TI 1760667400.360871791 +UH 0 64 l 2709 0 5 +UH 0 8 h 2266 11753 4 +UH 0 64 h 2053 0 5 +BD GR Veto +PQ +SE +ID 2363 +TI 1760667400.360888004 +UH 0 3 l 1591 2923 0 +UH 0 4 l 2942 9268 4 +UH 0 6 l 1607 9473 4 +UH 0 7 l 4163 9229 4 +UH 0 58 h 4963 9134 4 +UH 0 59 h 2067 9358 4 +PQ +SE +ID 2364 +TI 1760667400.360917806 +UH 0 64 l 1831 0 5 +UH 0 64 h 1868 0 5 +BD GR Veto +PQ +SE +ID 2365 +TI 1760667400.360925912 +UH 0 9 l 3360 10844 4 +UH 0 28 h 3165 10937 4 +UH 0 29 h 1708 11232 4 +PQ +SE +ID 2366 +TI 1760667400.360946416 +UH 0 38 l 1572 5294 0 +UH 0 44 h 1603 4617 0 +PQ +SE +ID 2367 +TI 1760667400.383686304 +UH 0 55 l 1920 10803 4 +UH 0 59 h 1970 11245 4 +PQ +SE +ID 2368 +TI 1760667400.383753776 +UH 0 33 l 2612 10510 4 +UH 0 47 h 2672 10904 4 +PQ +SE +ID 2369 +TI 1760667400.383773803 +UH 0 5 h 1585 5515 0 +PQ +SE +ID 2370 +TI 1760667400.383784294 +UH 0 64 l 2380 0 5 +UH 0 64 h 2698 0 5 +BD GR Veto +PQ +SE +ID 2371 +TI 1760667400.383794546 +UH 0 54 l 2155 10707 4 +UH 0 56 l 1575 5151 0 +UH 0 57 l 1755 4923 0 +UH 0 10 h 2536 11594 4 +PQ +SE +ID 2372 +TI 1760667400.383823394 +UH 0 46 l 1498 5254 0 +UH 0 47 l 3369 9324 4 +UH 0 50 l 1577 9238 4 +UH 0 51 l 3097 9426 4 +UH 0 52 l 2258 9096 4 +UH 0 60 l 1578 2062 0 +UH 0 61 l 1738 1538 0 +UH 0 62 l 1715 1544 0 +UH 0 63 l 1675 1349 0 +UH 0 11 h 3506 9587 4 +UH 0 12 h 2667 9445 4 +UH 0 13 h 2076 9613 4 +UH 0 14 h 1983 9704 4 +PQ +SE +ID 2373 +TI 1760667400.383886098 +UH 0 6 l 1850 10648 4 +UH 0 10 l 3103 10545 4 +UH 0 11 l 2417 10288 4 +UH 0 43 h 3750 11010 4 +UH 0 46 h 1835 10922 4 +PQ +SE +ID 2374 +TI 1760667400.383924961 +UH 0 43 l 2147 10883 4 +UH 0 44 l 3622 10620 4 +UH 0 39 h 4260 10823 4 +UH 0 40 h 1651 10931 4 +PQ +SE +ID 2375 +TI 1760667400.383949518 +UH 0 64 l 1796 0 5 +UH 0 64 h 2367 0 5 +BD GR Veto +PQ +SE +ID 2376 +TI 1760667400.383958816 +UH 0 63 l 4049 10875 4 +UH 0 44 h 4088 10747 4 +PQ +SE +ID 2377 +TI 1760667400.383976697 +UH 0 39 l 2479 10759 4 +UH 0 56 h 1908 10634 4 +UH 0 57 h 2094 10744 4 +PQ +SE +ID 2378 +TI 1760667400.383999347 +UH 0 22 l 2491 10566 4 +UH 0 23 l 2654 10543 4 +UH 0 20 h 2468 11084 4 +UH 0 21 h 2515 11385 4 +PQ +SE +ID 2379 +TI 1760667400.384024858 +UH 0 64 h 1830 0 5 +BD GR Veto +PQ +SE +ID 2380 +TI 1760667400.384031057 +UH 0 1 l 1831 5500 0 +UH 0 44 h 1815 10972 4 +PQ +SE +ID 2381 +TI 1760667400.384050607 +UH 0 8 l 2638 10463 4 +UH 0 9 l 3353 10474 4 +UH 0 55 h 2033 10715 4 +UH 0 56 h 3951 11009 4 +PQ +SE +ID 2382 +TI 1760667400.384074926 +UH 0 0 l 2084 10852 4 +UH 0 5 l 1670 3902 0 +UH 0 9 l 1753 4617 0 +UH 0 64 l 2559 0 5 +UH 0 41 h 1828 11333 4 +UH 0 42 h 2661 10882 4 +UH 0 44 h 1630 4773 0 +UH 0 45 h 1622 4662 0 +UH 0 48 h 1605 5147 0 +UH 0 49 h 1718 11074 4 +BD GR Veto +PQ +SE +ID 2383 +TI 1760667400.384189844 +UH 0 62 l 1776 5275 0 +UH 0 40 h 1752 11251 4 +PQ +SE +ID 2384 +TI 1760667400.384211540 +UH 0 8 l 1664 9181 4 +UH 0 9 l 3870 9056 4 +UH 0 27 l 3394 9055 4 +UH 0 9 h 3853 9894 4 +UH 0 19 h 2530 10059 4 +UH 0 20 h 2307 9752 4 +PQ +SE +ID 2385 +TI 1760667400.384251832 +UH 0 64 h 2293 0 5 +BD GR Veto +PQ +SE +ID 2386 +TI 1760667400.384258985 +UH 0 0 l 2394 10950 4 +UH 0 2 l 1862 10979 4 +UH 0 3 l 2294 10801 4 +UH 0 56 h 2335 10744 4 +UH 0 57 h 2628 10934 4 +PQ +SE +ID 2387 +TI 1760667400.384285449 +UH 0 38 l 3253 10826 4 +UH 0 57 h 3289 10509 4 +PQ +SE +ID 2388 +TI 1760667400.384303569 +UH 0 0 l 2517 10725 4 +UH 0 55 h 2592 10966 4 +PQ +SE +ID 2389 +TI 1760667400.384320974 +UH 0 64 l 5473 0 5 +UH 0 64 h 5371 0 5 +BD GR Veto +PQ +SE +ID 2390 +TI 1760667400.384330272 +UH 0 2 l 1782 5375 0 +UH 0 25 h 1542 4398 0 +UH 0 26 h 1671 5195 0 +PQ +SE +ID 2391 +TI 1760667400.384351968 +UH 0 37 l 1729 4475 0 +UH 0 16 h 1716 5715 0 +PQ +SE +ID 2392 +TI 1760667400.384371519 +UH 0 14 l 4228 10791 4 +UH 0 15 l 2666 10722 4 +UH 0 16 l 1892 10690 4 +UH 0 27 l 1632 1799 0 +UH 0 30 l 1632 2344 0 +UH 0 31 l 1670 2286 0 +UH 0 47 h 1967 10336 4 +UH 0 48 h 5249 10359 4 +UH 0 49 h 1670 10445 4 +PQ +SE +ID 2393 +TI 1760667400.384417057 +UH 0 22 l 1634 8721 4 +UH 0 23 l 5746 8591 4 +UH 0 24 l 1693 8855 4 +UH 0 57 h 2850 9008 4 +UH 0 60 h 4263 8456 4 +PQ +SE +ID 2394 +TI 1760667400.384450674 +UH 0 11 l 3421 10177 4 +UH 0 56 h 3274 11070 4 +PQ +SE +ID 2395 +TI 1760667400.384472131 +UH 0 4 l 2083 11089 4 +UH 0 10 l 2111 10984 4 +UH 0 11 l 3243 10600 4 +UH 0 16 h 1619 5560 0 +UH 0 17 h 1913 10995 4 +UH 0 18 h 2247 10772 4 +UH 0 19 h 2890 10991 4 +PQ +SE +ID 2396 +TI 1760667400.384514331 +UH 0 11 l 2954 10670 4 +UH 0 13 l 1902 10969 4 +UH 0 19 l 2616 10703 4 +UH 0 39 h 2845 10411 4 +UH 0 46 h 1825 10639 4 +UH 0 47 h 1837 10864 4 +UH 0 48 h 2401 10906 4 +PQ +SE +ID 2397 +TI 1760667400.384561061 +UH 0 2 l 1732 4687 0 +UH 0 6 l 2631 10824 4 +UH 0 64 l 1662 0 5 +UH 0 48 h 1624 10549 4 +UH 0 49 h 2691 10413 4 +UH 0 64 h 1667 0 5 +BD GR Veto +PQ +SE +ID 2398 +TI 1760667400.384594678 +UH 0 15 l 2489 10407 4 +UH 0 20 l 1727 4130 0 +UH 0 26 l 2912 11326 4 +UH 0 30 l 1618 2105 0 +UH 0 31 l 1655 1584 0 +UH 0 6 h 2305 11214 4 +UH 0 7 h 2950 11405 4 +UH 0 8 h 1680 5757 0 +PQ +SE +ID 2399 +TI 1760667400.384639501 +UH 0 18 l 1742 4915 0 +UH 0 52 h 1736 5398 0 +PQ +SE +ID 2400 +TI 1760667400.384661436 +UH 0 58 l 2282 10578 4 +UH 0 59 l 3466 10574 4 +UH 0 11 h 2355 11192 4 +UH 0 17 h 3300 11134 4 +PQ +SE +ID 2401 +TI 1760667400.384690284 +UH 0 3 l 1668 4992 0 +UH 0 4 l 2159 11142 4 +UH 0 5 l 2218 10882 4 +UH 0 64 l 2022 0 5 +UH 0 40 h 2109 10610 4 +UH 0 41 h 2343 10833 4 +UH 0 64 h 2066 0 5 +BD GR Veto +PQ +SE +ID 2402 +TI 1760667400.384737730 +UH 0 37 l 1814 5335 0 +UH 0 45 h 1759 11302 4 +PQ +SE +ID 2403 +TI 1760667400.384766101 +UH 0 0 l 1608 5233 0 +UH 0 12 l 2025 8350 4 +UH 0 15 l 2318 8397 4 +UH 0 31 l 1687 1589 0 +UH 0 64 l 3639 0 5 +UH 0 32 h 2199 8950 4 +UH 0 24 h 3545 9094 4 +UH 0 30 h 1915 9279 4 +BD GR Veto +PQ +SE +ID 2404 +TI 1760667400.384820222 +UH 0 46 l 2330 10826 4 +UH 0 58 h 2385 10909 4 +PQ +SE +ID 2405 +TI 1760667400.384838581 +UH 0 43 l 2446 10971 4 +UH 0 44 l 2100 10813 4 +UH 0 52 h 3123 11014 4 +PQ +SE +ID 2406 +TI 1760667400.384860277 +UH 0 17 l 1590 8522 4 +UH 0 18 l 4277 8273 4 +UH 0 19 l 1622 8666 4 +UH 0 37 h 4309 9120 4 +PQ +SE +ID 2407 +TI 1760667400.384882450 +UH 0 64 l 1925 0 5 +UH 0 64 h 1978 0 5 +BD GR Veto +PQ +SE +ID 2408 +TI 1760667400.384891748 +UH 0 64 l 3325 0 5 +UH 0 64 h 3258 0 5 +BD GR Veto +PQ +SE +ID 2409 +TI 1760667400.384900093 +UH 0 8 l 2864 10517 4 +UH 0 16 l 2457 10904 4 +UH 0 17 l 2129 10818 4 +UH 0 23 h 2463 10905 4 +UH 0 24 h 2102 10885 4 +UH 0 29 h 1793 5430 0 +UH 0 31 h 2513 10803 4 +PQ +SE +ID 2410 +TI 1760667400.384944677 +UH 0 44 l 1756 10549 4 +UH 0 64 l 2342 0 5 +UH 0 63 h 1847 10957 4 +UH 0 64 h 2403 0 5 +BD GR Veto +PQ +SE +ID 2411 +TI 1760667400.384968280 +UH 0 6 l 1725 5085 0 +UH 0 31 h 1691 11376 4 +PQ +SE +ID 2412 +TI 1760667400.384984970 +UH 0 37 l 1620 5320 0 +UH 0 38 l 2355 10246 4 +UH 0 42 l 2481 10575 4 +UH 0 9 h 2449 10775 4 +UH 0 17 h 2426 10989 4 +PQ +SE +ID 2413 +TI 1760667400.385022163 +UH 0 1 l 1648 9116 4 +UH 0 2 l 4427 8807 4 +UH 0 3 l 1580 5210 0 +UH 0 51 h 4324 9253 4 +PQ +SE +ID 2414 +TI 1760667400.385046958 +UH 0 23 l 4084 9628 4 +UH 0 64 l 1823 0 5 +UH 0 29 h 3837 9880 4 +UH 0 30 h 1563 10202 4 +UH 0 64 h 1928 0 5 +BD GR Veto +PQ +SE +ID 2415 +TI 1760667400.385075092 +UH 0 2 l 1701 5407 0 +UH 0 35 h 1668 5417 0 +PQ +SE +ID 2416 +TI 1760667400.385094642 +UH 0 61 l 2077 10742 4 +UH 0 62 l 3408 10785 4 +UH 0 11 h 3839 11217 4 +PQ +SE +ID 2417 +TI 1760667400.385117292 +UH 0 9 l 2104 11093 4 +UH 0 10 h 2003 11338 4 +PQ +SE +ID 2418 +TI 1760667400.385138750 +UH 0 26 l 3171 11404 4 +UH 0 45 h 2993 10561 4 +PQ +SE +ID 2419 +TI 1760667400.385158538 +UH 0 35 l 1904 11061 4 +UH 0 55 h 2050 11042 4 +PQ +SE +ID 2420 +TI 1760667400.385178089 +UH 0 26 l 2296 11378 4 +UH 0 47 h 2259 10537 4 +PQ +SE +ID 2421 +TI 1760667400.385197877 +UH 0 25 l 5784 9498 4 +UH 0 56 h 1607 9218 4 +UH 0 57 h 5523 9384 4 +UH 0 58 h 1602 8871 4 +PQ +SE +ID 2422 +TI 1760667400.385221004 +UH 0 31 l 2947 11142 4 +UH 0 33 h 2871 10060 4 +PQ +SE +ID 2423 +TI 1760667400.385240316 +UH 0 52 l 1610 4539 0 +UH 0 53 l 2191 10819 4 +UH 0 22 h 2294 10819 4 +PQ +SE +ID 2424 +TI 1760667400.385261774 +UH 0 56 h 1604 5311 0 +PQ +SE +ID 2425 +TI 1760667400.385274171 +UH 0 1 l 2465 11226 4 +UH 0 44 h 2414 10707 4 +PQ +SE +ID 2426 +TI 1760667400.385292291 +UH 0 64 l 1883 0 5 +UH 0 64 h 2211 0 5 +BD GR Veto +PQ +SE +ID 2427 +TI 1760667400.385300397 +UH 0 8 l 2805 10726 4 +UH 0 22 h 2782 10981 4 +PQ +SE +ID 2428 +TI 1760667400.385319948 +UH 0 25 l 3374 10862 4 +UH 0 26 l 2682 11074 4 +UH 0 59 h 2723 11059 4 +UH 0 60 h 3103 10770 4 +PQ +SE +ID 2429 +TI 1760667400.385345458 +UH 0 57 l 1541 4393 0 +UH 0 58 l 2900 7680 4 +UH 0 61 l 1652 5282 0 +UH 0 62 l 1622 8183 4 +UH 0 63 l 4231 7889 4 +UH 0 64 l 1640 0 5 +UH 0 33 h 4139 8087 4 +UH 0 37 h 2928 8608 4 +BD GR Veto +PQ +SE +ID 2430 +TI 1760667400.385388135 +UH 0 55 l 2036 10849 4 +UH 0 58 l 2299 10242 4 +UH 0 32 h 2254 10966 4 +UH 0 31 h 2086 10585 4 +PQ +SE +ID 2431 +TI 1760667400.404367685 +UH 0 42 l 2150 11002 4 +UH 0 43 l 2181 10990 4 +UH 0 45 l 2208 10290 4 +UH 0 2 h 2304 11304 4 +UH 0 11 h 2866 10981 4 +PQ +SE +ID 2432 +TI 1760667400.404477119 +UH 0 63 l 1755 10964 4 +UH 0 64 l 2396 0 5 +UH 0 28 h 1766 11011 4 +UH 0 29 h 2510 11149 4 +BD GR Veto +PQ +SE +ID 2433 +TI 1760667400.404524564 +UH 0 3 l 2076 10397 4 +UH 0 4 l 2050 10692 4 +UH 0 5 l 2332 10485 4 +UH 0 9 h 2381 11255 4 +UH 0 14 h 2463 11446 4 +PQ +SE +ID 2434 +TI 1760667400.404587984 +UH 0 64 l 1820 0 5 +UH 0 64 h 1877 0 5 +BD GR Veto +PQ +SE +ID 2435 +TI 1760667400.404603958 +UH 0 25 l 3184 11169 4 +UH 0 58 h 3064 10583 4 +PQ +SE +ID 2436 +TI 1760667400.404643297 +UH 0 47 l 1593 5372 0 +UH 0 22 h 1721 5188 0 +PQ +SE +ID 2437 +TI 1760667400.404683113 +UH 0 28 l 2156 11020 4 +UH 0 35 h 2117 11254 4 +PQ +SE +ID 2438 +TI 1760667400.404718160 +UH 0 8 l 2174 10809 4 +UH 0 9 l 1775 10921 4 +UH 0 64 l 1985 0 5 +UH 0 0 h 2319 11302 4 +UH 0 64 h 2017 0 5 +BD GR Veto +PQ +SE +ID 2439 +TI 1760667400.404762506 +UH 0 0 l 1655 11085 4 +UH 0 64 l 2678 0 5 +UH 0 32 h 2167 10983 4 +UH 0 31 h 2061 10899 4 +BD GR Veto +PQ +SE +ID 2440 +TI 1760667400.404808282 +UH 0 10 l 4157 9584 4 +UH 0 30 h 3994 10175 4 +UH 0 31 h 1566 9653 4 +PQ +SE +ID 2441 +TI 1760667400.404843091 +UH 0 22 l 2733 10886 4 +UH 0 27 l 2549 10570 4 +UH 0 38 h 2743 10579 4 +UH 0 40 h 2486 10592 4 +UH 0 41 h 1595 5081 0 +PQ +SE +ID 2442 +TI 1760667400.404906988 +UH 0 48 l 2493 10860 4 +UH 0 49 l 2235 10805 4 +UH 0 52 h 2312 11183 4 +UH 0 53 h 2536 11029 4 +PQ +SE +ID 2443 +TI 1760667400.404951572 +UH 0 33 l 1595 8522 4 +UH 0 34 l 4350 8506 4 +UH 0 35 l 1556 8833 4 +UH 0 30 l 2843 8658 4 +UH 0 33 h 3919 8433 4 +UH 0 41 h 2878 9014 4 +UH 0 31 h 1778 8794 4 +PQ +SE +ID 2444 +TI 1760667400.405038356 +UH 0 37 l 3230 10865 4 +UH 0 61 h 2442 10842 4 +UH 0 62 h 2376 10670 4 +PQ +SE +ID 2445 +TI 1760667400.405076503 +UH 0 4 l 2693 10016 4 +UH 0 5 l 1629 5231 0 +UH 0 50 h 2771 10172 4 +PQ +SE +ID 2446 +TI 1760667400.405115365 +UH 0 55 l 1722 5381 0 +UH 0 49 h 1794 11267 4 +PQ +SE +ID 2447 +TI 1760667400.405152797 +UH 0 32 l 1681 5167 0 +UH 0 26 l 2317 11203 4 +UH 0 10 h 1656 4939 0 +UH 0 14 h 2218 11404 4 +PQ +SE +ID 2448 +TI 1760667400.405215263 +UH 0 56 l 1819 11238 4 +UH 0 57 l 1886 10904 4 +UH 0 11 h 1758 11300 4 +UH 0 12 h 2014 11133 4 +PQ +SE +ID 2449 +TI 1760667400.405257701 +UH 0 0 l 1733 5199 0 +UH 0 43 h 1697 5234 0 +PQ +SE +ID 2450 +TI 1760667400.405287265 +UH 0 64 l 2023 0 5 +UH 0 64 h 2101 0 5 +BD GR Veto +PQ +SE +ID 2451 +TI 1760667400.405302524 +UH 0 27 l 2526 10616 4 +UH 0 29 h 1734 5471 0 +UH 0 30 h 2280 11496 4 +PQ +SE +ID 2452 +TI 1760667400.405340671 +UH 0 24 l 2609 10822 4 +UH 0 26 l 1928 11227 4 +UH 0 28 l 1774 4621 0 +UH 0 26 h 1741 11516 4 +UH 0 27 h 2789 11193 4 +PQ +SE +ID 2453 +TI 1760667400.405391454 +UH 0 25 l 2098 11236 4 +UH 0 26 l 2003 11400 4 +UH 0 27 l 1845 4956 0 +UH 0 37 h 1676 4758 0 +UH 0 38 h 2320 10753 4 +UH 0 39 h 1882 10573 4 +PQ +SE +ID 2454 +TI 1760667400.405419588 +UH 0 3 l 1598 8669 4 +UH 0 4 l 4814 8727 4 +UH 0 5 l 1653 8884 4 +UH 0 64 l 2362 0 5 +UH 0 57 h 2767 9078 4 +UH 0 58 h 2251 8773 4 +UH 0 59 h 2782 8903 4 +UH 0 64 h 2418 0 5 +BD GR Veto +PQ +SE +ID 2455 +TI 1760667400.405451297 +UH 0 22 l 3073 10820 4 +UH 0 32 h 2853 10659 4 +UH 0 31 h 1625 10640 4 +PQ +SE +ID 2456 +TI 1760667400.405471324 +UH 0 2 l 3176 10824 4 +UH 0 6 h 3124 11258 4 +PQ +SE +ID 2457 +TI 1760667400.405489444 +UH 0 2 l 1780 4792 0 +UH 0 3 l 1880 10579 4 +UH 0 27 h 2114 11376 4 +PQ +SE +ID 2458 +TI 1760667400.405510187 +UH 0 60 l 2095 9222 4 +UH 0 61 l 1729 9682 4 +UH 0 62 l 3389 9729 4 +UH 0 63 l 2299 9853 4 +UH 0 64 l 2183 0 5 +UH 0 44 h 1755 9880 4 +UH 0 45 h 3820 10075 4 +UH 0 47 h 2253 9911 4 +UH 0 64 h 2222 0 5 +BD GR Veto +PQ +SE +ID 2459 +TI 1760667400.405544042 +UH 0 18 l 2293 10342 4 +UH 0 21 l 3685 11000 4 +UH 0 47 h 1683 10770 4 +UH 0 48 h 4425 10643 4 +PQ +SE +ID 2460 +TI 1760667400.405577659 +UH 0 13 l 4407 10321 4 +UH 0 15 h 2544 11307 4 +UH 0 16 h 3298 11267 4 +PQ +SE +ID 2461 +TI 1760667400.405598402 +UH 0 33 l 2961 10563 4 +UH 0 17 h 2571 10828 4 +UH 0 18 h 1857 10741 4 +PQ +SE +ID 2462 +TI 1760667400.405625104 +UH 0 11 l 2573 10164 4 +UH 0 14 l 2552 10693 4 +UH 0 10 h 2448 11559 4 +UH 0 13 h 2494 11201 4 +PQ +SE +ID 2463 +TI 1760667400.405657768 +UH 0 64 l 2287 0 5 +UH 0 64 h 2319 0 5 +BD GR Veto +PQ +SE +ID 2464 +TI 1760667400.405666589 +UH 0 59 l 1589 5293 0 +UH 0 60 l 2136 10441 4 +UH 0 62 l 1777 5022 0 +UH 0 48 h 2064 11078 4 +UH 0 50 h 1959 10953 4 +PQ +SE +ID 2465 +TI 1760667400.405696630 +UH 0 6 h 1552 5492 0 +PQ +SE +ID 2466 +TI 1760667400.405707597 +UH 0 46 l 3669 9333 4 +UH 0 49 l 1768 9379 4 +UH 0 50 l 3098 9212 4 +UH 0 53 h 3724 9126 4 +UH 0 54 h 1558 9371 4 +UH 0 63 h 2695 9270 4 +UH 0 64 h 2280 0 5 +BD GR Veto +PQ +SE +ID 2467 +TI 1760667400.405746459 +UH 0 18 l 2963 10481 4 +UH 0 19 l 1693 10857 4 +UH 0 22 l 4109 10789 4 +UH 0 36 h 2916 10384 4 +UH 0 37 h 2725 10572 4 +UH 0 42 h 3093 10250 4 +PQ +SE +ID 2468 +TI 1760667400.405782699 +UH 0 57 l 1531 5218 0 +PQ +SE +ID 2469 +TI 1760667400.405793190 +UH 0 21 l 3506 10584 4 +UH 0 22 l 1868 10434 4 +UH 0 15 h 3697 11268 4 +PQ +SE +ID 2470 +TI 1760667400.405813217 +UH 0 63 l 2969 10717 4 +UH 0 54 h 2946 10435 4 +PQ +SE +ID 2471 +TI 1760667400.405828714 +UH 0 55 l 1630 5346 0 +UH 0 25 h 1629 5339 0 +PQ +SE +ID 2472 +TI 1760667400.405846357 +UH 0 64 h 2220 0 5 +BD GR Veto +PQ +SE +ID 2473 +TI 1760667400.405851840 +UH 0 60 l 2337 10484 4 +UH 0 64 l 2029 0 5 +UH 0 64 h 2813 0 5 +BD GR Veto +PQ +SE +ID 2474 +TI 1760667400.405867576 +UH 0 64 l 3286 0 5 +UH 0 64 h 3199 0 5 +BD GR Veto +PQ +SE +ID 2475 +TI 1760667400.405875682 +UH 0 49 l 1576 5417 0 +UH 0 56 h 1659 4662 0 +PQ +SE +ID 2476 +TI 1760667400.405893325 +UH 0 42 l 1759 5330 0 +UH 0 43 l 1633 5444 0 +UH 0 35 h 1809 11143 4 +UH 0 36 h 1680 4583 0 +PQ +SE +ID 2477 +TI 1760667400.405915975 +UH 0 55 l 2244 10615 4 +UH 0 56 l 2846 10795 4 +UH 0 48 h 3781 10920 4 +PQ +SE +ID 2478 +TI 1760667400.405935764 +UH 0 50 l 1657 4994 0 +UH 0 51 l 1663 4690 0 +UH 0 10 h 1730 11767 4 +PQ +SE +ID 2479 +TI 1760667400.405956268 +UH 0 0 l 2951 10842 4 +UH 0 40 h 2946 10969 4 +PQ +SE +ID 2480 +TI 1760667400.405971765 +UH 0 38 l 2499 10917 4 +UH 0 9 h 2364 10870 4 +UH 0 10 h 1709 11164 4 +PQ +SE +ID 2481 +TI 1760667400.405991077 +UH 0 64 l 3423 0 5 +UH 0 64 h 3396 0 5 +BD GR Veto +PQ +SE +ID 2482 +TI 1760667400.405998945 +UH 0 14 h 1568 5666 0 +PQ +SE +ID 2483 +TI 1760667400.406010389 +UH 0 59 l 1904 10821 4 +UH 0 63 l 2154 10503 4 +UH 0 64 l 1760 0 5 +UH 0 44 h 2283 10510 4 +UH 0 45 h 1685 10856 4 +UH 0 46 h 1911 10351 4 +BD GR Veto +PQ +SE +ID 2484 +TI 1760667400.406040668 +UH 0 35 l 1903 11026 4 +UH 0 36 l 1601 4945 0 +UH 0 47 h 2019 10473 4 +UH 0 28 h 1668 4845 0 +PQ +SE +ID 2485 +TI 1760667400.406068563 +UH 0 34 l 3496 10629 4 +UH 0 35 l 2090 10821 4 +UH 0 10 h 4043 10887 4 +PQ +SE +ID 2486 +TI 1760667400.406089544 +UH 0 64 l 3053 0 5 +UH 0 64 h 3009 0 5 +BD GR Veto +PQ +SE +ID 2487 +TI 1760667400.406101465 +UH 0 25 l 3557 10575 4 +UH 0 0 h 3458 11220 4 +PQ +SE +ID 2488 +TI 1760667400.406129121 +UH 0 38 l 2934 10895 4 +UH 0 3 h 3058 10851 4 +PQ +SE +ID 2489 +TI 1760667400.406147480 +UH 0 8 l 2305 10951 4 +UH 0 51 h 2184 11093 4 +PQ +SE +ID 2490 +TI 1760667400.406166315 +UH 0 47 l 3692 10604 4 +UH 0 52 l 2514 10685 4 +UH 0 58 l 1551 2150 0 +UH 0 59 l 1574 2420 0 +UH 0 60 l 1587 2133 0 +UH 0 61 l 1671 1797 0 +UH 0 62 l 1666 2287 0 +UH 0 63 l 1630 2208 0 +UH 0 4 h 1658 10958 4 +UH 0 5 h 3616 10673 4 +UH 0 9 h 2464 10518 4 +PQ +SE +ID 2491 +TI 1760667400.406218290 +UH 0 64 l 3199 0 5 +UH 0 0 h 3101 11189 4 +UH 0 64 h 1755 0 5 +BD GR Veto +PQ +SE +ID 2492 +TI 1760667400.406231880 +UH 0 43 l 3588 10954 4 +UH 0 54 h 1827 10469 4 +UH 0 55 h 3467 10028 4 +PQ +SE +ID 2493 +TI 1760667400.406252145 +UH 0 36 l 1663 10434 4 +UH 0 37 l 4658 10706 4 +UH 0 45 l 2378 10132 4 +UH 0 56 h 2431 10562 4 +UH 0 57 h 4010 10329 4 +UH 0 58 h 2228 9999 4 +PQ +SE +ID 2494 +TI 1760667400.406284332 +UH 0 39 l 2091 10823 4 +UH 0 40 h 2051 11132 4 +PQ +SE +ID 2495 +TI 1760667400.426321744 +UH 0 4 l 1752 5373 0 +UH 0 5 l 2399 11004 4 +UH 0 30 h 2512 11197 4 +PQ +SE +ID 2496 +TI 1760667400.426382064 +UH 0 47 l 1581 5028 0 +UH 0 61 l 4055 10607 4 +UH 0 38 h 1687 4369 0 +UH 0 15 h 2155 11124 4 +UH 0 16 h 3086 11041 4 +UH 0 22 h 1807 4292 0 +PQ +SE +ID 2497 +TI 1760667400.426425695 +UH 0 20 l 2355 10567 4 +UH 0 47 h 2334 11063 4 +PQ +SE +ID 2498 +TI 1760667400.426444530 +UH 0 52 l 2202 10532 4 +UH 0 53 l 1799 10541 4 +UH 0 54 l 1805 5134 0 +UH 0 16 h 2195 11433 4 +UH 0 18 h 2118 11179 4 +PQ +SE +ID 2499 +TI 1760667400.426470994 +UH 0 64 l 1760 0 5 +UH 0 64 h 2326 0 5 +BD GR Veto +PQ +SE +ID 2500 +TI 1760667400.426479578 +UH 0 17 l 1585 5259 0 +PQ +SE +ID 2501 +TI 1760667400.426490306 +UH 0 30 l 1809 11521 4 +UH 0 43 h 1650 4565 0 +UH 0 44 h 1662 4859 0 +PQ +SE +ID 2502 +TI 1760667400.426511049 +UH 0 10 l 4294 10754 4 +UH 0 11 l 1873 10535 4 +UH 0 37 h 3846 10956 4 +UH 0 38 h 2176 10899 4 +PQ +SE +ID 2503 +TI 1760667400.426533937 +UH 0 40 l 1968 10876 4 +UH 0 41 l 2129 11069 4 +UH 0 62 h 2087 10432 4 +UH 0 63 h 2263 10293 4 +PQ +SE +ID 2504 +TI 1760667400.426554441 +UH 0 37 l 1827 8582 4 +UH 0 38 l 4173 8426 4 +UH 0 39 l 1621 8452 4 +UH 0 7 h 3482 9074 4 +UH 0 8 h 2709 9429 4 +PQ +SE +ID 2505 +TI 1760667400.426580667 +UH 0 43 l 1621 5151 0 +UH 0 44 l 1896 10914 4 +UH 0 49 l 2138 10939 4 +UH 0 50 l 2346 10767 4 +UH 0 14 h 1705 11401 4 +UH 0 15 h 3279 11382 4 +UH 0 16 h 1650 11439 4 +PQ +SE +ID 2506 +TI 1760667400.426617622 +UH 0 22 l 4112 10771 4 +UH 0 64 l 1726 0 5 +UH 0 57 h 4059 10732 4 +UH 0 64 h 1772 0 5 +BD GR Veto +PQ +SE +ID 2507 +TI 1760667400.426640987 +UH 0 34 l 1580 8159 4 +UH 0 35 l 1558 8178 4 +UH 0 36 l 5634 7780 4 +UH 0 37 l 1603 8166 4 +UH 0 24 h 3244 8263 4 +UH 0 25 h 3706 8468 4 +PQ +SE +ID 2508 +TI 1760667400.426669359 +UH 0 60 l 1578 5079 0 +UH 0 61 l 2014 3474 0 +UH 0 62 l 2377 8989 4 +UH 0 63 l 4334 8732 4 +UH 0 64 l 1725 0 5 +UH 0 11 h 4425 9613 4 +UH 0 12 h 2721 9542 4 +BD GR Veto +PQ +SE +ID 2509 +TI 1760667400.426697015 +UH 0 52 l 2361 8853 4 +UH 0 54 l 2030 8670 4 +UH 0 57 l 1551 8657 4 +UH 0 58 l 3356 8670 4 +UH 0 59 l 1554 8912 4 +UH 0 60 l 2343 8502 4 +UH 0 32 h 2290 8754 4 +UH 0 14 h 2321 9127 4 +UH 0 16 h 3845 9370 4 +PQ +SE +ID 2510 +TI 1760667400.426752090 +UH 0 35 l 1554 8839 4 +UH 0 36 l 4215 8424 4 +UH 0 7 h 3697 9126 4 +UH 0 8 h 2157 9493 4 +PQ +SE +ID 2511 +TI 1760667400.426775693 +UH 0 46 l 2307 6767 4 +UH 0 0 l 2488 10977 4 +UH 0 32 h 2445 10728 4 +UH 0 0 h 2361 7638 4 +UH 0 30 h 1916 11220 4 +UH 0 64 h 1714 0 5 +BD GR Veto +PQ +SE +ID 2512 +TI 1760667400.426811933 +UH 0 42 l 5613 9250 4 +UH 0 43 l 1551 9375 4 +UH 0 19 h 1562 9325 4 +UH 0 20 h 5530 8972 4 +UH 0 21 h 1611 9306 4 +PQ +SE +ID 2513 +TI 1760667400.426845788 +UH 0 64 l 3299 0 5 +UH 0 64 h 3238 0 5 +BD GR Veto +PQ +SE +ID 2514 +TI 1760667400.426854610 +UH 0 17 l 1592 8863 4 +UH 0 18 l 4382 8526 4 +UH 0 19 l 1625 8926 4 +UH 0 24 h 4276 9170 4 +PQ +SE +ID 2515 +TI 1760667400.426878929 +UH 0 3 l 1579 4171 0 +UH 0 5 l 2083 11076 4 +UH 0 50 h 1656 3805 0 +UH 0 51 h 1953 10815 4 +PQ +SE +ID 2516 +TI 1760667400.426904201 +UH 0 16 l 2628 10834 4 +UH 0 52 h 1892 11197 4 +UH 0 53 h 2296 11056 4 +PQ +SE +ID 2517 +TI 1760667400.426926136 +UH 0 49 l 4740 10780 4 +UH 0 50 l 2453 10726 4 +UH 0 2 h 3181 11067 4 +UH 0 3 h 4121 10517 4 +PQ +SE +ID 2518 +TI 1760667400.426949977 +UH 0 40 l 2096 9325 4 +UH 0 41 l 2260 9647 4 +UH 0 42 l 4032 9571 4 +UH 0 41 h 2992 9238 4 +UH 0 42 h 4048 8765 4 +UH 0 43 h 1570 9167 4 +PQ +SE +ID 2519 +TI 1760667400.426978111 +UH 0 45 l 2100 10716 4 +UH 0 55 h 2237 11008 4 +PQ +SE +ID 2520 +TI 1760667400.426995754 +UH 0 0 l 1606 5233 0 +UH 0 1 l 3783 9263 4 +UH 0 12 h 3703 9730 4 +PQ +SE +ID 2521 +TI 1760667400.427015781 +UH 0 35 l 2382 10487 4 +UH 0 21 h 2389 11379 4 +PQ +SE +ID 2522 +TI 1760667400.427034378 +UH 0 3 l 1793 5211 0 +UH 0 36 h 1856 11417 4 +PQ +SE +ID 2523 +TI 1760667400.427074909 +UH 0 31 l 1792 5479 0 +UH 0 11 h 1831 11539 4 +PQ +SE +ID 2524 +TI 1760667400.427105188 +UH 0 4 l 1613 9325 4 +UH 0 5 l 4754 8819 4 +UH 0 6 l 1629 9120 4 +UH 0 18 h 4771 9533 4 +PQ +SE +ID 2525 +TI 1760667400.427133321 +UH 0 41 l 2317 11009 4 +UH 0 25 h 2313 10734 4 +PQ +SE +ID 2526 +TI 1760667400.427155017 +UH 0 32 l 2747 10871 4 +UH 0 33 l 2387 10552 4 +UH 0 29 h 3004 10949 4 +UH 0 30 h 2002 11219 4 +PQ +SE +ID 2527 +TI 1760667400.427180051 +UH 0 11 l 2063 10885 4 +UH 0 9 h 1713 11116 4 +UH 0 10 h 1731 11372 4 +PQ +SE +ID 2528 +TI 1760667400.427201032 +UH 0 64 l 1784 0 5 +UH 0 64 h 1835 0 5 +BD GR Veto +PQ +SE +ID 2529 +TI 1760667400.427209615 +UH 0 45 l 2354 8671 4 +UH 0 46 l 2481 8665 4 +UH 0 50 l 2443 8959 4 +UH 0 51 l 2876 9031 4 +UH 0 52 l 1604 5391 0 +UH 0 7 h 3555 9505 4 +UH 0 17 h 2720 9418 4 +UH 0 18 h 2485 9310 4 +PQ +SE +ID 2530 +TI 1760667400.427253723 +UH 0 5 l 3596 10822 4 +UH 0 25 h 2107 11101 4 +UH 0 26 h 2821 11209 4 +PQ +SE +ID 2531 +TI 1760667400.427273988 +UH 0 39 l 2049 10985 4 +UH 0 27 h 2000 11092 4 +PQ +SE +ID 2532 +TI 1760667400.427294015 +UH 0 4 l 2571 7978 4 +UH 0 64 l 3068 0 5 +UH 0 51 h 2437 7432 4 +UH 0 64 h 3082 0 5 +BD GR Veto +PQ +SE +ID 2533 +TI 1760667400.427316665 +UH 0 55 l 1799 10198 4 +UH 0 56 l 2919 10298 4 +UH 0 60 l 1583 5066 0 +UH 0 61 l 1652 5229 0 +UH 0 64 l 2197 0 5 +UH 0 52 h 3222 10358 4 +UH 0 64 h 2849 0 5 +BD GR Veto +PQ +SE +ID 2534 +TI 1760667400.427351713 +UH 0 13 l 1976 10697 4 +UH 0 10 h 1980 11699 4 +PQ +SE +ID 2535 +TI 1760667400.427370309 +UH 0 3 l 2275 10851 4 +UH 0 10 h 2251 11596 4 +PQ +SE +ID 2536 +TI 1760667400.427388429 +UH 0 7 l 2429 10384 4 +UH 0 8 l 1743 4760 0 +UH 0 31 h 2539 10849 4 +PQ +SE +ID 2537 +TI 1760667400.427406311 +UH 0 64 l 1655 0 5 +BD GR Veto +PQ +SE +ID 2538 +TI 1760667400.427413225 +UH 0 52 l 1597 9098 4 +UH 0 53 l 3508 8946 4 +UH 0 4 h 3489 9648 4 +PQ +SE +ID 2539 +TI 1760667400.427435159 +UH 0 15 l 1881 10645 4 +UH 0 16 l 2858 10660 4 +UH 0 48 h 3174 11026 4 +PQ +SE +ID 2540 +TI 1760667400.427456617 +UH 0 5 l 2340 8408 4 +UH 0 13 l 1603 8650 4 +UH 0 14 l 4268 8526 4 +UH 0 33 h 2224 8685 4 +UH 0 15 h 4099 9511 4 +PQ +SE +ID 2541 +TI 1760667400.427491188 +UH 0 33 l 2549 10432 4 +UH 0 40 l 1533 4795 0 +UH 0 56 h 2552 11151 4 +PQ +SE +ID 2542 +TI 1760667400.427515983 +UH 0 14 l 4060 10756 4 +UH 0 15 l 2212 10756 4 +UH 0 31 l 1605 2296 0 +UH 0 61 h 1993 10943 4 +UH 0 62 h 4205 10669 4 +PQ +SE +ID 2543 +TI 1760667400.427543878 +UH 0 61 l 1675 4229 0 +UH 0 17 h 1537 5494 0 +PQ +SE +ID 2544 +TI 1760667400.427562236 +UH 0 16 l 1906 10713 4 +UH 0 17 l 1911 10606 4 +UH 0 59 h 2286 11071 4 +PQ +SE +ID 2545 +TI 1760667400.427583694 +UH 0 10 l 2055 10566 4 +UH 0 11 l 1755 4354 0 +UH 0 31 h 2084 10999 4 +PQ +SE +ID 2546 +TI 1760667400.427604675 +UH 0 47 l 1562 9378 4 +UH 0 48 l 5540 9388 4 +UH 0 7 h 1646 9246 4 +UH 0 8 h 5577 9733 4 +PQ +SE +ID 2547 +TI 1760667400.427628517 +UH 0 32 l 2087 9826 4 +UH 0 34 l 1941 9739 4 +UH 0 35 l 3285 9885 4 +UH 0 36 l 1634 9686 4 +UH 0 37 l 2917 9680 4 +UH 0 34 h 1851 9300 4 +UH 0 35 h 1788 9568 4 +UH 0 36 h 1851 9702 4 +UH 0 39 h 3315 9338 4 +UH 0 40 h 2277 9458 4 +UH 0 31 h 2202 9674 4 +PQ +SE +ID 2548 +TI 1760667400.427683115 +UH 0 0 l 1604 2834 0 +UH 0 1 l 1767 5060 0 +UH 0 31 h 1735 11035 4 +PQ +SE +ID 2549 +TI 1760667400.427700996 +UH 0 64 l 1807 0 5 +UH 0 64 h 1975 0 5 +BD GR Veto +PQ +SE +ID 2550 +TI 1760667400.427710294 +UH 0 17 l 1887 5014 0 +UH 0 20 l 2428 10612 4 +UH 0 58 h 1892 11111 4 +UH 0 60 h 2322 10929 4 +PQ +SE +ID 2551 +TI 1760667400.427741765 +UH 0 42 l 1842 5177 0 +UH 0 3 h 1863 11249 4 +PQ +SE +ID 2552 +TI 1760667400.427760601 +UH 0 46 l 4466 10046 4 +UH 0 47 l 1795 10189 4 +UH 0 48 l 2218 10308 4 +UH 0 1 h 2971 10320 4 +UH 0 2 h 1631 10324 4 +UH 0 3 h 2403 9853 4 +UH 0 4 h 2587 10287 4 +UH 0 5 h 1649 10191 4 +UH 0 6 h 2236 9991 4 +PQ +SE +ID 2553 +TI 1760667400.427796125 +UH 0 57 l 1538 9590 4 +UH 0 58 l 3046 9270 4 +UH 0 51 h 2595 9378 4 +UH 0 53 h 1969 9498 4 +PQ +SE +ID 2554 +TI 1760667400.427821874 +UH 0 64 l 2017 0 5 +UH 0 64 h 2084 0 5 +BD GR Veto +PQ +SE +ID 2555 +TI 1760667400.427830219 +UH 0 21 l 2349 11216 4 +UH 0 46 h 2316 10438 4 +PQ +SE +ID 2556 +TI 1760667400.427849531 +UH 0 64 l 2542 0 5 +UH 0 64 h 2530 0 5 +BD GR Veto +PQ +SE +ID 2557 +TI 1760667400.427858114 +UH 0 20 l 2270 10763 4 +UH 0 9 h 2115 11098 4 +UH 0 10 h 1609 3587 0 +PQ +SE +ID 2558 +TI 1760667400.427878856 +UH 0 64 l 2631 0 5 +UH 0 64 h 3998 0 5 +BD GR Veto +PQ +SE +ID 2559 +TI 1760667400.449757337 +UH 0 25 l 1769 4995 0 +UH 0 26 l 2325 11260 4 +UH 0 38 h 2415 11156 4 +PQ +SE +ID 2560 +TI 1760667400.449805974 +UH 0 38 l 1977 10477 4 +UH 0 5 h 2049 11349 4 +PQ +SE +ID 2561 +TI 1760667400.449828386 +UH 0 6 l 2247 10688 4 +UH 0 8 l 1864 10606 4 +UH 0 6 h 2473 11299 4 +PQ +SE +ID 2562 +TI 1760667400.449852228 +UH 0 64 l 2384 0 5 +UH 0 34 h 2298 10954 4 +BD GR Veto +PQ +SE +ID 2563 +TI 1760667400.449865818 +UH 0 11 l 2337 10109 4 +UH 0 8 h 2205 11656 4 +PQ +SE +ID 2564 +TI 1760667400.449884891 +UH 0 0 l 4331 10776 4 +UH 0 51 h 4264 10830 4 +PQ +SE +ID 2565 +TI 1760667400.449902057 +UH 0 34 l 2522 8260 4 +UH 0 35 l 1645 8546 4 +UH 0 38 l 1540 8440 4 +UH 0 39 l 2914 8254 4 +UH 0 26 l 2108 8531 4 +UH 0 8 h 2038 9170 4 +UH 0 9 h 2078 8721 4 +UH 0 10 h 2967 8935 4 +UH 0 15 h 2063 9055 4 +PQ +SE +ID 2566 +TI 1760667400.449954032 +UH 0 14 l 2550 10387 4 +UH 0 20 h 2505 11165 4 +PQ +SE +ID 2567 +TI 1760667400.449972152 +UH 0 35 l 2728 10291 4 +UH 0 36 l 1659 4786 0 +UH 0 17 h 2761 11143 4 +PQ +SE +ID 2568 +TI 1760667400.449993133 +UH 0 15 l 1700 5013 0 +UH 0 17 l 1841 10941 4 +UH 0 18 l 1990 10763 4 +UH 0 47 h 1644 4094 0 +UH 0 52 h 2267 11146 4 +PQ +SE +ID 2569 +TI 1760667400.450027942 +UH 0 13 l 1727 3345 0 +UH 0 15 l 1872 3334 0 +UH 0 17 l 1577 9320 4 +UH 0 18 l 4004 9070 4 +UH 0 2 h 1688 3483 0 +UH 0 6 h 1744 9688 4 +UH 0 8 h 3784 9839 4 +UH 0 9 h 1746 9584 4 +PQ +SE +ID 2570 +TI 1760667400.450072765 +UH 0 52 l 2349 10833 4 +UH 0 53 l 1607 3430 0 +UH 0 26 h 2401 11036 4 +PQ +SE +ID 2571 +TI 1760667400.450093269 +UH 0 35 l 1557 4932 0 +UH 0 53 h 1603 5388 0 +PQ +SE +ID 2572 +TI 1760667400.450109958 +UH 0 9 l 2335 10991 4 +UH 0 18 h 2243 10912 4 +UH 0 19 h 1586 4817 0 +PQ +SE +ID 2573 +TI 1760667400.450130939 +UH 0 24 l 2889 10877 4 +UH 0 27 l 2357 10891 4 +UH 0 10 h 1909 11182 4 +UH 0 11 h 1984 11006 4 +UH 0 13 h 2797 11130 4 +PQ +SE +ID 2574 +TI 1760667400.450170993 +UH 0 48 l 2241 10823 4 +UH 0 49 l 2514 10777 4 +UH 0 57 h 3289 11244 4 +PQ +SE +ID 2575 +TI 1760667400.450190544 +UH 0 4 l 2487 11123 4 +UH 0 51 h 1655 11228 4 +UH 0 52 h 2268 11230 4 +PQ +SE +ID 2576 +TI 1760667400.450210809 +UH 0 39 l 1662 5164 0 +UH 0 40 l 2042 10632 4 +UH 0 47 l 2395 10577 4 +UH 0 48 l 2473 10684 4 +UH 0 63 l 1543 1866 0 +UH 0 18 h 1995 10950 4 +UH 0 19 h 1699 4849 0 +UH 0 22 h 2444 11012 4 +UH 0 23 h 2591 11070 4 +PQ +SE +ID 2577 +TI 1760667400.450261592 +UH 0 11 l 2049 10317 4 +UH 0 16 l 1624 4520 0 +UH 0 17 l 2365 10563 4 +UH 0 58 h 1914 10871 4 +UH 0 59 h 2436 11002 4 +PQ +SE +ID 2578 +TI 1760667400.450291633 +UH 0 37 l 2242 10945 4 +UH 0 12 h 2045 11384 4 +UH 0 13 h 1704 11497 4 +PQ +SE +ID 2579 +TI 1760667400.450311660 +UH 0 64 l 2423 0 5 +UH 0 64 h 3598 0 5 +BD GR Veto +PQ +SE +ID 2580 +TI 1760667400.450320243 +UH 0 38 l 1548 8877 4 +UH 0 39 l 3875 8676 4 +UH 0 52 l 2451 8950 4 +UH 0 20 l 2205 8497 4 +UH 0 15 h 2154 9672 4 +UH 0 22 h 3856 9291 4 +UH 0 28 h 2490 9157 4 +PQ +SE +ID 2581 +TI 1760667400.450370073 +UH 0 64 l 2840 0 5 +UH 0 64 h 3410 0 5 +BD GR Veto +PQ +SE +ID 2582 +TI 1760667400.450378179 +UH 0 39 l 1710 10204 4 +UH 0 40 l 3416 10128 4 +UH 0 41 l 2039 10349 4 +UH 0 42 l 1848 10469 4 +UH 0 44 l 1575 4831 0 +UH 0 45 l 1959 10105 4 +UH 0 47 l 1654 4586 0 +UH 0 49 l 1817 4680 0 +UH 0 39 h 3638 10393 4 +UH 0 42 h 3008 10235 4 +UH 0 44 h 1885 10193 4 +UH 0 45 h 1670 4132 0 +PQ +SE +ID 2583 +TI 1760667400.450434207 +UH 0 9 l 3487 9306 4 +UH 0 10 l 1634 9320 4 +UH 0 11 l 2455 9007 4 +UH 0 12 l 1711 8925 4 +UH 0 13 l 2924 9344 4 +UH 0 12 h 4565 9492 4 +UH 0 13 h 2541 9606 4 +PQ +SE +ID 2584 +TI 1760667400.450464248 +UH 0 25 l 3748 10941 4 +UH 0 26 l 2426 11181 4 +UH 0 1 h 4528 11127 4 +PQ +SE +ID 2585 +TI 1760667400.450484752 +UH 0 50 l 1663 10993 4 +UH 0 51 l 2089 10959 4 +UH 0 52 l 2487 10875 4 +UH 0 15 h 2970 11391 4 +UH 0 27 h 1663 4571 0 +PQ +SE +ID 2586 +TI 1760667400.450515508 +UH 0 35 l 1837 10573 4 +UH 0 31 h 1869 10932 4 +PQ +SE +ID 2587 +TI 1760667400.450533390 +UH 0 52 l 2564 9331 4 +UH 0 53 l 3159 9160 4 +UH 0 54 l 1528 9529 4 +UH 0 55 l 2075 8932 4 +UH 0 54 h 2043 9338 4 +UH 0 55 h 3326 9026 4 +UH 0 57 h 2524 9319 4 +PQ +SE +ID 2588 +TI 1760667400.450567245 +UH 0 21 l 1787 4903 0 +UH 0 7 h 1832 11540 4 +PQ +SE +ID 2589 +TI 1760667400.450584650 +UH 0 32 l 1947 10995 4 +UH 0 33 l 2242 10354 4 +UH 0 29 l 3415 10726 4 +UH 0 30 l 2322 11125 4 +UH 0 31 l 1993 11078 4 +UH 0 58 h 4807 10601 4 +UH 0 61 h 2218 10966 4 +PQ +SE +ID 2590 +TI 1760667400.450619459 +UH 0 57 l 3033 10597 4 +UH 0 64 l 1971 0 5 +UH 0 21 h 1636 11273 4 +UH 0 22 h 3019 10855 4 +UH 0 64 h 3652 0 5 +BD GR Veto +PQ +SE +ID 2591 +TI 1760667400.450644493 +UH 0 62 l 1618 5391 0 +UH 0 63 l 1522 3938 0 +UH 0 64 l 2676 0 5 +UH 0 64 h 3043 0 5 +BD GR Veto +PQ +SE +ID 2592 +TI 1760667400.450659275 +UH 0 2 l 1661 4788 0 +UH 0 5 l 2528 10602 4 +UH 0 6 l 1886 5044 0 +UH 0 5 h 2204 11390 4 +UH 0 12 h 1563 4468 0 +UH 0 16 h 2141 11346 4 +PQ +SE +ID 2593 +TI 1760667400.450701713 +UH 0 60 l 3042 10394 4 +UH 0 30 h 2958 11004 4 +UH 0 31 h 1568 10461 4 +PQ +SE +ID 2594 +TI 1760667400.450721740 +UH 0 26 l 2888 10862 4 +UH 0 25 h 1704 11360 4 +UH 0 26 h 2568 11434 4 +PQ +SE +ID 2595 +TI 1760667400.450742006 +UH 0 43 l 1890 11011 4 +UH 0 44 l 1850 10857 4 +UH 0 44 h 2361 10949 4 +PQ +SE +ID 2596 +TI 1760667400.450762033 +UH 0 53 l 1617 10791 4 +UH 0 54 l 3665 10902 4 +UH 0 57 l 1850 10583 4 +UH 0 16 h 3564 10819 4 +UH 0 17 h 1970 10757 4 +PQ +SE +ID 2597 +TI 1760667400.450791358 +UH 0 35 l 1876 8620 4 +UH 0 36 l 3378 8164 4 +UH 0 37 l 1587 8632 4 +UH 0 45 l 1541 8315 4 +UH 0 46 l 3338 8181 4 +UH 0 38 h 2396 8752 4 +UH 0 39 h 2940 8396 4 +UH 0 49 h 3442 8664 4 +PQ +SE +ID 2598 +TI 1760667400.450833559 +UH 0 40 l 1589 5285 0 +UH 0 41 l 2523 10366 4 +UH 0 45 l 2481 10342 4 +UH 0 8 h 1642 11303 4 +UH 0 9 h 2432 10866 4 +UH 0 11 h 2743 11115 4 +PQ +SE +ID 2599 +TI 1760667400.450867414 +UH 0 64 l 2192 0 5 +UH 0 64 h 2212 0 5 +BD GR Veto +PQ +SE +ID 2600 +TI 1760667400.450875282 +UH 0 49 l 1813 10957 4 +UH 0 50 l 1999 10791 4 +UH 0 53 l 2414 10781 4 +UH 0 54 l 2287 11019 4 +UH 0 34 h 2254 10455 4 +UH 0 36 h 2421 10706 4 +UH 0 38 h 2370 10749 4 +PQ +SE +ID 2601 +TI 1760667400.450915098 +UH 0 55 l 1497 5361 0 +UH 0 56 l 3171 8250 4 +UH 0 58 l 2244 7986 4 +UH 0 15 h 1612 8936 4 +UH 0 16 h 2851 8866 4 +UH 0 18 h 2294 8437 4 +UH 0 20 h 1853 8534 4 +PQ +SE +ID 2602 +TI 1760667400.450952768 +UH 0 64 l 1689 0 5 +UH 0 64 h 2160 0 5 +BD GR Veto +PQ +SE +ID 2603 +TI 1760667400.450960874 +UH 0 50 l 3325 9696 4 +UH 0 51 l 2208 9859 4 +UH 0 52 l 2246 9753 4 +UH 0 17 h 1531 9703 4 +UH 0 18 h 4004 9453 4 +UH 0 19 h 2189 9754 4 +PQ +SE +ID 2604 +TI 1760667400.450988531 +UH 0 21 l 2254 11207 4 +UH 0 59 h 1684 4552 0 +UH 0 60 h 2048 10337 4 +PQ +SE +ID 2605 +TI 1760667400.451009035 +UH 0 27 l 1672 5093 0 +UH 0 63 h 1642 5311 0 +PQ +SE +ID 2606 +TI 1760667400.451024293 +UH 0 23 l 4055 10829 4 +UH 0 29 l 3300 10943 4 +UH 0 33 h 2598 10362 4 +UH 0 34 h 1769 10616 4 +UH 0 38 h 2506 10618 4 +UH 0 41 h 3242 10566 4 +PQ +SE +ID 2607 +TI 1760667400.451066970 +UH 0 0 l 1861 10680 4 +UH 0 7 h 1892 11664 4 +PQ +SE +ID 2608 +TI 1760667400.451081514 +UH 0 64 h 2061 0 5 +BD GR Veto +PQ +SE +ID 2609 +TI 1760667400.451087474 +UH 0 39 l 2534 10756 4 +UH 0 64 l 2601 0 5 +UH 0 0 h 3461 11156 4 +UH 0 64 h 1748 0 5 +BD GR Veto +PQ +SE +ID 2610 +TI 1760667400.451107740 +UH 0 31 l 1856 11150 4 +UH 0 53 h 1817 11093 4 +PQ +SE +ID 2611 +TI 1760667400.451125621 +UH 0 32 l 1967 10350 4 +UH 0 9 l 3870 10185 4 +UH 0 4 h 3743 10665 4 +UH 0 5 h 1614 10606 4 +UH 0 12 h 1884 10325 4 +PQ +SE +ID 2612 +TI 1760667400.451160907 +UH 0 6 l 2310 11103 4 +UH 0 62 h 2335 10450 4 +PQ +SE +ID 2613 +TI 1760667400.451178312 +UH 0 39 l 1623 8780 4 +UH 0 40 l 4004 8729 4 +UH 0 50 h 4128 9109 4 +PQ +SE +ID 2614 +TI 1760667400.451198816 +UH 0 42 l 1769 5019 0 +UH 0 12 h 1695 5458 0 +PQ +SE +ID 2615 +TI 1760667400.451216459 +UH 0 41 l 1481 9166 4 +UH 0 42 l 3344 9021 4 +UH 0 15 h 1698 2712 0 +UH 0 17 h 3039 9235 4 +PQ +SE +ID 2616 +TI 1760667400.451240301 +UH 0 12 l 2990 10098 4 +UH 0 13 l 1739 10656 4 +UH 0 15 l 1936 10495 4 +UH 0 35 h 1658 10817 4 +UH 0 36 h 3321 10796 4 +PQ +SE +ID 2617 +TI 1760667400.451267242 +UH 0 15 l 1805 4784 0 +UH 0 22 l 2099 10595 4 +UH 0 23 l 1851 10626 4 +UH 0 12 h 2212 11409 4 +UH 0 15 h 1768 11204 4 +PQ +SE +ID 2618 +TI 1760667400.451301574 +UH 0 64 l 2873 0 5 +UH 0 64 h 2856 0 5 +BD GR Veto +PQ +SE +ID 2619 +TI 1760667400.451309919 +UH 0 52 l 1730 5395 0 +UH 0 35 h 1709 5088 0 +PQ +SE +ID 2620 +TI 1760667400.451327562 +UH 0 20 l 2545 10685 4 +UH 0 22 l 1820 5169 0 +UH 0 37 h 1652 11191 4 +UH 0 38 h 2390 10988 4 +UH 0 42 h 1832 10592 4 +PQ +SE +ID 2621 +TI 1760667400.451359987 +UH 0 18 l 1665 3701 0 +UH 0 19 l 2297 9887 4 +UH 0 21 l 1696 4192 0 +UH 0 23 l 1819 4017 0 +UH 0 24 l 1704 10184 4 +UH 0 25 l 4516 10245 4 +UH 0 7 h 2610 10334 4 +UH 0 11 h 1797 10428 4 +UH 0 14 h 4318 10235 4 +UH 0 15 h 1621 10416 4 +PQ +SE +ID 2622 +TI 1760667400.451411962 +UH 0 50 l 2365 10576 4 +UH 0 62 h 2451 10988 4 +PQ +SE +ID 2623 +TI 1760667400.470682621 +UH 0 56 l 2239 9414 4 +UH 0 57 l 2697 9017 4 +UH 0 19 l 2143 8978 4 +UH 0 20 l 3183 8646 4 +UH 0 21 l 1584 5458 0 +UH 0 9 h 2212 9151 4 +UH 0 10 h 1569 9619 4 +UH 0 11 h 2802 9696 4 +UH 0 12 h 3647 9498 4 +PQ +SE +ID 2624 +TI 1760667400.470796108 +UH 0 18 l 2101 10832 4 +UH 0 3 h 1973 10724 4 +UH 0 4 h 1769 11191 4 +PQ +SE +ID 2625 +TI 1760667400.470853805 +UH 0 28 l 1690 8608 4 +UH 0 29 l 5645 8345 4 +UH 0 30 l 1631 8735 4 +UH 0 22 h 5555 8902 4 +PQ +SE +ID 2626 +TI 1760667400.470899105 +UH 0 5 l 1809 5212 0 +UH 0 45 h 1719 11496 4 +PQ +SE +ID 2627 +TI 1760667400.470937252 +UH 0 4 l 2042 11190 4 +UH 0 57 h 2060 11499 4 +PQ +SE +ID 2628 +TI 1760667400.470977544 +UH 0 10 l 3284 10372 4 +UH 0 11 l 2003 10145 4 +UH 0 20 h 3535 11004 4 +PQ +SE +ID 2629 +TI 1760667400.471020221 +UH 0 5 l 2773 10405 4 +UH 0 8 h 2722 11598 4 +PQ +SE +ID 2630 +TI 1760667400.471054553 +UH 0 38 l 1941 11106 4 +UH 0 52 h 1982 11266 4 +PQ +SE +ID 2631 +TI 1760667400.471100330 +UH 0 57 l 1537 5232 0 +UH 0 58 l 3194 8623 4 +UH 0 16 h 3085 9513 4 +UH 0 17 h 1568 9437 4 +PQ +SE +ID 2632 +TI 1760667400.471150159 +UH 0 21 l 1824 11347 4 +UH 0 63 h 1815 10541 4 +PQ +SE +ID 2633 +TI 1760667400.471188306 +UH 0 18 l 2113 10303 4 +UH 0 19 l 2376 10585 4 +UH 0 21 l 1763 4713 0 +UH 0 17 h 2810 11240 4 +UH 0 19 h 1723 5054 0 +PQ +SE +ID 2634 +TI 1760667400.471237897 +UH 0 48 l 1663 4938 0 +UH 0 49 l 1905 10947 4 +UH 0 59 h 2123 11122 4 +PQ +SE +ID 2635 +TI 1760667400.471262216 +UH 0 64 l 3194 0 5 +UH 0 64 h 3155 0 5 +BD GR Veto +PQ +SE +ID 2636 +TI 1760667400.471273183 +UH 0 62 l 2480 10936 4 +UH 0 15 h 1710 10994 4 +UH 0 16 h 2275 10910 4 +PQ +SE +ID 2637 +TI 1760667400.471293687 +UH 0 64 l 2848 0 5 +UH 0 64 h 2608 0 5 +BD GR Veto +PQ +SE +ID 2638 +TI 1760667400.471304178 +UH 0 64 l 3750 0 5 +UH 0 64 h 3805 0 5 +BD GR Veto +PQ +SE +ID 2639 +TI 1760667400.471316814 +UH 0 64 l 5669 0 5 +UH 0 64 h 5380 0 5 +BD GR Veto +PQ +SE +ID 2640 +TI 1760667400.471325159 +UH 0 23 l 3166 10777 4 +UH 0 34 h 1573 10676 4 +UH 0 35 h 2924 10724 4 +PQ +SE +ID 2641 +TI 1760667400.471345663 +UH 0 53 l 1601 5349 0 +PQ +SE +ID 2642 +TI 1760667400.471356630 +UH 0 35 l 1673 5184 0 +UH 0 31 l 2213 10981 4 +UH 0 36 h 2262 11168 4 +UH 0 38 h 1748 5139 0 +PQ +SE +ID 2643 +TI 1760667400.471386194 +UH 0 64 l 2709 0 5 +UH 0 64 h 2707 0 5 +BD GR Veto +PQ +SE +ID 2644 +TI 1760667400.471394300 +UH 0 53 l 2357 10778 4 +UH 0 35 h 2088 10646 4 +UH 0 36 h 1841 10787 4 +PQ +SE +ID 2645 +TI 1760667400.471418142 +UH 0 43 l 2565 10939 4 +UH 0 36 h 1827 10395 4 +UH 0 37 h 2394 10502 4 +PQ +SE +ID 2646 +TI 1760667400.471437931 +UH 0 64 h 1872 0 5 +BD GR Veto +PQ +SE +ID 2647 +TI 1760667400.471443414 +UH 0 26 l 2835 10889 4 +UH 0 12 h 2699 10628 4 +UH 0 13 h 1592 10809 4 +PQ +SE +ID 2648 +TI 1760667400.471463441 +UH 0 50 l 1865 10876 4 +UH 0 51 l 2147 10958 4 +UH 0 53 l 1924 5354 0 +UH 0 60 l 1985 10565 4 +UH 0 61 l 1691 5041 0 +UH 0 35 h 1997 10957 4 +UH 0 36 h 1665 4627 0 +UH 0 38 h 2327 11213 4 +UH 0 39 h 2115 10898 4 +PQ +SE +ID 2649 +TI 1760667400.471514463 +UH 0 4 l 1840 10150 4 +UH 0 5 l 3968 9727 4 +UH 0 6 l 2934 9939 4 +UH 0 7 l 1637 10054 4 +UH 0 12 h 2659 10246 4 +UH 0 13 h 2726 10354 4 +UH 0 14 h 3231 10419 4 +PQ +SE +ID 2650 +TI 1760667400.471544742 +UH 0 44 l 3553 10583 4 +UH 0 45 l 1854 10650 4 +UH 0 25 h 3810 11020 4 +PQ +SE +ID 2651 +TI 1760667400.471565008 +UH 0 7 l 1924 10976 4 +UH 0 16 l 3193 10983 4 +UH 0 17 l 2073 10933 4 +UH 0 39 h 1970 10390 4 +UH 0 46 h 3712 10552 4 +PQ +SE +ID 2652 +TI 1760667400.471601009 +UH 0 3 l 4263 9281 4 +UH 0 4 l 2357 9490 4 +UH 0 5 l 1690 2132 0 +UH 0 6 l 2014 9345 4 +UH 0 12 h 1528 9287 4 +UH 0 13 h 2834 9263 4 +UH 0 14 h 3440 9335 4 +UH 0 15 h 1613 9524 4 +UH 0 18 h 1604 5426 0 +UH 0 19 h 2274 9295 4 +PQ +SE +ID 2653 +TI 1760667400.471642971 +UH 0 19 l 3106 8512 4 +UH 0 20 l 2302 8297 4 +UH 0 21 l 1594 5480 0 +UH 0 22 l 1740 3049 0 +UH 0 23 l 2568 8425 4 +UH 0 26 l 2407 8899 4 +UH 0 32 h 2009 8848 4 +UH 0 33 h 1795 8556 4 +UH 0 34 h 3600 8633 4 +UH 0 29 h 2161 9051 4 +UH 0 30 h 1954 9285 4 +PQ +SE +ID 2654 +TI 1760667400.471690416 +UH 0 50 l 1802 10944 4 +UH 0 51 l 2489 11000 4 +UH 0 45 h 2397 10879 4 +UH 0 46 h 1805 10748 4 +PQ +SE +ID 2655 +TI 1760667400.471713542 +UH 0 54 l 2064 10785 4 +UH 0 63 h 2144 11041 4 +PQ +SE +ID 2656 +TI 1760667400.471728801 +UH 0 63 l 2498 10566 4 +UH 0 64 l 2222 0 5 +UH 0 16 h 3198 11241 4 +BD GR Veto +PQ +SE +ID 2657 +TI 1760667400.471746921 +UH 0 12 l 1805 9973 4 +UH 0 13 l 3916 10336 4 +UH 0 64 l 1961 0 5 +UH 0 23 h 1621 4598 0 +UH 0 26 h 3836 11285 4 +UH 0 64 h 2053 0 5 +BD GR Veto +PQ +SE +ID 2658 +TI 1760667400.471780300 +UH 0 4 l 2099 11013 4 +UH 0 8 l 2442 10947 4 +UH 0 37 h 2107 10859 4 +UH 0 38 h 2411 10793 4 +PQ +SE +ID 2659 +TI 1760667400.471815586 +UH 0 64 h 1970 0 5 +BD GR Veto +PQ +SE +ID 2660 +TI 1760667400.471821308 +UH 0 41 l 2318 8515 4 +UH 0 45 l 1533 4991 0 +UH 0 46 l 3423 8269 4 +UH 0 47 l 1531 5346 0 +UH 0 48 l 1907 8757 4 +UH 0 52 l 2370 8490 4 +UH 0 51 h 1897 8585 4 +UH 0 53 h 2320 8700 4 +UH 0 56 h 3524 8803 4 +UH 0 61 h 2357 8820 4 +PQ +SE +ID 2661 +TI 1760667400.471880912 +UH 0 59 l 1556 5318 0 +UH 0 60 l 2537 9705 4 +UH 0 23 h 2577 10708 4 +PQ +SE +ID 2662 +TI 1760667400.471901416 +UH 0 44 l 2702 10818 4 +UH 0 45 l 1535 3720 0 +UH 0 50 l 1580 2953 0 +UH 0 52 l 1599 5203 0 +UH 0 55 l 1605 4706 0 +UH 0 56 l 2252 10872 4 +UH 0 42 h 2464 10282 4 +UH 0 44 h 1607 3908 0 +UH 0 47 h 1669 10347 4 +UH 0 48 h 2720 10331 4 +PQ +SE +ID 2663 +TI 1760667400.471959352 +UH 0 9 l 2227 10037 4 +UH 0 15 l 3290 9801 4 +UH 0 16 l 1569 10037 4 +UH 0 27 l 1702 1594 0 +UH 0 28 l 1710 1481 0 +UH 0 29 l 1746 1524 0 +UH 0 30 l 1741 1568 0 +UH 0 31 l 1826 1587 0 +UH 0 32 h 2117 9789 4 +UH 0 33 h 2571 9395 4 +UH 0 29 h 2081 9922 4 +UH 0 30 h 1595 4701 0 +PQ +SE +ID 2664 +TI 1760667400.472010612 +UH 0 36 l 2927 9378 4 +UH 0 37 l 1585 9813 4 +UH 0 9 l 4050 9397 4 +UH 0 10 l 1653 9503 4 +UH 0 19 l 1752 3208 0 +UH 0 6 h 2924 9986 4 +UH 0 12 h 1662 10072 4 +UH 0 20 h 1791 10043 4 +UH 0 21 h 3747 10220 4 +PQ +SE +ID 2665 +TI 1760667400.472062826 +UH 0 42 l 2619 11043 4 +UH 0 56 h 2024 10648 4 +UH 0 57 h 2074 10754 4 +PQ +SE +ID 2666 +TI 1760667400.472083806 +UH 0 26 l 2145 11364 4 +UH 0 27 l 2879 10826 4 +UH 0 28 l 2861 11197 4 +UH 0 64 l 2486 0 5 +UH 0 27 h 2164 11023 4 +UH 0 29 h 1904 5225 0 +UH 0 30 h 2785 11089 4 +UH 0 31 h 2316 10513 4 +UH 0 64 h 2523 0 5 +BD GR Veto +PQ +SE +ID 2667 +TI 1760667400.472143411 +UH 0 64 l 1631 0 5 +UH 0 64 h 1923 0 5 +BD GR Veto +PQ +SE +ID 2668 +TI 1760667400.472151994 +UH 0 12 l 2007 10518 4 +UH 0 51 h 1864 11106 4 +PQ +SE +ID 2669 +TI 1760667400.472171068 +UH 0 26 l 2090 11304 4 +UH 0 27 l 1652 4831 0 +UH 0 47 h 2143 11127 4 +PQ +SE +ID 2670 +TI 1760667400.472191572 +UH 0 56 l 2199 11008 4 +UH 0 57 l 2043 10758 4 +UH 0 40 h 2247 10857 4 +UH 0 41 h 2052 11162 4 +PQ +SE +ID 2671 +TI 1760667400.472213983 +UH 0 11 l 2067 10502 4 +UH 0 13 l 1885 5255 0 +UH 0 15 l 2348 10736 4 +UH 0 31 l 1630 2502 0 +UH 0 35 h 2266 11132 4 +UH 0 38 h 2364 11317 4 +PQ +SE +ID 2672 +TI 1760667400.472254514 +UH 0 34 l 2775 10431 4 +UH 0 36 l 2842 10548 4 +UH 0 28 l 2060 10557 4 +UH 0 31 l 2610 10873 4 +UH 0 50 h 1676 10668 4 +UH 0 51 h 2646 10686 4 +UH 0 52 h 2808 10871 4 +UH 0 57 h 3058 10979 4 +PQ +SE +ID 2673 +TI 1760667400.472312211 +UH 0 40 l 2040 10528 4 +UH 0 5 h 1703 5374 0 +UH 0 6 h 1901 11441 4 +PQ +SE +ID 2674 +TI 1760667400.472333192 +UH 0 64 l 1948 0 5 +UH 0 64 h 1998 0 5 +BD GR Veto +PQ +SE +ID 2675 +TI 1760667400.472340583 +UH 0 35 l 2103 10894 4 +UH 0 36 l 1627 4825 0 +UH 0 21 h 2172 11142 4 +PQ +SE +ID 2676 +TI 1760667400.472360849 +UH 0 11 l 1979 10628 4 +UH 0 13 l 2700 10928 4 +UH 0 0 h 1669 4797 0 +UH 0 1 h 1803 4784 0 +UH 0 3 h 2252 10725 4 +UH 0 7 h 2034 10933 4 +PQ +SE +ID 2677 +TI 1760667400.472394704 +UH 0 38 l 2667 10850 4 +UH 0 59 h 1623 10307 4 +UH 0 60 h 2580 9967 4 +PQ +SE +ID 2678 +TI 1760667400.472415685 +UH 0 57 l 2062 10566 4 +UH 0 58 l 1897 10442 4 +UH 0 58 h 2468 10965 4 +PQ +SE +ID 2679 +TI 1760667400.472435951 +UH 0 14 l 1898 10518 4 +UH 0 15 l 2473 10361 4 +UH 0 30 l 1610 1935 0 +UH 0 31 l 1710 1587 0 +UH 0 25 h 2336 11309 4 +UH 0 26 h 1856 11477 4 +PQ +SE +ID 2680 +TI 1760667400.472465991 +UH 0 33 l 1590 8887 4 +UH 0 34 l 3821 8879 4 +UH 0 29 l 2026 9021 4 +UH 0 30 l 1668 3306 0 +UH 0 44 h 1960 9205 4 +UH 0 45 h 1620 2973 0 +UH 0 54 h 3761 9513 4 +PQ +SE +ID 2681 +TI 1760667400.472506284 +UH 0 53 l 1934 11120 4 +UH 0 38 h 1871 10693 4 +UH 0 39 h 1671 3189 0 +PQ +SE +ID 2682 +TI 1760667400.472526311 +UH 0 26 h 1579 5723 0 +PQ +SE +ID 2683 +TI 1760667400.472537279 +UH 0 43 l 2253 11044 4 +UH 0 42 h 2350 10482 4 +PQ +SE +ID 2684 +TI 1760667400.472554683 +UH 0 59 l 2101 10822 4 +UH 0 60 l 3828 10225 4 +UH 0 8 h 4395 11456 4 +PQ +SE +ID 2685 +TI 1760667400.472575187 +UH 0 17 l 1805 10830 4 +UH 0 18 l 1650 4883 0 +UH 0 33 h 1865 10961 4 +PQ +SE +ID 2686 +TI 1760667400.472594738 +UH 0 37 l 2238 10786 4 +UH 0 37 h 2268 11445 4 +PQ +SE +ID 2687 +TI 1760667400.495281457 +UH 0 35 l 3271 7703 4 +UH 0 38 l 1545 5271 0 +UH 0 39 l 1664 7917 4 +UH 0 40 l 3726 7712 4 +UH 0 5 h 3807 8256 4 +UH 0 7 h 3438 8309 4 +PQ +SE +ID 2688 +TI 1760667400.495386838 +UH 0 63 l 2231 10753 4 +UH 0 34 h 1543 4395 0 +UH 0 35 h 2206 10597 4 +PQ +SE +ID 2689 +TI 1760667400.495424270 +UH 0 48 l 3241 10519 4 +UH 0 19 h 3218 11355 4 +PQ +SE +ID 2690 +TI 1760667400.495465040 +UH 0 56 l 2315 11121 4 +UH 0 56 h 2348 10582 4 +PQ +SE +ID 2691 +TI 1760667400.495492696 +UH 0 33 l 1586 4657 0 +UH 0 41 l 2331 11071 4 +UH 0 45 l 1722 10776 4 +UH 0 46 l 1690 4905 0 +UH 0 10 h 2385 11065 4 +UH 0 12 h 1972 10890 4 +PQ +SE +ID 2692 +TI 1760667400.495563983 +UH 0 61 l 2352 10347 4 +UH 0 62 l 2542 10637 4 +UH 0 7 h 2231 11195 4 +UH 0 8 h 2660 11589 4 +PQ +SE +ID 2693 +TI 1760667400.495601654 +UH 0 4 l 3042 11068 4 +UH 0 9 l 1888 10770 4 +UH 0 32 h 1755 10753 4 +UH 0 29 h 2953 10918 4 +PQ +SE +ID 2694 +TI 1760667400.495660305 +UH 0 16 l 2169 10842 4 +UH 0 17 l 3436 10921 4 +UH 0 47 h 4142 10879 4 +PQ +SE +ID 2695 +TI 1760667400.495692253 +UH 0 14 l 2677 10866 4 +UH 0 60 h 2594 10546 4 +PQ +SE +ID 2696 +TI 1760667400.495720863 +UH 0 1 l 3946 11100 4 +UH 0 49 h 3898 10488 4 +PQ +SE +ID 2697 +TI 1760667400.495751380 +UH 0 9 l 2168 11102 4 +UH 0 61 h 2083 11288 4 +PQ +SE +ID 2698 +TI 1760667400.495780467 +UH 0 13 l 1742 5263 0 +UH 0 57 h 1730 4705 0 +PQ +SE +ID 2699 +TI 1760667400.495810270 +UH 0 64 l 2426 0 5 +UH 0 64 h 2834 0 5 +BD GR Veto +PQ +SE +ID 2700 +TI 1760667400.495823144 +UH 0 13 l 2495 10983 4 +UH 0 14 l 1768 5355 0 +UH 0 15 l 2528 10704 4 +UH 0 30 l 3658 11005 4 +UH 0 31 l 1635 10999 4 +UH 0 6 h 3331 11074 4 +UH 0 8 h 1725 5385 0 +UH 0 13 h 2149 11296 4 +UH 0 14 h 2964 11330 4 +PQ +SE +ID 2701 +TI 1760667400.495903253 +UH 0 41 l 1505 8959 4 +UH 0 42 l 5632 8703 4 +UH 0 43 l 1571 8864 4 +UH 0 64 l 1733 0 5 +UH 0 48 h 4608 8707 4 +UH 0 49 h 2680 8710 4 +UH 0 64 h 2914 0 5 +BD GR Veto +PQ +SE +ID 2702 +TI 1760667400.495951414 +UH 0 2 l 2332 10919 4 +UH 0 3 l 2936 10777 4 +UH 0 5 h 1774 11230 4 +UH 0 6 h 3402 11127 4 +PQ +SE +ID 2703 +TI 1760667400.495989084 +UH 0 46 l 2237 10407 4 +UH 0 14 h 2310 11443 4 +PQ +SE +ID 2704 +TI 1760667400.496020793 +UH 0 32 l 1865 11016 4 +UH 0 33 l 1838 10730 4 +UH 0 34 l 2970 10489 4 +UH 0 29 l 3702 10962 4 +UH 0 45 h 3505 10973 4 +UH 0 49 h 1767 10933 4 +UH 0 50 h 3326 10779 4 +PQ +SE +ID 2705 +TI 1760667400.496069669 +UH 0 34 l 1860 10704 4 +UH 0 35 l 2165 10890 4 +UH 0 37 h 2505 11214 4 +PQ +SE +ID 2706 +TI 1760667400.496110439 +UH 0 30 l 3469 11223 4 +UH 0 31 l 3694 11084 4 +UH 0 57 h 3172 10853 4 +UH 0 58 h 1821 10583 4 +UH 0 59 h 3651 10656 4 +PQ +SE +ID 2707 +TI 1760667400.496138095 +UH 0 16 l 1682 4629 0 +UH 0 20 l 2070 10887 4 +UH 0 33 h 1951 10508 4 +UH 0 34 h 1629 4335 0 +PQ +SE +ID 2708 +TI 1760667400.496166467 +UH 0 28 l 1635 9524 4 +UH 0 29 l 4440 9401 4 +UH 0 54 h 4146 9363 4 +UH 0 57 h 1704 3243 0 +PQ +SE +ID 2709 +TI 1760667400.496195077 +UH 0 45 l 1798 10711 4 +UH 0 48 l 2115 11066 4 +UH 0 24 h 1706 10811 4 +UH 0 25 h 2174 10941 4 +UH 0 26 h 1608 5429 0 +PQ +SE +ID 2710 +TI 1760667400.496226072 +UH 0 38 l 2200 10612 4 +UH 0 18 h 2284 11226 4 +PQ +SE +ID 2711 +TI 1760667400.496244430 +UH 0 56 l 2559 11023 4 +UH 0 10 h 2571 11520 4 +PQ +SE +ID 2712 +TI 1760667400.496261835 +UH 0 32 l 2216 9694 4 +UH 0 33 l 1933 9437 4 +UH 0 31 l 4571 9762 4 +UH 0 63 h 5600 9525 4 +UH 0 64 h 1689 0 5 +BD GR Veto +PQ +SE +ID 2713 +TI 1760667400.496284484 +UH 0 64 l 2694 0 5 +UH 0 64 h 2697 0 5 +BD GR Veto +PQ +SE +ID 2714 +TI 1760667400.496293306 +UH 0 46 l 2837 10528 4 +UH 0 47 l 1698 10725 4 +UH 0 7 h 3247 11266 4 +PQ +SE +ID 2715 +TI 1760667400.496314048 +UH 0 4 l 2198 9079 4 +UH 0 5 l 1678 9023 4 +UH 0 6 l 4096 9098 4 +UH 0 7 l 1599 9110 4 +UH 0 18 h 2265 9533 4 +UH 0 28 h 4088 9469 4 +PQ +SE +ID 2716 +TI 1760667400.496356248 +UH 0 30 l 2355 10841 4 +UH 0 64 l 3423 0 5 +UH 0 63 h 2134 10864 4 +UH 0 64 h 3350 0 5 +BD GR Veto +PQ +SE +ID 2717 +TI 1760667400.496377706 +UH 0 0 l 2088 10594 4 +UH 0 64 l 2201 0 5 +UH 0 18 h 2698 11157 4 +UH 0 19 h 1586 11514 4 +BD GR Veto +PQ +SE +ID 2718 +TI 1760667400.496398448 +UH 0 64 l 1688 0 5 +UH 0 53 h 1666 4622 0 +BD GR Veto +PQ +SE +ID 2719 +TI 1760667400.496411800 +UH 0 36 l 2133 10520 4 +UH 0 62 h 2197 11168 4 +PQ +SE +ID 2720 +TI 1760667400.496430397 +UH 0 38 l 2387 10903 4 +UH 0 48 h 2451 10723 4 +PQ +SE +ID 2721 +TI 1760667400.496448516 +UH 0 58 l 1557 8479 4 +UH 0 59 l 2520 8610 4 +UH 0 60 l 4153 8218 4 +UH 0 61 l 1664 8694 4 +UH 0 64 l 2032 0 5 +UH 0 17 h 3718 8978 4 +UH 0 18 h 1802 8923 4 +UH 0 22 h 2077 8907 4 +UH 0 25 h 2461 9169 4 +BD GR Veto +PQ +SE +ID 2722 +TI 1760667400.496493339 +UH 0 58 l 1553 5093 0 +UH 0 64 l 7438 0 5 +UH 0 64 h 7038 0 5 +BD GR Veto +PQ +SE +ID 2723 +TI 1760667400.496511697 +UH 0 64 l 2484 0 5 +UH 0 64 h 2506 0 5 +BD GR Veto +PQ +SE +ID 2724 +TI 1760667400.496520042 +UH 0 35 l 2443 10841 4 +UH 0 16 h 1668 11498 4 +UH 0 17 h 2255 11317 4 +PQ +SE +ID 2725 +TI 1760667400.496541500 +UH 0 53 l 1712 5212 0 +UH 0 54 l 2231 10878 4 +UH 0 40 h 2423 11024 4 +PQ +SE +ID 2726 +TI 1760667400.496561765 +UH 0 21 l 2264 10934 4 +UH 0 23 l 2210 10815 4 +UH 0 44 h 2074 10994 4 +UH 0 45 h 2201 11333 4 +PQ +SE +ID 2727 +TI 1760667400.496586561 +UH 0 3 l 1983 10395 4 +UH 0 4 l 3282 10486 4 +UH 0 5 l 1755 10381 4 +UH 0 23 l 2255 10407 4 +UH 0 24 l 2794 10457 4 +UH 0 6 h 1746 11336 4 +UH 0 7 h 3622 11192 4 +UH 0 8 h 1723 5123 0 +UH 0 15 h 3241 11375 4 +PQ +SE +ID 2728 +TI 1760667400.496631622 +UH 0 64 l 1672 0 5 +UH 0 64 h 2299 0 5 +BD GR Veto +PQ +SE +ID 2729 +TI 1760667400.496639966 +UH 0 64 l 1747 0 5 +UH 0 64 h 1797 0 5 +BD GR Veto +PQ +SE +ID 2730 +TI 1760667400.496648073 +UH 0 30 l 3611 11190 4 +UH 0 60 h 3595 10577 4 +PQ +SE +ID 2731 +TI 1760667400.496667385 +UH 0 20 l 1907 10620 4 +UH 0 1 h 1856 11849 4 +PQ +SE +ID 2732 +TI 1760667400.496685266 +UH 0 45 l 1614 5206 0 +UH 0 46 l 2577 10783 4 +UH 0 59 h 2644 10987 4 +UH 0 61 h 1603 4696 0 +PQ +SE +ID 2733 +TI 1760667400.496710538 +UH 0 15 l 2409 10870 4 +UH 0 30 l 1611 2405 0 +UH 0 31 l 1641 2306 0 +UH 0 37 h 1828 10847 4 +UH 0 38 h 2123 10694 4 +PQ +SE +ID 2734 +TI 1760667400.496738195 +UH 0 41 l 2051 10821 4 +UH 0 42 l 2054 10826 4 +UH 0 13 h 1696 11472 4 +UH 0 14 h 2461 11474 4 +PQ +SE +ID 2735 +TI 1760667400.496761322 +UH 0 38 l 4268 10748 4 +UH 0 44 l 1660 4432 0 +UH 0 52 l 2606 10520 4 +UH 0 41 h 2325 10733 4 +UH 0 42 h 1849 10354 4 +UH 0 44 h 1713 10545 4 +UH 0 47 h 2729 10293 4 +UH 0 48 h 3254 10385 4 +PQ +SE +ID 2736 +TI 1760667400.496813535 +UH 0 51 l 2902 8506 4 +UH 0 52 l 1627 3563 0 +UH 0 56 l 1574 8848 4 +UH 0 57 l 4210 8754 4 +UH 0 58 l 1561 8464 4 +UH 0 7 h 4134 9047 4 +UH 0 8 h 1791 9433 4 +UH 0 9 h 1861 9142 4 +UH 0 10 h 2619 9380 4 +PQ +SE +ID 2737 +TI 1760667400.496855497 +UH 0 32 l 3362 10556 4 +UH 0 11 l 1782 3980 0 +UH 0 31 l 1903 10810 4 +UH 0 64 l 1743 0 5 +UH 0 16 h 3579 11322 4 +UH 0 20 h 1662 4322 0 +UH 0 64 h 1771 0 5 +BD GR Veto +PQ +SE +ID 2738 +TI 1760667400.496896266 +UH 0 53 l 3360 10740 4 +UH 0 55 l 1732 10885 4 +UH 0 38 h 1809 4422 0 +UH 0 41 h 3237 10658 4 +UH 0 42 h 1721 10348 4 +PQ +SE +ID 2739 +TI 1760667400.496929168 +UH 0 50 l 4065 10686 4 +UH 0 51 l 2485 10907 4 +UH 0 54 l 2156 10823 4 +UH 0 32 h 2170 10621 4 +UH 0 33 h 2383 10240 4 +UH 0 35 h 4031 10397 4 +PQ +SE +ID 2740 +TI 1760667400.496964454 +UH 0 8 l 1695 4428 0 +UH 0 9 l 3922 10832 4 +UH 0 64 l 2038 0 5 +UH 0 45 h 1642 10816 4 +UH 0 46 h 3480 10415 4 +UH 0 47 h 1928 10430 4 +UH 0 64 h 2056 0 5 +BD GR Veto +PQ +SE +ID 2741 +TI 1760667400.496995925 +UH 0 36 l 2323 10541 4 +UH 0 37 l 1589 5053 0 +UH 0 2 h 2408 11447 4 +PQ +SE +ID 2742 +TI 1760667400.497016668 +UH 0 64 l 3194 0 5 +UH 0 64 h 3159 0 5 +BD GR Veto +PQ +SE +ID 2743 +TI 1760667400.497025012 +UH 0 27 l 1779 5292 0 +UH 0 34 h 1661 5208 0 +PQ +SE +ID 2744 +TI 1760667400.497043609 +UH 0 8 l 2222 10053 4 +UH 0 9 l 3895 10048 4 +UH 0 53 h 1882 9683 4 +UH 0 54 h 4008 9746 4 +UH 0 55 h 1692 9484 4 +PQ +SE +ID 2745 +TI 1760667400.497068881 +UH 0 16 l 2646 10856 4 +UH 0 21 h 2649 11367 4 +PQ +SE +ID 2746 +TI 1760667400.497087478 +UH 0 44 l 2991 9059 4 +UH 0 45 l 1544 5284 0 +UH 0 46 l 1648 9361 4 +UH 0 47 l 1693 9517 4 +UH 0 32 h 1869 9228 4 +UH 0 18 h 3097 9692 4 +PQ +SE +ID 2747 +TI 1760667400.497119426 +UH 0 42 l 2311 11098 4 +UH 0 43 h 2257 11068 4 +PQ +SE +ID 2748 +TI 1760667400.497137546 +UH 0 32 l 2198 10773 4 +UH 0 31 l 1691 4958 0 +UH 0 54 h 2029 11231 4 +UH 0 55 h 1873 10878 4 +PQ +SE +ID 2749 +TI 1760667400.497159481 +UH 0 27 l 1629 8960 4 +UH 0 28 l 4885 8959 4 +UH 0 29 l 1671 8919 4 +UH 0 41 h 4858 9100 4 +PQ +SE +ID 2750 +TI 1760667400.497183561 +UH 0 44 l 2710 10760 4 +UH 0 15 h 2753 11280 4 +PQ +SE +ID 2751 +TI 1760667400.523565292 +UH 0 14 l 2220 10937 4 +UH 0 31 h 2124 10856 4 +PQ +SE +ID 2752 +TI 1760667400.523627281 +UH 0 22 l 2608 10710 4 +UH 0 23 l 2058 10793 4 +UH 0 59 h 2951 10986 4 +PQ +SE +ID 2753 +TI 1760667400.523650646 +UH 0 59 l 1781 10553 4 +UH 0 63 l 3239 10612 4 +UH 0 9 h 2921 11041 4 +UH 0 10 h 1885 11333 4 +UH 0 22 h 1892 10928 4 +PQ +SE +ID 2754 +TI 1760667400.523691892 +UH 0 19 l 1779 5219 0 +UH 0 50 h 1791 5237 0 +PQ +SE +ID 2755 +TI 1760667400.523711681 +UH 0 64 l 1901 0 5 +UH 0 64 h 2627 0 5 +BD GR Veto +PQ +SE +ID 2756 +TI 1760667400.523720264 +UH 0 42 l 1624 8876 4 +UH 0 43 l 5558 8771 4 +UH 0 44 l 1519 8724 4 +UH 0 44 h 5543 8455 4 +UH 0 45 h 1623 8813 4 +PQ +SE +ID 2757 +TI 1760667400.523746728 +UH 0 7 l 2122 11089 4 +UH 0 50 h 2144 10677 4 +PQ +SE +ID 2758 +TI 1760667400.523766040 +UH 0 40 l 3077 10342 4 +UH 0 46 l 2334 10393 4 +UH 0 11 h 3163 11192 4 +UH 0 15 h 2440 11187 4 +PQ +SE +ID 2759 +TI 1760667400.523800134 +UH 0 44 l 1768 10484 4 +UH 0 45 l 1855 10472 4 +UH 0 29 h 2201 11350 4 +PQ +SE +ID 2760 +TI 1760667400.523822307 +UH 0 48 l 2513 10597 4 +UH 0 49 l 1755 10666 4 +UH 0 27 h 2796 11197 4 +UH 0 28 h 1667 11080 4 +PQ +SE +ID 2761 +TI 1760667400.523848295 +UH 0 50 l 1730 5084 0 +UH 0 51 l 2097 10845 4 +UH 0 52 l 1642 5074 0 +UH 0 54 h 1875 11276 4 +UH 0 55 h 1965 10928 4 +UH 0 58 h 1605 3629 0 +PQ +SE +ID 2762 +TI 1760667400.523881912 +UH 0 64 l 2689 0 5 +UH 0 64 h 2692 0 5 +BD GR Veto +PQ +SE +ID 2763 +TI 1760667400.523891687 +UH 0 37 l 2316 11000 4 +UH 0 55 h 2208 10292 4 +UH 0 56 h 1741 10620 4 +PQ +SE +ID 2764 +TI 1760667400.523914098 +UH 0 12 l 2177 10359 4 +UH 0 33 h 2026 10897 4 +PQ +SE +ID 2765 +TI 1760667400.523934364 +UH 0 64 l 1789 0 5 +UH 0 64 h 1839 0 5 +BD GR Veto +PQ +SE +ID 2766 +TI 1760667400.523942708 +UH 0 5 l 2058 10709 4 +UH 0 48 h 2020 11186 4 +PQ +SE +ID 2767 +TI 1760667400.523964881 +UH 0 13 l 1779 4963 0 +UH 0 18 l 2325 10710 4 +UH 0 55 h 2247 10747 4 +UH 0 56 h 1877 11111 4 +UH 0 62 h 1693 5002 0 +PQ +SE +ID 2768 +TI 1760667400.524002075 +UH 0 0 l 2169 10939 4 +UH 0 64 l 2281 0 5 +UH 0 29 h 2105 11149 4 +UH 0 64 h 2537 0 5 +BD GR Veto +PQ +SE +ID 2769 +TI 1760667400.524024009 +UH 0 33 l 2131 10744 4 +UH 0 48 h 2129 10766 4 +PQ +SE +ID 2770 +TI 1760667400.524042129 +UH 0 64 l 4306 0 5 +UH 0 64 h 4179 0 5 +BD GR Veto +PQ +SE +ID 2771 +TI 1760667400.524050474 +UH 0 0 l 2025 11055 4 +UH 0 46 h 1993 10672 4 +PQ +SE +ID 2772 +TI 1760667400.524070978 +UH 0 3 l 1586 8419 4 +UH 0 4 l 4368 8496 4 +UH 0 5 l 1642 8472 4 +UH 0 10 h 1629 2498 0 +UH 0 11 h 4262 9265 4 +PQ +SE +ID 2773 +TI 1760667400.524114847 +UH 0 23 l 2025 10942 4 +UH 0 8 h 1664 5417 0 +UH 0 9 h 1820 11416 4 +PQ +SE +ID 2774 +TI 1760667400.524137258 +UH 0 22 l 1702 4676 0 +UH 0 23 l 1752 4617 0 +UH 0 27 h 1780 11447 4 +PQ +SE +ID 2775 +TI 1760667400.524157762 +UH 0 25 l 2572 11269 4 +UH 0 28 l 1731 4804 0 +UH 0 50 h 1683 4032 0 +UH 0 51 h 2493 10541 4 +PQ +SE +ID 2776 +TI 1760667400.524186372 +UH 0 48 l 2623 10644 4 +UH 0 49 l 1579 10694 4 +UH 0 4 h 2826 11520 4 +PQ +SE +ID 2777 +TI 1760667400.524210691 +UH 0 2 l 1913 10744 4 +UH 0 3 l 2275 10559 4 +UH 0 26 h 1688 11522 4 +UH 0 27 h 2485 11209 4 +PQ +SE +ID 2778 +TI 1760667400.524235010 +UH 0 63 l 1545 4947 0 +UH 0 11 h 1666 5537 0 +PQ +SE +ID 2779 +TI 1760667400.524250984 +UH 0 59 l 1555 9028 4 +UH 0 60 l 3662 8600 4 +UH 0 61 l 2423 8900 4 +UH 0 13 h 4481 9703 4 +PQ +SE +ID 2780 +TI 1760667400.524273872 +UH 0 41 l 3259 10936 4 +UH 0 30 h 3144 11053 4 +UH 0 31 h 1661 10617 4 +PQ +SE +ID 2781 +TI 1760667400.524295330 +UH 0 26 l 3608 10939 4 +UH 0 3 h 3614 10921 4 +PQ +SE +ID 2782 +TI 1760667400.524314165 +UH 0 2 l 1993 10782 4 +UH 0 39 h 2005 11028 4 +PQ +SE +ID 2783 +TI 1760667400.524332284 +UH 0 47 l 1709 5332 0 +UH 0 58 l 1572 4522 0 +UH 0 57 h 1773 11359 4 +PQ +SE +ID 2784 +TI 1760667400.524358749 +UH 0 55 l 1502 8645 4 +UH 0 56 l 2994 8653 4 +UH 0 4 h 3074 9531 4 +PQ +SE +ID 2785 +TI 1760667400.524379730 +UH 0 64 l 2374 0 5 +UH 0 64 h 1977 0 5 +BD GR Veto +PQ +SE +ID 2786 +TI 1760667400.524388551 +UH 0 33 l 2522 10335 4 +UH 0 35 l 1672 4961 0 +UH 0 47 h 1774 4516 0 +UH 0 53 h 1588 5416 0 +UH 0 54 h 2447 10814 4 +PQ +SE +ID 2787 +TI 1760667400.524423360 +UH 0 5 l 2297 10953 4 +UH 0 6 l 1625 5172 0 +UH 0 8 l 2368 10894 4 +UH 0 2 h 2125 11305 4 +UH 0 3 h 1842 10980 4 +UH 0 4 h 2340 11400 4 +PQ +SE +ID 2788 +TI 1760667400.524454832 +UH 0 43 l 2153 10939 4 +UH 0 58 h 1651 4199 0 +UH 0 59 h 2065 11153 4 +PQ +SE +ID 2789 +TI 1760667400.524475812 +UH 0 17 l 2202 10833 4 +UH 0 18 l 3362 10621 4 +UH 0 19 l 1689 10990 4 +UH 0 21 l 1903 11184 4 +UH 0 45 h 1826 10646 4 +UH 0 51 h 1585 4488 0 +UH 0 54 h 1862 10663 4 +UH 0 55 h 1686 3724 0 +UH 0 28 h 2656 10853 4 +UH 0 29 h 2498 11060 4 +PQ +SE +ID 2790 +TI 1760667400.524536609 +UH 0 58 l 1978 10676 4 +UH 0 51 h 1934 10541 4 +PQ +SE +ID 2791 +TI 1760667400.524555444 +UH 0 49 l 1690 10677 4 +UH 0 50 l 2686 10460 4 +UH 0 64 l 4230 0 5 +UH 0 55 h 2992 10575 4 +UH 0 64 h 4097 0 5 +BD GR Veto +PQ +SE +ID 2792 +TI 1760667400.524581909 +UH 0 37 l 3713 10824 4 +UH 0 64 l 2354 0 5 +UH 0 8 h 3712 11411 4 +UH 0 64 h 2381 0 5 +BD GR Veto +PQ +SE +ID 2793 +TI 1760667400.524605512 +UH 0 18 l 1842 10768 4 +UH 0 19 l 1946 11240 4 +UH 0 22 l 1917 11128 4 +UH 0 23 l 2030 11121 4 +UH 0 24 l 1729 4895 0 +UH 0 44 h 2184 10504 4 +UH 0 46 h 1834 10711 4 +UH 0 47 h 1842 10631 4 +UH 0 50 h 1763 4696 0 +UH 0 51 h 1604 4964 0 +PQ +SE +ID 2794 +TI 1760667400.524658679 +UH 0 54 l 1525 5546 0 +UH 0 55 l 3002 9020 4 +UH 0 39 h 1694 9143 4 +UH 0 40 h 2995 9064 4 +PQ +SE +ID 2795 +TI 1760667400.524683475 +UH 0 12 l 2261 10481 4 +UH 0 15 l 2407 10863 4 +UH 0 16 l 1661 4542 0 +UH 0 31 l 1648 2311 0 +UH 0 24 h 1836 10836 4 +UH 0 25 h 2072 11078 4 +UH 0 30 h 2074 11253 4 +UH 0 31 h 1562 5167 0 +PQ +SE +ID 2796 +TI 1760667400.524728775 +UH 0 45 l 2302 9611 4 +UH 0 46 l 1499 5255 0 +UH 0 48 l 1760 4107 0 +UH 0 64 l 2108 0 5 +UH 0 10 h 1607 4273 0 +UH 0 16 h 2260 10637 4 +UH 0 17 h 1748 10308 4 +UH 0 64 h 2142 0 5 +BD GR Veto +PQ +SE +ID 2797 +TI 1760667400.524769783 +UH 0 1 l 5329 9857 4 +UH 0 13 h 1592 9839 4 +UH 0 14 h 4413 9819 4 +UH 0 15 h 2309 9951 4 +PQ +SE +ID 2798 +TI 1760667400.524793386 +UH 0 18 l 3628 10087 4 +UH 0 5 h 3582 11212 4 +PQ +SE +ID 2799 +TI 1760667400.524811983 +UH 0 31 l 3083 11128 4 +UH 0 52 h 3083 10909 4 +PQ +SE +ID 2800 +TI 1760667400.524830102 +UH 0 64 l 2129 0 5 +UH 0 0 h 2171 11370 4 +BD GR Veto +PQ +SE +ID 2801 +TI 1760667400.524842023 +UH 0 64 l 2145 0 5 +UH 0 64 h 2478 0 5 +BD GR Veto +PQ +SE +ID 2802 +TI 1760667400.524850130 +UH 0 7 l 1636 5335 0 +UH 0 59 h 1608 4536 0 +PQ +SE +ID 2803 +TI 1760667400.524868249 +UH 0 8 l 1668 5336 0 +PQ +SE +ID 2804 +TI 1760667400.524879217 +UH 0 64 l 1715 0 5 +UH 0 64 h 2386 0 5 +BD GR Veto +PQ +SE +ID 2805 +TI 1760667400.524886846 +UH 0 3 l 2860 10375 4 +UH 0 4 l 3175 10556 4 +UH 0 39 h 1703 10107 4 +UH 0 40 h 4346 10026 4 +PQ +SE +ID 2806 +TI 1760667400.524910688 +UH 0 25 l 2439 10885 4 +UH 0 58 h 2350 10963 4 +PQ +SE +ID 2807 +TI 1760667400.524928808 +UH 0 9 l 2732 10915 4 +UH 0 51 h 1543 5181 0 +UH 0 52 h 2624 10539 4 +PQ +SE +ID 2808 +TI 1760667400.524949312 +UH 0 26 l 2097 11227 4 +UH 0 57 h 2029 11423 4 +PQ +SE +ID 2809 +TI 1760667400.524968624 +UH 0 14 l 2048 10652 4 +UH 0 4 h 2049 11715 4 +PQ +SE +ID 2810 +TI 1760667400.524986505 +UH 0 41 l 1923 10945 4 +UH 0 42 l 2383 10994 4 +UH 0 44 h 1803 10985 4 +UH 0 45 h 2492 11206 4 +PQ +SE +ID 2811 +TI 1760667400.525009393 +UH 0 7 l 1916 5302 0 +UH 0 8 l 2212 10926 4 +UH 0 11 l 1900 4618 0 +UH 0 32 h 1738 5061 0 +UH 0 38 h 1936 11422 4 +UH 0 46 h 2105 11300 4 +PQ +SE +ID 2812 +TI 1760667400.525049924 +UH 0 38 l 2019 8955 4 +UH 0 39 l 5110 9085 4 +UH 0 40 l 1539 8969 4 +UH 0 48 h 4410 9306 4 +UH 0 50 h 2935 9197 4 +PQ +SE +ID 2813 +TI 1760667400.525077581 +UH 0 64 l 1948 0 5 +UH 0 64 h 1968 0 5 +BD GR Veto +PQ +SE +ID 2814 +TI 1760667400.525086402 +UH 0 2 l 2029 11072 4 +UH 0 46 h 1933 10637 4 +UH 0 47 h 1638 4769 0 +PQ +SE +ID 2815 +TI 1760667400.546437978 +UH 0 25 l 2250 10759 4 +UH 0 13 h 2183 11442 4 +PQ +SE +ID 2816 +TI 1760667400.546510934 +UH 0 36 l 1863 10733 4 +UH 0 40 l 2446 10872 4 +UH 0 48 h 1850 10460 4 +UH 0 50 h 2347 10501 4 +UH 0 51 h 1703 10692 4 +PQ +SE +ID 2817 +TI 1760667400.546577453 +UH 0 31 l 2107 11108 4 +UH 0 57 h 2095 11452 4 +PQ +SE +ID 2818 +TI 1760667400.546611309 +UH 0 15 l 3070 10711 4 +UH 0 16 l 4149 10864 4 +UH 0 27 l 1623 2469 0 +UH 0 28 l 1688 1503 0 +UH 0 29 l 1688 2070 0 +UH 0 30 l 1661 2530 0 +UH 0 31 l 1735 2292 0 +UH 0 32 h 3221 10669 4 +UH 0 30 h 2821 11268 4 +UH 0 31 h 2536 10620 4 +PQ +SE +ID 2819 +TI 1760667400.546693563 +UH 0 45 l 3950 10700 4 +UH 0 26 l 2338 11128 4 +UH 0 27 l 2512 10525 4 +UH 0 38 h 2273 10394 4 +UH 0 39 h 3289 10066 4 +UH 0 44 h 2269 10167 4 +UH 0 45 h 2384 10475 4 +UH 0 46 h 1588 10381 4 +PQ +SE +ID 2820 +TI 1760667400.546775341 +UH 0 3 l 1653 5221 0 +UH 0 4 l 1628 5240 0 +UH 0 46 h 1723 4970 0 +PQ +SE +ID 2821 +TI 1760667400.546813964 +UH 0 46 l 2129 10603 4 +UH 0 47 l 4909 10689 4 +UH 0 58 l 1571 1949 0 +UH 0 59 l 1587 2074 0 +UH 0 60 l 1616 1718 0 +UH 0 61 l 1723 2427 0 +UH 0 62 l 1707 2463 0 +UH 0 63 l 1732 2128 0 +UH 0 44 h 4071 10077 4 +UH 0 45 h 1662 10629 4 +UH 0 46 h 1846 10318 4 +UH 0 47 h 1988 10227 4 +UH 0 49 h 1675 4491 0 +UH 0 50 h 1923 10276 4 +UH 0 51 h 1688 10394 4 +PQ +SE +ID 2822 +TI 1760667400.546917915 +UH 0 13 l 2730 9442 4 +UH 0 16 l 1565 9479 4 +UH 0 17 l 4464 9284 4 +UH 0 15 h 2145 9813 4 +UH 0 16 h 3667 9744 4 +UH 0 17 h 2711 9573 4 +PQ +SE +ID 2823 +TI 1760667400.546979427 +UH 0 25 l 2454 10745 4 +UH 0 64 l 1880 0 5 +UH 0 4 h 2421 11455 4 +UH 0 64 h 1933 0 5 +BD GR Veto +PQ +SE +ID 2824 +TI 1760667400.547002553 +UH 0 21 l 3329 11071 4 +UH 0 26 l 2026 10867 4 +UH 0 27 l 2010 10376 4 +UH 0 4 h 2496 11048 4 +UH 0 5 h 2388 10888 4 +UH 0 11 h 2434 11287 4 +PQ +SE +ID 2825 +TI 1760667400.547039747 +UH 0 25 l 2710 11083 4 +UH 0 14 h 2571 11409 4 +PQ +SE +ID 2826 +TI 1760667400.547057151 +UH 0 24 l 2887 10991 4 +UH 0 15 h 1641 11074 4 +UH 0 16 h 2668 10936 4 +PQ +SE +ID 2827 +TI 1760667400.547085762 +UH 0 64 l 2754 0 5 +UH 0 64 h 3572 0 5 +BD GR Veto +PQ +SE +ID 2828 +TI 1760667400.547094583 +UH 0 14 l 4708 9478 4 +UH 0 22 h 1665 9692 4 +UH 0 23 h 4708 9630 4 +UH 0 24 h 1558 9722 4 +PQ +SE +ID 2829 +TI 1760667400.547120571 +UH 0 45 l 3079 8357 4 +UH 0 46 l 1500 8579 4 +UH 0 47 l 1543 8829 4 +UH 0 48 l 4004 8952 4 +UH 0 36 h 4086 8750 4 +UH 0 37 h 2235 8950 4 +UH 0 38 h 2457 8840 4 +PQ +SE +ID 2830 +TI 1760667400.547150373 +UH 0 35 l 1597 5422 0 +UH 0 38 l 1937 10532 4 +UH 0 21 h 1646 11432 4 +UH 0 22 h 1948 11060 4 +UH 0 23 h 1637 4710 0 +PQ +SE +ID 2831 +TI 1760667400.547179222 +UH 0 64 l 1982 0 5 +UH 0 64 h 2036 0 5 +BD GR Veto +PQ +SE +ID 2832 +TI 1760667400.547188043 +UH 0 48 l 2515 11098 4 +UH 0 53 l 2338 10636 4 +UH 0 55 h 2671 10227 4 +UH 0 58 h 2291 10547 4 +PQ +SE +ID 2833 +TI 1760667400.547221422 +UH 0 64 h 1709 0 5 +BD GR Veto +PQ +SE +ID 2834 +TI 1760667400.547227621 +UH 0 30 l 1909 10881 4 +UH 0 31 l 3890 10666 4 +UH 0 11 h 4214 11225 4 +UH 0 12 h 1578 11168 4 +PQ +SE +ID 2835 +TI 1760667400.547250509 +UH 0 18 l 2193 8991 4 +UH 0 20 l 2099 8840 4 +UH 0 21 l 4547 9080 4 +UH 0 22 l 1615 9011 4 +UH 0 60 h 5619 8694 4 +PQ +SE +ID 2836 +TI 1760667400.547278881 +UH 0 31 l 2241 11222 4 +UH 0 26 h 2226 11172 4 +PQ +SE +ID 2837 +TI 1760667400.547296047 +UH 0 47 l 1577 4804 0 +UH 0 48 l 2061 10313 4 +UH 0 53 l 2691 10255 4 +UH 0 57 l 1557 5096 4 +UH 0 58 l 4542 4860 4 +UH 0 59 l 2760 5081 4 +UH 0 60 l 1579 1988 0 +UH 0 61 l 1655 2148 0 +UH 0 49 h 1712 10443 4 +UH 0 50 h 2536 10313 4 +UH 0 22 h 1662 5422 0 +UH 0 23 h 2160 10749 4 +UH 0 28 h 5700 5571 4 +PQ +SE +ID 2838 +TI 1760667400.547359466 +UH 0 19 l 1684 4648 0 +UH 0 26 l 1865 11410 4 +UH 0 24 h 1768 11567 4 +UH 0 31 h 1616 5264 0 +PQ +SE +ID 2839 +TI 1760667400.547389507 +UH 0 34 l 2814 9539 4 +UH 0 35 l 1580 5445 0 +UH 0 39 h 2896 9795 4 +PQ +SE +ID 2840 +TI 1760667400.547409772 +UH 0 61 l 2909 10583 4 +UH 0 62 l 1830 5269 0 +UH 0 64 l 2477 0 5 +UH 0 11 h 2862 11347 4 +UH 0 12 h 1756 11273 4 +UH 0 64 h 2525 0 5 +BD GR Veto +PQ +SE +ID 2841 +TI 1760667400.547437429 +UH 0 64 l 2261 0 5 +UH 0 19 h 2232 11444 4 +BD GR Veto +PQ +SE +ID 2842 +TI 1760667400.547450542 +UH 0 53 l 1864 4947 0 +UH 0 54 l 1690 5562 0 +UH 0 55 l 1778 4839 0 +UH 0 56 l 1776 5081 0 +UH 0 49 h 2486 10940 4 +UH 0 50 h 1762 10941 4 +PQ +SE +ID 2843 +TI 1760667400.547477722 +UH 0 64 l 1727 0 5 +UH 0 64 h 1895 0 5 +BD GR Veto +PQ +SE +ID 2844 +TI 1760667400.547486782 +UH 0 15 l 1662 8875 4 +UH 0 16 l 5036 8865 4 +UH 0 17 l 1577 8911 4 +UH 0 20 l 1712 2264 0 +UH 0 21 l 2013 8802 4 +UH 0 58 h 2044 8706 4 +UH 0 59 h 1573 8955 4 +UH 0 60 h 2205 8518 4 +UH 0 62 h 3974 8583 4 +UH 0 63 h 1976 8920 4 +PQ +SE +ID 2845 +TI 1760667400.547528266 +UH 0 5 l 1638 8889 4 +UH 0 6 l 4116 8931 4 +UH 0 64 l 1723 0 5 +UH 0 2 h 3234 9067 4 +UH 0 3 h 2543 8823 4 +UH 0 64 h 1740 0 5 +BD GR Veto +PQ +SE +ID 2846 +TI 1760667400.547555685 +UH 0 49 l 3302 10907 4 +UH 0 58 h 3266 10070 4 +PQ +SE +ID 2847 +TI 1760667400.547573328 +UH 0 50 l 1586 9742 4 +UH 0 51 l 4162 9751 4 +UH 0 60 l 1589 1822 0 +UH 0 61 l 1992 9138 4 +UH 0 33 h 1947 9385 4 +UH 0 0 h 3228 9812 4 +UH 0 1 h 2466 9819 4 +UH 0 64 h 1666 0 5 +BD GR Veto +PQ +SE +ID 2848 +TI 1760667400.547613143 +UH 0 49 l 2561 10640 4 +UH 0 26 h 2228 11522 4 +UH 0 27 h 1955 11303 4 +PQ +SE +ID 2849 +TI 1760667400.547633409 +UH 0 6 l 2330 11122 4 +UH 0 38 h 2366 10571 4 +PQ +SE +ID 2850 +TI 1760667400.547650814 +UH 0 64 h 1816 0 5 +BD GR Veto +PQ +SE +ID 2851 +TI 1760667400.547656774 +UH 0 46 l 1641 4813 0 +UH 0 23 h 1712 11513 4 +PQ +SE +ID 2852 +TI 1760667400.547673940 +UH 0 43 l 2471 10806 4 +UH 0 44 l 1961 10699 4 +UH 0 2 h 2090 11431 4 +UH 0 3 h 2604 11082 4 +PQ +SE +ID 2853 +TI 1760667400.547696352 +UH 0 61 l 2054 10707 4 +UH 0 36 h 2010 11139 4 +PQ +SE +ID 2854 +TI 1760667400.547713279 +UH 0 32 l 2050 10877 4 +UH 0 33 l 1891 4939 0 +UH 0 37 h 1911 11090 4 +UH 0 38 h 2036 10906 4 +PQ +SE +ID 2855 +TI 1760667400.547735452 +UH 0 49 l 2203 10805 4 +UH 0 8 h 1825 11863 4 +UH 0 9 h 1993 11474 4 +PQ +SE +ID 2856 +TI 1760667400.547755718 +UH 0 47 l 4321 9309 4 +UH 0 49 l 1580 3612 0 +UH 0 50 l 2712 9115 4 +UH 0 58 l 1640 1247 0 +UH 0 59 l 1636 1528 0 +UH 0 60 l 1680 1353 0 +UH 0 61 l 1762 1540 0 +UH 0 62 l 1765 1552 0 +UH 0 63 l 1754 1330 0 +UH 0 1 h 3898 9285 4 +UH 0 2 h 2136 9504 4 +UH 0 3 h 2840 9198 4 +UH 0 4 h 1645 9687 4 +PQ +SE +ID 2857 +TI 1760667400.547803878 +UH 0 41 l 3828 9084 4 +UH 0 42 l 1610 9181 4 +UH 0 22 h 3902 9496 4 +PQ +SE +ID 2858 +TI 1760667400.547824144 +UH 0 47 l 3381 10713 4 +UH 0 58 l 1558 2350 0 +UH 0 60 l 1589 1762 0 +UH 0 61 l 1719 1539 0 +UH 0 62 l 1657 2333 0 +UH 0 63 l 1607 2295 0 +UH 0 33 h 1636 10495 4 +UH 0 34 h 3191 10592 4 +PQ +SE +ID 2859 +TI 1760667400.547860383 +UH 0 52 l 1641 8604 4 +UH 0 53 l 3168 8447 4 +UH 0 54 l 3180 8632 4 +UH 0 55 l 1507 5364 0 +UH 0 12 h 4086 9105 4 +UH 0 23 h 2293 9039 4 +PQ +SE +ID 2860 +TI 1760667400.547894001 +UH 0 54 l 1674 5438 0 +UH 0 61 h 1713 11656 4 +PQ +SE +ID 2861 +TI 1760667400.547911405 +UH 0 59 l 2868 9487 4 +UH 0 60 l 1574 9292 4 +UH 0 30 h 2379 10479 4 +UH 0 31 h 2046 9870 4 +PQ +SE +ID 2862 +TI 1760667400.547931432 +UH 0 64 l 2133 0 5 +UH 0 41 h 2170 11050 4 +BD GR Veto +PQ +SE +ID 2863 +TI 1760667400.547944784 +UH 0 29 l 2563 10703 4 +UH 0 40 h 2484 11029 4 +PQ +SE +ID 2864 +TI 1760667400.547962427 +UH 0 50 l 2234 10771 4 +UH 0 61 h 1873 11401 4 +UH 0 62 h 1962 11246 4 +PQ +SE +ID 2865 +TI 1760667400.547982931 +UH 0 64 l 2436 0 5 +UH 0 0 h 1628 5561 0 +UH 0 64 h 2397 0 5 +BD GR Veto +PQ +SE +ID 2866 +TI 1760667400.547995805 +UH 0 0 l 1737 5218 0 +UH 0 64 l 2061 0 5 +UH 0 55 h 1738 4178 0 +UH 0 56 h 2156 10977 4 +BD GR Veto +PQ +SE +ID 2867 +TI 1760667400.548015832 +UH 0 60 l 2278 10263 4 +UH 0 61 l 2235 10521 4 +UH 0 9 h 2364 11327 4 +UH 0 10 h 2068 11544 4 +PQ +SE +ID 2868 +TI 1760667400.548038721 +UH 0 25 l 1749 5204 0 +UH 0 26 l 2382 11019 4 +UH 0 27 l 1691 5379 0 +UH 0 28 l 2330 10700 4 +UH 0 37 h 2464 10930 4 +UH 0 40 h 2395 10612 4 +PQ +SE +ID 2869 +TI 1760667400.548070907 +UH 0 10 l 2071 10942 4 +UH 0 30 h 1687 5714 0 +UH 0 31 h 1840 10844 4 +PQ +SE +ID 2870 +TI 1760667400.548109292 +UH 0 36 l 1628 5159 0 +UH 0 37 l 1598 4689 0 +UH 0 38 l 2484 10819 4 +UH 0 45 h 1807 11244 4 +UH 0 46 h 1665 4634 0 +UH 0 50 h 2302 11036 4 +PQ +SE +ID 2871 +TI 1760667400.548143386 +UH 0 46 l 1856 10705 4 +UH 0 14 h 1901 11775 4 +PQ +SE +ID 2872 +TI 1760667400.548161029 +UH 0 55 l 1633 5106 0 +UH 0 7 l 3464 6008 4 +UH 0 8 l 2336 6069 4 +UH 0 64 l 4220 0 5 +UH 0 44 h 1710 4284 0 +UH 0 61 h 4111 6512 4 +UH 0 62 h 1745 1217 0 +UH 0 64 h 4056 0 5 +BD GR Veto +PQ +SE +ID 2873 +TI 1760667400.548202037 +UH 0 34 l 2905 10521 4 +UH 0 36 l 1840 10287 4 +UH 0 37 l 2638 10554 4 +UH 0 23 l 2854 10365 4 +UH 0 24 l 1794 10568 4 +UH 0 5 h 2854 11066 4 +UH 0 6 h 2889 11300 4 +UH 0 8 h 2931 11528 4 +PQ +SE +ID 2874 +TI 1760667400.548243045 +UH 0 37 l 1611 2730 0 +UH 0 3 l 4039 8789 4 +UH 0 4 l 1595 9095 4 +UH 0 50 h 4108 8664 4 +UH 0 51 h 1600 8931 4 +PQ +SE +ID 2875 +TI 1760667400.548273086 +UH 0 20 l 2473 10758 4 +UH 0 26 l 1690 5389 0 +UH 0 27 l 1893 10771 4 +UH 0 42 h 2076 10261 4 +UH 0 43 h 2144 10563 4 +UH 0 44 h 1600 5250 0 +PQ +SE +ID 2876 +TI 1760667400.548304557 +UH 0 57 l 2958 10752 4 +UH 0 7 h 3042 10813 4 +UH 0 8 h 1602 11235 4 +PQ +SE +ID 2877 +TI 1760667400.548324346 +UH 0 37 l 1782 5335 0 +UH 0 31 l 2441 11074 4 +UH 0 56 h 1797 5099 0 +UH 0 58 h 2221 10862 4 +UH 0 59 h 1739 11066 4 +PQ +SE +ID 2878 +TI 1760667400.548357486 +UH 0 4 l 2778 9634 4 +UH 0 5 l 2856 9556 4 +UH 0 6 l 1598 5365 0 +UH 0 7 l 2148 9751 4 +UH 0 29 h 3412 10150 4 +UH 0 31 h 2741 9644 4 +PQ +SE +ID 2879 +TI 1760667400.569575309 +UH 0 43 l 1653 4947 0 +UH 0 45 l 1873 10577 4 +UH 0 55 l 3666 10677 4 +UH 0 2 h 1752 4453 0 +UH 0 8 h 1919 11105 4 +UH 0 13 h 2239 10822 4 +UH 0 14 h 2996 10890 4 +PQ +SE +ID 2880 +TI 1760667400.569663286 +UH 0 64 l 1906 0 5 +UH 0 64 h 1934 0 5 +BD GR Veto +PQ +SE +ID 2881 +TI 1760667400.569672822 +UH 0 50 l 2527 10775 4 +UH 0 3 h 2435 10700 4 +UH 0 4 h 1759 11226 4 +PQ +SE +ID 2882 +TI 1760667400.569695472 +UH 0 50 l 4271 8996 4 +UH 0 51 l 1645 9231 4 +UH 0 27 l 2359 8747 4 +UH 0 35 h 2349 9180 4 +UH 0 23 h 4189 9254 4 +UH 0 24 h 1644 9337 4 +PQ +SE +ID 2883 +TI 1760667400.569739818 +UH 0 28 l 2914 10768 4 +UH 0 64 l 3269 0 5 +UH 0 19 h 2472 11355 4 +UH 0 20 h 1902 11132 4 +UH 0 64 h 3244 0 5 +BD GR Veto +PQ +SE +ID 2884 +TI 1760667400.569766044 +UH 0 64 l 1705 0 5 +UH 0 64 h 2529 0 5 +BD GR Veto +PQ +SE +ID 2885 +TI 1760667400.569774150 +UH 0 50 l 3558 10446 4 +UH 0 26 h 3484 11398 4 +PQ +SE +ID 2886 +TI 1760667400.569793224 +UH 0 51 l 1623 9241 4 +UH 0 52 l 3723 9035 4 +UH 0 53 l 1638 9120 4 +UH 0 56 l 1659 3869 0 +UH 0 57 l 2077 8922 4 +UH 0 58 l 2116 8737 4 +UH 0 59 l 2002 8946 4 +UH 0 33 h 1591 2596 0 +UH 0 35 h 2003 9322 4 +UH 0 36 h 2942 9353 4 +UH 0 31 h 3702 9226 4 +PQ +SE +ID 2887 +TI 1760667400.569848537 +UH 0 50 l 2605 10318 4 +UH 0 51 l 2569 10469 4 +UH 0 53 l 1820 4823 0 +UH 0 6 h 3600 11208 4 +UH 0 7 h 1863 11203 4 +PQ +SE +ID 2888 +TI 1760667400.569877862 +UH 0 49 l 1645 4483 0 +UH 0 0 h 1766 11410 4 +PQ +SE +ID 2889 +TI 1760667400.569893360 +UH 0 38 l 2012 10890 4 +UH 0 39 l 2979 10745 4 +UH 0 57 h 3454 10783 4 +PQ +SE +ID 2890 +TI 1760667400.569913625 +UH 0 45 l 2469 10816 4 +UH 0 32 h 1578 4446 0 +UH 0 33 h 2375 10002 4 +PQ +SE +ID 2891 +TI 1760667400.569934368 +UH 0 39 l 2247 10767 4 +UH 0 39 h 2275 10816 4 +PQ +SE +ID 2892 +TI 1760667400.569952964 +UH 0 52 l 1779 5380 0 +UH 0 39 h 1816 10810 4 +PQ +SE +ID 2893 +TI 1760667400.569970846 +UH 0 15 l 1817 10823 4 +UH 0 16 l 3732 10884 4 +UH 0 56 h 3759 10589 4 +UH 0 58 h 1753 4477 0 +PQ +SE +ID 2894 +TI 1760667400.569998741 +UH 0 33 l 2320 10223 4 +UH 0 29 l 3896 10910 4 +UH 0 30 l 2560 11122 4 +UH 0 35 h 1668 10567 4 +UH 0 36 h 3649 10542 4 +UH 0 37 h 2628 10822 4 +UH 0 40 h 1937 10684 4 +UH 0 41 h 1915 10960 4 +PQ +SE +ID 2895 +TI 1760667400.570040464 +UH 0 40 l 1878 10758 4 +UH 0 25 l 3468 11083 4 +UH 0 50 h 1982 11054 4 +UH 0 55 h 3484 10784 4 +PQ +SE +ID 2896 +TI 1760667400.570074319 +UH 0 34 l 2960 10627 4 +UH 0 35 l 2272 10916 4 +UH 0 18 h 2254 10942 4 +UH 0 19 h 2923 11128 4 +PQ +SE +ID 2897 +TI 1760667400.570096015 +UH 0 48 l 1599 5420 0 +UH 0 16 h 1653 5573 0 +PQ +SE +ID 2898 +TI 1760667400.570114374 +UH 0 39 l 1773 10980 4 +UH 0 53 h 1755 5077 0 +PQ +SE +ID 2899 +TI 1760667400.570132970 +UH 0 51 l 1721 5474 0 +UH 0 33 h 1627 3850 0 +PQ +SE +ID 2900 +TI 1760667400.570151329 +UH 0 45 l 3177 10738 4 +UH 0 1 h 2031 11344 4 +UH 0 2 h 2854 11263 4 +PQ +SE +ID 2901 +TI 1760667400.570174455 +UH 0 11 l 3095 10010 4 +UH 0 21 l 3036 10991 4 +UH 0 32 h 2694 10408 4 +UH 0 25 h 2861 11163 4 +UH 0 31 h 1733 10371 4 +PQ +SE +ID 2902 +TI 1760667400.570212841 +UH 0 58 l 2326 10572 4 +UH 0 64 l 2133 0 5 +UH 0 59 h 2313 11059 4 +UH 0 64 h 2177 0 5 +BD GR Veto +PQ +SE +ID 2903 +TI 1760667400.570237874 +UH 0 59 l 2707 10678 4 +UH 0 60 l 2009 10469 4 +UH 0 28 l 2326 3116 4 +UH 0 42 h 2235 3311 4 +UH 0 16 h 3137 11010 4 +PQ +SE +ID 2904 +TI 1760667400.570275068 +UH 0 14 l 1721 5357 0 +UH 0 4 h 1723 5307 0 +PQ +SE +ID 2905 +TI 1760667400.570293188 +UH 0 44 l 3648 9299 4 +UH 0 45 l 1545 9377 4 +UH 0 1 h 3574 9712 4 +UH 0 2 h 1769 9872 4 +PQ +SE +ID 2906 +TI 1760667400.570317506 +UH 0 28 l 2893 11153 4 +UH 0 32 h 2743 11034 4 +PQ +SE +ID 2907 +TI 1760667400.570339679 +UH 0 63 l 2095 10675 4 +UH 0 18 h 2190 11196 4 +PQ +SE +ID 2908 +TI 1760667400.570356845 +UH 0 53 l 3031 10785 4 +UH 0 52 h 2989 11113 4 +PQ +SE +ID 2909 +TI 1760667400.570376157 +UH 0 12 l 3153 10398 4 +UH 0 6 h 2083 11362 4 +UH 0 7 h 2518 11276 4 +PQ +SE +ID 2910 +TI 1760667400.570397615 +UH 0 37 l 1811 10975 4 +UH 0 4 h 1870 10992 4 +PQ +SE +ID 2911 +TI 1760667400.570417881 +UH 0 39 l 3218 8512 4 +UH 0 40 l 1525 5320 0 +UH 0 44 h 3253 8741 4 +PQ +SE +ID 2912 +TI 1760667400.570440769 +UH 0 7 l 2229 10998 4 +UH 0 59 h 2075 11077 4 +UH 0 60 h 1654 10816 4 +PQ +SE +ID 2913 +TI 1760667400.570463418 +UH 0 29 l 1700 4182 0 +UH 0 30 l 1761 5514 0 +UH 0 12 h 1746 11149 4 +PQ +SE +ID 2914 +TI 1760667400.570483207 +UH 0 30 l 2578 11028 4 +UH 0 31 l 3343 10860 4 +UH 0 54 h 1652 11197 4 +UH 0 55 h 4406 10749 4 +PQ +SE +ID 2915 +TI 1760667400.570505142 +UH 0 45 l 1727 4690 0 +UH 0 64 l 2013 0 5 +BD GR Veto +PQ +SE +ID 2916 +TI 1760667400.570518732 +UH 0 40 l 2745 10784 4 +UH 0 10 h 2571 11287 4 +UH 0 11 h 1832 11220 4 +PQ +SE +ID 2917 +TI 1760667400.570539236 +UH 0 30 l 4321 11062 4 +UH 0 36 h 4342 11058 4 +PQ +SE +ID 2918 +TI 1760667400.570557355 +UH 0 35 l 2867 10819 4 +UH 0 36 l 1695 10612 4 +UH 0 4 h 2634 10951 4 +UH 0 5 h 1959 10820 4 +PQ +SE +ID 2919 +TI 1760667400.570580244 +UH 0 28 l 2558 10789 4 +UH 0 29 l 4366 10805 4 +UH 0 30 l 1903 11045 4 +UH 0 48 h 4451 10833 4 +UH 0 49 h 1577 10901 4 +UH 0 50 h 2012 10824 4 +UH 0 51 h 2315 10907 4 +PQ +SE +ID 2920 +TI 1760667400.570617914 +UH 0 37 l 2207 10750 4 +UH 0 38 l 1657 4885 0 +UH 0 35 h 2373 11084 4 +PQ +SE +ID 2921 +TI 1760667400.570638418 +UH 0 57 l 2805 10712 4 +UH 0 26 h 2797 11144 4 +PQ +SE +ID 2922 +TI 1760667400.570656538 +UH 0 6 l 2358 11058 4 +UH 0 33 h 2295 10341 4 +PQ +SE +ID 2923 +TI 1760667400.570674657 +UH 0 18 l 2443 10455 4 +UH 0 19 l 2998 10746 4 +UH 0 37 h 1640 4872 0 +UH 0 38 h 3847 11182 4 +PQ +SE +ID 2924 +TI 1760667400.570697546 +UH 0 20 l 1815 4600 0 +UH 0 23 h 1717 11566 4 +PQ +SE +ID 2925 +TI 1760667400.570716142 +UH 0 8 l 1667 8818 4 +UH 0 9 l 4461 8713 4 +UH 0 10 l 1638 8805 4 +UH 0 56 h 4393 9199 4 +PQ +SE +ID 2926 +TI 1760667400.570739269 +UH 0 20 l 2079 10583 4 +UH 0 64 l 2415 0 5 +UH 0 0 h 2903 11204 4 +BD GR Veto +PQ +SE +ID 2927 +TI 1760667400.570758342 +UH 0 21 l 2139 11207 4 +UH 0 37 h 1806 4999 0 +UH 0 38 h 1926 10959 4 +PQ +SE +ID 2928 +TI 1760667400.570778846 +UH 0 64 l 3643 0 5 +UH 0 64 h 3626 0 5 +BD GR Veto +PQ +SE +ID 2929 +TI 1760667400.570787429 +UH 0 30 l 1779 5371 0 +UH 0 44 h 1746 11185 4 +PQ +SE +ID 2930 +TI 1760667400.570806026 +UH 0 32 l 1787 4833 0 +UH 0 44 h 1727 11136 4 +PQ +SE +ID 2931 +TI 1760667400.570821523 +UH 0 3 l 3170 10817 4 +UH 0 21 h 3123 11006 4 +PQ +SE +ID 2932 +TI 1760667400.570840358 +UH 0 33 l 2656 10494 4 +UH 0 36 l 2235 10464 4 +UH 0 39 h 2700 10964 4 +UH 0 41 h 2214 11308 4 +PQ +SE +ID 2933 +TI 1760667400.570870876 +UH 0 59 l 1674 4928 0 +UH 0 52 h 1731 11652 4 +PQ +SE +ID 2934 +TI 1760667400.570889234 +UH 0 21 l 2159 11011 4 +UH 0 55 h 2167 10869 4 +UH 0 56 h 1621 4223 0 +PQ +SE +ID 2935 +TI 1760667400.570910215 +UH 0 1 l 2680 11124 4 +UH 0 36 h 2074 11022 4 +UH 0 37 h 2167 11187 4 +PQ +SE +ID 2936 +TI 1760667400.570932149 +UH 0 52 l 2171 10884 4 +UH 0 64 l 1865 0 5 +UH 0 0 h 1880 10941 4 +UH 0 2 h 2192 11175 4 +BD GR Veto +PQ +SE +ID 2937 +TI 1760667400.570955991 +UH 0 64 h 2164 0 5 +BD GR Veto +PQ +SE +ID 2938 +TI 1760667400.570961952 +UH 0 18 l 1691 4972 0 +UH 0 20 l 2236 10778 4 +UH 0 34 h 1600 4625 0 +UH 0 39 h 2214 10720 4 +PQ +SE +ID 2939 +TI 1760667400.570992946 +UH 0 30 l 2537 11166 4 +UH 0 15 h 2554 11471 4 +PQ +SE +ID 2940 +TI 1760667400.571011304 +UH 0 59 l 1575 3747 0 +UH 0 60 l 1607 5064 0 +UH 0 61 l 1694 4440 0 +UH 0 62 l 1696 10349 4 +UH 0 63 l 2313 10221 4 +UH 0 64 l 3000 0 5 +UH 0 33 h 2020 9850 4 +UH 0 34 h 1583 3433 0 +UH 0 64 h 4672 0 5 +BD GR Veto +PQ +SE +ID 2941 +TI 1760667400.571049213 +UH 0 37 l 2735 10833 4 +UH 0 43 h 2682 10614 4 +PQ +SE +ID 2942 +TI 1760667400.571066856 +UH 0 12 l 2085 10609 4 +UH 0 4 h 2028 11180 4 +PQ +SE +ID 2943 +TI 1760667400.590794563 +UH 0 63 l 2323 10392 4 +UH 0 15 h 2420 11486 4 +PQ +SE +ID 2944 +TI 1760667400.590859413 +UH 0 2 l 2145 10584 4 +UH 0 31 h 2108 10988 4 +UH 0 64 h 1772 0 5 +BD GR Veto +PQ +SE +ID 2945 +TI 1760667400.590904951 +UH 0 63 l 1854 10843 4 +UH 0 64 l 3378 0 5 +UH 0 45 h 3144 11053 4 +UH 0 64 h 2108 0 5 +BD GR Veto +PQ +SE +ID 2946 +TI 1760667400.590949535 +UH 0 43 l 2921 10951 4 +UH 0 44 l 1917 10836 4 +UH 0 4 h 3336 11213 4 +UH 0 5 h 1666 11135 4 +PQ +SE +ID 2947 +TI 1760667400.590997934 +UH 0 0 l 2633 10838 4 +UH 0 12 h 2555 11177 4 +PQ +SE +ID 2948 +TI 1760667400.591031789 +UH 0 2 l 1660 5300 0 +UH 0 3 l 1643 4444 0 +UH 0 9 h 1732 11672 4 +PQ +SE +ID 2949 +TI 1760667400.591079711 +UH 0 32 l 1959 10606 4 +UH 0 9 h 1927 11420 4 +PQ +SE +ID 2950 +TI 1760667400.591117143 +UH 0 64 h 1918 0 5 +BD GR Veto +PQ +SE +ID 2951 +TI 1760667400.591128349 +UH 0 27 l 1627 8842 4 +UH 0 28 l 5263 8753 4 +UH 0 29 l 2137 8967 4 +UH 0 25 h 2729 9285 4 +UH 0 26 h 2591 9421 4 +UH 0 28 h 2161 9093 4 +UH 0 31 h 2606 8785 4 +PQ +SE +ID 2952 +TI 1760667400.591212987 +UH 0 2 l 4643 8638 4 +UH 0 3 l 1574 8659 4 +UH 0 34 h 1639 8602 4 +UH 0 35 h 2086 8715 4 +UH 0 36 h 3852 8732 4 +PQ +SE +ID 2953 +TI 1760667400.591265678 +UH 0 63 l 1526 5570 0 +UH 0 64 l 1773 0 5 +UH 0 64 h 2361 0 5 +BD GR Veto +PQ +SE +ID 2954 +TI 1760667400.591293096 +UH 0 48 l 2579 10979 4 +UH 0 9 h 2629 10695 4 +PQ +SE +ID 2955 +TI 1760667400.591330766 +UH 0 61 l 2233 10492 4 +UH 0 25 h 2111 11393 4 +PQ +SE +ID 2956 +TI 1760667400.591349363 +UH 0 20 l 1765 4616 0 +UH 0 21 l 1604 5029 0 +UH 0 58 h 1710 5196 0 +PQ +SE +ID 2957 +TI 1760667400.591368913 +UH 0 44 l 1506 8650 4 +UH 0 45 l 2982 8518 4 +UH 0 49 l 2075 8509 4 +UH 0 50 l 2156 8391 4 +UH 0 7 h 4379 8927 4 +PQ +SE +ID 2958 +TI 1760667400.591406583 +UH 0 2 l 3620 10707 4 +UH 0 3 l 1584 10691 4 +UH 0 15 l 2916 10314 4 +UH 0 16 l 2236 10471 4 +UH 0 27 l 1627 2274 0 +UH 0 28 l 1687 1480 0 +UH 0 29 l 1665 1681 0 +UH 0 30 l 1655 1593 0 +UH 0 31 l 1717 2303 0 +UH 0 4 h 3565 11391 4 +UH 0 18 h 2027 10892 4 +UH 0 19 h 3065 11129 4 +PQ +SE +ID 2959 +TI 1760667400.591459512 +UH 0 32 l 1648 8954 4 +UH 0 33 l 2514 8582 4 +UH 0 34 l 2931 8889 4 +UH 0 31 l 3259 9190 4 +UH 0 3 h 3176 8978 4 +UH 0 4 h 2385 9418 4 +UH 0 6 h 3247 9277 4 +PQ +SE +ID 2960 +TI 1760667400.591491222 +UH 0 14 l 2210 10986 4 +UH 0 25 h 2055 11332 4 +UH 0 26 h 1581 5526 0 +PQ +SE +ID 2961 +TI 1760667400.591511249 +UH 0 17 l 3129 10749 4 +UH 0 13 h 3112 11181 4 +PQ +SE +ID 2962 +TI 1760667400.591528415 +UH 0 62 l 1939 11035 4 +UH 0 63 l 1951 10841 4 +UH 0 64 l 1766 0 5 +UH 0 18 h 2418 11126 4 +UH 0 20 h 1722 11294 4 +UH 0 64 h 1849 0 5 +BD GR Veto +PQ +SE +ID 2963 +TI 1760667400.591566085 +UH 0 21 l 5737 8795 4 +UH 0 22 l 1618 8711 4 +UH 0 1 h 5199 8961 4 +UH 0 2 h 2083 9118 4 +PQ +SE +ID 2964 +TI 1760667400.591587781 +UH 0 47 l 1526 8911 4 +UH 0 48 l 3609 9183 4 +UH 0 49 l 3150 9117 4 +UH 0 50 l 1854 8982 4 +UH 0 21 h 1605 9505 4 +UH 0 22 h 2512 9141 4 +UH 0 23 h 1575 9172 4 +UH 0 24 h 4509 9041 4 +PQ +SE +ID 2965 +TI 1760667400.591620445 +UH 0 46 l 1512 8662 4 +UH 0 47 l 4608 8646 4 +UH 0 48 l 1549 8862 4 +UH 0 57 l 1597 1256 0 +UH 0 58 l 1636 1247 0 +UH 0 59 l 1645 1527 0 +UH 0 60 l 1682 1356 0 +UH 0 61 l 1772 1534 0 +UH 0 62 l 1762 1550 0 +UH 0 63 l 1766 1336 0 +UH 0 57 h 1590 9214 4 +UH 0 58 h 4514 8794 4 +PQ +SE +ID 2966 +TI 1760667400.591664075 +UH 0 11 l 1845 5038 0 +UH 0 31 h 1691 10996 4 +PQ +SE +ID 2967 +TI 1760667400.591681718 +UH 0 15 l 1777 4937 0 +UH 0 50 h 1755 11358 4 +UH 0 64 h 1685 0 5 +BD GR Veto +PQ +SE +ID 2968 +TI 1760667400.591701507 +UH 0 45 l 3477 10684 4 +UH 0 48 l 1949 10936 4 +UH 0 13 h 3512 10913 4 +UH 0 15 h 2081 11003 4 +PQ +SE +ID 2969 +TI 1760667400.591729879 +UH 0 49 l 2570 10865 4 +UH 0 33 h 1687 10525 4 +UH 0 34 h 2346 10618 4 +PQ +SE +ID 2970 +TI 1760667400.591749906 +UH 0 27 l 2409 10897 4 +UH 0 41 h 2060 10749 4 +UH 0 42 h 1870 10384 4 +PQ +SE +ID 2971 +TI 1760667400.591768980 +UH 0 10 l 2570 10704 4 +UH 0 47 h 2271 11014 4 +UH 0 48 h 1902 11122 4 +PQ +SE +ID 2972 +TI 1760667400.591788530 +UH 0 51 l 2688 10383 4 +UH 0 52 l 1602 5386 0 +UH 0 37 h 2400 10456 4 +UH 0 38 h 1875 10396 4 +PQ +SE +ID 2973 +TI 1760667400.591811418 +UH 0 64 l 3756 0 5 +UH 0 31 h 1996 10812 4 +UH 0 64 h 3202 0 5 +BD GR Veto +PQ +SE +ID 2974 +TI 1760667400.591826438 +UH 0 62 l 2165 10834 4 +UH 0 43 h 2142 11221 4 +PQ +SE +ID 2975 +TI 1760667400.591843843 +UH 0 44 l 1658 4820 0 +UH 0 45 l 1539 3719 0 +UH 0 53 l 1897 10994 4 +UH 0 54 l 1673 5263 0 +UH 0 36 h 2117 10775 4 +UH 0 49 h 1714 4918 0 +PQ +SE +ID 2976 +TI 1760667400.591880559 +UH 0 64 l 1675 0 5 +UH 0 64 h 2293 0 5 +BD GR Veto +PQ +SE +ID 2977 +TI 1760667400.591889142 +UH 0 34 l 3100 10406 4 +UH 0 35 l 2909 10634 4 +UH 0 54 h 4445 11001 4 +PQ +SE +ID 2978 +TI 1760667400.591908454 +UH 0 64 l 1683 0 5 +UH 0 28 h 1748 11503 4 +BD GR Veto +PQ +SE +ID 2979 +TI 1760667400.591921329 +UH 0 20 l 3668 10256 4 +UH 0 9 h 3608 11168 4 +PQ +SE +ID 2980 +TI 1760667400.591938972 +UH 0 6 l 2502 11062 4 +UH 0 4 h 2519 11453 4 +PQ +SE +ID 2981 +TI 1760667400.591957092 +UH 0 23 l 1859 5081 0 +UH 0 24 l 2170 11177 4 +UH 0 62 h 2239 10606 4 +PQ +SE +ID 2982 +TI 1760667400.591976404 +UH 0 44 l 2016 10598 4 +UH 0 50 h 2128 11030 4 +PQ +SE +ID 2983 +TI 1760667400.591993331 +UH 0 63 l 1561 5000 0 +UH 0 64 l 2369 0 5 +UH 0 14 h 2404 11453 4 +BD GR Veto +PQ +SE +ID 2984 +TI 1760667400.592010974 +UH 0 50 l 2771 10771 4 +UH 0 55 l 1564 5319 0 +UH 0 56 l 1548 4375 0 +UH 0 37 h 1717 4443 0 +UH 0 43 h 1980 10882 4 +UH 0 44 h 2289 10738 4 +PQ +SE +ID 2985 +TI 1760667400.592046737 +UH 0 48 l 2573 11041 4 +UH 0 57 h 2609 10858 4 +PQ +SE +ID 2986 +TI 1760667400.592063665 +UH 0 46 l 1728 5256 0 +UH 0 63 h 1817 11070 4 +PQ +SE +ID 2987 +TI 1760667400.592079639 +UH 0 19 l 1835 5265 0 +UH 0 20 l 1745 4782 0 +UH 0 22 l 1658 4334 0 +UH 0 27 l 2165 10634 4 +UH 0 56 h 2138 11286 4 +UH 0 58 h 1939 10948 4 +UH 0 59 h 1573 4190 0 +PQ +SE +ID 2988 +TI 1760667400.592134475 +UH 0 64 l 1749 0 5 +UH 0 64 h 1807 0 5 +BD GR Veto +PQ +SE +ID 2989 +TI 1760667400.592142820 +UH 0 33 l 3950 8306 4 +UH 0 34 l 1585 8556 4 +UH 0 36 l 2391 8527 4 +UH 0 38 l 2318 8774 4 +UH 0 1 h 2414 8965 4 +UH 0 4 h 3809 9107 4 +UH 0 5 h 1686 9046 4 +UH 0 8 h 2397 9158 4 +PQ +SE +ID 2990 +TI 1760667400.592188835 +UH 0 26 h 1584 5722 0 +PQ +SE +ID 2991 +TI 1760667400.592199325 +UH 0 26 l 2482 11293 4 +UH 0 49 h 2400 11103 4 +PQ +SE +ID 2992 +TI 1760667400.592216491 +UH 0 18 l 1880 10929 4 +UH 0 24 h 1604 4131 0 +UH 0 25 h 1728 11042 4 +PQ +SE +ID 2993 +TI 1760667400.592236995 +UH 0 8 l 3662 10237 4 +UH 0 23 h 3606 11034 4 +PQ +SE +ID 2994 +TI 1760667400.592254638 +UH 0 64 l 5640 0 5 +UH 0 64 h 5448 0 5 +BD GR Veto +PQ +SE +ID 2995 +TI 1760667400.592261791 +UH 0 64 l 2945 0 5 +UH 0 64 h 2632 0 5 +BD GR Veto +PQ +SE +ID 2996 +TI 1760667400.592269897 +UH 0 5 l 1650 4579 0 +UH 0 6 l 1969 10905 4 +UH 0 18 h 1832 11427 4 +UH 0 19 h 1719 5628 0 +PQ +SE +ID 2997 +TI 1760667400.592291831 +UH 0 17 l 2191 10943 4 +UH 0 51 h 2118 10562 4 +PQ +SE +ID 2998 +TI 1760667400.592309713 +UH 0 37 l 2481 10782 4 +UH 0 1 h 2525 11331 4 +PQ +SE +ID 2999 +TI 1760667400.592326641 +UH 0 35 l 2891 10833 4 +UH 0 11 h 2938 10830 4 +PQ +SE +ID 3000 +TI 1760667400.592344045 +UH 0 21 l 3387 11002 4 +UH 0 44 h 2603 11046 4 +UH 0 45 h 2242 11332 4 +PQ +SE +ID 3001 +TI 1760667400.592364072 +UH 0 43 l 1543 10475 4 +UH 0 44 l 2915 10166 4 +UH 0 1 h 2801 10563 4 +UH 0 2 h 1865 10672 4 +PQ +SE +ID 3002 +TI 1760667400.592386245 +UH 0 15 l 2152 10797 4 +UH 0 31 l 1603 2299 0 +UH 0 40 h 2069 11206 4 +PQ +SE +ID 3003 +TI 1760667400.592408657 +UH 0 12 l 2363 9704 4 +UH 0 13 l 1744 3656 0 +UH 0 17 l 4745 10023 4 +UH 0 24 h 2394 10043 4 +UH 0 25 h 1523 10159 4 +UH 0 26 h 1606 10277 4 +UH 0 27 h 4384 9955 4 +UH 0 28 h 1842 9848 4 +PQ +SE +ID 3004 +TI 1760667400.592445135 +UH 0 28 l 4347 10518 4 +UH 0 2 h 4325 11257 4 +UH 0 3 h 1703 3737 0 +PQ +SE +ID 3005 +TI 1760667400.592465162 +UH 0 19 l 2918 10941 4 +UH 0 27 l 1785 10589 4 +UH 0 28 l 2497 10805 4 +UH 0 41 h 2417 11055 4 +UH 0 42 h 1828 10651 4 +UH 0 43 h 2820 10687 4 +PQ +SE +ID 3006 +TI 1760667400.592497110 +UH 0 30 l 2075 11381 4 +UH 0 48 h 1755 10563 4 +UH 0 49 h 1824 10563 4 +PQ +SE +ID 3007 +TI 1760667400.613226890 +UH 0 8 l 1945 10751 4 +UH 0 9 l 2153 10688 4 +UH 0 10 l 1701 4980 0 +UH 0 11 l 1762 3867 0 +UH 0 26 h 2417 11446 4 +UH 0 27 h 1815 11332 4 +PQ +SE +ID 3008 +TI 1760667400.613309621 +UH 0 42 l 3836 11004 4 +UH 0 43 l 1677 11052 4 +UH 0 32 h 1920 10523 4 +UH 0 31 h 3557 10344 4 +PQ +SE +ID 3009 +TI 1760667400.613353967 +UH 0 49 l 3005 9436 4 +UH 0 50 l 1687 9441 4 +UH 0 60 l 4207 8953 4 +UH 0 27 h 1618 9581 4 +UH 0 28 h 3178 9420 4 +UH 0 29 h 1570 9570 4 +UH 0 30 h 2189 9715 4 +UH 0 31 h 3534 9057 4 +PQ +SE +ID 3010 +TI 1760667400.613420963 +UH 0 24 l 2341 10997 4 +UH 0 25 l 3397 11181 4 +UH 0 57 h 1623 10723 4 +UH 0 58 h 3193 10291 4 +UH 0 59 h 2215 10415 4 +PQ +SE +ID 3011 +TI 1760667400.613469362 +UH 0 62 l 2126 10976 4 +UH 0 32 h 1598 4581 0 +UH 0 33 h 1968 10450 4 +PQ +SE +ID 3012 +TI 1760667400.613508462 +UH 0 25 l 1709 5494 0 +UH 0 26 l 2569 11215 4 +UH 0 35 h 2606 11004 4 +PQ +SE +ID 3013 +TI 1760667400.613546848 +UH 0 6 l 2209 10873 4 +UH 0 34 h 2130 10979 4 +PQ +SE +ID 3014 +TI 1760667400.613580465 +UH 0 25 l 2307 10845 4 +UH 0 7 h 1623 4021 0 +UH 0 8 h 2222 11694 4 +PQ +SE +ID 3015 +TI 1760667400.613618135 +UH 0 6 l 2658 11043 4 +UH 0 48 h 2702 10513 4 +PQ +SE +ID 3016 +TI 1760667400.613652229 +UH 0 6 l 2451 10869 4 +UH 0 20 l 2365 10443 4 +UH 0 21 l 2358 10861 4 +UH 0 14 h 3048 11314 4 +UH 0 18 h 2460 10973 4 +PQ +SE +ID 3017 +TI 1760667400.613717079 +UH 0 45 l 2138 10814 4 +UH 0 19 h 2126 10989 4 +PQ +SE +ID 3018 +TI 1760667400.613749980 +UH 0 20 l 1685 8691 4 +UH 0 21 l 4548 8934 4 +UH 0 22 l 1620 8832 4 +UH 0 58 h 4399 9025 4 +PQ +SE +ID 3019 +TI 1760667400.613791942 +UH 0 64 l 3043 0 5 +UH 0 64 h 3030 0 5 +BD GR Veto +PQ +SE +ID 3020 +TI 1760667400.613807201 +UH 0 64 l 2248 0 5 +UH 0 64 h 2277 0 5 +BD GR Veto +PQ +SE +ID 3021 +TI 1760667400.613822221 +UH 0 48 l 3437 10950 4 +UH 0 5 h 3404 11101 4 +PQ +SE +ID 3022 +TI 1760667400.613858461 +UH 0 54 l 1776 11203 4 +UH 0 39 h 1656 4376 0 +UH 0 40 h 1755 11011 4 +PQ +SE +ID 3023 +TI 1760667400.613896369 +UH 0 1 l 2498 10966 4 +UH 0 2 l 1683 5327 0 +UH 0 12 l 2490 10483 4 +UH 0 13 l 2181 11013 4 +UH 0 14 l 1921 5079 0 +UH 0 64 l 2158 0 5 +UH 0 39 h 1920 10971 4 +UH 0 41 h 3039 11145 4 +UH 0 50 h 2751 11076 4 +UH 0 52 h 2042 11276 4 +BD GR Veto +PQ +SE +ID 3024 +TI 1760667400.613994598 +UH 0 54 l 2156 11007 4 +UH 0 55 l 2240 10744 4 +UH 0 64 l 1758 0 5 +UH 0 60 h 2175 10130 4 +UH 0 63 h 2347 10450 4 +UH 0 64 h 1817 0 5 +BD GR Veto +PQ +SE +ID 3025 +TI 1760667400.614024162 +UH 0 51 l 2692 10798 4 +UH 0 45 h 2561 11223 4 +PQ +SE +ID 3026 +TI 1760667400.614041805 +UH 0 23 l 1712 5019 0 +UH 0 24 l 1724 5057 0 +UH 0 7 h 1747 5506 0 +PQ +SE +ID 3027 +TI 1760667400.614061594 +UH 0 44 l 1703 5306 0 +UH 0 39 h 1831 10901 4 +PQ +SE +ID 3028 +TI 1760667400.614079236 +UH 0 55 l 2198 10788 4 +UH 0 17 h 2198 10887 4 +PQ +SE +ID 3029 +TI 1760667400.614100217 +UH 0 51 l 2845 10858 4 +UH 0 52 l 2131 10903 4 +UH 0 1 h 2787 11124 4 +UH 0 2 h 2064 11237 4 +UH 0 3 h 1747 10971 4 +PQ +SE +ID 3030 +TI 1760667400.614125728 +UH 0 56 l 1640 5255 0 +UH 0 57 l 2177 10542 4 +UH 0 59 l 2205 10392 4 +UH 0 6 h 2198 11399 4 +UH 0 8 h 2361 11555 4 +PQ +SE +ID 3031 +TI 1760667400.614155292 +UH 0 41 l 2101 8620 4 +UH 0 42 l 3556 8443 4 +UH 0 43 l 1514 8699 4 +UH 0 44 l 1683 8502 4 +UH 0 45 l 1734 8516 4 +UH 0 22 h 3280 8574 4 +UH 0 27 h 2947 8922 4 +PQ +SE +ID 3032 +TI 1760667400.614189386 +UH 0 15 l 1777 4379 0 +UH 0 16 l 1654 4675 0 +UH 0 17 l 1920 10526 4 +UH 0 25 h 1808 11389 4 +UH 0 26 h 1876 11483 4 +PQ +SE +ID 3033 +TI 1760667400.614213705 +UH 0 64 l 2770 0 5 +UH 0 64 h 2768 0 5 +BD GR Veto +PQ +SE +ID 3034 +TI 1760667400.614221572 +UH 0 34 l 2847 10568 4 +UH 0 38 l 1874 10761 4 +UH 0 41 h 2890 11234 4 +UH 0 45 h 1885 11180 4 +PQ +SE +ID 3035 +TI 1760667400.614253044 +UH 0 13 l 1712 5290 0 +UH 0 38 h 1755 4928 0 +PQ +SE +ID 3036 +TI 1760667400.614270687 +UH 0 19 l 3569 10948 4 +UH 0 3 h 2206 10556 4 +UH 0 4 h 2938 10982 4 +PQ +SE +ID 3037 +TI 1760667400.614290952 +UH 0 64 l 1632 0 5 +UH 0 64 h 1712 0 5 +BD GR Veto +PQ +SE +ID 3038 +TI 1760667400.614299535 +UH 0 55 l 2936 10805 4 +UH 0 58 h 2947 10194 4 +PQ +SE +ID 3039 +TI 1760667400.614316701 +UH 0 29 l 3622 10838 4 +UH 0 30 l 1738 11257 4 +UH 0 48 h 3449 10504 4 +UH 0 49 h 1896 10538 4 +PQ +SE +ID 3040 +TI 1760667400.614340066 +UH 0 38 l 2464 10849 4 +UH 0 39 l 2902 10746 4 +UH 0 60 h 3707 10605 4 +UH 0 61 h 1671 11154 4 +PQ +SE +ID 3041 +TI 1760667400.614362716 +UH 0 5 l 2549 10949 4 +UH 0 44 h 2488 10693 4 +PQ +SE +ID 3042 +TI 1760667400.614380598 +UH 0 29 l 2555 11048 4 +UH 0 22 h 2517 10735 4 +PQ +SE +ID 3043 +TI 1760667400.614398241 +UH 0 3 l 2031 10917 4 +UH 0 4 l 2889 11047 4 +UH 0 55 h 3497 10270 4 +PQ +SE +ID 3044 +TI 1760667400.614418506 +UH 0 41 l 1535 10263 4 +UH 0 42 l 3601 10129 4 +UH 0 19 h 3573 10519 4 +UH 0 64 h 1760 0 5 +BD GR Veto +PQ +SE +ID 3045 +TI 1760667400.614441156 +UH 0 36 l 2008 10662 4 +UH 0 23 l 2148 10724 4 +UH 0 25 l 2362 11126 4 +UH 0 44 h 2278 10655 4 +UH 0 45 h 1965 10881 4 +UH 0 57 h 1995 10853 4 +PQ +SE +ID 3046 +TI 1760667400.614480733 +UH 0 63 l 3514 10667 4 +UH 0 17 h 3355 11088 4 +PQ +SE +ID 3047 +TI 1760667400.614495038 +UH 0 26 l 2172 11138 4 +UH 0 60 h 1570 4355 0 +UH 0 61 h 1998 11264 4 +PQ +SE +ID 3048 +TI 1760667400.614515304 +UH 0 54 l 1725 5561 0 +UH 0 63 l 1602 4971 0 +UH 0 64 l 1701 0 5 +UH 0 37 h 1826 11243 4 +UH 0 48 h 1777 4621 0 +BD GR Veto +PQ +SE +ID 3049 +TI 1760667400.614546060 +UH 0 64 l 1930 0 5 +UH 0 64 h 1983 0 5 +BD GR Veto +PQ +SE +ID 3050 +TI 1760667400.614554166 +UH 0 47 l 2657 10691 4 +UH 0 62 l 1620 2262 0 +UH 0 63 l 1542 1761 0 +UH 0 58 h 2669 10945 4 +PQ +SE +ID 3051 +TI 1760667400.614578962 +UH 0 13 l 3453 10599 4 +UH 0 25 l 2346 10912 4 +UH 0 26 l 1814 11214 4 +UH 0 27 l 2850 10288 4 +UH 0 8 h 2966 11523 4 +UH 0 17 h 2210 10981 4 +UH 0 29 h 3364 11048 4 +PQ +SE +ID 3052 +TI 1760667400.614623546 +UH 0 32 l 2457 11062 4 +UH 0 41 h 1727 4325 0 +UH 0 42 h 2248 10202 4 +PQ +SE +ID 3053 +TI 1760667400.614643573 +UH 0 64 l 2631 0 5 +UH 0 64 h 2683 0 5 +BD GR Veto +PQ +SE +ID 3054 +TI 1760667400.614651679 +UH 0 18 l 2473 10327 4 +UH 0 23 h 2483 11232 4 +PQ +SE +ID 3055 +TI 1760667400.614668846 +UH 0 34 l 1618 5257 0 +PQ +SE +ID 3056 +TI 1760667400.614679336 +UH 0 43 l 2660 10846 4 +UH 0 64 l 4438 0 5 +UH 0 20 h 2638 10878 4 +UH 0 21 h 1614 11141 4 +UH 0 64 h 4281 0 5 +BD GR Veto +PQ +SE +ID 3057 +TI 1760667400.614703655 +UH 0 64 l 1749 0 5 +UH 0 64 h 1794 0 5 +BD GR Veto +PQ +SE +ID 3058 +TI 1760667400.614711761 +UH 0 4 l 1669 4407 0 +UH 0 9 l 2842 10482 4 +UH 0 56 h 2806 11074 4 +UH 0 58 h 1648 4278 0 +PQ +SE +ID 3059 +TI 1760667400.614741325 +UH 0 64 l 2250 0 5 +UH 0 64 h 2296 0 5 +BD GR Veto +PQ +SE +ID 3060 +TI 1760667400.614750146 +UH 0 42 l 1814 3748 0 +UH 0 43 l 1908 9380 4 +UH 0 45 l 1540 9144 4 +UH 0 46 l 3500 9270 4 +UH 0 52 h 3564 9390 4 +UH 0 58 h 2197 9068 4 +PQ +SE +ID 3061 +TI 1760667400.614787101 +UH 0 18 l 1741 5211 0 +UH 0 19 l 1707 4938 0 +UH 0 45 h 1833 11205 4 +PQ +SE +ID 3062 +TI 1760667400.614806890 +UH 0 37 l 2114 10778 4 +UH 0 42 l 3752 10853 4 +UH 0 34 h 1614 10563 4 +UH 0 35 h 4187 10613 4 +PQ +SE +ID 3063 +TI 1760667400.614834070 +UH 0 39 l 3282 8282 4 +UH 0 40 l 1521 5284 0 +UH 0 37 h 3292 8843 4 +PQ +SE +ID 3064 +TI 1760667400.614854335 +UH 0 45 l 1649 4572 0 +UH 0 26 h 1744 5746 0 +PQ +SE +ID 3065 +TI 1760667400.614871978 +UH 0 60 l 1891 8492 4 +UH 0 61 l 4073 8605 4 +UH 0 62 l 1618 5389 0 +UH 0 13 l 1695 5222 0 +UH 0 39 h 4378 8950 4 +UH 0 47 h 1717 4837 0 +PQ +SE +ID 3066 +TI 1760667400.614907979 +UH 0 64 l 2372 0 5 +UH 0 64 h 2412 0 5 +BD GR Veto +PQ +SE +ID 3067 +TI 1760667400.614916324 +UH 0 33 l 1677 6517 4 +UH 0 34 l 2443 6575 4 +UH 0 35 l 1737 1644 0 +UH 0 14 l 1690 5105 0 +UH 0 15 l 2104 10696 4 +UH 0 24 l 1767 5110 0 +UH 0 31 l 1604 2612 0 +UH 0 64 l 2455 0 5 +UH 0 54 h 2033 11207 4 +UH 0 60 h 2255 6317 4 +UH 0 61 h 1853 6609 4 +UH 0 62 h 1698 6697 4 +UH 0 63 h 1569 6730 4 +UH 0 64 h 2605 0 5 +BD GR Veto +PQ +SE +ID 3068 +TI 1760667400.614977121 +UH 0 39 l 1640 5071 0 +UH 0 41 l 2082 11139 4 +UH 0 45 h 2102 10790 4 +UH 0 47 h 1701 4431 0 +PQ +SE +ID 3069 +TI 1760667400.615005254 +UH 0 56 l 1554 5192 0 +UH 0 57 l 2704 8266 4 +UH 0 58 l 1564 8401 4 +UH 0 59 l 2954 8695 4 +UH 0 60 l 1840 8257 4 +UH 0 41 h 1799 8757 4 +UH 0 42 h 3042 8287 4 +UH 0 44 h 2741 8473 4 +PQ +SE +ID 3070 +TI 1760667400.615039587 +UH 0 12 l 1883 4704 0 +UH 0 14 l 2276 10943 4 +UH 0 48 h 2237 10656 4 +UH 0 50 h 1821 4192 0 +PQ +SE +ID 3071 +TI 1760667400.635742425 +UH 0 34 l 1968 9507 4 +UH 0 35 l 2706 9663 4 +UH 0 49 l 3976 9852 4 +UH 0 12 h 1533 9598 4 +UH 0 13 h 3937 9544 4 +UH 0 14 h 1602 9741 4 +UH 0 22 h 2225 9563 4 +UH 0 23 h 2530 9598 4 +PQ +SE +ID 3072 +TI 1760667400.635855436 +UH 0 35 l 2469 10337 4 +UH 0 37 l 3043 10290 4 +UH 0 0 h 4042 11108 4 +PQ +SE +ID 3073 +TI 1760667400.635895490 +UH 0 37 l 1840 10843 4 +UH 0 38 l 1624 4962 0 +UH 0 40 l 1615 5085 0 +UH 0 10 h 1970 11787 4 +UH 0 20 h 1716 5246 0 +PQ +SE +ID 3074 +TI 1760667400.635955810 +UH 0 10 l 2330 10536 4 +UH 0 48 h 2329 11017 4 +PQ +SE +ID 3075 +TI 1760667400.635996103 +UH 0 41 l 1522 5421 0 +UH 0 19 h 1566 5102 0 +PQ +SE +ID 3076 +TI 1760667400.636025667 +UH 0 15 l 2353 10418 4 +UH 0 30 l 1617 2153 0 +UH 0 31 l 1679 1589 0 +UH 0 4 h 2313 11651 4 +PQ +SE +ID 3077 +TI 1760667400.636064767 +UH 0 64 l 1848 0 5 +UH 0 64 h 2514 0 5 +BD GR Veto +PQ +SE +ID 3078 +TI 1760667400.636079788 +UH 0 38 l 1962 10860 4 +UH 0 55 h 2110 11029 4 +PQ +SE +ID 3079 +TI 1760667400.636121034 +UH 0 37 l 3167 10846 4 +UH 0 42 h 2921 10395 4 +UH 0 43 h 1775 10701 4 +PQ +SE +ID 3080 +TI 1760667400.636156082 +UH 0 64 l 1698 0 5 +UH 0 64 h 1757 0 5 +BD GR Veto +PQ +SE +ID 3081 +TI 1760667400.636170387 +UH 0 64 h 2150 0 5 +BD GR Veto +PQ +SE +ID 3082 +TI 1760667400.636180877 +UH 0 16 l 1911 10882 4 +UH 0 33 h 1922 10979 4 +PQ +SE +ID 3083 +TI 1760667400.636201381 +UH 0 52 l 3370 10824 4 +UH 0 12 h 3175 10727 4 +UH 0 13 h 1658 10897 4 +PQ +SE +ID 3084 +TI 1760667400.636222362 +UH 0 40 l 2907 10810 4 +UH 0 41 l 1574 11077 4 +UH 0 35 h 3000 10563 4 +UH 0 36 h 1657 10745 4 +PQ +SE +ID 3085 +TI 1760667400.636245727 +UH 0 58 l 1706 4614 0 +UH 0 8 h 1753 11783 4 +PQ +SE +ID 3086 +TI 1760667400.636267423 +UH 0 34 l 1576 5271 0 +UH 0 35 l 3366 8708 4 +UH 0 36 l 1636 8541 4 +UH 0 18 l 2529 8802 4 +UH 0 19 l 2763 8625 4 +UH 0 39 h 1927 8812 4 +UH 0 40 h 3103 8759 4 +UH 0 58 h 2667 8802 4 +UH 0 29 h 2457 8977 4 +PQ +SE +ID 3087 +TI 1760667400.636315584 +UH 0 37 l 1834 5314 0 +UH 0 1 h 1645 4805 0 +UH 0 2 h 1827 11930 4 +PQ +SE +ID 3088 +TI 1760667400.636338949 +UH 0 0 l 1729 10745 4 +UH 0 1 l 3428 10917 4 +UH 0 38 h 3612 11007 4 +PQ +SE +ID 3089 +TI 1760667400.636358261 +UH 0 52 l 2281 10783 4 +UH 0 53 l 2094 10822 4 +UH 0 49 h 2240 11155 4 +UH 0 50 h 2141 11072 4 +PQ +SE +ID 3090 +TI 1760667400.636382579 +UH 0 44 l 2146 10696 4 +UH 0 45 l 1715 5204 0 +UH 0 42 h 2443 10897 4 +PQ +SE +ID 3091 +TI 1760667400.636401891 +UH 0 48 l 3286 10894 4 +UH 0 58 l 1906 10323 4 +UH 0 59 l 1892 10529 4 +UH 0 33 h 2261 10693 4 +UH 0 51 h 3269 10977 4 +PQ +SE +ID 3092 +TI 1760667400.636435508 +UH 0 5 l 2134 10680 4 +UH 0 6 l 1650 5358 0 +UH 0 9 l 2240 10804 4 +UH 0 54 h 2155 10745 4 +UH 0 56 h 1685 4914 0 +UH 0 57 h 2028 10899 4 +PQ +SE +ID 3093 +TI 1760667400.636475324 +UH 0 64 l 1920 0 5 +UH 0 64 h 1980 0 5 +BD GR Veto +PQ +SE +ID 3094 +TI 1760667400.636483430 +UH 0 8 l 2344 11053 4 +UH 0 34 h 2174 10433 4 +PQ +SE +ID 3095 +TI 1760667400.636500597 +UH 0 26 l 3088 11323 4 +UH 0 58 h 2991 10866 4 +PQ +SE +ID 3096 +TI 1760667400.636518001 +UH 0 43 l 1541 9406 4 +UH 0 44 l 3771 9127 4 +UH 0 38 h 3900 9645 4 +PQ +SE +ID 3097 +TI 1760667400.636537551 +UH 0 13 l 2062 11079 4 +UH 0 4 h 2084 11149 4 +PQ +SE +ID 3098 +TI 1760667400.636554718 +UH 0 47 l 2656 10826 4 +UH 0 48 l 2021 11037 4 +UH 0 62 l 1618 1921 0 +UH 0 63 l 1576 2583 0 +UH 0 45 h 2047 10464 4 +UH 0 46 h 2670 10360 4 +PQ +SE +ID 3099 +TI 1760667400.636592388 +UH 0 10 l 3403 10557 4 +UH 0 11 l 2287 10318 4 +UH 0 22 l 1664 3945 0 +UH 0 23 l 1779 4839 0 +UH 0 53 h 3971 10926 4 +UH 0 54 h 1747 11144 4 +PQ +SE +ID 3100 +TI 1760667400.636630058 +UH 0 26 l 4497 10356 4 +UH 0 31 l 1783 9865 4 +UH 0 47 h 1838 9590 4 +UH 0 49 h 4423 9475 4 +UH 0 50 h 1646 9521 4 +PQ +SE +ID 3101 +TI 1760667400.636667251 +UH 0 39 l 2118 8692 4 +UH 0 43 l 1518 5488 0 +UH 0 44 l 3509 8662 4 +UH 0 36 h 2134 9029 4 +UH 0 41 h 2289 9200 4 +UH 0 42 h 2833 8809 4 +PQ +SE +ID 3102 +TI 1760667400.636709213 +UH 0 44 l 4413 10750 4 +UH 0 44 h 4288 10372 4 +UH 0 45 h 1658 10731 4 +PQ +SE +ID 3103 +TI 1760667400.636729240 +UH 0 56 l 2421 10861 4 +UH 0 57 l 2056 10618 4 +UH 0 28 h 3033 10961 4 +PQ +SE +ID 3104 +TI 1760667400.636747598 +UH 0 29 l 1655 5328 0 +UH 0 63 h 1641 5327 0 +PQ +SE +ID 3105 +TI 1760667400.636762380 +UH 0 46 l 2440 10720 4 +UH 0 47 l 2982 10824 4 +UH 0 60 l 1577 3134 0 +UH 0 61 l 1649 2119 0 +UH 0 62 l 1649 2208 0 +UH 0 63 l 1577 2183 0 +UH 0 62 h 4013 10243 4 +PQ +SE +ID 3106 +TI 1760667400.636792898 +UH 0 5 l 1753 4774 0 +UH 0 14 h 1721 5655 0 +PQ +SE +ID 3107 +TI 1760667400.636811256 +UH 0 29 l 4255 10815 4 +UH 0 30 l 2995 11185 4 +UH 0 51 h 2634 10915 4 +UH 0 52 h 2462 11002 4 +UH 0 53 h 3508 10817 4 +PQ +SE +ID 3108 +TI 1760667400.636835575 +UH 0 20 l 3538 10636 4 +UH 0 7 h 1867 10988 4 +UH 0 8 h 3174 11257 4 +PQ +SE +ID 3109 +TI 1760667400.636855363 +UH 0 4 l 2522 11072 4 +UH 0 5 l 3187 10861 4 +UH 0 64 l 3019 0 5 +UH 0 2 h 2075 11227 4 +UH 0 3 h 3265 10846 4 +UH 0 4 h 1945 11391 4 +UH 0 64 h 3000 0 5 +BD GR Veto +PQ +SE +ID 3110 +TI 1760667400.636893033 +UH 0 64 l 2291 0 5 +UH 0 64 h 2332 0 5 +BD GR Veto +PQ +SE +ID 3111 +TI 1760667400.636900901 +UH 0 44 l 4041 10488 4 +UH 0 59 h 3934 10504 4 +UH 0 60 h 1616 10318 4 +PQ +SE +ID 3112 +TI 1760667400.636919975 +UH 0 64 l 1689 0 5 +UH 0 64 h 2416 0 5 +BD GR Veto +PQ +SE +ID 3113 +TI 1760667400.636928558 +UH 0 0 l 1663 5200 0 +UH 0 11 h 1684 4512 0 +PQ +SE +ID 3114 +TI 1760667400.636943817 +UH 0 3 l 2417 10886 4 +UH 0 5 h 2372 10904 4 +PQ +SE +ID 3115 +TI 1760667400.636961460 +UH 0 64 l 3513 0 5 +UH 0 42 h 1860 10486 4 +UH 0 64 h 3154 0 5 +BD GR Veto +PQ +SE +ID 3116 +TI 1760667400.636976957 +UH 0 4 l 2331 11110 4 +UH 0 52 h 2302 10746 4 +PQ +SE +ID 3117 +TI 1760667400.636993885 +UH 0 48 l 4118 10869 4 +UH 0 49 l 2958 10839 4 +UH 0 57 h 1988 10759 4 +UH 0 58 h 4743 10349 4 +UH 0 59 h 1821 10588 4 +PQ +SE +ID 3118 +TI 1760667400.637017965 +UH 0 43 l 1732 10643 4 +UH 0 8 h 1832 11694 4 +PQ +SE +ID 3119 +TI 1760667400.637034654 +UH 0 64 l 2374 0 5 +UH 0 64 h 2419 0 5 +BD GR Veto +PQ +SE +ID 3120 +TI 1760667400.637042522 +UH 0 19 l 1836 10965 4 +UH 0 29 l 2611 11035 4 +UH 0 30 h 1936 11431 4 +UH 0 31 h 2359 10694 4 +PQ +SE +ID 3121 +TI 1760667400.637068271 +UH 0 39 l 1618 5187 0 +UH 0 40 l 2243 8754 4 +UH 0 41 l 4828 8808 4 +UH 0 42 l 1624 9011 4 +UH 0 11 h 3917 9443 4 +UH 0 12 h 3233 9343 4 +PQ +SE +ID 3122 +TI 1760667400.637095451 +UH 0 64 l 2379 0 5 +UH 0 64 h 2419 0 5 +BD GR Veto +PQ +SE +ID 3123 +TI 1760667400.637104034 +UH 0 14 l 2290 10658 4 +UH 0 18 l 2266 10668 4 +UH 0 19 l 1805 11042 4 +UH 0 26 l 2094 11544 4 +UH 0 34 h 1940 10401 4 +UH 0 36 h 2277 11019 4 +UH 0 39 h 2554 10657 4 +PQ +SE +ID 3124 +TI 1760667400.637150287 +UH 0 63 l 1900 10781 4 +UH 0 39 h 1845 10920 4 +UH 0 40 h 1679 4675 0 +UH 0 64 h 1798 0 5 +BD GR Veto +PQ +SE +ID 3125 +TI 1760667400.637169361 +UH 0 55 l 2420 10820 4 +UH 0 19 h 2442 10845 4 +PQ +SE +ID 3126 +TI 1760667400.637187004 +UH 0 64 l 2128 0 5 +UH 0 64 h 2172 0 5 +BD GR Veto +PQ +SE +ID 3127 +TI 1760667400.637195587 +UH 0 60 l 3150 9849 4 +UH 0 64 l 2221 0 5 +UH 0 19 h 2952 10725 4 +UH 0 20 h 1671 10545 4 +UH 0 64 h 3849 0 5 +BD GR Veto +PQ +SE +ID 3128 +TI 1760667400.637219905 +UH 0 64 l 2138 0 5 +UH 0 64 h 2161 0 5 +BD GR Veto +PQ +SE +ID 3129 +TI 1760667400.637227535 +UH 0 11 l 4006 10288 4 +UH 0 60 h 3849 10659 4 +PQ +SE +ID 3130 +TI 1760667400.637245178 +UH 0 14 l 2011 10796 4 +UH 0 18 h 1976 11463 4 +PQ +SE +ID 3131 +TI 1760667400.637262821 +UH 0 64 l 2852 0 5 +UH 0 64 h 2874 0 5 +BD GR Veto +PQ +SE +ID 3132 +TI 1760667400.637271642 +UH 0 11 l 2450 10395 4 +UH 0 63 h 2261 10493 4 +UH 0 64 h 1665 0 5 +BD GR Veto +PQ +SE +ID 3133 +TI 1760667400.637288331 +UH 0 35 l 2119 10605 4 +UH 0 36 l 1971 10325 4 +UH 0 42 l 1727 4986 0 +UH 0 43 l 2712 10468 4 +UH 0 22 h 2611 10828 4 +UH 0 25 h 2831 11249 4 +PQ +SE +ID 3134 +TI 1760667400.637324333 +UH 0 56 l 2162 10595 4 +UH 0 57 l 2364 10290 4 +UH 0 5 h 2880 11279 4 +UH 0 6 h 1665 5158 0 +PQ +SE +ID 3135 +TI 1760667400.655810594 +UH 0 41 l 1638 4188 0 +UH 0 42 l 2086 10168 4 +UH 0 44 l 2097 9845 4 +UH 0 45 l 2537 10268 4 +UH 0 46 l 1586 10192 4 +UH 0 47 l 2758 10427 4 +UH 0 48 l 1806 10460 4 +UH 0 61 l 1655 3251 0 +UH 0 62 l 1626 1779 0 +UH 0 63 l 1558 2028 0 +UH 0 11 h 1785 10799 4 +UH 0 12 h 2004 10605 4 +UH 0 14 h 2830 10712 4 +UH 0 15 h 2396 10963 4 +UH 0 16 h 2602 10868 4 +UH 0 17 h 1605 4456 0 +PQ +SE +ID 3136 +TI 1760667400.655988454 +UH 0 1 l 3366 11106 4 +UH 0 35 h 3311 10895 4 +PQ +SE +ID 3137 +TI 1760667400.656009674 +UH 0 26 l 1773 5630 0 +UH 0 48 h 1711 5143 0 +PQ +SE +ID 3138 +TI 1760667400.656026840 +UH 0 27 l 2717 10520 4 +UH 0 53 h 2646 11046 4 +PQ +SE +ID 3139 +TI 1760667400.656044483 +UH 0 41 l 2592 11059 4 +UH 0 17 h 2346 10883 4 +UH 0 18 h 1824 10781 4 +PQ +SE +ID 3140 +TI 1760667400.656063795 +UH 0 45 l 1535 8759 4 +UH 0 46 l 3838 8605 4 +UH 0 47 l 3195 8690 4 +UH 0 61 l 1738 1533 0 +UH 0 62 l 1717 1538 0 +UH 0 63 l 1667 1366 0 +UH 0 60 h 1657 8574 4 +UH 0 61 h 4482 8814 4 +UH 0 63 h 2586 8840 4 +PQ +SE +ID 3141 +TI 1760667400.656136512 +UH 0 64 l 2976 0 5 +UH 0 64 h 2956 0 5 +BD GR Veto +PQ +SE +ID 3142 +TI 1760667400.656149864 +UH 0 2 l 1976 11169 4 +UH 0 35 h 1925 11391 4 +PQ +SE +ID 3143 +TI 1760667400.656181097 +UH 0 60 l 1580 4858 0 +UH 0 61 l 2159 8410 4 +UH 0 62 l 1663 8795 4 +UH 0 63 l 5110 8518 4 +UH 0 64 l 1663 0 5 +UH 0 37 h 5646 9283 4 +BD GR Veto +PQ +SE +ID 3144 +TI 1760667400.656221389 +UH 0 14 l 1856 5045 0 +UH 0 7 h 1846 11724 4 +PQ +SE +ID 3145 +TI 1760667400.656239986 +UH 0 25 l 2342 11237 4 +UH 0 26 l 1791 5638 0 +UH 0 28 l 2112 11355 4 +UH 0 52 h 1679 4917 0 +UH 0 53 h 1934 11013 4 +UH 0 56 h 1678 4993 0 +UH 0 57 h 2123 11320 4 +UH 0 58 h 1731 11055 4 +PQ +SE +ID 3146 +TI 1760667400.656278848 +UH 0 45 l 1677 4961 0 +UH 0 30 h 1726 5718 0 +PQ +SE +ID 3147 +TI 1760667400.656295061 +UH 0 39 l 2373 10873 4 +UH 0 36 h 1650 4159 0 +UH 0 37 h 2325 11345 4 +PQ +SE +ID 3148 +TI 1760667400.656311750 +UH 0 34 l 2453 10506 4 +UH 0 32 h 1554 3746 0 +UH 0 33 h 2345 10790 4 +PQ +SE +ID 3149 +TI 1760667400.656329154 +UH 0 64 l 3266 0 5 +UH 0 64 h 3215 0 5 +BD GR Veto +PQ +SE +ID 3150 +TI 1760667400.656337976 +UH 0 53 l 2249 10813 4 +UH 0 54 l 3294 10915 4 +UH 0 11 h 2265 11198 4 +UH 0 12 h 3317 10965 4 +PQ +SE +ID 3151 +TI 1760667400.656362295 +UH 0 8 l 3727 10591 4 +UH 0 9 l 2109 10732 4 +UH 0 11 l 1855 4481 0 +UH 0 13 l 2136 10843 4 +UH 0 16 h 2184 11249 4 +UH 0 17 h 3865 11050 4 +UH 0 20 h 1783 11063 4 +PQ +SE +ID 3152 +TI 1760667400.656399965 +UH 0 39 l 3122 10814 4 +UH 0 43 l 2752 10842 4 +UH 0 46 h 2301 10459 4 +UH 0 47 h 2160 10372 4 +UH 0 48 h 3115 10548 4 +PQ +SE +ID 3153 +TI 1760667400.656428813 +UH 0 19 l 1659 9174 4 +UH 0 20 l 5621 8745 4 +UH 0 21 l 1618 9228 4 +UH 0 41 h 4991 9054 4 +UH 0 42 h 2297 8730 4 +PQ +SE +ID 3154 +TI 1760667400.656451940 +UH 0 29 l 1840 5357 0 +UH 0 4 h 1840 12013 4 +PQ +SE +ID 3155 +TI 1760667400.656470060 +UH 0 13 l 1718 5084 0 +UH 0 14 l 2198 10641 4 +UH 0 64 l 2431 0 5 +UH 0 2 h 1931 11534 4 +UH 0 3 h 2018 11223 4 +UH 0 64 h 2452 0 5 +BD GR Veto +PQ +SE +ID 3156 +TI 1760667400.656498670 +UH 0 26 l 3950 10387 4 +UH 0 27 l 2240 9915 4 +UH 0 38 h 2170 9593 4 +UH 0 21 h 1586 10061 4 +UH 0 22 h 3817 9673 4 +UH 0 23 h 1567 9835 4 +PQ +SE +ID 3157 +TI 1760667400.656529664 +UH 0 36 l 4440 8927 4 +UH 0 37 l 1683 9328 4 +UH 0 15 h 1608 9594 4 +UH 0 16 h 1853 9542 4 +UH 0 17 h 3997 9285 4 +UH 0 18 h 1610 9253 4 +PQ +SE +ID 3158 +TI 1760667400.656556129 +UH 0 64 h 1726 0 5 +BD GR Veto +PQ +SE +ID 3159 +TI 1760667400.656561851 +UH 0 11 l 5775 8906 4 +UH 0 12 l 1723 8952 4 +UH 0 50 h 2148 8948 4 +UH 0 51 h 5023 9020 4 +PQ +SE +ID 3160 +TI 1760667400.656584024 +UH 0 1 l 1944 10886 4 +UH 0 2 l 2645 10610 4 +UH 0 29 h 2562 11178 4 +UH 0 30 h 1901 11421 4 +PQ +SE +ID 3161 +TI 1760667400.656605482 +UH 0 64 l 2331 0 5 +UH 0 64 h 2367 0 5 +BD GR Veto +PQ +SE +ID 3162 +TI 1760667400.656612634 +UH 0 12 l 2511 10554 4 +UH 0 42 h 1633 4493 0 +UH 0 43 h 2309 10554 4 +PQ +SE +ID 3163 +TI 1760667400.656631231 +UH 0 61 l 2164 10519 4 +UH 0 51 h 1660 5457 0 +UH 0 52 h 1911 11198 4 +PQ +SE +ID 3164 +TI 1760667400.656650781 +UH 0 50 l 3055 10556 4 +UH 0 54 l 2147 10868 4 +UH 0 55 l 1722 10742 4 +UH 0 50 h 3130 10728 4 +UH 0 53 h 2447 10696 4 +PQ +SE +ID 3165 +TI 1760667400.656685113 +UH 0 53 l 2139 10219 4 +UH 0 56 l 2723 10830 4 +UH 0 57 l 1657 10637 4 +UH 0 58 l 2958 10355 4 +UH 0 59 l 2195 10602 4 +UH 0 21 h 4463 11134 4 +UH 0 22 h 2692 10861 4 +PQ +SE +ID 3166 +TI 1760667400.656718730 +UH 0 64 l 4435 0 5 +UH 0 64 h 4243 0 5 +BD GR Veto +PQ +SE +ID 3167 +TI 1760667400.656727552 +UH 0 64 l 5659 0 5 +UH 0 64 h 5447 0 5 +BD GR Veto +PQ +SE +ID 3168 +TI 1760667400.656735658 +UH 0 15 l 4380 9047 4 +UH 0 16 l 1587 9272 4 +UH 0 26 l 1775 1629 0 +UH 0 27 l 1740 1586 0 +UH 0 28 l 1754 1481 0 +UH 0 29 l 1825 1523 0 +UH 0 30 l 1824 1561 0 +UH 0 31 l 2001 1585 0 +UH 0 52 h 4296 9749 4 +PQ +SE +ID 3169 +TI 1760667400.656770706 +UH 0 50 l 2393 10722 4 +UH 0 54 h 2043 10364 4 +UH 0 55 h 1949 10019 4 +PQ +SE +ID 3170 +TI 1760667400.656790494 +UH 0 64 l 3110 0 5 +UH 0 9 h 1642 4849 0 +UH 0 10 h 1621 4922 0 +UH 0 64 h 2884 0 5 +BD GR Veto +PQ +SE +ID 3171 +TI 1760667400.656807899 +UH 0 64 l 2087 0 5 +UH 0 64 h 2142 0 5 +BD GR Veto +PQ +SE +ID 3172 +TI 1760667400.656816244 +UH 0 4 l 1718 5273 0 +UH 0 43 h 1683 5467 0 +PQ +SE +ID 3173 +TI 1760667400.656832933 +UH 0 4 l 2909 10624 4 +UH 0 5 l 2605 10457 4 +UH 0 13 h 3887 11176 4 +PQ +SE +ID 3174 +TI 1760667400.656852722 +UH 0 12 l 4271 10059 4 +UH 0 10 h 4109 11373 4 +UH 0 11 h 1648 11329 4 +PQ +SE +ID 3175 +TI 1760667400.656872272 +UH 0 5 l 2400 10990 4 +UH 0 8 l 3353 10793 4 +UH 0 33 h 2295 10470 4 +UH 0 38 h 3278 11075 4 +PQ +SE +ID 3176 +TI 1760667400.656903982 +UH 0 48 l 2107 11007 4 +UH 0 3 h 1844 11211 4 +UH 0 4 h 1986 11698 4 +PQ +SE +ID 3177 +TI 1760667400.656923532 +UH 0 27 l 1741 10493 4 +UH 0 28 l 3085 10642 4 +UH 0 12 h 2419 11228 4 +UH 0 13 h 2269 11259 4 +PQ +SE +ID 3178 +TI 1760667400.656945228 +UH 0 64 l 1989 0 5 +UH 0 64 h 3041 0 5 +BD GR Veto +PQ +SE +ID 3179 +TI 1760667400.656952857 +UH 0 64 l 1864 0 5 +UH 0 64 h 1917 0 5 +BD GR Veto +PQ +SE +ID 3180 +TI 1760667400.656960248 +UH 0 43 l 2368 10992 4 +UH 0 41 h 1780 10716 4 +UH 0 42 h 2195 10271 4 +PQ +SE +ID 3181 +TI 1760667400.656980037 +UH 0 3 l 1650 3682 0 +UH 0 5 l 1719 4066 0 +UH 0 6 l 1687 10618 4 +UH 0 7 l 3839 10371 4 +UH 0 64 l 2095 0 5 +UH 0 50 h 4065 10087 4 +UH 0 53 h 1589 5422 0 +UH 0 54 h 1700 10540 4 +UH 0 64 h 2132 0 5 +BD GR Veto +PQ +SE +ID 3182 +TI 1760667400.657019138 +UH 0 48 l 1873 10905 4 +UH 0 49 l 3201 10782 4 +UH 0 64 l 3527 0 5 +UH 0 15 h 1636 11322 4 +UH 0 16 h 3502 11178 4 +UH 0 64 h 3465 0 5 +BD GR Veto +PQ +SE +ID 3183 +TI 1760667400.657046318 +UH 0 61 l 2393 10799 4 +UH 0 33 h 2156 10147 4 +UH 0 34 h 1569 4123 0 +PQ +SE +ID 3184 +TI 1760667400.657065629 +UH 0 14 l 1964 5098 0 +UH 0 19 l 3743 10973 4 +UH 0 41 h 1899 10664 4 +UH 0 19 h 3649 11166 4 +PQ +SE +ID 3185 +TI 1760667400.657109498 +UH 0 12 l 2002 10693 4 +UH 0 48 h 1875 10709 4 +PQ +SE +ID 3186 +TI 1760667400.657136678 +UH 0 64 l 2047 0 5 +UH 0 64 h 2107 0 5 +BD GR Veto +PQ +SE +ID 3187 +TI 1760667400.657145261 +UH 0 0 l 2474 10562 4 +UH 0 1 l 1936 10723 4 +UH 0 3 l 2546 10479 4 +UH 0 4 l 3338 10720 4 +UH 0 6 h 1582 11070 4 +UH 0 7 h 3875 10847 4 +UH 0 9 h 3318 10870 4 +PQ +SE +ID 3188 +TI 1760667400.657176256 +UH 0 64 l 1844 0 5 +UH 0 64 h 1783 0 5 +BD GR Veto +PQ +SE +ID 3189 +TI 1760667400.657184600 +UH 0 47 l 2031 10840 4 +UH 0 34 h 1998 11007 4 +PQ +SE +ID 3190 +TI 1760667400.657201766 +UH 0 43 l 2390 10619 4 +UH 0 44 l 2528 10417 4 +UH 0 64 l 1646 0 5 +UH 0 16 h 1598 11129 4 +UH 0 17 h 3321 10892 4 +UH 0 64 h 1837 0 5 +BD GR Veto +PQ +SE +ID 3191 +TI 1760667400.657229661 +UH 0 64 l 2305 0 5 +UH 0 64 h 2342 0 5 +BD GR Veto +PQ +SE +ID 3192 +TI 1760667400.657237529 +UH 0 61 l 2291 10665 4 +UH 0 35 h 1692 3965 0 +UH 0 36 h 2106 10436 4 +PQ +SE +ID 3193 +TI 1760667400.657257318 +UH 0 5 l 2420 9241 4 +UH 0 16 l 1572 9641 4 +UH 0 17 l 3591 9720 4 +UH 0 18 l 2133 9459 4 +UH 0 19 l 2169 9871 4 +UH 0 34 h 3063 9492 4 +UH 0 36 h 2012 9852 4 +UH 0 19 h 2279 10295 4 +UH 0 24 h 1923 9924 4 +UH 0 25 h 2248 10126 4 +PQ +SE +ID 3194 +TI 1760667400.657310247 +UH 0 45 l 2234 10402 4 +UH 0 46 l 1877 10233 4 +UH 0 48 l 2978 10955 4 +UH 0 49 l 1775 4746 0 +UH 0 53 l 1702 5019 0 +UH 0 54 l 2443 10531 4 +UH 0 3 h 1913 10841 4 +UH 0 4 h 2033 11299 4 +UH 0 7 h 2108 10937 4 +UH 0 8 h 2811 11269 4 +UH 0 9 h 1947 10649 4 +UH 0 17 h 1849 11135 4 +UH 0 18 h 2282 10934 4 +PQ +SE +ID 3195 +TI 1760667400.657370567 +UH 0 22 l 2750 10963 4 +UH 0 54 h 2655 10661 4 +PQ +SE +ID 3196 +TI 1760667400.657387971 +UH 0 37 l 2106 10909 4 +UH 0 38 l 2293 10841 4 +UH 0 39 h 2964 10961 4 +PQ +SE +ID 3197 +TI 1760667400.657407283 +UH 0 51 l 2264 10892 4 +UH 0 52 l 3296 10815 4 +UH 0 21 h 3898 10767 4 +PQ +SE +ID 3198 +TI 1760667400.657426595 +UH 0 58 l 1560 5097 0 +PQ +SE +ID 3199 +TI 1760667400.674080610 +UH 0 41 l 2016 10724 4 +UH 0 42 l 1703 5112 0 +UH 0 43 l 2583 10918 4 +UH 0 46 l 1749 4783 0 +UH 0 56 h 1853 10889 4 +UH 0 59 h 2626 10799 4 +UH 0 60 h 1692 10712 4 +UH 0 61 h 2094 11180 4 +PQ +SE +ID 3200 +TI 1760667400.674157381 +UH 0 19 l 2028 10720 4 +UH 0 20 l 2459 10350 4 +UH 0 51 h 2764 11030 4 +PQ +SE +ID 3201 +TI 1760667400.674178838 +UH 0 8 l 3472 10851 4 +UH 0 44 h 3385 10249 4 +PQ +SE +ID 3202 +TI 1760667400.674196481 +UH 0 40 l 1602 5302 0 +UH 0 41 l 2273 11026 4 +UH 0 40 h 2342 11076 4 +UH 0 41 h 1682 4509 0 +PQ +SE +ID 3203 +TI 1760667400.674219369 +UH 0 14 l 1846 5247 0 +UH 0 18 l 1627 4905 0 +UH 0 20 l 2341 10671 4 +UH 0 46 h 1630 3395 0 +UH 0 49 h 1870 11042 4 +UH 0 52 h 2145 11134 4 +PQ +SE +ID 3204 +TI 1760667400.674268245 +UH 0 61 l 3115 10632 4 +UH 0 62 l 1725 10891 4 +UH 0 64 l 1957 0 5 +UH 0 36 h 3209 10555 4 +UH 0 64 h 3110 0 5 +BD GR Veto +PQ +SE +ID 3205 +TI 1760667400.674293756 +UH 0 25 l 3724 10728 4 +UH 0 27 l 1917 4742 0 +UH 0 28 l 2546 10704 4 +UH 0 0 h 2192 10370 4 +UH 0 1 h 1730 4321 0 +UH 0 2 h 1896 4558 0 +UH 0 5 h 3542 10432 4 +UH 0 6 h 1559 10528 4 +PQ +SE +ID 3206 +TI 1760667400.674331188 +UH 0 2 l 2444 10837 4 +UH 0 4 l 1821 5121 0 +UH 0 5 l 2063 10530 4 +UH 0 11 h 2331 11297 4 +UH 0 13 h 2403 11089 4 +PQ +SE +ID 3207 +TI 1760667400.674368619 +UH 0 55 l 1515 8714 4 +UH 0 56 l 4489 8915 4 +UH 0 57 l 2585 8440 4 +UH 0 58 l 1548 8487 4 +UH 0 10 h 4441 9138 4 +UH 0 12 h 2651 8985 4 +PQ +SE +ID 3208 +TI 1760667400.674397706 +UH 0 24 l 1788 5165 0 +UH 0 62 h 1749 5263 0 +PQ +SE +ID 3209 +TI 1760667400.674414873 +UH 0 64 l 1940 0 5 +UH 0 64 h 2011 0 5 +BD GR Veto +PQ +SE +ID 3210 +TI 1760667400.674422979 +UH 0 64 l 2000 0 5 +UH 0 64 h 2029 0 5 +BD GR Veto +PQ +SE +ID 3211 +TI 1760667400.674431324 +UH 0 40 l 1560 9798 4 +UH 0 41 l 4150 9839 4 +UH 0 42 l 1673 9935 4 +UH 0 45 l 2187 10130 4 +UH 0 44 h 2153 9603 4 +UH 0 45 h 1569 2185 0 +UH 0 48 h 3409 10148 4 +UH 0 49 h 2582 10114 4 +PQ +SE +ID 3212 +TI 1760667400.674474477 +UH 0 58 l 3736 10542 4 +UH 0 58 h 1997 10161 4 +UH 0 59 h 3197 10251 4 +PQ +SE +ID 3213 +TI 1760667400.674494504 +UH 0 45 l 2307 10633 4 +UH 0 43 h 2320 11098 4 +PQ +SE +ID 3214 +TI 1760667400.674511671 +UH 0 15 h 1616 5685 0 +PQ +SE +ID 3215 +TI 1760667400.674521684 +UH 0 42 l 2645 11058 4 +UH 0 25 h 2513 11081 4 +PQ +SE +ID 3216 +TI 1760667400.674539566 +UH 0 49 l 1918 10590 4 +UH 0 50 l 1740 4792 0 +UH 0 21 h 2174 11406 4 +PQ +SE +ID 3217 +TI 1760667400.674559593 +UH 0 63 l 1915 10688 4 +UH 0 64 l 1751 0 5 +UH 0 32 h 2146 11371 4 +BD GR Veto +PQ +SE +ID 3218 +TI 1760667400.674576044 +UH 0 64 l 4392 0 5 +UH 0 64 h 4274 0 5 +BD GR Veto +PQ +SE +ID 3219 +TI 1760667400.674583435 +UH 0 34 l 2682 10598 4 +UH 0 35 l 2793 10811 4 +UH 0 21 l 1665 4707 0 +UH 0 37 h 1658 10640 4 +UH 0 38 h 3884 10408 4 +UH 0 19 h 1622 4480 0 +PQ +SE +ID 3220 +TI 1760667400.674622535 +UH 0 64 l 1706 0 5 +UH 0 64 h 1739 0 5 +BD GR Veto +PQ +SE +ID 3221 +TI 1760667400.674630880 +UH 0 64 l 2155 0 5 +UH 0 30 h 2153 11575 4 +BD GR Veto +PQ +SE +ID 3222 +TI 1760667400.674643993 +UH 0 0 l 1605 5210 0 +UH 0 1 l 2070 10439 4 +UH 0 64 l 3550 0 5 +UH 0 31 h 2032 10650 4 +UH 0 64 h 3463 0 5 +BD GR Veto +PQ +SE +ID 3223 +TI 1760667400.674665689 +UH 0 24 l 1698 5084 0 +UH 0 25 l 2128 11386 4 +UH 0 31 h 2084 10598 4 +PQ +SE +ID 3224 +TI 1760667400.674686670 +UH 0 22 l 3052 10570 4 +UH 0 61 h 1629 11222 4 +UH 0 62 h 2986 10962 4 +PQ +SE +ID 3225 +TI 1760667400.674707889 +UH 0 47 l 2065 10942 4 +UH 0 48 l 2148 11038 4 +UH 0 7 h 2269 10907 4 +UH 0 8 h 2089 11251 4 +PQ +SE +ID 3226 +TI 1760667400.674730300 +UH 0 3 l 1715 4843 0 +UH 0 64 l 2956 0 5 +UH 0 4 h 1777 11127 4 +UH 0 64 h 2955 0 5 +BD GR Veto +PQ +SE +ID 3227 +TI 1760667400.674752473 +UH 0 64 l 2551 0 5 +UH 0 64 h 2540 0 5 +BD GR Veto +PQ +SE +ID 3228 +TI 1760667400.674760818 +UH 0 10 l 1635 5289 0 +UH 0 18 h 1655 4502 0 +PQ +SE +ID 3229 +TI 1760667400.674777746 +UH 0 42 l 2903 11010 4 +UH 0 1 h 2020 10965 4 +UH 0 2 h 2469 10930 4 +PQ +SE +ID 3230 +TI 1760667400.674798011 +UH 0 33 l 3708 8924 4 +UH 0 34 l 1796 9127 4 +UH 0 0 l 2098 8891 4 +UH 0 1 l 1800 3312 0 +UH 0 13 l 1691 2910 0 +UH 0 64 l 2265 0 5 +UH 0 12 h 1566 2425 0 +UH 0 16 h 2265 9569 4 +UH 0 17 h 1536 9500 4 +UH 0 18 h 4002 9065 4 +UH 0 64 h 2323 0 5 +BD GR Veto +PQ +SE +ID 3231 +TI 1760667400.674854516 +UH 0 29 l 2112 10662 4 +UH 0 64 l 1645 0 5 +UH 0 7 h 2157 11450 4 +UH 0 64 h 1698 0 5 +BD GR Veto +PQ +SE +ID 3232 +TI 1760667400.674880266 +UH 0 52 l 1597 5375 0 +PQ +SE +ID 3233 +TI 1760667400.674890518 +UH 0 44 l 1516 8885 4 +UH 0 45 l 2744 8762 4 +UH 0 46 l 5878 8672 4 +UH 0 47 l 1557 8927 4 +UH 0 50 l 2280 8867 4 +UH 0 57 l 1869 8816 4 +UH 0 19 h 1563 9246 4 +UH 0 20 h 7364 9001 4 +UH 0 21 h 1700 9234 4 +UH 0 22 h 1720 9103 4 +UH 0 23 h 2178 9169 4 +PQ +SE +ID 3234 +TI 1760667400.674945116 +UH 0 18 l 2204 10706 4 +UH 0 32 h 2136 10981 4 +PQ +SE +ID 3235 +TI 1760667400.674962282 +UH 0 28 l 2320 11291 4 +UH 0 6 h 2230 11202 4 +PQ +SE +ID 3236 +TI 1760667400.674980163 +UH 0 64 h 1878 0 5 +BD GR Veto +PQ +SE +ID 3237 +TI 1760667400.674985885 +UH 0 6 l 2396 10952 4 +UH 0 7 l 2114 10359 4 +UH 0 12 l 1716 4161 0 +UH 0 13 l 2326 10505 4 +UH 0 33 h 2250 10379 4 +UH 0 22 h 2165 10957 4 +UH 0 23 h 2390 10648 4 +UH 0 29 h 1610 4356 0 +PQ +SE +ID 3238 +TI 1760667400.675032377 +UH 0 33 l 2250 10295 4 +UH 0 34 l 1640 5279 0 +UH 0 50 h 2399 10428 4 +PQ +SE +ID 3239 +TI 1760667400.675051450 +UH 0 64 l 1940 0 5 +UH 0 64 h 1973 0 5 +BD GR Veto +PQ +SE +ID 3240 +TI 1760667400.675059318 +UH 0 63 l 2040 10914 4 +UH 0 22 h 1671 3888 0 +UH 0 23 h 2035 11059 4 +PQ +SE +ID 3241 +TI 1760667400.675076961 +UH 0 28 l 1726 4737 0 +UH 0 29 l 2769 10946 4 +UH 0 30 l 1648 11394 4 +UH 0 61 h 2463 10780 4 +UH 0 62 h 2082 10713 4 +PQ +SE +ID 3242 +TI 1760667400.675101280 +UH 0 63 l 1524 8497 4 +UH 0 64 l 4619 0 5 +UH 0 64 h 4424 0 5 +BD GR Veto +PQ +SE +ID 3243 +TI 1760667400.675115108 +UH 0 64 l 1638 0 5 +UH 0 64 h 1741 0 5 +BD GR Veto +PQ +SE +ID 3244 +TI 1760667400.675123214 +UH 0 55 l 1750 10901 4 +UH 0 49 h 1782 10570 4 +PQ +SE +ID 3245 +TI 1760667400.675141334 +UH 0 43 l 2088 11037 4 +UH 0 53 l 1626 4608 0 +UH 0 60 l 1644 4454 0 +UH 0 61 l 2079 10578 4 +UH 0 33 h 1567 5134 0 +UH 0 34 h 2043 10567 4 +UH 0 24 h 2080 11159 4 +UH 0 26 h 1625 5191 0 +PQ +SE +ID 3246 +TI 1760667400.675189018 +UH 0 64 h 1671 0 5 +BD GR Veto +PQ +SE +ID 3247 +TI 1760667400.675194978 +UH 0 46 l 3640 10685 4 +UH 0 30 l 2011 11262 4 +UH 0 49 h 1932 10549 4 +UH 0 58 h 1877 10645 4 +UH 0 59 h 3318 10719 4 +PQ +SE +ID 3248 +TI 1760667400.675229072 +UH 0 64 l 2020 0 5 +UH 0 64 h 2027 0 5 +BD GR Veto +PQ +SE +ID 3249 +TI 1760667400.675237178 +UH 0 18 l 4483 10575 4 +UH 0 42 h 4350 10288 4 +UH 0 43 h 1676 10633 4 +PQ +SE +ID 3250 +TI 1760667400.675258636 +UH 0 41 l 4230 9792 4 +UH 0 42 l 1850 9877 4 +UH 0 32 h 1847 9493 4 +UH 0 30 h 1572 10068 4 +UH 0 31 h 4216 9283 4 +PQ +SE +ID 3251 +TI 1760667400.675283908 +UH 0 5 l 2510 10543 4 +UH 0 6 l 1789 10997 4 +UH 0 6 h 2410 11058 4 +UH 0 10 h 1784 11046 4 +PQ +SE +ID 3252 +TI 1760667400.675312995 +UH 0 4 l 2412 10879 4 +UH 0 64 l 1651 0 5 +UH 0 38 h 2301 10719 4 +UH 0 39 h 1738 10536 4 +UH 0 64 h 1960 0 5 +BD GR Veto +PQ +SE +ID 3253 +TI 1760667400.675338745 +UH 0 11 l 2107 8446 4 +UH 0 12 l 5205 8284 4 +UH 0 13 l 1609 8872 4 +UH 0 64 l 1708 0 5 +UH 0 62 h 1769 9033 4 +UH 0 63 h 5447 8984 4 +BD GR Veto +PQ +SE +ID 3254 +TI 1760667400.675364017 +UH 0 29 l 3241 10743 4 +UH 0 24 h 1681 11127 4 +UH 0 25 h 2916 11247 4 +PQ +SE +ID 3255 +TI 1760667400.675384521 +UH 0 13 l 2299 10971 4 +UH 0 22 l 2287 10940 4 +UH 0 31 l 1668 4451 0 +UH 0 34 h 1797 10412 4 +UH 0 35 h 1895 10567 4 +UH 0 39 h 1730 4433 0 +UH 0 31 h 2251 10623 4 +PQ +SE +ID 3256 +TI 1760667400.675436973 +UH 0 44 l 1530 4766 0 +UH 0 45 l 1812 10734 4 +UH 0 53 h 1879 11260 4 +PQ +SE +ID 3257 +TI 1760667400.675457477 +UH 0 43 l 1510 5499 0 +UH 0 44 l 2738 8429 4 +UH 0 45 l 3570 8668 4 +UH 0 46 l 1854 8610 4 +UH 0 47 l 1819 3009 0 +UH 0 3 h 2656 8810 4 +UH 0 4 h 4043 9159 4 +UH 0 6 h 2009 9066 4 +PQ +SE +ID 3258 +TI 1760667400.675492286 +UH 0 44 l 2022 10288 4 +UH 0 45 l 1708 4443 0 +UH 0 46 l 1675 4650 0 +UH 0 47 l 1553 4731 0 +UH 0 15 h 1630 2939 0 +UH 0 16 h 2542 11367 4 +PQ +SE +ID 3259 +TI 1760667400.675519466 +UH 0 64 l 2524 0 5 +UH 0 64 h 2527 0 5 +BD GR Veto +PQ +SE +ID 3260 +TI 1760667400.675527095 +UH 0 19 l 2944 9555 4 +UH 0 64 l 4229 0 5 +UH 0 1 h 2969 9382 4 +UH 0 2 h 1622 9549 4 +UH 0 64 h 4081 0 5 +BD GR Veto +PQ +SE +ID 3261 +TI 1760667400.675551891 +UH 0 51 l 1851 11481 4 +UH 0 22 l 1804 10915 4 +UH 0 23 l 1906 5355 0 +UH 0 39 h 1904 11130 4 +UH 0 40 h 1700 11267 4 +UH 0 23 h 1785 11325 4 +PQ +SE +ID 3262 +TI 1760667400.675587892 +UH 0 2 l 1771 5036 0 +UH 0 38 h 1773 5408 0 +PQ +SE +ID 3263 +TI 1760667400.698605298 +UH 0 62 l 2982 10761 4 +UH 0 46 h 2606 10966 4 +PQ +SE +ID 3264 +TI 1760667400.698660135 +UH 0 38 l 1568 4753 0 +UH 0 49 l 2630 10840 4 +UH 0 50 l 2524 10703 4 +UH 0 24 l 1715 4911 0 +UH 0 25 l 2429 10935 4 +UH 0 41 h 2437 10892 4 +UH 0 43 h 1575 3948 0 +UH 0 50 h 3774 10680 4 +PQ +SE +ID 3265 +TI 1760667400.698718547 +UH 0 42 l 2304 10666 4 +UH 0 7 h 2350 11380 4 +PQ +SE +ID 3266 +TI 1760667400.698745012 +UH 0 12 l 2468 9393 4 +UH 0 13 l 4839 9764 4 +UH 0 25 h 1533 9909 4 +UH 0 26 h 4365 9938 4 +UH 0 27 h 2188 9805 4 +UH 0 30 h 1801 10253 4 +UH 0 31 h 1739 9662 4 +PQ +SE +ID 3267 +TI 1760667400.698802232 +UH 0 61 l 1696 5298 0 +UH 0 62 l 2210 10765 4 +UH 0 64 l 1907 0 5 +UH 0 45 h 2219 11076 4 +UH 0 64 h 1952 0 5 +BD GR Veto +PQ +SE +ID 3268 +TI 1760667400.698829650 +UH 0 53 l 2137 10934 4 +UH 0 31 h 2098 10383 4 +PQ +SE +ID 3269 +TI 1760667400.698847770 +UH 0 48 l 1717 4977 0 +UH 0 23 h 1773 11432 4 +PQ +SE +ID 3270 +TI 1760667400.698873996 +UH 0 33 l 1955 10730 4 +UH 0 31 h 1938 10998 4 +PQ +SE +ID 3271 +TI 1760667400.698904991 +UH 0 40 l 4644 10839 4 +UH 0 26 l 2566 10818 4 +UH 0 6 h 2452 11206 4 +UH 0 7 h 1957 11174 4 +UH 0 11 h 1778 10977 4 +UH 0 12 h 4050 10765 4 +PQ +SE +ID 3272 +TI 1760667400.698988914 +UH 0 3 l 2523 10850 4 +UH 0 54 h 2502 11133 4 +PQ +SE +ID 3273 +TI 1760667400.699037551 +UH 0 47 l 2805 10494 4 +UH 0 48 l 1701 10738 4 +UH 0 62 l 1636 1836 0 +UH 0 63 l 1564 2217 0 +UH 0 11 h 2974 11288 4 +UH 0 12 h 1613 4529 0 +PQ +SE +ID 3274 +TI 1760667400.699099540 +UH 0 25 l 2825 11086 4 +UH 0 57 h 2732 11293 4 +PQ +SE +ID 3275 +TI 1760667400.699133157 +UH 0 32 l 1658 5151 0 +UH 0 30 l 3076 10997 4 +UH 0 31 l 2100 10936 4 +UH 0 17 h 2116 11182 4 +UH 0 18 h 1787 11109 4 +UH 0 19 h 2798 11330 4 +PQ +SE +ID 3276 +TI 1760667400.699191331 +UH 0 20 l 2259 10312 4 +UH 0 21 l 1583 5201 0 +UH 0 20 h 2221 11105 4 +PQ +SE +ID 3277 +TI 1760667400.699253797 +UH 0 36 l 2055 10649 4 +UH 0 6 h 1936 11000 4 +UH 0 7 h 1640 4566 0 +PQ +SE +ID 3278 +TI 1760667400.699299335 +UH 0 40 l 2804 10799 4 +UH 0 12 h 1822 10912 4 +UH 0 13 h 2540 10957 4 +PQ +SE +ID 3279 +TI 1760667400.699345111 +UH 0 64 l 2779 0 5 +UH 0 64 h 2772 0 5 +BD GR Veto +PQ +SE +ID 3280 +TI 1760667400.699364185 +UH 0 25 l 1655 9123 4 +UH 0 26 l 4546 9182 4 +UH 0 31 l 2214 8632 4 +UH 0 33 h 1662 8408 4 +UH 0 34 h 4148 8457 4 +UH 0 31 h 2200 8797 4 +PQ +SE +ID 3281 +TI 1760667400.699448585 +UH 0 38 l 1544 5298 0 +UH 0 39 l 1876 4110 0 +UH 0 64 l 2071 0 5 +UH 0 61 h 1831 10176 4 +UH 0 64 h 2088 0 5 +BD GR Veto +PQ +SE +ID 3282 +TI 1760667400.699500560 +UH 0 64 l 2102 0 5 +UH 0 64 h 2140 0 5 +BD GR Veto +PQ +SE +ID 3283 +TI 1760667400.699516534 +UH 0 57 l 1667 5060 0 +UH 0 37 h 1757 11560 4 +PQ +SE +ID 3284 +TI 1760667400.699553489 +UH 0 13 l 2656 8752 4 +UH 0 18 l 1585 3526 0 +UH 0 19 l 2112 8930 4 +UH 0 24 l 1679 9151 4 +UH 0 25 l 4046 9067 4 +UH 0 6 h 1863 9364 4 +UH 0 7 h 2309 9289 4 +UH 0 23 h 4345 9102 4 +UH 0 24 h 1686 9176 4 +PQ +SE +ID 3285 +TI 1760667400.699664592 +UH 0 44 l 1530 9997 4 +UH 0 45 l 4186 9870 4 +UH 0 46 l 2816 9838 4 +UH 0 3 h 2697 9858 4 +UH 0 4 h 3517 10586 4 +UH 0 5 h 2519 10327 4 +PQ +SE +ID 3286 +TI 1760667400.699733018 +UH 0 14 l 2544 10906 4 +UH 0 7 h 2544 11341 4 +PQ +SE +ID 3287 +TI 1760667400.699767351 +UH 0 29 l 2703 10992 4 +UH 0 56 h 1724 10625 4 +UH 0 57 h 2437 10638 4 +PQ +SE +ID 3288 +TI 1760667400.699803113 +UH 0 57 l 2047 10321 4 +UH 0 58 l 1554 5133 0 +UH 0 34 h 2033 10477 4 +PQ +SE +ID 3289 +TI 1760667400.699841022 +UH 0 63 l 2096 10522 4 +UH 0 64 l 3080 0 5 +UH 0 34 h 1635 10842 4 +UH 0 35 h 2163 10926 4 +UH 0 64 h 2850 0 5 +BD GR Veto +PQ +SE +ID 3290 +TI 1760667400.699880123 +UH 0 7 l 1641 5315 0 +UH 0 60 h 1589 4926 0 +PQ +SE +ID 3291 +TI 1760667400.699910879 +UH 0 59 l 1563 5310 0 +UH 0 64 l 2283 0 5 +UH 0 64 h 2320 0 5 +BD GR Veto +PQ +SE +ID 3292 +TI 1760667400.699938535 +UH 0 10 l 1860 11222 4 +UH 0 60 h 1799 11112 4 +PQ +SE +ID 3293 +TI 1760667400.699969530 +UH 0 25 l 2328 11335 4 +UH 0 51 h 1575 4538 0 +UH 0 52 h 1952 10818 4 +UH 0 53 h 1719 10726 4 +PQ +SE +ID 3294 +TI 1760667400.700010061 +UH 0 12 l 1722 3356 0 +UH 0 13 l 2847 8870 4 +UH 0 15 l 1669 8695 4 +UH 0 16 l 4244 8652 4 +UH 0 17 l 1590 8727 4 +UH 0 32 h 1874 8809 4 +UH 0 29 h 2296 9087 4 +UH 0 30 h 1750 9315 4 +UH 0 31 h 4292 8604 4 +PQ +SE +ID 3295 +TI 1760667400.700075149 +UH 0 55 l 1627 5356 0 +UH 0 20 h 1726 5309 0 +PQ +SE +ID 3296 +TI 1760667400.700127601 +UH 0 9 l 2658 10821 4 +UH 0 19 h 2123 11401 4 +UH 0 20 h 1973 11149 4 +PQ +SE +ID 3297 +TI 1760667400.700158834 +UH 0 18 l 2842 10539 4 +UH 0 7 h 2047 11294 4 +UH 0 8 h 2367 11620 4 +PQ +SE +ID 3298 +TI 1760667400.700180053 +UH 0 36 l 2420 10382 4 +UH 0 39 l 1625 5225 0 +UH 0 40 l 2189 10386 4 +UH 0 12 h 2250 10665 4 +UH 0 13 h 2393 10505 4 +PQ +SE +ID 3299 +TI 1760667400.700242519 +UH 0 61 l 2266 10379 4 +UH 0 6 h 2157 11313 4 +PQ +SE +ID 3300 +TI 1760667400.700281143 +UH 0 48 l 2119 11097 4 +UH 0 36 h 2228 10985 4 +PQ +SE +ID 3301 +TI 1760667400.700313091 +UH 0 27 l 2034 10464 4 +UH 0 28 h 2031 11200 4 +PQ +SE +ID 3302 +TI 1760667400.700346469 +UH 0 64 l 1830 0 5 +UH 0 64 h 1873 0 5 +BD GR Veto +PQ +SE +ID 3303 +TI 1760667400.700361967 +UH 0 10 l 1770 4738 0 +UH 0 17 l 3422 10691 4 +UH 0 57 h 1640 4488 0 +UH 0 58 h 1633 3989 0 +UH 0 60 h 3406 10703 4 +PQ +SE +ID 3304 +TI 1760667400.700420618 +UH 0 24 l 2197 10853 4 +UH 0 45 h 2066 11316 4 +PQ +SE +ID 3305 +TI 1760667400.700454473 +UH 0 64 l 2898 0 5 +UH 0 64 h 2908 0 5 +BD GR Veto +PQ +SE +ID 3306 +TI 1760667400.700469255 +UH 0 64 l 2524 0 5 +UH 0 64 h 2533 0 5 +BD GR Veto +PQ +SE +ID 3307 +TI 1760667400.700485467 +UH 0 10 l 2216 10356 4 +UH 0 11 l 2086 10058 4 +UH 0 14 h 2571 11354 4 +PQ +SE +ID 3308 +TI 1760667400.700526952 +UH 0 31 l 4407 9950 4 +UH 0 2 h 1703 9942 4 +UH 0 3 h 4358 9532 4 +UH 0 4 h 1645 10074 4 +PQ +SE +ID 3309 +TI 1760667400.700569152 +UH 0 56 l 1942 10783 4 +UH 0 23 h 1966 11318 4 +PQ +SE +ID 3310 +TI 1760667400.700603485 +UH 0 34 l 1604 8397 4 +UH 0 35 l 5655 8462 4 +UH 0 36 l 1635 8302 4 +UH 0 46 h 2079 8793 4 +UH 0 47 h 5136 8646 4 +PQ +SE +ID 3311 +TI 1760667400.700651168 +UH 0 34 l 2097 10739 4 +UH 0 48 h 2081 10944 4 +PQ +SE +ID 3312 +TI 1760667400.700687408 +UH 0 30 l 2724 11287 4 +UH 0 24 h 2661 10732 4 +PQ +SE +ID 3313 +TI 1760667400.700729846 +UH 0 37 l 1873 11048 4 +UH 0 22 h 1956 11472 4 +PQ +SE +ID 3314 +TI 1760667400.700798988 +UH 0 42 l 3151 10937 4 +UH 0 39 h 3149 10536 4 +PQ +SE +ID 3315 +TI 1760667400.700886249 +UH 0 36 l 3295 8346 4 +UH 0 37 l 1790 8722 4 +UH 0 38 l 3586 8951 4 +UH 0 39 l 1609 8677 4 +UH 0 18 h 4499 9133 4 +UH 0 21 h 2695 9298 4 +PQ +SE +ID 3316 +TI 1760667400.700995922 +UH 0 28 l 4281 10798 4 +UH 0 59 h 4131 10941 4 +PQ +SE +ID 3317 +TI 1760667400.701042652 +UH 0 19 l 3102 10660 4 +UH 0 55 h 3228 10790 4 +PQ +SE +ID 3318 +TI 1760667400.701089382 +UH 0 17 l 2797 10793 4 +UH 0 14 h 2770 11177 4 +PQ +SE +ID 3319 +TI 1760667400.701129913 +UH 0 35 l 3387 10763 4 +UH 0 41 l 2084 11005 4 +UH 0 25 h 2092 10779 4 +UH 0 26 h 2191 11082 4 +UH 0 27 h 2758 10859 4 +PQ +SE +ID 3320 +TI 1760667400.701191186 +UH 0 3 l 3324 8888 4 +UH 0 4 l 1595 9006 4 +UH 0 5 l 2555 8652 4 +UH 0 15 h 2489 9230 4 +UH 0 22 h 3339 8992 4 +PQ +SE +ID 3321 +TI 1760667400.701244115 +UH 0 4 l 2340 10874 4 +UH 0 19 h 2297 11495 4 +PQ +SE +ID 3322 +TI 1760667400.701277971 +UH 0 25 l 2360 11329 4 +UH 0 52 h 2255 10920 4 +UH 0 53 h 1605 4083 0 +PQ +SE +ID 3323 +TI 1760667400.701314449 +UH 0 64 l 5620 0 5 +UH 0 64 h 5305 0 5 +BD GR Veto +PQ +SE +ID 3324 +TI 1760667400.701331853 +UH 0 64 l 1712 0 5 +UH 0 64 h 2285 0 5 +BD GR Veto +PQ +SE +ID 3325 +TI 1760667400.701349258 +UH 0 0 l 1999 10936 4 +UH 0 64 l 2314 0 5 +UH 0 39 h 2763 10739 4 +BD GR Veto +PQ +SE +ID 3326 +TI 1760667400.701386451 +UH 0 34 l 2330 10655 4 +UH 0 35 l 1890 10927 4 +UH 0 36 l 1600 3079 0 +UH 0 2 h 2124 11092 4 +UH 0 3 h 2284 10724 4 +PQ +SE +ID 3327 +TI 1760667400.718733787 +UH 0 64 l 2048 0 5 +UH 0 64 h 2100 0 5 +BD GR Veto +PQ +SE +ID 3328 +TI 1760667400.718781948 +UH 0 64 l 3614 0 5 +UH 0 64 h 3773 0 5 +BD GR Veto +PQ +SE +ID 3329 +TI 1760667400.718799114 +UH 0 32 l 1606 6075 0 +UH 0 15 l 5568 10697 4 +UH 0 16 l 1582 10934 4 +UH 0 17 l 1618 4290 0 +UH 0 23 l 1713 3137 0 +UH 0 25 l 1715 1552 0 +UH 0 26 l 1720 2837 0 +UH 0 27 l 1726 1946 0 +UH 0 28 l 1752 2089 0 +UH 0 29 l 1816 2376 0 +UH 0 30 l 1857 2510 0 +UH 0 31 l 2091 2300 0 +UH 0 2 h 2333 10955 4 +UH 0 9 h 4189 10879 4 +UH 0 10 h 2209 11201 4 +PQ +SE +ID 3330 +TI 1760667400.718924283 +UH 0 14 h 1570 5606 0 +PQ +SE +ID 3331 +TI 1760667400.718945741 +UH 0 38 l 1884 11000 4 +UH 0 59 h 1896 11210 4 +PQ +SE +ID 3332 +TI 1760667400.718981027 +UH 0 64 l 2174 0 5 +UH 0 64 h 2209 0 5 +BD GR Veto +PQ +SE +ID 3333 +TI 1760667400.718996524 +UH 0 64 l 2225 0 5 +UH 0 64 h 2250 0 5 +BD GR Veto +PQ +SE +ID 3334 +TI 1760667400.719011545 +UH 0 5 l 2701 10893 4 +UH 0 40 h 2632 10815 4 +PQ +SE +ID 3335 +TI 1760667400.719046354 +UH 0 23 l 2394 10856 4 +UH 0 47 h 1697 10347 4 +UH 0 48 h 2161 10414 4 +PQ +SE +ID 3336 +TI 1760667400.719085931 +UH 0 64 l 1921 0 5 +UH 0 64 h 1951 0 5 +BD GR Veto +PQ +SE +ID 3337 +TI 1760667400.719101190 +UH 0 0 l 2232 10963 4 +UH 0 8 l 2031 10815 4 +UH 0 64 l 1635 0 5 +UH 0 50 h 2344 11083 4 +UH 0 55 h 2059 10984 4 +BD GR Veto +PQ +SE +ID 3338 +TI 1760667400.719163417 +UH 0 34 l 3642 8942 4 +UH 0 35 l 1545 5426 0 +UH 0 40 l 1667 3211 0 +UH 0 46 l 2535 9221 4 +UH 0 29 l 2112 8911 4 +UH 0 45 h 2067 9459 4 +UH 0 46 h 3036 9274 4 +UH 0 47 h 1815 9262 4 +UH 0 52 h 2600 9229 4 +UH 0 63 h 2011 9372 4 +PQ +SE +ID 3339 +TI 1760667400.719277381 +UH 0 37 l 3918 8664 4 +UH 0 38 l 1540 8744 4 +UH 0 21 h 3058 9209 4 +UH 0 22 h 2394 8961 4 +PQ +SE +ID 3340 +TI 1760667400.719324827 +UH 0 61 l 2538 10675 4 +UH 0 62 l 3248 10798 4 +UH 0 10 h 3990 11009 4 +UH 0 11 h 1683 10959 4 +PQ +SE +ID 3341 +TI 1760667400.719372510 +UH 0 32 l 2573 10278 4 +UH 0 33 l 1802 10057 4 +UH 0 17 h 2678 11157 4 +PQ +SE +ID 3342 +TI 1760667400.719409704 +UH 0 5 l 2311 10808 4 +UH 0 17 h 2180 11402 4 +PQ +SE +ID 3343 +TI 1760667400.719442605 +UH 0 6 l 1665 4819 0 +UH 0 7 l 1840 4678 0 +UH 0 9 l 3591 10222 4 +UH 0 10 l 1712 10343 4 +UH 0 26 h 3983 11343 4 +PQ +SE +ID 3344 +TI 1760667400.719496011 +UH 0 33 l 2424 10610 4 +UH 0 30 l 1754 5087 0 +UH 0 49 h 2658 10693 4 +PQ +SE +ID 3345 +TI 1760667400.719543218 +UH 0 29 l 2022 11162 4 +UH 0 30 l 1779 5539 0 +UH 0 42 h 2202 10414 4 +PQ +SE +ID 3346 +TI 1760667400.719586610 +UH 0 59 l 2364 10796 4 +UH 0 12 h 2296 11093 4 +PQ +SE +ID 3347 +TI 1760667400.719619512 +UH 0 64 l 1648 0 5 +UH 0 64 h 1796 0 5 +BD GR Veto +PQ +SE +ID 3348 +TI 1760667400.719634532 +UH 0 53 l 1616 4654 0 +UH 0 54 l 1878 11031 4 +UH 0 58 l 3250 10512 4 +UH 0 16 h 3159 10977 4 +UH 0 18 h 2026 10590 4 +PQ +SE +ID 3349 +TI 1760667400.719700336 +UH 0 38 l 1676 4886 0 +UH 0 28 l 3422 10523 4 +UH 0 31 h 3388 10748 4 +PQ +SE +ID 3350 +TI 1760667400.719748258 +UH 0 22 l 3329 10792 4 +UH 0 24 l 1832 4440 0 +UH 0 25 l 1846 10724 4 +UH 0 35 h 3305 10410 4 +UH 0 37 h 1822 10936 4 +UH 0 38 h 1772 10874 4 +PQ +SE +ID 3351 +TI 1760667400.719810485 +UH 0 56 l 4373 9189 4 +UH 0 60 l 2750 8235 4 +UH 0 32 h 2669 8990 4 +UH 0 28 h 1639 8821 4 +UH 0 29 h 3404 8919 4 +UH 0 30 h 2444 9140 4 +PQ +SE +ID 3352 +TI 1760667400.719880342 +UH 0 43 l 1514 8928 4 +UH 0 44 l 4520 8573 4 +UH 0 45 l 1539 8660 4 +UH 0 5 h 1592 9101 4 +UH 0 6 h 4553 8987 4 +PQ +SE +ID 3353 +TI 1760667400.719905376 +UH 0 16 l 2241 9347 4 +UH 0 17 l 4586 9275 4 +UH 0 18 l 1896 9019 4 +UH 0 36 h 2300 9156 4 +UH 0 38 h 1926 9098 4 +UH 0 39 h 1654 8834 4 +UH 0 40 h 4509 8712 4 +UH 0 41 h 1597 9125 4 +PQ +SE +ID 3354 +TI 1760667400.719939231 +UH 0 25 l 2001 10615 4 +UH 0 26 l 4115 10709 4 +UH 0 25 h 2002 11235 4 +UH 0 26 h 3806 11375 4 +PQ +SE +ID 3355 +TI 1760667400.719961404 +UH 0 53 l 2279 10614 4 +UH 0 8 h 1731 11767 4 +UH 0 9 h 2085 11390 4 +PQ +SE +ID 3356 +TI 1760667400.719981193 +UH 0 23 l 2843 10326 4 +UH 0 26 l 1937 10810 4 +UH 0 27 l 4160 10200 4 +UH 0 16 h 2688 11255 4 +UH 0 28 h 3950 10936 4 +UH 0 29 h 1966 11170 4 +UH 0 30 h 1611 5147 0 +PQ +SE +ID 3357 +TI 1760667400.720021724 +UH 0 36 l 1621 9847 4 +UH 0 37 l 2701 10066 4 +UH 0 38 l 1890 9686 4 +UH 0 59 h 2705 9855 4 +UH 0 62 h 2020 10059 4 +PQ +SE +ID 3358 +TI 1760667400.720051527 +UH 0 13 l 2275 10936 4 +UH 0 64 l 3197 0 5 +UH 0 40 h 2266 11049 4 +UH 0 64 h 3101 0 5 +BD GR Veto +PQ +SE +ID 3359 +TI 1760667400.720073699 +UH 0 0 l 3930 10804 4 +UH 0 28 h 2749 10777 4 +UH 0 29 h 2707 10993 4 +PQ +SE +ID 3360 +TI 1760667400.720143318 +UH 0 45 l 2196 10702 4 +UH 0 46 l 2720 10539 4 +UH 0 47 l 1921 10719 4 +UH 0 43 h 1798 10935 4 +UH 0 44 h 1947 10779 4 +UH 0 52 h 3214 11135 4 +PQ +SE +ID 3361 +TI 1760667400.720176219 +UH 0 2 l 2851 10896 4 +UH 0 3 l 1764 10902 4 +UH 0 44 h 3047 10832 4 +PQ +SE +ID 3362 +TI 1760667400.720200777 +UH 0 25 l 1929 10727 4 +UH 0 17 h 1803 11263 4 +PQ +SE +ID 3363 +TI 1760667400.720217943 +UH 0 13 l 1824 10738 4 +UH 0 34 h 1735 11017 4 +PQ +SE +ID 3364 +TI 1760667400.720235586 +UH 0 64 l 1969 0 5 +UH 0 64 h 2017 0 5 +BD GR Veto +PQ +SE +ID 3365 +TI 1760667400.720243692 +UH 0 8 l 1990 10819 4 +UH 0 9 l 1845 10877 4 +UH 0 12 l 2096 10354 4 +UH 0 20 l 3707 10589 4 +UH 0 21 l 1744 11146 4 +UH 0 36 h 2129 10752 4 +UH 0 37 h 3289 10901 4 +UH 0 50 h 2139 10524 4 +UH 0 51 h 1574 4862 0 +UH 0 54 h 1948 10778 4 +PQ +SE +ID 3366 +TI 1760667400.720299005 +UH 0 36 l 1683 4742 0 +UH 0 29 l 3377 10808 4 +UH 0 30 l 2498 11167 4 +UH 0 50 h 4375 10816 4 +UH 0 52 h 1664 11154 4 +PQ +SE +ID 3367 +TI 1760667400.720331668 +UH 0 9 l 2107 10812 4 +UH 0 41 h 2066 11436 4 +PQ +SE +ID 3368 +TI 1760667400.720350027 +UH 0 60 l 2809 9600 4 +UH 0 62 l 1629 5344 0 +UH 0 63 l 1605 3619 0 +UH 0 22 h 2797 10264 4 +UH 0 23 h 1585 10436 4 +UH 0 29 h 1700 4496 0 +PQ +SE +ID 3369 +TI 1760667400.720381975 +UH 0 39 l 1797 5208 0 +UH 0 40 l 1594 5144 0 +UH 0 33 h 1864 11054 4 +PQ +SE +ID 3370 +TI 1760667400.720401763 +UH 0 45 l 2070 10627 4 +UH 0 47 l 1589 4759 0 +UH 0 28 l 1809 11226 4 +UH 0 29 l 3296 10929 4 +UH 0 43 h 1713 10735 4 +UH 0 44 h 3721 10536 4 +UH 0 45 h 1769 10809 4 +PQ +SE +ID 3371 +TI 1760667400.720437765 +UH 0 36 l 1861 9394 4 +UH 0 38 l 4352 9854 4 +UH 0 32 h 4494 9399 4 +UH 0 33 h 1567 9129 4 +UH 0 31 h 1577 9527 4 +PQ +SE +ID 3372 +TI 1760667400.720465660 +UH 0 50 l 1582 5368 0 +UH 0 52 l 1609 8430 4 +UH 0 53 l 4384 8234 4 +UH 0 54 l 1567 8559 4 +UH 0 58 l 1980 7846 4 +UH 0 59 l 1832 8121 4 +UH 0 43 h 3934 8523 4 +UH 0 45 h 2048 8687 4 +UH 0 46 h 2111 8555 4 +PQ +SE +ID 3373 +TI 1760667400.720509767 +UH 0 7 l 1598 8772 4 +UH 0 8 l 4811 8569 4 +UH 0 9 l 1646 8712 4 +UH 0 47 h 4756 8987 4 +PQ +SE +ID 3374 +TI 1760667400.720530271 +UH 0 64 l 2358 0 5 +UH 0 64 h 2397 0 5 +BD GR Veto +PQ +SE +ID 3375 +TI 1760667400.720537424 +UH 0 46 l 1816 4877 0 +UH 0 47 l 2406 10701 4 +UH 0 48 l 2641 10794 4 +UH 0 63 l 1527 1961 0 +UH 0 53 h 3814 10801 4 +UH 0 54 h 1645 11045 4 +PQ +SE +ID 3376 +TI 1760667400.720566749 +UH 0 50 l 2170 10886 4 +UH 0 12 h 1793 11181 4 +UH 0 13 h 1870 11255 4 +PQ +SE +ID 3377 +TI 1760667400.720586299 +UH 0 50 l 2777 10565 4 +UH 0 56 h 2776 11075 4 +PQ +SE +ID 3378 +TI 1760667400.720604896 +UH 0 55 l 1635 5355 0 +UH 0 13 h 1720 5354 0 +PQ +SE +ID 3379 +TI 1760667400.720623016 +UH 0 49 l 5748 9811 4 +UH 0 47 h 1646 9240 4 +UH 0 48 h 5723 9269 4 +UH 0 49 h 1586 9329 4 +PQ +SE +ID 3380 +TI 1760667400.720645904 +UH 0 61 l 2289 9771 4 +UH 0 5 l 4442 10801 4 +UH 0 55 h 4427 10361 4 +UH 0 15 h 1803 10455 4 +UH 0 16 h 1987 10443 4 +PQ +SE +ID 3381 +TI 1760667400.720681667 +UH 0 32 l 2080 10984 4 +UH 0 33 l 1775 10702 4 +UH 0 31 l 2443 10983 4 +UH 0 53 h 1806 4721 0 +UH 0 54 h 2872 10761 4 +PQ +SE +ID 3382 +TI 1760667400.720707416 +UH 0 50 l 1672 5389 0 +UH 0 64 l 4542 0 5 +UH 0 57 h 1647 5387 0 +UH 0 64 h 4372 0 5 +BD GR Veto +PQ +SE +ID 3383 +TI 1760667400.720730543 +UH 0 16 l 2707 10612 4 +UH 0 29 h 2705 11217 4 +PQ +SE +ID 3384 +TI 1760667400.720748662 +UH 0 14 l 2470 10952 4 +UH 0 15 l 1739 10971 4 +UH 0 15 h 2533 11287 4 +PQ +SE +ID 3385 +TI 1760667400.720768213 +UH 0 9 l 2361 10493 4 +UH 0 12 l 2065 9981 4 +UH 0 64 l 2926 0 5 +UH 0 2 h 2027 11376 4 +UH 0 3 h 2377 11017 4 +UH 0 64 h 2927 0 5 +BD GR Veto +PQ +SE +ID 3386 +TI 1760667400.720802068 +UH 0 64 l 2479 0 5 +UH 0 64 h 2501 0 5 +BD GR Veto +PQ +SE +ID 3387 +TI 1760667400.720811605 +UH 0 51 l 2298 9184 4 +UH 0 54 l 1616 3797 0 +UH 0 56 l 1549 5436 0 +UH 0 57 l 2998 9363 4 +UH 0 58 l 2774 9313 4 +UH 0 59 l 1992 9149 4 +UH 0 32 h 1624 9367 4 +UH 0 41 h 2282 9684 4 +UH 0 42 h 3888 9223 4 +UH 0 31 h 2422 9188 4 +PQ +SE +ID 3388 +TI 1760667400.720860719 +UH 0 52 l 2523 10890 4 +UH 0 64 l 3449 0 5 +UH 0 64 h 4270 0 5 +BD GR Veto +PQ +SE +ID 3389 +TI 1760667400.720876216 +UH 0 61 l 1679 5274 0 +UH 0 62 l 3236 10068 4 +UH 0 64 l 2154 0 5 +UH 0 43 h 2610 10469 4 +UH 0 47 h 2193 10237 4 +UH 0 64 h 2199 0 5 +BD GR Veto +PQ +SE +ID 3390 +TI 1760667400.720908403 +UH 0 49 l 2464 10166 4 +UH 0 50 l 1631 5361 0 +UH 0 54 h 2511 10478 4 +PQ +SE +ID 3391 +TI 1760667400.742015123 +UH 0 42 l 2143 10856 4 +UH 0 64 l 2753 0 5 +UH 0 7 h 2186 11158 4 +UH 0 64 h 2772 0 5 +BD GR Veto +PQ +SE +ID 3392 +TI 1760667400.742106199 +UH 0 63 l 1584 5198 0 +UH 0 23 l 1971 8851 4 +UH 0 64 l 5680 0 5 +UH 0 35 h 1731 11357 4 +UH 0 36 h 1898 11460 4 +UH 0 63 h 1879 8976 4 +UH 0 64 h 5152 0 5 +BD GR Veto +PQ +SE +ID 3393 +TI 1760667400.742187023 +UH 0 48 l 4250 9224 4 +UH 0 49 l 1558 9297 4 +UH 0 36 h 4194 9474 4 +UH 0 37 h 1732 9707 4 +PQ +SE +ID 3394 +TI 1760667400.742236137 +UH 0 25 l 2518 10936 4 +UH 0 26 l 2471 11291 4 +UH 0 29 h 2424 11055 4 +UH 0 30 h 2362 11124 4 +PQ +SE +ID 3395 +TI 1760667400.742285966 +UH 0 60 l 2386 10432 4 +UH 0 46 h 2406 11199 4 +PQ +SE +ID 3396 +TI 1760667400.742328882 +UH 0 17 l 2145 10929 4 +UH 0 25 l 3102 10931 4 +UH 0 23 h 3015 11093 4 +UH 0 27 h 1700 4845 0 +UH 0 28 h 2045 10689 4 +PQ +SE +ID 3397 +TI 1760667400.742413520 +UH 0 64 l 3834 0 5 +UH 0 0 h 1813 11335 4 +UH 0 64 h 3501 0 5 +BD GR Veto +PQ +SE +ID 3398 +TI 1760667400.742441654 +UH 0 34 l 2252 10648 4 +UH 0 54 h 2202 11109 4 +PQ +SE +ID 3399 +TI 1760667400.742479324 +UH 0 9 l 1908 11142 4 +UH 0 25 h 1574 5599 0 +UH 0 26 h 1793 11686 4 +PQ +SE +ID 3400 +TI 1760667400.742522478 +UH 0 52 l 1590 8996 4 +UH 0 53 l 3546 8839 4 +UH 0 54 l 1532 5551 0 +UH 0 64 l 2022 0 5 +UH 0 62 h 3568 9071 4 +UH 0 64 h 2126 0 5 +BD GR Veto +PQ +SE +ID 3401 +TI 1760667400.742580890 +UH 0 64 l 2722 0 5 +UH 0 64 h 2688 0 5 +BD GR Veto +PQ +SE +ID 3402 +TI 1760667400.742598295 +UH 0 8 l 3851 10509 4 +UH 0 48 h 2011 11004 4 +UH 0 49 h 3324 10945 4 +PQ +SE +ID 3403 +TI 1760667400.742640495 +UH 0 63 l 1831 11110 4 +UH 0 32 h 1860 10969 4 +PQ +SE +ID 3404 +TI 1760667400.742679595 +UH 0 39 l 3037 10447 4 +UH 0 40 l 1632 10604 4 +UH 0 46 l 2849 10658 4 +UH 0 48 l 2518 10879 4 +UH 0 3 h 1929 10994 4 +UH 0 4 h 2882 11438 4 +UH 0 10 h 3953 11250 4 +PQ +SE +ID 3405 +TI 1760667400.742748498 +UH 0 15 l 2443 10358 4 +UH 0 30 l 1616 1786 0 +UH 0 31 l 1655 2626 0 +UH 0 2 h 2434 11399 4 +PQ +SE +ID 3406 +TI 1760667400.742773532 +UH 0 35 l 1668 5433 0 +UH 0 38 h 1747 11651 4 +PQ +SE +ID 3407 +TI 1760667400.742791175 +UH 0 56 l 1878 11261 4 +UH 0 63 h 1941 11182 4 +PQ +SE +ID 3408 +TI 1760667400.742805957 +UH 0 23 l 2338 10664 4 +UH 0 43 h 2174 11173 4 +PQ +SE +ID 3409 +TI 1760667400.742823600 +UH 0 33 l 1849 10781 4 +UH 0 53 h 1862 11393 4 +PQ +SE +ID 3410 +TI 1760667400.742841243 +UH 0 27 l 2875 10775 4 +UH 0 28 l 2271 11153 4 +UH 0 24 h 1772 10810 4 +UH 0 25 h 2946 10941 4 +UH 0 26 h 1734 11166 4 +PQ +SE +ID 3411 +TI 1760667400.742866754 +UH 0 35 l 2269 10754 4 +UH 0 31 l 2401 11046 4 +UH 0 51 h 2155 11030 4 +UH 0 52 h 1741 11134 4 +UH 0 56 h 2295 11163 4 +PQ +SE +ID 3412 +TI 1760667400.742900848 +UH 0 45 l 3506 10753 4 +UH 0 26 h 2938 10925 4 +UH 0 27 h 2068 10749 4 +PQ +SE +ID 3413 +TI 1760667400.742922067 +UH 0 19 l 2505 10582 4 +UH 0 21 l 3798 10736 4 +UH 0 22 l 2494 10510 4 +UH 0 26 h 1935 10959 4 +UH 0 27 h 2211 10710 4 +UH 0 28 h 4403 10455 4 +UH 0 29 h 1734 10749 4 +PQ +SE +ID 3414 +TI 1760667400.742954730 +UH 0 41 l 1495 9123 4 +UH 0 42 l 4559 8844 4 +UH 0 43 l 1882 8990 4 +UH 0 36 h 4959 8891 4 +PQ +SE +ID 3415 +TI 1760667400.742977857 +UH 0 10 l 1857 10725 4 +UH 0 12 h 1788 11419 4 +PQ +SE +ID 3416 +TI 1760667400.742995500 +UH 0 35 l 4667 10002 4 +UH 0 5 l 1784 9962 4 +UH 0 6 l 6105 10073 4 +UH 0 52 h 4844 9572 4 +UH 0 53 h 2793 9525 4 +UH 0 54 h 1557 9738 4 +UH 0 19 h 3563 10005 4 +UH 0 20 h 2538 9769 4 +PQ +SE +ID 3417 +TI 1760667400.743036985 +UH 0 32 l 1891 11164 4 +UH 0 17 l 2832 10553 4 +UH 0 22 l 2096 10769 4 +UH 0 28 l 1924 4936 0 +UH 0 29 l 1922 4659 0 +UH 0 30 l 1742 5336 0 +UH 0 31 l 2630 11133 4 +UH 0 52 h 2598 10904 4 +UH 0 55 h 1954 10704 4 +UH 0 56 h 2391 11102 4 +UH 0 57 h 3374 11162 4 +PQ +SE +ID 3418 +TI 1760667400.743090867 +UH 0 22 l 1622 9068 4 +UH 0 23 l 4413 8943 4 +UH 0 1 h 3025 9193 4 +UH 0 2 h 1681 9374 4 +UH 0 5 h 2738 9332 4 +PQ +SE +ID 3419 +TI 1760667400.743120431 +UH 0 33 l 1649 4905 0 +UH 0 45 l 3824 10679 4 +UH 0 43 h 1598 3397 0 +UH 0 51 h 3327 10433 4 +UH 0 52 h 2019 10552 4 +PQ +SE +ID 3420 +TI 1760667400.743155956 +UH 0 55 l 1553 9138 4 +UH 0 56 l 2790 9236 4 +UH 0 57 l 3300 8916 4 +UH 0 24 h 1775 9292 4 +UH 0 25 h 1519 9423 4 +UH 0 26 h 3964 9449 4 +UH 0 27 h 1948 9334 4 +PQ +SE +ID 3421 +TI 1760667400.743185043 +UH 0 34 l 1797 10507 4 +UH 0 35 l 2943 10642 4 +UH 0 36 l 2185 10180 4 +UH 0 4 h 2227 11417 4 +UH 0 5 h 1659 11174 4 +UH 0 6 h 3135 11110 4 +PQ +SE +ID 3422 +TI 1760667400.743212461 +UH 0 25 h 1521 5588 0 +PQ +SE +ID 3423 +TI 1760667400.743224143 +UH 0 30 l 2240 10798 4 +UH 0 25 h 2030 11322 4 +UH 0 26 h 1716 11494 4 +PQ +SE +ID 3424 +TI 1760667400.743245363 +UH 0 4 l 1596 5380 0 +UH 0 5 l 3790 8817 4 +UH 0 6 l 2218 9109 4 +UH 0 10 h 4365 9963 4 +PQ +SE +ID 3425 +TI 1760667400.743268251 +UH 0 2 l 1691 5240 0 +UH 0 12 h 1553 5448 0 +UH 0 13 h 1601 5335 0 +PQ +SE +ID 3426 +TI 1760667400.743287801 +UH 0 37 l 1890 10698 4 +UH 0 38 l 4416 10540 4 +UH 0 39 l 2361 10646 4 +UH 0 32 h 1715 10635 4 +UH 0 33 h 3419 10128 4 +UH 0 34 h 1757 10377 4 +UH 0 39 h 2589 10288 4 +UH 0 31 h 2092 10244 4 +PQ +SE +ID 3427 +TI 1760667400.743330240 +UH 0 30 l 2459 11097 4 +UH 0 32 h 1601 5352 0 +UH 0 33 h 2295 10606 4 +PQ +SE +ID 3428 +TI 1760667400.743347883 +UH 0 44 l 1633 4702 0 +UH 0 45 l 3369 10681 4 +UH 0 51 l 2387 10389 4 +UH 0 11 h 2378 11101 4 +UH 0 13 h 1710 10763 4 +UH 0 15 h 3274 10827 4 +UH 0 16 h 1620 10904 4 +PQ +SE +ID 3429 +TI 1760667400.743388175 +UH 0 18 l 1734 5003 0 +UH 0 63 h 1768 11460 4 +PQ +SE +ID 3430 +TI 1760667400.743402957 +UH 0 57 l 1997 10970 4 +UH 0 61 h 1955 10604 4 +UH 0 62 h 1670 4055 0 +PQ +SE +ID 3431 +TI 1760667400.743422508 +UH 0 23 l 1757 8781 4 +UH 0 24 l 5775 8563 4 +UH 0 25 l 1670 8865 4 +UH 0 52 h 5560 9081 4 +PQ +SE +ID 3432 +TI 1760667400.743444681 +UH 0 11 l 2056 10272 4 +UH 0 12 l 1797 4832 0 +UH 0 11 h 2122 11562 4 +PQ +SE +ID 3433 +TI 1760667400.743464469 +UH 0 64 l 2103 0 5 +UH 0 64 h 3857 0 5 +BD GR Veto +PQ +SE +ID 3434 +TI 1760667400.743472814 +UH 0 59 l 2457 10758 4 +UH 0 33 h 2430 10496 4 +PQ +SE +ID 3435 +TI 1760667400.743490457 +UH 0 35 l 2870 10447 4 +UH 0 40 l 1553 5198 0 +UH 0 42 l 2960 11024 4 +UH 0 36 h 2910 10885 4 +UH 0 47 h 1647 10502 4 +UH 0 48 h 3000 10474 4 +PQ +SE +ID 3436 +TI 1760667400.743530273 +UH 0 45 l 3125 10701 4 +UH 0 44 h 1818 10704 4 +UH 0 45 h 2810 10884 4 +PQ +SE +ID 3437 +TI 1760667400.743551254 +UH 0 0 l 1717 10255 4 +UH 0 64 l 4077 0 5 +UH 0 56 h 2910 10511 4 +UH 0 64 h 2864 0 5 +BD GR Veto +PQ +SE +ID 3438 +TI 1760667400.743571281 +UH 0 19 l 1790 5268 0 +UH 0 62 h 1819 11348 4 +PQ +SE +ID 3439 +TI 1760667400.743588924 +UH 0 50 l 1698 4333 0 +UH 0 51 l 2905 10087 4 +UH 0 52 l 1609 10174 4 +UH 0 53 l 1709 4334 0 +UH 0 18 h 1874 10458 4 +UH 0 19 h 1607 10596 4 +UH 0 20 h 2789 10227 4 +PQ +SE +ID 3440 +TI 1760667400.743618726 +UH 0 61 l 2524 10476 4 +UH 0 39 h 2510 10867 4 +PQ +SE +ID 3441 +TI 1760667400.743637323 +UH 0 14 l 2399 8220 4 +UH 0 21 l 1595 8692 4 +UH 0 22 l 3923 8377 4 +UH 0 23 l 1715 8635 4 +UH 0 64 l 2382 0 5 +UH 0 3 h 2389 8744 4 +UH 0 22 h 3912 8649 4 +UH 0 64 h 2439 0 5 +BD GR Veto +PQ +SE +ID 3442 +TI 1760667400.743680238 +UH 0 1 l 1664 8898 4 +UH 0 2 l 5724 8607 4 +UH 0 3 l 1591 8709 4 +UH 0 25 h 1534 9410 4 +UH 0 26 h 5411 9462 4 +PQ +SE +ID 3443 +TI 1760667400.743705511 +UH 0 64 l 1699 0 5 +UH 0 64 h 1774 0 5 +BD GR Veto +PQ +SE +ID 3444 +TI 1760667400.743714570 +UH 0 1 l 2108 11241 4 +UH 0 2 l 2077 11105 4 +UH 0 21 l 2566 10935 4 +UH 0 22 l 1733 5172 0 +UH 0 37 h 2582 11261 4 +UH 0 38 h 1736 11211 4 +UH 0 24 h 2524 11112 4 +PQ +SE +ID 3445 +TI 1760667400.743754148 +UH 0 8 l 1905 11188 4 +UH 0 34 h 1706 10665 4 +UH 0 35 h 1617 4530 0 +PQ +SE +ID 3446 +TI 1760667400.743774652 +UH 0 12 l 1809 4765 0 +UH 0 13 l 2389 10684 4 +UH 0 5 h 2525 11254 4 +PQ +SE +ID 3447 +TI 1760667400.743795156 +UH 0 64 l 2131 0 5 +UH 0 64 h 2168 0 5 +BD GR Veto +PQ +SE +ID 3448 +TI 1760667400.743802785 +UH 0 64 l 1720 0 5 +UH 0 64 h 1793 0 5 +BD GR Veto +PQ +SE +ID 3449 +TI 1760667400.743811130 +UH 0 39 l 2109 10454 4 +UH 0 13 h 2094 11387 4 +PQ +SE +ID 3450 +TI 1760667400.743828773 +UH 0 64 l 2174 0 5 +UH 0 64 h 2258 0 5 +BD GR Veto +PQ +SE +ID 3451 +TI 1760667400.743837118 +UH 0 54 l 2134 10971 4 +UH 0 55 l 1912 10819 4 +UH 0 56 l 1758 5158 0 +UH 0 34 h 1735 10823 4 +UH 0 35 h 2621 10899 4 +PQ +SE +ID 3452 +TI 1760667400.743863105 +UH 0 30 l 3557 10980 4 +UH 0 31 l 2560 10887 4 +UH 0 13 h 2546 10652 4 +UH 0 15 h 1613 10951 4 +UH 0 16 h 3432 10831 4 +PQ +SE +ID 3453 +TI 1760667400.743889570 +UH 0 64 l 1665 0 5 +UH 0 64 h 1688 0 5 +BD GR Veto +PQ +SE +ID 3454 +TI 1760667400.743898391 +UH 0 12 l 2567 10049 4 +UH 0 13 l 1668 4929 0 +UH 0 24 l 1919 10411 4 +UH 0 28 h 2436 10982 4 +UH 0 29 h 2018 11245 4 +PQ +SE +ID 3455 +TI 1760667400.763464450 +UH 0 12 l 3290 10246 4 +UH 0 13 l 1831 10815 4 +UH 0 54 h 3407 11118 4 +PQ +SE +ID 3456 +TI 1760667400.763516664 +UH 0 32 l 3335 10788 4 +UH 0 27 l 1929 10817 4 +UH 0 48 h 1902 10409 4 +UH 0 50 h 1858 10589 4 +UH 0 51 h 2964 10643 4 +PQ +SE +ID 3457 +TI 1760667400.763555288 +UH 0 50 l 2679 10281 4 +UH 0 51 l 1805 4919 0 +UH 0 54 l 2212 10786 4 +UH 0 55 l 2199 10562 4 +UH 0 42 h 2714 10365 4 +UH 0 45 h 1706 10784 4 +UH 0 57 h 2940 10612 4 +UH 0 58 h 1588 10361 4 +PQ +SE +ID 3458 +TI 1760667400.763609409 +UH 0 12 l 2474 9974 4 +UH 0 0 h 2431 11277 4 +PQ +SE +ID 3459 +TI 1760667400.763626337 +UH 0 64 l 2056 0 5 +UH 0 47 h 1684 4034 0 +UH 0 64 h 1998 0 5 +BD GR Veto +PQ +SE +ID 3460 +TI 1760667400.763642072 +UH 0 59 l 1564 8661 4 +UH 0 60 l 4440 8304 4 +UH 0 61 l 1644 8682 4 +UH 0 24 h 1563 8805 4 +UH 0 25 h 3789 8916 4 +UH 0 26 h 2038 9112 4 +PQ +SE +ID 3461 +TI 1760667400.763670682 +UH 0 41 l 3891 10861 4 +UH 0 42 l 1755 10940 4 +UH 0 0 h 1648 11075 4 +UH 0 1 h 2181 11045 4 +UH 0 2 h 1812 11099 4 +UH 0 3 h 3315 10659 4 +PQ +SE +ID 3462 +TI 1760667400.763695955 +UH 0 64 l 5702 0 5 +UH 0 64 h 5424 0 5 +BD GR Veto +PQ +SE +ID 3463 +TI 1760667400.763704061 +UH 0 46 l 1838 10818 4 +UH 0 58 h 1921 11212 4 +PQ +SE +ID 3464 +TI 1760667400.763722896 +UH 0 6 l 2607 9469 4 +UH 0 7 l 3244 9322 4 +UH 0 10 l 1635 3030 0 +UH 0 12 l 1885 2979 0 +UH 0 2 h 1629 3061 0 +UH 0 10 h 1752 9850 4 +UH 0 12 h 1541 9504 4 +UH 0 13 h 4271 9479 4 +PQ +SE +ID 3465 +TI 1760667400.763769865 +UH 0 43 l 1748 10588 4 +UH 0 44 l 1923 10391 4 +UH 0 28 h 2311 11057 4 +PQ +SE +ID 3466 +TI 1760667400.763790607 +UH 0 50 l 1989 10931 4 +UH 0 51 l 1888 11088 4 +UH 0 49 h 2248 10672 4 +PQ +SE +ID 3467 +TI 1760667400.763811349 +UH 0 18 l 2097 8834 4 +UH 0 19 l 1628 9219 4 +UH 0 20 l 3394 8799 4 +UH 0 21 l 2096 9258 4 +UH 0 10 h 3873 9914 4 +UH 0 13 h 2096 9728 4 +PQ +SE +ID 3468 +TI 1760667400.763843536 +UH 0 1 l 2050 3612 4 +UH 0 20 l 2574 10229 4 +UH 0 21 l 2095 10670 4 +UH 0 22 l 1769 10801 4 +UH 0 23 l 1843 5257 0 +UH 0 64 l 2690 0 5 +UH 0 45 h 2636 3746 4 +UH 0 46 h 1781 3727 4 +UH 0 47 h 1888 1357 0 +UH 0 21 h 1926 10889 4 +UH 0 25 h 2931 11215 4 +BD GR Veto +PQ +SE +ID 3469 +TI 1760667400.763902664 +UH 0 64 l 1979 0 5 +UH 0 64 h 3502 0 5 +BD GR Veto +PQ +SE +ID 3470 +TI 1760667400.763911008 +UH 0 6 l 2977 10911 4 +UH 0 6 h 2923 11215 4 +PQ +SE +ID 3471 +TI 1760667400.763928174 +UH 0 62 l 1695 5111 0 +UH 0 64 h 1824 0 5 +BD GR Veto +PQ +SE +ID 3472 +TI 1760667400.763940334 +UH 0 64 l 2412 0 5 +UH 0 64 h 2456 0 5 +BD GR Veto +PQ +SE +ID 3473 +TI 1760667400.763948440 +UH 0 21 l 1757 4909 0 +UH 0 22 l 1847 10707 4 +UH 0 7 h 2002 11458 4 +UH 0 8 h 1636 4786 0 +PQ +SE +ID 3474 +TI 1760667400.763970851 +UH 0 35 l 2178 10874 4 +UH 0 53 h 2195 10347 4 +PQ +SE +ID 3475 +TI 1760667400.763989210 +UH 0 30 l 2494 10830 4 +UH 0 3 h 2587 11127 4 +PQ +SE +ID 3476 +TI 1760667400.764007091 +UH 0 28 l 1775 10738 4 +UH 0 30 l 3190 11185 4 +UH 0 31 l 2703 11073 4 +UH 0 21 h 4291 11154 4 +UH 0 27 h 1692 5162 0 +UH 0 28 h 1666 4453 0 +PQ +SE +ID 3477 +TI 1760667400.764043092 +UH 0 8 l 1870 10601 4 +UH 0 12 l 4405 10424 4 +UH 0 40 h 1708 10372 4 +UH 0 41 h 1970 10597 4 +UH 0 42 h 4003 10106 4 +PQ +SE +ID 3478 +TI 1760667400.764080524 +UH 0 20 l 1732 5256 0 +UH 0 50 h 1685 5037 0 +PQ +SE +ID 3479 +TI 1760667400.764112710 +UH 0 32 l 4190 10798 4 +UH 0 33 l 2011 10559 4 +UH 0 36 l 1750 10242 4 +UH 0 39 l 2352 10678 4 +UH 0 55 h 2154 10418 4 +UH 0 56 h 3022 10869 4 +UH 0 57 h 2825 10796 4 +UH 0 62 h 1751 4344 0 +UH 0 63 h 2220 10559 4 +PQ +SE +ID 3480 +TI 1760667400.764159440 +UH 0 27 l 1885 8885 4 +UH 0 28 l 4038 9008 4 +UH 0 29 l 1650 5342 0 +UH 0 33 h 4149 9025 4 +PQ +SE +ID 3481 +TI 1760667400.764182090 +UH 0 41 l 1528 8799 4 +UH 0 42 l 3435 8529 4 +UH 0 43 l 5615 8515 4 +UH 0 44 l 1537 8700 4 +UH 0 54 l 1656 2487 0 +UH 0 58 l 1677 2465 0 +UH 0 54 h 3637 8736 4 +UH 0 55 h 5699 8350 4 +UH 0 57 h 1728 8855 4 +PQ +SE +ID 3482 +TI 1760667400.764228582 +UH 0 44 l 2923 10671 4 +UH 0 10 h 2741 11436 4 +UH 0 11 h 1832 11383 4 +PQ +SE +ID 3483 +TI 1760667400.764248847 +UH 0 35 l 2371 10795 4 +UH 0 15 h 1761 11485 4 +UH 0 16 h 2211 11359 4 +PQ +SE +ID 3484 +TI 1760667400.764269113 +UH 0 4 l 2063 10960 4 +UH 0 5 l 2572 10902 4 +UH 0 32 h 1909 10840 4 +UH 0 36 h 2099 10927 4 +UH 0 31 h 2067 10712 4 +PQ +SE +ID 3485 +TI 1760667400.764299154 +UH 0 54 l 1930 11206 4 +UH 0 59 h 1924 10443 4 +PQ +SE +ID 3486 +TI 1760667400.764317512 +UH 0 54 l 3511 10052 4 +UH 0 48 h 3606 9590 4 +UH 0 49 h 1579 9654 4 +PQ +SE +ID 3487 +TI 1760667400.764336824 +UH 0 34 l 1583 5274 0 +PQ +SE +ID 3488 +TI 1760667400.764347791 +UH 0 39 l 2640 8706 4 +UH 0 40 l 1673 8853 4 +UH 0 41 l 1679 3411 0 +UH 0 48 l 1726 9087 4 +UH 0 49 l 3833 8950 4 +UH 0 50 l 1587 5382 0 +UH 0 13 h 2034 9611 4 +UH 0 14 h 3549 9505 4 +UH 0 16 h 1778 3380 0 +UH 0 19 h 2729 9587 4 +PQ +SE +ID 3489 +TI 1760667400.764398813 +UH 0 36 l 1627 5139 0 +UH 0 63 h 1639 4673 0 +PQ +SE +ID 3490 +TI 1760667400.764414310 +UH 0 50 l 1737 4928 0 +UH 0 17 h 1689 11607 4 +PQ +SE +ID 3491 +TI 1760667400.764432430 +UH 0 33 l 3753 8024 4 +UH 0 34 l 1580 8344 4 +UH 0 11 l 2724 8031 4 +UH 0 14 l 2375 8151 4 +UH 0 4 h 2626 8988 4 +UH 0 5 h 1992 8703 4 +UH 0 6 h 1876 8720 4 +UH 0 7 h 2168 8651 4 +UH 0 8 h 3175 8888 4 +PQ +SE +ID 3492 +TI 1760667400.764477729 +UH 0 64 l 2110 0 5 +UH 0 64 h 2154 0 5 +BD GR Veto +PQ +SE +ID 3493 +TI 1760667400.764485120 +UH 0 3 l 1957 10550 4 +UH 0 64 l 2306 0 5 +UH 0 4 h 2282 11649 4 +UH 0 64 h 2081 0 5 +BD GR Veto +PQ +SE +ID 3494 +TI 1760667400.764507532 +UH 0 64 l 3051 0 5 +UH 0 64 h 3016 0 5 +BD GR Veto +PQ +SE +ID 3495 +TI 1760667400.764515876 +UH 0 51 l 2634 10905 4 +UH 0 10 h 1660 11375 4 +UH 0 11 h 2489 11127 4 +PQ +SE +ID 3496 +TI 1760667400.764540910 +UH 0 59 l 3682 10103 4 +UH 0 60 l 1654 9939 4 +UH 0 30 h 3740 10934 4 +PQ +SE +ID 3497 +TI 1760667400.764560699 +UH 0 15 l 1967 10815 4 +UH 0 16 l 2395 10855 4 +UH 0 32 h 2712 11159 4 +PQ +SE +ID 3498 +TI 1760667400.764580965 +UH 0 54 l 2243 11046 4 +UH 0 11 h 2331 11258 4 +PQ +SE +ID 3499 +TI 1760667400.764598131 +UH 0 11 l 2335 10763 4 +UH 0 39 h 2104 11145 4 +UH 0 40 h 1690 11208 4 +PQ +SE +ID 3500 +TI 1760667400.764618396 +UH 0 61 l 1827 5164 0 +UH 0 31 h 1753 5228 0 +PQ +SE +ID 3501 +TI 1760667400.764635562 +UH 0 47 l 1675 5009 0 +UH 0 52 l 3832 10807 4 +UH 0 8 h 3231 10910 4 +UH 0 9 h 2095 10627 4 +UH 0 15 h 1636 3787 0 +UH 0 16 h 1660 4460 0 +PQ +SE +ID 3502 +TI 1760667400.764672279 +UH 0 1 l 2381 10868 4 +UH 0 29 h 2212 11185 4 +UH 0 30 h 1669 11429 4 +PQ +SE +ID 3503 +TI 1760667400.764697074 +UH 0 64 l 1861 0 5 +UH 0 64 h 1922 0 5 +BD GR Veto +PQ +SE +ID 3504 +TI 1760667400.764705181 +UH 0 62 l 1770 5379 0 +UH 0 48 h 1697 11504 4 +PQ +SE +ID 3505 +TI 1760667400.764723539 +UH 0 64 l 4310 0 5 +UH 0 64 h 4159 0 5 +BD GR Veto +PQ +SE +ID 3506 +TI 1760667400.764731407 +UH 0 14 l 1787 4734 0 +UH 0 30 h 1693 5701 0 +PQ +SE +ID 3507 +TI 1760667400.764749526 +UH 0 57 l 4207 10694 4 +UH 0 35 h 2316 10473 4 +UH 0 36 h 3452 10504 4 +PQ +SE +ID 3508 +TI 1760667400.764770030 +UH 0 4 l 1607 8712 4 +UH 0 5 l 4325 8396 4 +UH 0 6 l 1611 8699 4 +UH 0 39 h 4247 8809 4 +PQ +SE +ID 3509 +TI 1760667400.764791965 +UH 0 64 l 1637 0 5 +UH 0 64 h 2208 0 5 +BD GR Veto +PQ +SE +ID 3510 +TI 1760667400.764800548 +UH 0 3 l 1577 8705 4 +UH 0 4 l 4468 8766 4 +UH 0 10 h 1571 9229 4 +UH 0 11 h 4462 8970 4 +PQ +SE +ID 3511 +TI 1760667400.764823198 +UH 0 16 l 2801 8493 4 +UH 0 18 l 4344 8495 4 +UH 0 0 h 2712 8647 4 +UH 0 1 h 1753 8666 4 +UH 0 2 h 4477 8919 4 +UH 0 3 h 1661 8367 4 +UH 0 64 h 1670 0 5 +BD GR Veto +PQ +SE +ID 3512 +TI 1760667400.764860630 +UH 0 64 l 1700 0 5 +UH 0 64 h 2260 0 5 +BD GR Veto +PQ +SE +ID 3513 +TI 1760667400.764868497 +UH 0 49 l 3807 8562 4 +UH 0 50 l 1577 8579 4 +UH 0 53 l 2742 8814 4 +UH 0 54 l 2092 9015 4 +UH 0 4 h 2339 9395 4 +UH 0 6 h 3829 9207 4 +UH 0 9 h 1649 1938 0 +UH 0 21 h 1862 9067 4 +UH 0 22 h 2206 8741 4 +PQ +SE +ID 3514 +TI 1760667400.764921188 +UH 0 63 l 2070 10421 4 +UH 0 64 l 3530 0 5 +UH 0 13 h 2636 11302 4 +UH 0 14 h 2325 11416 4 +UH 0 64 h 2246 0 5 +BD GR Veto +PQ +SE +ID 3515 +TI 1760667400.764947414 +UH 0 9 l 2552 10875 4 +UH 0 10 l 1717 10959 4 +UH 0 11 l 3722 10529 4 +UH 0 12 l 2587 10111 4 +UH 0 46 h 1953 10762 4 +UH 0 47 h 2577 10667 4 +UH 0 48 h 2186 10859 4 +UH 0 49 h 3603 10492 4 +PQ +SE +ID 3516 +TI 1760667400.764979124 +UH 0 61 l 1746 5083 0 +UH 0 63 l 2193 10646 4 +UH 0 46 h 1700 4696 0 +UH 0 47 h 2309 11070 4 +PQ +SE +ID 3517 +TI 1760667400.765002250 +UH 0 58 l 1583 9120 4 +UH 0 59 l 3791 9201 4 +UH 0 44 h 3867 9551 4 +PQ +SE +ID 3518 +TI 1760667400.765022277 +UH 0 45 l 1539 5007 0 +UH 0 46 l 1902 10989 4 +UH 0 3 h 2054 10795 4 +PQ +SE +ID 3519 +TI 1760667400.786550521 +UH 0 1 l 3191 11057 4 +UH 0 50 h 3144 10810 4 +UH 0 51 h 1555 11022 4 +PQ +SE +ID 3520 +TI 1760667400.786625623 +UH 0 0 l 2315 10813 4 +UH 0 4 l 1606 4660 0 +UH 0 5 l 2145 10760 4 +UH 0 14 h 1869 11387 4 +UH 0 15 h 1832 11511 4 +UH 0 20 h 2284 11102 4 +PQ +SE +ID 3521 +TI 1760667400.786694049 +UH 0 12 l 2383 10204 4 +UH 0 31 h 2228 10977 4 +PQ +SE +ID 3522 +TI 1760667400.786735773 +UH 0 37 l 1598 5340 0 +UH 0 36 h 1690 4184 0 +PQ +SE +ID 3523 +TI 1760667400.786770582 +UH 0 64 l 2386 0 5 +UH 0 64 h 2421 0 5 +BD GR Veto +PQ +SE +ID 3524 +TI 1760667400.786786556 +UH 0 64 l 2592 0 5 +UH 0 64 h 2583 0 5 +BD GR Veto +PQ +SE +ID 3525 +TI 1760667400.786801099 +UH 0 64 l 2833 0 5 +UH 0 64 h 2823 0 5 +BD GR Veto +PQ +SE +ID 3526 +TI 1760667400.786815881 +UH 0 5 l 2143 8816 4 +UH 0 6 l 5119 8905 4 +UH 0 7 l 1597 9002 4 +UH 0 2 h 1624 9457 4 +UH 0 3 h 5651 9058 4 +UH 0 4 h 1647 9576 4 +PQ +SE +ID 3527 +TI 1760667400.786874532 +UH 0 8 l 2355 10803 4 +UH 0 9 l 2386 10841 4 +UH 0 11 l 1803 5064 0 +UH 0 44 h 2671 10977 4 +UH 0 45 h 1921 11276 4 +UH 0 57 h 1646 4632 0 +PQ +SE +ID 3528 +TI 1760667400.786942958 +UH 0 59 l 2424 10582 4 +UH 0 64 l 1832 0 5 +UH 0 19 h 2387 11423 4 +UH 0 64 h 1883 0 5 +BD GR Veto +PQ +SE +ID 3529 +TI 1760667400.786987066 +UH 0 60 l 2285 10408 4 +UH 0 61 l 2149 10512 4 +UH 0 57 h 2828 11250 4 +PQ +SE +ID 3530 +TI 1760667400.787025213 +UH 0 10 l 2960 10862 4 +UH 0 37 h 2913 11019 4 +PQ +SE +ID 3531 +TI 1760667400.787060976 +UH 0 10 l 1673 4568 0 +UH 0 11 l 1833 4205 0 +UH 0 14 l 2320 10385 4 +UH 0 15 l 2163 10326 4 +UH 0 31 l 1608 2352 0 +UH 0 9 h 3075 11246 4 +PQ +SE +ID 3532 +TI 1760667400.787138223 +UH 0 50 l 1577 5353 0 +PQ +SE +ID 3533 +TI 1760667400.787159919 +UH 0 56 l 1679 11081 4 +UH 0 57 l 3195 10677 4 +UH 0 36 h 1996 11006 4 +UH 0 37 h 2987 11195 4 +PQ +SE +ID 3534 +TI 1760667400.787204980 +UH 0 13 l 2232 10821 4 +UH 0 14 l 2321 10684 4 +UH 0 8 h 1672 11740 4 +UH 0 9 h 2807 11299 4 +PQ +SE +ID 3535 +TI 1760667400.787255525 +UH 0 47 l 2447 10508 4 +UH 0 48 l 3132 10579 4 +UH 0 63 l 1547 2029 0 +UH 0 5 h 3564 11194 4 +UH 0 6 h 2025 11261 4 +PQ +SE +ID 3536 +TI 1760667400.787316799 +UH 0 12 l 3267 10104 4 +UH 0 13 l 2693 10605 4 +UH 0 39 h 4334 10843 4 +PQ +SE +ID 3537 +TI 1760667400.787355899 +UH 0 43 l 2613 10800 4 +UH 0 27 h 2675 11220 4 +PQ +SE +ID 3538 +TI 1760667400.787389278 +UH 0 23 l 2650 10723 4 +UH 0 21 h 2320 11532 4 +UH 0 22 h 1802 11270 4 +PQ +SE +ID 3539 +TI 1760667400.787427425 +UH 0 54 l 1724 5195 0 +UH 0 55 l 1593 5050 0 +UH 0 16 h 1906 11627 4 +PQ +SE +ID 3540 +TI 1760667400.787465572 +UH 0 6 l 2360 11090 4 +UH 0 46 h 2043 11168 4 +UH 0 47 h 1922 11124 4 +PQ +SE +ID 3541 +TI 1760667400.787503719 +UH 0 27 l 2459 10884 4 +UH 0 27 h 2410 11251 4 +PQ +SE +ID 3542 +TI 1760667400.787542581 +UH 0 12 l 1859 10368 4 +UH 0 12 h 1718 11631 4 +PQ +SE +ID 3543 +TI 1760667400.787576913 +UH 0 37 l 1957 10519 4 +UH 0 38 l 1836 10449 4 +UH 0 27 l 4431 10721 4 +UH 0 60 h 4592 10435 4 +UH 0 61 h 2092 10859 4 +PQ +SE +ID 3544 +TI 1760667400.787636041 +UH 0 18 l 1587 8581 4 +UH 0 19 l 4275 8740 4 +UH 0 7 h 1634 8856 4 +UH 0 8 h 4209 9045 4 +PQ +SE +ID 3545 +TI 1760667400.787679195 +UH 0 1 l 3385 9800 4 +UH 0 10 l 2307 9702 4 +UH 0 6 h 3361 9783 4 +UH 0 7 h 1635 9851 4 +UH 0 9 h 2255 9560 4 +PQ +SE +ID 3546 +TI 1760667400.787741422 +UH 0 44 l 1755 10899 4 +UH 0 46 h 1706 10885 4 +UH 0 47 h 1700 4503 0 +PQ +SE +ID 3547 +TI 1760667400.787779569 +UH 0 25 l 2238 11017 4 +UH 0 46 h 2160 11200 4 +PQ +SE +ID 3548 +TI 1760667400.787813425 +UH 0 17 l 2464 10958 4 +UH 0 56 h 2506 10612 4 +PQ +SE +ID 3549 +TI 1760667400.787852525 +UH 0 5 l 1732 5242 0 +UH 0 3 h 1708 4634 0 +PQ +SE +ID 3550 +TI 1760667400.787885904 +UH 0 44 l 1500 5320 0 +UH 0 45 l 2759 8433 4 +UH 0 46 l 1507 8599 4 +UH 0 47 l 3217 8593 4 +UH 0 59 l 1624 1525 0 +UH 0 61 l 1729 1533 0 +UH 0 62 l 1692 1545 0 +UH 0 63 l 1665 1335 0 +UH 0 51 h 4332 8929 4 +UH 0 52 h 1686 9050 4 +PQ +SE +ID 3551 +TI 1760667400.787966489 +UH 0 22 l 1657 5329 0 +UH 0 61 h 1589 5263 0 +PQ +SE +ID 3552 +TI 1760667400.788000345 +UH 0 29 l 4299 10244 4 +UH 0 30 l 1684 10671 4 +UH 0 13 h 3132 11042 4 +UH 0 14 h 2727 11140 4 +PQ +SE +ID 3553 +TI 1760667400.788043498 +UH 0 54 l 2737 10985 4 +UH 0 37 h 2812 10554 4 +PQ +SE +ID 3554 +TI 1760667400.788077354 +UH 0 46 l 2348 10426 4 +UH 0 47 l 1534 3471 0 +UH 0 50 l 1591 4493 0 +UH 0 51 l 2239 10967 4 +UH 0 52 l 1756 5037 0 +UH 0 15 h 2069 10979 4 +UH 0 16 h 1884 10950 4 +UH 0 18 h 1646 4016 0 +UH 0 19 h 2371 11246 4 +PQ +SE +ID 3555 +TI 1760667400.788162231 +UH 0 23 l 2906 10587 4 +UH 0 58 h 2747 10924 4 +PQ +SE +ID 3556 +TI 1760667400.788180589 +UH 0 64 l 5674 0 5 +UH 0 64 h 5428 0 5 +BD GR Veto +PQ +SE +ID 3557 +TI 1760667400.788189649 +UH 0 20 l 1973 10504 4 +UH 0 64 l 2137 0 5 +UH 0 22 h 1872 11001 4 +UH 0 23 h 1619 5394 0 +UH 0 64 h 2162 0 5 +BD GR Veto +PQ +SE +ID 3558 +TI 1760667400.788214921 +UH 0 6 l 2313 9288 4 +UH 0 7 l 1605 9268 4 +UH 0 8 l 4080 8869 4 +UH 0 9 l 2457 8977 4 +UH 0 39 h 2108 9032 4 +UH 0 40 h 1710 9035 4 +UH 0 41 h 5025 9215 4 +PQ +SE +ID 3559 +TI 1760667400.788244485 +UH 0 64 l 2792 0 5 +UH 0 64 h 2760 0 5 +BD GR Veto +PQ +SE +ID 3560 +TI 1760667400.788252830 +UH 0 64 l 2457 0 5 +UH 0 64 h 2545 0 5 +BD GR Veto +PQ +SE +ID 3561 +TI 1760667400.788260936 +UH 0 54 l 2102 10730 4 +UH 0 12 h 2108 11358 4 +PQ +SE +ID 3562 +TI 1760667400.788279294 +UH 0 6 l 3973 10488 4 +UH 0 7 l 1940 10434 4 +UH 0 36 h 4301 10797 4 +UH 0 37 h 1623 11084 4 +PQ +SE +ID 3563 +TI 1760667400.788302421 +UH 0 1 l 1696 4870 0 +UH 0 6 l 3999 11099 4 +UH 0 9 h 3349 11178 4 +UH 0 10 h 2160 11500 4 +UH 0 11 h 1686 11401 4 +PQ +SE +ID 3564 +TI 1760667400.788332223 +UH 0 64 l 2951 0 5 +UH 0 64 h 2925 0 5 +BD GR Veto +PQ +SE +ID 3565 +TI 1760667400.788340568 +UH 0 35 l 2341 10665 4 +UH 0 36 l 1917 10401 4 +UH 0 64 l 2264 0 5 +UH 0 63 h 2694 10751 4 +UH 0 64 h 2343 0 5 +BD GR Veto +PQ +SE +ID 3566 +TI 1760667400.788362741 +UH 0 41 l 1747 10879 4 +UH 0 42 l 2036 10826 4 +UH 0 2 h 2371 11584 4 +PQ +SE +ID 3567 +TI 1760667400.788382768 +UH 0 61 l 1789 10852 4 +UH 0 62 l 2095 10989 4 +UH 0 64 l 2689 0 5 +UH 0 6 h 2213 11091 4 +UH 0 64 h 2669 0 5 +BD GR Veto +PQ +SE +ID 3568 +TI 1760667400.788411378 +UH 0 9 l 2620 10721 4 +UH 0 35 h 2569 11124 4 +PQ +SE +ID 3569 +TI 1760667400.788429021 +UH 0 34 l 3018 10632 4 +UH 0 59 h 2167 10500 4 +UH 0 60 h 2333 10212 4 +PQ +SE +ID 3570 +TI 1760667400.788448572 +UH 0 53 l 2226 10639 4 +UH 0 61 l 2360 10680 4 +UH 0 62 l 1866 10961 4 +UH 0 43 h 2537 10728 4 +UH 0 59 h 2176 10845 4 +PQ +SE +ID 3571 +TI 1760667400.788484334 +UH 0 52 l 2090 10643 4 +UH 0 44 h 2066 10824 4 +UH 0 64 h 1732 0 5 +BD GR Veto +PQ +SE +ID 3572 +TI 1760667400.788504838 +UH 0 64 l 1654 0 5 +UH 0 64 h 1717 0 5 +BD GR Veto +PQ +SE +ID 3573 +TI 1760667400.788513898 +UH 0 42 l 1613 5368 0 +UH 0 43 l 1504 8727 4 +UH 0 44 l 4008 8345 4 +UH 0 45 l 1559 8428 4 +UH 0 37 h 4067 8720 4 +PQ +SE +ID 3574 +TI 1760667400.788540124 +UH 0 64 l 2737 0 5 +UH 0 64 h 2731 0 5 +BD GR Veto +PQ +SE +ID 3575 +TI 1760667400.788549184 +UH 0 18 l 2841 10653 4 +UH 0 42 h 1697 10510 4 +UH 0 43 h 2509 10674 4 +UH 0 44 h 1686 10641 4 +UH 0 24 h 2483 3093 4 +PQ +SE +ID 3576 +TI 1760667400.788583755 +UH 0 37 l 1733 5350 0 +UH 0 46 h 1728 5315 0 +PQ +SE +ID 3577 +TI 1760667400.788603067 +UH 0 64 l 2634 0 5 +UH 0 64 h 2532 0 5 +BD GR Veto +PQ +SE +ID 3578 +TI 1760667400.788612842 +UH 0 30 l 1817 5498 0 +UH 0 15 h 1839 11983 4 +PQ +SE +ID 3579 +TI 1760667400.788631200 +UH 0 39 l 2276 10795 4 +UH 0 54 h 1977 10877 4 +UH 0 55 h 1868 10483 4 +PQ +SE +ID 3580 +TI 1760667400.788651227 +UH 0 12 l 1841 10183 4 +UH 0 13 l 3911 10496 4 +UH 0 20 h 2642 11131 4 +UH 0 23 h 3015 11046 4 +PQ +SE +ID 3581 +TI 1760667400.788679838 +UH 0 18 l 1951 10532 4 +UH 0 19 l 3908 10742 4 +UH 0 20 h 3611 10947 4 +UH 0 21 h 2184 11257 4 +PQ +SE +ID 3582 +TI 1760667400.788703203 +UH 0 20 l 2329 10575 4 +UH 0 36 h 2278 11350 4 +PQ +SE +ID 3583 +TI 1760667400.810168981 +UH 0 59 l 1912 10843 4 +UH 0 60 h 1862 11050 4 +PQ +SE +ID 3584 +TI 1760667400.810222625 +UH 0 64 l 1627 0 5 +UH 0 64 h 1883 0 5 +BD GR Veto +PQ +SE +ID 3585 +TI 1760667400.810232400 +UH 0 53 l 3957 10737 4 +UH 0 9 h 3562 10604 4 +UH 0 10 h 1875 10930 4 +PQ +SE +ID 3586 +TI 1760667400.810252189 +UH 0 0 l 4198 8574 4 +UH 0 1 l 1624 9057 4 +UH 0 38 h 4216 8773 4 +PQ +SE +ID 3587 +TI 1760667400.810271024 +UH 0 60 l 1728 5067 0 +UH 0 34 h 1649 5154 0 +PQ +SE +ID 3588 +TI 1760667400.810288429 +UH 0 64 l 2168 0 5 +UH 0 64 h 2153 0 5 +BD GR Veto +PQ +SE +ID 3589 +TI 1760667400.810296535 +UH 0 25 l 3277 11134 4 +UH 0 46 h 3180 10999 4 +PQ +SE +ID 3590 +TI 1760667400.810313701 +UH 0 42 l 1790 4979 0 +UH 0 43 l 1852 10848 4 +UH 0 7 h 2200 11440 4 +PQ +SE +ID 3591 +TI 1760667400.810333728 +UH 0 28 l 1716 10515 4 +UH 0 29 l 4082 10204 4 +UH 0 12 h 4075 10805 4 +PQ +SE +ID 3592 +TI 1760667400.810353994 +UH 0 11 l 1879 5107 0 +UH 0 61 h 1688 5219 0 +PQ +SE +ID 3593 +TI 1760667400.810371398 +UH 0 51 l 3030 10693 4 +UH 0 58 h 2941 10878 4 +PQ +SE +ID 3594 +TI 1760667400.810390233 +UH 0 2 l 4538 10337 4 +UH 0 16 h 3627 10462 4 +UH 0 17 h 1548 10422 4 +UH 0 22 h 1712 3691 0 +UH 0 23 h 2105 10113 4 +PQ +SE +ID 3595 +TI 1760667400.810420274 +UH 0 21 l 1699 4739 0 +UH 0 22 l 2174 10532 4 +UH 0 63 h 2347 11047 4 +PQ +SE +ID 3596 +TI 1760667400.810438156 +UH 0 4 l 1827 11085 4 +UH 0 11 l 3362 10371 4 +UH 0 20 h 1808 10926 4 +UH 0 27 h 3218 11183 4 +PQ +SE +ID 3597 +TI 1760667400.810470819 +UH 0 11 l 3910 10518 4 +UH 0 26 l 2162 11387 4 +UH 0 35 h 1628 11044 4 +UH 0 36 h 3735 11013 4 +UH 0 28 h 1874 11120 4 +UH 0 29 h 1798 11305 4 +PQ +SE +ID 3598 +TI 1760667400.810507059 +UH 0 64 l 2719 0 5 +UH 0 64 h 2715 0 5 +BD GR Veto +PQ +SE +ID 3599 +TI 1760667400.810515403 +UH 0 37 l 1591 11006 4 +UH 0 38 l 2393 10873 4 +UH 0 64 l 2803 0 5 +UH 0 0 h 2703 11095 4 +UH 0 1 h 1748 11326 4 +UH 0 64 h 2478 0 5 +BD GR Veto +PQ +SE +ID 3600 +TI 1760667400.810540199 +UH 0 14 l 3332 10826 4 +UH 0 16 l 1937 10692 4 +UH 0 17 l 1886 10637 4 +UH 0 48 h 1747 10995 4 +UH 0 49 h 2124 10954 4 +UH 0 50 h 3333 10800 4 +PQ +SE +ID 3601 +TI 1760667400.810577869 +UH 0 49 l 2103 10932 4 +UH 0 19 h 2122 11556 4 +PQ +SE +ID 3602 +TI 1760667400.810595273 +UH 0 57 l 2165 10853 4 +UH 0 14 h 2091 10916 4 +UH 0 15 h 1642 4611 0 +PQ +SE +ID 3603 +TI 1760667400.810614347 +UH 0 6 l 1973 11005 4 +UH 0 7 l 1730 4787 0 +UH 0 8 l 1789 4708 0 +UH 0 16 l 2108 11004 4 +UH 0 17 l 2268 10942 4 +UH 0 18 l 2840 10663 4 +UH 0 64 l 2199 0 5 +UH 0 57 h 2669 11096 4 +UH 0 58 h 2409 10735 4 +UH 0 59 h 2233 10934 4 +UH 0 60 h 2154 10582 4 +UH 0 64 h 2260 0 5 +BD GR Veto +PQ +SE +ID 3604 +TI 1760667400.810671091 +UH 0 19 l 1945 11174 4 +UH 0 15 h 1929 11718 4 +PQ +SE +ID 3605 +TI 1760667400.810688257 +UH 0 50 l 2098 8614 4 +UH 0 51 l 5205 8625 4 +UH 0 52 l 1614 8726 4 +UH 0 3 h 5693 8961 4 +PQ +SE +ID 3606 +TI 1760667400.810710668 +UH 0 7 l 1808 10718 4 +UH 0 17 h 1763 11729 4 +PQ +SE +ID 3607 +TI 1760667400.810728788 +UH 0 41 l 1918 11108 4 +UH 0 23 h 1974 11231 4 +PQ +SE +ID 3608 +TI 1760667400.810746431 +UH 0 57 l 3207 10716 4 +UH 0 47 h 3248 10908 4 +PQ +SE +ID 3609 +TI 1760667400.810764074 +UH 0 46 l 1972 10722 4 +UH 0 47 l 1857 10865 4 +UH 0 35 h 2075 11168 4 +UH 0 36 h 1930 11289 4 +PQ +SE +ID 3610 +TI 1760667400.810786485 +UH 0 3 l 1908 10259 4 +UH 0 5 l 4569 10814 4 +UH 0 54 h 2959 10528 4 +UH 0 55 h 3057 10160 4 +UH 0 58 h 1887 10624 4 +PQ +SE +ID 3611 +TI 1760667400.810823678 +UH 0 28 l 1674 4958 0 +UH 0 42 h 1697 5181 0 +PQ +SE +ID 3612 +TI 1760667400.810841083 +UH 0 63 l 1565 4623 0 +UH 0 64 l 1970 0 5 +UH 0 40 h 2059 11247 4 +BD GR Veto +PQ +SE +ID 3613 +TI 1760667400.810858011 +UH 0 64 l 4028 0 5 +UH 0 64 h 3912 0 5 +BD GR Veto +PQ +SE +ID 3614 +TI 1760667400.810865640 +UH 0 42 l 2305 10929 4 +UH 0 45 l 1836 10910 4 +UH 0 56 h 1978 11205 4 +UH 0 57 h 2177 11325 4 +PQ +SE +ID 3615 +TI 1760667400.810892820 +UH 0 8 l 2317 10700 4 +UH 0 19 h 1891 11550 4 +UH 0 20 h 1873 11273 4 +PQ +SE +ID 3616 +TI 1760667400.810913324 +UH 0 16 l 2116 8425 4 +UH 0 17 l 1630 3160 0 +UH 0 18 l 2201 8391 4 +UH 0 22 l 3008 8626 4 +UH 0 23 l 1711 8746 4 +UH 0 25 l 2851 8680 4 +UH 0 34 h 2138 8792 4 +UH 0 35 h 2717 8979 4 +UH 0 36 h 1682 2062 0 +UH 0 37 h 2209 9156 4 +UH 0 39 h 3020 8702 4 +PQ +SE +ID 3617 +TI 1760667400.810968399 +UH 0 45 l 1576 5029 0 +UH 0 46 l 1954 10693 4 +UH 0 48 l 2638 10747 4 +UH 0 10 l 2451 10703 4 +UH 0 14 l 1743 4922 0 +UH 0 3 h 2451 10898 4 +UH 0 4 h 1745 4764 0 +UH 0 19 h 2067 11309 4 +UH 0 21 h 2666 11425 4 +PQ +SE +ID 3618 +TI 1760667400.811027050 +UH 0 0 l 1885 11125 4 +UH 0 64 l 2828 0 5 +UH 0 32 h 1878 11016 4 +UH 0 34 h 2619 10698 4 +BD GR Veto +PQ +SE +ID 3619 +TI 1760667400.811049938 +UH 0 5 l 1703 9981 4 +UH 0 6 l 3513 10079 4 +UH 0 43 h 3501 10269 4 +PQ +SE +ID 3620 +TI 1760667400.811069965 +UH 0 63 l 2055 10813 4 +UH 0 29 h 2056 10871 4 +UH 0 30 h 1562 3084 0 +PQ +SE +ID 3621 +TI 1760667400.811096429 +UH 0 45 l 1864 10790 4 +UH 0 46 l 1857 10774 4 +UH 0 43 h 2265 11026 4 +PQ +SE +ID 3622 +TI 1760667400.811130523 +UH 0 21 l 2781 11097 4 +UH 0 6 h 2563 10895 4 +UH 0 7 h 1743 10887 4 +PQ +SE +ID 3623 +TI 1760667400.811152935 +UH 0 64 l 4459 0 5 +UH 0 64 h 4324 0 5 +BD GR Veto +PQ +SE +ID 3624 +TI 1760667400.811161041 +UH 0 64 l 1768 0 5 +UH 0 64 h 1860 0 5 +BD GR Veto +PQ +SE +ID 3625 +TI 1760667400.811168909 +UH 0 27 l 5677 8724 4 +UH 0 28 l 1655 9246 4 +UH 0 39 h 5617 8841 4 +PQ +SE +ID 3626 +TI 1760667400.811188697 +UH 0 64 l 2549 0 5 +UH 0 64 h 3910 0 5 +BD GR Veto +PQ +SE +ID 3627 +TI 1760667400.811196327 +UH 0 27 l 1908 11059 4 +UH 0 28 l 2076 11338 4 +UH 0 58 h 2345 10596 4 +PQ +SE +ID 3628 +TI 1760667400.811215877 +UH 0 16 l 2125 11071 4 +UH 0 43 h 2115 10729 4 +PQ +SE +ID 3629 +TI 1760667400.811233520 +UH 0 34 l 1594 8471 4 +UH 0 35 l 3953 8541 4 +UH 0 32 h 3859 9014 4 +PQ +SE +ID 3630 +TI 1760667400.811254024 +UH 0 15 l 2290 10933 4 +UH 0 31 l 1630 2303 0 +UH 0 30 h 1830 11364 4 +UH 0 31 h 1865 10752 4 +PQ +SE +ID 3631 +TI 1760667400.811276197 +UH 0 64 l 1950 0 5 +UH 0 64 h 2335 0 5 +BD GR Veto +PQ +SE +ID 3632 +TI 1760667400.811284065 +UH 0 64 l 1843 0 5 +UH 0 37 h 1860 11203 4 +BD GR Veto +PQ +SE +ID 3633 +TI 1760667400.811297178 +UH 0 22 l 2018 10999 4 +UH 0 36 h 2044 11269 4 +PQ +SE +ID 3634 +TI 1760667400.811314344 +UH 0 58 l 3500 10179 4 +UH 0 26 h 3426 11359 4 +PQ +SE +ID 3635 +TI 1760667400.811331510 +UH 0 40 l 2954 10874 4 +UH 0 30 l 2221 3379 4 +UH 0 31 l 2318 3365 4 +UH 0 43 h 2890 3832 4 +UH 0 48 h 1940 10513 4 +UH 0 49 h 2601 10439 4 +PQ +SE +ID 3636 +TI 1760667400.811367750 +UH 0 23 l 4549 10780 4 +UH 0 64 l 2667 0 5 +UH 0 62 h 4324 10695 4 +UH 0 63 h 1714 10682 4 +UH 0 64 h 2713 0 5 +BD GR Veto +PQ +SE +ID 3637 +TI 1760667400.811390161 +UH 0 6 l 3510 9721 4 +UH 0 8 l 3627 9607 4 +UH 0 9 l 1728 9750 4 +UH 0 8 h 3626 10246 4 +UH 0 9 h 1589 10036 4 +UH 0 10 h 1740 10277 4 +UH 0 11 h 3294 10045 4 +PQ +SE +ID 3638 +TI 1760667400.811423540 +UH 0 6 l 1663 5088 0 +UH 0 7 l 1820 10906 4 +UH 0 8 l 1919 4806 0 +UH 0 9 l 2360 10570 4 +UH 0 64 l 4098 0 5 +UH 0 0 h 1976 11207 4 +UH 0 1 h 2023 11316 4 +UH 0 2 h 2390 11325 4 +UH 0 64 h 3884 0 5 +BD GR Veto +PQ +SE +ID 3639 +TI 1760667400.811455488 +UH 0 64 l 2058 0 5 +UH 0 64 h 2130 0 5 +BD GR Veto +PQ +SE +ID 3640 +TI 1760667400.811463594 +UH 0 8 l 2327 10677 4 +UH 0 9 h 2261 11365 4 +PQ +SE +ID 3641 +TI 1760667400.811481952 +UH 0 39 l 3662 10937 4 +UH 0 37 h 3667 11111 4 +PQ +SE +ID 3642 +TI 1760667400.811500549 +UH 0 31 l 3527 10459 4 +UH 0 52 h 3497 9899 4 +UH 0 53 h 1581 9896 4 +PQ +SE +ID 3643 +TI 1760667400.811520576 +UH 0 7 l 3071 10739 4 +UH 0 8 l 1830 10767 4 +UH 0 13 l 1788 5029 0 +UH 0 19 l 2500 10962 4 +UH 0 20 l 2761 10601 4 +UH 0 35 h 2763 11001 4 +UH 0 36 h 2124 11111 4 +UH 0 39 h 1834 4727 0 +UH 0 41 h 3592 11113 4 +UH 0 42 h 1649 10802 4 +PQ +SE +ID 3644 +TI 1760667400.811573982 +UH 0 19 l 1721 5423 0 +UH 0 55 h 1697 4159 0 +UH 0 56 h 1619 5169 0 +PQ +SE +ID 3645 +TI 1760667400.811594963 +UH 0 64 l 2118 0 5 +UH 0 64 h 2138 0 5 +BD GR Veto +PQ +SE +ID 3646 +TI 1760667400.811603307 +UH 0 12 l 4214 9914 4 +UH 0 15 l 1754 4554 0 +UH 0 17 h 3894 11138 4 +UH 0 19 h 1622 4793 0 +PQ +SE +ID 3647 +TI 1760667400.836154222 +UH 0 48 l 1779 10861 4 +UH 0 49 l 4197 10717 4 +UH 0 48 h 1817 10998 4 +UH 0 49 h 4242 10905 4 +PQ +SE +ID 3648 +TI 1760667400.836256504 +UH 0 62 l 1791 5375 0 +UH 0 33 h 1696 4200 0 +PQ +SE +ID 3649 +TI 1760667400.836279392 +UH 0 42 l 2926 4882 4 +UH 0 55 l 1663 4792 0 +UH 0 34 h 2794 4468 4 +UH 0 28 h 1830 11312 4 +PQ +SE +ID 3650 +TI 1760667400.836314916 +UH 0 24 l 2650 10745 4 +UH 0 61 h 2583 11234 4 +PQ +SE +ID 3651 +TI 1760667400.836333274 +UH 0 44 l 2810 10721 4 +UH 0 45 l 4293 10634 4 +UH 0 48 h 2195 10562 4 +UH 0 49 h 3036 10490 4 +UH 0 50 h 3580 10374 4 +PQ +SE +ID 3652 +TI 1760667400.836359500 +UH 0 64 l 1729 0 5 +UH 0 64 h 1856 0 5 +BD GR Veto +PQ +SE +ID 3653 +TI 1760667400.836368322 +UH 0 61 l 3160 10509 4 +UH 0 62 l 1861 10768 4 +UH 0 37 h 3398 11298 4 +PQ +SE +ID 3654 +TI 1760667400.836388826 +UH 0 64 l 4236 0 5 +UH 0 15 h 4120 11333 4 +BD GR Veto +PQ +SE +ID 3655 +TI 1760667400.836401700 +UH 0 50 l 1583 5364 0 +UH 0 51 l 3387 8709 4 +UH 0 52 l 1688 8756 4 +UH 0 61 l 1784 2880 0 +UH 0 34 h 1649 2496 0 +UH 0 30 h 3406 9550 4 +PQ +SE +ID 3656 +TI 1760667400.836439609 +UH 0 57 l 1542 5211 0 +PQ +SE +ID 3657 +TI 1760667400.836451768 +UH 0 64 l 2533 0 5 +UH 0 64 h 2566 0 5 +BD GR Veto +PQ +SE +ID 3658 +TI 1760667400.836459159 +UH 0 50 l 3276 10629 4 +UH 0 12 h 3233 11172 4 +PQ +SE +ID 3659 +TI 1760667400.836477994 +UH 0 23 l 1875 5346 0 +UH 0 5 h 1740 5150 0 +PQ +SE +ID 3660 +TI 1760667400.836496114 +UH 0 57 l 2316 10676 4 +UH 0 44 h 2358 11082 4 +PQ +SE +ID 3661 +TI 1760667400.836514711 +UH 0 26 l 1842 5634 0 +UH 0 62 h 1733 3566 0 +UH 0 63 h 1654 4471 0 +PQ +SE +ID 3662 +TI 1760667400.836533069 +UH 0 48 l 1528 8868 4 +UH 0 49 l 4592 8972 4 +UH 0 50 l 1596 8848 4 +UH 0 56 h 4304 8756 4 +UH 0 62 h 1876 8801 4 +PQ +SE +ID 3663 +TI 1760667400.836562871 +UH 0 32 l 1807 5253 0 +UH 0 53 h 1771 11434 4 +PQ +SE +ID 3664 +TI 1760667400.836580514 +UH 0 33 l 1839 8454 4 +UH 0 34 l 2630 8529 4 +UH 0 35 l 1555 8956 4 +UH 0 36 l 4256 8601 4 +UH 0 12 h 2460 8793 4 +UH 0 13 h 1660 8955 4 +UH 0 14 h 1818 9036 4 +UH 0 17 h 1806 8777 4 +UH 0 18 h 3970 8600 4 +PQ +SE +ID 3665 +TI 1760667400.836629867 +UH 0 28 l 2716 9445 4 +UH 0 29 l 4582 9268 4 +UH 0 38 h 2179 9217 4 +UH 0 39 h 1652 8952 4 +UH 0 40 h 4962 8828 4 +UH 0 41 h 1599 9344 4 +PQ +SE +ID 3666 +TI 1760667400.836656808 +UH 0 47 l 3297 10757 4 +UH 0 53 l 2252 10930 4 +UH 0 58 l 1562 3075 0 +UH 0 60 l 1642 1348 0 +UH 0 61 l 1656 2311 0 +UH 0 62 l 1646 2262 0 +UH 0 63 l 1613 2446 0 +UH 0 39 h 2063 10433 4 +UH 0 40 h 1739 10506 4 +UH 0 43 h 3227 10766 4 +UH 0 44 h 1596 10723 4 +PQ +SE +ID 3667 +TI 1760667400.836715459 +UH 0 35 l 4382 10711 4 +UH 0 36 l 2113 10517 4 +UH 0 30 l 2140 10823 4 +UH 0 31 l 1640 4830 0 +UH 0 25 h 3121 10961 4 +UH 0 26 h 3131 11072 4 +UH 0 30 h 2078 11224 4 +UH 0 31 h 1641 10650 4 +PQ +SE +ID 3668 +TI 1760667400.836759090 +UH 0 51 l 1950 11034 4 +UH 0 52 l 2329 10914 4 +UH 0 54 h 2598 11014 4 +PQ +SE +ID 3669 +TI 1760667400.836779594 +UH 0 64 l 3204 0 5 +UH 0 64 h 3161 0 5 +BD GR Veto +PQ +SE +ID 3670 +TI 1760667400.836789131 +UH 0 13 l 1686 4269 0 +UH 0 14 l 2289 10641 4 +UH 0 16 l 1905 10506 4 +UH 0 40 h 2349 10673 4 +UH 0 29 h 1948 11308 4 +PQ +SE +ID 3671 +TI 1760667400.836821079 +UH 0 55 l 1501 5370 0 +PQ +SE +ID 3672 +TI 1760667400.836833000 +UH 0 64 l 1855 0 5 +UH 0 37 h 1825 11468 4 +BD GR Veto +PQ +SE +ID 3673 +TI 1760667400.836846828 +UH 0 64 l 2339 0 5 +UH 0 64 h 2387 0 5 +BD GR Veto +PQ +SE +ID 3674 +TI 1760667400.836856126 +UH 0 48 l 1933 11018 4 +UH 0 49 l 2303 10956 4 +UH 0 3 h 2870 10485 4 +PQ +SE +ID 3675 +TI 1760667400.836882352 +UH 0 64 l 1722 0 5 +UH 0 64 h 1783 0 5 +BD GR Veto +PQ +SE +ID 3676 +TI 1760667400.836892366 +UH 0 37 l 1710 5346 0 +UH 0 27 h 1746 11915 4 +PQ +SE +ID 3677 +TI 1760667400.836911916 +UH 0 38 l 1832 11070 4 +UH 0 37 h 1866 11661 4 +PQ +SE +ID 3678 +TI 1760667400.836932897 +UH 0 0 l 1653 4404 0 +UH 0 4 l 3108 10644 4 +UH 0 64 l 1635 0 5 +UH 0 16 h 1803 11434 4 +UH 0 18 h 2635 11222 4 +UH 0 19 h 1989 11502 4 +BD GR Veto +PQ +SE +ID 3679 +TI 1760667400.836968183 +UH 0 36 l 2104 10635 4 +UH 0 40 h 2075 11175 4 +PQ +SE +ID 3680 +TI 1760667400.836989641 +UH 0 64 l 1931 0 5 +UH 0 64 h 1967 0 5 +BD GR Veto +PQ +SE +ID 3681 +TI 1760667400.836999177 +UH 0 56 l 2033 11065 4 +UH 0 59 l 1664 5290 0 +UH 0 63 l 2232 10425 4 +UH 0 47 h 1804 10838 4 +UH 0 48 h 2085 10862 4 +UH 0 50 h 1743 4283 0 +UH 0 53 h 2046 10601 4 +PQ +SE +ID 3682 +TI 1760667400.837063074 +UH 0 64 l 2024 0 5 +UH 0 64 h 2047 0 5 +BD GR Veto +PQ +SE +ID 3683 +TI 1760667400.837072134 +UH 0 4 l 1720 8277 4 +UH 0 5 l 3312 7949 4 +UH 0 14 l 2190 11092 4 +UH 0 38 h 2179 11036 4 +UH 0 47 h 1775 7831 4 +UH 0 48 h 3292 7859 4 +PQ +SE +ID 3684 +TI 1760667400.837114810 +UH 0 8 l 2063 10774 4 +UH 0 32 h 1876 11415 4 +PQ +SE +ID 3685 +TI 1760667400.837134599 +UH 0 22 l 2909 10878 4 +UH 0 56 h 2886 10519 4 +PQ +SE +ID 3686 +TI 1760667400.837153434 +UH 0 12 l 2225 10317 4 +UH 0 62 h 2198 11146 4 +PQ +SE +ID 3687 +TI 1760667400.837172985 +UH 0 13 l 2368 11113 4 +UH 0 35 h 2224 10761 4 +UH 0 36 h 1723 4888 0 +PQ +SE +ID 3688 +TI 1760667400.837204456 +UH 0 64 l 1933 0 5 +UH 0 64 h 1904 0 5 +BD GR Veto +PQ +SE +ID 3689 +TI 1760667400.837216138 +UH 0 32 l 1964 10838 4 +UH 0 33 l 2608 10441 4 +UH 0 34 l 2650 10611 4 +UH 0 28 l 2749 10577 4 +UH 0 29 l 1971 10464 4 +UH 0 42 h 2863 10213 4 +UH 0 43 h 2720 10475 4 +UH 0 50 h 2945 10654 4 +UH 0 51 h 1676 10843 4 +PQ +SE +ID 3690 +TI 1760667400.837284564 +UH 0 7 l 2962 10922 4 +UH 0 13 l 2497 10688 4 +UH 0 26 h 2432 11349 4 +UH 0 27 h 2511 10859 4 +UH 0 28 h 2049 10709 4 +PQ +SE +ID 3691 +TI 1760667400.837316751 +UH 0 56 l 1645 5261 0 +UH 0 61 h 1657 5359 0 +PQ +SE +ID 3692 +TI 1760667400.837334871 +UH 0 47 l 2267 10848 4 +UH 0 49 l 1938 10959 4 +UH 0 50 l 1643 5182 0 +UH 0 63 l 1541 2551 0 +UH 0 34 h 2041 10324 4 +UH 0 36 h 1957 10615 4 +UH 0 37 h 1959 10769 4 +PQ +SE +ID 3693 +TI 1760667400.837372303 +UH 0 32 l 2600 10593 4 +UH 0 26 l 1943 10883 4 +UH 0 27 l 1805 4608 0 +UH 0 23 h 2572 11174 4 +UH 0 25 h 2019 11407 4 +PQ +SE +ID 3694 +TI 1760667400.837405443 +UH 0 5 l 1640 8904 4 +UH 0 6 l 5705 8989 4 +UH 0 25 h 1859 9167 4 +UH 0 26 h 5090 9203 4 +UH 0 27 h 1623 9119 4 +PQ +SE +ID 3695 +TI 1760667400.837431669 +UH 0 29 l 1719 5232 0 +UH 0 30 l 1698 5372 0 +UH 0 25 h 1729 11608 4 +UH 0 26 h 1579 3898 0 +PQ +SE +ID 3696 +TI 1760667400.837455272 +UH 0 40 l 1748 11031 4 +UH 0 37 h 1806 10805 4 +PQ +SE +ID 3697 +TI 1760667400.837474107 +UH 0 45 l 2310 10785 4 +UH 0 48 h 1701 4517 0 +UH 0 52 h 2156 10716 4 +PQ +SE +ID 3698 +TI 1760667400.837500095 +UH 0 64 l 2596 0 5 +UH 0 64 h 2579 0 5 +BD GR Veto +PQ +SE +ID 3699 +TI 1760667400.837509155 +UH 0 23 l 2488 10846 4 +UH 0 38 h 2364 11336 4 +PQ +SE +ID 3700 +TI 1760667400.837527751 +UH 0 64 l 2908 0 5 +UH 0 64 h 2910 0 5 +BD GR Veto +PQ +SE +ID 3701 +TI 1760667400.837536573 +UH 0 64 l 5678 0 5 +UH 0 64 h 5379 0 5 +BD GR Veto +PQ +SE +ID 3702 +TI 1760667400.837545871 +UH 0 25 l 2633 11227 4 +UH 0 45 h 1581 11192 4 +UH 0 46 h 2450 10938 4 +PQ +SE +ID 3703 +TI 1760667400.837567090 +UH 0 17 l 2749 10846 4 +UH 0 18 l 2137 10757 4 +UH 0 53 h 2729 10752 4 +UH 0 54 h 2082 10936 4 +PQ +SE +ID 3704 +TI 1760667400.837590456 +UH 0 7 l 2260 10864 4 +UH 0 8 l 2163 10741 4 +UH 0 58 h 1845 10937 4 +UH 0 59 h 1731 11141 4 +UH 0 60 h 2235 10827 4 +PQ +SE +ID 3705 +TI 1760667400.837616682 +UH 0 22 l 3520 10381 4 +UH 0 64 l 1874 0 5 +UH 0 1 h 3552 11244 4 +UH 0 64 h 1910 0 5 +BD GR Veto +PQ +SE +ID 3706 +TI 1760667400.837641716 +UH 0 57 l 1532 4511 0 +UH 0 64 l 1664 0 5 +UH 0 64 h 2525 0 5 +BD GR Veto +PQ +SE +ID 3707 +TI 1760667400.837657928 +UH 0 13 l 2078 10914 4 +UH 0 14 l 1985 10858 4 +UH 0 44 h 2462 10940 4 +PQ +SE +ID 3708 +TI 1760667400.837679147 +UH 0 32 l 3067 10705 4 +UH 0 30 l 2298 10870 4 +UH 0 50 h 2368 10952 4 +UH 0 51 h 2949 11008 4 +PQ +SE +ID 3709 +TI 1760667400.837704896 +UH 0 48 l 1562 5123 0 +UH 0 43 h 1596 5470 0 +PQ +SE +ID 3710 +TI 1760667400.837723255 +UH 0 0 l 2022 10947 4 +UH 0 15 h 2004 11139 4 +PQ +SE +ID 3711 +TI 1760667400.859052658 +UH 0 35 l 1836 10647 4 +UH 0 36 l 2818 10528 4 +UH 0 37 l 3810 10808 4 +UH 0 38 l 1733 10829 4 +UH 0 53 h 1924 10348 4 +UH 0 54 h 3578 10418 4 +UH 0 56 h 1791 10456 4 +UH 0 57 h 1656 3689 0 +UH 0 58 h 1704 10502 4 +UH 0 59 h 2569 10586 4 +PQ +SE +ID 3712 +TI 1760667400.859122991 +UH 0 64 l 2794 0 5 +UH 0 64 h 2764 0 5 +BD GR Veto +PQ +SE +ID 3713 +TI 1760667400.859133005 +UH 0 36 l 2734 10424 4 +UH 0 37 l 2599 10748 4 +UH 0 38 l 3345 10840 4 +UH 0 14 h 3151 10924 4 +UH 0 15 h 2107 11059 4 +UH 0 29 h 3360 11010 4 +PQ +SE +ID 3714 +TI 1760667400.859165430 +UH 0 32 l 1860 10749 4 +UH 0 35 l 2682 10869 4 +UH 0 17 h 1625 5377 0 +UH 0 18 h 1690 3988 0 +UH 0 23 h 2681 10903 4 +PQ +SE +ID 3715 +TI 1760667400.859201431 +UH 0 33 l 1926 10390 4 +UH 0 49 l 2913 10834 4 +UH 0 28 l 2209 10984 4 +UH 0 13 h 2134 11106 4 +UH 0 14 h 1570 5198 0 +UH 0 23 h 1912 11068 4 +UH 0 29 h 2915 11144 4 +PQ +SE +ID 3716 +TI 1760667400.859256505 +UH 0 11 l 1722 3622 0 +UH 0 12 l 1815 4396 0 +UH 0 10 h 1758 11862 4 +PQ +SE +ID 3717 +TI 1760667400.859276056 +UH 0 12 l 2547 10479 4 +UH 0 33 h 1883 10626 4 +UH 0 34 h 1990 10767 4 +PQ +SE +ID 3718 +TI 1760667400.859297037 +UH 0 63 l 1631 5056 0 +UH 0 64 l 1893 0 5 +UH 0 29 h 1698 5570 0 +UH 0 64 h 1962 0 5 +BD GR Veto +PQ +SE +ID 3719 +TI 1760667400.859318017 +UH 0 3 l 2116 10700 4 +UH 0 4 l 3121 10802 4 +UH 0 40 h 3388 10939 4 +UH 0 41 h 1826 11269 4 +PQ +SE +ID 3720 +TI 1760667400.859341621 +UH 0 48 l 2181 10794 4 +UH 0 49 l 1691 5357 0 +UH 0 15 h 2464 11508 4 +PQ +SE +ID 3721 +TI 1760667400.859362125 +UH 0 24 l 2604 11006 4 +UH 0 32 h 2436 11149 4 +PQ +SE +ID 3722 +TI 1760667400.859377622 +UH 0 62 l 1920 4848 0 +UH 0 63 l 1993 10480 4 +UH 0 64 l 1631 0 5 +UH 0 16 h 2124 11534 4 +UH 0 21 h 1893 11530 4 +BD GR Veto +PQ +SE +ID 3723 +TI 1760667400.859404802 +UH 0 40 l 2141 10969 4 +UH 0 36 h 1792 4395 0 +UH 0 37 h 2007 10721 4 +PQ +SE +ID 3724 +TI 1760667400.859424114 +UH 0 39 l 2990 10832 4 +UH 0 7 h 1653 10945 4 +UH 0 8 h 2898 11168 4 +PQ +SE +ID 3725 +TI 1760667400.859443902 +UH 0 3 l 1720 4898 0 +UH 0 52 h 1748 11349 4 +PQ +SE +ID 3726 +TI 1760667400.859461545 +UH 0 10 l 2062 10542 4 +UH 0 29 h 1996 11338 4 +PQ +SE +ID 3727 +TI 1760667400.859482288 +UH 0 16 l 2036 10892 4 +UH 0 30 l 2047 11158 4 +UH 0 31 l 1989 11074 4 +UH 0 53 h 1962 11122 4 +UH 0 54 h 2527 11247 4 +PQ +SE +ID 3728 +TI 1760667400.859511852 +UH 0 26 l 2932 11156 4 +UH 0 62 h 2933 11014 4 +PQ +SE +ID 3729 +TI 1760667400.859529018 +UH 0 44 l 1672 4899 0 +UH 0 45 l 1869 10715 4 +UH 0 54 h 2079 11316 4 +PQ +SE +ID 3730 +TI 1760667400.859549045 +UH 0 63 l 1879 10765 4 +UH 0 64 l 3722 0 5 +UH 0 51 h 1889 10458 4 +UH 0 64 h 3623 0 5 +BD GR Veto +PQ +SE +ID 3731 +TI 1760667400.859569549 +UH 0 15 l 4311 10719 4 +UH 0 18 l 1595 3360 0 +UH 0 22 l 2165 10251 4 +UH 0 25 l 2342 10740 4 +UH 0 26 l 1623 8532 0 +UH 0 27 l 1660 2122 0 +UH 0 28 l 1704 1779 0 +UH 0 29 l 1735 1964 0 +UH 0 30 l 1748 2578 0 +UH 0 31 l 1913 2312 0 +UH 0 10 h 3952 11032 4 +UH 0 11 h 1870 10959 4 +UH 0 18 h 1619 4652 0 +UH 0 21 h 2243 11189 4 +UH 0 22 h 2199 10984 4 +PQ +SE +ID 3732 +TI 1760667400.859643697 +UH 0 48 l 1671 5313 0 +UH 0 30 h 1704 11958 4 +PQ +SE +ID 3733 +TI 1760667400.859661102 +UH 0 5 l 2602 10864 4 +UH 0 11 h 2540 11352 4 +PQ +SE +ID 3734 +TI 1760667400.859678745 +UH 0 60 l 3998 10401 4 +UH 0 20 l 3266 10464 4 +UH 0 40 h 3152 10318 4 +UH 0 27 h 3927 10796 4 +PQ +SE +ID 3735 +TI 1760667400.859710693 +UH 0 50 l 3207 10299 4 +UH 0 51 l 1863 10503 4 +UH 0 11 h 3514 11225 4 +PQ +SE +ID 3736 +TI 1760667400.859730720 +UH 0 10 l 2755 11062 4 +UH 0 13 l 3431 10751 4 +UH 0 41 h 2765 11043 4 +UH 0 47 h 3471 10883 4 +PQ +SE +ID 3737 +TI 1760667400.859762191 +UH 0 64 l 1740 0 5 +UH 0 64 h 1803 0 5 +BD GR Veto +PQ +SE +ID 3738 +TI 1760667400.859770298 +UH 0 30 l 1873 11198 4 +UH 0 31 l 2387 10994 4 +UH 0 46 h 2517 11048 4 +UH 0 47 h 1786 11068 4 +PQ +SE +ID 3739 +TI 1760667400.859792947 +UH 0 17 l 1583 5252 0 +UH 0 29 l 2175 10270 4 +UH 0 30 l 1762 4906 0 +UH 0 33 h 1728 10337 4 +UH 0 34 h 2043 10470 4 +PQ +SE +ID 3740 +TI 1760667400.859822988 +UH 0 59 l 2494 10553 4 +UH 0 4 l 3661 10838 4 +UH 0 5 l 1646 10751 4 +UH 0 23 h 3184 11002 4 +UH 0 24 h 2011 10843 4 +UH 0 25 h 2015 11100 4 +UH 0 26 h 1985 11256 4 +PQ +SE +ID 3741 +TI 1760667400.859858036 +UH 0 64 h 1702 0 5 +BD GR Veto +PQ +SE +ID 3742 +TI 1760667400.859863519 +UH 0 8 l 2557 10983 4 +UH 0 19 h 1645 11088 4 +UH 0 20 h 2356 10831 4 +PQ +SE +ID 3743 +TI 1760667400.859885454 +UH 0 28 l 3033 11262 4 +UH 0 29 l 1767 11060 4 +UH 0 10 h 1687 11341 4 +UH 0 11 h 2194 11148 4 +UH 0 12 h 1545 4600 0 +UH 0 14 h 2277 11341 4 +PQ +SE +ID 3744 +TI 1760667400.859914302 +UH 0 58 l 1736 10839 4 +UH 0 49 h 1736 10701 4 +PQ +SE +ID 3745 +TI 1760667400.859931468 +UH 0 35 l 1615 5193 0 +UH 0 36 l 2158 10716 4 +UH 0 26 l 2250 11312 4 +UH 0 33 h 1757 10495 4 +UH 0 34 h 1911 10695 4 +UH 0 39 h 2229 10727 4 +PQ +SE +ID 3746 +TI 1760667400.859969139 +UH 0 64 h 1701 0 5 +BD GR Veto +PQ +SE +ID 3747 +TI 1760667400.859974622 +UH 0 15 l 1851 4694 0 +UH 0 58 h 1765 11073 4 +PQ +SE +ID 3748 +TI 1760667400.859992504 +UH 0 38 l 1988 9131 4 +UH 0 44 l 3544 8955 4 +UH 0 45 l 1540 9044 4 +UH 0 46 h 2055 8809 4 +UH 0 25 h 3383 9366 4 +UH 0 27 h 1628 9422 4 +PQ +SE +ID 3749 +TI 1760667400.860031604 +UH 0 37 l 2408 9045 4 +UH 0 43 l 1660 9631 4 +UH 0 44 l 4476 9173 4 +UH 0 45 l 1587 9264 4 +UH 0 43 h 2363 9447 4 +UH 0 48 h 4855 9297 4 +PQ +SE +ID 3750 +TI 1760667400.860067605 +UH 0 6 l 1628 5400 0 +UH 0 5 h 1594 5485 0 +PQ +SE +ID 3751 +TI 1760667400.860085010 +UH 0 1 l 3809 11102 4 +UH 0 3 l 1678 4570 0 +UH 0 6 h 1558 4739 0 +UH 0 7 h 1682 3884 0 +UH 0 16 h 3571 10854 4 +UH 0 17 h 1562 10809 4 +PQ +SE +ID 3752 +TI 1760667400.860137462 +UH 0 8 l 2159 10931 4 +UH 0 20 l 2273 10776 4 +UH 0 45 h 2134 10599 4 +UH 0 56 h 2089 10593 4 +PQ +SE +ID 3753 +TI 1760667400.860168933 +UH 0 44 l 2550 10694 4 +UH 0 54 h 1833 11305 4 +UH 0 55 h 2392 10904 4 +PQ +SE +ID 3754 +TI 1760667400.860188722 +UH 0 64 l 2103 0 5 +UH 0 64 h 2136 0 5 +BD GR Veto +PQ +SE +ID 3755 +TI 1760667400.860196590 +UH 0 34 l 1679 5284 0 +UH 0 34 h 1600 4938 0 +PQ +SE +ID 3756 +TI 1760667400.860214233 +UH 0 53 l 2246 10518 4 +UH 0 54 l 1659 5177 0 +UH 0 24 h 1704 11092 4 +UH 0 27 h 2224 11342 4 +PQ +SE +ID 3757 +TI 1760667400.860240936 +UH 0 52 l 2441 10944 4 +UH 0 35 h 2273 11234 4 +UH 0 36 h 1747 5311 0 +PQ +SE +ID 3758 +TI 1760667400.860261440 +UH 0 64 l 3161 0 5 +UH 0 11 h 3188 11295 4 +BD GR Veto +PQ +SE +ID 3759 +TI 1760667400.860274314 +UH 0 41 l 3500 10356 4 +UH 0 42 l 1669 10409 4 +UH 0 43 l 3436 10301 4 +UH 0 45 h 3419 10144 4 +UH 0 46 h 1584 9881 4 +UH 0 48 h 3663 9806 4 +PQ +SE +ID 3760 +TI 1760667400.860304832 +UH 0 32 l 2740 10792 4 +UH 0 4 h 2717 11345 4 +PQ +SE +ID 3761 +TI 1760667400.860323190 +UH 0 55 l 2290 10788 4 +UH 0 0 h 1634 4763 0 +UH 0 1 h 2346 11196 4 +PQ +SE +ID 3762 +TI 1760667400.860339641 +UH 0 3 l 1647 1307 0 +UH 0 4 l 2106 7436 4 +UH 0 16 l 2068 10464 4 +UH 0 22 h 2166 11152 4 +UH 0 29 h 2123 7831 4 +PQ +SE +ID 3763 +TI 1760667400.860374689 +UH 0 12 l 4248 9506 4 +UH 0 14 l 1817 3999 0 +UH 0 27 h 1750 3862 0 +UH 0 30 h 4020 10187 4 +UH 0 31 h 1578 9664 4 +PQ +SE +ID 3764 +TI 1760667400.860406637 +UH 0 61 l 2921 10646 4 +UH 0 62 l 2117 10878 4 +UH 0 29 h 2980 10812 4 +UH 0 30 h 1881 11083 4 +PQ +SE +ID 3765 +TI 1760667400.860428810 +UH 0 39 l 2812 10452 4 +UH 0 18 h 1607 10500 4 +UH 0 19 h 2691 10632 4 +PQ +SE +ID 3766 +TI 1760667400.860448598 +UH 0 27 l 2662 10831 4 +UH 0 33 h 2431 10315 4 +UH 0 34 h 1580 4460 0 +PQ +SE +ID 3767 +TI 1760667400.860469102 +UH 0 51 l 1669 9319 4 +UH 0 52 l 5573 9142 4 +UH 0 25 h 5269 9483 4 +UH 0 26 h 1722 9711 4 +PQ +SE +ID 3768 +TI 1760667400.860491752 +UH 0 45 l 1763 10899 4 +UH 0 46 l 1517 4979 0 +UH 0 19 h 1826 11402 4 +PQ +SE +ID 3769 +TI 1760667400.860512495 +UH 0 36 l 4162 10390 4 +UH 0 26 l 2445 11067 4 +UH 0 31 l 2173 10644 4 +UH 0 32 h 2288 10348 4 +UH 0 33 h 2343 10046 4 +UH 0 38 h 2246 10695 4 +UH 0 25 h 3152 10904 4 +PQ +SE +ID 3770 +TI 1760667400.860560178 +UH 0 6 l 2078 10585 4 +UH 0 25 h 2016 11418 4 +PQ +SE +ID 3771 +TI 1760667400.860577821 +UH 0 16 l 1710 5136 0 +UH 0 47 h 1784 5207 0 +PQ +SE +ID 3772 +TI 1760667400.860594987 +UH 0 44 l 1508 5306 0 +PQ +SE +ID 3773 +TI 1760667400.860605478 +UH 0 57 l 1553 3961 0 +UH 0 64 l 1688 0 5 +UH 0 64 h 1901 0 5 +BD GR Veto +PQ +SE +ID 3774 +TI 1760667400.860620498 +UH 0 14 l 3522 8553 4 +UH 0 15 l 1667 8540 4 +UH 0 17 l 1591 2919 0 +UH 0 18 l 2505 8146 4 +UH 0 15 h 1617 2426 0 +UH 0 17 h 2871 9119 4 +UH 0 18 h 3043 8908 4 +PQ +SE +ID 3775 +TI 1760667400.883701324 +UH 0 3 l 1595 8454 4 +UH 0 4 l 5708 8837 4 +UH 0 5 l 1654 8455 4 +UH 0 64 l 1640 0 5 +UH 0 58 h 2913 8661 4 +UH 0 59 h 4177 8800 4 +BD GR Veto +PQ +SE +ID 3776 +TI 1760667400.883791446 +UH 0 6 l 1787 5365 0 +UH 0 5 h 1763 11628 4 +PQ +SE +ID 3777 +TI 1760667400.883827686 +UH 0 64 l 2228 0 5 +UH 0 64 h 2235 0 5 +BD GR Veto +PQ +SE +ID 3778 +TI 1760667400.883842706 +UH 0 64 l 1816 0 5 +UH 0 64 h 1849 0 5 +BD GR Veto +PQ +SE +ID 3779 +TI 1760667400.883857965 +UH 0 43 l 1816 11014 4 +UH 0 23 h 1878 11435 4 +PQ +SE +ID 3780 +TI 1760667400.883893489 +UH 0 58 l 1688 5121 0 +UH 0 29 h 1658 5249 0 +PQ +SE +ID 3781 +TI 1760667400.883928060 +UH 0 0 l 1617 3213 0 +UH 0 1 l 2609 11173 4 +UH 0 8 l 1729 4715 0 +UH 0 10 l 1929 10616 4 +UH 0 25 l 4137 11030 4 +UH 0 48 h 1665 10791 4 +UH 0 50 h 4361 10515 4 +UH 0 51 h 2689 10733 4 +PQ +SE +ID 3782 +TI 1760667400.883992433 +UH 0 64 l 3965 0 5 +UH 0 64 h 3886 0 5 +BD GR Veto +PQ +SE +ID 3783 +TI 1760667400.884000778 +UH 0 20 l 1817 5271 0 +UH 0 22 l 1803 4919 0 +UH 0 24 h 1733 11529 4 +UH 0 28 h 1788 11221 4 +PQ +SE +ID 3784 +TI 1760667400.884031057 +UH 0 64 l 1971 0 5 +UH 0 57 h 1880 11015 4 +UH 0 64 h 1684 0 5 +BD GR Veto +PQ +SE +ID 3785 +TI 1760667400.884047031 +UH 0 15 l 2355 10776 4 +UH 0 30 l 1611 2448 0 +UH 0 31 l 1634 2305 0 +UH 0 52 h 2156 11233 4 +UH 0 53 h 1676 11157 4 +PQ +SE +ID 3786 +TI 1760667400.884074687 +UH 0 41 l 1476 5420 0 +UH 0 42 l 3015 9395 4 +UH 0 48 l 4123 9604 4 +UH 0 47 h 4161 9072 4 +UH 0 57 h 3001 9523 4 +PQ +SE +ID 3787 +TI 1760667400.884128093 +UH 0 4 l 3216 10429 4 +UH 0 5 l 3353 10210 4 +UH 0 14 l 1796 4315 0 +UH 0 17 h 1683 4914 0 +UH 0 18 h 3961 11043 4 +UH 0 19 h 2528 11298 4 +PQ +SE +ID 3788 +TI 1760667400.884161233 +UH 0 16 l 2963 10602 4 +UH 0 51 h 2939 10995 4 +PQ +SE +ID 3789 +TI 1760667400.884179115 +UH 0 8 l 2487 9101 4 +UH 0 9 l 4705 8805 4 +UH 0 10 l 1629 9130 4 +UH 0 37 h 5503 9318 4 +PQ +SE +ID 3790 +TI 1760667400.884202241 +UH 0 0 l 1624 8946 4 +UH 0 1 l 4524 9123 4 +UH 0 32 h 3204 9258 4 +UH 0 33 h 2671 8916 4 +PQ +SE +ID 3791 +TI 1760667400.884219408 +UH 0 64 l 5733 0 5 +UH 0 22 h 5514 10915 4 +UH 0 23 h 1566 11057 4 +BD GR Veto +PQ +SE +ID 3792 +TI 1760667400.884236574 +UH 0 53 l 2506 10825 4 +UH 0 56 l 1618 4831 0 +UH 0 6 h 1725 11134 4 +UH 0 7 h 2322 11031 4 +UH 0 10 h 1629 4252 0 +PQ +SE +ID 3793 +TI 1760667400.884270429 +UH 0 40 l 3095 9424 4 +UH 0 41 l 1486 9712 4 +UH 0 45 l 1564 3281 0 +UH 0 49 l 3684 9545 4 +UH 0 50 l 1725 9667 4 +UH 0 44 h 3199 9393 4 +UH 0 47 h 1639 4194 0 +UH 0 53 h 3878 9546 4 +PQ +SE +ID 3794 +TI 1760667400.884321689 +UH 0 33 l 3739 10487 4 +UH 0 35 l 1730 5140 0 +UH 0 31 l 2173 11110 4 +UH 0 34 h 3681 10412 4 +UH 0 35 h 1663 10640 4 +UH 0 31 h 2173 10758 4 +PQ +SE +ID 3795 +TI 1760667400.884368658 +UH 0 26 l 3542 11258 4 +UH 0 28 l 1847 11206 4 +UH 0 9 h 1815 10976 4 +UH 0 15 h 2582 11354 4 +UH 0 16 h 2411 11332 4 +PQ +SE +ID 3796 +TI 1760667400.884402513 +UH 0 55 l 1537 5360 0 +UH 0 56 l 2021 10059 4 +UH 0 59 l 1577 5302 0 +UH 0 60 l 2272 9533 4 +UH 0 45 h 2078 10256 4 +UH 0 46 h 2294 10082 4 +UH 0 47 h 1643 10058 4 +PQ +SE +ID 3797 +TI 1760667400.884437799 +UH 0 10 l 4073 9273 4 +UH 0 11 l 2997 9066 4 +UH 0 17 l 1760 3096 0 +UH 0 18 l 1598 2407 0 +UH 0 11 h 1857 9782 4 +UH 0 12 h 1665 9690 4 +UH 0 14 h 1580 9790 4 +UH 0 15 h 4406 9737 4 +UH 0 16 h 1597 9836 4 +UH 0 21 h 2129 9791 4 +PQ +SE +ID 3798 +TI 1760667400.884486913 +UH 0 57 l 2907 10475 4 +UH 0 58 l 1656 5119 0 +UH 0 58 h 2247 10495 4 +UH 0 59 h 2200 10643 4 +UH 0 61 h 1596 4542 0 +PQ +SE +ID 3799 +TI 1760667400.884514570 +UH 0 4 l 1691 5369 0 +UH 0 50 h 1702 4549 0 +PQ +SE +ID 3800 +TI 1760667400.884532213 +UH 0 42 l 1776 11061 4 +UH 0 43 l 3878 10944 4 +UH 0 48 l 1522 3739 0 +UH 0 49 l 2139 10647 4 +UH 0 50 l 2301 10454 4 +UH 0 34 h 2244 10423 4 +UH 0 36 h 2237 10663 4 +UH 0 22 h 3710 10536 4 +UH 0 23 h 1930 10677 4 +PQ +SE +ID 3801 +TI 1760667400.884587526 +UH 0 34 l 1738 5265 0 +UH 0 35 l 2422 10686 4 +UH 0 20 h 1827 11041 4 +UH 0 21 h 2365 11217 4 +PQ +SE +ID 3802 +TI 1760667400.884610891 +UH 0 53 l 2414 10890 4 +UH 0 57 l 2455 10758 4 +UH 0 58 l 2042 10648 4 +UH 0 43 h 2020 10494 4 +UH 0 18 h 2442 10807 4 +UH 0 19 h 2379 11141 4 +UH 0 20 h 1627 10957 4 +PQ +SE +ID 3803 +TI 1760667400.884650945 +UH 0 8 l 2070 10938 4 +UH 0 9 l 2287 10952 4 +UH 0 34 h 2647 10859 4 +PQ +SE +ID 3804 +TI 1760667400.884671211 +UH 0 64 l 5709 0 5 +UH 0 64 h 5428 0 5 +BD GR Veto +PQ +SE +ID 3805 +TI 1760667400.884679079 +UH 0 1 l 2188 11192 4 +UH 0 64 l 2265 0 5 +UH 0 32 h 2099 10950 4 +UH 0 36 h 2273 10862 4 +BD GR Veto +PQ +SE +ID 3806 +TI 1760667400.884705543 +UH 0 34 l 1620 5300 0 +UH 0 51 h 1569 4527 0 +PQ +SE +ID 3807 +TI 1760667400.884723186 +UH 0 54 l 1550 2608 0 +UH 0 55 l 4193 5268 4 +UH 0 56 l 1653 5460 4 +UH 0 61 l 2161 10773 4 +UH 0 32 h 1585 4096 0 +UH 0 22 h 4307 5785 4 +UH 0 31 h 1963 10273 4 +PQ +SE +ID 3808 +TI 1760667400.884762287 +UH 0 12 l 1735 5053 0 +UH 0 43 h 1623 5107 0 +PQ +SE +ID 3809 +TI 1760667400.884779214 +UH 0 33 l 1629 3022 0 +UH 0 34 l 2372 8443 4 +UH 0 38 l 1556 8814 4 +UH 0 39 l 4554 8594 4 +UH 0 40 l 1660 8778 4 +UH 0 23 l 1817 5236 4 +UH 0 24 l 5337 5150 4 +UH 0 25 l 2075 5017 4 +UH 0 4 h 1994 9211 4 +UH 0 5 h 1597 9073 4 +UH 0 6 h 2400 9013 4 +UH 0 7 h 4468 8863 4 +UH 0 21 h 2250 5243 4 +UH 0 22 h 2166 5072 4 +UH 0 23 h 4549 5146 4 +UH 0 24 h 1651 4890 4 +PQ +SE +ID 3810 +TI 1760667400.884845495 +UH 0 61 l 2040 10951 4 +UH 0 43 h 1921 10616 4 +PQ +SE +ID 3811 +TI 1760667400.884863853 +UH 0 5 l 2015 10847 4 +UH 0 16 l 2417 10925 4 +UH 0 19 l 2383 10888 4 +UH 0 34 h 2226 10708 4 +UH 0 37 h 1960 11024 4 +UH 0 41 h 2468 10912 4 +PQ +SE +ID 3812 +TI 1760667400.884909629 +UH 0 45 l 1556 8616 4 +UH 0 46 l 5534 8480 4 +UH 0 47 l 1547 8710 4 +UH 0 38 h 2271 8683 4 +UH 0 39 h 4953 8363 4 +PQ +SE +ID 3813 +TI 1760667400.884934425 +UH 0 32 l 1639 5082 0 +UH 0 33 l 1869 10373 4 +UH 0 53 l 2166 10878 4 +UH 0 54 l 2100 11086 4 +UH 0 58 l 2646 10248 4 +UH 0 25 l 2955 10615 4 +UH 0 41 h 2042 10588 4 +UH 0 44 h 1682 10645 4 +UH 0 45 h 3073 10813 4 +UH 0 24 h 2835 11053 4 +UH 0 25 h 1866 11049 4 +PQ +SE +ID 3814 +TI 1760667400.884998321 +UH 0 2 l 1849 10223 4 +UH 0 12 h 1748 10447 4 +UH 0 64 h 1662 0 5 +BD GR Veto +PQ +SE +ID 3815 +TI 1760667400.885018587 +UH 0 46 l 1624 4411 0 +UH 0 47 l 1920 10653 4 +UH 0 11 l 3565 10548 4 +UH 0 12 l 2556 10247 4 +UH 0 20 h 2155 10970 4 +UH 0 24 h 4220 10957 4 +PQ +SE +ID 3816 +TI 1760667400.885056018 +UH 0 64 l 2851 0 5 +UH 0 64 h 2829 0 5 +BD GR Veto +PQ +SE +ID 3817 +TI 1760667400.885064601 +UH 0 10 l 2262 10797 4 +UH 0 11 l 1750 4572 0 +UH 0 46 h 2254 11093 4 +PQ +SE +ID 3818 +TI 1760667400.885085105 +UH 0 27 l 2793 10784 4 +UH 0 28 l 2203 11113 4 +UH 0 56 h 3358 10433 4 +PQ +SE +ID 3819 +TI 1760667400.885105609 +UH 0 50 l 1833 10676 4 +UH 0 51 l 2455 10667 4 +UH 0 45 h 2378 11053 4 +UH 0 47 h 1830 10747 4 +PQ +SE +ID 3820 +TI 1760667400.885136127 +UH 0 54 l 1576 5542 0 +UH 0 55 l 2186 10735 4 +UH 0 55 h 2286 10879 4 +UH 0 56 h 1690 11209 4 +PQ +SE +ID 3821 +TI 1760667400.885160446 +UH 0 43 l 3286 10892 4 +UH 0 44 l 2454 10742 4 +UH 0 42 h 4327 10727 4 +PQ +SE +ID 3822 +TI 1760667400.885181427 +UH 0 64 l 1654 0 5 +UH 0 64 h 2230 0 5 +BD GR Veto +PQ +SE +ID 3823 +TI 1760667400.885189294 +UH 0 33 l 1711 4952 0 +UH 0 34 l 1997 10568 4 +UH 0 26 l 1766 4762 0 +UH 0 39 h 2223 11024 4 +UH 0 51 h 1645 11184 4 +PQ +SE +ID 3824 +TI 1760667400.885223150 +UH 0 38 l 1871 11079 4 +UH 0 58 h 1894 11186 4 +PQ +SE +ID 3825 +TI 1760667400.885241270 +UH 0 33 l 1650 5101 0 +UH 0 22 h 1716 4703 0 +PQ +SE +ID 3826 +TI 1760667400.885258674 +UH 0 64 l 4222 0 5 +UH 0 64 h 4078 0 5 +BD GR Veto +PQ +SE +ID 3827 +TI 1760667400.885266542 +UH 0 53 l 1699 4842 0 +UH 0 64 l 2122 0 5 +UH 0 59 h 1662 4861 0 +UH 0 64 h 2155 0 5 +BD GR Veto +PQ +SE +ID 3828 +TI 1760667400.885295629 +UH 0 36 l 1855 8364 4 +UH 0 37 l 4044 8521 4 +UH 0 38 l 1537 8640 4 +UH 0 41 l 1884 8360 4 +UH 0 42 l 2233 8523 4 +UH 0 43 l 1644 2910 0 +UH 0 27 h 1614 8889 4 +UH 0 28 h 5397 8565 4 +UH 0 29 h 1727 8874 4 +PQ +SE +ID 3829 +TI 1760667400.885334730 +UH 0 32 l 3060 10796 4 +UH 0 33 l 2012 10522 4 +UH 0 10 h 3478 11158 4 +PQ +SE +ID 3830 +TI 1760667400.885355234 +UH 0 43 l 1838 11264 4 +UH 0 11 h 1932 11275 4 +PQ +SE +ID 3831 +TI 1760667400.885374069 +UH 0 55 l 2607 10773 4 +UH 0 43 h 2638 11010 4 +PQ +SE +ID 3832 +TI 1760667400.885391950 +UH 0 35 l 2606 10689 4 +UH 0 36 l 2833 10583 4 +UH 0 45 l 3224 10491 4 +UH 0 3 h 3963 10857 4 +UH 0 15 h 3033 11339 4 +UH 0 16 h 1739 11372 4 +PQ +SE +ID 3833 +TI 1760667400.885428190 +UH 0 64 l 2476 0 5 +UH 0 64 h 2492 0 5 +BD GR Veto +PQ +SE +ID 3834 +TI 1760667400.885435819 +UH 0 30 l 4416 11141 4 +UH 0 31 l 2729 11110 4 +UH 0 42 h 2001 10333 4 +UH 0 43 h 2289 10522 4 +UH 0 44 h 4422 10559 4 +PQ +SE +ID 3835 +TI 1760667400.885461568 +UH 0 55 l 1503 8433 4 +UH 0 56 l 1552 8608 4 +UH 0 57 l 1578 8292 4 +UH 0 58 l 4417 7869 4 +UH 0 59 l 5614 8046 4 +UH 0 60 l 1617 7929 4 +UH 0 61 l 1651 8344 4 +UH 0 62 l 1614 4707 0 +UH 0 55 h 1707 8147 4 +UH 0 56 h 7369 8296 4 +UH 0 57 h 2685 8504 4 +PQ +SE +ID 3836 +TI 1760667400.885499954 +UH 0 64 l 3123 0 5 +UH 0 64 h 3119 0 5 +BD GR Veto +PQ +SE +ID 3837 +TI 1760667400.885508298 +UH 0 13 l 4106 10862 4 +UH 0 15 l 2100 10569 4 +UH 0 17 l 2566 10423 4 +UH 0 31 l 1609 2413 0 +UH 0 27 h 4517 10817 4 +UH 0 30 h 2542 11279 4 +PQ +SE +ID 3838 +TI 1760667400.885549306 +UH 0 53 l 2624 10694 4 +UH 0 50 h 2333 11025 4 +UH 0 51 h 1834 11194 4 +PQ +SE +ID 3839 +TI 1760667400.906325817 +UH 0 38 l 1972 8306 4 +UH 0 39 l 4292 8394 4 +UH 0 40 l 1542 8406 4 +UH 0 16 h 4017 8840 4 +UH 0 17 h 2100 8739 4 +PQ +SE +ID 3840 +TI 1760667400.906414270 +UH 0 64 l 2164 0 5 +UH 0 64 h 2234 0 5 +BD GR Veto +PQ +SE +ID 3841 +TI 1760667400.906431436 +UH 0 2 l 2811 10933 4 +UH 0 5 h 2630 11264 4 +UH 0 6 h 1598 11353 4 +PQ +SE +ID 3842 +TI 1760667400.906476736 +UH 0 10 l 1651 4078 0 +UH 0 64 l 1946 0 5 +UH 0 64 h 2117 0 5 +BD GR Veto +PQ +SE +ID 3843 +TI 1760667400.906513929 +UH 0 0 l 1613 11021 4 +UH 0 1 l 2296 11073 4 +UH 0 64 l 3393 0 5 +UH 0 36 h 2311 10887 4 +UH 0 64 h 3319 0 5 +BD GR Veto +PQ +SE +ID 3844 +TI 1760667400.906558990 +UH 0 10 l 1774 4411 0 +UH 0 28 h 1791 5341 0 +PQ +SE +ID 3845 +TI 1760667400.906593084 +UH 0 50 l 1771 10797 4 +UH 0 57 h 1765 5472 0 +PQ +SE +ID 3846 +TI 1760667400.906627655 +UH 0 33 l 1579 4094 0 +UH 0 37 l 2159 10560 4 +UH 0 13 h 1613 3911 0 +UH 0 15 h 2178 11519 4 +PQ +SE +ID 3847 +TI 1760667400.906690120 +UH 0 45 l 3030 10828 4 +UH 0 53 h 3021 10309 4 +PQ +SE +ID 3848 +TI 1760667400.906727075 +UH 0 10 l 2375 11049 4 +UH 0 42 h 2338 10296 4 +PQ +SE +ID 3849 +TI 1760667400.906760692 +UH 0 31 l 1887 11439 4 +UH 0 3 h 1749 5093 0 +UH 0 4 h 1799 5172 0 +PQ +SE +ID 3850 +TI 1760667400.906808614 +UH 0 42 l 2200 10864 4 +UH 0 58 h 2149 10985 4 +PQ +SE +ID 3851 +TI 1760667400.906846761 +UH 0 38 l 2569 10843 4 +UH 0 40 l 1848 10577 4 +UH 0 38 h 1941 10853 4 +UH 0 23 h 2618 10810 4 +PQ +SE +ID 3852 +TI 1760667400.906876564 +UH 0 4 l 1716 5128 0 +UH 0 36 h 1773 11656 4 +PQ +SE +ID 3853 +TI 1760667400.906894445 +UH 0 1 l 1793 5159 0 +UH 0 51 h 1693 11495 4 +PQ +SE +ID 3854 +TI 1760667400.906912088 +UH 0 15 l 1828 8920 4 +UH 0 16 l 4151 8906 4 +UH 0 17 l 1579 8988 4 +UH 0 23 h 4399 9627 4 +PQ +SE +ID 3855 +TI 1760667400.906937837 +UH 0 63 l 2915 10401 4 +UH 0 64 l 2322 0 5 +UH 0 14 h 2944 11370 4 +UH 0 64 h 2328 0 5 +BD GR Veto +PQ +SE +ID 3856 +TI 1760667400.906957387 +UH 0 18 l 1604 8503 4 +UH 0 19 l 5646 8636 4 +UH 0 20 l 1690 8497 4 +UH 0 21 h 1758 9122 4 +UH 0 22 h 5327 8739 4 +UH 0 23 h 1566 8886 4 +PQ +SE +ID 3857 +TI 1760667400.906984329 +UH 0 52 l 1593 5356 0 +PQ +SE +ID 3858 +TI 1760667400.906995058 +UH 0 34 l 1829 4940 0 +UH 0 35 l 2058 10875 4 +UH 0 39 l 2521 10811 4 +UH 0 45 h 1589 10466 4 +UH 0 46 h 3156 10205 4 +UH 0 47 h 1662 10425 4 +PQ +SE +ID 3859 +TI 1760667400.907026529 +UH 0 64 l 2898 0 5 +UH 0 64 h 2871 0 5 +BD GR Veto +PQ +SE +ID 3860 +TI 1760667400.907033681 +UH 0 27 l 3385 10451 4 +UH 0 11 h 3372 11284 4 +PQ +SE +ID 3861 +TI 1760667400.907051324 +UH 0 0 l 1900 11051 4 +UH 0 1 l 2322 11303 4 +UH 0 64 l 1647 0 5 +UH 0 46 h 2598 11009 4 +UH 0 64 h 1726 0 5 +BD GR Veto +PQ +SE +ID 3862 +TI 1760667400.907073497 +UH 0 64 l 2726 0 5 +UH 0 64 h 2720 0 5 +BD GR Veto +PQ +SE +ID 3863 +TI 1760667400.907082080 +UH 0 55 l 2166 10800 4 +UH 0 15 h 2279 11496 4 +PQ +SE +ID 3864 +TI 1760667400.907099723 +UH 0 43 l 3017 10925 4 +UH 0 47 l 1826 10562 4 +UH 0 48 l 1819 11055 4 +UH 0 49 l 2440 10986 4 +UH 0 57 h 2367 10641 4 +UH 0 59 h 1645 4969 0 +UH 0 61 h 1870 10867 4 +UH 0 62 h 1941 10659 4 +UH 0 63 h 3088 10758 4 +PQ +SE +ID 3865 +TI 1760667400.907142400 +UH 0 13 l 1608 8860 4 +UH 0 14 l 4457 8730 4 +UH 0 15 l 1679 8757 4 +UH 0 16 l 2701 8977 4 +UH 0 33 h 2659 8606 4 +UH 0 30 h 1847 9434 4 +UH 0 31 h 4130 8754 4 +PQ +SE +ID 3866 +TI 1760667400.907174825 +UH 0 64 l 2499 0 5 +UH 0 64 h 2525 0 5 +BD GR Veto +PQ +SE +ID 3867 +TI 1760667400.907183408 +UH 0 10 l 1682 5165 0 +UH 0 12 h 1576 5458 0 +PQ +SE +ID 3868 +TI 1760667400.907200574 +UH 0 12 l 2415 10050 4 +UH 0 13 l 1953 10538 4 +UH 0 1 h 2746 11260 4 +PQ +SE +ID 3869 +TI 1760667400.907218217 +UH 0 28 l 3527 10867 4 +UH 0 2 h 3585 11289 4 +PQ +SE +ID 3870 +TI 1760667400.907236337 +UH 0 32 l 4476 8936 4 +UH 0 40 l 2239 8787 4 +UH 0 30 l 1843 9330 4 +UH 0 31 l 1682 9216 4 +UH 0 16 h 2705 9331 4 +UH 0 17 h 4180 9064 4 +UH 0 18 h 1619 9071 4 +PQ +SE +ID 3871 +TI 1760667400.907270193 +UH 0 36 l 1901 10531 4 +UH 0 37 l 1959 10748 4 +UH 0 38 l 3679 10570 4 +UH 0 39 l 2690 10594 4 +UH 0 45 h 2510 10688 4 +UH 0 46 h 1984 10566 4 +UH 0 47 h 1658 10592 4 +UH 0 48 h 3527 10572 4 +UH 0 49 h 2183 10661 4 +PQ +SE +ID 3872 +TI 1760667400.907304286 +UH 0 62 l 2228 10509 4 +UH 0 63 l 1585 4775 0 +UH 0 19 h 2259 11473 4 +PQ +SE +ID 3873 +TI 1760667400.907322406 +UH 0 32 l 3714 10375 4 +UH 0 33 l 1810 10135 4 +UH 0 34 l 1690 5216 0 +UH 0 3 h 1734 4294 0 +UH 0 4 h 3827 11392 4 +UH 0 5 h 1700 4808 0 +PQ +SE +ID 3874 +TI 1760667400.907349586 +UH 0 64 h 1756 0 5 +BD GR Veto +PQ +SE +ID 3875 +TI 1760667400.907354593 +UH 0 6 l 1907 10067 4 +UH 0 7 l 3049 9846 4 +UH 0 10 l 2499 9632 4 +UH 0 12 l 1839 9682 4 +UH 0 64 l 2600 0 5 +UH 0 1 h 1786 3856 0 +UH 0 5 h 1585 5476 0 +UH 0 6 h 3319 10309 4 +UH 0 7 h 1678 10354 4 +UH 0 18 h 2514 10275 4 +UH 0 64 h 2592 0 5 +BD GR Veto +PQ +SE +ID 3876 +TI 1760667400.907411098 +UH 0 21 l 2316 11149 4 +UH 0 22 l 1845 10963 4 +UH 0 4 h 1712 11555 4 +UH 0 5 h 2443 11296 4 +PQ +SE +ID 3877 +TI 1760667400.907433986 +UH 0 35 l 3852 9567 4 +UH 0 36 l 2019 9367 4 +UH 0 39 l 1780 3605 0 +UH 0 41 l 1735 9594 4 +UH 0 45 l 1558 2862 0 +UH 0 50 l 2284 9210 4 +UH 0 19 h 2209 9942 4 +UH 0 23 h 1564 9568 4 +UH 0 24 h 4260 9422 4 +UH 0 25 h 1548 9746 4 +UH 0 26 h 1654 9906 4 +UH 0 27 h 1929 9809 4 +PQ +SE +ID 3878 +TI 1760667400.907497406 +UH 0 23 l 1870 10684 4 +UH 0 10 h 1752 11740 4 +PQ +SE +ID 3879 +TI 1760667400.907515048 +UH 0 13 l 3849 10662 4 +UH 0 14 l 1857 10857 4 +UH 0 36 h 2295 10563 4 +UH 0 38 h 1754 4575 0 +UH 0 43 h 3072 10662 4 +PQ +SE +ID 3880 +TI 1760667400.907547235 +UH 0 19 l 1630 9210 4 +UH 0 20 l 3671 8600 4 +UH 0 21 l 3589 8968 4 +UH 0 22 l 1618 8978 4 +UH 0 16 h 1584 9538 4 +UH 0 17 h 5171 9282 4 +UH 0 18 h 1733 9242 4 +PQ +SE +ID 3881 +TI 1760667400.907576322 +UH 0 52 l 2403 9271 4 +UH 0 53 l 1606 5374 0 +UH 0 54 l 2945 9227 4 +UH 0 5 h 3007 9759 4 +UH 0 10 h 2090 9776 4 +UH 0 11 h 1857 9691 4 +PQ +SE +ID 3882 +TI 1760667400.907608270 +UH 0 32 l 4424 10799 4 +UH 0 33 l 1676 10568 4 +UH 0 34 l 2673 10119 4 +UH 0 10 h 2700 10994 4 +UH 0 11 h 3206 10843 4 +UH 0 14 h 2780 11224 4 +PQ +SE +ID 3883 +TI 1760667400.907655477 +UH 0 2 l 2040 10842 4 +UH 0 54 h 1962 11141 4 +PQ +SE +ID 3884 +TI 1760667400.907682418 +UH 0 43 l 1799 9232 4 +UH 0 44 l 3769 8951 4 +UH 0 45 l 1532 5276 0 +UH 0 49 h 4163 9215 4 +PQ +SE +ID 3885 +TI 1760667400.907705545 +UH 0 24 l 1757 5374 0 +UH 0 57 h 1661 5482 0 +PQ +SE +ID 3886 +TI 1760667400.907723188 +UH 0 45 l 1742 5265 0 +UH 0 12 h 1716 11552 4 +UH 0 13 h 1593 3327 0 +PQ +SE +ID 3887 +TI 1760667400.907742738 +UH 0 54 l 3047 8973 4 +UH 0 55 l 1738 8854 4 +UH 0 56 l 3739 8924 4 +UH 0 57 l 1530 8771 4 +UH 0 24 h 1997 8878 4 +UH 0 25 h 3631 9016 4 +UH 0 26 h 2449 9186 4 +UH 0 28 h 2023 8986 4 +PQ +SE +ID 3888 +TI 1760667400.907777070 +UH 0 0 l 2077 10762 4 +UH 0 12 h 2018 11333 4 +PQ +SE +ID 3889 +TI 1760667400.907792806 +UH 0 34 l 1784 10783 4 +UH 0 30 l 2025 11396 4 +UH 0 31 l 2273 10936 4 +UH 0 59 h 2227 10896 4 +UH 0 62 h 2379 10602 4 +PQ +SE +ID 3890 +TI 1760667400.907827615 +UH 0 34 l 2431 10625 4 +UH 0 21 l 2569 10845 4 +UH 0 22 l 2348 10556 4 +UH 0 61 h 2396 10834 4 +UH 0 13 h 2522 11332 4 +UH 0 14 h 2327 11392 4 +PQ +SE +ID 3891 +TI 1760667400.907865762 +UH 0 41 l 3288 10964 4 +UH 0 50 h 3423 10502 4 +PQ +SE +ID 3892 +TI 1760667400.907883882 +UH 0 31 l 1889 11382 4 +UH 0 57 h 1899 11562 4 +PQ +SE +ID 3893 +TI 1760667400.907901525 +UH 0 52 l 2598 10283 4 +UH 0 55 l 1503 5368 0 +UH 0 63 l 1630 4671 0 +UH 0 19 h 1572 4762 0 +UH 0 21 h 2575 11060 4 +UH 0 23 h 1704 4742 0 +PQ +SE +ID 3894 +TI 1760667400.907940864 +UH 0 33 l 2076 10475 4 +UH 0 34 l 1648 5281 0 +UH 0 37 l 1637 4527 0 +UH 0 48 l 1594 4131 0 +UH 0 61 l 3598 10410 4 +UH 0 44 h 3533 10787 4 +UH 0 45 h 1604 11122 4 +UH 0 46 h 1586 2663 0 +UH 0 49 h 1838 10769 4 +UH 0 50 h 2010 10695 4 +PQ +SE +ID 3895 +TI 1760667400.908003330 +UH 0 15 h 1616 5728 0 +PQ +SE +ID 3896 +TI 1760667400.908013582 +UH 0 42 l 1928 11121 4 +UH 0 35 h 1899 11140 4 +PQ +SE +ID 3897 +TI 1760667400.908031225 +UH 0 15 l 2372 10684 4 +UH 0 16 l 2059 10816 4 +UH 0 30 l 1610 2773 0 +UH 0 31 l 1644 2289 0 +UH 0 57 h 2831 11207 4 +PQ +SE +ID 3898 +TI 1760667400.908059597 +UH 0 13 l 1666 10875 4 +UH 0 14 l 2982 10701 4 +UH 0 4 h 3062 11120 4 +PQ +SE +ID 3899 +TI 1760667400.908079624 +UH 0 54 l 2104 10829 4 +UH 0 55 l 2180 10570 4 +UH 0 56 l 1570 5089 0 +UH 0 63 h 2941 11015 4 +PQ +SE +ID 3900 +TI 1760667400.908111810 +UH 0 55 l 2118 8534 4 +UH 0 56 l 3139 8632 4 +UH 0 57 l 1536 5261 0 +UH 0 58 l 1903 8375 4 +UH 0 24 h 2241 8946 4 +UH 0 25 h 1817 9201 4 +UH 0 28 h 3170 8980 4 +PQ +SE +ID 3901 +TI 1760667400.908145666 +UH 0 64 l 1753 0 5 +UH 0 64 h 1832 0 5 +BD GR Veto +PQ +SE +ID 3902 +TI 1760667400.908154249 +UH 0 10 l 2051 8935 4 +UH 0 11 l 2234 8696 4 +UH 0 12 l 1774 8575 4 +UH 0 13 l 5958 9078 4 +UH 0 14 l 1692 8962 4 +UH 0 15 l 2815 8629 4 +UH 0 16 l 1570 8983 4 +UH 0 30 l 1717 1566 0 +UH 0 31 l 1757 1588 0 +UH 0 35 h 2583 8931 4 +UH 0 37 h 2780 8985 4 +UH 0 30 h 5852 9467 4 +PQ +SE +ID 3903 +TI 1760667400.927442789 +UH 0 31 l 3488 11092 4 +UH 0 10 h 3482 10984 4 +PQ +SE +ID 3904 +TI 1760667400.927496910 +UH 0 56 l 2715 10923 4 +UH 0 48 h 2786 11042 4 +PQ +SE +ID 3905 +TI 1760667400.927516222 +UH 0 11 l 1798 4574 0 +UH 0 12 l 2362 10608 4 +UH 0 62 h 2451 10906 4 +PQ +SE +ID 3906 +TI 1760667400.927538156 +UH 0 50 l 2932 10556 4 +UH 0 51 l 1777 10782 4 +UH 0 36 h 3153 11070 4 +PQ +SE +ID 3907 +TI 1760667400.927558660 +UH 0 49 l 2108 11006 4 +UH 0 34 h 1616 3997 0 +UH 0 35 h 2012 10342 4 +PQ +SE +ID 3908 +TI 1760667400.927578687 +UH 0 55 l 1503 8395 4 +UH 0 56 l 3950 8435 4 +UH 0 57 l 1548 8309 4 +UH 0 43 h 3884 8787 4 +PQ +SE +ID 3909 +TI 1760667400.927601814 +UH 0 38 l 2137 10922 4 +UH 0 39 l 1830 10876 4 +UH 0 63 h 2443 10838 4 +PQ +SE +ID 3910 +TI 1760667400.927620172 +UH 0 0 l 2056 10676 4 +UH 0 64 l 1992 0 5 +UH 0 44 h 2508 10948 4 +BD GR Veto +PQ +SE +ID 3911 +TI 1760667400.927638769 +UH 0 64 l 2185 0 5 +UH 0 64 h 2309 0 5 +BD GR Veto +PQ +SE +ID 3912 +TI 1760667400.927648305 +UH 0 58 l 3105 9331 4 +UH 0 59 l 4019 9588 4 +UH 0 12 h 4166 9458 4 +UH 0 13 h 1587 9705 4 +UH 0 14 h 1709 9787 4 +UH 0 15 h 2681 9802 4 +PQ +SE +ID 3913 +TI 1760667400.927676439 +UH 0 59 l 2080 10812 4 +UH 0 35 h 2109 11315 4 +PQ +SE +ID 3914 +TI 1760667400.927694797 +UH 0 19 l 2535 11058 4 +UH 0 32 h 2236 11067 4 +UH 0 31 h 1728 11034 4 +PQ +SE +ID 3915 +TI 1760667400.927715778 +UH 0 33 l 1634 8585 4 +UH 0 34 l 6652 8810 4 +UH 0 35 l 3807 8642 4 +UH 0 36 l 1660 8694 4 +UH 0 37 l 1589 8968 4 +UH 0 39 l 1613 5004 0 +UH 0 25 h 1785 3066 0 +UH 0 28 h 2448 8946 4 +UH 0 29 h 2718 9130 4 +UH 0 31 h 6505 8850 4 +PQ +SE +ID 3916 +TI 1760667400.927762746 +UH 0 34 l 2402 10485 4 +UH 0 52 h 2382 11197 4 +PQ +SE +ID 3917 +TI 1760667400.927781105 +UH 0 45 l 3346 10707 4 +UH 0 28 h 1657 10548 4 +UH 0 29 h 3255 10661 4 +PQ +SE +ID 3918 +TI 1760667400.927801370 +UH 0 35 l 2683 10832 4 +UH 0 3 h 2755 11055 4 +PQ +SE +ID 3919 +TI 1760667400.927818775 +UH 0 64 l 3107 0 5 +UH 0 64 h 3047 0 5 +BD GR Veto +PQ +SE +ID 3920 +TI 1760667400.927827358 +UH 0 29 l 3056 10844 4 +UH 0 49 h 3008 10778 4 +PQ +SE +ID 3921 +TI 1760667400.927845001 +UH 0 36 l 2569 10408 4 +UH 0 24 h 2526 11158 4 +PQ +SE +ID 3922 +TI 1760667400.927862167 +UH 0 29 l 2641 10949 4 +UH 0 62 h 2637 10954 4 +PQ +SE +ID 3923 +TI 1760667400.927880048 +UH 0 27 l 1634 5039 0 +UH 0 28 l 2333 11083 4 +UH 0 53 h 2061 10958 4 +UH 0 54 h 1765 11150 4 +PQ +SE +ID 3924 +TI 1760667400.927902221 +UH 0 19 l 1768 5450 0 +UH 0 58 h 1672 4673 0 +PQ +SE +ID 3925 +TI 1760667400.927921295 +UH 0 19 l 2463 11113 4 +UH 0 42 h 2451 10537 4 +PQ +SE +ID 3926 +TI 1760667400.927938699 +UH 0 28 l 1863 11404 4 +UH 0 29 l 1717 4798 0 +UH 0 38 h 1980 10922 4 +PQ +SE +ID 3927 +TI 1760667400.927958726 +UH 0 52 l 2528 10966 4 +UH 0 43 h 2471 10486 4 +PQ +SE +ID 3928 +TI 1760667400.927976608 +UH 0 10 l 2777 10964 4 +UH 0 16 h 2683 11066 4 +PQ +SE +ID 3929 +TI 1760667400.927995204 +UH 0 23 l 1923 11055 4 +UH 0 41 h 1764 11680 4 +PQ +SE +ID 3930 +TI 1760667400.928013086 +UH 0 37 l 2555 8603 4 +UH 0 38 l 1545 8670 4 +UH 0 39 l 3384 8228 4 +UH 0 43 l 2713 8548 4 +UH 0 23 h 2782 8570 4 +UH 0 27 h 2118 8840 4 +UH 0 28 h 2865 8604 4 +UH 0 29 h 2496 8891 4 +PQ +SE +ID 3931 +TI 1760667400.928055047 +UH 0 11 l 4001 9746 4 +UH 0 12 l 1749 9798 4 +UH 0 16 l 2357 9997 4 +UH 0 19 l 2382 10181 4 +UH 0 10 h 3928 11018 4 +UH 0 12 h 3140 10791 4 +PQ +SE +ID 3932 +TI 1760667400.928107738 +UH 0 23 l 2816 10935 4 +UH 0 60 h 2663 10231 4 +PQ +SE +ID 3933 +TI 1760667400.928126096 +UH 0 11 l 3631 10054 4 +UH 0 12 l 1848 10079 4 +UH 0 13 l 1701 5083 0 +UH 0 14 l 2154 4755 0 +UH 0 17 l 2096 10273 4 +UH 0 17 h 3092 11111 4 +UH 0 18 h 2006 10990 4 +UH 0 21 h 2249 11177 4 +UH 0 25 h 2043 11158 4 +PQ +SE +ID 3934 +TI 1760667400.928179979 +UH 0 64 l 2588 0 5 +UH 0 64 h 2606 0 5 +BD GR Veto +PQ +SE +ID 3935 +TI 1760667400.928188085 +UH 0 36 l 2246 10617 4 +UH 0 54 h 2184 11091 4 +PQ +SE +ID 3936 +TI 1760667400.928206682 +UH 0 62 l 2390 10895 4 +UH 0 7 h 2401 11002 4 +PQ +SE +ID 3937 +TI 1760667400.928224086 +UH 0 48 l 2508 10832 4 +UH 0 49 l 1524 10901 4 +UH 0 58 l 2508 10534 4 +UH 0 45 h 2463 11002 4 +UH 0 48 h 2644 10971 4 +PQ +SE +ID 3938 +TI 1760667400.928259372 +UH 0 64 l 2293 0 5 +UH 0 64 h 2329 0 5 +BD GR Veto +PQ +SE +ID 3939 +TI 1760667400.928267240 +UH 0 16 l 2113 10947 4 +UH 0 13 h 1634 5510 0 +UH 0 14 h 2040 11538 4 +PQ +SE +ID 3940 +TI 1760667400.928287506 +UH 0 64 l 1634 0 5 +UH 0 64 h 2219 0 5 +BD GR Veto +PQ +SE +ID 3941 +TI 1760667400.928295373 +UH 0 64 l 3805 0 5 +UH 0 64 h 3739 0 5 +BD GR Veto +PQ +SE +ID 3942 +TI 1760667400.928303718 +UH 0 64 l 2580 0 5 +UH 0 64 h 2563 0 5 +BD GR Veto +PQ +SE +ID 3943 +TI 1760667400.928311347 +UH 0 64 h 1767 0 5 +BD GR Veto +PQ +SE +ID 3944 +TI 1760667400.928317546 +UH 0 39 l 3569 10477 4 +UH 0 40 l 2059 10596 4 +UH 0 44 l 1707 10275 4 +UH 0 36 h 1839 10453 4 +UH 0 25 h 1548 10795 4 +UH 0 26 h 3983 10823 4 +PQ +SE +ID 3945 +TI 1760667400.928354978 +UH 0 50 l 2143 10852 4 +UH 0 23 h 2136 11125 4 +PQ +SE +ID 3946 +TI 1760667400.928372621 +UH 0 64 l 2371 0 5 +UH 0 64 h 2658 0 5 +BD GR Veto +PQ +SE +ID 3947 +TI 1760667400.928380966 +UH 0 64 h 1752 0 5 +BD GR Veto +PQ +SE +ID 3948 +TI 1760667400.928386449 +UH 0 54 l 1789 5400 0 +UH 0 55 l 2251 10910 4 +UH 0 1 h 2261 11196 4 +UH 0 3 h 2012 10705 4 +PQ +SE +ID 3949 +TI 1760667400.928411483 +UH 0 18 l 1650 4042 0 +UH 0 19 l 1639 5458 0 +UH 0 14 h 1703 11324 4 +PQ +SE +ID 3950 +TI 1760667400.928430795 +UH 0 37 l 3170 10940 4 +UH 0 57 l 2199 10291 4 +UH 0 56 h 2966 10388 4 +UH 0 57 h 2423 10917 4 +PQ +SE +ID 3951 +TI 1760667400.928457975 +UH 0 64 h 1668 0 5 +BD GR Veto +PQ +SE +ID 3952 +TI 1760667400.928463220 +UH 0 24 l 4416 10940 4 +UH 0 27 l 1663 4158 0 +UH 0 29 l 1833 10592 4 +UH 0 33 h 1584 3790 0 +UH 0 35 h 1778 10721 4 +UH 0 38 h 3422 10678 4 +UH 0 39 h 2445 10431 4 +PQ +SE +ID 3953 +TI 1760667400.928507804 +UH 0 64 h 1687 0 5 +BD GR Veto +PQ +SE +ID 3954 +TI 1760667400.928513288 +UH 0 63 l 1574 5188 0 +UH 0 10 h 1600 5108 0 +PQ +SE +ID 3955 +TI 1760667400.928528547 +UH 0 51 l 2242 10583 4 +UH 0 2 h 2250 11403 4 +PQ +SE +ID 3956 +TI 1760667400.928545951 +UH 0 18 l 2994 10663 4 +UH 0 4 h 2991 11437 4 +PQ +SE +ID 3957 +TI 1760667400.928563594 +UH 0 43 l 1804 11306 4 +UH 0 15 h 1881 11208 4 +PQ +SE +ID 3958 +TI 1760667400.928581476 +UH 0 58 l 1552 5093 0 +UH 0 59 l 1585 8348 4 +UH 0 60 l 5460 7964 4 +UH 0 61 l 1814 8294 4 +UH 0 62 l 1622 5294 0 +UH 0 39 h 4133 8592 4 +UH 0 40 h 3064 8605 4 +PQ +SE +ID 3959 +TI 1760667400.928610324 +UH 0 64 l 2200 0 5 +UH 0 64 h 2252 0 5 +BD GR Veto +PQ +SE +ID 3960 +TI 1760667400.928618669 +UH 0 62 l 2185 10546 4 +UH 0 63 l 1580 5233 0 +UH 0 64 l 1990 0 5 +UH 0 14 h 1644 11286 4 +UH 0 15 h 2043 11309 4 +UH 0 16 h 1684 4745 0 +UH 0 64 h 2065 0 5 +BD GR Veto +PQ +SE +ID 3961 +TI 1760667400.928647279 +UH 0 48 l 2065 8991 4 +UH 0 49 l 1563 3058 0 +UH 0 56 l 3755 8999 4 +UH 0 57 l 1530 8849 4 +UH 0 40 h 2207 8617 4 +UH 0 46 h 1971 8847 4 +UH 0 47 h 3417 8703 4 +PQ +SE +ID 3962 +TI 1760667400.928686618 +UH 0 30 l 3694 11234 4 +UH 0 10 h 3231 10982 4 +UH 0 11 h 2042 10905 4 +PQ +SE +ID 3963 +TI 1760667400.928707122 +UH 0 57 l 1650 5123 0 +UH 0 58 l 1597 5093 0 +UH 0 31 h 1750 11022 4 +PQ +SE +ID 3964 +TI 1760667400.928726673 +UH 0 55 l 2140 10854 4 +UH 0 20 h 2216 11076 4 +PQ +SE +ID 3965 +TI 1760667400.928744792 +UH 0 18 l 2585 10351 4 +UH 0 20 l 2622 10558 4 +UH 0 21 l 1897 11035 4 +UH 0 12 h 2516 10972 4 +UH 0 13 h 2609 11203 4 +UH 0 14 h 1813 11003 4 +PQ +SE +ID 3966 +TI 1760667400.928774118 +UH 0 0 l 1953 10815 4 +UH 0 1 l 2546 11056 4 +UH 0 55 h 3005 10820 4 +PQ +SE +ID 3967 +TI 1760667400.950704336 +UH 0 52 l 1833 10832 4 +UH 0 23 h 1799 11523 4 +PQ +SE +ID 3968 +TI 1760667400.950756788 +UH 0 5 l 2137 10679 4 +UH 0 8 l 1670 5336 0 +UH 0 41 h 1602 4048 0 +UH 0 43 h 2041 10976 4 +PQ +SE +ID 3969 +TI 1760667400.950786590 +UH 0 35 l 3151 10868 4 +UH 0 14 h 2640 10825 4 +UH 0 15 h 2071 10928 4 +PQ +SE +ID 3970 +TI 1760667400.950807571 +UH 0 64 l 3540 0 5 +UH 0 64 h 3457 0 5 +BD GR Veto +PQ +SE +ID 3971 +TI 1760667400.950822591 +UH 0 25 l 3673 11167 4 +UH 0 60 h 3569 10177 4 +PQ +SE +ID 3972 +TI 1760667400.950864076 +UH 0 47 l 1550 10483 4 +UH 0 48 l 3152 10475 4 +UH 0 6 h 3230 11249 4 +PQ +SE +ID 3973 +TI 1760667400.950919866 +UH 0 40 l 1874 10664 4 +UH 0 42 l 3123 11040 4 +UH 0 43 l 2296 10969 4 +UH 0 45 h 3557 10438 4 +UH 0 46 h 2152 10312 4 +PQ +SE +ID 3974 +TI 1760667400.950996398 +UH 0 39 l 1785 10583 4 +UH 0 40 l 2927 10531 4 +UH 0 11 h 2998 11328 4 +UH 0 12 h 1738 11262 4 +PQ +SE +ID 3975 +TI 1760667400.951055526 +UH 0 43 l 1517 9264 4 +UH 0 44 l 4202 8861 4 +UH 0 45 l 1538 9094 4 +UH 0 26 h 4120 9643 4 +PQ +SE +ID 3976 +TI 1760667400.951107025 +UH 0 25 l 2424 11000 4 +UH 0 64 l 2138 0 5 +UH 0 62 h 2231 10926 4 +UH 0 64 h 2365 0 5 +BD GR Veto +PQ +SE +ID 3977 +TI 1760667400.951173543 +UH 0 50 l 1839 10886 4 +UH 0 30 h 1821 11208 4 +PQ +SE +ID 3978 +TI 1760667400.951211214 +UH 0 18 l 2350 10248 4 +UH 0 24 h 2309 11164 4 +PQ +SE +ID 3979 +TI 1760667400.951244115 +UH 0 56 l 3985 10869 4 +UH 0 25 h 3799 10725 4 +UH 0 26 h 1640 10962 4 +PQ +SE +ID 3980 +TI 1760667400.951279878 +UH 0 8 l 2340 10817 4 +UH 0 40 h 2247 11203 4 +PQ +SE +ID 3981 +TI 1760667400.951311111 +UH 0 20 l 2627 10154 4 +UH 0 21 l 2732 10542 4 +UH 0 27 h 3705 11189 4 +PQ +SE +ID 3982 +TI 1760667400.951345205 +UH 0 3 l 1652 5180 0 +UH 0 4 l 1597 3363 0 +UH 0 6 h 1673 5284 0 +PQ +SE +ID 3983 +TI 1760667400.951390504 +UH 0 28 l 2359 10516 4 +UH 0 29 l 3608 10251 4 +UH 0 17 h 4097 11116 4 +PQ +SE +ID 3984 +TI 1760667400.951427698 +UH 0 54 l 2171 10985 4 +UH 0 55 l 2012 10788 4 +UH 0 49 h 1634 11142 4 +UH 0 50 h 2735 11029 4 +PQ +SE +ID 3985 +TI 1760667400.951468229 +UH 0 25 l 1810 4703 0 +UH 0 8 h 1767 12028 4 +PQ +SE +ID 3986 +TI 1760667400.951501131 +UH 0 64 l 4241 0 5 +UH 0 64 h 4130 0 5 +BD GR Veto +PQ +SE +ID 3987 +TI 1760667400.951515674 +UH 0 5 l 2912 10845 4 +UH 0 35 h 2147 10732 4 +UH 0 36 h 2264 10796 4 +PQ +SE +ID 3988 +TI 1760667400.951555013 +UH 0 21 l 4216 11027 4 +UH 0 23 l 2194 10612 4 +UH 0 24 l 1893 10723 4 +UH 0 27 l 2246 10564 4 +UH 0 32 h 2588 10510 4 +UH 0 33 h 4285 9987 4 +UH 0 34 h 1584 10361 4 +PQ +SE +ID 3989 +TI 1760667400.951606273 +UH 0 38 l 1562 8973 4 +UH 0 39 l 5065 8634 4 +UH 0 40 l 2050 8997 4 +UH 0 41 l 1484 9062 4 +UH 0 5 h 2882 9236 4 +UH 0 6 h 3678 9184 4 +UH 0 10 h 2100 9513 4 +PQ +SE +ID 3990 +TI 1760667400.951645612 +UH 0 38 l 1754 4463 0 +UH 0 39 l 1639 5225 0 +UH 0 40 l 2438 10498 4 +UH 0 41 l 2431 10496 4 +UH 0 42 l 2137 10328 4 +UH 0 30 l 2795 10432 4 +UH 0 46 h 2547 10405 4 +UH 0 47 h 2781 10391 4 +UH 0 49 h 2105 10375 4 +UH 0 51 h 2765 10337 4 +PQ +SE +ID 3991 +TI 1760667400.951696395 +UH 0 61 l 1781 5247 0 +UH 0 62 l 2057 10813 4 +UH 0 42 h 1971 10796 4 +UH 0 43 h 1767 11072 4 +PQ +SE +ID 3992 +TI 1760667400.951721906 +UH 0 7 l 1686 10846 4 +UH 0 8 l 2977 10641 4 +UH 0 9 l 1657 10822 4 +UH 0 12 h 1536 11112 4 +UH 0 13 h 3098 11068 4 +PQ +SE +ID 3993 +TI 1760667400.951747179 +UH 0 64 l 2271 0 5 +UH 0 64 h 2286 0 5 +BD GR Veto +PQ +SE +ID 3994 +TI 1760667400.951758861 +UH 0 60 l 1912 10170 4 +UH 0 61 l 1689 5083 0 +UH 0 17 h 1950 11322 4 +PQ +SE +ID 3995 +TI 1760667400.951780796 +UH 0 49 l 2357 10747 4 +UH 0 50 l 1689 10801 4 +UH 0 48 h 2441 10725 4 +UH 0 53 h 1668 4170 0 +PQ +SE +ID 3996 +TI 1760667400.951820373 +UH 0 51 l 3403 10832 4 +UH 0 64 l 3584 0 5 +UH 0 55 h 3458 10338 4 +UH 0 64 h 3720 0 5 +BD GR Veto +PQ +SE +ID 3997 +TI 1760667400.951843976 +UH 0 30 l 2375 11199 4 +UH 0 21 h 2285 11378 4 +UH 0 22 h 1675 11141 4 +PQ +SE +ID 3998 +TI 1760667400.951864719 +UH 0 32 l 2635 10854 4 +UH 0 34 l 1880 10120 4 +UH 0 35 l 1642 4994 0 +UH 0 31 l 3254 10738 4 +UH 0 11 h 2071 11360 4 +UH 0 13 h 3988 11205 4 +UH 0 14 h 1853 11365 4 +PQ +SE +ID 3999 +TI 1760667400.951899766 +UH 0 64 l 2361 0 5 +UH 0 64 h 2587 0 5 +BD GR Veto +PQ +SE +ID 4000 +TI 1760667400.951907634 +UH 0 32 l 3354 10540 4 +UH 0 0 h 3331 11223 4 +PQ +SE +ID 4001 +TI 1760667400.951924085 +UH 0 13 l 2829 10687 4 +UH 0 19 l 2498 10597 4 +UH 0 17 h 2157 11178 4 +UH 0 19 h 2080 11296 4 +UH 0 21 h 2425 11406 4 +PQ +SE +ID 4002 +TI 1760667400.951958179 +UH 0 32 l 3998 8357 4 +UH 0 33 l 1583 8285 4 +UH 0 38 l 1937 8423 4 +UH 0 31 l 1621 8787 4 +UH 0 29 h 3830 8841 4 +UH 0 30 h 2045 9104 4 +PQ +SE +ID 4003 +TI 1760667400.951990604 +UH 0 54 l 2814 10774 4 +UH 0 55 l 1769 10645 4 +UH 0 43 h 3095 10788 4 +PQ +SE +ID 4004 +TI 1760667400.952010154 +UH 0 64 l 1702 0 5 +UH 0 64 h 2127 0 5 +BD GR Veto +PQ +SE +ID 4005 +TI 1760667400.952018737 +UH 0 32 l 2352 10550 4 +UH 0 26 h 2294 11524 4 +PQ +SE +ID 4006 +TI 1760667400.952037811 +UH 0 0 l 2985 10691 4 +UH 0 3 l 2362 10363 4 +UH 0 4 l 2174 10605 4 +UH 0 38 h 2917 10702 4 +UH 0 39 h 1674 10524 4 +UH 0 26 h 1812 11492 4 +UH 0 27 h 2724 11208 4 +PQ +SE +ID 4007 +TI 1760667400.952074050 +UH 0 64 l 1742 0 5 +UH 0 64 h 1791 0 5 +BD GR Veto +PQ +SE +ID 4008 +TI 1760667400.952082157 +UH 0 62 l 2456 10811 4 +UH 0 63 l 2078 10702 4 +UH 0 18 h 2856 10796 4 +UH 0 20 h 1633 4356 0 +UH 0 21 h 1658 4855 0 +PQ +SE +ID 4009 +TI 1760667400.952122449 +UH 0 7 l 3133 10953 4 +UH 0 58 h 2341 10304 4 +UH 0 59 h 2251 10456 4 +PQ +SE +ID 4010 +TI 1760667400.952143430 +UH 0 62 l 2238 10887 4 +UH 0 47 h 1801 10212 4 +UH 0 48 h 1977 10323 4 +PQ +SE +ID 4011 +TI 1760667400.952163934 +UH 0 18 l 2478 10537 4 +UH 0 19 l 2431 10482 4 +UH 0 17 h 2718 11171 4 +UH 0 26 h 2033 11049 4 +PQ +SE +ID 4012 +TI 1760667400.952197074 +UH 0 0 l 4139 8822 4 +UH 0 1 l 1640 9256 4 +UH 0 24 h 4054 9472 4 +PQ +SE +ID 4013 +TI 1760667400.952224254 +UH 0 36 l 3991 9985 4 +UH 0 16 h 3864 11260 4 +PQ +SE +ID 4014 +TI 1760667400.952251911 +UH 0 64 l 1773 0 5 +UH 0 64 h 1859 0 5 +BD GR Veto +PQ +SE +ID 4015 +TI 1760667400.952264547 +UH 0 48 l 1840 11047 4 +UH 0 49 l 3128 10937 4 +UH 0 14 h 1760 11045 4 +UH 0 15 h 2315 11065 4 +UH 0 16 h 2523 11010 4 +PQ +SE +ID 4016 +TI 1760667400.952304601 +UH 0 49 l 2350 10859 4 +UH 0 50 l 2466 10727 4 +UH 0 62 h 3427 10897 4 +PQ +SE +ID 4017 +TI 1760667400.952336072 +UH 0 36 l 1654 4530 0 +UH 0 39 l 2480 10805 4 +UH 0 26 l 2042 10986 4 +UH 0 30 l 1622 4973 0 +UH 0 9 h 1637 11281 4 +UH 0 10 h 2453 11304 4 +UH 0 11 h 2090 11356 4 +UH 0 64 h 1752 0 5 +BD GR Veto +PQ +SE +ID 4018 +TI 1760667400.952414274 +UH 0 64 l 4105 0 5 +UH 0 64 h 3975 0 5 +BD GR Veto +PQ +SE +ID 4019 +TI 1760667400.952428579 +UH 0 52 l 2692 10890 4 +UH 0 13 h 2231 10998 4 +UH 0 14 h 1971 11092 4 +PQ +SE +ID 4020 +TI 1760667400.952460527 +UH 0 0 l 1654 5233 0 +UH 0 9 h 1611 5174 0 +PQ +SE +ID 4021 +TI 1760667400.952485322 +UH 0 54 l 1894 10808 4 +UH 0 55 l 3937 10500 4 +UH 0 21 h 4221 11070 4 +UH 0 22 h 1752 10850 4 +PQ +SE +ID 4022 +TI 1760667400.952520608 +UH 0 4 l 3181 11015 4 +UH 0 5 l 1828 10907 4 +UH 0 50 h 3346 10853 4 +UH 0 51 h 1588 11069 4 +PQ +SE +ID 4023 +TI 1760667400.952557802 +UH 0 24 l 2236 11049 4 +UH 0 25 l 3823 11141 4 +UH 0 3 h 2221 10866 4 +UH 0 4 h 3724 11457 4 +PQ +SE +ID 4024 +TI 1760667400.952595233 +UH 0 33 l 2960 10440 4 +UH 0 0 h 2970 11184 4 +PQ +SE +ID 4025 +TI 1760667400.952620267 +UH 0 19 l 3112 10996 4 +UH 0 33 h 3013 10140 4 +PQ +SE +ID 4026 +TI 1760667400.952651739 +UH 0 10 l 1627 4985 0 +UH 0 11 l 2581 10628 4 +UH 0 57 h 1600 4117 0 +UH 0 60 h 2385 10860 4 +PQ +SE +ID 4027 +TI 1760667400.952696323 +UH 0 34 l 2109 10436 4 +UH 0 35 l 2875 10615 4 +UH 0 37 l 1844 4752 0 +UH 0 37 h 1648 10457 4 +UH 0 38 h 3717 10234 4 +PQ +SE +ID 4028 +TI 1760667400.952742338 +UH 0 35 l 2488 9430 4 +UH 0 36 l 3443 9092 4 +UH 0 28 h 1650 9405 4 +UH 0 29 h 4260 9504 4 +UH 0 30 h 1569 9806 4 +PQ +SE +ID 4029 +TI 1760667400.952784299 +UH 0 3 l 2216 10827 4 +UH 0 4 l 1737 11140 4 +UH 0 6 l 1628 4858 0 +UH 0 32 h 2438 10846 4 +PQ +SE +ID 4030 +TI 1760667400.952826261 +UH 0 36 l 1856 2552 0 +UH 0 43 l 1517 8900 4 +UH 0 44 l 4248 8455 4 +UH 0 45 l 1547 8696 4 +UH 0 52 h 2968 8739 4 +UH 0 53 h 3120 8621 4 +PQ +SE +ID 4031 +TI 1760667400.976054430 +UH 0 58 l 2426 10578 4 +UH 0 59 l 1581 5065 0 +UH 0 59 h 2110 10857 4 +UH 0 60 h 1880 10576 4 +PQ +SE +ID 4032 +TI 1760667400.976144313 +UH 0 12 l 2543 10558 4 +UH 0 5 h 2270 10913 4 +UH 0 6 h 1647 4981 0 +PQ +SE +ID 4033 +TI 1760667400.976169586 +UH 0 64 l 3397 0 5 +UH 0 64 h 3114 0 5 +BD GR Veto +PQ +SE +ID 4034 +TI 1760667400.976177692 +UH 0 30 l 3294 11145 4 +UH 0 31 l 3866 10996 4 +UH 0 45 h 3243 10971 4 +UH 0 46 h 3766 10784 4 +PQ +SE +ID 4035 +TI 1760667400.976201534 +UH 0 61 l 2987 10709 4 +UH 0 55 h 2984 10063 4 +PQ +SE +ID 4036 +TI 1760667400.976220607 +UH 0 64 l 2526 0 5 +UH 0 64 h 2532 0 5 +BD GR Veto +PQ +SE +ID 4037 +TI 1760667400.976229190 +UH 0 2 l 3873 10908 4 +UH 0 64 l 3306 0 5 +UH 0 19 h 2711 10978 4 +UH 0 20 h 2597 10721 4 +UH 0 64 h 3226 0 5 +BD GR Veto +PQ +SE +ID 4038 +TI 1760667400.976255893 +UH 0 34 l 4383 8717 4 +UH 0 35 l 1572 9022 4 +UH 0 38 l 2741 8633 4 +UH 0 32 h 4227 8893 4 +UH 0 35 h 2806 9007 4 +PQ +SE +ID 4039 +TI 1760667400.976293087 +UH 0 43 l 1542 4650 0 +UH 0 44 l 1550 4583 0 +UH 0 10 h 1697 11689 4 +PQ +SE +ID 4040 +TI 1760667400.976314544 +UH 0 45 l 1539 9182 4 +UH 0 46 l 4314 8914 4 +UH 0 47 l 1583 9335 4 +UH 0 37 h 4498 9304 4 +PQ +SE +ID 4041 +TI 1760667400.976337909 +UH 0 64 l 3930 0 5 +UH 0 64 h 3826 0 5 +BD GR Veto +PQ +SE +ID 4042 +TI 1760667400.976346731 +UH 0 7 l 1804 5230 0 +UH 0 8 l 2281 10521 4 +UH 0 1 h 2133 11469 4 +UH 0 5 h 1937 11086 4 +PQ +SE +ID 4043 +TI 1760667400.976375341 +UH 0 30 l 1638 5087 0 +UH 0 64 l 3273 0 5 +UH 0 61 h 1587 4943 0 +UH 0 64 h 3209 0 5 +BD GR Veto +PQ +SE +ID 4044 +TI 1760667400.976397514 +UH 0 12 l 3345 10112 4 +UH 0 13 l 1653 10701 4 +UH 0 9 h 1809 10747 4 +UH 0 10 h 3031 10909 4 +PQ +SE +ID 4045 +TI 1760667400.976420640 +UH 0 8 l 2859 10884 4 +UH 0 61 h 2309 10769 4 +UH 0 62 h 2044 10596 4 +PQ +SE +ID 4046 +TI 1760667400.976448535 +UH 0 37 l 1943 10466 4 +UH 0 41 l 1513 4831 0 +UH 0 42 l 2013 10658 4 +UH 0 43 l 1662 4840 0 +UH 0 48 l 3174 10779 4 +UH 0 49 l 2721 11013 4 +UH 0 9 h 2047 11169 4 +UH 0 10 h 2147 11460 4 +UH 0 20 h 2774 11061 4 +UH 0 22 h 2873 10866 4 +UH 0 23 h 1911 10971 4 +PQ +SE +ID 4047 +TI 1760667400.976557493 +UH 0 17 l 2497 10896 4 +UH 0 43 h 2456 10823 4 +PQ +SE +ID 4048 +TI 1760667400.976595640 +UH 0 23 l 2029 10914 4 +UH 0 30 h 1868 11650 4 +PQ +SE +ID 4049 +TI 1760667400.976628541 +UH 0 53 l 4427 9593 4 +UH 0 60 l 1733 8859 4 +UH 0 61 l 2659 8979 4 +UH 0 17 h 2572 9947 4 +UH 0 18 h 1680 9568 4 +UH 0 20 h 4314 9403 4 +UH 0 21 h 1576 9735 4 +PQ +SE +ID 4050 +TI 1760667400.976698637 +UH 0 64 l 2257 0 5 +UH 0 64 h 2241 0 5 +BD GR Veto +PQ +SE +ID 4051 +TI 1760667400.976713895 +UH 0 53 l 2042 10854 4 +UH 0 54 l 2137 11043 4 +UH 0 60 l 2651 10086 4 +UH 0 37 h 2665 11085 4 +UH 0 43 h 1562 4551 0 +UH 0 44 h 2351 10390 4 +UH 0 45 h 1682 10681 4 +UH 0 46 h 1639 3878 0 +PQ +SE +ID 4052 +TI 1760667400.976793289 +UH 0 36 l 3181 10474 4 +UH 0 38 l 2400 10879 4 +UH 0 39 l 1694 4769 0 +UH 0 40 l 1547 3531 0 +UH 0 37 h 2380 10886 4 +UH 0 38 h 1842 10682 4 +UH 0 39 h 3152 10312 4 +PQ +SE +ID 4053 +TI 1760667400.976857185 +UH 0 35 l 1987 10480 4 +UH 0 36 l 1695 5154 0 +UH 0 38 l 2316 10696 4 +UH 0 11 h 2191 11407 4 +UH 0 12 h 1540 3783 0 +UH 0 13 h 2358 11204 4 +PQ +SE +ID 4054 +TI 1760667400.976913928 +UH 0 38 l 2328 8543 4 +UH 0 39 l 3474 8410 4 +UH 0 40 l 1529 5279 0 +UH 0 51 h 1739 9034 4 +UH 0 52 h 4012 9031 4 +PQ +SE +ID 4055 +TI 1760667400.976961612 +UH 0 56 l 1695 4881 0 +UH 0 57 l 1948 10801 4 +UH 0 58 l 2475 10505 4 +UH 0 59 l 1579 10789 4 +UH 0 18 h 2595 10795 4 +UH 0 22 h 2117 10821 4 +UH 0 23 h 1644 5000 0 +PQ +SE +ID 4056 +TI 1760667400.977027893 +UH 0 14 l 2829 10837 4 +UH 0 19 l 2885 11037 4 +UH 0 56 h 2797 10704 4 +UH 0 57 h 2005 10817 4 +UH 0 58 h 2344 10401 4 +PQ +SE +ID 4057 +TI 1760667400.977084159 +UH 0 22 l 2432 10673 4 +UH 0 14 h 2367 11358 4 +PQ +SE +ID 4058 +TI 1760667400.977116823 +UH 0 39 l 2150 8291 4 +UH 0 15 l 1670 8430 4 +UH 0 16 l 3942 8388 4 +UH 0 17 l 1584 8467 4 +UH 0 54 h 3931 8963 4 +UH 0 4 h 2225 9396 4 +PQ +SE +ID 4059 +TI 1760667400.977188348 +UH 0 34 l 3484 10583 4 +UH 0 57 h 3467 11149 4 +PQ +SE +ID 4060 +TI 1760667400.977222681 +UH 0 51 l 2943 10834 4 +UH 0 2 h 2947 10983 4 +PQ +SE +ID 4061 +TI 1760667400.977256536 +UH 0 2 l 2724 10612 4 +UH 0 10 h 2611 11487 4 +UH 0 11 h 1646 11430 4 +PQ +SE +ID 4062 +TI 1760667400.977302551 +UH 0 35 l 1845 11101 4 +UH 0 64 l 2547 0 5 +UH 0 40 h 1614 4486 0 +UH 0 41 h 1784 3894 0 +UH 0 64 h 2538 0 5 +BD GR Veto +PQ +SE +ID 4063 +TI 1760667400.977350234 +UH 0 64 l 2236 0 5 +UH 0 64 h 2284 0 5 +BD GR Veto +PQ +SE +ID 4064 +TI 1760667400.977365016 +UH 0 4 l 2541 11077 4 +UH 0 5 l 3502 10840 4 +UH 0 33 h 2452 10422 4 +UH 0 34 h 3333 10558 4 +PQ +SE +ID 4065 +TI 1760667400.977407932 +UH 0 64 l 3039 0 5 +UH 0 64 h 3237 0 5 +BD GR Veto +PQ +SE +ID 4066 +TI 1760667400.977422475 +UH 0 18 l 2374 10529 4 +UH 0 51 h 1594 11103 4 +UH 0 52 h 2268 11083 4 +PQ +SE +ID 4067 +TI 1760667400.977462768 +UH 0 27 l 3920 10737 4 +UH 0 63 h 3849 10680 4 +PQ +SE +ID 4068 +TI 1760667400.977491855 +UH 0 64 l 2597 0 5 +UH 0 64 h 2598 0 5 +BD GR Veto +PQ +SE +ID 4069 +TI 1760667400.977506160 +UH 0 64 l 3190 0 5 +UH 0 64 h 3159 0 5 +BD GR Veto +PQ +SE +ID 4070 +TI 1760667400.977521419 +UH 0 27 l 2556 10252 4 +UH 0 19 h 1726 5167 0 +UH 0 20 h 2309 11098 4 +PQ +SE +ID 4071 +TI 1760667400.977560043 +UH 0 6 l 2090 10737 4 +UH 0 7 l 1734 10598 4 +UH 0 8 l 3380 10404 4 +UH 0 58 h 3923 10773 4 +PQ +SE +ID 4072 +TI 1760667400.977602958 +UH 0 40 l 1540 8814 4 +UH 0 41 l 1875 8844 4 +UH 0 42 l 4482 8695 4 +UH 0 43 l 1511 8868 4 +UH 0 45 l 2205 8834 4 +UH 0 17 h 2168 8754 4 +UH 0 19 h 1998 9248 4 +UH 0 20 h 4385 8912 4 +PQ +SE +ID 4073 +TI 1760667400.977674007 +UH 0 36 l 1626 10645 4 +UH 0 37 l 2528 10911 4 +UH 0 27 l 2906 10786 4 +UH 0 52 h 1961 10589 4 +UH 0 53 h 2404 10413 4 +UH 0 62 h 2673 10443 4 +PQ +SE +ID 4074 +TI 1760667400.977746963 +UH 0 44 l 1834 10600 4 +UH 0 17 h 1839 11478 4 +PQ +SE +ID 4075 +TI 1760667400.977779865 +UH 0 28 l 2348 9813 4 +UH 0 30 l 2097 10123 4 +UH 0 31 l 4310 9935 4 +UH 0 48 h 1608 9432 4 +UH 0 49 h 4969 9288 4 +UH 0 50 h 1714 9346 4 +UH 0 52 h 2086 9560 4 +PQ +SE +ID 4076 +TI 1760667400.977849960 +UH 0 52 l 2153 10971 4 +UH 0 60 h 2097 10557 4 +PQ +SE +ID 4077 +TI 1760667400.977869510 +UH 0 57 l 3109 10744 4 +UH 0 59 h 3063 10273 4 +PQ +SE +ID 4078 +TI 1760667400.977888107 +UH 0 63 l 2507 10655 4 +UH 0 64 l 1729 0 5 +UH 0 11 h 2592 11044 4 +UH 0 64 h 1793 0 5 +BD GR Veto +PQ +SE +ID 4079 +TI 1760667400.977908134 +UH 0 40 l 1840 10671 4 +UH 0 41 l 3347 10918 4 +UH 0 9 h 3803 10592 4 +PQ +SE +ID 4080 +TI 1760667400.977928638 +UH 0 28 l 2852 10598 4 +UH 0 27 h 2525 11238 4 +UH 0 28 h 1882 11046 4 +PQ +SE +ID 4081 +TI 1760667400.977950811 +UH 0 46 l 1595 5255 0 +UH 0 30 h 1659 4682 0 +PQ +SE +ID 4082 +TI 1760667400.977968931 +UH 0 14 l 1782 5116 0 +UH 0 38 h 1750 5446 0 +PQ +SE +ID 4083 +TI 1760667400.977987051 +UH 0 33 l 1698 4424 0 +UH 0 34 l 2159 10611 4 +UH 0 26 h 1616 4885 0 +UH 0 27 h 2258 10638 4 +PQ +SE +ID 4084 +TI 1760667400.978009700 +UH 0 5 l 2077 11089 4 +UH 0 24 l 1778 4770 0 +UH 0 44 h 1942 10615 4 +UH 0 45 h 1575 4633 0 +UH 0 63 h 1722 4825 0 +PQ +SE +ID 4085 +TI 1760667400.978041410 +UH 0 55 l 2726 10766 4 +UH 0 9 h 2187 10636 4 +UH 0 10 h 1660 10945 4 +UH 0 11 h 2050 10708 4 +PQ +SE +ID 4086 +TI 1760667400.978065013 +UH 0 63 l 2086 10761 4 +UH 0 31 h 2079 10593 4 +PQ +SE +ID 4087 +TI 1760667400.978080034 +UH 0 53 l 2032 11042 4 +UH 0 7 h 1757 4176 0 +UH 0 8 h 1810 11184 4 +PQ +SE +ID 4088 +TI 1760667400.978100299 +UH 0 16 l 3340 10941 4 +UH 0 40 h 2940 10309 4 +UH 0 41 h 1959 10641 4 +PQ +SE +ID 4089 +TI 1760667400.978120565 +UH 0 37 l 2224 10899 4 +UH 0 38 l 1967 10859 4 +UH 0 25 h 1960 11369 4 +UH 0 26 h 2214 11526 4 +PQ +SE +ID 4090 +TI 1760667400.978140115 +UH 0 39 l 2369 10708 4 +UH 0 31 l 2380 10834 4 +UH 0 0 h 1953 11126 4 +UH 0 1 h 2001 11116 4 +UH 0 13 h 2393 11172 4 +PQ +SE +ID 4091 +TI 1760667400.978171825 +UH 0 29 l 2080 10553 4 +UH 0 30 l 3990 11178 4 +UH 0 43 h 3743 10374 4 +UH 0 44 h 1715 10325 4 +UH 0 46 h 2004 10596 4 +PQ +SE +ID 4092 +TI 1760667400.978199481 +UH 0 49 l 3412 10733 4 +UH 0 50 l 2084 10740 4 +UH 0 51 l 1741 5467 0 +UH 0 64 l 2996 0 5 +UH 0 60 h 1684 10442 4 +UH 0 61 h 4013 10785 4 +UH 0 64 h 2985 0 5 +BD GR Veto +PQ +SE +ID 4093 +TI 1760667400.978229761 +UH 0 36 l 1667 5168 0 +UH 0 55 h 1763 4719 0 +PQ +SE +ID 4094 +TI 1760667400.978247165 +UH 0 36 l 1981 10240 4 +UH 0 49 l 1578 4770 0 +UH 0 60 l 3524 10286 4 +UH 0 61 l 1941 10624 4 +UH 0 42 h 1689 4254 0 +UH 0 43 h 1735 10495 4 +UH 0 44 h 1760 10325 4 +UH 0 45 h 3692 10476 4 +PQ +SE +ID 4095 +TI 1760667400.997285842 +UH 0 50 l 1574 5377 0 +PQ +SE +ID 4096 +TI 1760667400.997337579 +UH 0 20 l 2270 10448 4 +UH 0 62 h 2254 11156 4 +PQ +SE +ID 4097 +TI 1760667400.997358322 +UH 0 39 l 1910 10879 4 +UH 0 31 h 1867 11056 4 +PQ +SE +ID 4098 +TI 1760667400.997377634 +UH 0 28 l 1679 4262 0 +UH 0 31 l 1655 5072 0 +UH 0 3 h 1713 5377 0 +UH 0 17 h 1590 5071 0 +PQ +SE +ID 4099 +TI 1760667400.997410535 +UH 0 29 l 1750 5186 0 +UH 0 29 h 1692 5549 0 +PQ +SE +ID 4100 +TI 1760667400.997442960 +UH 0 64 l 4430 0 5 +UH 0 64 h 4205 0 5 +BD GR Veto +PQ +SE +ID 4101 +TI 1760667400.997451543 +UH 0 49 l 2653 8635 4 +UH 0 50 l 1702 3464 0 +UH 0 51 l 1967 9101 4 +UH 0 52 l 1599 8926 4 +UH 0 53 l 3937 8967 4 +UH 0 54 l 1540 8979 4 +UH 0 49 h 3887 8834 4 +UH 0 50 h 1870 8850 4 +UH 0 51 h 2992 8995 4 +PQ +SE +ID 4102 +TI 1760667400.997486829 +UH 0 23 l 4894 10032 4 +UH 0 25 l 2469 10289 4 +UH 0 10 h 1572 10340 4 +UH 0 11 h 3901 10075 4 +UH 0 12 h 3063 9956 4 +UH 0 13 h 1720 10135 4 +PQ +SE +ID 4103 +TI 1760667400.997524499 +UH 0 11 l 2206 10617 4 +UH 0 50 h 1744 4584 0 +UH 0 51 h 1879 11236 4 +PQ +SE +ID 4104 +TI 1760667400.997560739 +UH 0 42 l 1790 8897 4 +UH 0 43 l 3684 9077 4 +UH 0 44 l 1503 8754 4 +UH 0 31 h 3978 8734 4 +PQ +SE +ID 4105 +TI 1760667400.997600793 +UH 0 23 l 4066 9337 4 +UH 0 24 l 1711 9514 4 +UH 0 26 h 3900 10194 4 +PQ +SE +ID 4106 +TI 1760667400.997642755 +UH 0 59 l 1727 1514 0 +UH 0 8 l 1816 9069 4 +UH 0 9 l 4564 8970 4 +UH 0 10 l 1631 9083 4 +UH 0 64 l 2380 0 5 +UH 0 2 h 1857 9462 4 +UH 0 3 h 4469 9024 4 +UH 0 4 h 1639 9567 4 +UH 0 64 h 2450 0 5 +BD GR Veto +PQ +SE +ID 4107 +TI 1760667400.997710704 +UH 0 44 l 1653 5333 0 +UH 0 3 h 1708 4644 0 +UH 0 4 h 1674 4913 0 +PQ +SE +ID 4108 +TI 1760667400.997748851 +UH 0 4 l 2779 11074 4 +UH 0 39 h 2779 10354 4 +PQ +SE +ID 4109 +TI 1760667400.997776269 +UH 0 6 l 1663 11190 4 +UH 0 7 l 2527 10944 4 +UH 0 26 h 1818 11329 4 +UH 0 27 h 2409 11071 4 +PQ +SE +ID 4110 +TI 1760667400.997840881 +UH 0 2 l 3577 9471 4 +UH 0 3 l 1604 9457 4 +UH 0 24 h 3477 9587 4 +PQ +SE +ID 4111 +TI 1760667400.997867584 +UH 0 21 l 2494 11159 4 +UH 0 10 h 2452 11086 4 +PQ +SE +ID 4112 +TI 1760667400.997893571 +UH 0 64 l 2017 0 5 +UH 0 64 h 2084 0 5 +BD GR Veto +PQ +SE +ID 4113 +TI 1760667400.997907400 +UH 0 37 l 2370 10884 4 +UH 0 38 l 2272 10839 4 +UH 0 6 h 2321 11303 4 +UH 0 7 h 2415 11241 4 +PQ +SE +ID 4114 +TI 1760667400.997931480 +UH 0 11 l 1709 8848 4 +UH 0 12 l 4048 8673 4 +UH 0 17 l 2221 8831 4 +UH 0 47 h 4001 8936 4 +UH 0 50 h 2266 9062 4 +PQ +SE +ID 4115 +TI 1760667400.997968673 +UH 0 64 l 1861 0 5 +UH 0 64 h 2372 0 5 +BD GR Veto +PQ +SE +ID 4116 +TI 1760667400.997982501 +UH 0 33 l 4315 4494 4 +UH 0 43 l 1555 5498 0 +UH 0 34 h 4142 4137 4 +UH 0 63 h 1648 4808 0 +PQ +SE +ID 4117 +TI 1760667400.998016119 +UH 0 14 l 2409 10721 4 +UH 0 15 h 2355 11542 4 +PQ +SE +ID 4118 +TI 1760667400.998034000 +UH 0 64 l 2445 0 5 +UH 0 64 h 2465 0 5 +BD GR Veto +PQ +SE +ID 4119 +TI 1760667400.998042583 +UH 0 42 l 2086 10822 4 +UH 0 63 h 2069 11086 4 +PQ +SE +ID 4120 +TI 1760667400.998060464 +UH 0 24 l 3029 10908 4 +UH 0 11 h 2935 11271 4 +PQ +SE +ID 4121 +TI 1760667400.998079299 +UH 0 43 l 1559 8676 4 +UH 0 44 l 4332 8377 4 +UH 0 45 l 1553 8521 4 +UH 0 54 h 4376 8879 4 +PQ +SE +ID 4122 +TI 1760667400.998103857 +UH 0 64 l 1902 0 5 +UH 0 64 h 1971 0 5 +BD GR Veto +PQ +SE +ID 4123 +TI 1760667400.998111724 +UH 0 64 l 2931 0 5 +UH 0 64 h 2910 0 5 +BD GR Veto +PQ +SE +ID 4124 +TI 1760667400.998121261 +UH 0 47 l 4710 10724 4 +UH 0 57 l 1603 1250 0 +UH 0 58 l 1577 2652 0 +UH 0 59 l 1600 2108 0 +UH 0 60 l 1614 1763 0 +UH 0 61 l 1710 1989 0 +UH 0 62 l 1699 2432 0 +UH 0 63 l 1726 2265 0 +UH 0 55 h 3850 10025 4 +UH 0 56 h 2566 10293 4 +PQ +SE +ID 4125 +TI 1760667400.998172521 +UH 0 56 l 1942 11183 4 +UH 0 58 l 1682 4737 0 +UH 0 27 h 2191 10877 4 +PQ +SE +ID 4126 +TI 1760667400.998196363 +UH 0 64 l 2168 0 5 +UH 0 64 h 2234 0 5 +BD GR Veto +PQ +SE +ID 4127 +TI 1760667400.998206615 +UH 0 45 l 1726 10854 4 +UH 0 46 l 2415 10776 4 +UH 0 36 h 2703 11128 4 +UH 0 37 h 1610 11417 4 +PQ +SE +ID 4128 +TI 1760667400.998230218 +UH 0 53 l 1729 5346 0 +UH 0 49 h 1678 5316 0 +PQ +SE +ID 4129 +TI 1760667400.998248338 +UH 0 26 l 1995 11403 4 +UH 0 27 h 1651 4681 0 +UH 0 28 h 1892 10715 4 +PQ +SE +ID 4130 +TI 1760667400.998268842 +UH 0 56 l 1659 4844 0 +UH 0 63 l 2031 10681 4 +UH 0 38 h 1752 5046 0 +UH 0 42 h 2124 11016 4 +PQ +SE +ID 4131 +TI 1760667400.998306512 +UH 0 41 l 1507 4497 0 +UH 0 64 l 3160 0 5 +UH 0 3 h 1640 4770 0 +UH 0 64 h 3114 0 5 +BD GR Veto +PQ +SE +ID 4132 +TI 1760667400.998328685 +UH 0 1 l 1625 5497 0 +UH 0 2 l 2788 8885 4 +UH 0 3 l 2441 8776 4 +UH 0 64 l 1767 0 5 +UH 0 40 h 3595 8989 4 +UH 0 64 h 2476 0 5 +BD GR Veto +PQ +SE +ID 4133 +TI 1760667400.998355627 +UH 0 5 l 3826 10791 4 +UH 0 26 l 3476 11319 4 +UH 0 39 h 3749 10284 4 +UH 0 40 h 1581 10412 4 +UH 0 48 h 3457 10404 4 +PQ +SE +ID 4134 +TI 1760667400.998394250 +UH 0 64 l 3295 0 5 +UH 0 64 h 3278 0 5 +BD GR Veto +PQ +SE +ID 4135 +TI 1760667400.998402833 +UH 0 49 l 2132 10858 4 +UH 0 17 h 2125 10645 4 +PQ +SE +ID 4136 +TI 1760667400.998421669 +UH 0 56 l 1552 4863 0 +UH 0 57 l 1564 8455 4 +UH 0 58 l 5653 7986 4 +UH 0 59 l 1587 8297 4 +UH 0 60 l 1578 5085 0 +UH 0 47 h 5653 8596 4 +UH 0 48 h 1538 7265 0 +PQ +SE +ID 4137 +TI 1760667400.998451948 +UH 0 64 l 3217 0 5 +UH 0 43 h 2271 11160 4 +UH 0 44 h 1635 11086 4 +UH 0 45 h 2161 11294 4 +UH 0 64 h 1741 0 5 +BD GR Veto +PQ +SE +ID 4138 +TI 1760667400.998471736 +UH 0 28 l 1683 4708 0 +UH 0 30 l 2279 10930 4 +UH 0 11 h 2310 11570 4 +UH 0 14 h 1634 4633 0 +PQ +SE +ID 4139 +TI 1760667400.998500823 +UH 0 64 l 2571 0 5 +UH 0 64 h 2573 0 5 +BD GR Veto +PQ +SE +ID 4140 +TI 1760667400.998509407 +UH 0 18 l 1723 4849 0 +UH 0 59 h 1681 5397 0 +PQ +SE +ID 4141 +TI 1760667400.998526811 +UH 0 64 l 1943 0 5 +UH 0 64 h 1979 0 5 +BD GR Veto +PQ +SE +ID 4142 +TI 1760667400.998534679 +UH 0 39 l 2603 10371 4 +UH 0 40 l 2512 10455 4 +UH 0 15 h 3345 11416 4 +UH 0 16 h 1754 11438 4 +PQ +SE +ID 4143 +TI 1760667400.998557090 +UH 0 51 l 1640 9365 4 +UH 0 52 l 3689 9200 4 +UH 0 26 h 3610 10151 4 +PQ +SE +ID 4144 +TI 1760667400.998577594 +UH 0 13 l 1966 11169 4 +UH 0 14 l 1925 11054 4 +UH 0 47 h 1831 10755 4 +UH 0 48 h 2054 10828 4 +PQ +SE +ID 4145 +TI 1760667400.998599529 +UH 0 57 l 2282 10535 4 +UH 0 3 h 2421 11124 4 +PQ +SE +ID 4146 +TI 1760667400.998616933 +UH 0 64 l 2050 0 5 +BD GR Veto +PQ +SE +ID 4147 +TI 1760667400.998622894 +UH 0 45 l 1815 10696 4 +UH 0 23 h 1845 11497 4 +PQ +SE +ID 4148 +TI 1760667400.998640537 +UH 0 35 l 1585 5431 0 +UH 0 36 l 2135 10522 4 +UH 0 33 h 1862 10750 4 +UH 0 34 h 1777 10913 4 +PQ +SE +ID 4149 +TI 1760667400.998662948 +UH 0 2 l 2412 11071 4 +UH 0 5 l 1875 4753 0 +UH 0 55 h 2404 10523 4 +UH 0 57 h 1813 11120 4 +UH 0 58 h 1619 4139 0 +PQ +SE +ID 4150 +TI 1760667400.998696088 +UH 0 4 l 1618 10603 4 +UH 0 5 l 3107 10289 4 +UH 0 6 h 1704 11032 4 +UH 0 7 h 2990 10894 4 +PQ +SE +ID 4151 +TI 1760667400.998718738 +UH 0 39 l 2841 10789 4 +UH 0 34 h 2639 10453 4 +UH 0 35 h 1621 4681 0 +PQ +SE +ID 4152 +TI 1760667400.998739480 +UH 0 48 l 2093 11051 4 +UH 0 7 h 2212 11315 4 +PQ +SE +ID 4153 +TI 1760667400.998756647 +UH 0 7 l 1605 8971 4 +UH 0 8 l 4901 8796 4 +UH 0 9 l 2428 8914 4 +UH 0 49 h 5639 9203 4 +PQ +SE +ID 4154 +TI 1760667400.998780012 +UH 0 49 l 2071 11045 4 +UH 0 54 h 2087 10745 4 +PQ +SE +ID 4155 +TI 1760667400.998797655 +UH 0 64 l 2187 0 5 +UH 0 64 h 2125 0 5 +BD GR Veto +PQ +SE +ID 4156 +TI 1760667400.998805284 +UH 0 52 l 2066 10984 4 +UH 0 60 h 2016 10621 4 +PQ +SE +ID 4157 +TI 1760667400.998823642 +UH 0 31 l 1747 4962 0 +UH 0 8 h 1752 12036 4 +PQ +SE +ID 4158 +TI 1760667400.998843431 +UH 0 55 l 2551 10757 4 +UH 0 12 h 2599 11054 4 +PQ +SE +ID 4159 +TI 1760667401.016147136 +UH 0 26 h 1585 5719 0 +PQ +SE +ID 4160 +TI 1760667401.016201019 +UH 0 24 l 3268 10470 4 +UH 0 64 l 1783 0 5 +UH 0 0 h 1622 10718 4 +UH 0 1 h 3211 10621 4 +UH 0 64 h 1847 0 5 +BD GR Veto +PQ +SE +ID 4161 +TI 1760667401.016247987 +UH 0 13 l 4294 10972 4 +UH 0 14 l 1866 10721 4 +UH 0 15 l 1862 4977 0 +UH 0 42 h 4277 10575 4 +UH 0 43 h 1875 10893 4 +UH 0 45 h 1674 11085 4 +PQ +SE +ID 4162 +TI 1760667401.016312360 +UH 0 0 l 2062 10873 4 +UH 0 64 l 4913 0 5 +UH 0 49 h 2014 10737 4 +UH 0 64 h 4725 0 5 +BD GR Veto +PQ +SE +ID 4163 +TI 1760667401.016350507 +UH 0 29 l 1826 10541 4 +UH 0 30 l 3756 10758 4 +UH 0 64 l 2587 0 5 +UH 0 17 h 3772 11094 4 +UH 0 64 h 3015 0 5 +BD GR Veto +PQ +SE +ID 4164 +TI 1760667401.016399383 +UH 0 3 l 2344 9235 4 +UH 0 4 l 1597 9470 4 +UH 0 5 l 3365 9145 4 +UH 0 15 h 2371 9694 4 +UH 0 16 h 2342 9734 4 +UH 0 17 h 2420 9559 4 +PQ +SE +ID 4165 +TI 1760667401.016451597 +UH 0 12 h 1535 5460 0 +PQ +SE +ID 4166 +TI 1760667401.016472101 +UH 0 55 l 2150 10646 4 +UH 0 56 l 2480 10679 4 +UH 0 7 l 1931 10540 4 +UH 0 39 h 1980 10495 4 +UH 0 4 h 2563 11312 4 +UH 0 7 h 2306 10927 4 +UH 0 64 h 1964 0 5 +BD GR Veto +PQ +SE +ID 4167 +TI 1760667401.016566038 +UH 0 8 l 2775 10757 4 +UH 0 64 l 2215 0 5 +UH 0 61 h 2676 11142 4 +UH 0 64 h 2253 0 5 +BD GR Veto +PQ +SE +ID 4168 +TI 1760667401.016609907 +UH 0 64 h 1886 0 5 +BD GR Veto +PQ +SE +ID 4169 +TI 1760667401.016619443 +UH 0 52 l 1730 4952 0 +UH 0 53 l 1688 5349 0 +UH 0 41 h 1795 11165 4 +PQ +SE +ID 4170 +TI 1760667401.016656875 +UH 0 64 l 1986 0 5 +UH 0 64 h 2032 0 5 +BD GR Veto +PQ +SE +ID 4171 +TI 1760667401.016671657 +UH 0 6 l 3009 10851 4 +UH 0 52 h 2963 11142 4 +PQ +SE +ID 4172 +TI 1760667401.016705274 +UH 0 21 l 1621 9069 4 +UH 0 22 l 5595 8518 4 +UH 0 23 l 1739 8873 4 +UH 0 32 h 4770 8840 4 +UH 0 33 h 2217 8554 4 +PQ +SE +ID 4173 +TI 1760667401.016753196 +UH 0 64 l 4503 0 5 +UH 0 64 h 4229 0 5 +BD GR Veto +PQ +SE +ID 4174 +TI 1760667401.016767501 +UH 0 64 l 4544 0 5 +UH 0 64 h 4401 0 5 +BD GR Veto +PQ +SE +ID 4175 +TI 1760667401.016781568 +UH 0 64 l 3813 0 5 +UH 0 64 h 3710 0 5 +BD GR Veto +PQ +SE +ID 4176 +TI 1760667401.016796112 +UH 0 61 l 1860 11009 4 +UH 0 44 h 1819 10543 4 +PQ +SE +ID 4177 +TI 1760667401.016840457 +UH 0 21 l 1742 5264 0 +UH 0 59 h 1719 5384 0 +PQ +SE +ID 4178 +TI 1760667401.016873121 +UH 0 32 l 2160 10611 4 +UH 0 45 l 3337 10878 4 +UH 0 46 l 2411 10641 4 +UH 0 29 l 1751 4582 0 +UH 0 54 h 3325 10883 4 +UH 0 55 h 2597 10577 4 +UH 0 61 h 1631 4813 0 +UH 0 62 h 2208 10760 4 +PQ +SE +ID 4179 +TI 1760667401.016970396 +UH 0 57 l 1542 5236 0 +PQ +SE +ID 4180 +TI 1760667401.016989707 +UH 0 28 l 2243 10273 4 +UH 0 29 l 3614 10023 4 +UH 0 48 h 1597 9601 4 +UH 0 49 h 4219 9522 4 +PQ +SE +ID 4181 +TI 1760667401.017032146 +UH 0 25 l 3860 11026 4 +UH 0 63 h 3769 10861 4 +PQ +SE +ID 4182 +TI 1760667401.017060279 +UH 0 35 l 2010 10685 4 +UH 0 5 h 2051 11577 4 +PQ +SE +ID 4183 +TI 1760667401.017093181 +UH 0 53 l 2488 10806 4 +UH 0 33 h 2082 10826 4 +UH 0 34 h 1778 11046 4 +PQ +SE +ID 4184 +TI 1760667401.017131805 +UH 0 64 l 2468 0 5 +UH 0 23 h 1830 11408 4 +UH 0 64 h 2215 0 5 +BD GR Veto +PQ +SE +ID 4185 +TI 1760667401.017159938 +UH 0 36 l 1993 10548 4 +UH 0 55 h 2076 10998 4 +PQ +SE +ID 4186 +TI 1760667401.017197370 +UH 0 62 l 2322 10982 4 +UH 0 57 h 2178 11339 4 +UH 0 58 h 1644 4973 0 +PQ +SE +ID 4187 +TI 1760667401.017240524 +UH 0 5 l 2214 10954 4 +UH 0 33 h 1624 4277 0 +UH 0 34 h 1944 10390 4 +PQ +SE +ID 4188 +TI 1760667401.017265081 +UH 0 27 l 1637 4544 0 +UH 0 31 l 1627 5236 0 +UH 0 32 h 1630 11686 4 +UH 0 30 h 1596 5687 0 +PQ +SE +ID 4189 +TI 1760667401.017292261 +UH 0 22 l 1973 10979 4 +UH 0 41 h 1947 11624 4 +PQ +SE +ID 4190 +TI 1760667401.017310142 +UH 0 51 l 2662 10979 4 +UH 0 59 h 2565 10469 4 +PQ +SE +ID 4191 +TI 1760667401.017327070 +UH 0 32 l 1638 5271 0 +UH 0 33 l 2151 10084 4 +UH 0 31 l 2251 10636 4 +UH 0 2 h 2997 10710 4 +PQ +SE +ID 4192 +TI 1760667401.017348051 +UH 0 51 l 1662 4330 0 +UH 0 53 l 1692 5025 0 +UH 0 64 l 3408 0 5 +UH 0 62 h 1736 4710 0 +UH 0 64 h 3466 0 5 +BD GR Veto +PQ +SE +ID 4193 +TI 1760667401.017374992 +UH 0 37 l 3271 10719 4 +UH 0 38 l 1808 10757 4 +UH 0 50 h 3643 10340 4 +PQ +SE +ID 4194 +TI 1760667401.017395496 +UH 0 43 l 2694 10949 4 +UH 0 60 h 1869 10503 4 +UH 0 61 h 2410 10905 4 +PQ +SE +ID 4195 +TI 1760667401.017416000 +UH 0 22 l 2156 10894 4 +UH 0 0 h 1747 11487 4 +UH 0 1 h 2004 11532 4 +PQ +SE +ID 4196 +TI 1760667401.017433404 +UH 0 60 l 1886 10782 4 +UH 0 51 h 1827 10607 4 +PQ +SE +ID 4197 +TI 1760667401.017451047 +UH 0 4 l 1888 11079 4 +UH 0 5 l 2589 10803 4 +UH 0 6 l 1893 10751 4 +UH 0 10 l 2172 10931 4 +UH 0 43 h 2111 10491 4 +UH 0 44 h 1897 10584 4 +UH 0 45 h 1623 10757 4 +UH 0 46 h 2718 10523 4 +PQ +SE +ID 4198 +TI 1760667401.017487764 +UH 0 64 l 2526 0 5 +UH 0 64 h 2777 0 5 +BD GR Veto +PQ +SE +ID 4199 +TI 1760667401.017496109 +UH 0 64 l 1695 0 5 +UH 0 64 h 1808 0 5 +BD GR Veto +PQ +SE +ID 4200 +TI 1760667401.017503738 +UH 0 56 l 2802 10673 4 +UH 0 62 l 4350 10719 4 +UH 0 40 h 2659 10436 4 +UH 0 41 h 1751 10789 4 +UH 0 42 h 3845 10424 4 +UH 0 43 h 1992 10456 4 +PQ +SE +ID 4201 +TI 1760667401.017535686 +UH 0 64 l 3526 0 5 +UH 0 64 h 3471 0 5 +BD GR Veto +PQ +SE +ID 4202 +TI 1760667401.017544269 +UH 0 4 l 1997 10800 4 +UH 0 5 l 1717 5210 0 +UH 0 6 l 1605 4883 0 +UH 0 7 l 1643 4638 0 +UH 0 8 l 2644 10304 4 +UH 0 50 h 2220 10571 4 +UH 0 51 h 2625 10626 4 +PQ +SE +ID 4203 +TI 1760667401.017573356 +UH 0 23 l 2240 10998 4 +UH 0 63 h 2140 10705 4 +PQ +SE +ID 4204 +TI 1760667401.017588853 +UH 0 50 l 1945 10733 4 +UH 0 28 h 1990 11346 4 +PQ +SE +ID 4205 +TI 1760667401.017606496 +UH 0 61 l 1645 5269 0 +UH 0 62 l 3387 8554 4 +UH 0 19 h 3262 9466 4 +PQ +SE +ID 4206 +TI 1760667401.017626285 +UH 0 17 l 1589 3025 0 +UH 0 18 l 2344 8509 4 +UH 0 23 l 1719 8940 4 +UH 0 24 l 4365 8712 4 +UH 0 25 l 2155 8962 4 +UH 0 45 h 4130 9091 4 +UH 0 46 h 2034 9002 4 +UH 0 48 h 1935 8872 4 +UH 0 49 h 1966 8949 4 +PQ +SE +ID 4207 +TI 1760667401.017667770 +UH 0 17 l 3880 10742 4 +UH 0 57 h 1656 10995 4 +UH 0 58 h 3696 10564 4 +PQ +SE +ID 4208 +TI 1760667401.017688035 +UH 0 64 l 1758 0 5 +UH 0 64 h 1820 0 5 +BD GR Veto +PQ +SE +ID 4209 +TI 1760667401.017695426 +UH 0 64 l 2719 0 5 +UH 0 64 h 2594 0 5 +BD GR Veto +PQ +SE +ID 4210 +TI 1760667401.017704010 +UH 0 18 l 2228 10431 4 +UH 0 19 l 1661 4820 0 +UH 0 24 l 1677 5323 0 +UH 0 28 l 1833 4601 0 +UH 0 29 l 2326 10575 4 +UH 0 44 h 2507 10818 4 +UH 0 46 h 1588 1923 0 +UH 0 49 h 2290 10859 4 +PQ +SE +ID 4211 +TI 1760667401.017761468 +UH 0 50 l 1761 5149 0 +UH 0 53 l 2129 10734 4 +UH 0 55 h 2480 10916 4 +PQ +SE +ID 4212 +TI 1760667401.017785310 +UH 0 36 l 3434 10525 4 +UH 0 46 l 3652 10614 4 +UH 0 41 h 3793 10534 4 +UH 0 17 h 3255 10692 4 +PQ +SE +ID 4213 +TI 1760667401.017816305 +UH 0 20 l 2125 10764 4 +UH 0 61 h 2015 10936 4 +PQ +SE +ID 4214 +TI 1760667401.017839193 +UH 0 39 l 1674 4977 0 +UH 0 61 h 1618 5357 0 +PQ +SE +ID 4215 +TI 1760667401.017857789 +UH 0 53 l 2026 10928 4 +UH 0 16 h 1976 10925 4 +PQ +SE +ID 4216 +TI 1760667401.017875432 +UH 0 19 l 1682 11155 4 +UH 0 20 l 2441 10734 4 +UH 0 22 l 2385 10638 4 +UH 0 43 h 1731 4779 0 +UH 0 44 h 3084 10700 4 +PQ +SE +ID 4217 +TI 1760667401.017903089 +UH 0 53 l 2640 10781 4 +UH 0 57 l 1541 4593 0 +UH 0 35 h 2654 10853 4 +PQ +SE +ID 4218 +TI 1760667401.017928123 +UH 0 42 l 2019 10228 4 +UH 0 43 l 1509 5498 0 +UH 0 33 h 1981 9488 4 +PQ +SE +ID 4219 +TI 1760667401.017948389 +UH 0 47 l 3749 10705 4 +UH 0 48 l 2125 10900 4 +UH 0 58 l 1560 2768 0 +UH 0 59 l 1565 2380 0 +UH 0 60 l 1586 3460 0 +UH 0 61 l 1684 2037 0 +UH 0 62 l 1656 2215 0 +UH 0 63 l 1651 2036 0 +UH 0 47 h 2925 10549 4 +UH 0 48 h 3150 10651 4 +PQ +SE +ID 4220 +TI 1760667401.017987489 +UH 0 34 l 1765 4883 0 +UH 0 27 l 2157 10389 4 +UH 0 30 l 3234 11199 4 +UH 0 31 l 1759 11175 4 +UH 0 1 h 1696 4283 0 +UH 0 2 h 1703 4632 0 +UH 0 11 h 2143 11408 4 +UH 0 13 h 3441 11089 4 +PQ +SE +ID 4221 +TI 1760667401.018043279 +UH 0 45 l 3200 10337 4 +UH 0 8 h 3241 11490 4 +PQ +SE +ID 4222 +TI 1760667401.018061161 +UH 0 34 l 1729 4992 0 +UH 0 2 h 1777 11700 4 +PQ +SE +ID 4223 +TI 1760667401.043873071 +UH 0 59 l 2701 10306 4 +UH 0 60 l 1905 10132 4 +UH 0 10 h 3099 11491 4 +PQ +SE +ID 4224 +TI 1760667401.043960094 +UH 0 17 l 2330 10650 4 +UH 0 18 l 2278 10447 4 +UH 0 42 h 2292 10872 4 +UH 0 49 h 2333 11088 4 +PQ +SE +ID 4225 +TI 1760667401.044024944 +UH 0 12 l 1729 5091 0 +UH 0 50 h 1677 4563 0 +PQ +SE +ID 4226 +TI 1760667401.044069051 +UH 0 52 l 2193 10658 4 +UH 0 53 l 1852 5018 0 +UH 0 54 h 2448 11186 4 +PQ +SE +ID 4227 +TI 1760667401.044132471 +UH 0 40 l 1611 10631 4 +UH 0 41 l 4407 10699 4 +UH 0 61 h 1686 10484 4 +UH 0 62 h 4462 10209 4 +PQ +SE +ID 4228 +TI 1760667401.044185876 +UH 0 3 l 2183 10620 4 +UH 0 4 l 2068 10836 4 +UH 0 49 h 2020 11066 4 +UH 0 51 h 2143 11147 4 +PQ +SE +ID 4229 +TI 1760667401.044239521 +UH 0 32 l 1849 10563 4 +UH 0 34 l 2455 10286 4 +UH 0 31 l 3403 10593 4 +UH 0 49 h 2422 10813 4 +UH 0 50 h 3774 10777 4 +PQ +SE +ID 4230 +TI 1760667401.044308185 +UH 0 64 l 4055 0 5 +UH 0 64 h 3875 0 5 +BD GR Veto +PQ +SE +ID 4231 +TI 1760667401.044325828 +UH 0 14 l 2297 10353 4 +UH 0 5 h 2258 11263 4 +PQ +SE +ID 4232 +TI 1760667401.044367551 +UH 0 21 l 1664 5465 0 +UH 0 53 h 1644 3611 0 +PQ +SE +ID 4233 +TI 1760667401.044434785 +UH 0 18 l 4224 10613 4 +UH 0 29 l 1750 10519 4 +UH 0 30 l 2772 10741 4 +UH 0 7 h 1895 10827 4 +UH 0 8 h 3904 11083 4 +UH 0 16 h 2878 11246 4 +PQ +SE +ID 4234 +TI 1760667401.044516801 +UH 0 8 l 1748 4523 0 +UH 0 6 h 1645 5485 0 +PQ +SE +ID 4235 +TI 1760667401.044558048 +UH 0 12 l 2046 3184 0 +UH 0 13 l 1630 2851 0 +UH 0 14 l 1895 3297 0 +UH 0 17 l 3709 8842 4 +UH 0 18 l 1589 5201 0 +UH 0 8 h 2327 9735 4 +UH 0 12 h 1903 9327 4 +UH 0 18 h 3339 9413 4 +PQ +SE +ID 4236 +TI 1760667401.044661283 +UH 0 5 l 1674 10507 4 +UH 0 6 l 3300 10492 4 +UH 0 6 h 3325 10947 4 +PQ +SE +ID 4237 +TI 1760667401.044703483 +UH 0 55 l 3901 10663 4 +UH 0 56 l 2940 10906 4 +UH 0 57 l 1683 10688 4 +UH 0 50 h 1667 10391 4 +UH 0 51 h 5255 10425 4 +UH 0 52 h 1800 10578 4 +PQ +SE +ID 4238 +TI 1760667401.044760942 +UH 0 7 l 2120 10709 4 +UH 0 8 l 1786 5319 0 +UH 0 38 h 1757 4379 0 +UH 0 44 h 2110 10842 4 +PQ +SE +ID 4239 +TI 1760667401.044817924 +UH 0 7 l 3029 10944 4 +UH 0 8 l 1813 4702 0 +UH 0 39 h 1796 10484 4 +UH 0 42 h 3005 10245 4 +PQ +SE +ID 4240 +TI 1760667401.044874191 +UH 0 44 l 1587 4746 0 +UH 0 45 l 2027 10547 4 +UH 0 48 l 1819 10967 4 +UH 0 51 l 1879 10703 4 +UH 0 52 h 1877 10953 4 +UH 0 63 h 2503 10966 4 +PQ +SE +ID 4241 +TI 1760667401.044962406 +UH 0 62 l 2525 10857 4 +UH 0 55 h 2441 10299 4 +UH 0 56 h 1700 10627 4 +PQ +SE +ID 4242 +TI 1760667401.044982194 +UH 0 26 l 1710 10506 4 +UH 0 27 l 2782 9907 4 +UH 0 28 l 3505 10083 4 +UH 0 47 h 3501 10108 4 +UH 0 51 h 1823 10368 4 +UH 0 54 h 2386 10288 4 +PQ +SE +ID 4243 +TI 1760667401.045015573 +UH 0 60 l 2344 10142 4 +UH 0 22 h 2417 11189 4 +PQ +SE +ID 4244 +TI 1760667401.045033693 +UH 0 47 l 2011 10902 4 +UH 0 63 l 1525 2833 0 +UH 0 36 h 2118 11323 4 +PQ +SE +ID 4245 +TI 1760667401.045055389 +UH 0 40 l 1552 8556 4 +UH 0 41 l 4308 8916 4 +UH 0 42 l 1631 8815 4 +UH 0 43 l 2707 8853 4 +UH 0 20 h 1914 8875 4 +UH 0 21 h 5198 9007 4 +PQ +SE +ID 4246 +TI 1760667401.045081853 +UH 0 46 l 1796 10733 4 +UH 0 56 h 1895 11312 4 +PQ +SE +ID 4247 +TI 1760667401.045099020 +UH 0 57 l 1535 5220 0 +UH 0 58 l 3390 8543 4 +UH 0 54 h 3378 9412 4 +PQ +SE +ID 4248 +TI 1760667401.045119047 +UH 0 61 l 2147 10618 4 +UH 0 15 h 2074 11758 4 +PQ +SE +ID 4249 +TI 1760667401.045135498 +UH 0 64 l 3392 0 5 +UH 0 64 h 3467 0 5 +BD GR Veto +PQ +SE +ID 4250 +TI 1760667401.045144081 +UH 0 19 l 3140 10959 4 +UH 0 33 h 2810 10014 4 +UH 0 34 h 1697 10272 4 +PQ +SE +ID 4251 +TI 1760667401.045163154 +UH 0 42 l 2421 10859 4 +UH 0 34 h 2317 11002 4 +PQ +SE +ID 4252 +TI 1760667401.045181512 +UH 0 64 l 2275 0 5 +UH 0 64 h 2292 0 5 +BD GR Veto +PQ +SE +ID 4253 +TI 1760667401.045189380 +UH 0 43 l 1712 1651 0 +UH 0 47 l 1864 4311 4 +UH 0 56 l 2173 11187 4 +UH 0 61 l 4067 4484 4 +UH 0 41 h 1779 4622 4 +UH 0 42 h 1945 4186 4 +UH 0 46 h 2204 10462 4 +UH 0 47 h 1617 4241 4 +PQ +SE +ID 4254 +TI 1760667401.045240402 +UH 0 0 l 4180 8544 4 +UH 0 1 l 1640 9025 4 +UH 0 64 l 1637 0 5 +UH 0 51 h 2829 9109 4 +UH 0 55 h 2902 8782 4 +BD GR Veto +PQ +SE +ID 4255 +TI 1760667401.045292615 +UH 0 48 l 3390 9069 4 +UH 0 49 l 1514 9124 4 +UH 0 50 l 2721 8882 4 +UH 0 50 h 3532 8636 4 +UH 0 51 h 2673 8851 4 +PQ +SE +ID 4256 +TI 1760667401.045345544 +UH 0 64 l 1686 0 5 +UH 0 64 h 2366 0 5 +BD GR Veto +PQ +SE +ID 4257 +TI 1760667401.045365810 +UH 0 3 l 2610 10867 4 +UH 0 36 h 2621 10765 4 +PQ +SE +ID 4258 +TI 1760667401.045407295 +UH 0 19 l 3001 10996 4 +UH 0 22 l 2617 10820 4 +UH 0 6 h 2058 10958 4 +UH 0 7 h 2471 10894 4 +UH 0 15 h 2577 11063 4 +PQ +SE +ID 4259 +TI 1760667401.045469522 +UH 0 37 l 5014 10812 4 +UH 0 38 l 2132 10860 4 +UH 0 45 h 4651 10672 4 +UH 0 46 h 2344 10566 4 +PQ +SE +ID 4260 +TI 1760667401.045492649 +UH 0 37 l 2849 10672 4 +UH 0 16 h 2778 11298 4 +PQ +SE +ID 4261 +TI 1760667401.045509815 +UH 0 32 l 2776 10889 4 +UH 0 1 h 2761 11098 4 +PQ +SE +ID 4262 +TI 1760667401.045526504 +UH 0 39 l 1753 5081 0 +UH 0 12 h 1689 11850 4 +PQ +SE +ID 4263 +TI 1760667401.045549392 +UH 0 54 l 4331 10859 4 +UH 0 57 l 2743 10259 4 +UH 0 2 h 1670 10993 4 +UH 0 3 h 3323 10570 4 +UH 0 4 h 3826 11158 4 +PQ +SE +ID 4264 +TI 1760667401.045584201 +UH 0 33 l 2344 10272 4 +UH 0 39 l 2355 10677 4 +UH 0 41 l 2312 10970 4 +UH 0 43 l 2842 10452 4 +UH 0 44 l 1712 10376 4 +UH 0 37 h 3183 10969 4 +UH 0 12 h 2284 10883 4 +UH 0 17 h 2341 10734 4 +UH 0 19 h 1573 5016 0 +UH 0 20 h 2274 10708 4 +PQ +SE +ID 4265 +TI 1760667401.045691251 +UH 0 4 l 1835 9228 4 +UH 0 5 l 4435 8750 4 +UH 0 6 l 2561 9040 4 +UH 0 7 l 1595 9123 4 +UH 0 55 h 1687 8865 4 +UH 0 56 h 4867 9007 4 +UH 0 58 h 2292 8879 4 +PQ +SE +ID 4266 +TI 1760667401.045729875 +UH 0 39 l 1771 4652 0 +UH 0 22 h 1821 11231 4 +PQ +SE +ID 4267 +TI 1760667401.045747041 +UH 0 32 l 2017 10643 4 +UH 0 31 l 2294 10774 4 +UH 0 64 l 4453 0 5 +UH 0 0 h 2924 11182 4 +UH 0 64 h 4163 0 5 +BD GR Veto +PQ +SE +ID 4268 +TI 1760667401.045769691 +UH 0 3 l 3448 10816 4 +UH 0 4 l 2133 11074 4 +UH 0 7 h 4150 11011 4 +PQ +SE +ID 4269 +TI 1760667401.045793294 +UH 0 64 l 2173 0 5 +UH 0 64 h 2210 0 5 +BD GR Veto +PQ +SE +ID 4270 +TI 1760667401.045801639 +UH 0 64 l 4358 0 5 +UH 0 64 h 4165 0 5 +BD GR Veto +PQ +SE +ID 4271 +TI 1760667401.045809984 +UH 0 13 l 4283 8696 4 +UH 0 14 l 1647 5379 0 +UH 0 59 h 4199 8985 4 +PQ +SE +ID 4272 +TI 1760667401.045829772 +UH 0 6 l 1753 10577 4 +UH 0 7 l 3939 10363 4 +UH 0 1 h 4172 5493 0 +PQ +SE +ID 4273 +TI 1760667401.045849561 +UH 0 44 l 2920 10670 4 +UH 0 10 h 2957 11439 4 +PQ +SE +ID 4274 +TI 1760667401.045867919 +UH 0 34 l 1630 5272 0 +UH 0 35 l 2020 10832 4 +UH 0 36 l 1884 10634 4 +UH 0 15 h 2382 11101 4 +UH 0 16 h 1617 5278 0 +PQ +SE +ID 4275 +TI 1760667401.045893430 +UH 0 63 l 1771 10902 4 +UH 0 64 l 2462 0 5 +UH 0 35 h 1616 4436 0 +UH 0 36 h 1817 4273 0 +UH 0 64 h 2646 0 5 +BD GR Veto +PQ +SE +ID 4276 +TI 1760667401.045915842 +UH 0 39 l 1693 5189 0 +UH 0 40 l 2195 10719 4 +UH 0 6 h 2357 11151 4 +PQ +SE +ID 4277 +TI 1760667401.045935869 +UH 0 23 l 2478 10853 4 +UH 0 1 h 2398 11360 4 +PQ +SE +ID 4278 +TI 1760667401.045953750 +UH 0 24 l 1677 5346 0 +UH 0 25 l 4056 9095 4 +UH 0 26 l 1783 9383 4 +UH 0 50 h 4221 9003 4 +PQ +SE +ID 4279 +TI 1760667401.045976161 +UH 0 40 l 1849 11013 4 +UH 0 41 l 1729 11158 4 +UH 0 44 h 2178 10622 4 +PQ +SE +ID 4280 +TI 1760667401.045995950 +UH 0 38 l 3112 10562 4 +UH 0 39 l 2564 10187 4 +UH 0 50 l 2447 10108 4 +UH 0 25 h 2398 10757 4 +UH 0 26 h 1636 4889 0 +UH 0 28 h 2481 10597 4 +UH 0 29 h 1574 5591 0 +UH 0 30 h 2617 10653 4 +UH 0 31 h 2017 10038 4 +PQ +SE +ID 4281 +TI 1760667401.046037912 +UH 0 41 l 1493 8865 4 +UH 0 42 l 4468 8688 4 +UH 0 43 l 1514 8861 4 +UH 0 29 h 4306 9394 4 +PQ +SE +ID 4282 +TI 1760667401.046060323 +UH 0 28 l 3764 11134 4 +UH 0 60 h 3655 10379 4 +PQ +SE +ID 4283 +TI 1760667401.046077966 +UH 0 64 l 2943 0 5 +UH 0 64 h 2909 0 5 +BD GR Veto +PQ +SE +ID 4284 +TI 1760667401.046086072 +UH 0 28 l 2337 11005 4 +UH 0 42 h 2309 10976 4 +PQ +SE +ID 4285 +TI 1760667401.046103715 +UH 0 13 l 1604 8900 4 +UH 0 14 l 4429 8767 4 +UH 0 25 h 2053 9133 4 +UH 0 26 h 3676 9219 4 +UH 0 31 h 1569 1774 0 +PQ +SE +ID 4286 +TI 1760667401.046130895 +UH 0 5 l 2714 10870 4 +UH 0 47 h 2712 10945 4 +PQ +SE +ID 4287 +TI 1760667401.066369295 +UH 0 52 l 1661 5406 0 +UH 0 5 h 1641 4826 0 +PQ +SE +ID 4288 +TI 1760667401.066437959 +UH 0 11 l 2067 10954 4 +UH 0 44 h 1660 10701 4 +UH 0 45 h 1773 10947 4 +PQ +SE +ID 4289 +TI 1760667401.066459417 +UH 0 59 l 1680 4700 0 +UH 0 60 l 1885 10173 4 +UH 0 61 l 2435 10341 4 +UH 0 16 h 1691 5126 0 +UH 0 28 h 2782 10963 4 +PQ +SE +ID 4290 +TI 1760667401.066497087 +UH 0 5 l 2027 11037 4 +UH 0 8 l 2613 10879 4 +UH 0 18 l 1683 4759 0 +UH 0 10 h 2388 11495 4 +UH 0 11 h 1712 11416 4 +UH 0 13 h 1961 11193 4 +UH 0 24 h 1603 4750 0 +UH 0 25 h 1534 4984 0 +PQ +SE +ID 4291 +TI 1760667401.066551208 +UH 0 58 l 2011 10588 4 +UH 0 10 h 1866 11340 4 +UH 0 11 h 1752 5027 0 +PQ +SE +ID 4292 +TI 1760667401.066571474 +UH 0 8 l 2413 10412 4 +UH 0 29 h 2317 11343 4 +PQ +SE +ID 4293 +TI 1760667401.066589355 +UH 0 64 l 1977 0 5 +UH 0 34 h 1904 11135 4 +BD GR Veto +PQ +SE +ID 4294 +TI 1760667401.066602945 +UH 0 5 l 2750 9717 4 +UH 0 6 l 1592 5397 0 +UH 0 5 h 1786 9748 4 +UH 0 7 h 2466 9889 4 +UH 0 8 h 1614 4587 0 +PQ +SE +ID 4295 +TI 1760667401.066630601 +UH 0 40 l 1861 10922 4 +UH 0 43 l 1559 4767 0 +UH 0 44 l 1935 10821 4 +UH 0 33 h 1894 10414 4 +UH 0 31 h 2054 10741 4 +PQ +SE +ID 4296 +TI 1760667401.066661596 +UH 0 26 l 2524 11339 4 +UH 0 41 h 1671 4138 0 +UH 0 42 h 2283 10602 4 +UH 0 43 h 1590 10926 4 +PQ +SE +ID 4297 +TI 1760667401.066682338 +UH 0 32 l 2221 8986 4 +UH 0 33 l 2652 8465 4 +UH 0 34 l 3858 8530 4 +UH 0 35 l 1556 8970 4 +UH 0 17 h 2098 9421 4 +UH 0 20 h 4947 9205 4 +PQ +SE +ID 4298 +TI 1760667401.066711187 +UH 0 14 l 1781 4906 0 +UH 0 26 h 1737 11582 4 +PQ +SE +ID 4299 +TI 1760667401.066729068 +UH 0 4 l 1686 8925 4 +UH 0 5 l 4064 8600 4 +UH 0 6 l 1589 5372 0 +UH 0 20 h 4042 9232 4 +PQ +SE +ID 4300 +TI 1760667401.066751003 +UH 0 1 l 4221 9208 4 +UH 0 2 l 1674 9146 4 +UH 0 36 h 4271 9390 4 +PQ +SE +ID 4301 +TI 1760667401.066770315 +UH 0 50 l 2401 10757 4 +UH 0 53 l 2070 10417 4 +UH 0 61 l 2006 10382 4 +UH 0 62 l 2046 10728 4 +UH 0 64 l 3325 0 5 +UH 0 9 h 2412 10919 4 +UH 0 17 h 1526 4575 0 +UH 0 18 h 2417 10520 4 +UH 0 25 h 1989 11059 4 +UH 0 64 h 3306 0 5 +BD GR Veto +PQ +SE +ID 4302 +TI 1760667401.066825151 +UH 0 55 l 3286 10670 4 +UH 0 1 h 3388 11150 4 +PQ +SE +ID 4303 +TI 1760667401.066844463 +UH 0 62 l 1717 5287 0 +UH 0 63 l 2076 10622 4 +UH 0 36 h 2334 11042 4 +PQ +SE +ID 4304 +TI 1760667401.066861391 +UH 0 51 l 1950 10792 4 +UH 0 52 l 1604 5389 0 +UH 0 59 l 2965 10592 4 +UH 0 33 h 1725 10425 4 +UH 0 34 h 2653 10521 4 +UH 0 20 h 1955 10925 4 +PQ +SE +ID 4305 +TI 1760667401.066897630 +UH 0 21 l 1841 10893 4 +UH 0 61 h 1807 11341 4 +PQ +SE +ID 4306 +TI 1760667401.066915273 +UH 0 3 l 1962 8669 4 +UH 0 12 l 1721 8365 4 +UH 0 13 l 5494 8610 4 +UH 0 14 l 1664 8739 4 +UH 0 32 h 4199 9142 4 +UH 0 6 h 1553 1247 0 +UH 0 7 h 1963 9322 4 +UH 0 31 h 2693 9016 4 +PQ +SE +ID 4307 +TI 1760667401.066953897 +UH 0 64 l 3242 0 5 +UH 0 64 h 3210 0 5 +BD GR Veto +PQ +SE +ID 4308 +TI 1760667401.066962003 +UH 0 15 l 2220 10886 4 +UH 0 16 l 1821 11170 4 +UH 0 31 l 1612 2288 0 +UH 0 62 h 2117 11117 4 +UH 0 63 h 1934 11069 4 +PQ +SE +ID 4309 +TI 1760667401.066987752 +UH 0 64 l 2167 0 5 +UH 0 64 h 2149 0 5 +BD GR Veto +PQ +SE +ID 4310 +TI 1760667401.066995382 +UH 0 29 l 3416 10874 4 +UH 0 32 h 3252 10761 4 +PQ +SE +ID 4311 +TI 1760667401.067012786 +UH 0 26 l 4187 11071 4 +UH 0 3 h 4193 10898 4 +PQ +SE +ID 4312 +TI 1760667401.067029714 +UH 0 45 l 1678 5105 0 +UH 0 29 h 1713 5586 0 +PQ +SE +ID 4313 +TI 1760667401.067046880 +UH 0 45 l 2741 10683 4 +UH 0 27 h 2775 10803 4 +PQ +SE +ID 4314 +TI 1760667401.067063331 +UH 0 64 l 2402 0 5 +UH 0 64 h 2075 0 5 +BD GR Veto +PQ +SE +ID 4315 +TI 1760667401.067070722 +UH 0 35 l 2002 10883 4 +UH 0 36 l 3868 10442 4 +UH 0 5 l 1691 4222 0 +UH 0 9 h 2034 11120 4 +UH 0 11 h 1644 11115 4 +UH 0 12 h 3740 10897 4 +UH 0 24 h 1597 4013 0 +PQ +SE +ID 4316 +TI 1760667401.067112445 +UH 0 9 l 1853 4459 0 +UH 0 12 l 2235 10039 4 +UH 0 2 h 1673 5415 0 +UH 0 3 h 2375 11050 4 +PQ +SE +ID 4317 +TI 1760667401.067140102 +UH 0 43 l 1625 5399 0 +UH 0 15 h 1747 12079 4 +PQ +SE +ID 4318 +TI 1760667401.067157506 +UH 0 36 l 2582 10344 4 +UH 0 37 l 1768 5263 0 +UH 0 38 l 4298 10796 4 +UH 0 62 h 5628 10245 4 +PQ +SE +ID 4319 +TI 1760667401.067179441 +UH 0 53 l 2980 10883 4 +UH 0 17 h 2413 11081 4 +UH 0 19 h 1551 4331 0 +UH 0 20 h 1949 10738 4 +PQ +SE +ID 4320 +TI 1760667401.067203760 +UH 0 64 l 1650 0 5 +UH 0 64 h 2003 0 5 +BD GR Veto +PQ +SE +ID 4321 +TI 1760667401.067212104 +UH 0 12 l 1740 4236 0 +UH 0 13 l 2005 10639 4 +UH 0 21 h 2071 11445 4 +PQ +SE +ID 4322 +TI 1760667401.067232608 +UH 0 27 l 2203 10872 4 +UH 0 29 l 1663 4443 0 +UH 0 30 l 1637 3759 0 +UH 0 34 h 2051 10228 4 +UH 0 36 h 1744 4650 0 +PQ +SE +ID 4323 +TI 1760667401.067261695 +UH 0 14 l 1709 4280 0 +UH 0 23 h 1635 5396 0 +PQ +SE +ID 4324 +TI 1760667401.067278385 +UH 0 62 l 2073 10888 4 +UH 0 12 h 1986 11400 4 +PQ +SE +ID 4325 +TI 1760667401.067295074 +UH 0 56 l 2002 11012 4 +UH 0 64 l 1689 0 5 +UH 0 5 h 2035 11165 4 +UH 0 64 h 1708 0 5 +BD GR Veto +PQ +SE +ID 4326 +TI 1760667401.067317485 +UH 0 58 l 1557 8208 4 +UH 0 59 l 2964 8287 4 +UH 0 60 l 4175 8023 4 +UH 0 61 l 1682 8374 4 +UH 0 37 h 5653 8987 4 +PQ +SE +ID 4327 +TI 1760667401.067341566 +UH 0 44 l 1514 5300 0 +UH 0 31 l 2785 10582 4 +UH 0 50 h 2843 9951 4 +PQ +SE +ID 4328 +TI 1760667401.067366600 +UH 0 64 l 3104 0 5 +UH 0 64 h 3099 0 5 +BD GR Veto +PQ +SE +ID 4329 +TI 1760667401.067374706 +UH 0 33 l 1933 10262 4 +UH 0 34 l 1620 4668 0 +UH 0 29 l 2416 10951 4 +UH 0 54 h 1554 4723 0 +UH 0 55 h 2085 10676 4 +UH 0 57 h 2336 10782 4 +PQ +SE +ID 4330 +TI 1760667401.067407608 +UH 0 49 l 2031 10905 4 +UH 0 50 l 3481 10689 4 +UH 0 52 l 1972 10692 4 +UH 0 59 l 2689 10245 4 +UH 0 58 h 2691 10514 4 +UH 0 59 h 3961 10361 4 +UH 0 61 h 1797 10617 4 +UH 0 62 h 1729 4425 0 +PQ +SE +ID 4331 +TI 1760667401.067447900 +UH 0 32 l 1812 10712 4 +UH 0 33 l 2999 10250 4 +UH 0 14 l 3379 10747 4 +UH 0 15 l 1805 10763 4 +UH 0 41 h 1669 10794 4 +UH 0 42 h 3426 10305 4 +UH 0 55 h 1954 10557 4 +UH 0 56 h 2932 10805 4 +PQ +SE +ID 4332 +TI 1760667401.067488670 +UH 0 64 l 1651 0 5 +UH 0 64 h 1724 0 5 +BD GR Veto +PQ +SE +ID 4333 +TI 1760667401.067497253 +UH 0 41 l 1704 5245 0 +UH 0 44 l 2532 10750 4 +UH 0 59 h 2062 10842 4 +UH 0 60 h 2183 10485 4 +UH 0 61 h 1619 4976 0 +PQ +SE +ID 4334 +TI 1760667401.067525386 +UH 0 39 l 1651 4539 0 +UH 0 43 l 2362 11081 4 +UH 0 50 h 2595 10578 4 +PQ +SE +ID 4335 +TI 1760667401.067549943 +UH 0 40 l 1841 11145 4 +UH 0 49 h 1606 4098 0 +UH 0 50 h 1849 10501 4 +PQ +SE +ID 4336 +TI 1760667401.067569732 +UH 0 63 l 4152 10085 4 +UH 0 64 l 1800 0 5 +UH 0 49 h 4415 10184 4 +BD GR Veto +PQ +SE +ID 4337 +TI 1760667401.067587375 +UH 0 64 l 2586 0 5 +UH 0 0 h 2308 11188 4 +UH 0 64 h 1939 0 5 +BD GR Veto +PQ +SE +ID 4338 +TI 1760667401.067600011 +UH 0 33 l 2286 8851 4 +UH 0 24 l 1797 3091 0 +UH 0 25 l 2069 8987 4 +UH 0 29 l 1677 9104 4 +UH 0 30 l 4218 9574 4 +UH 0 35 h 4203 9235 4 +UH 0 38 h 2170 9217 4 +UH 0 39 h 1756 2625 0 +UH 0 42 h 2178 9056 4 +PQ +SE +ID 4339 +TI 1760667401.067653894 +UH 0 26 h 1589 5755 0 +PQ +SE +ID 4340 +TI 1760667401.067664146 +UH 0 10 l 3759 10674 4 +UH 0 13 l 1619 4587 0 +UH 0 24 l 2103 10607 4 +UH 0 25 l 2985 10728 4 +UH 0 13 h 1770 11327 4 +UH 0 14 h 3109 11349 4 +UH 0 23 h 1603 4816 0 +UH 0 26 h 3611 11281 4 +PQ +SE +ID 4341 +TI 1760667401.067714929 +UH 0 27 l 1919 10850 4 +UH 0 51 h 1778 10749 4 +PQ +SE +ID 4342 +TI 1760667401.067733049 +UH 0 32 l 1661 10484 4 +UH 0 33 l 3351 10048 4 +UH 0 45 h 2222 10131 4 +UH 0 46 h 2648 9946 4 +PQ +SE +ID 4343 +TI 1760667401.067754745 +UH 0 25 l 1792 5490 0 +UH 0 59 h 1690 4793 0 +PQ +SE +ID 4344 +TI 1760667401.067772150 +UH 0 51 l 1636 3407 0 +UH 0 31 l 3358 10731 4 +UH 0 21 h 1608 11378 4 +UH 0 22 h 3376 10946 4 +PQ +SE +ID 4345 +TI 1760667401.067798852 +UH 0 27 l 2741 10528 4 +UH 0 25 h 1654 11341 4 +UH 0 26 h 2489 11411 4 +PQ +SE +ID 4346 +TI 1760667401.067818641 +UH 0 61 l 1789 5251 0 +UH 0 8 l 3444 4595 4 +UH 0 11 l 2390 4505 4 +UH 0 12 l 2120 4550 4 +UH 0 13 l 1786 4788 4 +UH 0 15 l 1923 4506 4 +UH 0 16 l 2445 4440 4 +UH 0 39 h 1781 4462 0 +UH 0 17 h 3144 4721 4 +UH 0 18 h 1714 4755 4 +UH 0 22 h 2307 4503 4 +UH 0 24 h 2153 4425 4 +UH 0 27 h 1754 4890 4 +UH 0 28 h 2617 4608 4 +PQ +SE +ID 4347 +TI 1760667401.067892789 +UH 0 59 l 1957 10520 4 +UH 0 60 l 2246 10181 4 +UH 0 61 l 2061 10422 4 +UH 0 30 h 2679 11379 4 +UH 0 31 h 1960 10751 4 +PQ +SE +ID 4348 +TI 1760667401.067917108 +UH 0 61 l 2536 10715 4 +UH 0 34 h 2369 10612 4 +PQ +SE +ID 4349 +TI 1760667401.067934513 +UH 0 54 l 2767 10988 4 +UH 0 9 h 2764 11253 4 +PQ +SE +ID 4350 +TI 1760667401.067951917 +UH 0 8 l 2954 10698 4 +UH 0 9 l 2119 10785 4 +UH 0 13 h 3390 11218 4 +PQ +SE +ID 4351 +TI 1760667401.092402219 +UH 0 14 l 4262 10542 4 +UH 0 15 l 1827 10702 4 +UH 0 55 h 4500 10268 4 +UH 0 56 h 1638 10676 4 +PQ +SE +ID 4352 +TI 1760667401.092455148 +UH 0 2 l 3601 10423 4 +UH 0 8 l 2078 10773 4 +UH 0 16 l 2151 10728 4 +UH 0 35 h 1690 3723 0 +UH 0 36 h 1914 10430 4 +UH 0 8 h 3539 11525 4 +UH 0 24 h 2113 10773 4 +PQ +SE +ID 4353 +TI 1760667401.092518806 +UH 0 64 l 2814 0 5 +UH 0 12 h 2488 11263 4 +UH 0 64 h 1867 0 5 +BD GR Veto +PQ +SE +ID 4354 +TI 1760667401.092556953 +UH 0 18 l 2090 10690 4 +UH 0 55 h 2200 11055 4 +PQ +SE +ID 4355 +TI 1760667401.092595338 +UH 0 10 l 3217 10896 4 +UH 0 12 l 2390 10623 4 +UH 0 44 h 1626 10674 4 +UH 0 45 h 2970 10831 4 +UH 0 48 h 1793 10593 4 +UH 0 49 h 2010 10549 4 +PQ +SE +ID 4356 +TI 1760667401.092685222 +UH 0 21 l 2199 9691 4 +UH 0 22 l 1628 9531 4 +UH 0 23 l 2987 9411 4 +UH 0 48 h 2954 9746 4 +UH 0 49 h 2184 9706 4 +PQ +SE +ID 4357 +TI 1760667401.092739582 +UH 0 12 l 1792 8995 4 +UH 0 13 l 3927 9313 4 +UH 0 14 l 2192 9368 4 +UH 0 15 l 2582 9306 4 +UH 0 29 l 1730 1532 0 +UH 0 30 l 1681 1570 0 +UH 0 31 l 1743 1595 0 +UH 0 19 h 1888 9711 4 +UH 0 20 h 5175 9358 4 +UH 0 21 h 1597 9704 4 +PQ +SE +ID 4358 +TI 1760667401.092812299 +UH 0 48 l 2108 11096 4 +UH 0 64 l 2578 0 5 +UH 0 4 h 2219 11230 4 +UH 0 64 h 2564 0 5 +BD GR Veto +PQ +SE +ID 4359 +TI 1760667401.092839717 +UH 0 2 l 2578 10945 4 +UH 0 8 l 2050 10657 4 +UH 0 9 l 1734 4230 0 +UH 0 40 h 1774 10825 4 +UH 0 41 h 2516 10836 4 +UH 0 42 h 1659 10588 4 +UH 0 43 h 1830 10800 4 +PQ +SE +ID 4360 +TI 1760667401.092898607 +UH 0 23 l 4964 10759 4 +UH 0 59 h 1943 10690 4 +UH 0 60 h 4370 10321 4 +PQ +SE +ID 4361 +TI 1760667401.092936277 +UH 0 64 l 1914 0 5 +UH 0 64 h 2006 0 5 +BD GR Veto +PQ +SE +ID 4362 +TI 1760667401.092946290 +UH 0 32 l 2371 10885 4 +UH 0 6 h 2308 11047 4 +PQ +SE +ID 4363 +TI 1760667401.092965602 +UH 0 44 l 2966 10243 4 +UH 0 45 l 2165 10249 4 +UH 0 0 h 3703 11173 4 +PQ +SE +ID 4364 +TI 1760667401.092984914 +UH 0 22 l 1722 4333 0 +UH 0 24 h 1683 11494 4 +PQ +SE +ID 4365 +TI 1760667401.093003749 +UH 0 34 l 3552 10597 4 +UH 0 36 l 2300 10290 4 +UH 0 36 h 3522 10545 4 +UH 0 38 h 2150 10815 4 +UH 0 39 h 1773 10583 4 +PQ +SE +ID 4366 +TI 1760667401.093056201 +UH 0 64 l 5693 0 5 +UH 0 64 h 5411 0 5 +BD GR Veto +PQ +SE +ID 4367 +TI 1760667401.093065261 +UH 0 64 l 2784 0 5 +UH 0 64 h 2784 0 5 +BD GR Veto +PQ +SE +ID 4368 +TI 1760667401.093072891 +UH 0 3 l 3010 11091 4 +UH 0 4 l 2343 11003 4 +UH 0 5 l 3435 11062 4 +UH 0 38 h 3468 11197 4 +UH 0 39 h 1893 10976 4 +UH 0 40 h 1927 11003 4 +UH 0 41 h 3118 11187 4 +PQ +SE +ID 4369 +TI 1760667401.093111515 +UH 0 64 l 1903 0 5 +UH 0 64 h 1946 0 5 +BD GR Veto +PQ +SE +ID 4370 +TI 1760667401.093120336 +UH 0 62 l 1662 9851 4 +UH 0 63 l 3991 9571 4 +UH 0 30 h 4022 10085 4 +PQ +SE +ID 4371 +TI 1760667401.093138694 +UH 0 39 l 2353 10756 4 +UH 0 44 l 2682 10758 4 +UH 0 60 h 2055 10483 4 +UH 0 61 h 3008 10888 4 +PQ +SE +ID 4372 +TI 1760667401.093166828 +UH 0 56 l 1835 11331 4 +UH 0 64 l 1652 0 5 +UH 0 62 h 1877 10523 4 +UH 0 64 h 1741 0 5 +BD GR Veto +PQ +SE +ID 4373 +TI 1760667401.093191146 +UH 0 4 l 1821 4925 0 +UH 0 5 l 2064 10522 4 +UH 0 12 l 3288 10355 4 +UH 0 13 l 2998 10825 4 +UH 0 14 l 1863 10939 4 +UH 0 37 h 2280 11270 4 +UH 0 42 h 3049 10610 4 +UH 0 43 h 2821 10817 4 +UH 0 29 h 2021 11229 4 +PQ +SE +ID 4374 +TI 1760667401.093240022 +UH 0 37 l 3979 10812 4 +UH 0 38 l 1621 10861 4 +UH 0 38 h 3756 10505 4 +UH 0 39 h 1930 10306 4 +PQ +SE +ID 4375 +TI 1760667401.093263864 +UH 0 51 l 3286 10860 4 +UH 0 18 h 3256 11054 4 +PQ +SE +ID 4376 +TI 1760667401.093281984 +UH 0 34 l 1739 5300 0 +UH 0 35 l 1604 5024 0 +UH 0 36 l 2107 10495 4 +UH 0 15 h 2294 11008 4 +UH 0 16 h 1641 11057 4 +PQ +SE +ID 4377 +TI 1760667401.093306779 +UH 0 35 l 1983 10680 4 +UH 0 13 h 1626 4367 0 +UH 0 14 h 1917 11630 4 +PQ +SE +ID 4378 +TI 1760667401.093327760 +UH 0 43 l 1714 5197 0 +UH 0 44 l 1508 4678 0 +UH 0 45 l 1898 10729 4 +UH 0 46 l 1790 10686 4 +UH 0 64 l 2226 0 5 +UH 0 47 h 1886 10699 4 +UH 0 49 h 2265 10796 4 +UH 0 64 h 2609 0 5 +BD GR Veto +PQ +SE +ID 4379 +TI 1760667401.093361616 +UH 0 40 l 1787 9477 4 +UH 0 41 l 3521 9556 4 +UH 0 1 h 3959 9595 4 +UH 0 2 h 1615 9778 4 +PQ +SE +ID 4380 +TI 1760667401.093384742 +UH 0 46 l 2029 10863 4 +UH 0 10 h 2100 11684 4 +PQ +SE +ID 4381 +TI 1760667401.093402385 +UH 0 64 h 1671 0 5 +BD GR Veto +PQ +SE +ID 4382 +TI 1760667401.093408107 +UH 0 9 l 1700 5021 0 +UH 0 10 l 1911 10914 4 +UH 0 37 h 2021 11569 4 +PQ +SE +ID 4383 +TI 1760667401.093428373 +UH 0 64 l 2012 0 5 +UH 0 64 h 2079 0 5 +BD GR Veto +PQ +SE +ID 4384 +TI 1760667401.093436241 +UH 0 45 l 2795 10688 4 +UH 0 41 h 2030 11351 4 +UH 0 42 h 2364 10933 4 +PQ +SE +ID 4385 +TI 1760667401.093457698 +UH 0 41 l 1905 11153 4 +UH 0 6 h 1973 11473 4 +PQ +SE +ID 4386 +TI 1760667401.093476533 +UH 0 64 l 1654 0 5 +UH 0 64 h 1734 0 5 +BD GR Veto +PQ +SE +ID 4387 +TI 1760667401.093485116 +UH 0 51 l 1722 5456 0 +PQ +SE +ID 4388 +TI 1760667401.093495607 +UH 0 29 l 2120 10961 4 +UH 0 41 h 2084 11377 4 +PQ +SE +ID 4389 +TI 1760667401.093513488 +UH 0 2 l 2932 10720 4 +UH 0 44 h 2870 10927 4 +PQ +SE +ID 4390 +TI 1760667401.093531131 +UH 0 16 l 2804 10684 4 +UH 0 17 l 1917 10832 4 +UH 0 18 l 2075 10713 4 +UH 0 18 h 1839 11112 4 +UH 0 19 h 2501 11324 4 +UH 0 24 h 2041 10826 4 +UH 0 25 h 1872 11058 4 +PQ +SE +ID 4391 +TI 1760667401.093565702 +UH 0 32 l 1731 3414 0 +UH 0 33 l 2067 8942 4 +UH 0 36 l 1780 3696 0 +UH 0 37 l 1611 3457 0 +UH 0 43 l 1516 3298 0 +UH 0 44 l 1597 3255 0 +UH 0 46 l 1498 9017 4 +UH 0 47 l 3628 8979 4 +UH 0 48 l 1522 9224 4 +UH 0 59 l 1640 1522 0 +UH 0 60 l 1653 1354 0 +UH 0 61 l 1738 1534 0 +UH 0 62 l 1722 1549 0 +UH 0 63 l 1709 1360 0 +UH 0 31 l 1917 9588 4 +UH 0 32 h 1889 9447 4 +UH 0 33 h 3205 9059 4 +UH 0 21 h 1809 9456 4 +UH 0 23 h 1882 9227 4 +UH 0 24 h 2212 9332 4 +UH 0 28 h 1647 3113 0 +UH 0 29 h 1667 3635 0 +PQ +SE +ID 4392 +TI 1760667401.093658208 +UH 0 40 l 2031 10692 4 +UH 0 46 l 3876 10646 4 +UH 0 34 h 2020 10240 4 +UH 0 35 h 2747 10384 4 +UH 0 36 h 2791 10449 4 +PQ +SE +ID 4393 +TI 1760667401.093688011 +UH 0 8 l 1658 4919 0 +UH 0 9 l 2306 10602 4 +UH 0 48 h 2343 11052 4 +PQ +SE +ID 4394 +TI 1760667401.093708038 +UH 0 32 l 1665 5287 0 +UH 0 33 l 1593 4646 0 +UH 0 36 h 1679 4154 0 +PQ +SE +ID 4395 +TI 1760667401.093727350 +UH 0 0 l 1649 5195 0 +UH 0 64 l 3898 0 5 +UH 0 15 h 2269 10071 4 +UH 0 64 h 4738 0 5 +BD GR Veto +PQ +SE +ID 4396 +TI 1760667401.093746185 +UH 0 51 l 2222 10991 4 +UH 0 55 h 1920 10903 4 +UH 0 56 h 1932 11177 4 +PQ +SE +ID 4397 +TI 1760667401.093766450 +UH 0 24 l 1765 5099 0 +UH 0 25 l 2228 11276 4 +UH 0 35 h 2113 11146 4 +UH 0 36 h 1776 4912 0 +PQ +SE +ID 4398 +TI 1760667401.093788862 +UH 0 41 l 2920 10904 4 +UH 0 10 h 2974 11301 4 +PQ +SE +ID 4399 +TI 1760667401.093808889 +UH 0 50 l 2339 10465 4 +UH 0 53 l 1766 4928 0 +UH 0 12 h 2302 11227 4 +UH 0 14 h 1734 11340 4 +PQ +SE +ID 4400 +TI 1760667401.093838453 +UH 0 58 l 1553 3815 0 +UH 0 59 l 2352 10597 4 +UH 0 9 h 1821 11551 4 +UH 0 11 h 2185 11644 4 +PQ +SE +ID 4401 +TI 1760667401.093863725 +UH 0 64 l 1986 0 5 +UH 0 64 h 2022 0 5 +BD GR Veto +PQ +SE +ID 4402 +TI 1760667401.093872547 +UH 0 47 l 2106 10621 4 +UH 0 52 l 2848 10786 4 +UH 0 63 l 1525 2797 0 +UH 0 14 h 2798 11282 4 +UH 0 20 h 2180 11152 4 +PQ +SE +ID 4403 +TI 1760667401.093909502 +UH 0 40 l 1524 10816 4 +UH 0 41 l 2641 10851 4 +UH 0 8 h 2802 11257 4 +PQ +SE +ID 4404 +TI 1760667401.093930006 +UH 0 40 l 1552 5290 0 +UH 0 33 h 1595 4617 0 +PQ +SE +ID 4405 +TI 1760667401.093948125 +UH 0 57 l 4187 10749 4 +UH 0 57 h 2449 10614 4 +UH 0 58 h 3165 10244 4 +PQ +SE +ID 4406 +TI 1760667401.093968868 +UH 0 13 l 1956 10767 4 +UH 0 14 l 3386 10635 4 +UH 0 19 h 3648 11263 4 +PQ +SE +ID 4407 +TI 1760667401.093988895 +UH 0 22 l 4036 10760 4 +UH 0 26 l 3174 11041 4 +UH 0 9 h 3118 10919 4 +UH 0 24 h 1835 10670 4 +UH 0 25 h 3577 10812 4 +PQ +SE +ID 4408 +TI 1760667401.094023942 +UH 0 42 l 1611 8645 4 +UH 0 43 l 4039 8566 4 +UH 0 44 l 1512 8514 4 +UH 0 51 l 2287 8475 4 +UH 0 52 l 1630 2698 0 +UH 0 16 h 2290 9328 4 +UH 0 26 h 3998 9338 4 +PQ +SE +ID 4409 +TI 1760667401.094063043 +UH 0 21 h 1577 5583 0 +PQ +SE +ID 4410 +TI 1760667401.094073534 +UH 0 20 l 2050 10901 4 +UH 0 46 h 1863 10787 4 +UH 0 47 h 1697 3683 0 +PQ +SE +ID 4411 +TI 1760667401.094093084 +UH 0 41 l 2108 11057 4 +UH 0 45 h 2161 11232 4 +PQ +SE +ID 4412 +TI 1760667401.094110727 +UH 0 64 l 2030 0 5 +UH 0 64 h 2066 0 5 +BD GR Veto +PQ +SE +ID 4413 +TI 1760667401.094118356 +UH 0 64 l 2202 0 5 +UH 0 64 h 2241 0 5 +BD GR Veto +PQ +SE +ID 4414 +TI 1760667401.094125986 +UH 0 48 l 1674 5135 0 +UH 0 53 h 1730 11388 4 +PQ +SE +ID 4415 +TI 1760667401.112247705 +UH 0 64 l 1882 0 5 +UH 0 42 h 1930 11094 4 +BD GR Veto +PQ +SE +ID 4416 +TI 1760667401.112297058 +UH 0 58 l 1762 4841 0 +UH 0 60 l 1883 10552 4 +UH 0 61 l 2922 10642 4 +UH 0 25 h 2609 11248 4 +UH 0 26 h 2283 11335 4 +PQ +SE +ID 4417 +TI 1760667401.112334489 +UH 0 40 l 2815 10498 4 +UH 0 9 h 2868 11233 4 +PQ +SE +ID 4418 +TI 1760667401.112353801 +UH 0 2 l 2684 10830 4 +UH 0 64 l 2622 0 5 +UH 0 32 h 2530 11034 4 +UH 0 31 h 1582 11025 4 +UH 0 64 h 2598 0 5 +BD GR Veto +PQ +SE +ID 4419 +TI 1760667401.112379789 +UH 0 14 l 1684 4548 0 +UH 0 15 l 2153 10692 4 +UH 0 60 h 2147 10877 4 +PQ +SE +ID 4420 +TI 1760667401.112401008 +UH 0 1 l 1653 5494 0 +UH 0 26 h 1602 5451 0 +PQ +SE +ID 4421 +TI 1760667401.112419605 +UH 0 3 l 1655 5188 0 +UH 0 10 h 1636 5080 0 +PQ +SE +ID 4422 +TI 1760667401.112437725 +UH 0 25 l 3051 10985 4 +UH 0 36 h 3006 11111 4 +PQ +SE +ID 4423 +TI 1760667401.112455129 +UH 0 36 l 1696 4338 0 +UH 0 41 l 1514 5265 0 +UH 0 33 h 1571 3218 0 +UH 0 26 h 1693 5453 0 +UH 0 27 h 1610 5583 0 +PQ +SE +ID 4424 +TI 1760667401.112490892 +UH 0 13 l 3942 10767 4 +UH 0 27 l 1766 4693 0 +UH 0 50 h 1812 10775 4 +UH 0 62 h 2317 10900 4 +UH 0 63 h 3195 10883 4 +PQ +SE +ID 4425 +TI 1760667401.112528324 +UH 0 45 l 1795 10902 4 +UH 0 56 h 1840 11521 4 +PQ +SE +ID 4426 +TI 1760667401.112547636 +UH 0 35 l 2629 10803 4 +UH 0 36 l 1824 10577 4 +UH 0 54 h 1569 10877 4 +UH 0 55 h 2980 10429 4 +PQ +SE +ID 4427 +TI 1760667401.112570285 +UH 0 42 l 1650 8843 4 +UH 0 43 l 4251 8758 4 +UH 0 44 l 1516 8679 4 +UH 0 53 h 1717 9118 4 +UH 0 54 h 4126 9174 4 +PQ +SE +ID 4428 +TI 1760667401.112595558 +UH 0 45 l 1537 5275 0 +UH 0 46 l 2711 8844 4 +UH 0 47 l 1810 9039 4 +UH 0 34 h 1795 9013 4 +UH 0 36 h 2838 9154 4 +PQ +SE +ID 4429 +TI 1760667401.112622261 +UH 0 7 l 2678 10362 4 +UH 0 8 l 1830 10402 4 +UH 0 10 h 2881 11454 4 +PQ +SE +ID 4430 +TI 1760667401.112642288 +UH 0 64 l 1726 0 5 +UH 0 64 h 1786 0 5 +BD GR Veto +PQ +SE +ID 4431 +TI 1760667401.112650632 +UH 0 21 l 2950 11089 4 +UH 0 40 h 1707 10571 4 +UH 0 41 h 2784 10752 4 +PQ +SE +ID 4432 +TI 1760667401.112670898 +UH 0 64 l 1866 0 5 +UH 0 64 h 1930 0 5 +BD GR Veto +PQ +SE +ID 4433 +TI 1760667401.112679004 +UH 0 19 l 1735 5412 0 +UH 0 41 h 1703 4860 0 +PQ +SE +ID 4434 +TI 1760667401.112696886 +UH 0 51 l 2425 10991 4 +UH 0 41 h 1612 4820 0 +UH 0 42 h 2329 10319 4 +PQ +SE +ID 4435 +TI 1760667401.112719058 +UH 0 48 l 1527 5433 0 +PQ +SE +ID 4436 +TI 1760667401.112730026 +UH 0 39 l 2337 10638 4 +UH 0 40 h 2300 11043 4 +PQ +SE +ID 4437 +TI 1760667401.112747430 +UH 0 41 l 4412 10606 4 +UH 0 4 h 1671 10658 4 +UH 0 5 h 4316 10388 4 +PQ +SE +ID 4438 +TI 1760667401.112766981 +UH 0 64 l 1946 0 5 +UH 0 64 h 2017 0 5 +BD GR Veto +PQ +SE +ID 4439 +TI 1760667401.112775325 +UH 0 61 l 2591 10660 4 +UH 0 42 h 2554 10756 4 +PQ +SE +ID 4440 +TI 1760667401.112794160 +UH 0 64 h 1740 0 5 +BD GR Veto +PQ +SE +ID 4441 +TI 1760667401.112799882 +UH 0 38 l 1751 10818 4 +UH 0 39 l 1893 10785 4 +UH 0 40 l 1672 5279 0 +UH 0 43 l 1616 4734 0 +UH 0 44 l 1888 10509 4 +UH 0 34 h 1634 10397 4 +UH 0 35 h 2125 10519 4 +UH 0 47 h 2176 10586 4 +PQ +SE +ID 4442 +TI 1760667401.112846851 +UH 0 39 l 1918 10836 4 +UH 0 40 l 1985 10871 4 +UH 0 18 h 1831 11198 4 +UH 0 19 h 2073 11390 4 +PQ +SE +ID 4443 +TI 1760667401.112869262 +UH 0 27 l 2658 10805 4 +UH 0 37 h 1850 11407 4 +UH 0 38 h 2085 11253 4 +UH 0 39 h 1869 10907 4 +PQ +SE +ID 4444 +TI 1760667401.112891912 +UH 0 61 l 1801 4896 0 +UH 0 64 l 2613 0 5 +UH 0 41 h 1721 4435 0 +UH 0 64 h 2626 0 5 +BD GR Veto +PQ +SE +ID 4445 +TI 1760667401.112914085 +UH 0 13 l 3941 10907 4 +UH 0 6 h 1560 10978 4 +UH 0 7 h 3981 10834 4 +PQ +SE +ID 4446 +TI 1760667401.112934112 +UH 0 20 l 2037 10352 4 +UH 0 21 l 2225 10722 4 +UH 0 35 h 1667 3695 0 +UH 0 29 h 2467 11146 4 +PQ +SE +ID 4447 +TI 1760667401.112961053 +UH 0 64 l 1720 0 5 +UH 0 64 h 1798 0 5 +BD GR Veto +PQ +SE +ID 4448 +TI 1760667401.112968921 +UH 0 26 l 2314 11282 4 +UH 0 27 l 3790 10642 4 +UH 0 26 h 3043 11190 4 +UH 0 30 h 2834 11374 4 +PQ +SE +ID 4449 +TI 1760667401.112997531 +UH 0 32 l 1762 4752 0 +UH 0 38 l 2607 10888 4 +UH 0 39 l 2350 10707 4 +UH 0 18 l 1807 10259 4 +UH 0 20 l 2083 10618 4 +UH 0 21 l 2803 11044 4 +UH 0 11 h 3153 10807 4 +UH 0 12 h 1868 11031 4 +UH 0 14 h 2164 10837 4 +UH 0 15 h 1969 10940 4 +UH 0 18 h 2605 10751 4 +PQ +SE +ID 4450 +TI 1760667401.113057136 +UH 0 57 l 2204 10582 4 +UH 0 58 l 1961 10378 4 +UH 0 60 h 2651 10806 4 +PQ +SE +ID 4451 +TI 1760667401.113076448 +UH 0 23 l 2666 10444 4 +UH 0 22 h 1991 11145 4 +UH 0 23 h 2128 11242 4 +PQ +SE +ID 4452 +TI 1760667401.113096952 +UH 0 64 l 2121 0 5 +UH 0 64 h 2145 0 5 +BD GR Veto +PQ +SE +ID 4453 +TI 1760667401.113105058 +UH 0 33 l 1641 10477 4 +UH 0 34 l 2918 10462 4 +UH 0 26 h 2971 11371 4 +PQ +SE +ID 4454 +TI 1760667401.113125085 +UH 0 47 l 2265 10583 4 +UH 0 48 l 1528 10784 4 +UH 0 49 l 1533 5053 0 +UH 0 63 l 1544 2437 0 +UH 0 48 h 2362 10466 4 +UH 0 49 h 1626 4110 0 +PQ +SE +ID 4455 +TI 1760667401.113153696 +UH 0 55 l 2301 10727 4 +UH 0 50 h 2425 10642 4 +PQ +SE +ID 4456 +TI 1760667401.113172054 +UH 0 9 l 2945 10933 4 +UH 0 38 h 2920 10651 4 +PQ +SE +ID 4457 +TI 1760667401.113189458 +UH 0 57 l 2015 10155 4 +UH 0 58 l 1809 10216 4 +UH 0 59 l 1914 10414 4 +UH 0 61 l 2040 10392 4 +UH 0 63 l 3938 10668 4 +UH 0 32 h 3833 10298 4 +UH 0 26 h 1955 11065 4 +UH 0 27 h 2078 11064 4 +UH 0 29 h 2203 10882 4 +PQ +SE +ID 4458 +TI 1760667401.113233327 +UH 0 17 l 2935 10769 4 +UH 0 21 l 1902 11051 4 +UH 0 29 l 1820 4472 0 +UH 0 17 h 1572 4565 0 +UH 0 18 h 1834 10741 4 +UH 0 19 h 3048 11223 4 +PQ +SE +ID 4459 +TI 1760667401.113270759 +UH 0 34 l 2216 10685 4 +UH 0 37 l 1622 5334 0 +UH 0 22 h 1697 5184 0 +UH 0 27 h 2226 11157 4 +PQ +SE +ID 4460 +TI 1760667401.113301038 +UH 0 9 l 3245 10669 4 +UH 0 62 h 3257 10888 4 +PQ +SE +ID 4461 +TI 1760667401.113318681 +UH 0 45 l 3130 10725 4 +UH 0 32 h 3051 10866 4 +PQ +SE +ID 4462 +TI 1760667401.113336324 +UH 0 64 h 1726 0 5 +BD GR Veto +PQ +SE +ID 4463 +TI 1760667401.113342046 +UH 0 23 l 2910 10541 4 +UH 0 26 l 3275 11270 4 +UH 0 28 l 2335 11084 4 +UH 0 0 h 2215 10835 4 +UH 0 11 h 1855 10981 4 +UH 0 12 h 2974 10763 4 +UH 0 18 h 2801 10956 4 +PQ +SE +ID 4464 +TI 1760667401.113385677 +UH 0 0 l 3567 9309 4 +UH 0 1 l 1648 9746 4 +UH 0 64 l 2318 0 5 +UH 0 56 h 1617 9798 4 +UH 0 57 h 4284 9844 4 +BD GR Veto +PQ +SE +ID 4465 +TI 1760667401.113408327 +UH 0 12 l 2533 10564 4 +UH 0 62 h 2478 10985 4 +PQ +SE +ID 4466 +TI 1760667401.113425970 +UH 0 64 l 2237 0 5 +UH 0 64 h 2262 0 5 +BD GR Veto +PQ +SE +ID 4467 +TI 1760667401.113433599 +UH 0 34 l 2117 10414 4 +UH 0 25 l 3083 10674 4 +UH 0 26 l 1872 10949 4 +UH 0 18 h 3296 11097 4 +UH 0 19 h 2087 11235 4 +PQ +SE +ID 4468 +TI 1760667401.113463640 +UH 0 64 l 2332 0 5 +UH 0 64 h 2382 0 5 +BD GR Veto +PQ +SE +ID 4469 +TI 1760667401.113471746 +UH 0 35 l 1575 4078 0 +UH 0 36 l 1818 10583 4 +UH 0 37 l 1977 10715 4 +UH 0 44 l 2961 10294 4 +UH 0 45 l 1708 10380 4 +UH 0 13 h 3244 11214 4 +UH 0 21 h 1968 11076 4 +UH 0 22 h 1969 10623 4 +PQ +SE +ID 4470 +TI 1760667401.113517761 +UH 0 50 l 1596 3922 0 +UH 0 61 l 2285 10703 4 +UH 0 13 l 2406 10610 4 +UH 0 14 l 1677 5383 0 +UH 0 25 l 1665 3342 0 +UH 0 64 l 3864 0 5 +UH 0 54 h 1586 4499 0 +UH 0 58 h 2168 10487 4 +UH 0 62 h 1664 4364 0 +UH 0 63 h 2020 10881 4 +UH 0 64 h 4216 0 5 +BD GR Veto +PQ +SE +ID 4471 +TI 1760667401.113580465 +UH 0 18 l 1633 2790 0 +UH 0 19 l 1737 3024 0 +UH 0 21 l 1675 3189 0 +UH 0 26 l 1685 9536 4 +UH 0 27 l 4422 8976 4 +UH 0 25 h 1725 9635 4 +UH 0 30 h 1687 9661 4 +UH 0 31 h 4405 8960 4 +PQ +SE +ID 4472 +TI 1760667401.113624334 +UH 0 45 l 1754 11042 4 +UH 0 3 h 1847 11151 4 +PQ +SE +ID 4473 +TI 1760667401.113642454 +UH 0 58 l 2110 9575 4 +UH 0 59 l 1568 5317 0 +UH 0 60 l 2014 9641 4 +UH 0 32 h 2609 10181 4 +PQ +SE +ID 4474 +TI 1760667401.113665103 +UH 0 62 l 1663 4938 0 +UH 0 63 l 1927 10363 4 +UH 0 21 h 2098 11491 4 +PQ +SE +ID 4475 +TI 1760667401.113682508 +UH 0 6 l 3110 10595 4 +UH 0 7 l 1905 10539 4 +UH 0 13 l 3693 10627 4 +UH 0 38 h 3499 10896 4 +UH 0 39 h 1748 10690 4 +UH 0 40 h 2430 10502 4 +UH 0 27 h 2635 11207 4 +PQ +SE +ID 4476 +TI 1760667401.113721370 +UH 0 64 l 1913 0 5 +UH 0 64 h 2005 0 5 +BD GR Veto +PQ +SE +ID 4477 +TI 1760667401.113729715 +UH 0 19 l 1641 5440 0 +UH 0 14 h 1575 4527 0 +PQ +SE +ID 4478 +TI 1760667401.113747358 +UH 0 31 l 3906 10796 4 +UH 0 62 h 3403 10899 4 +UH 0 63 h 2115 10977 4 +PQ +SE +ID 4479 +TI 1760667401.136167526 +UH 0 64 l 1710 0 5 +UH 0 64 h 1783 0 5 +BD GR Veto +PQ +SE +ID 4480 +TI 1760667401.136242151 +UH 0 64 l 3115 0 5 +UH 0 64 h 3104 0 5 +BD GR Veto +PQ +SE +ID 4481 +TI 1760667401.136261940 +UH 0 43 l 1982 10507 4 +UH 0 13 l 3042 10367 4 +UH 0 42 h 1793 10474 4 +UH 0 43 h 2732 10776 4 +UH 0 6 h 2033 11263 4 +PQ +SE +ID 4482 +TI 1760667401.136340618 +UH 0 64 l 1962 0 5 +UH 0 64 h 4286 0 5 +BD GR Veto +PQ +SE +ID 4483 +TI 1760667401.136357784 +UH 0 64 l 1791 0 5 +UH 0 64 h 1824 0 5 +BD GR Veto +PQ +SE +ID 4484 +TI 1760667401.136374473 +UH 0 64 l 1686 0 5 +UH 0 64 h 2174 0 5 +BD GR Veto +PQ +SE +ID 4485 +TI 1760667401.136390209 +UH 0 28 l 1649 8764 4 +UH 0 29 l 5375 8515 4 +UH 0 30 l 1873 8867 4 +UH 0 64 l 1629 0 5 +UH 0 62 h 3060 8839 4 +UH 0 63 h 4176 8824 4 +BD GR Veto +PQ +SE +ID 4486 +TI 1760667401.136446237 +UH 0 40 l 1915 10751 4 +UH 0 6 h 1952 11681 4 +PQ +SE +ID 4487 +TI 1760667401.136485576 +UH 0 38 l 2331 9953 4 +UH 0 39 l 2187 9748 4 +UH 0 25 l 1756 5481 0 +UH 0 58 h 1672 5187 0 +UH 0 22 h 2063 10065 4 +UH 0 23 h 1693 10183 4 +UH 0 24 h 2361 10097 4 +PQ +SE +ID 4488 +TI 1760667401.136574506 +UH 0 46 l 2629 9920 4 +UH 0 47 l 1582 10132 4 +UH 0 48 l 2128 9975 4 +UH 0 54 h 2478 10223 4 +UH 0 55 h 2584 9931 4 +PQ +SE +ID 4489 +TI 1760667401.136634111 +UH 0 54 l 1528 5502 0 +UH 0 56 l 1563 4492 0 +UH 0 58 l 1554 5135 0 +UH 0 64 l 2307 0 5 +UH 0 64 h 3321 0 5 +BD GR Veto +PQ +SE +ID 4490 +TI 1760667401.136692762 +UH 0 16 l 1611 2586 0 +UH 0 21 l 1706 3341 0 +UH 0 27 l 1622 5383 0 +UH 0 28 l 3762 9159 4 +UH 0 29 l 1706 9134 4 +UH 0 1 h 2087 9710 4 +UH 0 2 h 3692 9743 4 +PQ +SE +ID 4491 +TI 1760667401.136781454 +UH 0 31 l 1835 11353 4 +UH 0 20 h 1736 11420 4 +UH 0 21 h 1647 5448 0 +PQ +SE +ID 4492 +TI 1760667401.136825561 +UH 0 19 l 2509 10980 4 +UH 0 21 l 1790 5468 0 +UH 0 50 h 2752 10919 4 +PQ +SE +ID 4493 +TI 1760667401.136875152 +UH 0 32 l 2767 10654 4 +UH 0 59 h 2679 11041 4 +PQ +SE +ID 4494 +TI 1760667401.136914253 +UH 0 39 l 1856 5204 0 +UH 0 52 h 1816 10772 4 +PQ +SE +ID 4495 +TI 1760667401.136956930 +UH 0 64 h 2220 0 5 +BD GR Veto +PQ +SE +ID 4496 +TI 1760667401.136969327 +UH 0 64 l 1624 0 5 +UH 0 64 h 1684 0 5 +BD GR Veto +PQ +SE +ID 4497 +TI 1760667401.136985778 +UH 0 12 l 2256 10185 4 +UH 0 13 l 2579 10919 4 +UH 0 14 l 1946 10931 4 +UH 0 16 l 1675 4622 0 +UH 0 39 h 1703 4568 0 +UH 0 41 h 3597 11045 4 +PQ +SE +ID 4498 +TI 1760667401.137056350 +UH 0 34 l 1592 3617 0 +UH 0 38 l 3544 10815 4 +UH 0 49 l 2373 10927 4 +UH 0 33 h 3505 9954 4 +UH 0 54 h 2372 10370 4 +PQ +SE +ID 4499 +TI 1760667401.137143373 +UH 0 21 l 2846 10655 4 +UH 0 26 h 1704 11515 4 +UH 0 27 h 2658 11211 4 +PQ +SE +ID 4500 +TI 1760667401.137186288 +UH 0 16 l 1815 4979 0 +UH 0 62 h 1889 11445 4 +PQ +SE +ID 4501 +TI 1760667401.137223482 +UH 0 64 l 2248 0 5 +UH 0 64 h 2295 0 5 +BD GR Veto +PQ +SE +ID 4502 +TI 1760667401.137240409 +UH 0 32 l 1890 11137 4 +UH 0 31 l 1723 5224 0 +UH 0 47 h 2051 10937 4 +PQ +SE +ID 4503 +TI 1760667401.137283802 +UH 0 18 l 2868 10432 4 +UH 0 14 h 2441 11484 4 +UH 0 15 h 1974 11594 4 +PQ +SE +ID 4504 +TI 1760667401.137327909 +UH 0 53 l 2694 10786 4 +UH 0 57 h 2656 11072 4 +PQ +SE +ID 4505 +TI 1760667401.137365818 +UH 0 38 l 2962 10803 4 +UH 0 43 h 2959 10824 4 +PQ +SE +ID 4506 +TI 1760667401.137404441 +UH 0 57 l 3816 8914 4 +UH 0 58 l 1576 8841 4 +UH 0 59 l 2633 8591 4 +UH 0 9 l 2358 7697 4 +UH 0 46 h 2310 7482 4 +UH 0 57 h 2680 9284 4 +UH 0 62 h 3839 8841 4 +PQ +SE +ID 4507 +TI 1760667401.137451887 +UH 0 5 l 2331 10970 4 +UH 0 36 h 2298 11311 4 +PQ +SE +ID 4508 +TI 1760667401.137470722 +UH 0 4 l 4306 9027 4 +UH 0 5 l 1632 8948 4 +UH 0 26 l 2686 9401 4 +UH 0 29 l 1876 2916 0 +UH 0 6 h 4018 9145 4 +UH 0 7 h 1829 9344 4 +UH 0 8 h 1831 9582 4 +UH 0 14 h 2066 9119 4 +UH 0 15 h 1764 9290 4 +UH 0 16 h 1866 9280 4 +PQ +SE +ID 4509 +TI 1760667401.137524366 +UH 0 39 l 3042 9406 4 +UH 0 48 l 2659 9934 4 +UH 0 49 l 1521 10003 4 +UH 0 50 l 2905 9430 4 +UH 0 6 h 2930 10159 4 +UH 0 10 h 2690 10048 4 +UH 0 19 h 2967 10237 4 +PQ +SE +ID 4510 +TI 1760667401.137570858 +UH 0 19 l 3349 10462 4 +UH 0 20 l 1958 10220 4 +UH 0 6 h 3700 11229 4 +PQ +SE +ID 4511 +TI 1760667401.137590885 +UH 0 49 l 2615 10488 4 +UH 0 58 l 2015 10523 4 +UH 0 59 l 3989 10684 4 +UH 0 18 h 2395 10821 4 +UH 0 19 h 3542 10892 4 +UH 0 25 h 2581 11165 4 +PQ +SE +ID 4512 +TI 1760667401.137628078 +UH 0 64 l 4885 0 5 +UH 0 0 h 1716 11266 4 +UH 0 64 h 4609 0 5 +BD GR Veto +PQ +SE +ID 4513 +TI 1760667401.137641906 +UH 0 1 l 1763 5492 0 +UH 0 46 h 1724 11607 4 +PQ +SE +ID 4514 +TI 1760667401.137660264 +UH 0 24 l 1679 8827 4 +UH 0 25 l 4197 8830 4 +UH 0 26 l 1910 9118 4 +UH 0 32 h 4273 9022 4 +PQ +SE +ID 4515 +TI 1760667401.137683391 +UH 0 48 l 1965 8507 4 +UH 0 49 l 1509 8876 4 +UH 0 50 l 1696 8638 4 +UH 0 51 l 4207 8642 4 +UH 0 52 l 1599 8750 4 +UH 0 17 h 1978 9141 4 +UH 0 18 h 4292 8919 4 +UH 0 19 h 1577 9244 4 +PQ +SE +ID 4516 +TI 1760667401.137715101 +UH 0 6 l 2810 11055 4 +UH 0 8 l 1671 4825 0 +UH 0 13 l 2669 10877 4 +UH 0 32 h 2744 10725 4 +UH 0 52 h 1662 10896 4 +UH 0 53 h 2488 10683 4 +PQ +SE +ID 4517 +TI 1760667401.137755155 +UH 0 64 l 2015 0 5 +UH 0 64 h 2062 0 5 +BD GR Veto +PQ +SE +ID 4518 +TI 1760667401.137763500 +UH 0 24 l 2134 10593 4 +UH 0 28 l 1890 10801 4 +UH 0 11 h 1907 11395 4 +UH 0 12 h 2017 11263 4 +PQ +SE +ID 4519 +TI 1760667401.137790679 +UH 0 32 l 2094 8922 4 +UH 0 23 l 4255 9358 4 +UH 0 24 l 1675 9378 4 +UH 0 28 l 1633 2565 0 +UH 0 30 l 1754 3445 0 +UH 0 31 l 2224 9181 4 +UH 0 33 h 3735 8861 4 +UH 0 34 h 1762 9080 4 +UH 0 17 h 2252 9708 4 +UH 0 18 h 1672 3217 0 +UH 0 19 h 2054 9698 4 +UH 0 27 h 1617 3293 0 +PQ +SE +ID 4520 +TI 1760667401.137850522 +UH 0 56 l 1580 9069 4 +UH 0 57 l 5394 8468 4 +UH 0 58 l 1819 8569 4 +UH 0 59 l 1559 5252 0 +UH 0 52 h 2195 9016 4 +UH 0 53 h 4960 8898 4 +PQ +SE +ID 4521 +TI 1760667401.137876987 +UH 0 64 l 4334 0 5 +UH 0 59 h 1672 4960 0 +UH 0 64 h 3987 0 5 +BD GR Veto +PQ +SE +ID 4522 +TI 1760667401.137891530 +UH 0 5 l 2996 10852 4 +UH 0 41 h 2974 11184 4 +PQ +SE +ID 4523 +TI 1760667401.137910127 +UH 0 53 l 2688 10774 4 +UH 0 55 l 1765 5050 0 +UH 0 56 l 1835 10679 4 +UH 0 6 h 2192 11153 4 +UH 0 7 h 2036 11118 4 +UH 0 11 h 2232 11391 4 +PQ +SE +ID 4524 +TI 1760667401.137943744 +UH 0 19 l 2570 11073 4 +UH 0 21 l 1595 3734 0 +UH 0 39 h 2624 10304 4 +PQ +SE +ID 4525 +TI 1760667401.137966632 +UH 0 26 l 2406 11451 4 +UH 0 52 h 2281 10605 4 +PQ +SE +ID 4526 +TI 1760667401.137985706 +UH 0 3 l 1792 10997 4 +UH 0 4 l 2211 11135 4 +UH 0 49 h 2441 11037 4 +PQ +SE +ID 4527 +TI 1760667401.138006210 +UH 0 19 l 2972 10372 4 +UH 0 29 h 2881 11155 4 +PQ +SE +ID 4528 +TI 1760667401.138024330 +UH 0 19 l 2091 11109 4 +UH 0 20 l 2729 10718 4 +UH 0 52 h 3127 10704 4 +PQ +SE +ID 4529 +TI 1760667401.138044834 +UH 0 24 l 3306 10562 4 +UH 0 7 h 3323 11275 4 +PQ +SE +ID 4530 +TI 1760667401.138063192 +UH 0 64 l 2194 0 5 +UH 0 64 h 2277 0 5 +BD GR Veto +PQ +SE +ID 4531 +TI 1760667401.138072252 +UH 0 31 l 1906 10820 4 +UH 0 56 h 1964 11133 4 +PQ +SE +ID 4532 +TI 1760667401.138091087 +UH 0 59 l 1588 4506 0 +UH 0 62 l 1799 4723 0 +UH 0 16 h 1724 5054 0 +UH 0 17 h 1596 5516 0 +PQ +SE +ID 4533 +TI 1760667401.138119459 +UH 0 46 l 4028 8783 4 +UH 0 47 l 1530 8994 4 +UH 0 47 h 4042 8638 4 +UH 0 48 h 1658 8872 4 +PQ +SE +ID 4534 +TI 1760667401.138143301 +UH 0 64 l 3788 0 5 +UH 0 64 h 3702 0 5 +BD GR Veto +PQ +SE +ID 4535 +TI 1760667401.138152360 +UH 0 0 l 2166 10543 4 +UH 0 1 l 1837 5045 0 +UH 0 64 l 1676 0 5 +UH 0 54 h 2355 11143 4 +UH 0 64 h 1875 0 5 +BD GR Veto +PQ +SE +ID 4536 +TI 1760667401.138176679 +UH 0 38 l 1636 5269 0 +UH 0 2 h 1713 4923 0 +PQ +SE +ID 4537 +TI 1760667401.138194084 +UH 0 57 l 2421 10833 4 +UH 0 56 h 2468 11001 4 +PQ +SE +ID 4538 +TI 1760667401.138212442 +UH 0 50 l 2322 10432 4 +UH 0 51 l 1657 5374 0 +UH 0 21 h 2371 11377 4 +PQ +SE +ID 4539 +TI 1760667401.138233184 +UH 0 59 l 3119 10704 4 +UH 0 62 l 1714 4725 0 +UH 0 10 h 3128 11104 4 +UH 0 14 h 1662 11256 4 +PQ +SE +ID 4540 +TI 1760667401.138265132 +UH 0 53 l 3553 10280 4 +UH 0 64 l 2095 0 5 +UH 0 0 h 4145 11196 4 +BD GR Veto +PQ +SE +ID 4541 +TI 1760667401.138283014 +UH 0 54 l 1717 11427 4 +UH 0 8 h 1592 5027 0 +UH 0 9 h 1754 4845 0 +PQ +SE +ID 4542 +TI 1760667401.138303518 +UH 0 17 l 3404 10735 4 +UH 0 37 h 3407 11279 4 +PQ +SE +ID 4543 +TI 1760667401.158720254 +UH 0 64 l 4735 0 5 +UH 0 64 h 4519 0 5 +BD GR Veto +PQ +SE +ID 4544 +TI 1760667401.158768177 +UH 0 4 l 2039 11192 4 +UH 0 39 h 2068 10978 4 +PQ +SE +ID 4545 +TI 1760667401.158822774 +UH 0 18 l 2000 10803 4 +UH 0 19 l 2972 10980 4 +UH 0 20 l 2330 10695 4 +UH 0 29 l 3097 10555 4 +UH 0 59 h 3346 10661 4 +UH 0 60 h 2224 10382 4 +UH 0 62 h 3110 10845 4 +PQ +SE +ID 4546 +TI 1760667401.158889055 +UH 0 11 l 4284 10313 4 +UH 0 12 l 2955 10291 4 +UH 0 13 l 1730 10888 4 +UH 0 13 h 1992 11252 4 +UH 0 15 h 2233 11321 4 +UH 0 16 h 4355 11239 4 +PQ +SE +ID 4547 +TI 1760667401.158920288 +UH 0 34 l 2412 10611 4 +UH 0 35 l 2206 10750 4 +UH 0 12 h 1590 4826 0 +UH 0 13 h 2216 10921 4 +UH 0 14 h 2336 10917 4 +PQ +SE +ID 4548 +TI 1760667401.158946037 +UH 0 49 l 1510 5419 0 +UH 0 50 l 2703 8630 4 +UH 0 32 h 2612 8828 4 +PQ +SE +ID 4549 +TI 1760667401.158967018 +UH 0 51 l 1872 11005 4 +UH 0 64 l 3857 0 5 +UH 0 0 h 3785 11126 4 +UH 0 1 h 1753 11250 4 +UH 0 64 h 1837 0 5 +BD GR Veto +PQ +SE +ID 4550 +TI 1760667401.158990621 +UH 0 51 l 2708 10921 4 +UH 0 54 l 1536 4823 0 +UH 0 46 h 1898 10252 4 +UH 0 47 h 2335 10150 4 +PQ +SE +ID 4551 +TI 1760667401.159018278 +UH 0 27 l 4092 9963 4 +UH 0 28 l 1669 10365 4 +UH 0 20 h 4049 10798 4 +PQ +SE +ID 4552 +TI 1760667401.159038782 +UH 0 58 l 4125 10513 4 +UH 0 62 l 1651 4232 0 +UH 0 51 h 1584 10610 4 +UH 0 53 h 4053 10342 4 +PQ +SE +ID 4553 +TI 1760667401.159068822 +UH 0 23 l 1792 4699 0 +UH 0 24 l 2453 10575 4 +UH 0 21 h 2429 11375 4 +PQ +SE +ID 4554 +TI 1760667401.159089565 +UH 0 34 l 2018 9647 4 +UH 0 22 l 1625 10029 4 +UH 0 23 l 2821 9951 4 +UH 0 24 l 1687 5352 0 +UH 0 58 h 2540 9918 4 +UH 0 59 h 2229 10142 4 +PQ +SE +ID 4555 +TI 1760667401.159122228 +UH 0 64 h 1738 0 5 +BD GR Veto +PQ +SE +ID 4556 +TI 1760667401.159127950 +UH 0 3 l 2465 10564 4 +UH 0 17 h 2409 11162 4 +PQ +SE +ID 4557 +TI 1760667401.159148693 +UH 0 0 l 2529 10703 4 +UH 0 7 l 1613 4025 0 +UH 0 12 l 2477 10498 4 +UH 0 13 l 1704 11103 4 +UH 0 64 l 3559 0 5 +UH 0 36 h 1853 11061 4 +UH 0 37 h 3610 11194 4 +UH 0 38 h 1888 11147 4 +UH 0 48 h 1610 5028 0 +UH 0 50 h 2565 10643 4 +UH 0 64 h 1957 0 5 +BD GR Veto +PQ +SE +ID 4558 +TI 1760667401.159202814 +UH 0 53 l 1859 8760 4 +UH 0 54 l 4020 8852 4 +UH 0 55 l 1525 8806 4 +UH 0 47 h 1686 2238 0 +UH 0 48 h 4401 9142 4 +PQ +SE +ID 4559 +TI 1760667401.159227848 +UH 0 32 l 1909 9914 4 +UH 0 26 l 4178 10401 4 +UH 0 37 h 1912 9895 4 +UH 0 43 h 1580 9626 4 +UH 0 44 h 4095 9369 4 +PQ +SE +ID 4560 +TI 1760667401.159262657 +UH 0 37 l 1882 11017 4 +UH 0 0 l 2169 11032 4 +UH 0 55 h 2098 10500 4 +UH 0 56 h 1699 10801 4 +UH 0 30 h 1874 11448 4 +PQ +SE +ID 4561 +TI 1760667401.159294366 +UH 0 39 l 2498 10250 4 +UH 0 42 l 1707 4572 0 +UH 0 43 l 2970 10859 4 +UH 0 44 l 2937 10681 4 +UH 0 2 h 3117 10768 4 +UH 0 3 h 3163 10454 4 +UH 0 4 h 1700 11028 4 +UH 0 6 h 2466 11066 4 +PQ +SE +ID 4562 +TI 1760667401.159334182 +UH 0 64 l 2279 0 5 +UH 0 64 h 3759 0 5 +BD GR Veto +PQ +SE +ID 4563 +TI 1760667401.159343004 +UH 0 19 l 1879 10668 4 +UH 0 31 h 1821 10982 4 +PQ +SE +ID 4564 +TI 1760667401.159361362 +UH 0 3 l 2398 10983 4 +UH 0 64 l 1778 0 5 +UH 0 3 h 2666 10738 4 +BD GR Veto +PQ +SE +ID 4565 +TI 1760667401.159382343 +UH 0 43 l 2405 11007 4 +UH 0 48 h 2015 10946 4 +UH 0 49 h 1992 10918 4 +PQ +SE +ID 4566 +TI 1760667401.159401178 +UH 0 44 l 1511 4325 0 +UH 0 45 l 1753 5146 0 +UH 0 8 h 1873 11824 4 +PQ +SE +ID 4567 +TI 1760667401.159421920 +UH 0 28 l 1943 11304 4 +UH 0 29 l 2765 11056 4 +UH 0 64 l 2565 0 5 +UH 0 0 h 2872 11156 4 +UH 0 1 h 1824 11076 4 +UH 0 64 h 2566 0 5 +BD GR Veto +PQ +SE +ID 4568 +TI 1760667401.159448623 +UH 0 31 l 2415 10822 4 +UH 0 5 h 2417 11318 4 +PQ +SE +ID 4569 +TI 1760667401.159467458 +UH 0 19 l 1743 4670 0 +UH 0 20 l 2325 10720 4 +UH 0 7 h 2256 11045 4 +UH 0 8 h 1603 3546 0 +UH 0 20 h 1728 11084 4 +PQ +SE +ID 4570 +TI 1760667401.159497261 +UH 0 1 l 2775 11178 4 +UH 0 51 h 2688 10941 4 +PQ +SE +ID 4571 +TI 1760667401.159515380 +UH 0 60 l 2237 10586 4 +UH 0 62 l 1890 10888 4 +UH 0 36 h 1988 10565 4 +UH 0 37 h 1835 10760 4 +UH 0 38 h 1883 10708 4 +PQ +SE +ID 4572 +TI 1760667401.159543514 +UH 0 64 l 1856 0 5 +UH 0 64 h 3263 0 5 +BD GR Veto +PQ +SE +ID 4573 +TI 1760667401.159551858 +UH 0 38 l 1575 8993 4 +UH 0 39 l 4419 8803 4 +UH 0 37 h 4444 9418 4 +PQ +SE +ID 4574 +TI 1760667401.159573078 +UH 0 38 l 5531 8910 4 +UH 0 39 l 1608 8953 4 +UH 0 26 h 1615 9295 4 +UH 0 27 h 5468 8977 4 +PQ +SE +ID 4575 +TI 1760667401.159595489 +UH 0 32 l 2357 8326 4 +UH 0 33 l 2680 8020 4 +UH 0 34 l 1589 5274 0 +UH 0 25 l 1866 2610 0 +UH 0 31 l 2612 8434 4 +UH 0 27 h 1832 8856 4 +UH 0 30 h 3329 9243 4 +UH 0 31 h 2694 8658 4 +PQ +SE +ID 4576 +TI 1760667401.159637451 +UH 0 56 l 1553 9012 4 +UH 0 57 l 4687 8571 4 +UH 0 58 l 2446 8494 4 +UH 0 59 l 1566 8759 4 +UH 0 8 h 2489 9313 4 +UH 0 9 h 3966 8918 4 +UH 0 10 h 2247 9248 4 +PQ +SE +ID 4577 +TI 1760667401.159667491 +UH 0 47 l 1894 10553 4 +UH 0 48 l 1552 10717 4 +UH 0 49 l 1858 10738 4 +UH 0 50 l 2365 10606 4 +UH 0 51 l 2086 10742 4 +UH 0 52 l 3308 10517 4 +UH 0 53 l 1673 10539 4 +UH 0 34 h 2072 10253 4 +UH 0 35 h 2238 10473 4 +UH 0 43 h 1594 3378 0 +UH 0 45 h 1921 10342 4 +UH 0 49 h 1713 10338 4 +UH 0 50 h 3694 10187 4 +PQ +SE +ID 4578 +TI 1760667401.159723043 +UH 0 7 l 3028 10613 4 +UH 0 8 h 1603 11274 4 +UH 0 9 h 2966 10827 4 +PQ +SE +ID 4579 +TI 1760667401.159742832 +UH 0 64 l 1790 0 5 +UH 0 64 h 1861 0 5 +BD GR Veto +PQ +SE +ID 4580 +TI 1760667401.159750223 +UH 0 19 l 2845 10779 4 +UH 0 51 h 2757 11048 4 +PQ +SE +ID 4581 +TI 1760667401.159767866 +UH 0 43 l 1530 5045 0 +UH 0 44 l 2150 10542 4 +UH 0 46 l 1519 4210 0 +UH 0 53 l 1657 4613 0 +UH 0 54 l 1550 4754 0 +UH 0 19 h 1682 4787 0 +UH 0 21 h 1583 4516 0 +UH 0 23 h 1566 3966 0 +UH 0 24 h 2212 11219 4 +PQ +SE +ID 4582 +TI 1760667401.159814357 +UH 0 27 l 2400 10631 4 +UH 0 29 l 2527 10714 4 +UH 0 50 h 2515 11076 4 +UH 0 52 h 2347 11265 4 +PQ +SE +ID 4583 +TI 1760667401.159842014 +UH 0 55 l 1704 5372 0 +UH 0 58 h 1772 11097 4 +PQ +SE +ID 4584 +TI 1760667401.159860134 +UH 0 1 l 1807 11035 4 +UH 0 2 l 2202 10796 4 +UH 0 3 l 2358 10622 4 +UH 0 64 l 3905 0 5 +UH 0 54 h 1661 4380 0 +UH 0 55 h 2348 10154 4 +UH 0 56 h 3387 10441 4 +UH 0 57 h 2349 10590 4 +UH 0 64 h 2119 0 5 +BD GR Veto +PQ +SE +ID 4585 +TI 1760667401.159893751 +UH 0 64 l 3193 0 5 +UH 0 64 h 3189 0 5 +BD GR Veto +PQ +SE +ID 4586 +TI 1760667401.159901618 +UH 0 37 l 1972 10833 4 +UH 0 38 l 1885 10777 4 +UH 0 58 h 2341 11012 4 +PQ +SE +ID 4587 +TI 1760667401.159922122 +UH 0 51 l 2814 10521 4 +UH 0 54 l 3767 10778 4 +UH 0 12 h 1546 10759 4 +UH 0 13 h 2733 10728 4 +UH 0 14 h 2624 10901 4 +UH 0 15 h 2707 10765 4 +PQ +SE +ID 4588 +TI 1760667401.159956216 +UH 0 64 l 1861 0 5 +UH 0 64 h 2590 0 5 +BD GR Veto +PQ +SE +ID 4589 +TI 1760667401.159969568 +UH 0 64 l 2923 0 5 +UH 0 14 h 2592 11082 4 +UH 0 64 h 1881 0 5 +BD GR Veto +PQ +SE +ID 4590 +TI 1760667401.159985780 +UH 0 35 l 2823 10717 4 +UH 0 46 h 2838 11022 4 +PQ +SE +ID 4591 +TI 1760667401.160004138 +UH 0 57 l 1544 5243 0 +PQ +SE +ID 4592 +TI 1760667401.160015583 +UH 0 9 l 2416 10876 4 +UH 0 10 l 1703 11000 4 +UH 0 12 l 2469 10496 4 +UH 0 21 h 3281 11218 4 +PQ +SE +ID 4593 +TI 1760667401.160041332 +UH 0 29 l 2941 11038 4 +UH 0 0 h 2896 11048 4 +PQ +SE +ID 4594 +TI 1760667401.160056829 +UH 0 62 l 1685 4244 0 +UH 0 64 l 3413 0 5 +UH 0 15 h 1720 10781 4 +UH 0 16 h 3012 10700 4 +UH 0 20 h 1679 4230 0 +UH 0 64 h 1807 0 5 +BD GR Veto +PQ +SE +ID 4595 +TI 1760667401.160097837 +UH 0 8 l 4529 9720 4 +UH 0 4 h 4294 10037 4 +UH 0 5 h 1601 9961 4 +PQ +SE +ID 4596 +TI 1760667401.160122632 +UH 0 58 l 1732 5091 0 +UH 0 42 h 1760 11017 4 +PQ +SE +ID 4597 +TI 1760667401.160141706 +UH 0 32 l 3212 10870 4 +UH 0 33 l 3055 10517 4 +UH 0 39 l 1910 10619 4 +UH 0 40 l 2052 10621 4 +UH 0 52 h 2463 10714 4 +UH 0 55 h 1877 10457 4 +UH 0 56 h 4472 10513 4 +PQ +SE +ID 4598 +TI 1760667401.160182714 +UH 0 64 l 4332 0 5 +UH 0 64 h 4208 0 5 +BD GR Veto +PQ +SE +ID 4599 +TI 1760667401.160191774 +UH 0 51 l 3519 10899 4 +UH 0 49 h 1828 10510 4 +UH 0 50 h 3226 10383 4 +PQ +SE +ID 4600 +TI 1760667401.160212278 +UH 0 53 l 1608 5338 0 +UH 0 54 l 2197 10772 4 +UH 0 57 l 1563 5017 0 +UH 0 32 h 2239 10870 4 +UH 0 23 h 1597 5009 0 +PQ +SE +ID 4601 +TI 1760667401.160246372 +UH 0 36 l 3633 10491 4 +UH 0 45 l 1696 10730 4 +UH 0 46 l 1612 4605 0 +UH 0 46 h 1810 10276 4 +UH 0 47 h 1670 4090 0 +UH 0 51 h 3570 10495 4 +PQ +SE +ID 4602 +TI 1760667401.160285711 +UH 0 59 l 5631 9687 4 +UH 0 10 h 3257 9816 4 +UH 0 11 h 3865 9653 4 +UH 0 12 h 1536 9620 4 +PQ +SE +ID 4603 +TI 1760667401.160326957 +UH 0 11 l 2290 10435 4 +UH 0 12 l 2064 10426 4 +UH 0 48 h 2604 11023 4 +PQ +SE +ID 4604 +TI 1760667401.160353422 +UH 0 63 l 2593 10789 4 +UH 0 38 h 1660 4213 0 +UH 0 39 h 2609 10274 4 +PQ +SE +ID 4605 +TI 1760667401.160371780 +UH 0 62 l 1616 5385 0 +UH 0 63 l 2446 8392 4 +UH 0 64 l 4661 0 5 +UH 0 43 h 2330 8892 4 +UH 0 49 h 2327 8812 4 +UH 0 64 h 3871 0 5 +BD GR Veto +PQ +SE +ID 4606 +TI 1760667401.160407066 +UH 0 32 l 1777 5241 0 +UH 0 24 h 1717 11354 4 +PQ +SE +ID 4607 +TI 1760667401.175731420 +UH 0 17 l 2437 10909 4 +UH 0 54 h 1674 11158 4 +UH 0 55 h 2383 10772 4 +PQ +SE +ID 4608 +TI 1760667401.175806045 +UH 0 59 l 1602 5291 0 +UH 0 28 h 1688 5223 0 +PQ +SE +ID 4609 +TI 1760667401.175846576 +UH 0 35 l 1700 11016 4 +UH 0 36 l 1912 10708 4 +UH 0 0 h 2096 11405 4 +PQ +SE +ID 4610 +TI 1760667401.175881624 +UH 0 41 l 1498 8903 4 +UH 0 42 l 4475 9010 4 +UH 0 43 l 1519 9055 4 +UH 0 47 h 4500 8686 4 +PQ +SE +ID 4611 +TI 1760667401.175925016 +UH 0 63 l 1547 8466 4 +UH 0 64 l 5696 0 5 +UH 0 22 h 3973 8610 4 +UH 0 64 h 3106 0 5 +BD GR Veto +PQ +SE +ID 4612 +TI 1760667401.175963878 +UH 0 14 l 3025 10853 4 +UH 0 20 h 2963 10849 4 +PQ +SE +ID 4613 +TI 1760667401.175997257 +UH 0 34 l 1626 5156 0 +UH 0 8 h 1646 5733 0 +PQ +SE +ID 4614 +TI 1760667401.176032066 +UH 0 64 l 1718 0 5 +UH 0 64 h 2022 0 5 +BD GR Veto +PQ +SE +ID 4615 +TI 1760667401.176046609 +UH 0 64 l 1950 0 5 +UH 0 64 h 1992 0 5 +BD GR Veto +PQ +SE +ID 4616 +TI 1760667401.176061630 +UH 0 36 l 3588 10523 4 +UH 0 58 h 3491 10725 4 +PQ +SE +ID 4617 +TI 1760667401.176111459 +UH 0 64 l 2480 0 5 +UH 0 64 h 2466 0 5 +BD GR Veto +PQ +SE +ID 4618 +TI 1760667401.176127433 +UH 0 44 l 2264 10573 4 +UH 0 45 l 2799 10568 4 +UH 0 10 h 2124 11535 4 +UH 0 11 h 2579 11368 4 +UH 0 17 h 1960 11176 4 +PQ +SE +ID 4619 +TI 1760667401.176191091 +UH 0 14 l 1828 5361 0 +UH 0 19 l 1634 4754 0 +UH 0 53 h 1580 4170 0 +UH 0 54 h 1711 11283 4 +PQ +SE +ID 4620 +TI 1760667401.176244258 +UH 0 4 l 2024 10557 4 +UH 0 5 l 1746 4127 0 +UH 0 30 h 2144 11490 4 +PQ +SE +ID 4621 +TI 1760667401.176283836 +UH 0 64 l 1765 0 5 +UH 0 64 h 1801 0 5 +BD GR Veto +PQ +SE +ID 4622 +TI 1760667401.176298379 +UH 0 27 l 3165 10657 4 +UH 0 53 h 2516 11076 4 +UH 0 54 h 2077 11255 4 +PQ +SE +ID 4623 +TI 1760667401.176336288 +UH 0 64 l 2578 0 5 +UH 0 64 h 2855 0 5 +BD GR Veto +PQ +SE +ID 4624 +TI 1760667401.176350831 +UH 0 0 l 1941 11040 4 +UH 0 10 h 1637 5468 0 +UH 0 11 h 1864 11660 4 +PQ +SE +ID 4625 +TI 1760667401.176385164 +UH 0 42 l 1764 5357 0 +UH 0 15 h 1759 5655 0 +PQ +SE +ID 4626 +TI 1760667401.176418066 +UH 0 30 l 3640 10930 4 +UH 0 32 h 2523 10809 4 +UH 0 27 h 2610 11266 4 +PQ +SE +ID 4627 +TI 1760667401.176465988 +UH 0 64 h 1797 0 5 +BD GR Veto +PQ +SE +ID 4628 +TI 1760667401.176475763 +UH 0 5 l 1762 3479 0 +UH 0 13 l 1887 9895 4 +UH 0 64 l 2275 0 5 +UH 0 46 h 1715 3306 0 +UH 0 49 h 1586 2848 0 +UH 0 50 h 1862 9378 4 +UH 0 64 h 2344 0 5 +BD GR Veto +PQ +SE +ID 4629 +TI 1760667401.176553726 +UH 0 29 l 3156 10466 4 +UH 0 30 l 1661 10846 4 +UH 0 64 l 1655 0 5 +UH 0 63 h 3176 10012 4 +UH 0 64 h 1753 0 5 +BD GR Veto +PQ +SE +ID 4630 +TI 1760667401.176596641 +UH 0 44 l 2080 10899 4 +UH 0 45 l 1767 10906 4 +UH 0 60 h 2402 10118 4 +PQ +SE +ID 4631 +TI 1760667401.176635503 +UH 0 64 h 1667 0 5 +BD GR Veto +PQ +SE +ID 4632 +TI 1760667401.176645278 +UH 0 59 l 3371 10257 4 +UH 0 64 l 3768 0 5 +UH 0 9 h 3328 11204 4 +UH 0 10 h 1615 4873 0 +UH 0 64 h 3675 0 5 +BD GR Veto +PQ +SE +ID 4633 +TI 1760667401.176700592 +UH 0 26 l 2351 11352 4 +UH 0 27 l 1930 10576 4 +UH 0 30 h 2148 11055 4 +UH 0 31 h 1955 10631 4 +PQ +SE +ID 4634 +TI 1760667401.176743984 +UH 0 34 l 1576 8402 4 +UH 0 35 l 3784 8482 4 +UH 0 9 l 3427 8670 4 +UH 0 49 h 3354 8439 4 +UH 0 60 h 3788 8411 4 +PQ +SE +ID 4635 +TI 1760667401.176811695 +UH 0 32 l 1799 4576 0 +UH 0 34 l 1762 4708 0 +UH 0 45 l 2184 10674 4 +UH 0 46 l 1660 10772 4 +UH 0 26 l 4325 11268 4 +UH 0 12 h 1652 10982 4 +UH 0 13 h 2271 10976 4 +UH 0 15 h 1797 11344 4 +UH 0 16 h 1752 11206 4 +UH 0 29 h 3878 10857 4 +UH 0 30 h 1812 11144 4 +PQ +SE +ID 4636 +TI 1760667401.176873445 +UH 0 30 l 3107 11219 4 +UH 0 53 h 3060 10647 4 +PQ +SE +ID 4637 +TI 1760667401.176891326 +UH 0 27 l 1693 4969 0 +UH 0 28 l 1665 3072 0 +UH 0 23 h 1718 11724 4 +PQ +SE +ID 4638 +TI 1760667401.176911115 +UH 0 64 l 2284 0 5 +UH 0 64 h 2320 0 5 +BD GR Veto +PQ +SE +ID 4639 +TI 1760667401.176918745 +UH 0 15 l 2072 10858 4 +UH 0 16 l 2231 10962 4 +UH 0 39 h 2752 10931 4 +PQ +SE +ID 4640 +TI 1760667401.176938772 +UH 0 27 l 2104 10876 4 +UH 0 39 h 2112 11010 4 +PQ +SE +ID 4641 +TI 1760667401.176956415 +UH 0 46 l 1654 5250 0 +UH 0 47 l 1625 5252 0 +UH 0 54 h 1840 10994 4 +PQ +SE +ID 4642 +TI 1760667401.176977157 +UH 0 45 l 1737 5261 0 +UH 0 45 h 1725 10540 4 +PQ +SE +ID 4643 +TI 1760667401.176995038 +UH 0 23 l 3325 10509 4 +UH 0 51 h 3202 11007 4 +PQ +SE +ID 4644 +TI 1760667401.177011966 +UH 0 37 l 1663 5348 0 +UH 0 32 h 1617 4581 0 +PQ +SE +ID 4645 +TI 1760667401.177030086 +UH 0 26 l 2193 11396 4 +UH 0 9 h 2103 11002 4 +PQ +SE +ID 4646 +TI 1760667401.177047491 +UH 0 32 l 1969 10909 4 +UH 0 45 h 1900 11371 4 +PQ +SE +ID 4647 +TI 1760667401.177064657 +UH 0 58 l 1753 10558 4 +UH 0 31 h 1770 11253 4 +PQ +SE +ID 4648 +TI 1760667401.177083730 +UH 0 30 l 2785 11271 4 +UH 0 31 h 2756 10804 4 +PQ +SE +ID 4649 +TI 1760667401.177101850 +UH 0 42 l 1620 5346 0 +UH 0 14 h 1586 4889 0 +PQ +SE +ID 4650 +TI 1760667401.177119970 +UH 0 8 l 1741 4640 0 +UH 0 25 l 1738 4611 0 +UH 0 28 l 2038 10894 4 +UH 0 29 l 2298 10862 4 +UH 0 17 h 1612 4874 0 +UH 0 19 h 2207 11130 4 +UH 0 21 h 1666 11242 4 +UH 0 27 h 1637 4758 0 +UH 0 28 h 1950 10858 4 +PQ +SE +ID 4651 +TI 1760667401.177172183 +UH 0 3 l 1582 9037 4 +UH 0 4 l 4265 9104 4 +UH 0 49 h 4262 9425 4 +PQ +SE +ID 4652 +TI 1760667401.177192449 +UH 0 42 l 1611 8852 4 +UH 0 43 l 2624 8953 4 +UH 0 44 l 4455 8478 4 +UH 0 45 l 1563 8582 4 +UH 0 33 h 4144 8476 4 +UH 0 34 h 2828 8672 4 +PQ +SE +ID 4653 +TI 1760667401.177219629 +UH 0 15 l 1678 10758 4 +UH 0 16 l 2581 10775 4 +UH 0 63 h 2668 11011 4 +PQ +SE +ID 4654 +TI 1760667401.177237272 +UH 0 1 l 3944 11002 4 +UH 0 2 l 2342 10877 4 +UH 0 16 l 1605 5146 0 +UH 0 17 l 2385 10491 4 +UH 0 23 h 2175 11099 4 +UH 0 26 h 2255 11456 4 +UH 0 31 h 4264 10694 4 +PQ +SE +ID 4655 +TI 1760667401.177281618 +UH 0 32 l 2653 10396 4 +UH 0 17 l 2989 10729 4 +UH 0 18 l 1895 10665 4 +UH 0 23 l 2362 10776 4 +UH 0 31 l 2051 10569 4 +UH 0 37 h 2243 10533 4 +UH 0 39 h 1954 10265 4 +UH 0 40 h 2339 10242 4 +UH 0 41 h 2195 10532 4 +UH 0 22 h 3126 10958 4 +PQ +SE +ID 4656 +TI 1760667401.177335500 +UH 0 10 l 2695 10926 4 +UH 0 22 h 2710 10953 4 +PQ +SE +ID 4657 +TI 1760667401.177353143 +UH 0 64 l 2836 0 5 +UH 0 45 h 2314 10626 4 +UH 0 46 h 1650 4330 0 +UH 0 64 h 1928 0 5 +BD GR Veto +PQ +SE +ID 4658 +TI 1760667401.177370309 +UH 0 26 l 3726 8688 4 +UH 0 27 l 1626 8508 4 +UH 0 64 l 1952 0 5 +UH 0 14 h 3586 9215 4 +UH 0 64 h 2003 0 5 +BD GR Veto +PQ +SE +ID 4659 +TI 1760667401.177395105 +UH 0 59 l 1895 10736 4 +UH 0 60 l 2296 10535 4 +UH 0 62 l 2021 10933 4 +UH 0 20 h 2351 10640 4 +UH 0 22 h 2346 10558 4 +PQ +SE +ID 4660 +TI 1760667401.177424669 +UH 0 4 l 2912 10716 4 +UH 0 64 l 2587 0 5 +UH 0 35 h 2036 10374 4 +UH 0 28 h 2939 10858 4 +UH 0 64 h 2390 0 5 +BD GR Veto +PQ +SE +ID 4661 +TI 1760667401.177454948 +UH 0 55 l 2750 10741 4 +UH 0 6 h 1651 10990 4 +UH 0 7 h 2751 10859 4 +PQ +SE +ID 4662 +TI 1760667401.177474975 +UH 0 60 l 2016 10609 4 +UH 0 41 h 2045 11560 4 +PQ +SE +ID 4663 +TI 1760667401.177493572 +UH 0 40 l 1832 10582 4 +UH 0 41 l 1562 4537 0 +UH 0 19 h 1980 11653 4 +PQ +SE +ID 4664 +TI 1760667401.177513360 +UH 0 64 l 3329 0 5 +UH 0 54 h 3260 11077 4 +BD GR Veto +PQ +SE +ID 4665 +TI 1760667401.177526950 +UH 0 33 l 2065 10583 4 +UH 0 37 l 3993 10760 4 +UH 0 38 l 1721 10822 4 +UH 0 59 h 2032 10499 4 +UH 0 62 h 2857 10655 4 +UH 0 63 h 2942 10664 4 +PQ +SE +ID 4666 +TI 1760667401.177561759 +UH 0 33 l 1983 4620 4 +UH 0 34 l 2746 4688 4 +UH 0 46 l 2360 5094 4 +UH 0 57 l 2030 10615 4 +UH 0 58 l 1921 10465 4 +UH 0 40 h 3167 4917 4 +UH 0 56 h 2476 11014 4 +UH 0 30 h 2349 5071 4 +UH 0 31 h 1677 4653 4 +PQ +SE +ID 4667 +TI 1760667401.177613258 +UH 0 30 l 3337 10774 4 +UH 0 31 l 2492 10954 4 +UH 0 20 h 2360 10961 4 +UH 0 22 h 3466 10935 4 +PQ +SE +ID 4668 +TI 1760667401.177637815 +UH 0 64 l 3071 0 5 +UH 0 64 h 3047 0 5 +BD GR Veto +PQ +SE +ID 4669 +TI 1760667401.177646636 +UH 0 64 l 2575 0 5 +UH 0 29 h 2174 11206 4 +UH 0 64 h 3725 0 5 +BD GR Veto +PQ +SE +ID 4670 +TI 1760667401.177662372 +UH 0 41 l 1502 4960 0 +UH 0 42 l 2419 10460 4 +UH 0 30 h 2441 11342 4 +PQ +SE +ID 4671 +TI 1760667401.199493646 +UH 0 44 l 2238 10846 4 +UH 0 27 l 3759 10711 4 +UH 0 44 h 3736 10857 4 +UH 0 59 h 2285 10929 4 +PQ +SE +ID 4672 +TI 1760667401.199600219 +UH 0 50 l 1931 10789 4 +UH 0 51 l 2261 10850 4 +UH 0 60 l 1770 4675 0 +UH 0 61 l 1806 5039 0 +UH 0 14 h 2574 11067 4 +UH 0 16 h 1966 11260 4 +PQ +SE +ID 4673 +TI 1760667401.199685573 +UH 0 38 l 2581 10922 4 +UH 0 14 h 2601 10864 4 +PQ +SE +ID 4674 +TI 1760667401.199726819 +UH 0 26 l 2407 10690 4 +UH 0 8 h 2339 11489 4 +PQ +SE +ID 4675 +TI 1760667401.199761629 +UH 0 34 l 1787 10417 4 +UH 0 35 l 3741 10529 4 +UH 0 54 h 3061 10742 4 +UH 0 55 h 2530 10402 4 +PQ +SE +ID 4676 +TI 1760667401.199810743 +UH 0 4 l 4558 8979 4 +UH 0 5 l 1638 8911 4 +UH 0 64 l 1627 0 5 +UH 0 60 h 4452 8886 4 +UH 0 61 h 1593 9341 4 +BD GR Veto +PQ +SE +ID 4677 +TI 1760667401.199865579 +UH 0 42 l 1741 5096 0 +UH 0 43 l 1881 11138 4 +UH 0 53 h 2089 10970 4 +PQ +SE +ID 4678 +TI 1760667401.199909687 +UH 0 33 l 1593 3364 0 +UH 0 34 l 1784 9963 4 +UH 0 35 l 4271 10060 4 +UH 0 12 h 1621 3866 0 +UH 0 13 h 1703 10355 4 +UH 0 21 h 1873 10260 4 +UH 0 22 h 3899 9879 4 +UH 0 23 h 1568 10034 4 +PQ +SE +ID 4679 +TI 1760667401.199993610 +UH 0 3 l 1766 4781 0 +UH 0 4 l 1756 4728 0 +UH 0 48 h 1991 11115 4 +PQ +SE +ID 4680 +TI 1760667401.200032711 +UH 0 32 l 2087 8540 4 +UH 0 41 l 1484 8847 4 +UH 0 42 l 4127 8682 4 +UH 0 43 l 1510 8926 4 +UH 0 31 l 2564 8627 4 +UH 0 48 h 1617 8687 4 +UH 0 49 h 4074 8763 4 +UH 0 51 h 3003 8739 4 +PQ +SE +ID 4681 +TI 1760667401.200129508 +UH 0 57 l 2259 10791 4 +UH 0 12 h 2258 11128 4 +PQ +SE +ID 4682 +TI 1760667401.200170040 +UH 0 54 l 1665 4081 0 +UH 0 55 l 1512 5358 0 +UH 0 56 l 2217 9581 4 +UH 0 10 h 1775 4043 0 +UH 0 13 h 1860 10043 4 +UH 0 14 h 1940 10149 4 +PQ +SE +ID 4683 +TI 1760667401.200237035 +UH 0 16 l 1696 5227 0 +UH 0 17 l 1579 4883 0 +UH 0 47 h 1806 10904 4 +PQ +SE +ID 4684 +TI 1760667401.200275182 +UH 0 19 l 2498 10531 4 +UH 0 1 h 2472 11368 4 +PQ +SE +ID 4685 +TI 1760667401.200314521 +UH 0 1 l 1880 11290 4 +UH 0 2 l 2051 11036 4 +UH 0 35 h 2312 11111 4 +PQ +SE +ID 4686 +TI 1760667401.200369596 +UH 0 5 l 1860 10908 4 +UH 0 6 l 2618 11021 4 +UH 0 57 h 1924 11018 4 +UH 0 58 h 2460 10610 4 +PQ +SE +ID 4687 +TI 1760667401.200414896 +UH 0 37 l 4051 10695 4 +UH 0 38 l 2061 10947 4 +UH 0 52 h 2256 10938 4 +UH 0 53 h 3344 10759 4 +UH 0 54 h 2015 10948 4 +PQ +SE +ID 4688 +TI 1760667401.200474262 +UH 0 54 l 1774 9082 4 +UH 0 55 l 3869 8807 4 +UH 0 56 l 1562 9094 4 +UH 0 3 h 3261 9243 4 +UH 0 4 h 2644 9709 4 +PQ +SE +ID 4689 +TI 1760667401.200522661 +UH 0 34 l 1981 10567 4 +UH 0 35 l 2250 10709 4 +UH 0 34 h 2594 10892 4 +PQ +SE +ID 4690 +TI 1760667401.200562000 +UH 0 27 l 1926 10608 4 +UH 0 28 l 3872 10809 4 +UH 0 33 h 2886 10729 4 +UH 0 34 h 2634 10901 4 +PQ +SE +ID 4691 +TI 1760667401.200605869 +UH 0 50 l 1809 2229 0 +UH 0 51 l 1949 7658 4 +UH 0 52 l 1757 2074 0 +UH 0 20 l 2611 10318 4 +UH 0 55 h 2483 7657 4 +UH 0 2 h 2601 11416 4 +PQ +SE +ID 4692 +TI 1760667401.200680494 +UH 0 16 l 1651 4957 0 +UH 0 64 l 2439 0 5 +UH 0 52 h 1663 4695 0 +UH 0 64 h 2479 0 5 +BD GR Veto +PQ +SE +ID 4693 +TI 1760667401.200725793 +UH 0 5 l 3786 10759 4 +UH 0 7 l 3349 10390 4 +UH 0 8 l 1753 10444 4 +UH 0 17 h 2345 10812 4 +UH 0 18 h 2860 11094 4 +UH 0 19 h 3314 11283 4 +UH 0 20 h 1647 11089 4 +PQ +SE +ID 4694 +TI 1760667401.200792551 +UH 0 8 l 2635 10424 4 +UH 0 12 h 2516 11248 4 +PQ +SE +ID 4695 +TI 1760667401.200831890 +UH 0 64 l 2294 0 5 +UH 0 64 h 2352 0 5 +BD GR Veto +PQ +SE +ID 4696 +TI 1760667401.200844049 +UH 0 17 l 1804 11124 4 +UH 0 19 l 2615 10968 4 +UH 0 35 h 2599 11006 4 +UH 0 40 h 1778 10639 4 +PQ +SE +ID 4697 +TI 1760667401.200875043 +UH 0 64 l 1972 0 5 +UH 0 64 h 2010 0 5 +BD GR Veto +PQ +SE +ID 4698 +TI 1760667401.200883626 +UH 0 24 l 2421 11049 4 +UH 0 2 h 1688 5560 0 +UH 0 3 h 2284 11050 4 +PQ +SE +ID 4699 +TI 1760667401.200904846 +UH 0 37 l 4472 8789 4 +UH 0 38 l 1547 8864 4 +UH 0 61 h 4500 9303 4 +PQ +SE +ID 4700 +TI 1760667401.200925350 +UH 0 64 l 2310 0 5 +UH 0 64 h 2687 0 5 +BD GR Veto +PQ +SE +ID 4701 +TI 1760667401.200933933 +UH 0 32 l 1823 10725 4 +UH 0 33 l 3679 10322 4 +UH 0 23 l 2891 10305 4 +UH 0 39 h 1758 10134 4 +UH 0 40 h 3710 10055 4 +UH 0 41 h 1594 10454 4 +UH 0 45 h 2678 10512 4 +PQ +SE +ID 4702 +TI 1760667401.200976133 +UH 0 64 l 2382 0 5 +UH 0 64 h 2387 0 5 +BD GR Veto +PQ +SE +ID 4703 +TI 1760667401.200984716 +UH 0 64 l 3394 0 5 +UH 0 64 h 3689 0 5 +BD GR Veto +PQ +SE +ID 4704 +TI 1760667401.200992822 +UH 0 52 l 1622 8690 4 +UH 0 53 l 4379 8524 4 +UH 0 54 l 1538 8884 4 +UH 0 4 h 4303 9388 4 +PQ +SE +ID 4705 +TI 1760667401.201016426 +UH 0 22 l 2114 11046 4 +UH 0 20 h 2008 10867 4 +UH 0 21 h 1649 11197 4 +PQ +SE +ID 4706 +TI 1760667401.201036691 +UH 0 26 l 2566 11077 4 +UH 0 52 h 1606 4990 0 +UH 0 53 h 2405 11065 4 +PQ +SE +ID 4707 +TI 1760667401.201057910 +UH 0 46 l 3006 10322 4 +UH 0 47 l 1673 10557 4 +UH 0 48 l 1773 4981 0 +UH 0 64 l 2651 0 5 +UH 0 0 h 1982 11266 4 +UH 0 1 h 3369 11232 4 +UH 0 64 h 2585 0 5 +BD GR Veto +PQ +SE +ID 4708 +TI 1760667401.201086044 +UH 0 25 l 3088 9008 4 +UH 0 26 l 4230 9519 4 +UH 0 27 l 1627 8910 4 +UH 0 8 h 5616 9797 4 +PQ +SE +ID 4709 +TI 1760667401.201112031 +UH 0 46 l 1601 4933 0 +UH 0 58 l 1701 4893 0 +UH 0 59 l 1661 4890 0 +UH 0 17 h 1963 11407 4 +PQ +SE +ID 4710 +TI 1760667401.201145172 +UH 0 64 l 4638 0 5 +UH 0 22 h 1758 10995 4 +UH 0 64 h 4337 0 5 +BD GR Veto +PQ +SE +ID 4711 +TI 1760667401.201161623 +UH 0 8 l 2643 10805 4 +UH 0 9 l 3316 10692 4 +UH 0 10 l 1875 10788 4 +UH 0 58 h 2572 10914 4 +UH 0 59 h 2830 11014 4 +UH 0 60 h 2206 10742 4 +PQ +SE +ID 4712 +TI 1760667401.201194524 +UH 0 12 l 2016 10715 4 +UH 0 45 h 1794 11164 4 +UH 0 46 h 1617 3949 0 +PQ +SE +ID 4713 +TI 1760667401.201215028 +UH 0 46 l 1520 8928 4 +UH 0 47 l 5538 8890 4 +UH 0 48 l 1552 9105 4 +UH 0 57 l 1605 1248 0 +UH 0 58 l 1652 1245 0 +UH 0 59 l 1678 1524 0 +UH 0 60 l 1703 1350 0 +UH 0 61 l 1798 1527 0 +UH 0 62 l 1814 1541 0 +UH 0 63 l 1838 1341 0 +UH 0 2 h 1632 9410 4 +UH 0 3 h 5657 9001 4 +UH 0 4 h 1646 9523 4 +PQ +SE +ID 4714 +TI 1760667401.201264142 +UH 0 4 l 1845 10747 4 +UH 0 5 l 1633 4705 0 +UH 0 64 l 2130 0 5 +UH 0 5 h 1587 2264 0 +UH 0 8 h 1885 11875 4 +UH 0 64 h 2162 0 5 +BD GR Veto +PQ +SE +ID 4715 +TI 1760667401.201303243 +UH 0 64 h 1835 0 5 +BD GR Veto +PQ +SE +ID 4716 +TI 1760667401.201309442 +UH 0 64 l 1939 0 5 +UH 0 64 h 1959 0 5 +BD GR Veto +PQ +SE +ID 4717 +TI 1760667401.201318502 +UH 0 0 l 3595 8880 4 +UH 0 1 l 1625 9558 4 +UH 0 64 l 2312 0 5 +UH 0 41 h 4460 9435 4 +BD GR Veto +PQ +SE +ID 4718 +TI 1760667401.201339244 +UH 0 25 h 1518 5578 0 +PQ +SE +ID 4719 +TI 1760667401.201349973 +UH 0 14 l 2105 10531 4 +UH 0 15 l 2621 10529 4 +UH 0 19 l 1655 3043 0 +UH 0 20 l 1711 4308 0 +UH 0 21 l 4054 11081 4 +UH 0 30 l 1632 2044 0 +UH 0 31 l 1677 2287 0 +UH 0 17 h 1553 2922 0 +UH 0 19 h 1756 11211 4 +UH 0 20 h 2659 10898 4 +UH 0 21 h 1645 11206 4 +UH 0 27 h 4038 10714 4 +PQ +SE +ID 4720 +TI 1760667401.201407909 +UH 0 52 l 1617 5069 0 +UH 0 53 l 2020 10925 4 +UH 0 35 h 1992 10860 4 +UH 0 36 h 1681 4802 0 +PQ +SE +ID 4721 +TI 1760667401.201433420 +UH 0 9 l 1787 5266 0 +UH 0 26 h 1747 5697 0 +PQ +SE +ID 4722 +TI 1760667401.201451778 +UH 0 43 l 1563 5504 0 +UH 0 41 h 1638 4790 0 +PQ +SE +ID 4723 +TI 1760667401.201469898 +UH 0 28 l 1650 4694 0 +UH 0 29 l 1730 5379 0 +UH 0 32 h 1687 11683 4 +PQ +SE +ID 4724 +TI 1760667401.201490640 +UH 0 39 l 1922 10965 4 +UH 0 39 h 1932 11161 4 +PQ +SE +ID 4725 +TI 1760667401.201509952 +UH 0 18 l 2446 10685 4 +UH 0 64 l 1681 0 5 +UH 0 9 h 2396 10808 4 +UH 0 10 h 1562 4899 0 +UH 0 64 h 1744 0 5 +BD GR Veto +PQ +SE +ID 4726 +TI 1760667401.201535463 +UH 0 18 l 2553 10801 4 +UH 0 37 h 2552 11459 4 +PQ +SE +ID 4727 +TI 1760667401.201553583 +UH 0 24 l 1712 9248 4 +UH 0 25 l 4139 9299 4 +UH 0 44 h 4084 9421 4 +PQ +SE +ID 4728 +TI 1760667401.201573371 +UH 0 64 l 1690 0 5 +UH 0 64 h 1807 0 5 +BD GR Veto +PQ +SE +ID 4729 +TI 1760667401.201580762 +UH 0 37 l 2915 10462 4 +UH 0 5 h 1816 11303 4 +UH 0 6 h 2627 11321 4 +PQ +SE +ID 4730 +TI 1760667401.201601743 +UH 0 38 l 3540 10848 4 +UH 0 27 l 3614 10588 4 +UH 0 53 h 3528 10647 4 +UH 0 58 h 3510 10405 4 +PQ +SE +ID 4731 +TI 1760667401.201634407 +UH 0 40 l 2583 10814 4 +UH 0 45 h 2610 11053 4 +PQ +SE +ID 4732 +TI 1760667401.201656818 +UH 0 42 l 1644 9108 4 +UH 0 43 l 7313 9015 4 +UH 0 44 l 1569 8960 4 +UH 0 52 l 1765 9050 4 +UH 0 45 h 1715 8950 4 +UH 0 46 h 1650 8742 4 +UH 0 47 h 5958 8548 4 +UH 0 48 h 3062 8742 4 +PQ +SE +ID 4733 +TI 1760667401.201697826 +UH 0 40 l 1665 9532 4 +UH 0 41 l 3070 9457 4 +UH 0 46 l 1504 5266 0 +UH 0 47 l 2598 9331 4 +UH 0 62 l 1688 1542 0 +UH 0 63 l 1625 1360 0 +UH 0 64 l 2661 0 5 +UH 0 50 h 1644 3280 0 +UH 0 51 h 2554 9525 4 +UH 0 53 h 3302 9458 4 +UH 0 64 h 2685 0 5 +BD GR Veto +PQ +SE +ID 4734 +TI 1760667401.201748132 +UH 0 63 l 1869 10899 4 +UH 0 64 l 2300 0 5 +UH 0 28 h 2589 10672 4 +UH 0 64 h 2047 0 5 +BD GR Veto +PQ +SE +ID 4735 +TI 1760667401.219052314 +UH 0 9 l 1803 10752 4 +UH 0 10 l 4702 10456 4 +UH 0 11 l 2434 10234 4 +UH 0 17 h 4537 11070 4 +UH 0 18 h 2401 10992 4 +PQ +SE +ID 4736 +TI 1760667401.219110965 +UH 0 48 l 1518 8978 4 +UH 0 49 l 3165 8820 4 +UH 0 50 l 2011 3348 0 +UH 0 51 l 1616 5320 0 +UH 0 6 h 3697 9268 4 +PQ +SE +ID 4737 +TI 1760667401.219137430 +UH 0 32 l 2611 9993 4 +UH 0 25 l 1721 10528 4 +UH 0 26 l 4112 10427 4 +UH 0 31 l 1991 10194 4 +UH 0 59 h 2921 10210 4 +UH 0 60 h 1666 9958 4 +UH 0 61 h 4116 10242 4 +PQ +SE +ID 4738 +TI 1760667401.219173669 +UH 0 41 l 1672 5121 0 +UH 0 5 h 1770 11429 4 +PQ +SE +ID 4739 +TI 1760667401.219190835 +UH 0 18 l 1595 8979 4 +UH 0 19 l 4055 9152 4 +UH 0 6 h 4068 9799 4 +PQ +SE +ID 4740 +TI 1760667401.219211339 +UH 0 63 l 1525 5242 0 +UH 0 64 l 3907 0 5 +UH 0 64 h 3813 0 5 +BD GR Veto +PQ +SE +ID 4741 +TI 1760667401.219225168 +UH 0 36 l 1768 4798 0 +UH 0 12 h 1702 11430 4 +PQ +SE +ID 4742 +TI 1760667401.219240665 +UH 0 33 l 1956 10594 4 +UH 0 34 l 1752 4931 0 +UH 0 35 l 1765 5409 0 +UH 0 40 h 1782 10555 4 +UH 0 41 h 1774 4700 0 +UH 0 44 h 1762 4607 0 +UH 0 45 h 1704 10815 4 +PQ +SE +ID 4743 +TI 1760667401.219278335 +UH 0 31 l 5655 11018 4 +UH 0 33 h 5414 10411 4 +UH 0 34 h 1569 10678 4 +PQ +SE +ID 4744 +TI 1760667401.219300270 +UH 0 4 l 3937 9052 4 +UH 0 5 l 2199 8952 4 +UH 0 6 l 1589 9301 4 +UH 0 5 h 3531 9523 4 +UH 0 6 h 2414 9553 4 +PQ +SE +ID 4745 +TI 1760667401.219325065 +UH 0 43 l 3016 10616 4 +UH 0 6 l 2040 10975 4 +UH 0 9 l 1950 10676 4 +UH 0 31 l 2041 11032 4 +UH 0 14 h 1833 11136 4 +UH 0 15 h 2122 11099 4 +UH 0 19 h 3395 11357 4 +UH 0 20 h 1683 11160 4 +PQ +SE +ID 4746 +TI 1760667401.219383001 +UH 0 30 l 1859 11492 4 +UH 0 9 h 1839 11217 4 +PQ +SE +ID 4747 +TI 1760667401.219402074 +UH 0 45 l 1753 10811 4 +UH 0 46 l 2853 10730 4 +UH 0 51 h 2255 10867 4 +UH 0 52 h 2395 10927 4 +PQ +SE +ID 4748 +TI 1760667401.219424724 +UH 0 41 l 1755 11066 4 +UH 0 42 h 1879 10570 4 +PQ +SE +ID 4749 +TI 1760667401.219442129 +UH 0 61 l 1673 5242 0 +UH 0 62 l 1970 10881 4 +UH 0 64 l 1867 0 5 +UH 0 26 h 2104 11417 4 +UH 0 27 h 1734 5151 0 +BD GR Veto +PQ +SE +ID 4750 +TI 1760667401.219479799 +UH 0 64 h 1689 0 5 +BD GR Veto +PQ +SE +ID 4751 +TI 1760667401.219485282 +UH 0 19 l 2953 10980 4 +UH 0 56 h 2421 11071 4 +UH 0 57 h 2052 11216 4 +PQ +SE +ID 4752 +TI 1760667401.219506025 +UH 0 7 l 2858 10585 4 +UH 0 25 h 2759 11278 4 +PQ +SE +ID 4753 +TI 1760667401.219524145 +UH 0 40 l 1518 8478 4 +UH 0 41 l 4107 8505 4 +UH 0 42 l 1609 8608 4 +UH 0 37 h 2220 8553 4 +UH 0 38 h 3528 8383 4 +PQ +SE +ID 4754 +TI 1760667401.219549417 +UH 0 5 l 1794 5011 0 +UH 0 8 l 1807 4665 0 +UH 0 38 h 1780 4938 0 +UH 0 22 h 1816 11630 4 +PQ +SE +ID 4755 +TI 1760667401.219581365 +UH 0 17 l 4624 10776 4 +UH 0 34 h 1662 4010 0 +UH 0 38 h 2740 10538 4 +UH 0 39 h 3185 10239 4 +PQ +SE +ID 4756 +TI 1760667401.219610214 +UH 0 30 l 2555 11151 4 +UH 0 7 h 2618 11258 4 +PQ +SE +ID 4757 +TI 1760667401.219628572 +UH 0 40 l 1705 10483 4 +UH 0 41 l 2243 10548 4 +UH 0 15 h 2574 11430 4 +PQ +SE +ID 4758 +TI 1760667401.219649076 +UH 0 45 l 2077 10712 4 +UH 0 50 h 2150 10644 4 +PQ +SE +ID 4759 +TI 1760667401.219666957 +UH 0 42 l 2816 10738 4 +UH 0 43 l 1628 10826 4 +UH 0 4 h 3005 11509 4 +PQ +SE +ID 4760 +TI 1760667401.219687461 +UH 0 62 l 2225 10808 4 +UH 0 63 l 1550 5231 0 +UH 0 64 l 1829 0 5 +UH 0 41 h 1737 11163 4 +UH 0 42 h 1670 4414 0 +UH 0 45 h 2218 11271 4 +BD GR Veto +PQ +SE +ID 4761 +TI 1760667401.219725131 +UH 0 58 l 3035 8911 4 +UH 0 59 l 2408 9122 4 +UH 0 60 l 1592 5074 0 +UH 0 17 h 2372 9760 4 +UH 0 18 h 3098 9583 4 +PQ +SE +ID 4762 +TI 1760667401.219749450 +UH 0 27 l 1620 9038 4 +UH 0 28 l 3533 9272 4 +UH 0 29 l 3764 8842 4 +UH 0 51 h 5155 9035 4 +UH 0 52 h 1998 9142 4 +PQ +SE +ID 4763 +TI 1760667401.219773769 +UH 0 54 l 2298 11013 4 +UH 0 32 h 1682 11223 4 +UH 0 33 h 2113 10738 4 +PQ +SE +ID 4764 +TI 1760667401.219793558 +UH 0 64 l 8496 0 5 +UH 0 62 h 2016 10626 4 +UH 0 63 h 1789 10867 4 +UH 0 64 h 7331 0 5 +BD GR Veto +PQ +SE +ID 4765 +TI 1760667401.219809532 +UH 0 6 l 2367 11039 4 +UH 0 17 h 1792 10866 4 +UH 0 18 h 2060 10675 4 +PQ +SE +ID 4766 +TI 1760667401.219830036 +UH 0 23 l 3138 10929 4 +UH 0 61 h 3004 10808 4 +PQ +SE +ID 4767 +TI 1760667401.219846725 +UH 0 11 l 3520 10390 4 +UH 0 12 l 2161 10399 4 +UH 0 53 h 3871 10913 4 +PQ +SE +ID 4768 +TI 1760667401.219867229 +UH 0 30 l 1640 5537 0 +UH 0 20 h 1674 5294 0 +PQ +SE +ID 4769 +TI 1760667401.219884872 +UH 0 64 l 2671 0 5 +UH 0 64 h 2667 0 5 +BD GR Veto +PQ +SE +ID 4770 +TI 1760667401.219893455 +UH 0 64 h 1702 0 5 +BD GR Veto +PQ +SE +ID 4771 +TI 1760667401.219899177 +UH 0 0 l 1665 5194 0 +UH 0 64 l 2525 0 5 +UH 0 12 h 1576 5042 0 +UH 0 16 h 1746 11297 4 +UH 0 17 h 2234 11137 4 +BD GR Veto +PQ +SE +ID 4772 +TI 1760667401.219926357 +UH 0 48 l 2239 10035 4 +UH 0 49 l 3391 9964 4 +UH 0 50 l 1613 5366 0 +UH 0 61 h 1646 10413 4 +UH 0 62 h 4182 10211 4 +PQ +SE +ID 4773 +TI 1760667401.219952344 +UH 0 40 l 1950 10924 4 +UH 0 62 h 2084 11243 4 +PQ +SE +ID 4774 +TI 1760667401.219969987 +UH 0 58 l 2028 10355 4 +UH 0 59 l 1639 10623 4 +UH 0 34 h 2102 10907 4 +PQ +SE +ID 4775 +TI 1760667401.219990015 +UH 0 64 l 2500 0 5 +UH 0 64 h 3077 0 5 +BD GR Veto +PQ +SE +ID 4776 +TI 1760667401.219998121 +UH 0 31 l 2652 11086 4 +UH 0 8 h 2645 11608 4 +PQ +SE +ID 4777 +TI 1760667401.220015525 +UH 0 55 l 2626 10744 4 +UH 0 53 h 2693 10988 4 +PQ +SE +ID 4778 +TI 1760667401.220032930 +UH 0 7 l 2226 10812 4 +UH 0 9 l 2128 10650 4 +UH 0 11 h 2257 11301 4 +UH 0 14 h 2077 11418 4 +PQ +SE +ID 4779 +TI 1760667401.220062494 +UH 0 41 l 1697 3922 0 +UH 0 43 l 2061 9705 4 +UH 0 44 l 2098 9580 4 +UH 0 25 l 3508 9926 4 +UH 0 26 l 2351 10179 4 +UH 0 3 h 2130 10002 4 +UH 0 6 h 4173 10105 4 +UH 0 7 h 1636 10156 4 +UH 0 8 h 2082 10478 4 +UH 0 9 h 1654 10208 4 +UH 0 10 h 1790 10440 4 +PQ +SE +ID 4780 +TI 1760667401.220136404 +UH 0 52 l 4780 10302 4 +UH 0 53 l 2404 10284 4 +UH 0 40 h 2667 9834 4 +UH 0 41 h 1850 10152 4 +UH 0 42 h 4191 9669 4 +UH 0 43 h 1587 10026 4 +PQ +SE +ID 4781 +TI 1760667401.220163583 +UH 0 15 l 1720 4690 0 +UH 0 16 l 1563 1941 0 +UH 0 21 l 2407 10794 4 +UH 0 13 h 2403 11239 4 +UH 0 18 h 1701 10793 4 +PQ +SE +ID 4782 +TI 1760667401.220197916 +UH 0 13 l 3940 8860 4 +UH 0 14 l 1672 8947 4 +UH 0 15 l 3307 8868 4 +UH 0 27 l 1698 1598 0 +UH 0 29 l 1762 1526 0 +UH 0 30 l 1745 1574 0 +UH 0 31 l 1847 1592 0 +UH 0 36 h 3947 9277 4 +UH 0 19 h 3173 9730 4 +PQ +SE +ID 4783 +TI 1760667401.220242500 +UH 0 32 l 2582 10633 4 +UH 0 7 h 2043 11453 4 +UH 0 8 h 2118 11783 4 +PQ +SE +ID 4784 +TI 1760667401.220262289 +UH 0 26 l 3042 11365 4 +UH 0 19 h 2951 11021 4 +PQ +SE +ID 4785 +TI 1760667401.220282077 +UH 0 32 l 2428 10850 4 +UH 0 37 l 2545 10845 4 +UH 0 2 h 2457 10825 4 +UH 0 3 h 2621 10528 4 +PQ +SE +ID 4786 +TI 1760667401.220310449 +UH 0 11 l 2362 10547 4 +UH 0 40 h 2206 11165 4 +PQ +SE +ID 4787 +TI 1760667401.220329284 +UH 0 64 l 2161 0 5 +UH 0 64 h 2193 0 5 +BD GR Veto +PQ +SE +ID 4788 +TI 1760667401.220337152 +UH 0 32 l 2799 9934 4 +UH 0 33 l 4416 9538 4 +UH 0 10 h 2919 10182 4 +UH 0 11 h 2994 9935 4 +UH 0 12 h 1535 9897 4 +UH 0 13 h 2794 10027 4 +PQ +SE +ID 4789 +TI 1760667401.220364809 +UH 0 15 l 1677 8334 4 +UH 0 16 l 3677 8312 4 +UH 0 17 l 1576 5256 0 +UH 0 19 l 2567 8528 4 +UH 0 43 h 2507 8834 4 +UH 0 53 h 3689 8834 4 +PQ +SE +ID 4790 +TI 1760667401.220400094 +UH 0 64 l 1640 0 5 +UH 0 64 h 1679 0 5 +BD GR Veto +PQ +SE +ID 4791 +TI 1760667401.220408678 +UH 0 63 l 3115 10695 4 +UH 0 20 h 1688 10902 4 +UH 0 21 h 3007 11057 4 +PQ +SE +ID 4792 +TI 1760667401.220426559 +UH 0 17 l 3272 10730 4 +UH 0 18 l 2791 10642 4 +UH 0 19 l 1969 10515 4 +UH 0 21 l 2227 10716 4 +UH 0 33 h 4336 10130 4 +UH 0 34 h 1544 10410 4 +UH 0 29 h 2095 11105 4 +UH 0 30 h 1662 11397 4 +UH 0 31 h 1924 10735 4 +PQ +SE +ID 4793 +TI 1760667401.220467090 +UH 0 13 l 4772 9390 4 +UH 0 14 l 5290 9374 4 +UH 0 17 l 1718 9108 4 +UH 0 64 l 3362 0 5 +UH 0 1 h 1782 9725 4 +UH 0 2 h 1685 9806 4 +UH 0 3 h 7337 9182 4 +UH 0 4 h 2730 9928 4 +UH 0 5 h 1591 9786 4 +UH 0 64 h 3328 0 5 +BD GR Veto +PQ +SE +ID 4794 +TI 1760667401.220509767 +UH 0 20 l 1731 5242 0 +UH 0 21 l 2205 11073 4 +UH 0 3 h 1677 3840 0 +UH 0 7 h 2250 11318 4 +PQ +SE +ID 4795 +TI 1760667401.220537424 +UH 0 64 l 2202 0 5 +UH 0 64 h 2231 0 5 +BD GR Veto +PQ +SE +ID 4796 +TI 1760667401.220545053 +UH 0 34 l 2312 8746 4 +UH 0 27 l 1646 9127 4 +UH 0 28 l 4494 9418 4 +UH 0 29 l 1655 9094 4 +UH 0 30 l 1997 9020 4 +UH 0 37 h 1979 9456 4 +UH 0 41 h 4303 9278 4 +UH 0 42 h 1719 8972 4 +UH 0 48 h 2311 9168 4 +PQ +SE +ID 4797 +TI 1760667401.220593452 +UH 0 36 l 2854 10586 4 +UH 0 33 h 2303 9978 4 +UH 0 34 h 1921 10169 4 +PQ +SE +ID 4798 +TI 1760667401.220613956 +UH 0 28 l 2389 10955 4 +UH 0 48 h 2369 11114 4 +PQ +SE +ID 4799 +TI 1760667401.241457223 +UH 0 64 l 5691 0 5 +UH 0 64 h 5372 0 5 +BD GR Veto +PQ +SE +ID 4800 +TI 1760667401.241494417 +UH 0 50 l 3662 10759 4 +UH 0 54 h 2443 10436 4 +UH 0 55 h 2785 10062 4 +PQ +SE +ID 4801 +TI 1760667401.241517305 +UH 0 6 l 3239 10478 4 +UH 0 7 l 1711 10470 4 +UH 0 27 h 3377 11136 4 +PQ +SE +ID 4802 +TI 1760667401.241537570 +UH 0 30 l 4425 10719 4 +UH 0 6 h 2022 11308 4 +UH 0 7 h 4041 11203 4 +PQ +SE +ID 4803 +TI 1760667401.241559028 +UH 0 36 l 1668 4860 0 +UH 0 37 l 1664 4907 0 +UH 0 13 h 1763 11715 4 +PQ +SE +ID 4804 +TI 1760667401.241579771 +UH 0 64 l 1918 0 5 +UH 0 64 h 1976 0 5 +BD GR Veto +PQ +SE +ID 4805 +TI 1760667401.241587638 +UH 0 64 l 3062 0 5 +UH 0 64 h 3002 0 5 +BD GR Veto +PQ +SE +ID 4806 +TI 1760667401.241596460 +UH 0 32 l 1869 8623 4 +UH 0 33 l 3991 8239 4 +UH 0 34 l 1586 5270 0 +UH 0 49 h 4126 8737 4 +UH 0 50 h 1751 8755 4 +PQ +SE +ID 4807 +TI 1760667401.241619348 +UH 0 2 l 2810 10973 4 +UH 0 31 h 2728 10420 4 +PQ +SE +ID 4808 +TI 1760667401.241652727 +UH 0 64 l 5635 0 5 +UH 0 64 h 5303 0 5 +BD GR Veto +PQ +SE +ID 4809 +TI 1760667401.241667509 +UH 0 17 l 1582 4642 0 +UH 0 18 l 2454 10648 4 +UH 0 53 h 2474 10944 4 +PQ +SE +ID 4810 +TI 1760667401.241710662 +UH 0 64 l 2390 0 5 +UH 0 47 h 1687 4002 0 +UH 0 64 h 2298 0 5 +BD GR Veto +PQ +SE +ID 4811 +TI 1760667401.241735458 +UH 0 44 l 2026 10765 4 +UH 0 45 l 3657 10663 4 +UH 0 47 l 1649 4647 0 +UH 0 35 h 1704 10735 4 +UH 0 37 h 1842 10830 4 +UH 0 38 h 3991 10633 4 +PQ +SE +ID 4812 +TI 1760667401.241798162 +UH 0 39 l 1615 5228 0 +PQ +SE +ID 4813 +TI 1760667401.241818428 +UH 0 16 l 1866 11115 4 +UH 0 36 h 1910 11187 4 +PQ +SE +ID 4814 +TI 1760667401.241851568 +UH 0 20 l 1883 4818 0 +UH 0 2 h 1812 11617 4 +PQ +SE +ID 4815 +TI 1760667401.241892099 +UH 0 64 l 2773 0 5 +UH 0 0 h 2118 11365 4 +UH 0 64 h 2279 0 5 +BD GR Veto +PQ +SE +ID 4816 +TI 1760667401.241916418 +UH 0 29 l 5474 9471 4 +UH 0 30 l 1794 9837 4 +UH 0 35 h 1608 9185 4 +UH 0 36 h 5604 9144 4 +UH 0 37 h 1618 9393 4 +PQ +SE +ID 4817 +TI 1760667401.241962909 +UH 0 37 l 3978 10892 4 +UH 0 32 h 3558 10416 4 +UH 0 31 h 1792 10414 4 +PQ +SE +ID 4818 +TI 1760667401.242000579 +UH 0 26 l 1677 8810 4 +UH 0 27 l 4218 8602 4 +UH 0 28 l 3051 8790 4 +UH 0 21 h 4087 8977 4 +UH 0 29 h 2939 8977 4 +PQ +SE +ID 4819 +TI 1760667401.242064476 +UH 0 15 l 2383 10648 4 +UH 0 30 l 1614 2715 0 +UH 0 31 l 1644 2298 0 +UH 0 60 h 2071 10865 4 +UH 0 61 h 1714 5114 0 +PQ +SE +ID 4820 +TI 1760667401.242116928 +UH 0 64 l 2152 0 5 +UH 0 64 h 2202 0 5 +BD GR Veto +PQ +SE +ID 4821 +TI 1760667401.242131710 +UH 0 17 l 2479 10654 4 +UH 0 40 h 2461 11085 4 +PQ +SE +ID 4822 +TI 1760667401.242165327 +UH 0 47 l 2086 10929 4 +UH 0 48 l 2319 10984 4 +UH 0 63 l 1520 1959 0 +UH 0 2 h 2983 11324 4 +UH 0 4 h 1662 3081 0 +PQ +SE +ID 4823 +TI 1760667401.242221117 +UH 0 16 l 1849 10636 4 +UH 0 4 h 1955 11727 4 +PQ +SE +ID 4824 +TI 1760667401.242253780 +UH 0 64 l 1791 0 5 +UH 0 64 h 2522 0 5 +BD GR Veto +PQ +SE +ID 4825 +TI 1760667401.242268323 +UH 0 64 l 2127 0 5 +UH 0 3 h 1644 3955 0 +UH 0 64 h 2141 0 5 +BD GR Veto +PQ +SE +ID 4826 +TI 1760667401.242297887 +UH 0 63 l 1523 8539 4 +UH 0 64 l 4347 0 5 +UH 0 64 h 4218 0 5 +BD GR Veto +PQ +SE +ID 4827 +TI 1760667401.242321729 +UH 0 64 l 2169 0 5 +UH 0 64 h 2393 0 5 +BD GR Veto +PQ +SE +ID 4828 +TI 1760667401.242336511 +UH 0 44 l 3349 8286 4 +UH 0 45 l 1534 8381 4 +UH 0 49 h 3417 8726 4 +PQ +SE +ID 4829 +TI 1760667401.242374181 +UH 0 55 l 2159 10865 4 +UH 0 56 l 1604 4959 0 +UH 0 59 l 2313 10273 4 +UH 0 39 h 2293 10208 4 +UH 0 40 h 1625 3394 0 +UH 0 50 h 2395 10689 4 +PQ +SE +ID 4830 +TI 1760667401.242445707 +UH 0 20 l 2991 8592 4 +UH 0 21 l 1592 9024 4 +UH 0 55 h 3048 8821 4 +PQ +SE +ID 4831 +TI 1760667401.242483377 +UH 0 50 l 2215 10671 4 +UH 0 51 l 1639 4468 0 +UH 0 15 h 2292 11583 4 +PQ +SE +ID 4832 +TI 1760667401.242525339 +UH 0 24 l 2014 11138 4 +UH 0 37 h 1953 11391 4 +PQ +SE +ID 4833 +TI 1760667401.242558717 +UH 0 44 l 4031 8407 4 +UH 0 45 l 1544 8514 4 +UH 0 55 h 3941 8584 4 +UH 0 56 h 1789 8924 4 +PQ +SE +ID 4834 +TI 1760667401.242603063 +UH 0 61 l 2403 8672 4 +UH 0 63 l 4429 8829 4 +UH 0 64 l 1915 0 5 +UH 0 52 h 3536 8758 4 +UH 0 53 h 1608 8907 4 +UH 0 54 h 3430 8883 4 +UH 0 64 h 1671 0 5 +BD GR Veto +PQ +SE +ID 4835 +TI 1760667401.242660522 +UH 0 49 l 2131 10948 4 +UH 0 53 l 1952 10943 4 +UH 0 14 h 1580 4730 0 +UH 0 15 h 1912 11012 4 +UH 0 20 h 2205 10844 4 +PQ +SE +ID 4836 +TI 1760667401.242727518 +UH 0 53 l 1742 5060 0 +UH 0 54 h 1708 11551 4 +PQ +SE +ID 4837 +TI 1760667401.242760181 +UH 0 42 l 1608 9006 4 +UH 0 43 l 5567 8935 4 +UH 0 44 l 1503 8876 4 +UH 0 53 h 1969 8764 4 +UH 0 55 h 1688 8607 4 +UH 0 56 h 5200 8579 4 +PQ +SE +ID 4838 +TI 1760667401.242816925 +UH 0 10 l 2201 11051 4 +UH 0 20 h 2173 10896 4 +PQ +SE +ID 4839 +TI 1760667401.242851257 +UH 0 64 l 4055 0 5 +UH 0 64 h 3952 0 5 +BD GR Veto +PQ +SE +ID 4840 +TI 1760667401.242865800 +UH 0 64 l 1700 0 5 +UH 0 64 h 2132 0 5 +BD GR Veto +PQ +SE +ID 4841 +TI 1760667401.242880105 +UH 0 34 l 2093 10715 4 +UH 0 62 h 2137 11093 4 +PQ +SE +ID 4842 +TI 1760667401.242897748 +UH 0 64 l 1749 0 5 +UH 0 64 h 1810 0 5 +BD GR Veto +PQ +SE +ID 4843 +TI 1760667401.242905378 +UH 0 14 l 2563 10862 4 +UH 0 8 h 1947 11812 4 +UH 0 10 h 2080 11574 4 +UH 0 11 h 1676 5477 0 +PQ +SE +ID 4844 +TI 1760667401.242933273 +UH 0 16 l 2585 10814 4 +UH 0 18 l 1763 5182 0 +UH 0 24 l 1711 4815 0 +UH 0 33 h 1818 10731 4 +UH 0 35 h 2621 11134 4 +PQ +SE +ID 4845 +TI 1760667401.242979049 +UH 0 29 l 2339 10487 4 +UH 0 8 h 2295 11706 4 +PQ +SE +ID 4846 +TI 1760667401.242997169 +UH 0 6 l 2866 11070 4 +UH 0 28 h 2878 10628 4 +PQ +SE +ID 4847 +TI 1760667401.243014335 +UH 0 64 l 3027 0 5 +UH 0 64 h 2989 0 5 +BD GR Veto +PQ +SE +ID 4848 +TI 1760667401.243022680 +UH 0 33 l 1729 4833 0 +UH 0 30 h 1729 11998 4 +PQ +SE +ID 4849 +TI 1760667401.243040323 +UH 0 14 l 2439 10638 4 +UH 0 15 l 2017 10603 4 +UH 0 13 h 2786 11252 4 +PQ +SE +ID 4850 +TI 1760667401.243060111 +UH 0 64 l 5685 0 5 +UH 0 64 h 5432 0 5 +BD GR Veto +PQ +SE +ID 4851 +TI 1760667401.243068456 +UH 0 31 l 2382 11129 4 +UH 0 52 h 2376 11041 4 +PQ +SE +ID 4852 +TI 1760667401.243085861 +UH 0 1 l 1709 4931 0 +UH 0 2 l 2565 10586 4 +UH 0 7 h 2750 11335 4 +PQ +SE +ID 4853 +TI 1760667401.243106126 +UH 0 58 l 1790 10551 4 +UH 0 59 l 2231 10716 4 +UH 0 52 h 1628 4898 0 +UH 0 53 h 2414 10863 4 +PQ +SE +ID 4854 +TI 1760667401.243129014 +UH 0 33 l 2056 10608 4 +UH 0 21 l 3447 10896 4 +UH 0 63 h 3442 10952 4 +UH 0 5 h 2047 11297 4 +PQ +SE +ID 4855 +TI 1760667401.243157863 +UH 0 56 l 3329 10823 4 +UH 0 62 h 2194 10955 4 +UH 0 63 h 2767 10966 4 +PQ +SE +ID 4856 +TI 1760667401.243175268 +UH 0 19 l 2176 10978 4 +UH 0 64 l 1656 0 5 +UH 0 0 h 2236 11297 4 +BD GR Veto +PQ +SE +ID 4857 +TI 1760667401.243193387 +UH 0 59 l 1718 10721 4 +UH 0 60 l 3250 10356 4 +UH 0 14 h 1678 11099 4 +UH 0 15 h 3243 11073 4 +PQ +SE +ID 4858 +TI 1760667401.243215799 +UH 0 64 h 1820 0 5 +BD GR Veto +PQ +SE +ID 4859 +TI 1760667401.243225336 +UH 0 36 l 1808 10545 4 +UH 0 37 l 3482 10783 4 +UH 0 39 l 2423 10754 4 +UH 0 32 h 2324 10425 4 +UH 0 20 h 3678 10687 4 +PQ +SE +ID 4860 +TI 1760667401.243257284 +UH 0 5 l 1639 5201 0 +UH 0 6 l 3285 8977 4 +UH 0 7 l 2459 8902 4 +UH 0 39 h 4195 9136 4 +PQ +SE +ID 4861 +TI 1760667401.243280649 +UH 0 15 l 2817 10337 4 +UH 0 17 l 1872 10514 4 +UH 0 28 l 1692 1482 0 +UH 0 29 l 1660 1948 0 +UH 0 30 l 1646 2098 0 +UH 0 31 l 1707 2623 0 +UH 0 2 h 2817 11363 4 +UH 0 3 h 1957 10968 4 +PQ +SE +ID 4862 +TI 1760667401.243317842 +UH 0 59 l 1888 11000 4 +UH 0 48 h 1920 11225 4 +PQ +SE +ID 4863 +TI 1760667401.266322135 +UH 0 32 l 3138 10689 4 +UH 0 33 l 1753 10435 4 +UH 0 54 h 3142 10723 4 +UH 0 55 h 1773 10458 4 +PQ +SE +ID 4864 +TI 1760667401.266376972 +UH 0 58 l 1868 10928 4 +UH 0 54 h 1831 10793 4 +PQ +SE +ID 4865 +TI 1760667401.266396045 +UH 0 64 l 2752 0 5 +UH 0 64 h 2748 0 5 +BD GR Veto +PQ +SE +ID 4866 +TI 1760667401.266404628 +UH 0 8 l 1722 4188 0 +UH 0 14 l 1665 10238 4 +UH 0 15 l 3535 10015 4 +UH 0 27 l 1702 1594 0 +UH 0 28 l 1667 1851 0 +UH 0 29 l 1750 1532 0 +UH 0 30 l 1686 2127 0 +UH 0 31 l 1798 2587 0 +UH 0 0 h 1702 5004 0 +UH 0 4 h 3520 11167 4 +PQ +SE +ID 4867 +TI 1760667401.266453266 +UH 0 0 l 2316 10676 4 +UH 0 7 l 3129 10728 4 +UH 0 11 l 2901 10529 4 +UH 0 14 l 2104 10567 4 +UH 0 43 h 2014 10714 4 +UH 0 47 h 1667 10618 4 +UH 0 48 h 2852 10646 4 +UH 0 49 h 3017 10539 4 +UH 0 54 h 2246 10739 4 +PQ +SE +ID 4868 +TI 1760667401.266515254 +UH 0 57 l 2779 10385 4 +UH 0 31 h 2759 10781 4 +PQ +SE +ID 4869 +TI 1760667401.266530990 +UH 0 64 l 2235 0 5 +UH 0 64 h 2284 0 5 +BD GR Veto +PQ +SE +ID 4870 +TI 1760667401.266539096 +UH 0 64 l 1622 0 5 +BD GR Veto +PQ +SE +ID 4871 +TI 1760667401.266544818 +UH 0 52 l 1593 5390 0 +PQ +SE +ID 4872 +TI 1760667401.266556501 +UH 0 1 l 2108 10024 4 +UH 0 2 l 2465 9931 4 +UH 0 7 l 1620 9979 4 +UH 0 8 l 4270 9815 4 +UH 0 32 h 4115 10045 4 +UH 0 29 h 2366 10279 4 +UH 0 31 h 2066 10063 4 +PQ +SE +ID 4873 +TI 1760667401.266593933 +UH 0 29 l 3239 10917 4 +UH 0 23 h 1973 11119 4 +UH 0 24 h 2687 11051 4 +PQ +SE +ID 4874 +TI 1760667401.266613960 +UH 0 55 l 1542 5365 0 +UH 0 0 h 1681 5449 0 +PQ +SE +ID 4875 +TI 1760667401.266629695 +UH 0 49 l 1633 5299 0 +UH 0 50 l 1905 10542 4 +UH 0 54 l 2445 10934 4 +UH 0 55 l 2210 10641 4 +UH 0 50 h 3889 10807 4 +PQ +SE +ID 4876 +TI 1760667401.266667366 +UH 0 13 l 5086 10174 4 +UH 0 14 l 1600 8564 0 +UH 0 64 l 1998 0 5 +UH 0 61 h 1831 9790 4 +UH 0 62 h 4748 9553 4 +UH 0 63 h 1651 9826 4 +UH 0 64 h 2081 0 5 +BD GR Veto +PQ +SE +ID 4877 +TI 1760667401.266694545 +UH 0 0 l 2784 10854 4 +UH 0 55 h 2848 10145 4 +PQ +SE +ID 4878 +TI 1760667401.266710758 +UH 0 35 l 2068 10981 4 +UH 0 36 l 2251 10683 4 +UH 0 40 l 1536 5294 0 +UH 0 41 l 1639 4498 0 +UH 0 4 h 2017 11089 4 +UH 0 5 h 1701 4984 0 +UH 0 6 h 2342 11081 4 +UH 0 7 h 1702 4809 0 +PQ +SE +ID 4879 +TI 1760667401.266752004 +UH 0 64 l 2529 0 5 +UH 0 64 h 2539 0 5 +BD GR Veto +PQ +SE +ID 4880 +TI 1760667401.266761064 +UH 0 38 l 1879 10820 4 +UH 0 22 l 2669 10542 4 +UH 0 50 h 2721 10975 4 +UH 0 28 h 1996 11152 4 +PQ +SE +ID 4881 +TI 1760667401.266793012 +UH 0 26 l 2517 9650 4 +UH 0 27 l 4758 9161 4 +UH 0 42 h 1641 8655 4 +UH 0 43 h 5400 9079 4 +UH 0 44 h 1683 8732 4 +PQ +SE +ID 4882 +TI 1760667401.266821146 +UH 0 13 l 3049 10520 4 +UH 0 64 l 1936 0 5 +UH 0 0 h 1884 11260 4 +UH 0 1 h 3093 11214 4 +UH 0 64 h 1701 0 5 +BD GR Veto +PQ +SE +ID 4883 +TI 1760667401.266843557 +UH 0 52 l 2312 10560 4 +UH 0 63 h 2321 10940 4 +PQ +SE +ID 4884 +TI 1760667401.266858816 +UH 0 58 l 1570 5088 0 +UH 0 59 l 1885 10386 4 +UH 0 8 h 1949 11463 4 +PQ +SE +ID 4885 +TI 1760667401.266878604 +UH 0 0 l 1814 5055 0 +UH 0 64 l 2045 0 5 +UH 0 50 h 2337 11069 4 +BD GR Veto +PQ +SE +ID 4886 +TI 1760667401.266898155 +UH 0 64 l 1633 0 5 +UH 0 64 h 1706 0 5 +BD GR Veto +PQ +SE +ID 4887 +TI 1760667401.266906261 +UH 0 48 l 2169 11147 4 +UH 0 18 h 2042 10764 4 +UH 0 19 h 1686 11026 4 +PQ +SE +ID 4888 +TI 1760667401.266926765 +UH 0 12 l 1722 8375 4 +UH 0 13 l 5642 8919 4 +UH 0 14 l 1655 8871 4 +UH 0 8 h 2943 9329 4 +UH 0 9 h 2170 9036 4 +UH 0 24 h 3494 8992 4 +PQ +SE +ID 4889 +TI 1760667401.266964673 +UH 0 57 l 2149 10882 4 +UH 0 50 h 1649 4319 0 +UH 0 51 h 2111 10998 4 +PQ +SE +ID 4890 +TI 1760667401.266984224 +UH 0 64 l 2472 0 5 +UH 0 64 h 2479 0 5 +BD GR Veto +PQ +SE +ID 4891 +TI 1760667401.266992568 +UH 0 41 l 2162 10994 4 +UH 0 42 h 2283 11023 4 +PQ +SE +ID 4892 +TI 1760667401.267009973 +UH 0 8 l 2570 10560 4 +UH 0 13 l 1911 10682 4 +UH 0 2 h 1964 11345 4 +UH 0 4 h 2533 11524 4 +PQ +SE +ID 4893 +TI 1760667401.267039537 +UH 0 27 l 2095 10720 4 +UH 0 54 h 2007 11298 4 +PQ +SE +ID 4894 +TI 1760667401.267057180 +UH 0 58 l 2181 10478 4 +UH 0 64 l 2149 0 5 +UH 0 58 h 2165 10833 4 +UH 0 64 h 2174 0 5 +BD GR Veto +PQ +SE +ID 4895 +TI 1760667401.267080783 +UH 0 52 l 3473 10822 4 +UH 0 53 l 1833 4986 0 +UH 0 42 h 3758 9994 4 +PQ +SE +ID 4896 +TI 1760667401.267100572 +UH 0 19 l 1977 10876 4 +UH 0 20 l 2143 10455 4 +UH 0 48 h 2480 11149 4 +PQ +SE +ID 4897 +TI 1760667401.267121076 +UH 0 63 l 1525 5210 0 +UH 0 64 l 4593 0 5 +UH 0 40 h 2735 8583 4 +UH 0 64 h 3252 0 5 +BD GR Veto +PQ +SE +ID 4898 +TI 1760667401.267140626 +UH 0 64 l 3694 0 5 +UH 0 64 h 3558 0 5 +BD GR Veto +PQ +SE +ID 4899 +TI 1760667401.267148733 +UH 0 50 l 2355 10672 4 +UH 0 59 h 2318 11093 4 +PQ +SE +ID 4900 +TI 1760667401.267166376 +UH 0 64 l 3090 0 5 +UH 0 64 h 3062 0 5 +BD GR Veto +PQ +SE +ID 4901 +TI 1760667401.267174482 +UH 0 3 l 4728 9923 4 +UH 0 4 l 2467 10199 4 +UH 0 4 h 1651 10586 4 +UH 0 5 h 3802 10300 4 +UH 0 6 h 1660 10391 4 +UH 0 7 h 2130 10316 4 +UH 0 13 h 2555 10450 4 +PQ +SE +ID 4902 +TI 1760667401.267210006 +UH 0 63 l 1692 5169 0 +UH 0 64 l 2361 0 5 +UH 0 41 h 1796 11080 4 +UH 0 64 h 2359 0 5 +BD GR Veto +PQ +SE +ID 4903 +TI 1760667401.267230510 +UH 0 64 l 2595 0 5 +UH 0 64 h 2607 0 5 +BD GR Veto +PQ +SE +ID 4904 +TI 1760667401.267238616 +UH 0 60 l 3070 10443 4 +UH 0 37 h 3096 10863 4 +PQ +SE +ID 4905 +TI 1760667401.267256021 +UH 0 47 l 2306 10779 4 +UH 0 63 l 1529 1812 0 +UH 0 56 h 2346 10991 4 +PQ +SE +ID 4906 +TI 1760667401.267278671 +UH 0 15 l 1920 10915 4 +UH 0 16 h 1802 11114 4 +UH 0 17 h 1530 4639 0 +PQ +SE +ID 4907 +TI 1760667401.267297744 +UH 0 63 l 1673 10784 4 +UH 0 64 l 4633 0 5 +UH 0 49 h 1730 10838 4 +UH 0 64 h 4490 0 5 +BD GR Veto +PQ +SE +ID 4908 +TI 1760667401.267317771 +UH 0 59 l 2490 10490 4 +UH 0 64 l 1703 0 5 +UH 0 22 h 2566 11064 4 +UH 0 64 h 2303 0 5 +BD GR Veto +PQ +SE +ID 4909 +TI 1760667401.267340660 +UH 0 56 l 3277 9319 4 +UH 0 57 l 2533 9074 4 +UH 0 22 h 1665 9602 4 +UH 0 23 h 4373 9565 4 +PQ +SE +ID 4910 +TI 1760667401.267362594 +UH 0 52 l 4391 10684 4 +UH 0 62 h 4018 10411 4 +UH 0 63 h 1939 10664 4 +PQ +SE +ID 4911 +TI 1760667401.267379760 +UH 0 54 l 2015 10529 4 +UH 0 55 l 3181 10246 4 +UH 0 62 l 2638 10831 4 +UH 0 64 l 2304 0 5 +UH 0 41 h 3871 10835 4 +UH 0 45 h 2492 10363 4 +UH 0 64 h 2341 0 5 +BD GR Veto +PQ +SE +ID 4912 +TI 1760667401.267422914 +UH 0 64 l 2273 0 5 +UH 0 64 h 2294 0 5 +BD GR Veto +PQ +SE +ID 4913 +TI 1760667401.267431259 +UH 0 37 l 1939 10453 4 +UH 0 38 l 3593 10315 4 +UH 0 3 h 4117 10916 4 +PQ +SE +ID 4914 +TI 1760667401.267450809 +UH 0 49 l 1957 11038 4 +UH 0 8 h 1980 11527 4 +UH 0 9 h 1595 4694 0 +PQ +SE +ID 4915 +TI 1760667401.267471075 +UH 0 20 l 2117 10864 4 +UH 0 48 h 2042 10749 4 +PQ +SE +ID 4916 +TI 1760667401.267488241 +UH 0 20 l 3533 9838 4 +UH 0 21 l 1625 10347 4 +UH 0 26 h 3420 10356 4 +PQ +SE +ID 4917 +TI 1760667401.267508745 +UH 0 40 l 2395 10686 4 +UH 0 41 l 1737 10940 4 +UH 0 41 h 2763 11255 4 +PQ +SE +ID 4918 +TI 1760667401.267528772 +UH 0 31 l 1771 5236 0 +UH 0 44 h 1760 11435 4 +PQ +SE +ID 4919 +TI 1760667401.267547369 +UH 0 37 l 3046 10022 4 +UH 0 38 l 1544 10112 4 +UH 0 3 h 3152 10303 4 +PQ +SE +ID 4920 +TI 1760667401.267567873 +UH 0 44 l 1783 10711 4 +UH 0 45 l 4357 10630 4 +UH 0 64 l 2434 0 5 +UH 0 0 h 4532 11111 4 +UH 0 1 h 2216 11083 4 +UH 0 64 h 2051 0 5 +BD GR Veto +PQ +SE +ID 4921 +TI 1760667401.267592668 +UH 0 30 l 1722 5228 0 +UH 0 7 h 1765 11658 4 +PQ +SE +ID 4922 +TI 1760667401.267610311 +UH 0 20 l 2565 10133 4 +UH 0 21 l 2138 10589 4 +UH 0 31 h 3083 10764 4 +PQ +SE +ID 4923 +TI 1760667401.267630815 +UH 0 25 l 1792 5113 0 +UH 0 18 h 1747 11710 4 +PQ +SE +ID 4924 +TI 1760667401.267648458 +UH 0 64 h 1747 0 5 +BD GR Veto +PQ +SE +ID 4925 +TI 1760667401.267654180 +UH 0 61 l 2523 10577 4 +UH 0 57 h 2438 11259 4 +PQ +SE +ID 4926 +TI 1760667401.267672061 +UH 0 29 l 2312 11071 4 +UH 0 20 h 1740 4618 0 +UH 0 21 h 2051 11085 4 +PQ +SE +ID 4927 +TI 1760667401.288925647 +UH 0 64 l 1951 0 5 +UH 0 64 h 2025 0 5 +BD GR Veto +PQ +SE +ID 4928 +TI 1760667401.288965463 +UH 0 19 l 2843 10801 4 +UH 0 52 h 2777 11193 4 +PQ +SE +ID 4929 +TI 1760667401.288986444 +UH 0 16 l 2003 11146 4 +UH 0 5 h 2011 11082 4 +PQ +SE +ID 4930 +TI 1760667401.289004325 +UH 0 32 l 1653 3498 0 +UH 0 62 l 1766 3182 0 +UH 0 63 l 1584 1343 0 +UH 0 30 l 1615 5529 0 +UH 0 31 l 2066 10527 4 +UH 0 51 h 2146 10585 4 +UH 0 54 h 1736 9233 4 +PQ +SE +ID 4931 +TI 1760667401.289043426 +UH 0 10 l 2173 10989 4 +UH 0 11 l 1921 4847 0 +UH 0 13 l 1635 4810 0 +UH 0 19 l 1813 11258 4 +UH 0 7 h 1814 11384 4 +UH 0 8 h 1616 5353 0 +UH 0 9 h 2116 11297 4 +UH 0 12 h 1545 5017 0 +UH 0 21 h 1675 5035 0 +UH 0 22 h 1699 4573 0 +PQ +SE +ID 4932 +TI 1760667401.289099216 +UH 0 8 l 2097 10948 4 +UH 0 13 l 3213 10908 4 +UH 0 32 h 1946 10592 4 +UH 0 30 h 3144 11291 4 +PQ +SE +ID 4933 +TI 1760667401.289129972 +UH 0 40 l 1759 10411 4 +UH 0 50 l 3458 10864 4 +UH 0 51 l 2229 10861 4 +UH 0 35 h 3988 10661 4 +UH 0 36 h 1708 10822 4 +UH 0 21 h 1824 11384 4 +PQ +SE +ID 4934 +TI 1760667401.289177656 +UH 0 13 l 4170 10363 4 +UH 0 14 l 1776 10425 4 +UH 0 28 h 2334 10889 4 +UH 0 29 h 3497 11057 4 +PQ +SE +ID 4935 +TI 1760667401.289200782 +UH 0 21 l 1591 9026 4 +UH 0 22 l 4258 8931 4 +UH 0 23 l 1722 8900 4 +UH 0 22 h 4231 8959 4 +PQ +SE +ID 4936 +TI 1760667401.289223909 +UH 0 48 l 1846 11375 4 +UH 0 9 h 1741 5164 0 +UH 0 10 h 1700 11813 4 +PQ +SE +ID 4937 +TI 1760667401.289244413 +UH 0 43 l 1529 4353 0 +UH 0 44 l 2617 8728 4 +UH 0 49 l 1511 9097 4 +UH 0 50 l 3852 8894 4 +UH 0 51 l 1919 9163 4 +UH 0 52 l 1803 3335 0 +UH 0 58 h 2554 8969 4 +UH 0 60 h 2227 8898 4 +UH 0 61 h 3857 9128 4 +PQ +SE +ID 4938 +TI 1760667401.289291620 +UH 0 64 l 2180 0 5 +UH 0 64 h 2227 0 5 +BD GR Veto +PQ +SE +ID 4939 +TI 1760667401.289299726 +UH 0 36 l 1920 10694 4 +UH 0 38 l 2137 10978 4 +UH 0 57 h 2184 10792 4 +UH 0 59 h 1576 3942 0 +UH 0 60 h 1780 4474 0 +PQ +SE +ID 4940 +TI 1760667401.289329767 +UH 0 50 l 2991 8532 4 +UH 0 51 l 3061 8655 4 +UH 0 52 l 1595 5373 0 +UH 0 15 h 4383 9418 4 +PQ +SE +ID 4941 +TI 1760667401.289352416 +UH 0 46 l 2559 10759 4 +UH 0 39 h 1839 10402 4 +UH 0 40 h 2369 10365 4 +PQ +SE +ID 4942 +TI 1760667401.289372920 +UH 0 31 l 3696 10976 4 +UH 0 0 h 3714 11178 4 +PQ +SE +ID 4943 +TI 1760667401.289388656 +UH 0 41 l 1997 10599 4 +UH 0 42 l 3542 10507 4 +UH 0 8 h 4047 11532 4 +PQ +SE +ID 4944 +TI 1760667401.289408445 +UH 0 64 l 2280 0 5 +UH 0 64 h 2329 0 5 +BD GR Veto +PQ +SE +ID 4945 +TI 1760667401.289416790 +UH 0 5 l 3518 10701 4 +UH 0 30 h 3248 11257 4 +UH 0 31 h 1670 10698 4 +PQ +SE +ID 4946 +TI 1760667401.289436578 +UH 0 55 l 3635 10728 4 +UH 0 42 h 3732 10132 4 +PQ +SE +ID 4947 +TI 1760667401.289454698 +UH 0 46 l 2618 10614 4 +UH 0 42 h 2732 10868 4 +PQ +SE +ID 4948 +TI 1760667401.289472818 +UH 0 42 l 4204 10655 4 +UH 0 51 l 2992 10265 4 +UH 0 52 l 1618 10309 4 +UH 0 1 h 3023 10802 4 +UH 0 16 h 2871 10667 4 +UH 0 17 h 2667 10538 4 +PQ +SE +ID 4949 +TI 1760667401.289510488 +UH 0 36 l 1638 5149 0 +PQ +SE +ID 4950 +TI 1760667401.289521455 +UH 0 37 l 1602 3704 0 +UH 0 38 l 1699 3176 0 +UH 0 42 l 1625 9337 4 +UH 0 43 l 3317 9242 4 +UH 0 7 h 1640 3064 0 +UH 0 11 h 1792 9754 4 +UH 0 14 h 3247 9752 4 +UH 0 15 h 1685 9930 4 +PQ +SE +ID 4951 +TI 1760667401.289568662 +UH 0 18 l 1863 10452 4 +UH 0 22 h 1940 11354 4 +PQ +SE +ID 4952 +TI 1760667401.289587020 +UH 0 45 l 1982 10806 4 +UH 0 47 l 1800 5288 0 +UH 0 48 l 1746 5350 0 +UH 0 51 l 1801 5114 0 +UH 0 50 h 2187 11194 4 +UH 0 53 h 1736 11175 4 +UH 0 56 h 2020 11336 4 +PQ +SE +ID 4953 +TI 1760667401.289633274 +UH 0 12 l 2147 4524 0 +UH 0 13 l 2922 10578 4 +UH 0 13 h 3071 11210 4 +UH 0 14 h 1885 11334 4 +PQ +SE +ID 4954 +TI 1760667401.289654970 +UH 0 17 l 1971 10851 4 +UH 0 20 l 1960 10846 4 +UH 0 24 l 2768 10998 4 +UH 0 44 h 1945 10836 4 +UH 0 48 h 1878 10890 4 +UH 0 54 h 2561 11129 4 +UH 0 55 h 1702 4277 0 +PQ +SE +ID 4955 +TI 1760667401.289705276 +UH 0 46 l 1654 5266 0 +UH 0 52 l 1597 7174 4 +UH 0 53 l 3498 7039 4 +UH 0 54 l 1535 7356 4 +UH 0 62 h 3533 11972 4 +UH 0 63 h 1559 9052 0 +PQ +SE +ID 4956 +TI 1760667401.289742946 +UH 0 39 l 1709 4125 0 +UH 0 40 l 1569 5298 0 +UH 0 41 l 2334 10548 4 +UH 0 45 h 1722 4389 0 +UH 0 53 h 2422 10433 4 +PQ +SE +ID 4957 +TI 1760667401.289772748 +UH 0 1 l 1967 11279 4 +UH 0 36 h 2000 11490 4 +PQ +SE +ID 4958 +TI 1760667401.289790630 +UH 0 2 l 2117 10867 4 +UH 0 53 h 2069 11173 4 +PQ +SE +ID 4959 +TI 1760667401.289808034 +UH 0 49 l 3169 10867 4 +UH 0 18 h 2044 10936 4 +UH 0 19 h 2658 11148 4 +PQ +SE +ID 4960 +TI 1760667401.289828538 +UH 0 42 l 1740 5351 0 +UH 0 36 h 1691 4468 0 +UH 0 37 h 1634 3668 0 +PQ +SE +ID 4961 +TI 1760667401.289848804 +UH 0 55 l 1813 10158 4 +UH 0 56 l 2941 10354 4 +UH 0 6 l 2221 10057 4 +UH 0 41 h 2202 9946 4 +UH 0 16 h 3226 10162 4 +UH 0 17 h 1537 10131 4 +PQ +SE +ID 4962 +TI 1760667401.289891242 +UH 0 50 l 1577 8805 4 +UH 0 51 l 4438 8790 4 +UH 0 52 l 1635 8832 4 +UH 0 9 h 4423 9423 4 +PQ +SE +ID 4963 +TI 1760667401.289913654 +UH 0 45 l 1793 10918 4 +UH 0 33 h 1831 10931 4 +PQ +SE +ID 4964 +TI 1760667401.289930820 +UH 0 19 l 2852 10788 4 +UH 0 46 h 2653 11060 4 +UH 0 47 h 1760 4661 0 +PQ +SE +ID 4965 +TI 1760667401.289950132 +UH 0 62 l 1664 5381 0 +UH 0 24 h 1577 4498 0 +PQ +SE +ID 4966 +TI 1760667401.289967775 +UH 0 43 l 2065 10837 4 +UH 0 44 l 1687 10709 4 +UH 0 46 l 1912 10592 4 +UH 0 47 l 2347 10892 4 +UH 0 62 l 1615 2141 0 +UH 0 63 l 1534 2464 0 +UH 0 16 h 2352 11053 4 +UH 0 17 h 2330 11060 4 +UH 0 18 h 2054 10799 4 +PQ +SE +ID 4967 +TI 1760667401.290013074 +UH 0 11 l 3051 10439 4 +UH 0 49 h 2920 11010 4 +PQ +SE +ID 4968 +TI 1760667401.290031671 +UH 0 43 l 1663 5220 0 +UH 0 31 h 1702 5226 0 +PQ +SE +ID 4969 +TI 1760667401.290046215 +UH 0 54 l 1554 9352 4 +UH 0 55 l 3875 9032 4 +UH 0 56 l 1549 5456 0 +UH 0 8 h 3968 10063 4 +PQ +SE +ID 4970 +TI 1760667401.290068387 +UH 0 4 l 1607 3938 0 +UH 0 5 l 1905 4383 0 +UH 0 17 l 2232 10223 4 +UH 0 18 l 2828 10067 4 +UH 0 10 h 1905 11311 4 +UH 0 25 h 3404 11184 4 +PQ +SE +ID 4971 +TI 1760667401.290105342 +UH 0 15 l 2929 10601 4 +UH 0 27 l 1627 2512 0 +UH 0 28 l 1695 1487 0 +UH 0 29 l 1681 2092 0 +UH 0 30 l 1647 2202 0 +UH 0 31 l 1709 2310 0 +UH 0 64 l 1630 0 5 +UH 0 35 h 2850 10851 4 +UH 0 64 h 1687 0 5 +BD GR Veto +PQ +SE +ID 4972 +TI 1760667401.290147542 +UH 0 49 l 2804 9449 4 +UH 0 50 l 4310 9446 4 +UH 0 14 h 1568 4901 0 +UH 0 15 h 3202 9446 4 +UH 0 16 h 1580 5739 0 +UH 0 18 h 2637 9310 4 +UH 0 19 h 2251 9501 4 +UH 0 20 h 2086 9371 4 +PQ +SE +ID 4973 +TI 1760667401.290183305 +UH 0 64 l 2094 0 5 +UH 0 64 h 2142 0 5 +BD GR Veto +PQ +SE +ID 4974 +TI 1760667401.290191650 +UH 0 16 l 1690 4092 0 +UH 0 17 l 1615 4954 0 +UH 0 19 l 3100 10360 4 +UH 0 20 l 2289 10142 4 +UH 0 21 h 1765 11287 4 +UH 0 22 h 3740 10921 4 +PQ +SE +ID 4975 +TI 1760667401.290222167 +UH 0 64 l 2666 0 5 +UH 0 64 h 2667 0 5 +BD GR Veto +PQ +SE +ID 4976 +TI 1760667401.290230751 +UH 0 31 l 4524 8826 4 +UH 0 64 l 1633 0 5 +UH 0 1 h 4542 9217 4 +BD GR Veto +PQ +SE +ID 4977 +TI 1760667401.290250778 +UH 0 41 l 2755 10825 4 +UH 0 42 l 1909 10884 4 +UH 0 56 h 3192 11049 4 +PQ +SE +ID 4978 +TI 1760667401.290270805 +UH 0 61 l 1652 5271 0 +UH 0 62 l 1779 9212 4 +UH 0 63 l 3997 9072 4 +UH 0 23 h 4265 9308 4 +PQ +SE +ID 4979 +TI 1760667401.290291309 +UH 0 54 l 1737 11363 4 +UH 0 52 h 1763 10674 4 +PQ +SE +ID 4980 +TI 1760667401.290308952 +UH 0 45 l 2356 10749 4 +UH 0 36 h 2175 10782 4 +UH 0 37 h 1823 11063 4 +PQ +SE +ID 4981 +TI 1760667401.290329694 +UH 0 33 l 3426 10540 4 +UH 0 57 h 3046 10844 4 +UH 0 58 h 1926 10592 4 +PQ +SE +ID 4982 +TI 1760667401.290349483 +UH 0 42 l 1614 8968 4 +UH 0 43 l 4364 8867 4 +UH 0 44 l 1511 8806 4 +UH 0 60 h 4417 8836 4 +PQ +SE +ID 4983 +TI 1760667401.290372848 +UH 0 42 l 1905 11211 4 +UH 0 43 l 1901 11158 4 +UH 0 3 h 2351 11087 4 +PQ +SE +ID 4984 +TI 1760667401.290393352 +UH 0 9 l 2632 10833 4 +UH 0 10 l 3362 10760 4 +UH 0 11 l 1768 10457 4 +UH 0 14 l 2165 10650 4 +UH 0 18 l 2108 10363 4 +UH 0 16 h 3287 11263 4 +UH 0 17 h 2568 11143 4 +UH 0 25 h 2392 11101 4 +UH 0 26 h 1756 11328 4 +PQ +SE +ID 4985 +TI 1760667401.290441989 +UH 0 7 l 4190 10867 4 +UH 0 49 h 2601 10453 4 +UH 0 50 h 1836 10440 4 +UH 0 52 h 2802 10463 4 +PQ +SE +ID 4986 +TI 1760667401.290466547 +UH 0 50 l 1665 10496 4 +UH 0 52 l 2036 10906 4 +UH 0 54 l 3077 11003 4 +UH 0 47 h 1825 10148 4 +UH 0 48 h 1795 10281 4 +UH 0 55 h 1695 10166 4 +UH 0 56 h 3067 10348 4 +UH 0 60 h 1646 4002 0 +PQ +SE +ID 4987 +TI 1760667401.290518522 +UH 0 14 l 2568 8695 4 +UH 0 15 l 4736 8489 4 +UH 0 16 l 1586 8762 4 +UH 0 26 l 1764 1628 0 +UH 0 27 l 1761 1591 0 +UH 0 28 l 1773 1482 0 +UH 0 29 l 1843 1525 0 +UH 0 30 l 1860 1569 0 +UH 0 31 l 2043 1589 0 +UH 0 33 h 4218 8769 4 +UH 0 34 h 2753 8924 4 +PQ +SE +ID 4988 +TI 1760667401.290564537 +UH 0 7 l 2686 10956 4 +UH 0 24 h 2656 10963 4 +PQ +SE +ID 4989 +TI 1760667401.290583372 +UH 0 59 l 1709 5105 0 +UH 0 48 h 1727 5473 0 +PQ +SE +ID 4990 +TI 1760667401.290601730 +UH 0 64 l 2463 0 5 +UH 0 64 h 2493 0 5 +BD GR Veto +PQ +SE +ID 4991 +TI 1760667401.307642221 +UH 0 47 l 1549 8948 4 +UH 0 48 l 5449 8784 4 +UH 0 49 l 1667 8871 4 +UH 0 6 h 3084 9473 4 +UH 0 7 h 4220 9413 4 +PQ +SE +ID 4992 +TI 1760667401.307732105 +UH 0 41 l 2318 11084 4 +UH 0 59 h 2376 10482 4 +PQ +SE +ID 4993 +TI 1760667401.307772874 +UH 0 41 l 1579 5419 0 +UH 0 12 h 1542 4077 0 +UH 0 13 h 1617 4497 0 +PQ +SE +ID 4994 +TI 1760667401.307815790 +UH 0 34 l 4078 8672 4 +UH 0 35 l 1562 8990 4 +UH 0 28 l 2691 8779 4 +UH 0 29 l 2081 8701 4 +UH 0 33 h 1801 8649 4 +UH 0 34 h 3845 8701 4 +UH 0 35 h 2899 9000 4 +PQ +SE +ID 4995 +TI 1760667401.307919502 +UH 0 64 l 4129 0 5 +UH 0 64 h 4010 0 5 +BD GR Veto +PQ +SE +ID 4996 +TI 1760667401.307945251 +UH 0 64 l 1759 0 5 +UH 0 64 h 2267 0 5 +BD GR Veto +PQ +SE +ID 4997 +TI 1760667401.307960510 +UH 0 16 l 1709 4828 0 +UH 0 17 l 1722 5221 0 +UH 0 44 h 1908 11233 4 +PQ +SE +ID 4998 +TI 1760667401.308007717 +UH 0 48 l 3381 10014 4 +UH 0 51 l 1842 3999 0 +UH 0 52 l 2467 9855 4 +UH 0 53 l 2566 9843 4 +UH 0 20 h 2732 9639 4 +UH 0 23 h 1577 9820 4 +UH 0 24 h 4013 9544 4 +UH 0 25 h 1539 5423 0 +UH 0 26 h 1804 10323 4 +PQ +SE +ID 4999 +TI 1760667401.308125495 +UH 0 24 l 2271 10448 4 +UH 0 30 h 2157 11512 4 +PQ +SE +ID 5000 +TI 1760667401.308162212 +UH 0 19 l 1948 10790 4 +UH 0 64 l 2256 0 5 +UH 0 3 h 1956 11051 4 +UH 0 64 h 2311 0 5 +BD GR Veto +PQ +SE +ID 5001 +TI 1760667401.308207511 +UH 0 54 l 2490 11008 4 +UH 0 32 h 2451 10453 4 +UH 0 31 h 1566 4828 0 +PQ +SE +ID 5002 +TI 1760667401.308249235 +UH 0 42 l 3025 11059 4 +UH 0 54 h 2929 10525 4 +PQ +SE +ID 5003 +TI 1760667401.308284044 +UH 0 10 l 2438 11052 4 +UH 0 49 h 2380 10585 4 +PQ +SE +ID 5004 +TI 1760667401.308322668 +UH 0 64 l 2343 0 5 +UH 0 64 h 2384 0 5 +BD GR Veto +PQ +SE +ID 5005 +TI 1760667401.308340311 +UH 0 39 l 1610 5226 0 +UH 0 40 l 2613 9651 4 +UH 0 22 h 2750 10160 4 +PQ +SE +ID 5006 +TI 1760667401.308375358 +UH 0 37 l 3040 10658 4 +UH 0 1 h 3074 11249 4 +PQ +SE +ID 5007 +TI 1760667401.308408975 +UH 0 17 l 2343 10717 4 +UH 0 18 l 1676 4878 0 +UH 0 64 l 2109 0 5 +UH 0 0 h 1685 11386 4 +UH 0 1 h 1679 4638 0 +UH 0 2 h 2322 11457 4 +UH 0 64 h 2172 0 5 +BD GR Veto +PQ +SE +ID 5008 +TI 1760667401.308462858 +UH 0 54 l 2282 10423 4 +UH 0 55 l 2725 10052 4 +UH 0 27 l 1669 9994 4 +UH 0 28 l 3538 10157 4 +UH 0 23 h 3565 10716 4 +UH 0 27 h 2514 10856 4 +UH 0 28 h 2697 10577 4 +PQ +SE +ID 5009 +TI 1760667401.308539628 +UH 0 48 l 1834 11168 4 +UH 0 52 h 1890 11529 4 +PQ +SE +ID 5010 +TI 1760667401.308574199 +UH 0 55 l 2805 10653 4 +UH 0 52 h 2054 11211 4 +UH 0 53 h 2378 11078 4 +PQ +SE +ID 5011 +TI 1760667401.308613061 +UH 0 27 l 1732 11032 4 +UH 0 28 l 2351 11273 4 +UH 0 59 h 2323 10791 4 +UH 0 60 h 1631 10594 4 +PQ +SE +ID 5012 +TI 1760667401.308656215 +UH 0 22 l 2261 10528 4 +UH 0 25 l 5023 11107 4 +UH 0 60 h 4723 10445 4 +UH 0 61 h 1696 10996 4 +UH 0 62 h 2327 10873 4 +PQ +SE +ID 5013 +TI 1760667401.308722972 +UH 0 49 l 1529 4816 0 +UH 0 50 l 1867 10511 4 +UH 0 54 l 1592 4229 0 +UH 0 55 l 1701 5371 0 +UH 0 1 h 1981 11098 4 +UH 0 3 h 1920 10899 4 +PQ +SE +ID 5014 +TI 1760667401.308790922 +UH 0 61 l 1647 9095 4 +UH 0 62 l 4508 9087 4 +UH 0 39 h 4468 8881 4 +PQ +SE +ID 5015 +TI 1760667401.308835744 +UH 0 19 l 1726 5226 0 +UH 0 64 l 2257 0 5 +UH 0 0 h 1814 11260 4 +UH 0 64 h 2217 0 5 +BD GR Veto +PQ +SE +ID 5016 +TI 1760667401.308876037 +UH 0 22 l 2066 10641 4 +UH 0 23 l 4359 10577 4 +UH 0 27 l 1751 4893 0 +UH 0 28 l 2285 10673 4 +UH 0 28 h 1795 10737 4 +UH 0 29 h 4828 10827 4 +UH 0 30 h 2010 11117 4 +PQ +SE +ID 5017 +TI 1760667401.308941602 +UH 0 48 l 1551 5407 0 +UH 0 57 h 1613 4981 0 +PQ +SE +ID 5018 +TI 1760667401.308960199 +UH 0 10 l 2396 11060 4 +UH 0 59 h 2316 10813 4 +PQ +SE +ID 5019 +TI 1760667401.308978080 +UH 0 0 l 1636 8524 4 +UH 0 1 l 4358 8676 4 +UH 0 2 l 2881 8785 4 +UH 0 20 h 3541 9087 4 +UH 0 25 h 3075 9259 4 +UH 0 26 h 1927 9425 4 +PQ +SE +ID 5020 +TI 1760667401.309008836 +UH 0 50 l 3391 10654 4 +UH 0 28 h 3409 10623 4 +PQ +SE +ID 5021 +TI 1760667401.309027671 +UH 0 64 h 1666 0 5 +BD GR Veto +PQ +SE +ID 5022 +TI 1760667401.309033155 +UH 0 38 l 2672 10872 4 +UH 0 48 h 1696 11066 4 +UH 0 49 h 2570 10960 4 +PQ +SE +ID 5023 +TI 1760667401.309053421 +UH 0 25 l 2405 10806 4 +UH 0 28 l 1927 4760 0 +UH 0 31 l 2522 10573 4 +UH 0 14 h 1855 11425 4 +UH 0 17 h 2250 11183 4 +UH 0 19 h 2523 11415 4 +PQ +SE +ID 5024 +TI 1760667401.309098958 +UH 0 28 l 2078 11252 4 +UH 0 29 l 2453 11002 4 +UH 0 41 h 2923 10851 4 +PQ +SE +ID 5025 +TI 1760667401.309119939 +UH 0 47 l 1546 8614 4 +UH 0 48 l 4284 8594 4 +UH 0 49 l 1520 8713 4 +UH 0 56 h 4325 8863 4 +PQ +SE +ID 5026 +TI 1760667401.309142589 +UH 0 15 l 1946 10792 4 +UH 0 16 l 2174 10830 4 +UH 0 48 h 2277 11193 4 +UH 0 53 h 1795 11139 4 +PQ +SE +ID 5027 +TI 1760667401.309169292 +UH 0 63 l 2776 10551 4 +UH 0 42 h 2846 10795 4 +PQ +SE +ID 5028 +TI 1760667401.309185981 +UH 0 48 l 3202 10952 4 +UH 0 52 l 3894 10703 4 +UH 0 16 h 1617 11264 4 +UH 0 17 h 2536 11099 4 +UH 0 18 h 2521 10873 4 +UH 0 19 h 3421 11103 4 +PQ +SE +ID 5029 +TI 1760667401.309218406 +UH 0 44 l 2472 10764 4 +UH 0 45 l 2092 10790 4 +UH 0 64 l 4028 0 5 +UH 0 14 h 2326 11153 4 +UH 0 15 h 2366 11283 4 +UH 0 64 h 3905 0 5 +BD GR Veto +PQ +SE +ID 5030 +TI 1760667401.309247970 +UH 0 17 l 2149 10977 4 +UH 0 39 h 2221 10583 4 +PQ +SE +ID 5031 +TI 1760667401.309265851 +UH 0 39 l 2591 10652 4 +UH 0 42 l 1618 5059 0 +UH 0 16 h 2544 11329 4 +UH 0 17 h 1547 4875 0 +PQ +SE +ID 5032 +TI 1760667401.309293508 +UH 0 30 l 3891 10051 4 +UH 0 31 l 3243 9937 4 +UH 0 2 h 2047 9743 4 +UH 0 3 h 3510 9369 4 +UH 0 4 h 1644 5711 0 +UH 0 8 h 3251 9874 4 +PQ +SE +ID 5033 +TI 1760667401.309326171 +UH 0 53 l 2109 10791 4 +UH 0 64 l 3862 0 5 +UH 0 0 h 2581 11118 4 +UH 0 64 h 3335 0 5 +BD GR Veto +PQ +SE +ID 5034 +TI 1760667401.309346675 +UH 0 64 h 1670 0 5 +BD GR Veto +PQ +SE +ID 5035 +TI 1760667401.309352636 +UH 0 37 l 1636 5307 0 +UH 0 35 h 1670 4899 0 +PQ +SE +ID 5036 +TI 1760667401.309370040 +UH 0 64 l 4532 0 5 +UH 0 64 h 4417 0 5 +BD GR Veto +PQ +SE +ID 5037 +TI 1760667401.309380054 +UH 0 48 l 3189 10922 4 +UH 0 32 h 3056 10346 4 +UH 0 33 h 1645 10035 4 +PQ +SE +ID 5038 +TI 1760667401.309401035 +UH 0 45 l 2030 10611 4 +UH 0 51 h 2015 11140 4 +PQ +SE +ID 5039 +TI 1760667401.309417963 +UH 0 6 l 2287 10578 4 +UH 0 21 h 2257 11480 4 +PQ +SE +ID 5040 +TI 1760667401.309436082 +UH 0 40 l 2989 10541 4 +UH 0 58 h 1605 4045 0 +UH 0 59 h 2947 10979 4 +PQ +SE +ID 5041 +TI 1760667401.309456825 +UH 0 20 l 1875 10389 4 +UH 0 21 l 3805 10720 4 +UH 0 54 h 3980 11104 4 +PQ +SE +ID 5042 +TI 1760667401.309478282 +UH 0 53 l 2146 10974 4 +UH 0 9 h 2118 11341 4 +PQ +SE +ID 5043 +TI 1760667401.309497117 +UH 0 48 l 2006 5432 0 +PQ +SE +ID 5044 +TI 1760667401.309508323 +UH 0 32 l 1644 8662 4 +UH 0 33 l 4108 8118 4 +UH 0 34 l 2290 8518 4 +UH 0 35 l 1543 8679 4 +UH 0 50 h 2005 8546 4 +UH 0 51 h 4399 8511 4 +UH 0 58 h 2291 8472 4 +PQ +SE +ID 5045 +TI 1760667401.309542417 +UH 0 49 l 1688 5403 0 +UH 0 50 l 2030 10823 4 +UH 0 54 h 2193 10842 4 +PQ +SE +ID 5046 +TI 1760667401.309563875 +UH 0 63 l 1971 10771 4 +UH 0 36 h 2087 11295 4 +PQ +SE +ID 5047 +TI 1760667401.309579610 +UH 0 62 l 2175 10962 4 +UH 0 54 h 2102 10684 4 +PQ +SE +ID 5048 +TI 1760667401.309598207 +UH 0 64 l 2388 0 5 +UH 0 64 h 2397 0 5 +BD GR Veto +PQ +SE +ID 5049 +TI 1760667401.309606552 +UH 0 7 l 1593 8918 4 +UH 0 8 l 3253 8793 4 +UH 0 9 l 4055 8734 4 +UH 0 60 h 4061 8906 4 +UH 0 61 h 1921 9326 4 +UH 0 63 h 2720 9067 4 +PQ +SE +ID 5050 +TI 1760667401.309634923 +UH 0 4 l 4206 9866 4 +UH 0 12 l 1792 3241 0 +UH 0 29 h 1650 9998 4 +UH 0 30 h 1595 10106 4 +UH 0 31 h 4165 9381 4 +PQ +SE +ID 5051 +TI 1760667401.309664011 +UH 0 21 l 2227 10825 4 +UH 0 22 l 2204 10575 4 +UH 0 26 h 2828 11389 4 +PQ +SE +ID 5052 +TI 1760667401.309684753 +UH 0 55 l 4215 8915 4 +UH 0 56 l 1559 9211 4 +UH 0 15 h 2669 9432 4 +UH 0 16 h 3104 9417 4 +PQ +SE +ID 5053 +TI 1760667401.309707164 +UH 0 17 l 1987 10789 4 +UH 0 18 l 1607 4995 0 +UH 0 19 l 2811 10485 4 +UH 0 32 h 1749 10434 4 +UH 0 33 h 1582 3459 0 +UH 0 38 h 2809 10930 4 +UH 0 31 h 1713 4607 0 +PQ +SE +ID 5054 +TI 1760667401.309743165 +UH 0 64 l 2045 0 5 +UH 0 43 h 1615 4029 0 +UH 0 64 h 1951 0 5 +BD GR Veto +PQ +SE +ID 5055 +TI 1760667401.333110570 +UH 0 64 l 1868 0 5 +UH 0 64 h 1926 0 5 +BD GR Veto +PQ +SE +ID 5056 +TI 1760667401.333151340 +UH 0 29 l 1751 4513 0 +UH 0 31 l 2205 11190 4 +UH 0 4 h 1784 11717 4 +UH 0 5 h 2221 11360 4 +PQ +SE +ID 5057 +TI 1760667401.333180665 +UH 0 64 h 1954 0 5 +BD GR Veto +PQ +SE +ID 5058 +TI 1760667401.333186864 +UH 0 37 l 3455 10821 4 +UH 0 64 l 3695 0 5 +UH 0 38 h 1646 4398 0 +UH 0 43 h 3350 10691 4 +UH 0 64 h 3586 0 5 +BD GR Veto +PQ +SE +ID 5059 +TI 1760667401.333218574 +UH 0 50 l 1581 5391 0 +UH 0 50 h 1666 4565 0 +PQ +SE +ID 5060 +TI 1760667401.333237409 +UH 0 35 l 1712 2906 0 +UH 0 52 l 1604 6103 4 +UH 0 53 l 4271 5920 4 +UH 0 54 l 1528 6256 4 +UH 0 22 l 1835 2401 0 +UH 0 23 l 2194 8131 4 +UH 0 26 l 2388 8459 4 +UH 0 27 l 1620 4492 0 +UH 0 30 l 2178 8739 4 +UH 0 31 l 3200 8563 4 +UH 0 26 h 3390 9003 4 +UH 0 27 h 2649 8928 4 +UH 0 28 h 1607 6911 4 +UH 0 29 h 2862 6619 4 +UH 0 31 h 2532 8583 4 +PQ +SE +ID 5061 +TI 1760667401.333312749 +UH 0 54 l 1559 5109 0 +UH 0 57 l 1859 10771 4 +UH 0 33 h 1584 3149 0 +UH 0 27 h 1937 11486 4 +PQ +SE +ID 5062 +TI 1760667401.333346366 +UH 0 64 l 1832 0 5 +UH 0 64 h 1905 0 5 +BD GR Veto +PQ +SE +ID 5063 +TI 1760667401.333354711 +UH 0 4 l 1694 9841 4 +UH 0 5 l 5671 9532 4 +UH 0 4 h 2077 10169 4 +UH 0 5 h 4929 9926 4 +UH 0 6 h 1550 10023 4 +PQ +SE +ID 5064 +TI 1760667401.333379983 +UH 0 2 l 3040 10928 4 +UH 0 36 h 2424 11128 4 +UH 0 37 h 2190 11362 4 +PQ +SE +ID 5065 +TI 1760667401.333400011 +UH 0 43 l 1630 5487 0 +UH 0 45 h 1597 4656 0 +PQ +SE +ID 5066 +TI 1760667401.333417177 +UH 0 11 l 2287 10421 4 +UH 0 29 l 4036 6023 4 +UH 0 30 l 1750 6258 4 +UH 0 45 h 3149 5755 4 +UH 0 46 h 2288 5708 4 +UH 0 52 h 1744 1496 0 +UH 0 60 h 2142 10786 4 +PQ +SE +ID 5067 +TI 1760667401.333469629 +UH 0 21 l 2680 10887 4 +UH 0 22 l 3409 10596 4 +UH 0 36 h 4233 11067 4 +UH 0 37 h 1887 11331 4 +PQ +SE +ID 5068 +TI 1760667401.333492755 +UH 0 64 l 1723 0 5 +UH 0 0 h 1813 11493 4 +BD GR Veto +PQ +SE +ID 5069 +TI 1760667401.333503246 +UH 0 35 l 2740 10653 4 +UH 0 36 l 1638 10449 4 +UH 0 62 h 2897 10840 4 +PQ +SE +ID 5070 +TI 1760667401.333528518 +UH 0 64 l 1707 0 5 +UH 0 64 h 1736 0 5 +BD GR Veto +PQ +SE +ID 5071 +TI 1760667401.333536863 +UH 0 27 l 2201 10833 4 +UH 0 11 h 1667 4154 0 +UH 0 12 h 2124 11284 4 +PQ +SE +ID 5072 +TI 1760667401.333556652 +UH 0 24 l 2629 10512 4 +UH 0 25 l 1956 10754 4 +UH 0 26 l 1815 5235 0 +UH 0 23 h 1795 11037 4 +UH 0 29 h 2761 11170 4 +PQ +SE +ID 5073 +TI 1760667401.333586215 +UH 0 64 h 1698 0 5 +BD GR Veto +PQ +SE +ID 5074 +TI 1760667401.333592176 +UH 0 39 l 3613 9144 4 +UH 0 26 l 3594 9493 4 +UH 0 5 h 1580 9521 4 +UH 0 6 h 3547 9363 4 +UH 0 12 h 1543 9441 4 +UH 0 13 h 3580 9280 4 +UH 0 14 h 1565 9494 4 +PQ +SE +ID 5075 +TI 1760667401.333631992 +UH 0 17 l 1847 11077 4 +UH 0 1 h 1906 11248 4 +PQ +SE +ID 5076 +TI 1760667401.333649158 +UH 0 50 l 2276 10718 4 +UH 0 40 h 2265 11059 4 +PQ +SE +ID 5077 +TI 1760667401.333673954 +UH 0 51 l 2826 10868 4 +UH 0 47 h 2821 10852 4 +PQ +SE +ID 5078 +TI 1760667401.333703517 +UH 0 60 l 2755 10428 4 +UH 0 51 h 2489 10938 4 +UH 0 52 h 1751 11074 4 +PQ +SE +ID 5079 +TI 1760667401.333739042 +UH 0 46 l 3197 10388 4 +UH 0 18 h 3345 11127 4 +PQ +SE +ID 5080 +TI 1760667401.333768367 +UH 0 19 l 3212 11003 4 +UH 0 22 l 1894 10525 4 +UH 0 11 h 1793 10963 4 +UH 0 12 h 2931 10735 4 +UH 0 15 h 1894 11246 4 +PQ +SE +ID 5081 +TI 1760667401.333827018 +UH 0 15 l 1809 4875 0 +UH 0 45 h 1712 11348 4 +PQ +SE +ID 5082 +TI 1760667401.333857297 +UH 0 46 l 1588 10747 4 +UH 0 47 l 3046 10729 4 +UH 0 59 l 1568 2917 0 +UH 0 61 l 1653 3908 0 +UH 0 62 l 1641 2009 0 +UH 0 63 l 1586 2221 0 +UH 0 35 h 3231 10630 4 +PQ +SE +ID 5083 +TI 1760667401.333917379 +UH 0 34 l 1575 8574 4 +UH 0 35 l 3495 8598 4 +UH 0 36 l 2380 8413 4 +UH 0 49 h 4351 8662 4 +PQ +SE +ID 5084 +TI 1760667401.333952188 +UH 0 32 l 2170 10791 4 +UH 0 31 l 2127 10911 4 +UH 0 28 h 2634 11009 4 +UH 0 29 h 1666 11287 4 +PQ +SE +ID 5085 +TI 1760667401.333975315 +UH 0 55 l 1503 5353 0 +UH 0 56 l 3328 8797 4 +UH 0 57 l 1719 8623 4 +UH 0 32 h 3510 8882 4 +PQ +SE +ID 5086 +TI 1760667401.333998918 +UH 0 43 l 2998 10918 4 +UH 0 6 h 2953 10957 4 +UH 0 7 h 1681 11012 4 +PQ +SE +ID 5087 +TI 1760667401.334019660 +UH 0 30 l 1698 5263 0 +UH 0 31 h 1687 11006 4 +PQ +SE +ID 5088 +TI 1760667401.334038972 +UH 0 17 l 1906 10644 4 +UH 0 23 l 3013 10318 4 +UH 0 5 h 2633 11276 4 +UH 0 6 h 1732 5020 0 +UH 0 13 h 1919 10989 4 +PQ +SE +ID 5089 +TI 1760667401.334074258 +UH 0 34 l 2694 10485 4 +UH 0 23 l 2153 10528 4 +UH 0 24 l 1717 5062 0 +UH 0 25 l 2180 10712 4 +UH 0 27 l 1632 4696 0 +UH 0 28 l 2010 11047 4 +UH 0 6 h 2240 11284 4 +UH 0 7 h 2008 11255 4 +UH 0 8 h 2043 11421 4 +UH 0 11 h 2168 11380 4 +UH 0 12 h 1557 4844 0 +UH 0 13 h 2033 11373 4 +PQ +SE +ID 5090 +TI 1760667401.334144115 +UH 0 64 l 2021 0 5 +UH 0 64 h 2078 0 5 +BD GR Veto +PQ +SE +ID 5091 +TI 1760667401.334152936 +UH 0 63 l 2249 10763 4 +UH 0 64 l 2402 0 5 +UH 0 39 h 2519 10503 4 +UH 0 44 h 1899 10243 4 +UH 0 45 h 1627 4031 0 +UH 0 64 h 1840 0 5 +BD GR Veto +PQ +SE +ID 5092 +TI 1760667401.334182500 +UH 0 64 l 2764 0 5 +UH 0 64 h 2755 0 5 +BD GR Veto +PQ +SE +ID 5093 +TI 1760667401.334191083 +UH 0 19 l 2060 10814 4 +UH 0 20 l 1761 4687 0 +UH 0 60 h 2131 10808 4 +PQ +SE +ID 5094 +TI 1760667401.334211111 +UH 0 28 l 2195 11377 4 +UH 0 62 h 1956 11231 4 +UH 0 63 h 1817 11286 4 +PQ +SE +ID 5095 +TI 1760667401.334228754 +UH 0 47 l 2062 10883 4 +UH 0 48 l 1887 11018 4 +UH 0 51 l 1652 5207 0 +UH 0 52 l 1677 4555 0 +UH 0 63 l 1532 2026 0 +UH 0 52 h 1711 4454 0 +UH 0 54 h 2495 10903 4 +PQ +SE +ID 5096 +TI 1760667401.334267377 +UH 0 41 l 1495 5327 0 +UH 0 64 l 2161 0 5 +UH 0 63 h 1632 4743 0 +UH 0 64 h 2213 0 5 +BD GR Veto +PQ +SE +ID 5097 +TI 1760667401.334287643 +UH 0 25 l 1774 5437 0 +UH 0 54 h 1703 11375 4 +PQ +SE +ID 5098 +TI 1760667401.334306478 +UH 0 33 l 2472 10514 4 +UH 0 34 l 2389 10637 4 +UH 0 35 l 2084 10712 4 +UH 0 20 l 1703 10413 4 +UH 0 21 l 3199 10722 4 +UH 0 46 h 2074 10812 4 +UH 0 50 h 2282 10816 4 +UH 0 51 h 1597 4715 0 +UH 0 52 h 1662 10941 4 +UH 0 53 h 2395 10762 4 +UH 0 54 h 3224 11078 4 +PQ +SE +ID 5099 +TI 1760667401.334354639 +UH 0 52 l 2716 10854 4 +UH 0 54 l 1658 5089 0 +UH 0 55 l 2362 10609 4 +UH 0 7 h 1782 11001 4 +UH 0 8 h 3373 11091 4 +UH 0 9 h 1748 10861 4 +PQ +SE +ID 5100 +TI 1760667401.334384679 +UH 0 2 l 3540 10775 4 +UH 0 40 h 3472 10887 4 +PQ +SE +ID 5101 +TI 1760667401.334403038 +UH 0 50 l 2194 10582 4 +UH 0 51 l 1623 5458 0 +UH 0 47 h 2284 10886 4 +PQ +SE +ID 5102 +TI 1760667401.334421396 +UH 0 64 l 2454 0 5 +UH 0 64 h 2481 0 5 +BD GR Veto +PQ +SE +ID 5103 +TI 1760667401.334429740 +UH 0 64 l 1682 0 5 +UH 0 64 h 2544 0 5 +BD GR Veto +PQ +SE +ID 5104 +TI 1760667401.334437608 +UH 0 53 l 2035 10818 4 +UH 0 64 l 1749 0 5 +UH 0 63 h 2022 11163 4 +UH 0 64 h 1827 0 5 +BD GR Veto +PQ +SE +ID 5105 +TI 1760667401.334458827 +UH 0 57 l 3374 10759 4 +UH 0 3 h 1759 10592 4 +UH 0 4 h 3235 10961 4 +PQ +SE +ID 5106 +TI 1760667401.334478855 +UH 0 42 l 1758 5339 0 +UH 0 23 l 1870 2691 0 +UH 0 64 l 1711 0 5 +UH 0 39 h 1791 8619 4 +UH 0 58 h 1748 10912 4 +UH 0 64 h 1793 0 5 +BD GR Veto +PQ +SE +ID 5107 +TI 1760667401.334516286 +UH 0 11 l 1835 4586 0 +UH 0 12 l 2048 10531 4 +UH 0 30 h 2078 11443 4 +PQ +SE +ID 5108 +TI 1760667401.334535598 +UH 0 10 l 1690 4862 0 +UH 0 40 h 1665 5225 0 +PQ +SE +ID 5109 +TI 1760667401.334554433 +UH 0 9 l 3848 9471 4 +UH 0 22 l 1768 3638 0 +UH 0 23 l 1713 5364 0 +UH 0 24 l 2360 9603 4 +UH 0 29 l 2428 9468 4 +UH 0 30 l 1609 3636 0 +UH 0 32 h 2188 9840 4 +UH 0 41 h 3858 9981 4 +UH 0 20 h 2432 10096 4 +UH 0 29 h 1627 3898 0 +UH 0 30 h 1653 4163 0 +PQ +SE +ID 5110 +TI 1760667401.334616899 +UH 0 6 l 1835 10756 4 +UH 0 8 l 2424 10284 4 +UH 0 11 l 3366 10554 4 +UH 0 46 h 1781 10611 4 +UH 0 47 h 1649 4663 0 +UH 0 49 h 1629 4483 0 +UH 0 50 h 2304 10736 4 +UH 0 53 h 1971 10445 4 +UH 0 54 h 2711 10544 4 +PQ +SE +ID 5111 +TI 1760667401.334665775 +UH 0 3 l 1763 4760 0 +UH 0 30 h 1755 11669 4 +PQ +SE +ID 5112 +TI 1760667401.334685325 +UH 0 60 l 1592 8913 4 +UH 0 61 l 1687 9104 4 +UH 0 62 l 1705 9278 4 +UH 0 63 l 1663 9129 4 +UH 0 64 l 3523 0 5 +UH 0 63 h 1638 9067 4 +UH 0 0 h 1673 9477 4 +UH 0 64 h 15080 0 5 +BD GR Veto +PQ +SE +ID 5113 +TI 1760667401.334715843 +UH 0 40 l 2044 10639 4 +UH 0 63 h 2144 11055 4 +PQ +SE +ID 5114 +TI 1760667401.334731578 +UH 0 35 l 2269 10882 4 +UH 0 37 l 1730 5008 0 +UH 0 64 l 1781 0 5 +UH 0 58 h 2267 10316 4 +UH 0 60 h 1625 4072 0 +UH 0 61 h 1584 4982 0 +UH 0 64 h 1842 0 5 +BD GR Veto +PQ +SE +ID 5115 +TI 1760667401.334766387 +UH 0 64 l 2493 0 5 +UH 0 64 h 2500 0 5 +BD GR Veto +PQ +SE +ID 5116 +TI 1760667401.334774255 +UH 0 33 l 1714 1227 0 +UH 0 16 l 1836 10779 4 +UH 0 18 l 1821 10895 4 +UH 0 29 l 1742 4536 4 +UH 0 30 l 4107 4538 4 +UH 0 52 h 1862 11147 4 +UH 0 56 h 1847 10835 4 +UH 0 57 h 1549 4696 4 +UH 0 58 h 2580 4401 4 +PQ +SE +ID 5117 +TI 1760667401.334825754 +UH 0 64 h 2012 0 5 +BD GR Veto +PQ +SE +ID 5118 +TI 1760667401.334831953 +UH 0 37 l 4177 10404 4 +UH 0 34 h 3974 9613 4 +UH 0 35 h 1593 9875 4 +PQ +SE +ID 5119 +TI 1760667401.355339765 +UH 0 64 l 2717 0 5 +UH 0 64 h 2699 0 5 +BD GR Veto +PQ +SE +ID 5120 +TI 1760667401.355380773 +UH 0 50 l 3218 9107 4 +UH 0 51 l 1622 5439 0 +UH 0 50 h 3300 9388 4 +PQ +SE +ID 5121 +TI 1760667401.355405569 +UH 0 50 l 2239 10868 4 +UH 0 53 h 2211 10495 4 +PQ +SE +ID 5122 +TI 1760667401.355424880 +UH 0 64 h 2603 0 5 +BD GR Veto +PQ +SE +ID 5123 +TI 1760667401.355430841 +UH 0 41 l 1750 10839 4 +UH 0 42 l 2311 10767 4 +UH 0 54 h 2535 11150 4 +PQ +SE +ID 5124 +TI 1760667401.355452299 +UH 0 64 l 2880 0 5 +UH 0 64 h 2883 0 5 +BD GR Veto +PQ +SE +ID 5125 +TI 1760667401.355460882 +UH 0 10 l 3256 10745 4 +UH 0 11 l 2668 10451 4 +UH 0 32 h 4141 11078 4 +PQ +SE +ID 5126 +TI 1760667401.355482816 +UH 0 6 l 1809 11086 4 +UH 0 33 h 1750 4210 0 +PQ +SE +ID 5127 +TI 1760667401.355504035 +UH 0 6 l 1857 4975 0 +UH 0 7 l 1863 10883 4 +UH 0 8 l 2308 10691 4 +UH 0 11 l 3079 10564 4 +UH 0 19 l 2908 10617 4 +UH 0 44 h 2952 10394 4 +UH 0 47 h 1683 3951 0 +UH 0 48 h 1736 10709 4 +UH 0 53 h 2847 10852 4 +UH 0 55 h 2314 10445 4 +UH 0 57 h 1846 10770 4 +PQ +SE +ID 5128 +TI 1760667401.355575323 +UH 0 56 l 2234 10832 4 +UH 0 64 l 2622 0 5 +UH 0 61 h 2261 11004 4 +UH 0 64 h 2650 0 5 +BD GR Veto +PQ +SE +ID 5129 +TI 1760667401.355599641 +UH 0 44 l 1644 5150 0 +UH 0 51 h 1676 5455 0 +PQ +SE +ID 5130 +TI 1760667401.355618238 +UH 0 37 l 2127 10975 4 +UH 0 56 h 2115 11001 4 +PQ +SE +ID 5131 +TI 1760667401.355636119 +UH 0 64 l 2053 0 5 +UH 0 44 h 1609 4360 0 +UH 0 64 h 2018 0 5 +BD GR Veto +PQ +SE +ID 5132 +TI 1760667401.355652332 +UH 0 36 l 3223 10221 4 +UH 0 27 h 3183 11153 4 +PQ +SE +ID 5133 +TI 1760667401.355670213 +UH 0 28 l 2257 11316 4 +UH 0 29 l 1752 5143 0 +UH 0 30 l 2279 11423 4 +UH 0 54 h 2299 10740 4 +UH 0 55 h 2386 10418 4 +PQ +SE +ID 5134 +TI 1760667401.355696201 +UH 0 24 l 3160 10378 4 +UH 0 13 h 3025 10195 4 +UH 0 14 h 1572 10413 4 +PQ +SE +ID 5135 +TI 1760667401.355717182 +UH 0 21 l 1783 5061 0 +UH 0 22 h 1863 11279 4 +PQ +SE +ID 5136 +TI 1760667401.355735301 +UH 0 53 l 2375 10680 4 +UH 0 56 l 1600 4869 0 +UH 0 57 l 1920 10727 4 +UH 0 37 h 2156 11108 4 +UH 0 38 h 1824 11018 4 +UH 0 40 h 2037 10624 4 +PQ +SE +ID 5137 +TI 1760667401.355775117 +UH 0 2 l 2583 10429 4 +UH 0 20 h 2545 11050 4 +PQ +SE +ID 5138 +TI 1760667401.355793476 +UH 0 19 l 1821 11397 4 +UH 0 11 h 1827 11388 4 +PQ +SE +ID 5139 +TI 1760667401.355811834 +UH 0 13 l 2650 6832 4 +UH 0 14 l 2281 7002 4 +UH 0 64 l 2195 0 5 +UH 0 41 h 2176 6960 4 +UH 0 42 h 2109 6597 4 +UH 0 45 h 2193 6778 4 +UH 0 1 h 1692 5497 0 +UH 0 64 h 3843 0 5 +BD GR Veto +PQ +SE +ID 5140 +TI 1760667401.355855464 +UH 0 41 l 2945 10927 4 +UH 0 42 l 1754 4754 0 +UH 0 43 l 3871 10937 4 +UH 0 1 h 3237 10985 4 +UH 0 2 h 4106 10747 4 +PQ +SE +ID 5141 +TI 1760667401.355881929 +UH 0 37 l 1754 4977 0 +UH 0 29 h 1764 11474 4 +PQ +SE +ID 5142 +TI 1760667401.355900049 +UH 0 3 l 3543 10842 4 +UH 0 10 l 3661 10835 4 +UH 0 39 h 2685 10326 4 +UH 0 40 h 2508 10354 4 +UH 0 41 h 3430 10534 4 +UH 0 42 h 1754 10305 4 +PQ +SE +ID 5143 +TI 1760667401.355934619 +UH 0 0 l 2552 10598 4 +UH 0 64 l 2318 0 5 +UH 0 53 h 2161 11000 4 +UH 0 54 h 2682 11129 4 +BD GR Veto +PQ +SE +ID 5144 +TI 1760667401.355956077 +UH 0 39 l 2067 10392 4 +UH 0 0 h 2060 11308 4 +PQ +SE +ID 5145 +TI 1760667401.355971813 +UH 0 18 l 2112 10758 4 +UH 0 19 l 1875 11121 4 +UH 0 14 h 2330 11010 4 +UH 0 15 h 1619 11126 4 +PQ +SE +ID 5146 +TI 1760667401.355996131 +UH 0 64 l 2767 0 5 +UH 0 64 h 2559 0 5 +BD GR Veto +PQ +SE +ID 5147 +TI 1760667401.356005430 +UH 0 40 l 2045 10854 4 +UH 0 41 l 1766 11120 4 +UH 0 61 h 2401 10890 4 +PQ +SE +ID 5148 +TI 1760667401.356026887 +UH 0 64 l 1764 0 5 +UH 0 64 h 1806 0 5 +BD GR Veto +PQ +SE +ID 5149 +TI 1760667401.356035232 +UH 0 22 l 2073 11121 4 +UH 0 51 h 1944 10723 4 +PQ +SE +ID 5150 +TI 1760667401.356053590 +UH 0 30 l 1900 11394 4 +UH 0 18 h 1826 10849 4 +UH 0 19 h 1578 4366 0 +PQ +SE +ID 5151 +TI 1760667401.356074333 +UH 0 0 l 1732 5074 0 +UH 0 19 h 1676 5606 0 +PQ +SE +ID 5152 +TI 1760667401.356109380 +UH 0 42 l 2011 10675 4 +UH 0 44 l 2920 10674 4 +UH 0 45 l 2142 10714 4 +UH 0 46 l 1575 4872 0 +UH 0 52 l 1981 10349 4 +UH 0 9 h 1982 11081 4 +UH 0 24 h 3138 10632 4 +UH 0 25 h 1701 11059 4 +UH 0 28 h 1747 4895 0 +UH 0 29 h 1611 5611 0 +UH 0 30 h 2008 10930 4 +PQ +SE +ID 5153 +TI 1760667401.356169939 +UH 0 15 l 2180 10823 4 +UH 0 31 l 1607 3075 0 +UH 0 42 h 2128 10629 4 +PQ +SE +ID 5154 +TI 1760667401.356194734 +UH 0 1 l 3923 11121 4 +UH 0 56 h 3291 10358 4 +UH 0 57 h 2100 10528 4 +PQ +SE +ID 5155 +TI 1760667401.356215000 +UH 0 36 l 2660 9864 4 +UH 0 37 l 1621 5315 0 +UH 0 9 h 2719 10702 4 +PQ +SE +ID 5156 +TI 1760667401.356235980 +UH 0 64 l 1705 0 5 +UH 0 64 h 1882 0 5 +BD GR Veto +PQ +SE +ID 5157 +TI 1760667401.356244802 +UH 0 39 l 3220 10715 4 +UH 0 54 h 3155 10924 4 +PQ +SE +ID 5158 +TI 1760667401.356263875 +UH 0 31 l 2182 10911 4 +UH 0 7 h 2249 11422 4 +PQ +SE +ID 5159 +TI 1760667401.356282472 +UH 0 49 l 1606 5393 0 +UH 0 37 h 1689 4789 0 +PQ +SE +ID 5160 +TI 1760667401.356301784 +UH 0 38 l 1869 10403 4 +UH 0 59 l 2491 10770 4 +UH 0 64 l 2829 0 5 +UH 0 2 h 1963 11273 4 +UH 0 14 h 2452 10915 4 +UH 0 64 h 2852 0 5 +BD GR Veto +PQ +SE +ID 5161 +TI 1760667401.356340885 +UH 0 60 l 1965 10194 4 +UH 0 61 l 1747 5259 0 +UH 0 63 l 2255 10180 4 +UH 0 16 l 2495 10806 4 +UH 0 53 h 2298 10758 4 +UH 0 57 h 2103 10795 4 +UH 0 58 h 2481 10254 4 +PQ +SE +ID 5162 +TI 1760667401.356381654 +UH 0 45 l 1641 5068 0 +UH 0 26 h 1691 5721 0 +PQ +SE +ID 5163 +TI 1760667401.356400012 +UH 0 14 l 4307 8771 4 +UH 0 15 l 1672 8769 4 +UH 0 62 h 4314 8896 4 +PQ +SE +ID 5164 +TI 1760667401.356420516 +UH 0 21 l 1768 5183 0 +UH 0 25 l 2051 10753 4 +UH 0 18 h 1762 10898 4 +UH 0 19 h 1965 11507 4 +PQ +SE +ID 5165 +TI 1760667401.356450319 +UH 0 44 l 2385 10649 4 +UH 0 49 l 1520 5147 0 +UH 0 50 l 2162 10554 4 +UH 0 5 h 2224 11344 4 +UH 0 6 h 2436 11229 4 +PQ +SE +ID 5166 +TI 1760667401.356480360 +UH 0 6 l 2745 11058 4 +UH 0 41 h 2747 10760 4 +PQ +SE +ID 5167 +TI 1760667401.356498718 +UH 0 64 l 2395 0 5 +UH 0 64 h 2421 0 5 +BD GR Veto +PQ +SE +ID 5168 +TI 1760667401.356507301 +UH 0 64 l 2154 0 5 +UH 0 64 h 2203 0 5 +BD GR Veto +PQ +SE +ID 5169 +TI 1760667401.356515884 +UH 0 35 l 2312 8807 4 +UH 0 42 l 1613 9145 4 +UH 0 43 l 4733 9014 4 +UH 0 44 l 1519 8944 4 +UH 0 64 l 1634 0 5 +UH 0 0 h 3757 9336 4 +UH 0 1 h 3104 9381 4 +UH 0 2 h 1771 9537 4 +UH 0 3 h 1772 9249 4 +BD GR Veto +PQ +SE +ID 5170 +TI 1760667401.356553316 +UH 0 36 l 1785 4823 0 +UH 0 44 h 1761 11309 4 +PQ +SE +ID 5171 +TI 1760667401.356572389 +UH 0 18 l 2106 10567 4 +UH 0 27 h 2121 11298 4 +PQ +SE +ID 5172 +TI 1760667401.356591463 +UH 0 15 l 1841 5061 0 +UH 0 16 l 1599 3696 0 +UH 0 44 h 1838 11245 4 +PQ +SE +ID 5173 +TI 1760667401.356613636 +UH 0 64 l 2629 0 5 +UH 0 64 h 2595 0 5 +BD GR Veto +PQ +SE +ID 5174 +TI 1760667401.356622934 +UH 0 14 l 2269 10736 4 +UH 0 15 l 2110 10670 4 +UH 0 31 l 1606 2476 0 +UH 0 30 h 2665 11347 4 +PQ +SE +ID 5175 +TI 1760667401.356648921 +UH 0 17 l 1827 10920 4 +UH 0 36 h 1875 11428 4 +PQ +SE +ID 5176 +TI 1760667401.356668233 +UH 0 64 h 2070 0 5 +BD GR Veto +PQ +SE +ID 5177 +TI 1760667401.356674194 +UH 0 60 l 1725 10673 4 +UH 0 61 l 1784 5284 0 +UH 0 59 h 1845 10777 4 +PQ +SE +ID 5178 +TI 1760667401.356694936 +UH 0 64 l 1952 0 5 +UH 0 64 h 2016 0 5 +BD GR Veto +PQ +SE +ID 5179 +TI 1760667401.356703758 +UH 0 47 l 1781 10911 4 +UH 0 53 h 1827 11306 4 +PQ +SE +ID 5180 +TI 1760667401.356722116 +UH 0 32 l 2209 10985 4 +UH 0 64 l 1981 0 5 +UH 0 0 h 2010 11009 4 +UH 0 1 h 1891 11039 4 +UH 0 64 h 1890 0 5 +BD GR Veto +PQ +SE +ID 5181 +TI 1760667401.356743097 +UH 0 12 l 2194 10322 4 +UH 0 36 h 2140 10967 4 +UH 0 64 h 1847 0 5 +BD GR Veto +PQ +SE +ID 5182 +TI 1760667401.356764078 +UH 0 5 l 1888 11029 4 +UH 0 6 l 1942 11161 4 +UH 0 33 h 1857 10447 4 +UH 0 34 h 1789 10691 4 +PQ +SE +ID 5183 +TI 1760667401.375238180 +UH 0 44 l 2063 10593 4 +UH 0 46 l 1667 4819 0 +UH 0 47 l 1592 5084 0 +UH 0 48 l 2291 10897 4 +UH 0 14 h 2401 11365 4 +UH 0 16 h 2117 11495 4 +UH 0 17 h 1715 11465 4 +PQ +SE +ID 5184 +TI 1760667401.375305414 +UH 0 33 l 1631 5128 0 +UH 0 53 h 1636 4858 0 +PQ +SE +ID 5185 +TI 1760667401.375324487 +UH 0 59 l 1816 11131 4 +UH 0 15 h 1858 11325 4 +PQ +SE +ID 5186 +TI 1760667401.375343084 +UH 0 64 l 2056 0 5 +UH 0 64 h 2103 0 5 +BD GR Veto +PQ +SE +ID 5187 +TI 1760667401.375352144 +UH 0 53 l 2000 9183 4 +UH 0 54 l 1541 9668 4 +UH 0 55 l 3376 9342 4 +UH 0 35 h 2067 9369 4 +UH 0 36 h 3423 9350 4 +PQ +SE +ID 5188 +TI 1760667401.375380754 +UH 0 28 l 1633 9882 4 +UH 0 29 l 4483 9574 4 +UH 0 30 l 1707 9982 4 +UH 0 18 h 1772 9837 4 +UH 0 19 h 4081 9974 4 +UH 0 20 h 1734 9818 4 +PQ +SE +ID 5189 +TI 1760667401.375410079 +UH 0 64 h 1694 0 5 +BD GR Veto +PQ +SE +ID 5190 +TI 1760667401.375416040 +UH 0 64 l 3028 0 5 +UH 0 64 h 3024 0 5 +BD GR Veto +PQ +SE +ID 5191 +TI 1760667401.375424861 +UH 0 31 l 1720 4680 0 +UH 0 8 h 1739 12027 4 +PQ +SE +ID 5192 +TI 1760667401.375454902 +UH 0 62 l 1617 5370 0 +UH 0 63 l 2314 10409 4 +UH 0 64 l 2816 0 5 +UH 0 35 h 2303 10386 4 +UH 0 64 h 4666 0 5 +BD GR Veto +PQ +SE +ID 5193 +TI 1760667401.375485897 +UH 0 19 l 4496 9690 4 +UH 0 23 l 2817 9261 4 +UH 0 26 h 1584 10102 4 +UH 0 27 h 4197 9800 4 +UH 0 28 h 1833 9856 4 +UH 0 29 h 2644 10022 4 +PQ +SE +ID 5194 +TI 1760667401.375520944 +UH 0 48 l 2882 10816 4 +UH 0 33 h 2896 10769 4 +PQ +SE +ID 5195 +TI 1760667401.375540018 +UH 0 14 l 1663 8987 4 +UH 0 15 l 2987 8979 4 +UH 0 16 l 4197 9096 4 +UH 0 17 l 1597 8979 4 +UH 0 27 l 1702 1594 0 +UH 0 28 l 1699 1481 0 +UH 0 29 l 1747 1533 0 +UH 0 30 l 1725 1574 0 +UH 0 31 l 1805 1595 0 +UH 0 38 h 2792 9106 4 +UH 0 39 h 3049 8857 4 +UH 0 46 h 2874 8810 4 +PQ +SE +ID 5196 +TI 1760667401.375591754 +UH 0 43 l 1548 8878 4 +UH 0 44 l 5659 8577 4 +UH 0 45 l 1571 8890 4 +UH 0 29 h 5462 9283 4 +PQ +SE +ID 5197 +TI 1760667401.375614881 +UH 0 38 l 2695 10874 4 +UH 0 59 h 2718 10394 4 +PQ +SE +ID 5198 +TI 1760667401.375633478 +UH 0 29 l 1953 11144 4 +UH 0 53 h 1896 10684 4 +PQ +SE +ID 5199 +TI 1760667401.375652074 +UH 0 24 l 2494 10991 4 +UH 0 49 h 2373 10494 4 +PQ +SE +ID 5200 +TI 1760667401.375670671 +UH 0 46 l 1516 5278 0 +PQ +SE +ID 5201 +TI 1760667401.375682830 +UH 0 49 l 2993 10875 4 +UH 0 50 l 2111 10751 4 +UH 0 56 l 1846 10887 4 +UH 0 57 l 3173 10525 4 +UH 0 35 h 1980 10588 4 +UH 0 36 h 2496 10540 4 +UH 0 37 h 2735 10667 4 +UH 0 38 h 3130 10611 4 +PQ +SE +ID 5202 +TI 1760667401.375722646 +UH 0 40 l 1908 10593 4 +UH 0 41 l 2594 10670 4 +UH 0 16 h 3077 11291 4 +PQ +SE +ID 5203 +TI 1760667401.375747442 +UH 0 59 l 1700 4820 0 +UH 0 11 h 1779 11726 4 +PQ +SE +ID 5204 +TI 1760667401.375766277 +UH 0 0 l 1736 5209 0 +UH 0 46 h 1719 5047 0 +PQ +SE +ID 5205 +TI 1760667401.375782966 +UH 0 5 l 1657 8646 4 +UH 0 6 l 4757 9035 4 +UH 0 7 l 1603 8977 4 +UH 0 10 l 2457 8883 4 +UH 0 9 h 2435 9026 4 +UH 0 12 h 1533 9211 4 +UH 0 13 h 3459 9198 4 +UH 0 14 h 2746 9338 4 +PQ +SE +ID 5206 +TI 1760667401.375829696 +UH 0 2 l 2957 10641 4 +UH 0 7 l 4231 10857 4 +UH 0 4 h 2112 11203 4 +UH 0 5 h 3602 10964 4 +UH 0 11 h 2921 11223 4 +PQ +SE +ID 5207 +TI 1760667401.375866889 +UH 0 54 l 1816 11151 4 +UH 0 58 h 1845 11255 4 +PQ +SE +ID 5208 +TI 1760667401.375885725 +UH 0 60 l 1723 4941 0 +UH 0 48 h 1734 11235 4 +PQ +SE +ID 5209 +TI 1760667401.375905513 +UH 0 52 l 2599 10890 4 +UH 0 56 h 2591 10850 4 +PQ +SE +ID 5210 +TI 1760667401.375926971 +UH 0 32 l 1845 4865 0 +UH 0 33 l 1836 10184 4 +UH 0 20 l 2400 10690 4 +UH 0 30 l 2321 11172 4 +UH 0 31 l 1638 11137 4 +UH 0 34 h 2328 10359 4 +UH 0 43 h 2063 10829 4 +UH 0 44 h 1591 3496 0 +UH 0 45 h 2214 10552 4 +PQ +SE +ID 5211 +TI 1760667401.375975131 +UH 0 3 l 2244 10852 4 +UH 0 4 l 2049 11081 4 +UH 0 57 h 2748 11202 4 +PQ +SE +ID 5212 +TI 1760667401.375997781 +UH 0 9 l 2594 10557 4 +UH 0 10 l 1828 10657 4 +UH 0 13 l 2159 11100 4 +UH 0 36 h 2833 11015 4 +UH 0 26 h 2138 11213 4 +PQ +SE +ID 5213 +TI 1760667401.376035213 +UH 0 48 l 1775 11223 4 +UH 0 42 h 1866 11052 4 +PQ +SE +ID 5214 +TI 1760667401.376054286 +UH 0 54 l 1879 11174 4 +UH 0 64 l 1951 0 5 +UH 0 2 h 1943 10983 4 +UH 0 64 h 1993 0 5 +BD GR Veto +PQ +SE +ID 5215 +TI 1760667401.376078605 +UH 0 23 l 2845 10908 4 +UH 0 33 h 1685 4264 0 +UH 0 34 h 2426 10250 4 +PQ +SE +ID 5216 +TI 1760667401.376128673 +UH 0 26 l 2465 11397 4 +UH 0 36 h 2416 10948 4 +PQ +SE +ID 5217 +TI 1760667401.376150846 +UH 0 63 l 1536 5187 0 +UH 0 64 l 2175 0 5 +UH 0 35 h 2248 11277 4 +BD GR Veto +PQ +SE +ID 5218 +TI 1760667401.376170635 +UH 0 64 l 3760 0 5 +UH 0 23 h 3469 10926 4 +UH 0 24 h 1794 10968 4 +BD GR Veto +PQ +SE +ID 5219 +TI 1760667401.376190662 +UH 0 53 l 2163 10891 4 +UH 0 0 h 1978 10791 4 +UH 0 1 h 1772 10737 4 +PQ +SE +ID 5220 +TI 1760667401.376209259 +UH 0 64 l 1933 0 5 +UH 0 64 h 1988 0 5 +BD GR Veto +PQ +SE +ID 5221 +TI 1760667401.376217842 +UH 0 13 l 3596 10518 4 +UH 0 5 h 3445 10819 4 +UH 0 6 h 1592 10924 4 +PQ +SE +ID 5222 +TI 1760667401.376239776 +UH 0 42 l 1615 8824 4 +UH 0 43 l 3883 8717 4 +UH 0 47 l 1544 3027 0 +UH 0 48 l 1532 2565 0 +UH 0 20 h 1824 9272 4 +UH 0 21 h 3633 9449 4 +UH 0 27 h 1657 3076 0 +PQ +SE +ID 5223 +TI 1760667401.376282453 +UH 0 43 l 1532 8928 4 +UH 0 44 l 4481 8633 4 +UH 0 45 l 1543 8767 4 +UH 0 22 h 4474 9172 4 +PQ +SE +ID 5224 +TI 1760667401.376319646 +UH 0 17 l 2285 10667 4 +UH 0 17 h 2156 11332 4 +UH 0 18 h 1636 11247 4 +PQ +SE +ID 5225 +TI 1760667401.376361846 +UH 0 19 l 4790 10378 4 +UH 0 20 l 2376 10147 4 +UH 0 21 l 1646 10568 4 +UH 0 51 h 1588 10255 4 +UH 0 52 h 4697 10050 4 +UH 0 53 h 1828 10030 4 +UH 0 54 h 1993 10190 4 +PQ +SE +ID 5226 +TI 1760667401.376409769 +UH 0 64 l 2861 0 5 +UH 0 64 h 2865 0 5 +BD GR Veto +PQ +SE +ID 5227 +TI 1760667401.376423835 +UH 0 16 l 2211 11067 4 +UH 0 13 h 2254 11347 4 +PQ +SE +ID 5228 +TI 1760667401.376451730 +UH 0 64 l 4395 0 5 +UH 0 64 h 4247 0 5 +BD GR Veto +PQ +SE +ID 5229 +TI 1760667401.376465082 +UH 0 59 l 5628 10646 4 +UH 0 37 h 5644 10515 4 +UH 0 38 h 1642 10506 4 +PQ +SE +ID 5230 +TI 1760667401.376497507 +UH 0 39 l 2562 10795 4 +UH 0 41 h 2568 10694 4 +PQ +SE +ID 5231 +TI 1760667401.376518726 +UH 0 4 l 2342 10977 4 +UH 0 59 h 2313 10831 4 +PQ +SE +ID 5232 +TI 1760667401.376537561 +UH 0 34 l 1610 8503 4 +UH 0 35 l 5651 8573 4 +UH 0 36 l 1638 8412 4 +UH 0 13 h 4175 9228 4 +UH 0 14 h 2961 9349 4 +PQ +SE +ID 5233 +TI 1760667401.376579284 +UH 0 39 l 2150 3647 0 +UH 0 40 l 1727 3789 0 +UH 0 41 l 1504 5438 0 +UH 0 43 l 1534 5487 0 +UH 0 45 l 1592 4062 0 +UH 0 46 l 2219 3346 0 +UH 0 52 l 1649 1779 0 +UH 0 53 l 2152 7557 4 +UH 0 38 h 2288 3311 0 +UH 0 41 h 1756 2777 0 +UH 0 42 h 2125 2935 0 +UH 0 61 h 2206 2076 0 +UH 0 62 h 2476 2140 0 +PQ +SE +ID 5234 +TI 1760667401.376665115 +UH 0 53 l 1634 5183 0 +UH 0 54 l 3288 5011 0 +UH 0 38 h 1633 5426 0 +UH 0 39 h 3416 4473 0 +PQ +SE +ID 5235 +TI 1760667401.376693010 +UH 0 15 l 1677 5193 0 +UH 0 16 l 3246 8837 4 +UH 0 17 l 1693 8916 4 +UH 0 18 l 2144 8929 4 +UH 0 19 l 2519 9374 4 +UH 0 21 l 1639 4006 0 +UH 0 25 l 2144 9092 4 +UH 0 24 h 2965 9360 4 +UH 0 25 h 1589 9648 4 +UH 0 30 h 3375 9794 4 +UH 0 31 h 2122 9230 4 +PQ +SE +ID 5236 +TI 1760667401.376765489 +UH 0 2 l 2785 10755 4 +UH 0 57 h 2720 11278 4 +PQ +SE +ID 5237 +TI 1760667401.376786231 +UH 0 4 l 1603 9255 4 +UH 0 5 l 5921 8953 4 +UH 0 4 h 1665 9459 4 +UH 0 5 h 5525 9167 4 +UH 0 6 h 1556 9274 4 +PQ +SE +ID 5238 +TI 1760667401.376812219 +UH 0 50 l 2442 10771 4 +UH 0 13 l 2332 10856 4 +UH 0 14 l 3827 10735 4 +UH 0 17 l 1676 4553 0 +UH 0 42 h 2464 10624 4 +UH 0 62 h 4690 10854 4 +PQ +SE +ID 5239 +TI 1760667401.376856803 +UH 0 4 l 2670 11227 4 +UH 0 11 h 1637 4254 0 +UH 0 12 h 1909 11282 4 +UH 0 15 h 1627 4443 0 +UH 0 16 h 2139 11143 4 +PQ +SE +ID 5240 +TI 1760667401.376890420 +UH 0 37 l 3220 10417 4 +UH 0 38 l 2248 10425 4 +UH 0 6 h 3966 11197 4 +PQ +SE +ID 5241 +TI 1760667401.376912117 +UH 0 61 l 2109 10691 4 +UH 0 64 l 1721 0 5 +UH 0 25 h 2007 11254 4 +UH 0 64 h 2712 0 5 +BD GR Veto +PQ +SE +ID 5242 +TI 1760667401.376936435 +UH 0 19 l 1635 5417 0 +UH 0 25 l 2316 11063 4 +UH 0 26 l 2577 11243 4 +UH 0 51 h 2436 10764 4 +UH 0 53 h 2221 10739 4 +PQ +SE +ID 5243 +TI 1760667401.376976966 +UH 0 17 l 2487 10870 4 +UH 0 18 l 1755 10892 4 +UH 0 58 h 2457 10910 4 +UH 0 63 h 1724 10902 4 +UH 0 64 h 1669 0 5 +BD GR Veto +PQ +SE +ID 5244 +TI 1760667401.377014636 +UH 0 18 l 1970 10738 4 +UH 0 41 h 1985 11202 4 +PQ +SE +ID 5245 +TI 1760667401.377033472 +UH 0 23 l 2464 10403 4 +UH 0 24 l 1725 10445 4 +UH 0 25 l 3064 10478 4 +UH 0 64 l 1769 0 5 +UH 0 20 h 2963 10491 4 +UH 0 22 h 2501 10540 4 +UH 0 64 h 1808 0 5 +BD GR Veto +PQ +SE +ID 5246 +TI 1760667401.377066850 +UH 0 2 l 4172 10500 4 +UH 0 3 l 1898 10486 4 +UH 0 7 h 3835 11223 4 +UH 0 12 h 2251 11168 4 +PQ +SE +ID 5247 +TI 1760667401.398909330 +UH 0 6 l 1764 5052 0 +UH 0 33 h 1746 5144 0 +PQ +SE +ID 5248 +TI 1760667401.398964166 +UH 0 56 l 1629 5438 0 +UH 0 5 h 1679 4818 0 +PQ +SE +ID 5249 +TI 1760667401.398983478 +UH 0 56 l 3398 9311 4 +UH 0 62 h 2603 8710 4 +UH 0 63 h 2416 8741 4 +UH 0 64 h 1680 0 5 +BD GR Veto +PQ +SE +ID 5250 +TI 1760667401.399005413 +UH 0 5 l 2460 10955 4 +UH 0 28 h 1835 10823 4 +UH 0 29 h 1827 11035 4 +UH 0 30 h 1842 11275 4 +PQ +SE +ID 5251 +TI 1760667401.399028778 +UH 0 64 l 1732 0 5 +UH 0 64 h 1810 0 5 +BD GR Veto +PQ +SE +ID 5252 +TI 1760667401.399037837 +UH 0 7 l 1748 5260 0 +UH 0 46 h 1738 11731 4 +PQ +SE +ID 5253 +TI 1760667401.399057149 +UH 0 9 l 2473 10151 4 +UH 0 10 l 1656 10376 4 +UH 0 11 l 1946 10008 4 +UH 0 12 l 2665 9863 4 +UH 0 13 l 1632 10447 4 +UH 0 16 l 1604 10182 4 +UH 0 17 l 3212 9952 4 +UH 0 41 h 3336 10406 4 +UH 0 43 h 2355 10357 4 +UH 0 44 h 1710 10088 4 +UH 0 47 h 1764 10055 4 +UH 0 48 h 2693 10055 4 +PQ +SE +ID 5254 +TI 1760667401.399128913 +UH 0 14 l 2482 10530 4 +UH 0 15 l 1910 10546 4 +UH 0 17 l 2972 10393 4 +UH 0 18 l 1730 10371 4 +UH 0 33 h 3063 10503 4 +UH 0 34 h 2643 10655 4 +PQ +SE +ID 5255 +TI 1760667401.399175167 +UH 0 64 l 2718 0 5 +UH 0 64 h 2708 0 5 +BD GR Veto +PQ +SE +ID 5256 +TI 1760667401.399184226 +UH 0 52 l 2872 10838 4 +UH 0 59 h 2802 10244 4 +PQ +SE +ID 5257 +TI 1760667401.399203062 +UH 0 42 l 2290 9903 4 +UH 0 43 l 1836 9952 4 +UH 0 48 l 2933 9592 4 +UH 0 54 l 1610 10002 4 +UH 0 55 l 2860 9665 4 +UH 0 57 h 1594 9961 4 +UH 0 58 h 5399 9366 4 +UH 0 59 h 1595 9764 4 +PQ +SE +ID 5258 +TI 1760667401.399246931 +UH 0 16 l 4209 10891 4 +UH 0 45 h 3128 10459 4 +UH 0 46 h 2514 10324 4 +PQ +SE +ID 5259 +TI 1760667401.399267911 +UH 0 1 l 2161 11413 4 +UH 0 34 h 2049 10999 4 +PQ +SE +ID 5260 +TI 1760667401.399285793 +UH 0 17 l 2105 10876 4 +UH 0 20 l 1722 4922 0 +UH 0 43 h 2057 10686 4 +UH 0 44 h 1647 10663 4 +PQ +SE +ID 5261 +TI 1760667401.399319410 +UH 0 64 l 2316 0 5 +UH 0 64 h 2352 0 5 +BD GR Veto +PQ +SE +ID 5262 +TI 1760667401.399327993 +UH 0 39 l 2338 10789 4 +UH 0 43 h 2286 11180 4 +PQ +SE +ID 5263 +TI 1760667401.399346351 +UH 0 0 l 3097 10591 4 +UH 0 1 l 2506 10946 4 +UH 0 34 h 2982 10886 4 +UH 0 36 h 2504 11061 4 +PQ +SE +ID 5264 +TI 1760667401.399369716 +UH 0 10 l 2723 10930 4 +UH 0 15 l 3332 10774 4 +UH 0 16 l 1695 4399 0 +UH 0 27 l 1642 1813 0 +UH 0 28 l 1640 2071 0 +UH 0 29 l 1692 2370 0 +UH 0 30 l 1690 2157 0 +UH 0 31 l 1767 2275 0 +UH 0 45 h 1699 10907 4 +UH 0 46 h 3216 10617 4 +UH 0 49 h 2667 10528 4 +PQ +SE +ID 5265 +TI 1760667401.399424791 +UH 0 33 l 2841 10153 4 +UH 0 14 h 2805 11332 4 +PQ +SE +ID 5266 +TI 1760667401.399446725 +UH 0 47 l 2673 10582 4 +UH 0 61 l 1647 2863 0 +UH 0 62 l 1676 1547 0 +UH 0 63 l 1565 1917 0 +UH 0 49 h 2719 10972 4 +PQ +SE +ID 5267 +TI 1760667401.399494886 +UH 0 54 l 2016 10605 4 +UH 0 64 l 3134 0 5 +UH 0 0 h 3345 11220 4 +UH 0 64 h 1943 0 5 +BD GR Veto +PQ +SE +ID 5268 +TI 1760667401.399531126 +UH 0 36 l 3746 10524 4 +UH 0 49 h 1678 10732 4 +UH 0 50 h 1937 10638 4 +UH 0 53 h 3120 10502 4 +UH 0 54 h 1584 10756 4 +PQ +SE +ID 5269 +TI 1760667401.399580717 +UH 0 16 l 3539 10855 4 +UH 0 18 l 1966 10632 4 +UH 0 30 l 2543 10637 4 +UH 0 31 l 2124 10564 4 +UH 0 34 h 3033 10584 4 +UH 0 46 h 1966 10250 4 +UH 0 51 h 2211 10385 4 +UH 0 52 h 2822 10419 4 +PQ +SE +ID 5270 +TI 1760667401.399632215 +UH 0 55 l 4065 9875 4 +UH 0 56 l 1825 10203 4 +UH 0 57 l 1950 9731 4 +UH 0 60 l 2236 9668 4 +UH 0 48 h 2239 9858 4 +UH 0 49 h 1959 9754 4 +UH 0 50 h 1943 9780 4 +UH 0 51 h 1563 9892 4 +UH 0 52 h 4010 9970 4 +PQ +SE +ID 5271 +TI 1760667401.399672269 +UH 0 64 l 2234 0 5 +UH 0 42 h 2174 10629 4 +UH 0 64 h 1689 0 5 +BD GR Veto +PQ +SE +ID 5272 +TI 1760667401.399693250 +UH 0 37 l 1599 5314 0 +PQ +SE +ID 5273 +TI 1760667401.399705410 +UH 0 36 l 2139 10706 4 +UH 0 46 h 1694 4687 0 +UH 0 47 h 2016 11265 4 +PQ +SE +ID 5274 +TI 1760667401.399729251 +UH 0 30 l 1869 11591 4 +UH 0 58 h 1846 10772 4 +PQ +SE +ID 5275 +TI 1760667401.399747848 +UH 0 5 l 1863 10510 4 +UH 0 6 l 4129 10616 4 +UH 0 7 l 1640 10643 4 +UH 0 8 l 1673 10573 4 +UH 0 7 h 3375 10901 4 +UH 0 8 h 2817 11213 4 +PQ +SE +ID 5276 +TI 1760667401.399780511 +UH 0 7 l 3780 9752 4 +UH 0 14 h 1573 10294 4 +UH 0 15 h 3692 10244 4 +PQ +SE +ID 5277 +TI 1760667401.399810791 +UH 0 30 l 2770 11255 4 +UH 0 5 h 2115 11318 4 +UH 0 10 h 2160 11541 4 +PQ +SE +ID 5278 +TI 1760667401.399837017 +UH 0 54 l 2410 10938 4 +UH 0 18 h 2476 10883 4 +PQ +SE +ID 5279 +TI 1760667401.399856328 +UH 0 18 l 2485 8213 4 +UH 0 19 l 2514 8762 4 +UH 0 23 l 1712 8494 4 +UH 0 24 l 1723 8483 4 +UH 0 25 l 1797 8836 4 +UH 0 26 l 8611 8939 4 +UH 0 27 l 3404 8208 4 +UH 0 28 l 1685 8807 4 +UH 0 32 h 6197 8691 4 +UH 0 33 h 5479 8339 4 +UH 0 35 h 1679 8432 4 +UH 0 38 h 1748 1921 0 +UH 0 39 h 2142 8324 4 +UH 0 40 h 1903 8355 4 +UH 0 56 h 2326 8272 4 +PQ +SE +ID 5280 +TI 1760667401.399925470 +UH 0 16 l 1810 4818 0 +UH 0 64 l 2116 0 5 +UH 0 64 h 2429 0 5 +BD GR Veto +PQ +SE +ID 5281 +TI 1760667401.399940967 +UH 0 57 l 1540 8536 4 +UH 0 58 l 4004 8228 4 +UH 0 59 l 1562 8538 4 +UH 0 29 h 1570 8954 4 +UH 0 30 h 3932 9024 4 +PQ +SE +ID 5282 +TI 1760667401.399966716 +UH 0 64 l 2269 0 5 +UH 0 31 h 2233 10769 4 +BD GR Veto +PQ +SE +ID 5283 +TI 1760667401.399981260 +UH 0 39 l 1877 11021 4 +UH 0 30 h 1856 11219 4 +PQ +SE +ID 5284 +TI 1760667401.399998903 +UH 0 36 l 1961 10536 4 +UH 0 40 l 2720 10815 4 +UH 0 41 l 2657 11117 4 +UH 0 9 h 2771 11171 4 +UH 0 10 h 2569 11281 4 +UH 0 11 h 2163 11164 4 +PQ +SE +ID 5285 +TI 1760667401.400032520 +UH 0 1 l 2700 10612 4 +UH 0 20 h 2678 11081 4 +PQ +SE +ID 5286 +TI 1760667401.400050401 +UH 0 29 l 3161 10791 4 +UH 0 6 h 3080 11238 4 +PQ +SE +ID 5287 +TI 1760667401.400072813 +UH 0 57 l 1769 5175 0 +UH 0 58 l 1634 4933 0 +UH 0 60 h 1904 10873 4 +PQ +SE +ID 5288 +TI 1760667401.400113821 +UH 0 39 l 2089 10283 4 +UH 0 64 l 5144 0 5 +UH 0 0 h 4854 11108 4 +UH 0 64 h 2351 0 5 +BD GR Veto +PQ +SE +ID 5289 +TI 1760667401.400134801 +UH 0 13 l 1605 3664 0 +UH 0 14 l 1960 10631 4 +UH 0 15 l 4222 10439 4 +UH 0 26 l 1685 2646 0 +UH 0 27 l 1681 1950 0 +UH 0 28 l 1738 1475 0 +UH 0 29 l 1744 2042 0 +UH 0 30 l 1747 1835 0 +UH 0 31 l 1899 2309 0 +UH 0 62 h 4553 10897 4 +PQ +SE +ID 5290 +TI 1760667401.400175094 +UH 0 64 l 3468 0 5 +UH 0 64 h 3422 0 5 +BD GR Veto +PQ +SE +ID 5291 +TI 1760667401.400183916 +UH 0 52 l 1592 4911 0 +UH 0 53 l 2326 8744 4 +UH 0 54 l 2187 8958 4 +UH 0 55 l 1593 3547 0 +UH 0 60 l 1586 4792 0 +UH 0 61 l 3188 8657 4 +UH 0 62 l 2461 8844 4 +UH 0 64 l 1618 0 5 +UH 0 1 h 2351 9563 4 +UH 0 6 h 2124 9562 4 +UH 0 7 h 1798 3339 0 +UH 0 12 h 3946 9471 4 +BD GR Veto +PQ +SE +ID 5292 +TI 1760667401.400241613 +UH 0 64 l 5685 0 5 +UH 0 64 h 5401 0 5 +BD GR Veto +PQ +SE +ID 5293 +TI 1760667401.400249958 +UH 0 35 l 1722 4646 0 +UH 0 23 l 1781 10355 4 +UH 0 24 l 2992 10319 4 +UH 0 35 h 1629 10396 4 +UH 0 36 h 2947 10352 4 +UH 0 29 h 1608 4928 0 +UH 0 30 h 1685 4888 0 +PQ +SE +ID 5294 +TI 1760667401.400290012 +UH 0 7 l 2386 10581 4 +UH 0 8 l 2454 10515 4 +UH 0 61 h 3178 11145 4 +PQ +SE +ID 5295 +TI 1760667401.400310993 +UH 0 63 l 2127 10757 4 +UH 0 42 h 2228 10616 4 +PQ +SE +ID 5296 +TI 1760667401.400328159 +UH 0 20 l 3278 10493 4 +UH 0 21 l 1731 11000 4 +UH 0 43 h 2363 10476 4 +UH 0 44 h 2503 10324 4 +PQ +SE +ID 5297 +TI 1760667401.400351762 +UH 0 20 l 2211 10642 4 +UH 0 23 l 2681 10826 4 +UH 0 24 l 1861 5048 0 +UH 0 39 h 2473 10960 4 +UH 0 41 h 2512 11261 4 +PQ +SE +ID 5298 +TI 1760667401.400384426 +UH 0 11 l 2311 10380 4 +UH 0 47 h 2264 11085 4 +PQ +SE +ID 5299 +TI 1760667401.400403976 +UH 0 35 l 2815 10810 4 +UH 0 36 l 2406 10586 4 +UH 0 15 h 1931 11516 4 +UH 0 17 h 2829 11173 4 +UH 0 18 h 1963 11104 4 +PQ +SE +ID 5300 +TI 1760667401.400432109 +UH 0 3 l 3715 8829 4 +UH 0 4 l 1600 9170 4 +UH 0 14 h 3654 9808 4 +PQ +SE +ID 5301 +TI 1760667401.400453090 +UH 0 16 l 2069 10785 4 +UH 0 61 h 2056 11370 4 +PQ +SE +ID 5302 +TI 1760667401.400471925 +UH 0 11 l 2226 10391 4 +UH 0 21 h 2048 11426 4 +PQ +SE +ID 5303 +TI 1760667401.400494575 +UH 0 61 l 1666 8890 4 +UH 0 62 l 5030 8915 4 +UH 0 64 l 2163 0 5 +UH 0 35 h 3335 8767 4 +UH 0 36 h 3223 8832 4 +UH 0 64 h 2205 0 5 +BD GR Veto +PQ +SE +ID 5304 +TI 1760667401.400524139 +UH 0 51 l 1626 8734 4 +UH 0 52 l 2054 8701 4 +UH 0 53 l 4383 8415 4 +UH 0 54 l 1587 8737 4 +UH 0 55 l 1496 8555 4 +UH 0 56 l 1746 2985 0 +UH 0 57 l 1977 8107 4 +UH 0 21 h 2261 9055 4 +UH 0 25 h 4071 8893 4 +UH 0 26 h 1694 9088 4 +UH 0 28 h 2091 8758 4 +PQ +SE +ID 5305 +TI 1760667401.400571823 +UH 0 64 l 2410 0 5 +UH 0 64 h 2425 0 5 +BD GR Veto +PQ +SE +ID 5306 +TI 1760667401.400580406 +UH 0 57 l 1723 10533 4 +UH 0 58 l 2470 10267 4 +UH 0 4 h 2756 11611 4 +PQ +SE +ID 5307 +TI 1760667401.400601387 +UH 0 28 l 1646 5164 0 +UH 0 29 l 2064 10937 4 +UH 0 50 h 2125 11115 4 +PQ +SE +ID 5308 +TI 1760667401.400621891 +UH 0 25 l 1718 5369 0 +UH 0 26 l 2026 11344 4 +UH 0 43 h 2025 11233 4 +PQ +SE +ID 5309 +TI 1760667401.400642156 +UH 0 8 l 2564 10924 4 +UH 0 47 h 2522 10975 4 +PQ +SE +ID 5310 +TI 1760667401.400660037 +UH 0 43 l 1638 5486 0 +UH 0 36 h 1779 5253 0 +PQ +SE +ID 5311 +TI 1760667401.419280290 +UH 0 24 l 2052 11107 4 +UH 0 25 l 3050 11222 4 +UH 0 60 h 3404 10394 4 +PQ +SE +ID 5312 +TI 1760667401.419347047 +UH 0 34 l 3506 10614 4 +UH 0 63 h 2723 10260 4 +UH 0 64 h 2331 0 5 +BD GR Veto +PQ +SE +ID 5313 +TI 1760667401.419367074 +UH 0 6 l 1681 4603 0 +UH 0 20 l 4287 10553 4 +UH 0 43 h 1674 4468 0 +UH 0 51 h 4086 10400 4 +UH 0 52 h 1615 10562 4 +PQ +SE +ID 5314 +TI 1760667401.419404745 +UH 0 49 l 1606 4840 0 +UH 0 50 l 2090 10637 4 +UH 0 7 h 2277 11535 4 +PQ +SE +ID 5315 +TI 1760667401.419427871 +UH 0 0 l 1792 5194 0 +UH 0 21 h 1746 12072 4 +PQ +SE +ID 5316 +TI 1760667401.419444084 +UH 0 64 l 4260 0 5 +UH 0 64 h 4185 0 5 +BD GR Veto +PQ +SE +ID 5317 +TI 1760667401.419452667 +UH 0 29 l 2544 10687 4 +UH 0 26 h 2469 11446 4 +PQ +SE +ID 5318 +TI 1760667401.419472932 +UH 0 18 l 2996 10627 4 +UH 0 19 l 2679 10991 4 +UH 0 54 h 4010 10652 4 +UH 0 55 h 1686 10508 4 +PQ +SE +ID 5319 +TI 1760667401.419498682 +UH 0 18 l 2715 10697 4 +UH 0 4 h 2730 10988 4 +PQ +SE +ID 5320 +TI 1760667401.419517993 +UH 0 45 l 2677 10703 4 +UH 0 52 h 1796 11208 4 +UH 0 53 h 2455 11016 4 +PQ +SE +ID 5321 +TI 1760667401.419539213 +UH 0 26 l 2937 11329 4 +UH 0 54 h 1615 10685 4 +UH 0 55 h 2851 10244 4 +PQ +SE +ID 5322 +TI 1760667401.419573068 +UH 0 64 l 2987 0 5 +UH 0 64 h 2981 0 5 +BD GR Veto +PQ +SE +ID 5323 +TI 1760667401.419587850 +UH 0 64 l 2690 0 5 +UH 0 64 h 2385 0 5 +BD GR Veto +PQ +SE +ID 5324 +TI 1760667401.419602155 +UH 0 50 l 2170 10472 4 +UH 0 51 l 2020 10597 4 +UH 0 52 l 3009 10445 4 +UH 0 53 l 2107 10675 4 +UH 0 54 l 1664 10959 4 +UH 0 38 h 3539 10921 4 +UH 0 39 h 1950 10693 4 +UH 0 40 h 2447 10604 4 +PQ +SE +ID 5325 +TI 1760667401.419642448 +UH 0 51 l 3767 10845 4 +UH 0 60 h 3672 10367 4 +PQ +SE +ID 5326 +TI 1760667401.419661283 +UH 0 52 l 2158 10671 4 +UH 0 53 l 1932 10747 4 +UH 0 55 l 1644 5129 0 +UH 0 4 h 1938 11466 4 +UH 0 5 h 1771 11273 4 +UH 0 6 h 1907 11385 4 +UH 0 7 h 1810 11366 4 +PQ +SE +ID 5327 +TI 1760667401.419694185 +UH 0 49 l 2520 10942 4 +UH 0 25 h 2474 11127 4 +PQ +SE +ID 5328 +TI 1760667401.419712305 +UH 0 6 l 2288 9547 4 +UH 0 7 l 3405 9380 4 +UH 0 23 l 1760 2681 0 +UH 0 4 h 1654 2361 0 +UH 0 5 h 1593 2987 0 +UH 0 17 h 1536 9585 4 +UH 0 18 h 4195 9348 4 +UH 0 19 h 1553 9702 4 +PQ +SE +ID 5329 +TI 1760667401.419761896 +UH 0 0 l 1627 8985 4 +UH 0 1 l 5236 8964 4 +UH 0 2 l 1698 9137 4 +UH 0 20 h 3687 9138 4 +UH 0 21 h 1939 9445 4 +UH 0 23 h 2665 9267 4 +PQ +SE +ID 5330 +TI 1760667401.419789552 +UH 0 53 l 4489 10747 4 +UH 0 11 h 2801 10793 4 +UH 0 12 h 3114 10640 4 +PQ +SE +ID 5331 +TI 1760667401.419810295 +UH 0 46 l 2305 10832 4 +UH 0 47 l 2130 10938 4 +UH 0 63 l 1530 2420 0 +UH 0 7 h 2743 10978 4 +UH 0 8 h 1896 11381 4 +PQ +SE +ID 5332 +TI 1760667401.419839382 +UH 0 60 l 1584 3273 0 +UH 0 63 l 1528 5196 0 +UH 0 64 l 3216 0 5 +UH 0 64 h 3593 0 5 +BD GR Veto +PQ +SE +ID 5333 +TI 1760667401.419860839 +UH 0 41 l 2019 10160 4 +UH 0 57 l 2729 9938 4 +UH 0 17 l 1600 9513 4 +UH 0 18 l 3755 9303 4 +UH 0 38 h 1748 2901 0 +UH 0 39 h 1990 9407 4 +UH 0 4 h 3806 10549 4 +UH 0 29 h 2346 9935 4 +UH 0 30 h 1907 10182 4 +PQ +SE +ID 5334 +TI 1760667401.419916629 +UH 0 6 l 1709 10833 4 +UH 0 7 l 2247 10614 4 +UH 0 64 l 2875 0 5 +UH 0 1 h 2439 11426 4 +UH 0 64 h 2866 0 5 +BD GR Veto +PQ +SE +ID 5335 +TI 1760667401.419942617 +UH 0 8 l 2110 10643 4 +UH 0 24 l 2119 10936 4 +UH 0 49 h 2007 11059 4 +UH 0 61 h 2037 11335 4 +PQ +SE +ID 5336 +TI 1760667401.419975996 +UH 0 55 l 1576 5216 0 +UH 0 43 h 1630 5454 0 +PQ +SE +ID 5337 +TI 1760667401.419993877 +UH 0 64 l 2635 0 5 +BD GR Veto +PQ +SE +ID 5338 +TI 1760667401.420000553 +UH 0 32 l 2876 10435 4 +UH 0 33 l 1735 10167 4 +UH 0 17 h 2510 11231 4 +UH 0 20 h 1981 10989 4 +PQ +SE +ID 5339 +TI 1760667401.420028209 +UH 0 44 l 1589 5313 0 +UH 0 50 h 1725 4675 0 +PQ +SE +ID 5340 +TI 1760667401.420046567 +UH 0 39 l 1993 10960 4 +UH 0 55 h 2062 10992 4 +PQ +SE +ID 5341 +TI 1760667401.420064926 +UH 0 7 l 1635 2801 0 +UH 0 13 l 1601 9267 4 +UH 0 14 l 4085 8990 4 +UH 0 11 h 1840 9610 4 +UH 0 12 h 3906 9391 4 +PQ +SE +ID 5342 +TI 1760667401.420137405 +UH 0 47 l 1974 10846 4 +UH 0 49 l 1838 10862 4 +UH 0 24 l 3757 10644 4 +UH 0 9 h 2680 11251 4 +UH 0 10 h 2835 11488 4 +UH 0 12 h 1968 10990 4 +PQ +SE +ID 5343 +TI 1760667401.420175075 +UH 0 64 l 1891 0 5 +UH 0 64 h 1952 0 5 +BD GR Veto +PQ +SE +ID 5344 +TI 1760667401.420183897 +UH 0 9 l 1670 4043 0 +UH 0 11 l 2243 10408 4 +UH 0 59 h 1633 5084 0 +UH 0 60 h 2079 10838 4 +PQ +SE +ID 5345 +TI 1760667401.420210599 +UH 0 33 l 1807 4580 0 +UH 0 62 l 2456 10422 4 +UH 0 63 l 2981 10212 4 +UH 0 30 l 2955 10814 4 +UH 0 10 h 3922 11351 4 +UH 0 14 h 2774 11105 4 +UH 0 15 h 1729 11253 4 +UH 0 16 h 1822 11273 4 +PQ +SE +ID 5346 +TI 1760667401.420257568 +UH 0 63 l 1810 11046 4 +UH 0 53 h 1888 11374 4 +PQ +SE +ID 5347 +TI 1760667401.420273303 +UH 0 53 l 1612 8645 4 +UH 0 54 l 4768 8693 4 +UH 0 55 l 2244 8576 4 +UH 0 56 l 1542 8779 4 +UH 0 64 l 1642 0 5 +UH 0 62 h 5657 8720 4 +BD GR Veto +PQ +SE +ID 5348 +TI 1760667401.420301198 +UH 0 6 l 1609 5374 0 +PQ +SE +ID 5349 +TI 1760667401.420312404 +UH 0 64 l 5323 0 5 +UH 0 64 h 5071 0 5 +BD GR Veto +PQ +SE +ID 5350 +TI 1760667401.420320272 +UH 0 20 l 3851 10647 4 +UH 0 21 l 1607 4925 0 +UH 0 50 h 1944 10352 4 +UH 0 51 h 3423 10423 4 +PQ +SE +ID 5351 +TI 1760667401.420343637 +UH 0 45 l 1829 10479 4 +UH 0 31 h 1840 10977 4 +PQ +SE +ID 5352 +TI 1760667401.420358896 +UH 0 0 l 1880 11052 4 +UH 0 1 l 2363 11257 4 +UH 0 36 h 1828 10970 4 +UH 0 37 h 2103 11113 4 +UH 0 40 h 1831 10770 4 +PQ +SE +ID 5353 +TI 1760667401.420387268 +UH 0 6 l 2297 10608 4 +UH 0 14 h 2273 11435 4 +PQ +SE +ID 5354 +TI 1760667401.420404911 +UH 0 33 l 1948 10786 4 +UH 0 26 h 1866 11175 4 +UH 0 27 h 1629 5081 0 +PQ +SE +ID 5355 +TI 1760667401.420425176 +UH 0 64 l 1691 0 5 +UH 0 64 h 1741 0 5 +BD GR Veto +PQ +SE +ID 5356 +TI 1760667401.420434236 +UH 0 15 l 4045 10623 4 +UH 0 16 l 1806 10854 4 +UH 0 26 l 1687 3169 0 +UH 0 27 l 1668 2114 0 +UH 0 28 l 1661 1743 0 +UH 0 29 l 1734 2027 0 +UH 0 30 l 1732 2251 0 +UH 0 31 l 1868 2308 0 +UH 0 27 h 4196 11117 4 +PQ +SE +ID 5357 +TI 1760667401.420471906 +UH 0 39 l 2642 10616 4 +UH 0 40 l 1532 5313 0 +UH 0 8 h 2623 10980 4 +UH 0 9 h 1589 4609 0 +PQ +SE +ID 5358 +TI 1760667401.420495510 +UH 0 17 l 1693 10895 4 +UH 0 18 l 2775 10709 4 +UH 0 42 h 2322 10273 4 +UH 0 43 h 1609 10606 4 +UH 0 44 h 2084 10289 4 +PQ +SE +ID 5359 +TI 1760667401.420522212 +UH 0 36 l 2598 10249 4 +UH 0 37 l 1863 10651 4 +UH 0 44 l 1845 10811 4 +UH 0 45 l 2441 10745 4 +UH 0 55 h 3021 10402 4 +UH 0 58 h 1768 10272 4 +UH 0 59 h 2588 10358 4 +PQ +SE +ID 5360 +TI 1760667401.420562982 +UH 0 38 l 2077 10793 4 +UH 0 39 l 1743 5238 0 +UH 0 40 h 2288 11051 4 +PQ +SE +ID 5361 +TI 1760667401.420584678 +UH 0 40 l 2118 10956 4 +UH 0 35 h 1683 4474 0 +UH 0 36 h 2064 10703 4 +PQ +SE +ID 5362 +TI 1760667401.420605182 +UH 0 64 l 1882 0 5 +UH 0 64 h 2972 0 5 +BD GR Veto +PQ +SE +ID 5363 +TI 1760667401.420614480 +UH 0 29 l 2105 11084 4 +UH 0 51 h 1999 11163 4 +PQ +SE +ID 5364 +TI 1760667401.420633792 +UH 0 42 l 1798 5327 0 +UH 0 45 h 1755 11436 4 +PQ +SE +ID 5365 +TI 1760667401.420652866 +UH 0 9 l 1820 10943 4 +UH 0 10 l 2854 10988 4 +UH 0 11 l 1957 10574 4 +UH 0 12 l 2835 10415 4 +UH 0 59 h 2208 10782 4 +UH 0 61 h 2335 11031 4 +UH 0 62 h 3073 10762 4 +PQ +SE +ID 5366 +TI 1760667401.420687675 +UH 0 54 l 2000 11176 4 +UH 0 15 h 1934 11587 4 +UH 0 16 h 1692 5284 0 +PQ +SE +ID 5367 +TI 1760667401.420708656 +UH 0 20 l 3379 10221 4 +UH 0 21 l 1691 10947 4 +UH 0 35 h 1647 3029 0 +UH 0 52 h 3274 10758 4 +PQ +SE +ID 5368 +TI 1760667401.420749902 +UH 0 12 l 3294 10506 4 +UH 0 26 h 2011 11182 4 +UH 0 27 h 2722 10929 4 +PQ +SE +ID 5369 +TI 1760667401.420786857 +UH 0 6 l 1849 10513 4 +UH 0 7 l 2917 10283 4 +UH 0 30 h 3174 11370 4 +PQ +SE +ID 5370 +TI 1760667401.420822858 +UH 0 0 l 1752 11122 4 +UH 0 64 l 2726 0 5 +UH 0 48 h 2911 10852 4 +BD GR Veto +PQ +SE +ID 5371 +TI 1760667401.420854091 +UH 0 44 l 2381 10858 4 +UH 0 64 l 2428 0 5 +UH 0 0 h 2382 11103 4 +UH 0 1 h 1679 11193 4 +UH 0 64 h 2490 0 5 +BD GR Veto +PQ +SE +ID 5372 +TI 1760667401.420892953 +UH 0 61 l 1681 9141 4 +UH 0 62 l 4580 9320 4 +UH 0 63 l 1880 9174 4 +UH 0 64 l 1761 0 5 +UH 0 42 h 4933 8946 4 +UH 0 64 h 2285 0 5 +BD GR Veto +PQ +SE +ID 5373 +TI 1760667401.420935392 +UH 0 6 l 1607 8736 4 +UH 0 7 l 4408 8494 4 +UH 0 7 h 4562 9227 4 +PQ +SE +ID 5374 +TI 1760667401.420972108 +UH 0 64 l 2785 0 5 +UH 0 9 h 2231 11063 4 +UH 0 64 h 2113 0 5 +BD GR Veto +PQ +SE +ID 5375 +TI 1760667401.440585374 +UH 0 5 l 1696 5202 0 +UH 0 43 h 1617 4779 0 +PQ +SE +ID 5376 +TI 1760667401.440634012 +UH 0 35 l 4368 10753 4 +UH 0 43 l 2708 10414 4 +UH 0 16 h 1937 10887 4 +UH 0 17 h 3777 10671 4 +UH 0 25 h 2650 11071 4 +PQ +SE +ID 5377 +TI 1760667401.440675258 +UH 0 34 l 2562 10592 4 +UH 0 43 h 2508 11153 4 +PQ +SE +ID 5378 +TI 1760667401.440694093 +UH 0 0 l 2184 10387 4 +UH 0 1 l 3121 10629 4 +UH 0 29 h 3645 11159 4 +PQ +SE +ID 5379 +TI 1760667401.440710544 +UH 0 64 l 1798 0 5 +UH 0 64 h 2527 0 5 +BD GR Veto +PQ +SE +ID 5380 +TI 1760667401.440719604 +UH 0 60 l 1708 4730 0 +UH 0 64 l 2129 0 5 +UH 0 4 h 1779 5195 0 +UH 0 64 h 2176 0 5 +BD GR Veto +PQ +SE +ID 5381 +TI 1760667401.440743207 +UH 0 28 l 1631 5030 0 +UH 0 29 l 1801 4902 0 +UH 0 58 h 1802 11362 4 +PQ +SE +ID 5382 +TI 1760667401.440762519 +UH 0 34 l 1575 5289 0 +UH 0 35 l 3749 8747 4 +UH 0 36 l 2103 8537 4 +UH 0 42 h 4318 8767 4 +PQ +SE +ID 5383 +TI 1760667401.440784931 +UH 0 27 l 2713 10665 4 +UH 0 52 h 2562 11163 4 +UH 0 58 h 1610 3818 0 +PQ +SE +ID 5384 +TI 1760667401.440810680 +UH 0 64 l 1779 0 5 +UH 0 64 h 1817 0 5 +BD GR Veto +PQ +SE +ID 5385 +TI 1760667401.440819025 +UH 0 12 l 2213 10578 4 +UH 0 16 h 2087 11109 4 +PQ +SE +ID 5386 +TI 1760667401.440837383 +UH 0 10 l 2237 9846 4 +UH 0 14 l 3471 9851 4 +UH 0 15 l 1691 9879 4 +UH 0 6 h 3505 10790 4 +UH 0 11 h 2254 10810 4 +PQ +SE +ID 5387 +TI 1760667401.440872669 +UH 0 16 l 2258 10464 4 +UH 0 17 l 1656 4597 0 +UH 0 17 h 2149 11297 4 +UH 0 18 h 1753 11180 4 +PQ +SE +ID 5388 +TI 1760667401.440895795 +UH 0 32 l 2811 10774 4 +UH 0 37 l 1614 4546 0 +UH 0 38 l 1587 4962 0 +UH 0 40 h 2945 10960 4 +PQ +SE +ID 5389 +TI 1760667401.440924167 +UH 0 35 l 2159 10834 4 +UH 0 36 l 1675 4813 0 +UH 0 6 h 1610 5336 0 +UH 0 7 h 2274 11491 4 +PQ +SE +ID 5390 +TI 1760667401.440948724 +UH 0 64 l 2191 0 5 +UH 0 64 h 2290 0 5 +BD GR Veto +PQ +SE +ID 5391 +TI 1760667401.440956354 +UH 0 64 l 1641 0 5 +UH 0 64 h 1742 0 5 +BD GR Veto +PQ +SE +ID 5392 +TI 1760667401.440964698 +UH 0 62 l 1923 10713 4 +UH 0 57 h 1880 11305 4 +PQ +SE +ID 5393 +TI 1760667401.440982103 +UH 0 38 l 2043 11007 4 +UH 0 46 h 2115 11071 4 +PQ +SE +ID 5394 +TI 1760667401.440999746 +UH 0 37 l 1591 5338 0 +UH 0 38 l 3569 9915 4 +UH 0 49 h 3531 10122 4 +UH 0 54 h 1666 4000 0 +PQ +SE +ID 5395 +TI 1760667401.441027402 +UH 0 12 l 2759 10496 4 +UH 0 17 l 3515 10772 4 +UH 0 33 h 2167 10462 4 +UH 0 34 h 2729 10588 4 +UH 0 38 h 2666 10785 4 +PQ +SE +ID 5396 +TI 1760667401.441061735 +UH 0 5 l 1648 8615 4 +UH 0 6 l 5701 8675 4 +UH 0 7 l 1592 8692 4 +UH 0 60 h 1571 8424 4 +UH 0 61 h 5643 8650 4 +PQ +SE +ID 5397 +TI 1760667401.441086292 +UH 0 33 l 3254 9575 4 +UH 0 34 l 1600 9809 4 +UH 0 32 h 1997 10009 4 +UH 0 33 h 2711 9586 4 +PQ +SE +ID 5398 +TI 1760667401.441110134 +UH 0 2 l 1730 5196 0 +UH 0 3 l 1577 5216 0 +UH 0 10 l 1653 4659 0 +UH 0 52 h 1682 5181 0 +UH 0 31 h 1602 5185 0 +PQ +SE +ID 5399 +TI 1760667401.441144227 +UH 0 29 l 2620 10887 4 +UH 0 39 h 2581 10986 4 +PQ +SE +ID 5400 +TI 1760667401.441162347 +UH 0 64 l 2218 0 5 +UH 0 64 h 2434 0 5 +BD GR Veto +PQ +SE +ID 5401 +TI 1760667401.441170215 +UH 0 20 l 2330 10685 4 +UH 0 56 h 2222 10572 4 +PQ +SE +ID 5402 +TI 1760667401.441189289 +UH 0 49 l 1756 1569 0 +UH 0 50 l 2878 6033 4 +UH 0 53 l 1969 5629 4 +UH 0 19 l 2283 10786 4 +UH 0 20 l 1802 4954 0 +UH 0 23 l 2715 10865 4 +UH 0 57 h 2424 11066 4 +UH 0 59 h 2562 10682 4 +UH 0 12 h 1888 6109 4 +UH 0 14 h 1817 6120 4 +UH 0 15 h 2857 5995 4 +PQ +SE +ID 5403 +TI 1760667401.441255331 +UH 0 52 l 4434 10716 4 +UH 0 61 h 4446 10724 4 +PQ +SE +ID 5404 +TI 1760667401.441274642 +UH 0 24 l 2253 11087 4 +UH 0 6 h 2119 11436 4 +PQ +SE +ID 5405 +TI 1760667401.441292047 +UH 0 1 l 2314 10977 4 +UH 0 2 l 1641 5378 0 +UH 0 50 h 2362 11047 4 +PQ +SE +ID 5406 +TI 1760667401.441312789 +UH 0 54 l 2424 10773 4 +UH 0 18 h 2530 11113 4 +PQ +SE +ID 5407 +TI 1760667401.441330194 +UH 0 41 l 2801 10755 4 +UH 0 54 l 2343 11131 4 +UH 0 44 h 2650 10583 4 +UH 0 45 h 1712 10922 4 +UH 0 62 h 2454 10366 4 +PQ +SE +ID 5408 +TI 1760667401.441365242 +UH 0 39 l 1605 8489 4 +UH 0 40 l 3736 8433 4 +UH 0 41 l 1476 5386 0 +UH 0 9 l 1786 8508 4 +UH 0 10 l 2301 8424 4 +UH 0 16 l 1829 8653 4 +UH 0 17 l 1929 8678 4 +UH 0 18 l 1748 8631 4 +UH 0 1 h 3832 8997 4 +UH 0 5 h 1597 2194 0 +UH 0 6 h 1985 8816 4 +UH 0 7 h 1730 8828 4 +UH 0 8 h 1669 1615 0 +UH 0 9 h 1708 8655 4 +UH 0 12 h 2419 8896 4 +PQ +SE +ID 5409 +TI 1760667401.441433668 +UH 0 53 l 1763 5374 0 +UH 0 57 h 1748 11687 4 +PQ +SE +ID 5410 +TI 1760667401.441450595 +UH 0 64 l 1996 0 5 +UH 0 64 h 2057 0 5 +BD GR Veto +PQ +SE +ID 5411 +TI 1760667401.441459178 +UH 0 64 l 2131 0 5 +UH 0 64 h 2505 0 5 +BD GR Veto +PQ +SE +ID 5412 +TI 1760667401.441466808 +UH 0 1 l 1626 5480 0 +UH 0 64 l 5705 0 5 +UH 0 57 h 2203 9055 4 +UH 0 64 h 4794 0 5 +BD GR Veto +PQ +SE +ID 5413 +TI 1760667401.441488742 +UH 0 60 l 3578 9381 4 +UH 0 61 l 1696 9712 4 +UH 0 23 h 3653 9848 4 +PQ +SE +ID 5414 +TI 1760667401.441508293 +UH 0 51 l 1627 9959 4 +UH 0 52 l 3068 9802 4 +UH 0 28 h 2337 9741 4 +UH 0 29 h 2307 9944 4 +PQ +SE +ID 5415 +TI 1760667401.441530466 +UH 0 26 l 2500 11380 4 +UH 0 35 h 2416 10486 4 +PQ +SE +ID 5416 +TI 1760667401.441547632 +UH 0 64 l 2785 0 5 +UH 0 64 h 2751 0 5 +BD GR Veto +PQ +SE +ID 5417 +TI 1760667401.441556453 +UH 0 55 l 1503 5373 0 +PQ +SE +ID 5418 +TI 1760667401.441566467 +UH 0 60 l 2206 10534 4 +UH 0 62 l 1889 10552 4 +UH 0 63 l 1778 5015 0 +UH 0 19 h 2134 11155 4 +UH 0 23 h 2124 11276 4 +PQ +SE +ID 5419 +TI 1760667401.441596269 +UH 0 40 l 3195 10770 4 +UH 0 14 h 1760 11340 4 +UH 0 15 h 3027 11329 4 +PQ +SE +ID 5420 +TI 1760667401.441616058 +UH 0 6 l 4522 10085 4 +UH 0 7 l 1598 10077 4 +UH 0 29 h 1608 10396 4 +UH 0 30 h 3344 10491 4 +UH 0 31 h 2627 9904 4 +PQ +SE +ID 5421 +TI 1760667401.441638469 +UH 0 64 h 1715 0 5 +BD GR Veto +PQ +SE +ID 5422 +TI 1760667401.441644191 +UH 0 64 l 1674 0 5 +UH 0 64 h 1805 0 5 +BD GR Veto +PQ +SE +ID 5423 +TI 1760667401.441652297 +UH 0 17 l 1579 8487 4 +UH 0 18 l 3889 8271 4 +UH 0 19 h 3794 9391 4 +PQ +SE +ID 5424 +TI 1760667401.441671609 +UH 0 33 l 1852 10391 4 +UH 0 34 l 1706 5266 0 +UH 0 56 h 2028 11212 4 +PQ +SE +ID 5425 +TI 1760667401.441691875 +UH 0 0 l 2189 10546 4 +UH 0 64 l 1637 0 5 +UH 0 12 h 2235 11298 4 +BD GR Veto +PQ +SE +ID 5426 +TI 1760667401.441709995 +UH 0 23 l 2730 10868 4 +UH 0 57 h 2514 10920 4 +UH 0 58 h 1613 4190 0 +PQ +SE +ID 5427 +TI 1760667401.441729784 +UH 0 64 l 1814 0 5 +UH 0 64 h 1853 0 5 +BD GR Veto +PQ +SE +ID 5428 +TI 1760667401.441737174 +UH 0 48 l 1729 10868 4 +UH 0 1 h 1846 11579 4 +PQ +SE +ID 5429 +TI 1760667401.441755294 +UH 0 29 l 1839 11078 4 +UH 0 46 h 1737 4006 0 +PQ +SE +ID 5430 +TI 1760667401.441773653 +UH 0 20 l 1711 4251 0 +UH 0 21 l 1845 10946 4 +UH 0 26 h 1627 5012 0 +UH 0 27 h 1880 11455 4 +PQ +SE +ID 5431 +TI 1760667401.441796779 +UH 0 8 l 1666 8823 4 +UH 0 9 l 5720 8733 4 +UH 0 10 l 1665 8828 4 +UH 0 21 h 5541 9587 4 +PQ +SE +ID 5432 +TI 1760667401.441819906 +UH 0 45 l 1571 10063 4 +UH 0 46 l 3458 9946 4 +UH 0 59 l 2525 9794 4 +UH 0 64 l 2449 0 5 +UH 0 48 h 2573 9940 4 +UH 0 62 h 3662 9778 4 +UH 0 64 h 2515 0 5 +BD GR Veto +PQ +SE +ID 5433 +TI 1760667401.441860914 +UH 0 34 l 2408 10672 4 +UH 0 38 l 1570 4143 0 +UH 0 46 h 1593 4192 0 +UH 0 48 h 2255 10698 4 +UH 0 49 h 1668 10766 4 +PQ +SE +ID 5434 +TI 1760667401.441893339 +UH 0 57 l 1566 4041 0 +UH 0 58 l 1650 4799 0 +UH 0 25 h 1706 11711 4 +PQ +SE +ID 5435 +TI 1760667401.441914319 +UH 0 28 l 3041 10606 4 +UH 0 1 h 3033 11221 4 +UH 0 64 h 1788 0 5 +BD GR Veto +PQ +SE +ID 5436 +TI 1760667401.441934108 +UH 0 10 l 2294 10640 4 +UH 0 43 h 2216 11120 4 +PQ +SE +ID 5437 +TI 1760667401.441951990 +UH 0 38 l 1543 8731 4 +UH 0 39 l 4296 8771 4 +UH 0 40 l 1643 8878 4 +UH 0 41 l 2138 8830 4 +UH 0 44 l 1970 8403 4 +UH 0 21 h 4210 9160 4 +UH 0 23 h 1702 9032 4 +UH 0 24 h 2167 8903 4 +UH 0 26 h 2041 9322 4 +PQ +SE +ID 5438 +TI 1760667401.441996097 +UH 0 23 l 1857 4999 0 +UH 0 12 h 1693 11556 4 +PQ +SE +ID 5439 +TI 1760667401.462384223 +UH 0 13 l 4278 8694 4 +UH 0 28 h 1665 8758 4 +UH 0 29 h 4116 8868 4 +UH 0 30 h 1570 9169 4 +PQ +SE +ID 5440 +TI 1760667401.462466716 +UH 0 8 l 2164 10896 4 +UH 0 35 h 2104 11157 4 +PQ +SE +ID 5441 +TI 1760667401.462501049 +UH 0 21 l 2315 10928 4 +UH 0 23 l 2104 10516 4 +UH 0 16 h 1984 11474 4 +UH 0 17 h 2251 11240 4 +PQ +SE +ID 5442 +TI 1760667401.462526559 +UH 0 64 l 1825 0 5 +UH 0 64 h 3155 0 5 +BD GR Veto +PQ +SE +ID 5443 +TI 1760667401.462534904 +UH 0 64 l 4350 0 5 +UH 0 26 h 1593 4055 0 +UH 0 27 h 1638 11152 4 +UH 0 64 h 4049 0 5 +BD GR Veto +PQ +SE +ID 5444 +TI 1760667401.462553739 +UH 0 41 l 2121 9324 4 +UH 0 52 l 3449 9486 4 +UH 0 53 l 1625 9434 4 +UH 0 54 l 2765 9548 4 +UH 0 55 l 1649 3953 0 +UH 0 42 h 1623 1897 0 +UH 0 43 h 2129 9215 4 +UH 0 49 h 1855 9311 4 +UH 0 50 h 3507 9133 4 +UH 0 51 h 2690 9378 4 +PQ +SE +ID 5445 +TI 1760667401.462602138 +UH 0 42 l 2696 10715 4 +UH 0 55 l 1537 4845 0 +UH 0 9 h 1633 4910 0 +UH 0 20 h 2648 11122 4 +PQ +SE +ID 5446 +TI 1760667401.462635517 +UH 0 16 l 1863 11358 4 +UH 0 29 h 1805 11256 4 +UH 0 30 h 1590 5266 0 +PQ +SE +ID 5447 +TI 1760667401.462655782 +UH 0 41 l 3232 10637 4 +UH 0 28 h 1690 11040 4 +UH 0 29 h 3150 11148 4 +PQ +SE +ID 5448 +TI 1760667401.462682962 +UH 0 48 l 1668 4752 0 +UH 0 6 h 1698 5483 0 +PQ +SE +ID 5449 +TI 1760667401.462703466 +UH 0 1 l 2116 11090 4 +UH 0 64 l 2740 0 5 +UH 0 17 h 2010 11251 4 +UH 0 64 h 2693 0 5 +BD GR Veto +PQ +SE +ID 5450 +TI 1760667401.462726593 +UH 0 51 l 1775 5465 0 +UH 0 41 h 1694 4342 0 +PQ +SE +ID 5451 +TI 1760667401.462744235 +UH 0 2 l 2234 10744 4 +UH 0 56 h 2204 11194 4 +PQ +SE +ID 5452 +TI 1760667401.462763786 +UH 0 40 l 2145 10455 4 +UH 0 28 h 2261 11121 4 +PQ +SE +ID 5453 +TI 1760667401.462782144 +UH 0 12 l 2112 10632 4 +UH 0 18 h 1646 5324 0 +UH 0 19 h 1883 11177 4 +PQ +SE +ID 5454 +TI 1760667401.462802410 +UH 0 19 l 2364 11137 4 +UH 0 20 l 2569 10751 4 +UH 0 52 h 2207 10791 4 +UH 0 57 h 2154 10907 4 +UH 0 58 h 1598 4255 0 +UH 0 61 h 1898 10906 4 +PQ +SE +ID 5455 +TI 1760667401.462840318 +UH 0 35 l 3851 8779 4 +UH 0 36 l 1616 8599 4 +UH 0 27 l 2100 9203 4 +UH 0 31 l 1656 2981 0 +UH 0 41 h 1654 2920 0 +UH 0 59 h 3846 9183 4 +UH 0 26 h 2034 9264 4 +PQ +SE +ID 5456 +TI 1760667401.462889432 +UH 0 11 l 2389 10599 4 +UH 0 52 h 2269 11321 4 +PQ +SE +ID 5457 +TI 1760667401.462912082 +UH 0 38 l 2097 11064 4 +UH 0 42 h 2134 10584 4 +PQ +SE +ID 5458 +TI 1760667401.462928533 +UH 0 59 l 1837 10832 4 +UH 0 60 l 2085 10533 4 +UH 0 63 l 3142 10615 4 +UH 0 10 h 2150 11246 4 +UH 0 14 h 1864 11086 4 +UH 0 16 h 2822 11345 4 +UH 0 17 h 1684 11311 4 +PQ +SE +ID 5459 +TI 1760667401.462970733 +UH 0 64 l 3194 0 5 +UH 0 64 h 3146 0 5 +BD GR Veto +PQ +SE +ID 5460 +TI 1760667401.462979078 +UH 0 64 l 1724 0 5 +UH 0 64 h 1789 0 5 +BD GR Veto +PQ +SE +ID 5461 +TI 1760667401.462989568 +UH 0 34 l 2266 10277 4 +UH 0 35 l 1726 4871 0 +UH 0 36 l 1706 4580 0 +UH 0 24 l 2167 10771 4 +UH 0 25 l 4070 10719 4 +UH 0 2 h 1889 11270 4 +UH 0 3 h 1664 4354 0 +UH 0 6 h 2146 11217 4 +UH 0 7 h 1689 4490 0 +UH 0 9 h 1664 11206 4 +UH 0 10 h 4396 11352 4 +PQ +SE +ID 5462 +TI 1760667401.463055372 +UH 0 39 l 4595 8538 4 +UH 0 40 l 1531 8864 4 +UH 0 29 l 1909 9010 4 +UH 0 22 h 1758 2444 0 +UH 0 23 h 1687 9140 4 +UH 0 24 h 2661 9047 4 +UH 0 25 h 2406 9311 4 +UH 0 26 h 1789 9445 4 +UH 0 28 h 2294 8859 4 +PQ +SE +ID 5463 +TI 1760667401.463104009 +UH 0 50 l 2586 10749 4 +UH 0 53 l 1760 10971 4 +UH 0 33 h 1720 4262 0 +UH 0 35 h 1641 10798 4 +UH 0 36 h 2521 10802 4 +PQ +SE +ID 5464 +TI 1760667401.463136911 +UH 0 0 l 2167 10939 4 +UH 0 1 l 1660 4992 0 +UH 0 54 h 2194 10915 4 +PQ +SE +ID 5465 +TI 1760667401.463155269 +UH 0 46 l 1517 3937 0 +UH 0 54 l 1627 4903 0 +UH 0 57 l 1571 10696 4 +UH 0 59 l 3885 10496 4 +UH 0 60 l 1818 10311 4 +UH 0 30 l 1761 2363 0 +UH 0 34 h 1664 8465 4 +UH 0 50 h 1731 4019 0 +UH 0 52 h 1613 5024 0 +UH 0 55 h 1838 10350 4 +UH 0 56 h 3969 10562 4 +UH 0 29 h 1597 4271 0 +PQ +SE +ID 5466 +TI 1760667401.463234186 +UH 0 34 l 1600 8524 4 +UH 0 35 l 5569 8580 4 +UH 0 36 l 1684 8418 4 +UH 0 40 h 4250 8774 4 +UH 0 41 h 2947 9106 4 +PQ +SE +ID 5467 +TI 1760667401.463259696 +UH 0 52 l 2988 10600 4 +UH 0 53 l 2117 10591 4 +UH 0 11 h 3559 11273 4 +PQ +SE +ID 5468 +TI 1760667401.463285684 +UH 0 45 l 1719 10543 4 +UH 0 23 h 1749 11384 4 +PQ +SE +ID 5469 +TI 1760667401.463305234 +UH 0 4 l 2290 10874 4 +UH 0 18 h 2326 11201 4 +PQ +SE +ID 5470 +TI 1760667401.463325262 +UH 0 57 l 1696 5240 0 +UH 0 38 h 1773 5130 0 +PQ +SE +ID 5471 +TI 1760667401.463351488 +UH 0 14 l 1677 8809 4 +UH 0 15 l 5695 8575 4 +UH 0 16 l 1598 8991 4 +UH 0 26 l 1805 1631 0 +UH 0 27 l 1775 1591 0 +UH 0 28 l 1839 1480 0 +UH 0 29 l 1890 1524 0 +UH 0 30 l 1922 1567 0 +UH 0 31 l 2168 1587 0 +UH 0 13 h 5624 9394 4 +PQ +SE +ID 5472 +TI 1760667401.463420152 +UH 0 1 l 1954 10993 4 +UH 0 6 l 2461 10999 4 +UH 0 12 l 2373 10320 4 +UH 0 13 l 2489 10793 4 +UH 0 39 h 2843 10837 4 +UH 0 43 h 2716 11083 4 +UH 0 44 h 1978 10987 4 +PQ +SE +ID 5473 +TI 1760667401.463475704 +UH 0 26 l 2301 10874 4 +UH 0 28 l 2729 10849 4 +UH 0 2 h 2263 11424 4 +UH 0 3 h 2750 10996 4 +PQ +SE +ID 5474 +TI 1760667401.463500499 +UH 0 8 l 2332 10997 4 +UH 0 60 h 1976 10598 4 +UH 0 61 h 1771 11069 4 +PQ +SE +ID 5475 +TI 1760667401.463521480 +UH 0 34 l 4051 10073 4 +UH 0 35 l 1751 10378 4 +UH 0 18 h 4323 11001 4 +PQ +SE +ID 5476 +TI 1760667401.463545799 +UH 0 55 l 1644 5017 0 +UH 0 28 h 1786 11383 4 +PQ +SE +ID 5477 +TI 1760667401.463564872 +UH 0 12 l 3088 10158 4 +UH 0 13 l 2685 10660 4 +UH 0 35 h 4088 11006 4 +PQ +SE +ID 5478 +TI 1760667401.463584423 +UH 0 24 l 4522 10882 4 +UH 0 55 h 1935 10438 4 +UH 0 56 h 4094 10658 4 +PQ +SE +ID 5479 +TI 1760667401.463604211 +UH 0 28 l 2362 11229 4 +UH 0 29 l 2328 11015 4 +UH 0 11 h 1813 11182 4 +UH 0 12 h 2749 10984 4 +PQ +SE +ID 5480 +TI 1760667401.463625907 +UH 0 64 l 1980 0 5 +UH 0 64 h 2023 0 5 +BD GR Veto +PQ +SE +ID 5481 +TI 1760667401.463633060 +UH 0 23 l 2070 10899 4 +UH 0 24 l 1992 11008 4 +UH 0 63 h 2325 10519 4 +PQ +SE +ID 5482 +TI 1760667401.463651418 +UH 0 43 l 1819 11314 4 +UH 0 50 h 1815 10527 4 +UH 0 51 h 1613 4495 0 +PQ +SE +ID 5483 +TI 1760667401.463671207 +UH 0 39 l 2611 10690 4 +UH 0 48 l 1614 4984 0 +UH 0 49 l 1545 5234 0 +UH 0 61 l 2396 10695 4 +UH 0 32 h 2273 10842 4 +UH 0 16 h 1720 5626 0 +UH 0 20 h 1816 11153 4 +UH 0 21 h 2321 11353 4 +PQ +SE +ID 5484 +TI 1760667401.463728189 +UH 0 30 l 2401 10834 4 +UH 0 64 l 3305 0 5 +UH 0 10 h 2374 11437 4 +UH 0 64 h 3264 0 5 +BD GR Veto +PQ +SE +ID 5485 +TI 1760667401.463766813 +UH 0 35 l 2134 10823 4 +UH 0 57 h 2164 11371 4 +PQ +SE +ID 5486 +TI 1760667401.463796854 +UH 0 13 l 3087 10504 4 +UH 0 64 l 4108 0 5 +UH 0 62 h 3113 10735 4 +UH 0 64 h 3984 0 5 +BD GR Veto +PQ +SE +ID 5487 +TI 1760667401.463829278 +UH 0 61 l 1810 5068 0 +UH 0 25 h 1676 5616 0 +PQ +SE +ID 5488 +TI 1760667401.463846921 +UH 0 64 l 2644 0 5 +UH 0 64 h 2642 0 5 +BD GR Veto +PQ +SE +ID 5489 +TI 1760667401.463854312 +UH 0 64 l 2253 0 5 +UH 0 64 h 2294 0 5 +BD GR Veto +PQ +SE +ID 5490 +TI 1760667401.463863134 +UH 0 32 l 1943 9314 4 +UH 0 36 l 1723 3148 0 +UH 0 40 l 1629 9034 4 +UH 0 41 l 3665 9065 4 +UH 0 42 l 1608 5308 0 +UH 0 21 h 1770 9569 4 +UH 0 22 h 2901 9199 4 +UH 0 24 h 1682 3142 0 +UH 0 26 h 3766 9844 4 +PQ +SE +ID 5491 +TI 1760667401.463909149 +UH 0 64 l 1734 0 5 +UH 0 64 h 2905 0 5 +BD GR Veto +PQ +SE +ID 5492 +TI 1760667401.463917970 +UH 0 64 l 5664 0 5 +UH 0 0 h 1627 9255 4 +UH 0 64 h 5371 0 5 +BD GR Veto +PQ +SE +ID 5493 +TI 1760667401.463931798 +UH 0 46 l 3424 10770 4 +UH 0 46 h 2138 10359 4 +UH 0 47 h 2952 10282 4 +PQ +SE +ID 5494 +TI 1760667401.463952302 +UH 0 64 h 1661 0 5 +BD GR Veto +PQ +SE +ID 5495 +TI 1760667401.463958024 +UH 0 43 l 1654 5482 0 +UH 0 41 h 1736 4827 0 +PQ +SE +ID 5496 +TI 1760667401.463975429 +UH 0 12 l 3607 10454 4 +UH 0 15 h 1618 11058 4 +UH 0 16 h 3354 10919 4 +PQ +SE +ID 5497 +TI 1760667401.463995933 +UH 0 17 l 1960 10816 4 +UH 0 18 l 2166 10645 4 +UH 0 19 l 4015 10895 4 +UH 0 20 l 2206 10668 4 +UH 0 14 h 1593 11359 4 +UH 0 15 h 2925 11181 4 +UH 0 16 h 3472 11126 4 +UH 0 17 h 1664 11091 4 +UH 0 19 h 1827 5147 0 +UH 0 20 h 1649 4982 0 +PQ +SE +ID 5498 +TI 1760667401.464034795 +UH 0 14 l 1777 4613 0 +UH 0 64 l 1716 0 5 +UH 0 59 h 1726 5375 0 +BD GR Veto +PQ +SE +ID 5499 +TI 1760667401.464055299 +UH 0 59 l 1557 8690 4 +UH 0 60 l 4901 8317 4 +UH 0 32 h 4735 8487 4 +UH 0 31 h 1566 8493 4 +PQ +SE +ID 5500 +TI 1760667401.464077711 +UH 0 49 l 1960 11005 4 +UH 0 37 h 2039 11535 4 +PQ +SE +ID 5501 +TI 1760667401.464107275 +UH 0 62 l 2198 10515 4 +UH 0 15 h 1692 5121 0 +UH 0 16 h 2043 11498 4 +PQ +SE +ID 5502 +TI 1760667401.464128494 +UH 0 44 l 1568 5325 0 +UH 0 4 h 1705 4862 0 +PQ +SE +ID 5503 +TI 1760667401.479434967 +UH 0 18 l 1724 10588 4 +UH 0 19 l 2302 10826 4 +UH 0 24 l 3053 10540 4 +UH 0 33 h 2362 10281 4 +UH 0 27 h 2961 11207 4 +PQ +SE +ID 5504 +TI 1760667401.479587316 +UH 0 30 l 1651 5529 0 +UH 0 62 h 1723 4843 0 +PQ +SE +ID 5505 +TI 1760667401.479626655 +UH 0 34 l 1732 10354 4 +UH 0 35 l 3006 10476 4 +UH 0 39 h 3253 10733 4 +PQ +SE +ID 5506 +TI 1760667401.479666948 +UH 0 28 l 2519 11097 4 +UH 0 31 l 2207 11201 4 +UH 0 57 h 2150 10728 4 +UH 0 58 h 1593 4121 0 +UH 0 61 h 1650 10882 4 +UH 0 62 h 2375 10651 4 +PQ +SE +ID 5507 +TI 1760667401.479736089 +UH 0 7 l 1591 5152 0 +UH 0 8 l 2458 10408 4 +UH 0 28 h 2485 10966 4 +PQ +SE +ID 5508 +TI 1760667401.479775190 +UH 0 9 l 1756 4443 0 +UH 0 19 l 1759 10861 4 +UH 0 20 l 3881 10422 4 +UH 0 47 h 4010 10432 4 +UH 0 53 h 1707 4833 0 +PQ +SE +ID 5509 +TI 1760667401.479842185 +UH 0 28 l 2035 11211 4 +UH 0 29 l 3467 10898 4 +UH 0 35 h 1955 10761 4 +UH 0 38 h 3404 10703 4 +PQ +SE +ID 5510 +TI 1760667401.479896306 +UH 0 29 l 3251 10905 4 +UH 0 24 h 3131 10803 4 +PQ +SE +ID 5511 +TI 1760667401.479930162 +UH 0 32 l 3822 10375 4 +UH 0 33 l 1854 10145 4 +UH 0 17 h 3839 11129 4 +PQ +SE +ID 5512 +TI 1760667401.479968786 +UH 0 5 l 2576 10828 4 +UH 0 6 l 2959 11025 4 +UH 0 43 h 1648 10530 4 +UH 0 44 h 2423 10317 4 +UH 0 45 h 2853 10559 4 +PQ +SE +ID 5513 +TI 1760667401.480016469 +UH 0 28 l 2316 10610 4 +UH 0 29 l 2331 10409 4 +UH 0 30 l 4158 10622 4 +UH 0 13 h 3057 11213 4 +UH 0 14 h 4054 11261 4 +PQ +SE +ID 5514 +TI 1760667401.480063676 +UH 0 62 l 1858 11213 4 +UH 0 53 h 1805 10692 4 +PQ +SE +ID 5515 +TI 1760667401.480112314 +UH 0 44 l 3973 8926 4 +UH 0 45 l 1567 9022 4 +UH 0 46 l 2108 9035 4 +UH 0 32 h 1693 2798 0 +UH 0 33 h 1998 8537 4 +UH 0 26 h 1581 9472 4 +UH 0 27 h 3950 9158 4 +UH 0 28 h 1641 9061 4 +PQ +SE +ID 5516 +TI 1760667401.480200052 +UH 0 20 l 3412 10639 4 +UH 0 61 h 2326 10542 4 +UH 0 62 h 2606 10352 4 +PQ +SE +ID 5517 +TI 1760667401.480239629 +UH 0 56 l 2248 11144 4 +UH 0 57 l 1681 5115 0 +UH 0 62 h 1775 11024 4 +UH 0 63 h 2302 10985 4 +PQ +SE +ID 5518 +TI 1760667401.480277061 +UH 0 6 l 2405 10861 4 +UH 0 35 h 2375 11168 4 +PQ +SE +ID 5519 +TI 1760667401.480311393 +UH 0 6 l 2075 11080 4 +UH 0 10 l 1822 4721 0 +UH 0 11 l 2433 10485 4 +UH 0 53 h 2051 11052 4 +UH 0 54 h 2002 11213 4 +UH 0 55 h 2155 10747 4 +PQ +SE +ID 5520 +TI 1760667401.480373144 +UH 0 48 l 2611 10863 4 +UH 0 51 l 1806 10785 4 +UH 0 52 l 3022 10635 4 +UH 0 46 h 3176 10653 4 +UH 0 48 h 1750 4991 0 +UH 0 49 h 2458 10578 4 +PQ +SE +ID 5521 +TI 1760667401.480440139 +UH 0 51 l 1627 5449 0 +UH 0 52 l 3732 8394 4 +UH 0 53 l 1615 8454 4 +UH 0 60 l 1696 2338 0 +UH 0 42 h 3755 8511 4 +UH 0 44 h 1701 2200 0 +PQ +SE +ID 5522 +TI 1760667401.480506658 +UH 0 31 l 2223 10896 4 +UH 0 12 h 2177 11344 4 +PQ +SE +ID 5523 +TI 1760667401.480537891 +UH 0 46 l 3164 9704 4 +UH 0 50 l 3665 9795 4 +UH 0 48 h 1667 9432 4 +UH 0 49 h 3537 9267 4 +UH 0 50 h 1657 9325 4 +UH 0 51 h 3177 9375 4 +PQ +SE +ID 5524 +TI 1760667401.480571508 +UH 0 57 l 1768 2601 0 +UH 0 58 l 1579 1909 0 +UH 0 62 l 1617 5388 0 +UH 0 63 l 2650 8148 4 +UH 0 64 l 2691 0 5 +UH 0 16 h 1885 9205 4 +UH 0 17 h 3074 8998 4 +UH 0 64 h 2227 0 5 +BD GR Veto +PQ +SE +ID 5525 +TI 1760667401.480606794 +UH 0 64 l 4256 0 5 +UH 0 64 h 4139 0 5 +BD GR Veto +PQ +SE +ID 5526 +TI 1760667401.480615139 +UH 0 64 l 2457 0 5 +UH 0 64 h 2451 0 5 +BD GR Veto +PQ +SE +ID 5527 +TI 1760667401.480623722 +UH 0 32 l 2451 10656 4 +UH 0 24 h 2355 11151 4 +PQ +SE +ID 5528 +TI 1760667401.480641603 +UH 0 15 l 4020 9580 4 +UH 0 16 l 1594 9818 4 +UH 0 26 l 1745 1659 0 +UH 0 27 l 1739 1611 0 +UH 0 28 l 1739 1504 0 +UH 0 29 l 1794 1548 0 +UH 0 30 l 1793 1586 0 +UH 0 31 l 1932 1607 0 +UH 0 57 h 3617 10276 4 +UH 0 58 h 1904 9963 4 +PQ +SE +ID 5529 +TI 1760667401.480680942 +UH 0 17 l 1808 10837 4 +UH 0 19 l 2154 11140 4 +UH 0 49 h 1800 10543 4 +UH 0 51 h 1538 3784 0 +UH 0 52 h 2064 10588 4 +PQ +SE +ID 5530 +TI 1760667401.480711460 +UH 0 4 l 2369 11142 4 +UH 0 5 l 1657 5221 0 +UH 0 60 h 2276 10171 4 +UH 0 61 h 1627 4338 0 +PQ +SE +ID 5531 +TI 1760667401.480733871 +UH 0 64 l 2485 0 5 +UH 0 64 h 2484 0 5 +BD GR Veto +PQ +SE +ID 5532 +TI 1760667401.480742454 +UH 0 35 l 2269 10844 4 +UH 0 26 h 1734 5445 0 +UH 0 27 h 1664 4667 0 +UH 0 31 h 1988 10871 4 +PQ +SE +ID 5533 +TI 1760667401.480770111 +UH 0 9 l 1976 10878 4 +UH 0 41 h 1938 11531 4 +PQ +SE +ID 5534 +TI 1760667401.480787515 +UH 0 17 l 5232 10795 4 +UH 0 19 l 2027 10721 4 +UH 0 44 h 1644 10651 4 +UH 0 45 h 2561 10817 4 +UH 0 49 h 4430 10342 4 +PQ +SE +ID 5535 +TI 1760667401.480819702 +UH 0 8 l 1959 10571 4 +UH 0 24 h 1839 11381 4 +PQ +SE +ID 5536 +TI 1760667401.480838060 +UH 0 32 l 1692 4812 0 +UH 0 33 l 2392 10215 4 +UH 0 17 h 2439 11161 4 +PQ +SE +ID 5537 +TI 1760667401.480858087 +UH 0 52 l 1749 5004 0 +UH 0 28 h 1792 11252 4 +PQ +SE +ID 5538 +TI 1760667401.480875253 +UH 0 51 l 4097 10019 4 +UH 0 12 h 1526 9863 4 +UH 0 13 h 3997 9836 4 +PQ +SE +ID 5539 +TI 1760667401.480895757 +UH 0 30 l 2237 11362 4 +UH 0 42 h 1949 10295 4 +UH 0 43 h 1797 10559 4 +PQ +SE +ID 5540 +TI 1760667401.480916738 +UH 0 30 l 2037 11327 4 +UH 0 37 h 1641 4070 0 +UH 0 38 h 1983 10577 4 +PQ +SE +ID 5541 +TI 1760667401.480937719 +UH 0 64 l 1680 0 5 +UH 0 64 h 2194 0 5 +BD GR Veto +PQ +SE +ID 5542 +TI 1760667401.480948209 +UH 0 10 l 1824 5197 0 +UH 0 27 h 1803 11548 4 +PQ +SE +ID 5543 +TI 1760667401.480970382 +UH 0 4 l 1633 5382 0 +UH 0 15 h 1689 5311 0 +PQ +SE +ID 5544 +TI 1760667401.480988502 +UH 0 35 l 1726 5438 0 +UH 0 47 h 1813 11229 4 +PQ +SE +ID 5545 +TI 1760667401.481006383 +UH 0 6 l 2463 11074 4 +UH 0 29 h 2301 10892 4 +UH 0 30 h 1627 11183 4 +PQ +SE +ID 5546 +TI 1760667401.481026887 +UH 0 60 l 2652 10132 4 +UH 0 61 l 1708 10514 4 +UH 0 63 l 1611 5079 0 +UH 0 43 h 1806 10813 4 +UH 0 44 h 2368 10627 4 +UH 0 45 h 1607 3860 0 +UH 0 56 h 1654 4032 0 +PQ +SE +ID 5547 +TI 1760667401.481065988 +UH 0 64 l 1725 0 5 +UH 0 64 h 1775 0 5 +BD GR Veto +PQ +SE +ID 5548 +TI 1760667401.481072902 +UH 0 0 l 2239 10273 4 +UH 0 64 l 1699 0 5 +UH 0 26 h 2199 11411 4 +UH 0 64 h 2519 0 5 +BD GR Veto +PQ +SE +ID 5549 +TI 1760667401.481093645 +UH 0 22 l 1857 5037 0 +UH 0 20 h 1841 11634 4 +PQ +SE +ID 5550 +TI 1760667401.481112003 +UH 0 23 l 2087 10526 4 +UH 0 28 h 2037 11195 4 +PQ +SE +ID 5551 +TI 1760667401.481130123 +UH 0 62 l 1620 5371 0 +UH 0 64 l 2069 0 5 +UH 0 64 h 2575 0 5 +BD GR Veto +PQ +SE +ID 5552 +TI 1760667401.481146335 +UH 0 40 l 3118 10712 4 +UH 0 46 l 1718 10505 4 +UH 0 47 l 1802 10637 4 +UH 0 40 h 3164 10576 4 +UH 0 18 h 2102 11094 4 +UH 0 19 h 1542 5647 0 +PQ +SE +ID 5553 +TI 1760667401.481187820 +UH 0 36 l 3006 10456 4 +UH 0 37 l 1679 10876 4 +UH 0 24 h 3044 10852 4 +PQ +SE +ID 5554 +TI 1760667401.481210947 +UH 0 23 l 2869 10861 4 +UH 0 40 h 1604 10564 4 +UH 0 41 h 2734 10724 4 +PQ +SE +ID 5555 +TI 1760667401.481236457 +UH 0 4 l 1811 5079 0 +UH 0 5 l 2209 10722 4 +UH 0 54 h 2351 11233 4 +PQ +SE +ID 5556 +TI 1760667401.481257915 +UH 0 25 l 2419 11368 4 +UH 0 4 h 2402 11195 4 +PQ +SE +ID 5557 +TI 1760667401.481277704 +UH 0 45 l 1953 10677 4 +UH 0 30 h 1961 11569 4 +PQ +SE +ID 5558 +TI 1760667401.481298446 +UH 0 23 l 4342 9040 4 +UH 0 24 l 1694 9237 4 +UH 0 26 h 1588 9600 4 +UH 0 27 h 3896 9295 4 +UH 0 28 h 1886 9177 4 +PQ +SE +ID 5559 +TI 1760667401.481325149 +UH 0 42 l 2198 10835 4 +UH 0 43 l 1961 10831 4 +UH 0 25 l 1830 4840 0 +UH 0 26 l 1751 5239 0 +UH 0 49 h 2674 11003 4 +UH 0 50 h 1741 4444 0 +UH 0 51 h 1702 5277 0 +PQ +SE +ID 5560 +TI 1760667401.481362342 +UH 0 64 h 1970 0 5 +BD GR Veto +PQ +SE +ID 5561 +TI 1760667401.481370449 +UH 0 9 l 2628 10969 4 +UH 0 43 h 2533 10865 4 +PQ +SE +ID 5562 +TI 1760667401.481393098 +UH 0 2 l 1783 5129 0 +UH 0 13 h 1743 5481 0 +PQ +SE +ID 5563 +TI 1760667401.481412172 +UH 0 13 l 2815 5292 0 +UH 0 36 h 2818 5219 0 +UH 0 39 h 2816 5196 0 +PQ +SE +ID 5564 +TI 1760667401.481438875 +UH 0 3 l 2709 10308 4 +UH 0 11 h 2752 11372 4 +PQ +SE +ID 5565 +TI 1760667401.481457471 +UH 0 25 l 5788 9720 4 +UH 0 36 h 1650 9148 4 +UH 0 37 h 5610 9171 4 +UH 0 38 h 1671 9175 4 +PQ +SE +ID 5566 +TI 1760667401.481480360 +UH 0 18 l 1590 4591 0 +UH 0 19 l 1674 5125 0 +UH 0 20 l 2177 10719 4 +UH 0 37 h 2229 11173 4 +PQ +SE +ID 5567 +TI 1760667401.499543905 +UH 0 64 l 2487 0 5 +UH 0 0 h 2253 11222 4 +UH 0 64 h 1887 0 5 +BD GR Veto +PQ +SE +ID 5568 +TI 1760667401.499695777 +UH 0 51 l 2332 8984 4 +UH 0 52 l 1612 5074 0 +UH 0 53 l 2835 9171 4 +UH 0 54 l 3517 9395 4 +UH 0 55 l 1504 9275 4 +UH 0 52 h 4318 9007 4 +UH 0 53 h 2008 8985 4 +UH 0 55 h 1745 8985 4 +UH 0 56 h 2222 9169 4 +PQ +SE +ID 5569 +TI 1760667401.499757289 +UH 0 64 l 2771 0 5 +UH 0 64 h 2787 0 5 +BD GR Veto +PQ +SE +ID 5570 +TI 1760667401.499766111 +UH 0 14 l 2719 10877 4 +UH 0 57 h 1612 11062 4 +UH 0 58 h 2553 10643 4 +PQ +SE +ID 5571 +TI 1760667401.499788284 +UH 0 32 l 1841 10576 4 +UH 0 36 l 2020 10554 4 +UH 0 37 l 3772 10787 4 +UH 0 14 h 1587 3820 0 +UH 0 15 h 1750 11402 4 +UH 0 21 h 3265 11166 4 +UH 0 22 h 2500 10882 4 +PQ +SE +ID 5572 +TI 1760667401.499830484 +UH 0 39 l 2299 10709 4 +UH 0 49 h 2268 11180 4 +PQ +SE +ID 5573 +TI 1760667401.499850749 +UH 0 46 l 2085 10908 4 +UH 0 12 h 2127 11192 4 +PQ +SE +ID 5574 +TI 1760667401.499869346 +UH 0 14 l 2531 9325 4 +UH 0 18 l 1783 3105 0 +UH 0 19 l 1919 9306 4 +UH 0 26 l 4068 9664 4 +UH 0 35 h 1862 9055 4 +UH 0 36 h 4060 9033 4 +UH 0 37 h 1625 9287 4 +UH 0 38 h 2763 9002 4 +PQ +SE +ID 5575 +TI 1760667401.499913215 +UH 0 0 l 2264 10774 4 +UH 0 2 l 1746 11078 4 +UH 0 37 h 1713 10896 4 +UH 0 31 h 2259 10863 4 +PQ +SE +ID 5576 +TI 1760667401.499942541 +UH 0 64 l 1684 0 5 +UH 0 64 h 1802 0 5 +BD GR Veto +PQ +SE +ID 5577 +TI 1760667401.499950885 +UH 0 25 l 1737 4657 0 +UH 0 29 l 1983 10891 4 +UH 0 30 l 2409 11157 4 +UH 0 0 h 2334 11247 4 +UH 0 1 h 2042 11248 4 +UH 0 2 h 1724 11416 4 +PQ +SE +ID 5578 +TI 1760667401.499981403 +UH 0 39 l 2867 10778 4 +UH 0 38 h 2562 10754 4 +UH 0 39 h 1933 10542 4 +PQ +SE +ID 5579 +TI 1760667401.500002622 +UH 0 64 l 2641 0 5 +UH 0 64 h 2558 0 5 +BD GR Veto +PQ +SE +ID 5580 +TI 1760667401.500010490 +UH 0 64 l 2248 0 5 +UH 0 64 h 2266 0 5 +BD GR Veto +PQ +SE +ID 5581 +TI 1760667401.500018358 +UH 0 64 l 2069 0 5 +UH 0 64 h 2105 0 5 +BD GR Veto +PQ +SE +ID 5582 +TI 1760667401.500026941 +UH 0 37 l 1727 5108 0 +UH 0 2 h 1760 5620 0 +PQ +SE +ID 5583 +TI 1760667401.500044822 +UH 0 7 l 2147 10714 4 +UH 0 8 l 1692 4904 0 +UH 0 42 h 2269 10898 4 +PQ +SE +ID 5584 +TI 1760667401.500067949 +UH 0 63 l 1737 4899 0 +UH 0 64 l 1745 0 5 +UH 0 15 h 1858 10984 4 +UH 0 64 h 2186 0 5 +BD GR Veto +PQ +SE +ID 5585 +TI 1760667401.500087738 +UH 0 64 l 4406 0 5 +UH 0 64 h 4251 0 5 +BD GR Veto +PQ +SE +ID 5586 +TI 1760667401.500121593 +UH 0 23 l 3170 9717 4 +UH 0 24 l 1686 9947 4 +UH 0 26 l 2224 10002 4 +UH 0 29 l 3495 9546 4 +UH 0 51 h 1763 9960 4 +UH 0 52 h 3061 9928 4 +UH 0 53 h 1880 9915 4 +UH 0 56 h 3473 10030 4 +PQ +SE +ID 5587 +TI 1760667401.500166893 +UH 0 52 l 1624 5403 0 +UH 0 48 h 1618 4873 0 +PQ +SE +ID 5588 +TI 1760667401.500185489 +UH 0 64 l 2215 0 5 +UH 0 64 h 2248 0 5 +BD GR Veto +PQ +SE +ID 5589 +TI 1760667401.500193834 +UH 0 23 l 1861 5361 0 +UH 0 32 h 1696 5105 0 +PQ +SE +ID 5590 +TI 1760667401.500217199 +UH 0 32 l 4179 10309 4 +UH 0 1 h 4184 11183 4 +UH 0 2 h 1574 9487 0 +PQ +SE +ID 5591 +TI 1760667401.500238656 +UH 0 34 l 1577 8869 4 +UH 0 35 l 4099 8921 4 +UH 0 36 l 1615 8757 4 +UH 0 61 h 4168 8976 4 +PQ +SE +ID 5592 +TI 1760667401.500263214 +UH 0 10 l 1683 8771 4 +UH 0 11 l 8042 8379 4 +UH 0 12 l 1711 8427 4 +UH 0 45 h 1611 8721 4 +UH 0 46 h 7568 8465 4 +UH 0 47 h 1678 8492 4 +PQ +SE +ID 5593 +TI 1760667401.500291585 +UH 0 64 l 3058 0 5 +UH 0 64 h 3033 0 5 +BD GR Veto +PQ +SE +ID 5594 +TI 1760667401.500298976 +UH 0 42 l 1817 10536 4 +UH 0 43 l 3509 10433 4 +UH 0 64 l 3310 0 5 +UH 0 0 h 3803 10657 4 +UH 0 1 h 1654 10884 4 +UH 0 64 h 3280 0 5 +BD GR Veto +PQ +SE +ID 5595 +TI 1760667401.500325679 +UH 0 54 l 2415 10455 4 +UH 0 55 l 1498 5391 0 +UH 0 62 h 1710 3967 0 +UH 0 63 h 2430 10210 4 +PQ +SE +ID 5596 +TI 1760667401.500346422 +UH 0 51 l 2576 10834 4 +UH 0 52 l 1599 5319 0 +UH 0 57 h 2601 11121 4 +PQ +SE +ID 5597 +TI 1760667401.500367403 +UH 0 25 l 3235 10824 4 +UH 0 1 h 3214 11226 4 +PQ +SE +ID 5598 +TI 1760667401.500384569 +UH 0 9 l 2863 10367 4 +UH 0 12 l 1742 4531 0 +UH 0 13 l 2053 10742 4 +UH 0 13 h 2824 11341 4 +UH 0 18 h 2164 11007 4 +PQ +SE +ID 5599 +TI 1760667401.500419378 +UH 0 57 l 2640 10728 4 +UH 0 58 l 2232 10413 4 +UH 0 34 h 2150 10924 4 +UH 0 35 h 2711 10974 4 +PQ +SE +ID 5600 +TI 1760667401.500443935 +UH 0 26 l 3870 9627 4 +UH 0 27 l 1698 9290 4 +UH 0 25 h 3758 9696 4 +UH 0 26 h 1582 9943 4 +PQ +SE +ID 5601 +TI 1760667401.500466346 +UH 0 20 l 2392 10728 4 +UH 0 41 h 1962 10618 4 +UH 0 42 h 1923 10178 4 +PQ +SE +ID 5602 +TI 1760667401.500487327 +UH 0 19 l 1975 10984 4 +UH 0 52 h 1923 11401 4 +PQ +SE +ID 5603 +TI 1760667401.500505924 +UH 0 2 l 1864 11131 4 +UH 0 4 h 1674 3998 0 +PQ +SE +ID 5604 +TI 1760667401.500524282 +UH 0 55 l 4025 9488 4 +UH 0 56 l 1577 9814 4 +UH 0 46 h 3430 9910 4 +UH 0 47 h 2265 9847 4 +PQ +SE +ID 5605 +TI 1760667401.500547647 +UH 0 64 l 2604 0 5 +UH 0 30 h 2169 11464 4 +UH 0 64 h 1991 0 5 +BD GR Veto +PQ +SE +ID 5606 +TI 1760667401.500563144 +UH 0 34 l 1594 8638 4 +UH 0 35 l 4540 8605 4 +UH 0 36 l 1607 8435 4 +UH 0 10 h 3989 9512 4 +UH 0 11 h 2123 9415 4 +PQ +SE +ID 5607 +TI 1760667401.500588178 +UH 0 64 h 1832 0 5 +BD GR Veto +PQ +SE +ID 5608 +TI 1760667401.500594377 +UH 0 39 l 3160 10701 4 +UH 0 40 l 2049 10809 4 +UH 0 38 h 3764 11088 4 +PQ +SE +ID 5609 +TI 1760667401.500615119 +UH 0 0 l 1615 5230 0 +UH 0 64 l 2914 0 5 +UH 0 64 h 3957 0 5 +BD GR Veto +PQ +SE +ID 5610 +TI 1760667401.500629186 +UH 0 3 l 2531 10575 4 +UH 0 32 h 2499 11155 4 +PQ +SE +ID 5611 +TI 1760667401.500646591 +UH 0 43 l 1911 10693 4 +UH 0 19 h 1979 11607 4 +PQ +SE +ID 5612 +TI 1760667401.500664472 +UH 0 13 l 2844 11061 4 +UH 0 24 h 2740 10704 4 +PQ +SE +ID 5613 +TI 1760667401.500683307 +UH 0 64 l 1705 0 5 +UH 0 64 h 1999 0 5 +BD GR Veto +PQ +SE +ID 5614 +TI 1760667401.500693321 +UH 0 64 l 3848 0 5 +UH 0 64 h 3720 0 5 +BD GR Veto +PQ +SE +ID 5615 +TI 1760667401.500705003 +UH 0 38 l 4333 8313 4 +UH 0 39 l 1639 8349 4 +UH 0 62 h 4416 8565 4 +PQ +SE +ID 5616 +TI 1760667401.500724792 +UH 0 55 l 2224 10927 4 +UH 0 59 h 2256 10403 4 +PQ +SE +ID 5617 +TI 1760667401.500742673 +UH 0 33 l 2243 10628 4 +UH 0 1 h 2306 10872 4 +PQ +SE +ID 5618 +TI 1760667401.500760078 +UH 0 37 l 3282 10879 4 +UH 0 10 h 1625 10984 4 +UH 0 11 h 3172 10736 4 +PQ +SE +ID 5619 +TI 1760667401.500779628 +UH 0 22 l 1687 4323 0 +UH 0 23 l 2054 10579 4 +UH 0 23 h 2032 11332 4 +PQ +SE +ID 5620 +TI 1760667401.500799655 +UH 0 64 l 1656 0 5 +UH 0 64 h 1685 0 5 +BD GR Veto +PQ +SE +ID 5621 +TI 1760667401.500808954 +UH 0 45 l 2506 10576 4 +UH 0 48 l 2943 11004 4 +UH 0 13 h 2119 10860 4 +UH 0 14 h 2369 10934 4 +UH 0 16 h 2529 11149 4 +PQ +SE +ID 5622 +TI 1760667401.500842809 +UH 0 36 l 2141 10629 4 +UH 0 41 l 2394 10974 4 +UH 0 9 h 2108 10786 4 +UH 0 19 h 2048 11055 4 +UH 0 20 h 1953 10767 4 +PQ +SE +ID 5623 +TI 1760667401.500876426 +UH 0 13 l 3390 10919 4 +UH 0 35 h 3046 10733 4 +UH 0 36 h 1910 10881 4 +PQ +SE +ID 5624 +TI 1760667401.500896215 +UH 0 54 l 1832 11071 4 +UH 0 1 h 1957 11493 4 +PQ +SE +ID 5625 +TI 1760667401.500914573 +UH 0 32 l 5262 9739 4 +UH 0 33 l 1960 9543 4 +UH 0 34 l 1595 9794 4 +UH 0 38 h 5477 9932 4 +UH 0 39 h 1777 9765 4 +PQ +SE +ID 5626 +TI 1760667401.500940084 +UH 0 35 l 3472 10562 4 +UH 0 4 h 3436 11388 4 +UH 0 5 h 1636 11300 4 +PQ +SE +ID 5627 +TI 1760667401.500961065 +UH 0 32 l 3608 10828 4 +UH 0 35 l 3179 10739 4 +UH 0 29 l 2010 10878 4 +UH 0 53 h 3112 10435 4 +UH 0 60 h 2316 10162 4 +UH 0 61 h 3197 10651 4 +PQ +SE +ID 5628 +TI 1760667401.501005172 +UH 0 38 l 1560 3671 0 +UH 0 31 l 3458 10176 4 +UH 0 18 h 3482 9965 4 +UH 0 19 h 1548 10292 4 +UH 0 21 h 1611 3985 0 +PQ +SE +ID 5629 +TI 1760667401.501039266 +UH 0 33 l 1608 5125 0 +UH 0 14 h 1575 5279 0 +PQ +SE +ID 5630 +TI 1760667401.501056909 +UH 0 2 l 2184 10510 4 +UH 0 7 l 1643 4704 0 +UH 0 8 l 1861 10545 4 +UH 0 15 h 1911 11347 4 +UH 0 17 h 2094 11305 4 +PQ +SE +ID 5631 +TI 1760667401.521899223 +UH 0 64 l 1952 0 5 +UH 0 64 h 2029 0 5 +BD GR Veto +PQ +SE +ID 5632 +TI 1760667401.521954059 +UH 0 1 l 1760 11275 4 +UH 0 2 l 3694 10948 4 +UH 0 64 l 2479 0 5 +UH 0 48 h 2416 10808 4 +UH 0 55 h 2587 10299 4 +UH 0 56 h 2857 10587 4 +UH 0 64 h 1712 0 5 +BD GR Veto +PQ +SE +ID 5633 +TI 1760667401.522027254 +UH 0 6 l 2270 11066 4 +UH 0 62 h 1933 11016 4 +UH 0 63 h 1943 11027 4 +PQ +SE +ID 5634 +TI 1760667401.522064685 +UH 0 35 l 1544 7877 4 +UH 0 36 l 4083 7477 4 +UH 0 37 l 1592 4282 0 +UH 0 41 l 1484 8312 4 +UH 0 42 l 1683 8029 4 +UH 0 43 l 5497 7965 4 +UH 0 44 l 1529 8115 4 +UH 0 45 l 1539 7988 4 +UH 0 7 h 4202 8394 4 +UH 0 12 h 1555 8362 4 +UH 0 13 h 5579 8341 4 +PQ +SE +ID 5635 +TI 1760667401.522161006 +UH 0 64 l 2371 0 5 +UH 0 64 h 2390 0 5 +BD GR Veto +PQ +SE +ID 5636 +TI 1760667401.522175788 +UH 0 25 l 2127 11258 4 +UH 0 33 h 2027 10229 4 +PQ +SE +ID 5637 +TI 1760667401.522210121 +UH 0 64 l 3917 0 5 +UH 0 64 h 3795 0 5 +BD GR Veto +PQ +SE +ID 5638 +TI 1760667401.522225141 +UH 0 45 l 3008 10646 4 +UH 0 56 h 3035 10879 4 +PQ +SE +ID 5639 +TI 1760667401.522259235 +UH 0 33 l 1711 8549 4 +UH 0 34 l 5532 8538 4 +UH 0 35 l 1546 8881 4 +UH 0 28 h 2421 8791 4 +UH 0 29 h 4664 8961 4 +UH 0 30 h 1566 9253 4 +PQ +SE +ID 5640 +TI 1760667401.522311687 +UH 0 48 l 1573 8845 4 +UH 0 49 l 5747 8697 4 +UH 0 50 l 1604 8832 4 +UH 0 22 h 3143 9148 4 +UH 0 23 h 2830 9190 4 +UH 0 24 h 2739 9150 4 +PQ +SE +ID 5641 +TI 1760667401.522394657 +UH 0 0 l 2704 10858 4 +UH 0 64 l 1855 0 5 +UH 0 7 h 2716 10807 4 +UH 0 64 h 2171 0 5 +BD GR Veto +PQ +SE +ID 5642 +TI 1760667401.522433280 +UH 0 8 l 2195 10716 4 +UH 0 50 h 2174 11153 4 +PQ +SE +ID 5643 +TI 1760667401.522467613 +UH 0 33 l 1589 5114 0 +UH 0 36 h 1660 4551 0 +PQ +SE +ID 5644 +TI 1760667401.522506952 +UH 0 45 l 1954 10613 4 +UH 0 24 h 1973 11359 4 +PQ +SE +ID 5645 +TI 1760667401.522541284 +UH 0 64 h 1836 0 5 +BD GR Veto +PQ +SE +ID 5646 +TI 1760667401.522551298 +UH 0 43 l 1738 5394 0 +UH 0 44 l 1554 5343 0 +UH 0 49 h 1868 11330 4 +PQ +SE +ID 5647 +TI 1760667401.522592782 +UH 0 46 l 2151 10898 4 +UH 0 17 h 2162 11042 4 +PQ +SE +ID 5648 +TI 1760667401.522618532 +UH 0 50 l 1850 10817 4 +UH 0 38 h 1887 10825 4 +PQ +SE +ID 5649 +TI 1760667401.522636651 +UH 0 0 l 1737 4564 0 +UH 0 9 h 1760 11532 4 +PQ +SE +ID 5650 +TI 1760667401.522651433 +UH 0 64 l 2104 0 5 +UH 0 64 h 2124 0 5 +BD GR Veto +PQ +SE +ID 5651 +TI 1760667401.522659540 +UH 0 43 l 1864 10857 4 +UH 0 44 l 1829 10751 4 +UH 0 45 l 2500 10639 4 +UH 0 56 h 2278 11075 4 +UH 0 59 h 2571 10990 4 +PQ +SE +ID 5652 +TI 1760667401.522689104 +UH 0 21 l 1601 8788 4 +UH 0 22 l 4481 8448 4 +UH 0 23 l 1725 8693 4 +UH 0 20 h 4427 8755 4 +UH 0 21 h 1580 9099 4 +PQ +SE +ID 5653 +TI 1760667401.522714376 +UH 0 3 l 3650 10559 4 +UH 0 50 h 3313 10812 4 +UH 0 51 h 1917 10992 4 +PQ +SE +ID 5654 +TI 1760667401.522734403 +UH 0 2 l 3425 10912 4 +UH 0 4 l 2194 10604 4 +UH 0 22 h 2250 10882 4 +UH 0 26 h 3293 10947 4 +PQ +SE +ID 5655 +TI 1760667401.522765159 +UH 0 4 l 1904 10863 4 +UH 0 5 l 2015 10617 4 +UH 0 56 h 1668 4308 0 +UH 0 57 h 2189 11250 4 +PQ +SE +ID 5656 +TI 1760667401.522788286 +UH 0 57 l 1530 5246 0 +UH 0 58 l 3504 8653 4 +UH 0 59 l 2418 8911 4 +UH 0 43 h 4264 9256 4 +UH 0 44 h 1605 9179 4 +PQ +SE +ID 5657 +TI 1760667401.522814273 +UH 0 53 l 1699 5357 0 +UH 0 54 l 2582 10880 4 +UH 0 9 h 2752 11044 4 +PQ +SE +ID 5658 +TI 1760667401.522833824 +UH 0 51 l 1972 10979 4 +UH 0 52 l 1779 5292 0 +UH 0 64 l 2418 0 5 +UH 0 62 h 2204 10862 4 +UH 0 64 h 2452 0 5 +BD GR Veto +PQ +SE +ID 5659 +TI 1760667401.522859811 +UH 0 10 l 3109 10540 4 +UH 0 11 l 1736 10324 4 +UH 0 31 l 1958 10842 4 +UH 0 56 h 1844 4234 0 +UH 0 57 h 1708 10546 4 +UH 0 58 h 3017 10130 4 +PQ +SE +ID 5660 +TI 1760667401.522892236 +UH 0 40 l 3697 10779 4 +UH 0 47 l 2347 10822 4 +UH 0 63 l 1529 1976 0 +UH 0 3 h 2461 10466 4 +UH 0 25 h 1870 10862 4 +UH 0 26 h 3257 10934 4 +PQ +SE +ID 5661 +TI 1760667401.522931814 +UH 0 22 l 1882 11119 4 +UH 0 4 h 1896 11316 4 +PQ +SE +ID 5662 +TI 1760667401.522949934 +UH 0 64 l 1714 0 5 +UH 0 64 h 1777 0 5 +BD GR Veto +PQ +SE +ID 5663 +TI 1760667401.522957563 +UH 0 64 l 2613 0 5 +UH 0 64 h 2643 0 5 +BD GR Veto +PQ +SE +ID 5664 +TI 1760667401.522965669 +UH 0 16 l 1571 5207 0 +PQ +SE +ID 5665 +TI 1760667401.522976875 +UH 0 0 l 2654 10539 4 +UH 0 64 l 3346 0 5 +UH 0 34 h 1755 10851 4 +UH 0 35 h 4175 10852 4 +BD GR Veto +PQ +SE +ID 5666 +TI 1760667401.522997140 +UH 0 32 l 2305 10686 4 +UH 0 33 l 2016 10402 4 +UH 0 24 l 1694 4769 0 +UH 0 25 l 1725 4893 0 +UH 0 5 h 2728 11238 4 +UH 0 8 h 1735 5231 0 +PQ +SE +ID 5667 +TI 1760667401.523034334 +UH 0 64 l 4097 0 5 +UH 0 64 h 3988 0 5 +BD GR Veto +PQ +SE +ID 5668 +TI 1760667401.523041963 +UH 0 64 l 3121 0 5 +UH 0 64 h 3114 0 5 +BD GR Veto +PQ +SE +ID 5669 +TI 1760667401.523050069 +UH 0 51 l 2919 10865 4 +UH 0 52 l 1711 11006 4 +UH 0 48 h 1807 10992 4 +UH 0 50 h 2109 10858 4 +UH 0 53 h 2197 10795 4 +PQ +SE +ID 5670 +TI 1760667401.523083686 +UH 0 40 l 1589 4420 0 +UH 0 42 l 2150 11007 4 +UH 0 42 h 1714 4019 0 +UH 0 44 h 1978 10181 4 +UH 0 45 h 1620 4163 0 +PQ +SE +ID 5671 +TI 1760667401.523113012 +UH 0 36 l 1652 8506 4 +UH 0 37 l 4378 8668 4 +UH 0 38 l 1541 8766 4 +UH 0 56 h 3392 8580 4 +UH 0 57 h 2588 8741 4 +PQ +SE +ID 5672 +TI 1760667401.523137807 +UH 0 19 l 1671 8543 4 +UH 0 20 l 4267 8156 4 +UH 0 21 l 1589 5486 0 +UH 0 11 h 4273 9174 4 +PQ +SE +ID 5673 +TI 1760667401.523160219 +UH 0 41 l 2001 11004 4 +UH 0 62 h 1798 4459 0 +UH 0 64 h 1975 0 5 +BD GR Veto +PQ +SE +ID 5674 +TI 1760667401.523179769 +UH 0 46 l 1959 10980 4 +UH 0 35 h 1991 10677 4 +UH 0 36 h 1668 3993 0 +PQ +SE +ID 5675 +TI 1760667401.523200273 +UH 0 6 l 1900 11221 4 +UH 0 2 h 1938 11423 4 +PQ +SE +ID 5676 +TI 1760667401.523217916 +UH 0 64 l 2193 0 5 +UH 0 64 h 2228 0 5 +BD GR Veto +PQ +SE +ID 5677 +TI 1760667401.523225545 +UH 0 40 l 2413 10849 4 +UH 0 45 l 2391 10786 4 +UH 0 48 h 2409 10921 4 +UH 0 52 h 2438 11078 4 +PQ +SE +ID 5678 +TI 1760667401.523257493 +UH 0 33 l 3915 8120 4 +UH 0 34 l 1577 8429 4 +UH 0 44 l 1830 8291 4 +UH 0 14 h 1581 8985 4 +UH 0 15 h 3822 8844 4 +UH 0 16 h 1898 8928 4 +PQ +SE +ID 5679 +TI 1760667401.523289442 +UH 0 35 l 1722 5416 0 +UH 0 36 l 1638 4191 0 +UH 0 39 h 1879 11133 4 +PQ +SE +ID 5680 +TI 1760667401.523308992 +UH 0 16 l 3316 10380 4 +UH 0 17 l 1914 10370 4 +UH 0 16 h 1911 11320 4 +UH 0 17 h 3194 11147 4 +PQ +SE +ID 5681 +TI 1760667401.523332118 +UH 0 34 l 1716 5270 0 +UH 0 39 l 2428 10666 4 +UH 0 41 l 1578 5127 0 +UH 0 43 l 1539 4522 0 +UH 0 4 h 2445 11558 4 +UH 0 5 h 1690 4702 0 +UH 0 12 h 1538 5371 0 +UH 0 19 h 1687 4827 0 +PQ +SE +ID 5682 +TI 1760667401.523386478 +UH 0 45 l 2128 10812 4 +UH 0 11 h 2204 11463 4 +PQ +SE +ID 5683 +TI 1760667401.523404121 +UH 0 53 l 2401 10626 4 +UH 0 54 l 2329 10831 4 +UH 0 64 l 3901 0 5 +UH 0 46 h 3227 10760 4 +UH 0 64 h 3810 0 5 +BD GR Veto +PQ +SE +ID 5684 +TI 1760667401.523429155 +UH 0 40 l 1744 4853 0 +UH 0 42 l 1896 4782 0 +UH 0 43 l 1557 5465 0 +UH 0 44 l 2040 10392 4 +UH 0 50 l 2199 10430 4 +UH 0 31 l 3625 10724 4 +UH 0 42 h 1928 10589 4 +UH 0 43 h 2132 10829 4 +UH 0 51 h 2167 10868 4 +UH 0 54 h 1772 10842 4 +UH 0 62 h 2755 10779 4 +UH 0 63 h 2531 10813 4 +PQ +SE +ID 5685 +TI 1760667401.523495912 +UH 0 2 l 4284 9879 4 +UH 0 9 l 1826 3511 0 +UH 0 36 h 1839 10049 4 +UH 0 28 h 4237 9996 4 +UH 0 29 h 1571 10312 4 +PQ +SE +ID 5686 +TI 1760667401.523533582 +UH 0 51 l 1716 10847 4 +UH 0 52 l 2593 10695 4 +UH 0 53 l 2324 10740 4 +UH 0 54 l 1684 11005 4 +UH 0 62 l 2151 10450 4 +UH 0 63 l 2861 10235 4 +UH 0 33 h 2456 10182 4 +UH 0 42 h 2051 10356 4 +UH 0 43 h 2174 10574 4 +UH 0 26 h 3420 11401 4 +PQ +SE +ID 5687 +TI 1760667401.523582935 +UH 0 38 l 1550 5070 0 +UH 0 39 l 2963 10726 4 +UH 0 41 l 2085 10432 4 +UH 0 36 h 2228 10758 4 +UH 0 54 h 1562 4697 0 +UH 0 63 h 2131 10352 4 +UH 0 64 h 2401 0 5 +BD GR Veto +PQ +SE +ID 5688 +TI 1760667401.523622035 +UH 0 8 l 3048 10868 4 +UH 0 31 h 2949 10584 4 +PQ +SE +ID 5689 +TI 1760667401.523639440 +UH 0 64 l 3162 0 5 +UH 0 64 h 3131 0 5 +BD GR Veto +PQ +SE +ID 5690 +TI 1760667401.523648262 +UH 0 22 l 1622 5056 0 +UH 0 54 h 1574 5523 0 +PQ +SE +ID 5691 +TI 1760667401.523666143 +UH 0 52 l 2551 10902 4 +UH 0 26 h 2504 10998 4 +PQ +SE +ID 5692 +TI 1760667401.523684263 +UH 0 23 l 1893 11053 4 +UH 0 24 l 1795 5042 0 +UH 0 25 l 1804 4882 0 +UH 0 64 l 2042 0 5 +UH 0 3 h 1691 4972 0 +UH 0 4 h 1853 11692 4 +UH 0 6 h 1745 11228 4 +UH 0 64 h 2114 0 5 +BD GR Veto +PQ +SE +ID 5693 +TI 1760667401.523718833 +UH 0 47 l 2366 10834 4 +UH 0 63 l 1540 1923 0 +UH 0 17 h 2354 11230 4 +PQ +SE +ID 5694 +TI 1760667401.523741245 +UH 0 43 l 1791 10888 4 +UH 0 45 l 1534 3367 0 +UH 0 46 l 1693 10830 4 +UH 0 47 l 2027 10839 4 +UH 0 63 l 1528 2793 0 +UH 0 15 h 1841 11464 4 +UH 0 16 h 1745 11416 4 +UH 0 21 h 2174 11375 4 +PQ +SE +ID 5695 +TI 1760667401.549434423 +UH 0 64 h 1671 0 5 +BD GR Veto +PQ +SE +ID 5696 +TI 1760667401.549465656 +UH 0 5 l 2197 11058 4 +UH 0 16 h 2117 11343 4 +PQ +SE +ID 5697 +TI 1760667401.549486875 +UH 0 64 l 2921 0 5 +UH 0 64 h 2892 0 5 +BD GR Veto +PQ +SE +ID 5698 +TI 1760667401.549494981 +UH 0 8 l 4266 10840 4 +UH 0 16 l 2982 10694 4 +UH 0 53 h 3920 10571 4 +UH 0 54 h 1692 10804 4 +UH 0 61 h 3026 10941 4 +PQ +SE +ID 5699 +TI 1760667401.549531459 +UH 0 23 l 1715 8904 4 +UH 0 24 l 4388 8995 4 +UH 0 25 l 1658 9015 4 +UH 0 28 l 2959 8683 4 +UH 0 32 h 3628 8795 4 +UH 0 33 h 3347 8543 4 +PQ +SE +ID 5700 +TI 1760667401.549569129 +UH 0 34 l 1587 5273 0 +UH 0 35 l 2108 10752 4 +UH 0 24 h 2160 10743 4 +PQ +SE +ID 5701 +TI 1760667401.549590826 +UH 0 64 l 4409 0 5 +UH 0 64 h 4245 0 5 +BD GR Veto +PQ +SE +ID 5702 +TI 1760667401.549599409 +UH 0 22 l 2601 10564 4 +UH 0 61 h 2559 11242 4 +PQ +SE +ID 5703 +TI 1760667401.549621105 +UH 0 56 l 2292 10703 4 +UH 0 64 l 2753 0 5 +UH 0 9 h 1775 11389 4 +UH 0 10 h 2094 11562 4 +UH 0 64 h 2743 0 5 +BD GR Veto +PQ +SE +ID 5704 +TI 1760667401.549665212 +UH 0 40 l 2251 10900 4 +UH 0 41 l 1609 5265 0 +UH 0 25 h 2400 11046 4 +PQ +SE +ID 5705 +TI 1760667401.549689531 +UH 0 64 l 3256 0 5 +UH 0 64 h 3178 0 5 +BD GR Veto +PQ +SE +ID 5706 +TI 1760667401.549699544 +UH 0 41 l 2553 10755 4 +UH 0 42 l 1626 5087 0 +UH 0 8 h 1619 4048 0 +UH 0 10 h 2578 11500 4 +PQ +SE +ID 5707 +TI 1760667401.549736976 +UH 0 38 l 1819 5120 0 +UH 0 39 l 2240 10779 4 +UH 0 58 h 1944 10775 4 +UH 0 59 h 2099 10899 4 +PQ +SE +ID 5708 +TI 1760667401.549760818 +UH 0 64 l 1699 0 5 +UH 0 64 h 2532 0 5 +BD GR Veto +PQ +SE +ID 5709 +TI 1760667401.549768924 +UH 0 26 l 2744 11339 4 +UH 0 35 h 1690 10817 4 +UH 0 36 h 2535 10793 4 +PQ +SE +ID 5710 +TI 1760667401.549789905 +UH 0 45 l 1548 5277 0 +UH 0 46 l 1901 10557 4 +UH 0 6 h 1993 11321 4 +PQ +SE +ID 5711 +TI 1760667401.549810409 +UH 0 42 l 2216 11151 4 +UH 0 40 h 2171 10362 4 +PQ +SE +ID 5712 +TI 1760667401.549828052 +UH 0 4 l 2217 11056 4 +UH 0 18 l 3492 10372 4 +UH 0 34 h 3360 10766 4 +UH 0 15 h 2034 11207 4 +UH 0 16 h 1709 11210 4 +PQ +SE +ID 5713 +TI 1760667401.549862384 +UH 0 35 l 3286 8370 4 +UH 0 36 l 1647 8374 4 +UH 0 37 l 1585 8623 4 +UH 0 38 l 3731 8293 4 +UH 0 39 l 1622 8461 4 +UH 0 40 h 3758 8269 4 +UH 0 44 h 3395 8260 4 +PQ +SE +ID 5714 +TI 1760667401.549895763 +UH 0 33 l 2863 8325 4 +UH 0 34 l 1603 8334 4 +UH 0 35 l 4323 8414 4 +UH 0 36 l 1607 8254 4 +UH 0 15 h 1622 8952 4 +UH 0 16 h 5422 8848 4 +UH 0 17 h 1533 8783 4 +PQ +SE +ID 5715 +TI 1760667401.549927949 +UH 0 44 l 2207 10862 4 +UH 0 50 h 2339 11064 4 +PQ +SE +ID 5716 +TI 1760667401.549945116 +UH 0 35 l 1630 5436 0 +UH 0 38 l 1575 4463 0 +UH 0 8 h 1680 5219 0 +UH 0 16 h 1611 5176 0 +PQ +SE +ID 5717 +TI 1760667401.549976825 +UH 0 46 l 2788 10722 4 +UH 0 49 h 2373 11035 4 +UH 0 50 h 2124 11018 4 +PQ +SE +ID 5718 +TI 1760667401.549996852 +UH 0 64 h 1719 0 5 +BD GR Veto +PQ +SE +ID 5719 +TI 1760667401.550003051 +UH 0 13 l 4152 10301 4 +UH 0 1 h 4205 11182 4 +PQ +SE +ID 5720 +TI 1760667401.550019741 +UH 0 27 l 2743 10798 4 +UH 0 28 l 2250 11098 4 +UH 0 44 h 3152 10519 4 +UH 0 45 h 1713 10859 4 +PQ +SE +ID 5721 +TI 1760667401.550042629 +UH 0 40 l 2520 10822 4 +UH 0 41 l 2929 10980 4 +UH 0 1 h 3980 10807 4 +UH 0 2 h 1723 10924 4 +PQ +SE +ID 5722 +TI 1760667401.550065040 +UH 0 1 l 1960 4964 0 +UH 0 3 l 5217 10358 4 +UH 0 64 l 1976 0 5 +UH 0 19 h 2105 11385 4 +UH 0 20 h 3107 11082 4 +UH 0 30 h 4072 7561 4 +UH 0 64 h 2020 0 5 +BD GR Veto +PQ +SE +ID 5723 +TI 1760667401.550112009 +UH 0 57 l 3816 10689 4 +UH 0 34 h 3686 10516 4 +PQ +SE +ID 5724 +TI 1760667401.550129413 +UH 0 16 l 3034 10791 4 +UH 0 17 l 2175 10737 4 +UH 0 18 l 2107 10413 4 +UH 0 62 h 2194 10947 4 +UH 0 63 h 3696 10893 4 +PQ +SE +ID 5725 +TI 1760667401.550150871 +UH 0 30 l 2015 10668 4 +UH 0 24 h 1562 5364 0 +UH 0 28 h 2062 10709 4 +PQ +SE +ID 5726 +TI 1760667401.550174951 +UH 0 21 l 2282 11172 4 +UH 0 37 h 2285 11448 4 +PQ +SE +ID 5727 +TI 1760667401.550191879 +UH 0 37 l 2464 10949 4 +UH 0 18 h 2354 10993 4 +UH 0 19 h 1627 4971 0 +PQ +SE +ID 5728 +TI 1760667401.550212383 +UH 0 64 l 1864 0 5 +UH 0 64 h 1908 0 5 +BD GR Veto +PQ +SE +ID 5729 +TI 1760667401.550220727 +UH 0 54 l 2743 11093 4 +UH 0 55 l 1927 10767 4 +UH 0 56 l 2801 10934 4 +UH 0 8 h 3724 11473 4 +UH 0 9 h 1741 11196 4 +UH 0 10 h 2171 11355 4 +PQ +SE +ID 5730 +TI 1760667401.550247907 +UH 0 64 l 2037 0 5 +UH 0 64 h 2051 0 5 +BD GR Veto +PQ +SE +ID 5731 +TI 1760667401.550255775 +UH 0 17 l 1718 5163 0 +UH 0 41 h 1750 5523 0 +PQ +SE +ID 5732 +TI 1760667401.550273895 +UH 0 32 l 1652 8807 4 +UH 0 33 l 2082 8715 4 +UH 0 34 l 2258 8397 4 +UH 0 30 l 1609 9249 4 +UH 0 31 l 4342 9197 4 +UH 0 14 h 4281 9342 4 +UH 0 15 h 2826 9514 4 +PQ +SE +ID 5733 +TI 1760667401.550303220 +UH 0 9 l 2701 10673 4 +UH 0 64 l 4484 0 5 +UH 0 62 h 2732 10661 4 +UH 0 64 h 4345 0 5 +BD GR Veto +PQ +SE +ID 5734 +TI 1760667401.550326585 +UH 0 43 l 1552 3659 0 +UH 0 44 l 1823 10363 4 +UH 0 47 l 1539 5362 0 +UH 0 48 l 2230 10412 4 +UH 0 48 h 1973 10308 4 +UH 0 49 h 2316 10376 4 +PQ +SE +ID 5735 +TI 1760667401.550358533 +UH 0 33 l 1937 10698 4 +UH 0 37 l 1627 5054 0 +UH 0 38 l 1633 4604 0 +UH 0 44 l 1891 10987 4 +UH 0 3 h 1874 10692 4 +UH 0 4 h 1734 4928 0 +UH 0 9 h 1883 10989 4 +UH 0 10 h 1579 5029 0 +UH 0 12 h 1706 10883 4 +PQ +SE +ID 5736 +TI 1760667401.550410032 +UH 0 64 l 5717 0 5 +UH 0 64 h 5430 0 5 +BD GR Veto +PQ +SE +ID 5737 +TI 1760667401.550417661 +UH 0 64 l 1804 0 5 +UH 0 64 h 1857 0 5 +BD GR Veto +PQ +SE +ID 5738 +TI 1760667401.550425767 +UH 0 57 l 1721 4908 0 +UH 0 58 l 2008 10665 4 +UH 0 34 h 1690 4047 0 +UH 0 35 h 1990 10528 4 +PQ +SE +ID 5739 +TI 1760667401.550448179 +UH 0 39 l 1618 10956 4 +UH 0 40 l 2640 10869 4 +UH 0 34 h 1838 10608 4 +UH 0 35 h 2380 10731 4 +PQ +SE +ID 5740 +TI 1760667401.550481319 +UH 0 35 l 1729 8507 4 +UH 0 44 l 1539 1815 0 +UH 0 55 l 1504 8267 4 +UH 0 56 l 3408 8182 4 +UH 0 54 h 1635 1616 0 +UH 0 55 h 1827 7865 4 +UH 0 56 h 1612 1982 0 +UH 0 58 h 3413 8296 4 +PQ +SE +ID 5741 +TI 1760667401.550532817 +UH 0 33 l 1725 4467 0 +UH 0 29 h 1719 5578 0 +PQ +SE +ID 5742 +TI 1760667401.550550937 +UH 0 64 l 2498 0 5 +UH 0 64 h 2531 0 5 +BD GR Veto +PQ +SE +ID 5743 +TI 1760667401.550559282 +UH 0 60 l 2544 9997 4 +UH 0 61 l 1739 10195 4 +UH 0 62 l 2949 10235 4 +UH 0 47 h 3047 10060 4 +UH 0 48 h 2605 10197 4 +PQ +SE +ID 5744 +TI 1760667401.550583124 +UH 0 0 l 2530 10798 4 +UH 0 64 l 2589 0 5 +UH 0 53 h 1983 10722 4 +UH 0 56 h 2493 10413 4 +UH 0 64 h 2176 0 5 +BD GR Veto +PQ +SE +ID 5745 +TI 1760667401.550610780 +UH 0 39 l 4151 8701 4 +UH 0 40 l 1526 8872 4 +UH 0 46 l 1563 2811 0 +UH 0 46 h 1926 9006 4 +UH 0 47 h 3795 8848 4 +UH 0 50 h 1715 2496 0 +PQ +SE +ID 5746 +TI 1760667401.550646305 +UH 0 20 l 4407 9556 4 +UH 0 15 h 1750 9878 4 +UH 0 16 h 4034 9764 4 +UH 0 17 h 1535 9712 4 +PQ +SE +ID 5747 +TI 1760667401.550668716 +UH 0 58 l 2241 10458 4 +UH 0 59 l 3933 10568 4 +UH 0 54 h 4606 11010 4 +PQ +SE +ID 5748 +TI 1760667401.550689220 +UH 0 40 l 1891 11105 4 +UH 0 28 h 1773 4738 0 +UH 0 29 h 1758 5080 0 +PQ +SE +ID 5749 +TI 1760667401.550709486 +UH 0 36 l 3121 10494 4 +UH 0 37 l 2498 10840 4 +UH 0 43 l 1967 10775 4 +UH 0 45 l 2010 10795 4 +UH 0 49 l 1975 10991 4 +UH 0 37 h 2055 10882 4 +UH 0 39 h 4399 10387 4 +UH 0 40 h 2217 10512 4 +PQ +SE +ID 5750 +TI 1760667401.550757408 +UH 0 33 l 1670 4989 0 +UH 0 18 h 1707 12072 4 +PQ +SE +ID 5751 +TI 1760667401.550775289 +UH 0 11 l 2215 10381 4 +UH 0 63 h 2099 11064 4 +PQ +SE +ID 5752 +TI 1760667401.550791263 +UH 0 0 l 2679 10818 4 +UH 0 64 l 3290 0 5 +UH 0 54 h 4363 10967 4 +BD GR Veto +PQ +SE +ID 5753 +TI 1760667401.550809144 +UH 0 16 l 1581 8775 4 +UH 0 17 l 4370 8603 4 +UH 0 18 l 1590 8624 4 +UH 0 21 h 4289 9548 4 +PQ +SE +ID 5754 +TI 1760667401.550831556 +UH 0 64 l 2594 0 5 +UH 0 64 h 2589 0 5 +BD GR Veto +PQ +SE +ID 5755 +TI 1760667401.550838708 +UH 0 4 l 2917 10972 4 +UH 0 6 l 1632 4921 0 +UH 0 18 h 1639 3848 0 +UH 0 22 h 2850 10937 4 +UH 0 23 h 1592 11129 4 +PQ +SE +ID 5756 +TI 1760667401.550876379 +UH 0 64 l 2153 0 5 +UH 0 64 h 2207 0 5 +BD GR Veto +PQ +SE +ID 5757 +TI 1760667401.550884008 +UH 0 21 l 2706 11080 4 +UH 0 22 l 1638 10926 4 +UH 0 42 h 1629 10684 4 +UH 0 43 h 2650 10822 4 +PQ +SE +ID 5758 +TI 1760667401.550906658 +UH 0 64 l 1845 0 5 +UH 0 64 h 2496 0 5 +BD GR Veto +PQ +SE +ID 5759 +TI 1760667401.571640253 +UH 0 27 l 1644 8700 4 +UH 0 28 l 5858 8788 4 +UH 0 29 l 1676 8760 4 +UH 0 4 h 5575 9652 4 +PQ +SE +ID 5760 +TI 1760667401.571732759 +UH 0 14 l 1783 5016 0 +UH 0 28 h 1789 5414 0 +PQ +SE +ID 5761 +TI 1760667401.571773529 +UH 0 50 l 1996 11017 4 +UH 0 54 h 1582 4365 0 +UH 0 55 h 2009 10292 4 +PQ +SE +ID 5762 +TI 1760667401.571816682 +UH 0 15 h 1609 5683 0 +PQ +SE +ID 5763 +TI 1760667401.571836471 +UH 0 7 l 4219 10364 4 +UH 0 27 h 3741 11118 4 +UH 0 28 h 2025 10974 4 +PQ +SE +ID 5764 +TI 1760667401.571875095 +UH 0 19 l 2102 11124 4 +UH 0 20 l 1870 10834 4 +UH 0 22 h 2350 10886 4 +PQ +SE +ID 5765 +TI 1760667401.571913957 +UH 0 24 l 3098 10928 4 +UH 0 25 l 1758 11218 4 +UH 0 61 h 3178 11146 4 +PQ +SE +ID 5766 +TI 1760667401.571952104 +UH 0 64 l 2284 0 5 +UH 0 7 h 1767 4434 0 +UH 0 64 h 2112 0 5 +BD GR Veto +PQ +SE +ID 5767 +TI 1760667401.571968078 +UH 0 37 l 2385 10821 4 +UH 0 38 l 2237 10659 4 +UH 0 39 l 1675 10698 4 +UH 0 48 l 3499 10741 4 +UH 0 49 l 1854 10786 4 +UH 0 1 h 3943 10969 4 +UH 0 7 h 1787 11082 4 +UH 0 8 h 2216 11229 4 +UH 0 10 h 2360 11168 4 +PQ +SE +ID 5768 +TI 1760667401.572016239 +UH 0 64 l 1835 0 5 +BD GR Veto +PQ +SE +ID 5769 +TI 1760667401.572022199 +UH 0 64 l 1928 0 5 +UH 0 64 h 1998 0 5 +BD GR Veto +PQ +SE +ID 5770 +TI 1760667401.572031021 +UH 0 18 l 1683 4664 0 +UH 0 19 l 2220 10723 4 +UH 0 8 h 2343 11589 4 +PQ +SE +ID 5771 +TI 1760667401.572051048 +UH 0 11 l 2400 10090 4 +UH 0 12 l 1938 10070 4 +UH 0 27 h 2571 11323 4 +PQ +SE +ID 5772 +TI 1760667401.572070837 +UH 0 49 l 1652 5181 0 +UH 0 53 l 2136 10819 4 +UH 0 54 l 1579 5535 0 +UH 0 7 h 1794 11259 4 +UH 0 12 h 2000 11066 4 +UH 0 13 h 1695 4837 0 +PQ +SE +ID 5773 +TI 1760667401.572136402 +UH 0 4 l 2028 10545 4 +UH 0 5 l 1871 4659 0 +UH 0 6 l 1944 10711 4 +UH 0 7 l 2020 4703 0 +UH 0 18 h 1916 11141 4 +UH 0 20 h 2064 11040 4 +UH 0 21 h 2277 11409 4 +PQ +SE +ID 5774 +TI 1760667401.572170734 +UH 0 55 l 1969 10559 4 +UH 0 56 l 1571 5338 0 +UH 0 15 h 2157 11645 4 +PQ +SE +ID 5775 +TI 1760667401.572190761 +UH 0 64 l 2092 0 5 +UH 0 64 h 2143 0 5 +BD GR Veto +PQ +SE +ID 5776 +TI 1760667401.572198390 +UH 0 11 l 4429 8392 4 +UH 0 12 l 1714 8455 4 +UH 0 21 h 4217 9566 4 +PQ +SE +ID 5777 +TI 1760667401.572217941 +UH 0 64 l 3495 0 5 +UH 0 64 h 3396 0 5 +BD GR Veto +PQ +SE +ID 5778 +TI 1760667401.572226047 +UH 0 62 l 1625 5388 0 +UH 0 63 l 1542 4550 0 +UH 0 64 l 1837 0 5 +UH 0 64 h 2519 0 5 +BD GR Veto +PQ +SE +ID 5779 +TI 1760667401.572240829 +UH 0 45 l 1859 11101 4 +UH 0 57 l 1570 5035 0 +UH 0 35 h 1814 10847 4 +UH 0 36 h 1652 4400 0 +UH 0 12 h 1581 4459 0 +PQ +SE +ID 5780 +TI 1760667401.572275161 +UH 0 10 l 2387 11044 4 +UH 0 50 h 1645 2974 0 +UH 0 51 h 2234 10671 4 +PQ +SE +ID 5781 +TI 1760667401.572294712 +UH 0 54 l 2531 11033 4 +UH 0 15 h 1731 11133 4 +UH 0 16 h 2378 11023 4 +PQ +SE +ID 5782 +TI 1760667401.572314262 +UH 0 5 l 2590 10228 4 +UH 0 28 h 2594 10997 4 +PQ +SE +ID 5783 +TI 1760667401.572332382 +UH 0 54 l 3220 10859 4 +UH 0 33 h 1920 10709 4 +UH 0 34 h 2758 10861 4 +PQ +SE +ID 5784 +TI 1760667401.572353124 +UH 0 0 l 1696 10128 4 +UH 0 64 l 5211 0 5 +UH 0 25 h 1593 4469 0 +UH 0 26 h 2124 10908 4 +UH 0 64 h 4435 0 5 +BD GR Veto +PQ +SE +ID 5785 +TI 1760667401.572375535 +UH 0 19 l 1764 4607 0 +UH 0 64 h 1785 0 5 +BD GR Veto +PQ +SE +ID 5786 +TI 1760667401.572388410 +UH 0 59 l 1590 4729 0 +UH 0 60 l 1594 4267 0 +UH 0 4 h 1727 5696 0 +PQ +SE +ID 5787 +TI 1760667401.572408437 +UH 0 37 l 1593 8890 4 +UH 0 38 l 3981 8721 4 +UH 0 39 l 1608 8782 4 +UH 0 38 h 4079 9188 4 +PQ +SE +ID 5788 +TI 1760667401.572430610 +UH 0 59 l 1582 9448 4 +UH 0 60 l 3552 9080 4 +UH 0 4 h 3603 10392 4 +PQ +SE +ID 5789 +TI 1760667401.572450399 +UH 0 2 l 3232 10944 4 +UH 0 29 h 1664 11064 4 +UH 0 30 h 3004 11186 4 +PQ +SE +ID 5790 +TI 1760667401.572470664 +UH 0 51 l 1629 8891 4 +UH 0 52 l 5003 9000 4 +UH 0 53 l 1619 8773 4 +UH 0 43 h 1972 8947 4 +UH 0 44 h 4571 8716 4 +PQ +SE +ID 5791 +TI 1760667401.572495222 +UH 0 64 l 1936 0 5 +UH 0 64 h 3410 0 5 +BD GR Veto +PQ +SE +ID 5792 +TI 1760667401.572502851 +UH 0 32 l 1782 5189 0 +UH 0 49 h 1718 11291 4 +PQ +SE +ID 5793 +TI 1760667401.572520494 +UH 0 64 l 1665 0 5 +UH 0 64 h 2124 0 5 +BD GR Veto +PQ +SE +ID 5794 +TI 1760667401.572528362 +UH 0 32 l 3271 10754 4 +UH 0 31 l 2656 10917 4 +UH 0 8 h 2139 11486 4 +UH 0 9 h 3753 11071 4 +PQ +SE +ID 5795 +TI 1760667401.572550296 +UH 0 43 l 1655 5484 0 +UH 0 46 h 1704 5163 0 +PQ +SE +ID 5796 +TI 1760667401.572568655 +UH 0 53 l 1688 4968 0 +UH 0 54 l 1587 5253 0 +UH 0 0 h 1775 11749 4 +PQ +SE +ID 5797 +TI 1760667401.572586297 +UH 0 11 l 3657 10243 4 +UH 0 12 l 2241 10239 4 +UH 0 32 h 4022 11106 4 +PQ +SE +ID 5798 +TI 1760667401.572606325 +UH 0 7 l 2020 11126 4 +UH 0 64 l 2407 0 5 +UH 0 63 h 2000 10724 4 +UH 0 64 h 2427 0 5 +BD GR Veto +PQ +SE +ID 5799 +TI 1760667401.572626590 +UH 0 42 l 1614 5333 0 +UH 0 24 h 1574 4823 0 +PQ +SE +ID 5800 +TI 1760667401.572644233 +UH 0 64 l 3237 0 5 +UH 0 35 h 2701 11118 4 +UH 0 64 h 2137 0 5 +BD GR Veto +PQ +SE +ID 5801 +TI 1760667401.572657823 +UH 0 60 l 2547 10482 4 +UH 0 64 h 2567 0 5 +BD GR Veto +PQ +SE +ID 5802 +TI 1760667401.572671413 +UH 0 50 l 1701 5134 0 +UH 0 60 l 2522 10470 4 +UH 0 37 h 1728 4784 0 +UH 0 41 h 2559 11426 4 +PQ +SE +ID 5803 +TI 1760667401.572703599 +UH 0 59 l 2748 10812 4 +UH 0 48 h 2787 10481 4 +PQ +SE +ID 5804 +TI 1760667401.572722434 +UH 0 49 l 2396 10851 4 +UH 0 50 l 4035 10696 4 +UH 0 51 l 2264 10863 4 +UH 0 55 h 2270 10391 4 +UH 0 56 h 4105 10587 4 +UH 0 57 h 2436 10745 4 +PQ +SE +ID 5805 +TI 1760667401.572749614 +UH 0 0 l 2044 10777 4 +UH 0 64 l 1634 0 5 +UH 0 27 h 2162 11333 4 +BD GR Veto +PQ +SE +ID 5806 +TI 1760667401.572767734 +UH 0 3 l 2920 10552 4 +UH 0 64 l 4248 0 5 +UH 0 23 h 2910 11080 4 +UH 0 29 h 2424 11043 4 +UH 0 64 h 3274 0 5 +BD GR Veto +PQ +SE +ID 5807 +TI 1760667401.572797536 +UH 0 9 l 1742 4840 0 +UH 0 0 h 1706 5619 0 +PQ +SE +ID 5808 +TI 1760667401.572812557 +UH 0 42 l 1606 4817 0 +UH 0 43 l 2647 8542 4 +UH 0 44 l 3278 8374 4 +UH 0 45 l 1543 8677 4 +UH 0 43 h 3743 8752 4 +UH 0 44 h 2214 8622 4 +PQ +SE +ID 5809 +TI 1760667401.572840213 +UH 0 64 l 1833 0 5 +UH 0 64 h 3024 0 5 +BD GR Veto +PQ +SE +ID 5810 +TI 1760667401.572848320 +UH 0 49 l 1928 11096 4 +UH 0 52 h 1912 11505 4 +UH 0 53 h 1596 3717 0 +PQ +SE +ID 5811 +TI 1760667401.572868347 +UH 0 40 l 1552 9124 4 +UH 0 41 l 4218 9147 4 +UH 0 39 h 4279 9121 4 +PQ +SE +ID 5812 +TI 1760667401.572888612 +UH 0 47 l 2103 10933 4 +UH 0 63 l 1528 1858 0 +UH 0 60 h 2099 10248 4 +PQ +SE +ID 5813 +TI 1760667401.572910547 +UH 0 36 l 1623 8902 4 +UH 0 37 l 4716 8916 4 +UH 0 38 l 1549 9038 4 +UH 0 29 l 2425 8860 4 +UH 0 8 h 2086 9623 4 +UH 0 9 h 1861 9278 4 +UH 0 10 h 2297 9423 4 +UH 0 11 h 1653 3251 0 +UH 0 13 h 1610 9426 4 +UH 0 14 h 1567 9520 4 +UH 0 15 h 3811 9488 4 +PQ +SE +ID 5814 +TI 1760667401.572956562 +UH 0 64 l 2180 0 5 +UH 0 64 h 2239 0 5 +BD GR Veto +PQ +SE +ID 5815 +TI 1760667401.572964429 +UH 0 36 l 3743 10499 4 +UH 0 19 h 2989 10772 4 +UH 0 20 h 2207 10543 4 +PQ +SE +ID 5816 +TI 1760667401.572985410 +UH 0 22 l 1909 11115 4 +UH 0 16 h 1829 11243 4 +PQ +SE +ID 5817 +TI 1760667401.573004007 +UH 0 31 l 1745 5488 0 +UH 0 38 h 1638 3880 0 +UH 0 39 h 1747 4644 0 +PQ +SE +ID 5818 +TI 1760667401.573024034 +UH 0 64 h 2080 0 5 +BD GR Veto +PQ +SE +ID 5819 +TI 1760667401.573029518 +UH 0 42 l 3085 10999 4 +UH 0 64 l 4093 0 5 +UH 0 56 h 2219 10713 4 +UH 0 57 h 2396 10822 4 +UH 0 64 h 3973 0 5 +BD GR Veto +PQ +SE +ID 5820 +TI 1760667401.573054552 +UH 0 26 l 1810 5419 0 +UH 0 3 h 1791 11622 4 +PQ +SE +ID 5821 +TI 1760667401.573072195 +UH 0 15 l 2268 10570 4 +UH 0 31 l 1626 2296 0 +UH 0 56 h 2181 11229 4 +PQ +SE +ID 5822 +TI 1760667401.573094844 +UH 0 36 l 2544 10401 4 +UH 0 37 l 1819 10803 4 +UH 0 43 l 1860 11019 4 +UH 0 47 h 1980 10729 4 +UH 0 48 h 2835 10725 4 +PQ +SE +ID 5823 +TI 1760667401.592461109 +UH 0 6 l 1592 5380 0 +UH 0 11 l 1967 10217 4 +UH 0 15 h 1629 4130 0 +UH 0 18 h 1674 4922 0 +UH 0 19 h 1699 5103 0 +PQ +SE +ID 5824 +TI 1760667401.592525005 +UH 0 35 l 1583 10919 4 +UH 0 36 l 2622 10543 4 +UH 0 41 l 2427 10968 4 +UH 0 14 h 2504 11186 4 +UH 0 18 h 2577 10946 4 +UH 0 19 h 1632 5226 0 +PQ +SE +ID 5825 +TI 1760667401.592568397 +UH 0 3 l 2232 10379 4 +UH 0 13 l 2565 10487 4 +UH 0 14 l 1649 4729 0 +UH 0 64 l 1651 0 5 +UH 0 33 h 1616 4014 0 +UH 0 25 h 2166 11330 4 +UH 0 31 h 2603 10818 4 +BD GR Veto +PQ +SE +ID 5826 +TI 1760667401.592615842 +UH 0 15 l 1803 4634 0 +UH 0 9 h 1751 11558 4 +PQ +SE +ID 5827 +TI 1760667401.592634439 +UH 0 64 l 3260 0 5 +UH 0 64 h 3201 0 5 +BD GR Veto +PQ +SE +ID 5828 +TI 1760667401.592642784 +UH 0 64 l 2043 0 5 +UH 0 64 h 1790 0 5 +BD GR Veto +PQ +SE +ID 5829 +TI 1760667401.592650175 +UH 0 8 l 2711 10819 4 +UH 0 9 l 1879 10953 4 +UH 0 10 l 1908 10969 4 +UH 0 11 l 2307 10738 4 +UH 0 54 h 1641 4391 0 +UH 0 55 h 1834 4558 0 +UH 0 57 h 2056 11044 4 +UH 0 58 h 2400 10649 4 +UH 0 60 h 2116 10308 4 +PQ +SE +ID 5830 +TI 1760667401.592698097 +UH 0 14 l 2547 10987 4 +UH 0 50 h 2491 10395 4 +PQ +SE +ID 5831 +TI 1760667401.592717647 +UH 0 18 l 2258 10402 4 +UH 0 21 l 3025 11033 4 +UH 0 32 h 1651 10679 4 +UH 0 33 h 2160 10225 4 +UH 0 34 h 2809 10210 4 +PQ +SE +ID 5832 +TI 1760667401.592747449 +UH 0 61 l 2152 10526 4 +UH 0 62 l 1675 10895 4 +UH 0 63 l 2094 10689 4 +UH 0 49 h 1808 10925 4 +UH 0 50 h 1988 10855 4 +UH 0 51 h 2139 10888 4 +PQ +SE +ID 5833 +TI 1760667401.592772960 +UH 0 44 l 3173 10726 4 +UH 0 51 l 3273 10593 4 +UH 0 52 l 1979 10653 4 +UH 0 57 l 1736 4531 0 +UH 0 21 h 1792 10836 4 +UH 0 22 h 2980 10470 4 +UH 0 23 h 1817 10897 4 +UH 0 24 h 1648 10850 4 +UH 0 25 h 2713 10971 4 +UH 0 29 h 2225 11110 4 +PQ +SE +ID 5834 +TI 1760667401.592830896 +UH 0 41 l 2385 11007 4 +UH 0 20 h 2468 11033 4 +PQ +SE +ID 5835 +TI 1760667401.592861175 +UH 0 27 l 1627 5380 0 +UH 0 28 l 4288 8940 4 +UH 0 29 l 1689 8894 4 +UH 0 40 h 4206 9034 4 +PQ +SE +ID 5836 +TI 1760667401.592886686 +UH 0 52 l 2075 10660 4 +UH 0 53 l 2101 10631 4 +UH 0 57 l 2387 10800 4 +UH 0 58 l 1806 10646 4 +UH 0 61 l 1838 10721 4 +UH 0 62 l 2196 10824 4 +UH 0 64 l 2493 0 5 +UH 0 50 h 2324 10392 4 +UH 0 51 h 1585 5140 0 +UH 0 56 h 2191 10723 4 +UH 0 57 h 1965 10831 4 +UH 0 59 h 2633 10392 4 +UH 0 64 h 2513 0 5 +BD GR Veto +PQ +SE +ID 5837 +TI 1760667401.592954635 +UH 0 36 l 1895 10420 4 +UH 0 37 l 1596 5318 0 +UH 0 55 h 2029 10887 4 +PQ +SE +ID 5838 +TI 1760667401.592974901 +UH 0 49 l 1668 5190 0 +UH 0 44 h 1726 11503 4 +PQ +SE +ID 5839 +TI 1760667401.592990875 +UH 0 64 l 1880 0 5 +UH 0 64 h 1948 0 5 +BD GR Veto +PQ +SE +ID 5840 +TI 1760667401.592998981 +UH 0 64 l 2114 0 5 +UH 0 64 h 2154 0 5 +BD GR Veto +PQ +SE +ID 5841 +TI 1760667401.593007087 +UH 0 49 l 2115 10962 4 +UH 0 63 l 1991 9684 4 +UH 0 36 h 2100 10232 4 +UH 0 53 h 2156 11064 4 +PQ +SE +ID 5842 +TI 1760667401.593044757 +UH 0 58 l 2680 10502 4 +UH 0 43 h 2217 10632 4 +UH 0 44 h 1974 10506 4 +PQ +SE +ID 5843 +TI 1760667401.593064785 +UH 0 42 l 3288 10739 4 +UH 0 43 l 1593 10861 4 +UH 0 60 l 2115 10571 4 +UH 0 61 l 1994 10847 4 +UH 0 21 h 1808 11105 4 +UH 0 22 h 2293 10749 4 +UH 0 29 h 2645 11247 4 +UH 0 30 h 2234 11478 4 +PQ +SE +ID 5844 +TI 1760667401.593108654 +UH 0 64 l 1918 0 5 +UH 0 64 h 1960 0 5 +BD GR Veto +PQ +SE +ID 5845 +TI 1760667401.593117237 +UH 0 6 l 2060 11148 4 +UH 0 7 l 1731 11047 4 +UH 0 37 h 2227 11017 4 +PQ +SE +ID 5846 +TI 1760667401.593136548 +UH 0 36 l 2031 10617 4 +UH 0 37 l 2852 10881 4 +UH 0 14 h 3194 11068 4 +UH 0 15 h 1664 11254 4 +PQ +SE +ID 5847 +TI 1760667401.593163967 +UH 0 44 l 1648 5039 0 +UH 0 45 l 1785 10681 4 +UH 0 46 l 1552 4662 0 +UH 0 63 h 2151 11126 4 +PQ +SE +ID 5848 +TI 1760667401.593184947 +UH 0 64 h 1671 0 5 +BD GR Veto +PQ +SE +ID 5849 +TI 1760667401.593190670 +UH 0 41 l 2350 11058 4 +UH 0 42 l 2322 11055 4 +UH 0 1 h 1706 11234 4 +UH 0 2 h 3204 11155 4 +PQ +SE +ID 5850 +TI 1760667401.593212604 +UH 0 33 l 3352 10470 4 +UH 0 45 l 1609 5003 0 +UH 0 2 h 1628 4327 0 +UH 0 3 h 1659 3708 0 +UH 0 12 h 2993 11188 4 +UH 0 13 h 1863 11317 4 +PQ +SE +ID 5851 +TI 1760667401.593250513 +UH 0 27 l 1754 5202 0 +UH 0 28 l 2622 11176 4 +UH 0 36 h 2568 11225 4 +UH 0 37 h 1786 11510 4 +PQ +SE +ID 5852 +TI 1760667401.593272924 +UH 0 13 l 2969 10931 4 +UH 0 29 h 2363 11014 4 +UH 0 30 h 2066 11265 4 +PQ +SE +ID 5853 +TI 1760667401.593297719 +UH 0 43 l 2008 11145 4 +UH 0 38 h 2075 10809 4 +PQ +SE +ID 5854 +TI 1760667401.593315362 +UH 0 42 l 1637 8883 4 +UH 0 43 l 5571 8779 4 +UH 0 44 l 1523 8726 4 +UH 0 36 h 5633 8713 4 +PQ +SE +ID 5855 +TI 1760667401.593337059 +UH 0 19 l 1984 11027 4 +UH 0 20 l 2378 10638 4 +UH 0 24 l 1812 4421 0 +UH 0 37 h 1741 4648 0 +UH 0 40 h 1681 10651 4 +UH 0 41 h 2565 10842 4 +PQ +SE +ID 5856 +TI 1760667401.593378782 +UH 0 7 l 1606 3717 0 +UH 0 12 l 1731 4357 0 +UH 0 13 l 1667 4132 0 +UH 0 17 l 2591 10601 4 +UH 0 18 l 2074 10538 4 +UH 0 10 h 1596 3815 0 +UH 0 11 h 1717 4857 0 +UH 0 13 h 1598 2739 0 +UH 0 20 h 3092 11050 4 +PQ +SE +ID 5857 +TI 1760667401.593434810 +UH 0 63 l 1723 4997 0 +UH 0 64 l 2066 0 5 +UH 0 11 h 2383 11360 4 +BD GR Veto +PQ +SE +ID 5858 +TI 1760667401.593452453 +UH 0 30 l 2738 11279 4 +UH 0 63 h 2780 10629 4 +PQ +SE +ID 5859 +TI 1760667401.593467473 +UH 0 57 l 3416 10718 4 +UH 0 32 h 3348 11017 4 +PQ +SE +ID 5860 +TI 1760667401.593484640 +UH 0 0 l 2164 10765 4 +UH 0 64 l 1698 0 5 +UH 0 38 h 2201 11358 4 +UH 0 42 h 1733 4951 0 +BD GR Veto +PQ +SE +ID 5861 +TI 1760667401.593509197 +UH 0 64 l 2533 0 5 +UH 0 64 h 2528 0 5 +BD GR Veto +PQ +SE +ID 5862 +TI 1760667401.593517065 +UH 0 43 l 2370 10985 4 +UH 0 45 l 1898 10609 4 +UH 0 46 l 1908 10613 4 +UH 0 19 l 3862 10920 4 +UH 0 42 h 3860 10320 4 +UH 0 23 h 1776 10636 4 +UH 0 24 h 2156 10847 4 +UH 0 25 h 2306 10987 4 +PQ +SE +ID 5863 +TI 1760667401.593571186 +UH 0 11 l 2364 10394 4 +UH 0 37 h 2200 11470 4 +PQ +SE +ID 5864 +TI 1760667401.593600988 +UH 0 24 l 1738 4594 0 +UH 0 27 l 2352 10594 4 +UH 0 52 h 2323 11266 4 +UH 0 53 h 1659 4337 0 +PQ +SE +ID 5865 +TI 1760667401.593635320 +UH 0 39 l 2006 10626 4 +UH 0 41 l 2277 10745 4 +UH 0 28 h 2399 11142 4 +UH 0 31 h 1957 10868 4 +PQ +SE +ID 5866 +TI 1760667401.593664407 +UH 0 58 l 3496 10432 4 +UH 0 64 l 3639 0 5 +UH 0 20 h 3294 10945 4 +UH 0 21 h 1713 11288 4 +UH 0 64 h 3567 0 5 +BD GR Veto +PQ +SE +ID 5867 +TI 1760667401.593689441 +UH 0 64 l 3780 0 5 +UH 0 64 h 3660 0 5 +BD GR Veto +PQ +SE +ID 5868 +TI 1760667401.593697786 +UH 0 43 l 2435 10907 4 +UH 0 62 h 2567 10967 4 +UH 0 64 h 1665 0 5 +BD GR Veto +PQ +SE +ID 5869 +TI 1760667401.593717813 +UH 0 45 l 2494 10557 4 +UH 0 57 l 1667 4869 0 +UH 0 18 h 2569 11155 4 +UH 0 22 h 1813 4972 0 +PQ +SE +ID 5870 +TI 1760667401.593755722 +UH 0 4 l 1683 4693 0 +UH 0 64 l 2365 0 5 +UH 0 4 h 1725 5085 0 +UH 0 6 h 1614 5169 0 +UH 0 64 h 2262 0 5 +BD GR Veto +PQ +SE +ID 5871 +TI 1760667401.593783617 +UH 0 44 l 2025 10852 4 +UH 0 45 l 1817 5163 0 +UH 0 59 h 1842 10925 4 +UH 0 60 h 2077 10509 4 +PQ +SE +ID 5872 +TI 1760667401.593806266 +UH 0 32 l 3716 10790 4 +UH 0 32 h 2454 10685 4 +UH 0 31 h 2640 10581 4 +PQ +SE +ID 5873 +TI 1760667401.593827247 +UH 0 15 l 2391 10700 4 +UH 0 17 l 4155 10754 4 +UH 0 18 l 1852 4637 0 +UH 0 19 l 1967 10846 4 +UH 0 30 l 1605 2077 0 +UH 0 31 l 1640 2288 0 +UH 0 38 h 2092 10563 4 +UH 0 39 h 1873 10273 4 +UH 0 40 h 4483 10213 4 +UH 0 41 h 1874 10582 4 +PQ +SE +ID 5874 +TI 1760667401.593868732 +UH 0 46 l 2051 10799 4 +UH 0 31 h 2127 10912 4 +PQ +SE +ID 5875 +TI 1760667401.593886137 +UH 0 38 l 2244 10315 4 +UH 0 39 l 1611 5224 0 +UH 0 42 h 2377 10253 4 +PQ +SE +ID 5876 +TI 1760667401.593905448 +UH 0 64 l 2210 0 5 +UH 0 64 h 2268 0 5 +BD GR Veto +PQ +SE +ID 5877 +TI 1760667401.593913793 +UH 0 64 l 3979 0 5 +UH 0 64 h 3854 0 5 +BD GR Veto +PQ +SE +ID 5878 +TI 1760667401.593921899 +UH 0 64 h 2150 0 5 +BD GR Veto +PQ +SE +ID 5879 +TI 1760667401.593927860 +UH 0 12 l 1842 4806 0 +UH 0 61 h 1711 5357 0 +PQ +SE +ID 5880 +TI 1760667401.593945026 +UH 0 64 l 2840 0 5 +UH 0 64 h 2854 0 5 +BD GR Veto +PQ +SE +ID 5881 +TI 1760667401.593953847 +UH 0 39 l 2219 8548 4 +UH 0 49 l 3618 8613 4 +UH 0 50 l 1576 8642 4 +UH 0 10 h 2175 9494 4 +UH 0 20 h 2444 9188 4 +UH 0 21 h 2693 9421 4 +PQ +SE +ID 5882 +TI 1760667401.593989610 +UH 0 33 l 2469 10284 4 +UH 0 34 l 1911 10352 4 +UH 0 35 l 3211 10495 4 +UH 0 4 h 3618 11439 4 +UH 0 5 h 2457 11310 4 +PQ +SE +ID 5883 +TI 1760667401.594014406 +UH 0 18 l 2615 10382 4 +UH 0 19 l 2900 10683 4 +UH 0 1 h 3995 11175 4 +PQ +SE +ID 5884 +TI 1760667401.594034194 +UH 0 64 l 2075 0 5 +UH 0 64 h 2099 0 5 +BD GR Veto +PQ +SE +ID 5885 +TI 1760667401.594042301 +UH 0 64 l 1789 0 5 +UH 0 64 h 2567 0 5 +BD GR Veto +PQ +SE +ID 5886 +TI 1760667401.594049930 +UH 0 64 l 3168 0 5 +UH 0 64 h 3150 0 5 +BD GR Veto +PQ +SE +ID 5887 +TI 1760667401.617141008 +UH 0 38 l 1545 8433 4 +UH 0 39 l 4411 8237 4 +UH 0 40 l 1534 8421 4 +UH 0 27 h 4066 8608 4 +UH 0 28 h 1862 8495 4 +PQ +SE +ID 5888 +TI 1760667401.617237091 +UH 0 56 l 1554 9224 4 +UH 0 57 l 3803 8833 4 +UH 0 58 l 1570 8784 4 +UH 0 3 h 3956 9525 4 +PQ +SE +ID 5889 +TI 1760667401.617286443 +UH 0 49 l 2102 10864 4 +UH 0 60 h 2132 10885 4 +PQ +SE +ID 5890 +TI 1760667401.617305994 +UH 0 46 l 2091 10722 4 +UH 0 47 l 1638 10891 4 +UH 0 45 h 2268 10578 4 +PQ +SE +ID 5891 +TI 1760667401.617327213 +UH 0 55 l 2347 10789 4 +UH 0 27 h 2442 10793 4 +PQ +SE +ID 5892 +TI 1760667401.617345094 +UH 0 63 l 1522 4900 0 +UH 0 64 l 2167 0 5 +UH 0 64 h 4247 0 5 +BD GR Veto +PQ +SE +ID 5893 +TI 1760667401.617358684 +UH 0 64 l 2164 0 5 +UH 0 64 h 2221 0 5 +BD GR Veto +PQ +SE +ID 5894 +TI 1760667401.617367267 +UH 0 55 l 1505 8679 4 +UH 0 56 l 4076 8701 4 +UH 0 57 l 1534 8545 4 +UH 0 64 l 2997 0 5 +UH 0 1 h 4174 9054 4 +UH 0 64 h 2993 0 5 +BD GR Veto +PQ +SE +ID 5895 +TI 1760667401.617395877 +UH 0 42 l 1617 4667 0 +UH 0 43 l 2165 11036 4 +UH 0 44 l 1528 4039 0 +UH 0 8 l 1791 10587 4 +UH 0 9 l 1652 4605 0 +UH 0 10 l 2564 10946 4 +UH 0 11 l 1719 3177 0 +UH 0 14 l 3150 10788 4 +UH 0 56 h 2599 10591 4 +UH 0 57 h 1719 10958 4 +UH 0 59 h 3793 10651 4 +UH 0 60 h 1652 10463 4 +PQ +SE +ID 5896 +TI 1760667401.617450237 +UH 0 28 l 3071 10332 4 +UH 0 29 l 1698 10267 4 +UH 0 30 l 1959 10630 4 +UH 0 56 h 3096 10628 4 +UH 0 63 h 1943 10442 4 +PQ +SE +ID 5897 +TI 1760667401.617477416 +UH 0 64 l 4147 0 5 +UH 0 64 h 4014 0 5 +BD GR Veto +PQ +SE +ID 5898 +TI 1760667401.617485523 +UH 0 64 l 2285 0 5 +UH 0 64 h 2310 0 5 +BD GR Veto +PQ +SE +ID 5899 +TI 1760667401.617493152 +UH 0 27 l 2197 11027 4 +UH 0 43 h 2111 10812 4 +PQ +SE +ID 5900 +TI 1760667401.617510318 +UH 0 13 l 4436 8812 4 +UH 0 14 l 4354 8800 4 +UH 0 15 l 1696 8790 4 +UH 0 16 l 1590 8942 4 +UH 0 17 l 4098 8360 4 +UH 0 18 l 1591 8411 4 +UH 0 2 h 1642 9214 4 +UH 0 3 h 8898 9019 4 +UH 0 4 h 2461 9289 4 +PQ +SE +ID 5901 +TI 1760667401.617544651 +UH 0 6 l 3173 10939 4 +UH 0 7 l 2619 10313 4 +UH 0 0 h 1700 11212 4 +UH 0 1 h 2526 11164 4 +UH 0 10 h 3131 10933 4 +PQ +SE +ID 5902 +TI 1760667401.617571592 +UH 0 34 l 2467 10269 4 +UH 0 28 l 2310 10620 4 +UH 0 30 l 1864 4857 0 +UH 0 31 l 1892 5030 0 +UH 0 33 h 1926 10549 4 +UH 0 34 h 2593 10651 4 +UH 0 30 h 2261 11452 4 +PQ +SE +ID 5903 +TI 1760667401.617613315 +UH 0 30 l 2225 11419 4 +UH 0 19 h 1646 4954 0 +UH 0 20 h 2067 11099 4 +PQ +SE +ID 5904 +TI 1760667401.617633104 +UH 0 11 l 1850 4554 0 +UH 0 63 h 1760 11248 4 +PQ +SE +ID 5905 +TI 1760667401.617647886 +UH 0 63 l 2901 10677 4 +UH 0 27 h 2216 11247 4 +UH 0 28 h 2353 11061 4 +PQ +SE +ID 5906 +TI 1760667401.617664575 +UH 0 22 l 2012 11290 4 +UH 0 32 h 1918 11188 4 +PQ +SE +ID 5907 +TI 1760667401.617682218 +UH 0 58 l 2517 10076 4 +UH 0 22 h 2587 11025 4 +PQ +SE +ID 5908 +TI 1760667401.617698907 +UH 0 64 l 4129 0 5 +UH 0 64 h 3981 0 5 +BD GR Veto +PQ +SE +ID 5909 +TI 1760667401.617706775 +UH 0 59 l 1658 5275 0 +UH 0 37 h 1666 4526 0 +PQ +SE +ID 5910 +TI 1760667401.617724180 +UH 0 33 l 2327 10413 4 +UH 0 28 l 2905 11242 4 +UH 0 59 h 2288 11092 4 +UH 0 62 h 2281 10845 4 +UH 0 63 h 2194 10882 4 +PQ +SE +ID 5911 +TI 1760667401.617756605 +UH 0 44 l 1511 5333 0 +UH 0 45 l 3856 8908 4 +UH 0 46 l 2057 8983 4 +UH 0 47 l 1670 9189 4 +UH 0 47 h 4698 9102 4 +PQ +SE +ID 5912 +TI 1760667401.617781162 +UH 0 6 l 1784 10653 4 +UH 0 19 l 2375 10779 4 +UH 0 64 l 2356 0 5 +UH 0 34 h 2265 10796 4 +UH 0 28 h 1839 11230 4 +UH 0 64 h 4385 0 5 +BD GR Veto +PQ +SE +ID 5913 +TI 1760667401.617817640 +UH 0 32 l 2675 10890 4 +UH 0 33 l 3164 10534 4 +UH 0 45 l 2884 10426 4 +UH 0 42 h 2092 10384 4 +UH 0 43 h 4984 10598 4 +PQ +SE +ID 5914 +TI 1760667401.617846965 +UH 0 64 l 4221 0 5 +UH 0 64 h 4076 0 5 +BD GR Veto +PQ +SE +ID 5915 +TI 1760667401.617854356 +UH 0 42 l 1866 11276 4 +UH 0 19 h 1796 11612 4 +PQ +SE +ID 5916 +TI 1760667401.617871046 +UH 0 18 l 1606 8392 4 +UH 0 19 l 1722 8616 4 +UH 0 20 l 11152 8184 4 +UH 0 21 l 4635 8600 4 +UH 0 22 l 1660 8507 4 +UH 0 23 l 1714 8543 4 +UH 0 24 l 1679 8626 4 +UH 0 64 l 1631 0 5 +UH 0 7 h 1700 8833 4 +UH 0 8 h 1691 9107 4 +UH 0 9 h 13283 8653 4 +UH 0 10 h 2426 9015 4 +UH 0 11 h 1641 8896 4 +BD GR Veto +PQ +SE +ID 5917 +TI 1760667401.617916822 +UH 0 29 l 1817 10963 4 +UH 0 30 l 3602 11184 4 +UH 0 50 h 2748 10828 4 +UH 0 51 h 2622 10943 4 +PQ +SE +ID 5918 +TI 1760667401.617939710 +UH 0 19 l 2141 11223 4 +UH 0 50 h 2170 10504 4 +PQ +SE +ID 5919 +TI 1760667401.617956876 +UH 0 7 l 1711 5278 0 +UH 0 48 h 1689 5446 0 +PQ +SE +ID 5920 +TI 1760667401.617974519 +UH 0 27 l 3388 10764 4 +UH 0 48 h 1769 10726 4 +UH 0 49 h 3135 10629 4 +PQ +SE +ID 5921 +TI 1760667401.617994546 +UH 0 64 h 1723 0 5 +BD GR Veto +PQ +SE +ID 5922 +TI 1760667401.618000030 +UH 0 17 l 2899 10429 4 +UH 0 20 l 2601 10487 4 +UH 0 21 l 1904 10959 4 +UH 0 22 l 2933 10545 4 +UH 0 6 h 2885 11022 4 +UH 0 8 h 1803 11441 4 +UH 0 9 h 2691 11105 4 +UH 0 11 h 2900 11068 4 +PQ +SE +ID 5923 +TI 1760667401.618040800 +UH 0 27 l 2948 10485 4 +UH 0 34 h 2787 10889 4 +PQ +SE +ID 5924 +TI 1760667401.618058204 +UH 0 6 l 1748 5367 0 +UH 0 7 l 1645 4863 0 +UH 0 44 h 1846 10878 4 +PQ +SE +ID 5925 +TI 1760667401.618076324 +UH 0 64 l 4283 0 5 +UH 0 64 h 4100 0 5 +BD GR Veto +PQ +SE +ID 5926 +TI 1760667401.618083953 +UH 0 26 l 2125 11270 4 +UH 0 31 h 1567 4512 0 +PQ +SE +ID 5927 +TI 1760667401.618098497 +UH 0 43 l 3337 10898 4 +UH 0 59 h 3345 10612 4 +PQ +SE +ID 5928 +TI 1760667401.618115663 +UH 0 31 l 1735 5211 0 +UH 0 57 h 1724 5508 0 +PQ +SE +ID 5929 +TI 1760667401.618132829 +UH 0 8 l 2994 10858 4 +UH 0 52 h 2667 10654 4 +UH 0 53 h 1735 10617 4 +PQ +SE +ID 5930 +TI 1760667401.618151426 +UH 0 60 l 1839 10661 4 +UH 0 61 l 1894 5139 0 +UH 0 58 h 2094 10633 4 +PQ +SE +ID 5931 +TI 1760667401.618170261 +UH 0 37 l 2345 10460 4 +UH 0 18 h 2365 11177 4 +PQ +SE +ID 5932 +TI 1760667401.618188619 +UH 0 56 l 1544 5450 0 +UH 0 57 l 2436 9571 4 +UH 0 61 l 1667 4504 0 +UH 0 62 l 2071 9857 4 +UH 0 44 h 3032 9610 4 +PQ +SE +ID 5933 +TI 1760667401.618217468 +UH 0 42 l 1820 10860 4 +UH 0 44 l 1615 4870 0 +UH 0 7 h 1994 11476 4 +PQ +SE +ID 5934 +TI 1760667401.618239164 +UH 0 6 l 2314 10845 4 +UH 0 7 l 1682 10759 4 +UH 0 8 l 4106 10543 4 +UH 0 64 l 2240 0 5 +UH 0 8 h 2310 11303 4 +UH 0 12 h 4705 10981 4 +UH 0 64 h 1695 0 5 +BD GR Veto +PQ +SE +ID 5935 +TI 1760667401.618273019 +UH 0 33 l 1733 4066 0 +UH 0 6 h 1693 5490 0 +PQ +SE +ID 5936 +TI 1760667401.618289232 +UH 0 24 l 2854 10945 4 +UH 0 33 h 2694 10545 4 +PQ +SE +ID 5937 +TI 1760667401.618306398 +UH 0 44 l 1660 5310 0 +UH 0 50 h 1776 3934 0 +PQ +SE +ID 5938 +TI 1760667401.618323564 +UH 0 44 l 1509 5293 0 +UH 0 45 l 1853 10612 4 +UH 0 46 l 1551 3975 0 +UH 0 49 l 1907 10538 4 +UH 0 4 h 1991 10986 4 +UH 0 5 h 1708 4548 0 +UH 0 10 h 1913 10771 4 +PQ +SE +ID 5939 +TI 1760667401.618361234 +UH 0 64 l 3008 0 5 +UH 0 64 h 2971 0 5 +BD GR Veto +PQ +SE +ID 5940 +TI 1760667401.618369102 +UH 0 60 l 1624 8961 4 +UH 0 61 l 1912 9213 4 +UH 0 62 l 4513 9534 4 +UH 0 26 h 1588 9605 4 +UH 0 27 h 4793 9315 4 +UH 0 28 h 1647 9211 4 +PQ +SE +ID 5941 +TI 1760667401.618396043 +UH 0 2 l 3394 10439 4 +UH 0 7 l 3823 10802 4 +UH 0 15 h 3724 11267 4 +UH 0 21 h 2753 11334 4 +UH 0 22 h 2172 11018 4 +PQ +SE +ID 5942 +TI 1760667401.618429899 +UH 0 46 l 2231 8620 4 +UH 0 47 l 2312 8827 4 +UH 0 48 l 2196 8958 4 +UH 0 49 l 3230 8859 4 +UH 0 50 l 1612 8890 4 +UH 0 63 l 1593 1363 0 +UH 0 10 h 3929 9699 4 +UH 0 11 h 3286 9547 4 +PQ +SE +ID 5943 +TI 1760667401.618464231 +UH 0 15 l 2670 10347 4 +UH 0 28 l 1632 1483 0 +UH 0 30 l 1624 1792 0 +UH 0 31 l 1692 2585 0 +UH 0 23 h 2593 11234 4 +PQ +SE +ID 5944 +TI 1760667401.618493556 +UH 0 64 l 2034 0 5 +UH 0 64 h 2068 0 5 +BD GR Veto +PQ +SE +ID 5945 +TI 1760667401.618501424 +UH 0 8 l 1845 11175 4 +UH 0 51 h 1716 10904 4 +PQ +SE +ID 5946 +TI 1760667401.618518114 +UH 0 48 l 3614 10468 4 +UH 0 49 l 1627 10545 4 +UH 0 58 h 3030 10041 4 +UH 0 59 h 2239 10241 4 +PQ +SE +ID 5947 +TI 1760667401.618540048 +UH 0 24 l 1853 5362 0 +UH 0 53 h 1772 11365 4 +PQ +SE +ID 5948 +TI 1760667401.618557453 +UH 0 32 l 1693 10685 4 +UH 0 33 l 3526 10259 4 +UH 0 13 h 3601 10833 4 +UH 0 14 h 1576 11032 4 +PQ +SE +ID 5949 +TI 1760667401.618578910 +UH 0 17 l 3648 10510 4 +UH 0 18 h 3696 11000 4 +PQ +SE +ID 5950 +TI 1760667401.618596553 +UH 0 64 l 1687 0 5 +UH 0 64 h 1786 0 5 +BD GR Veto +PQ +SE +ID 5951 +TI 1760667401.638618230 +UH 0 5 l 2073 10693 4 +UH 0 44 h 2055 11084 4 +PQ +SE +ID 5952 +TI 1760667401.638699769 +UH 0 42 l 1605 9437 4 +UH 0 43 l 4084 9200 4 +UH 0 44 l 1577 9236 4 +UH 0 17 h 1778 9745 4 +UH 0 18 h 4024 9540 4 +PQ +SE +ID 5953 +TI 1760667401.638766050 +UH 0 36 l 2407 10061 4 +UH 0 37 l 1608 5305 0 +UH 0 46 h 1650 3947 0 +UH 0 47 h 2393 10647 4 +PQ +SE +ID 5954 +TI 1760667401.638847827 +UH 0 62 l 3473 10763 4 +UH 0 64 l 2526 0 5 +UH 0 48 h 2851 10692 4 +UH 0 49 h 2130 10697 4 +UH 0 64 h 2539 0 5 +BD GR Veto +PQ +SE +ID 5955 +TI 1760667401.638911008 +UH 0 1 l 2189 11047 4 +UH 0 16 h 2134 11426 4 +PQ +SE +ID 5956 +TI 1760667401.638948440 +UH 0 55 l 2222 10743 4 +UH 0 59 h 1595 4636 0 +UH 0 60 h 2236 10411 4 +PQ +SE +ID 5957 +TI 1760667401.638969421 +UH 0 14 l 2911 10443 4 +UH 0 5 h 1614 4046 0 +UH 0 8 h 2788 11545 4 +PQ +SE +ID 5958 +TI 1760667401.638994216 +UH 0 51 l 2276 10753 4 +UH 0 52 l 1699 4994 0 +UH 0 57 l 1635 4439 0 +UH 0 10 h 1754 5249 0 +UH 0 11 h 2163 11458 4 +UH 0 12 h 1615 11383 4 +PQ +SE +ID 5959 +TI 1760667401.639028072 +UH 0 50 l 2203 10802 4 +UH 0 24 h 2154 11111 4 +PQ +SE +ID 5960 +TI 1760667401.639047384 +UH 0 64 l 2322 0 5 +UH 0 64 h 2352 0 5 +BD GR Veto +PQ +SE +ID 5961 +TI 1760667401.639055728 +UH 0 51 l 2500 10946 4 +UH 0 40 h 2444 10525 4 +PQ +SE +ID 5962 +TI 1760667401.639073848 +UH 0 64 h 1699 0 5 +BD GR Veto +PQ +SE +ID 5963 +TI 1760667401.639080047 +UH 0 27 l 2003 10647 4 +UH 0 28 l 1835 4755 0 +UH 0 16 h 2187 11431 4 +PQ +SE +ID 5964 +TI 1760667401.639100313 +UH 0 2 l 1654 10075 4 +UH 0 3 l 3650 9949 4 +UH 0 7 l 2123 9815 4 +UH 0 28 l 2877 10004 4 +UH 0 36 h 2852 9850 4 +UH 0 39 h 3731 9701 4 +UH 0 48 h 2133 9819 4 +PQ +SE +ID 5965 +TI 1760667401.639150142 +UH 0 41 l 2162 11008 4 +UH 0 42 l 2238 10850 4 +UH 0 63 l 2506 10582 4 +UH 0 52 h 2538 10876 4 +UH 0 18 h 2375 11062 4 +UH 0 19 h 2095 11236 4 +PQ +SE +ID 5966 +TI 1760667401.639189958 +UH 0 64 l 1985 0 5 +UH 0 64 h 2046 0 5 +BD GR Veto +PQ +SE +ID 5967 +TI 1760667401.639198541 +UH 0 52 l 1952 10852 4 +UH 0 47 h 1977 11148 4 +PQ +SE +ID 5968 +TI 1760667401.639216661 +UH 0 64 l 1655 0 5 +UH 0 64 h 1708 0 5 +BD GR Veto +PQ +SE +ID 5969 +TI 1760667401.639224767 +UH 0 56 l 1896 11240 4 +UH 0 27 h 1691 4985 0 +UH 0 28 h 1871 10684 4 +PQ +SE +ID 5970 +TI 1760667401.639245271 +UH 0 19 l 2112 11129 4 +UH 0 63 h 2098 11057 4 +PQ +SE +ID 5971 +TI 1760667401.639264583 +UH 0 26 l 3747 11262 4 +UH 0 8 h 3655 11351 4 +PQ +SE +ID 5972 +TI 1760667401.639281988 +UH 0 64 l 2208 0 5 +UH 0 64 h 2217 0 5 +BD GR Veto +PQ +SE +ID 5973 +TI 1760667401.639290571 +UH 0 56 l 2268 11052 4 +UH 0 57 l 1699 10876 4 +UH 0 21 h 1617 11410 4 +UH 0 22 h 2500 11016 4 +PQ +SE +ID 5974 +TI 1760667401.639312267 +UH 0 34 l 1697 3701 0 +UH 0 35 l 1566 3298 0 +UH 0 56 l 3349 9326 4 +UH 0 57 l 1539 9178 4 +UH 0 41 h 3439 9319 4 +UH 0 63 h 1746 8976 4 +PQ +SE +ID 5975 +TI 1760667401.639347791 +UH 0 4 l 1599 5380 0 +PQ +SE +ID 5976 +TI 1760667401.639358997 +UH 0 35 l 1836 10941 4 +UH 0 28 l 2111 10971 4 +UH 0 29 l 2670 10720 4 +UH 0 64 l 2468 0 5 +UH 0 2 h 1907 11029 4 +UH 0 4 h 2780 11323 4 +UH 0 5 h 1922 11349 4 +UH 0 64 h 2501 0 5 +BD GR Veto +PQ +SE +ID 5977 +TI 1760667401.639403581 +UH 0 54 l 1552 8757 4 +UH 0 55 l 3868 8393 4 +UH 0 56 l 1548 8697 4 +UH 0 61 l 1659 1921 0 +UH 0 62 l 2245 8403 4 +UH 0 21 h 1595 3011 0 +UH 0 22 h 2202 8814 4 +UH 0 24 h 1566 2068 0 +UH 0 28 h 2287 8853 4 +UH 0 29 h 3188 9019 4 +PQ +SE +ID 5978 +TI 1760667401.639455556 +UH 0 35 l 3159 10749 4 +UH 0 36 l 1773 10632 4 +UH 0 40 h 2421 10367 4 +UH 0 42 h 2457 10370 4 +PQ +SE +ID 5979 +TI 1760667401.639480113 +UH 0 48 l 2421 10229 4 +UH 0 49 l 3518 10146 4 +UH 0 49 h 1602 10224 4 +UH 0 50 h 4538 10084 4 +PQ +SE +ID 5980 +TI 1760667401.639502286 +UH 0 42 l 1887 10399 4 +UH 0 46 l 1505 3175 0 +UH 0 56 l 1693 10983 4 +UH 0 57 l 2459 10618 4 +UH 0 38 h 2654 10442 4 +UH 0 39 h 1670 5224 0 +UH 0 13 h 1593 3597 0 +UH 0 20 h 1880 10950 4 +PQ +SE +ID 5981 +TI 1760667401.639555215 +UH 0 64 l 2656 0 5 +UH 0 1 h 1649 5456 0 +UH 0 64 h 2153 0 5 +BD GR Veto +PQ +SE +ID 5982 +TI 1760667401.639571428 +UH 0 33 l 2832 10582 4 +UH 0 34 l 2622 10745 4 +UH 0 34 h 3635 10477 4 +UH 0 35 h 1668 10726 4 +PQ +SE +ID 5983 +TI 1760667401.639595508 +UH 0 57 l 2030 8646 4 +UH 0 58 l 2263 8671 4 +UH 0 59 l 1618 3308 0 +UH 0 61 l 2427 8896 4 +UH 0 8 l 3716 10816 4 +UH 0 38 h 2975 11212 4 +UH 0 39 h 2271 10970 4 +UH 0 16 h 2333 9125 4 +UH 0 17 h 2301 9020 4 +UH 0 18 h 1786 9048 4 +UH 0 19 h 1814 9273 4 +PQ +SE +ID 5984 +TI 1760667401.639646530 +UH 0 10 l 1667 4165 0 +UH 0 64 l 4687 0 5 +UH 0 64 h 4573 0 5 +BD GR Veto +PQ +SE +ID 5985 +TI 1760667401.639663219 +UH 0 8 l 2418 10707 4 +UH 0 64 l 2931 0 5 +UH 0 3 h 2407 10898 4 +UH 0 64 h 2937 0 5 +BD GR Veto +PQ +SE +ID 5986 +TI 1760667401.639685869 +UH 0 64 h 2007 0 5 +BD GR Veto +PQ +SE +ID 5987 +TI 1760667401.639692544 +UH 0 25 l 3188 11264 4 +UH 0 26 l 1677 3616 0 +UH 0 13 h 2598 10917 4 +UH 0 14 h 2120 11256 4 +PQ +SE +ID 5988 +TI 1760667401.639714479 +UH 0 47 l 1816 11058 4 +UH 0 35 h 1761 11406 4 +UH 0 36 h 1688 4998 0 +PQ +SE +ID 5989 +TI 1760667401.639734745 +UH 0 2 l 3851 10862 4 +UH 0 49 h 3788 10631 4 +PQ +SE +ID 5990 +TI 1760667401.639752388 +UH 0 64 l 2122 0 5 +UH 0 64 h 2118 0 5 +BD GR Veto +PQ +SE +ID 5991 +TI 1760667401.639760732 +UH 0 62 l 1997 11029 4 +UH 0 63 l 1606 5135 0 +UH 0 64 l 2175 0 5 +UH 0 43 h 1666 4858 0 +UH 0 44 h 1695 4518 0 +UH 0 45 h 1747 10937 4 +UH 0 64 h 2233 0 5 +BD GR Veto +PQ +SE +ID 5992 +TI 1760667401.639789581 +UH 0 52 l 3387 10781 4 +UH 0 6 h 3353 10785 4 +PQ +SE +ID 5993 +TI 1760667401.639806985 +UH 0 42 l 1929 11120 4 +UH 0 33 h 1866 11056 4 +PQ +SE +ID 5994 +TI 1760667401.639824390 +UH 0 28 l 2103 10932 4 +UH 0 52 h 2053 11303 4 +PQ +SE +ID 5995 +TI 1760667401.639841318 +UH 0 64 l 2230 0 5 +UH 0 64 h 2933 0 5 +BD GR Veto +PQ +SE +ID 5996 +TI 1760667401.639849185 +UH 0 10 l 1669 10963 4 +UH 0 11 l 3289 10520 4 +UH 0 28 h 2259 10925 4 +UH 0 29 h 2540 11109 4 +PQ +SE +ID 5997 +TI 1760667401.639871120 +UH 0 64 l 1634 0 5 +UH 0 64 h 2394 0 5 +BD GR Veto +PQ +SE +ID 5998 +TI 1760667401.639879226 +UH 0 28 l 3578 10843 4 +UH 0 11 h 3527 11261 4 +PQ +SE +ID 5999 +TI 1760667401.639897346 +UH 0 64 l 2223 0 5 +UH 0 64 h 2277 0 5 +BD GR Veto +PQ +SE +ID 6000 +TI 1760667401.639905452 +UH 0 2 l 1714 4610 0 +UH 0 3 l 1903 10483 4 +UH 0 17 h 1981 11409 4 +PQ +SE +ID 6001 +TI 1760667401.639925956 +UH 0 6 l 2161 8901 4 +UH 0 11 l 2054 8534 4 +UH 0 12 l 4704 8359 4 +UH 0 13 l 1617 8882 4 +UH 0 45 h 2696 9000 4 +UH 0 48 h 3818 8801 4 +UH 0 51 h 2127 8760 4 +PQ +SE +ID 6002 +TI 1760667401.639969825 +UH 0 1 l 2393 10999 4 +UH 0 20 h 2340 11101 4 +PQ +SE +ID 6003 +TI 1760667401.639987468 +UH 0 39 l 3388 10598 4 +UH 0 40 l 2002 10718 4 +UH 0 61 h 3963 11116 4 +PQ +SE +ID 6004 +TI 1760667401.640007019 +UH 0 37 l 2213 10918 4 +UH 0 38 l 1743 10944 4 +UH 0 30 l 3006 10796 4 +UH 0 40 h 2434 10363 4 +UH 0 47 h 3061 10667 4 +PQ +SE +ID 6005 +TI 1760667401.640041112 +UH 0 41 l 2112 11031 4 +UH 0 7 h 2273 11115 4 +PQ +SE +ID 6006 +TI 1760667401.640059232 +UH 0 12 l 4185 10422 4 +UH 0 21 l 1771 5078 0 +UH 0 23 l 2976 10655 4 +UH 0 51 h 1623 10655 4 +UH 0 52 h 4111 10468 4 +UH 0 53 h 2729 10480 4 +UH 0 54 h 1640 10709 4 +PQ +SE +ID 6007 +TI 1760667401.640141010 +UH 0 44 l 1507 8450 4 +UH 0 45 l 4249 8313 4 +UH 0 46 l 1537 8430 4 +UH 0 30 h 4146 9379 4 +UH 0 31 h 1597 2656 0 +PQ +SE +ID 6008 +TI 1760667401.640164613 +UH 0 5 l 2596 10336 4 +UH 0 20 h 2571 11102 4 +PQ +SE +ID 6009 +TI 1760667401.640182256 +UH 0 58 l 1742 4742 0 +UH 0 59 l 1566 4882 0 +UH 0 62 l 2224 10673 4 +UH 0 37 h 2230 11285 4 +UH 0 38 h 1872 11211 4 +PQ +SE +ID 6010 +TI 1760667401.640211820 +UH 0 38 l 2533 10203 4 +UH 0 45 l 1531 3473 0 +UH 0 46 l 2231 10004 4 +UH 0 47 l 1535 5348 0 +UH 0 24 h 1939 10596 4 +UH 0 25 h 2659 10814 4 +UH 0 26 h 1845 11048 4 +PQ +SE +ID 6011 +TI 1760667401.640245914 +UH 0 46 l 3836 10680 4 +UH 0 56 l 1680 5197 0 +UH 0 58 l 2259 10261 4 +UH 0 53 h 2187 10831 4 +UH 0 54 h 1596 11035 4 +UH 0 56 h 1741 4520 0 +UH 0 58 h 1715 10637 4 +UH 0 59 h 3692 10692 4 +PQ +SE +ID 6012 +TI 1760667401.640289545 +UH 0 23 l 2665 10928 4 +UH 0 25 h 1773 10949 4 +UH 0 26 h 2225 11018 4 +PQ +SE +ID 6013 +TI 1760667401.640310287 +UH 0 63 l 2358 10760 4 +UH 0 52 h 2389 10974 4 +PQ +SE +ID 6014 +TI 1760667401.640325546 +UH 0 40 l 2394 3046 4 +UH 0 52 l 2568 10835 4 +UH 0 8 h 2574 11557 4 +PQ +SE +ID 6015 +TI 1760667401.660537242 +UH 0 47 l 1867 10889 4 +UH 0 48 l 2514 10925 4 +UH 0 57 h 1676 11263 4 +UH 0 58 h 2779 10821 4 +PQ +SE +ID 6016 +TI 1760667401.660590171 +UH 0 16 l 1697 4438 0 +UH 0 17 l 1598 4951 0 +UH 0 14 h 1776 11677 4 +PQ +SE +ID 6017 +TI 1760667401.660611867 +UH 0 33 l 3839 10465 4 +UH 0 36 l 3371 10496 4 +UH 0 1 h 2209 10730 4 +UH 0 2 h 3280 10701 4 +UH 0 6 h 3321 10646 4 +PQ +SE +ID 6018 +TI 1760667401.660646915 +UH 0 42 l 2934 8664 4 +UH 0 43 l 2656 8798 4 +UH 0 44 l 1502 5306 0 +UH 0 51 l 1928 8487 4 +UH 0 33 h 1773 8497 4 +UH 0 34 h 2196 8574 4 +UH 0 36 h 3074 8691 4 +UH 0 44 h 1885 8642 4 +PQ +SE +ID 6019 +TI 1760667401.660695552 +UH 0 34 l 2133 10661 4 +UH 0 35 l 2032 10897 4 +UH 0 30 l 1859 11365 4 +UH 0 25 h 1785 5386 0 +UH 0 26 h 2561 11336 4 +UH 0 27 h 1630 11236 4 +PQ +SE +ID 6020 +TI 1760667401.660727977 +UH 0 64 l 2018 0 5 +UH 0 64 h 2068 0 5 +BD GR Veto +PQ +SE +ID 6021 +TI 1760667401.660736799 +UH 0 58 l 1885 10781 4 +UH 0 35 h 1909 11430 4 +PQ +SE +ID 6022 +TI 1760667401.660754680 +UH 0 33 l 1663 2510 0 +UH 0 35 l 4490 9248 4 +UH 0 32 h 1630 9114 4 +UH 0 29 h 1580 9307 4 +UH 0 30 h 4395 9397 4 +PQ +SE +ID 6023 +TI 1760667401.660784721 +UH 0 64 l 2518 0 5 +UH 0 64 h 2570 0 5 +BD GR Veto +PQ +SE +ID 6024 +TI 1760667401.660792827 +UH 0 42 l 2656 10892 4 +UH 0 38 h 2659 11314 4 +PQ +SE +ID 6025 +TI 1760667401.660810470 +UH 0 10 l 2645 10957 4 +UH 0 11 l 3262 10665 4 +UH 0 64 l 2287 0 5 +UH 0 39 h 3261 10733 4 +UH 0 40 h 2495 10756 4 +UH 0 64 h 2365 0 5 +BD GR Veto +PQ +SE +ID 6026 +TI 1760667401.660837411 +UH 0 19 l 2239 10428 4 +UH 0 21 l 4550 10364 4 +UH 0 22 l 1742 10227 4 +UH 0 23 l 1973 10309 4 +UH 0 27 h 1637 10577 4 +UH 0 28 h 4911 10213 4 +UH 0 29 h 2177 10516 4 +PQ +SE +ID 6027 +TI 1760667401.660869359 +UH 0 54 l 1605 5543 0 +UH 0 58 h 1623 4371 0 +PQ +SE +ID 6028 +TI 1760667401.660888910 +UH 0 48 l 1891 11149 4 +UH 0 7 h 1985 10873 4 +PQ +SE +ID 6029 +TI 1760667401.660906076 +UH 0 34 l 1891 10198 4 +UH 0 0 l 2038 10446 4 +UH 0 64 l 3468 0 5 +UH 0 52 h 1908 10802 4 +UH 0 21 h 3898 11248 4 +BD GR Veto +PQ +SE +ID 6030 +TI 1760667401.660938978 +UH 0 14 l 2717 10523 4 +UH 0 10 h 2687 11535 4 +PQ +SE +ID 6031 +TI 1760667401.660968542 +UH 0 36 l 3074 10536 4 +UH 0 42 l 1775 4734 0 +UH 0 64 l 3104 0 5 +UH 0 0 h 1726 11059 4 +UH 0 3 h 2886 10479 4 +UH 0 4 h 1785 11014 4 +UH 0 64 h 3480 0 5 +BD GR Veto +PQ +SE +ID 6032 +TI 1760667401.661012172 +UH 0 64 l 2376 0 5 +UH 0 64 h 2355 0 5 +BD GR Veto +PQ +SE +ID 6033 +TI 1760667401.661020517 +UH 0 64 h 1761 0 5 +BD GR Veto +PQ +SE +ID 6034 +TI 1760667401.661026239 +UH 0 51 l 1728 5445 0 +UH 0 53 l 1621 4958 0 +UH 0 48 h 1610 4995 0 +UH 0 51 h 1644 11624 4 +PQ +SE +ID 6035 +TI 1760667401.661055088 +UH 0 33 l 4238 8733 4 +UH 0 34 l 1602 8956 4 +UH 0 54 h 1527 8072 0 +UH 0 55 h 4363 9226 4 +PQ +SE +ID 6036 +TI 1760667401.661077499 +UH 0 38 l 1898 11166 4 +UH 0 18 h 1799 5074 0 +UH 0 19 h 1678 5205 0 +PQ +SE +ID 6037 +TI 1760667401.661097526 +UH 0 54 l 2076 11112 4 +UH 0 51 h 1546 3767 0 +UH 0 52 h 2057 10464 4 +PQ +SE +ID 6038 +TI 1760667401.661117553 +UH 0 0 l 5617 9108 4 +UH 0 7 h 2966 9168 4 +UH 0 8 h 4161 9427 4 +UH 0 64 h 1696 0 5 +BD GR Veto +PQ +SE +ID 6039 +TI 1760667401.661137580 +UH 0 54 l 1830 11193 4 +UH 0 55 h 2006 10341 4 +PQ +SE +ID 6040 +TI 1760667401.661155700 +UH 0 49 l 2660 10889 4 +UH 0 53 l 3011 10638 4 +UH 0 32 h 2497 10616 4 +UH 0 31 h 3153 10429 4 +PQ +SE +ID 6041 +TI 1760667401.661182165 +UH 0 55 l 2034 10679 4 +UH 0 33 h 2079 9881 4 +PQ +SE +ID 6042 +TI 1760667401.661198854 +UH 0 4 l 1708 4956 0 +UH 0 25 h 1638 5589 0 +PQ +SE +ID 6043 +TI 1760667401.661216259 +UH 0 27 l 2115 10787 4 +UH 0 28 l 2170 10994 4 +UH 0 29 l 1820 10942 4 +UH 0 30 l 2107 11192 4 +UH 0 64 l 3440 0 5 +UH 0 33 h 2105 10231 4 +UH 0 29 h 2055 10820 4 +UH 0 31 h 2283 10453 4 +UH 0 64 h 3607 0 5 +BD GR Veto +PQ +SE +ID 6044 +TI 1760667401.661254167 +UH 0 6 l 1596 8657 4 +UH 0 7 l 4202 8388 4 +UH 0 8 l 1668 8464 4 +UH 0 10 l 2049 8286 4 +UH 0 17 l 2466 8743 4 +UH 0 40 h 4207 8575 4 +UH 0 43 h 1981 8758 4 +UH 0 31 h 2443 8249 4 +PQ +SE +ID 6045 +TI 1760667401.661303281 +UH 0 64 l 2970 0 5 +UH 0 64 h 2954 0 5 +BD GR Veto +PQ +SE +ID 6046 +TI 1760667401.661310911 +UH 0 64 l 1640 0 5 +UH 0 64 h 1721 0 5 +BD GR Veto +PQ +SE +ID 6047 +TI 1760667401.661319017 +UH 0 31 l 1717 5156 0 +UH 0 14 h 1704 12058 4 +PQ +SE +ID 6048 +TI 1760667401.661336421 +UH 0 61 l 1656 8617 4 +UH 0 62 l 3696 8764 4 +UH 0 63 l 1526 8588 4 +UH 0 64 l 2283 0 5 +UH 0 37 h 2300 8888 4 +UH 0 39 h 3669 8408 4 +BD GR Veto +PQ +SE +ID 6049 +TI 1760667401.661363601 +UH 0 10 l 2347 10651 4 +UH 0 53 h 2301 11073 4 +PQ +SE +ID 6050 +TI 1760667401.661381721 +UH 0 34 l 2729 10218 4 +UH 0 23 l 2024 10802 4 +UH 0 24 l 2805 10878 4 +UH 0 18 h 2726 10726 4 +UH 0 19 h 2670 11323 4 +UH 0 20 h 1914 10747 4 +PQ +SE +ID 6051 +TI 1760667401.661413431 +UH 0 53 l 1614 4765 0 +UH 0 46 h 1631 5370 0 +PQ +SE +ID 6052 +TI 1760667401.661430597 +UH 0 20 l 2268 10615 4 +UH 0 46 h 2171 11185 4 +PQ +SE +ID 6053 +TI 1760667401.661448240 +UH 0 60 l 3623 8756 4 +UH 0 61 l 1647 9118 4 +UH 0 11 h 2677 9269 4 +UH 0 12 h 2247 9399 4 +UH 0 13 h 1783 9565 4 +PQ +SE +ID 6054 +TI 1760667401.661472558 +UH 0 24 l 3853 10889 4 +UH 0 49 h 1579 10798 4 +UH 0 50 h 3762 10645 4 +PQ +SE +ID 6055 +TI 1760667401.661491870 +UH 0 38 l 1896 10994 4 +UH 0 48 h 1982 11110 4 +PQ +SE +ID 6056 +TI 1760667401.661509037 +UH 0 42 l 1893 5352 0 +UH 0 14 h 1826 11791 4 +PQ +SE +ID 6057 +TI 1760667401.661527395 +UH 0 63 l 1525 5232 0 +UH 0 64 l 3306 0 5 +UH 0 64 h 5010 0 5 +BD GR Veto +PQ +SE +ID 6058 +TI 1760667401.661539793 +UH 0 24 l 2534 11044 4 +UH 0 30 h 2016 11174 4 +UH 0 31 h 1893 10553 4 +PQ +SE +ID 6059 +TI 1760667401.661559343 +UH 0 47 l 2266 10810 4 +UH 0 55 l 1537 5037 0 +UH 0 56 l 1568 2973 0 +UH 0 58 l 1566 3596 0 +UH 0 62 l 1621 2166 0 +UH 0 63 l 1541 2593 0 +UH 0 64 l 1630 0 5 +UH 0 36 h 2351 10872 4 +UH 0 24 h 1704 4701 0 +UH 0 64 h 1852 0 5 +BD GR Veto +PQ +SE +ID 6060 +TI 1760667401.661609649 +UH 0 40 l 3180 10621 4 +UH 0 47 l 2606 10802 4 +UH 0 62 l 1620 1766 0 +UH 0 63 l 1559 2523 0 +UH 0 12 l 2354 10202 4 +UH 0 13 l 1767 5065 0 +UH 0 45 h 1682 10980 4 +UH 0 46 h 2470 10771 4 +UH 0 47 h 2666 10835 4 +UH 0 48 h 2158 10946 4 +UH 0 20 h 2253 11196 4 +UH 0 22 h 1832 5343 0 +PQ +SE +ID 6061 +TI 1760667401.661668539 +UH 0 24 l 1894 3738 0 +UH 0 25 l 1774 3716 0 +UH 0 26 l 1753 3745 0 +UH 0 29 l 1676 9612 4 +UH 0 30 l 3911 9771 4 +UH 0 6 h 1753 3864 0 +UH 0 8 h 1734 10525 4 +UH 0 9 h 1677 10183 4 +UH 0 10 h 3957 10329 4 +PQ +SE +ID 6062 +TI 1760667401.661709547 +UH 0 4 l 3065 10522 4 +UH 0 22 h 2712 10996 4 +UH 0 23 h 1916 11095 4 +PQ +SE +ID 6063 +TI 1760667401.661730289 +UH 0 9 l 2335 10664 4 +UH 0 27 h 2320 11154 4 +PQ +SE +ID 6064 +TI 1760667401.661746740 +UH 0 54 l 2021 11032 4 +UH 0 38 h 2108 11392 4 +PQ +SE +ID 6065 +TI 1760667401.661764621 +UH 0 61 l 2258 10468 4 +UH 0 62 l 1812 10673 4 +UH 0 21 h 2374 11498 4 +PQ +SE +ID 6066 +TI 1760667401.661785125 +UH 0 39 l 2527 10744 4 +UH 0 42 l 2539 11068 4 +UH 0 44 l 2513 10606 4 +UH 0 47 l 2538 10746 4 +UH 0 61 l 1643 2070 0 +UH 0 62 l 1624 2653 0 +UH 0 63 l 1539 2050 0 +UH 0 46 h 2500 10780 4 +UH 0 49 h 3336 10574 4 +UH 0 50 h 1870 10739 4 +UH 0 52 h 1714 10946 4 +UH 0 53 h 2420 10719 4 +PQ +SE +ID 6067 +TI 1760667401.661853075 +UH 0 10 l 1790 4562 0 +UH 0 8 h 1788 5769 0 +PQ +SE +ID 6068 +TI 1760667401.661880493 +UH 0 52 l 1611 5368 0 +UH 0 53 l 4078 8396 4 +UH 0 54 l 1699 8693 4 +UH 0 55 l 2849 8562 4 +UH 0 56 l 1553 4986 0 +UH 0 42 h 5666 8548 4 +PQ +SE +ID 6069 +TI 1760667401.661917686 +UH 0 53 l 2611 10731 4 +UH 0 49 h 2588 10873 4 +PQ +SE +ID 6070 +TI 1760667401.661934852 +UH 0 2 l 2317 10843 4 +UH 0 24 h 2246 11156 4 +PQ +SE +ID 6071 +TI 1760667401.661952495 +UH 0 32 l 1849 10651 4 +UH 0 26 l 1989 10784 4 +UH 0 27 l 2226 10224 4 +UH 0 52 h 1704 4246 0 +UH 0 53 h 1632 4049 0 +UH 0 54 h 2502 10608 4 +PQ +SE +ID 6072 +TI 1760667401.661983966 +UH 0 56 l 1569 8961 4 +UH 0 57 l 4396 8574 4 +UH 0 48 h 4477 9018 4 +PQ +SE +ID 6073 +TI 1760667401.662003993 +UH 0 53 l 1724 10875 4 +UH 0 54 l 2642 10965 4 +UH 0 44 h 1711 4586 0 +UH 0 45 h 1635 10854 4 +UH 0 46 h 2569 10580 4 +PQ +SE +ID 6074 +TI 1760667401.662027835 +UH 0 0 l 2105 9010 4 +UH 0 64 l 5131 0 5 +UH 0 42 h 1754 8446 4 +UH 0 43 h 5341 8623 4 +UH 0 64 h 1673 0 5 +BD GR Veto +PQ +SE +ID 6075 +TI 1760667401.662050247 +UH 0 64 l 2769 0 5 +UH 0 64 h 3337 0 5 +BD GR Veto +PQ +SE +ID 6076 +TI 1760667401.662058353 +UH 0 55 l 2559 10762 4 +UH 0 63 l 3083 10406 4 +UH 0 36 h 2670 10418 4 +UH 0 38 h 1746 10779 4 +UH 0 39 h 3013 10421 4 +PQ +SE +ID 6077 +TI 1760667401.662086963 +UH 0 48 l 2689 10747 4 +UH 0 49 l 2039 10758 4 +UH 0 37 h 3372 11289 4 +PQ +SE +ID 6078 +TI 1760667401.662106037 +UH 0 34 l 1586 5295 0 +PQ +SE +ID 6079 +TI 1760667401.681461334 +UH 0 64 l 1934 0 5 +UH 0 64 h 2013 0 5 +BD GR Veto +PQ +SE +ID 6080 +TI 1760667401.681514263 +UH 0 57 l 1857 10784 4 +UH 0 47 h 1953 10332 4 +PQ +SE +ID 6081 +TI 1760667401.681551933 +UH 0 52 l 3539 9566 4 +UH 0 53 l 3659 9517 4 +UH 0 13 h 1598 9452 4 +UH 0 14 h 5115 9744 4 +UH 0 15 h 1993 9593 4 +PQ +SE +ID 6082 +TI 1760667401.681604862 +UH 0 64 l 2533 0 5 +UH 0 64 h 2555 0 5 +BD GR Veto +PQ +SE +ID 6083 +TI 1760667401.681620121 +UH 0 0 l 2396 8824 4 +UH 0 1 l 1633 9131 4 +UH 0 2 l 3916 8697 4 +UH 0 3 l 2389 8659 4 +UH 0 4 l 1631 8997 4 +UH 0 8 h 2391 9382 4 +UH 0 9 h 1817 9069 4 +UH 0 10 h 3688 9232 4 +UH 0 16 h 2299 9262 4 +PQ +SE +ID 6084 +TI 1760667401.681694030 +UH 0 26 l 2731 11319 4 +UH 0 27 l 1995 10998 4 +UH 0 28 l 2621 11199 4 +UH 0 32 h 2137 10856 4 +UH 0 33 h 1729 4469 0 +UH 0 22 h 2133 11217 4 +UH 0 23 h 1566 5265 0 +UH 0 24 h 1582 4234 0 +UH 0 30 h 2527 11299 4 +PQ +SE +ID 6085 +TI 1760667401.681776523 +UH 0 29 l 2979 10753 4 +UH 0 30 l 2698 11030 4 +UH 0 34 h 1900 10901 4 +UH 0 35 h 3653 10982 4 +PQ +SE +ID 6086 +TI 1760667401.681820631 +UH 0 56 l 1610 5461 0 +UH 0 12 h 1582 5162 0 +PQ +SE +ID 6087 +TI 1760667401.681849718 +UH 0 41 l 1622 5360 0 +UH 0 2 h 1776 12031 4 +PQ +SE +ID 6088 +TI 1760667401.681883096 +UH 0 42 l 3109 10994 4 +UH 0 8 h 2827 11118 4 +UH 0 9 h 1788 10824 4 +PQ +SE +ID 6089 +TI 1760667401.681922674 +UH 0 12 l 2363 10567 4 +UH 0 15 l 2481 10780 4 +UH 0 30 l 1625 2800 0 +UH 0 31 l 1656 2286 0 +UH 0 48 h 1809 5152 0 +UH 0 53 h 2139 10998 4 +UH 0 56 h 2252 10995 4 +PQ +SE +ID 6090 +TI 1760667401.682013034 +UH 0 35 l 2013 10557 4 +UH 0 36 l 2734 10499 4 +UH 0 44 l 2094 10814 4 +UH 0 39 h 2782 10869 4 +UH 0 41 h 2040 11240 4 +UH 0 25 h 2097 11436 4 +PQ +SE +ID 6091 +TI 1760667401.682088136 +UH 0 45 l 1619 4882 0 +UH 0 46 l 2072 10593 4 +UH 0 47 l 1555 5132 0 +UH 0 20 h 1623 5252 0 +UH 0 21 h 2207 11380 4 +UH 0 24 h 1592 4206 0 +PQ +SE +ID 6092 +TI 1760667401.682120084 +UH 0 6 l 1705 5364 0 +UH 0 56 h 1722 5135 0 +PQ +SE +ID 6093 +TI 1760667401.682137966 +UH 0 2 l 2539 11013 4 +UH 0 42 h 2524 10466 4 +PQ +SE +ID 6094 +TI 1760667401.682155370 +UH 0 35 l 2292 10717 4 +UH 0 37 l 1777 4998 0 +UH 0 40 l 1893 10478 4 +UH 0 35 h 2323 10701 4 +UH 0 36 h 1857 10847 4 +UH 0 29 h 1942 11292 4 +PQ +SE +ID 6095 +TI 1760667401.682196140 +UH 0 49 l 3313 10873 4 +UH 0 5 h 3304 11029 4 +PQ +SE +ID 6096 +TI 1760667401.682213783 +UH 0 64 l 5697 0 5 +UH 0 64 h 5447 0 5 +BD GR Veto +PQ +SE +ID 6097 +TI 1760667401.682221889 +UH 0 3 l 4128 9685 4 +UH 0 4 l 1659 9992 4 +UH 0 7 h 4383 10630 4 +PQ +SE +ID 6098 +TI 1760667401.682240962 +UH 0 24 l 2263 11145 4 +UH 0 2 h 2002 11068 4 +UH 0 3 h 1784 4491 0 +PQ +SE +ID 6099 +TI 1760667401.682261228 +UH 0 36 l 2720 10425 4 +UH 0 37 l 1638 5316 0 +UH 0 9 h 2712 11310 4 +UH 0 13 h 1607 5257 0 +PQ +SE +ID 6100 +TI 1760667401.682288885 +UH 0 55 l 1619 10574 4 +UH 0 56 l 2966 10663 4 +UH 0 31 h 3183 10631 4 +PQ +SE +ID 6101 +TI 1760667401.682306766 +UH 0 38 l 1885 9326 4 +UH 0 39 l 3929 9176 4 +UH 0 47 l 2267 8878 4 +UH 0 63 l 1597 1346 0 +UH 0 45 h 2083 9274 4 +UH 0 50 h 1793 9056 4 +UH 0 26 h 1594 9521 4 +UH 0 27 h 4203 9215 4 +UH 0 28 h 1653 9118 4 +PQ +SE +ID 6102 +TI 1760667401.682358980 +UH 0 5 l 2307 9414 4 +UH 0 6 l 4427 9280 4 +UH 0 7 l 2051 9379 4 +UH 0 24 h 1557 9714 4 +UH 0 25 h 5075 9858 4 +UH 0 26 h 1902 10062 4 +PQ +SE +ID 6103 +TI 1760667401.682384967 +UH 0 42 l 2115 10780 4 +UH 0 43 l 1568 5237 0 +UH 0 44 l 2422 10732 4 +UH 0 44 h 1757 10872 4 +UH 0 55 h 2608 10715 4 +UH 0 56 h 1937 11110 4 +PQ +SE +ID 6104 +TI 1760667401.682415962 +UH 0 20 l 2131 10738 4 +UH 0 41 h 2058 11477 4 +PQ +SE +ID 6105 +TI 1760667401.682431697 +UH 0 57 l 3754 10688 4 +UH 0 19 h 3486 11011 4 +UH 0 20 h 1754 10815 4 +PQ +SE +ID 6106 +TI 1760667401.682451486 +UH 0 2 l 3007 10858 4 +UH 0 54 h 1576 3942 0 +UH 0 55 h 1929 10676 4 +UH 0 57 h 2556 11263 4 +PQ +SE +ID 6107 +TI 1760667401.682476043 +UH 0 64 h 2587 0 5 +BD GR Veto +PQ +SE +ID 6108 +TI 1760667401.682482242 +UH 0 46 l 2190 10391 4 +UH 0 47 l 1546 5350 0 +UH 0 46 h 2334 10489 4 +PQ +SE +ID 6109 +TI 1760667401.682502508 +UH 0 15 l 2637 10802 4 +UH 0 21 l 2975 11023 4 +UH 0 28 l 1638 1882 0 +UH 0 29 l 1649 2043 0 +UH 0 30 l 1632 2341 0 +UH 0 31 l 1690 2299 0 +UH 0 43 h 2185 10536 4 +UH 0 44 h 3294 10444 4 +PQ +SE +ID 6110 +TI 1760667401.682543754 +UH 0 43 l 1655 5371 0 +UH 0 10 h 1717 5700 0 +PQ +SE +ID 6111 +TI 1760667401.682562828 +UH 0 30 l 4447 11158 4 +UH 0 55 h 4577 10104 4 +PQ +SE +ID 6112 +TI 1760667401.682580947 +UH 0 59 l 2610 10732 4 +UH 0 19 h 2570 11061 4 +PQ +SE +ID 6113 +TI 1760667401.682598590 +UH 0 39 l 3254 10734 4 +UH 0 40 l 1816 10858 4 +UH 0 55 h 3428 10198 4 +UH 0 56 h 1816 10579 4 +PQ +SE +ID 6114 +TI 1760667401.682620763 +UH 0 52 l 2360 10561 4 +UH 0 27 h 2352 11369 4 +PQ +SE +ID 6115 +TI 1760667401.682638645 +UH 0 4 l 2729 9452 4 +UH 0 7 l 1817 3266 0 +UH 0 23 l 4274 9550 4 +UH 0 18 h 1610 9787 4 +UH 0 19 h 4022 9933 4 +UH 0 20 h 1849 9914 4 +UH 0 22 h 2760 9809 4 +PQ +SE +ID 6116 +TI 1760667401.682683229 +UH 0 0 l 2209 10732 4 +UH 0 1 l 2854 10988 4 +UH 0 35 h 1896 11133 4 +UH 0 36 h 3126 11186 4 +PQ +SE +ID 6117 +TI 1760667401.682702541 +UH 0 18 l 3301 10629 4 +UH 0 21 l 2540 10774 4 +UH 0 0 h 1694 11211 4 +UH 0 1 h 2483 11142 4 +UH 0 2 h 3380 11283 4 +PQ +SE +ID 6118 +TI 1760667401.682729721 +UH 0 48 l 2088 10711 4 +UH 0 51 l 2270 10635 4 +UH 0 50 h 2188 10925 4 +UH 0 54 h 2201 11147 4 +PQ +SE +ID 6119 +TI 1760667401.682771205 +UH 0 17 l 4197 9617 4 +UH 0 18 l 1537 7902 0 +UH 0 51 h 4066 9215 4 +UH 0 52 h 1658 9339 4 +PQ +SE +ID 6120 +TI 1760667401.682808160 +UH 0 61 l 3409 10635 4 +UH 0 42 h 2961 10271 4 +UH 0 43 h 1924 10582 4 +PQ +SE +ID 6121 +TI 1760667401.682836294 +UH 0 49 l 1679 5384 0 +UH 0 55 h 1843 3949 0 +PQ +SE +ID 6122 +TI 1760667401.682853460 +UH 0 33 l 1637 4341 0 +UH 0 41 l 1511 3981 0 +UH 0 27 l 1734 4886 0 +UH 0 29 l 2026 10688 4 +UH 0 30 l 2173 10912 4 +UH 0 64 l 2330 0 5 +UH 0 6 h 1583 4905 0 +UH 0 11 h 1686 4856 0 +UH 0 12 h 1581 11146 4 +UH 0 14 h 1728 11234 4 +UH 0 15 h 2506 11244 4 +UH 0 64 h 2642 0 5 +BD GR Veto +PQ +SE +ID 6123 +TI 1760667401.682939291 +UH 0 41 l 1587 5427 0 +UH 0 60 h 1625 4253 0 +PQ +SE +ID 6124 +TI 1760667401.682957410 +UH 0 19 l 2397 10811 4 +UH 0 26 l 2010 5129 0 +UH 0 30 l 3458 10826 4 +UH 0 31 l 1817 10962 4 +UH 0 64 l 2218 0 5 +UH 0 3 h 1798 10844 4 +UH 0 4 h 2197 11275 4 +UH 0 7 h 3381 11220 4 +UH 0 8 h 2398 11571 4 +UH 0 64 h 2244 0 5 +BD GR Veto +PQ +SE +ID 6125 +TI 1760667401.683014392 +UH 0 14 l 1708 5346 0 +UH 0 62 h 1720 4948 0 +PQ +SE +ID 6126 +TI 1760667401.683032274 +UH 0 44 l 1550 4208 0 +UH 0 46 l 2161 10457 4 +UH 0 51 l 1682 4977 0 +UH 0 36 h 1696 4686 0 +UH 0 10 h 2227 11627 4 +UH 0 30 h 1617 5300 0 +PQ +SE +ID 6127 +TI 1760667401.683076620 +UH 0 56 l 4348 10955 4 +UH 0 30 h 1621 10899 4 +UH 0 31 h 4291 10166 4 +PQ +SE +ID 6128 +TI 1760667401.683098554 +UH 0 25 h 1516 5643 0 +PQ +SE +ID 6129 +TI 1760667401.683111429 +UH 0 30 l 2197 4930 0 +UH 0 31 l 2149 4975 0 +UH 0 28 h 2688 5392 0 +UH 0 29 h 1579 5075 0 +UH 0 30 h 1623 5411 0 +PQ +SE +ID 6130 +TI 1760667401.683142423 +UH 0 10 l 1761 4656 0 +UH 0 54 h 1699 11411 4 +PQ +SE +ID 6131 +TI 1760667401.683163166 +UH 0 5 l 2217 10731 4 +UH 0 11 h 2190 11438 4 +PQ +SE +ID 6132 +TI 1760667401.683181047 +UH 0 64 l 3659 0 5 +UH 0 64 h 3572 0 5 +BD GR Veto +PQ +SE +ID 6133 +TI 1760667401.683192491 +UH 0 33 l 2155 10723 4 +UH 0 46 h 1789 4241 0 +UH 0 47 h 1927 10361 4 +PQ +SE +ID 6134 +TI 1760667401.683214187 +UH 0 57 l 3372 10713 4 +UH 0 30 h 3337 11249 4 +PQ +SE +ID 6135 +TI 1760667401.683232307 +UH 0 64 l 2615 0 5 +UH 0 64 h 2624 0 5 +BD GR Veto +PQ +SE +ID 6136 +TI 1760667401.683240175 +UH 0 64 l 1902 0 5 +UH 0 64 h 1929 0 5 +BD GR Veto +PQ +SE +ID 6137 +TI 1760667401.683247804 +UH 0 47 l 1649 5011 0 +UH 0 51 h 1604 5443 0 +UH 0 64 h 2132 0 5 +BD GR Veto +PQ +SE +ID 6138 +TI 1760667401.683267354 +UH 0 24 l 1917 5368 0 +UH 0 5 h 1820 11141 4 +PQ +SE +ID 6139 +TI 1760667401.683284759 +UH 0 47 l 2027 10954 4 +UH 0 63 l 1524 2537 0 +UH 0 45 h 2009 10737 4 +PQ +SE +ID 6140 +TI 1760667401.683306932 +UH 0 42 l 2874 10994 4 +UH 0 43 l 1715 11064 4 +UH 0 35 h 2411 10794 4 +UH 0 36 h 2270 10883 4 +PQ +SE +ID 6141 +TI 1760667401.683329105 +UH 0 25 l 5801 9468 4 +UH 0 8 h 1616 9713 4 +UH 0 9 h 5147 9530 4 +UH 0 10 h 2046 9579 4 +PQ +SE +ID 6142 +TI 1760667401.683351039 +UH 0 25 l 2791 10894 4 +UH 0 26 l 2270 11108 4 +UH 0 35 h 1835 11097 4 +UH 0 36 h 3111 11124 4 +PQ +SE +ID 6143 +TI 1760667401.704679727 +UH 0 42 l 1792 4581 0 +UH 0 26 h 1774 11821 4 +PQ +SE +ID 6144 +TI 1760667401.704763412 +UH 0 49 l 1518 5384 0 +UH 0 51 l 2500 10712 4 +UH 0 18 h 2540 10627 4 +PQ +SE +ID 6145 +TI 1760667401.704815387 +UH 0 64 h 1752 0 5 +BD GR Veto +PQ +SE +ID 6146 +TI 1760667401.704826831 +UH 0 16 l 2231 11005 4 +UH 0 46 h 2244 10431 4 +PQ +SE +ID 6147 +TI 1760667401.704867124 +UH 0 18 l 2323 10709 4 +UH 0 19 h 2259 11013 4 +PQ +SE +ID 6148 +TI 1760667401.704905509 +UH 0 64 l 1953 0 5 +UH 0 64 h 2001 0 5 +BD GR Veto +PQ +SE +ID 6149 +TI 1760667401.704922437 +UH 0 42 l 1726 11150 4 +UH 0 43 l 2480 11014 4 +UH 0 49 l 1702 4978 0 +UH 0 22 h 1822 11156 4 +UH 0 30 h 2670 11353 4 +PQ +SE +ID 6150 +TI 1760667401.704983472 +UH 0 22 l 1639 4639 0 +UH 0 23 l 1781 5058 0 +UH 0 26 l 2837 11012 4 +UH 0 64 l 4025 0 5 +UH 0 55 h 2808 10763 4 +UH 0 56 h 1829 5079 0 +UH 0 64 h 3882 0 5 +BD GR Veto +PQ +SE +ID 6151 +TI 1760667401.705019474 +UH 0 34 l 1578 5272 0 +PQ +SE +ID 6152 +TI 1760667401.705031633 +UH 0 19 l 3384 10762 4 +UH 0 0 h 2501 11083 4 +UH 0 1 h 2481 11244 4 +PQ +SE +ID 6153 +TI 1760667401.705049276 +UH 0 14 l 4375 9164 4 +UH 0 15 l 1666 9209 4 +UH 0 21 h 4323 9686 4 +PQ +SE +ID 6154 +TI 1760667401.705070734 +UH 0 53 l 2088 8582 4 +UH 0 54 l 1629 3478 0 +UH 0 59 l 1916 8871 4 +UH 0 60 l 4537 8486 4 +UH 0 61 l 1660 8862 4 +UH 0 38 h 1988 9069 4 +UH 0 39 h 3864 8723 4 +UH 0 40 h 2212 8769 4 +UH 0 48 h 2092 9025 4 +UH 0 49 h 1635 2609 0 +PQ +SE +ID 6155 +TI 1760667401.705118179 +UH 0 11 l 2118 10567 4 +UH 0 45 h 1946 11471 4 +PQ +SE +ID 6156 +TI 1760667401.705137252 +UH 0 45 l 1820 10740 4 +UH 0 46 l 3941 10682 4 +UH 0 51 l 3646 6703 4 +UH 0 52 l 2099 6712 4 +UH 0 38 h 3134 10468 4 +UH 0 39 h 2821 10215 4 +UH 0 11 h 4045 7008 4 +PQ +SE +ID 6157 +TI 1760667401.705176591 +UH 0 50 l 2912 10743 4 +UH 0 3 h 2987 10796 4 +PQ +SE +ID 6158 +TI 1760667401.705194473 +UH 0 36 l 1612 5147 0 +UH 0 37 l 3706 9436 4 +UH 0 36 h 2759 9690 4 +UH 0 39 h 2368 9384 4 +UH 0 40 h 1733 9426 4 +PQ +SE +ID 6159 +TI 1760667401.705224514 +UH 0 32 l 3449 9146 4 +UH 0 33 l 2345 8970 4 +UH 0 30 l 1700 3496 0 +UH 0 34 h 1899 9094 4 +UH 0 35 h 1947 9286 4 +UH 0 24 h 3301 9256 4 +UH 0 25 h 1520 9577 4 +UH 0 27 h 1705 9575 4 +PQ +SE +ID 6160 +TI 1760667401.705269336 +UH 0 32 l 3663 10803 4 +UH 0 33 l 1627 4413 0 +UH 0 19 l 3656 10857 4 +UH 0 64 l 2457 0 5 +UH 0 9 h 3697 10560 4 +UH 0 16 h 3549 11228 4 +UH 0 64 h 2474 0 5 +BD GR Veto +PQ +SE +ID 6161 +TI 1760667401.705313682 +UH 0 64 h 1667 0 5 +BD GR Veto +PQ +SE +ID 6162 +TI 1760667401.705318927 +UH 0 25 l 2549 10678 4 +UH 0 24 h 2430 11117 4 +PQ +SE +ID 6163 +TI 1760667401.705336093 +UH 0 63 l 2334 10861 4 +UH 0 64 l 1908 0 5 +UH 0 30 h 1667 5166 0 +UH 0 31 h 2231 10376 4 +UH 0 64 h 1967 0 5 +BD GR Veto +PQ +SE +ID 6164 +TI 1760667401.705359935 +UH 0 64 l 2202 0 5 +UH 0 64 h 2252 0 5 +BD GR Veto +PQ +SE +ID 6165 +TI 1760667401.705367565 +UH 0 64 l 2025 0 5 +UH 0 0 h 2079 11296 4 +BD GR Veto +PQ +SE +ID 6166 +TI 1760667401.705378532 +UH 0 51 l 1906 10931 4 +UH 0 52 l 2676 10832 4 +UH 0 1 h 3035 11085 4 +PQ +SE +ID 6167 +TI 1760667401.705399036 +UH 0 5 l 1639 9180 4 +UH 0 6 l 4257 9555 4 +UH 0 46 h 3425 9279 4 +UH 0 47 h 2341 9246 4 +PQ +SE +ID 6168 +TI 1760667401.705422401 +UH 0 63 l 3804 10186 4 +UH 0 28 h 3839 10132 4 +UH 0 29 h 1565 10439 4 +PQ +SE +ID 6169 +TI 1760667401.705442905 +UH 0 46 l 2044 10633 4 +UH 0 47 l 1824 10754 4 +UH 0 55 l 1904 10722 4 +UH 0 56 l 1564 4272 0 +UH 0 48 h 2049 11094 4 +UH 0 58 h 1629 4455 0 +UH 0 59 h 2361 11122 4 +PQ +SE +ID 6170 +TI 1760667401.705508947 +UH 0 6 l 1746 5376 0 +UH 0 62 h 1814 4458 0 +PQ +SE +ID 6171 +TI 1760667401.705526828 +UH 0 11 l 2616 10465 4 +UH 0 12 l 2544 10359 4 +UH 0 2 h 3179 11290 4 +UH 0 3 h 1904 11038 4 +PQ +SE +ID 6172 +TI 1760667401.705550432 +UH 0 64 l 1635 0 5 +UH 0 64 h 2009 0 5 +BD GR Veto +PQ +SE +ID 6173 +TI 1760667401.705558776 +UH 0 19 l 1883 10989 4 +UH 0 27 l 2145 10716 4 +UH 0 29 l 1854 5167 0 +UH 0 46 h 1842 11199 4 +UH 0 55 h 2219 11037 4 +UH 0 57 h 1669 4547 0 +UH 0 58 h 1656 4813 0 +PQ +SE +ID 6174 +TI 1760667401.705604314 +UH 0 48 l 1699 4867 0 +UH 0 54 l 2667 10931 4 +UH 0 34 h 2622 10773 4 +UH 0 35 h 1747 10974 4 +PQ +SE +ID 6175 +TI 1760667401.705632448 +UH 0 16 l 1606 4604 0 +UH 0 16 h 1614 5721 0 +PQ +SE +ID 6176 +TI 1760667401.705651044 +UH 0 26 l 3411 11352 4 +UH 0 47 h 3378 10368 4 +PQ +SE +ID 6177 +TI 1760667401.705669164 +UH 0 2 l 2218 11028 4 +UH 0 22 h 2231 11003 4 +PQ +SE +ID 6178 +TI 1760667401.705687522 +UH 0 23 l 2036 10930 4 +UH 0 35 h 1902 11311 4 +PQ +SE +ID 6179 +TI 1760667401.705705404 +UH 0 42 l 1924 11076 4 +UH 0 52 h 1884 11379 4 +PQ +SE +ID 6180 +TI 1760667401.705723762 +UH 0 33 l 2193 10705 4 +UH 0 33 h 2049 10121 4 +UH 0 34 h 1552 3793 0 +PQ +SE +ID 6181 +TI 1760667401.705744028 +UH 0 7 l 1629 9378 4 +UH 0 8 l 4936 9215 4 +UH 0 3 h 4222 9688 4 +UH 0 4 h 2300 10166 4 +PQ +SE +ID 6182 +TI 1760667401.705767869 +UH 0 61 l 2674 10733 4 +UH 0 8 h 2586 11119 4 +PQ +SE +ID 6183 +TI 1760667401.705786228 +UH 0 38 l 1959 11030 4 +UH 0 57 h 1924 10747 4 +UH 0 58 h 1604 4672 0 +PQ +SE +ID 6184 +TI 1760667401.705806732 +UH 0 45 l 1557 10880 4 +UH 0 46 l 2253 10814 4 +UH 0 2 h 2436 11053 4 +PQ +SE +ID 6185 +TI 1760667401.705826520 +UH 0 15 l 1697 8855 4 +UH 0 16 l 3669 8796 4 +UH 0 20 h 1702 3600 0 +UH 0 21 h 3528 9744 4 +PQ +SE +ID 6186 +TI 1760667401.705848932 +UH 0 14 l 2953 10901 4 +UH 0 15 l 1878 10898 4 +UH 0 6 h 3100 11046 4 +UH 0 7 h 1629 11099 4 +PQ +SE +ID 6187 +TI 1760667401.705871343 +UH 0 62 l 2081 10741 4 +UH 0 64 l 5169 0 5 +UH 0 30 h 2029 11512 4 +UH 0 64 h 4932 0 5 +BD GR Veto +PQ +SE +ID 6188 +TI 1760667401.705894708 +UH 0 54 l 1866 10496 4 +UH 0 55 l 2028 10249 4 +UH 0 59 l 1721 4843 0 +UH 0 60 l 1583 2848 0 +UH 0 62 l 1661 10431 4 +UH 0 63 l 3237 10055 4 +UH 0 34 h 1722 3962 0 +UH 0 42 h 2531 9917 4 +UH 0 30 h 2436 10819 4 +UH 0 31 h 2433 10192 4 +PQ +SE +ID 6189 +TI 1760667401.705946445 +UH 0 34 l 1697 5259 0 +UH 0 59 h 1671 5265 0 +PQ +SE +ID 6190 +TI 1760667401.705962181 +UH 0 1 l 3058 11177 4 +UH 0 3 l 1696 4409 0 +UH 0 4 l 2032 10824 4 +UH 0 21 h 3450 11056 4 +UH 0 27 h 1717 11164 4 +PQ +SE +ID 6191 +TI 1760667401.705994129 +UH 0 57 l 1689 5207 0 +UH 0 32 h 1686 11227 4 +PQ +SE +ID 6192 +TI 1760667401.706010341 +UH 0 55 l 4287 8983 4 +UH 0 56 l 1551 9263 4 +UH 0 22 l 2327 8727 4 +UH 0 37 h 3188 9027 4 +UH 0 38 h 3517 8975 4 +PQ +SE +ID 6193 +TI 1760667401.706041097 +UH 0 37 l 2011 10676 4 +UH 0 38 l 1569 5012 0 +UH 0 23 h 1970 11306 4 +UH 0 24 h 1604 5074 0 +PQ +SE +ID 6194 +TI 1760667401.706069946 +UH 0 34 l 1903 10706 4 +UH 0 35 l 2302 10848 4 +UH 0 6 h 2538 11193 4 +UH 0 7 h 1728 11237 4 +PQ +SE +ID 6195 +TI 1760667401.706094264 +UH 0 38 l 1542 8657 4 +UH 0 39 l 3915 8463 4 +UH 0 40 l 1540 8628 4 +UH 0 59 l 1598 3174 0 +UH 0 60 l 2245 8199 4 +UH 0 62 l 1625 4703 0 +UH 0 63 l 1629 2499 0 +UH 0 64 l 2256 0 5 +UH 0 33 h 2380 8474 4 +UH 0 38 h 1670 2276 0 +UH 0 40 h 2246 8482 4 +UH 0 10 h 3878 9177 4 +BD GR Veto +PQ +SE +ID 6196 +TI 1760667401.706152915 +UH 0 64 l 3466 0 5 +UH 0 40 h 1729 10331 4 +UH 0 41 h 3184 10547 4 +UH 0 64 h 1730 0 5 +BD GR Veto +PQ +SE +ID 6197 +TI 1760667401.706171751 +UH 0 64 l 2363 0 5 +UH 0 14 h 2264 11456 4 +UH 0 64 h 1701 0 5 +BD GR Veto +PQ +SE +ID 6198 +TI 1760667401.706186771 +UH 0 18 l 3518 10691 4 +UH 0 9 h 2290 10792 4 +UH 0 10 h 2732 11008 4 +PQ +SE +ID 6199 +TI 1760667401.706210851 +UH 0 49 l 2329 8964 4 +UH 0 50 l 3830 8984 4 +UH 0 51 l 1639 5460 0 +UH 0 64 l 1924 0 5 +UH 0 36 h 1840 9084 4 +UH 0 37 h 2130 9200 4 +UH 0 39 h 3839 8998 4 +UH 0 64 h 2513 0 5 +BD GR Veto +PQ +SE +ID 6200 +TI 1760667401.706247091 +UH 0 40 l 1533 5313 0 +UH 0 48 l 3024 9684 4 +UH 0 17 h 2944 10209 4 +PQ +SE +ID 6201 +TI 1760667401.706271886 +UH 0 3 l 2739 10846 4 +UH 0 36 h 2113 11140 4 +UH 0 37 h 2227 11339 4 +PQ +SE +ID 6202 +TI 1760667401.706291913 +UH 0 56 l 1563 8789 4 +UH 0 57 l 5711 8390 4 +UH 0 58 l 1571 8377 4 +UH 0 15 h 1630 9037 4 +UH 0 16 h 5411 8931 4 +UH 0 17 h 1543 8870 4 +PQ +SE +ID 6203 +TI 1760667401.706319093 +UH 0 64 l 1679 0 5 +UH 0 58 h 1691 5211 0 +BD GR Veto +PQ +SE +ID 6204 +TI 1760667401.706331968 +UH 0 37 l 3154 10844 4 +UH 0 47 h 3191 10757 4 +PQ +SE +ID 6205 +TI 1760667401.706350564 +UH 0 64 l 2151 0 5 +UH 0 39 h 2158 11113 4 +BD GR Veto +PQ +SE +ID 6206 +TI 1760667401.706363677 +UH 0 27 l 2349 10525 4 +UH 0 16 h 2290 11377 4 +PQ +SE +ID 6207 +TI 1760667401.727012157 +UH 0 7 l 4101 9801 4 +UH 0 64 l 1872 0 5 +UH 0 0 h 4408 10677 4 +BD GR Veto +PQ +SE +ID 6208 +TI 1760667401.727117061 +UH 0 9 l 1866 10489 4 +UH 0 10 l 3130 10371 4 +UH 0 14 l 2303 10617 4 +UH 0 18 l 2158 10574 4 +UH 0 20 l 1862 10687 4 +UH 0 0 h 2292 11111 4 +UH 0 18 h 3412 11130 4 +UH 0 26 h 2168 11180 4 +UH 0 29 h 1663 4802 0 +UH 0 30 h 1607 4375 0 +PQ +SE +ID 6209 +TI 1760667401.727260589 +UH 0 32 l 1891 6626 4 +UH 0 29 l 1997 10452 4 +UH 0 30 l 1710 4382 0 +UH 0 31 l 1549 7246 4 +UH 0 5 h 1711 7081 4 +UH 0 6 h 2562 6995 4 +UH 0 11 h 1856 6911 4 +UH 0 21 h 2056 11101 4 +PQ +SE +ID 6210 +TI 1760667401.727345466 +UH 0 64 l 2136 0 5 +UH 0 64 h 2193 0 5 +BD GR Veto +PQ +SE +ID 6211 +TI 1760667401.727361440 +UH 0 19 l 2313 10135 4 +UH 0 20 l 1701 3644 0 +UH 0 22 h 2376 9949 4 +UH 0 23 h 1565 5418 0 +PQ +SE +ID 6212 +TI 1760667401.727410316 +UH 0 52 l 1689 5358 0 +UH 0 53 l 2482 10548 4 +UH 0 56 l 1747 11023 4 +UH 0 57 l 1581 4933 0 +UH 0 2 h 1880 11243 4 +UH 0 7 h 2671 11401 4 +PQ +SE +ID 6213 +TI 1760667401.727482795 +UH 0 6 l 2888 10543 4 +UH 0 7 l 1782 10511 4 +UH 0 7 h 3220 11260 4 +PQ +SE +ID 6214 +TI 1760667401.727522134 +UH 0 50 l 2063 10757 4 +UH 0 51 l 2090 10853 4 +UH 0 57 l 2038 10532 4 +UH 0 58 l 3051 10260 4 +UH 0 2 h 3757 11315 4 +UH 0 13 h 2457 11124 4 +UH 0 14 h 1635 11287 4 +PQ +SE +ID 6215 +TI 1760667401.727602005 +UH 0 44 l 2823 10724 4 +UH 0 45 l 2388 10961 4 +UH 0 46 l 1603 10912 4 +UH 0 44 h 2592 10782 4 +UH 0 45 h 2806 10997 4 +PQ +SE +ID 6216 +TI 1760667401.727655410 +UH 0 3 l 2136 10917 4 +UH 0 17 h 2072 11067 4 +PQ +SE +ID 6217 +TI 1760667401.727693319 +UH 0 5 l 2019 10576 4 +UH 0 23 l 2621 10829 4 +UH 0 64 l 2914 0 5 +UH 0 2 h 2569 11024 4 +UH 0 21 h 1951 11283 4 +UH 0 64 h 2888 0 5 +BD GR Veto +PQ +SE +ID 6218 +TI 1760667401.727736234 +UH 0 40 l 2152 10505 4 +UH 0 41 l 1565 4767 0 +UH 0 49 l 1789 4849 0 +UH 0 50 l 1872 10403 4 +UH 0 52 l 1768 4663 0 +UH 0 64 l 1933 0 5 +UH 0 0 h 2439 11163 4 +UH 0 10 h 1731 11481 4 +UH 0 11 h 2220 11286 4 +UH 0 64 h 1904 0 5 +BD GR Veto +PQ +SE +ID 6219 +TI 1760667401.727782487 +UH 0 14 l 1673 9125 4 +UH 0 15 l 4395 8887 4 +UH 0 16 l 2801 8938 4 +UH 0 26 l 1760 1635 0 +UH 0 27 l 1735 1595 0 +UH 0 28 l 1775 1486 0 +UH 0 29 l 1815 1526 0 +UH 0 30 l 1831 1572 0 +UH 0 31 l 1986 1589 0 +UH 0 11 h 3963 9807 4 +UH 0 12 h 3182 9738 4 +PQ +SE +ID 6220 +TI 1760667401.727829217 +UH 0 51 l 2600 10650 4 +UH 0 64 l 1660 0 5 +UH 0 6 h 2529 11317 4 +UH 0 64 h 1726 0 5 +BD GR Veto +PQ +SE +ID 6221 +TI 1760667401.727851629 +UH 0 64 l 4230 0 5 +UH 0 64 h 4086 0 5 +BD GR Veto +PQ +SE +ID 6222 +TI 1760667401.727860212 +UH 0 1 l 1827 5247 0 +UH 0 2 l 1762 5377 0 +UH 0 41 h 1976 11133 4 +PQ +SE +ID 6223 +TI 1760667401.727880477 +UH 0 10 l 4410 8955 4 +UH 0 11 l 1711 8784 4 +UH 0 16 l 2778 8719 4 +UH 0 6 h 2797 9370 4 +UH 0 7 h 2257 9418 4 +UH 0 8 h 3691 9459 4 +PQ +SE +ID 6224 +TI 1760667401.727913379 +UH 0 46 l 1515 4177 0 +UH 0 47 l 2225 10633 4 +UH 0 63 l 1528 2652 0 +UH 0 63 h 1990 10750 4 +UH 0 64 h 1983 0 5 +BD GR Veto +PQ +SE +ID 6225 +TI 1760667401.727937936 +UH 0 1 l 1633 5484 0 +PQ +SE +ID 6226 +TI 1760667401.727949142 +UH 0 14 l 2021 10801 4 +UH 0 64 l 1660 0 5 +UH 0 0 h 2081 11222 4 +BD GR Veto +PQ +SE +ID 6227 +TI 1760667401.727967262 +UH 0 42 l 2217 10944 4 +UH 0 47 l 1802 11079 4 +UH 0 48 l 1764 5418 0 +UH 0 32 h 1816 11148 4 +UH 0 33 h 1768 10827 4 +UH 0 38 h 2233 11359 4 +PQ +SE +ID 6228 +TI 1760667401.728004932 +UH 0 60 l 2864 9594 4 +UH 0 61 l 1750 9908 4 +UH 0 64 l 1796 0 5 +UH 0 38 h 3046 10515 4 +UH 0 64 h 2299 0 5 +BD GR Veto +PQ +SE +ID 6229 +TI 1760667401.728029727 +UH 0 64 l 2351 0 5 +UH 0 33 h 1851 10404 4 +UH 0 34 h 1937 10538 4 +BD GR Veto +PQ +SE +ID 6230 +TI 1760667401.728045940 +UH 0 28 l 1817 5210 0 +UH 0 29 l 1820 5375 0 +UH 0 33 h 1921 10729 4 +PQ +SE +ID 6231 +TI 1760667401.728065967 +UH 0 32 l 1993 10868 4 +UH 0 31 l 1661 4881 0 +UH 0 5 h 1592 3986 0 +UH 0 6 h 2000 11127 4 +PQ +SE +ID 6232 +TI 1760667401.728089332 +UH 0 9 l 2221 10733 4 +UH 0 9 h 2167 11401 4 +PQ +SE +ID 6233 +TI 1760667401.728124618 +UH 0 0 l 2024 10949 4 +UH 0 1 l 2271 11169 4 +UH 0 32 h 2399 11258 4 +UH 0 36 h 1847 11095 4 +PQ +SE +ID 6234 +TI 1760667401.728150129 +UH 0 53 l 2014 10916 4 +UH 0 60 h 1944 10067 4 +PQ +SE +ID 6235 +TI 1760667401.728170394 +UH 0 12 l 4499 8637 4 +UH 0 21 l 1763 5387 0 +UH 0 24 l 2692 8575 4 +UH 0 25 l 1806 8848 4 +UH 0 46 h 1745 11638 4 +UH 0 5 h 2129 8888 4 +UH 0 6 h 2259 8833 4 +UH 0 27 h 2633 9281 4 +UH 0 28 h 1749 9126 4 +UH 0 29 h 2852 8894 4 +UH 0 30 h 1626 9172 4 +PQ +SE +ID 6236 +TI 1760667401.728230237 +UH 0 8 l 1916 11094 4 +UH 0 52 h 1837 11096 4 +PQ +SE +ID 6237 +TI 1760667401.728247404 +UH 0 40 l 1698 5122 0 +UH 0 47 h 1818 11452 4 +PQ +SE +ID 6238 +TI 1760667401.728262424 +UH 0 46 l 1618 5052 0 +UH 0 55 l 2487 10788 4 +UH 0 32 h 2404 11072 4 +UH 0 33 h 1657 10724 4 +UH 0 34 h 1579 4459 0 +PQ +SE +ID 6239 +TI 1760667401.728291511 +UH 0 40 l 1704 4922 0 +UH 0 41 l 2074 10638 4 +UH 0 43 l 1911 10906 4 +UH 0 44 l 3018 10660 4 +UH 0 2 h 2451 11098 4 +UH 0 4 h 3527 11056 4 +PQ +SE +ID 6240 +TI 1760667401.728323698 +UH 0 64 l 2103 0 5 +UH 0 64 h 2151 0 5 +BD GR Veto +PQ +SE +ID 6241 +TI 1760667401.728332042 +UH 0 7 l 1886 10537 4 +UH 0 6 h 1865 11521 4 +PQ +SE +ID 6242 +TI 1760667401.728350162 +UH 0 62 l 3136 10432 4 +UH 0 29 h 3050 11174 4 +PQ +SE +ID 6243 +TI 1760667401.728367805 +UH 0 51 l 2791 10855 4 +UH 0 3 h 2820 11000 4 +PQ +SE +ID 6244 +TI 1760667401.728385448 +UH 0 2 l 1726 10501 4 +UH 0 3 l 2912 10296 4 +UH 0 17 h 2936 11176 4 +PQ +SE +ID 6245 +TI 1760667401.728405714 +UH 0 57 l 2783 10669 4 +UH 0 15 h 2809 11330 4 +PQ +SE +ID 6246 +TI 1760667401.728423833 +UH 0 29 l 2366 10759 4 +UH 0 63 h 2376 11029 4 +PQ +SE +ID 6247 +TI 1760667401.728439092 +UH 0 64 l 1633 0 5 +UH 0 64 h 1713 0 5 +BD GR Veto +PQ +SE +ID 6248 +TI 1760667401.728447675 +UH 0 35 l 1602 4971 0 +UH 0 37 l 2472 10936 4 +UH 0 40 l 1654 10816 4 +UH 0 41 l 2185 10798 4 +UH 0 32 h 1653 4459 0 +UH 0 48 h 1675 4166 0 +UH 0 60 h 2446 10236 4 +UH 0 28 h 2324 10927 4 +PQ +SE +ID 6249 +TI 1760667401.728501081 +UH 0 64 l 4343 0 5 +UH 0 64 h 4225 0 5 +BD GR Veto +PQ +SE +ID 6250 +TI 1760667401.728509664 +UH 0 8 l 1907 2856 0 +UH 0 21 l 4048 8918 4 +UH 0 22 l 1619 8851 4 +UH 0 12 h 3923 9275 4 +UH 0 16 h 1835 9626 4 +PQ +SE +ID 6251 +TI 1760667401.728544473 +UH 0 11 l 2145 10287 4 +UH 0 10 h 2001 11673 4 +PQ +SE +ID 6252 +TI 1760667401.728562355 +UH 0 6 l 1687 4767 0 +UH 0 12 l 1720 5069 0 +UH 0 15 l 2713 10641 4 +UH 0 27 l 1631 2261 0 +UH 0 29 l 1655 2233 0 +UH 0 30 l 1635 2101 0 +UH 0 31 l 1686 2284 0 +UH 0 7 h 2787 11310 4 +UH 0 8 h 1719 11758 4 +PQ +SE +ID 6253 +TI 1760667401.728612184 +UH 0 9 l 2406 10769 4 +UH 0 10 l 1680 4812 0 +UH 0 13 l 1815 10811 4 +UH 0 46 h 2342 11057 4 +UH 0 47 h 1678 4707 0 +UH 0 49 h 1801 11087 4 +PQ +SE +ID 6254 +TI 1760667401.728655338 +UH 0 34 l 2388 10578 4 +UH 0 37 l 1691 5327 0 +UH 0 38 l 1557 4146 0 +UH 0 49 l 2180 10970 4 +UH 0 50 l 1652 10904 4 +UH 0 34 h 2264 10702 4 +UH 0 36 h 1778 11074 4 +UH 0 50 h 1914 10741 4 +UH 0 51 h 1995 10861 4 +PQ +SE +ID 6255 +TI 1760667401.728706836 +UH 0 64 h 1841 0 5 +BD GR Veto +PQ +SE +ID 6256 +TI 1760667401.728712558 +UH 0 49 l 1682 5135 0 +UH 0 58 h 1595 4348 0 +UH 0 59 h 1661 5399 0 +PQ +SE +ID 6257 +TI 1760667401.728733539 +UH 0 0 l 1683 4162 0 +UH 0 2 l 1727 5174 0 +UH 0 3 l 2370 10430 4 +UH 0 4 l 3024 10538 4 +UH 0 23 h 4138 11036 4 +PQ +SE +ID 6258 +TI 1760667401.728758096 +UH 0 15 l 1851 4797 0 +UH 0 16 l 1707 4329 0 +UH 0 5 h 1984 11389 4 +PQ +SE +ID 6259 +TI 1760667401.728779315 +UH 0 38 l 3695 10777 4 +UH 0 25 l 1920 10992 4 +UH 0 38 h 2238 10693 4 +UH 0 39 h 3126 10366 4 +UH 0 42 h 1903 10244 4 +PQ +SE +ID 6260 +TI 1760667401.728813648 +UH 0 44 l 2412 10619 4 +UH 0 45 l 1670 10678 4 +UH 0 62 h 2723 10970 4 +PQ +SE +ID 6261 +TI 1760667401.728834152 +UH 0 40 l 2978 9276 4 +UH 0 41 l 1495 5425 0 +UH 0 43 l 1595 3838 0 +UH 0 48 h 1664 3984 0 +UH 0 49 h 3081 9658 4 +PQ +SE +ID 6262 +TI 1760667401.728861808 +UH 0 10 l 1643 9074 4 +UH 0 11 l 4501 8686 4 +UH 0 32 h 4160 9255 4 +UH 0 31 h 1595 9258 4 +PQ +SE +ID 6263 +TI 1760667401.728884935 +UH 0 23 l 1795 5217 0 +UH 0 25 l 2345 10966 4 +UH 0 54 h 2251 11264 4 +UH 0 58 h 1624 3784 0 +PQ +SE +ID 6264 +TI 1760667401.728914499 +UH 0 42 l 2209 8969 4 +UH 0 43 l 2286 8834 4 +UH 0 44 l 1508 5316 0 +UH 0 45 l 2755 8472 4 +UH 0 47 l 1638 3238 0 +UH 0 51 l 1652 2921 0 +UH 0 26 h 2754 9380 4 +UH 0 27 h 2998 9109 4 +UH 0 29 h 1601 2830 0 +UH 0 30 h 1659 2595 0 +PQ +SE +ID 6265 +TI 1760667401.728960037 +UH 0 10 l 2503 10986 4 +UH 0 11 l 2114 10685 4 +UH 0 62 h 2945 10871 4 +PQ +SE +ID 6266 +TI 1760667401.728980541 +UH 0 51 l 1669 5253 0 +UH 0 52 l 1972 11075 4 +UH 0 34 h 1590 5039 0 +UH 0 35 h 1943 11381 4 +PQ +SE +ID 6267 +TI 1760667401.729003190 +UH 0 48 l 1531 5307 0 +UH 0 49 l 1541 8802 4 +UH 0 50 l 5635 8589 4 +UH 0 51 l 1650 8850 4 +UH 0 30 h 5516 9529 4 +PQ +SE +ID 6268 +TI 1760667401.729029655 +UH 0 19 l 1991 11042 4 +UH 0 20 l 2426 10615 4 +UH 0 32 h 2537 10870 4 +UH 0 33 h 1669 10557 4 +PQ +SE +ID 6269 +TI 1760667401.729050159 +UH 0 22 l 1729 5232 0 +UH 0 46 h 1709 5315 0 +PQ +SE +ID 6270 +TI 1760667401.729068756 +UH 0 55 l 1979 10298 4 +UH 0 59 l 2423 10223 4 +UH 0 60 l 2815 9917 4 +UH 0 6 h 2023 11124 4 +UH 0 21 h 3671 11223 4 +PQ +SE +ID 6271 +TI 1760667401.750661849 +UH 0 64 l 2423 0 5 +UH 0 64 h 2442 0 5 +BD GR Veto +PQ +SE +ID 6272 +TI 1760667401.750708818 +UH 0 0 l 1616 5201 0 +UH 0 64 l 4492 0 5 +UH 0 15 h 1863 9495 4 +UH 0 64 h 4054 0 5 +BD GR Veto +PQ +SE +ID 6273 +TI 1760667401.750731468 +UH 0 36 l 1995 8910 4 +UH 0 37 l 1587 9312 4 +UH 0 38 l 3527 9074 4 +UH 0 48 h 1996 8994 4 +UH 0 51 h 1584 9183 4 +UH 0 52 h 3456 9113 4 +PQ +SE +ID 6274 +TI 1760667401.750767469 +UH 0 64 l 2242 0 5 +UH 0 64 h 2267 0 5 +BD GR Veto +PQ +SE +ID 6275 +TI 1760667401.750776290 +UH 0 55 l 2513 10417 4 +UH 0 56 l 1566 10723 4 +UH 0 57 l 2519 10544 4 +UH 0 32 h 2579 10532 4 +UH 0 36 h 1648 3362 0 +UH 0 40 h 2464 10347 4 +UH 0 41 h 1607 3778 0 +PQ +SE +ID 6276 +TI 1760667401.750820398 +UH 0 30 l 2006 11411 4 +UH 0 39 h 1994 11022 4 +UH 0 40 h 1594 2725 0 +PQ +SE +ID 6277 +TI 1760667401.750841140 +UH 0 40 l 2030 8644 4 +UH 0 41 l 3684 8682 4 +UH 0 42 l 1628 8807 4 +UH 0 43 l 2804 8417 4 +UH 0 17 h 2753 9033 4 +UH 0 28 h 4255 8619 4 +UH 0 29 h 1583 8936 4 +PQ +SE +ID 6278 +TI 1760667401.750878095 +UH 0 9 l 3388 10811 4 +UH 0 11 l 2672 10595 4 +UH 0 12 l 1950 10598 4 +UH 0 17 l 2351 10594 4 +UH 0 18 l 1672 5108 0 +UH 0 50 h 2532 10759 4 +UH 0 55 h 1778 10581 4 +UH 0 56 h 3209 10795 4 +UH 0 59 h 1867 10628 4 +UH 0 60 h 2459 10542 4 +PQ +SE +ID 6279 +TI 1760667401.750932931 +UH 0 52 l 1593 5402 0 +UH 0 53 l 3254 9049 4 +UH 0 54 l 1566 9371 4 +UH 0 54 h 3237 9362 4 +PQ +SE +ID 6280 +TI 1760667401.750955820 +UH 0 53 l 2225 8065 4 +UH 0 55 l 1500 5572 0 +UH 0 56 l 1596 7973 4 +UH 0 57 l 4853 7617 4 +UH 0 58 l 1567 7669 4 +UH 0 60 l 1651 2300 0 +UH 0 19 h 1563 1574 0 +UH 0 20 h 1675 1371 0 +UH 0 22 h 4805 8292 4 +UH 0 24 h 2152 8294 4 +PQ +SE +ID 6281 +TI 1760667401.751003742 +UH 0 38 l 3342 8997 4 +UH 0 39 l 1612 5235 0 +UH 0 41 l 2653 9329 4 +UH 0 34 h 3282 9282 4 +UH 0 47 h 2770 9205 4 +PQ +SE +ID 6282 +TI 1760667401.751038551 +UH 0 45 l 2192 10764 4 +UH 0 64 l 1730 0 5 +UH 0 2 h 1996 11513 4 +UH 0 3 h 1910 11186 4 +UH 0 64 h 1771 0 5 +BD GR Veto +PQ +SE +ID 6283 +TI 1760667401.751064062 +UH 0 48 l 2537 10757 4 +UH 0 52 l 3743 10721 4 +UH 0 21 h 2957 11181 4 +UH 0 22 h 2111 10648 4 +UH 0 23 h 1772 4959 0 +UH 0 27 h 2598 10833 4 +PQ +SE +ID 6284 +TI 1760667401.751104354 +UH 0 17 l 2085 10875 4 +UH 0 24 l 2242 10500 4 +UH 0 12 h 2031 10810 4 +UH 0 13 h 2177 11349 4 +PQ +SE +ID 6285 +TI 1760667401.751133203 +UH 0 4 l 2030 10750 4 +UH 0 5 l 1690 4576 0 +UH 0 28 h 2023 11232 4 +UH 0 29 h 1660 5543 0 +PQ +SE +ID 6286 +TI 1760667401.751155376 +UH 0 54 l 2004 11100 4 +UH 0 37 h 2071 11481 4 +PQ +SE +ID 6287 +TI 1760667401.751170873 +UH 0 33 l 2190 10582 4 +UH 0 39 h 2188 10949 4 +UH 0 40 h 1587 4652 0 +PQ +SE +ID 6288 +TI 1760667401.751191377 +UH 0 33 l 1596 4618 0 +UH 0 39 l 1866 10896 4 +UH 0 40 l 2272 10871 4 +UH 0 12 h 1959 11241 4 +UH 0 13 h 2180 11315 4 +PQ +SE +ID 6289 +TI 1760667401.751221656 +UH 0 18 l 2001 10494 4 +UH 0 19 l 1788 10824 4 +UH 0 23 h 2080 11305 4 +UH 0 24 h 1568 3663 0 +UH 0 26 h 1589 5440 0 +PQ +SE +ID 6290 +TI 1760667401.751250028 +UH 0 34 l 1618 4526 0 +UH 0 36 l 3249 10243 4 +UH 0 37 l 1872 10648 4 +UH 0 1 h 3681 11172 4 +PQ +SE +ID 6291 +TI 1760667401.751274347 +UH 0 42 l 1630 5153 0 +UH 0 60 h 1596 5189 0 +PQ +SE +ID 6292 +TI 1760667401.751301050 +UH 0 35 l 1546 8916 4 +UH 0 36 l 3381 8548 4 +UH 0 44 l 1989 8804 4 +UH 0 24 h 2047 9094 4 +UH 0 27 h 2450 9354 4 +UH 0 28 h 2493 9147 4 +PQ +SE +ID 6293 +TI 1760667401.751346588 +UH 0 50 l 2402 10762 4 +UH 0 50 h 2442 10873 4 +PQ +SE +ID 6294 +TI 1760667401.751363515 +UH 0 57 l 2226 10797 4 +UH 0 32 h 2194 10397 4 +PQ +SE +ID 6295 +TI 1760667401.751378536 +UH 0 29 l 2625 10840 4 +UH 0 41 h 2591 11392 4 +PQ +SE +ID 6296 +TI 1760667401.751396179 +UH 0 19 l 3013 10907 4 +UH 0 20 l 1778 10685 4 +UH 0 21 l 1631 5025 0 +UH 0 50 h 1874 10790 4 +UH 0 51 h 2809 10854 4 +UH 0 57 h 1608 4691 0 +PQ +SE +ID 6297 +TI 1760667401.751429319 +UH 0 51 l 1639 9095 4 +UH 0 52 l 4211 8803 4 +UH 0 21 h 2924 9329 4 +UH 0 22 h 2821 9060 4 +PQ +SE +ID 6298 +TI 1760667401.751453638 +UH 0 19 l 3489 10539 4 +UH 0 64 l 2586 0 5 +UH 0 7 h 3597 11246 4 +UH 0 64 h 2586 0 5 +BD GR Veto +PQ +SE +ID 6299 +TI 1760667401.751477479 +UH 0 13 l 2242 10869 4 +UH 0 14 l 2015 11022 4 +UH 0 33 h 1936 10325 4 +UH 0 36 h 2261 10895 4 +PQ +SE +ID 6300 +TI 1760667401.751505613 +UH 0 9 l 3265 10641 4 +UH 0 40 h 3204 10945 4 +PQ +SE +ID 6301 +TI 1760667401.751523256 +UH 0 53 l 1604 5248 0 +UH 0 54 l 2284 11056 4 +UH 0 8 h 2392 11549 4 +PQ +SE +ID 6302 +TI 1760667401.751544237 +UH 0 53 l 2230 10872 4 +UH 0 56 h 2172 10476 4 +PQ +SE +ID 6303 +TI 1760667401.751562833 +UH 0 0 l 1952 10762 4 +UH 0 1 l 3121 10943 4 +UH 0 46 h 3134 10848 4 +UH 0 51 h 1793 10836 4 +PQ +SE +ID 6304 +TI 1760667401.751588106 +UH 0 63 l 1585 5212 0 +UH 0 64 l 2839 0 5 +UH 0 31 h 2983 10608 4 +BD GR Veto +PQ +SE +ID 6305 +TI 1760667401.751604080 +UH 0 22 l 2779 10422 4 +UH 0 23 l 2311 10490 4 +UH 0 26 l 2082 10968 4 +UH 0 29 l 2393 10770 4 +UH 0 6 h 1983 11298 4 +UH 0 7 h 3532 11215 4 +UH 0 9 h 2307 10952 4 +PQ +SE +ID 6306 +TI 1760667401.751646757 +UH 0 64 l 3248 0 5 +UH 0 64 h 3197 0 5 +BD GR Veto +PQ +SE +ID 6307 +TI 1760667401.751655101 +UH 0 62 l 2414 10687 4 +UH 0 48 h 2404 11106 4 +PQ +SE +ID 6308 +TI 1760667401.751672506 +UH 0 6 l 2008 10614 4 +UH 0 8 l 1766 10727 4 +UH 0 9 l 2462 10676 4 +UH 0 32 h 2961 10903 4 +PQ +SE +ID 6309 +TI 1760667401.751698017 +UH 0 16 l 2202 10647 4 +UH 0 13 h 2218 11386 4 +PQ +SE +ID 6310 +TI 1760667401.751715660 +UH 0 1 l 1896 11145 4 +UH 0 2 l 2200 10831 4 +UH 0 44 h 2466 10992 4 +PQ +SE +ID 6311 +TI 1760667401.751734972 +UH 0 59 l 2037 10846 4 +UH 0 41 h 2055 11321 4 +PQ +SE +ID 6312 +TI 1760667401.751752853 +UH 0 20 l 1748 4799 0 +UH 0 21 l 2032 11112 4 +UH 0 58 h 2106 10735 4 +PQ +SE +ID 6313 +TI 1760667401.751772403 +UH 0 64 l 2396 0 5 +UH 0 0 h 1986 11356 4 +UH 0 64 h 2043 0 5 +BD GR Veto +PQ +SE +ID 6314 +TI 1760667401.751785755 +UH 0 34 l 1620 5249 0 +UH 0 43 l 1949 10837 4 +UH 0 54 h 1590 4941 0 +UH 0 59 h 1977 11133 4 +PQ +SE +ID 6315 +TI 1760667401.751816749 +UH 0 64 h 1673 0 5 +BD GR Veto +PQ +SE +ID 6316 +TI 1760667401.751822233 +UH 0 10 l 2603 11011 4 +UH 0 11 l 2025 10310 4 +UH 0 12 l 1861 4541 0 +UH 0 39 h 2149 10770 4 +UH 0 50 h 1670 4075 0 +UH 0 58 h 2434 10395 4 +PQ +SE +ID 6317 +TI 1760667401.751859903 +UH 0 48 l 1655 5154 0 +UH 0 49 l 1898 10903 4 +UH 0 50 l 2581 10700 4 +UH 0 49 h 3024 10870 4 +UH 0 51 h 1658 11043 4 +PQ +SE +ID 6318 +TI 1760667401.751886606 +UH 0 49 l 4098 8574 4 +UH 0 50 l 1576 8612 4 +UH 0 52 l 3071 8442 4 +UH 0 52 h 1668 8596 4 +UH 0 53 h 2921 8424 4 +UH 0 57 h 3584 8519 4 +UH 0 58 h 2004 8272 4 +PQ +SE +ID 6319 +TI 1760667401.751924514 +UH 0 51 l 2512 10554 4 +UH 0 8 h 2480 11640 4 +PQ +SE +ID 6320 +TI 1760667401.751942873 +UH 0 35 l 1693 5222 0 +UH 0 36 l 2499 10559 4 +UH 0 37 l 3289 10798 4 +UH 0 48 h 2227 10524 4 +UH 0 49 h 1712 10560 4 +UH 0 51 h 1639 10570 4 +UH 0 52 h 3352 10512 4 +PQ +SE +ID 6321 +TI 1760667401.751975059 +UH 0 44 l 1615 9081 4 +UH 0 45 l 5530 9111 4 +UH 0 46 l 1515 8899 4 +UH 0 21 h 5535 9572 4 +PQ +SE +ID 6322 +TI 1760667401.751998186 +UH 0 64 l 1744 0 5 +UH 0 64 h 1754 0 5 +BD GR Veto +PQ +SE +ID 6323 +TI 1760667401.752006769 +UH 0 41 l 1617 4829 0 +UH 0 42 l 2339 10999 4 +UH 0 47 l 3499 10741 4 +UH 0 58 l 1566 1991 0 +UH 0 59 l 1566 2826 0 +UH 0 61 l 1674 2300 0 +UH 0 62 l 1643 2354 0 +UH 0 63 l 1620 2427 0 +UH 0 14 h 1684 11124 4 +UH 0 15 h 3332 11102 4 +UH 0 22 h 2532 10558 4 +PQ +SE +ID 6324 +TI 1760667401.752060890 +UH 0 13 l 2024 11249 4 +UH 0 7 h 2061 11250 4 +PQ +SE +ID 6325 +TI 1760667401.752079010 +UH 0 55 l 2364 10721 4 +UH 0 55 h 2544 10639 4 +PQ +SE +ID 6326 +TI 1760667401.752113342 +UH 0 9 l 4507 8925 4 +UH 0 10 l 1637 9043 4 +UH 0 13 h 4455 9794 4 +PQ +SE +ID 6327 +TI 1760667401.752133846 +UH 0 64 h 2525 0 5 +BD GR Veto +PQ +SE +ID 6328 +TI 1760667401.752140045 +UH 0 39 l 2331 10204 4 +UH 0 41 l 1661 4761 0 +UH 0 17 h 2331 11152 4 +UH 0 18 h 1697 4379 0 +PQ +SE +ID 6329 +TI 1760667401.752164840 +UH 0 51 l 2285 10705 4 +UH 0 11 h 2176 11449 4 +UH 0 12 h 1578 11349 4 +PQ +SE +ID 6330 +TI 1760667401.752185344 +UH 0 47 l 1539 8770 4 +UH 0 48 l 4394 8758 4 +UH 0 49 l 1525 8858 4 +UH 0 23 h 4472 9185 4 +PQ +SE +ID 6331 +TI 1760667401.752208232 +UH 0 25 l 4556 11172 4 +UH 0 61 h 2184 10690 4 +UH 0 62 h 3820 10456 4 +PQ +SE +ID 6332 +TI 1760667401.752228260 +UH 0 35 l 2546 2931 4 +UH 0 64 l 2279 0 5 +UH 0 12 h 2327 2578 4 +UH 0 64 h 2273 0 5 +BD GR Veto +PQ +SE +ID 6333 +TI 1760667401.752251148 +UH 0 62 l 2448 10861 4 +UH 0 28 h 1662 4306 0 +UH 0 29 h 2321 10760 4 +PQ +SE +ID 6334 +TI 1760667401.752271652 +UH 0 61 l 1928 10982 4 +UH 0 64 l 2564 0 5 +UH 0 43 h 1726 10811 4 +UH 0 44 h 1642 4158 0 +UH 0 64 h 2582 0 5 +BD GR Veto +PQ +SE +ID 6335 +TI 1760667401.771798372 +UH 0 64 l 1702 0 5 +UH 0 64 h 1792 0 5 +BD GR Veto +PQ +SE +ID 6336 +TI 1760667401.771838426 +UH 0 34 l 2679 10590 4 +UH 0 35 l 3223 10784 4 +UH 0 44 h 2842 10489 4 +UH 0 45 h 2962 10761 4 +PQ +SE +ID 6337 +TI 1760667401.771864175 +UH 0 1 l 2439 11238 4 +UH 0 7 h 2426 10809 4 +PQ +SE +ID 6338 +TI 1760667401.771883249 +UH 0 42 l 1764 5341 0 +UH 0 5 h 1734 5511 0 +PQ +SE +ID 6339 +TI 1760667401.771901369 +UH 0 10 l 4426 8934 4 +UH 0 11 l 1710 8782 4 +UH 0 12 h 4300 9685 4 +PQ +SE +ID 6340 +TI 1760667401.771922588 +UH 0 64 l 2322 0 5 +UH 0 64 h 2342 0 5 +BD GR Veto +PQ +SE +ID 6341 +TI 1760667401.771930932 +UH 0 64 h 1664 0 5 +BD GR Veto +PQ +SE +ID 6342 +TI 1760667401.771937370 +UH 0 51 l 2598 10704 4 +UH 0 52 l 3169 10619 4 +UH 0 59 h 4118 10964 4 +PQ +SE +ID 6343 +TI 1760667401.771958112 +UH 0 44 l 2555 10603 4 +UH 0 45 l 1724 10716 4 +UH 0 46 l 1526 5273 0 +UH 0 54 l 2171 10897 4 +UH 0 55 l 2369 10658 4 +UH 0 56 h 4428 10659 4 +UH 0 57 h 1648 10874 4 +PQ +SE +ID 6344 +TI 1760667401.771998643 +UH 0 17 l 1788 4842 0 +UH 0 19 l 2882 10835 4 +UH 0 44 h 2858 10904 4 +UH 0 46 h 1786 11034 4 +PQ +SE +ID 6345 +TI 1760667401.772026300 +UH 0 25 l 2213 10935 4 +UH 0 26 l 1891 11171 4 +UH 0 57 h 2411 11324 4 +PQ +SE +ID 6346 +TI 1760667401.772047758 +UH 0 49 l 2564 10929 4 +UH 0 47 h 1929 10975 4 +UH 0 48 h 2291 11056 4 +PQ +SE +ID 6347 +TI 1760667401.772086620 +UH 0 19 l 1920 11087 4 +UH 0 21 l 2956 11048 4 +UH 0 3 h 1881 10643 4 +UH 0 4 h 1667 4039 0 +UH 0 7 h 1793 11134 4 +UH 0 8 h 2758 11377 4 +PQ +SE +ID 6348 +TI 1760667401.772146463 +UH 0 34 l 2668 10677 4 +UH 0 39 h 2284 10425 4 +UH 0 40 h 1627 3936 0 +UH 0 42 h 1881 10618 4 +PQ +SE +ID 6349 +TI 1760667401.772170782 +UH 0 64 l 4578 0 5 +UH 0 64 h 4392 0 5 +BD GR Veto +PQ +SE +ID 6350 +TI 1760667401.772179365 +UH 0 11 l 2075 10364 4 +UH 0 13 l 2779 10867 4 +UH 0 36 h 1664 11203 4 +UH 0 37 h 3130 11315 4 +PQ +SE +ID 6351 +TI 1760667401.772206544 +UH 0 15 l 2343 10896 4 +UH 0 16 l 1975 11066 4 +UH 0 31 l 1629 2289 0 +UH 0 57 h 2714 10861 4 +PQ +SE +ID 6352 +TI 1760667401.772230863 +UH 0 12 l 1860 4474 0 +UH 0 13 l 2113 10782 4 +UH 0 15 l 3621 10527 4 +UH 0 27 l 1706 1598 0 +UH 0 28 l 1669 1720 0 +UH 0 29 l 1719 1866 0 +UH 0 30 l 1702 2180 0 +UH 0 31 l 1813 2306 0 +UH 0 22 h 1797 10934 4 +UH 0 23 h 4158 10899 4 +PQ +SE +ID 6353 +TI 1760667401.772278547 +UH 0 17 l 1799 11118 4 +UH 0 3 h 1830 10970 4 +PQ +SE +ID 6354 +TI 1760667401.772295713 +UH 0 40 l 1532 8457 4 +UH 0 41 l 1938 8551 4 +UH 0 42 l 5192 8427 4 +UH 0 43 l 1536 8611 4 +UH 0 60 h 5646 8520 4 +PQ +SE +ID 6355 +TI 1760667401.772319793 +UH 0 3 l 1628 5151 0 +UH 0 17 h 1539 5513 0 +PQ +SE +ID 6356 +TI 1760667401.772336721 +UH 0 19 l 1624 4971 0 +UH 0 20 l 1704 5277 0 +UH 0 15 h 1712 5601 0 +PQ +SE +ID 6357 +TI 1760667401.772356271 +UH 0 50 l 3010 10667 4 +UH 0 51 l 3587 10817 4 +UH 0 64 l 2145 0 5 +UH 0 58 h 1954 10383 4 +UH 0 59 h 3064 10334 4 +UH 0 63 h 2989 10392 4 +UH 0 64 h 2213 0 5 +BD GR Veto +PQ +SE +ID 6358 +TI 1760667401.772388696 +UH 0 62 l 2586 10743 4 +UH 0 64 l 2096 0 5 +UH 0 35 h 2089 11127 4 +UH 0 38 h 2609 11296 4 +BD GR Veto +PQ +SE +ID 6359 +TI 1760667401.772416114 +UH 0 53 l 1755 5179 0 +UH 0 10 h 1721 12030 4 +PQ +SE +ID 6360 +TI 1760667401.772433996 +UH 0 27 l 2007 10893 4 +UH 0 36 h 1990 11436 4 +PQ +SE +ID 6361 +TI 1760667401.772451877 +UH 0 48 l 2284 10932 4 +UH 0 50 l 1759 5326 0 +UH 0 51 l 2490 10670 4 +UH 0 52 l 1616 4979 0 +UH 0 64 l 2042 0 5 +UH 0 60 h 2186 10473 4 +UH 0 61 h 2762 10952 4 +UH 0 64 h 2162 0 5 +BD GR Veto +PQ +SE +ID 6362 +TI 1760667401.772485733 +UH 0 54 l 2361 10154 4 +UH 0 55 l 1534 5364 0 +UH 0 64 l 2854 0 5 +UH 0 0 h 3847 10834 4 +BD GR Veto +PQ +SE +ID 6363 +TI 1760667401.772504329 +UH 0 12 l 2160 10176 4 +UH 0 13 l 2215 10616 4 +UH 0 14 l 1708 5126 0 +UH 0 15 l 1833 4569 0 +UH 0 28 h 1905 11085 4 +UH 0 29 h 2683 11220 4 +PQ +SE +ID 6364 +TI 1760667401.772531032 +UH 0 24 l 1676 9130 4 +UH 0 25 l 4155 9149 4 +UH 0 28 l 1793 3136 0 +UH 0 26 h 3958 9980 4 +PQ +SE +ID 6365 +TI 1760667401.772559642 +UH 0 39 l 1771 5263 4 +UH 0 40 l 3559 5239 4 +UH 0 41 l 1486 1972 0 +UH 0 52 l 2030 5467 4 +UH 0 53 l 3177 5351 4 +UH 0 61 l 1655 5257 0 +PQ +SE +ID 6366 +TI 1760667401.772591352 +UH 0 14 l 2820 10703 4 +UH 0 42 h 2792 10865 4 +PQ +SE +ID 6367 +TI 1760667401.772609233 +UH 0 54 l 3518 10418 4 +UH 0 10 h 3512 10345 4 +UH 0 11 h 1648 10293 4 +PQ +SE +ID 6368 +TI 1760667401.772629976 +UH 0 38 l 2577 10873 4 +UH 0 39 l 1942 10894 4 +UH 0 40 l 1661 4922 0 +UH 0 24 h 2322 11042 4 +UH 0 25 h 2298 11280 4 +PQ +SE +ID 6369 +TI 1760667401.772654771 +UH 0 50 l 3392 10531 4 +UH 0 51 l 1765 10763 4 +UH 0 55 h 3721 10781 4 +PQ +SE +ID 6370 +TI 1760667401.772674560 +UH 0 34 l 3776 10215 4 +UH 0 35 l 1619 10547 4 +UH 0 23 h 3898 10751 4 +PQ +SE +ID 6371 +TI 1760667401.772694587 +UH 0 64 l 3731 0 5 +UH 0 64 h 3648 0 5 +BD GR Veto +PQ +SE +ID 6372 +TI 1760667401.772702693 +UH 0 60 l 3579 10280 4 +UH 0 61 l 1808 10403 4 +UH 0 22 h 2022 10768 4 +UH 0 23 h 2485 10793 4 +UH 0 24 h 2376 10724 4 +PQ +SE +ID 6373 +TI 1760667401.772726774 +UH 0 64 h 1907 0 5 +BD GR Veto +PQ +SE +ID 6374 +TI 1760667401.772732734 +UH 0 31 l 4357 10660 4 +UH 0 16 h 4230 11264 4 +PQ +SE +ID 6375 +TI 1760667401.772751092 +UH 0 49 h 1583 5369 0 +PQ +SE +ID 6376 +TI 1760667401.772762060 +UH 0 58 l 2946 10520 4 +UH 0 47 h 2997 10747 4 +UH 0 17 h 2123 3009 4 +PQ +SE +ID 6377 +TI 1760667401.772786140 +UH 0 64 l 2903 0 5 +UH 0 64 h 2902 0 5 +BD GR Veto +PQ +SE +ID 6378 +TI 1760667401.772794008 +UH 0 40 l 2176 10442 4 +UH 0 41 l 1918 10607 4 +UH 0 64 l 4470 0 5 +UH 0 63 h 2728 10901 4 +UH 0 64 h 4325 0 5 +BD GR Veto +PQ +SE +ID 6379 +TI 1760667401.772816658 +UH 0 17 l 4540 10714 4 +UH 0 18 l 1795 10692 4 +UH 0 39 h 2276 10384 4 +UH 0 40 h 4037 10344 4 +PQ +SE +ID 6380 +TI 1760667401.772838115 +UH 0 39 l 2511 8425 4 +UH 0 41 l 1487 8931 4 +UH 0 42 l 4462 8616 4 +UH 0 43 l 1708 8989 4 +UH 0 52 h 2394 8847 4 +UH 0 53 h 2490 8761 4 +UH 0 54 h 3672 8865 4 +UH 0 55 h 1731 8572 4 +PQ +SE +ID 6381 +TI 1760667401.772871971 +UH 0 49 l 1519 9003 4 +UH 0 50 l 4200 8662 4 +UH 0 49 h 4166 8628 4 +PQ +SE +ID 6382 +TI 1760667401.772892713 +UH 0 64 l 3819 0 5 +UH 0 64 h 3712 0 5 +BD GR Veto +PQ +SE +ID 6383 +TI 1760667401.772900104 +UH 0 40 l 1702 5231 0 +UH 0 50 h 1811 11432 4 +PQ +SE +ID 6384 +TI 1760667401.772916316 +UH 0 15 l 1845 9474 4 +UH 0 16 l 3467 9482 4 +UH 0 24 h 1562 9636 4 +UH 0 25 h 3580 9761 4 +PQ +SE +ID 6385 +TI 1760667401.772938251 +UH 0 3 l 2045 10856 4 +UH 0 36 h 2084 11441 4 +PQ +SE +ID 6386 +TI 1760667401.772955417 +UH 0 37 l 3225 10642 4 +UH 0 38 l 1552 10703 4 +UH 0 9 h 3176 10628 4 +UH 0 10 h 1626 10977 4 +PQ +SE +ID 6387 +TI 1760667401.772977352 +UH 0 64 l 2265 0 5 +UH 0 64 h 2311 0 5 +BD GR Veto +PQ +SE +ID 6388 +TI 1760667401.772984981 +UH 0 26 l 1795 5165 0 +UH 0 50 h 1757 11534 4 +PQ +SE +ID 6389 +TI 1760667401.773002147 +UH 0 18 l 2620 10183 4 +UH 0 19 l 2416 10452 4 +UH 0 22 h 2671 10997 4 +UH 0 23 h 2384 11095 4 +PQ +SE +ID 6390 +TI 1760667401.773024559 +UH 0 64 h 1902 0 5 +BD GR Veto +PQ +SE +ID 6391 +TI 1760667401.773030757 +UH 0 12 l 2438 10533 4 +UH 0 15 l 1915 11000 4 +UH 0 7 h 1772 5002 0 +UH 0 9 h 1821 4986 0 +UH 0 10 h 2136 11477 4 +PQ +SE +ID 6392 +TI 1760667401.773062467 +UH 0 64 h 1691 0 5 +BD GR Veto +PQ +SE +ID 6393 +TI 1760667401.773067712 +UH 0 25 l 1659 9247 4 +UH 0 26 l 3284 9260 4 +UH 0 40 h 1779 9012 4 +UH 0 41 h 2990 9247 4 +PQ +SE +ID 6394 +TI 1760667401.773090124 +UH 0 43 l 3594 10950 4 +UH 0 42 h 1902 10391 4 +UH 0 43 h 3259 10553 4 +PQ +SE +ID 6395 +TI 1760667401.773110628 +UH 0 23 l 1720 8830 4 +UH 0 24 l 4342 8773 4 +UH 0 36 h 4262 9144 4 +PQ +SE +ID 6396 +TI 1760667401.773130655 +UH 0 50 l 1657 4796 0 +UH 0 51 l 2103 10503 4 +UH 0 24 h 2150 11071 4 +PQ +SE +ID 6397 +TI 1760667401.773150205 +UH 0 62 l 2305 10429 4 +UH 0 63 l 2026 10311 4 +UH 0 29 h 2782 11212 4 +PQ +SE +ID 6398 +TI 1760667401.773167610 +UH 0 26 l 1681 5645 0 +PQ +SE +ID 6399 +TI 1760667401.795538425 +UH 0 18 l 4477 10382 4 +UH 0 8 h 4283 11263 4 +UH 0 9 h 1707 11176 4 +PQ +SE +ID 6400 +TI 1760667401.795592784 +UH 0 36 l 1956 10655 4 +UH 0 23 h 1915 10618 4 +PQ +SE +ID 6401 +TI 1760667401.795612335 +UH 0 55 l 1504 8468 4 +UH 0 56 l 2816 8558 4 +UH 0 57 l 3381 8194 4 +UH 0 49 h 3436 8234 4 +UH 0 54 h 2740 8463 4 +PQ +SE +ID 6402 +TI 1760667401.795643329 +UH 0 33 l 1815 10698 4 +UH 0 31 l 2129 11095 4 +UH 0 36 h 2442 11198 4 +PQ +SE +ID 6403 +TI 1760667401.795666217 +UH 0 64 l 1993 0 5 +UH 0 64 h 2028 0 5 +BD GR Veto +PQ +SE +ID 6404 +TI 1760667401.795675277 +UH 0 64 l 1656 0 5 +UH 0 20 h 1669 5403 0 +BD GR Veto +PQ +SE +ID 6405 +TI 1760667401.795688629 +UH 0 6 l 1847 11018 4 +UH 0 7 l 2772 10762 4 +UH 0 46 h 2534 11128 4 +UH 0 47 h 2108 11108 4 +PQ +SE +ID 6406 +TI 1760667401.795712947 +UH 0 64 l 1975 0 5 +UH 0 64 h 2691 0 5 +BD GR Veto +PQ +SE +ID 6407 +TI 1760667401.795721530 +UH 0 43 l 2537 10984 4 +UH 0 28 h 2661 10858 4 +PQ +SE +ID 6408 +TI 1760667401.795739412 +UH 0 64 l 3284 0 5 +UH 0 64 h 3223 0 5 +BD GR Veto +PQ +SE +ID 6409 +TI 1760667401.795747995 +UH 0 64 l 2264 0 5 +UH 0 64 h 2558 0 5 +BD GR Veto +PQ +SE +ID 6410 +TI 1760667401.795756578 +UH 0 54 l 1555 5566 0 +UH 0 55 l 2392 9780 4 +UH 0 57 l 2637 9845 4 +UH 0 43 h 2482 10086 4 +UH 0 25 h 2600 10441 4 +PQ +SE +ID 6411 +TI 1760667401.795789241 +UH 0 20 l 2278 10404 4 +UH 0 22 h 2270 11170 4 +PQ +SE +ID 6412 +TI 1760667401.795806884 +UH 0 11 l 2453 10381 4 +UH 0 64 l 4850 0 5 +UH 0 1 h 2165 11384 4 +UH 0 2 h 1775 11429 4 +UH 0 64 h 4677 0 5 +BD GR Veto +PQ +SE +ID 6413 +TI 1760667401.795832872 +UH 0 25 l 2869 9015 4 +UH 0 26 l 1691 9399 4 +UH 0 27 l 4406 8857 4 +UH 0 5 h 4507 9689 4 +UH 0 6 h 2544 9728 4 +PQ +SE +ID 6414 +TI 1760667401.795856952 +UH 0 25 h 1520 5597 0 +PQ +SE +ID 6415 +TI 1760667401.795867681 +UH 0 4 l 2226 10954 4 +UH 0 5 l 1845 10809 4 +UH 0 6 l 2527 10782 4 +UH 0 9 l 1758 5006 0 +UH 0 64 l 1750 0 5 +UH 0 53 h 1629 4758 0 +UH 0 54 h 3300 11073 4 +UH 0 56 h 1599 5146 0 +UH 0 57 h 1677 4735 0 +UH 0 64 h 1839 0 5 +BD GR Veto +PQ +SE +ID 6416 +TI 1760667401.795918703 +UH 0 6 l 2941 10909 4 +UH 0 52 h 2424 11256 4 +UH 0 53 h 2042 11144 4 +PQ +SE +ID 6417 +TI 1760667401.795939683 +UH 0 48 l 1528 8905 4 +UH 0 49 l 3788 8771 4 +UH 0 50 l 1578 8825 4 +UH 0 21 h 3751 9608 4 +PQ +SE +ID 6418 +TI 1760667401.795963287 +UH 0 48 l 2713 10759 4 +UH 0 19 h 2709 11302 4 +PQ +SE +ID 6419 +TI 1760667401.795983314 +UH 0 40 l 2081 10941 4 +UH 0 19 h 1837 11050 4 +UH 0 20 h 1831 10806 4 +PQ +SE +ID 6420 +TI 1760667401.796003818 +UH 0 9 l 4033 9072 4 +UH 0 10 l 1633 9158 4 +UH 0 64 l 1695 0 5 +UH 0 61 h 3965 9538 4 +UH 0 62 h 1688 9488 4 +UH 0 64 h 2084 0 5 +BD GR Veto +PQ +SE +ID 6421 +TI 1760667401.796031236 +UH 0 22 l 3061 10701 4 +UH 0 19 h 2595 11385 4 +UH 0 20 h 1974 11169 4 +PQ +SE +ID 6422 +TI 1760667401.796050786 +UH 0 5 l 2069 10835 4 +UH 0 38 h 2075 11502 4 +PQ +SE +ID 6423 +TI 1760667401.796069383 +UH 0 34 l 3195 9506 4 +UH 0 38 l 3913 9725 4 +UH 0 25 h 2040 9726 4 +UH 0 26 h 3319 9807 4 +UH 0 29 h 3106 9665 4 +UH 0 30 h 1576 9960 4 +PQ +SE +ID 6424 +TI 1760667401.796120405 +UH 0 30 l 2845 10502 4 +UH 0 31 l 2765 10378 4 +UH 0 64 l 1744 0 5 +UH 0 63 h 4149 10459 4 +UH 0 64 h 1731 0 5 +BD GR Veto +PQ +SE +ID 6425 +TI 1760667401.796145677 +UH 0 64 l 1730 0 5 +UH 0 64 h 2290 0 5 +BD GR Veto +PQ +SE +ID 6426 +TI 1760667401.796153783 +UH 0 53 l 1764 5244 0 +UH 0 2 h 1793 11892 4 +PQ +SE +ID 6427 +TI 1760667401.796172380 +UH 0 45 l 1685 4888 0 +UH 0 54 h 1722 11600 4 +PQ +SE +ID 6428 +TI 1760667401.796190738 +UH 0 54 l 2700 10922 4 +UH 0 55 l 2571 10706 4 +UH 0 34 h 3704 10518 4 +PQ +SE +ID 6429 +TI 1760667401.796211004 +UH 0 32 l 1833 10635 4 +UH 0 34 l 2257 10620 4 +UH 0 36 l 1608 4810 0 +UH 0 41 h 2210 10638 4 +UH 0 43 h 1758 10637 4 +PQ +SE +ID 6430 +TI 1760667401.796248674 +UH 0 54 l 2101 10933 4 +UH 0 55 l 1793 10743 4 +UH 0 60 h 2477 10686 4 +PQ +SE +ID 6431 +TI 1760667401.796267747 +UH 0 64 l 2703 0 5 +UH 0 19 h 1548 5231 0 +UH 0 20 h 2672 11080 4 +BD GR Veto +PQ +SE +ID 6432 +TI 1760667401.796283721 +UH 0 34 l 1580 8960 4 +UH 0 35 l 3411 9021 4 +UH 0 16 l 1898 8954 4 +UH 0 17 l 3100 8848 4 +UH 0 21 l 1772 3618 0 +UH 0 8 h 2020 10056 4 +UH 0 9 h 3028 9706 4 +UH 0 17 h 1664 3410 0 +UH 0 26 h 3352 9929 4 +PQ +SE +ID 6433 +TI 1760667401.796344041 +UH 0 13 l 1614 8879 4 +UH 0 14 l 6239 8614 4 +UH 0 15 l 1751 8595 4 +UH 0 64 l 1686 0 5 +UH 0 1 h 6440 9475 4 +UH 0 64 h 1744 0 5 +BD GR Veto +PQ +SE +ID 6434 +TI 1760667401.796372175 +UH 0 49 l 2144 10582 4 +UH 0 25 h 2147 11399 4 +PQ +SE +ID 6435 +TI 1760667401.796389818 +UH 0 22 l 2403 10305 4 +UH 0 3 h 2440 11000 4 +PQ +SE +ID 6436 +TI 1760667401.796408653 +UH 0 42 l 1626 5346 0 +UH 0 43 l 1790 10014 4 +UH 0 19 l 2484 10481 4 +UH 0 52 h 2448 10012 4 +UH 0 12 h 1863 10649 4 +PQ +SE +ID 6437 +TI 1760667401.796447753 +UH 0 40 l 1959 10862 4 +UH 0 45 l 1713 10532 4 +UH 0 46 l 2099 10481 4 +UH 0 10 h 1677 4793 0 +UH 0 11 h 1899 10836 4 +UH 0 12 h 1540 4653 0 +UH 0 14 h 2398 11191 4 +PQ +SE +ID 6438 +TI 1760667401.796492338 +UH 0 27 l 2327 10738 4 +UH 0 20 h 2271 11272 4 +PQ +SE +ID 6439 +TI 1760667401.796510457 +UH 0 49 l 1835 10689 4 +UH 0 52 l 3190 10769 4 +UH 0 32 h 1776 10935 4 +UH 0 2 h 1646 10748 4 +UH 0 3 h 3195 10320 4 +UH 0 31 h 1569 3463 0 +PQ +SE +ID 6440 +TI 1760667401.796552419 +UH 0 12 l 2747 10468 4 +UH 0 63 h 2396 10825 4 +UH 0 64 h 1876 0 5 +BD GR Veto +PQ +SE +ID 6441 +TI 1760667401.796570777 +UH 0 60 l 1640 10106 4 +UH 0 61 l 2405 10248 4 +UH 0 62 l 1771 4862 0 +UH 0 63 l 2203 10118 4 +UH 0 43 h 2771 10170 4 +UH 0 44 h 2069 10093 4 +PQ +SE +ID 6442 +TI 1760667401.796597480 +UH 0 27 l 3289 10324 4 +UH 0 3 h 3322 10971 4 +PQ +SE +ID 6443 +TI 1760667401.796615600 +UH 0 45 l 2762 10717 4 +UH 0 40 h 1588 4378 0 +UH 0 41 h 2791 10732 4 +PQ +SE +ID 6444 +TI 1760667401.796637296 +UH 0 26 l 1934 11587 4 +UH 0 15 h 1885 11865 4 +PQ +SE +ID 6445 +TI 1760667401.796654224 +UH 0 18 l 1670 4741 0 +UH 0 19 l 1976 10774 4 +UH 0 25 l 1761 4639 0 +UH 0 19 h 2000 11516 4 +UH 0 24 h 1623 4709 0 +UH 0 25 h 1522 4525 0 +PQ +SE +ID 6446 +TI 1760667401.796691417 +UH 0 9 l 3044 9193 4 +UH 0 10 l 2335 9208 4 +UH 0 11 l 1705 9222 4 +UH 0 12 l 2085 9176 4 +UH 0 13 l 2418 9397 4 +UH 0 23 h 1771 9743 4 +UH 0 24 h 2576 9832 4 +UH 0 25 h 3128 10002 4 +UH 0 26 h 2066 10182 4 +PQ +SE +ID 6447 +TI 1760667401.796732187 +UH 0 22 l 2039 10373 4 +UH 0 30 h 1990 11501 4 +PQ +SE +ID 6448 +TI 1760667401.796750545 +UH 0 64 l 2033 0 5 +UH 0 64 h 2248 0 5 +BD GR Veto +PQ +SE +ID 6449 +TI 1760667401.796758174 +UH 0 64 l 1873 0 5 +UH 0 64 h 1905 0 5 +BD GR Veto +PQ +SE +ID 6450 +TI 1760667401.796766519 +UH 0 36 l 2510 10577 4 +UH 0 43 h 2451 11087 4 +PQ +SE +ID 6451 +TI 1760667401.796785116 +UH 0 17 l 2014 10328 4 +UH 0 17 h 1973 11296 4 +PQ +SE +ID 6452 +TI 1760667401.796803236 +UH 0 49 l 1527 5067 0 +UH 0 50 l 2854 10791 4 +UH 0 34 h 2811 10175 4 +PQ +SE +ID 6453 +TI 1760667401.796823501 +UH 0 1 l 3593 8518 4 +UH 0 2 l 3658 8615 4 +UH 0 3 l 1593 8388 4 +UH 0 64 l 1635 0 5 +UH 0 49 h 4205 8735 4 +UH 0 50 h 3081 8650 4 +BD GR Veto +PQ +SE +ID 6454 +TI 1760667401.796850681 +UH 0 64 l 4199 0 5 +UH 0 64 h 4060 0 5 +BD GR Veto +PQ +SE +ID 6455 +TI 1760667401.796859502 +UH 0 64 l 1849 0 5 +UH 0 64 h 1848 0 5 +BD GR Veto +PQ +SE +ID 6456 +TI 1760667401.796867609 +UH 0 64 l 2385 0 5 +UH 0 64 h 2369 0 5 +BD GR Veto +PQ +SE +ID 6457 +TI 1760667401.796875953 +UH 0 39 l 1856 10868 4 +UH 0 59 h 1655 4091 0 +UH 0 60 h 1663 4370 0 +PQ +SE +ID 6458 +TI 1760667401.796896219 +UH 0 22 l 1768 3700 0 +UH 0 28 l 1644 10592 4 +UH 0 29 l 4302 10136 4 +UH 0 8 h 1771 11090 4 +UH 0 16 h 1601 10865 4 +UH 0 17 h 4002 10638 4 +PQ +SE +ID 6459 +TI 1760667401.796933412 +UH 0 64 l 1986 0 5 +UH 0 64 h 2011 0 5 +BD GR Veto +PQ +SE +ID 6460 +TI 1760667401.796941757 +UH 0 21 l 2172 11098 4 +UH 0 30 h 2136 11064 4 +PQ +SE +ID 6461 +TI 1760667401.796960353 +UH 0 18 l 1595 5210 0 +UH 0 40 h 1596 2518 0 +PQ +SE +ID 6462 +TI 1760667401.796978712 +UH 0 9 l 2867 10867 4 +UH 0 18 h 2034 11121 4 +UH 0 20 h 2235 11158 4 +UH 0 21 h 1652 11509 4 +PQ +SE +ID 6463 +TI 1760667401.816944599 +UH 0 25 l 3681 10547 4 +UH 0 29 h 3514 11162 4 +PQ +SE +ID 6464 +TI 1760667401.816999197 +UH 0 46 l 2055 10890 4 +UH 0 49 h 2133 11108 4 +PQ +SE +ID 6465 +TI 1760667401.817017316 +UH 0 38 l 1604 5281 0 +UH 0 39 l 2210 10415 4 +UH 0 34 h 2219 10752 4 +PQ +SE +ID 6466 +TI 1760667401.817038774 +UH 0 64 l 2780 0 5 +UH 0 64 h 2779 0 5 +BD GR Veto +PQ +SE +ID 6467 +TI 1760667401.817047357 +UH 0 36 l 1736 4932 0 +UH 0 42 l 1951 10559 4 +UH 0 64 l 3155 0 5 +UH 0 0 h 2632 11192 4 +UH 0 2 h 1797 10954 4 +UH 0 64 h 2500 0 5 +BD GR Veto +PQ +SE +ID 6468 +TI 1760667401.817085266 +UH 0 3 l 4454 10774 4 +UH 0 19 h 2044 10969 4 +UH 0 20 h 3821 10625 4 +PQ +SE +ID 6469 +TI 1760667401.817106008 +UH 0 47 l 2730 10836 4 +UH 0 61 l 1653 2549 0 +UH 0 62 l 1612 1946 0 +UH 0 63 l 1574 2090 0 +UH 0 42 h 2500 10195 4 +UH 0 43 h 1820 10497 4 +PQ +SE +ID 6470 +TI 1760667401.817135572 +UH 0 64 l 2278 0 5 +UH 0 64 h 2323 0 5 +BD GR Veto +PQ +SE +ID 6471 +TI 1760667401.817144393 +UH 0 64 l 2073 0 5 +UH 0 64 h 3695 0 5 +BD GR Veto +PQ +SE +ID 6472 +TI 1760667401.817152500 +UH 0 64 l 1628 0 5 +UH 0 64 h 2058 0 5 +BD GR Veto +PQ +SE +ID 6473 +TI 1760667401.817159891 +UH 0 62 l 2212 10815 4 +UH 0 63 l 2574 10615 4 +UH 0 42 h 3284 10546 4 +PQ +SE +ID 6474 +TI 1760667401.817177534 +UH 0 64 l 5691 0 5 +UH 0 64 h 5445 0 5 +BD GR Veto +PQ +SE +ID 6475 +TI 1760667401.817185878 +UH 0 21 l 1600 9299 4 +UH 0 22 l 4345 8929 4 +UH 0 50 h 4458 9139 4 +PQ +SE +ID 6476 +TI 1760667401.817206382 +UH 0 25 l 3006 11147 4 +UH 0 10 h 2911 11392 4 +PQ +SE +ID 6477 +TI 1760667401.817224025 +UH 0 64 l 2759 0 5 +UH 0 64 h 2736 0 5 +BD GR Veto +PQ +SE +ID 6478 +TI 1760667401.817231893 +UH 0 44 l 1509 5329 0 +PQ +SE +ID 6479 +TI 1760667401.817241668 +UH 0 64 l 2091 0 5 +UH 0 64 h 2160 0 5 +BD GR Veto +PQ +SE +ID 6480 +TI 1760667401.817248821 +UH 0 27 l 2480 10515 4 +UH 0 28 l 4055 10742 4 +UH 0 30 l 1737 5001 0 +UH 0 24 h 4353 10566 4 +UH 0 25 h 1648 10899 4 +UH 0 26 h 1963 11050 4 +PQ +SE +ID 6481 +TI 1760667401.817284584 +UH 0 16 l 2338 10656 4 +UH 0 58 h 2335 10969 4 +PQ +SE +ID 6482 +TI 1760667401.817301511 +UH 0 29 l 1662 8997 4 +UH 0 30 l 4517 9434 4 +UH 0 31 l 1604 9178 4 +UH 0 27 h 3124 9469 4 +UH 0 28 h 2951 9276 4 +PQ +SE +ID 6483 +TI 1760667401.817325830 +UH 0 64 l 2149 0 5 +UH 0 64 h 2173 0 5 +BD GR Veto +PQ +SE +ID 6484 +TI 1760667401.817333936 +UH 0 62 l 2855 10797 4 +UH 0 24 h 2752 10856 4 +PQ +SE +ID 6485 +TI 1760667401.817351579 +UH 0 20 l 4367 9657 4 +UH 0 21 l 2889 10108 4 +UH 0 32 h 4864 9817 4 +UH 0 33 h 1562 9538 4 +UH 0 31 h 2147 9793 4 +PQ +SE +ID 6486 +TI 1760667401.817375898 +UH 0 6 l 2571 10699 4 +UH 0 64 l 3356 0 5 +UH 0 62 h 2150 10893 4 +UH 0 63 h 2033 10926 4 +UH 0 64 h 3344 0 5 +BD GR Veto +PQ +SE +ID 6487 +TI 1760667401.817399740 +UH 0 20 l 2158 10329 4 +UH 0 20 h 2120 11309 4 +PQ +SE +ID 6488 +TI 1760667401.817417144 +UH 0 46 l 3211 9038 4 +UH 0 47 l 1531 9246 4 +UH 0 10 h 3304 10127 4 +PQ +SE +ID 6489 +TI 1760667401.817436218 +UH 0 32 l 2077 10740 4 +UH 0 33 l 2837 10561 4 +UH 0 13 h 2559 10779 4 +UH 0 14 h 1949 11041 4 +UH 0 15 h 1920 11066 4 +PQ +SE +ID 6490 +TI 1760667401.817460536 +UH 0 36 l 1843 5154 0 +UH 0 25 h 1724 11335 4 +PQ +SE +ID 6491 +TI 1760667401.817478179 +UH 0 43 l 2482 10817 4 +UH 0 44 l 2570 10630 4 +UH 0 59 h 1820 11042 4 +UH 0 60 h 3334 10703 4 +PQ +SE +ID 6492 +TI 1760667401.817502498 +UH 0 60 l 3585 10018 4 +UH 0 61 l 2500 10306 4 +UH 0 10 h 4464 11341 4 +PQ +SE +ID 6493 +TI 1760667401.817522525 +UH 0 0 l 1782 8962 4 +UH 0 1 l 6491 9118 4 +UH 0 2 l 2017 9048 4 +UH 0 27 h 1638 9151 4 +UH 0 28 h 6799 8854 4 +UH 0 29 h 1759 9153 4 +PQ +SE +ID 6494 +TI 1760667401.817547798 +UH 0 35 l 1690 5432 0 +UH 0 49 h 1600 4985 0 +UH 0 50 h 1700 5050 0 +PQ +SE +ID 6495 +TI 1760667401.817568063 +UH 0 32 l 3205 10860 4 +UH 0 16 h 2025 10831 4 +UH 0 17 h 2554 10665 4 +PQ +SE +ID 6496 +TI 1760667401.817587375 +UH 0 35 l 2081 10644 4 +UH 0 28 h 2180 11131 4 +PQ +SE +ID 6497 +TI 1760667401.817604064 +UH 0 64 l 2195 0 5 +UH 0 64 h 2360 0 5 +BD GR Veto +PQ +SE +ID 6498 +TI 1760667401.817611932 +UH 0 11 l 2678 10631 4 +UH 0 17 l 1979 10901 4 +UH 0 32 h 2431 10683 4 +UH 0 35 h 1874 10627 4 +UH 0 36 h 1685 4266 0 +UH 0 31 h 1580 5187 0 +PQ +SE +ID 6499 +TI 1760667401.817648410 +UH 0 64 l 1942 0 5 +UH 0 64 h 1906 0 5 +BD GR Veto +PQ +SE +ID 6500 +TI 1760667401.817656278 +UH 0 48 l 2524 10966 4 +UH 0 40 h 2513 10301 4 +PQ +SE +ID 6501 +TI 1760667401.817673921 +UH 0 8 l 1806 5143 0 +UH 0 33 h 1695 5185 0 +PQ +SE +ID 6502 +TI 1760667401.817691564 +UH 0 33 l 2252 10652 4 +UH 0 63 h 2275 11008 4 +PQ +SE +ID 6503 +TI 1760667401.817707061 +UH 0 52 l 5219 8521 4 +UH 0 53 l 1963 8550 4 +UH 0 62 h 5561 8212 4 +UH 0 63 h 1631 8348 4 +UH 0 64 h 1669 0 5 +BD GR Veto +PQ +SE +ID 6504 +TI 1760667401.817729473 +UH 0 44 l 1702 3571 0 +UH 0 46 l 2427 9115 4 +UH 0 47 l 2215 9274 4 +UH 0 58 l 3621 8780 4 +UH 0 63 l 1529 1890 0 +UH 0 64 l 1660 0 5 +UH 0 2 h 3819 9878 4 +UH 0 7 h 2144 9746 4 +UH 0 8 h 2693 10000 4 +UH 0 10 h 1735 10008 4 +BD GR Veto +PQ +SE +ID 6505 +TI 1760667401.817788124 +UH 0 64 l 2500 0 5 +UH 0 64 h 2489 0 5 +BD GR Veto +PQ +SE +ID 6506 +TI 1760667401.817801475 +UH 0 20 l 2369 10656 4 +UH 0 22 l 2162 10985 4 +UH 0 13 h 1983 10971 4 +UH 0 14 h 2315 11259 4 +UH 0 15 h 1685 11405 4 +PQ +SE +ID 6507 +TI 1760667401.817835807 +UH 0 64 l 2270 0 5 +UH 0 64 h 2307 0 5 +BD GR Veto +PQ +SE +ID 6508 +TI 1760667401.817843675 +UH 0 9 l 2585 10633 4 +UH 0 12 h 2490 11241 4 +PQ +SE +ID 6509 +TI 1760667401.817865133 +UH 0 0 l 4701 10729 4 +UH 0 1 l 1913 11032 4 +UH 0 64 l 2146 0 5 +UH 0 34 h 4526 10546 4 +UH 0 9 h 1725 4596 0 +UH 0 10 h 1607 4424 0 +UH 0 11 h 2171 10966 4 +BD GR Veto +PQ +SE +ID 6510 +TI 1760667401.817909479 +UH 0 55 l 4411 9115 4 +UH 0 56 l 1548 9373 4 +UH 0 57 l 2366 8581 4 +UH 0 58 l 1780 8541 4 +UH 0 21 h 2385 9530 4 +UH 0 22 h 1736 9293 4 +UH 0 23 h 4687 9276 4 +UH 0 24 h 1554 9034 4 +PQ +SE +ID 6511 +TI 1760667401.817959308 +UH 0 48 l 1807 11274 4 +UH 0 56 h 1873 10882 4 +PQ +SE +ID 6512 +TI 1760667401.817977905 +UH 0 64 l 2033 0 5 +UH 0 61 h 1854 11216 4 +UH 0 64 h 1779 0 5 +BD GR Veto +PQ +SE +ID 6513 +TI 1760667401.817993640 +UH 0 55 l 1511 5375 0 +UH 0 56 l 1556 8407 4 +UH 0 57 l 1601 7833 4 +UH 0 58 l 6966 7973 4 +UH 0 59 l 2160 7815 4 +UH 0 60 l 1645 7952 4 +UH 0 61 l 3410 7989 4 +UH 0 62 l 2017 8246 4 +UH 0 64 l 1651 0 5 +UH 0 48 h 2899 8243 4 +UH 0 49 h 5133 8179 4 +UH 0 51 h 2599 8218 4 +UH 0 54 h 3721 8342 4 +BD GR Veto +PQ +SE +ID 6514 +TI 1760667401.818043470 +UH 0 64 l 4357 0 5 +UH 0 64 h 4202 0 5 +BD GR Veto +PQ +SE +ID 6515 +TI 1760667401.818051815 +UH 0 22 l 3049 10508 4 +UH 0 64 l 2758 0 5 +UH 0 0 h 1953 11270 4 +UH 0 1 h 2955 11258 4 +UH 0 2 h 1720 11360 4 +UH 0 64 h 2399 0 5 +BD GR Veto +PQ +SE +ID 6516 +TI 1760667401.818075418 +UH 0 11 l 4224 8756 4 +UH 0 12 l 1707 8931 4 +UH 0 5 h 4000 9630 4 +PQ +SE +ID 6517 +TI 1760667401.818095684 +UH 0 15 l 2344 9704 4 +UH 0 21 l 2976 10723 4 +UH 0 30 l 1681 1566 0 +UH 0 31 l 1709 1591 0 +UH 0 5 h 2270 10615 4 +UH 0 9 h 2960 11254 4 +PQ +SE +ID 6518 +TI 1760667401.818134307 +UH 0 59 l 2993 10663 4 +UH 0 13 h 3012 11293 4 +PQ +SE +ID 6519 +TI 1760667401.818151950 +UH 0 11 l 2839 10105 4 +UH 0 12 l 2027 10109 4 +UH 0 16 l 3339 10554 4 +UH 0 4 h 3115 11488 4 +UH 0 7 h 3503 11197 4 +PQ +SE +ID 6520 +TI 1760667401.818186044 +UH 0 59 l 1900 10494 4 +UH 0 60 l 2816 10140 4 +UH 0 15 h 3174 11392 4 +PQ +SE +ID 6521 +TI 1760667401.818206548 +UH 0 64 l 1791 0 5 +UH 0 64 h 2068 0 5 +BD GR Veto +PQ +SE +ID 6522 +TI 1760667401.818214654 +UH 0 37 l 2094 10664 4 +UH 0 38 l 2841 10565 4 +UH 0 31 h 3441 10752 4 +PQ +SE +ID 6523 +TI 1760667401.818232059 +UH 0 64 l 2350 0 5 +UH 0 64 h 2366 0 5 +BD GR Veto +PQ +SE +ID 6524 +TI 1760667401.818240404 +UH 0 64 l 2978 0 5 +UH 0 64 h 2982 0 5 +BD GR Veto +PQ +SE +ID 6525 +TI 1760667401.818249940 +UH 0 57 l 1728 5214 0 +UH 0 37 h 1789 5494 0 +PQ +SE +ID 6526 +TI 1760667401.818267345 +UH 0 12 l 1904 4651 0 +UH 0 14 l 2907 10681 4 +UH 0 20 h 1822 5099 0 +UH 0 22 h 2688 10995 4 +UH 0 23 h 1730 11153 4 +PQ +SE +ID 6527 +TI 1760667401.834403514 +UH 0 56 l 1551 9323 4 +UH 0 57 l 4385 8933 4 +UH 0 53 h 3441 8870 4 +UH 0 54 h 2375 9045 4 +PQ +SE +ID 6528 +TI 1760667401.834454298 +UH 0 2 l 2273 10985 4 +UH 0 3 l 2732 10843 4 +UH 0 7 h 1636 11256 4 +UH 0 8 h 3387 11478 4 +PQ +SE +ID 6529 +TI 1760667401.834478378 +UH 0 36 l 1601 8257 4 +UH 0 37 l 3562 8408 4 +UH 0 38 l 1562 8527 4 +UH 0 39 l 1710 3414 0 +UH 0 40 l 2566 8383 4 +UH 0 5 h 4552 9131 4 +UH 0 6 h 1702 9191 4 +PQ +SE +ID 6530 +TI 1760667401.834515571 +UH 0 17 l 3302 10790 4 +UH 0 18 l 1731 10776 4 +UH 0 56 h 3063 10695 4 +UH 0 57 h 1947 10867 4 +PQ +SE +ID 6531 +TI 1760667401.834538221 +UH 0 11 l 2999 10599 4 +UH 0 17 h 1618 10999 4 +UH 0 18 h 2756 10746 4 +PQ +SE +ID 6532 +TI 1760667401.834559202 +UH 0 44 l 1714 4968 0 +UH 0 45 l 1995 10868 4 +UH 0 25 h 1808 11034 4 +UH 0 26 h 1969 11119 4 +PQ +SE +ID 6533 +TI 1760667401.834582567 +UH 0 8 l 1924 5082 0 +UH 0 18 l 2906 10650 4 +UH 0 64 l 3958 0 5 +UH 0 0 h 1901 11217 4 +UH 0 2 h 2802 11187 4 +UH 0 3 h 1769 11074 4 +UH 0 64 h 3837 0 5 +BD GR Veto +PQ +SE +ID 6534 +TI 1760667401.834618330 +UH 0 27 l 1665 5354 0 +UH 0 5 h 1593 4946 0 +PQ +SE +ID 6535 +TI 1760667401.834635972 +UH 0 41 l 2616 10976 4 +UH 0 2 h 2796 11269 4 +PQ +SE +ID 6536 +TI 1760667401.834653615 +UH 0 40 l 2305 10827 4 +UH 0 43 l 1608 4743 0 +UH 0 35 h 1679 4552 0 +UH 0 41 h 2393 11358 4 +PQ +SE +ID 6537 +TI 1760667401.834686756 +UH 0 59 l 2137 10755 4 +UH 0 60 l 2695 10442 4 +UH 0 49 h 3331 10906 4 +PQ +SE +ID 6538 +TI 1760667401.834706544 +UH 0 58 l 2271 10531 4 +UH 0 37 h 2139 11333 4 +UH 0 38 h 1745 4872 0 +PQ +SE +ID 6539 +TI 1760667401.834727048 +UH 0 37 l 1680 5325 0 +UH 0 63 h 1682 4601 0 +PQ +SE +ID 6540 +TI 1760667401.834741353 +UH 0 64 l 1681 0 5 +UH 0 64 h 1727 0 5 +BD GR Veto +PQ +SE +ID 6541 +TI 1760667401.834749221 +UH 0 4 l 2274 11066 4 +UH 0 5 l 1858 10902 4 +UH 0 7 l 2218 11066 4 +UH 0 24 h 2170 10845 4 +UH 0 25 h 1635 11313 4 +UH 0 26 h 2333 11375 4 +PQ +SE +ID 6542 +TI 1760667401.834780693 +UH 0 64 l 1947 0 5 +UH 0 64 h 1997 0 5 +BD GR Veto +PQ +SE +ID 6543 +TI 1760667401.834788560 +UH 0 64 l 2344 0 5 +UH 0 64 h 2348 0 5 +BD GR Veto +PQ +SE +ID 6544 +TI 1760667401.834795951 +UH 0 32 l 1706 5291 0 +UH 0 34 l 2417 10423 4 +UH 0 35 l 1562 5388 0 +UH 0 25 l 3106 10829 4 +UH 0 48 h 3252 10912 4 +UH 0 49 h 2479 10895 4 +PQ +SE +ID 6545 +TI 1760667401.834829807 +UH 0 64 l 1631 0 5 +UH 0 64 h 1688 0 5 +BD GR Veto +PQ +SE +ID 6546 +TI 1760667401.834837675 +UH 0 57 l 1622 10296 4 +UH 0 58 l 3325 10001 4 +UH 0 32 h 1810 10766 4 +UH 0 31 h 3100 10670 4 +PQ +SE +ID 6547 +TI 1760667401.834859848 +UH 0 33 l 3839 10483 4 +UH 0 29 l 2096 10654 4 +UH 0 37 h 2442 10765 4 +UH 0 38 h 2998 10612 4 +UH 0 24 h 1984 10781 4 +PQ +SE +ID 6548 +TI 1760667401.834893465 +UH 0 60 l 1678 9823 4 +UH 0 61 l 2883 9935 4 +UH 0 64 l 3165 0 5 +UH 0 4 h 2728 10839 4 +UH 0 5 h 2172 10700 4 +UH 0 64 h 2765 0 5 +BD GR Veto +PQ +SE +ID 6549 +TI 1760667401.834921121 +UH 0 53 l 1880 11065 4 +UH 0 54 l 1610 5173 0 +UH 0 20 h 2003 11196 4 +PQ +SE +ID 6550 +TI 1760667401.834941387 +UH 0 1 l 3263 10748 4 +UH 0 2 l 2126 10602 4 +UH 0 23 h 1799 11111 4 +UH 0 24 h 3408 11006 4 +PQ +SE +ID 6551 +TI 1760667401.834963798 +UH 0 35 l 2249 10901 4 +UH 0 60 h 2254 10624 4 +PQ +SE +ID 6552 +TI 1760667401.834980964 +UH 0 14 l 1757 5352 0 +UH 0 18 l 1990 10236 4 +UH 0 19 l 3318 10462 4 +UH 0 9 h 1711 10787 4 +UH 0 26 h 1603 11395 4 +UH 0 27 h 3653 11115 4 +PQ +SE +ID 6553 +TI 1760667401.835017919 +UH 0 10 l 1723 4753 0 +UH 0 7 h 1726 5533 0 +PQ +SE +ID 6554 +TI 1760667401.835035324 +UH 0 52 l 1740 5214 0 +UH 0 4 h 1780 5721 0 +PQ +SE +ID 6555 +TI 1760667401.835051774 +UH 0 9 l 1638 9088 4 +UH 0 10 l 4351 8949 4 +UH 0 11 l 1712 8835 4 +UH 0 17 h 4070 9383 4 +PQ +SE +ID 6556 +TI 1760667401.835073709 +UH 0 7 l 1717 5340 0 +UH 0 46 h 1722 11612 4 +PQ +SE +ID 6557 +TI 1760667401.835090637 +UH 0 44 l 2273 10554 4 +UH 0 45 l 1642 5078 0 +UH 0 31 h 2473 10830 4 +PQ +SE +ID 6558 +TI 1760667401.835108757 +UH 0 20 l 1896 10804 4 +UH 0 21 l 1634 5501 0 +UH 0 0 h 1827 11203 4 +UH 0 1 h 1684 11311 4 +PQ +SE +ID 6559 +TI 1760667401.835128307 +UH 0 64 l 2054 0 5 +UH 0 64 h 2094 0 5 +BD GR Veto +PQ +SE +ID 6560 +TI 1760667401.835136413 +UH 0 64 h 1892 0 5 +BD GR Veto +PQ +SE +ID 6561 +TI 1760667401.835142135 +UH 0 16 l 2714 10469 4 +UH 0 17 l 2501 10395 4 +UH 0 20 l 2076 10244 4 +UH 0 34 h 3558 10744 4 +UH 0 30 h 1987 11544 4 +PQ +SE +ID 6562 +TI 1760667401.835175275 +UH 0 59 l 2397 8361 4 +UH 0 60 l 2540 8349 4 +UH 0 61 l 1651 8495 4 +UH 0 62 l 2837 8305 4 +UH 0 13 h 2789 8974 4 +UH 0 19 h 3346 8987 4 +PQ +SE +ID 6563 +TI 1760667401.835206985 +UH 0 44 l 3124 10220 4 +UH 0 52 l 3184 10665 4 +UH 0 54 l 2292 10724 4 +UH 0 14 h 3112 11022 4 +UH 0 15 h 1614 11192 4 +UH 0 20 h 2354 10553 4 +UH 0 27 h 3091 10627 4 +UH 0 28 h 1661 10531 4 +PQ +SE +ID 6564 +TI 1760667401.835254192 +UH 0 64 l 2430 0 5 +UH 0 64 h 2431 0 5 +BD GR Veto +PQ +SE +ID 6565 +TI 1760667401.835262537 +UH 0 17 l 2139 10942 4 +UH 0 39 h 2213 11178 4 +PQ +SE +ID 6566 +TI 1760667401.835279703 +UH 0 12 l 4713 10256 4 +UH 0 13 l 2134 10842 4 +UH 0 46 h 1618 10621 4 +UH 0 47 h 5178 10451 4 +PQ +SE +ID 6567 +TI 1760667401.835301876 +UH 0 49 l 1574 9171 4 +UH 0 50 l 4749 8955 4 +UH 0 51 l 1624 9243 4 +UH 0 25 l 2329 9441 4 +UH 0 27 l 2106 9171 4 +UH 0 25 h 1539 9511 4 +UH 0 26 h 4639 9531 4 +UH 0 27 h 2842 9446 4 +PQ +SE +ID 6568 +TI 1760667401.835340976 +UH 0 60 l 2557 10484 4 +UH 0 14 h 2526 11028 4 +PQ +SE +ID 6569 +TI 1760667401.835358381 +UH 0 64 l 4240 0 5 +UH 0 64 h 4112 0 5 +BD GR Veto +PQ +SE +ID 6570 +TI 1760667401.835366487 +UH 0 2 l 1862 11172 4 +UH 0 21 h 1698 4540 0 +UH 0 22 h 1721 4715 0 +PQ +SE +ID 6571 +TI 1760667401.835385799 +UH 0 62 l 1889 10887 4 +UH 0 63 l 1825 10614 4 +UH 0 33 h 2188 10746 4 +PQ +SE +ID 6572 +TI 1760667401.835403203 +UH 0 44 l 2152 10747 4 +UH 0 51 h 2156 11113 4 +PQ +SE +ID 6573 +TI 1760667401.835420370 +UH 0 11 l 3009 10291 4 +UH 0 15 l 3036 10797 4 +UH 0 16 l 2862 10893 4 +UH 0 27 l 1633 1809 0 +UH 0 28 l 1634 1832 0 +UH 0 29 l 1667 1942 0 +UH 0 30 l 1656 2263 0 +UH 0 31 l 1718 2300 0 +UH 0 52 h 2997 10968 4 +UH 0 54 h 1920 10912 4 +UH 0 55 h 3841 10502 4 +PQ +SE +ID 6574 +TI 1760667401.835467100 +UH 0 8 l 1723 5265 0 +UH 0 21 h 1654 5569 0 +PQ +SE +ID 6575 +TI 1760667401.835484743 +UH 0 45 l 1799 10238 4 +UH 0 46 l 2570 10150 4 +UH 0 47 l 1600 4543 0 +UH 0 48 l 1518 5423 0 +UH 0 6 h 1658 4737 0 +UH 0 8 h 2836 11232 4 +UH 0 9 h 1680 10960 4 +PQ +SE +ID 6576 +TI 1760667401.835523366 +UH 0 32 l 2302 11004 4 +UH 0 33 l 1863 10632 4 +UH 0 31 l 1730 11238 4 +UH 0 24 h 2541 11033 4 +UH 0 25 h 1675 5386 0 +PQ +SE +ID 6577 +TI 1760667401.835547685 +UH 0 11 h 1649 5549 0 +PQ +SE +ID 6578 +TI 1760667401.835558176 +UH 0 32 l 1937 10792 4 +UH 0 33 l 3354 10361 4 +UH 0 47 h 3429 10788 4 +UH 0 50 h 1903 4855 0 +PQ +SE +ID 6579 +TI 1760667401.835585355 +UH 0 64 l 2077 0 5 +UH 0 64 h 2164 0 5 +BD GR Veto +PQ +SE +ID 6580 +TI 1760667401.835592985 +UH 0 12 l 1932 4667 0 +UH 0 13 l 2058 10510 4 +UH 0 15 l 2420 10495 4 +UH 0 30 l 1610 2099 0 +UH 0 31 l 1656 2293 0 +UH 0 11 h 2219 11275 4 +UH 0 12 h 1673 11268 4 +UH 0 13 h 2332 11326 4 +PQ +SE +ID 6581 +TI 1760667401.835630178 +UH 0 64 l 1733 0 5 +UH 0 64 h 1804 0 5 +BD GR Veto +PQ +SE +ID 6582 +TI 1760667401.835638523 +UH 0 2 l 2075 10880 4 +UH 0 3 l 1654 4845 0 +UH 0 42 h 2222 10845 4 +PQ +SE +ID 6583 +TI 1760667401.835657835 +UH 0 37 l 2301 10987 4 +UH 0 11 h 2321 10940 4 +PQ +SE +ID 6584 +TI 1760667401.835675477 +UH 0 18 l 2155 10789 4 +UH 0 36 h 1892 10573 4 +UH 0 37 h 1904 10726 4 +PQ +SE +ID 6585 +TI 1760667401.835695266 +UH 0 49 l 2973 8452 4 +UH 0 50 l 1581 5397 0 +UH 0 64 l 4125 0 5 +UH 0 26 h 1786 9209 4 +UH 0 31 h 2792 8758 4 +UH 0 64 h 4009 0 5 +BD GR Veto +PQ +SE +ID 6586 +TI 1760667401.835727453 +UH 0 30 l 2145 11230 4 +UH 0 31 l 2082 11070 4 +UH 0 58 h 1605 10973 4 +UH 0 59 h 2607 11012 4 +PQ +SE +ID 6587 +TI 1760667401.835746765 +UH 0 46 l 1635 8760 4 +UH 0 47 l 2919 8745 4 +UH 0 48 l 1536 5434 0 +UH 0 49 l 2847 8576 4 +UH 0 61 l 1660 2034 0 +UH 0 63 l 1634 1379 0 +UH 0 64 l 2582 0 5 +UH 0 56 h 3111 8788 4 +UH 0 57 h 1591 8999 4 +UH 0 62 h 2981 8873 4 +UH 0 64 h 2630 0 5 +BD GR Veto +PQ +SE +ID 6588 +TI 1760667401.835799694 +UH 0 24 l 1748 10737 4 +UH 0 25 l 3357 10795 4 +UH 0 39 h 3411 10882 4 +PQ +SE +ID 6589 +TI 1760667401.835819721 +UH 0 1 l 3848 11099 4 +UH 0 13 l 2100 10881 4 +UH 0 14 l 2853 10698 4 +UH 0 4 h 1780 4662 0 +UH 0 5 h 2086 11050 4 +UH 0 6 h 2584 10978 4 +UH 0 10 h 3753 11034 4 +PQ +SE +ID 6590 +TI 1760667401.835858106 +UH 0 53 l 5718 8554 4 +UH 0 54 l 1547 8858 4 +UH 0 62 h 5591 8179 4 +UH 0 64 h 1668 0 5 +BD GR Veto +PQ +SE +ID 6591 +TI 1760667401.856833696 +UH 0 54 l 1687 5545 0 +UH 0 33 h 1705 4996 0 +PQ +SE +ID 6592 +TI 1760667401.856913089 +UH 0 22 l 3772 10508 4 +UH 0 23 l 1966 10617 4 +UH 0 30 l 1747 4933 0 +UH 0 31 l 1609 5002 0 +UH 0 56 h 1836 10946 4 +UH 0 59 h 1824 4572 0 +UH 0 61 h 3784 11121 4 +PQ +SE +ID 6593 +TI 1760667401.857002973 +UH 0 20 l 1799 4446 0 +UH 0 56 h 1734 10983 4 +PQ +SE +ID 6594 +TI 1760667401.857036352 +UH 0 64 l 2299 0 5 +UH 0 64 h 2327 0 5 +BD GR Veto +PQ +SE +ID 6595 +TI 1760667401.857051610 +UH 0 11 l 4093 10256 4 +UH 0 44 h 3969 10869 4 +PQ +SE +ID 6596 +TI 1760667401.857084274 +UH 0 64 l 1638 0 5 +UH 0 64 h 1698 0 5 +BD GR Veto +PQ +SE +ID 6597 +TI 1760667401.857099294 +UH 0 64 l 3635 0 5 +UH 0 64 h 3494 0 5 +BD GR Veto +PQ +SE +ID 6598 +TI 1760667401.857114076 +UH 0 64 l 2616 0 5 +UH 0 64 h 2663 0 5 +BD GR Veto +PQ +SE +ID 6599 +TI 1760667401.857128858 +UH 0 63 l 1680 5216 0 +UH 0 49 h 1709 10528 4 +PQ +SE +ID 6600 +TI 1760667401.857157230 +UH 0 39 l 2288 8431 4 +UH 0 42 l 1778 2950 0 +UH 0 43 l 1901 8727 4 +UH 0 47 l 1532 8900 4 +UH 0 48 l 4199 9136 4 +UH 0 49 l 1518 9058 4 +UH 0 17 h 2091 9327 4 +UH 0 18 h 1899 9155 4 +UH 0 19 h 3916 9305 4 +UH 0 20 h 2210 9157 4 +PQ +SE +ID 6601 +TI 1760667401.857246160 +UH 0 0 l 2115 10953 4 +UH 0 39 h 2144 10774 4 +PQ +SE +ID 6602 +TI 1760667401.857262134 +UH 0 52 l 1762 4658 0 +UH 0 59 l 2479 10655 4 +UH 0 5 h 2710 11254 4 +PQ +SE +ID 6603 +TI 1760667401.857286453 +UH 0 64 l 1979 0 5 +UH 0 64 h 2001 0 5 +BD GR Veto +PQ +SE +ID 6604 +TI 1760667401.857294559 +UH 0 64 h 1670 0 5 +BD GR Veto +PQ +SE +ID 6605 +TI 1760667401.857299804 +UH 0 64 l 4397 0 5 +UH 0 64 h 4231 0 5 +BD GR Veto +PQ +SE +ID 6606 +TI 1760667401.857307434 +UH 0 48 l 1745 5023 0 +UH 0 49 l 1626 5083 0 +UH 0 8 h 1953 11854 4 +PQ +SE +ID 6607 +TI 1760667401.857326745 +UH 0 64 l 4181 0 5 +UH 0 64 h 4037 0 5 +BD GR Veto +PQ +SE +ID 6608 +TI 1760667401.857335090 +UH 0 9 l 3443 10526 4 +UH 0 58 h 3329 10856 4 +PQ +SE +ID 6609 +TI 1760667401.857351779 +UH 0 53 l 1604 8562 4 +UH 0 54 l 4423 8882 4 +UH 0 55 l 1526 8631 4 +UH 0 52 h 4455 8552 4 +PQ +SE +ID 6610 +TI 1760667401.857373714 +UH 0 12 l 3091 10301 4 +UH 0 13 l 1665 10911 4 +UH 0 5 h 2180 11312 4 +UH 0 6 h 2428 11287 4 +PQ +SE +ID 6611 +TI 1760667401.857395887 +UH 0 32 l 1799 8820 4 +UH 0 33 l 4372 8385 4 +UH 0 34 l 1604 8629 4 +UH 0 17 h 2054 9318 4 +UH 0 21 h 3928 9404 4 +PQ +SE +ID 6612 +TI 1760667401.857424736 +UH 0 14 l 1644 5356 0 +UH 0 15 l 3274 8885 4 +UH 0 16 l 2678 9016 4 +UH 0 27 l 1706 1598 0 +UH 0 28 l 1707 1483 0 +UH 0 29 l 1757 1526 0 +UH 0 30 l 1744 1571 0 +UH 0 31 l 1826 1591 0 +UH 0 7 h 2480 9718 4 +UH 0 8 h 3504 10033 4 +PQ +SE +ID 6613 +TI 1760667401.857463359 +UH 0 64 l 2845 0 5 +UH 0 64 h 2833 0 5 +BD GR Veto +PQ +SE +ID 6614 +TI 1760667401.857470989 +UH 0 51 l 1630 4549 0 +UH 0 52 l 2484 10860 4 +UH 0 45 h 1902 10958 4 +UH 0 46 h 2114 10775 4 +PQ +SE +ID 6615 +TI 1760667401.857491731 +UH 0 64 l 2228 0 5 +UH 0 64 h 2263 0 5 +BD GR Veto +PQ +SE +ID 6616 +TI 1760667401.857499361 +UH 0 61 l 1655 8808 4 +UH 0 62 l 4290 8686 4 +UH 0 63 l 2085 8622 4 +UH 0 64 l 2288 0 5 +UH 0 49 h 4271 8695 4 +UH 0 50 h 2303 8693 4 +UH 0 64 h 2232 0 5 +BD GR Veto +PQ +SE +ID 6617 +TI 1760667401.857526302 +UH 0 60 l 2596 10553 4 +UH 0 33 h 2456 10436 4 +UH 0 34 h 1563 10692 4 +PQ +SE +ID 6618 +TI 1760667401.857545375 +UH 0 29 l 1790 5056 0 +UH 0 28 h 1795 11425 4 +PQ +SE +ID 6619 +TI 1760667401.857560157 +UH 0 16 l 2501 10954 4 +UH 0 18 h 2029 11136 4 +UH 0 19 h 1999 11394 4 +PQ +SE +ID 6620 +TI 1760667401.857579231 +UH 0 53 l 1601 8579 4 +UH 0 54 l 4349 8663 4 +UH 0 55 l 1518 8615 4 +UH 0 15 h 4322 9464 4 +PQ +SE +ID 6621 +TI 1760667401.857601165 +UH 0 37 l 1785 5284 0 +UH 0 50 l 1743 4954 0 +UH 0 48 h 1802 11065 4 +UH 0 51 h 1727 10780 4 +PQ +SE +ID 6622 +TI 1760667401.857638835 +UH 0 44 l 1640 4465 4 +UH 0 45 l 3847 4316 4 +UH 0 50 l 3339 4217 4 +UH 0 29 l 1913 10647 4 +UH 0 30 l 1808 5293 0 +UH 0 51 h 3280 4399 4 +UH 0 62 h 3958 4057 4 +UH 0 31 h 2092 11034 4 +PQ +SE +ID 6623 +TI 1760667401.857692480 +UH 0 45 l 1576 3637 0 +UH 0 46 l 2260 8582 4 +UH 0 47 l 2794 8616 4 +UH 0 48 l 1521 5401 0 +UH 0 57 l 1997 8344 4 +UH 0 62 l 1697 1558 0 +UH 0 63 l 1616 1368 0 +UH 0 37 h 2062 9152 4 +UH 0 39 h 2900 8739 4 +UH 0 40 h 2415 8798 4 +PQ +SE +ID 6624 +TI 1760667401.857738018 +UH 0 16 l 1599 3121 0 +UH 0 17 l 2219 9301 4 +UH 0 19 l 1622 5412 0 +UH 0 20 l 3229 9050 4 +UH 0 47 h 3223 9606 4 +UH 0 53 h 2286 9639 4 +PQ +SE +ID 6625 +TI 1760667401.857772350 +UH 0 64 l 2305 0 5 +UH 0 36 h 1810 4687 0 +UH 0 64 h 2102 0 5 +BD GR Veto +PQ +SE +ID 6626 +TI 1760667401.857786178 +UH 0 32 l 1647 9977 4 +UH 0 33 l 2538 9529 4 +UH 0 34 l 2624 9593 4 +UH 0 47 h 2652 10097 4 +UH 0 48 h 2280 10186 4 +UH 0 49 h 1875 10169 4 +PQ +SE +ID 6627 +TI 1760667401.857813835 +UH 0 53 l 2577 10612 4 +UH 0 56 l 2576 10975 4 +UH 0 40 h 2256 10867 4 +UH 0 42 h 2949 10821 4 +PQ +SE +ID 6628 +TI 1760667401.857843399 +UH 0 19 l 3148 10411 4 +UH 0 29 l 3997 10309 4 +UH 0 30 l 1664 10730 4 +UH 0 0 h 3149 10901 4 +UH 0 1 h 4099 10904 4 +PQ +SE +ID 6629 +TI 1760667401.857869625 +UH 0 62 l 3533 10812 4 +UH 0 24 h 3343 10705 4 +UH 0 28 h 1684 4718 0 +PQ +SE +ID 6630 +TI 1760667401.857898235 +UH 0 64 l 1793 0 5 +UH 0 64 h 2838 0 5 +BD GR Veto +PQ +SE +ID 6631 +TI 1760667401.857906103 +UH 0 64 l 1820 0 5 +UH 0 64 h 1799 0 5 +BD GR Veto +PQ +SE +ID 6632 +TI 1760667401.857913970 +UH 0 11 l 2248 10781 4 +UH 0 1 h 2098 11433 4 +UH 0 2 h 1684 5267 0 +PQ +SE +ID 6633 +TI 1760667401.857933998 +UH 0 31 l 2241 11297 4 +UH 0 45 h 2185 10831 4 +PQ +SE +ID 6634 +TI 1760667401.857951164 +UH 0 36 l 1820 10529 4 +UH 0 29 l 1659 5350 0 +UH 0 47 h 1641 3308 0 +UH 0 58 h 1751 10059 4 +PQ +SE +ID 6635 +TI 1760667401.857983350 +UH 0 52 l 3093 9093 4 +UH 0 53 l 4102 9016 4 +UH 0 54 l 1563 9446 4 +UH 0 5 h 3058 9570 4 +UH 0 21 h 4012 9642 4 +PQ +SE +ID 6636 +TI 1760667401.858011484 +UH 0 7 l 1887 11111 4 +UH 0 8 l 1663 5348 0 +UH 0 0 h 1952 11305 4 +PQ +SE +ID 6637 +TI 1760667401.858032226 +UH 0 48 l 2049 11004 4 +UH 0 49 l 1526 5027 0 +UH 0 54 h 2117 11275 4 +PQ +SE +ID 6638 +TI 1760667401.858051538 +UH 0 54 l 1827 10867 4 +UH 0 57 l 2013 10877 4 +UH 0 51 h 1806 10934 4 +UH 0 53 h 2047 10657 4 +PQ +SE +ID 6639 +TI 1760667401.858078956 +UH 0 33 l 2036 9708 4 +UH 0 34 l 3858 9724 4 +UH 0 12 h 4041 9998 4 +UH 0 13 h 1796 10169 4 +UH 0 14 h 1572 10306 4 +PQ +SE +ID 6640 +TI 1760667401.858103275 +UH 0 64 l 3209 0 5 +UH 0 64 h 3161 0 5 +BD GR Veto +PQ +SE +ID 6641 +TI 1760667401.858112573 +UH 0 47 l 2018 9162 4 +UH 0 48 l 1631 2912 0 +UH 0 49 l 2302 9387 4 +UH 0 52 l 4118 9347 4 +UH 0 32 h 3990 8869 4 +UH 0 25 h 1751 9336 4 +UH 0 26 h 2745 9376 4 +UH 0 31 h 1567 8886 4 +PQ +SE +ID 6642 +TI 1760667401.858152389 +UH 0 35 l 1973 10323 4 +UH 0 36 l 1659 5129 0 +UH 0 37 l 2735 10124 4 +UH 0 42 l 2590 10449 4 +UH 0 28 l 2908 10179 4 +UH 0 6 h 2818 10733 4 +UH 0 9 h 2014 10410 4 +UH 0 14 h 2522 10554 4 +UH 0 19 h 2739 10771 4 +PQ +SE +ID 6643 +TI 1760667401.858210325 +UH 0 64 l 2070 0 5 +UH 0 36 h 2093 11350 4 +BD GR Veto +PQ +SE +ID 6644 +TI 1760667401.858223676 +UH 0 6 l 2141 10808 4 +UH 0 64 l 1873 0 5 +UH 0 2 h 2194 11474 4 +UH 0 64 h 1923 0 5 +BD GR Veto +PQ +SE +ID 6645 +TI 1760667401.858245849 +UH 0 15 l 2451 10894 4 +UH 0 16 l 1716 4565 0 +UH 0 30 l 1612 2290 0 +UH 0 31 l 1650 2302 0 +UH 0 54 h 1791 10678 4 +UH 0 55 h 2378 10243 4 +PQ +SE +ID 6646 +TI 1760667401.858276128 +UH 0 32 l 1652 3359 0 +UH 0 29 l 2468 11035 4 +UH 0 14 h 1573 4351 0 +UH 0 15 h 2371 11226 4 +UH 0 20 h 1628 4884 0 +PQ +SE +ID 6647 +TI 1760667401.858309030 +UH 0 64 l 3470 0 5 +UH 0 64 h 3399 0 5 +BD GR Veto +PQ +SE +ID 6648 +TI 1760667401.858317136 +UH 0 31 l 3310 10602 4 +UH 0 27 h 3354 11150 4 +PQ +SE +ID 6649 +TI 1760667401.858334779 +UH 0 64 l 2945 0 5 +UH 0 64 h 2948 0 5 +BD GR Veto +PQ +SE +ID 6650 +TI 1760667401.858342885 +UH 0 64 l 1694 0 5 +UH 0 64 h 2264 0 5 +BD GR Veto +PQ +SE +ID 6651 +TI 1760667401.858351945 +UH 0 6 l 1616 9286 4 +UH 0 7 l 4174 9294 4 +UH 0 19 l 2978 8947 4 +UH 0 32 h 4082 9311 4 +UH 0 22 h 2997 9514 4 +PQ +SE +ID 6652 +TI 1760667401.858385086 +UH 0 1 l 1803 10138 4 +UH 0 2 l 4001 9839 4 +UH 0 6 l 2000 9881 4 +UH 0 32 h 1936 9499 4 +UH 0 28 h 1643 9584 4 +UH 0 29 h 4069 9696 4 +UH 0 30 h 1564 10004 4 +PQ +SE +ID 6653 +TI 1760667401.858422994 +UH 0 32 l 2518 10427 4 +UH 0 33 l 1601 10247 4 +UH 0 56 h 1858 10396 4 +UH 0 57 h 2141 10494 4 +PQ +SE +ID 6654 +TI 1760667401.858445644 +UH 0 18 l 2020 10841 4 +UH 0 23 h 1891 11299 4 +UH 0 24 h 1614 4490 0 +PQ +SE +ID 6655 +TI 1760667401.882273197 +UH 0 57 l 1597 5217 0 +UH 0 61 l 1862 4728 0 +UH 0 62 l 1615 4779 0 +UH 0 38 h 1895 11068 4 +UH 0 43 h 1598 4633 0 +PQ +SE +ID 6656 +TI 1760667401.882334947 +UH 0 64 h 1783 0 5 +BD GR Veto +PQ +SE +ID 6657 +TI 1760667401.882341623 +UH 0 14 l 1717 5186 0 +UH 0 15 l 2078 10756 4 +UH 0 31 l 1600 2851 0 +UH 0 63 h 2168 11055 4 +PQ +SE +ID 6658 +TI 1760667401.882364988 +UH 0 49 l 1595 5216 0 +UH 0 50 l 1648 5351 0 +UH 0 51 l 1971 11024 4 +UH 0 23 h 2128 10678 4 +UH 0 24 h 1556 4932 0 +PQ +SE +ID 6659 +TI 1760667401.882389545 +UH 0 15 l 2040 10971 4 +UH 0 16 l 1823 11112 4 +UH 0 31 l 1608 2302 0 +UH 0 58 h 1621 4212 0 +UH 0 63 h 2185 10902 4 +PQ +SE +ID 6660 +TI 1760667401.882417678 +UH 0 64 l 2093 0 5 +UH 0 64 h 2121 0 5 +BD GR Veto +PQ +SE +ID 6661 +TI 1760667401.882426261 +UH 0 8 l 4347 9782 4 +UH 0 25 h 4081 10595 4 +UH 0 26 h 1588 10822 4 +PQ +SE +ID 6662 +TI 1760667401.882447242 +UH 0 52 l 1591 5384 0 +UH 0 53 l 1936 8932 4 +UH 0 54 l 3623 9055 4 +UH 0 60 h 4053 8777 4 +PQ +SE +ID 6663 +TI 1760667401.882470607 +UH 0 31 l 2230 10798 4 +UH 0 21 h 2252 11393 4 +PQ +SE +ID 6664 +TI 1760667401.882488250 +UH 0 21 l 2001 11190 4 +UH 0 64 l 2180 0 5 +UH 0 6 h 1635 5329 0 +UH 0 7 h 1905 11370 4 +UH 0 64 h 2221 0 5 +BD GR Veto +PQ +SE +ID 6665 +TI 1760667401.882514953 +UH 0 4 l 1593 9606 4 +UH 0 5 l 4113 9145 4 +UH 0 30 l 2117 9343 4 +UH 0 56 h 2103 9547 4 +UH 0 22 h 3397 9589 4 +UH 0 23 h 2172 9684 4 +PQ +SE +ID 6666 +TI 1760667401.882551193 +UH 0 48 l 1867 11270 4 +UH 0 57 h 1937 11496 4 +PQ +SE +ID 6667 +TI 1760667401.882569551 +UH 0 41 l 1887 10963 4 +UH 0 42 l 2166 10949 4 +UH 0 20 l 1846 10486 4 +UH 0 21 l 3947 10810 4 +UH 0 25 l 1672 4661 0 +UH 0 26 l 1972 10906 4 +UH 0 38 h 2607 10769 4 +UH 0 41 h 1928 10996 4 +UH 0 44 h 1603 4673 0 +UH 0 50 h 1757 10775 4 +UH 0 51 h 3947 10785 4 +PQ +SE +ID 6668 +TI 1760667401.882640123 +UH 0 54 l 2896 11009 4 +UH 0 6 h 2788 10708 4 +UH 0 7 h 1766 10755 4 +PQ +SE +ID 6669 +TI 1760667401.882660388 +UH 0 64 l 1720 0 5 +UH 0 64 h 1794 0 5 +BD GR Veto +PQ +SE +ID 6670 +TI 1760667401.882668256 +UH 0 37 l 2557 10544 4 +UH 0 18 h 2589 11230 4 +PQ +SE +ID 6671 +TI 1760667401.882684946 +UH 0 32 l 1793 5039 0 +UH 0 52 h 1739 11572 4 +PQ +SE +ID 6672 +TI 1760667401.882701635 +UH 0 64 l 3708 0 5 +UH 0 64 h 3865 0 5 +BD GR Veto +PQ +SE +ID 6673 +TI 1760667401.882710218 +UH 0 14 l 2514 10707 4 +UH 0 29 l 3141 10765 4 +UH 0 30 l 2340 11126 4 +UH 0 46 h 2455 10993 4 +UH 0 47 h 3900 10896 4 +PQ +SE +ID 6674 +TI 1760667401.882739305 +UH 0 41 l 3094 10389 4 +UH 0 45 l 1544 5274 0 +UH 0 46 l 2556 10027 4 +UH 0 6 h 3164 10521 4 +UH 0 7 h 2586 10572 4 +UH 0 8 h 1727 10969 4 +PQ +SE +ID 6675 +TI 1760667401.882770538 +UH 0 38 l 1592 5162 0 +UH 0 41 l 2150 11061 4 +UH 0 31 l 1727 5030 0 +UH 0 16 h 1650 11240 4 +UH 0 17 h 2189 11105 4 +UH 0 20 h 1745 5021 0 +PQ +SE +ID 6676 +TI 1760667401.882813453 +UH 0 3 l 1811 11276 4 +UH 0 26 h 1833 11656 4 +PQ +SE +ID 6677 +TI 1760667401.882830858 +UH 0 40 l 1528 8834 4 +UH 0 41 l 3703 9059 4 +UH 0 42 l 3405 8742 4 +UH 0 43 l 1533 8894 4 +UH 0 53 h 1643 9022 4 +UH 0 54 h 3418 9064 4 +UH 0 55 h 1798 8763 4 +UH 0 56 h 3469 8965 4 +PQ +SE +ID 6678 +TI 1760667401.882868766 +UH 0 59 l 1654 10697 4 +UH 0 60 l 2971 10320 4 +UH 0 39 h 3152 10860 4 +PQ +SE +ID 6679 +TI 1760667401.882888555 +UH 0 12 l 1773 10186 4 +UH 0 13 l 2861 10563 4 +UH 0 55 h 3083 10157 4 +PQ +SE +ID 6680 +TI 1760667401.882908582 +UH 0 55 l 2839 8665 4 +UH 0 56 l 1552 5446 0 +UH 0 58 l 1583 8571 4 +UH 0 59 l 4241 8880 4 +UH 0 10 h 4230 9527 4 +UH 0 14 h 1648 9532 4 +UH 0 15 h 2801 9505 4 +PQ +SE +ID 6681 +TI 1760667401.882950067 +UH 0 3 l 1716 5216 0 +PQ +SE +ID 6682 +TI 1760667401.882961750 +UH 0 56 l 1666 8905 4 +UH 0 57 l 3585 8536 4 +UH 0 58 l 1591 8488 4 +UH 0 59 l 3386 8751 4 +UH 0 32 h 3590 8594 4 +UH 0 33 h 1616 8402 4 +UH 0 34 h 3272 8478 4 +PQ +SE +ID 6683 +TI 1760667401.883008480 +UH 0 51 l 2999 10864 4 +UH 0 3 h 3030 10863 4 +PQ +SE +ID 6684 +TI 1760667401.883033275 +UH 0 26 l 2022 11276 4 +UH 0 27 l 5100 10667 4 +UH 0 28 l 1758 11068 4 +UH 0 32 h 3059 10524 4 +UH 0 30 h 1939 11165 4 +UH 0 31 h 3575 10407 4 +PQ +SE +ID 6685 +TI 1760667401.883060693 +UH 0 34 l 3887 10154 4 +UH 0 4 h 3866 11425 4 +PQ +SE +ID 6686 +TI 1760667401.883078575 +UH 0 47 l 3355 10770 4 +UH 0 48 l 1733 10977 4 +UH 0 59 l 1566 3280 0 +UH 0 60 l 1581 2013 0 +UH 0 61 l 1670 2569 0 +UH 0 62 l 1640 2046 0 +UH 0 63 l 1624 2301 0 +UH 0 64 l 3419 0 5 +UH 0 38 h 3684 10932 4 +UH 0 64 h 3357 0 5 +BD GR Veto +PQ +SE +ID 6687 +TI 1760667401.883118152 +UH 0 64 l 2802 0 5 +UH 0 64 h 3409 0 5 +BD GR Veto +PQ +SE +ID 6688 +TI 1760667401.883125543 +UH 0 57 l 1538 8544 4 +UH 0 58 l 2034 8220 4 +UH 0 59 l 5105 8322 4 +UH 0 60 l 1600 8204 4 +UH 0 61 l 1649 4963 0 +UH 0 42 h 5646 8526 4 +PQ +SE +ID 6689 +TI 1760667401.883153676 +UH 0 9 l 2834 10933 4 +UH 0 20 h 2323 11020 4 +UH 0 21 h 1996 11310 4 +PQ +SE +ID 6690 +TI 1760667401.883173942 +UH 0 64 l 2076 0 5 +UH 0 64 h 2088 0 5 +BD GR Veto +PQ +SE +ID 6691 +TI 1760667401.883181810 +UH 0 15 l 2502 10399 4 +UH 0 30 l 1619 1568 0 +UH 0 31 l 1652 2507 0 +UH 0 5 h 2408 11363 4 +PQ +SE +ID 6692 +TI 1760667401.883206605 +UH 0 20 l 1729 9673 4 +UH 0 21 l 4188 9960 4 +UH 0 4 h 4235 10775 4 +PQ +SE +ID 6693 +TI 1760667401.883226156 +UH 0 40 l 1602 4450 0 +UH 0 41 l 1680 5211 0 +UH 0 2 h 1950 11609 4 +PQ +SE +ID 6694 +TI 1760667401.883245706 +UH 0 59 l 2319 10349 4 +UH 0 19 h 2290 11376 4 +PQ +SE +ID 6695 +TI 1760667401.883262872 +UH 0 56 l 3196 10608 4 +UH 0 57 l 1684 10427 4 +UH 0 15 h 3395 11336 4 +PQ +SE +ID 6696 +TI 1760667401.883283376 +UH 0 37 l 2268 10776 4 +UH 0 38 l 2220 10739 4 +UH 0 37 h 3023 11394 4 +PQ +SE +ID 6697 +TI 1760667401.883304357 +UH 0 30 l 3652 11411 4 +UH 0 43 h 3563 10896 4 +PQ +SE +ID 6698 +TI 1760667401.883322715 +UH 0 50 l 1680 5346 0 +UH 0 9 h 1691 5445 0 +PQ +SE +ID 6699 +TI 1760667401.883341550 +UH 0 37 l 1776 10826 4 +UH 0 38 l 3088 10676 4 +UH 0 14 h 3330 11097 4 +PQ +SE +ID 6700 +TI 1760667401.883362770 +UH 0 47 l 1983 10490 4 +UH 0 48 l 2148 10614 4 +UH 0 26 l 1769 5613 0 +UH 0 27 l 2295 10864 4 +UH 0 28 l 1629 2631 0 +UH 0 2 h 1670 4398 0 +UH 0 4 h 3111 11534 4 +UH 0 6 h 1730 11023 4 +UH 0 7 h 1809 10995 4 +PQ +SE +ID 6701 +TI 1760667401.883408784 +UH 0 10 l 2063 10832 4 +UH 0 11 l 1710 5077 0 +UH 0 15 h 2092 11473 4 +PQ +SE +ID 6702 +TI 1760667401.883432865 +UH 0 0 l 2761 10737 4 +UH 0 1 l 3090 11273 4 +UH 0 40 h 2572 10992 4 +UH 0 41 h 2001 11259 4 +UH 0 44 h 2738 10909 4 +PQ +SE +ID 6703 +TI 1760667401.883460044 +UH 0 22 l 2405 10936 4 +UH 0 23 h 2400 11197 4 +PQ +SE +ID 6704 +TI 1760667401.883478641 +UH 0 25 l 2540 11277 4 +UH 0 30 h 2436 11291 4 +PQ +SE +ID 6705 +TI 1760667401.883496284 +UH 0 49 l 1985 11027 4 +UH 0 35 h 2041 10356 4 +PQ +SE +ID 6706 +TI 1760667401.883514404 +UH 0 19 l 2837 10529 4 +UH 0 20 l 3017 10193 4 +UH 0 1 h 4253 11203 4 +PQ +SE +ID 6707 +TI 1760667401.883534431 +UH 0 64 l 2077 0 5 +UH 0 64 h 2119 0 5 +BD GR Veto +PQ +SE +ID 6708 +TI 1760667401.883542537 +UH 0 48 l 1758 11181 4 +UH 0 49 l 2665 11126 4 +UH 0 35 h 2085 10499 4 +UH 0 36 h 1752 4548 0 +UH 0 28 h 2330 11115 4 +PQ +SE +ID 6709 +TI 1760667401.883571863 +UH 0 16 l 2266 9681 4 +UH 0 18 l 1963 9473 4 +UH 0 21 l 2969 9899 4 +UH 0 22 l 3066 9555 4 +UH 0 32 h 2856 9717 4 +UH 0 33 h 2262 9231 4 +UH 0 27 h 1969 9713 4 +UH 0 30 h 2974 9986 4 +UH 0 31 h 1577 9586 4 +PQ +SE +ID 6710 +TI 1760667401.883623600 +UH 0 64 l 5551 0 5 +UH 0 64 h 5398 0 5 +BD GR Veto +PQ +SE +ID 6711 +TI 1760667401.883631706 +UH 0 33 l 1587 8390 4 +UH 0 34 l 4484 8408 4 +UH 0 35 l 1558 8713 4 +UH 0 1 h 1663 9128 4 +UH 0 2 h 4584 9120 4 +PQ +SE +ID 6712 +TI 1760667401.883656263 +UH 0 18 l 2066 10806 4 +UH 0 2 h 2073 11063 4 +UH 0 3 h 1644 4551 0 +PQ +SE +ID 6713 +TI 1760667401.883676767 +UH 0 48 l 3446 10962 4 +UH 0 61 h 3455 10845 4 +PQ +SE +ID 6714 +TI 1760667401.883694410 +UH 0 49 l 3000 10868 4 +UH 0 50 l 1721 10880 4 +UH 0 13 h 3231 11230 4 +PQ +SE +ID 6715 +TI 1760667401.883714199 +UH 0 64 l 2758 0 5 +UH 0 64 h 2743 0 5 +BD GR Veto +PQ +SE +ID 6716 +TI 1760667401.883722543 +UH 0 64 h 1783 0 5 +BD GR Veto +PQ +SE +ID 6717 +TI 1760667401.883728027 +UH 0 8 l 1824 5317 0 +UH 0 9 h 1758 11312 4 +PQ +SE +ID 6718 +TI 1760667401.883745908 +UH 0 35 l 2077 10099 4 +UH 0 17 l 3638 9708 4 +UH 0 18 l 1616 9725 4 +UH 0 58 h 3608 9681 4 +UH 0 60 h 2081 9357 4 +PQ +SE +ID 6719 +TI 1760667401.902399539 +UH 0 33 l 2578 10367 4 +UH 0 29 h 2430 11224 4 +UH 0 30 h 1637 5449 0 +PQ +SE +ID 6720 +TI 1760667401.902471780 +UH 0 25 l 3097 11164 4 +UH 0 12 h 1767 11053 4 +UH 0 13 h 2752 11069 4 +PQ +SE +ID 6721 +TI 1760667401.902511835 +UH 0 61 l 1990 10626 4 +UH 0 64 l 2308 0 5 +UH 0 49 h 1650 4488 0 +UH 0 50 h 1849 10778 4 +UH 0 64 h 2306 0 5 +BD GR Veto +PQ +SE +ID 6722 +TI 1760667401.902562856 +UH 0 64 l 1875 0 5 +UH 0 64 h 1926 0 5 +BD GR Veto +PQ +SE +ID 6723 +TI 1760667401.902577638 +UH 0 19 l 2950 10708 4 +UH 0 20 l 1867 4894 0 +UH 0 21 l 1952 10673 4 +UH 0 5 h 2424 11258 4 +UH 0 6 h 2677 11165 4 +PQ +SE +ID 6724 +TI 1760667401.902631282 +UH 0 64 l 5656 0 5 +UH 0 64 h 5375 0 5 +BD GR Veto +PQ +SE +ID 6725 +TI 1760667401.902645826 +UH 0 20 l 1702 5232 0 +UH 0 13 h 1621 5524 0 +PQ +SE +ID 6726 +TI 1760667401.902684211 +UH 0 57 l 1535 8648 4 +UH 0 58 l 3670 8365 4 +UH 0 59 l 3485 8573 4 +UH 0 22 h 1690 8689 4 +UH 0 23 h 5620 8626 4 +UH 0 24 h 1572 8712 4 +PQ +SE +ID 6727 +TI 1760667401.902736902 +UH 0 64 l 2143 0 5 +UH 0 64 h 3278 0 5 +BD GR Veto +PQ +SE +ID 6728 +TI 1760667401.902752161 +UH 0 55 l 2617 10449 4 +UH 0 57 l 2022 10727 4 +UH 0 14 h 1681 11460 4 +UH 0 15 h 2542 11449 4 +UH 0 22 h 2081 10776 4 +UH 0 23 h 1602 4884 0 +PQ +SE +ID 6729 +TI 1760667401.902819156 +UH 0 7 l 3920 10788 4 +UH 0 8 l 2523 10758 4 +UH 0 64 l 2314 0 5 +UH 0 0 h 2899 11204 4 +UH 0 1 h 3032 11245 4 +UH 0 2 h 2058 11318 4 +UH 0 64 h 2364 0 5 +BD GR Veto +PQ +SE +ID 6730 +TI 1760667401.902858972 +UH 0 0 l 1687 5015 0 +UH 0 7 l 2285 10890 4 +UH 0 8 l 1804 5326 0 +UH 0 32 h 2026 11039 4 +UH 0 39 h 1742 4504 0 +UH 0 31 h 1906 10892 4 +PQ +SE +ID 6731 +TI 1760667401.902894258 +UH 0 33 l 2493 10411 4 +UH 0 29 h 2479 11152 4 +PQ +SE +ID 6732 +TI 1760667401.902911901 +UH 0 36 l 1778 5075 0 +UH 0 38 l 1895 11030 4 +UH 0 22 h 2011 11242 4 +UH 0 23 h 1752 11240 4 +PQ +SE +ID 6733 +TI 1760667401.902936935 +UH 0 5 l 1996 11022 4 +UH 0 32 h 1646 11313 4 +UH 0 33 h 1727 10927 4 +PQ +SE +ID 6734 +TI 1760667401.902954816 +UH 0 52 l 2390 10849 4 +UH 0 53 l 1726 10831 4 +UH 0 54 l 1904 10924 4 +UH 0 55 l 1932 10663 4 +UH 0 40 h 2531 10407 4 +UH 0 41 h 2447 10775 4 +PQ +SE +ID 6735 +TI 1760667401.902981281 +UH 0 15 l 4326 9441 4 +UH 0 26 l 1766 1629 0 +UH 0 27 l 1744 1588 0 +UH 0 28 l 1763 1480 0 +UH 0 29 l 1597 6979 0 +UH 0 30 l 2101 9860 4 +UH 0 31 l 2681 9714 4 +UH 0 5 h 2189 9539 4 +UH 0 6 h 3559 9474 4 +UH 0 7 h 1634 9575 4 +UH 0 16 h 2799 9660 4 +UH 0 17 h 1560 9588 4 +PQ +SE +ID 6736 +TI 1760667401.903034210 +UH 0 27 l 2898 10869 4 +UH 0 13 h 2772 10862 4 +UH 0 14 h 1625 11052 4 +PQ +SE +ID 6737 +TI 1760667401.903053760 +UH 0 28 l 2951 11232 4 +UH 0 30 l 2071 10942 4 +UH 0 17 h 3214 11347 4 +PQ +SE +ID 6738 +TI 1760667401.903075933 +UH 0 64 l 4137 0 5 +UH 0 64 h 3998 0 5 +BD GR Veto +PQ +SE +ID 6739 +TI 1760667401.903083324 +UH 0 1 l 1627 10645 4 +UH 0 2 l 3042 10219 4 +UH 0 6 h 2189 10567 4 +UH 0 7 h 2464 10642 4 +PQ +SE +ID 6740 +TI 1760667401.903106212 +UH 0 38 l 1977 11041 4 +UH 0 57 h 1715 11116 4 +UH 0 58 h 1840 10787 4 +PQ +SE +ID 6741 +TI 1760667401.903126478 +UH 0 0 l 4894 8724 4 +UH 0 64 l 2263 0 5 +UH 0 46 h 1581 8512 4 +UH 0 47 h 5054 8325 4 +UH 0 48 h 2125 8545 4 +UH 0 64 h 1670 0 5 +BD GR Veto +PQ +SE +ID 6742 +TI 1760667401.903151273 +UH 0 64 l 3443 0 5 +UH 0 64 h 3414 0 5 +BD GR Veto +PQ +SE +ID 6743 +TI 1760667401.903159379 +UH 0 45 l 1552 8595 4 +UH 0 46 l 4019 8488 4 +UH 0 38 h 4153 9119 4 +PQ +SE +ID 6744 +TI 1760667401.903179168 +UH 0 20 l 2025 10886 4 +UH 0 55 h 2050 11048 4 +PQ +SE +ID 6745 +TI 1760667401.903198003 +UH 0 58 l 1603 5108 0 +UH 0 59 l 2217 10703 4 +UH 0 8 l 3423 10349 4 +UH 0 54 h 1721 4711 0 +UH 0 55 h 2216 10547 4 +UH 0 61 h 3360 11039 4 +PQ +SE +ID 6746 +TI 1760667401.903234958 +UH 0 1 l 1630 8929 4 +UH 0 2 l 2562 8649 4 +UH 0 3 l 4657 8415 4 +UH 0 4 l 1606 8829 4 +UH 0 5 l 1644 4850 0 +UH 0 26 h 5453 9557 4 +PQ +SE +ID 6747 +TI 1760667401.903260946 +UH 0 41 l 1507 8620 4 +UH 0 42 l 4465 8472 4 +UH 0 43 l 1519 8694 4 +UH 0 31 h 4462 8799 4 +PQ +SE +ID 6748 +TI 1760667401.903283119 +UH 0 7 l 1693 4750 0 +UH 0 8 l 1683 4606 0 +UH 0 56 h 1774 11367 4 +PQ +SE +ID 6749 +TI 1760667401.903302907 +UH 0 46 l 2897 10367 4 +UH 0 52 l 2768 10679 4 +UH 0 53 l 2973 10590 4 +UH 0 34 h 4014 10526 4 +UH 0 30 h 2915 11414 4 +PQ +SE +ID 6750 +TI 1760667401.903336763 +UH 0 55 l 3090 9019 4 +UH 0 56 l 3950 9146 4 +UH 0 57 l 1537 8994 4 +UH 0 21 h 4409 9209 4 +UH 0 22 h 2723 9002 4 +PQ +SE +ID 6751 +TI 1760667401.903361082 +UH 0 28 l 4309 10978 4 +UH 0 29 l 3029 10887 4 +UH 0 42 h 2945 10277 4 +UH 0 43 h 1885 10616 4 +UH 0 48 h 2747 10412 4 +UH 0 49 h 2698 10386 4 +PQ +SE +ID 6752 +TI 1760667401.903393983 +UH 0 52 l 2435 10812 4 +UH 0 64 l 1666 0 5 +UH 0 28 h 2461 10693 4 +UH 0 64 h 2064 0 5 +BD GR Veto +PQ +SE +ID 6753 +TI 1760667401.903416395 +UH 0 0 l 4128 8976 4 +UH 0 1 l 1659 9399 4 +UH 0 24 h 4062 9655 4 +PQ +SE +ID 6754 +TI 1760667401.903434038 +UH 0 64 l 2076 0 5 +UH 0 0 h 1631 5576 0 +UH 0 64 h 2056 0 5 +BD GR Veto +PQ +SE +ID 6755 +TI 1760667401.903446435 +UH 0 3 l 1665 5188 0 +UH 0 32 h 1625 4602 0 +PQ +SE +ID 6756 +TI 1760667401.903461933 +UH 0 21 l 2725 11059 4 +UH 0 39 h 2167 10355 4 +UH 0 40 h 2130 10372 4 +PQ +SE +ID 6757 +TI 1760667401.903481483 +UH 0 57 l 1577 4178 0 +UH 0 58 l 2587 10539 4 +UH 0 30 h 2112 10909 4 +UH 0 31 h 2064 10280 4 +PQ +SE +ID 6758 +TI 1760667401.903501272 +UH 0 23 l 2320 10408 4 +UH 0 28 h 2247 11128 4 +PQ +SE +ID 6759 +TI 1760667401.903519392 +UH 0 33 l 4357 8891 4 +UH 0 34 l 2212 9082 4 +UH 0 35 l 2073 9022 4 +UH 0 24 h 1558 9227 4 +UH 0 25 h 4221 9202 4 +UH 0 26 h 2710 9414 4 +PQ +SE +ID 6760 +TI 1760667401.903545141 +UH 0 44 l 1710 10963 4 +UH 0 48 h 1673 4721 0 +UH 0 49 h 1633 4136 0 +PQ +SE +ID 6761 +TI 1760667401.903564691 +UH 0 44 l 2357 10823 4 +UH 0 11 h 2452 11006 4 +PQ +SE +ID 6762 +TI 1760667401.903582572 +UH 0 64 l 2570 0 5 +UH 0 52 h 1819 11085 4 +UH 0 64 h 2334 0 5 +BD GR Veto +PQ +SE +ID 6763 +TI 1760667401.903597593 +UH 0 42 l 2380 10444 4 +UH 0 30 l 2041 10691 4 +UH 0 31 l 3350 10498 4 +UH 0 19 h 4513 11262 4 +PQ +SE +ID 6764 +TI 1760667401.903624296 +UH 0 25 l 2048 11102 4 +UH 0 46 h 1978 11292 4 +PQ +SE +ID 6765 +TI 1760667401.903642892 +UH 0 22 l 3655 10784 4 +UH 0 44 h 1595 10294 4 +UH 0 45 h 3476 10433 4 +PQ +SE +ID 6766 +TI 1760667401.903662443 +UH 0 64 l 4605 0 5 +UH 0 64 h 4417 0 5 +BD GR Veto +PQ +SE +ID 6767 +TI 1760667401.903670072 +UH 0 49 l 2289 10958 4 +UH 0 8 h 2355 11235 4 +PQ +SE +ID 6768 +TI 1760667401.903687238 +UH 0 27 l 2941 10523 4 +UH 0 52 h 1691 11182 4 +UH 0 53 h 2744 10978 4 +PQ +SE +ID 6769 +TI 1760667401.903706550 +UH 0 16 l 1852 4741 0 +UH 0 17 l 1717 4647 0 +UH 0 26 h 2030 11630 4 +PQ +SE +ID 6770 +TI 1760667401.903726339 +UH 0 13 l 2125 10878 4 +UH 0 14 l 2244 10816 4 +UH 0 15 l 1859 5183 0 +UH 0 55 h 2490 10880 4 +UH 0 58 h 2139 10945 4 +PQ +SE +ID 6771 +TI 1760667401.903755426 +UH 0 35 l 3089 9939 4 +UH 0 36 l 1759 9752 4 +UH 0 7 h 3364 10635 4 +UH 0 8 h 1620 11051 4 +PQ +SE +ID 6772 +TI 1760667401.903778553 +UH 0 36 l 2130 10653 4 +UH 0 44 h 2105 10756 4 +PQ +SE +ID 6773 +TI 1760667401.903796434 +UH 0 13 l 2697 10547 4 +UH 0 14 l 1690 10387 4 +UH 0 15 l 2547 10244 4 +UH 0 17 l 1661 4446 0 +UH 0 18 l 1587 4038 0 +UH 0 20 l 1690 3363 0 +UH 0 30 l 1628 2688 0 +UH 0 31 l 1723 1591 0 +UH 0 34 h 3555 10142 4 +UH 0 38 h 1754 4110 0 +UH 0 39 h 1655 3826 0 +PQ +SE +ID 6774 +TI 1760667401.903847217 +UH 0 39 l 2672 10820 4 +UH 0 19 h 2591 10971 4 +PQ +SE +ID 6775 +TI 1760667401.903864860 +UH 0 41 l 2661 10700 4 +UH 0 42 l 2093 10721 4 +UH 0 52 l 2291 10637 4 +UH 0 7 h 2316 10989 4 +UH 0 17 h 3126 11106 4 +PQ +SE +ID 6776 +TI 1760667401.903902530 +UH 0 16 l 1608 5107 0 +UH 0 17 l 2229 10737 4 +UH 0 6 h 2287 11360 4 +PQ +SE +ID 6777 +TI 1760667401.903921842 +UH 0 64 l 1804 0 5 +UH 0 64 h 2883 0 5 +BD GR Veto +PQ +SE +ID 6778 +TI 1760667401.903930187 +UH 0 33 l 2851 8998 4 +UH 0 22 l 3123 9190 4 +UH 0 9 h 2868 9156 4 +UH 0 10 h 1941 9490 4 +UH 0 11 h 2713 9277 4 +UH 0 12 h 1534 9245 4 +PQ +SE +ID 6779 +TI 1760667401.903962850 +UH 0 0 l 4077 10813 4 +UH 0 44 h 2221 10428 4 +UH 0 45 h 2570 10696 4 +UH 0 48 h 2204 10464 4 +UH 0 49 h 1585 3496 0 +PQ +SE +ID 6780 +TI 1760667401.903989791 +UH 0 50 l 4120 10723 4 +UH 0 33 h 3662 10016 4 +UH 0 36 h 1926 10426 4 +PQ +SE +ID 6781 +TI 1760667401.904014110 +UH 0 23 l 2809 10425 4 +UH 0 10 h 2678 11501 4 +PQ +SE +ID 6782 +TI 1760667401.904031515 +UH 0 64 h 1688 0 5 +BD GR Veto +PQ +SE +ID 6783 +TI 1760667401.922300577 +UH 0 7 l 2163 10278 4 +UH 0 8 l 1919 10286 4 +UH 0 64 l 2462 0 5 +UH 0 0 h 3414 11176 4 +UH 0 64 h 1669 0 5 +BD GR Veto +PQ +SE +ID 6784 +TI 1760667401.922360420 +UH 0 43 l 1898 11164 4 +UH 0 62 h 2026 11052 4 +PQ +SE +ID 6785 +TI 1760667401.922379732 +UH 0 11 l 1709 10284 4 +UH 0 12 l 1835 10154 4 +UH 0 13 l 4168 10512 4 +UH 0 26 h 4246 11073 4 +PQ +SE +ID 6786 +TI 1760667401.922404766 +UH 0 47 l 1627 4376 0 +UH 0 49 l 2187 10896 4 +UH 0 37 h 2340 10716 4 +UH 0 38 h 1644 4245 0 +PQ +SE +ID 6787 +TI 1760667401.922431468 +UH 0 64 l 2579 0 5 +UH 0 64 h 2593 0 5 +BD GR Veto +PQ +SE +ID 6788 +TI 1760667401.922440052 +UH 0 57 l 1973 10895 4 +UH 0 52 h 1992 11385 4 +PQ +SE +ID 6789 +TI 1760667401.922459363 +UH 0 49 l 2781 10774 4 +UH 0 50 l 1816 10730 4 +UH 0 10 h 3113 11468 4 +PQ +SE +ID 6790 +TI 1760667401.922481298 +UH 0 51 l 1659 5173 0 +UH 0 53 l 1771 5362 0 +UH 0 2 h 1645 3828 0 +UH 0 3 h 1798 11376 4 +PQ +SE +ID 6791 +TI 1760667401.922507286 +UH 0 17 l 3282 10484 4 +UH 0 21 h 2363 11284 4 +UH 0 23 h 1629 5023 0 +UH 0 24 h 1557 3261 0 +UH 0 25 h 2243 11371 4 +PQ +SE +ID 6792 +TI 1760667401.922535657 +UH 0 29 l 3394 10023 4 +UH 0 30 l 1669 10446 4 +UH 0 16 h 1603 4003 0 +UH 0 17 h 3065 10842 4 +UH 0 18 h 1770 10762 4 +PQ +SE +ID 6793 +TI 1760667401.922570943 +UH 0 39 l 2758 10750 4 +UH 0 59 h 2596 10798 4 +UH 0 60 h 1593 10599 4 +UH 0 61 h 1588 5005 0 +PQ +SE +ID 6794 +TI 1760667401.922602415 +UH 0 28 l 2020 11224 4 +UH 0 45 h 1949 11437 4 +PQ +SE +ID 6795 +TI 1760667401.922621726 +UH 0 22 l 1621 8613 4 +UH 0 23 l 4162 8512 4 +UH 0 24 l 1676 8746 4 +UH 0 12 h 1536 9228 4 +UH 0 13 h 4028 9209 4 +PQ +SE +ID 6796 +TI 1760667401.922647953 +UH 0 20 l 3885 10170 4 +UH 0 21 l 1880 10693 4 +UH 0 26 h 2554 11365 4 +UH 0 27 h 3087 11134 4 +PQ +SE +ID 6797 +TI 1760667401.922671556 +UH 0 64 l 5701 0 5 +UH 0 64 h 5431 0 5 +BD GR Veto +PQ +SE +ID 6798 +TI 1760667401.922680139 +UH 0 64 l 3507 0 5 +UH 0 64 h 3485 0 5 +BD GR Veto +PQ +SE +ID 6799 +TI 1760667401.922688245 +UH 0 55 l 1708 10893 4 +UH 0 56 l 2310 10982 4 +UH 0 55 h 2210 10933 4 +UH 0 58 h 2022 10914 4 +PQ +SE +ID 6800 +TI 1760667401.922718286 +UH 0 12 l 2436 10565 4 +UH 0 23 h 2320 11095 4 +PQ +SE +ID 6801 +TI 1760667401.922741174 +UH 0 32 l 3814 10543 4 +UH 0 17 l 2952 10760 4 +UH 0 22 l 2021 10458 4 +UH 0 7 h 3222 11228 4 +UH 0 8 h 2179 11601 4 +UH 0 10 h 2948 11142 4 +UH 0 12 h 1844 11079 4 +UH 0 13 h 1642 4376 0 +PQ +SE +ID 6802 +TI 1760667401.922789096 +UH 0 64 l 1867 0 5 +UH 0 64 h 2419 0 5 +BD GR Veto +PQ +SE +ID 6803 +TI 1760667401.922797679 +UH 0 4 l 1740 5151 0 +UH 0 11 h 1770 5507 0 +PQ +EN + + diff --git a/resource/unittestdata/542-1/hdf5-to-tra.nuclearizer.cfg b/resource/unittestdata/542-1/hdf5-to-tra.nuclearizer.cfg new file mode 100644 index 00000000..c7e75bdd --- /dev/null +++ b/resource/unittestdata/542-1/hdf5-to-tra.nuclearizer.cfg @@ -0,0 +1,60 @@ + + 1 + + XmlTagMeasurementLoaderHDF + EnergyCalibration + XmlTagTACcut + XmlTagStripPairingMultiRoundChiSquare + DepthCalibration + XmlTagRevan + XmlTagEventSaver + + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.simplified.geo.setup + + + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.gse_20251016T191639.hdf5 + true + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.stripmap.map + false + + + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.full.ecal + 1 + 20 + + 100 + -1000 + + + + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.coeffs.csv + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.splines.csv + false + + false + + + $(NUCLEARIZER)/resource/unittestdata/542-1/hdf5-to-tra.tra + 3 + true + true + false + false + 600 + true + true + false + false + true + false + true + + + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.revan.cfg + + + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.taccal.csv + $(NUCLEARIZER)/resource/unittestdata/542-1/hp52542-1.taccut.csv + + + diff --git a/resource/unittestdata/542-1/hdf5-to-tra.reference.tra b/resource/unittestdata/542-1/hdf5-to-tra.reference.tra new file mode 100644 index 00000000..08e40e1d --- /dev/null +++ b/resource/unittestdata/542-1/hdf5-to-tra.reference.tra @@ -0,0 +1,54606 @@ + +Version 1 +TYPE TRA + +SE +ET PH +ID 1 +TI 1760667399.582988500 +CC NStripHits 4 +PE 460.202 +PP 1.79236 -0.51757 -3.14452 +PW 0 +SE +ET UN +ID 2 +TI 1760667399.583013296 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.4812 +SE +ID 3 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.359828) +BD GR Veto +PQ +SE +ET PH +ID 4 +TI 1760667399.583040952 +CC NStripHits 3 +PE 480.584 +PP -0.419359 0.142298 -4.6578 +PW 0 +SE +ET PH +ID 5 +TI 1760667399.583059787 +CC NStripHits 2 +PE 356.65 +PP 4.3533 0.277649 0.231266 +PW 0 +SE +ET CO +ID 6 +TI 1760667399.583075284 +CC NStripHits 4 +PQ 25.7 +SQ 2 +CT 0 1 +TL 1 +TE 55.6932 +CE 136.669 1.37268 55.6932 1.34271 +CD 2.84002 -0.356937 -0.350766 0.0336036 0.0227757 0.0336036 1.79236 -0.615483 0.464078 0.0336036 0.0214236 0.0336036 0 0 0 0 0 0 +LA 1.35219 +SE +ET PH +ID 7 +TI 1760667399.583118438 +CC NStripHits 3 +PE 173.8 +PP -0.652172 -0.00431176 2.32658 +PW 0 +SE +ET PH +ID 8 +TI 1760667399.583141326 +CC NStripHits 2 +PE 125.518 +PP 0.628297 -0.190877 -3.14452 +PW 0 +SE +ET PH +ID 9 +TI 1760667399.583159923 +CC NStripHits 2 +PE 362.486 +PP 4.12048 0.363644 -2.9117 +PW 0 +SE +ID 10 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 4.514090) +BD GR Veto +PQ 0.142645 +SE +ID 11 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.152679)) (GR Hit: Detector ID 0 and Energy 112.231759) +BD GR Veto +PQ 27.1527 +SE +ET PH +ID 12 +TI 1760667399.583209276 +CC NStripHits 2 +PE 112.997 +PP 2.02517 0.36938 -3.49373 +PW 0 +SE +ET PH +ID 13 +TI 1760667399.583227396 +CC NStripHits 2 +PE 106.014 +PP 3.18923 -1.15915 1.74455 +PW 0 +SE +ET PH +ID 14 +TI 1760667399.583245038 +CC NStripHits 3 +PE 357.105 +PP -2.39827 -0.575048 -3.84295 +PW 0 +SE +ID 15 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.040351) +BD GR Veto +PQ 10.9505 +SE +ID 16 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (38.537228)) (GR Hit: Detector ID 0 and Energy 91.010101) +BD GR Veto +PQ 38.5372 +SE +ET CO +ID 17 +TI 1760667399.583298206 +CC NStripHits 5 +PQ 11.0412 +SQ 2 +CT 0 1 +TL 1 +TE 74.2793 +CE 380.234 1.39996 74.2793 1.80528 +CD 0.395484 -0.465453 1.86095 0.0336036 0.0219758 0.0336036 0.744703 -0.72545 1.39533 0.0336036 0.020658 0.0336036 0 0 0 0 0 0 +LA 0.637459 +SE +ET PH +ID 18 +TI 1760667399.583342790 +CC NStripHits 2 +PE 70.2692 +PP 1.44314 -1.06004 2.55939 +PW 0 +SE +ET PH +ID 19 +TI 1760667399.583360195 +CC NStripHits 5 +PE 416.5 +PP -1.46702 -0.840763 0.464078 +PW 0 +SE +ET PH +ID 20 +TI 1760667399.583404064 +CC NStripHits 3 +PE 145.217 +PP -1.00139 0.253758 1.27892 +PW 0 +SE +ID 21 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.864695) (Strip hit removed with energy 15.250027) +BD GR Veto +PQ +SE +ET UN +ID 22 +TI 1760667399.583431959 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 23 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 238.639663) +BD GR Veto +PQ 14.6683 +SE +ET PH +ID 24 +TI 1760667399.583472728 +CC NStripHits 2 +PE 277.22 +PP 2.4908 0.282873 1.86095 +PW 0 +SE +ET CO +ID 25 +TI 1760667399.583502531 +CC NStripHits 6 +PQ 37.6949 +SQ 3 +CT 0.0216311 0.262453 +TL 1 +TE 71.004 +CE 279.634 1.96634 71.004 1.29644 +CD 3.18923 0.352383 -4.54139 0.0336036 0.0303038 0.0336036 3.65486 0.133383 -4.07577 0.0336036 0.0268256 0.0336036 0 0 0 0 0 0 +LA 0.191879 +SE +ET CO +ID 26 +TI 1760667399.583540678 +CC NStripHits 6 +PQ 29.623 +SQ 2 +CT 0 1 +TL 1 +TE 52.7792 +CE 315.633 1.92377 52.7792 1.31719 +CD -0.302953 0.116396 -2.7953 0.0336036 0.0264775 0.0336036 -0.535766 -0.658951 -3.14452 0.0336036 0.0212348 0.0336036 0 0 0 0 0 0 +LA 0.881657 +SE +ET UN +ID 27 +TI 1760667399.583568334 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 622.389 +SE +ET UN +ID 28 +TI 1760667399.583602666 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 607.509 +SE +ET CO +ID 29 +TI 1760667399.583630561 +CC NStripHits 6 +PQ 190.449 +SQ 2 +CT 0.579322 0.420678 +TL 1 +TE 363.676 +CE 300.742 1.99629 363.676 1.49271 +CD -0.0701406 0.0815501 -1.16561 0.0336036 0.0259794 0.0336036 0.395484 0.291411 -1.39842 0.0336036 0.0380438 0.0336036 0 0 0 0 0 0 +LA 0.561292 +SE +ET PH +ID 30 +TI 1760667399.583670616 +CC NStripHits 2 +PE 70.9628 +PP -0.535766 0.372847 0.929703 +PW 0 +SE +ET UN +ID 31 +TI 1760667399.583688735 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 100.425 +SE +ET UN +ID 32 +TI 1760667399.583711385 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 33 +TI 1760667399.583731651 +CC NStripHits 3 +PE 92.6997 +PP 1.09392 -1.10364 -1.51483 +PW 0 +SE +ET UN +ID 34 +TI 1760667399.583751678 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.0158 +SE +ET CO +ID 35 +TI 1760667399.583769798 +CC NStripHits 8 +PQ 82.1193 +SQ 3 +CT 0.00480746 0.467378 +TL 1 +TE 111.376 +CE 553.568 2.31199 111.376 1.30999 +CD 2.72361 -0.536325 1.86095 0.0336036 0.0216663 0.0336036 2.4908 -0.189464 1.74455 0.0336036 0.0235592 0.0336036 0 0 0 0 0 0 +LA 0.433661 +SE +ET PH +ID 36 +TI 1760667399.583816528 +CC NStripHits 2 +PE 134.651 +PP 3.65486 0.356987 -3.95936 +PW 0 +SE +ID 37 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 195.169008) (GR Hit: Detector ID 0 and Energy 66.546170) +BD GR Veto +PQ 0.559852 +SE +ET PH +ID 38 +TI 1760667399.583849906 +CC NStripHits 2 +PE 414.083 +PP 0.744703 -0.779673 -0.00154687 +PW 0 +SE +ET CO +ID 39 +TI 1760667399.583867788 +CC NStripHits 9 +PQ 77.3213 +SQ 3 +CT 0.00429613 0.0357337 +TL 1 +TE 99.6353 +CE 492.233 1.91912 99.6353 1.36196 +CD 1.44314 -0.216581 -2.21327 0.0336036 0.0233892 0.0336036 -0.0701406 -0.05349 -2.09686 0.0336036 0.0246593 0.0336036 0 0 0 0 0 0 +LA 0.927135 +SE +ET PH +ID 40 +TI 1760667399.583930015 +CC NStripHits 2 +PE 102.268 +PP -0.652172 -0.921204 -2.09686 +PW 0 +SE +ET PH +ID 41 +TI 1760667399.583948373 +CC NStripHits 4 +PE 471.598 +PP 1.67595 -0.0852196 -0.234359 +PW 0 +SE +ET CO +ID 42 +TI 1760667399.583973407 +CC NStripHits 5 +PQ 136.203 +SQ 2 +CT 0 1 +TL 1 +TE 140.916 +CE 369.452 1.38895 140.916 1.36581 +CD -0.652172 -0.815947 -2.7953 0.0336036 0.0200997 0.0336036 -0.884984 -0.764308 -2.9117 0.0336036 0.0203443 0.0336036 0 0 0 0 0 0 +LA 0.265362 +SE +ET UN +ID 43 +TI 1760667399.583997726 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 44 +TI 1760667399.584015130 +CC NStripHits 4 +PQ 59.4694 +SQ 2 +CT 0.665849 0.334151 +TL 1 +TE 326.837 +CE 181.928 0.911826 326.837 1.46593 +CD 1.44314 0.345113 -3.95936 0.0336036 0.0330207 0.0336036 1.67595 -0.055317 -2.9117 0.0336036 0.0246492 0.0336036 0 0 0 0 0 0 +LA 1.14549 +SE +ID 45 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (26.401669)) (GR Hit: Detector ID 0 and Energy 64.657789) +BD GR Veto +PQ 26.4017 +SE +ET PH +ID 46 +TI 1760667399.584070444 +CC NStripHits 2 +PE 255.314 +PP -1.35061 -1.16951 2.32658 +PW 0 +SE +ET PH +ID 47 +TI 1760667399.584115266 +CC NStripHits 2 +PE 66.4042 +PP -0.419359 -1.08779 -0.583578 +PW 0 +SE +ET CO +ID 48 +TI 1760667399.584134101 +CC NStripHits 10 +PQ 34.4742 +SQ 4 +CT 0.117774 0.150701 +TL 1 +TE 85.9844 +CE 523.962 2.29753 85.9844 0.906434 +CD 3.30564 -0.358894 1.16252 0.0336036 0.0227612 0.0336036 2.6072 -0.257103 0.347672 0.0336036 0.0233374 0.0336036 0 0 0 0 0 0 +LA 1.07803 +SE +ET PH +ID 49 +TI 1760667399.584201097 +CC NStripHits 3 +PE 493.035 +PP 0.511891 -0.531696 1.27892 +PW 0 +SE +ET UN +ID 50 +TI 1760667399.584224224 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 50.2042 +SE +ET UN +ID 51 +TI 1760667399.584245204 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 631.491 +SE +ET PH +ID 52 +TI 1760667399.584287166 +CC NStripHits 2 +PE 207.288 +PP -2.63108 0.0617972 -3.26092 +PW 0 +SE +ET UN +ID 53 +TI 1760667399.584304809 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 290.513 +SE +ET PH +ID 54 +TI 1760667399.584362030 +CC NStripHits 2 +PE 52.0619 +PP -0.768578 -0.973641 0.114859 +PW 0 +SE +ID 55 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.264892) +BD GR Veto +PQ 11.2704 +SE +ET PH +ID 56 +TI 1760667399.584387779 +CC NStripHits 3 +PE 422.192 +PP -1.00139 -0.0152389 -2.09686 +PW 0 +SE +ET CO +ID 57 +TI 1760667399.584408283 +CC NStripHits 5 +PQ 70.7689 +SQ 2 +CT 0 1 +TL 1 +TE 112.385 +CE 238.585 1.45969 112.385 1.8403 +CD 0.511891 -0.467754 -2.09686 0.0336036 0.021966 0.0336036 1.21033 -0.465698 -1.16561 0.0336036 0.0219747 0.0336036 0 0 0 0 0 0 +LA 1.16407 +SE +ID 58 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.372366) +BD GR Veto +PQ +SE +ET PH +ID 59 +TI 1760667399.584452390 +CC NStripHits 2 +PE 413.732 +PP 2.72361 0.357909 -2.09686 +PW 0 +SE +ID 60 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 267.433239) +BD GR Veto +PQ 5.2461 +SE +ET UN +ID 61 +TI 1760667399.584483146 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 597.387 +SE +ID 62 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 145.832914) +BD GR Veto +PQ 9.63794 +SE +ET CO +ID 63 +TI 1760667399.601939916 +CC NStripHits 6 +PQ 24.7379 +SQ 2 +CT 0 1 +TL 1 +TE 97.5174 +CE 124.177 1.79815 97.5174 1.24564 +CD 2.25798 -0.577116 -0.583578 0.0336036 0.0215904 0.0336036 2.4908 -0.674801 -0.816391 0.0336036 0.0211337 0.0336036 0 0 0 0 0 0 +LA 0.343438 +SE +ID 64 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.558367) +QA StripPairing (Best reduced chi square is not below 25 (73.027698)) (GR Hit: Detector ID 0 and Energy 421.275571) +BD GR Veto +PQ 73.0277 +SE +ID 65 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 158.969802) +BD GR Veto +PQ 4.68734 +SE +ET UN +ID 66 +TI 1760667399.602035522 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 392.359 +SE +ET UN +ID 67 +TI 1760667399.602064371 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.8943 +SE +ET UN +ID 68 +TI 1760667399.602085351 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 50.4083 +SE +ID 69 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 162.958433) +BD GR Veto +PQ 11.0955 +SE +ET CO +ID 70 +TI 1760667399.602112054 +CC NStripHits 6 +PQ 152.126 +SQ 2 +CT 0.662159 0.337841 +TL 1 +TE 396.411 +CE 260.51 1.33953 396.411 1.95461 +CD -1.00139 -0.881331 1.74455 0.0336036 0.0198513 0.0336036 0.162672 -0.512272 0.580484 0.0336036 0.0217434 0.0336036 0 0 0 0 0 0 +LA 1.6871 +SE +ET UN +ID 71 +TI 1760667399.602159261 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 265.277 +SE +ET PH +ID 72 +TI 1760667399.602182388 +CC NStripHits 3 +PE 360.746 +PP -0.0701406 0.112671 1.97736 +PW 0 +SE +ET PH +ID 73 +TI 1760667399.602202177 +CC NStripHits 3 +PE 162.117 +PP -0.535766 -0.202971 0.231266 +PW 0 +SE +ID 74 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 75 +TI 1760667399.602231264 +CC NStripHits 4 +PE 223.04 +PP -2.63108 -0.920841 0.580484 +PW 0 +SE +ET PH +ID 76 +TI 1760667399.602253675 +CC NStripHits 2 +PE 64.2505 +PP 3.88767 -0.320772 2.21017 +PW 0 +SE +ET PH +ID 77 +TI 1760667399.602272510 +CC NStripHits 2 +PE 368.362 +PP 0.0462656 0.358211 -3.26092 +PW 0 +SE +ET CO +ID 78 +TI 1760667399.602293491 +CC NStripHits 6 +PQ 49.4072 +SQ 3 +CT 0.002892 1.75229 +TL 1 +TE 412.947 +CE 232.266 1.89693 412.947 1.49075 +CD 0.511891 -0.508497 1.97736 0.0336036 0.0217588 0.0336036 0.861109 -0.229054 0.813297 0.0336036 0.0233456 0.0336036 0 0 0 0 0 0 +LA 1.24703 +SE +ET PH +ID 79 +TI 1760667399.602349996 +CC NStripHits 2 +PE 131.766 +PP -0.652172 0.370266 2.32658 +PW 0 +SE +ET UN +ID 80 +TI 1760667399.602367401 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 81 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 44.497624) (GR Hit: Detector ID 0 and Energy 77.714246) +BD GR Veto +PQ 5.32117 +SE +ET UN +ID 82 +TI 1760667399.602392911 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 83 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (3531.161184)) (GR Hit: Detector ID 0 and Energy 245.469423) +BD GR Veto +PQ 3531.16 +SE +ID 84 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (2168.013844)) (GR Hit: Detector ID 0 and Energy 175.033382) +BD GR Veto +PQ 2168.01 +SE +ET PH +ID 85 +TI 1760667399.602421760 +CC NStripHits 2 +PE 136.918 +PP 0.511891 0.361025 -4.42498 +PW 0 +SE +ID 86 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (45.915136)) (GR Hit: Detector ID 0 and Energy 416.794344) +BD GR Veto +PQ 45.9151 +SE +ET PH +ID 87 +TI 1760667399.602458953 +CC NStripHits 3 +PE 135.476 +PP -2.51467 -0.596388 1.16252 +PW 0 +SE +ET UN +ID 88 +TI 1760667399.602478265 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 89 +TI 1760667399.602496147 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 90 +TI 1760667399.602513074 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 185.904 +SE +ET PH +ID 91 +TI 1760667399.602538585 +CC NStripHits 2 +PE 58.9583 +PP 0.628297 0.366558 -3.72655 +PW 0 +SE +ET PH +ID 92 +TI 1760667399.602553606 +CC NStripHits 2 +PE 25.936 +PP 3.53845 0.0262721 -4.07577 +PW 0 +SE +ET PH +ID 93 +TI 1760667399.602571249 +CC NStripHits 2 +PE 648.531 +PP -1.00139 -0.966683 0.347672 +PW 0 +SE +ET PH +ID 94 +TI 1760667399.602596044 +CC NStripHits 3 +PE 133.207 +PP -0.535766 -0.222842 -0.00154687 +PW 0 +SE +ET PH +ID 95 +TI 1760667399.602633953 +CC NStripHits 2 +PE 93.5765 +PP 2.4908 -1.07599 -1.63123 +PW 0 +SE +ET PH +ID 96 +TI 1760667399.602650403 +CC NStripHits 2 +PE 117.984 +PP 2.95642 -0.0977113 -0.117953 +PW 0 +SE +ET UN +ID 97 +TI 1760667399.602668046 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 267.974 +SE +ET PH +ID 98 +TI 1760667399.602705955 +CC NStripHits 2 +PE 470.684 +PP 2.25798 0.364177 -4.30858 +PW 0 +SE +ET UN +ID 99 +TI 1760667399.602725982 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 100 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (36.658884)) (GR Hit: Detector ID 0 and Energy 234.334160) +BD GR Veto +PQ 36.6589 +SE +ET PH +ID 101 +TI 1760667399.602768421 +CC NStripHits 2 +PE 252.234 +PP 3.65486 -0.59664 1.04611 +PW 0 +SE +ET CO +ID 102 +TI 1760667399.602788925 +CC NStripHits 4 +PQ 21.5916 +SQ 2 +CT 0 1 +TL 1 +TE 27.553 +CE 163.32 1.43229 27.553 1.2863 +CD 4.12048 -1.17767 0.347672 0.0336036 0.0150714 0.0336036 4.00408 -0.834224 0.231266 0.0336036 0.0200244 0.0336036 0 0 0 0 0 0 +LA 0.38086 +SE +ET CO +ID 103 +TI 1760667399.602811813 +CC NStripHits 5 +PQ 229.15 +SQ 2 +CT 0.62717 0.37283 +TL 1 +TE 380.052 +CE 278.385 1.39429 380.052 1.5228 +CD 0.977516 -0.465569 -0.467172 0.0336036 0.0219753 0.0336036 1.32673 0.257983 -0.932797 0.0336036 0.0336527 0.0336036 0 0 0 0 0 0 +LA 0.928593 +SE +ID 104 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.230720) +BD GR Veto +PQ +SE +ET CO +ID 105 +TI 1760667399.602855205 +CC NStripHits 4 +PQ 157.674 +SQ 2 +CT 0 1 +TL 1 +TE 127.666 +CE 393.607 1.47981 127.666 0.939185 +CD -0.535766 0.0437239 -1.86405 0.0336036 0.0254436 0.0336036 -0.652172 0.0729942 -1.51483 0.0336036 0.0258305 0.0336036 0 0 0 0 0 0 +LA 0.369272 +SE +ET PH +ID 106 +TI 1760667399.602892637 +CC NStripHits 3 +PE 465.823 +PP -0.419359 -0.445389 2.55939 +PW 0 +SE +ET CO +ID 107 +TI 1760667399.602912187 +CC NStripHits 5 +PQ 72.0316 +SQ 2 +CT 0.502608 0.497392 +TL 1 +TE 150.181 +CE 158.269 1.31608 150.181 1.37039 +CD 0.744703 0.304899 -1.74764 0.0336036 0.0387851 0.0336036 0.628297 0.360828 -2.09686 0.0336036 0.0263757 0.0336036 0 0 0 0 0 0 +LA 0.372335 +SE +ID 108 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 357.649399) +BD GR Veto +PQ 1.35896 +SE +ET CO +ID 109 +TI 1760667399.602962255 +CC NStripHits 6 +PQ 118.722 +SQ 2 +CT 0.707542 0.292458 +TL 1 +TE 397.577 +CE 238.729 1.39359 397.577 1.46321 +CD 1.67595 -0.757791 -0.117953 0.0336036 0.0204115 0.0336036 1.44314 -0.616688 0.114859 0.0336036 0.021423 0.0336036 0 0 0 0 0 0 +LA 0.358207 +SE +ET UN +ID 110 +TI 1760667399.602999925 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 111 +TI 1760667399.603010416 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 622.002 +SE +ET PH +ID 112 +TI 1760667399.603038549 +CC NStripHits 4 +PE 143.906 +PP -1.1178 -0.412866 -0.234359 +PW 0 +SE +ID 113 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.214007) +BD GR Veto +PQ +SE +ID 114 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.795446) +BD GR Veto +PQ 0.0869961 +SE +ET PH +ID 115 +TI 1760667399.603076696 +CC NStripHits 3 +PE 168.685 +PP 2.4908 -1.02496 1.86095 +PW 0 +SE +ET UN +ID 116 +TI 1760667399.603101015 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 117 +TI 1760667399.603149652 +CC NStripHits 2 +PE 198.145 +PP 1.21033 -0.913539 -3.84295 +PW 0 +SE +ET PH +ID 118 +TI 1760667399.603189945 +CC NStripHits 2 +PE 275.206 +PP 3.18923 -0.933566 -1.74764 +PW 0 +SE +ET PH +ID 119 +TI 1760667399.603227615 +CC NStripHits 2 +PE 438.693 +PP 0.279078 0.222826 -2.32967 +PW 0 +SE +ET PH +ID 120 +TI 1760667399.603265285 +CC NStripHits 4 +PE 432.795 +PP -2.04905 -0.188688 -0.117953 +PW 0 +SE +ET PH +ID 121 +TI 1760667399.603290081 +CC NStripHits 3 +PE 396.68 +PP -0.302953 0.0786209 -3.49373 +PW 0 +SE +ET PH +ID 122 +TI 1760667399.603309631 +CC NStripHits 2 +PE 296.055 +PP -1.35061 -0.642318 -0.350766 +PW 0 +SE +ID 123 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.080734) +QA StripPairing (Best reduced chi square is not below 25 (6551.176078)) (GR Hit: Detector ID 0 and Energy 453.065264) +BD GR Veto +PQ 6551.18 +SE +ET UN +ID 124 +TI 1760667399.603340387 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 430.495 +SE +ID 125 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (447.920566)) (GR Hit: Detector ID 0 and Energy 91.204705) +BD GR Veto +PQ 447.921 +SE +ET UN +ID 126 +TI 1760667399.603385925 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 105.023 +SE +ID 127 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.105894) +BD GR Veto +PQ 9.9233 +SE +ID 128 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 92.033236) +BD GR Veto +PQ 1.16074 +SE +ET UN +ID 129 +TI 1760667399.625100135 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 86.3857 +SE +ET PH +ID 130 +TI 1760667399.625120401 +CC NStripHits 4 +PE 222.578 +PP -1.58342 -0.786666 -2.32967 +PW 0 +SE +ET PH +ID 131 +TI 1760667399.625143051 +CC NStripHits 3 +PE 81.0039 +PP 2.84002 -0.395625 -3.49373 +PW 0 +SE +ET UN +ID 132 +TI 1760667399.625164031 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 233.624 +SE +ET PH +ID 133 +TI 1760667399.625192165 +CC NStripHits 2 +PE 64.4881 +PP -1.35061 -0.7963 0.929703 +PW 0 +SE +ET CO +ID 134 +TI 1760667399.625210285 +CC NStripHits 7 +PQ 64.0401 +SQ 2 +CT 0.715197 0.284803 +TL 1 +TE 386.604 +CE 215.434 0.916534 386.604 1.87512 +CD 0.511891 -0.638716 -0.00154687 0.0336036 0.0213854 0.0336036 1.44314 -0.0660269 0.580484 0.0336036 0.0245813 0.0336036 0 0 0 0 0 0 +LA 1.23853 +SE +ET UN +ID 135 +TI 1760667399.625257492 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 407.859 +SE +ID 136 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 331.790929) +BD GR Veto +PQ 19.4846 +SE +ID 137 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 124.208630) +BD GR Veto +PQ 5.81715 +SE +ET UN +ID 138 +TI 1760667399.625318765 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Out of Range) +CC NStripHits 5 +PE 330.538 +SE +ID 139 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (247.570888)) (GR Hit: Detector ID 0 and Energy 418.673655) +BD GR Veto +PQ 247.571 +SE +ET PH +ID 140 +TI 1760667399.625364303 +CC NStripHits 2 +PE 224.94 +PP -0.0701406 -0.606449 -1.16561 +PW 0 +SE +ET PH +ID 141 +TI 1760667399.625381708 +CC NStripHits 2 +PE 136.189 +PP 4.12048 0.218461 0.231266 +PW 0 +SE +ET UN +ID 142 +TI 1760667399.625399351 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 25.2163 +SE +ID 143 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1017.404258)) (GR Hit: Detector ID 0 and Energy 340.727642) +BD GR Veto +PQ 1017.4 +SE +ET UN +ID 144 +TI 1760667399.625427484 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 145 +TI 1760667399.625476360 +CC NStripHits 2 +PE 123.741 +PP 1.32673 -0.815718 -3.61014 +PW 0 +SE +ET PH +ID 146 +TI 1760667399.625494003 +CC NStripHits 2 +PE 128.785 +PP 1.67595 0.367336 0.114859 +PW 0 +SE +ET PH +ID 147 +TI 1760667399.625511169 +CC NStripHits 2 +PE 187.605 +PP -2.28186 -0.11577 -4.07577 +PW 0 +SE +ET PH +ID 148 +TI 1760667399.625529050 +CC NStripHits 3 +PE 132.303 +PP 1.32673 -0.668145 1.39533 +PW 0 +SE +ET PH +ID 149 +TI 1760667399.625549077 +CC NStripHits 2 +PE 154.182 +PP 2.6072 0.176084 -2.7953 +PW 0 +SE +ET PH +ID 150 +TI 1760667399.625566959 +CC NStripHits 3 +PE 251.963 +PP 0.628297 -0.565226 1.51173 +PW 0 +SE +ET CO +ID 151 +TI 1760667399.625588178 +CC NStripHits 8 +PQ 26.7497 +SQ 4 +CT 0.0284168 0.0874738 +TL 1 +TE 110.772 +CE 532.14 2.13683 110.772 0.918635 +CD -1.35061 -1.10514 0.347672 0.0336036 0.0276887 0.0336036 1.09392 -0.386697 1.04611 0.0336036 0.0225458 0.0336036 0 0 0 0 0 0 +LA 2.05919 +SE +ET PH +ID 152 +TI 1760667399.625645637 +CC NStripHits 2 +PE 26.8617 +PP 1.21033 0.215279 0.580484 +PW 0 +SE +ET CO +ID 153 +TI 1760667399.625666379 +CC NStripHits 4 +PQ 83.4694 +SQ 2 +CT 0 1 +TL 1 +TE 82.1641 +CE 134.321 1.36368 82.1641 1.30302 +CD 2.37439 -0.636 -2.9117 0.0336036 0.0213973 0.0336036 2.4908 -0.431529 -1.74764 0.0336036 0.0222461 0.0336036 0 0 0 0 0 0 +LA 1.1876 +SE +ET CO +ID 154 +TI 1760667399.625703573 +CC NStripHits 4 +PQ 88.441 +SQ 2 +CT 0.521867 0.478133 +TL 1 +TE 144.875 +CE 157.329 1.31751 144.875 1.33803 +CD 0.744703 0.0343945 1.62814 0.0336036 0.0253837 0.0336036 0.861109 0.0121604 1.51173 0.0336036 0.0251552 0.0336036 0 0 0 0 0 0 +LA 0.16612 +SE +ET UN +ID 155 +TI 1760667399.625725507 +BD DepthCalibrationError (Out of Range) +CC NStripHits 10 +PE 588.058 +SE +ID 156 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (66.198373)) +BD GR Veto +PQ 66.1984 +SE +ET CO +ID 157 +TI 1760667399.625801563 +CC NStripHits 5 +PQ 39.227 +SQ 2 +CT 0 1 +TL 1 +TE 91.0195 +CE 145.484 1.33702 91.0195 1.33514 +CD -1.69983 -0.821695 -3.95936 0.0336036 0.0200676 0.0336036 -2.39827 0.363325 -3.26092 0.0336036 0.0250528 0.0336036 0 0 0 0 0 0 +LA 1.5427 +SE +ET UN +ID 158 +TI 1760667399.625836849 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 145.447 +SE +ID 159 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 119.648091)) +BD GR Veto +PQ 20.0946 +SE +ET CO +ID 160 +TI 1760667399.625881195 +CC NStripHits 4 +PQ 81.2715 +SQ 2 +CT 0 1 +TL 1 +TE 68.7195 +CE 379.817 1.4804 68.7195 1.25025 +CD 0.162672 -0.93056 -3.02811 0.0336036 0.019788 0.0336036 -0.652172 -0.992104 -2.67889 0.0336036 0.0200482 0.0336036 0 0 0 0 0 0 +LA 0.888658 +SE +ET CO +ID 161 +TI 1760667399.625918626 +CC NStripHits 5 +PQ 97.8075 +SQ 2 +CT 0.73043 0.26957 +TL 1 +TE 421.94 +CE 226.806 1.48091 421.94 1.96666 +CD 0.162672 -0.886287 -2.56248 0.0336036 0.0198344 0.0336036 -0.419359 0.0385413 -2.09686 0.0336036 0.0254105 0.0336036 0 0 0 0 0 0 +LA 1.1878 +SE +ET PH +ID 162 +TI 1760667399.625962734 +CC NStripHits 2 +PE 303.619 +PP -1.69983 0.286431 1.51173 +PW 0 +SE +ET PH +ID 163 +TI 1760667399.625980138 +CC NStripHits 2 +PE 188.789 +PP 2.95642 0.351545 0.231266 +PW 0 +SE +ET PH +ID 164 +TI 1760667399.625998497 +CC NStripHits 2 +PE 186.196 +PP -0.652172 0.00371639 -1.0492 +PW 0 +SE +ET UN +ID 165 +TI 1760667399.626015901 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.3143 +SE +ET PH +ID 166 +TI 1760667399.626036167 +CC NStripHits 2 +PE 426.944 +PP -2.16545 -0.515073 -2.7953 +PW 0 +SE +ET PH +ID 167 +TI 1760667399.626056671 +CC NStripHits 2 +PE 167.455 +PP -1.69983 0.377391 0.231266 +PW 0 +SE +ET PH +ID 168 +TI 1760667399.626074790 +CC NStripHits 2 +PE 88.5431 +PP 0.628297 -0.563095 -1.51483 +PW 0 +SE +ET PH +ID 169 +TI 1760667399.626091957 +CC NStripHits 3 +PE 228.472 +PP 0.744703 -1.04114 1.27892 +PW 0 +SE +ID 170 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.318016) +QA StripPairing (Best reduced chi square is not below 25 (432.055024)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 315.461381) (GR Hit: Detector ID 0 and Energy 341.204835) +BD GR Veto +PQ 432.055 +SE +ID 171 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 395.978376) +BD GR Veto +PQ 3.28192 +SE +ET PH +ID 172 +TI 1760667399.626156091 +CC NStripHits 2 +PE 145.254 +PP -2.04905 -0.18718 2.55939 +PW 0 +SE +ET CO +ID 173 +TI 1760667399.626173973 +CC NStripHits 8 +PQ 48.1209 +SQ 3 +CT 0.00160295 0.00230189 +TL 1 +TE 166.912 +CE 458.249 1.99958 166.912 0.952906 +CD 1.32673 -0.723857 -2.21327 0.0336036 0.0206692 0.0336036 0.279078 -0.783428 -1.16561 0.0336036 0.0202406 0.0336036 0 0 0 0 0 0 +LA 0.997779 +SE +ET PH +ID 174 +TI 1760667399.626226902 +CC NStripHits 2 +PE 45.3678 +PP 4.3533 0.368663 -1.98045 +PW 0 +SE +ET PH +ID 175 +TI 1760667399.626243114 +CC NStripHits 2 +PE 27.7246 +PP -2.16545 0.00639941 -2.56248 +PW 0 +SE +ID 176 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 256.930886) (GR Hit: Detector ID 0 and Energy 150.226123) +BD GR Veto +PQ 5.2817 +SE +ET UN +ID 177 +TI 1760667399.626275062 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 653.165 +SE +ET PH +ID 178 +TI 1760667399.626320362 +CC NStripHits 2 +PE 107.711 +PP -0.535766 0.276709 -3.61014 +PW 0 +SE +ET PH +ID 179 +TI 1760667399.626360893 +CC NStripHits 2 +PE 83.639 +PP -2.74748 -0.262976 -3.72655 +PW 0 +SE +ET UN +ID 180 +TI 1760667399.626377820 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 192.298 +SE +ID 181 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.385020) (Strip hit removed with energy 6.933032) +QA StripPairing (Best reduced chi square is not below 25 (49.520363)) +BD GR Veto +PQ 49.5204 +SE +ID 182 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.605446) +QA StripPairing (Best reduced chi square is not below 25 (1920.847297)) (GR Hit: Detector ID 0 and Energy 177.184677) +BD GR Veto +PQ 1920.85 +SE +ET PH +ID 183 +TI 1760667399.626456499 +CC NStripHits 2 +PE 360.625 +PP 0.977516 -0.992874 0.464078 +PW 0 +SE +ID 184 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 209.303172) +BD GR Veto +PQ 4.19384 +SE +ET PH +ID 185 +TI 1760667399.626488924 +CC NStripHits 2 +PE 130.979 +PP -2.39827 0.326607 1.39533 +PW 0 +SE +ET UN +ID 186 +TI 1760667399.626506567 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 187 +TI 1760667399.626522541 +CC NStripHits 3 +PE 484.219 +PP 3.53845 -1.01065 -3.26092 +PW 0 +SE +ET UN +ID 188 +TI 1760667399.626543283 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 98.0044 +SE +ET CO +ID 189 +TI 1760667399.626566648 +CC NStripHits 8 +PQ 49.5491 +SQ 3 +CT 0.869233 0.925355 +TL 1 +TE 295.481 +CE 309.428 1.96067 295.481 1.24037 +CD 4.23689 -0.524909 -1.98045 0.0336036 0.0217027 0.0336036 4.12048 -0.289303 -2.21327 0.0336036 0.0231892 0.0336036 0 0 0 0 0 0 +LA 0.351093 +SE +ET PH +ID 190 +TI 1760667399.626609563 +CC NStripHits 3 +PE 440.515 +PP 2.72361 0.361637 -2.21327 +PW 0 +SE +ET PH +ID 191 +TI 1760667399.645323753 +CC NStripHits 2 +PE 96.0109 +PP 0.395484 -0.909456 -2.09686 +PW 0 +SE +ET PH +ID 192 +TI 1760667399.645372152 +CC NStripHits 2 +PE 142.276 +PP 4.00408 -0.997823 -0.816391 +PW 0 +SE +ET UN +ID 193 +TI 1760667399.645393610 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 373.635 +SE +ID 194 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.764277) +BD GR Veto +PQ 18.1029 +SE +ET PH +ID 195 +TI 1760667399.645444154 +CC NStripHits 3 +PE 118.765 +PP 3.18923 0.367315 -1.16561 +PW 0 +SE +ID 196 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.662847) (Strip hit removed with energy 12.418011) (Strip hit removed with energy 12.690270) (Strip hit removed with energy 8.934935) (Strip hit removed with energy 6.857522) +QA StripPairing (Best reduced chi square is not below 25 (1945.103855)) (GR Hit: Detector ID 0 and Energy 612.707022) +BD GR Veto +PQ 1945.1 +SE +ET UN +ID 197 +TI 1760667399.645489931 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 104.053 +SE +ID 198 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 125.512183) +BD GR Veto +PQ 21.5313 +SE +ET PH +ID 199 +TI 1760667399.645520448 +CC NStripHits 2 +PE 220.782 +PP 3.65486 0.216057 2.09377 +PW 0 +SE +ET PH +ID 200 +TI 1760667399.645538806 +CC NStripHits 2 +PE 133.668 +PP 1.79236 0.367126 1.51173 +PW 0 +SE +ET UN +ID 201 +TI 1760667399.645569086 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 202 +TI 1760667399.645587682 +CC NStripHits 2 +PE 270.781 +PP 4.12048 0.232272 1.04611 +PW 0 +SE +ET CO +ID 203 +TI 1760667399.645626068 +CC NStripHits 5 +PQ 230.737 +SQ 2 +CT 0.657983 0.342017 +TL 1 +TE 392.356 +CE 264.026 1.47585 392.356 1.41141 +CD 2.84002 -0.506865 -0.699984 0.0336036 0.0217662 0.0336036 2.6072 -0.665675 0.347672 0.0336036 0.0211833 0.0336036 0 0 0 0 0 0 +LA 1.0849 +SE +ET PH +ID 204 +TI 1760667399.645691156 +CC NStripHits 2 +PE 133.104 +PP 2.37439 0.143427 0.813297 +PW 0 +SE +ET PH +ID 205 +TI 1760667399.645724773 +CC NStripHits 4 +PE 663.206 +PP -1.35061 0.12507 2.32658 +PW 0 +SE +ID 206 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 570.028315) +BD GR Veto +PQ 18.0628 +SE +ET UN +ID 207 +TI 1760667399.645812034 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 57.3138 +SE +ET UN +ID 208 +TI 1760667399.645865440 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 340.592 +SE +ET PH +ID 209 +TI 1760667399.645926475 +CC NStripHits 3 +PE 242.433 +PP 2.84002 -0.34814 -1.74764 +PW 0 +SE +ET PH +ID 210 +TI 1760667399.645967721 +CC NStripHits 2 +PE 117.636 +PP 0.628297 0.379434 1.39533 +PW 0 +SE +ET CO +ID 211 +TI 1760667399.646008491 +CC NStripHits 4 +PQ 58.4852 +SQ 2 +CT 0 1 +TL 1 +TE 48.2555 +CE 152.695 1.38422 48.2555 1.31223 +CD -1.1178 -0.954766 -2.32967 0.0336036 0.0198542 0.0336036 -1.00139 -0.763343 -1.98045 0.0336036 0.0203534 0.0336036 0 0 0 0 0 0 +LA 0.414908 +SE +ID 212 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 213 +TI 1760667399.646069049 +CC NStripHits 6 +PQ 40.4911 +SQ 2 +CT 0.600296 0.399704 +TL 1 +TE 304.803 +CE 234.479 1.89836 304.803 1.92394 +CD -1.00139 -0.380226 0.696891 0.0336036 0.0225979 0.0336036 0.279078 -1.08157 -0.932797 0.0336036 0.0238967 0.0336036 0 0 0 0 0 0 +LA 2.188 +SE +ET CO +ID 214 +TI 1760667399.646171808 +CC NStripHits 4 +PQ 45.2251 +SQ 2 +CT 0 1 +TL 1 +TE 102.08 +CE 154.52 1.40094 102.08 0.931942 +CD -1.1178 -0.371495 -1.63123 0.0336036 0.0226662 0.0336036 -1.46702 -0.0660952 -1.0492 0.0336036 0.0245807 0.0336036 0 0 0 0 0 0 +LA 0.7443 +SE +ET CO +ID 215 +TI 1760667399.646236419 +CC NStripHits 5 +PQ 99.6286 +SQ 2 +CT 0 1 +TL 1 +TE 92.4125 +CE 394.111 1.51318 92.4125 1.36168 +CD 2.02517 -0.925359 -3.49373 0.0336036 0.0197843 0.0336036 -1.35061 0.224078 -0.350766 0.0336036 0.0300528 0.0336036 0 0 0 0 0 0 +LA 4.75345 +SE +ID 216 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.407339) +BD GR Veto +PQ 0.515085 +SE +ID 217 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 112.548373) +BD GR Veto +PQ 0.00581615 +SE +ET UN +ID 218 +TI 1760667399.646344661 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 271.147 +SE +ET PH +ID 219 +TI 1760667399.646413087 +CC NStripHits 2 +PE 63.1605 +PP -2.86389 0.0888271 -2.09686 +PW 0 +SE +ET PH +ID 220 +TI 1760667399.646445989 +CC NStripHits 2 +PE 38.6519 +PP 1.79236 -1.15884 -3.72655 +PW 0 +SE +ET UN +ID 221 +TI 1760667399.646483182 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.6451 +SE +ET PH +ID 222 +TI 1760667399.646516084 +CC NStripHits 2 +PE 149.616 +PP -0.0701406 0.314591 -3.02811 +PW 0 +SE +ET UN +ID 223 +TI 1760667399.646557092 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 224 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 90.942058) +BD GR Veto +PQ 0.359509 +SE +ET UN +ID 225 +TI 1760667399.646604537 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 8 +PE 0 +SE +ID 226 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.791142) +BD GR Veto +PQ +SE +ET CO +ID 227 +TI 1760667399.646721839 +CC NStripHits 8 +PQ 81.2553 +SQ 3 +CT 0.00739904 0.00805206 +TL 1 +TE 308.453 +CE 319.167 1.93216 308.453 1.87024 +CD 0.628297 -0.282316 -4.42498 0.0336036 0.0232153 0.0336036 1.67595 -0.768256 -2.32967 0.0336036 0.0203109 0.0336036 0 0 0 0 0 0 +LA 0.471926 +SE +ID 228 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (204.818498)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 60.939715)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 56.155614) (GR Hit: Detector ID 0 and Energy 231.244364) +BD GR Veto +PQ 204.818 +SE +ID 229 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 276.237278) +BD GR Veto +PQ 4.00505 +SE +ET PH +ID 230 +TI 1760667399.646812677 +CC NStripHits 2 +PE 154.819 +PP 1.55955 0.180389 -1.86405 +PW 0 +SE +ET PH +ID 231 +TI 1760667399.646832227 +CC NStripHits 2 +PE 217.249 +PP 0.162672 0.347399 -3.02811 +PW 0 +SE +ET CO +ID 232 +TI 1760667399.646850347 +CC NStripHits 6 +PQ 48.8707 +SQ 2 +CT 0 1 +TL 1 +TE 73.779 +CE 171.515 1.83291 73.779 0.932014 +CD 3.07283 -0.331543 1.97736 0.0336036 0.0229755 0.0336036 2.6072 -0.300145 2.55939 0.0336036 0.0231654 0.0336036 0 0 0 0 0 0 +LA 0.746027 +SE +ET CO +ID 233 +TI 1760667399.646885871 +CC NStripHits 5 +PQ 121.632 +SQ 2 +CT 0 1 +TL 1 +TE 138.597 +CE 527.987 1.99709 138.597 1.35826 +CD 3.65486 -0.734215 -2.32967 0.0336036 0.0206127 0.0336036 3.77127 -1.0505 -2.21327 0.0336036 0.0212547 0.0336036 0 0 0 0 0 0 +LA 0.356562 +SE +ID 234 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 48.019720) +BD GR Veto +PQ 8.22712 +SE +ET PH +ID 235 +TI 1760667399.646917343 +CC NStripHits 2 +PE 71.4564 +PP 3.77127 -0.624449 -4.42498 +PW 0 +SE +ET UN +ID 236 +TI 1760667399.646933794 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 48.2573 +SE +ET UN +ID 237 +TI 1760667399.646950960 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 301.325 +SE +ID 238 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 92.616477) +BD GR Veto +PQ 2.25207 +SE +ET PH +ID 239 +TI 1760667399.647009372 +CC NStripHits 2 +PE 197.998 +PP 4.3533 -0.0989666 -2.44608 +PW 0 +SE +ET UN +ID 240 +TI 1760667399.647024154 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 530.946 +SE +ID 241 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 420.521461) +BD GR Veto +PQ 1.43095 +SE +ID 242 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.996158) +QA StripPairing (Best reduced chi square is not below 25 (125.219967)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 107.489800)) (GR Hit: Detector ID 0 and Energy 183.083089) +BD GR Veto +PQ 125.22 +SE +ET UN +ID 243 +TI 1760667399.647081136 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 600.393 +SE +ID 244 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.017723) +BD GR Veto +PQ +SE +ET CO +ID 245 +TI 1760667399.647120952 +CC NStripHits 5 +PQ 109.051 +SQ 2 +CT 0 1 +TL 1 +TE 111.812 +CE 544.128 1.50595 111.812 1.32287 +CD 2.84002 -0.711176 -3.61014 0.0336036 0.0208127 0.0336036 2.72361 -0.724864 -3.72655 0.0336036 0.020662 0.0336036 0 0 0 0 0 0 +LA 0.165197 +SE +ID 246 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 236.870284) +BD GR Veto +PQ 2.844 +SE +ET PH +ID 247 +TI 1760667399.647155523 +CC NStripHits 2 +PE 135.674 +PP 3.88767 -0.133798 2.21017 +PW 0 +SE +ET PH +ID 248 +TI 1760667399.647172212 +CC NStripHits 2 +PE 150.786 +PP 2.84002 -0.623396 -3.49373 +PW 0 +SE +ET PH +ID 249 +TI 1760667399.647189855 +CC NStripHits 3 +PE 195.95 +PP 0.279078 -0.454478 0.231266 +PW 0 +SE +ID 250 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (43.466584)) (GR Hit: Detector ID 0 and Energy 173.227122) +BD GR Veto +PQ 43.4666 +SE +ID 251 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 368.168203) +BD GR Veto +PQ 0.112294 +SE +ET PH +ID 252 +TI 1760667399.647262096 +CC NStripHits 3 +PE 294.368 +PP -0.652172 -0.954345 -2.7953 +PW 0 +SE +ID 253 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.625196) +QA StripPairing (Best reduced chi square is not below 25 (64.970454)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 44.027455)) (GR Hit: Detector ID 0 and Energy 154.969325) +BD GR Veto +PQ 64.9705 +SE +ET CO +ID 254 +TI 1760667399.647308826 +CC NStripHits 6 +PQ 28.9116 +SQ 3 +CT 0.0138817 0.035321 +TL 1 +TE 298.54 +CE 333.998 1.93189 298.54 1.44116 +CD -0.0701406 -0.902755 -4.42498 0.0336036 0.0197904 0.0336036 -1.00139 -0.789872 -4.07577 0.0336036 0.0202251 0.0336036 0 0 0 0 0 0 +LA 0.658523 +SE +ID 255 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 271.617033) +BD GR Veto +PQ 6.97318 +SE +ID 256 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 25.356778)) (GR Hit: Detector ID 0 and Energy 184.566260) +BD GR Veto +PQ 18.5862 +SE +ET PH +ID 257 +TI 1760667399.668373823 +CC NStripHits 4 +PE 663.838 +PP 0.0462656 0.234701 2.44298 +PW 0 +SE +ET UN +ID 258 +TI 1760667399.668400287 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 321.04 +SE +ET CO +ID 259 +TI 1760667399.668434858 +CC NStripHits 8 +PQ 29.2698 +SQ 3 +CT 0.000376143 0.058306 +TL 1 +TE 232.169 +CE 409.78 2.3076 232.169 1.38066 +CD 4.23689 -0.562713 0.929703 0.0336036 0.02162 0.0336036 3.42205 -0.140199 1.16252 0.0336036 0.0239496 0.0336036 0 0 0 0 0 0 +LA 0.876739 +SE +ET PH +ID 260 +TI 1760667399.668486833 +CC NStripHits 3 +PE 622.084 +PP -2.51467 -0.802453 -3.61014 +PW 0 +SE +ET CO +ID 261 +TI 1760667399.668509721 +CC NStripHits 6 +PQ 63.7986 +SQ 2 +CT 0 1 +TL 1 +TE 84.8499 +CE 193.845 1.35105 84.8499 1.8684 +CD 1.32673 0.356279 -3.95936 0.0336036 0.0285967 0.0336036 0.977516 0.358581 -4.54139 0.0336036 0.0275039 0.0336036 0 0 0 0 0 0 +LA 0.67876 +SE +ET PH +ID 262 +TI 1760667399.668545961 +CC NStripHits 2 +PE 134.651 +PP 3.30564 -0.203449 -2.09686 +PW 0 +SE +ET UN +ID 263 +TI 1760667399.668566942 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 264 +TI 1760667399.668585777 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 470.424 +SE +ID 265 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (52.198901)) (GR Hit: Detector ID 0 and Energy 64.843285) +BD GR Veto +PQ 52.1989 +SE +ET PH +ID 266 +TI 1760667399.668662071 +CC NStripHits 3 +PE 174.569 +PP 1.44314 -0.129788 1.62814 +PW 0 +SE +ET CO +ID 267 +TI 1760667399.668682098 +CC NStripHits 4 +PQ 14.1044 +SQ 2 +CT 0 1 +TL 1 +TE 110.157 +CE 121.557 1.27876 110.157 0.932911 +CD 1.32673 -1.01033 1.27892 0.0336036 0.0202232 0.0336036 1.09392 -1.08758 1.16252 0.0336036 0.0247818 0.0336036 0 0 0 0 0 0 +LA 0.271509 +SE +ET PH +ID 268 +TI 1760667399.668706417 +CC NStripHits 2 +PE 399.912 +PP 0.511891 -0.602744 -2.56248 +PW 0 +SE +ET UN +ID 269 +TI 1760667399.668725013 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.4112 +SE +ET PH +ID 270 +TI 1760667399.668746471 +CC NStripHits 4 +PE 130.54 +PP -2.04905 -0.389146 -2.44608 +PW 0 +SE +ET PH +ID 271 +TI 1760667399.668767690 +CC NStripHits 2 +PE 164.158 +PP 0.628297 0.165081 -1.28202 +PW 0 +SE +ET UN +ID 272 +TI 1760667399.668786287 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 433.991 +SE +ET PH +ID 273 +TI 1760667399.668812274 +CC NStripHits 3 +PE 318.475 +PP 2.95642 0.0167129 -3.61014 +PW 0 +SE +ET PH +ID 274 +TI 1760667399.668832302 +CC NStripHits 3 +PE 246.664 +PP -2.39827 -0.171844 1.86095 +PW 0 +SE +ET UN +ID 275 +TI 1760667399.668854951 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 276 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 64.490074) (GR Hit: Detector ID 0 and Energy 115.048374) +BD GR Veto +PQ 0.809419 +SE +ET UN +ID 277 +TI 1760667399.668908596 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 247.921 +SE +ET PH +ID 278 +TI 1760667399.668969154 +CC NStripHits 2 +PE 168.283 +PP -1.58342 -0.436147 -1.0492 +PW 0 +SE +ET PH +ID 279 +TI 1760667399.669001102 +CC NStripHits 2 +PE 353.972 +PP -2.04905 -0.983811 -2.56248 +PW 0 +SE +ID 280 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 117.641577) +BD GR Veto +PQ 0.124036 +SE +ID 281 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 212.773191) +BD GR Veto +PQ 0.918325 +SE +ET PH +ID 282 +TI 1760667399.669042587 +CC NStripHits 2 +PE 29.3032 +PP -1.46702 -0.325515 -2.32967 +PW 0 +SE +ET PH +ID 283 +TI 1760667399.669060468 +CC NStripHits 4 +PE 79.9956 +PP -2.16545 -0.311704 -4.6578 +PW 0 +SE +ET UN +ID 284 +TI 1760667399.669080257 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 41.7157 +SE +ET PH +ID 285 +TI 1760667399.669098377 +CC NStripHits 3 +PE 119.962 +PP 2.37439 -0.26666 -4.54139 +PW 0 +SE +ET CO +ID 286 +TI 1760667399.669151306 +CC NStripHits 4 +PQ 151.345 +SQ 2 +CT 0.635775 0.364225 +TL 1 +TE 384.453 +CE 276.118 1.4393 384.453 1.57319 +CD 0.977516 -0.0511192 1.86095 0.0336036 0.0246725 0.0336036 0.511891 0.0637603 2.32658 0.0336036 0.025669 0.0336036 0 0 0 0 0 0 +LA 0.668442 +SE +ET PH +ID 287 +TI 1760667399.669184684 +CC NStripHits 2 +PE 87.4355 +PP 3.30564 -0.587851 -2.9117 +PW 0 +SE +ET PH +ID 288 +TI 1760667399.669254302 +CC NStripHits 3 +PE 113.709 +PP 0.977516 0.0778736 1.51173 +PW 0 +SE +ET UN +ID 289 +TI 1760667399.669289112 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 9 +PE 634.702 +SE +ET UN +ID 290 +TI 1760667399.669404268 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 71.2692 +SE +ET UN +ID 291 +TI 1760667399.669441223 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Out of Range) +CC NStripHits 5 +PE 391.706 +SE +ET PH +ID 292 +TI 1760667399.669502973 +CC NStripHits 4 +PE 236.026 +PP 3.07283 -0.509391 -0.816391 +PW 0 +SE +ET CO +ID 293 +TI 1760667399.669543743 +CC NStripHits 4 +PQ 52.7149 +SQ 2 +CT 0 1 +TL 1 +TE 82.6986 +CE 130.485 1.34133 82.6986 1.27102 +CD 4.23689 0.355552 1.16252 0.0336036 0.0289289 0.0336036 4.12048 -0.195588 1.39533 0.0336036 0.0235181 0.0336036 0 0 0 0 0 0 +LA 0.609514 +SE +ET PH +ID 294 +TI 1760667399.669589519 +CC NStripHits 2 +PE 376.314 +PP -2.16545 0.366212 -2.32967 +PW 0 +SE +ET PH +ID 295 +TI 1760667399.669628858 +CC NStripHits 3 +PE 44.3239 +PP -0.186547 -0.680045 1.86095 +PW 0 +SE +ID 296 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.709254) +QA StripPairing (Best reduced chi square is not below 25 (101.055863)) +BD GR Veto +PQ 101.056 +SE +ET PH +ID 297 +TI 1760667399.669710874 +CC NStripHits 2 +PE 69.598 +PP -0.535766 0.326286 1.86095 +PW 0 +SE +ET PH +ID 298 +TI 1760667399.669744014 +CC NStripHits 2 +PE 460.415 +PP -0.419359 -0.230837 -0.699984 +PW 0 +SE +ID 299 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 46.395962) +BD GR Veto +PQ 0.189144 +SE +ID 300 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 28.270075)) (GR Hit: Detector ID 0 and Energy 70.990746) +BD GR Veto +PQ 5.12631 +SE +ET PH +ID 301 +TI 1760667399.669867038 +CC NStripHits 2 +PE 68.7158 +PP -2.16545 0.161802 -4.54139 +PW 0 +SE +ET PH +ID 302 +TI 1760667399.669901609 +CC NStripHits 2 +PE 33.1844 +PP -0.884984 -0.504121 -0.00154687 +PW 0 +SE +ET PH +ID 303 +TI 1760667399.669934749 +CC NStripHits 4 +PE 525.457 +PP 0.861109 -0.489059 2.44298 +PW 0 +SE +ET PH +ID 304 +TI 1760667399.669981956 +CC NStripHits 3 +PE 390.103 +PP 0.279078 -0.125291 1.16252 +PW 0 +SE +ET PH +ID 305 +TI 1760667399.670023679 +CC NStripHits 2 +PE 47.6642 +PP -0.652172 0.285485 -1.0492 +PW 0 +SE +ET PH +ID 306 +TI 1760667399.670059919 +CC NStripHits 2 +PE 62.1655 +PP -1.58342 0.0793549 0.347672 +PW 0 +SE +ET PH +ID 307 +TI 1760667399.670099258 +CC NStripHits 3 +PE 214.714 +PP -1.00139 0.181504 -1.98045 +PW 0 +SE +ET PH +ID 308 +TI 1760667399.670140743 +CC NStripHits 2 +PE 57.8429 +PP 0.861109 0.250213 1.27892 +PW 0 +SE +ET PH +ID 309 +TI 1760667399.670175075 +CC NStripHits 2 +PE 447.969 +PP 1.55955 0.260349 -1.98045 +PW 0 +SE +ET PH +ID 310 +TI 1760667399.670217037 +CC NStripHits 2 +PE 141.966 +PP -2.04905 -0.838722 -1.51483 +PW 0 +SE +ET CO +ID 311 +TI 1760667399.670250177 +CC NStripHits 6 +PQ 25.9253 +SQ 2 +CT 0.739532 0.260468 +TL 1 +TE 423.96 +CE 215.948 1.42827 423.96 2.41486 +CD 0.162672 -0.863801 -0.699984 0.0336036 0.0199274 0.0336036 -0.535766 -0.0589934 -0.00154687 0.0336036 0.0246281 0.0336036 0 0 0 0 0 0 +LA 1.27411 +SE +ET PH +ID 312 +TI 1760667399.670324325 +CC NStripHits 2 +PE 60.7414 +PP 2.84002 0.375787 -1.0492 +PW 0 +SE +ET PH +ID 313 +TI 1760667399.670340776 +CC NStripHits 2 +PE 77.8207 +PP -2.28186 -0.897421 1.04611 +PW 0 +SE +ET PH +ID 314 +TI 1760667399.670360565 +CC NStripHits 2 +PE 405.295 +PP 0.395484 -0.44685 -3.02811 +PW 0 +SE +ID 315 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.669778) +BD GR Veto +PQ 0.0134743 +SE +ID 316 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.401571) (Strip hit removed with energy 9.013075) (Strip hit removed with energy 15.808376) (Strip hit removed with energy 5.434195) (Strip hit removed with energy 5.530463) +QA StripPairing (Best reduced chi square is not below 25 (41.963977)) (Event contains multiple hits on a single strip) +BD GR Veto +PQ 41.964 +SE +ET PH +ID 317 +TI 1760667399.670475959 +CC NStripHits 4 +PE 661.4 +PP 1.67595 -0.287802 0.347672 +PW 0 +SE +ID 318 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.039399) +BD GR Veto +PQ +SE +ET PH +ID 319 +TI 1760667399.688957214 +CC NStripHits 3 +PE 179.891 +PP -0.652172 -0.604908 -3.84295 +PW 0 +SE +ET PH +ID 320 +TI 1760667399.689014196 +CC NStripHits 2 +PE 220.566 +PP 0.861109 -0.0614337 -3.14452 +PW 0 +SE +ET CO +ID 321 +TI 1760667399.689034223 +CC NStripHits 7 +PQ 59.0754 +SQ 3 +CT 0.000221696 0.104673 +TL 1 +TE 73.407 +CE 345.476 1.57661 73.407 1.26106 +CD -0.768578 -0.833981 -2.7953 0.0336036 0.0200249 0.0336036 -0.535766 -0.38878 -2.09686 0.0336036 0.022529 0.0336036 0 0 0 0 0 0 +LA 0.860363 +SE +ET PH +ID 322 +TI 1760667399.689084768 +CC NStripHits 2 +PE 188.616 +PP -2.39827 -0.244866 -3.84295 +PW 0 +SE +ET PH +ID 323 +TI 1760667399.689116716 +CC NStripHits 3 +PE 328.15 +PP -2.51467 0.165919 -1.74764 +PW 0 +SE +ET CO +ID 324 +TI 1760667399.689138650 +CC NStripHits 4 +PQ 68.633 +SQ 2 +CT 0 1 +TL 1 +TE 130.409 +CE 138.34 1.40011 130.409 1.32626 +CD 3.65486 -0.942621 -4.30858 0.0336036 0.019806 0.0336036 3.77127 -0.950651 -4.19217 0.0336036 0.0198345 0.0336036 0 0 0 0 0 0 +LA 0.164824 +SE +ET PH +ID 325 +TI 1760667399.689162492 +CC NStripHits 3 +PE 115.469 +PP 3.65486 -0.180226 -3.84295 +PW 0 +SE +ET CO +ID 326 +TI 1760667399.689183712 +CC NStripHits 6 +PQ 78.9772 +SQ 2 +CT 0 1 +TL 1 +TE 83.9365 +CE 321.147 1.85715 83.9365 1.33296 +CD 3.07283 -0.375258 2.09377 0.0336036 0.0226371 0.0336036 3.18923 -0.39786 2.32658 0.0336036 0.0224584 0.0336036 0 0 0 0 0 0 +LA 0.261267 +SE +ID 327 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.828073) (Strip hit removed with energy 15.472308) (Strip hit removed with energy 11.137579) (Strip hit removed with energy 8.082785) +QA StripPairing (Best reduced chi square is not below 25 (7036.867549)) (GR Hit: Detector ID 0 and Energy 554.765119) +BD GR Veto +PQ 7036.87 +SE +ET PH +ID 328 +TI 1760667399.689281225 +CC NStripHits 3 +PE 68.8422 +PP -0.186547 -0.707719 -4.42498 +PW 0 +SE +ET PH +ID 329 +TI 1760667399.689316272 +CC NStripHits 2 +PE 169.149 +PP -2.28186 -1.11235 0.696891 +PW 0 +SE +ET UN +ID 330 +TI 1760667399.689349412 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 47.3361 +SE +ET PH +ID 331 +TI 1760667399.689382553 +CC NStripHits 2 +PE 161.588 +PP 2.72361 0.343684 -4.6578 +PW 0 +SE +ET CO +ID 332 +TI 1760667399.689413309 +CC NStripHits 5 +PQ 20.9588 +SQ 2 +CT 0 1 +TL 1 +TE 79.6275 +CE 281.297 1.52751 79.6275 1.30523 +CD -0.0701406 -0.485178 -3.61014 0.0336036 0.0218893 0.0336036 -0.535766 -0.452469 -3.37733 0.0336036 0.022052 0.0336036 0 0 0 0 0 0 +LA 0.52161 +SE +ID 333 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (35.111823)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 46.540075) +BD GR Veto +PQ 35.1118 +SE +ET PH +ID 334 +TI 1760667399.689515829 +CC NStripHits 2 +PE 95.0309 +PP -2.86389 -1.12698 -0.350766 +PW 0 +SE +ET PH +ID 335 +TI 1760667399.689547538 +CC NStripHits 3 +PE 437.363 +PP 0.279078 -0.88591 -1.86405 +PW 0 +SE +ET UN +ID 336 +TI 1760667399.689586162 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 117.567 +SE +ID 337 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 168.919323) +BD GR Veto +PQ 8.27594 +SE +ET PH +ID 338 +TI 1760667399.689664840 +CC NStripHits 2 +PE 73.2732 +PP 1.90877 -1.0049 -0.00154687 +PW 0 +SE +ET UN +ID 339 +TI 1760667399.689700126 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 123.085 +SE +ET PH +ID 340 +TI 1760667399.689757108 +CC NStripHits 3 +PE 244.455 +PP 0.279078 -0.204533 -1.51483 +PW 0 +SE +ET PH +ID 341 +TI 1760667399.689801692 +CC NStripHits 3 +PE 120.873 +PP 3.88767 -0.728912 -3.72655 +PW 0 +SE +ET PH +ID 342 +TI 1760667399.689845323 +CC NStripHits 2 +PE 452.192 +PP -1.69983 0.361377 0.813297 +PW 0 +SE +ET PH +ID 343 +TI 1760667399.689885139 +CC NStripHits 3 +PE 194.229 +PP -0.0701406 -0.75942 -4.6578 +PW 0 +SE +ET UN +ID 344 +TI 1760667399.689916610 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.3458 +SE +ET PH +ID 345 +TI 1760667399.689953804 +CC NStripHits 3 +PE 405.636 +PP 2.02517 0.207738 -0.699984 +PW 0 +SE +ET CO +ID 346 +TI 1760667399.690003871 +CC NStripHits 8 +PQ 43.1926 +SQ 3 +CT 0.00180001 0.0516635 +TL 1 +TE 334.012 +CE 317.076 2.23134 334.012 1.44867 +CD 1.44314 -0.422335 -1.74764 0.0336036 0.0223147 0.0336036 2.02517 -0.735314 -0.816391 0.0336036 0.0206074 0.0336036 0 0 0 0 0 0 +LA 1.1419 +SE +ET UN +ID 347 +TI 1760667399.690129995 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 625.479 +SE +ID 348 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 197.294712) +BD GR Veto +PQ 0.00977799 +SE +ET PH +ID 349 +TI 1760667399.690265417 +CC NStripHits 2 +PE 72.1481 +PP -0.0701406 -0.949637 -4.54139 +PW 0 +SE +ET PH +ID 350 +TI 1760667399.690295219 +CC NStripHits 2 +PE 114.473 +PP 1.21033 0.353208 -1.51483 +PW 0 +SE +ID 351 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 43.415396) +BD GR Veto +PQ 7.82454 +SE +ET UN +ID 352 +TI 1760667399.690356492 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.8216 +SE +ET CO +ID 353 +TI 1760667399.690386772 +CC NStripHits 5 +PQ 40.0053 +SQ 2 +CT 0 1 +TL 1 +TE 143.089 +CE 204.585 1.37183 143.089 1.26555 +CD -0.0701406 -0.0206154 -4.19217 0.0336036 0.0248528 0.0336036 -0.302953 -0.627098 -3.72655 0.0336036 0.0214183 0.0336036 0 0 0 0 0 0 +LA 0.799265 +SE +ET UN +ID 354 +TI 1760667399.690435647 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 142.462 +SE +ID 355 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 50.520279) +BD GR Veto +PQ 1.80649 +SE +ET CO +ID 356 +TI 1760667399.690480232 +CC NStripHits 6 +PQ 84.0021 +SQ 3 +CT 0.0488345 1.51444 +TL 1 +TE 115.153 +CE 399.835 1.98512 115.153 1.31714 +CD -2.74748 -0.771187 1.62814 0.0336036 0.0202906 0.0336036 2.84002 0.0711311 2.09377 0.0336036 0.0257969 0.0336036 0 0 0 0 0 0 +LA 0.686413 +SE +ET PH +ID 357 +TI 1760667399.690532207 +CC NStripHits 2 +PE 337.754 +PP 1.09392 -1.08878 -0.350766 +PW 0 +SE +ID 358 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 100.956218) (GR Hit: Detector ID 0 and Energy 405.412862) +BD GR Veto +PQ 15.9432 +SE +ET PH +ID 359 +TI 1760667399.690570592 +CC NStripHits 3 +PE 245.703 +PP 2.02517 -0.985662 1.04611 +PW 0 +SE +ET CO +ID 360 +TI 1760667399.690600633 +CC NStripHits 8 +PQ 84.3098 +SQ 3 +CT 0.123066 0.704404 +TL 1 +TE 25.9866 +CE 629.26 2.12383 25.9866 1.37992 +CD 0.162672 -1.18194 -1.0492 0.0336036 0.0120411 0.0336036 1.44314 -0.572657 -0.234359 0.0336036 0.0216051 0.0336036 0 0 0 0 0 0 +LA 1.63548 +SE +ID 361 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (713.550449)) (GR Hit: Detector ID 0 and Energy 266.930328) +BD GR Veto +PQ 713.55 +SE +ET PH +ID 362 +TI 1760667399.690665721 +CC NStripHits 2 +PE 198.582 +PP -0.884984 -0.939249 -4.19217 +PW 0 +SE +ET PH +ID 363 +TI 1760667399.690685749 +CC NStripHits 3 +PE 298.948 +PP 1.09392 -1.134 2.21017 +PW 0 +SE +ET CO +ID 364 +TI 1760667399.690708398 +CC NStripHits 6 +PQ 44.5573 +SQ 3 +CT 0.142188 0.154986 +TL 1 +TE 424.957 +CE 211.514 1.79894 424.957 1.46989 +CD -2.16545 -0.374602 -2.56248 0.0336036 0.0226422 0.0336036 -2.04905 -0.323054 -3.37733 0.0336036 0.0230476 0.0336036 0 0 0 0 0 0 +LA 0.442865 +SE +ET PH +ID 365 +TI 1760667399.690757036 +CC NStripHits 3 +PE 453.157 +PP -0.768578 0.109355 -0.932797 +PW 0 +SE +ET PH +ID 366 +TI 1760667399.690780401 +CC NStripHits 2 +PE 88.7751 +PP 0.0462656 0.265064 -0.583578 +PW 0 +SE +ET PH +ID 367 +TI 1760667399.690801143 +CC NStripHits 3 +PE 307.327 +PP 3.77127 -0.40139 -2.9117 +PW 0 +SE +ID 368 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.256701) +BD GR Veto +PQ 13.0508 +SE +ET CO +ID 369 +TI 1760667399.690847158 +CC NStripHits 6 +PQ 191.398 +SQ 2 +CT 0.57765 0.42235 +TL 1 +TE 359.404 +CE 294.098 1.95357 359.404 1.45955 +CD 0.279078 -0.497317 -1.74764 0.0336036 0.0218181 0.0336036 -1.81623 -0.555051 -2.09686 0.0336036 0.0216252 0.0336036 0 0 0 0 0 0 +LA 2.12499 +SE +ET PH +ID 370 +TI 1760667399.690892457 +CC NStripHits 2 +PE 82.2723 +PP 2.37439 -1.09012 2.09377 +PW 0 +SE +ET PH +ID 371 +TI 1760667399.690914392 +CC NStripHits 2 +PE 115.522 +PP -1.00139 0.314435 -1.98045 +PW 0 +SE +ET PH +ID 372 +TI 1760667399.690935611 +CC NStripHits 2 +PE 111.914 +PP -2.39827 -1.01699 -4.07577 +PW 0 +SE +ID 373 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 55.955531) +BD GR Veto +PQ 2.7024 +SE +ET CO +ID 374 +TI 1760667399.690983057 +CC NStripHits 5 +PQ 129.592 +SQ 2 +CT 0.557228 0.442772 +TL 1 +TE 218.811 +CE 194.082 1.40501 218.811 1.38004 +CD 1.67595 -0.682186 -0.932797 0.0336036 0.0211063 0.0336036 1.55955 -0.725835 -1.39842 0.0336036 0.0206555 0.0336036 0 0 0 0 0 0 +LA 0.481933 +SE +ET PH +ID 375 +TI 1760667399.691016912 +CC NStripHits 2 +PE 160.921 +PP 4.23689 0.00309362 -0.816391 +PW 0 +SE +ET PH +ID 376 +TI 1760667399.691037893 +CC NStripHits 2 +PE 128.598 +PP -1.35061 -0.458628 2.09377 +PW 0 +SE +ET UN +ID 377 +TI 1760667399.691061019 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.0613 +SE +ET PH +ID 378 +TI 1760667399.691084384 +CC NStripHits 3 +PE 177.994 +PP 0.279078 -1.08589 1.74455 +PW 0 +SE +ET PH +ID 379 +TI 1760667399.691107034 +CC NStripHits 2 +PE 336.954 +PP 0.511891 -0.908252 2.6758 +PW 0 +SE +ET UN +ID 380 +TI 1760667399.691125392 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 150.152 +SE +ID 381 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 201.444245) +BD GR Veto +PQ 2.87668 +SE +ET PH +ID 382 +TI 1760667399.691207408 +CC NStripHits 2 +PE 107.908 +PP -2.86389 0.0747056 -2.21327 +PW 0 +SE +ET UN +ID 383 +TI 1760667399.710926055 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 67.1912 +SE +ET PH +ID 384 +TI 1760667399.711017847 +CC NStripHits 2 +PE 150.688 +PP 2.95642 0.037026 0.813297 +PW 0 +SE +ET PH +ID 385 +TI 1760667399.711058855 +CC NStripHits 3 +PE 91.6263 +PP -0.419359 -0.416357 1.74455 +PW 0 +SE +ET PH +ID 386 +TI 1760667399.711100101 +CC NStripHits 6 +PE 192.423 +PP -2.39827 -0.218821 0.114859 +PW 0 +SE +ET PH +ID 387 +TI 1760667399.711163759 +CC NStripHits 3 +PE 448.999 +PP -2.28186 -0.199865 -2.7953 +PW 0 +SE +ET UN +ID 388 +TI 1760667399.711207628 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 389 +TI 1760667399.711241006 +CC NStripHits 2 +PE 74.1626 +PP 0.744703 0.248341 1.04611 +PW 0 +SE +ET PH +ID 390 +TI 1760667399.711275100 +CC NStripHits 3 +PE 257.081 +PP -0.186547 -0.215367 -0.117953 +PW 0 +SE +ET UN +ID 391 +TI 1760667399.711313724 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 662.549 +SE +ET PH +ID 392 +TI 1760667399.711404800 +CC NStripHits 2 +PE 82.551 +PP -2.04905 -0.565996 -2.44608 +PW 0 +SE +ET UN +ID 393 +TI 1760667399.711439609 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET CO +ID 394 +TI 1760667399.711511135 +CC NStripHits 6 +PQ 113.135 +SQ 2 +CT 0 1 +TL 1 +TE 130.29 +CE 494.986 1.5537 130.29 1.36621 +CD 3.77127 -0.10959 -4.07577 0.0336036 0.024206 0.0336036 3.18923 -0.388213 -3.95936 0.0336036 0.0225336 0.0336036 0 0 0 0 0 0 +LA 0.655708 +SE +ID 395 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 51.306754) +BD GR Veto +PQ 12.231 +SE +ID 396 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.579398) +BD GR Veto +PQ 24.3438 +SE +ET UN +ID 397 +TI 1760667399.711601734 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 499.802 +SE +ET PH +ID 398 +TI 1760667399.711633682 +CC NStripHits 2 +PE 283.737 +PP 3.07283 0.0610227 -1.51483 +PW 0 +SE +ET UN +ID 399 +TI 1760667399.711652517 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 400 +TI 1760667399.711672544 +CC NStripHits 2 +PE 214.162 +PP 0.744703 -0.781883 1.97736 +PW 0 +SE +ET CO +ID 401 +TI 1760667399.711692571 +CC NStripHits 5 +PQ 139.192 +SQ 2 +CT 0 1 +TL 1 +TE 133.666 +CE 347.952 1.53868 133.666 1.34931 +CD 2.02517 0.262201 -2.67889 0.0336036 0.0342539 0.0336036 1.21033 0.365453 -3.14452 0.0336036 0.0238685 0.0336036 0 0 0 0 0 0 +LA 0.944159 +SE +ID 402 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 267.049490) +BD GR Veto +PQ 16.2483 +SE +ID 403 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (374.029753)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 74.879793)) +BD GR Veto +PQ 374.03 +SE +ET PH +ID 404 +TI 1760667399.711772918 +CC NStripHits 2 +PE 156.272 +PP -0.884984 0.273627 0.813297 +PW 0 +SE +ET UN +ID 405 +TI 1760667399.711791038 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 175.708 +SE +ID 406 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.244810) (Strip hit removed with energy 11.126569) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.929896) +BD GR Veto +PQ 14.9902 +SE +ID 407 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 30.258631) (GR Hit: Detector ID 0 and Energy 382.756131) +BD GR Veto +PQ 11.1269 +SE +ET UN +ID 408 +TI 1760667399.711878299 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 479.392 +SE +ID 409 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.875710) +QA StripPairing (Best reduced chi square is not below 25 (80.844129)) (GR Hit: Detector ID 0 and Energy 277.785834) +BD GR Veto +PQ 80.8441 +SE +ET UN +ID 410 +TI 1760667399.712002754 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 351.33 +SE +ET CO +ID 411 +TI 1760667399.712030887 +CC NStripHits 4 +PQ 45.5594 +SQ 2 +CT 0 1 +TL 1 +TE 66.0734 +CE 150.07 1.35382 66.0734 1.37073 +CD 2.95642 0.195502 -0.699984 0.0336036 0.028524 0.0336036 -1.1178 -0.00613288 1.27892 0.0336036 0.0249475 0.0336036 0 0 0 0 0 0 +LA 4.53387 +SE +ID 412 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.342495) +BD GR Veto +PQ 1.33849 +SE +ID 413 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 2.0986 +SE +ID 414 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.758285) +QA StripPairing (GR Hit: Detector ID 0 and Energy 206.314444) +BD GR Veto +PQ 10.8051 +SE +ID 415 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 98.772916) +BD GR Veto +PQ 3.28281 +SE +ET UN +ID 416 +TI 1760667399.712144136 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 391.586 +SE +ET UN +ID 417 +TI 1760667399.712197542 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 418 +TI 1760667399.712213277 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 419 +TI 1760667399.712230682 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 216.549 +SE +ID 420 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (173.204522)) (GR Hit: Detector ID 0 and Energy 130.899247) +BD GR Veto +PQ 173.205 +SE +ET PH +ID 421 +TI 1760667399.712268829 +CC NStripHits 5 +PE 208.454 +PP -2.63108 -0.797601 1.27892 +PW 0 +SE +ID 422 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (696.060224)) (GR Hit: Detector ID 0 and Energy 157.516457) +BD GR Veto +PQ 696.06 +SE +ET PH +ID 423 +TI 1760667399.712301015 +CC NStripHits 4 +PE 257.145 +PP -0.884984 -0.590346 2.32658 +PW 0 +SE +ET PH +ID 424 +TI 1760667399.712323427 +CC NStripHits 2 +PE 70.2725 +PP 1.32673 0.28349 2.6758 +PW 0 +SE +ET PH +ID 425 +TI 1760667399.712339162 +CC NStripHits 3 +PE 253.434 +PP 2.72361 -0.652615 -1.63123 +PW 0 +SE +ET UN +ID 426 +TI 1760667399.712363481 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 427 +TI 1760667399.712373971 +CC NStripHits 3 +PE 188.831 +PP -0.884984 -0.93381 0.929703 +PW 0 +SE +ET PH +ID 428 +TI 1760667399.712393760 +CC NStripHits 3 +PE 455.593 +PP 1.09392 -0.797178 -4.19217 +PW 0 +SE +ET PH +ID 429 +TI 1760667399.712413787 +CC NStripHits 2 +PE 174.236 +PP 1.79236 -0.851053 0.231266 +PW 0 +SE +ET PH +ID 430 +TI 1760667399.712431430 +CC NStripHits 2 +PE 141.395 +PP -1.35061 0.24194 1.51173 +PW 0 +SE +ET UN +ID 431 +TI 1760667399.712449312 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 428.671 +SE +ET PH +ID 432 +TI 1760667399.712484598 +CC NStripHits 3 +PE 473.124 +PP 1.67595 0.018185 2.21017 +PW 0 +SE +ET UN +ID 433 +TI 1760667399.712508201 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 638.563 +SE +ID 434 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (38.387050)) (GR Hit: Detector ID 0 and Energy 185.755675) +BD GR Veto +PQ 38.3871 +SE +ET PH +ID 435 +TI 1760667399.712575674 +CC NStripHits 2 +PE 52.2897 +PP 0.977516 0.345409 -0.467172 +PW 0 +SE +ET UN +ID 436 +TI 1760667399.712593555 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET UN +ID 437 +TI 1760667399.712632656 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 438 +TI 1760667399.712679386 +CC NStripHits 2 +PE 93.3128 +PP 3.77127 -0.938714 2.44298 +PW 0 +SE +ET UN +ID 439 +TI 1760667399.712697267 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 8 +PE 0 +SE +ET UN +ID 440 +TI 1760667399.712738752 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 282.697 +SE +ET PH +ID 441 +TI 1760667399.712767839 +CC NStripHits 2 +PE 30.0412 +PP 3.07283 -0.621444 -2.09686 +PW 0 +SE +ET UN +ID 442 +TI 1760667399.712785482 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 289.967 +SE +ID 443 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (32.420560)) (GR Hit: Detector ID 0 and Energy 102.800477) +BD GR Veto +PQ 32.4206 +SE +ET PH +ID 444 +TI 1760667399.712846755 +CC NStripHits 3 +PE 222.603 +PP -1.81623 -0.841555 -0.234359 +PW 0 +SE +ET UN +ID 445 +TI 1760667399.712873220 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 65.2485 +SE +ID 446 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.408938) +BD GR Veto +PQ 6.20248 +SE +ET PH +ID 447 +TI 1760667399.731610298 +CC NStripHits 3 +PE 411.369 +PP 0.279078 0.359448 1.74455 +PW 0 +SE +ET CO +ID 448 +TI 1760667399.731683492 +CC NStripHits 4 +PQ 171.142 +SQ 2 +CT 0.565071 0.434929 +TL 1 +TE 354.642 +CE 302.137 1.48086 354.642 1.40418 +CD 2.14158 -0.715387 -0.699984 0.0336036 0.0207549 0.0336036 1.32673 -0.506672 -1.16561 0.0336036 0.0217671 0.0336036 0 0 0 0 0 0 +LA 0.961431 +SE +ET UN +ID 449 +TI 1760667399.731771230 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 298.32 +SE +ET PH +ID 450 +TI 1760667399.731842517 +CC NStripHits 3 +PE 406.478 +PP 0.977516 0.373577 -4.54139 +PW 0 +SE +ET PH +ID 451 +TI 1760667399.731896162 +CC NStripHits 2 +PE 105.24 +PP 0.395484 -1.05599 -2.09686 +PW 0 +SE +ET PH +ID 452 +TI 1760667399.731949090 +CC NStripHits 2 +PE 92.2961 +PP 1.44314 -0.955551 1.16252 +PW 0 +SE +ID 453 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.476578) +QA StripPairing (Best reduced chi square is not below 25 (11026.917651)) (GR Hit: Detector ID 0 and Energy 411.555736) +BD GR Veto +PQ 11026.9 +SE +ET PH +ID 454 +TI 1760667399.732010126 +CC NStripHits 2 +PE 286.915 +PP 2.84002 0.363235 2.44298 +PW 0 +SE +ET PH +ID 455 +TI 1760667399.732040882 +CC NStripHits 2 +PE 127.847 +PP -1.81623 0.224602 2.21017 +PW 0 +SE +ET PH +ID 456 +TI 1760667399.732059717 +CC NStripHits 3 +PE 660.95 +PP 0.977516 0.299157 -4.19217 +PW 0 +SE +ET UN +ID 457 +TI 1760667399.732083082 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 458 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 156.607320) +BD GR Veto +PQ 10.389 +SE +ET UN +ID 459 +TI 1760667399.732208728 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 166.43 +SE +ET PH +ID 460 +TI 1760667399.732229471 +CC NStripHits 2 +PE 122.474 +PP 0.0462656 -1.14467 -2.32967 +PW 0 +SE +ET CO +ID 461 +TI 1760667399.732248544 +CC NStripHits 7 +PQ 60.1517 +SQ 2 +CT 0 1 +TL 1 +TE 110.353 +CE 143.999 1.77498 110.353 1.77165 +CD -1.2342 -0.447974 -1.74764 0.0336036 0.0220894 0.0336036 -0.884984 -0.447377 -2.32967 0.0336036 0.0220948 0.0336036 0 0 0 0 0 0 +LA 0.678757 +SE +ID 462 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (546.104913)) (GR Hit: Detector ID 0 and Energy 97.680148) +BD GR Veto +PQ 546.105 +SE +ET PH +ID 463 +TI 1760667399.732306718 +CC NStripHits 3 +PE 146.499 +PP 3.77127 -0.36504 -3.84295 +PW 0 +SE +ET PH +ID 464 +TI 1760667399.732330322 +CC NStripHits 2 +PE 229.589 +PP 1.90877 -0.334078 -1.86405 +PW 0 +SE +ET CO +ID 465 +TI 1760667399.732348442 +CC NStripHits 10 +PQ 27.9204 +SQ 3 +CT 0.0241565 0.0793428 +TL 1 +TE 64.275 +CE 373.589 2.49988 64.275 1.30499 +CD -2.16545 0.360133 0.464078 0.0336036 0.0267311 0.0336036 -1.69983 0.0313645 1.16252 0.0336036 0.0253621 0.0336036 0 0 0 0 0 0 +LA 0.901505 +SE +ID 466 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (44.368565)) (GR Hit: Detector ID 0 and Energy 510.985741) +BD GR Veto +PQ 44.3686 +SE +ET PH +ID 467 +TI 1760667399.732424736 +CC NStripHits 2 +PE 103.035 +PP -0.419359 -0.348722 2.32658 +PW 0 +SE +ET UN +ID 468 +TI 1760667399.732443332 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 641.591 +SE +ET PH +ID 469 +TI 1760667399.732471227 +CC NStripHits 4 +PE 318.242 +PP -2.04905 -0.428462 2.55939 +PW 0 +SE +ET PH +ID 470 +TI 1760667399.732494831 +CC NStripHits 2 +PE 171.768 +PP -0.535766 -0.712924 -2.67889 +PW 0 +SE +ID 471 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.910678) (Strip hit removed with energy 9.603559) (Strip hit removed with energy 9.814203) (Strip hit removed with energy 13.164813) +QA StripPairing (Best reduced chi square is not below 25 (185.071318)) +BD GR Veto +PQ 185.071 +SE +ET UN +ID 472 +TI 1760667399.732545614 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 473 +TI 1760667399.732563734 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 616.031 +SE +ET PH +ID 474 +TI 1760667399.732602119 +CC NStripHits 3 +PE 442.5 +PP -0.884984 0.336067 -3.61014 +PW 0 +SE +ID 475 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.573930) +BD GR Veto +PQ 0.333517 +SE +ET PH +ID 476 +TI 1760667399.732632398 +CC NStripHits 3 +PE 49.9227 +PP -1.1178 -1.03763 -4.54139 +PW 0 +SE +ID 477 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 0.033214) +BD GR Veto +PQ +SE +ID 478 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 306.045714) +BD GR Veto +PQ 1.53278 +SE +ET CO +ID 479 +TI 1760667399.732670783 +CC NStripHits 7 +PQ 87.0808 +SQ 2 +CT 0 1 +TL 1 +TE 150.702 +CE 362.769 1.31736 150.702 1.38371 +CD -2.63108 -0.309735 -0.234359 0.0336036 0.0231349 0.0336036 -2.86389 0.326084 0.347672 0.0336036 0.0375066 0.0336036 0 0 0 0 0 0 +LA 0.892875 +SE +ID 480 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 212.752121) (GR Hit: Detector ID 0 and Energy 70.622439) +BD GR Veto +PQ 7.71278 +SE +ID 481 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.395903)) (GR Hit: Detector ID 0 and Energy 234.353595) +BD GR Veto +PQ 25.3959 +SE +ID 482 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 442.250037) +BD GR Veto +PQ 3.70752 +SE +ET PH +ID 483 +TI 1760667399.732796192 +CC NStripHits 3 +PE 192.98 +PP -0.0701406 -0.937328 -4.42498 +PW 0 +SE +ET UN +ID 484 +TI 1760667399.732816696 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.7527 +SE +ET PH +ID 485 +TI 1760667399.732834100 +CC NStripHits 2 +PE 100.984 +PP -1.00139 0.333348 2.55939 +PW 0 +SE +ET UN +ID 486 +TI 1760667399.732852220 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 654.897 +SE +ET PH +ID 487 +TI 1760667399.732894897 +CC NStripHits 3 +PE 130.581 +PP -0.186547 0.301358 2.09377 +PW 0 +SE +ET PH +ID 488 +TI 1760667399.732915639 +CC NStripHits 2 +PE 60.2258 +PP -2.16545 -1.11956 -4.42498 +PW 0 +SE +ET PH +ID 489 +TI 1760667399.732932567 +CC NStripHits 2 +PE 237.362 +PP 2.02517 0.0608637 -0.467172 +PW 0 +SE +ET UN +ID 490 +TI 1760667399.732957363 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 8 +PE 0 +SE +ID 491 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 173.517181) +BD GR Veto +PQ 1.09681 +SE +ET UN +ID 492 +TI 1760667399.733006954 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 9 +PE 348.776 +SE +ET CO +ID 493 +TI 1760667399.733073711 +CC NStripHits 6 +PQ 51.8019 +SQ 3 +CT 0.0909747 0.168539 +TL 1 +TE 53.115 +CE 316.621 1.97885 53.115 1.32941 +CD -1.69983 -0.742529 -1.74764 0.0336036 0.0205645 0.0336036 -1.81623 -0.64912 -1.86405 0.0336036 0.0213173 0.0336036 0 0 0 0 0 0 +LA 0.189276 +SE +ET PH +ID 494 +TI 1760667399.733110189 +CC NStripHits 2 +PE 104.747 +PP -1.46702 -0.999896 0.231266 +PW 0 +SE +ET PH +ID 495 +TI 1760667399.733129262 +CC NStripHits 2 +PE 85.6863 +PP 3.88767 0.25578 -2.21327 +PW 0 +SE +ET CO +ID 496 +TI 1760667399.733147859 +CC NStripHits 7 +PQ 45.5313 +SQ 3 +CT 0.0147428 0.0741662 +TL 1 +TE 208.212 +CE 162.474 1.90273 208.212 1.34037 +CD -1.35061 -0.119892 -3.02811 0.0336036 0.024141 0.0336036 -0.652172 -0.253786 -2.21327 0.0336036 0.0233424 0.0336036 0 0 0 0 0 0 +LA 0.617522 +SE +ET PH +ID 497 +TI 1760667399.733199834 +CC NStripHits 2 +PE 89.8287 +PP -2.51467 -0.398593 0.696891 +PW 0 +SE +ET PH +ID 498 +TI 1760667399.733219385 +CC NStripHits 3 +PE 87.9176 +PP -2.39827 -0.745535 2.44298 +PW 0 +SE +ET UN +ID 499 +TI 1760667399.733240842 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 180.118 +SE +ET PH +ID 500 +TI 1760667399.733269453 +CC NStripHits 2 +PE 114.323 +PP -1.93264 -0.610998 -0.117953 +PW 0 +SE +ET PH +ID 501 +TI 1760667399.733287096 +CC NStripHits 2 +PE 294.588 +PP 3.30564 -0.996274 -2.21327 +PW 0 +SE +ET CO +ID 502 +TI 1760667399.733304977 +CC NStripHits 7 +PQ 48.6507 +SQ 3 +CT 0.0172733 0.16516 +TL 1 +TE 65.5228 +CE 586.475 2.34819 65.5228 1.32009 +CD -2.63108 0.373286 0.347672 0.0336036 0.0191071 0.0336036 -2.04905 -1.08484 0.580484 0.0336036 0.0243646 0.0336036 0 0 0 0 0 0 +LA 0.494152 +SE +ET UN +ID 503 +TI 1760667399.733347654 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 479.972 +SE +ID 504 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.322476) +BD GR Veto +PQ 0.6683 +SE +ID 505 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (48.227579)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 345.969208) +BD GR Veto +PQ 48.2276 +SE +ET PH +ID 506 +TI 1760667399.733424901 +CC NStripHits 3 +PE 352.021 +PP -2.74748 -0.974953 -3.95936 +PW 0 +SE +ET CO +ID 507 +TI 1760667399.733445882 +CC NStripHits 5 +PQ 66.2841 +SQ 2 +CT 0 1 +TL 1 +TE 127.88 +CE 351.506 1.38402 127.88 1.35687 +CD 4.00408 -0.172486 -2.56248 0.0336036 0.0236693 0.0336036 4.23689 0.205058 -3.84295 0.0336036 0.0289533 0.0336036 0 0 0 0 0 0 +LA 1.35512 +SE +ET PH +ID 508 +TI 1760667399.733475923 +CC NStripHits 2 +PE 150.814 +PP -0.535766 0.229497 -2.67889 +PW 0 +SE +ET PH +ID 509 +TI 1760667399.733494043 +CC NStripHits 2 +PE 131.583 +PP -1.35061 -0.24235 -3.72655 +PW 0 +SE +ET UN +ID 510 +TI 1760667399.733514070 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 87.5707 +SE +ET CO +ID 511 +TI 1760667399.752738714 +CC NStripHits 10 +PQ 29.5237 +SQ 4 +CT 0.0506931 0.159094 +TL 1 +TE 188.271 +CE 465.687 2.51921 188.271 1.40055 +CD 0.977516 -0.0580363 0.696891 0.0336036 0.0246338 0.0336036 1.21033 -0.360281 -0.699984 0.0336036 0.0227508 0.0336036 0 0 0 0 0 0 +LA 1.44804 +SE +ET UN +ID 512 +TI 1760667399.752837419 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 10 +PE 600.784 +SE +ET PH +ID 513 +TI 1760667399.752889156 +CC NStripHits 3 +PE 167.606 +PP -2.39827 0.172722 -3.61014 +PW 0 +SE +ET PH +ID 514 +TI 1760667399.752909660 +CC NStripHits 2 +PE 155.293 +PP -2.63108 -0.452544 -1.51483 +PW 0 +SE +ID 515 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 175.236372) +BD GR Veto +PQ 0.183881 +SE +ET UN +ID 516 +TI 1760667399.752936124 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 144.559 +SE +ID 517 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.425732) +QA StripPairing (Best reduced chi square is not below 25 (697.133494)) (GR Hit: Detector ID 0 and Energy 175.814381) +BD GR Veto +PQ 697.133 +SE +ET PH +ID 518 +TI 1760667399.753003120 +CC NStripHits 2 +PE 38.7736 +PP -1.2342 0.358374 -0.699984 +PW 0 +SE +ET PH +ID 519 +TI 1760667399.753021240 +CC NStripHits 2 +PE 88.2638 +PP -2.04905 -0.0309117 2.09377 +PW 0 +SE +ET PH +ID 520 +TI 1760667399.753038406 +CC NStripHits 3 +PE 61.2516 +PP 2.02517 0.35853 -1.28202 +PW 0 +SE +ET UN +ID 521 +TI 1760667399.753065824 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.9117 +SE +ET PH +ID 522 +TI 1760667399.753083229 +CC NStripHits 3 +PE 230.979 +PP -1.2342 -0.0201403 -0.117953 +PW 0 +SE +ID 523 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (436.659983)) (GR Hit: Detector ID 0 and Energy 608.781936) +BD GR Veto +PQ 436.66 +SE +ET CO +ID 524 +TI 1760667399.753124713 +CC NStripHits 4 +PQ 45.2871 +SQ 2 +CT 0 1 +TL 1 +TE 46.274 +CE 126.908 1.31084 46.274 1.2644 +CD 0.395484 -0.507502 1.62814 0.0336036 0.0217633 0.0336036 0.279078 -0.460224 1.51173 0.0336036 0.0220013 0.0336036 0 0 0 0 0 0 +LA 0.17128 +SE +ET PH +ID 525 +TI 1760667399.753146409 +CC NStripHits 2 +PE 197.028 +PP -2.86389 -0.0485478 -0.117953 +PW 0 +SE +ET PH +ID 526 +TI 1760667399.753162860 +CC NStripHits 2 +PE 138.723 +PP 3.42205 0.232385 -2.9117 +PW 0 +SE +ID 527 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (569.857793)) (GR Hit: Detector ID 0 and Energy 641.966992) +BD GR Veto +PQ 569.858 +SE +ET PH +ID 528 +TI 1760667399.753195285 +CC NStripHits 2 +PE 52.2196 +PP -2.16545 -0.0316816 -4.30858 +PW 0 +SE +ID 529 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 124.394929) +BD GR Veto +PQ 7.10915 +SE +ET PH +ID 530 +TI 1760667399.753231525 +CC NStripHits 2 +PE 164.376 +PP 2.25798 -0.196035 -2.09686 +PW 0 +SE +ET PH +ID 531 +TI 1760667399.753251314 +CC NStripHits 2 +PE 416.339 +PP -2.86389 0.209918 -2.21327 +PW 0 +SE +ET CO +ID 532 +TI 1760667399.753270626 +CC NStripHits 6 +PQ 16.3512 +SQ 2 +CT 0 1 +TL 1 +TE 31.6249 +CE 169.493 1.79614 31.6249 0.931125 +CD 3.07283 -0.774404 -3.49373 0.0336036 0.0202726 0.0336036 2.37439 -0.810569 -4.30858 0.0336036 0.0201332 0.0336036 0 0 0 0 0 0 +LA 1.07383 +SE +ET PH +ID 533 +TI 1760667399.753328800 +CC NStripHits 2 +PE 122.253 +PP -2.51467 -0.945525 -0.699984 +PW 0 +SE +ET PH +ID 534 +TI 1760667399.753346204 +CC NStripHits 2 +PE 238.056 +PP 0.0462656 0.371593 0.347672 +PW 0 +SE +ID 535 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (44.560561)) (GR Hit: Detector ID 0 and Energy 374.511893) +BD GR Veto +PQ 44.5606 +SE +ET PH +ID 536 +TI 1760667399.753390789 +CC NStripHits 2 +PE 234.14 +PP -0.0701406 -0.101116 2.55939 +PW 0 +SE +ET PH +ID 537 +TI 1760667399.753407716 +CC NStripHits 2 +PE 279.224 +PP 2.72361 -1.08261 1.04611 +PW 0 +SE +ET PH +ID 538 +TI 1760667399.753425359 +CC NStripHits 3 +PE 1128.2 +PP 0.279078 -0.465456 1.86095 +PW 0 +SE +ID 539 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 540 +TI 1760667399.753457546 +CC NStripHits 2 +PE 179.355 +PP 3.77127 -0.742351 -1.28202 +PW 0 +SE +ET PH +ID 541 +TI 1760667399.753475666 +CC NStripHits 2 +PE 201.072 +PP -1.69983 0.0748782 1.16252 +PW 0 +SE +ID 542 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 48.691155) +BD GR Veto +PQ 0.0942071 +SE +ET PH +ID 543 +TI 1760667399.753505229 +CC NStripHits 2 +PE 74.0898 +PP 3.07283 0.00997768 -1.74764 +PW 0 +SE +ET PH +ID 544 +TI 1760667399.753522396 +CC NStripHits 2 +PE 41.4008 +PP 4.12048 -0.972324 1.97736 +PW 0 +SE +ET PH +ID 545 +TI 1760667399.753540039 +CC NStripHits 2 +PE 124.936 +PP -0.186547 -1.08887 -4.6578 +PW 0 +SE +ET PH +ID 546 +TI 1760667399.753555536 +CC NStripHits 2 +PE 231.143 +PP 4.12048 -0.616179 -3.26092 +PW 0 +SE +ET UN +ID 547 +TI 1760667399.753572463 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 145.173 +SE +ET PH +ID 548 +TI 1760667399.753596782 +CC NStripHits 2 +PE 32.6603 +PP 0.395484 -0.670248 -1.51483 +PW 0 +SE +ET PH +ID 549 +TI 1760667399.753614187 +CC NStripHits 2 +PE 125.298 +PP 2.95642 -1.04083 1.51173 +PW 0 +SE +ET PH +ID 550 +TI 1760667399.753633499 +CC NStripHits 2 +PE 139.508 +PP 0.861109 -0.650368 -3.26092 +PW 0 +SE +ET CO +ID 551 +TI 1760667399.753650665 +CC NStripHits 4 +PQ 67.4263 +SQ 2 +CT 0.725547 0.274453 +TL 1 +TE 415.095 +CE 237.464 1.41742 415.095 1.46708 +CD -2.51467 -0.866305 -4.07577 0.0336036 0.0199153 0.0336036 -2.39827 -0.809291 -3.95936 0.0336036 0.0201411 0.0336036 0 0 0 0 0 0 +LA 0.174215 +SE +ET UN +ID 552 +TI 1760667399.753675222 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 553 +TI 1760667399.753692388 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.6674 +SE +ET CO +ID 554 +TI 1760667399.753709077 +CC NStripHits 5 +PQ 24.6595 +SQ 2 +CT 0 1 +TL 1 +TE 33.2518 +CE 160.91 1.34909 33.2518 1.29523 +CD 2.4908 -0.581858 -3.37733 0.0336036 0.0215686 0.0336036 2.84002 0.222438 -3.61014 0.0336036 0.0299395 0.0336036 0 0 0 0 0 0 +LA 0.907219 +SE +ID 555 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (5707.204528)) (GR Hit: Detector ID 0 and Energy 319.895559) +BD GR Veto +PQ 5707.2 +SE +ET PH +ID 556 +TI 1760667399.753748178 +CC NStripHits 3 +PE 238.566 +PP 1.44314 -0.849514 -0.816391 +PW 0 +SE +ID 557 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (95.651806)) (GR Hit: Detector ID 0 and Energy 370.275055) +BD GR Veto +PQ 95.6518 +SE +ET UN +ID 558 +TI 1760667399.753789424 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 661.8 +SE +ID 559 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 116.915250) +BD GR Veto +PQ 2.04908e-05 +SE +ET PH +ID 560 +TI 1760667399.753837823 +CC NStripHits 2 +PE 22.2727 +PP -1.81623 -0.0335555 -1.0492 +PW 0 +SE +ET CO +ID 561 +TI 1760667399.753852367 +CC NStripHits 7 +PQ 60.9329 +SQ 2 +CT 0.771249 0.228751 +TL 1 +TE 454.188 +CE 211.321 1.92855 454.188 1.97492 +CD -1.58342 -0.607501 0.231266 0.0336036 0.021435 0.0336036 -1.69983 -0.603156 0.696891 0.0336036 0.0214488 0.0336036 0 0 0 0 0 0 +LA 0.479976 +SE +ET CO +ID 562 +TI 1760667399.753890037 +CC NStripHits 7 +PQ 23.8799 +SQ 2 +CT 0 1 +TL 1 +TE 78.3376 +CE 134.816 1.86167 78.3376 1.83093 +CD 1.32673 -0.959187 -3.26092 0.0336036 0.0198772 0.0336036 1.09392 -0.664395 -2.7953 0.0336036 0.0211922 0.0336036 0 0 0 0 0 0 +LA 0.598251 +SE +ET UN +ID 563 +TI 1760667399.753924369 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 617.423 +SE +ET UN +ID 564 +TI 1760667399.753973007 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET CO +ID 565 +TI 1760667399.754011869 +CC NStripHits 7 +PQ 28.1259 +SQ 3 +CT 1.0842 1.72284 +TL 1 +TE 82.947 +CE 548.685 2.03696 82.947 0.954555 +CD 0.0462656 -0.634754 -2.56248 0.0336036 0.0214018 0.0336036 0.279078 -0.113743 -1.98045 0.0336036 0.024182 0.0336036 0 0 0 0 0 0 +LA 0.815115 +SE +ID 566 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.142066) +BD GR Veto +PQ 0.777257 +SE +ET PH +ID 567 +TI 1760667399.754064798 +CC NStripHits 4 +PE 124.248 +PP -1.1178 -0.363389 -4.07577 +PW 0 +SE +ID 568 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.740598) +BD GR Veto +PQ 22.1425 +SE +ET PH +ID 569 +TI 1760667399.754128456 +CC NStripHits 2 +PE 234.221 +PP 3.42205 -0.987261 -3.02811 +PW 0 +SE +ET PH +ID 570 +TI 1760667399.754145860 +CC NStripHits 2 +PE 112.405 +PP 3.07283 -1.01107 2.44298 +PW 0 +SE +ET UN +ID 571 +TI 1760667399.754163265 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 572 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.891283) +QA StripPairing (Best reduced chi square is not below 25 (48.868965)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 491.607431) (GR Hit: Detector ID 0 and Energy 464.277457) +BD GR Veto +PQ 48.869 +SE +ET PH +ID 573 +TI 1760667399.754212617 +CC NStripHits 2 +PE 86.3543 +PP 0.511891 0.363905 0.580484 +PW 0 +SE +ET PH +ID 574 +TI 1760667399.754229784 +CC NStripHits 3 +PE 163.558 +PP 3.18923 0.07873 -4.6578 +PW 0 +SE +ID 575 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.831254) (Strip hit removed with energy 8.064995) (Strip hit removed with energy 9.283589) (Strip hit removed with energy 7.275573) +QA StripPairing (Best reduced chi square is not below 25 (5638.651851)) (GR Hit: Detector ID 0 and Energy 295.800706) +BD GR Veto +PQ 5638.65 +SE +ET PH +ID 576 +TI 1760667399.774447679 +CC NStripHits 5 +PE 183.954 +PP 3.42205 -0.383826 -1.98045 +PW 0 +SE +ID 577 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 578 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 24.415413) +BD GR Veto +PQ 4.29482 +SE +ID 579 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.740470) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 454.191111) (GR Hit: Detector ID 0 and Energy 188.738316) +BD GR Veto +PQ 21.2844 +SE +ET UN +ID 580 +TI 1760667399.774569511 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET UN +ID 581 +TI 1760667399.774640560 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 667.034 +SE +ET PH +ID 582 +TI 1760667399.774747371 +CC NStripHits 3 +PE 307.567 +PP 3.53845 -0.958209 -1.16561 +PW 0 +SE +ET PH +ID 583 +TI 1760667399.774785041 +CC NStripHits 3 +PE 444.915 +PP -2.63108 0.370597 -0.816391 +PW 0 +SE +ET PH +ID 584 +TI 1760667399.774822473 +CC NStripHits 2 +PE 123.018 +PP 1.44314 0.314412 2.21017 +PW 0 +SE +ET PH +ID 585 +TI 1760667399.774854898 +CC NStripHits 4 +PE 163.728 +PP -0.768578 -0.928691 -4.54139 +PW 0 +SE +ET UN +ID 586 +TI 1760667399.774893045 +BD DepthCalibrationError (Out of Range) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 120.138 +SE +ET PH +ID 587 +TI 1760667399.774953126 +CC NStripHits 3 +PE 462.625 +PP 3.18923 -0.507346 -2.67889 +PW 0 +SE +ET UN +ID 588 +TI 1760667399.774997472 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 214.438 +SE +ID 589 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 87.763985) +BD GR Veto +PQ 4.60895 +SE +ET PH +ID 590 +TI 1760667399.775087594 +CC NStripHits 3 +PE 202.217 +PP 1.55955 -0.131452 1.16252 +PW 0 +SE +ID 591 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (5861.086086)) (GR Hit: Detector ID 0 and Energy 344.223410) +BD GR Veto +PQ 5861.09 +SE +ET PH +ID 592 +TI 1760667399.775146961 +CC NStripHits 2 +PE 66.3929 +PP 1.09392 -0.295672 -2.56248 +PW 0 +SE +ET PH +ID 593 +TI 1760667399.775179147 +CC NStripHits 3 +PE 465.858 +PP 2.02517 0.360034 -3.37733 +PW 0 +SE +ET PH +ID 594 +TI 1760667399.775211811 +CC NStripHits 2 +PE 71.8471 +PP -2.9803 -1.12064 -0.00154687 +PW 0 +SE +ET PH +ID 595 +TI 1760667399.775226831 +CC NStripHits 2 +PE 100.664 +PP 0.162672 -1.14608 -3.37733 +PW 0 +SE +ET PH +ID 596 +TI 1760667399.775244474 +CC NStripHits 4 +PE 244.957 +PP 0.861109 0.369226 -2.56248 +PW 0 +SE +ET PH +ID 597 +TI 1760667399.775267124 +CC NStripHits 2 +PE 94.7741 +PP 0.395484 0.322663 -3.95936 +PW 0 +SE +ET PH +ID 598 +TI 1760667399.775284767 +CC NStripHits 2 +PE 167.627 +PP -2.63108 -0.350662 2.09377 +PW 0 +SE +ID 599 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 221.803370) +BD GR Veto +PQ 2.64447 +SE +ET PH +ID 600 +TI 1760667399.775308609 +CC NStripHits 2 +PE 126.612 +PP 3.65486 -0.915551 -1.86405 +PW 0 +SE +ET PH +ID 601 +TI 1760667399.775326013 +CC NStripHits 2 +PE 54.4003 +PP -1.46702 0.273628 -1.28202 +PW 0 +SE +ET CO +ID 602 +TI 1760667399.775343179 +CC NStripHits 5 +PQ 11.5824 +SQ 2 +CT 0 1 +TL 1 +TE 71.2981 +CE 187.33 1.40891 71.2981 1.33575 +CD -2.04905 -0.205646 -3.37733 0.0336036 0.0234517 0.0336036 0.395484 0.304482 -1.98045 0.0336036 0.0387778 0.0336036 0 0 0 0 0 0 +LA 2.86134 +SE +ET UN +ID 603 +TI 1760667399.775389432 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 522.108 +SE +ID 604 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (94.287893)) (GR Hit: Detector ID 0 and Energy 545.291493) +BD GR Veto +PQ 94.2879 +SE +ET UN +ID 605 +TI 1760667399.775426149 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.0574 +SE +ET PH +ID 606 +TI 1760667399.775442838 +CC NStripHits 3 +PE 192.653 +PP -2.63108 -1.06164 -0.234359 +PW 0 +SE +ET CO +ID 607 +TI 1760667399.775462388 +CC NStripHits 4 +PQ 45.4688 +SQ 2 +CT 0 1 +TL 1 +TE 92.5417 +CE 341.75 1.42178 92.5417 1.34224 +CD -2.51467 -0.829805 -3.84295 0.0336036 0.0200355 0.0336036 -2.39827 -0.740901 -3.72655 0.0336036 0.0205759 0.0336036 0 0 0 0 0 0 +LA 0.187088 +SE +ET PH +ID 608 +TI 1760667399.775484323 +CC NStripHits 3 +PE 337.567 +PP -2.74748 -0.982789 1.16252 +PW 0 +SE +ET UN +ID 609 +TI 1760667399.775504350 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 610 +TI 1760667399.775515556 +CC NStripHits 4 +PQ 43.6045 +SQ 2 +CT 0 1 +TL 1 +TE 56.4397 +CE 194.346 1.45467 56.4397 0.912455 +CD 0.744703 -0.944154 -3.02811 0.0336036 0.0198103 0.0336036 0.162672 -0.106057 -3.37733 0.0336036 0.0242258 0.0336036 0 0 0 0 0 0 +LA 1.07848 +SE +ID 611 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (40.984285)) (GR Hit: Detector ID 0 and Energy 139.978432) +BD GR Veto +PQ 40.9843 +SE +ID 612 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.476578) +QA StripPairing (Best reduced chi square is not below 25 (29.111757)) (GR Hit: Detector ID 0 and Energy 467.496263) +BD GR Veto +PQ 29.1118 +SE +ET PH +ID 613 +TI 1760667399.775582551 +CC NStripHits 2 +PE 89.1278 +PP 1.44314 0.371674 1.74455 +PW 0 +SE +ET CO +ID 614 +TI 1760667399.775600194 +CC NStripHits 4 +PQ 140.724 +SQ 2 +CT 0 1 +TL 1 +TE 123.455 +CE 535.148 1.59236 123.455 1.31981 +CD 3.42205 -0.615444 -4.54139 0.0336036 0.0214236 0.0336036 2.95642 -0.654075 -4.42498 0.0336036 0.0212761 0.0336036 0 0 0 0 0 0 +LA 0.481513 +SE +ET PH +ID 615 +TI 1760667399.775629758 +CC NStripHits 3 +PE 96.0846 +PP -2.86389 -0.217638 -1.39842 +PW 0 +SE +ID 616 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 119.574497) +BD GR Veto +PQ 0.215553 +SE +ET UN +ID 617 +TI 1760667399.775656938 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 134.324 +SE +ID 618 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 153.006685) +BD GR Veto +PQ 0.0946322 +SE +ET PH +ID 619 +TI 1760667399.775684595 +CC NStripHits 2 +PE 74.4263 +PP -2.86389 0.372521 -1.63123 +PW 0 +SE +ET PH +ID 620 +TI 1760667399.775701999 +CC NStripHits 3 +PE 96.2814 +PP -1.58342 0.333095 -4.6578 +PW 0 +SE +ET UN +ID 621 +TI 1760667399.775718688 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 622 +TI 1760667399.775728702 +CC NStripHits 2 +PE 364.152 +PP -1.00139 0.371686 -2.56248 +PW 0 +SE +ET PH +ID 623 +TI 1760667399.775745868 +CC NStripHits 2 +PE 37.1431 +PP 1.67595 0.118328 -0.816391 +PW 0 +SE +ET PH +ID 624 +TI 1760667399.775763511 +CC NStripHits 2 +PE 346.762 +PP -0.419359 -0.485254 0.347672 +PW 0 +SE +ID 625 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 626 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 443.019600) +BD GR Veto +PQ 6.13303 +SE +ET UN +ID 627 +TI 1760667399.775793075 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5904 +SE +ID 628 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 456.843941) +BD GR Veto +PQ 1.29432 +SE +ET PH +ID 629 +TI 1760667399.775826454 +CC NStripHits 3 +PE 460.92 +PP 1.44314 -0.493969 1.04611 +PW 0 +SE +ET CO +ID 630 +TI 1760667399.775850534 +CC NStripHits 5 +PQ 39.919 +SQ 2 +CT 0 1 +TL 1 +TE 128.208 +CE 590.339 1.52692 128.208 1.80715 +CD 2.25798 0.0819672 -3.02811 0.0336036 0.0259862 0.0336036 0.861109 0.366366 -3.72655 0.0336036 0.0233448 0.0336036 0 0 0 0 0 0 +LA 1.58743 +SE +ID 631 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.557772)) (GR Hit: Detector ID 0 and Energy 474.077040) +BD GR Veto +PQ 25.5578 +SE +ET CO +ID 632 +TI 1760667399.775895357 +CC NStripHits 4 +PQ 37.2711 +SQ 2 +CT 0 1 +TL 1 +TE 132.818 +CE 308.071 1.37657 132.818 1.32883 +CD 3.77127 -0.481467 -4.30858 0.0336036 0.0219082 0.0336036 4.12048 -0.213879 -3.84295 0.0336036 0.0234031 0.0336036 0 0 0 0 0 0 +LA 0.640595 +SE +ET PH +ID 633 +TI 1760667399.775928020 +CC NStripHits 4 +PE 271.597 +PP 1.32673 0.0819685 -3.37733 +PW 0 +SE +ET PH +ID 634 +TI 1760667399.775950193 +CC NStripHits 2 +PE 158.057 +PP 1.90877 -0.105583 -3.84295 +PW 0 +SE +ET UN +ID 635 +TI 1760667399.775967121 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 636 +TI 1760667399.775984287 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 57.9026 +SE +ID 637 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy -0.374854) +QA StripPairing (Best reduced chi square is not below 25 (94.247785)) +BD GR Veto +PQ 94.2478 +SE +ID 638 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy -0.170805) +BD GR Veto +PQ +SE +ET PH +ID 639 +TI 1760667399.796590328 +CC NStripHits 2 +PE 259.798 +PP -2.28186 0.185899 -3.49373 +PW 0 +SE +ID 640 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (6503.819737)) (GR Hit: Detector ID 0 and Energy 342.476581) +BD GR Veto +PQ 6503.82 +SE +ET PH +ID 641 +TI 1760667399.796686649 +CC NStripHits 2 +PE 32.5043 +PP 4.12048 0.0546181 -3.61014 +PW 0 +SE +ID 642 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 182.012569) +BD GR Veto +PQ 3.46132 +SE +ET CO +ID 643 +TI 1760667399.796765804 +CC NStripHits 8 +PQ 25.7102 +SQ 3 +CT 0.0724258 1.21543 +TL 1 +TE 107.281 +CE 379.845 2.3655 107.281 1.39238 +CD 2.25798 -0.475132 -1.0492 0.0336036 0.0219363 0.0336036 2.84002 -0.591803 -0.583578 0.0336036 0.0215092 0.0336036 0 0 0 0 0 0 +LA 0.754445 +SE +ID 644 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 275.919406) +BD GR Veto +PQ 3.37087 +SE +ET PH +ID 645 +TI 1760667399.796867370 +CC NStripHits 2 +PE 191.354 +PP 3.30564 -0.953419 2.6758 +PW 0 +SE +ID 646 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 97.061568) +BD GR Veto +PQ 1.57545 +SE +ET CO +ID 647 +TI 1760667399.796917438 +CC NStripHits 5 +PQ 50.8986 +SQ 2 +CT 0 1 +TL 1 +TE 89.8683 +CE 144.867 1.40689 89.8683 1.35123 +CD 3.77127 -0.801198 -4.07577 0.0336036 0.0201859 0.0336036 3.18923 0.0351223 -4.19217 0.0336036 0.0253886 0.0336036 0 0 0 0 0 0 +LA 1.02555 +SE +ET CO +ID 648 +TI 1760667399.796976804 +CC NStripHits 7 +PQ 29.364 +SQ 2 +CT 0 1 +TL 1 +TE 167.697 +CE 464.531 1.46982 167.697 0.916382 +CD 1.67595 -0.556283 -4.42498 0.0336036 0.0216242 0.0336036 2.02517 -0.576839 -4.54139 0.0336036 0.0215915 0.0336036 0 0 0 0 0 0 +LA 0.368685 +SE +ID 649 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.252559) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 21.175022) +BD GR Veto +PQ 7.6411 +SE +ET CO +ID 650 +TI 1760667399.797048807 +CC NStripHits 5 +PQ 64.1525 +SQ 2 +CT 0 1 +TL 1 +TE 107.559 +CE 341.996 2.00429 107.559 1.33381 +CD 0.0462656 -0.50844 0.114859 0.0336036 0.0217591 0.0336036 3.07283 -0.949372 -1.28202 0.0336036 0.019829 0.0336036 0 0 0 0 0 0 +LA 3.36241 +SE +ET UN +ID 651 +TI 1760667399.797089576 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 316.764 +SE +ID 652 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (321.926310)) (GR Hit: Detector ID 0 and Energy 367.369198) +BD GR Veto +PQ 321.926 +SE +ET UN +ID 653 +TI 1760667399.797123670 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 189.032 +SE +ET PH +ID 654 +TI 1760667399.797158002 +CC NStripHits 3 +PE 78.3317 +PP 1.79236 0.338418 1.27892 +PW 0 +SE +ID 655 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.244870) +BD GR Veto +PQ 0.0823673 +SE +ET PH +ID 656 +TI 1760667399.797188758 +CC NStripHits 4 +PE 477.365 +PP -2.28186 -0.735195 -3.37733 +PW 0 +SE +ET PH +ID 657 +TI 1760667399.797211170 +CC NStripHits 2 +PE 144.918 +PP -0.768578 0.0152303 -2.9117 +PW 0 +SE +ID 658 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.350838) +BD GR Veto +PQ 8.35474 +SE +ET PH +ID 659 +TI 1760667399.797238349 +CC NStripHits 3 +PE 192.089 +PP -0.768578 -0.325666 1.51173 +PW 0 +SE +ET CO +ID 660 +TI 1760667399.797258377 +CC NStripHits 6 +PQ 34.4478 +SQ 3 +CT 0.000901569 0.00365655 +TL 1 +TE 240.362 +CE 287.196 1.88167 240.362 1.38252 +CD -1.46702 -0.656244 0.929703 0.0336036 0.0212576 0.0336036 -1.35061 -0.683788 1.39533 0.0336036 0.0211001 0.0336036 0 0 0 0 0 0 +LA 0.368108 +SE +ET UN +ID 661 +TI 1760667399.797306299 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 502.092 +SE +ET UN +ID 662 +TI 1760667399.797343969 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 606.266 +SE +ID 663 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 60.367297) +BD GR Veto +PQ 0.561759 +SE +ID 664 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.741851) +BD GR Veto +PQ 0.0365816 +SE +ET PH +ID 665 +TI 1760667399.797396898 +CC NStripHits 2 +PE 124.021 +PP 0.511891 -0.319286 -0.234359 +PW 0 +SE +ET PH +ID 666 +TI 1760667399.797414541 +CC NStripHits 2 +PE 33.2978 +PP 2.25798 -0.657789 2.21017 +PW 0 +SE +ET CO +ID 667 +TI 1760667399.797432661 +CC NStripHits 4 +PQ 49.0441 +SQ 2 +CT 0 1 +TL 1 +TE 93.1364 +CE 355.883 1.44318 93.1364 1.34081 +CD 3.65486 -0.754979 -0.234359 0.0336036 0.0204429 0.0336036 1.21033 -0.437755 0.114859 0.0336036 0.022188 0.0336036 0 0 0 0 0 0 +LA 2.48964 +SE +ET PH +ID 668 +TI 1760667399.797474622 +CC NStripHits 3 +PE 52.5322 +PP -1.46702 -1.0676 0.696891 +PW 0 +SE +ID 669 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.088251) +BD GR Veto +PQ 0.398684 +SE +ET CO +ID 670 +TI 1760667399.797534227 +CC NStripHits 5 +PQ 90.2605 +SQ 2 +CT 0.553176 0.446824 +TL 1 +TE 271.226 +CE 167.131 1.32111 271.226 1.4713 +CD -1.46702 -1.11777 -0.467172 0.0336036 0.0293471 0.0336036 -0.884984 0.169003 0.580484 0.0336036 0.0276369 0.0336036 0 0 0 0 0 0 +LA 1.75845 +SE +ET PH +ID 671 +TI 1760667399.797581195 +CC NStripHits 4 +PE 466.854 +PP 3.88767 0.145992 0.696891 +PW 0 +SE +ET PH +ID 672 +TI 1760667399.797608375 +CC NStripHits 2 +PE 74.5291 +PP 2.25798 -1.03866 -3.61014 +PW 0 +SE +ET PH +ID 673 +TI 1760667399.797627210 +CC NStripHits 2 +PE 90.8492 +PP 1.55955 0.161481 2.44298 +PW 0 +SE +ET CO +ID 674 +TI 1760667399.797648191 +CC NStripHits 4 +PQ 67.3825 +SQ 2 +CT 0 1 +TL 1 +TE 87.6297 +CE 201.957 1.37388 87.6297 1.29687 +CD 2.37439 0.0269535 1.04611 0.0336036 0.0253253 0.0336036 2.4908 0.0867833 0.929703 0.0336036 0.0260611 0.0336036 0 0 0 0 0 0 +LA 0.175161 +SE +ET PH +ID 675 +TI 1760667399.797675848 +CC NStripHits 2 +PE 88.8853 +PP 2.14158 -0.591005 2.09377 +PW 0 +SE +ID 676 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 565.550485) (GR Hit: Detector ID 0 and Energy 29.975812) (GR Hit: Detector ID 0 and Energy 57.055530) +BD GR Veto +PQ 20.9394 +SE +ID 677 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.052861) +BD GR Veto +PQ +SE +ET PH +ID 678 +TI 1760667399.797729492 +CC NStripHits 3 +PE 208.792 +PP -0.302953 -0.53212 1.97736 +PW 0 +SE +ET UN +ID 679 +TI 1760667399.797753810 +BD DepthCalibrationError (Out of Range) +CC NStripHits 10 +PE 658.342 +SE +ET PH +ID 680 +TI 1760667399.797810316 +CC NStripHits 2 +PE 161.617 +PP 4.12048 0.208056 -3.84295 +PW 0 +SE +ID 681 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 201.856799) +BD GR Veto +PQ 9.70643 +SE +ID 682 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 390.820512) +BD GR Veto +PQ 3.4292 +SE +ET PH +ID 683 +TI 1760667399.797851324 +CC NStripHits 3 +PE 428.754 +PP 0.977516 0.153966 -0.234359 +PW 0 +SE +ET PH +ID 684 +TI 1760667399.797873973 +CC NStripHits 2 +PE 134.586 +PP -0.652172 -1.11857 1.97736 +PW 0 +SE +ET PH +ID 685 +TI 1760667399.797891378 +CC NStripHits 2 +PE 98.3972 +PP 2.4908 0.264301 2.44298 +PW 0 +SE +ID 686 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.320326) +QA StripPairing (Best reduced chi square is not below 25 (95.939528)) (GR Hit: Detector ID 0 and Energy 87.047001) +BD GR Veto +PQ 95.9395 +SE +ET PH +ID 687 +TI 1760667399.797930479 +CC NStripHits 3 +PE 129.354 +PP 2.95642 0.228684 0.464078 +PW 0 +SE +ET PH +ID 688 +TI 1760667399.797950506 +CC NStripHits 2 +PE 107.749 +PP 1.44314 -0.246502 -3.37733 +PW 0 +SE +ID 689 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 99.507710) +BD GR Veto +PQ 0.0113966 +SE +ID 690 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 52.677815) +BD GR Veto +PQ 1.25087 +SE +ET CO +ID 691 +TI 1760667399.797992229 +CC NStripHits 8 +PQ 14.305 +SQ 3 +CT 0.00478785 0.155419 +TL 1 +TE 147.342 +CE 344.987 2.39068 147.342 1.88809 +CD 1.44314 -0.627854 -0.350766 0.0336036 0.0214174 0.0336036 0.977516 -0.334137 -0.467172 0.0336036 0.0229533 0.0336036 0 0 0 0 0 0 +LA 0.291209 +SE +ID 692 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.572334) +BD GR Veto +PQ 1.47042 +SE +ET PH +ID 693 +TI 1760667399.798036813 +CC NStripHits 2 +PE 135.409 +PP -1.58342 -0.509478 0.929703 +PW 0 +SE +ET PH +ID 694 +TI 1760667399.798053026 +CC NStripHits 2 +PE 170.944 +PP 1.55955 0.272905 -3.72655 +PW 0 +SE +ID 695 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 467.026062) +BD GR Veto +PQ 17.7598 +SE +ET PH +ID 696 +TI 1760667399.798078536 +CC NStripHits 2 +PE 49.3308 +PP -2.74748 0.335942 -1.51483 +PW 0 +SE +ET PH +ID 697 +TI 1760667399.798096179 +CC NStripHits 3 +PE 283.954 +PP 1.90877 -0.586472 0.114859 +PW 0 +SE +ET UN +ID 698 +TI 1760667399.798116683 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 699 +TI 1760667399.798136949 +CC NStripHits 2 +PE 452.583 +PP -1.46702 -0.0507932 -1.51483 +PW 0 +SE +ET PH +ID 700 +TI 1760667399.798154830 +CC NStripHits 2 +PE 266.702 +PP -0.884984 -0.860349 1.62814 +PW 0 +SE +ET UN +ID 701 +TI 1760667399.798171997 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 193.155 +SE +ET UN +ID 702 +TI 1760667399.798217773 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 703 +TI 1760667399.817301511 +CC NStripHits 2 +PE 192.807 +PP 2.84002 0.316351 2.21017 +PW 0 +SE +ET UN +ID 704 +TI 1760667399.817352771 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 4 +PE 97.8301 +SE +ID 705 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (30.494000)) (GR Hit: Detector ID 0 and Energy 95.389171) +BD GR Veto +PQ 30.494 +SE +ET PH +ID 706 +TI 1760667399.817442655 +CC NStripHits 2 +PE 83.6926 +PP -0.768578 0.107348 0.813297 +PW 0 +SE +ET UN +ID 707 +TI 1760667399.817460775 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 708 +TI 1760667399.817476749 +CC NStripHits 7 +PE 666.58 +PP -2.16545 -0.0753202 2.21017 +PW 0 +SE +ID 709 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.202697) +BD GR Veto +PQ 0.168536 +SE +ET PH +ID 710 +TI 1760667399.817519426 +CC NStripHits 2 +PE 190.951 +PP -0.419359 0.249447 -0.699984 +PW 0 +SE +ET PH +ID 711 +TI 1760667399.817537784 +CC NStripHits 2 +PE 136.992 +PP 4.3533 -0.254635 1.74455 +PW 0 +SE +ET UN +ID 712 +TI 1760667399.817553758 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 713 +TI 1760667399.817571640 +CC NStripHits 2 +PE 31.9819 +PP 0.511891 0.339729 -3.26092 +PW 0 +SE +ET PH +ID 714 +TI 1760667399.817589759 +CC NStripHits 4 +PE 406.727 +PP -0.186547 -0.797042 -3.61014 +PW 0 +SE +ET UN +ID 715 +TI 1760667399.817615032 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 480.721 +SE +ET CO +ID 716 +TI 1760667399.817665576 +CC NStripHits 8 +PQ 60.2307 +SQ 3 +CT 0.0581056 0.113627 +TL 1 +TE 371.218 +CE 289.631 2.31715 371.218 1.32441 +CD 0.977516 -1.10607 1.16252 0.0336036 0.0278351 0.0336036 0.395484 -0.913302 0.929703 0.0336036 0.0197797 0.0336036 0 0 0 0 0 0 +LA 0.437778 +SE +ET CO +ID 717 +TI 1760667399.817704677 +CC NStripHits 4 +PQ 15.9216 +SQ 2 +CT 0.720487 0.279513 +TL 1 +TE 421.88 +CE 233.56 1.39367 421.88 1.4108 +CD 1.90877 -0.959715 1.39533 0.0336036 0.01988 0.0336036 3.07283 -0.218321 1.62814 0.0336036 0.0233809 0.0336036 0 0 0 0 0 0 +LA 1.39961 +SE +ID 718 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (360.508561)) (GR Hit: Detector ID 0 and Energy 390.468199) +BD GR Veto +PQ 360.509 +SE +ET PH +ID 719 +TI 1760667399.817746162 +CC NStripHits 2 +PE 79.2612 +PP -0.419359 -0.086026 2.32658 +PW 0 +SE +ET PH +ID 720 +TI 1760667399.817763805 +CC NStripHits 3 +PE 130.965 +PP -0.884984 0.243044 0.464078 +PW 0 +SE +ET PH +ID 721 +TI 1760667399.817783832 +CC NStripHits 2 +PE 282.291 +PP -1.58342 -1.10587 1.97736 +PW 0 +SE +ET PH +ID 722 +TI 1760667399.817803621 +CC NStripHits 3 +PE 168.702 +PP 1.79236 0.224058 -0.816391 +PW 0 +SE +ET PH +ID 723 +TI 1760667399.817824363 +CC NStripHits 2 +PE 63.9034 +PP 0.511891 -0.539475 -1.51483 +PW 0 +SE +ID 724 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (139.276939)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 47.194294)) (GR Hit: Detector ID 0 and Energy 138.847584) +BD GR Veto +PQ 139.277 +SE +ET CO +ID 725 +TI 1760667399.817856788 +CC NStripHits 4 +PQ 52.0706 +SQ 2 +CT 0.714681 0.285319 +TL 1 +TE 429.811 +CE 230.234 1.41344 429.811 1.4781 +CD 1.67595 -0.968083 -3.61014 0.0336036 0.0199236 0.0336036 3.88767 0.197189 -3.95936 0.0336036 0.0285954 0.0336036 0 0 0 0 0 0 +LA 2.52419 +SE +ET PH +ID 726 +TI 1760667399.817891359 +CC NStripHits 3 +PE 182.248 +PP -2.74748 -0.82116 -2.7953 +PW 0 +SE +ET UN +ID 727 +TI 1760667399.817911863 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 728 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.502794) +BD GR Veto +PQ 1.50211 +SE +ET PH +ID 729 +TI 1760667399.817936658 +CC NStripHits 3 +PE 161.646 +PP 2.25798 -0.201955 2.09377 +PW 0 +SE +ET PH +ID 730 +TI 1760667399.817956686 +CC NStripHits 4 +PE 468.621 +PP 1.79236 -0.483444 -2.21327 +PW 0 +SE +ID 731 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 241.375678) +BD GR Veto +PQ 8.12667 +SE +ET PH +ID 732 +TI 1760667399.817986965 +CC NStripHits 2 +PE 101.652 +PP 2.95642 0.128625 -3.61014 +PW 0 +SE +ET UN +ID 733 +TI 1760667399.818006992 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 734 +TI 1760667399.818025112 +CC NStripHits 4 +PQ 59.6008 +SQ 2 +CT 0 1 +TL 1 +TE 88.7228 +CE 379.588 1.64332 88.7228 1.35372 +CD 4.12048 -1.11349 -3.37733 0.0336036 0.0288785 0.0336036 2.72361 -0.209111 -2.09686 0.0336036 0.0234303 0.0336036 0 0 0 0 0 0 +LA 2.0997 +SE +ET PH +ID 735 +TI 1760667399.818062067 +CC NStripHits 3 +PE 435.543 +PP -2.51467 0.365039 -3.84295 +PW 0 +SE +ET PH +ID 736 +TI 1760667399.818082332 +CC NStripHits 3 +PE 123.554 +PP 4.23689 0.139384 1.74455 +PW 0 +SE +ET PH +ID 737 +TI 1760667399.818103551 +CC NStripHits 4 +PE 416.236 +PP -1.2342 0.0998241 1.39533 +PW 0 +SE +ET PH +ID 738 +TI 1760667399.818149328 +CC NStripHits 2 +PE 189.922 +PP -2.51467 -0.994385 -2.67889 +PW 0 +SE +ET UN +ID 739 +TI 1760667399.818166494 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ID 740 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 2.275453) +BD GR Veto +PQ +SE +ET PH +ID 741 +TI 1760667399.818212032 +CC NStripHits 2 +PE 118.629 +PP 0.744703 0.350466 -0.932797 +PW 0 +SE +ET UN +ID 742 +TI 1760667399.818229913 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Out of Range) +CC NStripHits 5 +PE 650.888 +SE +ET PH +ID 743 +TI 1760667399.818263769 +CC NStripHits 3 +PE 437.962 +PP 4.00408 -1.12687 -4.19217 +PW 0 +SE +ET CO +ID 744 +TI 1760667399.818283319 +CC NStripHits 5 +PQ 84.0052 +SQ 2 +CT 0.626524 0.373476 +TL 1 +TE 381.908 +CE 280.429 1.38621 381.908 1.43749 +CD 3.18923 0.249034 -3.72655 0.0336036 0.0324617 0.0336036 2.72361 0.357213 -3.02811 0.0336036 0.0281608 0.0336036 0 0 0 0 0 0 +LA 0.846359 +SE +ID 745 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (39.672962)) (GR Hit: Detector ID 0 and Energy 48.348490) +BD GR Veto +PQ 39.673 +SE +ET PH +ID 746 +TI 1760667399.818330287 +CC NStripHits 2 +PE 276.633 +PP 2.4908 -0.897232 -0.932797 +PW 0 +SE +ID 747 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (208.249798)) (GR Hit: Detector ID 0 and Energy 663.297024) +BD GR Veto +PQ 208.25 +SE +ID 748 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (196.360105)) (GR Hit: Detector ID 0 and Energy 70.234747) +BD GR Veto +PQ 196.36 +SE +ET CO +ID 749 +TI 1760667399.818373203 +CC NStripHits 5 +PQ 46.596 +SQ 2 +CT 0 1 +TL 1 +TE 108.949 +CE 131.083 1.3608 108.949 1.81564 +CD 3.30564 -0.497097 -0.00154687 0.0336036 0.0218194 0.0336036 4.00408 -0.561747 -0.932797 0.0336036 0.0216207 0.0336036 0 0 0 0 0 0 +LA 1.16586 +SE +ET PH +ID 750 +TI 1760667399.818418502 +CC NStripHits 2 +PE 37.1508 +PP 3.88767 -0.515564 1.86095 +PW 0 +SE +ET CO +ID 751 +TI 1760667399.818438291 +CC NStripHits 4 +PQ 5.71552 +SQ 2 +CT 0 1 +TL 1 +TE 95.7336 +CE 165.85 0.924379 95.7336 1.39071 +CD -1.69983 -0.383041 -0.583578 0.0336036 0.0225754 0.0336036 -1.81623 -0.321437 -0.117953 0.0336036 0.0230606 0.0336036 0 0 0 0 0 0 +LA 0.483891 +SE +ID 752 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.497225) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 29.970613) (GR Hit: Detector ID 0 and Energy 36.174161) +BD GR Veto +PQ 21.4776 +SE +ET PH +ID 753 +TI 1760667399.818483829 +CC NStripHits 2 +PE 30.8359 +PP -0.419359 0.226426 -1.86405 +PW 0 +SE +ET CO +ID 754 +TI 1760667399.818501472 +CC NStripHits 4 +PQ 5.49225 +SQ 2 +CT 0 1 +TL 1 +TE 65.7726 +CE 139.658 1.33784 65.7726 0.911967 +CD -0.652172 -1.17262 -3.37733 0.0336036 0.0183019 0.0336036 -0.768578 -0.736904 -3.61014 0.0336036 0.0205994 0.0336036 0 0 0 0 0 0 +LA 0.507542 +SE +ET CO +ID 755 +TI 1760667399.818526268 +CC NStripHits 5 +PQ 61.7278 +SQ 2 +CT 0 1 +TL 1 +TE 90.6149 +CE 148.329 1.87161 90.6149 1.30519 +CD 1.67595 0.120385 -4.54139 0.0336036 0.0265506 0.0336036 1.79236 -0.0178235 -3.61014 0.0336036 0.0248682 0.0336036 0 0 0 0 0 0 +LA 0.94862 +SE +ET PH +ID 756 +TI 1760667399.818561553 +CC NStripHits 4 +PE 309.043 +PP 0.861109 -0.627028 1.86095 +PW 0 +SE +ET UN +ID 757 +TI 1760667399.818597555 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.2432 +SE +ET UN +ID 758 +TI 1760667399.818615913 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 256.253 +SE +ET PH +ID 759 +TI 1760667399.818659543 +CC NStripHits 2 +PE 660.184 +PP 1.21033 0.0520684 -0.234359 +PW 0 +SE +ID 760 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 114.198837) +BD GR Veto +PQ 0.0269018 +SE +ET UN +ID 761 +TI 1760667399.818694829 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 762 +TI 1760667399.818706035 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 763 +TI 1760667399.818723440 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 59.2575 +SE +ET CO +ID 764 +TI 1760667399.818747997 +CC NStripHits 6 +PQ 3.76446 +SQ 3 +CT 0.207567 0.708071 +TL 1 +TE 72.4358 +CE 209.068 1.31118 72.4358 1.27723 +CD -0.652172 -0.798627 -3.14452 0.0336036 0.0201972 0.0336036 -1.00139 -0.358624 -1.16561 0.0336036 0.0227632 0.0336036 0 0 0 0 0 0 +LA 2.0571 +SE +ID 765 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.855759) (Strip hit removed with energy 2.479114) +QA StripPairing (Best reduced chi square is not below 25 (56.369810)) +BD GR Veto +PQ 56.3698 +SE +ET PH +ID 766 +TI 1760667399.818824768 +CC NStripHits 3 +PE 423.428 +PP -2.16545 -0.985673 2.32658 +PW 0 +SE +ET PH +ID 767 +TI 1760667399.837817907 +CC NStripHits 3 +PE 108.779 +PP 4.00408 -0.471653 -1.16561 +PW 0 +SE +ET PH +ID 768 +TI 1760667399.837869644 +CC NStripHits 3 +PE 196.546 +PP -0.768578 -0.483817 -2.32967 +PW 0 +SE +ET PH +ID 769 +TI 1760667399.837891101 +CC NStripHits 2 +PE 268.866 +PP -0.419359 -0.318095 -1.16561 +PW 0 +SE +ET CO +ID 770 +TI 1760667399.837910175 +CC NStripHits 8 +PQ 44.2796 +SQ 3 +CT 0.106718 0.267907 +TL 1 +TE 144.73 +CE 508.827 2.47204 144.73 1.2984 +CD 2.6072 -0.461101 -0.699984 0.0336036 0.0219966 0.0336036 2.72361 -0.363284 -1.98045 0.0336036 0.0227284 0.0336036 0 0 0 0 0 0 +LA 0.814756 +SE +ET PH +ID 771 +TI 1760667399.837968826 +CC NStripHits 3 +PE 217.823 +PP -1.1178 0.249938 -4.30858 +PW 0 +SE +ID 772 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 176.704177) +BD GR Veto +PQ 0.396566 +SE +ET UN +ID 773 +TI 1760667399.837998390 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.9771 +SE +ET UN +ID 774 +TI 1760667399.838019371 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.9615 +SE +ET PH +ID 775 +TI 1760667399.838037014 +CC NStripHits 4 +PE 331.847 +PP 0.628297 -0.896133 1.62814 +PW 0 +SE +ID 776 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1352.441903)) (GR Hit: Detector ID 0 and Energy 147.665159) +BD GR Veto +PQ 1352.44 +SE +ET PH +ID 777 +TI 1760667399.838068008 +CC NStripHits 3 +PE 236.354 +PP -1.35061 0.0450366 2.44298 +PW 0 +SE +ET CO +ID 778 +TI 1760667399.838105678 +CC NStripHits 7 +PQ 19.6033 +SQ 3 +CT 0.00552199 0.216274 +TL 1 +TE 297.022 +CE 302.555 1.85106 297.022 1.35254 +CD 2.72361 0.0269854 1.51173 0.0336036 0.0253256 0.0336036 3.30564 -0.0363464 1.74455 0.0336036 0.0247611 0.0336036 0 0 0 0 0 0 +LA 0.63006 +SE +ET PH +ID 779 +TI 1760667399.838147878 +CC NStripHits 4 +PE 128.252 +PP 3.30564 -0.788201 2.44298 +PW 0 +SE +ID 780 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.176737) (Strip hit removed with energy 18.369529) +BD GR Veto +PQ 14.0922 +SE +ET UN +ID 781 +TI 1760667399.838194847 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 782 +TI 1760667399.838214874 +CC NStripHits 2 +PE 56.6071 +PP -0.768578 -0.587732 -0.699984 +PW 0 +SE +ET CO +ID 783 +TI 1760667399.838232040 +CC NStripHits 6 +PQ 26.9423 +SQ 2 +CT 0 1 +TL 1 +TE 101.994 +CE 326.425 1.96151 101.994 1.26877 +CD -0.652172 -0.33929 -3.72655 0.0336036 0.0229105 0.0336036 -0.0701406 -0.280773 -3.49373 0.0336036 0.0232228 0.0336036 0 0 0 0 0 0 +LA 0.629595 +SE +ET PH +ID 784 +TI 1760667399.838269710 +CC NStripHits 2 +PE 61.8549 +PP -1.81623 -0.753153 -3.61014 +PW 0 +SE +ET CO +ID 785 +TI 1760667399.838287115 +CC NStripHits 5 +PQ 21.7162 +SQ 2 +CT 0.539981 0.460019 +TL 1 +TE 153.078 +CE 197.341 1.40033 153.078 1.39754 +CD 2.02517 0.232245 -0.350766 0.0336036 0.0306905 0.0336036 2.4908 -0.223764 1.86095 0.0336036 0.0233594 0.0336036 0 0 0 0 0 0 +LA 2.30574 +SE +ET PH +ID 786 +TI 1760667399.838325500 +CC NStripHits 2 +PE 428.045 +PP -1.46702 -0.161051 1.16252 +PW 0 +SE +ET PH +ID 787 +TI 1760667399.838345527 +CC NStripHits 3 +PE 275.183 +PP 0.0462656 0.363884 -0.699984 +PW 0 +SE +ET PH +ID 788 +TI 1760667399.838366031 +CC NStripHits 2 +PE 210.086 +PP 3.88767 -0.884682 -2.9117 +PW 0 +SE +ET PH +ID 789 +TI 1760667399.838383913 +CC NStripHits 2 +PE 75.5558 +PP -0.186547 0.356277 -0.816391 +PW 0 +SE +ID 790 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 4.558174) +QA StripPairing (GR Hit: Detector ID 0 and Energy 402.102083) +BD GR Veto +PQ 9.05125 +SE +ET PH +ID 791 +TI 1760667399.838416576 +CC NStripHits 4 +PE 181.181 +PP -2.51467 0.046395 -4.42498 +PW 0 +SE +ET PH +ID 792 +TI 1760667399.838438749 +CC NStripHits 3 +PE 95.7578 +PP 0.279078 0.341601 0.580484 +PW 0 +SE +ET PH +ID 793 +TI 1760667399.838460206 +CC NStripHits 3 +PE 333.056 +PP 1.44314 -0.874421 1.62814 +PW 0 +SE +ET PH +ID 794 +TI 1760667399.838479280 +CC NStripHits 3 +PE 167.973 +PP 0.0462656 -0.186994 1.39533 +PW 0 +SE +ID 795 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.364399) +QA StripPairing (GR Hit: Detector ID 0 and Energy 150.932724) +BD GR Veto +PQ 10.1343 +SE +ET PH +ID 796 +TI 1760667399.838524580 +CC NStripHits 2 +PE 82.9237 +PP 2.37439 0.327664 1.16252 +PW 0 +SE +ET PH +ID 797 +TI 1760667399.838542938 +CC NStripHits 2 +PE 193.641 +PP 3.42205 -0.376843 2.44298 +PW 0 +SE +ET PH +ID 798 +TI 1760667399.838560342 +CC NStripHits 3 +PE 242.982 +PP 1.79236 -0.0184884 -0.234359 +PW 0 +SE +ET PH +ID 799 +TI 1760667399.838580369 +CC NStripHits 2 +PE 162.029 +PP -0.419359 -1.16738 2.09377 +PW 0 +SE +ET CO +ID 800 +TI 1760667399.838600873 +CC NStripHits 5 +PQ 30.6005 +SQ 2 +CT 0.763614 0.236386 +TL 1 +TE 470.358 +CE 196.046 1.42646 470.358 2.04282 +CD 3.42205 -0.579959 0.464078 0.0336036 0.0215781 0.0336036 3.18923 -0.381724 0.347672 0.0336036 0.022586 0.0336036 0 0 0 0 0 0 +LA 0.327189 +SE +ET PH +ID 801 +TI 1760667399.838630437 +CC NStripHits 2 +PE 385.026 +PP -2.28186 -0.538726 -3.14452 +PW 0 +SE +ET PH +ID 802 +TI 1760667399.838648796 +CC NStripHits 3 +PE 274.904 +PP -1.00139 0.342552 2.44298 +PW 0 +SE +ET PH +ID 803 +TI 1760667399.838668346 +CC NStripHits 3 +PE 355.825 +PP 0.628297 -0.415547 2.09377 +PW 0 +SE +ET PH +ID 804 +TI 1760667399.838686943 +CC NStripHits 3 +PE 269.956 +PP 2.72361 -0.407375 -3.26092 +PW 0 +SE +ET PH +ID 805 +TI 1760667399.838707447 +CC NStripHits 3 +PE 132.845 +PP 4.12048 -0.86753 -3.61014 +PW 0 +SE +ET PH +ID 806 +TI 1760667399.838727951 +CC NStripHits 2 +PE 371.045 +PP 0.861109 0.221674 2.55939 +PW 0 +SE +ET PH +ID 807 +TI 1760667399.838745832 +CC NStripHits 3 +PE 661.106 +PP 3.88767 -0.520506 1.16252 +PW 0 +SE +ET CO +ID 808 +TI 1760667399.838774204 +CC NStripHits 4 +PQ 0.482977 +SQ 2 +CT 0 1 +TL 1 +TE 114.602 +CE 161.248 0.930963 114.602 0.934973 +CD -0.419359 -0.0464856 -3.37733 0.0336036 0.0246988 0.0336036 -2.86389 -0.841067 -3.14452 0.0336036 0.0200108 0.0336036 0 0 0 0 0 0 +LA 2.58095 +SE +ET PH +ID 809 +TI 1760667399.838803529 +CC NStripHits 2 +PE 187.673 +PP 1.32673 -0.170178 -0.117953 +PW 0 +SE +ET CO +ID 810 +TI 1760667399.838822841 +CC NStripHits 6 +PQ 75.9153 +SQ 2 +CT 0.671135 0.328865 +TL 1 +TE 399.898 +CE 263.603 1.98401 399.898 1.46103 +CD 2.72361 0.243418 -1.0492 0.0336036 0.0317966 0.0336036 2.37439 0.365913 -1.28202 0.0336036 0.0236054 0.0336036 0 0 0 0 0 0 +LA 0.437224 +SE +ET UN +ID 811 +TI 1760667399.838860988 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 657.808 +SE +ET PH +ID 812 +TI 1760667399.838893175 +CC NStripHits 2 +PE 110.29 +PP 1.09392 0.351579 -3.95936 +PW 0 +SE +ID 813 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (342.583494)) (GR Hit: Detector ID 0 and Energy 83.738769) +BD GR Veto +PQ 342.583 +SE +ET UN +ID 814 +TI 1760667399.838918685 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 402.253 +SE +ET CO +ID 815 +TI 1760667399.838945388 +CC NStripHits 6 +PQ 1.00637 +SQ 2 +CT 0.768257 0.231743 +TL 1 +TE 459.409 +CE 200.45 1.09056 459.409 1.18135 +CD 1.32673 -0.22818 1.97736 0.0336036 0.0233473 0.0336036 1.09392 0.175949 2.09377 0.0336036 0.0278274 0.0336036 0 0 0 0 0 0 +LA 0.4807 +SE +ET PH +ID 816 +TI 1760667399.838971376 +CC NStripHits 3 +PE 650.973 +PP 2.72361 -1.15436 2.32658 +PW 0 +SE +ET PH +ID 817 +TI 1760667399.838993310 +CC NStripHits 2 +PE 68.8916 +PP -2.86389 -0.0382412 0.813297 +PW 0 +SE +ET PH +ID 818 +TI 1760667399.839011430 +CC NStripHits 3 +PE 192.847 +PP 3.30564 -1.06898 -1.28202 +PW 0 +SE +ET PH +ID 819 +TI 1760667399.839031457 +CC NStripHits 2 +PE 106.437 +PP 3.30564 -0.295439 -0.350766 +PW 0 +SE +ID 820 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.883416) +BD GR Veto +PQ 0.634371 +SE +ET UN +ID 821 +TI 1760667399.839076519 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.4256 +SE +ET CO +ID 822 +TI 1760667399.839096784 +CC NStripHits 8 +PQ 8.16507 +SQ 3 +CT 0.00310375 0.105514 +TL 1 +TE 286.697 +CE 212.562 1.83031 286.697 1.8841 +CD 1.44314 -0.759225 -3.26092 0.0336036 0.0203958 0.0336036 0.0462656 0.19779 -2.9117 0.0336036 0.0286214 0.0336036 0 0 0 0 0 0 +LA 0.292057 +SE +ET PH +ID 823 +TI 1760667399.839133501 +CC NStripHits 2 +PE 215.605 +PP 0.977516 0.163871 -3.49373 +PW 0 +SE +ET PH +ID 824 +TI 1760667399.839151144 +CC NStripHits 2 +PE 153.549 +PP -0.419359 -1.07728 -2.32967 +PW 0 +SE +ET PH +ID 825 +TI 1760667399.839178085 +CC NStripHits 3 +PE 187.634 +PP -1.81623 -1.09734 -1.28202 +PW 0 +SE +ET PH +ID 826 +TI 1760667399.839197635 +CC NStripHits 4 +PE 403.536 +PP -1.00139 -0.635735 -3.37733 +PW 0 +SE +ET PH +ID 827 +TI 1760667399.839222431 +CC NStripHits 3 +PE 148.35 +PP -1.2342 -1.08433 -0.467172 +PW 0 +SE +ET PH +ID 828 +TI 1760667399.839249849 +CC NStripHits 3 +PE 331.631 +PP 4.00408 -0.721178 1.97736 +PW 0 +SE +ID 829 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (64.815341)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 31.068052)) +BD GR Veto +PQ 64.8153 +SE +ID 830 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.138740) +QA StripPairing (Best reduced chi square is not below 25 (42.736532)) (GR Hit: Detector ID 0 and Energy 86.040351) +BD GR Veto +PQ 42.7365 +SE +ET UN +ID 831 +TI 1760667399.856194734 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 134.939 +SE +ET PH +ID 832 +TI 1760667399.856254577 +CC NStripHits 4 +PE 259.727 +PP 0.0462656 -1.11154 0.813297 +PW 0 +SE +ET PH +ID 833 +TI 1760667399.856277704 +CC NStripHits 2 +PE 55.6304 +PP -2.39827 -0.240697 -2.32967 +PW 0 +SE +ET UN +ID 834 +TI 1760667399.856296777 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 213.691 +SE +ET PH +ID 835 +TI 1760667399.856324434 +CC NStripHits 2 +PE 56.8929 +PP -0.884984 -0.703553 1.86095 +PW 0 +SE +ET PH +ID 836 +TI 1760667399.856342554 +CC NStripHits 3 +PE 362.687 +PP -1.00139 0.0507918 -0.00154687 +PW 0 +SE +ID 837 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 128.198429) (GR Hit: Detector ID 0 and Energy 55.812235) +BD GR Veto +PQ 0.986867 +SE +ET PH +ID 838 +TI 1760667399.856388330 +CC NStripHits 3 +PE 436.62 +PP -0.884984 0.00447723 -1.86405 +PW 0 +SE +ET UN +ID 839 +TI 1760667399.856408596 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 215.968 +SE +ET PH +ID 840 +TI 1760667399.856436729 +CC NStripHits 2 +PE 212.2 +PP 2.84002 -0.0600429 -2.9117 +PW 0 +SE +ET CO +ID 841 +TI 1760667399.856454133 +CC NStripHits 6 +PQ 2.84261 +SQ 2 +CT 0 1 +TL 1 +TE 54.4051 +CE 202.588 1.79687 54.4051 0.917165 +CD -2.28186 -0.920319 -0.699984 0.0336036 0.0197812 0.0336036 -2.51467 -0.491734 -0.00154687 0.0336036 0.0218518 0.0336036 0 0 0 0 0 0 +LA 0.85188 +SE +ET CO +ID 842 +TI 1760667399.856494426 +CC NStripHits 5 +PQ 84.057 +SQ 2 +CT 0 1 +TL 1 +TE 110.834 +CE 159.078 1.3096 110.834 1.26532 +CD -1.58342 -0.873115 2.55939 0.0336036 0.0198839 0.0336036 -1.1178 -0.797351 2.6758 0.0336036 0.0202022 0.0336036 0 0 0 0 0 0 +LA 0.485894 +SE +ET PH +ID 843 +TI 1760667399.856522560 +CC NStripHits 3 +PE 159.353 +PP 2.25798 -0.665034 0.464078 +PW 0 +SE +ID 844 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 113.507299) +BD GR Veto +PQ 0.00772626 +SE +ET UN +ID 845 +TI 1760667399.856558799 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 115.274 +SE +ET PH +ID 846 +TI 1760667399.856580495 +CC NStripHits 2 +PE 78.1929 +PP -2.51467 -0.375163 -1.63123 +PW 0 +SE +ID 847 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 159.675239) +BD GR Veto +PQ 3.20096 +SE +ET PH +ID 848 +TI 1760667399.856608867 +CC NStripHits 2 +PE 308.204 +PP 0.744703 -0.322822 -2.67889 +PW 0 +SE +ID 849 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.360500) +BD GR Veto +PQ 0.652098 +SE +ET UN +ID 850 +TI 1760667399.856636047 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 8 +PE 0 +SE +ET PH +ID 851 +TI 1760667399.856672286 +CC NStripHits 2 +PE 201.854 +PP 3.88767 -0.883491 1.86095 +PW 0 +SE +ET PH +ID 852 +TI 1760667399.856689214 +CC NStripHits 3 +PE 235.076 +PP 3.65486 -0.821608 -1.16561 +PW 0 +SE +ID 853 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.266398) +QA StripPairing (Best reduced chi square is not below 25 (31.283036)) (GR Hit: Detector ID 0 and Energy 119.025176) +BD GR Veto +PQ 31.283 +SE +ET PH +ID 854 +TI 1760667399.856726169 +CC NStripHits 2 +PE 54.02 +PP -2.63108 -0.48217 -3.61014 +PW 0 +SE +ET PH +ID 855 +TI 1760667399.856743335 +CC NStripHits 2 +PE 121.22 +PP 1.79236 0.163535 -2.9117 +PW 0 +SE +ID 856 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.706881) (Strip hit removed with energy 2.886347) +BD GR Veto +PQ 0.385035 +SE +ET PH +ID 857 +TI 1760667399.856790542 +CC NStripHits 2 +PE 97.8658 +PP -2.9803 -1.15998 1.16252 +PW 0 +SE +ET PH +ID 858 +TI 1760667399.856805801 +CC NStripHits 2 +PE 230.79 +PP -2.28186 -1.12047 -2.56248 +PW 0 +SE +ID 859 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 51.194124) +BD GR Veto +PQ 0.150016 +SE +ET UN +ID 860 +TI 1760667399.856833457 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 136.892 +SE +ET CO +ID 861 +TI 1760667399.856865882 +CC NStripHits 4 +PQ 0.456667 +SQ 2 +CT 0 1 +TL 1 +TE 54.6854 +CE 420.116 0.985282 54.6854 0.91297 +CD -0.419359 0.366392 -2.7953 0.0336036 0.0233295 0.0336036 0.511891 -0.488019 -0.932797 0.0336036 0.0218736 0.0336036 0 0 0 0 0 0 +LA 2.25081 +SE +ID 862 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.551985) +QA StripPairing (Best reduced chi square is not below 25 (46.024153)) (GR Hit: Detector ID 0 and Energy 253.316299) +BD GR Veto +PQ 46.0242 +SE +ET UN +ID 863 +TI 1760667399.856956243 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 652.786 +SE +ET PH +ID 864 +TI 1760667399.857004880 +CC NStripHits 3 +PE 143.426 +PP 0.0462656 -0.977718 1.86095 +PW 0 +SE +ET PH +ID 865 +TI 1760667399.857024669 +CC NStripHits 2 +PE 35.6081 +PP -0.884984 -1.00671 2.44298 +PW 0 +SE +ET PH +ID 866 +TI 1760667399.857042551 +CC NStripHits 3 +PE 332.104 +PP 3.53845 -1.08004 -0.583578 +PW 0 +SE +ET PH +ID 867 +TI 1760667399.857062339 +CC NStripHits 2 +PE 118.322 +PP 0.977516 -0.775027 -0.816391 +PW 0 +SE +ET PH +ID 868 +TI 1760667399.857079267 +CC NStripHits 2 +PE 33.1615 +PP -0.535766 -1.04193 0.231266 +PW 0 +SE +ET UN +ID 869 +TI 1760667399.857096433 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 484.092 +SE +ET PH +ID 870 +TI 1760667399.857121467 +CC NStripHits 2 +PE 239.509 +PP 2.37439 -0.662645 0.464078 +PW 0 +SE +ET PH +ID 871 +TI 1760667399.857147932 +CC NStripHits 2 +PE 48.8604 +PP -2.9803 -0.105249 -2.09686 +PW 0 +SE +ET CO +ID 872 +TI 1760667399.857162952 +CC NStripHits 4 +PQ 35.9449 +SQ 2 +CT 0 1 +TL 1 +TE 35.128 +CE 110.928 0.928747 35.128 1.26812 +CD 2.72361 0.0953326 2.21017 0.0336036 0.0261782 0.0336036 1.55955 -0.15808 2.09377 0.0336036 0.0237763 0.0336036 0 0 0 0 0 0 +LA 1.197 +SE +ET PH +ID 873 +TI 1760667399.857192277 +CC NStripHits 2 +PE 52.1373 +PP -1.2342 0.220819 -0.932797 +PW 0 +SE +ID 874 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.662552) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 181.309562) (GR Hit: Detector ID 0 and Energy 187.473491) (GR Hit: Detector ID 0 and Energy 43.819775) +BD GR Veto +PQ 2.48223 +SE +ET PH +ID 875 +TI 1760667399.857241153 +CC NStripHits 4 +PE 168.04 +PP -0.419359 -0.427867 -4.42498 +PW 0 +SE +ID 876 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.481514) +BD GR Veto +PQ 2.35851 +SE +ET UN +ID 877 +TI 1760667399.857272148 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.411 +SE +ET UN +ID 878 +TI 1760667399.857289314 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8275 +SE +ID 879 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 376.936276) +BD GR Veto +PQ 1.78322 +SE +ET PH +ID 880 +TI 1760667399.857314348 +CC NStripHits 2 +PE 178.749 +PP 2.02517 -0.885508 -4.42498 +PW 0 +SE +ET PH +ID 881 +TI 1760667399.857331991 +CC NStripHits 2 +PE 113.167 +PP 0.861109 -1.04258 0.464078 +PW 0 +SE +ET PH +ID 882 +TI 1760667399.857351779 +CC NStripHits 2 +PE 423.255 +PP -0.186547 -0.845802 -1.51483 +PW 0 +SE +ID 883 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 884 +TI 1760667399.857373952 +CC NStripHits 2 +PE 168.461 +PP 0.0462656 -1.0586 -0.117953 +PW 0 +SE +ET UN +ID 885 +TI 1760667399.857391834 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 886 +TI 1760667399.857412815 +CC NStripHits 3 +PE 478.231 +PP -1.93264 0.341879 -2.7953 +PW 0 +SE +ET CO +ID 887 +TI 1760667399.857432842 +CC NStripHits 4 +PQ 9.43347 +SQ 2 +CT 0 1 +TL 1 +TE 92.8181 +CE 208.592 1.35849 92.8181 1.27658 +CD 4.12048 0.172434 1.04611 0.0336036 0.0277278 0.0336036 4.23689 0.358262 1.39533 0.0336036 0.0276587 0.0336036 0 0 0 0 0 0 +LA 0.412357 +SE +ET PH +ID 888 +TI 1760667399.857459545 +CC NStripHits 2 +PE 226.619 +PP 0.628297 -0.146774 -1.86405 +PW 0 +SE +ET PH +ID 889 +TI 1760667399.857477188 +CC NStripHits 2 +PE 374.095 +PP -0.884984 0.362655 2.55939 +PW 0 +SE +ET UN +ID 890 +TI 1760667399.857496976 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 465.758 +SE +ID 891 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (111.234540)) (GR Hit: Detector ID 0 and Energy 163.682372) +BD GR Veto +PQ 111.235 +SE +ET UN +ID 892 +TI 1760667399.857531785 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 8 +PE 0 +SE +ET CO +ID 893 +TI 1760667399.857578277 +CC NStripHits 6 +PQ 0.594412 +SQ 2 +CT 0.536709 0.463291 +TL 1 +TE 343.703 +CE 312.646 1.36606 343.703 0.951054 +CD 1.44314 -0.532029 1.62814 0.0336036 0.0216803 0.0336036 1.09392 -0.973094 -0.467172 0.0336036 0.0199479 0.0336036 0 0 0 0 0 0 +LA 2.16952 +SE +ET CO +ID 894 +TI 1760667399.857615709 +CC NStripHits 4 +PQ 2.69154 +SQ 2 +CT 0.509351 0.490649 +TL 1 +TE 196.013 +CE 191.042 0.952809 196.013 1.41858 +CD 2.25798 0.365941 -1.86405 0.0336036 0.0235894 0.0336036 1.32673 -0.45859 -2.32967 0.0336036 0.0220105 0.0336036 0 0 0 0 0 0 +LA 1.32811 +SE +ID 895 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 161.119963) +BD GR Veto +PQ 2.82811 +SE +ET CO +ID 896 +TI 1760667399.880689620 +CC NStripHits 5 +PQ 0.0847787 +SQ 2 +CT 0 1 +TL 1 +TE 136.92 +CE 360.917 1.0703 136.92 0.921961 +CD 2.02517 -0.696936 1.86095 0.0336036 0.0210089 0.0336036 2.37439 -0.686024 2.09377 0.0336036 0.0210904 0.0336036 0 0 0 0 0 0 +LA 0.419856 +SE +ID 897 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.972764) +BD GR Veto +PQ 7.72182 +SE +ET PH +ID 898 +TI 1760667399.880737543 +CC NStripHits 3 +PE 476.806 +PP 2.95642 -1.10095 -2.7953 +PW 0 +SE +ID 899 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 94.651731) +BD GR Veto +PQ 0.595803 +SE +ID 900 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 220.979216) +BD GR Veto +PQ 2.92235 +SE +ET PH +ID 901 +TI 1760667399.880774497 +CC NStripHits 3 +PE 25.9062 +PP -1.58342 -0.787045 -1.86405 +PW 0 +SE +ET PH +ID 902 +TI 1760667399.880801439 +CC NStripHits 2 +PE 94.6993 +PP -0.419359 0.332054 0.347672 +PW 0 +SE +ET PH +ID 903 +TI 1760667399.880819082 +CC NStripHits 3 +PE 409.355 +PP -1.1178 0.326495 -0.699984 +PW 0 +SE +ET UN +ID 904 +TI 1760667399.880840301 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 905 +TI 1760667399.880850791 +CC NStripHits 3 +PE 444.275 +PP 2.84002 -0.316648 -1.51483 +PW 0 +SE +ID 906 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.669510) +QA StripPairing (Best reduced chi square is not below 25 (1164.159370)) (GR Hit: Detector ID 0 and Energy 251.936890) +BD GR Veto +PQ 1164.16 +SE +ET UN +ID 907 +TI 1760667399.880888223 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 273.869 +SE +ET UN +ID 908 +TI 1760667399.880929231 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 909 +TI 1760667399.880947351 +CC NStripHits 2 +PE 81.6575 +PP -2.39827 -0.276044 1.62814 +PW 0 +SE +ET PH +ID 910 +TI 1760667399.880965471 +CC NStripHits 2 +PE 120.946 +PP 1.44314 0.145225 -1.74764 +PW 0 +SE +ET PH +ID 911 +TI 1760667399.880983352 +CC NStripHits 3 +PE 116.707 +PP 3.42205 -0.169248 -1.63123 +PW 0 +SE +ET PH +ID 912 +TI 1760667399.881003379 +CC NStripHits 2 +PE 52.4616 +PP -0.652172 -1.12091 -2.21327 +PW 0 +SE +ID 913 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 128.858408) +BD GR Veto +PQ 7.22189 +SE +ET PH +ID 914 +TI 1760667399.881029367 +CC NStripHits 3 +PE 197.223 +PP 0.861109 -0.598198 -2.67889 +PW 0 +SE +ET CO +ID 915 +TI 1760667399.881054639 +CC NStripHits 8 +PQ 0.872545 +SQ 3 +CT 0.00347794 0.0280459 +TL 1 +TE 426.058 +CE 210.617 1.35118 426.058 1.16949 +CD -0.0701406 -0.686126 -1.51483 0.0336036 0.02109 0.0336036 1.09392 0.080321 -0.699984 0.0336036 0.025959 0.0336036 0 0 0 0 0 0 +LA 0.839921 +SE +ET UN +ID 916 +TI 1760667399.881102800 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 917 +TI 1760667399.881114721 +CC NStripHits 6 +PQ 5.30983 +SQ 2 +CT 0.716981 0.283019 +TL 1 +TE 460.596 +CE 192.243 1.79863 460.596 1.12627 +CD 2.6072 -1.01869 -3.84295 0.0336036 0.0203361 0.0336036 2.14158 0.31952 -4.30858 0.0336036 0.0382758 0.0336036 0 0 0 0 0 0 +LA 1.49145 +SE +ID 918 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 109.597617) +BD GR Veto +PQ 5.42545 +SE +ET UN +ID 919 +TI 1760667399.881162405 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 42.1675 +SE +ET PH +ID 920 +TI 1760667399.881191968 +CC NStripHits 2 +PE 426.63 +PP 1.09392 -0.56055 -1.86405 +PW 0 +SE +ID 921 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (34.154614)) (GR Hit: Detector ID 0 and Energy 48.465977) +BD GR Veto +PQ 34.1546 +SE +ET CO +ID 922 +TI 1760667399.881230831 +CC NStripHits 5 +PQ 18.8287 +SQ 2 +CT 0 1 +TL 1 +TE 105.901 +CE 546.064 1.8687 105.901 1.35719 +CD 1.67595 -0.649528 -4.07577 0.0336036 0.021314 0.0336036 0.977516 0.0562655 -3.61014 0.0336036 0.0255601 0.0336036 0 0 0 0 0 0 +LA 1.09671 +SE +ID 923 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (236.734920)) (GR Hit: Detector ID 0 and Energy 664.687148) +BD GR Veto +PQ 236.735 +SE +ID 924 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 101.848562) +BD GR Veto +PQ 0.35756 +SE +ET CO +ID 925 +TI 1760667399.881307125 +CC NStripHits 6 +PQ 26.2618 +SQ 3 +CT 0.0197121 0.0391498 +TL 1 +TE 147.354 +CE 507.413 1.89632 147.354 1.30013 +CD 0.162672 -0.499236 -3.14452 0.0336036 0.0218067 0.0336036 0.279078 -1.12924 -3.37733 0.0336036 0.0299323 0.0336036 0 0 0 0 0 0 +LA 0.681657 +SE +ET PH +ID 926 +TI 1760667399.881343126 +CC NStripHits 2 +PE 455.777 +PP -2.51467 0.351316 -3.72655 +PW 0 +SE +ET PH +ID 927 +TI 1760667399.881363391 +CC NStripHits 2 +PE 83.29 +PP 3.88767 -0.215326 -0.583578 +PW 0 +SE +ET PH +ID 928 +TI 1760667399.881383419 +CC NStripHits 4 +PE 660.444 +PP -2.28186 0.0815831 -3.14452 +PW 0 +SE +ID 929 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 180.583885) +BD GR Veto +PQ 4.58806 +SE +ET PH +ID 930 +TI 1760667399.881419658 +CC NStripHits 2 +PE 25.6826 +PP -2.9803 0.378157 -1.0492 +PW 0 +SE +ET PH +ID 931 +TI 1760667399.881449460 +CC NStripHits 2 +PE 443.842 +PP 2.84002 0.278407 -0.350766 +PW 0 +SE +ET PH +ID 932 +TI 1760667399.881472826 +CC NStripHits 3 +PE 264.55 +PP -0.652172 0.0423804 -0.467172 +PW 0 +SE +ID 933 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.352441) (Strip hit removed with energy 10.557254) +QA StripPairing (Best reduced chi square is not below 25 (71.474336)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 245.794877)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 26.985826) (GR Hit: Detector ID 0 and Energy 227.117232) (GR Hit: Detector ID 0 and Energy 112.508671) +BD GR Veto +PQ 71.4743 +SE +ET PH +ID 934 +TI 1760667399.881519794 +CC NStripHits 2 +PE 278.335 +PP -1.58342 -0.514628 -3.14452 +PW 0 +SE +ET PH +ID 935 +TI 1760667399.881540298 +CC NStripHits 2 +PE 51.5639 +PP -1.1178 -0.0482545 1.51173 +PW 0 +SE +ET UN +ID 936 +TI 1760667399.881560087 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 937 +TI 1760667399.881568431 +CC NStripHits 4 +PQ 12.1166 +SQ 2 +CT 0 1 +TL 1 +TE 107.219 +CE 276.667 0.988145 107.219 1.32037 +CD 1.55955 0.367216 -3.61014 0.0336036 0.0228488 0.0336036 2.37439 0.368188 -0.816391 0.0336036 0.0222726 0.0336036 0 0 0 0 0 0 +LA 2.91015 +SE +ID 938 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 185.800593) +BD GR Veto +PQ 1.54085 +SE +ET CO +ID 939 +TI 1760667399.881626129 +CC NStripHits 5 +PQ 1.52223 +SQ 2 +CT 0 1 +TL 1 +TE 146.046 +CE 337.739 0.97888 146.046 1.05785 +CD 1.55955 -0.498548 1.74455 0.0336036 0.0218108 0.0336036 3.30564 0.156748 -0.816391 0.0336036 0.0273484 0.0336036 0 0 0 0 0 0 +LA 3.16807 +SE +ET PH +ID 940 +TI 1760667399.881660938 +CC NStripHits 3 +PE 362.839 +PP -1.81623 -0.424331 -4.19217 +PW 0 +SE +ET PH +ID 941 +TI 1760667399.881680011 +CC NStripHits 2 +PE 129.618 +PP 0.511891 0.124988 -3.26092 +PW 0 +SE +ET PH +ID 942 +TI 1760667399.881695270 +CC NStripHits 3 +PE 160.905 +PP 2.14158 -0.0325865 -3.95936 +PW 0 +SE +ID 943 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.487180) +BD GR Veto +PQ 0.0277277 +SE +ET PH +ID 944 +TI 1760667399.881722688 +CC NStripHits 4 +PE 660.942 +PP 2.95642 -0.846268 0.580484 +PW 0 +SE +ID 945 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 387.443457) +BD GR Veto +PQ 0.464336 +SE +ID 946 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 85.952650) +BD GR Veto +PQ 0.138532 +SE +ET PH +ID 947 +TI 1760667399.881767511 +CC NStripHits 3 +PE 659.906 +PP 0.628297 -0.442038 -4.42498 +PW 0 +SE +ET UN +ID 948 +TI 1760667399.881792306 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 267.24 +SE +ET PH +ID 949 +TI 1760667399.881821870 +CC NStripHits 2 +PE 117.317 +PP -0.419359 -0.944709 2.21017 +PW 0 +SE +ET PH +ID 950 +TI 1760667399.881840229 +CC NStripHits 2 +PE 147.846 +PP -1.58342 0.316248 2.44298 +PW 0 +SE +ID 951 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 952 +TI 1760667399.881863594 +CC NStripHits 6 +PQ 88.8491 +SQ 3 +CT 0.00937761 0.172407 +TL 1 +TE 187.937 +CE 120.538 1.57948 187.937 1.35094 +CD -0.302953 -0.133689 2.32658 0.0336036 0.0240173 0.0336036 0.511891 -1.04425 2.44298 0.0336036 0.0209919 0.0336036 0 0 0 0 0 0 +LA 0.560602 +SE +ET CO +ID 953 +TI 1760667399.881896734 +CC NStripHits 4 +PQ 9.78742 +SQ 2 +CT 0.755521 0.244479 +TL 1 +TE 442.008 +CE 216.265 1.32557 442.008 0.986322 +CD 0.162672 -0.213318 2.55939 0.0336036 0.0234061 0.0336036 0.744703 0.340593 2.09377 0.0336036 0.0344158 0.0336036 0 0 0 0 0 0 +LA 0.928644 +SE +ID 954 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 27.607032)) +BD GR Veto +PQ 4.55013 +SE +ID 955 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.635905) (Strip hit removed with energy 17.214007) +BD GR Veto +PQ 0.00464089 +SE +ET CO +ID 956 +TI 1760667399.881977319 +CC NStripHits 5 +PQ 0.353251 +SQ 2 +CT 0.741275 0.258725 +TL 1 +TE 464.168 +CE 196.544 1.08924 464.168 0.993287 +CD 0.744703 -0.943113 -3.72655 0.0336036 0.0198073 0.0336036 -0.186547 -0.0300861 -3.26092 0.0336036 0.0247995 0.0336036 0 0 0 0 0 0 +LA 1.38479 +SE +ET PH +ID 957 +TI 1760667399.882011651 +CC NStripHits 3 +PE 125.467 +PP 2.25798 -0.249488 -2.09686 +PW 0 +SE +ET CO +ID 958 +TI 1760667399.882032632 +CC NStripHits 5 +PQ 2.53177 +SQ 2 +CT 0 1 +TL 1 +TE 88.9734 +CE 382.734 1.13539 88.9734 0.91298 +CD 0.162672 -0.28023 -0.00154687 0.0336036 0.0232255 0.0336036 -0.652172 -1.06127 0.231266 0.0336036 0.0218549 0.0336036 0 0 0 0 0 0 +LA 1.15247 +SE +ID 959 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.989233) +BD GR Veto +PQ 0.000145608 +SE +ET PH +ID 960 +TI 1760667399.898315191 +CC NStripHits 3 +PE 112.157 +PP 2.84002 0.199324 1.04611 +PW 0 +SE +ET PH +ID 961 +TI 1760667399.898361921 +CC NStripHits 3 +PE 158.204 +PP 0.0462656 -0.348607 -3.61014 +PW 0 +SE +ET PH +ID 962 +TI 1760667399.898405313 +CC NStripHits 3 +PE 279.07 +PP -1.58342 -1.11507 0.696891 +PW 0 +SE +ET PH +ID 963 +TI 1760667399.898446083 +CC NStripHits 2 +PE 179.537 +PP 4.3533 -0.318373 -3.49373 +PW 0 +SE +ID 964 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 4.310726) +BD GR Veto +PQ +SE +ET UN +ID 965 +TI 1760667399.898494243 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.9883 +SE +ET PH +ID 966 +TI 1760667399.898537158 +CC NStripHits 2 +PE 130.533 +PP -1.1178 -0.550974 -4.30858 +PW 0 +SE +ID 967 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 234.696978) +BD GR Veto +PQ 6.63599 +SE +ET PH +ID 968 +TI 1760667399.898590564 +CC NStripHits 5 +PE 661.957 +PP -1.46702 -0.364412 -1.63123 +PW 0 +SE +ET UN +ID 969 +TI 1760667399.898643255 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 482.11 +SE +ET PH +ID 970 +TI 1760667399.898691415 +CC NStripHits 2 +PE 182.323 +PP -2.51467 -0.806447 -4.19217 +PW 0 +SE +ET CO +ID 971 +TI 1760667399.898729562 +CC NStripHits 7 +PQ 2.13888 +SQ 2 +CT 0.572981 0.427019 +TL 1 +TE 365.325 +CE 294.978 1.29475 365.325 1.8923 +CD 1.79236 0.209032 -4.54139 0.0336036 0.0291512 0.0336036 -2.39827 -0.043431 -2.9117 0.0336036 0.024717 0.0336036 0 0 0 0 0 0 +LA 4.50344 +SE +ET PH +ID 972 +TI 1760667399.898801326 +CC NStripHits 2 +PE 155.8 +PP -0.0701406 -0.525125 0.347672 +PW 0 +SE +ID 973 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 165.851856) +BD GR Veto +PQ 11.3803 +SE +ET PH +ID 974 +TI 1760667399.898836851 +CC NStripHits 3 +PE 222.733 +PP 2.72361 -1.06403 -2.09686 +PW 0 +SE +ET PH +ID 975 +TI 1760667399.898857116 +CC NStripHits 2 +PE 104.772 +PP 1.09392 0.0426694 1.39533 +PW 0 +SE +ET PH +ID 976 +TI 1760667399.898874998 +CC NStripHits 3 +PE 140.206 +PP 2.37439 -0.102339 2.55939 +PW 0 +SE +ET PH +ID 977 +TI 1760667399.898894786 +CC NStripHits 3 +PE 208.316 +PP -1.69983 -0.841245 -2.56248 +PW 0 +SE +ID 978 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.544175) (Strip hit removed with energy 13.432783) +BD GR Veto +PQ +SE +ET UN +ID 979 +TI 1760667399.898925781 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 980 +TI 1760667399.898964881 +CC NStripHits 2 +PE 190.598 +PP 4.23689 -0.441277 -3.26092 +PW 0 +SE +ET PH +ID 981 +TI 1760667399.898983478 +CC NStripHits 2 +PE 243.012 +PP 1.90877 -0.447764 -2.44608 +PW 0 +SE +ET CO +ID 982 +TI 1760667399.899001598 +CC NStripHits 4 +PQ 17.0873 +SQ 2 +CT 0.513111 0.486889 +TL 1 +TE 193.794 +CE 187.339 1.38131 193.794 0.956256 +CD 3.53845 -0.684396 -1.28202 0.0336036 0.0210976 0.0336036 3.42205 -0.741343 -0.117953 0.0336036 0.0205729 0.0336036 0 0 0 0 0 0 +LA 1.17126 +SE +ET UN +ID 983 +TI 1760667399.899028539 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 188.889 +SE +ID 984 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.817606) +BD GR Veto +PQ 18.5962 +SE +ID 985 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.256701) +BD GR Veto +PQ +SE +ET PH +ID 986 +TI 1760667399.899095535 +CC NStripHits 3 +PE 294.64 +PP -2.51467 0.201213 -4.30858 +PW 0 +SE +ID 987 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 457.617924) +BD GR Veto +PQ 12.3713 +SE +ID 988 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.408883) +QA StripPairing (GR Hit: Detector ID 0 and Energy 151.810752) +BD GR Veto +PQ 16.1658 +SE +ET PH +ID 989 +TI 1760667399.899149894 +CC NStripHits 2 +PE 183.73 +PP -2.74748 -0.925201 -2.32967 +PW 0 +SE +ID 990 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (276.433319)) (GR Hit: Detector ID 0 and Energy 101.853726) +BD GR Veto +PQ 276.433 +SE +ET UN +ID 991 +TI 1760667399.899175167 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 992 +TI 1760667399.899217367 +CC NStripHits 2 +PE 41.6278 +PP 2.84002 -0.74027 -4.19217 +PW 0 +SE +ID 993 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 146.532580) +BD GR Veto +PQ 0.827261 +SE +ET PH +ID 994 +TI 1760667399.899242401 +CC NStripHits 2 +PE 102.149 +PP -1.69983 0.366246 -1.16561 +PW 0 +SE +ID 995 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (471.366189)) (GR Hit: Detector ID 0 and Energy 650.471463) +BD GR Veto +PQ 471.366 +SE +ET PH +ID 996 +TI 1760667399.899268627 +CC NStripHits 3 +PE 121.503 +PP 2.14158 -0.680313 1.39533 +PW 0 +SE +ET UN +ID 997 +TI 1760667399.899292230 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 9 +PE 0 +SE +ET PH +ID 998 +TI 1760667399.899341344 +CC NStripHits 2 +PE 358.186 +PP 2.72361 0.252448 -3.61014 +PW 0 +SE +ET PH +ID 999 +TI 1760667399.899362325 +CC NStripHits 2 +PE 27.2677 +PP -0.768578 -0.89136 -2.44608 +PW 0 +SE +ET PH +ID 1000 +TI 1760667399.899381160 +CC NStripHits 2 +PE 170.865 +PP 2.72361 -1.02313 -3.72655 +PW 0 +SE +ET PH +ID 1001 +TI 1760667399.899398565 +CC NStripHits 3 +PE 450.456 +PP -0.302953 -0.846618 2.09377 +PW 0 +SE +ET PH +ID 1002 +TI 1760667399.899421930 +CC NStripHits 2 +PE 401.659 +PP -2.63108 0.261577 -2.9117 +PW 0 +SE +ET PH +ID 1003 +TI 1760667399.899441957 +CC NStripHits 2 +PE 208.361 +PP 1.67595 -0.817682 -1.86405 +PW 0 +SE +ET PH +ID 1004 +TI 1760667399.899458646 +CC NStripHits 2 +PE 127.342 +PP 1.09392 -1.05188 -2.44608 +PW 0 +SE +ET PH +ID 1005 +TI 1760667399.899477243 +CC NStripHits 2 +PE 444.036 +PP -2.74748 0.364511 0.929703 +PW 0 +SE +ID 1006 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 328.394103) +BD GR Veto +PQ 3.72415 +SE +ID 1007 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.132977) (Strip hit removed with energy 10.665394) (Strip hit removed with energy 13.622771) (Strip hit removed with energy 12.562196) (Strip hit removed with energy 8.509361) +QA StripPairing (Best reduced chi square is not below 25 (37.660727)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 34.568771)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 34.084870) (GR Hit: Detector ID 0 and Energy 44.059238) (GR Hit: Detector ID 0 and Energy 1755.169700) +BD GR Veto +PQ 37.6607 +SE +ET PH +ID 1008 +TI 1760667399.899546861 +CC NStripHits 2 +PE 59.7428 +PP 0.744703 -0.220921 -1.16561 +PW 0 +SE +ET CO +ID 1009 +TI 1760667399.899584531 +CC NStripHits 5 +PQ 56.2746 +SQ 2 +CT 0 1 +TL 1 +TE 112.586 +CE 181.135 1.36928 112.586 1.0422 +CD -2.16545 0.369825 2.6758 0.0336036 0.021281 0.0336036 -2.86389 -0.53288 0.929703 0.0336036 0.0216775 0.0336036 0 0 0 0 0 0 +LA 2.08604 +SE +ET PH +ID 1010 +TI 1760667399.899619340 +CC NStripHits 2 +PE 97.7718 +PP 2.95642 -1.00369 -1.39842 +PW 0 +SE +ID 1011 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 405.996937) +BD GR Veto +PQ 0.134973 +SE +ET PH +ID 1012 +TI 1760667399.899645090 +CC NStripHits 3 +PE 468.456 +PP -1.1178 -0.352256 -0.816391 +PW 0 +SE +ET PH +ID 1013 +TI 1760667399.899664640 +CC NStripHits 2 +PE 63.4039 +PP -0.768578 -1.14449 -3.95936 +PW 0 +SE +ET PH +ID 1014 +TI 1760667399.899684906 +CC NStripHits 4 +PE 222.969 +PP -1.58342 -0.88873 0.231266 +PW 0 +SE +ET PH +ID 1015 +TI 1760667399.899707317 +CC NStripHits 3 +PE 415.95 +PP -0.652172 0.0545325 -4.30858 +PW 0 +SE +ID 1016 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 137.968263) +BD GR Veto +PQ 0.411788 +SE +ID 1017 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.248346) +BD GR Veto +PQ 0.148661 +SE +ET PH +ID 1018 +TI 1760667399.899744510 +CC NStripHits 2 +PE 321.284 +PP 4.23689 -0.377863 0.347672 +PW 0 +SE +ID 1019 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.835350) (Strip hit removed with energy 15.758502) +QA StripPairing (GR Hit: Detector ID 0 and Energy 330.356614) +BD GR Veto +PQ 0.331418 +SE +ET PH +ID 1020 +TI 1760667399.899805545 +CC NStripHits 4 +PE 462.777 +PP 0.744703 -0.53473 1.27892 +PW 0 +SE +ID 1021 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 205.194467) +BD GR Veto +PQ 5.87989 +SE +ET PH +ID 1022 +TI 1760667399.899850845 +CC NStripHits 2 +PE 232.996 +PP 0.861109 -0.471773 -0.932797 +PW 0 +SE +ET UN +ID 1023 +TI 1760667399.920396327 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.6586 +SE +ET UN +ID 1024 +TI 1760667399.920451641 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 1025 +TI 1760667399.920470714 +CC NStripHits 4 +PQ 0.0434412 +SQ 2 +CT 0 1 +TL 1 +TE 85.8851 +CE 339.745 0.963263 85.8851 0.903413 +CD 3.53845 -0.460838 -2.09686 0.0336036 0.021998 0.0336036 3.30564 -0.658765 -1.86405 0.0336036 0.0212363 0.0336036 0 0 0 0 0 0 +LA 0.384156 +SE +ET UN +ID 1026 +TI 1760667399.920500040 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ID 1027 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.893250) (Strip hit removed with energy 17.893929) (Strip hit removed with energy 10.026223) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.640355)) (GR Hit: Detector ID 0 and Energy 375.670638) +BD GR Veto +PQ 3.44768 +SE +ET CO +ID 1028 +TI 1760667399.920575857 +CC NStripHits 4 +PQ 1.93535 +SQ 2 +CT 0 1 +TL 1 +TE 109.99 +CE 298.778 0.99819 109.99 0.962199 +CD 0.744703 -0.154221 -1.16561 0.0336036 0.0238101 0.0336036 0.162672 0.357474 -0.00154687 0.0336036 0.0280374 0.0336036 0 0 0 0 0 0 +LA 1.39844 +SE +ID 1029 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.998082) (Strip hit removed with energy 11.140559) +QA StripPairing (Best reduced chi square is not below 25 (34.420983)) (GR Hit: Detector ID 0 and Energy 52.792237) +BD GR Veto +PQ 34.421 +SE +ID 1030 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 257.115112) +BD GR Veto +PQ 0.341861 +SE +ET UN +ID 1031 +TI 1760667399.920650720 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1032 +TI 1760667399.920660972 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 438.585 +SE +ID 1033 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.033327) +BD GR Veto +PQ 12.7782 +SE +ET PH +ID 1034 +TI 1760667399.920710563 +CC NStripHits 2 +PE 54.9522 +PP -1.81623 0.366253 1.27892 +PW 0 +SE +ET PH +ID 1035 +TI 1760667399.920730590 +CC NStripHits 3 +PE 205.598 +PP -2.63108 -0.157386 -3.14452 +PW 0 +SE +ET UN +ID 1036 +TI 1760667399.920751810 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ID 1037 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 92.248283) +BD GR Veto +PQ 0.155129 +SE +ET PH +ID 1038 +TI 1760667399.920807838 +CC NStripHits 2 +PE 236.174 +PP 0.279078 0.0278959 -4.42498 +PW 0 +SE +ET PH +ID 1039 +TI 1760667399.920828104 +CC NStripHits 3 +PE 466.131 +PP 3.65486 0.177588 1.97736 +PW 0 +SE +ET PH +ID 1040 +TI 1760667399.920851230 +CC NStripHits 3 +PE 315.282 +PP -0.535766 -0.788397 1.04611 +PW 0 +SE +ID 1041 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.981465) +BD GR Veto +PQ 3.94285 +SE +ET PH +ID 1042 +TI 1760667399.920887708 +CC NStripHits 2 +PE 69.1971 +PP 0.861109 -0.43297 1.51173 +PW 0 +SE +ET UN +ID 1043 +TI 1760667399.920907258 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 153.691 +SE +ET CO +ID 1044 +TI 1760667399.920937299 +CC NStripHits 6 +PQ 13.7521 +SQ 3 +CT 0.374301 3.22831 +TL 1 +TE 67.2892 +CE 478.775 1.92133 67.2892 1.28237 +CD 1.90877 -0.174299 0.231266 0.0336036 0.0236574 0.0336036 0.977516 -0.568342 1.62814 0.0336036 0.021614 0.0336036 0 0 0 0 0 0 +LA 0.652676 +SE +ET UN +ID 1045 +TI 1760667399.921013832 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 80.2119 +SE +ET PH +ID 1046 +TI 1760667399.921034574 +CC NStripHits 2 +PE 255.861 +PP -2.39827 -0.281819 -3.61014 +PW 0 +SE +ET CO +ID 1047 +TI 1760667399.921052455 +CC NStripHits 4 +PQ 80.1436 +SQ 2 +CT 0 1 +TL 1 +TE 117.745 +CE 377.279 1.29276 117.745 1.21099 +CD 4.23689 -0.59419 -0.932797 0.0336036 0.0214945 0.0336036 3.07283 -0.660758 -0.234359 0.0336036 0.02122 0.0336036 0 0 0 0 0 0 +LA 1.35915 +SE +ET UN +ID 1048 +TI 1760667399.921087265 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1049 +TI 1760667399.921105384 +CC NStripHits 3 +PE 134.453 +PP 3.07283 -0.361106 1.04611 +PW 0 +SE +ID 1050 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 393.548065) +BD GR Veto +PQ 1.94764 +SE +ID 1051 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 40.092338) (GR Hit: Detector ID 0 and Energy 344.223410) +BD GR Veto +PQ 1.42327 +SE +ET PH +ID 1052 +TI 1760667399.921148061 +CC NStripHits 2 +PE 88.6511 +PP -0.186547 -0.296776 -3.14452 +PW 0 +SE +ET PH +ID 1053 +TI 1760667399.921166419 +CC NStripHits 2 +PE 512.534 +PP 1.21033 0.337167 -1.51483 +PW 0 +SE +ET UN +ID 1054 +TI 1760667399.921188592 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.8517 +SE +ID 1055 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 219.020435) +BD GR Veto +PQ 3.16601 +SE +ET PH +ID 1056 +TI 1760667399.921233177 +CC NStripHits 3 +PE 141.276 +PP -1.93264 -0.472754 0.696891 +PW 0 +SE +ET PH +ID 1057 +TI 1760667399.921253681 +CC NStripHits 2 +PE 115.915 +PP 3.18923 -1.17734 -3.02811 +PW 0 +SE +ET PH +ID 1058 +TI 1760667399.921271800 +CC NStripHits 2 +PE 104.135 +PP 1.67595 -0.727707 1.39533 +PW 0 +SE +ID 1059 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.351140) (Strip hit removed with energy 9.018314) +QA StripPairing (GR Hit: Detector ID 0 and Energy 283.421033) +BD GR Veto +PQ 18.905 +SE +ET UN +ID 1060 +TI 1760667399.921332120 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET PH +ID 1061 +TI 1760667399.921374559 +CC NStripHits 2 +PE 63.1549 +PP 3.07283 -1.13482 -3.49373 +PW 0 +SE +ET PH +ID 1062 +TI 1760667399.921392202 +CC NStripHits 2 +PE 99.5508 +PP -1.69983 0.369194 -4.19217 +PW 0 +SE +ET PH +ID 1063 +TI 1760667399.921410083 +CC NStripHits 2 +PE 89.9903 +PP 3.65486 -0.550692 -0.583578 +PW 0 +SE +ET PH +ID 1064 +TI 1760667399.921427488 +CC NStripHits 2 +PE 27.4957 +PP -1.1178 0.377775 1.39533 +PW 0 +SE +ID 1065 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.991322) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 145.177656) (GR Hit: Detector ID 0 and Energy 116.907916) +BD GR Veto +PQ 5.97042 +SE +ET UN +ID 1066 +TI 1760667399.921466350 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 59.3165 +SE +ID 1067 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.117771) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 52.645731)) (GR Hit: Detector ID 0 and Energy 612.808084) +BD GR Veto +PQ 3.7728 +SE +ET PH +ID 1068 +TI 1760667399.921503782 +CC NStripHits 2 +PE 109.201 +PP 0.628297 0.360447 -0.699984 +PW 0 +SE +ET PH +ID 1069 +TI 1760667399.921523809 +CC NStripHits 2 +PE 46.9183 +PP 2.95642 -0.17328 2.09377 +PW 0 +SE +ID 1070 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.787126) +QA StripPairing (Best reduced chi square is not below 25 (40.258876)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 146.932560)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 22.329908) +BD GR Veto +PQ 40.2589 +SE +ET PH +ID 1071 +TI 1760667399.921575307 +CC NStripHits 3 +PE 254.909 +PP 2.37439 -0.216018 -3.84295 +PW 0 +SE +ET UN +ID 1072 +TI 1760667399.921595573 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 497.581 +SE +ID 1073 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 0.47445 +SE +ET UN +ID 1074 +TI 1760667399.921654701 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 660.717 +SE +ET CO +ID 1075 +TI 1760667399.921700000 +CC NStripHits 5 +PQ 32.3952 +SQ 2 +CT 0 1 +TL 1 +TE 73.5022 +CE 146.417 1.0692 73.5022 1.31947 +CD 0.511891 -0.0376959 -3.14452 0.0336036 0.0247526 0.0336036 0.162672 -0.254993 -3.49373 0.0336036 0.023341 0.0336036 0 0 0 0 0 0 +LA 0.539555 +SE +ET PH +ID 1076 +TI 1760667399.921741724 +CC NStripHits 3 +PE 97.272 +PP -2.74748 0.11872 0.929703 +PW 0 +SE +ET PH +ID 1077 +TI 1760667399.921761989 +CC NStripHits 2 +PE 210.274 +PP -1.00139 -0.734703 1.16252 +PW 0 +SE +ET PH +ID 1078 +TI 1760667399.921780824 +CC NStripHits 2 +PE 95.046 +PP 2.25798 0.368511 -3.26092 +PW 0 +SE +ET PH +ID 1079 +TI 1760667399.921798467 +CC NStripHits 2 +PE 114.855 +PP 3.88767 -0.100754 -1.74764 +PW 0 +SE +ET UN +ID 1080 +TI 1760667399.921818971 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 27.8974 +SE +ET PH +ID 1081 +TI 1760667399.921836376 +CC NStripHits 2 +PE 169.14 +PP -1.1178 -0.0856138 2.32658 +PW 0 +SE +ET UN +ID 1082 +TI 1760667399.921854019 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5679 +SE +ET PH +ID 1083 +TI 1760667399.921873807 +CC NStripHits 3 +PE 403.423 +PP 3.88767 0.184179 -2.9117 +PW 0 +SE +ET CO +ID 1084 +TI 1760667399.921897172 +CC NStripHits 6 +PQ 99.7441 +SQ 3 +CT 0.00165352 0.115735 +TL 1 +TE 203.017 +CE 485.831 1.94762 203.017 1.33398 +CD 0.511891 -0.547694 0.114859 0.0336036 0.0216354 0.0336036 0.628297 -0.483534 0.347672 0.0336036 0.0218979 0.0336036 0 0 0 0 0 0 +LA 0.268083 +SE +ID 1085 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.855246) +BD GR Veto +PQ +SE +ET UN +ID 1086 +TI 1760667399.921941518 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 363.522 +SE +ET PH +ID 1087 +TI 1760667399.942412614 +CC NStripHits 2 +PE 191.096 +PP 0.0462656 -0.19546 -3.02811 +PW 0 +SE +ET CO +ID 1088 +TI 1760667399.942484378 +CC NStripHits 4 +PQ 26.4879 +SQ 2 +CT 0 1 +TL 1 +TE 179.451 +CE 481.606 1.03498 179.451 1.30499 +CD 0.162672 0.348281 -1.28202 0.0336036 0.03191 0.0336036 -0.302953 -0.414732 -1.63123 0.0336036 0.0223572 0.0336036 0 0 0 0 0 0 +LA 0.959658 +SE +ID 1089 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1090 +TI 1760667399.942528724 +CC NStripHits 2 +PE 121.151 +PP 2.84002 0.356263 -3.02811 +PW 0 +SE +ET PH +ID 1091 +TI 1760667399.942548036 +CC NStripHits 2 +PE 175.646 +PP -0.302953 0.0955278 1.51173 +PW 0 +SE +ET UN +ID 1092 +TI 1760667399.942566394 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.383 +SE +ET UN +ID 1093 +TI 1760667399.942586660 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.8833 +SE +ET UN +ID 1094 +TI 1760667399.942605733 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 4 +PE 55.7431 +SE +ID 1095 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 175.373430) +BD GR Veto +PQ 2.80368 +SE +ET UN +ID 1096 +TI 1760667399.942651987 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1097 +TI 1760667399.942675352 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 1098 +TI 1760667399.942694664 +CC NStripHits 5 +PQ 1.65418 +SQ 2 +CT 0.551888 0.448112 +TL 1 +TE 350.658 +CE 308.301 0.94427 350.658 1.18468 +CD -2.04905 0.22463 -4.19217 0.0336036 0.0300919 0.0336036 -1.35061 -0.119321 -3.02811 0.0336036 0.0241452 0.0336036 0 0 0 0 0 0 +LA 1.40041 +SE +ET PH +ID 1099 +TI 1760667399.942731618 +CC NStripHits 2 +PE 278.213 +PP 0.628297 -0.456413 0.929703 +PW 0 +SE +ID 1100 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 103.264616) +BD GR Veto +PQ 0.000662483 +SE +ID 1101 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.742794) +BD GR Veto +PQ 4.12497 +SE +ET PH +ID 1102 +TI 1760667399.942775011 +CC NStripHits 4 +PE 480.675 +PP -2.86389 -0.615864 -2.21327 +PW 0 +SE +ET PH +ID 1103 +TI 1760667399.942799329 +CC NStripHits 3 +PE 249.83 +PP -1.1178 0.193213 -4.6578 +PW 0 +SE +ET PH +ID 1104 +TI 1760667399.942817449 +CC NStripHits 2 +PE 224.58 +PP 2.25798 -0.582713 -3.84295 +PW 0 +SE +ET PH +ID 1105 +TI 1760667399.942835092 +CC NStripHits 2 +PE 143.722 +PP 2.4908 0.0792526 0.696891 +PW 0 +SE +ET PH +ID 1106 +TI 1760667399.942862749 +CC NStripHits 2 +PE 461.877 +PP 3.53845 0.00910589 -0.816391 +PW 0 +SE +ET UN +ID 1107 +TI 1760667399.942882776 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1108 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.777878) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 21.175022)) +BD GR Veto +PQ 0.6299 +SE +ET UN +ID 1109 +TI 1760667399.942924737 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 8 +PE 0 +SE +ET PH +ID 1110 +TI 1760667399.942969322 +CC NStripHits 2 +PE 103.549 +PP 3.53845 -0.100728 1.39533 +PW 0 +SE +ET PH +ID 1111 +TI 1760667399.942987680 +CC NStripHits 2 +PE 187.748 +PP -1.46702 -0.170811 -2.7953 +PW 0 +SE +ET CO +ID 1112 +TI 1760667399.943006515 +CC NStripHits 6 +PQ 1.83484 +SQ 2 +CT 0.504004 0.495996 +TL 1 +TE 332.964 +CE 329.275 0.943794 332.964 1.31356 +CD -1.46702 -0.662794 -1.51483 0.0336036 0.0212041 0.0336036 1.90877 0.365705 -2.67889 0.0336036 0.0237245 0.0336036 0 0 0 0 0 0 +LA 3.71602 +SE +ET PH +ID 1113 +TI 1760667399.943042993 +CC NStripHits 2 +PE 250.384 +PP -2.04905 0.235539 -3.26092 +PW 0 +SE +ET UN +ID 1114 +TI 1760667399.943060636 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 276.327 +SE +ET PH +ID 1115 +TI 1760667399.943086624 +CC NStripHits 2 +PE 54.4482 +PP -0.535766 -0.981562 -1.63123 +PW 0 +SE +ET CO +ID 1116 +TI 1760667399.943105936 +CC NStripHits 5 +PQ 8.82579 +SQ 2 +CT 0.731513 0.268487 +TL 1 +TE 428.574 +CE 233.866 1.06974 428.574 1.3209 +CD -0.186547 -0.931599 1.16252 0.0336036 0.0197888 0.0336036 -0.419359 -0.481984 0.464078 0.0336036 0.0219057 0.0336036 0 0 0 0 0 0 +LA 0.862657 +SE +ET PH +ID 1117 +TI 1760667399.943142414 +CC NStripHits 2 +PE 84.5175 +PP 3.30564 -0.650215 -2.56248 +PW 0 +SE +ID 1118 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 40.776188) +BD GR Veto +PQ 0.555639 +SE +ET PH +ID 1119 +TI 1760667399.943168401 +CC NStripHits 4 +PE 415.747 +PP 0.162672 0.258931 0.347672 +PW 0 +SE +ET PH +ID 1120 +TI 1760667399.943196773 +CC NStripHits 3 +PE 267.854 +PP 1.67595 0.271178 2.55939 +PW 0 +SE +ET PH +ID 1121 +TI 1760667399.943228960 +CC NStripHits 6 +PE 473.75 +PP 2.72361 -0.0273361 -0.234359 +PW 0 +SE +ID 1122 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 145.099319) +BD GR Veto +PQ 8.01877 +SE +ET UN +ID 1123 +TI 1760667399.943278074 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 305.203 +SE +ET PH +ID 1124 +TI 1760667399.943322658 +CC NStripHits 2 +PE 43.8097 +PP 3.18923 -0.749338 0.231266 +PW 0 +SE +ID 1125 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 182.518708) +BD GR Veto +PQ 0.0574386 +SE +ID 1126 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.664291) +QA StripPairing (Best reduced chi square is not below 25 (61.573221)) +BD GR Veto +PQ 61.5732 +SE +ET CO +ID 1127 +TI 1760667399.943372964 +CC NStripHits 6 +PQ 2.55697 +SQ 2 +CT 0 1 +TL 1 +TE 170.762 +CE 489.011 1.35101 170.762 0.947945 +CD 2.4908 -0.555663 -0.350766 0.0336036 0.0216247 0.0336036 2.72361 -0.413508 -0.816391 0.0336036 0.0223636 0.0336036 0 0 0 0 0 0 +LA 0.539644 +SE +ID 1128 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 107.138453) +BD GR Veto +PQ 1.25366 +SE +ID 1129 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.771834) +QA StripPairing (Best reduced chi square is not below 25 (289.684204)) (GR Hit: Detector ID 0 and Energy 662.524683) +BD GR Veto +PQ 289.684 +SE +ET UN +ID 1130 +TI 1760667399.943440914 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.3196 +SE +ID 1131 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.215908) (Strip hit removed with energy 9.526753) +QA StripPairing (GR Hit: Detector ID 0 and Energy 212.271643) +BD GR Veto +PQ 10.7709 +SE +ID 1132 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (31.930898)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 69.195381) +BD GR Veto +PQ 31.9309 +SE +ID 1133 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 340.639301) +BD GR Veto +PQ 3.97831 +SE +ET PH +ID 1134 +TI 1760667399.943588495 +CC NStripHits 2 +PE 488.632 +PP 2.37439 0.357212 -1.0492 +PW 0 +SE +ET PH +ID 1135 +TI 1760667399.943631172 +CC NStripHits 4 +PE 118.265 +PP 3.42205 0.17481 -2.67889 +PW 0 +SE +ET UN +ID 1136 +TI 1760667399.943676471 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 342.965 +SE +ET PH +ID 1137 +TI 1760667399.943735122 +CC NStripHits 3 +PE 98.0572 +PP 2.72361 -0.109059 1.16252 +PW 0 +SE +ID 1138 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 304.821421) +BD GR Veto +PQ 0.00933714 +SE +ET CO +ID 1139 +TI 1760667399.943830251 +CC NStripHits 5 +PQ 8.81497 +SQ 2 +CT 0 1 +TL 1 +TE 68.3695 +CE 426.785 1.34481 68.3695 1.27465 +CD 2.14158 -0.234574 0.929703 0.0336036 0.023339 0.0336036 1.09392 -0.6623 0.580484 0.0336036 0.0212079 0.0336036 0 0 0 0 0 0 +LA 1.18427 +SE +ID 1140 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 466.712584) +BD GR Veto +PQ 23.8726 +SE +ID 1141 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.925523) +BD GR Veto +PQ 4.13349 +SE +ET CO +ID 1142 +TI 1760667399.943919897 +CC NStripHits 5 +PQ 2.74138 +SQ 2 +CT 0.645851 0.354149 +TL 1 +TE 393.484 +CE 272.76 1.8578 393.484 0.955652 +CD 0.0462656 -0.198122 1.39533 0.0336036 0.0235011 0.0336036 0.279078 0.353601 0.347672 0.0336036 0.0297893 0.0336036 0 0 0 0 0 0 +LA 1.20673 +SE +ET PH +ID 1143 +TI 1760667399.943976402 +CC NStripHits 4 +PE 658.9 +PP 0.162672 -0.515684 -1.0492 +PW 0 +SE +ID 1144 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.689132) (Strip hit removed with energy 6.355551) +QA StripPairing (GR Hit: Detector ID 0 and Energy 660.207443) +BD GR Veto +PQ 3.96829 +SE +ET UN +ID 1145 +TI 1760667399.944037199 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 391.132 +SE +ET PH +ID 1146 +TI 1760667399.944077253 +CC NStripHits 3 +PE 260.409 +PP 0.977516 -0.0183277 1.86095 +PW 0 +SE +ID 1147 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 127.929732) (GR Hit: Detector ID 0 and Energy 98.969236) +BD GR Veto +PQ 19.8439 +SE +ET PH +ID 1148 +TI 1760667399.944152116 +CC NStripHits 2 +PE 25.9561 +PP -2.51467 -0.399111 -3.37733 +PW 0 +SE +ET UN +ID 1149 +TI 1760667399.944170236 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.7352 +SE +ID 1150 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 241.114027) +BD GR Veto +PQ 3.30316 +SE +ET PH +ID 1151 +TI 1760667399.965291738 +CC NStripHits 2 +PE 72.0553 +PP 1.32673 -0.472604 1.04611 +PW 0 +SE +ID 1152 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.605189) (Strip hit removed with energy 18.864695) +BD GR Veto +PQ 1.89127 +SE +ET PH +ID 1153 +TI 1760667399.965368032 +CC NStripHits 3 +PE 98.6845 +PP -2.74748 -0.781156 0.347672 +PW 0 +SE +ET PH +ID 1154 +TI 1760667399.965388774 +CC NStripHits 3 +PE 178.696 +PP -1.46702 -0.0583077 -3.49373 +PW 0 +SE +ET UN +ID 1155 +TI 1760667399.965412378 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.0934 +SE +ET PH +ID 1156 +TI 1760667399.965430498 +CC NStripHits 3 +PE 459.169 +PP 0.162672 -0.933313 2.55939 +PW 0 +SE +ET PH +ID 1157 +TI 1760667399.965451002 +CC NStripHits 3 +PE 171.129 +PP -0.535766 0.333659 -0.00154687 +PW 0 +SE +ET UN +ID 1158 +TI 1760667399.965471506 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7792 +SE +ET UN +ID 1159 +TI 1760667399.965489625 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 1160 +TI 1760667399.965500593 +CC NStripHits 7 +PQ 1.31764 +SQ 3 +CT 0.0164461 0.0667889 +TL 1 +TE 191.324 +CE 466.579 1.44902 191.324 0.936026 +CD -1.00139 -0.782959 0.696891 0.0336036 0.0202419 0.0336036 -0.652172 -1.18172 0.464078 0.0336036 0.0122013 0.0336036 0 0 0 0 0 0 +LA 0.578935 +SE +ET PH +ID 1161 +TI 1760667399.965550661 +CC NStripHits 2 +PE 78.3609 +PP -1.2342 -0.966572 -1.74764 +PW 0 +SE +ET CO +ID 1162 +TI 1760667399.965604782 +CC NStripHits 6 +PQ 42.2342 +SQ 2 +CT 0.732219 0.267781 +TL 1 +TE 436.285 +CE 234.596 1.27841 436.285 1.96771 +CD 3.77127 -0.86387 -2.56248 0.0336036 0.0199271 0.0336036 3.53845 -0.621133 -3.72655 0.0336036 0.0214217 0.0336036 0 0 0 0 0 0 +LA 1.21169 +SE +ET UN +ID 1163 +TI 1760667399.965644836 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 1164 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 129.057699) +BD GR Veto +PQ 2.76066 +SE +ET PH +ID 1165 +TI 1760667399.965672969 +CC NStripHits 2 +PE 137.157 +PP 1.55955 -0.376972 -1.0492 +PW 0 +SE +ET PH +ID 1166 +TI 1760667399.965688228 +CC NStripHits 3 +PE 461.629 +PP 3.53845 -0.377252 -2.44608 +PW 0 +SE +ID 1167 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.334738) +QA StripPairing (GR Hit: Detector ID 0 and Energy 178.562436) +BD GR Veto +PQ 6.7672 +SE +ID 1168 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.880628) +BD GR Veto +PQ 1.75866 +SE +ET UN +ID 1169 +TI 1760667399.965737819 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1170 +TI 1760667399.965754985 +CC NStripHits 2 +PE 111.326 +PP 3.53845 -0.97007 -2.67889 +PW 0 +SE +ET PH +ID 1171 +TI 1760667399.965772628 +CC NStripHits 3 +PE 489.984 +PP 2.72361 0.217193 1.39533 +PW 0 +SE +ET UN +ID 1172 +TI 1760667399.965794801 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 125.785 +SE +ET PH +ID 1173 +TI 1760667399.965825080 +CC NStripHits 4 +PE 663.439 +PP -0.652172 -0.626472 -0.467172 +PW 0 +SE +ID 1174 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.095431) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.863700)) (GR Hit: Detector ID 0 and Energy 345.347768) +BD GR Veto +PQ 0.615216 +SE +ET PH +ID 1175 +TI 1760667399.965877532 +CC NStripHits 2 +PE 425.353 +PP 4.3533 -0.609414 1.51173 +PW 0 +SE +ET UN +ID 1176 +TI 1760667399.965894699 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1177 +TI 1760667399.965932130 +CC NStripHits 2 +PE 285.65 +PP 2.72361 0.193609 -0.00154687 +PW 0 +SE +ET PH +ID 1178 +TI 1760667399.965952396 +CC NStripHits 2 +PE 62.1268 +PP 2.14158 -1.11963 0.813297 +PW 0 +SE +ET UN +ID 1179 +TI 1760667399.965969085 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 534.704 +SE +ID 1180 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.151110) +BD GR Veto +PQ 0.0884141 +SE +ET PH +ID 1181 +TI 1760667399.966006755 +CC NStripHits 3 +PE 138.561 +PP -1.46702 0.24 -3.49373 +PW 0 +SE +ID 1182 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1174.905433)) (GR Hit: Detector ID 0 and Energy 261.386123) +BD GR Veto +PQ 1174.91 +SE +ET PH +ID 1183 +TI 1760667399.966033935 +CC NStripHits 2 +PE 178.908 +PP 0.0462656 -0.00987307 -4.54139 +PW 0 +SE +ET UN +ID 1184 +TI 1760667399.966051578 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 44.9713 +SE +ET PH +ID 1185 +TI 1760667399.966071605 +CC NStripHits 2 +PE 113.022 +PP 2.14158 0.193294 0.231266 +PW 0 +SE +ET PH +ID 1186 +TI 1760667399.966089725 +CC NStripHits 2 +PE 76.3429 +PP -0.302953 0.372916 -4.07577 +PW 0 +SE +ET PH +ID 1187 +TI 1760667399.966108560 +CC NStripHits 3 +PE 411.796 +PP -2.28186 0.265333 -1.28202 +PW 0 +SE +ET PH +ID 1188 +TI 1760667399.966128349 +CC NStripHits 2 +PE 110.03 +PP -2.74748 -0.456236 1.04611 +PW 0 +SE +ET PH +ID 1189 +TI 1760667399.966145992 +CC NStripHits 3 +PE 456.766 +PP 2.02517 0.34774 -1.0492 +PW 0 +SE +ET PH +ID 1190 +TI 1760667399.966170310 +CC NStripHits 2 +PE 94.5645 +PP -2.86389 0.370708 1.27892 +PW 0 +SE +ET PH +ID 1191 +TI 1760667399.966187715 +CC NStripHits 3 +PE 94.608 +PP -0.419359 -0.995942 -4.42498 +PW 0 +SE +ET PH +ID 1192 +TI 1760667399.966206789 +CC NStripHits 4 +PE 113.298 +PP 0.0462656 -0.787013 -1.16561 +PW 0 +SE +ET PH +ID 1193 +TI 1760667399.966229200 +CC NStripHits 2 +PE 55.8369 +PP -2.39827 -0.0922003 -0.117953 +PW 0 +SE +ET UN +ID 1194 +TI 1760667399.966246128 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1195 +TI 1760667399.966261148 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 61.4205 +SE +ET UN +ID 1196 +TI 1760667399.966292381 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 661.346 +SE +ET PH +ID 1197 +TI 1760667399.966326713 +CC NStripHits 3 +PE 447.538 +PP 2.4908 -1.13636 1.27892 +PW 0 +SE +ET PH +ID 1198 +TI 1760667399.966361999 +CC NStripHits 2 +PE 107.935 +PP -0.419359 -0.172704 -4.54139 +PW 0 +SE +ET CO +ID 1199 +TI 1760667399.966381788 +CC NStripHits 7 +PQ 0.932007 +SQ 3 +CT 0.0920743 0.242818 +TL 1 +TE 74.1753 +CE 328.054 1.43643 74.1753 0.898071 +CD 2.72361 -0.160438 2.55939 0.0336036 0.0237568 0.0336036 0.977516 -0.891004 1.16252 0.0336036 0.0198197 0.0336036 0 0 0 0 0 0 +LA 1.28402 +SE +ET PH +ID 1200 +TI 1760667399.966425657 +CC NStripHits 4 +PE 444.362 +PP 0.0462656 0.147471 -1.63123 +PW 0 +SE +ID 1201 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.509136) +QA StripPairing (GR Hit: Detector ID 0 and Energy 209.123591) +BD GR Veto +PQ 15.858 +SE +ET PH +ID 1202 +TI 1760667399.966465473 +CC NStripHits 2 +PE 141.84 +PP 3.42205 0.174947 2.21017 +PW 0 +SE +ID 1203 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (88.900462)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 118.361833) (GR Hit: Detector ID 0 and Energy 509.596401) +BD GR Veto +PQ 88.9005 +SE +ET UN +ID 1204 +TI 1760667399.966499328 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.2835 +SE +ET PH +ID 1205 +TI 1760667399.966514587 +CC NStripHits 2 +PE 42.2015 +PP 2.4908 -0.00217542 -3.02811 +PW 0 +SE +ET CO +ID 1206 +TI 1760667399.966532707 +CC NStripHits 6 +PQ 23.5476 +SQ 2 +CT 0 1 +TL 1 +TE 114.728 +CE 544.856 1.34563 114.728 1.28683 +CD 2.6072 0.265478 -4.42498 0.0336036 0.03473 0.0336036 3.07283 -0.847553 -3.84295 0.0336036 0.0199951 0.0336036 0 0 0 0 0 0 +LA 1.33956 +SE +ID 1207 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (13324.674370)) (GR Hit: Detector ID 0 and Energy 450.102576) +BD GR Veto +PQ 13324.7 +SE +ET CO +ID 1208 +TI 1760667399.966580390 +CC NStripHits 6 +PQ 1.69715 +SQ 2 +CT 0 1 +TL 1 +TE 141.201 +CE 336.408 0.961275 141.201 1.87324 +CD 0.395484 -0.183466 -0.583578 0.0336036 0.0235984 0.0336036 1.44314 0.053293 -1.63123 0.0336036 0.0255254 0.0336036 0 0 0 0 0 0 +LA 1.5004 +SE +ID 1209 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 269.806284) +BD GR Veto +PQ 4.71038 +SE +ET PH +ID 1210 +TI 1760667399.966629981 +CC NStripHits 3 +PE 249.393 +PP -1.2342 -0.0477213 0.114859 +PW 0 +SE +ET CO +ID 1211 +TI 1760667399.966661453 +CC NStripHits 7 +PQ 3.12035 +SQ 2 +CT 0 1 +TL 1 +TE 126.1 +CE 213.249 1.42243 126.1 0.926137 +CD -2.04905 -0.277121 -2.56248 0.0336036 0.0232424 0.0336036 -1.81623 -0.0704281 -2.67889 0.0336036 0.0245451 0.0336036 0 0 0 0 0 0 +LA 0.332383 +SE +ET CO +ID 1212 +TI 1760667399.966691017 +CC NStripHits 6 +PQ 26.9794 +SQ 2 +CT 0.648525 0.351475 +TL 1 +TE 386.496 +CE 265.943 1.90226 386.496 1.12462 +CD 2.37439 0.0300851 0.231266 0.0336036 0.0253521 0.0336036 2.84002 0.232749 -0.932797 0.0336036 0.0307343 0.0336036 0 0 0 0 0 0 +LA 1.27001 +SE +ID 1213 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1431.103115)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 62.723205)) (GR Hit: Detector ID 0 and Energy 303.823866) +BD GR Veto +PQ 1431.1 +SE +ET PH +ID 1214 +TI 1760667399.966752767 +CC NStripHits 3 +PE 245.998 +PP -0.419359 -0.85801 -4.07577 +PW 0 +SE +ET CO +ID 1215 +TI 1760667399.986790418 +CC NStripHits 7 +PQ 3.5316 +SQ 2 +CT 0.539323 0.460677 +TL 1 +TE 201.197 +CE 183.891 1.29515 201.197 1.24563 +CD -1.81623 0.375631 -3.49373 0.0336036 0.0175864 0.0336036 -2.04905 0.00538282 -3.95936 0.0336036 0.0250686 0.0336036 0 0 0 0 0 0 +LA 0.638827 +SE +ID 1216 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 313.261786) +BD GR Veto +PQ 5.7252 +SE +ET PH +ID 1217 +TI 1760667399.986874580 +CC NStripHits 4 +PE 404.074 +PP -0.419359 -1.04094 1.62814 +PW 0 +SE +ET PH +ID 1218 +TI 1760667399.986910820 +CC NStripHits 3 +PE 661.104 +PP 3.30564 -0.550024 -4.07577 +PW 0 +SE +ET UN +ID 1219 +TI 1760667399.986937046 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 344.386 +SE +ID 1220 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.834539) +BD GR Veto +PQ 1.48356 +SE +ET PH +ID 1221 +TI 1760667399.986983060 +CC NStripHits 2 +PE 141.686 +PP -2.74748 -1.10557 1.04611 +PW 0 +SE +ET PH +ID 1222 +TI 1760667399.987002372 +CC NStripHits 2 +PE 306.272 +PP 3.53845 -0.757444 -1.39842 +PW 0 +SE +ET PH +ID 1223 +TI 1760667399.987020015 +CC NStripHits 2 +PE 71.1388 +PP -1.00139 -0.995748 1.16252 +PW 0 +SE +ET UN +ID 1224 +TI 1760667399.987042188 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1225 +TI 1760667399.987060546 +CC NStripHits 4 +PE 661.213 +PP -1.46702 -0.608895 2.32658 +PW 0 +SE +ET CO +ID 1226 +TI 1760667399.987084627 +CC NStripHits 6 +PQ 51.4567 +SQ 2 +CT 0.644414 0.355586 +TL 1 +TE 378.045 +CE 265.175 1.41996 378.045 1.31728 +CD -0.884984 -0.340671 -2.7953 0.0336036 0.0228993 0.0336036 -1.58342 0.0486152 -2.32967 0.0336036 0.0254805 0.0336036 0 0 0 0 0 0 +LA 0.925293 +SE +ET PH +ID 1227 +TI 1760667399.987125158 +CC NStripHits 2 +PE 162.02 +PP 4.12048 -0.206994 1.39533 +PW 0 +SE +ET CO +ID 1228 +TI 1760667399.987145900 +CC NStripHits 7 +PQ 2.14902 +SQ 2 +CT 0 1 +TL 1 +TE 128.58 +CE 532.68 1.55345 128.58 0.923112 +CD 1.44314 -0.111825 -3.14452 0.0336036 0.0241933 0.0336036 0.977516 -0.351161 -2.44608 0.0336036 0.0228187 0.0336036 0 0 0 0 0 0 +LA 0.872872 +SE +ET PH +ID 1229 +TI 1760667399.987185716 +CC NStripHits 2 +PE 96.2967 +PP -0.768578 0.367725 1.62814 +PW 0 +SE +ID 1230 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.468631) (Strip hit removed with energy 17.117428) +BD GR Veto +PQ +SE +ET PH +ID 1231 +TI 1760667399.987224578 +CC NStripHits 3 +PE 383.337 +PP -0.652172 0.17616 0.929703 +PW 0 +SE +ID 1232 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 289.072123) +BD GR Veto +PQ 1.67927 +SE +ET PH +ID 1233 +TI 1760667399.987272977 +CC NStripHits 2 +PE 66.4657 +PP 4.23689 -0.537809 -1.39842 +PW 0 +SE +ID 1234 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.159346) +BD GR Veto +PQ 0.0214964 +SE +ET PH +ID 1235 +TI 1760667399.987298965 +CC NStripHits 2 +PE 197.671 +PP 1.32673 -0.675161 -4.42498 +PW 0 +SE +ET PH +ID 1236 +TI 1760667399.987317085 +CC NStripHits 2 +PE 129.047 +PP -2.74748 -0.986904 -1.74764 +PW 0 +SE +ET PH +ID 1237 +TI 1760667399.987334966 +CC NStripHits 2 +PE 82.995 +PP -1.93264 -0.908915 -3.84295 +PW 0 +SE +ET CO +ID 1238 +TI 1760667399.987356901 +CC NStripHits 4 +PQ 7.67773 +SQ 2 +CT 0.601451 0.398549 +TL 1 +TE 371.804 +CE 289.532 1.41639 371.804 0.947773 +CD -0.535766 -0.124951 1.04611 0.0336036 0.0241004 0.0336036 0.395484 0.0685486 1.27892 0.0336036 0.0257508 0.0336036 0 0 0 0 0 0 +LA 0.979219 +SE +ID 1239 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 118.540730) +BD GR Veto +PQ 2.92678 +SE +ID 1240 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.498330) +BD GR Veto +PQ 1.03791 +SE +ET PH +ID 1241 +TI 1760667399.987421512 +CC NStripHits 3 +PE 241.778 +PP 2.14158 -0.916084 1.51173 +PW 0 +SE +ET PH +ID 1242 +TI 1760667399.987443208 +CC NStripHits 2 +PE 137.933 +PP -1.46702 -0.446008 0.813297 +PW 0 +SE +ID 1243 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.883824) (Strip hit removed with energy 2.479114) +BD GR Veto +PQ +SE +ET UN +ID 1244 +TI 1760667399.987470149 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 453.573 +SE +ET PH +ID 1245 +TI 1760667399.987498521 +CC NStripHits 2 +PE 86.2872 +PP 0.162672 0.369552 -1.16561 +PW 0 +SE +ET PH +ID 1246 +TI 1760667399.987517118 +CC NStripHits 2 +PE 58.9356 +PP -2.16545 -0.196038 -2.44608 +PW 0 +SE +ET PH +ID 1247 +TI 1760667399.987539291 +CC NStripHits 4 +PE 207.95 +PP -2.16545 -0.684062 -1.39842 +PW 0 +SE +ID 1248 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.314976) +QA StripPairing (Best reduced chi square is not below 25 (55.800904)) (GR Hit: Detector ID 0 and Energy 434.219830) +BD GR Veto +PQ 55.8009 +SE +ET UN +ID 1249 +TI 1760667399.987575769 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 223.928 +SE +ET PH +ID 1250 +TI 1760667399.987604379 +CC NStripHits 2 +PE 352.339 +PP -2.16545 -0.494563 2.44298 +PW 0 +SE +ID 1251 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.705391) (Strip hit removed with energy 15.684270) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 148.507754) (GR Hit: Detector ID 0 and Energy 422.011910) (GR Hit: Detector ID 0 and Energy 77.196393) +BD GR Veto +PQ 8.17051 +SE +ET UN +ID 1252 +TI 1760667399.987648963 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 664.05 +SE +ET UN +ID 1253 +TI 1760667399.987710952 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.9595 +SE +ET PH +ID 1254 +TI 1760667399.987731695 +CC NStripHits 2 +PE 193.921 +PP 0.511891 -0.374355 -2.21327 +PW 0 +SE +ET PH +ID 1255 +TI 1760667399.987752199 +CC NStripHits 3 +PE 117.272 +PP -1.00139 -0.0961803 1.27892 +PW 0 +SE +ET PH +ID 1256 +TI 1760667399.987773418 +CC NStripHits 2 +PE 662.71 +PP -2.63108 -0.40731 -0.816391 +PW 0 +SE +ET PH +ID 1257 +TI 1760667399.987798690 +CC NStripHits 4 +PE 193.764 +PP 0.861109 -0.208009 -2.9117 +PW 0 +SE +ET UN +ID 1258 +TI 1760667399.987818956 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.3818 +SE +ET PH +ID 1259 +TI 1760667399.987837553 +CC NStripHits 2 +PE 124.005 +PP -2.86389 -1.13964 -2.67889 +PW 0 +SE +ET PH +ID 1260 +TI 1760667399.987855195 +CC NStripHits 3 +PE 317.85 +PP 1.44314 -0.805283 0.580484 +PW 0 +SE +ID 1261 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 134.358519) +BD GR Veto +PQ 2.6045 +SE +ET PH +ID 1262 +TI 1760667399.987901449 +CC NStripHits 2 +PE 48.3047 +PP 0.162672 -0.585873 -4.42498 +PW 0 +SE +ET UN +ID 1263 +TI 1760667399.987919569 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 1264 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 422.737912) +BD GR Veto +PQ 9.27578 +SE +ID 1265 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 0.0153346 +SE +ET PH +ID 1266 +TI 1760667399.987971067 +CC NStripHits 4 +PE 88.0514 +PP -0.652172 0.184728 -1.98045 +PW 0 +SE +ID 1267 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.748661) +QA StripPairing (GR Hit: Detector ID 0 and Energy 137.574485) +BD GR Veto +PQ 12.1697 +SE +ET PH +ID 1268 +TI 1760667399.988038301 +CC NStripHits 2 +PE 452.746 +PP 1.79236 0.349909 -1.51483 +PW 0 +SE +ET PH +ID 1269 +TI 1760667399.988061666 +CC NStripHits 4 +PE 178.988 +PP 1.90877 -0.661363 0.813297 +PW 0 +SE +ID 1270 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.396344) +BD GR Veto +PQ 0.846916 +SE +ET PH +ID 1271 +TI 1760667399.988123893 +CC NStripHits 2 +PE 98.136 +PP -1.35061 0.04201 2.09377 +PW 0 +SE +ID 1272 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.530463) +BD GR Veto +PQ +SE +ET UN +ID 1273 +TI 1760667399.988147735 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.643 +SE +ET PH +ID 1274 +TI 1760667399.988174438 +CC NStripHits 2 +PE 81.4165 +PP -0.186547 -1.12004 -4.30858 +PW 0 +SE +ID 1275 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.778688) +BD GR Veto +PQ 0.00364028 +SE +ET PH +ID 1276 +TI 1760667399.988199234 +CC NStripHits 3 +PE 194.46 +PP 0.511891 0.350377 -3.61014 +PW 0 +SE +ET PH +ID 1277 +TI 1760667399.988218784 +CC NStripHits 2 +PE 193.219 +PP 2.72361 -1.06075 1.04611 +PW 0 +SE +ET PH +ID 1278 +TI 1760667399.988239288 +CC NStripHits 2 +PE 153.595 +PP 0.162672 -0.669241 -2.9117 +PW 0 +SE +ET PH +ID 1279 +TI 1760667400.008800745 +CC NStripHits 3 +PE 211.186 +PP 2.25798 0.192534 -0.699984 +PW 0 +SE +ET PH +ID 1280 +TI 1760667400.008857011 +CC NStripHits 2 +PE 60.5831 +PP 0.395484 -0.556314 2.32658 +PW 0 +SE +ET PH +ID 1281 +TI 1760667400.008876085 +CC NStripHits 3 +PE 192.427 +PP -2.86389 -0.577391 0.231266 +PW 0 +SE +ET PH +ID 1282 +TI 1760667400.008899211 +CC NStripHits 3 +PE 177.211 +PP 2.72361 -1.04419 -0.816391 +PW 0 +SE +ET CO +ID 1283 +TI 1760667400.008932828 +CC NStripHits 5 +PQ 0.808518 +SQ 2 +CT 0 1 +TL 1 +TE 31.2623 +CE 323.723 1.21816 31.2623 0.93146 +CD 1.44314 -0.806457 -2.21327 0.0336036 0.0201581 0.0336036 0.162672 0.362724 -2.09686 0.0336036 0.0253779 0.0336036 0 0 0 0 0 0 +LA 1.73785 +SE +ET CO +ID 1284 +TI 1760667400.008977890 +CC NStripHits 5 +PQ 1.16502 +SQ 2 +CT 0.519079 0.480921 +TL 1 +TE 341.17 +CE 324.396 1.15117 341.17 0.939188 +CD 1.55955 -0.00230941 1.39533 0.0336036 0.0249826 0.0336036 3.53845 -0.569505 -0.234359 0.0336036 0.0216121 0.0336036 0 0 0 0 0 0 +LA 2.62557 +SE +ET UN +ID 1285 +TI 1760667400.009017944 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.276 +SE +ET PH +ID 1286 +TI 1760667400.009036779 +CC NStripHits 2 +PE 148.746 +PP 2.84002 0.232539 1.51173 +PW 0 +SE +ET CO +ID 1287 +TI 1760667400.009054899 +CC NStripHits 4 +PQ 10.1975 +SQ 2 +CT 0 1 +TL 1 +TE 28.4498 +CE 89.704 0.942339 28.4498 1.29069 +CD -0.186547 -0.664805 -3.72655 0.0336036 0.0211893 0.0336036 0.0462656 -0.454222 -4.54139 0.0336036 0.022039 0.0336036 0 0 0 0 0 0 +LA 0.873219 +SE +ET PH +ID 1288 +TI 1760667400.009092569 +CC NStripHits 2 +PE 60.0645 +PP -0.0701406 0.257173 0.231266 +PW 0 +SE +ET PH +ID 1289 +TI 1760667400.009110689 +CC NStripHits 3 +PE 663.79 +PP 0.395484 -0.672904 -0.117953 +PW 0 +SE +ID 1290 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.384705) +BD GR Veto +PQ 0.0822571 +SE +ET PH +ID 1291 +TI 1760667400.009141206 +CC NStripHits 3 +PE 259.431 +PP 2.72361 -0.65855 1.62814 +PW 0 +SE +ID 1292 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.028627) +QA StripPairing (Best reduced chi square is not below 25 (59.198946)) (GR Hit: Detector ID 0 and Energy 90.964764) +BD GR Veto +PQ 59.1989 +SE +ET CO +ID 1293 +TI 1760667400.009176969 +CC NStripHits 7 +PQ 72.691 +SQ 2 +CT 0.616125 0.383875 +TL 1 +TE 309.509 +CE 177.857 1.88864 309.509 1.24334 +CD -1.81623 0.00274002 -1.74764 0.0336036 0.025037 0.0336036 -1.58342 -0.441638 -3.84295 0.0336036 0.0221496 0.0336036 0 0 0 0 0 0 +LA 2.15453 +SE +ID 1294 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 139.045029) (GR Hit: Detector ID 0 and Energy 101.130586) +BD GR Veto +PQ 3.02395 +SE +ID 1295 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.812094) (Strip hit removed with energy 17.616625) +QA StripPairing (GR Hit: Detector ID 0 and Energy 173.058339) +BD GR Veto +PQ 1.84959 +SE +ID 1296 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (510.301214)) (GR Hit: Detector ID 0 and Energy 141.241378) +BD GR Veto +PQ 510.301 +SE +ET UN +ID 1297 +TI 1760667400.009303092 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1298 +TI 1760667400.009320259 +CC NStripHits 2 +PE 164.095 +PP -0.0701406 -0.0830054 0.347672 +PW 0 +SE +ET UN +ID 1299 +TI 1760667400.009337902 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 361.326 +SE +ET CO +ID 1300 +TI 1760667400.009377956 +CC NStripHits 5 +PQ 2.44255 +SQ 2 +CT 0.760356 0.239644 +TL 1 +TE 466.802 +CE 194.962 0.919496 466.802 1.16378 +CD -0.884984 -0.456561 -2.7953 0.0336036 0.022023 0.0336036 -0.768578 -0.537694 -3.02811 0.0336036 0.0216619 0.0336036 0 0 0 0 0 0 +LA 0.272642 +SE +ET UN +ID 1301 +TI 1760667400.009405612 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.4442 +SE +ET UN +ID 1302 +TI 1760667400.009423255 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 277.054 +SE +ID 1303 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (3238.409446)) (GR Hit: Detector ID 0 and Energy 212.019744) +BD GR Veto +PQ 3238.41 +SE +ET PH +ID 1304 +TI 1760667400.009481668 +CC NStripHits 2 +PE 91.8329 +PP -1.1178 0.249897 -2.67889 +PW 0 +SE +ID 1305 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.256701) +BD GR Veto +PQ 0.453532 +SE +ET PH +ID 1306 +TI 1760667400.009523153 +CC NStripHits 2 +PE 181.846 +PP -2.86389 0.357127 -1.51483 +PW 0 +SE +ET PH +ID 1307 +TI 1760667400.009540557 +CC NStripHits 2 +PE 78.9706 +PP 3.65486 -0.453736 2.44298 +PW 0 +SE +ET UN +ID 1308 +TI 1760667400.009558677 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 659.435 +SE +ET PH +ID 1309 +TI 1760667400.009610176 +CC NStripHits 3 +PE 457.215 +PP 0.511891 0.148228 -4.19217 +PW 0 +SE +ET PH +ID 1310 +TI 1760667400.009638309 +CC NStripHits 2 +PE 30.8365 +PP 1.55955 -0.378535 -1.86405 +PW 0 +SE +ET PH +ID 1311 +TI 1760667400.009670495 +CC NStripHits 3 +PE 206.201 +PP 3.53845 -0.664034 -4.54139 +PW 0 +SE +ET UN +ID 1312 +TI 1760667400.009689807 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET PH +ID 1313 +TI 1760667400.009714841 +CC NStripHits 2 +PE 54.2722 +PP -1.81623 -0.766109 -1.86405 +PW 0 +SE +ET UN +ID 1314 +TI 1760667400.009733438 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1315 +TI 1760667400.009751081 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 39.4925 +SE +ET PH +ID 1316 +TI 1760667400.009780883 +CC NStripHits 2 +PE 281.087 +PP 2.72361 -1.13832 -3.14452 +PW 0 +SE +ET PH +ID 1317 +TI 1760667400.009798288 +CC NStripHits 2 +PE 59.6634 +PP -0.186547 -0.444804 2.55939 +PW 0 +SE +ET CO +ID 1318 +TI 1760667400.009815692 +CC NStripHits 5 +PQ 14.4479 +SQ 2 +CT 0 1 +TL 1 +TE 92.3072 +CE 363.899 1.9588 92.3072 0.915082 +CD -2.63108 0.361265 -3.84295 0.0336036 0.0261495 0.0336036 -0.768578 0.258813 -4.07577 0.0336036 0.0337695 0.0336036 0 0 0 0 0 0 +LA 1.87979 +SE +ID 1319 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 254.499951) +BD GR Veto +PQ 5.2344 +SE +ET PH +ID 1320 +TI 1760667400.009854555 +CC NStripHits 2 +PE 119.785 +PP 1.09392 -0.480599 1.97736 +PW 0 +SE +ET PH +ID 1321 +TI 1760667400.009875535 +CC NStripHits 2 +PE 134.229 +PP 4.3533 0.263823 -2.32967 +PW 0 +SE +ET PH +ID 1322 +TI 1760667400.009890556 +CC NStripHits 4 +PE 141.28 +PP -0.652172 -0.14478 -0.583578 +PW 0 +SE +ET PH +ID 1323 +TI 1760667400.009918689 +CC NStripHits 2 +PE 139.717 +PP -1.1178 -1.10873 -1.28202 +PW 0 +SE +ET PH +ID 1324 +TI 1760667400.009936094 +CC NStripHits 2 +PE 117.812 +PP 3.07283 -0.505549 -3.61014 +PW 0 +SE +ET PH +ID 1325 +TI 1760667400.009953498 +CC NStripHits 3 +PE 242.457 +PP -0.884984 -0.351162 1.39533 +PW 0 +SE +ET PH +ID 1326 +TI 1760667400.009977817 +CC NStripHits 3 +PE 128.009 +PP -2.51467 0.0355891 -3.72655 +PW 0 +SE +ET PH +ID 1327 +TI 1760667400.009999275 +CC NStripHits 3 +PE 324.922 +PP 4.3533 -0.322294 0.464078 +PW 0 +SE +ET PH +ID 1328 +TI 1760667400.010035037 +CC NStripHits 2 +PE 158.711 +PP -1.35061 0.36482 -2.7953 +PW 0 +SE +ET PH +ID 1329 +TI 1760667400.010055065 +CC NStripHits 3 +PE 505.924 +PP 1.44314 -0.290922 0.347672 +PW 0 +SE +ET UN +ID 1330 +TI 1760667400.010075330 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1331 +TI 1760667400.010095357 +CC NStripHits 2 +PE 84.7777 +PP 2.6072 0.320012 -0.699984 +PW 0 +SE +ET UN +ID 1332 +TI 1760667400.010113000 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 1333 +TI 1760667400.010136842 +CC NStripHits 5 +PQ 59.5808 +SQ 2 +CT 0 1 +TL 1 +TE 97.8957 +CE 194.163 1.06147 97.8957 1.26689 +CD -1.2342 -0.807904 1.39533 0.0336036 0.0201496 0.0336036 -1.58342 -0.262111 -1.39842 0.0336036 0.0233227 0.0336036 0 0 0 0 0 0 +LA 2.86791 +SE +ID 1334 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (98.333328)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 26.947602)) +BD GR Veto +PQ 98.3333 +SE +ET PH +ID 1335 +TI 1760667400.010214805 +CC NStripHits 2 +PE 67.6656 +PP 2.02517 0.345198 -3.14452 +PW 0 +SE +ET UN +ID 1336 +TI 1760667400.010232686 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 41.4757 +SE +ET CO +ID 1337 +TI 1760667400.010247468 +CC NStripHits 5 +PQ 1.48866 +SQ 2 +CT 0 1 +TL 1 +TE 69.1876 +CE 114.133 1.05913 69.1876 0.922679 +CD 2.6072 -0.499297 -3.72655 0.0336036 0.0218064 0.0336036 2.37439 -0.0348046 -3.37733 0.0336036 0.0247707 0.0336036 0 0 0 0 0 0 +LA 0.626026 +SE +ET PH +ID 1338 +TI 1760667400.010281324 +CC NStripHits 4 +PE 342.558 +PP 1.32673 0.294773 -2.44608 +PW 0 +SE +ET PH +ID 1339 +TI 1760667400.010303735 +CC NStripHits 2 +PE 164.815 +PP 3.07283 -0.62365 2.21017 +PW 0 +SE +ET UN +ID 1340 +TI 1760667400.010326862 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 170.778 +SE +ET UN +ID 1341 +TI 1760667400.010365486 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.377 +SE +ID 1342 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.588474) +QA StripPairing (Best reduced chi square is not below 25 (335.421318)) (GR Hit: Detector ID 0 and Energy 96.539666) +BD GR Veto +PQ 335.421 +SE +ET PH +ID 1343 +TI 1760667400.030472755 +CC NStripHits 3 +PE 334.333 +PP -2.28186 -1.09769 -4.42498 +PW 0 +SE +ET PH +ID 1344 +TI 1760667400.030545949 +CC NStripHits 2 +PE 288.231 +PP 1.79236 -0.548194 -3.95936 +PW 0 +SE +ET PH +ID 1345 +TI 1760667400.030608654 +CC NStripHits 5 +PE 660.774 +PP 0.861109 -0.737476 -4.54139 +PW 0 +SE +ET PH +ID 1346 +TI 1760667400.030657529 +CC NStripHits 3 +PE 447.1 +PP 2.72361 0.114371 -0.699984 +PW 0 +SE +ET UN +ID 1347 +TI 1760667400.030705928 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ID 1348 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.863358) +QA StripPairing (Best reduced chi square is not below 25 (74.133081)) (Event contains multiple hits on a single strip) +BD GR Veto +PQ 74.1331 +SE +ET PH +ID 1349 +TI 1760667400.030877113 +CC NStripHits 3 +PE 261.412 +PP 2.4908 0.111516 -0.699984 +PW 0 +SE +ET CO +ID 1350 +TI 1760667400.030951738 +CC NStripHits 4 +PQ 11.1502 +SQ 2 +CT 0.618155 0.381845 +TL 1 +TE 382.342 +CE 277.033 1.3975 382.342 1.01184 +CD 0.279078 0.307958 -1.28202 0.0336036 0.0388038 0.0336036 1.79236 -0.15305 -3.72655 0.0336036 0.0238209 0.0336036 0 0 0 0 0 0 +LA 2.91175 +SE +ET PH +ID 1351 +TI 1760667400.031029462 +CC NStripHits 3 +PE 456.784 +PP 1.09392 -0.385242 1.16252 +PW 0 +SE +ET UN +ID 1352 +TI 1760667400.031072139 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 402.879 +SE +ID 1353 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.937953) +QA StripPairing (Best reduced chi square is not below 25 (66.282217)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 36.276742)) (GR Hit: Detector ID 0 and Energy 430.760820) +BD GR Veto +PQ 66.2822 +SE +ET PH +ID 1354 +TI 1760667400.031210660 +CC NStripHits 3 +PE 137.343 +PP 0.395484 0.286906 2.32658 +PW 0 +SE +ET PH +ID 1355 +TI 1760667400.031252622 +CC NStripHits 2 +PE 153.037 +PP -0.884984 -0.54446 -2.9117 +PW 0 +SE +ET PH +ID 1356 +TI 1760667400.031289339 +CC NStripHits 3 +PE 660.175 +PP 2.72361 -0.538601 -3.14452 +PW 0 +SE +ET UN +ID 1357 +TI 1760667400.031340122 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET UN +ID 1358 +TI 1760667400.031424999 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1359 +TI 1760667400.031449317 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1360 +TI 1760667400.031495332 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.3984 +SE +ET UN +ID 1361 +TI 1760667400.031527519 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1362 +TI 1760667400.031564235 +CC NStripHits 3 +PE 202.419 +PP -1.81623 -0.335973 -4.42498 +PW 0 +SE +ET PH +ID 1363 +TI 1760667400.031611442 +CC NStripHits 2 +PE 200.572 +PP 1.67595 -1.14773 -3.49373 +PW 0 +SE +ET CO +ID 1364 +TI 1760667400.031649112 +CC NStripHits 4 +PQ 10.0623 +SQ 2 +CT 0 1 +TL 1 +TE 37.9617 +CE 343.378 1.28639 37.9617 1.26415 +CD -0.419359 -1.14173 -4.19217 0.0336036 0.029135 0.0336036 -1.58342 -0.52911 -2.44608 0.0336036 0.0216897 0.0336036 0 0 0 0 0 0 +LA 2.18613 +SE +ET UN +ID 1365 +TI 1760667400.031732797 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1366 +TI 1760667400.031769275 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 1367 +TI 1760667400.031805753 +CC NStripHits 5 +PQ 1.35678 +SQ 2 +CT 0 1 +TL 1 +TE 67.41 +CE 410.679 1.17742 67.41 0.881686 +CD -2.28186 0.280944 -4.30858 0.0336036 0.036895 0.0336036 -2.63108 0.0424986 -3.49373 0.0336036 0.0254355 0.0336036 0 0 0 0 0 0 +LA 0.918037 +SE +ET PH +ID 1368 +TI 1760667400.031877517 +CC NStripHits 2 +PE 307.308 +PP 1.90877 -0.125593 1.86095 +PW 0 +SE +ID 1369 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 451.027519) +BD GR Veto +PQ 6.05297 +SE +ET CO +ID 1370 +TI 1760667400.031931877 +CC NStripHits 5 +PQ 29.7378 +SQ 2 +CT 0 1 +TL 1 +TE 144.832 +CE 362.638 1.28501 144.832 1.8557 +CD 0.628297 -0.488073 -3.72655 0.0336036 0.0218733 0.0336036 2.02517 -0.576737 -3.49373 0.0336036 0.0215919 0.0336036 0 0 0 0 0 0 +LA 1.41892 +SE +ID 1371 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (81.256032)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 25.133860)) +BD GR Veto +PQ 81.256 +SE +ET PH +ID 1372 +TI 1760667400.032021045 +CC NStripHits 3 +PE 181.438 +PP -2.04905 -0.146746 -3.95936 +PW 0 +SE +ID 1373 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (86.971753)) (GR Hit: Detector ID 0 and Energy 234.353595) +BD GR Veto +PQ 86.9718 +SE +ET UN +ID 1374 +TI 1760667400.032049179 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 10 +PE 0 +SE +ID 1375 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 88.436040) +BD GR Veto +PQ 0.00295967 +SE +ET PH +ID 1376 +TI 1760667400.032111406 +CC NStripHits 3 +PE 216.477 +PP 0.279078 -0.674163 -2.9117 +PW 0 +SE +ET PH +ID 1377 +TI 1760667400.032133102 +CC NStripHits 3 +PE 173.532 +PP 1.55955 0.227253 2.21017 +PW 0 +SE +ID 1378 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.858306) +BD GR Veto +PQ 2.37589 +SE +ET PH +ID 1379 +TI 1760667400.032160997 +CC NStripHits 3 +PE 110.711 +PP -1.93264 -0.954611 -3.02811 +PW 0 +SE +ET PH +ID 1380 +TI 1760667400.032181024 +CC NStripHits 2 +PE 26.5736 +PP -2.63108 -0.137042 -3.61014 +PW 0 +SE +ET CO +ID 1381 +TI 1760667400.032198190 +CC NStripHits 4 +PQ 4.3433 +SQ 2 +CT 0.524374 0.475626 +TL 1 +TE 274.348 +CE 164.263 0.934672 274.348 1.30364 +CD -2.16545 -0.493153 -2.09686 0.0336036 0.0218432 0.0336036 -1.69983 0.0569662 -1.74764 0.0336036 0.025569 0.0336036 0 0 0 0 0 0 +LA 0.800867 +SE +ET PH +ID 1382 +TI 1760667400.032229423 +CC NStripHits 2 +PE 155.513 +PP -0.535766 0.0694012 -3.37733 +PW 0 +SE +ET PH +ID 1383 +TI 1760667400.032246828 +CC NStripHits 2 +PE 69.4975 +PP -0.884984 0.375173 -4.07577 +PW 0 +SE +ID 1384 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 84.478314) +BD GR Veto +PQ 0.0573352 +SE +ET PH +ID 1385 +TI 1760667400.032274007 +CC NStripHits 2 +PE 183.706 +PP 0.0462656 -0.238492 1.04611 +PW 0 +SE +ID 1386 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.124894) +BD GR Veto +PQ 0.0190452 +SE +ID 1387 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 460.284362) +BD GR Veto +PQ 13.3407 +SE +ET PH +ID 1388 +TI 1760667400.032322883 +CC NStripHits 2 +PE 290.183 +PP 4.12048 0.349945 -3.26092 +PW 0 +SE +ET PH +ID 1389 +TI 1760667400.032344341 +CC NStripHits 3 +PE 166.894 +PP -2.28186 -0.897609 0.929703 +PW 0 +SE +ET PH +ID 1390 +TI 1760667400.032364606 +CC NStripHits 2 +PE 50.3238 +PP 2.37439 -0.480061 -1.63123 +PW 0 +SE +ET UN +ID 1391 +TI 1760667400.032388925 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 668.38 +SE +ID 1392 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 210.098153) +BD GR Veto +PQ 6.65733 +SE +ID 1393 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1142.981368)) (GR Hit: Detector ID 0 and Energy 139.031873) +BD GR Veto +PQ 1142.98 +SE +ET UN +ID 1394 +TI 1760667400.032452583 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 293.714 +SE +ET PH +ID 1395 +TI 1760667400.032482385 +CC NStripHits 5 +PE 501.962 +PP 3.65486 -0.534956 1.16252 +PW 0 +SE +ET CO +ID 1396 +TI 1760667400.032510042 +CC NStripHits 5 +PQ 0.096323 +SQ 2 +CT 0 1 +TL 1 +TE 28.0854 +CE 337.576 1.04961 28.0854 0.879139 +CD 2.37439 -0.502156 1.86095 0.0336036 0.0217902 0.0336036 3.30564 0.204598 1.51173 0.0336036 0.0289312 0.0336036 0 0 0 0 0 0 +LA 1.22012 +SE +ET UN +ID 1397 +TI 1760667400.032552003 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 643.074 +SE +ET PH +ID 1398 +TI 1760667400.032593727 +CC NStripHits 2 +PE 145.277 +PP 2.25798 -0.650819 -4.6578 +PW 0 +SE +ET PH +ID 1399 +TI 1760667400.032608270 +CC NStripHits 3 +PE 198.774 +PP 3.88767 -0.242009 -0.00154687 +PW 0 +SE +ET PH +ID 1400 +TI 1760667400.032630205 +CC NStripHits 2 +PE 446.289 +PP 1.67595 0.327703 -0.816391 +PW 0 +SE +ID 1401 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.862733) (Strip hit removed with energy 6.619032) (Strip hit removed with energy 2.275453) +BD GR Veto +PQ 17.4863 +SE +ET PH +ID 1402 +TI 1760667400.032681703 +CC NStripHits 2 +PE 286.824 +PP 1.21033 -0.319469 1.27892 +PW 0 +SE +ET CO +ID 1403 +TI 1760667400.032718896 +CC NStripHits 7 +PQ 17.8319 +SQ 3 +CT 0.443268 0.787627 +TL 1 +TE 428.098 +CE 191.952 1.64837 428.098 1.4088 +CD 0.395484 -1.14291 1.62814 0.0336036 0.028968 0.0336036 1.44314 -0.517799 1.04611 0.0336036 0.0217244 0.0336036 0 0 0 0 0 0 +LA 1.3517 +SE +ET PH +ID 1404 +TI 1760667400.032771587 +CC NStripHits 2 +PE 415.246 +PP -2.28186 -0.716234 0.813297 +PW 0 +SE +ET PH +ID 1405 +TI 1760667400.032793283 +CC NStripHits 4 +PE 122.108 +PP 0.162672 -0.127292 -4.42498 +PW 0 +SE +ID 1406 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 110.091137) +BD GR Veto +PQ 3.75207 +SE +ID 1407 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.738850) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.020575) +BD GR Veto +PQ 15.7647 +SE +ET UN +ID 1408 +TI 1760667400.054441690 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.7114 +SE +ET PH +ID 1409 +TI 1760667400.054460525 +CC NStripHits 2 +PE 72.3659 +PP 2.4908 -0.0102134 2.44298 +PW 0 +SE +ET PH +ID 1410 +TI 1760667400.054478645 +CC NStripHits 2 +PE 167.936 +PP 2.14158 0.0885607 0.347672 +PW 0 +SE +ET PH +ID 1411 +TI 1760667400.054496526 +CC NStripHits 4 +PE 364.41 +PP -2.28186 -0.597762 -1.16561 +PW 0 +SE +ET PH +ID 1412 +TI 1760667400.054520368 +CC NStripHits 2 +PE 100.361 +PP -0.186547 -0.0274078 -3.61014 +PW 0 +SE +ET PH +ID 1413 +TI 1760667400.054546594 +CC NStripHits 3 +PE 182.209 +PP -0.302953 0.0626031 1.86095 +PW 0 +SE +ET PH +ID 1414 +TI 1760667400.054567098 +CC NStripHits 2 +PE 84.8898 +PP -2.74748 -0.827168 1.16252 +PW 0 +SE +ET PH +ID 1415 +TI 1760667400.054584264 +CC NStripHits 2 +PE 29.2643 +PP 2.95642 -0.317768 -3.02811 +PW 0 +SE +ET PH +ID 1416 +TI 1760667400.054601907 +CC NStripHits 2 +PE 252.2 +PP 1.44314 0.355 -0.00154687 +PW 0 +SE +ET UN +ID 1417 +TI 1760667400.054621934 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1418 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (698.625024)) (GR Hit: Detector ID 0 and Energy 160.602942) +BD GR Veto +PQ 698.625 +SE +ET PH +ID 1419 +TI 1760667400.054648160 +CC NStripHits 2 +PE 47.7249 +PP 1.32673 -0.761838 -2.09686 +PW 0 +SE +ID 1420 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (154.097008)) (GR Hit: Detector ID 0 and Energy 159.695886) +BD GR Veto +PQ 154.097 +SE +ET PH +ID 1421 +TI 1760667400.054673194 +CC NStripHits 2 +PE 142.087 +PP 1.79236 -1.08195 0.114859 +PW 0 +SE +ET CO +ID 1422 +TI 1760667400.054690837 +CC NStripHits 5 +PQ 0.00425873 +SQ 2 +CT 0 1 +TL 1 +TE 106.26 +CE 282.221 1.03245 106.26 0.92299 +CD -1.81623 0.187972 1.74455 0.0336036 0.0282268 0.0336036 -1.46702 -0.434456 2.44298 0.0336036 0.0222196 0.0336036 0 0 0 0 0 0 +LA 0.998583 +SE +ET CO +ID 1423 +TI 1760667400.054729223 +CC NStripHits 4 +PQ 17.0428 +SQ 2 +CT 0.511998 0.488002 +TL 1 +TE 246.041 +CE 238.998 1.40747 246.041 0.947323 +CD -1.00139 -0.0542293 -3.14452 0.0336036 0.0246553 0.0336036 -2.04905 0.297536 -2.32967 0.0336036 0.0385027 0.0336036 0 0 0 0 0 0 +LA 1.37307 +SE +ET PH +ID 1424 +TI 1760667400.054772853 +CC NStripHits 3 +PE 98.5445 +PP 3.30564 -0.321599 2.55939 +PW 0 +SE +ET PH +ID 1425 +TI 1760667400.054795265 +CC NStripHits 2 +PE 133.44 +PP 1.44314 -0.946437 -1.0492 +PW 0 +SE +ET PH +ID 1426 +TI 1760667400.054812908 +CC NStripHits 4 +PE 200.07 +PP 2.37439 0.285378 1.62814 +PW 0 +SE +ET UN +ID 1427 +TI 1760667400.054834842 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 663.364 +SE +ET UN +ID 1428 +TI 1760667400.054878950 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 54.8039 +SE +ET PH +ID 1429 +TI 1760667400.054899454 +CC NStripHits 2 +PE 258.131 +PP 3.42205 -0.200387 0.929703 +PW 0 +SE +ET PH +ID 1430 +TI 1760667400.054917335 +CC NStripHits 2 +PE 205.027 +PP 0.162672 -0.70351 -1.0492 +PW 0 +SE +ID 1431 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.403409) +QA StripPairing (Best reduced chi square is not below 25 (460.502159)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 264.580974)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 56.398754) +BD GR Veto +PQ 460.502 +SE +ID 1432 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 127.554965) +BD GR Veto +PQ 2.42092 +SE +ET PH +ID 1433 +TI 1760667400.054963827 +CC NStripHits 4 +PE 429.111 +PP 2.72361 -0.360782 -0.00154687 +PW 0 +SE +ID 1434 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.259302) (Strip hit removed with energy 8.340883) (Strip hit removed with energy 9.217008) +BD GR Veto +PQ +SE +ET PH +ID 1435 +TI 1760667400.055042743 +CC NStripHits 3 +PE 184.193 +PP 1.32673 -0.177423 -3.14452 +PW 0 +SE +ID 1436 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1437 +TI 1760667400.055067062 +CC NStripHits 3 +PE 230.606 +PP 0.628297 0.0884016 -2.32967 +PW 0 +SE +ET PH +ID 1438 +TI 1760667400.055089235 +CC NStripHits 2 +PE 449.701 +PP 0.279078 0.138121 -2.44608 +PW 0 +SE +ET UN +ID 1439 +TI 1760667400.055111408 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 345.187 +SE +ID 1440 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 308.767978) +BD GR Veto +PQ 0.379434 +SE +ID 1441 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.652888) +BD GR Veto +PQ 0.264953 +SE +ET PH +ID 1442 +TI 1760667400.055155038 +CC NStripHits 2 +PE 98.993 +PP 0.744703 -1.00259 -3.84295 +PW 0 +SE +ET PH +ID 1443 +TI 1760667400.055173397 +CC NStripHits 2 +PE 89.4541 +PP -0.0701406 -0.810942 -1.51483 +PW 0 +SE +ET UN +ID 1444 +TI 1760667400.055190801 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1445 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 264.264724) +BD GR Veto +PQ 9.56509 +SE +ET PH +ID 1446 +TI 1760667400.055207014 +CC NStripHits 4 +PE 550.183 +PP 0.977516 -0.948347 1.39533 +PW 0 +SE +ET PH +ID 1447 +TI 1760667400.055231332 +CC NStripHits 2 +PE 143.369 +PP -2.9803 -0.11086 -1.16561 +PW 0 +SE +ET PH +ID 1448 +TI 1760667400.055246591 +CC NStripHits 2 +PE 44.4796 +PP 2.72361 -0.195403 -4.42498 +PW 0 +SE +ID 1449 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 428.559053) +BD GR Veto +PQ 11.4856 +SE +ET PH +ID 1450 +TI 1760667400.055278539 +CC NStripHits 2 +PE 262.454 +PP 2.02517 -1.14082 -0.699984 +PW 0 +SE +ET PH +ID 1451 +TI 1760667400.055296182 +CC NStripHits 2 +PE 118.828 +PP 1.32673 -1.08776 1.86095 +PW 0 +SE +ET PH +ID 1452 +TI 1760667400.055315732 +CC NStripHits 2 +PE 33.3254 +PP 1.67595 -0.531344 2.32658 +PW 0 +SE +ET PH +ID 1453 +TI 1760667400.055333375 +CC NStripHits 3 +PE 313.72 +PP 3.77127 -0.894123 0.813297 +PW 0 +SE +ET UN +ID 1454 +TI 1760667400.055351495 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 1455 +TI 1760667400.055368900 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 162.35 +SE +ET PH +ID 1456 +TI 1760667400.055391073 +CC NStripHits 2 +PE 66.0288 +PP 0.395484 0.162961 -1.0492 +PW 0 +SE +ET UN +ID 1457 +TI 1760667400.055406332 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1458 +TI 1760667400.055423736 +CC NStripHits 2 +PE 133.979 +PP 0.0462656 -0.345698 -3.49373 +PW 0 +SE +ET PH +ID 1459 +TI 1760667400.055440902 +CC NStripHits 2 +PE 65.0181 +PP 3.65486 0.117238 1.51173 +PW 0 +SE +ET PH +ID 1460 +TI 1760667400.055457830 +CC NStripHits 2 +PE 130.515 +PP 3.18923 -0.570106 -3.49373 +PW 0 +SE +ID 1461 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.527422) +BD GR Veto +PQ 7.31091 +SE +ID 1462 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (92.485808)) (GR Hit: Detector ID 0 and Energy 53.851532) +BD GR Veto +PQ 92.4858 +SE +ET PH +ID 1463 +TI 1760667400.055491685 +CC NStripHits 2 +PE 209.981 +PP 2.14158 -0.824963 -2.44608 +PW 0 +SE +ET PH +ID 1464 +TI 1760667400.055509090 +CC NStripHits 2 +PE 659.031 +PP 2.4908 -0.503016 -0.467172 +PW 0 +SE +ID 1465 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 283.227235) +BD GR Veto +PQ 3.5389 +SE +ET PH +ID 1466 +TI 1760667400.055570840 +CC NStripHits 2 +PE 361.724 +PP -1.58342 0.35663 1.74455 +PW 0 +SE +ID 1467 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 154.096924) +BD GR Veto +PQ 3.07636 +SE +ET CO +ID 1468 +TI 1760667400.055597305 +CC NStripHits 4 +PQ 1.78013 +SQ 2 +CT 0 1 +TL 1 +TE 57.4551 +CE 175.694 0.949978 57.4551 0.959431 +CD 1.09392 -1.16058 -1.28202 0.0336036 0.0242693 0.0336036 1.55955 -1.05906 -1.51483 0.0336036 0.021712 0.0336036 0 0 0 0 0 0 +LA 0.530394 +SE +ET CO +ID 1469 +TI 1760667400.055627346 +CC NStripHits 6 +PQ 1.56488 +SQ 2 +CT 0.628459 0.371541 +TL 1 +TE 376.096 +CE 251.231 1.03976 376.096 1.03474 +CD -1.00139 -0.373285 -4.6578 0.0336036 0.0226524 0.0336036 3.30564 0.0500199 -2.9117 0.0336036 0.0254928 0.0336036 0 0 0 0 0 0 +LA 4.66675 +SE +ET PH +ID 1470 +TI 1760667400.055690050 +CC NStripHits 3 +PE 176.637 +PP 2.37439 0.300216 0.231266 +PW 0 +SE +ID 1471 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (491.528242)) (GR Hit: Detector ID 0 and Energy 126.349681) +BD GR Veto +PQ 491.528 +SE +ET PH +ID 1472 +TI 1760667400.074095726 +CC NStripHits 2 +PE 21.913 +PP 0.0462656 -1.01977 -0.932797 +PW 0 +SE +ET CO +ID 1473 +TI 1760667400.074138879 +CC NStripHits 4 +PQ 22.007 +SQ 2 +CT 0 1 +TL 1 +TE 59.0271 +CE 376.198 0.94233 59.0271 1.23587 +CD -2.28186 -0.33341 0.696891 0.0336036 0.0229595 0.0336036 1.79236 -0.536798 -2.56248 0.0336036 0.0216648 0.0336036 0 0 0 0 0 0 +LA 5.22151 +SE +ET PH +ID 1474 +TI 1760667400.074210405 +CC NStripHits 3 +PE 375.371 +PP 0.395484 0.0470594 -2.21327 +PW 0 +SE +ET CO +ID 1475 +TI 1760667400.074253797 +CC NStripHits 4 +PQ 42.2407 +SQ 2 +CT 0 1 +TL 1 +TE 58.2546 +CE 418.958 0.957451 58.2546 1.31117 +CD 2.02517 -0.10306 -1.98045 0.0336036 0.0242431 0.0336036 1.90877 0.0924092 -2.21327 0.0336036 0.02614 0.0336036 0 0 0 0 0 0 +LA 0.325519 +SE +ET PH +ID 1476 +TI 1760667400.074316263 +CC NStripHits 4 +PE 277.733 +PP -2.51467 0.362811 -0.932797 +PW 0 +SE +ET CO +ID 1477 +TI 1760667400.074364423 +CC NStripHits 7 +PQ 5.9977 +SQ 3 +CT 0.00117062 0.121089 +TL 1 +TE 363.92 +CE 298.805 1.44999 363.92 1.35965 +CD 0.279078 -0.530015 -0.350766 0.0336036 0.0216868 0.0336036 -1.69983 -0.622265 0.813297 0.0336036 0.0214214 0.0336036 0 0 0 0 0 0 +LA 1.67707 +SE +ET CO +ID 1478 +TI 1760667400.074454307 +CC NStripHits 5 +PQ 2.828 +SQ 2 +CT 0 1 +TL 1 +TE 136.612 +CE 242.437 1.44303 136.612 1.10481 +CD 0.0462656 0.349985 -1.39842 0.0336036 0.0312665 0.0336036 0.744703 -0.830181 -1.63123 0.0336036 0.0200344 0.0336036 0 0 0 0 0 0 +LA 1.39097 +SE +ID 1479 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.369529) +BD GR Veto +PQ 0.231052 +SE +ID 1480 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 88.500136) +BD GR Veto +PQ 2.38384 +SE +ET PH +ID 1481 +TI 1760667400.074597597 +CC NStripHits 3 +PE 138.737 +PP 2.37439 -0.613293 -4.54139 +PW 0 +SE +ID 1482 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.597015) +BD GR Veto +PQ 0.0916395 +SE +ET CO +ID 1483 +TI 1760667400.074659585 +CC NStripHits 7 +PQ 26.524 +SQ 2 +CT 0 1 +TL 1 +TE 141.885 +CE 387.104 1.75604 141.885 1.86379 +CD -2.74748 -0.375247 -2.56248 0.0336036 0.0226372 0.0336036 -2.51467 -0.612395 -2.21327 0.0336036 0.0214262 0.0336036 0 0 0 0 0 0 +LA 0.482066 +SE +ET PH +ID 1484 +TI 1760667400.074725627 +CC NStripHits 4 +PE 294.99 +PP 2.4908 -0.0261196 1.16252 +PW 0 +SE +ET UN +ID 1485 +TI 1760667400.074781417 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.1267 +SE +ET UN +ID 1486 +TI 1760667400.074818611 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1487 +TI 1760667400.074854850 +CC NStripHits 3 +PE 24.1884 +PP -2.04905 -0.161465 -0.00154687 +PW 0 +SE +ID 1488 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.773872) +QA StripPairing (GR Hit: Detector ID 0 and Energy 443.440924) +BD GR Veto +PQ 0.189136 +SE +ID 1489 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 312.424613) +BD GR Veto +PQ 0.117958 +SE +ET PH +ID 1490 +TI 1760667400.074971914 +CC NStripHits 3 +PE 295.501 +PP 2.6072 -0.0928141 0.696891 +PW 0 +SE +ET UN +ID 1491 +TI 1760667400.075008630 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 466.459 +SE +ET PH +ID 1492 +TI 1760667400.075059890 +CC NStripHits 4 +PE 406.821 +PP 1.44314 -1.1439 -3.49373 +PW 0 +SE +ET PH +ID 1493 +TI 1760667400.075103521 +CC NStripHits 3 +PE 111.341 +PP -1.81623 -0.648991 -3.61014 +PW 0 +SE +ET PH +ID 1494 +TI 1760667400.075141191 +CC NStripHits 2 +PE 120.54 +PP 1.32673 -1.08402 0.231266 +PW 0 +SE +ET CO +ID 1495 +TI 1760667400.075173377 +CC NStripHits 4 +PQ 1.31605 +SQ 2 +CT 0 1 +TL 1 +TE 97.4984 +CE 366.169 0.944495 97.4984 0.910294 +CD -0.768578 0.373775 -3.61014 0.0336036 0.0187928 0.0336036 -1.1178 -0.25003 -3.84295 0.0336036 0.0233441 0.0336036 0 0 0 0 0 0 +LA 0.751857 +SE +ET PH +ID 1496 +TI 1760667400.075207233 +CC NStripHits 4 +PE 382.323 +PP -0.884984 0.160246 -2.9117 +PW 0 +SE +ET PH +ID 1497 +TI 1760667400.075232028 +CC NStripHits 2 +PE 81.6004 +PP 4.23689 -0.186383 -3.61014 +PW 0 +SE +ET UN +ID 1498 +TI 1760667400.075248718 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1499 +TI 1760667400.075259685 +CC NStripHits 2 +PE 89.5854 +PP 0.628297 -1.09678 -4.6578 +PW 0 +SE +ID 1500 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.134773) +QA StripPairing (Best reduced chi square is not below 25 (25.319167)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 26.282779)) (GR Hit: Detector ID 0 and Energy 109.737483) +BD GR Veto +PQ 25.3192 +SE +ET CO +ID 1501 +TI 1760667400.075315475 +CC NStripHits 9 +PQ 55.0868 +SQ 4 +CT 0.129879 0.213747 +TL 1 +TE 237.631 +CE 434.225 2.26055 237.631 1.32121 +CD 0.744703 -0.749667 2.21017 0.0336036 0.0205008 0.0336036 0.395484 -0.434333 1.86095 0.0336036 0.0222208 0.0336036 0 0 0 0 0 0 +LA 0.386057 +SE +ET UN +ID 1502 +TI 1760667400.075373411 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 166.911 +SE +ET PH +ID 1503 +TI 1760667400.075405120 +CC NStripHits 3 +PE 247.645 +PP 1.55955 -0.711973 -4.54139 +PW 0 +SE +ET PH +ID 1504 +TI 1760667400.075424432 +CC NStripHits 3 +PE 242.209 +PP -2.86389 -0.180939 -2.9117 +PW 0 +SE +ET PH +ID 1505 +TI 1760667400.075444221 +CC NStripHits 2 +PE 31.9086 +PP -1.58342 0.267735 0.114859 +PW 0 +SE +ET UN +ID 1506 +TI 1760667400.075461864 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 208.637 +SE +ET CO +ID 1507 +TI 1760667400.075489044 +CC NStripHits 6 +PQ 0.742107 +SQ 2 +CT 0 1 +TL 1 +TE 82.1783 +CE 399.579 1.33442 82.1783 0.902762 +CD 4.23689 -0.605509 -0.350766 0.0336036 0.0214406 0.0336036 4.00408 -0.430422 -0.467172 0.0336036 0.0222556 0.0336036 0 0 0 0 0 0 +LA 0.313698 +SE +ET PH +ID 1508 +TI 1760667400.075515508 +CC NStripHits 2 +PE 211.456 +PP -1.58342 -0.928764 -3.84295 +PW 0 +SE +ET PH +ID 1509 +TI 1760667400.075532436 +CC NStripHits 3 +PE 417.851 +PP 3.18923 -0.0603833 1.62814 +PW 0 +SE +ET UN +ID 1510 +TI 1760667400.075554609 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 151.795 +SE +ET PH +ID 1511 +TI 1760667400.075601339 +CC NStripHits 3 +PE 91.4987 +PP 1.55955 -0.443105 -4.54139 +PW 0 +SE +ET PH +ID 1512 +TI 1760667400.075621604 +CC NStripHits 2 +PE 226.15 +PP 0.162672 -0.967927 1.27892 +PW 0 +SE +ET CO +ID 1513 +TI 1760667400.075639009 +CC NStripHits 5 +PQ 0.869514 +SQ 2 +CT 0 1 +TL 1 +TE 49.9419 +CE 203.127 1.1273 49.9419 0.954774 +CD 2.37439 -0.873125 0.231266 0.0336036 0.0198838 0.0336036 0.744703 0.363761 -0.00154687 0.0336036 0.0248142 0.0336036 0 0 0 0 0 0 +LA 2.05912 +SE +ET CO +ID 1514 +TI 1760667400.075670003 +CC NStripHits 5 +PQ 18.0665 +SQ 2 +CT 0.533987 0.466013 +TL 1 +TE 194.963 +CE 163.427 1.78367 194.963 0.924214 +CD -1.35061 -0.125335 -3.61014 0.0336036 0.0240971 0.0336036 -0.652172 -1.14753 -4.54139 0.0336036 0.0281512 0.0336036 0 0 0 0 0 0 +LA 1.54917 +SE +ET UN +ID 1515 +TI 1760667400.075702667 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1516 +TI 1760667400.075712203 +CC NStripHits 2 +PE 100.846 +PP 3.77127 0.362839 -1.16561 +PW 0 +SE +ET UN +ID 1517 +TI 1760667400.075730085 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 524.817 +SE +ET PH +ID 1518 +TI 1760667400.075754404 +CC NStripHits 2 +PE 276.919 +PP 0.744703 -0.0789136 -4.42498 +PW 0 +SE +ET PH +ID 1519 +TI 1760667400.075773000 +CC NStripHits 2 +PE 569.383 +PP -0.535766 -1.14521 -3.95936 +PW 0 +SE +ID 1520 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.320097) (Strip hit removed with energy 14.038795) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 26.452990)) +BD GR Veto +PQ 4.81516 +SE +ID 1521 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (11662.280317)) (GR Hit: Detector ID 0 and Energy 465.159581) +BD GR Veto +PQ 11662.3 +SE +ID 1522 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.213586) +QA StripPairing (GR Hit: Detector ID 0 and Energy 376.276977) +BD GR Veto +PQ 3.3352 +SE +ET PH +ID 1523 +TI 1760667400.075856685 +CC NStripHits 5 +PE 659.521 +PP 2.95642 -0.485332 0.929703 +PW 0 +SE +ET CO +ID 1524 +TI 1760667400.075885057 +CC NStripHits 5 +PQ 11.626 +SQ 2 +CT 0.563091 0.436909 +TL 1 +TE 219.986 +CE 185.855 1.76693 219.986 1.33921 +CD 0.628297 -0.370936 -2.9117 0.0336036 0.0226705 0.0336036 -0.768578 -0.0756818 -3.02811 0.0336036 0.0244945 0.0336036 0 0 0 0 0 0 +LA 1.43248 +SE +ET PH +ID 1525 +TI 1760667400.075916528 +CC NStripHits 2 +PE 26.2592 +PP -2.16545 0.376284 -3.61014 +PW 0 +SE +ET CO +ID 1526 +TI 1760667400.075934648 +CC NStripHits 4 +PQ 0.221071 +SQ 2 +CT 0.626166 0.373834 +TL 1 +TE 382.475 +CE 278.338 0.915221 382.475 0.980875 +CD 1.44314 -0.451487 -4.30858 0.0336036 0.0220597 0.0336036 2.84002 -0.272652 -4.07577 0.0336036 0.0232685 0.0336036 0 0 0 0 0 0 +LA 1.42739 +SE +ET PH +ID 1527 +TI 1760667400.075965881 +CC NStripHits 2 +PE 24.9818 +PP -0.419359 -1.11395 -3.95936 +PW 0 +SE +ET PH +ID 1528 +TI 1760667400.075985431 +CC NStripHits 2 +PE 56.0035 +PP 0.279078 -1.09909 1.16252 +PW 0 +SE +ID 1529 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.666432) +BD GR Veto +PQ 0.000892162 +SE +ET PH +ID 1530 +TI 1760667400.076012372 +CC NStripHits 2 +PE 316.621 +PP 3.18923 -0.978053 1.27892 +PW 0 +SE +ID 1531 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 213.494995) +BD GR Veto +PQ 4.18849 +SE +ET PH +ID 1532 +TI 1760667400.076037406 +CC NStripHits 2 +PE 98.2473 +PP -0.302953 -1.01442 -4.42498 +PW 0 +SE +ET PH +ID 1533 +TI 1760667400.076054573 +CC NStripHits 2 +PE 59.2446 +PP 0.744703 0.151416 -3.49373 +PW 0 +SE +ET UN +ID 1534 +TI 1760667400.076072216 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 170.394 +SE +ET PH +ID 1535 +TI 1760667400.092406511 +CC NStripHits 3 +PE 424.658 +PP 1.55955 -0.0822476 0.464078 +PW 0 +SE +ET PH +ID 1536 +TI 1760667400.092468738 +CC NStripHits 2 +PE 143.711 +PP 0.0462656 0.0420611 1.74455 +PW 0 +SE +ET CO +ID 1537 +TI 1760667400.092490196 +CC NStripHits 5 +PQ 13.5591 +SQ 2 +CT 0.539154 0.460846 +TL 1 +TE 347.588 +CE 314.703 1.11246 347.588 1.50777 +CD -2.63108 -0.356554 -0.467172 0.0336036 0.0227785 0.0336036 -2.04905 -0.511823 1.27892 0.0336036 0.0217451 0.0336036 0 0 0 0 0 0 +LA 1.84708 +SE +ID 1538 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1539 +TI 1760667400.092549324 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Out of Range) +CC NStripHits 8 +PE 503.151 +SE +ET PH +ID 1540 +TI 1760667400.092596292 +CC NStripHits 3 +PE 95.3276 +PP 0.861109 -0.924491 -2.9117 +PW 0 +SE +ID 1541 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.379093) (Strip hit removed with energy 4.107333) +QA StripPairing (Event contains multiple hits on a single strip) +BD GR Veto +PQ 0.555385 +SE +ET PH +ID 1542 +TI 1760667400.092658996 +CC NStripHits 3 +PE 167.21 +PP 1.90877 -0.561491 -0.699984 +PW 0 +SE +ID 1543 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 455.496044) +BD GR Veto +PQ 2.665 +SE +ET PH +ID 1544 +TI 1760667400.092688560 +CC NStripHits 2 +PE 419.664 +PP -2.63108 0.290329 1.74455 +PW 0 +SE +ID 1545 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.502330) (Strip hit removed with energy 7.969869) (Strip hit removed with energy 11.536947) (Strip hit removed with energy 11.272656) (Strip hit removed with energy 15.928289) (Strip hit removed with energy 17.008102) +QA StripPairing (Best reduced chi square is not below 25 (5900.760479)) (GR Hit: Detector ID 0 and Energy 359.066066) +BD GR Veto +PQ 5900.76 +SE +ID 1546 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 1547 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.570951) +BD GR Veto +PQ 2.23373 +SE +ET CO +ID 1548 +TI 1760667400.092750787 +CC NStripHits 4 +PQ 65.2205 +SQ 2 +CT 0 1 +TL 1 +TE 101.366 +CE 144.72 1.24825 101.366 0.912748 +CD -2.63108 0.054949 2.21017 0.0336036 0.0255441 0.0336036 -2.51467 0.374597 1.86095 0.0336036 0.018261 0.0336036 0 0 0 0 0 0 +LA 0.487525 +SE +ET PH +ID 1549 +TI 1760667400.092779874 +CC NStripHits 2 +PE 359.666 +PP 3.77127 0.365539 -3.95936 +PW 0 +SE +ET PH +ID 1550 +TI 1760667400.092798471 +CC NStripHits 2 +PE 90.7805 +PP -1.2342 0.147138 -1.86405 +PW 0 +SE +ID 1551 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.615524) (Strip hit removed with energy 9.033471) +BD GR Veto +PQ 0.00175241 +SE +ID 1552 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.583477) (Strip hit removed with energy 6.701849) +QA StripPairing (Best reduced chi square is not below 25 (87.403125)) (GR Hit: Detector ID 0 and Energy 273.286998) +BD GR Veto +PQ 87.4031 +SE +ET UN +ID 1553 +TI 1760667400.092874765 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 1554 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.678761) +BD GR Veto +PQ 9.77717 +SE +ET PH +ID 1555 +TI 1760667400.092904806 +CC NStripHits 2 +PE 421.05 +PP -0.535766 -0.0662028 2.32658 +PW 0 +SE +ET PH +ID 1556 +TI 1760667400.092922687 +CC NStripHits 3 +PE 87.6573 +PP -2.63108 0.36712 -3.14452 +PW 0 +SE +ET CO +ID 1557 +TI 1760667400.092943191 +CC NStripHits 7 +PQ 2.29865 +SQ 3 +CT 0.0378844 0.391335 +TL 1 +TE 68.3366 +CE 430.784 1.3212 68.3366 1.2489 +CD 2.25798 0.172396 -2.44608 0.0336036 0.0277267 0.0336036 3.18923 -0.91637 -2.9117 0.0336036 0.0197798 0.0336036 0 0 0 0 0 0 +LA 1.50647 +SE +ET PH +ID 1558 +TI 1760667400.092993974 +CC NStripHits 3 +PE 1098.08 +PP 2.72361 -0.144934 -3.49373 +PW 0 +SE +ID 1559 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (89.700701)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 206.947827) +BD GR Veto +PQ 89.7007 +SE +ET PH +ID 1560 +TI 1760667400.093051195 +CC NStripHits 2 +PE 269.062 +PP 2.6072 0.106197 1.27892 +PW 0 +SE +ID 1561 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.132977) +QA StripPairing (Best reduced chi square is not below 25 (4532.787073)) (GR Hit: Detector ID 0 and Energy 427.414203) +BD GR Veto +PQ 4532.79 +SE +ET PH +ID 1562 +TI 1760667400.093080759 +CC NStripHits 4 +PE 207.008 +PP -1.69983 -0.107913 -0.117953 +PW 0 +SE +ET PH +ID 1563 +TI 1760667400.093102931 +CC NStripHits 2 +PE 53.3728 +PP 0.628297 0.0399457 -3.37733 +PW 0 +SE +ET UN +ID 1564 +TI 1760667400.093120813 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1565 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 314.473703) +BD GR Veto +PQ 0.847957 +SE +ET PH +ID 1566 +TI 1760667400.093146800 +CC NStripHits 2 +PE 91.4697 +PP -1.69983 0.178667 -1.98045 +PW 0 +SE +ET PH +ID 1567 +TI 1760667400.093164205 +CC NStripHits 4 +PE 263.17 +PP 0.279078 -1.00834 0.114859 +PW 0 +SE +ET CO +ID 1568 +TI 1760667400.093188047 +CC NStripHits 5 +PQ 9.0412 +SQ 2 +CT 0 1 +TL 1 +TE 130.556 +CE 153.159 1.83104 130.556 1.27939 +CD 4.12048 -1.13361 -3.26092 0.0336036 0.0298423 0.0336036 3.07283 -1.10368 -3.14452 0.0336036 0.0274548 0.0336036 0 0 0 0 0 0 +LA 1.05452 +SE +ET UN +ID 1569 +TI 1760667400.093225479 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 67.4375 +SE +ET CO +ID 1570 +TI 1760667400.093259572 +CC NStripHits 5 +PQ 53.3024 +SQ 2 +CT 0 1 +TL 1 +TE 117.151 +CE 245.246 1.05114 117.151 1.24921 +CD -0.884984 -0.0811934 -2.44608 0.0336036 0.0244357 0.0336036 -2.51467 -0.0649014 -1.16561 0.0336036 0.0245896 0.0336036 0 0 0 0 0 0 +LA 2.07262 +SE +ET PH +ID 1571 +TI 1760667400.093304872 +CC NStripHits 3 +PE 81.7729 +PP 2.14158 -0.61554 -1.63123 +PW 0 +SE +ID 1572 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 152.414881) +BD GR Veto +PQ 4.46298 +SE +ID 1573 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 114.930694) +BD GR Veto +PQ 4.59766 +SE +ET UN +ID 1574 +TI 1760667400.093357324 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 76.3879 +SE +ET PH +ID 1575 +TI 1760667400.093376159 +CC NStripHits 4 +PE 450.351 +PP 3.42205 0.314648 -3.61014 +PW 0 +SE +ID 1576 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.623980) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.435032) +BD GR Veto +PQ 6.83185 +SE +ID 1577 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 135.810695) +BD GR Veto +PQ 2.58786 +SE +ET PH +ID 1578 +TI 1760667400.093429803 +CC NStripHits 3 +PE 660.703 +PP -1.35061 -1.04992 1.62814 +PW 0 +SE +ET CO +ID 1579 +TI 1760667400.093453645 +CC NStripHits 5 +PQ 30.1985 +SQ 2 +CT 0 1 +TL 1 +TE 63.2537 +CE 346.383 1.10077 63.2537 1.38912 +CD 1.21033 -0.646499 -4.30858 0.0336036 0.0213374 0.0336036 1.09392 -0.281569 -1.51483 0.0336036 0.0232189 0.0336036 0 0 0 0 0 0 +LA 2.81989 +SE +ID 1580 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (352.316546)) (GR Hit: Detector ID 0 and Energy 378.106369) +BD GR Veto +PQ 352.317 +SE +ET PH +ID 1581 +TI 1760667400.093493700 +CC NStripHits 2 +PE 119.338 +PP 0.977516 -0.614609 -4.6578 +PW 0 +SE +ET CO +ID 1582 +TI 1760667400.093509197 +CC NStripHits 4 +PQ 13.6563 +SQ 2 +CT 0 1 +TL 1 +TE 75.9434 +CE 362.347 0.946169 75.9434 1.27954 +CD 1.90877 -0.962665 -4.07577 0.0336036 0.0198957 0.0336036 1.67595 -1.03504 -4.42498 0.0336036 0.0206837 0.0336036 0 0 0 0 0 0 +LA 0.4259 +SE +ET UN +ID 1583 +TI 1760667400.093538045 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 659.289 +SE +ET PH +ID 1584 +TI 1760667400.093567848 +CC NStripHits 3 +PE 247.444 +PP 2.02517 0.0875174 -4.19217 +PW 0 +SE +ID 1585 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 273.056752) +BD GR Veto +PQ 7.42087 +SE +ID 1586 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.794551)) (GR Hit: Detector ID 0 and Energy 458.872798) +BD GR Veto +PQ 25.7946 +SE +ET CO +ID 1587 +TI 1760667400.093622446 +CC NStripHits 5 +PQ 0.635117 +SQ 2 +CT 0.520678 0.479322 +TL 1 +TE 173.994 +CE 161.726 1.08841 173.994 0.926826 +CD -1.1178 -0.610049 -3.84295 0.0336036 0.0214296 0.0336036 -0.768578 -0.348976 -3.95936 0.0336036 0.022835 0.0336036 0 0 0 0 0 0 +LA 0.451294 +SE +ET PH +ID 1588 +TI 1760667400.093650579 +CC NStripHits 2 +PE 449.129 +PP -2.16545 0.213591 -3.95936 +PW 0 +SE +ET PH +ID 1589 +TI 1760667400.093670129 +CC NStripHits 4 +PE 209.33 +PP 1.79236 -0.154556 1.86095 +PW 0 +SE +ET PH +ID 1590 +TI 1760667400.093695402 +CC NStripHits 2 +PE 128.975 +PP 2.14158 0.159803 -3.26092 +PW 0 +SE +ID 1591 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.365458) +BD GR Veto +PQ 0.123556 +SE +ET CO +ID 1592 +TI 1760667400.093733549 +CC NStripHits 5 +PQ 1.86154 +SQ 2 +CT 0 1 +TL 1 +TE 148.153 +CE 514.67 1.92373 148.153 0.925616 +CD -1.69983 -0.377805 -3.72655 0.0336036 0.0226171 0.0336036 -1.93264 -0.662856 -3.84295 0.0336036 0.0212036 0.0336036 0 0 0 0 0 0 +LA 0.38601 +SE +ET UN +ID 1593 +TI 1760667400.093762874 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 193.368 +SE +ID 1594 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (4251.431250)) (GR Hit: Detector ID 0 and Energy 286.574552) +BD GR Veto +PQ 4251.43 +SE +ET UN +ID 1595 +TI 1760667400.093797683 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 352.607 +SE +ET PH +ID 1596 +TI 1760667400.093820095 +CC NStripHits 3 +PE 69.7197 +PP 0.977516 -0.421431 1.74455 +PW 0 +SE +ID 1597 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.846400) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 38.478971)) +BD GR Veto +PQ 1.09635 +SE +ID 1598 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.048918) +BD GR Veto +PQ +SE +ID 1599 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.583855) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.728385)) (GR Hit: Detector ID 0 and Energy 146.395580) +BD GR Veto +PQ 5.93364 +SE +ET PH +ID 1600 +TI 1760667400.111794710 +CC NStripHits 2 +PE 423.457 +PP 3.88767 -0.0133305 -2.7953 +PW 0 +SE +ET CO +ID 1601 +TI 1760667400.111817359 +CC NStripHits 4 +PQ 0.740359 +SQ 2 +CT 0 1 +TL 1 +TE 78.7818 +CE 333.451 0.987681 78.7818 0.939402 +CD -0.302953 0.316755 -0.350766 0.0336036 0.0384938 0.0336036 -0.535766 -0.998366 0.347672 0.0336036 0.0200974 0.0336036 0 0 0 0 0 0 +LA 1.50717 +SE +ID 1602 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (2806.636083)) (GR Hit: Detector ID 0 and Energy 274.288007) +BD GR Veto +PQ 2806.64 +SE +ET PH +ID 1603 +TI 1760667400.111856698 +CC NStripHits 2 +PE 361.585 +PP 2.37439 -0.300212 1.04611 +PW 0 +SE +ID 1604 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.940962) +BD GR Veto +PQ 0.570033 +SE +ID 1605 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 63.885422) (GR Hit: Detector ID 0 and Energy 100.928230) +BD GR Veto +PQ 2.97152 +SE +ET PH +ID 1606 +TI 1760667400.111948251 +CC NStripHits 4 +PE 117.723 +PP 3.88767 0.0333454 -0.00154687 +PW 0 +SE +ID 1607 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (90.298463)) (GR Hit: Detector ID 0 and Energy 134.601974) +BD GR Veto +PQ 90.2985 +SE +ET PH +ID 1608 +TI 1760667400.111978769 +CC NStripHits 2 +PE 77.7771 +PP 0.511891 -0.0487632 -2.67889 +PW 0 +SE +ET PH +ID 1609 +TI 1760667400.111997365 +CC NStripHits 2 +PE 162.446 +PP -0.535766 0.161604 2.44298 +PW 0 +SE +ET CO +ID 1610 +TI 1760667400.112018346 +CC NStripHits 5 +PQ 1.53093 +SQ 2 +CT 0.664787 0.335213 +TL 1 +TE 332.74 +CE 178.447 1.13625 332.74 0.981073 +CD 0.744703 -0.691985 -2.21327 0.0336036 0.0210545 0.0336036 0.511891 -0.152763 -2.44608 0.0336036 0.0238235 0.0336036 0 0 0 0 0 0 +LA 0.631793 +SE +ID 1611 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.540858) +BD GR Veto +PQ 3.69601 +SE +ET PH +ID 1612 +TI 1760667400.112057924 +CC NStripHits 3 +PE 429.687 +PP -0.884984 0.149882 2.21017 +PW 0 +SE +ID 1613 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 93.040440) (GR Hit: Detector ID 0 and Energy 46.572450) +BD GR Veto +PQ 2.3799 +SE +ET PH +ID 1614 +TI 1760667400.112173795 +CC NStripHits 4 +PE 260.657 +PP -0.535766 -0.06312 -2.67889 +PW 0 +SE +ET PH +ID 1615 +TI 1760667400.112196922 +CC NStripHits 2 +PE 85.5821 +PP 1.90877 -0.283559 2.6758 +PW 0 +SE +ET CO +ID 1616 +TI 1760667400.112211704 +CC NStripHits 6 +PQ 7.43663 +SQ 2 +CT 0 1 +TL 1 +TE 119.314 +CE 190.305 1.07712 119.314 1.28166 +CD 2.37439 -0.15253 1.16252 0.0336036 0.0238257 0.0336036 2.95642 0.19458 1.04611 0.0336036 0.0284857 0.0336036 0 0 0 0 0 0 +LA 0.687601 +SE +ID 1617 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.783205) +BD GR Veto +PQ 23.3132 +SE +ET CO +ID 1618 +TI 1760667400.112254381 +CC NStripHits 9 +PQ 27.8736 +SQ 4 +CT 0.038431 0.0940234 +TL 1 +TE 102.481 +CE 217.08 1.82278 102.481 1.36021 +CD 3.30564 -0.796318 -2.44608 0.0336036 0.020206 0.0336036 3.07283 -0.905875 -2.32967 0.0336036 0.0197854 0.0336036 0 0 0 0 0 0 +LA 0.282408 +SE +ID 1619 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (29.792118)) (GR Hit: Detector ID 0 and Energy 481.593305) +BD GR Veto +PQ 29.7921 +SE +ET PH +ID 1620 +TI 1760667400.112314701 +CC NStripHits 2 +PE 22.1822 +PP 0.861109 -0.582969 -4.42498 +PW 0 +SE +ET CO +ID 1621 +TI 1760667400.112333297 +CC NStripHits 4 +PQ 11.6598 +SQ 2 +CT 0 1 +TL 1 +TE 33.4079 +CE 178.516 1.26317 33.4079 0.910945 +CD -2.74748 -0.211887 -1.39842 0.0336036 0.023414 0.0336036 -2.63108 -0.452636 -1.16561 0.0336036 0.0220507 0.0336036 0 0 0 0 0 0 +LA 0.354555 +SE +ID 1622 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.341404) +BD GR Veto +PQ 3.23419 +SE +ET PH +ID 1623 +TI 1760667400.112381696 +CC NStripHits 4 +PE 181.029 +PP -0.652172 -0.457337 -0.699984 +PW 0 +SE +ID 1624 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 282.933171) +BD GR Veto +PQ 6.9172 +SE +ID 1625 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 204.819495) +BD GR Veto +PQ 1.76356 +SE +ET PH +ID 1626 +TI 1760667400.112436771 +CC NStripHits 3 +PE 112.119 +PP 2.6072 -1.01648 -1.63123 +PW 0 +SE +ET PH +ID 1627 +TI 1760667400.112457990 +CC NStripHits 2 +PE 214.744 +PP -1.00139 -0.569541 -2.56248 +PW 0 +SE +ET PH +ID 1628 +TI 1760667400.112475872 +CC NStripHits 2 +PE 82.9879 +PP 2.95642 0.173752 1.62814 +PW 0 +SE +ET CO +ID 1629 +TI 1760667400.112496137 +CC NStripHits 7 +PQ 0.0910227 +SQ 2 +CT 0 1 +TL 1 +TE 83.5252 +CE 294.123 1.44342 83.5252 0.921189 +CD -0.768578 -0.56805 0.929703 0.0336036 0.0216145 0.0336036 1.09392 -0.572635 1.04611 0.0336036 0.0216052 0.0336036 0 0 0 0 0 0 +LA 1.86614 +SE +ET CO +ID 1630 +TI 1760667400.112541437 +CC NStripHits 4 +PQ 65.8074 +SQ 2 +CT 0 1 +TL 1 +TE 109.58 +CE 139.34 0.890523 109.58 1.33041 +CD -2.51467 0.346528 2.09377 0.0336036 0.0325384 0.0336036 -1.93264 -0.527385 2.55939 0.0336036 0.0216951 0.0336036 0 0 0 0 0 0 +LA 1.1486 +SE +ET PH +ID 1631 +TI 1760667400.112576246 +CC NStripHits 2 +PE 115.552 +PP 2.37439 0.221852 1.04611 +PW 0 +SE +ET PH +ID 1632 +TI 1760667400.112594366 +CC NStripHits 2 +PE 30.392 +PP -0.0701406 0.377076 -4.19217 +PW 0 +SE +ET CO +ID 1633 +TI 1760667400.112612724 +CC NStripHits 4 +PQ 19.4925 +SQ 2 +CT 0.637399 0.362601 +TL 1 +TE 131.25 +CE 134.228 1.29066 131.25 1.29292 +CD 3.07283 -0.257463 -1.51483 0.0336036 0.0233366 0.0336036 3.88767 -1.01681 -2.09686 0.0336036 0.0203083 0.0336036 0 0 0 0 0 0 +LA 1.25671 +SE +ET PH +ID 1634 +TI 1760667400.112648010 +CC NStripHits 3 +PE 346.873 +PP 1.90877 -0.132424 -4.30858 +PW 0 +SE +ET PH +ID 1635 +TI 1760667400.112667322 +CC NStripHits 2 +PE 166.728 +PP 0.861109 -0.278788 -2.32967 +PW 0 +SE +ET PH +ID 1636 +TI 1760667400.112684488 +CC NStripHits 2 +PE 89.2655 +PP 2.02517 0.360477 -3.49373 +PW 0 +SE +ET PH +ID 1637 +TI 1760667400.112702369 +CC NStripHits 2 +PE 141.24 +PP 2.95642 0.0311819 -2.7953 +PW 0 +SE +ET CO +ID 1638 +TI 1760667400.112722396 +CC NStripHits 4 +PQ 29.537 +SQ 2 +CT 0 1 +TL 1 +TE 69.0249 +CE 110.5 1.31852 69.0249 0.934111 +CD -1.1178 0.0339886 -1.51483 0.0336036 0.0253809 0.0336036 -2.86389 -0.28315 -3.14452 0.0336036 0.0232116 0.0336036 0 0 0 0 0 0 +LA 2.40942 +SE +ET CO +ID 1639 +TI 1760667400.112764835 +CC NStripHits 4 +PQ 1.96279 +SQ 2 +CT 0 1 +TL 1 +TE 29.0218 +CE 93.6652 0.933112 29.0218 0.884825 +CD 0.744703 -1.08734 2.32658 0.0336036 0.0247441 0.0336036 0.628297 0.0243322 2.09377 0.0336036 0.0253001 0.0336036 0 0 0 0 0 0 +LA 1.14174 +SE +ET PH +ID 1640 +TI 1760667400.112789154 +CC NStripHits 3 +PE 120.809 +PP -2.9803 -0.911833 -2.44608 +PW 0 +SE +ET PH +ID 1641 +TI 1760667400.112808704 +CC NStripHits 2 +PE 50.2841 +PP 4.3533 -0.346898 -1.98045 +PW 0 +SE +ET UN +ID 1642 +TI 1760667400.112823963 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.7323 +SE +ET PH +ID 1643 +TI 1760667400.112843036 +CC NStripHits 2 +PE 104.564 +PP 1.21033 -1.10678 0.231266 +PW 0 +SE +ID 1644 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (70.697191)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 27.112465)) +BD GR Veto +PQ 70.6972 +SE +ET CO +ID 1645 +TI 1760667400.112906694 +CC NStripHits 4 +PQ 0.442027 +SQ 2 +CT 0 1 +TL 1 +TE 38.7562 +CE 154.731 0.962374 38.7562 0.940321 +CD 0.861109 -0.439479 -0.467172 0.0336036 0.022171 0.0336036 0.744703 -0.368216 -0.350766 0.0336036 0.0226912 0.0336036 0 0 0 0 0 0 +LA 0.179385 +SE +ID 1646 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.866604) (Strip hit removed with energy 12.472409) (Strip hit removed with energy 14.723304) +QA StripPairing (GR Hit: Detector ID 0 and Energy 102.828268) +BD GR Veto +PQ 2.81295 +SE +ET UN +ID 1647 +TI 1760667400.112966299 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1648 +TI 1760667400.112984418 +CC NStripHits 3 +PE 250.995 +PP 2.02517 0.0989649 0.813297 +PW 0 +SE +ET CO +ID 1649 +TI 1760667400.113007545 +CC NStripHits 8 +PQ 0.508929 +SQ 3 +CT 0.0967418 0.439964 +TL 1 +TE 458.426 +CE 201.677 1.3869 458.426 1.15123 +CD -2.04905 -0.409378 -1.74764 0.0336036 0.0223854 0.0336036 -2.16545 -0.459176 -1.39842 0.0336036 0.0220071 0.0336036 0 0 0 0 0 0 +LA 0.371461 +SE +ET UN +ID 1650 +TI 1760667400.113055706 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 647.328 +SE +ID 1651 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.199917) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 51.805686) (GR Hit: Detector ID 0 and Energy 389.852665) +BD GR Veto +PQ 0.546374 +SE +ID 1652 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.350924) (Strip hit removed with energy 11.696073) (Strip hit removed with energy 10.563794) (Strip hit removed with energy 3.903909) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 21.779933)) +BD GR Veto +PQ 7.8914 +SE +ET PH +ID 1653 +TI 1760667400.113176822 +CC NStripHits 3 +PE 182.503 +PP 3.65486 -1.0293 -2.32967 +PW 0 +SE +ET CO +ID 1654 +TI 1760667400.113197088 +CC NStripHits 5 +PQ 0.753579 +SQ 2 +CT 0.635861 0.364139 +TL 1 +TE 384.631 +CE 277.862 0.967422 384.631 1.17992 +CD 4.00408 0.221292 -3.37733 0.0336036 0.0298628 0.0336036 3.77127 0.229101 -3.14452 0.0336036 0.0304296 0.0336036 0 0 0 0 0 0 +LA 0.329336 +SE +ET PH +ID 1655 +TI 1760667400.113234519 +CC NStripHits 3 +PE 167.414 +PP 0.511891 0.223804 -0.467172 +PW 0 +SE +ET PH +ID 1656 +TI 1760667400.113255262 +CC NStripHits 2 +PE 130.788 +PP -0.302953 -0.747566 -0.00154687 +PW 0 +SE +ET PH +ID 1657 +TI 1760667400.113273382 +CC NStripHits 2 +PE 20.5456 +PP -1.35061 -0.135091 0.929703 +PW 0 +SE +ET UN +ID 1658 +TI 1760667400.113296270 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 505.222 +SE +ET PH +ID 1659 +TI 1760667400.113323450 +CC NStripHits 3 +PE 355.165 +PP 1.09392 -0.0500545 -0.467172 +PW 0 +SE +ET PH +ID 1660 +TI 1760667400.113344430 +CC NStripHits 2 +PE 55.9821 +PP -0.0701406 -0.894777 -2.56248 +PW 0 +SE +ET PH +ID 1661 +TI 1760667400.113364458 +CC NStripHits 3 +PE 462.218 +PP -1.93264 -0.493375 1.62814 +PW 0 +SE +ID 1662 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 46.364736) (GR Hit: Detector ID 0 and Energy 20.333961) (GR Hit: Detector ID 0 and Energy 107.901529) +BD GR Veto +PQ 1.67843 +SE +ET PH +ID 1663 +TI 1760667400.132865905 +CC NStripHits 2 +PE 36.5196 +PP -1.93264 -0.519908 1.86095 +PW 0 +SE +ET PH +ID 1664 +TI 1760667400.132914781 +CC NStripHits 2 +PE 68.3955 +PP 0.395484 -0.703577 -4.6578 +PW 0 +SE +ET PH +ID 1665 +TI 1760667400.132932186 +CC NStripHits 2 +PE 95.5649 +PP -1.00139 -0.0672086 -3.02811 +PW 0 +SE +ET UN +ID 1666 +TI 1760667400.132955789 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1667 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.459033) +BD GR Veto +PQ 6.27059 +SE +ET PH +ID 1668 +TI 1760667400.132987499 +CC NStripHits 2 +PE 363.993 +PP 3.42205 -0.438838 -0.234359 +PW 0 +SE +ET PH +ID 1669 +TI 1760667400.133014202 +CC NStripHits 4 +PE 411.605 +PP -2.04905 -0.845602 -0.00154687 +PW 0 +SE +ET PH +ID 1670 +TI 1760667400.133037805 +CC NStripHits 2 +PE 63.1787 +PP 3.88767 0.364164 -1.98045 +PW 0 +SE +ET CO +ID 1671 +TI 1760667400.133056163 +CC NStripHits 6 +PQ 0.20909 +SQ 2 +CT 0.568405 0.431595 +TL 1 +TE 360.191 +CE 303.156 1.36039 360.191 0.950403 +CD 0.0462656 -0.493419 -2.9117 0.0336036 0.0218416 0.0336036 0.395484 -0.00340369 -4.30858 0.0336036 0.024972 0.0336036 0 0 0 0 0 0 +LA 1.52097 +SE +ET UN +ID 1672 +TI 1760667400.133093833 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 63.5532 +SE +ET PH +ID 1673 +TI 1760667400.133126974 +CC NStripHits 2 +PE 43.8469 +PP -1.81623 -0.919257 0.580484 +PW 0 +SE +ET PH +ID 1674 +TI 1760667400.133145570 +CC NStripHits 3 +PE 165.495 +PP 3.88767 -0.961308 -0.234359 +PW 0 +SE +ID 1675 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.225466) (Strip hit removed with energy 7.835229) (Strip hit removed with energy 8.588474) +QA StripPairing (Best reduced chi square is not below 25 (1904.141110)) (GR Hit: Detector ID 0 and Energy 172.339423) +BD GR Veto +PQ 1904.14 +SE +ET PH +ID 1676 +TI 1760667400.133183240 +CC NStripHits 2 +PE 468.633 +PP -0.0701406 -0.431442 -4.07577 +PW 0 +SE +ET PH +ID 1677 +TI 1760667400.133201360 +CC NStripHits 3 +PE 182.432 +PP 3.53845 0.355764 -0.00154687 +PW 0 +SE +ET PH +ID 1678 +TI 1760667400.133239746 +CC NStripHits 2 +PE 576.292 +PP -0.884984 -0.42138 1.74455 +PW 0 +SE +ET PH +ID 1679 +TI 1760667400.133265495 +CC NStripHits 2 +PE 374.016 +PP 2.95642 -0.846111 2.21017 +PW 0 +SE +ET PH +ID 1680 +TI 1760667400.133301496 +CC NStripHits 2 +PE 25.4772 +PP 3.53845 -0.967908 -3.14452 +PW 0 +SE +ET PH +ID 1681 +TI 1760667400.133318901 +CC NStripHits 2 +PE 476.573 +PP -0.302953 0.333751 1.97736 +PW 0 +SE +ET PH +ID 1682 +TI 1760667400.133342504 +CC NStripHits 2 +PE 443.672 +PP 0.0462656 0.309261 -2.67889 +PW 0 +SE +ID 1683 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 26.156083)) (GR Hit: Detector ID 0 and Energy 222.799786) +BD GR Veto +PQ 13.7435 +SE +ET PH +ID 1684 +TI 1760667400.133377790 +CC NStripHits 3 +PE 412.594 +PP -1.46702 0.343858 2.6758 +PW 0 +SE +ET PH +ID 1685 +TI 1760667400.133395433 +CC NStripHits 2 +PE 452.201 +PP 2.72361 -0.474498 2.55939 +PW 0 +SE +ET PH +ID 1686 +TI 1760667400.133415460 +CC NStripHits 2 +PE 155.697 +PP -2.86389 0.0938229 -2.32967 +PW 0 +SE +ET PH +ID 1687 +TI 1760667400.133433580 +CC NStripHits 2 +PE 144.731 +PP 0.744703 0.231877 0.231266 +PW 0 +SE +ET PH +ID 1688 +TI 1760667400.133451223 +CC NStripHits 2 +PE 255.262 +PP 3.77127 0.119191 -0.117953 +PW 0 +SE +ET CO +ID 1689 +TI 1760667400.133486032 +CC NStripHits 5 +PQ 9.48138 +SQ 2 +CT 0 1 +TL 1 +TE 117.819 +CE 149.14 1.36615 117.819 1.83908 +CD 1.32673 0.373129 -2.9117 0.0336036 0.0192078 0.0336036 2.84002 0.108811 -2.56248 0.0336036 0.0263562 0.0336036 0 0 0 0 0 0 +LA 1.57539 +SE +ID 1690 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1691 +TI 1760667400.133535385 +CC NStripHits 3 +PE 145.282 +PP 1.21033 -0.202022 -2.9117 +PW 0 +SE +ET PH +ID 1692 +TI 1760667400.133557319 +CC NStripHits 2 +PE 300.146 +PP 1.44314 -1.00472 2.32658 +PW 0 +SE +ID 1693 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 262.175148) +BD GR Veto +PQ 0.131726 +SE +ET CO +ID 1694 +TI 1760667400.133582353 +CC NStripHits 4 +PQ 16.5957 +SQ 2 +CT 0 1 +TL 1 +TE 50.0553 +CE 211.724 1.31046 50.0553 1.39818 +CD 0.628297 -0.903988 -1.28202 0.0336036 0.0197882 0.0336036 0.162672 -1.12708 -1.39842 0.0336036 0.0299083 0.0336036 0 0 0 0 0 0 +LA 0.529269 +SE +ET CO +ID 1695 +TI 1760667400.133609771 +CC NStripHits 8 +PQ 2.18386 +SQ 3 +CT 0.408732 0.813487 +TL 1 +TE 318.989 +CE 150.699 2.02103 318.989 1.12786 +CD -0.302953 -0.827736 1.74455 0.0336036 0.0200421 0.0336036 -1.81623 0.0926305 1.27892 0.0336036 0.0261429 0.0336036 0 0 0 0 0 0 +LA 1.16587 +SE +ET PH +ID 1696 +TI 1760667400.133658885 +CC NStripHits 2 +PE 73.4903 +PP -1.58342 -1.09566 -0.117953 +PW 0 +SE +ET PH +ID 1697 +TI 1760667400.133676528 +CC NStripHits 2 +PE 92.5773 +PP 2.02517 0.173121 -3.49373 +PW 0 +SE +ET PH +ID 1698 +TI 1760667400.133696556 +CC NStripHits 2 +PE 217.564 +PP -0.0701406 -0.615175 -2.21327 +PW 0 +SE +ET PH +ID 1699 +TI 1760667400.133716583 +CC NStripHits 4 +PE 331.088 +PP 3.30564 -0.0293211 -2.56248 +PW 0 +SE +ET PH +ID 1700 +TI 1760667400.133748531 +CC NStripHits 3 +PE 228.972 +PP 1.44314 -1.00294 1.16252 +PW 0 +SE +ET PH +ID 1701 +TI 1760667400.133771181 +CC NStripHits 2 +PE 92.5913 +PP 3.18923 0.215772 1.62814 +PW 0 +SE +ID 1702 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.712299) +BD GR Veto +PQ 0.843457 +SE +ET PH +ID 1703 +TI 1760667400.133796215 +CC NStripHits 4 +PE 293.749 +PP 0.977516 -0.6041 0.464078 +PW 0 +SE +ET PH +ID 1704 +TI 1760667400.133818864 +CC NStripHits 2 +PE 59.2311 +PP 4.3533 0.185654 -0.583578 +PW 0 +SE +ID 1705 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.733649) +BD GR Veto +PQ +SE +ET PH +ID 1706 +TI 1760667400.133875370 +CC NStripHits 3 +PE 423.075 +PP 0.744703 -0.101002 0.696891 +PW 0 +SE +ET PH +ID 1707 +TI 1760667400.133898735 +CC NStripHits 2 +PE 350.214 +PP 1.21033 -0.5565 1.51173 +PW 0 +SE +ET PH +ID 1708 +TI 1760667400.133919239 +CC NStripHits 3 +PE 181.172 +PP -0.535766 0.0997856 -2.7953 +PW 0 +SE +ET PH +ID 1709 +TI 1760667400.133943557 +CC NStripHits 2 +PE 88.6139 +PP -2.39827 0.277652 -2.7953 +PW 0 +SE +ET CO +ID 1710 +TI 1760667400.133963584 +CC NStripHits 8 +PQ 24.5016 +SQ 3 +CT 0.0252381 0.143863 +TL 1 +TE 391.523 +CE 284.63 1.68184 391.523 1.88579 +CD 3.53845 -0.510782 -0.816391 0.0336036 0.0217492 0.0336036 3.88767 -0.237523 -0.350766 0.0336036 0.0233385 0.0336036 0 0 0 0 0 0 +LA 0.639288 +SE +ET PH +ID 1711 +TI 1760667400.133996963 +CC NStripHits 2 +PE 152.982 +PP 3.65486 0.182398 -3.95936 +PW 0 +SE +ET UN +ID 1712 +TI 1760667400.134014129 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 133.41 +SE +ET PH +ID 1713 +TI 1760667400.134038925 +CC NStripHits 2 +PE 443.099 +PP -2.39827 0.112223 -0.583578 +PW 0 +SE +ET PH +ID 1714 +TI 1760667400.134061574 +CC NStripHits 3 +PE 71.2012 +PP 1.55955 -1.09285 1.04611 +PW 0 +SE +ET UN +ID 1715 +TI 1760667400.134081840 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 204.509 +SE +ET UN +ID 1716 +TI 1760667400.134135484 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 424.654 +SE +ET PH +ID 1717 +TI 1760667400.134165048 +CC NStripHits 3 +PE 149.014 +PP -1.46702 -0.722799 -0.00154687 +PW 0 +SE +ET PH +ID 1718 +TI 1760667400.134185552 +CC NStripHits 3 +PE 223.081 +PP -0.419359 -0.727044 -4.19217 +PW 0 +SE +ID 1719 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.443148) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.793026) (GR Hit: Detector ID 0 and Energy 129.904698) +BD GR Veto +PQ 11.5388 +SE +ET PH +ID 1720 +TI 1760667400.134233713 +CC NStripHits 2 +PE 353.127 +PP -2.63108 0.0226802 -0.699984 +PW 0 +SE +ET UN +ID 1721 +TI 1760667400.134253740 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.4884 +SE +ET PH +ID 1722 +TI 1760667400.134271860 +CC NStripHits 2 +PE 107.852 +PP -2.28186 0.359103 -1.63123 +PW 0 +SE +ET PH +ID 1723 +TI 1760667400.134291410 +CC NStripHits 2 +PE 52.3022 +PP 2.02517 -0.773993 -1.63123 +PW 0 +SE +ID 1724 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.572950) +QA StripPairing (Best reduced chi square is not below 25 (1305.229977)) (GR Hit: Detector ID 0 and Energy 169.099545) +BD GR Veto +PQ 1305.23 +SE +ID 1725 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (2891.117875)) (GR Hit: Detector ID 0 and Energy 200.096813) +BD GR Veto +PQ 2891.12 +SE +ID 1726 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (145.551153)) (GR Hit: Detector ID 0 and Energy 203.263138) +BD GR Veto +PQ 145.551 +SE +ET PH +ID 1727 +TI 1760667400.159193515 +CC NStripHits 2 +PE 322.862 +PP 0.628297 -1.15019 2.44298 +PW 0 +SE +ET PH +ID 1728 +TI 1760667400.159272432 +CC NStripHits 2 +PE 451.982 +PP -1.46702 -0.0434115 -4.42498 +PW 0 +SE +ET PH +ID 1729 +TI 1760667400.159312725 +CC NStripHits 2 +PE 297.948 +PP 3.53845 -0.794575 -3.26092 +PW 0 +SE +ID 1730 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (42.443767)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 29.437334)) (GR Hit: Detector ID 0 and Energy 266.664234) +BD GR Veto +PQ 42.4438 +SE +ET CO +ID 1731 +TI 1760667400.159409999 +CC NStripHits 7 +PQ 8.23738 +SQ 2 +CT 0 1 +TL 1 +TE 39.9018 +CE 488.386 1.46216 39.9018 1.32212 +CD 3.77127 -1.11579 1.27892 0.0336036 0.0291442 0.0336036 3.53845 0.0758389 1.62814 0.0336036 0.0258814 0.0336036 0 0 0 0 0 0 +LA 1.26338 +SE +ET PH +ID 1732 +TI 1760667400.159482002 +CC NStripHits 2 +PE 145.609 +PP 1.55955 -1.17009 2.32658 +PW 0 +SE +ID 1733 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1559.475528)) (GR Hit: Detector ID 0 and Energy 163.139454) +BD GR Veto +PQ 1559.48 +SE +ET PH +ID 1734 +TI 1760667400.159541130 +CC NStripHits 2 +PE 31.284 +PP -1.2342 -1.17952 -4.54139 +PW 0 +SE +ID 1735 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.393202)) (GR Hit: Detector ID 0 and Energy 166.935289) +BD GR Veto +PQ 25.3932 +SE +ET UN +ID 1736 +TI 1760667400.159595966 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1737 +TI 1760667400.159643650 +CC NStripHits 2 +PE 187.597 +PP -2.9803 -1.01796 -2.9117 +PW 0 +SE +ET UN +ID 1738 +TI 1760667400.159681320 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 327.713 +SE +ET PH +ID 1739 +TI 1760667400.159776687 +CC NStripHits 2 +PE 159.853 +PP 4.3533 0.0309333 -3.49373 +PW 0 +SE +ET CO +ID 1740 +TI 1760667400.159814834 +CC NStripHits 4 +PQ 5.18697 +SQ 2 +CT 0 1 +TL 1 +TE 71.3776 +CE 371.879 1.31943 71.3776 0.894051 +CD -0.0701406 0.149505 -0.00154687 0.0336036 0.0271886 0.0336036 1.21033 0.316101 2.09377 0.0336036 0.0385366 0.0336036 0 0 0 0 0 0 +LA 2.46124 +SE +ET PH +ID 1741 +TI 1760667400.159919500 +CC NStripHits 3 +PE 311.864 +PP 3.77127 -1.05922 -1.51483 +PW 0 +SE +ET PH +ID 1742 +TI 1760667400.159962892 +CC NStripHits 5 +PE 178.855 +PP 2.84002 0.00827819 -3.26092 +PW 0 +SE +ET CO +ID 1743 +TI 1760667400.160017728 +CC NStripHits 4 +PQ 3.96496 +SQ 2 +CT 0.613934 0.386066 +TL 1 +TE 379.952 +CE 278.61 0.967037 379.952 1.41549 +CD -0.652172 -0.426642 0.929703 0.0336036 0.0222855 0.0336036 -2.63108 -0.16643 -1.28202 0.0336036 0.0237111 0.0336036 0 0 0 0 0 0 +LA 2.97918 +SE +ET PH +ID 1744 +TI 1760667400.160141468 +CC NStripHits 2 +PE 95.1581 +PP -1.2342 -0.902421 -1.98045 +PW 0 +SE +ET CO +ID 1745 +TI 1760667400.160185337 +CC NStripHits 5 +PQ 1.37704 +SQ 2 +CT 0 1 +TL 1 +TE 103.24 +CE 151.087 1.06309 103.24 0.928524 +CD -0.186547 0.193891 -3.84295 0.0336036 0.0284574 0.0336036 -0.652172 -0.621259 -3.61014 0.0336036 0.0214217 0.0336036 0 0 0 0 0 0 +LA 0.9672 +SE +ET PH +ID 1746 +TI 1760667400.160247325 +CC NStripHits 2 +PE 247.232 +PP 1.21033 -0.0796341 0.231266 +PW 0 +SE +ET PH +ID 1747 +TI 1760667400.160282373 +CC NStripHits 3 +PE 453.071 +PP 1.09392 -0.176616 1.97736 +PW 0 +SE +ET CO +ID 1748 +TI 1760667400.160325527 +CC NStripHits 6 +PQ 7.2881 +SQ 2 +CT 0 1 +TL 1 +TE 76.8466 +CE 157.956 1.06716 76.8466 1.30063 +CD 1.44314 -0.424629 1.51173 0.0336036 0.0222997 0.0336036 1.79236 -0.642726 0.580484 0.0336036 0.0213632 0.0336036 0 0 0 0 0 0 +LA 1.0182 +SE +ET PH +ID 1749 +TI 1760667400.160411596 +CC NStripHits 3 +PE 317.649 +PP 1.44314 0.21046 1.39533 +PW 0 +SE +ET CO +ID 1750 +TI 1760667400.160450458 +CC NStripHits 5 +PQ 16.5839 +SQ 2 +CT 0 1 +TL 1 +TE 104.329 +CE 423.428 1.90648 104.329 1.27535 +CD 0.628297 0.366523 1.16252 0.0336036 0.0232535 0.0336036 1.79236 -0.115925 1.39533 0.0336036 0.0241684 0.0336036 0 0 0 0 0 0 +LA 1.28141 +SE +ET PH +ID 1751 +TI 1760667400.160517454 +CC NStripHits 2 +PE 118.192 +PP 0.395484 -0.207961 2.09377 +PW 0 +SE +ET PH +ID 1752 +TI 1760667400.160551786 +CC NStripHits 3 +PE 101.897 +PP 3.53845 0.327044 -3.84295 +PW 0 +SE +ET PH +ID 1753 +TI 1760667400.160590648 +CC NStripHits 5 +PE 352.369 +PP -0.302953 0.207421 -3.84295 +PW 0 +SE +ID 1754 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.669320) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 24.144354)) +BD GR Veto +PQ 0.0338311 +SE +ET CO +ID 1755 +TI 1760667400.160669088 +CC NStripHits 5 +PQ 2.88797 +SQ 2 +CT 0 1 +TL 1 +TE 122.06 +CE 227.569 1.03233 122.06 1.26204 +CD -1.69983 -0.630068 2.44298 0.0336036 0.021414 0.0336036 -1.93264 -1.02266 2.6758 0.0336036 0.0204012 0.0336036 0 0 0 0 0 0 +LA 0.512381 +SE +ET UN +ID 1756 +TI 1760667400.160694599 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 8 +PE 0 +SE +ET PH +ID 1757 +TI 1760667400.160748243 +CC NStripHits 3 +PE 317.394 +PP -2.51467 -0.669283 -0.117953 +PW 0 +SE +ET CO +ID 1758 +TI 1760667400.160769224 +CC NStripHits 4 +PQ 84.8502 +SQ 2 +CT 0 1 +TL 1 +TE 137.333 +CE 189.818 1.39923 137.333 1.28376 +CD -0.186547 -0.4107 -3.26092 0.0336036 0.0223783 0.0336036 0.0462656 0.171759 -3.14452 0.0336036 0.0277094 0.0336036 0 0 0 0 0 0 +LA 0.637973 +SE +ID 1759 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 22.647353) +BD GR Veto +PQ 0.749883 +SE +ET PH +ID 1760 +TI 1760667400.160805940 +CC NStripHits 3 +PE 106.944 +PP 3.18923 -0.885795 -0.699984 +PW 0 +SE +ID 1761 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 165.490518) +BD GR Veto +PQ 6.87163 +SE +ET PH +ID 1762 +TI 1760667400.160837888 +CC NStripHits 2 +PE 153.603 +PP 2.84002 -0.844262 0.929703 +PW 0 +SE +ET PH +ID 1763 +TI 1760667400.160860300 +CC NStripHits 2 +PE 144.633 +PP 0.977516 0.07344 -3.95936 +PW 0 +SE +ET CO +ID 1764 +TI 1760667400.160878896 +CC NStripHits 4 +PQ 31.3507 +SQ 2 +CT 0 1 +TL 1 +TE 82.6717 +CE 406.095 0.995711 82.6717 1.26347 +CD -0.0701406 -0.280932 0.929703 0.0336036 0.023222 0.0336036 0.279078 -0.516161 1.74455 0.0336036 0.0217297 0.0336036 0 0 0 0 0 0 +LA 0.917203 +SE +ID 1765 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 132.196357) +BD GR Veto +PQ 5.63918 +SE +ID 1766 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 277.374940) (GR Hit: Detector ID 0 and Energy 43.215020) +BD GR Veto +PQ 0.0618709 +SE +ET PH +ID 1767 +TI 1760667400.160948991 +CC NStripHits 3 +PE 235.716 +PP 1.55955 -0.265653 -2.21327 +PW 0 +SE +ET PH +ID 1768 +TI 1760667400.160971879 +CC NStripHits 3 +PE 463.688 +PP -1.46702 0.36803 0.813297 +PW 0 +SE +ET PH +ID 1769 +TI 1760667400.160992145 +CC NStripHits 2 +PE 126.211 +PP 1.55955 -0.818029 -3.84295 +PW 0 +SE +ET PH +ID 1770 +TI 1760667400.161018133 +CC NStripHits 2 +PE 451.593 +PP -1.2342 0.276666 -4.30858 +PW 0 +SE +ET PH +ID 1771 +TI 1760667400.161056518 +CC NStripHits 4 +PE 183.375 +PP -1.93264 0.358266 -3.61014 +PW 0 +SE +ET UN +ID 1772 +TI 1760667400.161078214 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 507.053 +SE +ET PH +ID 1773 +TI 1760667400.161110162 +CC NStripHits 3 +PE 431.002 +PP 1.67595 0.367426 0.464078 +PW 0 +SE +ET PH +ID 1774 +TI 1760667400.161131858 +CC NStripHits 3 +PE 459.314 +PP -2.16545 0.349404 0.464078 +PW 0 +SE +ID 1775 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 258.545883) +BD GR Veto +PQ 1.98655 +SE +ET PH +ID 1776 +TI 1760667400.161166191 +CC NStripHits 4 +PE 448.898 +PP 1.09392 -0.564208 -1.16561 +PW 0 +SE +ID 1777 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.042106) +BD GR Veto +PQ 2.18261 +SE +ID 1778 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 1779 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.592185) (Strip hit removed with energy 8.265290) +BD GR Veto +PQ 1.59244 +SE +ET PH +ID 1780 +TI 1760667400.161248445 +CC NStripHits 5 +PE 274.328 +PP 1.79236 -0.476298 1.62814 +PW 0 +SE +ID 1781 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 1782 +TI 1760667400.161279439 +CC NStripHits 2 +PE 57.8902 +PP -2.74748 0.365256 -3.84295 +PW 0 +SE +ET PH +ID 1783 +TI 1760667400.161300897 +CC NStripHits 3 +PE 152.715 +PP 3.77127 -0.746153 1.51173 +PW 0 +SE +ET UN +ID 1784 +TI 1760667400.161320686 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 188.229 +SE +ET PH +ID 1785 +TI 1760667400.161352157 +CC NStripHits 2 +PE 188.921 +PP -0.768578 -1.03366 -4.54139 +PW 0 +SE +ET PH +ID 1786 +TI 1760667400.161370277 +CC NStripHits 3 +PE 237.826 +PP 1.09392 0.351707 -3.37733 +PW 0 +SE +ID 1787 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.420154) +BD GR Veto +PQ 3.37509 +SE +ET CO +ID 1788 +TI 1760667400.161413669 +CC NStripHits 4 +PQ 0.162195 +SQ 2 +CT 0 1 +TL 1 +TE 34.0956 +CE 214.492 0.957064 34.0956 0.956529 +CD 1.21033 0.236005 -2.7953 0.0336036 0.0310306 0.0336036 1.55955 -0.699625 -3.49373 0.0336036 0.0209777 0.0336036 0 0 0 0 0 0 +LA 1.21867 +SE +ID 1789 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (546.541095)) (GR Hit: Detector ID 0 and Energy 241.888069) +BD GR Veto +PQ 546.541 +SE +ID 1790 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 0.033214) +BD GR Veto +PQ +SE +ET PH +ID 1791 +TI 1760667400.183451414 +CC NStripHits 2 +PE 32.8765 +PP 1.44314 -0.126846 1.16252 +PW 0 +SE +ET UN +ID 1792 +TI 1760667400.183534145 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 1793 +TI 1760667400.183570384 +CC NStripHits 6 +PQ 0.333194 +SQ 3 +CT 1.59039 2.25712 +TL 1 +TE 40.3843 +CE 131.303 1.31638 40.3843 0.861928 +CD 3.53845 -0.976019 2.32658 0.0336036 0.0199616 0.0336036 3.42205 -1.14869 2.21017 0.0336036 0.0279036 0.0336036 0 0 0 0 0 0 +LA 0.23857 +SE +ET CO +ID 1794 +TI 1760667400.183638572 +CC NStripHits 5 +PQ 1.08415 +SQ 2 +CT 0.632347 0.367653 +TL 1 +TE 385.437 +CE 278.029 0.972716 385.437 1.16749 +CD 3.18923 -0.162286 -0.467172 0.0336036 0.0237421 0.0336036 3.88767 0.364658 -0.117953 0.0336036 0.0243169 0.0336036 0 0 0 0 0 0 +LA 0.942042 +SE +ID 1795 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 100.792894) +BD GR Veto +PQ 0.240714 +SE +ET PH +ID 1796 +TI 1760667400.183738946 +CC NStripHits 3 +PE 144.725 +PP -2.16545 -0.246523 -1.16561 +PW 0 +SE +ET PH +ID 1797 +TI 1760667400.183777093 +CC NStripHits 2 +PE 33.678 +PP 4.12048 -0.259604 -1.86405 +PW 0 +SE +ET UN +ID 1798 +TI 1760667400.183809757 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 211.403 +SE +ET PH +ID 1799 +TI 1760667400.183880329 +CC NStripHits 5 +PE 255.232 +PP 3.88767 -1.01579 -3.95936 +PW 0 +SE +ET PH +ID 1800 +TI 1760667400.183937549 +CC NStripHits 2 +PE 164.427 +PP -0.884984 0.224501 -3.26092 +PW 0 +SE +ET UN +ID 1801 +TI 1760667400.183970928 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 56.8013 +SE +ET UN +ID 1802 +TI 1760667400.184007883 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8732 +SE +ID 1803 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 144.010198) +BD GR Veto +PQ 0.435257 +SE +ET UN +ID 1804 +TI 1760667400.184060573 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 301.103 +SE +ET UN +ID 1805 +TI 1760667400.184114456 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 662.726 +SE +ET PH +ID 1806 +TI 1760667400.184235095 +CC NStripHits 2 +PE 205.664 +PP -2.28186 -0.405845 0.464078 +PW 0 +SE +ET PH +ID 1807 +TI 1760667400.184272527 +CC NStripHits 2 +PE 448.792 +PP 0.279078 -0.683248 -0.117953 +PW 0 +SE +ET CO +ID 1808 +TI 1760667400.184310436 +CC NStripHits 6 +PQ 0.403453 +SQ 2 +CT 0.503078 0.496922 +TL 1 +TE 163.184 +CE 157.736 1.0707 163.184 1.1133 +CD 3.07283 -1.02568 -1.0492 0.0336036 0.0204576 0.0336036 3.65486 -0.930613 -0.583578 0.0336036 0.019788 0.0336036 0 0 0 0 0 0 +LA 0.751399 +SE +ET PH +ID 1809 +TI 1760667400.184380769 +CC NStripHits 3 +PE 170.513 +PP 0.279078 -0.75131 -1.63123 +PW 0 +SE +ET PH +ID 1810 +TI 1760667400.184418201 +CC NStripHits 2 +PE 129.167 +PP -1.1178 0.143658 -3.49373 +PW 0 +SE +ID 1811 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 214.809921) +BD GR Veto +PQ 14.6212 +SE +ET PH +ID 1812 +TI 1760667400.184450864 +CC NStripHits 2 +PE 150.002 +PP 1.32673 -0.458599 -1.28202 +PW 0 +SE +ET PH +ID 1813 +TI 1760667400.184468507 +CC NStripHits 3 +PE 98.6252 +PP 1.32673 -0.791537 1.39533 +PW 0 +SE +ET PH +ID 1814 +TI 1760667400.184488773 +CC NStripHits 2 +PE 108.644 +PP -0.768578 0.235002 1.62814 +PW 0 +SE +ET PH +ID 1815 +TI 1760667400.184506893 +CC NStripHits 5 +PE 493.754 +PP 1.44314 -0.629934 -0.467172 +PW 0 +SE +ET PH +ID 1816 +TI 1760667400.184548616 +CC NStripHits 2 +PE 173.182 +PP 3.53845 0.325682 1.74455 +PW 0 +SE +ET PH +ID 1817 +TI 1760667400.184566259 +CC NStripHits 2 +PE 74.6932 +PP 1.44314 -0.678812 -2.44608 +PW 0 +SE +ET UN +ID 1818 +TI 1760667400.184585809 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 227.286 +SE +ET PH +ID 1819 +TI 1760667400.184611797 +CC NStripHits 2 +PE 101.735 +PP -2.28186 -0.325729 -4.42498 +PW 0 +SE +ET PH +ID 1820 +TI 1760667400.184629201 +CC NStripHits 3 +PE 356.872 +PP 0.744703 -0.0594772 -2.21327 +PW 0 +SE +ET PH +ID 1821 +TI 1760667400.184655427 +CC NStripHits 3 +PE 311.856 +PP -1.58342 -0.917736 0.464078 +PW 0 +SE +ET PH +ID 1822 +TI 1760667400.184675216 +CC NStripHits 2 +PE 50.9896 +PP -2.39827 -1.02515 -3.72655 +PW 0 +SE +ET PH +ID 1823 +TI 1760667400.184694051 +CC NStripHits 2 +PE 129.208 +PP 3.07283 0.0601503 0.347672 +PW 0 +SE +ET UN +ID 1824 +TI 1760667400.184711694 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 176.308 +SE +ET UN +ID 1825 +TI 1760667400.184743642 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 21.1895 +SE +ET CO +ID 1826 +TI 1760667400.184761285 +CC NStripHits 6 +PQ 6.45672 +SQ 2 +CT 0.68784 0.31216 +TL 1 +TE 410.219 +CE 252.59 1.2944 410.219 1.31579 +CD -0.768578 -0.644333 -3.49373 0.0336036 0.0213527 0.0336036 -0.302953 -0.0136878 -4.54139 0.0336036 0.0248926 0.0336036 0 0 0 0 0 0 +LA 1.30848 +SE +ID 1827 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.127933) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.441684) +BD GR Veto +PQ 1.08808 +SE +ET PH +ID 1828 +TI 1760667400.184827327 +CC NStripHits 6 +PE 411.713 +PP 0.279078 0.253896 0.580484 +PW 0 +SE +ET PH +ID 1829 +TI 1760667400.184854030 +CC NStripHits 3 +PE 366.238 +PP 0.861109 0.321366 -3.61014 +PW 0 +SE +ET CO +ID 1830 +TI 1760667400.184872865 +CC NStripHits 7 +PQ 0.707251 +SQ 3 +CT 0.00221569 0.356256 +TL 1 +TE 150.37 +CE 513.94 1.46803 150.37 0.908869 +CD -1.46702 0.154063 -3.26092 0.0336036 0.0272891 0.0336036 -1.1178 -0.470755 -2.7953 0.0336036 0.0219538 0.0336036 0 0 0 0 0 0 +LA 0.383643 +SE +ID 1831 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1832 +TI 1760667400.184928655 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 455.39 +SE +ID 1833 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.956677) (Strip hit removed with energy 6.274120) (Strip hit removed with energy 11.184319) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 46.858460)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 36.386199) (GR Hit: Detector ID 0 and Energy 35.844843) +BD GR Veto +PQ 24.863 +SE +ET UN +ID 1834 +TI 1760667400.185007572 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 1835 +TI 1760667400.185023307 +CC NStripHits 6 +PQ 4.48401 +SQ 2 +CT 0.74973 0.25027 +TL 1 +TE 437.007 +CE 226.383 0.932019 437.007 1.84034 +CD -2.04905 -0.157321 -0.117953 0.0336036 0.0237828 0.0336036 -1.93264 -0.664952 0.114859 0.0336036 0.0211883 0.0336036 0 0 0 0 0 0 +LA 0.570475 +SE +ET CO +ID 1836 +TI 1760667400.185052394 +CC NStripHits 5 +PQ 55.3078 +SQ 2 +CT 0 1 +TL 1 +TE 100.785 +CE 202.239 1.45122 100.785 1.04904 +CD 1.90877 -1.10193 -2.44608 0.0336036 0.0271685 0.0336036 0.511891 0.150072 -2.09686 0.0336036 0.0272011 0.0336036 0 0 0 0 0 0 +LA 1.90807 +SE +ET PH +ID 1837 +TI 1760667400.185087203 +CC NStripHits 2 +PE 261.876 +PP -1.93264 -0.374961 -3.26092 +PW 0 +SE +ET CO +ID 1838 +TI 1760667400.185104846 +CC NStripHits 6 +PQ 0.0273472 +SQ 2 +CT 0.707423 0.292577 +TL 1 +TE 419.021 +CE 241.979 1.12788 419.021 1.06531 +CD 2.25798 -0.228427 0.929703 0.0336036 0.0233468 0.0336036 2.72361 0.339483 -0.350766 0.0336036 0.0347253 0.0336036 0 0 0 0 0 0 +LA 1.47612 +SE +ET PH +ID 1839 +TI 1760667400.185143947 +CC NStripHits 2 +PE 326.776 +PP 1.21033 -0.906957 -1.28202 +PW 0 +SE +ET PH +ID 1840 +TI 1760667400.185162067 +CC NStripHits 2 +PE 78.7259 +PP -1.2342 0.0953019 -3.49373 +PW 0 +SE +ET PH +ID 1841 +TI 1760667400.185186862 +CC NStripHits 4 +PE 408.083 +PP 3.30564 0.192112 0.464078 +PW 0 +SE +ET PH +ID 1842 +TI 1760667400.185211658 +CC NStripHits 2 +PE 22.7303 +PP -1.46702 -0.0497128 -0.234359 +PW 0 +SE +ET PH +ID 1843 +TI 1760667400.185233116 +CC NStripHits 2 +PE 59.6035 +PP 1.55955 -0.915815 -2.9117 +PW 0 +SE +ID 1844 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 184.044121) +BD GR Veto +PQ 2.98876 +SE +ET PH +ID 1845 +TI 1760667400.185276985 +CC NStripHits 2 +PE 191.444 +PP 2.02517 -0.398324 1.86095 +PW 0 +SE +ET CO +ID 1846 +TI 1760667400.185294866 +CC NStripHits 8 +PQ 3.09992 +SQ 3 +CT 0.227844 0.404164 +TL 1 +TE 114.088 +CE 429.712 2.13338 114.088 0.940504 +CD 2.4908 -0.916811 -0.583578 0.0336036 0.0197799 0.0336036 1.55955 -0.643312 1.62814 0.0336036 0.0213594 0.0336036 0 0 0 0 0 0 +LA 1.00892 +SE +ET PH +ID 1847 +TI 1760667400.185346126 +CC NStripHits 3 +PE 665.365 +PP -0.186547 0.192843 -1.98045 +PW 0 +SE +ET CO +ID 1848 +TI 1760667400.185370922 +CC NStripHits 5 +PQ 12.5044 +SQ 2 +CT 0.724143 0.275857 +TL 1 +TE 448.969 +CE 194.871 1.35554 448.969 1.10055 +CD -1.69983 -0.531302 -3.84295 0.0336036 0.0216826 0.0336036 -0.302953 0.357269 -3.26092 0.0336036 0.0281344 0.0336036 0 0 0 0 0 0 +LA 1.75487 +SE +ID 1849 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 170.711647) +BD GR Veto +PQ 3.57558 +SE +ET PH +ID 1850 +TI 1760667400.185436725 +CC NStripHits 2 +PE 253.768 +PP 3.07283 -0.984233 1.86095 +PW 0 +SE +ET PH +ID 1851 +TI 1760667400.185475349 +CC NStripHits 3 +PE 391.208 +PP 0.977516 0.155961 2.32658 +PW 0 +SE +ID 1852 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 98.216002) +BD GR Veto +PQ 0.059031 +SE +ET PH +ID 1853 +TI 1760667400.185519695 +CC NStripHits 2 +PE 187.068 +PP -1.69983 0.072464 -0.816391 +PW 0 +SE +ET CO +ID 1854 +TI 1760667400.185570955 +CC NStripHits 9 +PQ 42.154 +SQ 2 +CT 0.569266 0.430734 +TL 1 +TE 408.346 +CE 181.199 1.79918 408.346 1.33515 +CD -1.46702 0.332524 -1.98045 0.0336036 0.0363834 0.0336036 -1.00139 -0.659577 -3.95936 0.0336036 0.0212296 0.0336036 0 0 0 0 0 0 +LA 2.26211 +SE +ET PH +ID 1855 +TI 1760667400.206568241 +CC NStripHits 2 +PE 153.269 +PP -1.00139 0.13282 -0.816391 +PW 0 +SE +ID 1856 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 146.199563) +BD GR Veto +PQ 9.41158 +SE +ID 1857 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 250.880367) +BD GR Veto +PQ 1.78409 +SE +ID 1858 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.753436) +QA StripPairing (Best reduced chi square is not below 25 (31.897778)) (GR Hit: Detector ID 0 and Energy 56.151635) +BD GR Veto +PQ 31.8978 +SE +ET UN +ID 1859 +TI 1760667400.206677913 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 661.721 +SE +ID 1860 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.634816) +BD GR Veto +PQ +SE +ET PH +ID 1861 +TI 1760667400.206724405 +CC NStripHits 2 +PE 61.2414 +PP 1.67595 -1.0937 -1.51483 +PW 0 +SE +ID 1862 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 161.328148) +BD GR Veto +PQ 12.0842 +SE +ET CO +ID 1863 +TI 1760667400.206756591 +CC NStripHits 8 +PQ 15.8032 +SQ 3 +CT 0.259137 0.362294 +TL 1 +TE 95.6805 +CE 510.556 1.67814 95.6805 1.30745 +CD -1.81623 -0.316232 -4.54139 0.0336036 0.0230985 0.0336036 1.09392 -0.368068 -3.49373 0.0336036 0.0226923 0.0336036 0 0 0 0 0 0 +LA 1.0268 +SE +ET PH +ID 1864 +TI 1760667400.206815719 +CC NStripHits 4 +PE 369.205 +PP -1.2342 0.193832 -2.9117 +PW 0 +SE +ET CO +ID 1865 +TI 1760667400.206860303 +CC NStripHits 4 +PQ 2.08652 +SQ 2 +CT 0 1 +TL 1 +TE 119.351 +CE 195.447 0.911314 119.351 0.948918 +CD 0.511891 -0.892532 1.74455 0.0336036 0.0198152 0.0336036 1.79236 -0.62185 2.09377 0.0336036 0.0214215 0.0336036 0 0 0 0 0 0 +LA 1.35456 +SE +ID 1866 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.203094) +BD GR Veto +PQ 0.0711043 +SE +ID 1867 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 235.799085) +BD GR Veto +PQ 0.145616 +SE +ET UN +ID 1868 +TI 1760667400.206923484 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 407.498 +SE +ET PH +ID 1869 +TI 1760667400.206951618 +CC NStripHits 4 +PE 274.996 +PP 1.44314 0.15503 1.62814 +PW 0 +SE +ET CO +ID 1870 +TI 1760667400.206975221 +CC NStripHits 6 +PQ 5.84879 +SQ 3 +CT 0.0350696 0.0554728 +TL 1 +TE 174.512 +CE 270.093 1.59512 174.512 0.957484 +CD 3.42205 -0.189871 0.231266 0.0336036 0.0235565 0.0336036 3.18923 -1.15453 1.04611 0.0336036 0.0263757 0.0336036 0 0 0 0 0 0 +LA 1.28403 +SE +ET PH +ID 1871 +TI 1760667400.207027196 +CC NStripHits 2 +PE 91.6663 +PP 2.84002 0.189522 -4.30858 +PW 0 +SE +ET UN +ID 1872 +TI 1760667400.207051992 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 208.057 +SE +ET PH +ID 1873 +TI 1760667400.207087755 +CC NStripHits 3 +PE 181.03 +PP 4.00408 -1.02451 -1.63123 +PW 0 +SE +ET UN +ID 1874 +TI 1760667400.207107305 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 1875 +TI 1760667400.207123756 +CC NStripHits 3 +PE 121.88 +PP -1.35061 -0.742757 -2.9117 +PW 0 +SE +ET PH +ID 1876 +TI 1760667400.207162618 +CC NStripHits 3 +PE 143.217 +PP -0.884984 0.368441 -1.74764 +PW 0 +SE +ET UN +ID 1877 +TI 1760667400.207182884 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 164.395 +SE +ET PH +ID 1878 +TI 1760667400.207208633 +CC NStripHits 2 +PE 31.2878 +PP 0.977516 -0.820252 -1.98045 +PW 0 +SE +ET PH +ID 1879 +TI 1760667400.207226276 +CC NStripHits 4 +PE 661.138 +PP -1.58342 -0.396771 -1.86405 +PW 0 +SE +ID 1880 +BD StripPairingError (More than maximum number of strip hits allowed on one side (21)) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.233721) (Strip hit removed with energy 18.976474) (Strip hit removed with energy 19.234818) (Strip hit removed with energy 19.704374) (Strip hit removed with energy 18.685952) (Strip hit removed with energy 9.259302) (Strip hit removed with energy 10.131297) (Strip hit removed with energy 10.035446) (Strip hit removed with energy 12.924219) (Strip hit removed with energy 14.244382) (Strip hit removed with energy 8.304193) (Strip hit removed with energy 9.575914) +BD GR Veto +PQ +SE +ID 1881 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 37.162026) +BD GR Veto +PQ 6.12831 +SE +ET UN +ID 1882 +TI 1760667400.207432746 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 42.6763 +SE +ID 1883 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 109.070091) +BD GR Veto +PQ 1.44891 +SE +ET PH +ID 1884 +TI 1760667400.207458734 +CC NStripHits 3 +PE 305.75 +PP -1.00139 -0.158853 2.21017 +PW 0 +SE +ET PH +ID 1885 +TI 1760667400.207479476 +CC NStripHits 2 +PE 318.668 +PP 2.02517 -0.93871 2.55939 +PW 0 +SE +ET PH +ID 1886 +TI 1760667400.207502603 +CC NStripHits 4 +PE 198.701 +PP -1.2342 -0.859641 -4.30858 +PW 0 +SE +ET CO +ID 1887 +TI 1760667400.207530260 +CC NStripHits 6 +PQ 0.0979103 +SQ 2 +CT 0.566408 0.433592 +TL 1 +TE 357.006 +CE 303.568 1.09994 357.006 0.999746 +CD 2.84002 0.355306 1.62814 0.0336036 0.0290397 0.0336036 3.65486 0.293684 1.39533 0.0336036 0.0382355 0.0336036 0 0 0 0 0 0 +LA 0.849683 +SE +ID 1888 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 466.085601) +BD GR Veto +PQ 14.2307 +SE +ET PH +ID 1889 +TI 1760667400.207588434 +CC NStripHits 2 +PE 70.273 +PP 2.25798 -0.0846652 1.27892 +PW 0 +SE +ET UN +ID 1890 +TI 1760667400.207608461 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 208.555 +SE +ET UN +ID 1891 +TI 1760667400.207640886 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 659.277 +SE +ID 1892 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.586351) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 116.285558) (GR Hit: Detector ID 0 and Energy 33.690735) +BD GR Veto +PQ 13.9009 +SE +ET CO +ID 1893 +TI 1760667400.207708120 +CC NStripHits 5 +PQ 7.57051 +SQ 2 +CT 0.51443 0.48557 +TL 1 +TE 172.98 +CE 152.77 1.10397 172.98 1.37593 +CD 2.95642 -0.618008 -0.117953 0.0336036 0.0214225 0.0336036 3.30564 -0.704938 -0.234359 0.0336036 0.0209051 0.0336036 0 0 0 0 0 0 +LA 0.378235 +SE +ET CO +ID 1894 +TI 1760667400.207740783 +CC NStripHits 7 +PQ 21.1383 +SQ 3 +CT 0.0418595 0.0544351 +TL 1 +TE 143.052 +CE 372 1.77873 143.052 0.901792 +CD 2.4908 -0.0724596 2.44298 0.0336036 0.0245264 0.0336036 2.14158 0.357949 0.231266 0.0336036 0.0278101 0.0336036 0 0 0 0 0 0 +LA 1.014 +SE +ET PH +ID 1895 +TI 1760667400.207799434 +CC NStripHits 4 +PE 183.238 +PP 0.395484 -1.11288 -3.14452 +PW 0 +SE +ET PH +ID 1896 +TI 1760667400.207822322 +CC NStripHits 2 +PE 180.896 +PP -0.535766 -0.915485 1.74455 +PW 0 +SE +ET CO +ID 1897 +TI 1760667400.207840204 +CC NStripHits 5 +PQ 25.4413 +SQ 2 +CT 0.704589 0.295411 +TL 1 +TE 414.175 +CE 245.871 1.78602 414.175 0.969199 +CD 2.95642 -0.475388 -1.63123 0.0336036 0.0219352 0.0336036 2.14158 -0.566636 -2.09686 0.0336036 0.0216164 0.0336036 0 0 0 0 0 0 +LA 0.942922 +SE +ET CO +ID 1898 +TI 1760667400.207881450 +CC NStripHits 10 +PQ 27.4861 +SQ 4 +CT 0.217358 0.298733 +TL 1 +TE 369.031 +CE 293.61 2.13083 369.031 1.79225 +CD -1.35061 0.350287 0.347672 0.0336036 0.0311487 0.0336036 -1.1178 0.175761 -0.583578 0.0336036 0.0278219 0.0336036 0 0 0 0 0 0 +LA 0.70933 +SE +ET PH +ID 1899 +TI 1760667400.207953214 +CC NStripHits 2 +PE 139.82 +PP -2.28186 -0.00740156 0.929703 +PW 0 +SE +ET PH +ID 1900 +TI 1760667400.207973957 +CC NStripHits 2 +PE 115.656 +PP 3.18923 0.231656 1.51173 +PW 0 +SE +ID 1901 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.810825) +QA StripPairing (Best reduced chi square is not below 25 (27.647545)) (GR Hit: Detector ID 0 and Energy 59.025507) +BD GR Veto +PQ 27.6475 +SE +ET PH +ID 1902 +TI 1760667400.208007097 +CC NStripHits 2 +PE 402.37 +PP 2.25798 0.373663 -0.583578 +PW 0 +SE +ET UN +ID 1903 +TI 1760667400.208029985 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 170.186 +SE +ET PH +ID 1904 +TI 1760667400.208055019 +CC NStripHits 2 +PE 189.985 +PP -2.39827 0.107608 -3.14452 +PW 0 +SE +ET PH +ID 1905 +TI 1760667400.208073139 +CC NStripHits 2 +PE 459.649 +PP 1.79236 -0.632228 0.696891 +PW 0 +SE +ET CO +ID 1906 +TI 1760667400.208121776 +CC NStripHits 8 +PQ 33.8516 +SQ 4 +CT 0.089188 0.275175 +TL 1 +TE 111.156 +CE 560.793 2.27758 111.156 1.27205 +CD -1.00139 -0.695701 -4.07577 0.0336036 0.0210218 0.0336036 -1.69983 -0.490813 -3.49373 0.0336036 0.0218573 0.0336036 0 0 0 0 0 0 +LA 0.342706 +SE +ID 1907 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.525347) +QA StripPairing (Best reduced chi square is not below 25 (49.502117)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 149.129163)) (GR Hit: Detector ID 0 and Energy 95.049734) +BD GR Veto +PQ 49.5021 +SE +ET PH +ID 1908 +TI 1760667400.208223581 +CC NStripHits 3 +PE 108.787 +PP 1.32673 -0.0787954 1.51173 +PW 0 +SE +ET UN +ID 1909 +TI 1760667400.208242654 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 518.361 +SE +ET UN +ID 1910 +TI 1760667400.208280563 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 101.673 +SE +ET PH +ID 1911 +TI 1760667400.208312273 +CC NStripHits 3 +PE 663.069 +PP 0.977516 0.248731 -0.699984 +PW 0 +SE +ET PH +ID 1912 +TI 1760667400.208338499 +CC NStripHits 2 +PE 94.1047 +PP -0.884984 -0.768635 -3.84295 +PW 0 +SE +ET PH +ID 1913 +TI 1760667400.208364248 +CC NStripHits 2 +PE 258.055 +PP -1.35061 -0.0121312 -2.67889 +PW 0 +SE +ET PH +ID 1914 +TI 1760667400.208383321 +CC NStripHits 3 +PE 161.984 +PP 3.30564 -0.758246 -3.26092 +PW 0 +SE +ET UN +ID 1915 +TI 1760667400.208406686 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 1916 +TI 1760667400.208425283 +CC NStripHits 2 +PE 136.517 +PP -1.46702 0.347653 1.39533 +PW 0 +SE +ID 1917 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.673084) (Strip hit removed with energy 7.473184) +QA StripPairing (GR Hit: Detector ID 0 and Energy 180.931817) +BD GR Veto +PQ 17.2676 +SE +ET PH +ID 1918 +TI 1760667400.208481073 +CC NStripHits 2 +PE 28.4711 +PP -1.81623 0.0666221 -4.07577 +PW 0 +SE +ET CO +ID 1919 +TI 1760667400.226434469 +CC NStripHits 6 +PQ 84.0943 +SQ 2 +CT 0 1 +TL 1 +TE 95.5381 +CE 228.888 2.27901 95.5381 1.29259 +CD -0.186547 -0.100674 1.86095 0.0336036 0.024258 0.0336036 0.162672 -0.646169 -0.00154687 0.0336036 0.0213398 0.0336036 0 0 0 0 0 0 +LA 1.97191 +SE +ET PH +ID 1920 +TI 1760667400.226508378 +CC NStripHits 3 +PE 102.215 +PP 1.90877 -0.368756 -3.02811 +PW 0 +SE +ET PH +ID 1921 +TI 1760667400.226530551 +CC NStripHits 3 +PE 254.944 +PP 2.02517 -1.11109 0.114859 +PW 0 +SE +ET UN +ID 1922 +TI 1760667400.226551055 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 1923 +TI 1760667400.226569175 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 157.893 +SE +ET PH +ID 1924 +TI 1760667400.226594924 +CC NStripHits 3 +PE 242.851 +PP 0.861109 0.328896 -0.350766 +PW 0 +SE +ET PH +ID 1925 +TI 1760667400.226615667 +CC NStripHits 2 +PE 96.5313 +PP 0.162672 -0.26834 -2.32967 +PW 0 +SE +ET PH +ID 1926 +TI 1760667400.226635932 +CC NStripHits 3 +PE 84.656 +PP 2.02517 -1.06055 -3.37733 +PW 0 +SE +ET UN +ID 1927 +TI 1760667400.226656436 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 49.4242 +SE +ID 1928 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.414622) (Strip hit removed with energy 10.934869) +QA StripPairing (Best reduced chi square is not below 25 (557.940389)) (GR Hit: Detector ID 0 and Energy 1096.881946) +BD GR Veto +PQ 557.94 +SE +ET UN +ID 1929 +TI 1760667400.226692676 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.479 +SE +ET CO +ID 1930 +TI 1760667400.226710081 +CC NStripHits 9 +PQ 2.34891 +SQ 3 +CT 0.0537457 1.23019 +TL 1 +TE 301.423 +CE 213.625 1.41547 301.423 1.99285 +CD 2.37439 -0.895051 -0.00154687 0.0336036 0.0198082 0.0336036 2.72361 -0.235677 -1.0492 0.0336036 0.0233386 0.0336036 0 0 0 0 0 0 +LA 1.2862 +SE +ET PH +ID 1931 +TI 1760667400.226763486 +CC NStripHits 2 +PE 273.556 +PP 4.3533 0.173706 -1.0492 +PW 0 +SE +ET PH +ID 1932 +TI 1760667400.226779699 +CC NStripHits 2 +PE 144.781 +PP 0.279078 -0.600649 1.97736 +PW 0 +SE +ET PH +ID 1933 +TI 1760667400.226799726 +CC NStripHits 2 +PE 198.978 +PP -1.1178 -0.945896 -1.28202 +PW 0 +SE +ET UN +ID 1934 +TI 1760667400.226817369 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 660.582 +SE +ET PH +ID 1935 +TI 1760667400.226854324 +CC NStripHits 3 +PE 65.3855 +PP -1.93264 0.0229288 -1.16561 +PW 0 +SE +ET PH +ID 1936 +TI 1760667400.226874589 +CC NStripHits 2 +PE 207.228 +PP 3.77127 -1.0801 -0.117953 +PW 0 +SE +ET CO +ID 1937 +TI 1760667400.226891756 +CC NStripHits 5 +PQ 31.6767 +SQ 2 +CT 0 1 +TL 1 +TE 52.5107 +CE 233.803 1.05474 52.5107 1.27846 +CD -0.535766 -0.977849 1.16252 0.0336036 0.0199702 0.0336036 -0.186547 -0.743054 1.74455 0.0336036 0.0205605 0.0336036 0 0 0 0 0 0 +LA 0.718221 +SE +ET PH +ID 1938 +TI 1760667400.226932764 +CC NStripHits 2 +PE 57.5195 +PP -1.58342 -0.723422 -3.49373 +PW 0 +SE +ET UN +ID 1939 +TI 1760667400.226950407 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.9356 +SE +ET PH +ID 1940 +TI 1760667400.226968050 +CC NStripHits 6 +PE 670.627 +PP 1.09392 -0.461879 -3.26092 +PW 0 +SE +ET PH +ID 1941 +TI 1760667400.226995229 +CC NStripHits 2 +PE 49.9061 +PP 2.6072 -0.668825 1.27892 +PW 0 +SE +ET PH +ID 1942 +TI 1760667400.227016448 +CC NStripHits 3 +PE 660.89 +PP 2.95642 -0.0618211 -1.98045 +PW 0 +SE +ET CO +ID 1943 +TI 1760667400.227047681 +CC NStripHits 4 +PQ 0.0405442 +SQ 2 +CT 0 1 +TL 1 +TE 84.3264 +CE 167.777 0.923202 84.3264 0.897683 +CD 4.23689 -0.133432 -2.44608 0.0336036 0.0240199 0.0336036 3.07283 -0.145289 -2.9117 0.0336036 0.0238967 0.0336036 0 0 0 0 0 0 +LA 1.25379 +SE +ID 1944 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 1945 +TI 1760667400.227084636 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 1946 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 134.601974) +BD GR Veto +PQ 14.0008 +SE +ID 1947 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.039399) +QA StripPairing (Best reduced chi square is not below 25 (31.290986)) (GR Hit: Detector ID 0 and Energy 135.595154) +BD GR Veto +PQ 31.291 +SE +ET PH +ID 1948 +TI 1760667400.227127075 +CC NStripHits 2 +PE 310.991 +PP -0.419359 0.0863406 1.74455 +PW 0 +SE +ET UN +ID 1949 +TI 1760667400.227154731 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 9 +PE 977.531 +SE +ET PH +ID 1950 +TI 1760667400.227203607 +CC NStripHits 2 +PE 147.321 +PP 2.25798 -0.838772 -3.49373 +PW 0 +SE +ID 1951 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.647175) +QA StripPairing (Best reduced chi square is not below 25 (77.403757)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 423.803151) +BD GR Veto +PQ 77.4038 +SE +ET PH +ID 1952 +TI 1760667400.227253675 +CC NStripHits 4 +PE 317.466 +PP -2.9803 0.357674 0.929703 +PW 0 +SE +ID 1953 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 102.043129) +BD GR Veto +PQ 4.90867 +SE +ET PH +ID 1954 +TI 1760667400.227282524 +CC NStripHits 2 +PE 127.447 +PP -1.2342 -0.121088 0.696891 +PW 0 +SE +ET PH +ID 1955 +TI 1760667400.227309226 +CC NStripHits 2 +PE 56.8189 +PP 4.23689 -0.257446 -2.44608 +PW 0 +SE +ET PH +ID 1956 +TI 1760667400.227328300 +CC NStripHits 2 +PE 144.155 +PP 1.09392 -0.066313 -0.583578 +PW 0 +SE +ID 1957 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 256.117224) (GR Hit: Detector ID 0 and Energy 175.392170) +BD GR Veto +PQ 0.0196076 +SE +ET PH +ID 1958 +TI 1760667400.227359771 +CC NStripHits 2 +PE 150.708 +PP 1.79236 -0.713121 1.16252 +PW 0 +SE +ID 1959 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.544175) (Strip hit removed with energy 11.410828) +BD GR Veto +PQ 0.238103 +SE +ET CO +ID 1960 +TI 1760667400.227405071 +CC NStripHits 7 +PQ 92.2772 +SQ 2 +CT 0.668742 0.331258 +TL 1 +TE 329.962 +CE 177.754 1.97021 329.962 1.98235 +CD 0.977516 -0.90562 -1.28202 0.0336036 0.0197857 0.0336036 0.744703 -0.629468 -1.16561 0.0336036 0.021415 0.0336036 0 0 0 0 0 0 +LA 0.379491 +SE +ET PH +ID 1961 +TI 1760667400.227441310 +CC NStripHits 2 +PE 63.3955 +PP 2.14158 -0.719441 -4.6578 +PW 0 +SE +ET PH +ID 1962 +TI 1760667400.227457523 +CC NStripHits 2 +PE 161.95 +PP 2.95642 -0.527856 -0.816391 +PW 0 +SE +ET CO +ID 1963 +TI 1760667400.227474689 +CC NStripHits 6 +PQ 0.578489 +SQ 2 +CT 0.591402 0.408598 +TL 1 +TE 370.803 +CE 288.801 1.13527 370.803 1.10842 +CD 2.25798 -0.516934 0.929703 0.0336036 0.0217272 0.0336036 3.77127 -0.497991 -1.63123 0.0336036 0.0218141 0.0336036 0 0 0 0 0 0 +LA 2.97469 +SE +ID 1964 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 226.523271) +BD GR Veto +PQ 1.88728 +SE +ID 1965 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 165.129083) +BD GR Veto +PQ 19.9449 +SE +ET PH +ID 1966 +TI 1760667400.227545738 +CC NStripHits 2 +PE 23.0973 +PP -2.86389 -0.953948 -1.86405 +PW 0 +SE +ET PH +ID 1967 +TI 1760667400.227563381 +CC NStripHits 2 +PE 57.4138 +PP 2.72361 0.296238 2.55939 +PW 0 +SE +ID 1968 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 1969 +TI 1760667400.227627754 +CC NStripHits 9 +PQ 1.39738 +SQ 4 +CT 0.00963019 0.122916 +TL 1 +TE 123.247 +CE 537.724 1.66978 123.247 0.956838 +CD 0.977516 0.367358 -0.816391 0.0336036 0.0227653 0.0336036 0.744703 -0.263293 -1.0492 0.0336036 0.023318 0.0336036 0 0 0 0 0 0 +LA 0.711423 +SE +ET PH +ID 1970 +TI 1760667400.227704524 +CC NStripHits 2 +PE 470.006 +PP 2.4908 0.179764 -0.234359 +PW 0 +SE +ET PH +ID 1971 +TI 1760667400.227742671 +CC NStripHits 2 +PE 188.386 +PP -0.535766 0.288326 -1.28202 +PW 0 +SE +ET CO +ID 1972 +TI 1760667400.227760553 +CC NStripHits 4 +PQ 1.48172 +SQ 2 +CT 0.519789 0.480211 +TL 1 +TE 338.213 +CE 321.673 0.981079 338.213 0.931487 +CD -1.00139 -0.721531 0.929703 0.0336036 0.0206881 0.0336036 0.628297 -1.13492 1.27892 0.0336036 0.0297773 0.0336036 0 0 0 0 0 0 +LA 1.71718 +SE +ET UN +ID 1973 +TI 1760667400.227795600 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 488.757 +SE +ET CO +ID 1974 +TI 1760667400.227838039 +CC NStripHits 5 +PQ 20.8236 +SQ 2 +CT 0 1 +TL 1 +TE 42.1357 +CE 86.7076 1.28632 42.1357 0.941492 +CD 3.77127 -1.0107 -1.63123 0.0336036 0.0202277 0.0336036 2.6072 -0.281602 -3.49373 0.0336036 0.0232187 0.0336036 0 0 0 0 0 0 +LA 2.31421 +SE +ET PH +ID 1975 +TI 1760667400.227879285 +CC NStripHits 2 +PE 134.593 +PP 0.977516 -0.57203 -0.00154687 +PW 0 +SE +ET CO +ID 1976 +TI 1760667400.227896928 +CC NStripHits 6 +PQ 1.957 +SQ 3 +CT 0.0110181 0.0480189 +TL 1 +TE 103.951 +CE 449.756 1.34846 103.951 0.942427 +CD -0.186547 0.292594 -0.467172 0.0336036 0.0381466 0.0336036 -0.535766 -0.822823 -1.39842 0.0336036 0.0200621 0.0336036 0 0 0 0 0 0 +LA 0.342934 +SE +ID 1977 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 364.073911) +BD GR Veto +PQ 1.3312 +SE +ID 1978 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.033197) (Strip hit removed with energy 12.166206) (Strip hit removed with energy 11.143212) +QA StripPairing (Best reduced chi square is not below 25 (34.498841)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 165.816490)) +BD GR Veto +PQ 34.4988 +SE +ET PH +ID 1979 +TI 1760667400.228005170 +CC NStripHits 3 +PE 314.974 +PP -2.28186 0.0304178 -1.63123 +PW 0 +SE +ET PH +ID 1980 +TI 1760667400.228027105 +CC NStripHits 3 +PE 125.863 +PP 1.32673 -0.545588 1.04611 +PW 0 +SE +ID 1981 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 425.884869) +BD GR Veto +PQ 10.9697 +SE +ET CO +ID 1982 +TI 1760667400.228056430 +CC NStripHits 5 +PQ 31.6989 +SQ 2 +CT 0 1 +TL 1 +TE 124.433 +CE 272.189 1.73518 124.433 0.933655 +CD -2.63108 -0.305139 -0.583578 0.0336036 0.0231524 0.0336036 -2.9803 -0.688887 -0.350766 0.0336036 0.0210754 0.0336036 0 0 0 0 0 0 +LA 0.568699 +SE +ET UN +ID 1983 +TI 1760667400.252861499 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 161.223 +SE +ET CO +ID 1984 +TI 1760667400.252962112 +CC NStripHits 8 +PQ 0.245909 +SQ 2 +CT 0 1 +TL 1 +TE 36.9823 +CE 508.767 1.63589 36.9823 0.90582 +CD -0.884984 -0.19511 -0.816391 0.0336036 0.0235214 0.0336036 -1.1178 -1.04365 -1.16561 0.0336036 0.0209691 0.0336036 0 0 0 0 0 0 +LA 0.946666 +SE +ET CO +ID 1985 +TI 1760667400.253055572 +CC NStripHits 4 +PQ 2.92189 +SQ 2 +CT 0 1 +TL 1 +TE 46.7305 +CE 102.126 1.33123 46.7305 0.944071 +CD -2.86389 -0.837184 0.231266 0.0336036 0.0200184 0.0336036 -2.74748 -0.785949 0.114859 0.0336036 0.0202345 0.0336036 0 0 0 0 0 0 +LA 0.172415 +SE +ET PH +ID 1986 +TI 1760667400.253100872 +CC NStripHits 4 +PE 126.172 +PP 3.88767 -0.754046 -2.09686 +PW 0 +SE +ET PH +ID 1987 +TI 1760667400.253149509 +CC NStripHits 2 +PE 171.229 +PP 3.77127 -1.14736 -2.44608 +PW 0 +SE +ET UN +ID 1988 +TI 1760667400.253204584 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 69.4553 +SE +ET PH +ID 1989 +TI 1760667400.253262519 +CC NStripHits 3 +PE 221.851 +PP 1.79236 -0.829108 -2.7953 +PW 0 +SE +ET CO +ID 1990 +TI 1760667400.253306388 +CC NStripHits 5 +PQ 17.0847 +SQ 2 +CT 0.644193 0.355807 +TL 1 +TE 264.979 +CE 186.29 1.27438 264.979 1.05666 +CD 3.42205 -0.686861 -1.51483 0.0336036 0.0210864 0.0336036 3.65486 -0.275792 -1.39842 0.0336036 0.02325 0.0336036 0 0 0 0 0 0 +LA 0.486549 +SE +ID 1991 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.085853) +BD GR Veto +PQ 0.0601209 +SE +ET PH +ID 1992 +TI 1760667400.253379344 +CC NStripHits 2 +PE 183.67 +PP 1.21033 -0.0836618 0.347672 +PW 0 +SE +ET PH +ID 1993 +TI 1760667400.253419160 +CC NStripHits 2 +PE 70.7518 +PP 0.0462656 -0.857536 -3.61014 +PW 0 +SE +ET UN +ID 1994 +TI 1760667400.253453731 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.6804 +SE +ID 1995 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 50.928761) (GR Hit: Detector ID 0 and Energy 185.755675) +BD GR Veto +PQ 1.95472 +SE +ET PH +ID 1996 +TI 1760667400.253522634 +CC NStripHits 5 +PE 290.788 +PP -1.2342 0.0882404 -0.350766 +PW 0 +SE +ET UN +ID 1997 +TI 1760667400.253597974 +BD DepthCalibrationError (Out of Range) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 9 +PE 660.57 +SE +ET PH +ID 1998 +TI 1760667400.253703832 +CC NStripHits 3 +PE 658.681 +PP -2.86389 -0.743577 -1.16561 +PW 0 +SE +ET UN +ID 1999 +TI 1760667400.253741979 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 306.762 +SE +ET PH +ID 2000 +TI 1760667400.253793954 +CC NStripHits 2 +PE 123.857 +PP 2.02517 0.141774 -3.95936 +PW 0 +SE +ID 2001 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.079358) +BD GR Veto +PQ 7.90808 +SE +ET PH +ID 2002 +TI 1760667400.253847599 +CC NStripHits 2 +PE 119.345 +PP 1.79236 -0.757171 1.86095 +PW 0 +SE +ID 2003 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.258579) +BD GR Veto +PQ +SE +ET CO +ID 2004 +TI 1760667400.253901004 +CC NStripHits 7 +PQ 0.0463971 +SQ 2 +CT 0 1 +TL 1 +TE 129.327 +CE 535.959 1.49567 129.327 0.926403 +CD 1.44314 -0.0118659 -3.84295 0.0336036 0.0249044 0.0336036 1.55955 0.0561297 -3.95936 0.0336036 0.0255584 0.0336036 0 0 0 0 0 0 +LA 0.178118 +SE +ID 2005 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.689897) (Strip hit removed with energy 14.094970) +BD GR Veto +PQ +SE +ET PH +ID 2006 +TI 1760667400.253988981 +CC NStripHits 4 +PE 358.864 +PP -0.884984 -0.41595 0.114859 +PW 0 +SE +ID 2007 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (824.995556)) (GR Hit: Detector ID 0 and Energy 211.146632) +BD GR Veto +PQ 824.996 +SE +ET PH +ID 2008 +TI 1760667400.254084348 +CC NStripHits 2 +PE 38.2909 +PP 3.07283 -1.09209 -0.583578 +PW 0 +SE +ET PH +ID 2009 +TI 1760667400.254132270 +CC NStripHits 3 +PE 107.294 +PP -0.302953 -0.809539 1.97736 +PW 0 +SE +ET PH +ID 2010 +TI 1760667400.254176139 +CC NStripHits 2 +PE 269.734 +PP 2.72361 -0.841649 1.39533 +PW 0 +SE +ET UN +ID 2011 +TI 1760667400.254198789 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2012 +TI 1760667400.254210472 +CC NStripHits 3 +PE 474.234 +PP -2.9803 -0.656532 -0.583578 +PW 0 +SE +ID 2013 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.461674) +BD GR Veto +PQ 3.81237 +SE +ET PH +ID 2014 +TI 1760667400.254243373 +CC NStripHits 3 +PE 77.4865 +PP -1.81623 -0.235408 -0.932797 +PW 0 +SE +ID 2015 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.085239) +QA StripPairing (Best reduced chi square is not below 25 (29.337924)) (GR Hit: Detector ID 0 and Energy 136.446322) +BD GR Veto +PQ 29.3379 +SE +ET PH +ID 2016 +TI 1760667400.254285335 +CC NStripHits 3 +PE 246.944 +PP 3.07283 -0.0538957 1.51173 +PW 0 +SE +ET PH +ID 2017 +TI 1760667400.254307985 +CC NStripHits 2 +PE 147.097 +PP 4.23689 -0.176536 1.16252 +PW 0 +SE +ID 2018 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.228342) (Strip hit removed with energy 7.841249) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.483298) +BD GR Veto +PQ 15.2552 +SE +ET CO +ID 2019 +TI 1760667400.254388332 +CC NStripHits 4 +PQ 0.0526555 +SQ 2 +CT 0.541021 0.458979 +TL 1 +TE 141.638 +CE 147.95 0.931496 141.638 0.939309 +CD -1.00139 -0.20579 -0.816391 0.0336036 0.0234508 0.0336036 -2.28186 -0.631153 -1.39842 0.0336036 0.0214118 0.0336036 0 0 0 0 0 0 +LA 1.46945 +SE +ET CO +ID 2020 +TI 1760667400.254424095 +CC NStripHits 4 +PQ 1.79884 +SQ 2 +CT 0 1 +TL 1 +TE 106.224 +CE 165.786 0.946058 106.224 0.932209 +CD 2.14158 -0.00844035 -2.21327 0.0336036 0.0249289 0.0336036 1.32673 -0.0865195 -0.932797 0.0336036 0.0243784 0.0336036 0 0 0 0 0 0 +LA 1.51977 +SE +ID 2021 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 325.690394) +BD GR Veto +PQ 0.0124187 +SE +ET PH +ID 2022 +TI 1760667400.254473447 +CC NStripHits 2 +PE 117.785 +PP -1.69983 -0.12055 -4.6578 +PW 0 +SE +ID 2023 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 395.792896) +BD GR Veto +PQ 7.09397 +SE +ET UN +ID 2024 +TI 1760667400.254498481 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 95.7088 +SE +ET PH +ID 2025 +TI 1760667400.254518985 +CC NStripHits 2 +PE 350.529 +PP -0.302953 0.36961 -3.72655 +PW 0 +SE +ET PH +ID 2026 +TI 1760667400.254539489 +CC NStripHits 3 +PE 476.016 +PP -2.28186 0.313233 -4.07577 +PW 0 +SE +ET UN +ID 2027 +TI 1760667400.254572868 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2028 +TI 1760667400.254591464 +CC NStripHits 2 +PE 108.053 +PP -1.69983 0.374414 -1.16561 +PW 0 +SE +ET PH +ID 2029 +TI 1760667400.254620790 +CC NStripHits 2 +PE 378.014 +PP -0.652172 -0.985569 -1.39842 +PW 0 +SE +ET PH +ID 2030 +TI 1760667400.254643917 +CC NStripHits 2 +PE 50.3721 +PP -2.74748 -0.0488004 1.16252 +PW 0 +SE +ID 2031 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.623665) (Strip hit removed with energy 7.237942) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 83.244333) (GR Hit: Detector ID 0 and Energy 164.225071) +BD GR Veto +PQ 1.14995 +SE +ID 2032 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 180.762553) +BD GR Veto +PQ 7.50533 +SE +ID 2033 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (9400.224768)) (GR Hit: Detector ID 0 and Energy 393.849235) +BD GR Veto +PQ 9400.22 +SE +ID 2034 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.854279) +QA StripPairing (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 148.397360) +BD GR Veto +PQ 13.067 +SE +ET UN +ID 2035 +TI 1760667400.254762649 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 489.665 +SE +ID 2036 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.640680) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 100.332516) (GR Hit: Detector ID 0 and Energy 379.350385) +BD GR Veto +PQ 3.25118 +SE +ET PH +ID 2037 +TI 1760667400.254840612 +CC NStripHits 2 +PE 246.85 +PP 2.6072 0.0242073 -3.26092 +PW 0 +SE +ET PH +ID 2038 +TI 1760667400.254860639 +CC NStripHits 2 +PE 133.597 +PP -2.39827 -0.837253 2.09377 +PW 0 +SE +ET PH +ID 2039 +TI 1760667400.254882097 +CC NStripHits 2 +PE 55.8142 +PP 1.44314 -1.01744 -4.42498 +PW 0 +SE +ET PH +ID 2040 +TI 1760667400.254903078 +CC NStripHits 2 +PE 52.6611 +PP 2.4908 -0.431185 -3.84295 +PW 0 +SE +ET CO +ID 2041 +TI 1760667400.254923582 +CC NStripHits 7 +PQ 1.79846 +SQ 3 +CT 0.0206565 0.0712482 +TL 1 +TE 80.5817 +CE 371.086 1.43317 80.5817 0.884276 +CD 2.25798 -0.450116 -4.42498 0.0336036 0.0220709 0.0336036 3.53845 0.0253358 -3.61014 0.0336036 0.0253101 0.0336036 0 0 0 0 0 0 +LA 1.10167 +SE +ET PH +ID 2042 +TI 1760667400.254978418 +CC NStripHits 2 +PE 384.756 +PP -1.58342 0.225638 -2.09686 +PW 0 +SE +ID 2043 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 97.121956) +BD GR Veto +PQ 0.820794 +SE +ET CO +ID 2044 +TI 1760667400.255044460 +CC NStripHits 4 +PQ 0.550781 +SQ 2 +CT 0 1 +TL 1 +TE 98.6173 +CE 149.666 0.94554 98.6173 0.937194 +CD 3.65486 -0.00142708 -2.44608 0.0336036 0.0249914 0.0336036 4.12048 -0.023642 -3.49373 0.0336036 0.0248362 0.0336036 0 0 0 0 0 0 +LA 1.14668 +SE +ET CO +ID 2045 +TI 1760667400.255094289 +CC NStripHits 6 +PQ 0.181762 +SQ 2 +CT 0 1 +TL 1 +TE 155.111 +CE 281.416 1.0636 155.111 0.933907 +CD -1.2342 -0.860529 1.97736 0.0336036 0.0199433 0.0336036 -1.1178 -0.893455 -2.7953 0.0336036 0.0198126 0.0336036 0 0 0 0 0 0 +LA 4.77419 +SE +ET PH +ID 2046 +TI 1760667400.255142688 +CC NStripHits 2 +PE 113.785 +PP 3.07283 -0.634264 -2.7953 +PW 0 +SE +ET PH +ID 2047 +TI 1760667400.276418447 +CC NStripHits 4 +PE 489.521 +PP 1.55955 0.0302821 -1.16561 +PW 0 +SE +ET PH +ID 2048 +TI 1760667400.276478767 +CC NStripHits 4 +PE 330.306 +PP 2.02517 -0.501156 -2.09686 +PW 0 +SE +ET PH +ID 2049 +TI 1760667400.276502132 +CC NStripHits 2 +PE 95.5792 +PP -1.46702 0.360418 2.6758 +PW 0 +SE +ET UN +ID 2050 +TI 1760667400.276518583 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 182.849 +SE +ET CO +ID 2051 +TI 1760667400.276556730 +CC NStripHits 4 +PQ 24.3232 +SQ 2 +CT 0 1 +TL 1 +TE 58.8661 +CE 146.443 0.916449 58.8661 1.24918 +CD -0.652172 -0.145743 -2.67889 0.0336036 0.0238921 0.0336036 -0.419359 0.239043 -2.9117 0.0336036 0.0313289 0.0336036 0 0 0 0 0 0 +LA 0.506421 +SE +ET UN +ID 2052 +TI 1760667400.276588201 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 2053 +TI 1760667400.276606321 +CC NStripHits 4 +PQ 1.45214 +SQ 2 +CT 0 1 +TL 1 +TE 22.6238 +CE 324.184 0.967837 22.6238 0.89728 +CD -1.2342 -0.954068 -3.37733 0.0336036 0.0198507 0.0336036 -2.04905 0.358069 -2.67889 0.0336036 0.0277524 0.0336036 0 0 0 0 0 0 +LA 1.69514 +SE +ET PH +ID 2054 +TI 1760667400.276649236 +CC NStripHits 3 +PE 209.653 +PP 1.67595 -0.637582 -4.30858 +PW 0 +SE +ET UN +ID 2055 +TI 1760667400.276677846 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 430.358 +SE +ET PH +ID 2056 +TI 1760667400.276715517 +CC NStripHits 2 +PE 217.25 +PP -1.46702 0.371672 -1.63123 +PW 0 +SE +ET CO +ID 2057 +TI 1760667400.276733398 +CC NStripHits 5 +PQ 1.4332 +SQ 2 +CT 0 1 +TL 1 +TE 91.0241 +CE 178.375 1.06387 91.0241 0.937045 +CD 2.84002 -0.633533 -3.49373 0.0336036 0.0214057 0.0336036 3.42205 -0.609507 -3.72655 0.0336036 0.0214306 0.0336036 0 0 0 0 0 0 +LA 0.627329 +SE +ID 2058 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 206.324291) +BD GR Veto +PQ 2.95332 +SE +ET CO +ID 2059 +TI 1760667400.276780128 +CC NStripHits 5 +PQ 9.49005 +SQ 2 +CT 0.598652 0.401348 +TL 1 +TE 133.279 +CE 137.223 0.947238 133.279 1.80436 +CD 3.65486 -0.772543 -0.00154687 0.0336036 0.0202825 0.0336036 3.77127 -0.601826 -0.350766 0.0336036 0.0214543 0.0336036 0 0 0 0 0 0 +LA 0.40577 +SE +ET UN +ID 2060 +TI 1760667400.276809215 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 138.257 +SE +ET PH +ID 2061 +TI 1760667400.276847362 +CC NStripHits 2 +PE 96.756 +PP -1.2342 -0.528446 1.16252 +PW 0 +SE +ET UN +ID 2062 +TI 1760667400.276871681 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 456.809 +SE +ET CO +ID 2063 +TI 1760667400.276896238 +CC NStripHits 6 +PQ 1.00419 +SQ 2 +CT 0 1 +TL 1 +TE 83.3968 +CE 138.865 1.28808 83.3968 0.92958 +CD -1.69983 -0.303855 -0.583578 0.0336036 0.0231563 0.0336036 -1.93264 -0.681901 -0.932797 0.0336036 0.0211073 0.0336036 0 0 0 0 0 0 +LA 0.564866 +SE +ET PH +ID 2064 +TI 1760667400.276944398 +CC NStripHits 2 +PE 119.2 +PP 2.37439 0.359735 -2.9117 +PW 0 +SE +ID 2065 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 389.555894) +BD GR Veto +PQ 1.16394 +SE +ET UN +ID 2066 +TI 1760667400.276970386 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.0144 +SE +ID 2067 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.467874) +BD GR Veto +PQ +SE +ET PH +ID 2068 +TI 1760667400.276996850 +CC NStripHits 2 +PE 143.768 +PP 4.12048 0.37496 0.929703 +PW 0 +SE +ET UN +ID 2069 +TI 1760667400.277013778 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 90.7123 +SE +ET PH +ID 2070 +TI 1760667400.277034521 +CC NStripHits 2 +PE 60.1385 +PP 2.84002 -0.17334 -1.63123 +PW 0 +SE +ET UN +ID 2071 +TI 1760667400.277052640 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 55.5705 +SE +ID 2072 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.008295) +BD GR Veto +PQ 0.00255913 +SE +ET PH +ID 2073 +TI 1760667400.277077913 +CC NStripHits 2 +PE 44.5259 +PP 4.23689 -0.735325 0.231266 +PW 0 +SE +ET PH +ID 2074 +TI 1760667400.277101755 +CC NStripHits 3 +PE 411.905 +PP 1.90877 0.0996286 -4.30858 +PW 0 +SE +ET PH +ID 2075 +TI 1760667400.277133226 +CC NStripHits 2 +PE 78.5867 +PP -0.535766 -0.930934 0.580484 +PW 0 +SE +ET CO +ID 2076 +TI 1760667400.277153968 +CC NStripHits 10 +PQ 2.29928 +SQ 5 +CT 0.0540545 0.062683 +TL 1 +TE 144.398 +CE 506.621 2.09262 144.398 0.920026 +CD -1.58342 0.32883 1.62814 0.0336036 0.037074 0.0336036 -1.46702 -0.0710917 1.86095 0.0336036 0.0245391 0.0336036 0 0 0 0 0 0 +LA 0.477165 +SE +ET PH +ID 2077 +TI 1760667400.277247428 +CC NStripHits 2 +PE 124.068 +PP 4.23689 -0.355133 -3.26092 +PW 0 +SE +ET CO +ID 2078 +TI 1760667400.277280330 +CC NStripHits 6 +PQ 2.42339 +SQ 2 +CT 0.758497 0.241503 +TL 1 +TE 444.147 +CE 221.228 1.09493 444.147 1.78466 +CD 1.67595 -0.220205 1.62814 0.0336036 0.0233727 0.0336036 1.90877 -0.610266 1.27892 0.0336036 0.0214292 0.0336036 0 0 0 0 0 0 +LA 0.572981 +SE +ET PH +ID 2079 +TI 1760667400.277313232 +CC NStripHits 2 +PE 115.143 +PP 0.861109 -0.261545 1.39533 +PW 0 +SE +ID 2080 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.734247) (Strip hit removed with energy -0.374854) +QA StripPairing (Event contains multiple hits on a single strip) +BD GR Veto +PQ 6.26232 +SE +ET PH +ID 2081 +TI 1760667400.277373075 +CC NStripHits 2 +PE 158.239 +PP -0.535766 -0.349973 -0.350766 +PW 0 +SE +ET PH +ID 2082 +TI 1760667400.277392387 +CC NStripHits 3 +PE 201.166 +PP 2.37439 0.208111 -1.98045 +PW 0 +SE +ID 2083 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.325704) (Strip hit removed with energy 10.201414) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 32.096931)) +BD GR Veto +PQ 0.238756 +SE +ET CO +ID 2084 +TI 1760667400.277442216 +CC NStripHits 6 +PQ 83.6436 +SQ 2 +CT 0.615946 0.384054 +TL 1 +TE 299.016 +CE 226.375 1.36303 299.016 1.91042 +CD 0.511891 -0.0426286 -3.14452 0.0336036 0.0247219 0.0336036 -0.302953 -0.527631 -3.84295 0.0336036 0.0216943 0.0336036 0 0 0 0 0 0 +LA 1.17771 +SE +ID 2085 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.516891) (Strip hit removed with energy 15.927820) (Strip hit removed with energy 9.014923) (Strip hit removed with energy 11.828264) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.614251)) (GR Hit: Detector ID 0 and Energy 122.165234) +BD GR Veto +PQ 1.2399 +SE +ET PH +ID 2086 +TI 1760667400.277523279 +CC NStripHits 3 +PE 124.947 +PP 3.42205 -0.776299 -1.39842 +PW 0 +SE +ID 2087 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 129.804442) +BD GR Veto +PQ 0.104369 +SE +ET UN +ID 2088 +TI 1760667400.277558565 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2089 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 51.553067) +BD GR Veto +PQ 4.63555 +SE +ET PH +ID 2090 +TI 1760667400.277576923 +CC NStripHits 2 +PE 252.89 +PP -0.419359 0.0658672 2.55939 +PW 0 +SE +ET PH +ID 2091 +TI 1760667400.277594089 +CC NStripHits 2 +PE 144.913 +PP -0.652172 -0.618807 0.347672 +PW 0 +SE +ET UN +ID 2092 +TI 1760667400.277611732 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2093 +TI 1760667400.277631282 +CC NStripHits 2 +PE 77.3447 +PP -0.884984 0.0800974 -4.07577 +PW 0 +SE +ET PH +ID 2094 +TI 1760667400.277650833 +CC NStripHits 2 +PE 77.2948 +PP -2.04905 0.360574 -2.56248 +PW 0 +SE +ID 2095 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 325.658946) +BD GR Veto +PQ 0.00708605 +SE +ET PH +ID 2096 +TI 1760667400.277678012 +CC NStripHits 3 +PE 368.52 +PP -2.63108 -0.618252 -2.21327 +PW 0 +SE +ET PH +ID 2097 +TI 1760667400.277741670 +CC NStripHits 3 +PE 247.335 +PP -1.00139 -0.33072 1.86095 +PW 0 +SE +ET PH +ID 2098 +TI 1760667400.277762413 +CC NStripHits 2 +PE 167.182 +PP 1.09392 -1.02318 -1.63123 +PW 0 +SE +ID 2099 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.779808) +BD GR Veto +PQ 0.551181 +SE +ET PH +ID 2100 +TI 1760667400.277787923 +CC NStripHits 3 +PE 223.651 +PP 4.23689 0.355207 -1.0492 +PW 0 +SE +ET PH +ID 2101 +TI 1760667400.277805566 +CC NStripHits 2 +PE 148.942 +PP -1.2342 -0.291192 -4.6578 +PW 0 +SE +ET PH +ID 2102 +TI 1760667400.277830362 +CC NStripHits 2 +PE 291.819 +PP -0.768578 0.294083 -0.117953 +PW 0 +SE +ET PH +ID 2103 +TI 1760667400.277850866 +CC NStripHits 3 +PE 395.761 +PP -1.00139 -0.0964624 -0.932797 +PW 0 +SE +ET UN +ID 2104 +TI 1760667400.277889490 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 4 +PE 67.4863 +SE +ID 2105 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 290.700928) +BD GR Veto +PQ 3.22525 +SE +ID 2106 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 4.920728) +BD GR Veto +PQ 22.7766 +SE +ET PH +ID 2107 +TI 1760667400.277969121 +CC NStripHits 3 +PE 292.933 +PP 0.861109 0.205757 -4.54139 +PW 0 +SE +ET CO +ID 2108 +TI 1760667400.277991533 +CC NStripHits 6 +PQ 3.57008 +SQ 2 +CT 0 1 +TL 1 +TE 172.418 +CE 476.151 1.32307 172.418 1.27874 +CD 3.18923 -0.656535 -1.0492 0.0336036 0.0212551 0.0336036 2.02517 0.165961 0.580484 0.0336036 0.0275609 0.0336036 0 0 0 0 0 0 +LA 2.16504 +SE +ET PH +ID 2109 +TI 1760667400.278043985 +CC NStripHits 3 +PE 282.494 +PP 1.21033 -1.11074 1.51173 +PW 0 +SE +ET PH +ID 2110 +TI 1760667400.278064489 +CC NStripHits 2 +PE 54.9725 +PP -2.51467 0.223239 2.32658 +PW 0 +SE +ET PH +ID 2111 +TI 1760667400.295526742 +CC NStripHits 2 +PE 295.882 +PP -2.74748 -0.367123 -2.21327 +PW 0 +SE +ET PH +ID 2112 +TI 1760667400.295607805 +CC NStripHits 2 +PE 143.163 +PP 2.95642 -0.991456 -1.0492 +PW 0 +SE +ET PH +ID 2113 +TI 1760667400.295643568 +CC NStripHits 2 +PE 153.125 +PP -1.35061 0.306906 -2.9117 +PW 0 +SE +ID 2114 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 338.822230) +BD GR Veto +PQ 0.954143 +SE +ID 2115 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.096798) +QA StripPairing (GR Hit: Detector ID 0 and Energy 276.147084) +BD GR Veto +PQ 9.17846 +SE +ID 2116 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.669191) +BD GR Veto +PQ 1.26652 +SE +ET PH +ID 2117 +TI 1760667400.295782804 +CC NStripHits 2 +PE 136.091 +PP -1.93264 -0.353367 -2.67889 +PW 0 +SE +ET PH +ID 2118 +TI 1760667400.295826435 +CC NStripHits 2 +PE 227.496 +PP -2.51467 -0.596994 1.39533 +PW 0 +SE +ET UN +ID 2119 +TI 1760667400.295860767 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 260.469 +SE +ET PH +ID 2120 +TI 1760667400.295926332 +CC NStripHits 3 +PE 531.443 +PP 3.30564 -0.750235 1.62814 +PW 0 +SE +ID 2121 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.229172) +QA StripPairing (Best reduced chi square is not below 25 (2239.416404)) (GR Hit: Detector ID 0 and Energy 613.193975) +BD GR Veto +PQ 2239.42 +SE +ET PH +ID 2122 +TI 1760667400.296042203 +CC NStripHits 2 +PE 141.135 +PP -0.0701406 -0.165056 -1.51483 +PW 0 +SE +ET CO +ID 2123 +TI 1760667400.296062231 +CC NStripHits 5 +PQ 8.59901 +SQ 2 +CT 0.641347 0.358653 +TL 1 +TE 275.182 +CE 189.623 1.10207 275.182 1.18401 +CD 4.00408 -0.39149 1.39533 0.0336036 0.0225073 0.0336036 3.30564 -0.963141 0.929703 0.0336036 0.0198982 0.0336036 0 0 0 0 0 0 +LA 1.01558 +SE +ET PH +ID 2124 +TI 1760667400.296123981 +CC NStripHits 2 +PE 200.462 +PP 1.67595 -1.15623 1.62814 +PW 0 +SE +ET PH +ID 2125 +TI 1760667400.296152114 +CC NStripHits 2 +PE 279.403 +PP 3.88767 -1.1656 -3.84295 +PW 0 +SE +ET CO +ID 2126 +TI 1760667400.296169519 +CC NStripHits 6 +PQ 5.0016 +SQ 2 +CT 0 1 +TL 1 +TE 94.771 +CE 441.098 2.29828 94.771 0.929189 +CD 0.162672 0.272882 -2.32967 0.0336036 0.0358023 0.0336036 0.511891 -0.423596 -3.02811 0.0336036 0.0223066 0.0336036 0 0 0 0 0 0 +LA 1.04635 +SE +ET PH +ID 2127 +TI 1760667400.296218872 +CC NStripHits 2 +PE 30.6275 +PP 2.14158 -0.753994 -2.21327 +PW 0 +SE +ET PH +ID 2128 +TI 1760667400.296236276 +CC NStripHits 3 +PE 389.089 +PP -2.28186 0.329071 1.86095 +PW 0 +SE +ET PH +ID 2129 +TI 1760667400.296255588 +CC NStripHits 2 +PE 131.173 +PP -0.652172 0.328848 -0.350766 +PW 0 +SE +ET PH +ID 2130 +TI 1760667400.296280860 +CC NStripHits 4 +PE 662.369 +PP 3.53845 -0.655163 -1.51483 +PW 0 +SE +ET PH +ID 2131 +TI 1760667400.296308517 +CC NStripHits 2 +PE 480.128 +PP -0.652172 0.31401 -3.84295 +PW 0 +SE +ID 2132 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 111.816422) +BD GR Veto +PQ 0.336881 +SE +ET PH +ID 2133 +TI 1760667400.296339511 +CC NStripHits 2 +PE 68.5197 +PP -2.86389 0.117713 -1.63123 +PW 0 +SE +ET PH +ID 2134 +TI 1760667400.296356678 +CC NStripHits 2 +PE 341.781 +PP -0.0701406 -0.312847 -0.699984 +PW 0 +SE +ID 2135 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.139343) +QA StripPairing (GR Hit: Detector ID 0 and Energy 414.236460) +BD GR Veto +PQ 19.3257 +SE +ET PH +ID 2136 +TI 1760667400.296404361 +CC NStripHits 4 +PE 281.344 +PP -1.35061 -0.636484 -1.86405 +PW 0 +SE +ET PH +ID 2137 +TI 1760667400.296433448 +CC NStripHits 3 +PE 98.3951 +PP -1.93264 -1.01807 -2.21327 +PW 0 +SE +ET PH +ID 2138 +TI 1760667400.296453952 +CC NStripHits 2 +PE 417.809 +PP 1.55955 0.145691 0.231266 +PW 0 +SE +ET UN +ID 2139 +TI 1760667400.296473264 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 455.144 +SE +ET UN +ID 2140 +TI 1760667400.296504497 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 2141 +TI 1760667400.296513319 +CC NStripHits 5 +PQ 1.73184 +SQ 2 +CT 0 1 +TL 1 +TE 93.6461 +CE 441.139 1.18216 93.6461 0.96076 +CD 3.42205 0.0960086 -0.583578 0.0336036 0.0261869 0.0336036 4.12048 -0.509212 -0.234359 0.0336036 0.0217557 0.0336036 0 0 0 0 0 0 +LA 0.987953 +SE +ET PH +ID 2142 +TI 1760667400.296546459 +CC NStripHits 2 +PE 123.909 +PP 0.162672 0.0504249 -4.19217 +PW 0 +SE +ET UN +ID 2143 +TI 1760667400.296563625 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 208.903 +SE +ET PH +ID 2144 +TI 1760667400.296589612 +CC NStripHits 3 +PE 206.27 +PP -2.51467 0.0702946 -4.30858 +PW 0 +SE +ET UN +ID 2145 +TI 1760667400.296610116 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 679.918 +SE +ET CO +ID 2146 +TI 1760667400.296658754 +CC NStripHits 4 +PQ 0.668483 +SQ 2 +CT 0 1 +TL 1 +TE 121.474 +CE 142.143 0.934173 121.474 0.955633 +CD 0.977516 0.11011 -3.49373 0.0336036 0.0263754 0.0336036 1.32673 0.371304 -3.26092 0.0336036 0.0203643 0.0336036 0 0 0 0 0 0 +LA 0.494341 +SE +ET PH +ID 2147 +TI 1760667400.296687841 +CC NStripHits 3 +PE 77.6526 +PP 2.14158 0.367294 2.21017 +PW 0 +SE +ET CO +ID 2148 +TI 1760667400.296704769 +CC NStripHits 4 +PQ 20.8033 +SQ 2 +CT 0 1 +TL 1 +TE 31.5934 +CE 345.039 1.27515 31.5934 1.25656 +CD -1.2342 -0.486637 -4.07577 0.0336036 0.0218813 0.0336036 -1.46702 -0.854575 -3.61014 0.0336036 0.0199702 0.0336036 0 0 0 0 0 0 +LA 0.637491 +SE +ID 2149 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.814231) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 208.873898) +BD GR Veto +PQ 5.30518 +SE +ET PH +ID 2150 +TI 1760667400.296773672 +CC NStripHits 2 +PE 36.9768 +PP 3.88767 -0.6217 -1.0492 +PW 0 +SE +ET PH +ID 2151 +TI 1760667400.296788930 +CC NStripHits 2 +PE 87.9383 +PP 0.977516 -1.14769 2.32658 +PW 0 +SE +ID 2152 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.131285) (Strip hit removed with energy 10.948563) +QA StripPairing (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 48.677245) +BD GR Veto +PQ 15.7059 +SE +ET PH +ID 2153 +TI 1760667400.296835184 +CC NStripHits 2 +PE 269.454 +PP 2.25798 -0.150979 -3.72655 +PW 0 +SE +ID 2154 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.581727) +BD GR Veto +PQ 2.94928 +SE +ET PH +ID 2155 +TI 1760667400.296860456 +CC NStripHits 3 +PE 158.86 +PP -2.9803 -0.162938 -3.61014 +PW 0 +SE +ET PH +ID 2156 +TI 1760667400.296876430 +CC NStripHits 2 +PE 69.1201 +PP -0.652172 0.265374 2.32658 +PW 0 +SE +ET PH +ID 2157 +TI 1760667400.296893835 +CC NStripHits 3 +PE 121.482 +PP 0.0462656 -0.192601 0.580484 +PW 0 +SE +ET CO +ID 2158 +TI 1760667400.296913385 +CC NStripHits 6 +PQ 0.168483 +SQ 2 +CT 0 1 +TL 1 +TE 153.758 +CE 506.661 1.35772 153.758 0.944291 +CD -2.04905 -0.477456 -0.467172 0.0336036 0.0219265 0.0336036 -2.39827 -0.689562 -0.816391 0.0336036 0.0210713 0.0336036 0 0 0 0 0 0 +LA 0.537492 +SE +ID 2159 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 141.535864) +BD GR Veto +PQ 0.872263 +SE +ET PH +ID 2160 +TI 1760667400.296954870 +CC NStripHits 2 +PE 113.89 +PP -0.419359 -0.551864 -3.37733 +PW 0 +SE +ET PH +ID 2161 +TI 1760667400.296972751 +CC NStripHits 2 +PE 104.112 +PP 3.42205 0.121095 -1.74764 +PW 0 +SE +ET PH +ID 2162 +TI 1760667400.296991348 +CC NStripHits 2 +PE 90.6913 +PP -2.9803 -0.826538 -3.61014 +PW 0 +SE +ET CO +ID 2163 +TI 1760667400.297006130 +CC NStripHits 4 +PQ 9.16245 +SQ 2 +CT 0 1 +TL 1 +TE 97.5825 +CE 202.919 0.97459 97.5825 1.30082 +CD 1.55955 -0.153314 -1.74764 0.0336036 0.0238184 0.0336036 1.21033 -0.789563 -1.86405 0.0336036 0.0202258 0.0336036 0 0 0 0 0 0 +LA 0.735064 +SE +ET PH +ID 2164 +TI 1760667400.297035932 +CC NStripHits 2 +PE 45.4811 +PP 2.4908 -0.137079 2.6758 +PW 0 +SE +ET UN +ID 2165 +TI 1760667400.297051429 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.5108 +SE +ET PH +ID 2166 +TI 1760667400.297068834 +CC NStripHits 2 +PE 54.9195 +PP -1.1178 0.335797 -3.02811 +PW 0 +SE +ET PH +ID 2167 +TI 1760667400.297086238 +CC NStripHits 2 +PE 89.822 +PP 2.84002 0.191152 -3.02811 +PW 0 +SE +ET UN +ID 2168 +TI 1760667400.297103881 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 429.702 +SE +ET PH +ID 2169 +TI 1760667400.297136068 +CC NStripHits 2 +PE 149.084 +PP 2.02517 -0.11308 -3.37733 +PW 0 +SE +ET PH +ID 2170 +TI 1760667400.297154188 +CC NStripHits 3 +PE 270.974 +PP 4.12048 0.0277811 0.696891 +PW 0 +SE +ET UN +ID 2171 +TI 1760667400.297173976 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 51.829 +SE +ET UN +ID 2172 +TI 1760667400.297194004 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.394 +SE +ET UN +ID 2173 +TI 1760667400.297211885 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2174 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.111438) (Strip hit removed with energy 11.177116) +QA StripPairing (GR Hit: Detector ID 0 and Energy 343.328669) +BD GR Veto +PQ 7.70812 +SE +ID 2175 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 289.958913) +BD GR Veto +PQ 3.24009 +SE +ET PH +ID 2176 +TI 1760667400.315505743 +CC NStripHits 3 +PE 157.293 +PP 0.977516 -0.241653 -4.30858 +PW 0 +SE +ET PH +ID 2177 +TI 1760667400.315543413 +CC NStripHits 3 +PE 160.726 +PP -2.28186 -0.428529 2.09377 +PW 0 +SE +ID 2178 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 115.307424) +BD GR Veto +PQ 2.65291 +SE +ET UN +ID 2179 +TI 1760667400.315593719 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET PH +ID 2180 +TI 1760667400.315654516 +CC NStripHits 3 +PE 152.839 +PP -0.535766 -0.563842 -3.61014 +PW 0 +SE +ET PH +ID 2181 +TI 1760667400.315695047 +CC NStripHits 2 +PE 441.76 +PP 3.65486 -0.717732 1.39533 +PW 0 +SE +ET PH +ID 2182 +TI 1760667400.315734386 +CC NStripHits 3 +PE 156.536 +PP -0.768578 0.109376 2.09377 +PW 0 +SE +ET PH +ID 2183 +TI 1760667400.315771341 +CC NStripHits 2 +PE 24.4215 +PP -0.884984 -0.51892 -1.16561 +PW 0 +SE +ET PH +ID 2184 +TI 1760667400.315802812 +CC NStripHits 2 +PE 66.4343 +PP -2.51467 -1.06586 0.231266 +PW 0 +SE +ET UN +ID 2185 +TI 1760667400.315830945 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2186 +TI 1760667400.315857172 +CC NStripHits 3 +PE 506.608 +PP 0.977516 -1.01915 1.62814 +PW 0 +SE +ET PH +ID 2187 +TI 1760667400.315891981 +CC NStripHits 2 +PE 94.4117 +PP 2.4908 -0.725053 0.231266 +PW 0 +SE +ET CO +ID 2188 +TI 1760667400.315941810 +CC NStripHits 5 +PQ 1.91593 +SQ 2 +CT 0.638131 0.361869 +TL 1 +TE 386.894 +CE 274.51 1.84589 386.894 0.971986 +CD -0.768578 -0.341137 -0.583578 0.0336036 0.0228956 0.0336036 0.0462656 0.133817 -0.932797 0.0336036 0.0268354 0.0336036 0 0 0 0 0 0 +LA 1.00574 +SE +ET CO +ID 2189 +TI 1760667400.315996646 +CC NStripHits 5 +PQ 90.3005 +SQ 2 +CT 0 1 +TL 1 +TE 129.126 +CE 310.907 0.938782 129.126 1.36293 +CD -0.302953 -0.509727 1.74455 0.0336036 0.0217535 0.0336036 -2.04905 0.359245 1.04611 0.0336036 0.0271765 0.0336036 0 0 0 0 0 0 +LA 2.07166 +SE +ET UN +ID 2190 +TI 1760667400.316066980 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2191 +TI 1760667400.316122770 +CC NStripHits 4 +PE 474.89 +PP 0.162672 -0.34414 1.74455 +PW 0 +SE +ET PH +ID 2192 +TI 1760667400.316159248 +CC NStripHits 2 +PE 67.7563 +PP 3.77127 -1.0526 -1.86405 +PW 0 +SE +ID 2193 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (37.771603)) (GR Hit: Detector ID 0 and Energy 120.327817) +BD GR Veto +PQ 37.7716 +SE +ET PH +ID 2194 +TI 1760667400.316205024 +CC NStripHits 3 +PE 351.299 +PP -2.04905 -0.128034 0.347672 +PW 0 +SE +ID 2195 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.208470) +QA StripPairing (Best reduced chi square is not below 25 (65.841872)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 31.562349)) +BD GR Veto +PQ 65.8419 +SE +ET CO +ID 2196 +TI 1760667400.316271543 +CC NStripHits 4 +PQ 12.2699 +SQ 2 +CT 0 1 +TL 1 +TE 63.4279 +CE 439.58 1.46091 63.4279 0.957583 +CD 0.0462656 0.185391 -3.84295 0.0336036 0.0281332 0.0336036 -0.186547 0.355118 -3.72655 0.0336036 0.0291242 0.0336036 0 0 0 0 0 0 +LA 0.310738 +SE +ET PH +ID 2197 +TI 1760667400.316314697 +CC NStripHits 2 +PE 91.6755 +PP -1.58342 -0.949101 2.44298 +PW 0 +SE +ET PH +ID 2198 +TI 1760667400.316344738 +CC NStripHits 4 +PE 666.652 +PP -1.1178 0.114033 -3.14452 +PW 0 +SE +ET CO +ID 2199 +TI 1760667400.316397428 +CC NStripHits 5 +PQ 55.6401 +SQ 2 +CT 0.689057 0.310943 +TL 1 +TE 405.907 +CE 250.613 1.04787 405.907 1.29702 +CD -1.1178 -0.649143 2.09377 0.0336036 0.0213171 0.0336036 -1.93264 -0.0298071 1.74455 0.0336036 0.0248011 0.0336036 0 0 0 0 0 0 +LA 1.08143 +SE +ID 2200 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.881312) +BD GR Veto +PQ 0.0531674 +SE +ID 2201 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.214007) (Strip hit removed with energy 5.530463) +BD GR Veto +PQ +SE +ET CO +ID 2202 +TI 1760667400.316485881 +CC NStripHits 4 +PQ 0.438023 +SQ 2 +CT 0 1 +TL 1 +TE 106.59 +CE 181.299 0.940981 106.59 0.950988 +CD 1.21033 -0.0385998 -3.61014 0.0336036 0.0247469 0.0336036 1.32673 -0.771553 -3.26092 0.0336036 0.0202883 0.0336036 0 0 0 0 0 0 +LA 0.820198 +SE +ID 2203 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.223413) (Strip hit removed with energy 2.071762) +BD GR Veto +PQ +SE +ID 2204 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.875476) +QA StripPairing (GR Hit: Detector ID 0 and Energy 454.116325) +BD GR Veto +PQ 0.511458 +SE +ET PH +ID 2205 +TI 1760667400.316578626 +CC NStripHits 2 +PE 135.654 +PP 0.0462656 -0.135355 0.347672 +PW 0 +SE +ET PH +ID 2206 +TI 1760667400.316609621 +CC NStripHits 4 +PE 663.747 +PP -0.652172 0.0908664 2.09377 +PW 0 +SE +ET UN +ID 2207 +TI 1760667400.316654443 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.3706 +SE +ET UN +ID 2208 +TI 1760667400.316686391 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2209 +TI 1760667400.316778182 +CC NStripHits 2 +PE 490.814 +PP -0.652172 -0.342346 -2.9117 +PW 0 +SE +ET PH +ID 2210 +TI 1760667400.316828250 +CC NStripHits 2 +PE 241.217 +PP 1.55955 -1.15253 1.51173 +PW 0 +SE +ET PH +ID 2211 +TI 1760667400.316858530 +CC NStripHits 2 +PE 67.8772 +PP -1.81623 -1.11784 -0.00154687 +PW 0 +SE +ID 2212 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 260.850903) +BD GR Veto +PQ 2.08666 +SE +ID 2213 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 240.907280) +BD GR Veto +PQ 2.28243 +SE +ET PH +ID 2214 +TI 1760667400.316919088 +CC NStripHits 2 +PE 130.085 +PP -2.28186 -1.04774 1.97736 +PW 0 +SE +ET PH +ID 2215 +TI 1760667400.316948175 +CC NStripHits 2 +PE 59.9287 +PP 2.72361 -0.0884039 -1.39842 +PW 0 +SE +ID 2216 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (31.308206)) (GR Hit: Detector ID 0 and Energy 471.413849) +BD GR Veto +PQ 31.3082 +SE +ET UN +ID 2217 +TI 1760667400.316992044 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 127.142 +SE +ET PH +ID 2218 +TI 1760667400.317040681 +CC NStripHits 2 +PE 128.049 +PP 2.02517 -0.298915 1.74455 +PW 0 +SE +ET PH +ID 2219 +TI 1760667400.317071914 +CC NStripHits 5 +PE 528.775 +PP 0.511891 -0.111926 -2.56248 +PW 0 +SE +ID 2220 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.980590) +BD GR Veto +PQ +SE +ID 2221 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.803754) (Strip hit removed with energy 17.910779) (Strip hit removed with energy 17.053487) +QA StripPairing (GR Hit: Detector ID 0 and Energy 284.204928) +BD GR Veto +PQ 2.26218 +SE +ET PH +ID 2222 +TI 1760667400.317202806 +CC NStripHits 2 +PE 101.718 +PP 2.6072 -0.761254 -4.6578 +PW 0 +SE +ET PH +ID 2223 +TI 1760667400.317234992 +CC NStripHits 4 +PE 90.9609 +PP -1.93264 0.160816 -0.467172 +PW 0 +SE +ET PH +ID 2224 +TI 1760667400.317273616 +CC NStripHits 3 +PE 84.2803 +PP 0.511891 0.31835 -2.44608 +PW 0 +SE +ET CO +ID 2225 +TI 1760667400.317320585 +CC NStripHits 7 +PQ 3.38902 +SQ 2 +CT 0.584198 0.415802 +TL 1 +TE 365.994 +CE 296.676 1.80628 365.994 1.33607 +CD 2.95642 -0.898102 -0.350766 0.0336036 0.0198004 0.0336036 1.67595 -0.408542 -0.699984 0.0336036 0.02239 0.0336036 0 0 0 0 0 0 +LA 1.41465 +SE +ET UN +ID 2226 +TI 1760667400.317390680 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2227 +TI 1760667400.317422151 +CC NStripHits 2 +PE 103.399 +PP 0.395484 -0.315595 -1.74764 +PW 0 +SE +ID 2228 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.560986) +BD GR Veto +PQ +SE +ET UN +ID 2229 +TI 1760667400.317464351 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 280.929 +SE +ID 2230 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 163.863296) +BD GR Veto +PQ 7.65748 +SE +ET PH +ID 2231 +TI 1760667400.317527294 +CC NStripHits 2 +PE 66.17 +PP 3.30564 0.120818 -1.16561 +PW 0 +SE +ET PH +ID 2232 +TI 1760667400.317562580 +CC NStripHits 2 +PE 221.464 +PP 1.67595 0.36328 2.21017 +PW 0 +SE +ET UN +ID 2233 +TI 1760667400.317598104 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 498.095 +SE +ET PH +ID 2234 +TI 1760667400.317650794 +CC NStripHits 2 +PE 67.2672 +PP -2.63108 -0.760593 -1.51483 +PW 0 +SE +ET PH +ID 2235 +TI 1760667400.317681074 +CC NStripHits 3 +PE 263.347 +PP -1.00139 -0.213403 0.696891 +PW 0 +SE +ET PH +ID 2236 +TI 1760667400.317717075 +CC NStripHits 2 +PE 88.5293 +PP -2.86389 -0.475266 -1.74764 +PW 0 +SE +ET PH +ID 2237 +TI 1760667400.317748785 +CC NStripHits 2 +PE 42.4682 +PP -2.86389 -1.02125 1.27892 +PW 0 +SE +ID 2238 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 89.488138) +BD GR Veto +PQ 1.50205 +SE +ID 2239 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 0.645091) +BD GR Veto +PQ 3.69121 +SE +ET PH +ID 2240 +TI 1760667400.337457895 +CC NStripHits 3 +PE 349.48 +PP -1.58342 -0.334093 -0.699984 +PW 0 +SE +ET PH +ID 2241 +TI 1760667400.337515830 +CC NStripHits 3 +PE 379.686 +PP 4.00408 0.291265 -3.61014 +PW 0 +SE +ID 2242 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (3941.916098)) (GR Hit: Detector ID 0 and Energy 276.454373) +BD GR Veto +PQ 3941.92 +SE +ET PH +ID 2243 +TI 1760667400.337559223 +CC NStripHits 2 +PE 178.216 +PP 0.628297 -0.278175 -2.56248 +PW 0 +SE +ET PH +ID 2244 +TI 1760667400.337578773 +CC NStripHits 2 +PE 162.906 +PP 2.84002 -0.634288 -1.28202 +PW 0 +SE +ET PH +ID 2245 +TI 1760667400.337600469 +CC NStripHits 2 +PE 447.283 +PP 2.6072 0.371263 -2.21327 +PW 0 +SE +ET PH +ID 2246 +TI 1760667400.337621688 +CC NStripHits 3 +PE 124.466 +PP -2.51467 -1.10836 -4.19217 +PW 0 +SE +ET PH +ID 2247 +TI 1760667400.337643146 +CC NStripHits 4 +PE 252.202 +PP 2.25798 0.363589 0.231266 +PW 0 +SE +ID 2248 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.046255) +BD GR Veto +PQ 1.53817 +SE +ET UN +ID 2249 +TI 1760667400.337675571 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 409.245 +SE +ET UN +ID 2250 +TI 1760667400.337704896 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2251 +TI 1760667400.337716341 +CC NStripHits 2 +PE 290.135 +PP -1.46702 -0.666247 -3.61014 +PW 0 +SE +ET PH +ID 2252 +TI 1760667400.337734699 +CC NStripHits 3 +PE 176.994 +PP -1.58342 -0.121953 -2.56248 +PW 0 +SE +ET PH +ID 2253 +TI 1760667400.337755680 +CC NStripHits 3 +PE 451.262 +PP 2.02517 -0.614855 2.21017 +PW 0 +SE +ET PH +ID 2254 +TI 1760667400.337781429 +CC NStripHits 2 +PE 55.1249 +PP 1.09392 -1.09562 1.97736 +PW 0 +SE +ET PH +ID 2255 +TI 1760667400.337798833 +CC NStripHits 2 +PE 471.365 +PP -0.186547 -0.0836126 2.21017 +PW 0 +SE +ET PH +ID 2256 +TI 1760667400.337819099 +CC NStripHits 6 +PE 661.068 +PP 1.67595 0.139967 2.09377 +PW 0 +SE +ET PH +ID 2257 +TI 1760667400.337850570 +CC NStripHits 2 +PE 113.095 +PP -2.74748 -0.940015 0.347672 +PW 0 +SE +ET PH +ID 2258 +TI 1760667400.337868213 +CC NStripHits 2 +PE 83.1533 +PP -2.28186 -0.968809 -3.84295 +PW 0 +SE +ET PH +ID 2259 +TI 1760667400.337885856 +CC NStripHits 4 +PE 412.411 +PP -0.186547 -0.794847 -4.42498 +PW 0 +SE +ET PH +ID 2260 +TI 1760667400.337908267 +CC NStripHits 2 +PE 252.124 +PP 2.4908 -0.546417 -3.02811 +PW 0 +SE +ET PH +ID 2261 +TI 1760667400.337937831 +CC NStripHits 2 +PE 50.3758 +PP 3.65486 0.166053 0.114859 +PW 0 +SE +ET PH +ID 2262 +TI 1760667400.337956666 +CC NStripHits 2 +PE 56.8463 +PP -1.58342 -0.828647 -0.583578 +PW 0 +SE +ID 2263 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 143.816897) +BD GR Veto +PQ 0.149226 +SE +ID 2264 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 300.292569) +BD GR Veto +PQ 1.04786 +SE +ET UN +ID 2265 +TI 1760667400.338021278 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2266 +TI 1760667400.338051319 +CC NStripHits 2 +PE 205.896 +PP -1.58342 -0.52412 0.464078 +PW 0 +SE +ID 2267 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.194788) (Strip hit removed with energy 11.410828) +QA StripPairing (Best reduced chi square is not below 25 (31.576805)) +BD GR Veto +PQ 31.5768 +SE +ET PH +ID 2268 +TI 1760667400.338088989 +CC NStripHits 2 +PE 229.174 +PP 3.07283 0.348813 -2.9117 +PW 0 +SE +ET CO +ID 2269 +TI 1760667400.338125705 +CC NStripHits 5 +PQ 46.6068 +SQ 2 +CT 0 1 +TL 1 +TE 117.327 +CE 124.548 1.83443 117.327 1.27639 +CD 2.84002 0.0687659 -2.44608 0.0336036 0.0257546 0.0336036 2.95642 0.152104 -2.21327 0.0336036 0.0272459 0.0336036 0 0 0 0 0 0 +LA 0.273303 +SE +ID 2270 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 107.454577) +BD GR Veto +PQ 3.56047 +SE +ET PH +ID 2271 +TI 1760667400.338174581 +CC NStripHits 2 +PE 437.407 +PP 2.72361 0.158058 1.74455 +PW 0 +SE +ET CO +ID 2272 +TI 1760667400.338194370 +CC NStripHits 5 +PQ 8.23913 +SQ 2 +CT 0 1 +TL 1 +TE 147.054 +CE 240.562 0.951362 147.054 1.83518 +CD 1.55955 -0.725895 2.21017 0.0336036 0.0206552 0.0336036 2.02517 0.282333 0.696891 0.0336036 0.0370684 0.0336036 0 0 0 0 0 0 +LA 1.87706 +SE +ET PH +ID 2273 +TI 1760667400.338232517 +CC NStripHits 2 +PE 90.3493 +PP -1.69983 -0.340545 0.231266 +PW 0 +SE +ID 2274 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 140.496555) +BD GR Veto +PQ 0.80086 +SE +ET PH +ID 2275 +TI 1760667400.338260173 +CC NStripHits 4 +PE 227.649 +PP 0.511891 0.117735 -4.19217 +PW 0 +SE +ET PH +ID 2276 +TI 1760667400.338283061 +CC NStripHits 2 +PE 480.191 +PP 2.4908 -0.199413 -0.234359 +PW 0 +SE +ET UN +ID 2277 +TI 1760667400.338323593 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.6976 +SE +ET UN +ID 2278 +TI 1760667400.338349819 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 196.174 +SE +ET UN +ID 2279 +TI 1760667400.338382244 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 287.229 +SE +ID 2280 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 232.812221) +BD GR Veto +PQ 3.09049 +SE +ET UN +ID 2281 +TI 1760667400.338423252 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2282 +TI 1760667400.338440656 +CC NStripHits 2 +PE 38.5501 +PP -2.74748 -0.995276 0.231266 +PW 0 +SE +ET PH +ID 2283 +TI 1760667400.338460206 +CC NStripHits 3 +PE 245.992 +PP 0.977516 -0.00215435 1.86095 +PW 0 +SE +ET PH +ID 2284 +TI 1760667400.338484048 +CC NStripHits 3 +PE 215.281 +PP -2.74748 -0.666938 1.86095 +PW 0 +SE +ET CO +ID 2285 +TI 1760667400.338503837 +CC NStripHits 5 +PQ 0.286687 +SQ 2 +CT 0 1 +TL 1 +TE 125.633 +CE 377.01 0.949235 125.633 1.05453 +CD 2.4908 -0.173522 -3.84295 0.0336036 0.0236624 0.0336036 1.67595 0.352675 -4.42498 0.0336036 0.0301819 0.0336036 0 0 0 0 0 0 +LA 1.1312 +SE +ET UN +ID 2286 +TI 1760667400.338543176 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.2984 +SE +ET UN +ID 2287 +TI 1760667400.338562965 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 527.898 +SE +ET PH +ID 2288 +TI 1760667400.338599920 +CC NStripHits 3 +PE 239.067 +PP -1.35061 0.0779569 -4.54139 +PW 0 +SE +ET PH +ID 2289 +TI 1760667400.338621139 +CC NStripHits 2 +PE 85.897 +PP 1.55955 -0.610369 -2.32967 +PW 0 +SE +ET PH +ID 2290 +TI 1760667400.338639497 +CC NStripHits 2 +PE 103.271 +PP -2.63108 -0.329112 2.21017 +PW 0 +SE +ID 2291 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 52.557972) +BD GR Veto +PQ 2.95739 +SE +ET PH +ID 2292 +TI 1760667400.338665723 +CC NStripHits 4 +PE 482.239 +PP 0.861109 0.0274268 2.44298 +PW 0 +SE +ET PH +ID 2293 +TI 1760667400.338687896 +CC NStripHits 2 +PE 130.686 +PP -0.652172 -0.637108 1.74455 +PW 0 +SE +ET PH +ID 2294 +TI 1760667400.338708400 +CC NStripHits 2 +PE 188.903 +PP -1.1178 0.146261 -3.26092 +PW 0 +SE +ET CO +ID 2295 +TI 1760667400.338731050 +CC NStripHits 5 +PQ 0.354363 +SQ 2 +CT 0 1 +TL 1 +TE 83.4543 +CE 260.709 0.911198 83.4543 1.05794 +CD 2.14158 0.0148995 0.813297 0.0336036 0.0251905 0.0336036 1.79236 -0.875574 0.580484 0.0336036 0.0198735 0.0336036 0 0 0 0 0 0 +LA 0.984429 +SE +ET PH +ID 2296 +TI 1760667400.338761568 +CC NStripHits 3 +PE 149.054 +PP -0.652172 -0.822971 -4.42498 +PW 0 +SE +ET PH +ID 2297 +TI 1760667400.338783264 +CC NStripHits 3 +PE 106.331 +PP 1.09392 -0.504021 -0.583578 +PW 0 +SE +ET PH +ID 2298 +TI 1760667400.338803291 +CC NStripHits 2 +PE 48.8724 +PP -2.86389 -0.0936658 0.347672 +PW 0 +SE +ET CO +ID 2299 +TI 1760667400.338820457 +CC NStripHits 9 +PQ 6.5947 +SQ 2 +CT 0 1 +TL 1 +TE 177.766 +CE 488.048 1.6089 177.766 1.24701 +CD -1.93264 -0.126189 -2.32967 0.0336036 0.0240896 0.0336036 -2.74748 -0.531897 -1.86405 0.0336036 0.0216807 0.0336036 0 0 0 0 0 0 +LA 1.02243 +SE +ET PH +ID 2300 +TI 1760667400.338862419 +CC NStripHits 2 +PE 21.0345 +PP 3.18923 -0.205465 -0.583578 +PW 0 +SE +ET PH +ID 2301 +TI 1760667400.338880300 +CC NStripHits 3 +PE 330.601 +PP -1.35061 -0.749484 -2.56248 +PW 0 +SE +ID 2302 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (175.350238)) (GR Hit: Detector ID 0 and Energy 431.167231) +BD GR Veto +PQ 175.35 +SE +ET PH +ID 2303 +TI 1760667400.359256505 +CC NStripHits 2 +PE 109.493 +PP -1.69983 -0.0404045 -4.42498 +PW 0 +SE +ET UN +ID 2304 +TI 1760667400.359308719 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 45.5272 +SE +ET PH +ID 2305 +TI 1760667400.359330892 +CC NStripHits 3 +PE 324.542 +PP 2.95642 -1.07562 -2.09686 +PW 0 +SE +ET PH +ID 2306 +TI 1760667400.359356164 +CC NStripHits 3 +PE 299.824 +PP -2.28186 -0.477736 1.04611 +PW 0 +SE +ET PH +ID 2307 +TI 1760667400.359376192 +CC NStripHits 2 +PE 218.484 +PP 0.162672 -0.243357 -3.84295 +PW 0 +SE +ET PH +ID 2308 +TI 1760667400.359394311 +CC NStripHits 2 +PE 270.406 +PP 0.511891 -0.352626 -3.49373 +PW 0 +SE +ET PH +ID 2309 +TI 1760667400.359415769 +CC NStripHits 3 +PE 508.008 +PP 1.44314 0.0697536 -1.28202 +PW 0 +SE +ET PH +ID 2310 +TI 1760667400.359442472 +CC NStripHits 5 +PE 456.896 +PP 2.4908 -0.16883 -4.07577 +PW 0 +SE +ET PH +ID 2311 +TI 1760667400.359481096 +CC NStripHits 3 +PE 242.284 +PP -0.419359 -0.0866924 -0.00154687 +PW 0 +SE +ID 2312 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 46.159790) +BD GR Veto +PQ 2.80153 +SE +ET PH +ID 2313 +TI 1760667400.359539747 +CC NStripHits 2 +PE 26.9463 +PP -1.46702 -0.116452 0.464078 +PW 0 +SE +ID 2314 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.460511) +BD GR Veto +PQ +SE +ID 2315 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 2.071762) +BD GR Veto +PQ +SE +ET PH +ID 2316 +TI 1760667400.359571456 +CC NStripHits 3 +PE 296.412 +PP 2.84002 -1.16096 -2.09686 +PW 0 +SE +ID 2317 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 103.213086) +BD GR Veto +PQ 3.2132 +SE +ET PH +ID 2318 +TI 1760667400.359610319 +CC NStripHits 3 +PE 136.332 +PP -1.35061 0.300685 -4.07577 +PW 0 +SE +ET UN +ID 2319 +TI 1760667400.359630823 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 152.224 +SE +ID 2320 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.588474) +QA StripPairing (GR Hit: Detector ID 0 and Energy 417.228492) +BD GR Veto +PQ 4.04946 +SE +ET PH +ID 2321 +TI 1760667400.359666585 +CC NStripHits 3 +PE 506.777 +PP 2.25798 -0.502934 1.27892 +PW 0 +SE +ET PH +ID 2322 +TI 1760667400.359693288 +CC NStripHits 3 +PE 219.561 +PP -1.93264 -0.500883 -3.61014 +PW 0 +SE +ID 2323 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.381055) +BD GR Veto +PQ 0.0114124 +SE +ET PH +ID 2324 +TI 1760667400.359721899 +CC NStripHits 3 +PE 278.907 +PP 2.25798 0.113379 -4.6578 +PW 0 +SE +ET UN +ID 2325 +TI 1760667400.359739542 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 278.61 +SE +ET UN +ID 2326 +TI 1760667400.359776735 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2327 +TI 1760667400.359797477 +CC NStripHits 3 +PE 229.638 +PP 2.02517 -0.342792 0.580484 +PW 0 +SE +ID 2328 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.575137) +BD GR Veto +PQ +SE +ID 2329 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 172.519188) +BD GR Veto +PQ 4.61655 +SE +ET UN +ID 2330 +TI 1760667400.359832286 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 642.244 +SE +ID 2331 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2332 +TI 1760667400.359876632 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 58.888 +SE +ID 2333 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 228.823497) +BD GR Veto +PQ 3.15963 +SE +ET UN +ID 2334 +TI 1760667400.359905958 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 420.444 +SE +ET PH +ID 2335 +TI 1760667400.359943151 +CC NStripHits 2 +PE 439.288 +PP 0.279078 0.341606 -3.61014 +PW 0 +SE +ET UN +ID 2336 +TI 1760667400.359963417 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.658 +SE +ID 2337 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 95.616096) +BD GR Veto +PQ 0.213552 +SE +ET UN +ID 2338 +TI 1760667400.359989643 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2339 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 183.974540) +BD GR Veto +PQ 9.77876 +SE +ET PH +ID 2340 +TI 1760667400.360018014 +CC NStripHits 2 +PE 214.361 +PP 0.861109 0.0574463 0.929703 +PW 0 +SE +ID 2341 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2342 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (606.608330)) (GR Hit: Detector ID 0 and Energy 375.735279) +BD GR Veto +PQ 606.608 +SE +ET UN +ID 2343 +TI 1760667400.360050678 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.0833 +SE +ET UN +ID 2344 +TI 1760667400.360068082 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 316.555 +SE +ET PH +ID 2345 +TI 1760667400.360117435 +CC NStripHits 5 +PE 351.165 +PP -1.2342 -0.577657 -0.583578 +PW 0 +SE +ID 2346 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 394.446065) +BD GR Veto +PQ 5.97942 +SE +ID 2347 +BD StripPairingError (More than maximum number of strip hits allowed on one side (17)) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.634230) (Strip hit removed with energy -1.711899) (Strip hit removed with energy 19.864592) (Strip hit removed with energy 18.924463) (Strip hit removed with energy 18.547828) (Strip hit removed with energy 10.036853) (Strip hit removed with energy 10.273034) (Strip hit removed with energy 14.155659) (Strip hit removed with energy 15.555762) (Strip hit removed with energy 16.478008) (Strip hit removed with energy 11.143212) (Strip hit removed with energy 8.620146) (Strip hit removed with energy 10.216403) +BD GR Veto +PQ +SE +ID 2348 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.193546) (Strip hit removed with energy 0.848991) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 130.415865) +BD GR Veto +PQ 15.0852 +SE +ET PH +ID 2349 +TI 1760667400.360497236 +CC NStripHits 2 +PE 67.1253 +PP 0.279078 -0.938416 -3.37733 +PW 0 +SE +ET UN +ID 2350 +TI 1760667400.360526084 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 404.892 +SE +ET PH +ID 2351 +TI 1760667400.360588550 +CC NStripHits 2 +PE 106.624 +PP -1.93264 0.3711 -0.816391 +PW 0 +SE +ET PH +ID 2352 +TI 1760667400.360618829 +CC NStripHits 2 +PE 225.021 +PP -0.884984 -0.908459 2.32658 +PW 0 +SE +ET CO +ID 2353 +TI 1760667400.360640287 +CC NStripHits 6 +PQ 3.406 +SQ 2 +CT 0 1 +TL 1 +TE 155.282 +CE 398.938 1.18807 155.282 0.953708 +CD -0.652172 -0.0792423 -0.467172 0.0336036 0.0244569 0.0336036 -0.302953 -0.516812 -1.28202 0.0336036 0.0217276 0.0336036 0 0 0 0 0 0 +LA 0.988635 +SE +ET CO +ID 2354 +TI 1760667400.360681533 +CC NStripHits 5 +PQ 0.796249 +SQ 2 +CT 0.596206 0.403794 +TL 1 +TE 370.784 +CE 293.31 0.966036 370.784 1.0767 +CD 3.77127 -0.519593 -1.51483 0.0336036 0.0217188 0.0336036 3.07283 -0.250581 -1.86405 0.0336036 0.0233441 0.0336036 0 0 0 0 0 0 +LA 0.825918 +SE +ET PH +ID 2355 +TI 1760667400.360717773 +CC NStripHits 3 +PE 179.963 +PP -1.58342 0.225549 -2.09686 +PW 0 +SE +ET UN +ID 2356 +TI 1760667400.360738277 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 386.207 +SE +ET PH +ID 2357 +TI 1760667400.360763549 +CC NStripHits 4 +PE 242.479 +PP 3.65486 -0.914524 1.97736 +PW 0 +SE +ID 2358 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (72.284485)) (GR Hit: Detector ID 0 and Energy 526.902819) +BD GR Veto +PQ 72.2845 +SE +ID 2359 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (166.455832)) (GR Hit: Detector ID 0 and Energy 658.198906) +BD GR Veto +PQ 166.456 +SE +ET PH +ID 2360 +TI 1760667400.360805034 +CC NStripHits 2 +PE 83.8508 +PP 3.88767 0.297926 -3.37733 +PW 0 +SE +ET CO +ID 2361 +TI 1760667400.360825538 +CC NStripHits 5 +PQ 1.27881 +SQ 2 +CT 0.54529 0.45471 +TL 1 +TE 349.001 +CE 312.138 0.963856 349.001 0.993014 +CD 2.84002 -0.499245 1.04611 0.0336036 0.0218067 0.0336036 4.12048 -0.428629 1.27892 0.0336036 0.0222703 0.0336036 0 0 0 0 0 0 +LA 1.30337 +SE +ID 2362 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 116.341587) (GR Hit: Detector ID 0 and Energy 77.389265) +BD GR Veto +PQ 0.0700389 +SE +ET UN +ID 2363 +TI 1760667400.360888004 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 647.312 +SE +ID 2364 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.827771) +BD GR Veto +PQ 6.65238 +SE +ET PH +ID 2365 +TI 1760667400.360925912 +CC NStripHits 3 +PE 287.583 +PP -1.93264 -0.616407 -0.583578 +PW 0 +SE +ET UN +ID 2366 +TI 1760667400.360946416 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2367 +TI 1760667400.383686304 +CC NStripHits 2 +PE 74.5596 +PP 3.42205 0.351335 -4.19217 +PW 0 +SE +ET PH +ID 2368 +TI 1760667400.383753776 +CC NStripHits 2 +PE 175.158 +PP 0.861109 -0.0483801 -2.7953 +PW 0 +SE +ET UN +ID 2369 +TI 1760667400.383773803 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2370 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (303.898373)) (GR Hit: Detector ID 0 and Energy 196.393355) +BD GR Veto +PQ 303.898 +SE +ET UN +ID 2371 +TI 1760667400.383794546 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 151.247 +SE +ET CO +ID 2372 +TI 1760667400.383823394 +CC NStripHits 7 +PQ 16.5914 +SQ 2 +CT 0.55144 0.44856 +TL 1 +TE 356.239 +CE 314.646 1.3835 356.239 1.41078 +CD 2.95642 -0.624839 1.27892 0.0336036 0.0214202 0.0336036 2.4908 -0.564042 1.39533 0.0336036 0.021619 0.0336036 0 0 0 0 0 0 +LA 0.483787 +SE +ET CO +ID 2373 +TI 1760667400.383886098 +CC NStripHits 5 +PQ 0.788284 +SQ 2 +CT 0 1 +TL 1 +TE 49.0865 +CE 369.397 1.13058 49.0865 0.892675 +CD -2.28186 0.350897 -2.67889 0.0336036 0.0309078 0.0336036 -1.81623 0.358802 -2.32967 0.0336036 0.0273953 0.0336036 0 0 0 0 0 0 +LA 0.58209 +SE +ET PH +ID 2374 +TI 1760667400.383924961 +CC NStripHits 4 +PE 456.708 +PP 2.14158 0.105367 -1.86405 +PW 0 +SE +ID 2375 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (804.326670)) (GR Hit: Detector ID 0 and Energy 136.634151) +BD GR Veto +PQ 804.327 +SE +ET PH +ID 2376 +TI 1760667400.383958816 +CC NStripHits 2 +PE 409.558 +PP 4.3533 -0.530412 -2.44608 +PW 0 +SE +ET PH +ID 2377 +TI 1760667400.383976697 +CC NStripHits 3 +PE 150.034 +PP 1.55955 -0.725327 -3.95936 +PW 0 +SE +ET CO +ID 2378 +TI 1760667400.383999347 +CC NStripHits 4 +PQ 0.149938 +SQ 2 +CT 0.502093 0.497907 +TL 1 +TE 162.08 +CE 151.108 0.940057 162.08 0.966719 +CD -0.302953 0.00887752 0.231266 0.0336036 0.0251127 0.0336036 -0.419359 -0.153622 0.347672 0.0336036 0.0238156 0.0336036 0 0 0 0 0 0 +LA 0.231315 +SE +ID 2379 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2380 +TI 1760667400.384031057 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.0148 +SE +ET PH +ID 2381 +TI 1760667400.384050607 +CC NStripHits 4 +PE 452.803 +PP -1.93264 0.289395 -3.84295 +PW 0 +SE +ID 2382 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.837583) (Strip hit removed with energy 16.100638) (Strip hit removed with energy 16.619614) (Strip hit removed with energy 13.255464) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 28.793094)) +BD GR Veto +PQ 1.05583 +SE +ET UN +ID 2383 +TI 1760667400.384189844 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1062 +SE +ET CO +ID 2384 +TI 1760667400.384211540 +CC NStripHits 5 +PQ 1.81163 +SQ 2 +CT 0.588422 0.411578 +TL 1 +TE 370.315 +CE 293.364 1.09877 370.315 0.968623 +CD -1.93264 0.367805 1.62814 0.0336036 0.0225013 0.0336036 0.162672 0.320444 0.464078 0.0336036 0.0381892 0.0336036 0 0 0 0 0 0 +LA 2.39742 +SE +ID 2385 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 2386 +TI 1760667400.384258985 +CC NStripHits 5 +PQ 13.9311 +SQ 2 +CT 0 1 +TL 1 +TE 136.381 +CE 177.884 1.38437 136.381 1.21085 +CD -2.9803 -0.811365 -3.84295 0.0336036 0.0201282 0.0336036 -2.63108 -0.559437 -3.95936 0.0336036 0.0216221 0.0336036 0 0 0 0 0 0 +LA 0.446065 +SE +ET PH +ID 2387 +TI 1760667400.384285449 +CC NStripHits 2 +PE 286.75 +PP 1.44314 -1.02546 -3.95936 +PW 0 +SE +ET PH +ID 2388 +TI 1760667400.384303569 +CC NStripHits 2 +PE 154.895 +PP -2.9803 0.349334 -3.72655 +PW 0 +SE +ID 2389 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (44.576722)) (GR Hit: Detector ID 0 and Energy 628.659874) +BD GR Veto +PQ 44.5767 +SE +ET PH +ID 2390 +TI 1760667400.384330272 +CC NStripHits 2 +PE 32.8451 +PP -2.74748 -1.13938 -0.350766 +PW 0 +SE +ET UN +ID 2391 +TI 1760667400.384351968 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.9452 +SE +ET PH +ID 2392 +TI 1760667400.384371519 +CC NStripHits 7 +PE 664.729 +PP -1.35061 -1.02619 -2.9117 +PW 0 +SE +ET UN +ID 2393 +TI 1760667400.384417057 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 655.365 +SE +ET PH +ID 2394 +TI 1760667400.384450674 +CC NStripHits 2 +PE 281.654 +PP -1.69983 0.355659 -3.84295 +PW 0 +SE +ET CO +ID 2395 +TI 1760667400.384472131 +CC NStripHits 6 +PQ 40.1456 +SQ 2 +CT 0 1 +TL 1 +TE 86.1872 +CE 340.91 1.32822 86.1872 1.2573 +CD -2.51467 -0.951134 0.696891 0.0336036 0.0198367 0.0336036 -1.69983 -1.10483 0.464078 0.0336036 0.0276394 0.0336036 0 0 0 0 0 0 +LA 0.861271 +SE +ET CO +ID 2396 +TI 1760667400.384514331 +CC NStripHits 7 +PQ 15.4159 +SQ 3 +CT 0.0185907 0.090626 +TL 1 +TE 177.805 +CE 263.686 1.5567 177.805 1.85748 +CD -0.768578 0.10797 -2.9117 0.0336036 0.026344 0.0336036 -1.46702 -0.718925 -2.67889 0.0336036 0.0207135 0.0336036 0 0 0 0 0 0 +LA 0.901922 +SE +ID 2397 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.207202) (Strip hit removed with energy 0.848991) +QA StripPairing (Best reduced chi square is not below 25 (37.622769)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 46.689711)) +BD GR Veto +PQ 37.6228 +SE +ET CO +ID 2398 +TI 1760667400.384594678 +CC NStripHits 5 +PQ 26.6758 +SQ 2 +CT 0 1 +TL 1 +TE 141.679 +CE 212.473 0.968828 141.679 1.27439 +CD -1.2342 -0.0631547 1.97736 0.0336036 0.0246018 0.0336036 0.0462656 -0.287421 1.86095 0.0336036 0.023195 0.0336036 0 0 0 0 0 0 +LA 1.30516 +SE +ET PH +ID 2399 +TI 1760667400.384639501 +CC NStripHits 2 +PE 32.3684 +PP -0.884984 0.0026684 -3.37733 +PW 0 +SE +ET CO +ID 2400 +TI 1760667400.384661436 +CC NStripHits 4 +PQ 2.6177 +SQ 2 +CT 0 1 +TL 1 +TE 125.301 +CE 312.821 0.987888 125.301 0.932123 +CD 3.77127 -0.616415 1.39533 0.0336036 0.0214231 0.0336036 3.88767 -0.328194 0.696891 0.0336036 0.0230043 0.0336036 0 0 0 0 0 0 +LA 0.764485 +SE +ID 2401 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.548782) +BD GR Veto +PQ 0.082323 +SE +ET UN +ID 2402 +TI 1760667400.384737730 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.5589 +SE +ID 2403 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.820157) +QA StripPairing (GR Hit: Detector ID 0 and Energy 338.926761) +BD GR Veto +PQ 1.9739 +SE +ET PH +ID 2404 +TI 1760667400.384820222 +CC NStripHits 2 +PE 142.44 +PP 2.37439 -0.135498 -4.07577 +PW 0 +SE +ET PH +ID 2405 +TI 1760667400.384838581 +CC NStripHits 3 +PE 261.167 +PP 2.02517 -0.285104 -3.37733 +PW 0 +SE +ET PH +ID 2406 +TI 1760667400.384860277 +CC NStripHits 2 +PE 444.264 +PP -0.884984 0.356791 -1.63123 +PW 0 +SE +ID 2407 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.116052) +BD GR Veto +PQ 0.527905 +SE +ID 2408 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 291.727919) +BD GR Veto +PQ 0.0069861 +SE +ET UN +ID 2409 +TI 1760667400.384900093 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ID 2410 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 143.263581) +BD GR Veto +PQ 4.92248 +SE +ET UN +ID 2411 +TI 1760667400.384968280 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.397 +SE +ET CO +ID 2412 +TI 1760667400.384984970 +CC NStripHits 4 +PQ 19.4408 +SQ 2 +CT 0.519678 0.480322 +TL 1 +TE 147.444 +CE 158.382 1.38849 147.444 1.33978 +CD 1.44314 -0.133642 1.62814 0.0336036 0.0240178 0.0336036 1.90877 -0.1888 0.696891 0.0336036 0.0235635 0.0336036 0 0 0 0 0 0 +LA 1.04263 +SE +ET PH +ID 2413 +TI 1760667400.385022163 +CC NStripHits 2 +PE 456.891 +PP -2.74748 0.313552 -3.26092 +PW 0 +SE +ID 2414 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.477916) +QA StripPairing (GR Hit: Detector ID 0 and Energy 50.654834) +BD GR Veto +PQ 6.84472 +SE +ET UN +ID 2415 +TI 1760667400.385075092 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2416 +TI 1760667400.385094642 +CC NStripHits 3 +PE 372.889 +PP 4.23689 -0.411606 1.39533 +PW 0 +SE +ET PH +ID 2417 +TI 1760667400.385117292 +CC NStripHits 2 +PE 85.5799 +PP -1.93264 -0.987721 1.51173 +PW 0 +SE +ET PH +ID 2418 +TI 1760667400.385138750 +CC NStripHits 2 +PE 252.281 +PP 0.0462656 -1.15505 -2.56248 +PW 0 +SE +ET PH +ID 2419 +TI 1760667400.385158538 +CC NStripHits 2 +PE 65.909 +PP 1.09392 -0.0039863 -3.72655 +PW 0 +SE +ET PH +ID 2420 +TI 1760667400.385178089 +CC NStripHits 2 +PE 110.218 +PP 0.0462656 -0.833668 -2.7953 +PW 0 +SE +ET PH +ID 2421 +TI 1760667400.385197877 +CC NStripHits 2 +PE 661.928 +PP -0.0701406 -0.523389 -3.95936 +PW 0 +SE +ET PH +ID 2422 +TI 1760667400.385221004 +CC NStripHits 2 +PE 227.98 +PP 0.628297 -1.15741 -1.16561 +PW 0 +SE +ET PH +ID 2423 +TI 1760667400.385240316 +CC NStripHits 2 +PE 112.652 +PP 3.18923 -0.703733 0.114859 +PW 0 +SE +ET UN +ID 2424 +TI 1760667400.385261774 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2425 +TI 1760667400.385274171 +CC NStripHits 2 +PE 143.647 +PP -2.86389 -0.526153 -2.44608 +PW 0 +SE +ID 2426 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (223.568041)) (GR Hit: Detector ID 0 and Energy 107.524331) +BD GR Veto +PQ 223.568 +SE +ET PH +ID 2427 +TI 1760667400.385300397 +CC NStripHits 2 +PE 194.301 +PP -2.04905 -0.470342 0.114859 +PW 0 +SE +ET PH +ID 2428 +TI 1760667400.385319948 +CC NStripHits 4 +PE 455.494 +PP -0.0701406 0.35173 -4.30858 +PW 0 +SE +ID 2429 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.464800) (Strip hit removed with energy 8.225466) (Strip hit removed with energy 8.961732) (Strip hit removed with energy 18.369529) +BD GR Veto +PQ +SE +ET CO +ID 2430 +TI 1760667400.385388135 +CC NStripHits 4 +PQ 0.546551 +SQ 2 +CT 0 1 +TL 1 +TE 92.9742 +CE 126.395 0.949833 92.9742 0.948411 +CD 3.42205 -0.729459 -0.932797 0.0336036 0.0206351 0.0336036 3.77127 0.155299 -1.0492 0.0336036 0.0273163 0.0336036 0 0 0 0 0 0 +LA 0.95828 +SE +ET CO +ID 2431 +TI 1760667400.404367685 +CC NStripHits 5 +PQ 0.0258552 +SQ 2 +CT 0 1 +TL 1 +TE 115.199 +CE 210.576 1.08425 115.199 0.881423 +CD 2.25798 0.361837 2.44298 0.0336036 0.0258498 0.0336036 2.02517 -0.873941 1.39533 0.0336036 0.0198803 0.0336036 0 0 0 0 0 0 +LA 1.63674 +SE +ID 2432 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 189.553290) +BD GR Veto +PQ 0.539305 +SE +ET CO +ID 2433 +TI 1760667400.404524564 +CC NStripHits 5 +PQ 67.4266 +SQ 2 +CT 0 1 +TL 1 +TE 136.524 +CE 169.922 1.77393 136.524 1.33227 +CD -2.39827 0.0369179 1.62814 0.0336036 0.0254002 0.0336036 -2.63108 0.339533 1.04611 0.0336036 0.0347116 0.0336036 0 0 0 0 0 0 +LA 0.696086 +SE +ID 2434 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 45.677335) +BD GR Veto +PQ 2.25793 +SE +ET PH +ID 2435 +TI 1760667400.404603958 +CC NStripHits 2 +PE 254.537 +PP -0.0701406 -0.663383 -4.07577 +PW 0 +SE +ET UN +ID 2436 +TI 1760667400.404643297 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2437 +TI 1760667400.404683113 +CC NStripHits 2 +PE 93.3956 +PP 0.279078 0.368196 -1.39842 +PW 0 +SE +ID 2438 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.869144) +BD GR Veto +PQ 1.1895 +SE +ID 2439 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.531649) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 111.423554) (GR Hit: Detector ID 0 and Energy 88.116812) +BD GR Veto +PQ 14.9237 +SE +ET PH +ID 2440 +TI 1760667400.404808282 +CC NStripHits 2 +PE 415.36 +PP -1.81623 -0.440462 -0.816391 +PW 0 +SE +ET CO +ID 2441 +TI 1760667400.404843091 +CC NStripHits 4 +PQ 0.424432 +SQ 2 +CT 0.522611 0.477389 +TL 1 +TE 190.043 +CE 155.793 0.94874 190.043 0.940775 +CD -0.419359 -1.08893 -1.74764 0.0336036 0.0249959 0.0336036 0.162672 -0.304167 -1.98045 0.0336036 0.0231554 0.0336036 0 0 0 0 0 0 +LA 1.0044 +SE +ET CO +ID 2442 +TI 1760667400.404906988 +CC NStripHits 4 +PQ 1.48117 +SQ 2 +CT 0 1 +TL 1 +TE 125.276 +CE 164.109 0.956959 125.276 0.943419 +CD 2.72361 0.234004 -3.37733 0.0336036 0.0308457 0.0336036 2.6072 0.154784 -3.49373 0.0336036 0.027305 0.0336036 0 0 0 0 0 0 +LA 0.182691 +SE +ET UN +ID 2443 +TI 1760667400.404951572 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET PH +ID 2444 +TI 1760667400.405038356 +CC NStripHits 3 +PE 272.766 +PP 1.32673 -0.509674 -4.42498 +PW 0 +SE +ET PH +ID 2445 +TI 1760667400.405076503 +CC NStripHits 2 +PE 189.499 +PP -2.51467 0.156902 -3.14452 +PW 0 +SE +ET UN +ID 2446 +TI 1760667400.405115365 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.2205 +SE +ET PH +ID 2447 +TI 1760667400.405152797 +CC NStripHits 3 +PE 113.93 +PP 0.0462656 -0.270085 1.04611 +PW 0 +SE +ET PH +ID 2448 +TI 1760667400.405215263 +CC NStripHits 4 +PE 114.031 +PP 3.65486 -0.684868 1.27892 +PW 0 +SE +ET PH +ID 2449 +TI 1760667400.405257701 +CC NStripHits 2 +PE 28.875 +PP -2.9803 -0.720319 -2.32967 +PW 0 +SE +ID 2450 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.863727) +BD GR Veto +PQ 2.56408 +SE +ET PH +ID 2451 +TI 1760667400.405302524 +CC NStripHits 3 +PE 158.376 +PP 0.162672 -0.159918 -0.816391 +PW 0 +SE +ET UN +ID 2452 +TI 1760667400.405340671 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 239.553 +SE +ET PH +ID 2453 +TI 1760667400.405391454 +CC NStripHits 5 +PE 186.16 +PP -0.0701406 -0.902567 -1.74764 +PW 0 +SE +ID 2454 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.966866) (Strip hit removed with energy 10.082547) +QA StripPairing (GR Hit: Detector ID 0 and Energy 146.016251) +BD GR Veto +PQ 5.55189 +SE +ET PH +ID 2455 +TI 1760667400.405451297 +CC NStripHits 2 +PE 246.184 +PP -0.419359 -0.845969 -1.0492 +PW 0 +SE +ET PH +ID 2456 +TI 1760667400.405471324 +CC NStripHits 2 +PE 258.239 +PP -2.74748 -0.379406 1.97736 +PW 0 +SE +ET PH +ID 2457 +TI 1760667400.405489444 +CC NStripHits 3 +PE 90.4264 +PP -2.63108 0.109138 -0.467172 +PW 0 +SE +ID 2458 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.264294) (GR Hit: Detector ID 0 and Energy 110.864066) +BD GR Veto +PQ 0.294209 +SE +ET UN +ID 2459 +TI 1760667400.405544042 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 463.958 +SE +ET PH +ID 2460 +TI 1760667400.405577659 +CC NStripHits 3 +PE 460.681 +PP -1.46702 0.296536 0.813297 +PW 0 +SE +ET PH +ID 2461 +TI 1760667400.405598402 +CC NStripHits 3 +PE 230.881 +PP 0.861109 -0.990303 0.696891 +PW 0 +SE +ET CO +ID 2462 +TI 1760667400.405625104 +CC NStripHits 4 +PQ 1.0001 +SQ 2 +CT 0.511344 0.488656 +TL 1 +TE 148.244 +CE 155.268 0.896104 148.244 0.913328 +CD -1.69983 0.228713 1.51173 0.0336036 0.0303988 0.0336036 -1.35061 -0.367578 1.16252 0.0336036 0.022696 0.0336036 0 0 0 0 0 0 +LA 0.774251 +SE +ID 2463 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 126.048872) +BD GR Veto +PQ 1.02993 +SE +ET UN +ID 2464 +TI 1760667400.405666589 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 4 +PE 0 +SE +ET UN +ID 2465 +TI 1760667400.405696630 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2466 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.537061) +QA StripPairing (GR Hit: Detector ID 0 and Energy 306.019279) +BD GR Veto +PQ 1.86051 +SE +ET CO +ID 2467 +TI 1760667400.405746459 +CC NStripHits 5 +PQ 48.4404 +SQ 2 +CT 0.703761 0.296239 +TL 1 +TE 416.227 +CE 247.519 1.42262 416.227 1.32633 +CD -0.419359 -1.14465 -1.51483 0.0336036 0.0286928 0.0336036 -0.884984 -0.645018 -2.21327 0.0336036 0.021348 0.0336036 0 0 0 0 0 0 +LA 0.976861 +SE +ET UN +ID 2468 +TI 1760667400.405782699 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2469 +TI 1760667400.405793190 +CC NStripHits 3 +PE 361.05 +PP -0.535766 0.0253284 0.929703 +PW 0 +SE +ET PH +ID 2470 +TI 1760667400.405813217 +CC NStripHits 2 +PE 240.557 +PP 4.3533 -1.09011 -3.61014 +PW 0 +SE +ET PH +ID 2471 +TI 1760667400.405828714 +CC NStripHits 2 +PE 28.1089 +PP 3.42205 -0.782436 -0.234359 +PW 0 +SE +ID 2472 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2473 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 130.086777) (GR Hit: Detector ID 0 and Energy 82.297313) +BD GR Veto +PQ 1.44224 +SE +ID 2474 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 283.613237) +BD GR Veto +PQ 0.988828 +SE +ET UN +ID 2475 +TI 1760667400.405875682 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2476 +TI 1760667400.405893325 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 58.4075 +SE +ET PH +ID 2477 +TI 1760667400.405915975 +CC NStripHits 3 +PE 348.864 +PP 3.53845 0.133988 -2.9117 +PW 0 +SE +ET UN +ID 2478 +TI 1760667400.405935764 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2479 +TI 1760667400.405956268 +CC NStripHits 2 +PE 228.037 +PP -2.9803 -0.0447517 -1.98045 +PW 0 +SE +ET PH +ID 2480 +TI 1760667400.405971765 +CC NStripHits 3 +PE 163.965 +PP 1.44314 -0.933719 1.62814 +PW 0 +SE +ID 2481 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 311.106683) +BD GR Veto +PQ 4.85657 +SE +ET UN +ID 2482 +TI 1760667400.405998945 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2483 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 148.873822) +BD GR Veto +PQ 1.20068 +SE +ET PH +ID 2484 +TI 1760667400.406040668 +CC NStripHits 2 +PE 70.6207 +PP 1.09392 -0.947785 -2.7953 +PW 0 +SE +ET PH +ID 2485 +TI 1760667400.406068563 +CC NStripHits 3 +PE 407.163 +PP 0.977516 -1.14945 1.51173 +PW 0 +SE +ID 2486 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 249.219656) +BD GR Veto +PQ 0.426964 +SE +ET PH +ID 2487 +TI 1760667400.406101465 +CC NStripHits 2 +PE 313.149 +PP -0.0701406 0.32046 2.6758 +PW 0 +SE +ET PH +ID 2488 +TI 1760667400.406129121 +CC NStripHits 2 +PE 234.547 +PP 1.44314 -0.636016 2.32658 +PW 0 +SE +ET PH +ID 2489 +TI 1760667400.406147480 +CC NStripHits 2 +PE 113.189 +PP -2.04905 -0.382508 -3.26092 +PW 0 +SE +ET CO +ID 2490 +TI 1760667400.406166315 +CC NStripHits 5 +PQ 24.7766 +SQ 2 +CT 0 1 +TL 1 +TE 155.55 +CE 356.881 1.32336 155.55 1.28918 +CD 3.07283 -1.02819 1.62814 0.0336036 0.0205103 0.0336036 2.4908 -0.862251 2.09377 0.0336036 0.019935 0.0336036 0 0 0 0 0 0 +LA 0.763614 +SE +ID 2491 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.676114) +QA StripPairing (Best reduced chi square is not below 25 (60.596571)) (GR Hit: Detector ID 0 and Energy 271.461296) +BD GR Veto +PQ 60.5966 +SE +ET PH +ID 2492 +TI 1760667400.406231880 +CC NStripHits 3 +PE 343.239 +PP 2.02517 -1.15084 -3.72655 +PW 0 +SE +ET CO +ID 2493 +TI 1760667400.406252145 +CC NStripHits 5 +PQ 30.4544 +SQ 2 +CT 0 1 +TL 1 +TE 143.423 +CE 520.972 2.03083 143.423 0.914225 +CD 2.25798 0.0530975 -3.84295 0.0336036 0.0255233 0.0336036 1.32673 -1.04661 -3.95936 0.0336036 0.0210852 0.0336036 0 0 0 0 0 0 +LA 1.44573 +SE +ET PH +ID 2494 +TI 1760667400.406284332 +CC NStripHits 2 +PE 85.6514 +PP 1.55955 0.252717 -1.98045 +PW 0 +SE +ET PH +ID 2495 +TI 1760667400.426321744 +CC NStripHits 3 +PE 162.877 +PP -2.39827 -1.0728 -0.816391 +PW 0 +SE +ET UN +ID 2496 +TI 1760667400.426382064 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 387.096 +SE +ET PH +ID 2497 +TI 1760667400.426425695 +CC NStripHits 2 +PE 120.601 +PP -0.652172 0.181941 -2.7953 +PW 0 +SE +ET UN +ID 2498 +TI 1760667400.426444530 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 200.202 +SE +ID 2499 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (774.352390)) (GR Hit: Detector ID 0 and Energy 129.044066) +BD GR Veto +PQ 774.352 +SE +ET UN +ID 2500 +TI 1760667400.426479578 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2501 +TI 1760667400.426490306 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 42.483 +SE +ET PH +ID 2502 +TI 1760667400.426511049 +CC NStripHits 4 +PE 469.786 +PP -1.81623 -0.498155 -1.63123 +PW 0 +SE +ET PH +ID 2503 +TI 1760667400.426533937 +CC NStripHits 4 +PE 191.646 +PP 1.79236 -1.17044 -4.6578 +PW 0 +SE +ET PH +ID 2504 +TI 1760667400.426554441 +CC NStripHits 4 +PE 484.997 +PP 1.44314 0.096197 1.86095 +PW 0 +SE +ET UN +ID 2505 +TI 1760667400.426580667 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 309.41 +SE +ID 2506 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.550841) +BD GR Veto +PQ 6.20274 +SE +ET UN +ID 2507 +TI 1760667400.426640987 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ID 2508 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.383246) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 32.386102)) +BD GR Veto +PQ 17.0011 +SE +ET UN +ID 2509 +TI 1760667400.426697015 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 131.246 +SE +ET PH +ID 2510 +TI 1760667400.426752090 +CC NStripHits 3 +PE 429.362 +PP 1.21033 -0.181801 1.86095 +PW 0 +SE +ID 2511 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.398745) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 64.702133)) +BD GR Veto +PQ 9.89239 +SE +ET PH +ID 2512 +TI 1760667400.426811933 +CC NStripHits 2 +PE 658.406 +PP 1.90877 -0.902965 0.347672 +PW 0 +SE +ID 2513 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 288.036814) +BD GR Veto +PQ 0.118119 +SE +ET PH +ID 2514 +TI 1760667400.426854610 +CC NStripHits 2 +PE 460.812 +PP -0.884984 -0.00387014 -0.117953 +PW 0 +SE +ET PH +ID 2515 +TI 1760667400.426878929 +CC NStripHits 2 +PE 77.8485 +PP -2.39827 -0.91089 -3.26092 +PW 0 +SE +ET PH +ID 2516 +TI 1760667400.426904201 +CC NStripHits 3 +PE 181.194 +PP -1.1178 -0.00769171 -3.49373 +PW 0 +SE +ET PH +ID 2517 +TI 1760667400.426926136 +CC NStripHits 4 +PE 660.611 +PP 2.72361 -0.797071 2.32658 +PW 0 +SE +ET PH +ID 2518 +TI 1760667400.426949977 +CC NStripHits 5 +PE 630.84 +PP 1.90877 -0.987467 -2.21327 +PW 0 +SE +ET PH +ID 2519 +TI 1760667400.426978111 +CC NStripHits 2 +PE 97.1607 +PP 2.25798 0.366738 -3.72655 +PW 0 +SE +ET PH +ID 2520 +TI 1760667400.426995754 +CC NStripHits 2 +PE 357.923 +PP -2.86389 0.222513 1.27892 +PW 0 +SE +ET PH +ID 2521 +TI 1760667400.427015781 +CC NStripHits 2 +PE 141.858 +PP 1.09392 0.221922 0.231266 +PW 0 +SE +ET UN +ID 2522 +TI 1760667400.427034378 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.4856 +SE +ET UN +ID 2523 +TI 1760667400.427074909 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 41.0936 +SE +ET PH +ID 2524 +TI 1760667400.427105188 +CC NStripHits 2 +PE 511.873 +PP -2.39827 0.178379 0.580484 +PW 0 +SE +ET PH +ID 2525 +TI 1760667400.427133321 +CC NStripHits 2 +PE 140.032 +PP 1.79236 -1.1572 -0.234359 +PW 0 +SE +ET PH +ID 2526 +TI 1760667400.427155017 +CC NStripHits 4 +PE 325.427 +PP 0.744703 -0.769049 -0.699984 +PW 0 +SE +ET PH +ID 2527 +TI 1760667400.427180051 +CC NStripHits 3 +PE 64.3918 +PP -1.69983 -1.10848 1.51173 +PW 0 +SE +ID 2528 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 42.099342) +BD GR Veto +PQ 4.94647 +SE +ET CO +ID 2529 +TI 1760667400.427209615 +CC NStripHits 7 +PQ 0.613746 +SQ 3 +CT 5.3382e-05 0.11994 +TL 1 +TE 147.532 +CE 516.828 1.48444 147.532 0.909987 +CD 2.84002 -0.221375 0.580484 0.0336036 0.023368 0.0336036 2.95642 -0.202839 0.696891 0.0336036 0.0234698 0.0336036 0 0 0 0 0 0 +LA 0.16566 +SE +ET PH +ID 2530 +TI 1760667400.427253723 +CC NStripHits 3 +PE 319.934 +PP -2.39827 -0.818297 -0.350766 +PW 0 +SE +ET PH +ID 2531 +TI 1760667400.427273988 +CC NStripHits 2 +PE 79.5103 +PP 1.55955 -0.838159 -0.467172 +PW 0 +SE +ID 2532 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 262.564038) +BD GR Veto +PQ 13.6335 +SE +ID 2533 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.193593) (Strip hit removed with energy 8.225466) +QA StripPairing (Best reduced chi square is not below 25 (407.689894)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 55.470494) (GR Hit: Detector ID 0 and Energy 109.737483) +BD GR Veto +PQ 407.69 +SE +ET PH +ID 2534 +TI 1760667400.427351713 +CC NStripHits 2 +PE 74.11 +PP -1.46702 0.229458 1.51173 +PW 0 +SE +ET PH +ID 2535 +TI 1760667400.427370309 +CC NStripHits 2 +PE 119.689 +PP -2.63108 -0.353692 1.51173 +PW 0 +SE +ET PH +ID 2536 +TI 1760667400.427388429 +CC NStripHits 3 +PE 164.995 +PP -2.16545 0.370628 -0.932797 +PW 0 +SE +ID 2537 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2538 +TI 1760667400.427413225 +CC NStripHits 2 +PE 314.215 +PP 3.18923 -0.202427 2.21017 +PW 0 +SE +ET PH +ID 2539 +TI 1760667400.427435159 +CC NStripHits 3 +PE 260.756 +PP -1.1178 0.234059 -2.9117 +PW 0 +SE +ET CO +ID 2540 +TI 1760667400.427456617 +CC NStripHits 4 +PQ 18.0619 +SQ 2 +CT 0 1 +TL 1 +TE 119.476 +CE 439.477 1.31266 119.476 0.945035 +CD -2.39827 0.362593 -1.16561 0.0336036 0.0254479 0.0336036 -1.35061 0.299357 0.929703 0.0336036 0.0386019 0.0336036 0 0 0 0 0 0 +LA 2.34349 +SE +ET PH +ID 2541 +TI 1760667400.427491188 +CC NStripHits 2 +PE 164.009 +PP 0.861109 0.176519 -3.84295 +PW 0 +SE +ET PH +ID 2542 +TI 1760667400.427515983 +CC NStripHits 4 +PE 501.488 +PP -1.35061 -0.520335 -4.54139 +PW 0 +SE +ET UN +ID 2543 +TI 1760667400.427543878 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2544 +TI 1760667400.427562236 +CC NStripHits 3 +PE 124.978 +PP -1.1178 0.20413 -4.19217 +PW 0 +SE +ET PH +ID 2545 +TI 1760667400.427583694 +CC NStripHits 2 +PE 91.7922 +PP -1.81623 0.315186 -0.932797 +PW 0 +SE +ET PH +ID 2546 +TI 1760667400.427604675 +CC NStripHits 2 +PE 657.25 +PP 2.6072 -0.634008 1.74455 +PW 0 +SE +ET UN +ID 2547 +TI 1760667400.427628517 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 10 +PE 0 +SE +ET UN +ID 2548 +TI 1760667400.427683115 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.987 +SE +ID 2549 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.262702) +BD GR Veto +PQ 24.4265 +SE +ET UN +ID 2550 +TI 1760667400.427710294 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 189.452 +SE +ET UN +ID 2551 +TI 1760667400.427741765 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.6446 +SE +ET UN +ID 2552 +TI 1760667400.427760601 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 642.425 +SE +ET UN +ID 2553 +TI 1760667400.427796125 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 251.003 +SE +ID 2554 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.783941) +BD GR Veto +PQ 0.832386 +SE +ET PH +ID 2555 +TI 1760667400.427830219 +CC NStripHits 2 +PE 128.392 +PP -0.535766 -1.12672 -2.67889 +PW 0 +SE +ID 2556 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 166.092003) +BD GR Veto +PQ 0.0343487 +SE +ET PH +ID 2557 +TI 1760667400.427858114 +CC NStripHits 2 +PE 105.885 +PP -0.652172 -0.821884 1.62814 +PW 0 +SE +ID 2558 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (5147.341749)) (GR Hit: Detector ID 0 and Energy 408.821255) +BD GR Veto +PQ 5147.34 +SE +ET PH +ID 2559 +TI 1760667400.449757337 +CC NStripHits 3 +PE 142.095 +PP 0.0462656 -0.131491 -1.74764 +PW 0 +SE +ET PH +ID 2560 +TI 1760667400.449805974 +CC NStripHits 2 +PE 82.938 +PP 1.44314 0.307372 2.09377 +PW 0 +SE +ET UN +ID 2561 +TI 1760667400.449828386 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 155.592 +SE +ID 2562 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 138.791326) +BD GR Veto +PQ 0.482479 +SE +ET PH +ID 2563 +TI 1760667400.449865818 +CC NStripHits 2 +PE 107.873 +PP -1.69983 0.340703 1.74455 +PW 0 +SE +ET PH +ID 2564 +TI 1760667400.449884891 +CC NStripHits 2 +PE 449.456 +PP -2.9803 -0.42074 -3.26092 +PW 0 +SE +ET CO +ID 2565 +TI 1760667400.449902057 +CC NStripHits 8 +PQ 18.4386 +SQ 3 +CT 0.000189675 0.263544 +TL 1 +TE 80.6572 +CE 399.75 2.29933 80.6572 0.9591 +CD 0.0462656 0.178194 0.929703 0.0336036 0.027895 0.0336036 1.55955 -0.300908 1.51173 0.0336036 0.0231637 0.0336036 0 0 0 0 0 0 +LA 0.593937 +SE +ET PH +ID 2566 +TI 1760667400.449954032 +CC NStripHits 2 +PE 156.298 +PP -1.35061 0.34672 0.347672 +PW 0 +SE +ET PH +ID 2567 +TI 1760667400.449972152 +CC NStripHits 2 +PE 216.65 +PP 1.09392 0.345113 0.696891 +PW 0 +SE +ET PH +ID 2568 +TI 1760667400.449993133 +CC NStripHits 3 +PE 120.808 +PP -0.884984 -0.299963 -3.37733 +PW 0 +SE +ET UN +ID 2569 +TI 1760667400.450027942 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 439.235 +SE +ET PH +ID 2570 +TI 1760667400.450072765 +CC NStripHits 2 +PE 143.909 +PP 3.07283 -0.865106 -0.350766 +PW 0 +SE +ET UN +ID 2571 +TI 1760667400.450093269 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2572 +TI 1760667400.450109958 +CC NStripHits 2 +PE 122.861 +PP -1.93264 -0.946934 0.580484 +PW 0 +SE +ET CO +ID 2573 +TI 1760667400.450130939 +CC NStripHits 5 +PQ 1.10144 +SQ 2 +CT 0 1 +TL 1 +TE 126.252 +CE 202.923 0.912004 126.252 1.06337 +CD 0.162672 -1.02896 1.39533 0.0336036 0.0205276 0.0336036 -0.186547 -0.586255 1.16252 0.0336036 0.0215437 0.0336036 0 0 0 0 0 0 +LA 0.610035 +SE +ET PH +ID 2574 +TI 1760667400.450170993 +CC NStripHits 3 +PE 291.637 +PP 2.72361 0.268577 -3.95936 +PW 0 +SE +ET PH +ID 2575 +TI 1760667400.450190544 +CC NStripHits 3 +PE 150.556 +PP -2.51467 -0.219974 -3.37733 +PW 0 +SE +ET CO +ID 2576 +TI 1760667400.450210809 +CC NStripHits 7 +PQ 13.0524 +SQ 2 +CT 0 1 +TL 1 +TE 102.865 +CE 308.637 1.32581 102.865 1.81847 +CD 1.67595 -0.335737 0.580484 0.0336036 0.0229398 0.0336036 2.6072 -0.000621676 -0.00154687 0.0336036 0.0249998 0.0336036 0 0 0 0 0 0 +LA 1.14817 +SE +ET CO +ID 2577 +TI 1760667400.450261592 +CC NStripHits 4 +PQ 31.7844 +SQ 2 +CT 0 1 +TL 1 +TE 62.9513 +CE 150.09 1.41227 62.9513 0.912844 +CD -1.69983 0.163178 -4.07577 0.0336036 0.0274945 0.0336036 -1.00139 0.179389 -4.19217 0.0336036 0.0279322 0.0336036 0 0 0 0 0 0 +LA 0.708259 +SE +ET PH +ID 2578 +TI 1760667400.450291633 +CC NStripHits 3 +PE 114.444 +PP 1.32673 -0.171495 1.27892 +PW 0 +SE +ID 2579 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (3926.853075)) (GR Hit: Detector ID 0 and Energy 346.760505) +BD GR Veto +PQ 3926.85 +SE +ET CO +ID 2580 +TI 1760667400.450320243 +CC NStripHits 6 +PQ 0.518428 +SQ 3 +CT 0.374769 1.5051 +TL 1 +TE 377.444 +CE 241.957 1.32458 377.444 0.958385 +CD 1.55955 0.175322 0.114859 0.0336036 0.0278091 0.0336036 -0.652172 0.359742 0.929703 0.0336036 0.0269284 0.0336036 0 0 0 0 0 0 +LA 2.36425 +SE +ID 2581 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1011.330473)) (GR Hit: Detector ID 0 and Energy 316.663453) +BD GR Veto +PQ 1011.33 +SE +ET UN +ID 2582 +TI 1760667400.450378179 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +CC NStripHits 11 +PE 0 +SE +ET UN +ID 2583 +TI 1760667400.450434207 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 657.505 +SE +ET PH +ID 2584 +TI 1760667400.450464248 +CC NStripHits 3 +PE 474.913 +PP -0.0701406 -0.46355 2.55939 +PW 0 +SE +ET PH +ID 2585 +TI 1760667400.450484752 +CC NStripHits 4 +PE 234.783 +PP 3.07283 -0.430334 0.929703 +PW 0 +SE +ET PH +ID 2586 +TI 1760667400.450515508 +CC NStripHits 2 +PE 55.9105 +PP 1.09392 0.278527 -0.932797 +PW 0 +SE +ET CO +ID 2587 +TI 1760667400.450533390 +CC NStripHits 6 +PQ 24.8667 +SQ 3 +CT 0.600753 1.38799 +TL 1 +TE 270.008 +CE 262.452 1.62549 270.008 1.39494 +CD 3.18923 -0.265099 -3.72655 0.0336036 0.0233099 0.0336036 3.42205 0.0141643 -3.61014 0.0336036 0.0251811 0.0336036 0 0 0 0 0 0 +LA 0.381765 +SE +ET UN +ID 2588 +TI 1760667400.450567245 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.9287 +SE +ET UN +ID 2589 +TI 1760667400.450584650 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 667.578 +SE +ID 2590 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.148128) +QA StripPairing (Best reduced chi square is not below 25 (106.890651)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 235.838509)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 247.247392) (GR Hit: Detector ID 0 and Energy 72.800703) +BD GR Veto +PQ 106.891 +SE +ID 2591 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.318016) (Strip hit removed with energy 7.767947) +QA StripPairing (Best reduced chi square is not below 25 (444.974896)) (GR Hit: Detector ID 0 and Energy 255.988438) +BD GR Veto +PQ 444.975 +SE +ET UN +ID 2592 +TI 1760667400.450659275 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 209.113 +SE +ET PH +ID 2593 +TI 1760667400.450701713 +CC NStripHits 2 +PE 243.554 +PP 4.00408 -0.871278 -0.816391 +PW 0 +SE +ET PH +ID 2594 +TI 1760667400.450721740 +CC NStripHits 3 +PE 207.387 +PP 0.0462656 0.162959 -0.350766 +PW 0 +SE +ET PH +ID 2595 +TI 1760667400.450742006 +CC NStripHits 3 +PE 132.985 +PP 2.02517 -0.0469057 -2.44608 +PW 0 +SE +ET CO +ID 2596 +TI 1760667400.450762033 +CC NStripHits 4 +PQ 87.7647 +SQ 2 +CT 0 1 +TL 1 +TE 79.4765 +CE 354.526 1.26479 79.4765 1.35521 +CD 3.65486 -0.848913 0.696891 0.0336036 0.019991 0.0336036 3.30564 -0.979065 0.813297 0.0336036 0.0199759 0.0336036 0 0 0 0 0 0 +LA 0.390441 +SE +ET CO +ID 2597 +TI 1760667400.450791358 +CC NStripHits 6 +PQ 0.028851 +SQ 2 +CT 0.558014 0.441986 +TL 1 +TE 354.72 +CE 306.158 0.959465 354.72 1.35727 +CD 1.21033 -0.187931 -1.86405 0.0336036 0.0235693 0.0336036 2.37439 0.280169 -3.02811 0.0336036 0.0367958 0.0336036 0 0 0 0 0 0 +LA 1.71149 +SE +ET CO +ID 2598 +TI 1760667400.450833559 +CC NStripHits 4 +PQ 69.5363 +SQ 2 +CT 0.538291 0.461709 +TL 1 +TE 190.259 +CE 159.079 1.24178 190.259 1.35437 +CD 1.79236 0.310939 1.39533 0.0336036 0.0387613 0.0336036 2.25798 -0.286246 1.62814 0.0336036 0.0231991 0.0336036 0 0 0 0 0 0 +LA 0.792233 +SE +ID 2599 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.332093) +BD GR Veto +PQ 0.133864 +SE +ET CO +ID 2600 +TI 1760667400.450875282 +CC NStripHits 7 +PQ 1.0845 +SQ 3 +CT 0.000467053 0.000979953 +TL 1 +TE 138.479 +CE 260.341 1.46414 138.479 0.944602 +CD 3.18923 -0.587997 -1.51483 0.0336036 0.021533 0.0336036 2.84002 -0.655318 -1.28202 0.0336036 0.0212655 0.0336036 0 0 0 0 0 0 +LA 0.425065 +SE +ET PH +ID 2601 +TI 1760667400.450915098 +CC NStripHits 4 +PE 118.063 +PP 3.77127 -0.433005 0.580484 +PW 0 +SE +ID 2602 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (473.317623)) (GR Hit: Detector ID 0 and Energy 97.870135) +BD GR Veto +PQ 473.318 +SE +ET PH +ID 2603 +TI 1760667400.450960874 +CC NStripHits 5 +PE 503.054 +PP 2.84002 -1.04834 0.580484 +PW 0 +SE +ET PH +ID 2604 +TI 1760667400.450988531 +CC NStripHits 3 +PE 114.179 +PP -0.535766 -0.907491 -4.30858 +PW 0 +SE +ET UN +ID 2605 +TI 1760667400.451009035 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2606 +TI 1760667400.451024293 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 656.599 +SE +ET PH +ID 2607 +TI 1760667400.451066970 +CC NStripHits 2 +PE 49.7477 +PP -2.9803 0.378224 1.86095 +PW 0 +SE +ID 2608 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 2609 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.266398) +QA StripPairing (Best reduced chi square is not below 25 (73.039486)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 175.329333) +BD GR Veto +PQ 73.0395 +SE +ET PH +ID 2610 +TI 1760667400.451107740 +CC NStripHits 2 +PE 52.7287 +PP 0.628297 -0.128292 -3.49373 +PW 0 +SE +ET CO +ID 2611 +TI 1760667400.451125621 +CC NStripHits 4 +PQ 20.2651 +SQ 2 +CT 0 1 +TL 1 +TE 63.0366 +CE 368.824 1.29415 63.0366 0.939142 +CD 0.744703 -0.805862 1.27892 0.0336036 0.0201615 0.0336036 -1.93264 -0.633284 2.21017 0.0336036 0.0214064 0.0336036 0 0 0 0 0 0 +LA 2.83993 +SE +ET PH +ID 2612 +TI 1760667400.451160907 +CC NStripHits 2 +PE 124.135 +PP -2.28186 -1.02869 -4.54139 +PW 0 +SE +ET PH +ID 2613 +TI 1760667400.451178312 +CC NStripHits 2 +PE 405.547 +PP 1.67595 0.362585 -3.14452 +PW 0 +SE +ET PH +ID 2614 +TI 1760667400.451198816 +CC NStripHits 2 +PE 33.3495 +PP 1.90877 0.0703568 1.27892 +PW 0 +SE +ET PH +ID 2615 +TI 1760667400.451216459 +CC NStripHits 2 +PE 288.462 +PP 1.90877 -0.439941 0.696891 +PW 0 +SE +ET UN +ID 2616 +TI 1760667400.451240301 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 299.96 +SE +ET UN +ID 2617 +TI 1760667400.451267242 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 147.887 +SE +ID 2618 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 221.700158) +BD GR Veto +PQ 2.16493 +SE +ET PH +ID 2619 +TI 1760667400.451309919 +CC NStripHits 2 +PE 28.3362 +PP 3.07283 -0.870835 -1.39842 +PW 0 +SE +ET UN +ID 2620 +TI 1760667400.451327562 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 192.937 +SE +ET UN +ID 2621 +TI 1760667400.451359987 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 658.713 +SE +ET PH +ID 2622 +TI 1760667400.451411962 +CC NStripHits 2 +PE 135.87 +PP 2.84002 0.346556 -4.54139 +PW 0 +SE +ET CO +ID 2623 +TI 1760667400.470682621 +CC NStripHits 7 +PQ 15.6692 +SQ 3 +CT 0.0283868 0.128579 +TL 1 +TE 348.235 +CE 320.045 1.85238 348.235 1.13466 +CD -0.652172 0.199107 1.27892 0.0336036 0.0286789 0.0336036 3.53845 -0.917673 1.62814 0.0336036 0.0197801 0.0336036 0 0 0 0 0 0 +LA 0.811286 +SE +ET PH +ID 2624 +TI 1760667400.470796108 +CC NStripHits 3 +PE 90.4069 +PP -0.884984 -1.0419 2.32658 +PW 0 +SE +ET PH +ID 2625 +TI 1760667400.470853805 +CC NStripHits 2 +PE 666.677 +PP 0.395484 0.234119 0.114859 +PW 0 +SE +ET UN +ID 2626 +TI 1760667400.470899105 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.3474 +SE +ET PH +ID 2627 +TI 1760667400.470937252 +CC NStripHits 2 +PE 84.9809 +PP -2.51467 -0.0136151 -3.95936 +PW 0 +SE +ET PH +ID 2628 +TI 1760667400.470977544 +CC NStripHits 3 +PE 329.694 +PP -1.81623 0.0973842 0.347672 +PW 0 +SE +ET PH +ID 2629 +TI 1760667400.471020221 +CC NStripHits 2 +PE 190.452 +PP -2.39827 0.169393 1.74455 +PW 0 +SE +ET PH +ID 2630 +TI 1760667400.471054553 +CC NStripHits 2 +PE 72.6098 +PP 1.44314 -0.26234 -3.37733 +PW 0 +SE +ET PH +ID 2631 +TI 1760667400.471100330 +CC NStripHits 2 +PE 269.978 +PP 3.77127 -0.247098 0.813297 +PW 0 +SE +ET PH +ID 2632 +TI 1760667400.471150159 +CC NStripHits 2 +PE 44.9191 +PP -0.535766 -1.17686 -4.6578 +PW 0 +SE +ET CO +ID 2633 +TI 1760667400.471188306 +CC NStripHits 5 +PQ 0.600918 +SQ 2 +CT 0 1 +TL 1 +TE 35.7475 +CE 224.497 1.10723 35.7475 0.903569 +CD -0.535766 -0.162912 0.464078 0.0336036 0.0237373 0.0336036 -0.768578 0.0854681 0.696891 0.0336036 0.0260414 0.0336036 0 0 0 0 0 0 +LA 0.412427 +SE +ET PH +ID 2634 +TI 1760667400.471237897 +CC NStripHits 3 +PE 99.5897 +PP 2.72361 0.100117 -4.19217 +PW 0 +SE +ID 2635 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 272.864151) +BD GR Veto +PQ 1.59202 +SE +ET PH +ID 2636 +TI 1760667400.471273183 +CC NStripHits 3 +PE 146.068 +PP 4.23689 -1.09544 0.813297 +PW 0 +SE +ID 2637 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (111.084234)) (GR Hit: Detector ID 0 and Energy 215.169014) +BD GR Veto +PQ 111.084 +SE +ID 2638 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (37.893620)) (GR Hit: Detector ID 0 and Energy 379.195396) +BD GR Veto +PQ 37.8936 +SE +ID 2639 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (237.644426)) (GR Hit: Detector ID 0 and Energy 658.971450) +BD GR Veto +PQ 237.644 +SE +ET PH +ID 2640 +TI 1760667400.471325159 +CC NStripHits 2 +PE 244.711 +PP -0.302953 -0.502405 -1.39842 +PW 0 +SE +ET UN +ID 2641 +TI 1760667400.471345663 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 2642 +TI 1760667400.471356630 +CC NStripHits 4 +PQ 0.341511 +SQ 2 +CT 0 1 +TL 1 +TE 27.3171 +CE 110.925 0.953574 27.3171 0.932802 +CD 1.09392 -0.438935 -1.74764 0.0336036 0.0221763 0.0336036 0.628297 0.141363 -1.51483 0.0336036 0.0270065 0.0336036 0 0 0 0 0 0 +LA 0.779584 +SE +ID 2643 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 195.447393) +BD GR Veto +PQ 2.5209 +SE +ET PH +ID 2644 +TI 1760667400.471394300 +CC NStripHits 3 +PE 130.646 +PP 3.18923 -0.562544 -1.39842 +PW 0 +SE +ET PH +ID 2645 +TI 1760667400.471418142 +CC NStripHits 3 +PE 176.853 +PP 2.02517 -1.11647 -1.63123 +PW 0 +SE +ID 2646 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2647 +TI 1760667400.471443414 +CC NStripHits 2 +PE 197.192 +PP 0.0462656 -0.674058 1.27892 +PW 0 +SE +ET UN +ID 2648 +TI 1760667400.471463441 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 305.167 +SE +ET PH +ID 2649 +TI 1760667400.471514463 +CC NStripHits 6 +PE 663.403 +PP -2.39827 -0.235652 1.04611 +PW 0 +SE +ET PH +ID 2650 +TI 1760667400.471544742 +CC NStripHits 3 +PE 392.167 +PP 2.14158 -0.501651 -0.234359 +PW 0 +SE +ET CO +ID 2651 +TI 1760667400.471565008 +CC NStripHits 5 +PQ 0.392965 +SQ 2 +CT 0 1 +TL 1 +TE 62.0243 +CE 358.849 1.14046 62.0243 0.928684 +CD -2.16545 -0.992866 -1.86405 0.0336036 0.0200535 0.0336036 -1.1178 -0.895779 -2.67889 0.0336036 0.0198063 0.0336036 0 0 0 0 0 0 +LA 1.33077 +SE +ET UN +ID 2652 +TI 1760667400.471601009 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 651.207 +SE +ET CO +ID 2653 +TI 1760667400.471642971 +CC NStripHits 10 +PQ 1.81575 +SQ 3 +CT 0.0145569 0.0546199 +TL 1 +TE 129.858 +CE 536.459 2.23514 129.858 1.10565 +CD 0.0462656 -0.0374014 -1.0492 0.0336036 0.0247544 0.0336036 -0.768578 0.178839 -1.28202 0.0336036 0.027915 0.0336036 0 0 0 0 0 0 +LA 0.77938 +SE +ET PH +ID 2654 +TI 1760667400.471690416 +CC NStripHits 4 +PE 191.67 +PP 2.95642 -0.584479 -2.56248 +PW 0 +SE +ET PH +ID 2655 +TI 1760667400.471713542 +CC NStripHits 2 +PE 94.5336 +PP 3.30564 0.365356 -4.6578 +PW 0 +SE +ID 2656 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 279.631773) +BD GR Veto +PQ 0.000520004 +SE +ID 2657 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.361504) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 26.057267)) (GR Hit: Detector ID 0 and Energy 74.137872) +BD GR Veto +PQ 6.50878 +SE +ET CO +ID 2658 +TI 1760667400.471780300 +CC NStripHits 4 +PQ 0.0496056 +SQ 2 +CT 0 1 +TL 1 +TE 89.0534 +CE 135.051 0.928786 89.0534 0.925145 +CD -2.51467 -0.779018 -1.63123 0.0336036 0.0202536 0.0336036 -2.04905 -0.908445 -1.74764 0.0336036 0.0197824 0.0336036 0 0 0 0 0 0 +LA 0.497096 +SE +ID 2659 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 2660 +TI 1760667400.471821308 +CC NStripHits 8 +PQ 4.18979 +SQ 4 +CT 0.0220218 0.106206 +TL 1 +TE 320.21 +CE 340.131 1.82801 320.21 0.952994 +CD 2.37439 0.269357 -3.84295 0.0336036 0.0352951 0.0336036 3.07283 -0.0283192 -3.49373 0.0336036 0.0248098 0.0336036 0 0 0 0 0 0 +LA 0.737313 +SE +ET PH +ID 2661 +TI 1760667400.471880912 +CC NStripHits 2 +PE 168.919 +PP 4.00408 0.22194 -0.00154687 +PW 0 +SE +ET CO +ID 2662 +TI 1760667400.471901416 +CC NStripHits 5 +PQ 26.2234 +SQ 2 +CT 0 1 +TL 1 +TE 145.898 +CE 199.479 1.28524 145.898 1.10984 +CD 3.53845 -0.579995 -2.21327 0.0336036 0.0215779 0.0336036 2.14158 -1.10303 -2.9117 0.0336036 0.0273488 0.0336036 0 0 0 0 0 0 +LA 1.647 +SE +ET CO +ID 2663 +TI 1760667400.471959352 +CC NStripHits 5 +PQ 32.874 +SQ 2 +CT 0 1 +TL 1 +TE 105.44 +CE 278.823 1.99527 105.44 1.23337 +CD -1.93264 -1.14825 -0.699984 0.0336036 0.0280005 0.0336036 -1.2342 -0.710052 -1.16561 0.0336036 0.0208292 0.0336036 0 0 0 0 0 0 +LA 0.946913 +SE +ET UN +ID 2664 +TI 1760667400.472010612 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 659.409 +SE +ET PH +ID 2665 +TI 1760667400.472062826 +CC NStripHits 3 +PE 171.551 +PP 1.90877 -0.804257 -3.95936 +PW 0 +SE +ID 2666 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.854009)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 165.129083) +BD GR Veto +PQ 25.854 +SE +ID 2667 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.883824) +BD GR Veto +PQ +SE +ET PH +ID 2668 +TI 1760667400.472151994 +CC NStripHits 2 +PE 60.3078 +PP -1.58342 -0.248029 -3.26092 +PW 0 +SE +ET PH +ID 2669 +TI 1760667400.472171068 +CC NStripHits 2 +PE 90.7205 +PP 0.0462656 0.157284 -2.7953 +PW 0 +SE +ET PH +ID 2670 +TI 1760667400.472191572 +CC NStripHits 4 +PE 200.681 +PP 3.53845 -0.117503 -1.98045 +PW 0 +SE +ET UN +ID 2671 +TI 1760667400.472213983 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET UN +ID 2672 +TI 1760667400.472254514 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 659.588 +SE +ET PH +ID 2673 +TI 1760667400.472312211 +CC NStripHits 3 +PE 90.6686 +PP 1.67595 0.340414 1.97736 +PW 0 +SE +ID 2674 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.942192) +BD GR Veto +PQ 0.476368 +SE +ET PH +ID 2675 +TI 1760667400.472340583 +CC NStripHits 2 +PE 105.906 +PP 1.09392 -0.736969 0.231266 +PW 0 +SE +ET UN +ID 2676 +TI 1760667400.472360849 +BD DepthCalibrationError (Out of Range) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 229.606 +SE +ET PH +ID 2677 +TI 1760667400.472394704 +CC NStripHits 2 +PE 191.227 +PP 1.44314 -1.16281 -4.30858 +PW 0 +SE +ET PH +ID 2678 +TI 1760667400.472415685 +CC NStripHits 3 +PE 155.23 +PP 3.65486 0.366443 -4.07577 +PW 0 +SE +ET CO +ID 2679 +TI 1760667400.472435951 +CC NStripHits 4 +PQ 2.51452 +SQ 2 +CT 0 1 +TL 1 +TE 50.3946 +CE 140.776 0.935419 50.3946 0.911192 +CD -1.35061 0.0524458 -0.350766 0.0336036 0.0255164 0.0336036 -1.2342 0.156993 -0.234359 0.0336036 0.0273538 0.0336036 0 0 0 0 0 0 +LA 0.195018 +SE +ET CO +ID 2680 +TI 1760667400.472465991 +CC NStripHits 4 +PQ 0.661174 +SQ 2 +CT 0 1 +TL 1 +TE 69.5867 +CE 366.635 0.973338 69.5867 0.93153 +CD 0.395484 0.102949 -2.44608 0.0336036 0.0262757 0.0336036 0.977516 0.15874 -3.61014 0.0336036 0.0273929 0.0336036 0 0 0 0 0 0 +LA 1.30265 +SE +ET PH +ID 2681 +TI 1760667400.472506284 +CC NStripHits 2 +PE 62.0771 +PP 3.18923 -1.16371 -1.74764 +PW 0 +SE +ET UN +ID 2682 +TI 1760667400.472526311 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2683 +TI 1760667400.472537279 +CC NStripHits 2 +PE 127.185 +PP 2.02517 -0.617999 -2.21327 +PW 0 +SE +ET PH +ID 2684 +TI 1760667400.472554683 +CC NStripHits 3 +PE 464.633 +PP 4.00408 -0.186206 1.74455 +PW 0 +SE +ET PH +ID 2685 +TI 1760667400.472575187 +CC NStripHits 2 +PE 58.1807 +PP -1.00139 0.230656 -1.16561 +PW 0 +SE +ET PH +ID 2686 +TI 1760667400.472594738 +CC NStripHits 2 +PE 114.065 +PP 1.32673 0.371038 -1.63123 +PW 0 +SE +ET UN +ID 2687 +TI 1760667400.495281457 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2688 +TI 1760667400.495386838 +CC NStripHits 2 +PE 122.963 +PP 4.3533 -0.737181 -1.39842 +PW 0 +SE +ET PH +ID 2689 +TI 1760667400.495424270 +CC NStripHits 2 +PE 284.304 +PP 2.6072 0.317744 0.464078 +PW 0 +SE +ET PH +ID 2690 +TI 1760667400.495465040 +CC NStripHits 2 +PE 131.82 +PP 3.53845 -0.941892 -3.84295 +PW 0 +SE +ET UN +ID 2691 +TI 1760667400.495492696 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 220.795 +SE +ET PH +ID 2692 +TI 1760667400.495563983 +CC NStripHits 4 +PE 283.737 +PP 4.23689 -0.014307 1.74455 +PW 0 +SE +ET CO +ID 2693 +TI 1760667400.495601654 +CC NStripHits 4 +PQ 10.179 +SQ 2 +CT 0 1 +TL 1 +TE 50.6541 +CE 239.688 0.924175 50.6541 1.22458 +CD -1.93264 -0.60797 -1.0492 0.0336036 0.0214338 0.0336036 -2.51467 -1.00027 -0.699984 0.0336036 0.0201148 0.0336036 0 0 0 0 0 0 +LA 0.783971 +SE +ET PH +ID 2694 +TI 1760667400.495660305 +CC NStripHits 3 +PE 412.852 +PP -1.00139 -0.423066 -2.7953 +PW 0 +SE +ET PH +ID 2695 +TI 1760667400.495692253 +CC NStripHits 2 +PE 175.411 +PP -1.35061 -0.485164 -4.30858 +PW 0 +SE +ET PH +ID 2696 +TI 1760667400.495720863 +CC NStripHits 2 +PE 383.643 +PP -2.86389 -0.814413 -3.02811 +PW 0 +SE +ET PH +ID 2697 +TI 1760667400.495751380 +CC NStripHits 2 +PE 95.9162 +PP -1.93264 -0.400893 -4.42498 +PW 0 +SE +ET UN +ID 2698 +TI 1760667400.495780467 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8849 +SE +ID 2699 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (506.689275)) (GR Hit: Detector ID 0 and Energy 220.199572) +BD GR Veto +PQ 506.689 +SE +ET UN +ID 2700 +TI 1760667400.495823144 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 671.021 +SE +ID 2701 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.193546) (Strip hit removed with energy 16.904617) +QA StripPairing (Best reduced chi square is not below 25 (42.811850)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 234.010125)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 33.703912) +BD GR Veto +PQ 42.8118 +SE +ET PH +ID 2702 +TI 1760667400.495951414 +CC NStripHits 4 +PE 350.488 +PP -2.63108 -0.650638 1.97736 +PW 0 +SE +ET PH +ID 2703 +TI 1760667400.495989084 +CC NStripHits 2 +PE 128.363 +PP 2.37439 0.329034 1.04611 +PW 0 +SE +ET CO +ID 2704 +TI 1760667400.496020793 +CC NStripHits 7 +PQ 2.36104 +SQ 3 +CT 0.000438188 0.00342886 +TL 1 +TE 278.645 +CE 385.032 1.67588 278.645 1.15621 +CD 0.977516 -0.0918526 -3.14452 0.0336036 0.0243261 0.0336036 0.744703 -0.365529 -3.02811 0.0336036 0.0227115 0.0336036 0 0 0 0 0 0 +LA 0.377693 +SE +ET PH +ID 2705 +TI 1760667400.496069669 +CC NStripHits 3 +PE 158.924 +PP 1.09392 -0.232647 -1.63123 +PW 0 +SE +ET PH +ID 2706 +TI 1760667400.496110439 +CC NStripHits 5 +PE 662.598 +PP 0.628297 -0.690921 -4.19217 +PW 0 +SE +ET CO +ID 2707 +TI 1760667400.496138095 +CC NStripHits 4 +PQ 0.178163 +SQ 2 +CT 0 1 +TL 1 +TE 26.1916 +CE 73.016 0.923117 26.1916 0.937907 +CD -1.1178 -0.82198 -1.28202 0.0336036 0.0200662 0.0336036 -0.652172 -0.806128 -1.16561 0.0336036 0.02016 0.0336036 0 0 0 0 0 0 +LA 0.480221 +SE +ET UN +ID 2708 +TI 1760667400.496166467 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 456.795 +SE +ET CO +ID 2709 +TI 1760667400.496195077 +CC NStripHits 4 +PQ 71.2481 +SQ 2 +CT 0 1 +TL 1 +TE 49.1196 +CE 115.412 1.35772 49.1196 1.25155 +CD 2.25798 -0.702136 -0.117953 0.0336036 0.0209449 0.0336036 2.6072 -0.980318 -0.234359 0.0336036 0.0199818 0.0336036 0 0 0 0 0 0 +LA 0.4614 +SE +ET PH +ID 2710 +TI 1760667400.496226072 +CC NStripHits 2 +PE 115.765 +PP 1.44314 0.153404 0.580484 +PW 0 +SE +ET PH +ID 2711 +TI 1760667400.496244430 +CC NStripHits 2 +PE 170.838 +PP 3.53845 -0.32036 1.51173 +PW 0 +SE +ID 2712 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.327248) +QA StripPairing (Event contains multiple hits on a single strip) +BD GR Veto +PQ 0.0987615 +SE +ID 2713 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 193.360186) +BD GR Veto +PQ 3.19501 +SE +ET PH +ID 2714 +TI 1760667400.496293306 +CC NStripHits 3 +PE 260.478 +PP 2.37439 -0.0120003 1.86095 +PW 0 +SE +ET CO +ID 2715 +TI 1760667400.496314048 +CC NStripHits 4 +PQ 11.488 +SQ 2 +CT 0 1 +TL 1 +TE 113.455 +CE 410.187 0.993516 113.455 1.30891 +CD -2.51467 0.0661977 0.580484 0.0336036 0.0257098 0.0336036 -2.28186 0.0709203 -0.583578 0.0336036 0.0257931 0.0336036 0 0 0 0 0 0 +LA 1.18712 +SE +ID 2716 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (102.512334)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 131.045529) (GR Hit: Detector ID 0 and Energy 307.198370) +BD GR Veto +PQ 102.512 +SE +ID 2717 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.757547) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 110.389618) +BD GR Veto +PQ 23.9938 +SE +ID 2718 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.288112) +BD GR Veto +PQ 4.06833 +SE +ET PH +ID 2719 +TI 1760667400.496411800 +CC NStripHits 2 +PE 94.9896 +PP 1.21033 0.333129 -4.54139 +PW 0 +SE +ET PH +ID 2720 +TI 1760667400.496430397 +CC NStripHits 2 +PE 145.024 +PP 1.44314 -0.576735 -2.9117 +PW 0 +SE +ID 2721 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.485612) (Strip hit removed with energy 10.151135) +QA StripPairing (GR Hit: Detector ID 0 and Energy 82.788190) +BD GR Veto +PQ 2.77755 +SE +ID 2722 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.839916) +QA StripPairing (Best reduced chi square is not below 25 (803.508969)) (GR Hit: Detector ID 0 and Energy 930.557012) +BD GR Veto +PQ 803.509 +SE +ID 2723 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 159.239992) +BD GR Veto +PQ 2.96646 +SE +ET PH +ID 2724 +TI 1760667400.496520042 +CC NStripHits 3 +PE 151.023 +PP 1.09392 -0.308747 0.696891 +PW 0 +SE +ET PH +ID 2725 +TI 1760667400.496541500 +CC NStripHits 3 +PE 145.732 +PP 3.30564 0.37112 -1.98045 +PW 0 +SE +ET CO +ID 2726 +TI 1760667400.496561765 +CC NStripHits 4 +PQ 0.329632 +SQ 2 +CT 0 1 +TL 1 +TE 88.5687 +CE 115.992 0.929398 88.5687 0.935734 +CD -0.302953 0.04687 -2.44608 0.0336036 0.0254663 0.0336036 -0.535766 0.368056 -2.56248 0.0336036 0.0223516 0.0336036 0 0 0 0 0 0 +LA 0.413414 +SE +ET UN +ID 2727 +TI 1760667400.496586561 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 664.968 +SE +ID 2728 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (945.399832)) (GR Hit: Detector ID 0 and Energy 124.022306) +BD GR Veto +PQ 945.4 +SE +ID 2729 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.009504) +BD GR Veto +PQ 7.12184 +SE +ET PH +ID 2730 +TI 1760667400.496648073 +CC NStripHits 2 +PE 334.805 +PP 0.511891 -0.36625 -4.30858 +PW 0 +SE +ET PH +ID 2731 +TI 1760667400.496667385 +CC NStripHits 2 +PE 45.3641 +PP -0.652172 0.373534 2.55939 +PW 0 +SE +ET PH +ID 2732 +TI 1760667400.496685266 +CC NStripHits 2 +PE 183.471 +PP 2.37439 -0.172317 -4.19217 +PW 0 +SE +ET PH +ID 2733 +TI 1760667400.496710538 +CC NStripHits 3 +PE 129.716 +PP -1.2342 -0.961328 -1.74764 +PW 0 +SE +ET PH +ID 2734 +TI 1760667400.496738195 +CC NStripHits 4 +PE 178.385 +PP 1.79236 0.0654776 1.04611 +PW 0 +SE +ET UN +ID 2735 +TI 1760667400.496761322 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 654.848 +SE +ET CO +ID 2736 +TI 1760667400.496813535 +CC NStripHits 6 +PQ 29.2738 +SQ 2 +CT 0.737447 0.262553 +TL 1 +TE 436.57 +CE 229.845 1.83299 436.57 2.07467 +CD 3.65486 -0.571885 1.86095 0.0336036 0.0216071 0.0336036 2.95642 0.317559 1.51173 0.0336036 0.0384367 0.0336036 0 0 0 0 0 0 +LA 1.18359 +SE +ID 2737 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.639196) (Strip hit removed with energy 15.946007) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 35.350838) +BD GR Veto +PQ 8.55403 +SE +ET UN +ID 2738 +TI 1760667400.496896266 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 336.065 +SE +ET CO +ID 2739 +TI 1760667400.496929168 +CC NStripHits 6 +PQ 1.4748 +SQ 3 +CT 0.00152159 0.19471 +TL 1 +TE 110.366 +CE 551.925 1.31996 110.366 0.944618 +CD 3.30564 -0.527017 -1.0492 0.0336036 0.0216962 0.0336036 2.95642 -0.728876 -1.16561 0.0336036 0.0206381 0.0336036 0 0 0 0 0 0 +LA 0.266256 +SE +ID 2740 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.138166) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.067052)) (GR Hit: Detector ID 0 and Energy 80.988454) +BD GR Veto +PQ 1.76368 +SE +ET PH +ID 2741 +TI 1760667400.496995925 +CC NStripHits 2 +PE 131.157 +PP 1.21033 -0.147173 2.44298 +PW 0 +SE +ID 2742 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 273.220435) +BD GR Veto +PQ 2.14843 +SE +ET PH +ID 2743 +TI 1760667400.497025012 +CC NStripHits 2 +PE 32.1019 +PP 0.162672 -0.31226 -1.28202 +PW 0 +SE +ET PH +ID 2744 +TI 1760667400.497043609 +CC NStripHits 4 +PE 472.331 +PP -1.93264 -1.03476 -3.61014 +PW 0 +SE +ET PH +ID 2745 +TI 1760667400.497068881 +CC NStripHits 2 +PE 184.145 +PP -1.1178 -0.417742 0.231266 +PW 0 +SE +ET CO +ID 2746 +TI 1760667400.497087478 +CC NStripHits 5 +PQ 2.27467 +SQ 2 +CT 0 1 +TL 1 +TE 66.869 +CE 245.648 0.928487 66.869 1.79439 +CD 2.4908 -0.851072 -1.0492 0.0336036 0.0199837 0.0336036 2.14158 0.145378 0.580484 0.0336036 0.0270969 0.0336036 0 0 0 0 0 0 +LA 1.94184 +SE +ET PH +ID 2747 +TI 1760667400.497119426 +CC NStripHits 2 +PE 122.067 +PP 1.90877 -0.141665 -2.32967 +PW 0 +SE +ET UN +ID 2748 +TI 1760667400.497137546 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 124.98 +SE +ET PH +ID 2749 +TI 1760667400.497159481 +CC NStripHits 2 +PE 519.401 +PP 0.279078 -0.173974 -2.09686 +PW 0 +SE +ET PH +ID 2750 +TI 1760667400.497183561 +CC NStripHits 2 +PE 199.721 +PP 2.14158 -0.564763 0.929703 +PW 0 +SE +ET PH +ID 2751 +TI 1760667400.523565292 +CC NStripHits 2 +PE 100.091 +PP -1.35061 -0.540189 -0.932797 +PW 0 +SE +ET PH +ID 2752 +TI 1760667400.523627281 +CC NStripHits 3 +PE 234.378 +PP -0.419359 -0.0702874 -4.19217 +PW 0 +SE +ET CO +ID 2753 +TI 1760667400.523650646 +CC NStripHits 5 +PQ 0.222509 +SQ 2 +CT 0 1 +TL 1 +TE 43.9986 +CE 282.748 0.986408 43.9986 0.907703 +CD 3.88767 -0.265369 0.114859 0.0336036 0.0233086 0.0336036 4.3533 -0.508276 1.62814 0.0336036 0.0217598 0.0336036 0 0 0 0 0 0 +LA 1.60182 +SE +ET PH +ID 2754 +TI 1760667400.523691892 +CC NStripHits 2 +PE 33.0006 +PP -0.768578 -0.089593 -3.14452 +PW 0 +SE +ID 2755 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1427.351097)) (GR Hit: Detector ID 0 and Energy 183.796297) +BD GR Veto +PQ 1427.35 +SE +ET PH +ID 2756 +TI 1760667400.523720264 +CC NStripHits 2 +PE 658.679 +PP 2.02517 -0.455156 -2.44608 +PW 0 +SE +ET PH +ID 2757 +TI 1760667400.523746728 +CC NStripHits 2 +PE 94.4008 +PP -2.16545 -0.85493 -3.14452 +PW 0 +SE +ET CO +ID 2758 +TI 1760667400.523766040 +CC NStripHits 4 +PQ 0.43111 +SQ 2 +CT 0 1 +TL 1 +TE 144.341 +CE 258.391 0.91821 144.341 0.934476 +CD 2.37439 -0.205369 0.929703 0.0336036 0.0234535 0.0336036 1.67595 0.179872 1.39533 0.0336036 0.0279475 0.0336036 0 0 0 0 0 0 +LA 0.9236 +SE +ET PH +ID 2759 +TI 1760667400.523800134 +CC NStripHits 3 +PE 110.14 +PP 2.25798 0.223832 -0.699984 +PW 0 +SE +ET PH +ID 2760 +TI 1760667400.523822307 +CC NStripHits 3 +PE 213.458 +PP 2.6072 0.170064 -0.467172 +PW 0 +SE +ET PH +ID 2761 +TI 1760667400.523848295 +CC NStripHits 4 +PE 114.556 +PP 2.95642 0.263908 -3.61014 +PW 0 +SE +ID 2762 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 192.512646) +BD GR Veto +PQ 3.11193 +SE +ET PH +ID 2763 +TI 1760667400.523891687 +CC NStripHits 3 +PE 124.933 +PP 1.32673 -0.923596 -3.72655 +PW 0 +SE +ET PH +ID 2764 +TI 1760667400.523914098 +CC NStripHits 2 +PE 85.8751 +PP -1.58342 0.342515 -1.16561 +PW 0 +SE +ID 2765 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 42.921904) +BD GR Veto +PQ 4.9834 +SE +ET PH +ID 2766 +TI 1760667400.523942708 +CC NStripHits 2 +PE 76.5729 +PP -2.39827 0.293854 -2.9117 +PW 0 +SE +ET UN +ID 2767 +TI 1760667400.523964881 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 163.719 +SE +ID 2768 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (93.877075)) (GR Hit: Detector ID 0 and Energy 167.657095) +BD GR Veto +PQ 93.8771 +SE +ET PH +ID 2769 +TI 1760667400.524024009 +CC NStripHits 2 +PE 95.679 +PP 0.861109 -0.732441 -2.9117 +PW 0 +SE +ID 2770 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 446.788758) +BD GR Veto +PQ 10.6361 +SE +ET PH +ID 2771 +TI 1760667400.524050474 +CC NStripHits 2 +PE 75.1407 +PP -2.9803 -0.873589 -2.67889 +PW 0 +SE +ET PH +ID 2772 +TI 1760667400.524070978 +CC NStripHits 2 +PE 452.066 +PP -2.51467 0.357165 1.39533 +PW 0 +SE +ET PH +ID 2773 +TI 1760667400.524114847 +CC NStripHits 2 +PE 59.0745 +PP -0.302953 -0.368261 1.62814 +PW 0 +SE +ET UN +ID 2774 +TI 1760667400.524137258 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.5952 +SE +ET PH +ID 2775 +TI 1760667400.524157762 +CC NStripHits 3 +PE 163.407 +PP -0.0701406 -1.13648 -3.26092 +PW 0 +SE +ET PH +ID 2776 +TI 1760667400.524186372 +CC NStripHits 2 +PE 203.469 +PP 2.6072 0.219459 2.21017 +PW 0 +SE +ET PH +ID 2777 +TI 1760667400.524210691 +CC NStripHits 4 +PE 175.573 +PP -2.63108 -0.123468 -0.467172 +PW 0 +SE +ET UN +ID 2778 +TI 1760667400.524235010 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2779 +TI 1760667400.524250984 +CC NStripHits 3 +PE 475.56 +PP 4.00408 0.234601 1.16252 +PW 0 +SE +ET PH +ID 2780 +TI 1760667400.524273872 +CC NStripHits 3 +PE 291.577 +PP 1.79236 -0.825715 -0.816391 +PW 0 +SE +ET PH +ID 2781 +TI 1760667400.524295330 +CC NStripHits 2 +PE 323.477 +PP 0.0462656 -0.0488359 2.32658 +PW 0 +SE +ET PH +ID 2782 +TI 1760667400.524314165 +CC NStripHits 2 +PE 67.3248 +PP -2.74748 0.356826 -1.86405 +PW 0 +SE +ET UN +ID 2783 +TI 1760667400.524332284 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.6642 +SE +ET PH +ID 2784 +TI 1760667400.524358749 +CC NStripHits 2 +PE 243.803 +PP 3.53845 0.370338 2.21017 +PW 0 +SE +ID 2785 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (514.288050)) (GR Hit: Detector ID 0 and Energy 138.541883) +BD GR Veto +PQ 514.288 +SE +ET CO +ID 2786 +TI 1760667400.524388551 +CC NStripHits 4 +PQ 4.72332 +SQ 2 +CT 0 1 +TL 1 +TE 29.4143 +CE 159.632 1.30134 29.4143 0.928042 +CD 1.09392 -0.722476 -2.7953 0.0336036 0.02068 0.0336036 0.861109 -0.283594 -3.61014 0.0336036 0.0232096 0.0336036 0 0 0 0 0 0 +LA 0.954349 +SE +ET CO +ID 2787 +TI 1760667400.524423360 +CC NStripHits 5 +PQ 14.0567 +SQ 2 +CT 0 1 +TL 1 +TE 122.519 +CE 128.587 1.70377 122.519 1.35332 +CD -2.39827 -0.770983 2.21017 0.0336036 0.0202919 0.0336036 -2.04905 -0.63437 2.44298 0.0336036 0.0214031 0.0336036 0 0 0 0 0 0 +LA 0.441382 +SE +ET PH +ID 2788 +TI 1760667400.524454832 +CC NStripHits 2 +PE 111.026 +PP 2.02517 0.194294 -4.19217 +PW 0 +SE +ET UN +ID 2789 +TI 1760667400.524475812 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 451.275 +SE +ET PH +ID 2790 +TI 1760667400.524536609 +CC NStripHits 2 +PE 74.1806 +PP 3.77127 -1.01132 -3.26092 +PW 0 +SE +ID 2791 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 434.848622) +BD GR Veto +PQ 7.99857 +SE +ID 2792 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 137.241975) +BD GR Veto +PQ 2.03431 +SE +ET CO +ID 2793 +TI 1760667400.524605512 +CC NStripHits 8 +PQ 30.6629 +SQ 3 +CT 0.406531 1.73858 +TL 1 +TE 60.3678 +CE 166.865 2.20676 60.3678 1.26078 +CD -0.768578 -0.909621 -2.67889 0.0336036 0.0197814 0.0336036 -0.884984 -0.718992 -2.7953 0.0336036 0.0207128 0.0336036 0 0 0 0 0 0 +LA 0.251875 +SE +ET PH +ID 2794 +TI 1760667400.524658679 +CC NStripHits 2 +PE 249.643 +PP 3.42205 -0.118113 -1.98045 +PW 0 +SE +ET CO +ID 2795 +TI 1760667400.524683475 +CC NStripHits 6 +PQ 13.075 +SQ 2 +CT 0 1 +TL 1 +TE 100.283 +CE 150.79 1.30395 100.283 1.265 +CD -1.58342 -0.803606 -0.816391 0.0336036 0.0201739 0.0336036 -1.2342 -0.905212 -0.234359 0.0336036 0.0197863 0.0336036 0 0 0 0 0 0 +LA 0.686323 +SE +ID 2796 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.058029) (Strip hit removed with energy 14.062186) +QA StripPairing (GR Hit: Detector ID 0 and Energy 94.842023) +BD GR Veto +PQ 11.5474 +SE +ET PH +ID 2797 +TI 1760667400.524769783 +CC NStripHits 3 +PE 602.73 +PP -2.86389 -0.75877 1.04611 +PW 0 +SE +ET PH +ID 2798 +TI 1760667400.524793386 +CC NStripHits 2 +PE 338.577 +PP -0.884984 0.356064 2.09377 +PW 0 +SE +ET PH +ID 2799 +TI 1760667400.524811983 +CC NStripHits 2 +PE 253.012 +PP 0.628297 -0.566099 -3.37733 +PW 0 +SE +ID 2800 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 98.633693) +BD GR Veto +PQ 1.99617e-05 +SE +ID 2801 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (290.028985)) (GR Hit: Detector ID 0 and Energy 156.971048) +BD GR Veto +PQ 290.029 +SE +ET UN +ID 2802 +TI 1760667400.524850130 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2803 +TI 1760667400.524868249 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 2804 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1128.367295)) (GR Hit: Detector ID 0 and Energy 140.137078) +BD GR Veto +PQ 1128.37 +SE +ET PH +ID 2805 +TI 1760667400.524886846 +CC NStripHits 3 +PE 478.792 +PP -2.51467 -0.792461 -1.98045 +PW 0 +SE +ET PH +ID 2806 +TI 1760667400.524910688 +CC NStripHits 2 +PE 135.302 +PP -0.0701406 0.367198 -4.07577 +PW 0 +SE +ET PH +ID 2807 +TI 1760667400.524928808 +CC NStripHits 2 +PE 186.767 +PP -1.93264 -1.1122 -3.37733 +PW 0 +SE +ET PH +ID 2808 +TI 1760667400.524949312 +CC NStripHits 2 +PE 79.3187 +PP 0.0462656 0.32204 -3.95936 +PW 0 +SE +ET PH +ID 2809 +TI 1760667400.524968624 +CC NStripHits 2 +PE 73.9163 +PP -1.35061 0.17095 2.21017 +PW 0 +SE +ET PH +ID 2810 +TI 1760667400.524986505 +CC NStripHits 4 +PE 210.581 +PP 1.90877 0.0146394 -2.56248 +PW 0 +SE +ET UN +ID 2811 +TI 1760667400.525009393 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 196.64 +SE +ET UN +ID 2812 +TI 1760667400.525049924 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 663.309 +SE +ID 2813 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.031461) +BD GR Veto +PQ 5.99097 +SE +ET PH +ID 2814 +TI 1760667400.525086402 +CC NStripHits 2 +PE 73.0397 +PP -2.74748 -0.853543 -2.67889 +PW 0 +SE +ET PH +ID 2815 +TI 1760667400.546437978 +CC NStripHits 2 +PE 104.233 +PP -0.0701406 0.361959 1.16252 +PW 0 +SE +ET CO +ID 2816 +TI 1760667400.546510934 +CC NStripHits 5 +PQ 0.263777 +SQ 2 +CT 0 1 +TL 1 +TE 50.7272 +CE 156.964 1.04387 50.7272 0.94968 +CD 1.21033 -1.09868 -2.9117 0.0336036 0.0266235 0.0336036 1.67595 -0.771164 -3.14452 0.0336036 0.0202907 0.0336036 0 0 0 0 0 0 +LA 0.61504 +SE +ET PH +ID 2817 +TI 1760667400.546577453 +CC NStripHits 2 +PE 92.2334 +PP 0.628297 0.194686 -3.95936 +PW 0 +SE +ET UN +ID 2818 +TI 1760667400.546611309 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 664.659 +SE +ET CO +ID 2819 +TI 1760667400.546693563 +CC NStripHits 7 +PQ 0.318352 +SQ 2 +CT 0.644704 0.355296 +TL 1 +TE 392.692 +CE 267.514 1.34861 392.692 1.06754 +CD 2.25798 -1.14579 -1.86405 0.0336036 0.0284917 0.0336036 0.162672 -0.754753 -2.56248 0.0336036 0.0204455 0.0336036 0 0 0 0 0 0 +LA 2.243 +SE +ET UN +ID 2820 +TI 1760667400.546775341 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 2821 +TI 1760667400.546813964 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +CC NStripHits 11 +PE 0 +SE +ET CO +ID 2822 +TI 1760667400.546917915 +CC NStripHits 5 +PQ 59.7571 +SQ 2 +CT 0.776686 0.223314 +TL 1 +TE 467.403 +CE 207.939 1.40832 467.403 1.24664 +CD -1.00139 -0.620458 0.813297 0.0336036 0.0214219 0.0336036 -1.46702 -0.71932 0.696891 0.0336036 0.0207094 0.0336036 0 0 0 0 0 0 +LA 0.490036 +SE +ID 2823 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.070673) +BD GR Veto +PQ 0.849022 +SE +ET CO +ID 2824 +TI 1760667400.547002553 +CC NStripHits 6 +PQ 1.23375 +SQ 2 +CT 0 1 +TL 1 +TE 138.576 +CE 286.372 1.07106 138.576 1.09338 +CD 0.162672 0.114307 1.39533 0.0336036 0.0264418 0.0336036 -0.535766 -1.01188 2.21017 0.0336036 0.0202423 0.0336036 0 0 0 0 0 0 +LA 1.55566 +SE +ET PH +ID 2825 +TI 1760667400.547039747 +CC NStripHits 2 +PE 178.224 +PP -0.0701406 -0.346969 1.04611 +PW 0 +SE +ET PH +ID 2826 +TI 1760667400.547057151 +CC NStripHits 2 +PE 201.713 +PP -0.186547 -1.15731 0.813297 +PW 0 +SE +ID 2827 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1965.293042)) (GR Hit: Detector ID 0 and Energy 342.635471) +BD GR Veto +PQ 1965.29 +SE +ET PH +ID 2828 +TI 1760667400.547094583 +CC NStripHits 2 +PE 511.63 +PP -1.35061 -0.563419 -0.00154687 +PW 0 +SE +ET CO +ID 2829 +TI 1760667400.547120571 +CC NStripHits 5 +PQ 2.10558 +SQ 2 +CT 0.687924 0.312076 +TL 1 +TE 406.882 +CE 254.161 1.04727 406.882 1.00632 +CD 2.6072 -0.604408 -1.51483 0.0336036 0.0214442 0.0336036 2.25798 0.0775623 -1.74764 0.0336036 0.0259117 0.0336036 0 0 0 0 0 0 +LA 0.800774 +SE +ET PH +ID 2830 +TI 1760667400.547150373 +CC NStripHits 2 +PE 72.2515 +PP 1.44314 0.131553 0.114859 +PW 0 +SE +ID 2831 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.365831) +BD GR Veto +PQ 0.0223733 +SE +ET CO +ID 2832 +TI 1760667400.547188043 +CC NStripHits 4 +PQ 0.774148 +SQ 2 +CT 0 1 +TL 1 +TE 126.857 +CE 166.5 0.940598 126.857 0.934071 +CD 3.18923 -0.303733 -4.07577 0.0336036 0.0231566 0.0336036 2.6072 -1.02703 -3.72655 0.0336036 0.0204854 0.0336036 0 0 0 0 0 0 +LA 0.991903 +SE +ID 2833 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.385925) +BD GR Veto +PQ +SE +ET PH +ID 2834 +TI 1760667400.547227621 +CC NStripHits 3 +PE 440.071 +PP 0.628297 0.0190933 1.39533 +PW 0 +SE +ET UN +ID 2835 +TI 1760667400.547250509 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 661.467 +SE +ET PH +ID 2836 +TI 1760667400.547278881 +CC NStripHits 2 +PE 114.902 +PP 0.628297 -1.00613 -0.350766 +PW 0 +SE +ET CO +ID 2837 +TI 1760667400.547296047 +CC NStripHits 5 +PQ 10.658 +SQ 2 +CT 0 1 +TL 1 +TE 102.755 +CE 184.297 1.04852 102.755 1.30351 +CD 2.6072 0.0915301 -0.00154687 0.0336036 0.0261282 0.0336036 3.18923 -0.187285 -3.14452 0.0336036 0.0235735 0.0336036 0 0 0 0 0 0 +LA 3.20855 +SE +ET PH +ID 2838 +TI 1760667400.547359466 +CC NStripHits 2 +PE 41.1899 +PP 0.0462656 0.0594444 -0.117953 +PW 0 +SE +ET PH +ID 2839 +TI 1760667400.547389507 +CC NStripHits 2 +PE 214.451 +PP 0.977516 -0.0177151 -1.86405 +PW 0 +SE +ID 2840 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 165.490518) +BD GR Veto +PQ 3.35856 +SE +ID 2841 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 120.695650) +BD GR Veto +PQ 0.0706658 +SE +ET UN +ID 2842 +TI 1760667400.547450542 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 182.013 +SE +ID 2843 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 46.572450) +BD GR Veto +PQ 17.4084 +SE +ET UN +ID 2844 +TI 1760667400.547486782 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ID 2845 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.650949) (Strip hit removed with energy 15.653535) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 32.056612)) +BD GR Veto +PQ 1.64818 +SE +ET PH +ID 2846 +TI 1760667400.547555685 +CC NStripHits 2 +PE 290.857 +PP 2.72361 -1.14232 -4.07577 +PW 0 +SE +ID 2847 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.368141) (Strip hit removed with energy 9.165972) (Strip hit removed with energy 0.645091) +BD GR Veto +PQ 11.783 +SE +ET PH +ID 2848 +TI 1760667400.547613143 +CC NStripHits 3 +PE 176.781 +PP 2.72361 0.218259 -0.350766 +PW 0 +SE +ET PH +ID 2849 +TI 1760667400.547633409 +CC NStripHits 2 +PE 127.549 +PP -2.28186 -1.14857 -1.74764 +PW 0 +SE +ID 2850 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2851 +TI 1760667400.547656774 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.4723 +SE +ET PH +ID 2852 +TI 1760667400.547673940 +CC NStripHits 4 +PE 243.514 +PP 2.02517 -0.0103003 2.32658 +PW 0 +SE +ET PH +ID 2853 +TI 1760667400.547696352 +CC NStripHits 2 +PE 71.2465 +PP 4.12048 -0.00421594 -1.51483 +PW 0 +SE +ET UN +ID 2854 +TI 1760667400.547713279 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 132.464 +SE +ET PH +ID 2855 +TI 1760667400.547735452 +CC NStripHits 3 +PE 118.507 +PP 2.72361 0.208514 1.62814 +PW 0 +SE +ET CO +ID 2856 +TI 1760667400.547755718 +CC NStripHits 5 +PQ 14.8002 +SQ 2 +CT 0.764489 0.235511 +TL 1 +TE 460.3 +CE 199.415 1.36292 460.3 1.09393 +CD 2.4908 -0.887157 2.55939 0.0336036 0.0198316 0.0336036 2.84002 -0.478503 2.32658 0.0336036 0.0219219 0.0336036 0 0 0 0 0 0 +LA 0.585793 +SE +ET PH +ID 2857 +TI 1760667400.547803878 +CC NStripHits 2 +PE 385.98 +PP 1.79236 0.194938 0.114859 +PW 0 +SE +ET PH +ID 2858 +TI 1760667400.547824144 +CC NStripHits 4 +PE 306.817 +PP 2.4908 -0.276989 -1.28202 +PW 0 +SE +ET UN +ID 2859 +TI 1760667400.547860383 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 544.326 +SE +ET UN +ID 2860 +TI 1760667400.547894001 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.1717 +SE +ET PH +ID 2861 +TI 1760667400.547911405 +CC NStripHits 3 +PE 226.947 +PP 3.88767 0.133013 -0.816391 +PW 0 +SE +ID 2862 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 100.238921) +BD GR Veto +PQ 0.222369 +SE +ET PH +ID 2863 +TI 1760667400.547944784 +CC NStripHits 2 +PE 155.861 +PP 0.395484 0.35887 -1.98045 +PW 0 +SE +ET PH +ID 2864 +TI 1760667400.547962427 +CC NStripHits 3 +PE 114.186 +PP 2.84002 0.366639 -4.42498 +PW 0 +SE +ID 2865 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.119693) +QA StripPairing (GR Hit: Detector ID 0 and Energy 145.391216) +BD GR Veto +PQ 3.8211 +SE +ID 2866 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.930822) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 28.978139)) (GR Hit: Detector ID 0 and Energy 99.852610) +BD GR Veto +PQ 21.4233 +SE +ET PH +ID 2867 +TI 1760667400.548015832 +CC NStripHits 4 +PE 222.229 +PP 4.00408 0.0746182 1.62814 +PW 0 +SE +ET CO +ID 2868 +TI 1760667400.548038721 +CC NStripHits 5 +PQ 51.244 +SQ 2 +CT 0.543943 0.456057 +TL 1 +TE 140.406 +CE 147.552 1.11425 140.406 1.37519 +CD 0.279078 -0.0199049 -1.98045 0.0336036 0.0248567 0.0336036 0.0462656 -0.281206 -1.63123 0.0336036 0.0232206 0.0336036 0 0 0 0 0 0 +LA 0.494403 +SE +ET PH +ID 2869 +TI 1760667400.548070907 +CC NStripHits 3 +PE 79.9037 +PP -1.81623 -0.543177 -0.932797 +PW 0 +SE +ET UN +ID 2870 +TI 1760667400.548109292 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 163.144 +SE +ET PH +ID 2871 +TI 1760667400.548143386 +CC NStripHits 2 +PE 66.0802 +PP 2.37439 0.359248 1.04611 +PW 0 +SE +ID 2872 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 433.276574) +BD GR Veto +PQ 11.4598 +SE +ET CO +ID 2873 +TI 1760667400.548202037 +CC NStripHits 8 +PQ 0.766753 +SQ 3 +CT 0.000696735 0.00273304 +TL 1 +TE 221.28 +CE 443.149 1.46118 221.28 1.1149 +CD -0.302953 0.314402 1.97736 0.0336036 0.0386325 0.0336036 0.977516 -0.539054 2.09377 0.0336036 0.0216577 0.0336036 0 0 0 0 0 0 +LA 0.786048 +SE +ET PH +ID 2874 +TI 1760667400.548243045 +CC NStripHits 2 +PE 403.609 +PP -2.63108 -0.58317 -3.14452 +PW 0 +SE +ET UN +ID 2875 +TI 1760667400.548273086 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 189.468 +SE +ET PH +ID 2876 +TI 1760667400.548304557 +CC NStripHits 2 +PE 235.38 +PP 3.65486 -0.953528 1.86095 +PW 0 +SE +ET CO +ID 2877 +TI 1760667400.548324346 +CC NStripHits 5 +PQ 1.34943 +SQ 2 +CT 0 1 +TL 1 +TE 40.3902 +CE 148.974 1.07579 40.3902 0.930898 +CD 1.32673 -0.71176 -3.84295 0.0336036 0.0208043 0.0336036 0.628297 -0.159083 -4.07577 0.0336036 0.0237679 0.0336036 0 0 0 0 0 0 +LA 0.920579 +SE +ET UN +ID 2878 +TI 1760667400.548357486 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET UN +ID 2879 +TI 1760667400.569575309 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 446.655 +SE +ID 2880 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 62.143564) +BD GR Veto +PQ 5.64192 +SE +ET PH +ID 2881 +TI 1760667400.569672822 +CC NStripHits 3 +PE 160.359 +PP 2.84002 -0.73617 2.32658 +PW 0 +SE +ET CO +ID 2882 +TI 1760667400.569695472 +CC NStripHits 5 +PQ 8.22288 +SQ 2 +CT 0 1 +TL 1 +TE 131.32 +CE 446.665 2.0962 131.32 1.36664 +CD 0.162672 0.185623 -1.39842 0.0336036 0.0281414 0.0336036 2.84002 -0.334442 -0.00154687 0.0336036 0.0229507 0.0336036 0 0 0 0 0 0 +LA 3.0643 +SE +ID 2883 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 286.351300) +BD GR Veto +PQ 3.00111 +SE +ID 2884 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1790.745569)) (GR Hit: Detector ID 0 and Energy 166.213097) +BD GR Veto +PQ 1790.75 +SE +ET PH +ID 2885 +TI 1760667400.569774150 +CC NStripHits 2 +PE 326.671 +PP 2.84002 0.114282 -0.350766 +PW 0 +SE +ET CO +ID 2886 +TI 1760667400.569793224 +CC NStripHits 8 +PQ 0.908609 +SQ 2 +CT 0.568949 0.431051 +TL 1 +TE 351.022 +CE 297.135 1.55309 351.022 0.952139 +CD 3.07283 0.0531631 -0.932797 0.0336036 0.025524 0.0336036 3.77127 0.033581 -1.51483 0.0336036 0.0253781 0.0336036 0 0 0 0 0 0 +LA 0.909376 +SE +ET UN +ID 2887 +TI 1760667400.569848537 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 378.386 +SE +ET UN +ID 2888 +TI 1760667400.569877862 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.6177 +SE +ET PH +ID 2889 +TI 1760667400.569893360 +CC NStripHits 3 +PE 314.607 +PP 1.55955 -0.65358 -3.95936 +PW 0 +SE +ET PH +ID 2890 +TI 1760667400.569913625 +CC NStripHits 2 +PE 157.154 +PP 2.25798 -1.16284 -1.16561 +PW 0 +SE +ET PH +ID 2891 +TI 1760667400.569934368 +CC NStripHits 2 +PE 112.053 +PP 1.55955 -0.140935 -1.86405 +PW 0 +SE +ET UN +ID 2892 +TI 1760667400.569952964 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.4429 +SE +ET UN +ID 2893 +TI 1760667400.569970846 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 395.151 +SE +ET CO +ID 2894 +TI 1760667400.569998741 +CC NStripHits 8 +PQ 0.546804 +SQ 2 +CT 0 1 +TL 1 +TE 127.14 +CE 534.78 1.50417 127.14 1.05987 +CD 0.861109 0.0957625 -1.98045 0.0336036 0.0261837 0.0336036 0.395484 -0.969035 -1.51483 0.0336036 0.0199283 0.0336036 0 0 0 0 0 0 +LA 1.25196 +SE +ET CO +ID 2895 +TI 1760667400.570040464 +CC NStripHits 4 +PQ 2.34151 +SQ 2 +CT 0 1 +TL 1 +TE 64.2016 +CE 297.317 0.945457 64.2016 0.907267 +CD 1.67595 0.237919 -3.14452 0.0336036 0.0312161 0.0336036 -0.0701406 -0.128078 -3.72655 0.0336036 0.0240723 0.0336036 0 0 0 0 0 0 +LA 1.87658 +SE +ET PH +ID 2896 +TI 1760667400.570074319 +CC NStripHits 4 +PE 350.316 +PP 0.977516 -0.720688 0.464078 +PW 0 +SE +ET UN +ID 2897 +TI 1760667400.570096015 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 2898 +TI 1760667400.570114374 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.9051 +SE +ET UN +ID 2899 +TI 1760667400.570132970 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2900 +TI 1760667400.570151329 +CC NStripHits 3 +PE 270.777 +PP 2.25798 -0.433311 2.44298 +PW 0 +SE +ET UN +ID 2901 +TI 1760667400.570174455 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 465.547 +SE +ID 2902 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 100.170009) +BD GR Veto +PQ 0.343047 +SE +ET PH +ID 2903 +TI 1760667400.570237874 +CC NStripHits 3 +PE 269.426 +PP 3.88767 -0.799793 0.813297 +PW 0 +SE +ET UN +ID 2904 +TI 1760667400.570275068 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2905 +TI 1760667400.570293188 +CC NStripHits 3 +PE 354.129 +PP 2.14158 -0.413269 2.55939 +PW 0 +SE +ET PH +ID 2906 +TI 1760667400.570317506 +CC NStripHits 2 +PE 209.004 +PP 0.279078 -0.401523 -1.0492 +PW 0 +SE +ET PH +ID 2907 +TI 1760667400.570339679 +CC NStripHits 2 +PE 101.255 +PP 4.3533 -0.240634 0.580484 +PW 0 +SE +ET PH +ID 2908 +TI 1760667400.570356845 +CC NStripHits 2 +PE 238.766 +PP 3.18923 -0.0800863 -3.37733 +PW 0 +SE +ET PH +ID 2909 +TI 1760667400.570376157 +CC NStripHits 3 +PE 243.247 +PP -1.58342 -0.371277 1.86095 +PW 0 +SE +ET PH +ID 2910 +TI 1760667400.570397615 +CC NStripHits 2 +PE 44.1795 +PP 1.32673 -1.11615 2.21017 +PW 0 +SE +ET PH +ID 2911 +TI 1760667400.570417881 +CC NStripHits 2 +PE 277.213 +PP 1.55955 0.0361144 -2.44608 +PW 0 +SE +ET PH +ID 2912 +TI 1760667400.570440769 +CC NStripHits 3 +PE 112.611 +PP -2.16545 -0.277205 -4.19217 +PW 0 +SE +ET UN +ID 2913 +TI 1760667400.570463418 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 41.8492 +SE +ET PH +ID 2914 +TI 1760667400.570483207 +CC NStripHits 4 +PE 466.867 +PP 0.628297 0.133627 -3.72655 +PW 0 +SE +ID 2915 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 2916 +TI 1760667400.570518732 +CC NStripHits 3 +PE 209.298 +PP 1.67595 -0.570513 1.51173 +PW 0 +SE +ET PH +ID 2917 +TI 1760667400.570539236 +CC NStripHits 2 +PE 450.411 +PP 0.511891 0.0127654 -1.51483 +PW 0 +SE +ET PH +ID 2918 +TI 1760667400.570557355 +CC NStripHits 4 +PE 240.983 +PP 1.09392 -1.0148 2.21017 +PW 0 +SE +ET CO +ID 2919 +TI 1760667400.570580244 +CC NStripHits 6 +PQ 64.9817 +SQ 3 +CT 0.0893446 0.285277 +TL 1 +TE 454.037 +CE 225.874 1.84084 454.037 1.42193 +CD 0.395484 -0.327743 -2.9117 0.0336036 0.0230082 0.0336036 0.511891 -0.108081 -3.14452 0.0336036 0.0242145 0.0336036 0 0 0 0 0 0 +LA 0.299421 +SE +ET PH +ID 2920 +TI 1760667400.570617914 +CC NStripHits 3 +PE 134.961 +PP 1.32673 0.326068 -1.39842 +PW 0 +SE +ET PH +ID 2921 +TI 1760667400.570638418 +CC NStripHits 2 +PE 211.145 +PP 3.65486 -0.759358 -0.350766 +PW 0 +SE +ET PH +ID 2922 +TI 1760667400.570656538 +CC NStripHits 2 +PE 130.915 +PP -2.28186 -0.753224 -1.16561 +PW 0 +SE +ET PH +ID 2923 +TI 1760667400.570674657 +CC NStripHits 3 +PE 377.836 +PP -0.768578 0.260469 -1.74764 +PW 0 +SE +ET UN +ID 2924 +TI 1760667400.570697546 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.3384 +SE +ET PH +ID 2925 +TI 1760667400.570716142 +CC NStripHits 2 +PE 461.187 +PP -1.93264 0.26565 -3.84295 +PW 0 +SE +ID 2926 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 145.198939) +BD GR Veto +PQ 0.577063 +SE +ET PH +ID 2927 +TI 1760667400.570758342 +CC NStripHits 3 +PE 95.8666 +PP -0.535766 -0.653126 -1.74764 +PW 0 +SE +ID 2928 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 351.189806) +BD GR Veto +PQ 7.64581 +SE +ET UN +ID 2929 +TI 1760667400.570787429 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.1033 +SE +ET UN +ID 2930 +TI 1760667400.570806026 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.1911 +SE +ET PH +ID 2931 +TI 1760667400.570821523 +CC NStripHits 2 +PE 264.719 +PP -2.63108 -0.932862 0.231266 +PW 0 +SE +ET CO +ID 2932 +TI 1760667400.570840358 +CC NStripHits 4 +PQ 0.981558 +SQ 2 +CT 0 1 +TL 1 +TE 108.638 +CE 181.652 0.956649 108.638 0.953002 +CD 1.21033 0.342586 -2.09686 0.0336036 0.0338275 0.0336036 0.861109 0.15619 -1.86405 0.0336036 0.027336 0.0336036 0 0 0 0 0 0 +LA 0.459238 +SE +ET UN +ID 2933 +TI 1760667400.570870876 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5912 +SE +ET PH +ID 2934 +TI 1760667400.570889234 +CC NStripHits 2 +PE 98.9202 +PP -0.535766 0.0515403 -3.72655 +PW 0 +SE +ET PH +ID 2935 +TI 1760667400.570910215 +CC NStripHits 3 +PE 179.323 +PP -2.86389 -0.253093 -1.63123 +PW 0 +SE +ID 2936 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 55.413480) +BD GR Veto +PQ 1.97886 +SE +ID 2937 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 2938 +TI 1760667400.570961952 +CC NStripHits 4 +PQ 2.05385 +SQ 2 +CT 0 1 +TL 1 +TE 23.518 +CE 101.132 0.929527 23.518 0.931666 +CD -0.884984 -0.896972 -1.28202 0.0336036 0.0198032 0.0336036 -0.652172 -0.602421 -1.86405 0.0336036 0.0214518 0.0336036 0 0 0 0 0 0 +LA 0.692619 +SE +ET PH +ID 2939 +TI 1760667400.570992946 +CC NStripHits 2 +PE 162.547 +PP 0.511891 -0.356761 0.929703 +PW 0 +SE +ID 2940 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.409142) (Strip hit removed with energy 12.082868) (Strip hit removed with energy 14.965415) (Strip hit removed with energy 18.801735) +QA StripPairing (Best reduced chi square is not below 25 (957.864687)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 83.979356)) (GR Hit: Detector ID 0 and Energy 508.303998) +BD GR Veto +PQ 957.865 +SE +ET PH +ID 2941 +TI 1760667400.571049213 +CC NStripHits 2 +PE 192.952 +PP 1.32673 -0.577295 -2.32967 +PW 0 +SE +ET PH +ID 2942 +TI 1760667400.571066856 +CC NStripHits 2 +PE 71.1443 +PP -1.58342 -1.08683 2.21017 +PW 0 +SE +ET PH +ID 2943 +TI 1760667400.590794563 +CC NStripHits 2 +PE 141.721 +PP 4.3533 0.157102 0.929703 +PW 0 +SE +ID 2944 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.093749)) +BD GR Veto +PQ 4.12526 +SE +ID 2945 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (79.422545)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 300.030351) (GR Hit: Detector ID 0 and Energy 87.955365) +BD GR Veto +PQ 79.4225 +SE +ET PH +ID 2946 +TI 1760667400.590949535 +CC NStripHits 3 +PE 308.424 +PP 2.02517 -0.715658 2.21017 +PW 0 +SE +ET PH +ID 2947 +TI 1760667400.590997934 +CC NStripHits 2 +PE 174.197 +PP -2.9803 -0.465779 1.27892 +PW 0 +SE +ET UN +ID 2948 +TI 1760667400.591031789 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 2949 +TI 1760667400.591079711 +CC NStripHits 2 +PE 62.1046 +PP 0.744703 0.362748 1.62814 +PW 0 +SE +ID 2950 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 2951 +TI 1760667400.591128349 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 653.062 +SE +ET PH +ID 2952 +TI 1760667400.591212987 +CC NStripHits 4 +PE 489.466 +PP -2.74748 -0.304778 -1.51483 +PW 0 +SE +ID 2953 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.424378) +QA StripPairing (Best reduced chi square is not below 25 (851.844890)) (GR Hit: Detector ID 0 and Energy 135.526070) +BD GR Veto +PQ 851.845 +SE +ET PH +ID 2954 +TI 1760667400.591293096 +CC NStripHits 2 +PE 177.031 +PP 2.6072 -1.0685 1.62814 +PW 0 +SE +ET PH +ID 2955 +TI 1760667400.591330766 +CC NStripHits 2 +PE 103.043 +PP 4.12048 0.0569814 -0.234359 +PW 0 +SE +ET UN +ID 2956 +TI 1760667400.591349363 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.1062 +SE +ET UN +ID 2957 +TI 1760667400.591368913 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 437.763 +SE +ET CO +ID 2958 +TI 1760667400.591406583 +CC NStripHits 7 +PQ 4.11324 +SQ 2 +CT 0.509233 0.490767 +TL 1 +TE 335.103 +CE 327.136 1.1613 335.103 1.96474 +CD -2.74748 -0.515365 0.464078 0.0336036 0.0217323 0.0336036 -1.2342 0.0977342 2.21017 0.0336036 0.0262089 0.0336036 0 0 0 0 0 0 +LA 2.39055 +SE +ET CO +ID 2959 +TI 1760667400.591459512 +CC NStripHits 6 +PQ 0.52525 +SQ 2 +CT 0.63075 0.36925 +TL 1 +TE 382.606 +CE 279.366 0.976298 382.606 1.34529 +CD 0.977516 -0.674211 2.32658 0.0336036 0.0211362 0.0336036 0.628297 -0.541216 1.97736 0.0336036 0.0216512 0.0336036 0 0 0 0 0 0 +LA 0.511465 +SE +ET PH +ID 2960 +TI 1760667400.591491222 +CC NStripHits 2 +PE 100.079 +PP -1.35061 -0.651343 -0.234359 +PW 0 +SE +ET PH +ID 2961 +TI 1760667400.591511249 +CC NStripHits 2 +PE 256.252 +PP -1.00139 -0.537692 1.16252 +PW 0 +SE +ID 2962 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 26.039477)) (GR Hit: Detector ID 0 and Energy 38.359581) +BD GR Veto +PQ 0.126941 +SE +ET PH +ID 2963 +TI 1760667400.591566085 +CC NStripHits 3 +PE 662.917 +PP -0.535766 -0.417026 2.55939 +PW 0 +SE +ET UN +ID 2964 +TI 1760667400.591587781 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 650.128 +SE +ET PH +ID 2965 +TI 1760667400.591620445 +CC NStripHits 2 +PE 505.553 +PP 2.4908 0.125563 -4.07577 +PW 0 +SE +ET UN +ID 2966 +TI 1760667400.591664075 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.4219 +SE +ID 2967 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 4.514090) +BD GR Veto +PQ 0.609584 +SE +ET CO +ID 2968 +TI 1760667400.591701507 +CC NStripHits 4 +PQ 8.87991 +SQ 2 +CT 0 1 +TL 1 +TE 83.9145 +CE 318.776 0.906458 83.9145 1.34851 +CD 2.6072 -0.887707 0.929703 0.0336036 0.0198298 0.0336036 2.25798 -0.766492 1.16252 0.0336036 0.020325 0.0336036 0 0 0 0 0 0 +LA 0.436865 +SE +ET PH +ID 2969 +TI 1760667400.591729879 +CC NStripHits 3 +PE 176.504 +PP 2.72361 -0.332465 -1.28202 +PW 0 +SE +ET PH +ID 2970 +TI 1760667400.591749906 +CC NStripHits 3 +PE 133.439 +PP 0.162672 -0.934284 -2.09686 +PW 0 +SE +ET PH +ID 2971 +TI 1760667400.591768980 +CC NStripHits 3 +PE 170.82 +PP -1.81623 0.226183 -2.7953 +PW 0 +SE +ET PH +ID 2972 +TI 1760667400.591788530 +CC NStripHits 3 +PE 184.253 +PP 2.95642 -0.471555 -1.63123 +PW 0 +SE +ID 2973 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 77.728160) (GR Hit: Detector ID 0 and Energy 282.601661) +BD GR Veto +PQ 0.00523831 +SE +ET PH +ID 2974 +TI 1760667400.591826438 +CC NStripHits 2 +PE 103.518 +PP 4.23689 0.355381 -2.32967 +PW 0 +SE +ET CO +ID 2975 +TI 1760667400.591843843 +CC NStripHits 5 +PQ 0.172159 +SQ 2 +CT 0 1 +TL 1 +TE 32.1275 +CE 86.9254 1.10599 32.1275 0.883229 +CD 2.14158 -0.342637 -3.02811 0.0336036 0.0228837 0.0336036 3.18923 -0.783149 -1.51483 0.0336036 0.0202414 0.0336036 0 0 0 0 0 0 +LA 1.89252 +SE +ID 2976 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (914.751108)) (GR Hit: Detector ID 0 and Energy 122.903818) +BD GR Veto +PQ 914.751 +SE +ET PH +ID 2977 +TI 1760667400.591889142 +CC NStripHits 3 +PE 477.478 +PP 0.977516 0.0587362 -3.61014 +PW 0 +SE +ID 2978 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 24.490125) +BD GR Veto +PQ 0.252494 +SE +ET PH +ID 2979 +TI 1760667400.591921329 +CC NStripHits 2 +PE 332.744 +PP -0.652172 0.0378065 1.62814 +PW 0 +SE +ET PH +ID 2980 +TI 1760667400.591938972 +CC NStripHits 2 +PE 153.774 +PP -2.28186 -0.568923 2.21017 +PW 0 +SE +ET PH +ID 2981 +TI 1760667400.591957092 +CC NStripHits 3 +PE 119.037 +PP -0.186547 -1.03208 -4.54139 +PW 0 +SE +ET PH +ID 2982 +TI 1760667400.591976404 +CC NStripHits 2 +PE 88.1939 +PP 2.14158 0.370599 -3.14452 +PW 0 +SE +ID 2983 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.164901) +QA StripPairing (GR Hit: Detector ID 0 and Energy 142.815499) +BD GR Veto +PQ 6.32795 +SE +ET PH +ID 2984 +TI 1760667400.592010974 +CC NStripHits 4 +PE 199.305 +PP 2.84002 -0.236098 -2.44608 +PW 0 +SE +ET PH +ID 2985 +TI 1760667400.592046737 +CC NStripHits 2 +PE 175.796 +PP 2.6072 -0.679912 -3.95936 +PW 0 +SE +ET UN +ID 2986 +TI 1760667400.592063665 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.287 +SE +ET UN +ID 2987 +TI 1760667400.592079639 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 161.408 +SE +ID 2988 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.981545) +BD GR Veto +PQ 4.70529 +SE +ET CO +ID 2989 +TI 1760667400.592142820 +CC NStripHits 7 +PQ 0.700746 +SQ 3 +CT 0.040967 0.111955 +TL 1 +TE 390.253 +CE 270.778 1.32 390.253 1.11124 +CD 0.861109 -0.400464 2.21017 0.0336036 0.02244 0.0336036 1.44314 -0.619025 2.55939 0.0336036 0.0214223 0.0336036 0 0 0 0 0 0 +LA 0.71308 +SE +ET UN +ID 2990 +TI 1760667400.592188835 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 2991 +TI 1760667400.592199325 +CC NStripHits 2 +PE 140.993 +PP 0.0462656 0.00716264 -3.02811 +PW 0 +SE +ET PH +ID 2992 +TI 1760667400.592216491 +CC NStripHits 2 +PE 55.4615 +PP -0.884984 -1.17007 -0.234359 +PW 0 +SE +ET PH +ID 2993 +TI 1760667400.592236995 +CC NStripHits 2 +PE 330.882 +PP -2.04905 0.319714 -0.00154687 +PW 0 +SE +ID 2994 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (126.545025)) (GR Hit: Detector ID 0 and Energy 654.490191) +BD GR Veto +PQ 126.545 +SE +ID 2995 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (194.767323)) (GR Hit: Detector ID 0 and Energy 230.762547) +BD GR Veto +PQ 194.767 +SE +ET PH +ID 2996 +TI 1760667400.592269897 +CC NStripHits 3 +PE 80.1653 +PP -2.28186 0.150601 0.580484 +PW 0 +SE +ET PH +ID 2997 +TI 1760667400.592291831 +CC NStripHits 2 +PE 104.869 +PP -1.00139 -1.10221 -3.26092 +PW 0 +SE +ET PH +ID 2998 +TI 1760667400.592309713 +CC NStripHits 2 +PE 152.134 +PP 1.32673 -0.169903 2.55939 +PW 0 +SE +ET PH +ID 2999 +TI 1760667400.592326641 +CC NStripHits 2 +PE 222.737 +PP 1.09392 -0.996703 1.39533 +PW 0 +SE +ET PH +ID 3000 +TI 1760667400.592344045 +CC NStripHits 3 +PE 295.257 +PP -0.535766 0.216868 -2.44608 +PW 0 +SE +ET PH +ID 3001 +TI 1760667400.592364072 +CC NStripHits 3 +PE 244.452 +PP 2.14158 -0.504285 2.55939 +PW 0 +SE +ET PH +ID 3002 +TI 1760667400.592386245 +CC NStripHits 2 +PE 87.2659 +PP -1.2342 0.31787 -1.98045 +PW 0 +SE +ET CO +ID 3003 +TI 1760667400.592408657 +CC NStripHits 6 +PQ 0.803894 +SQ 2 +CT 0 1 +TL 1 +TE 146.215 +CE 510.538 1.07225 146.215 1.07992 +CD -1.58342 -0.833261 -0.117953 0.0336036 0.0200265 0.0336036 -1.00139 -1.1238 -0.467172 0.0336036 0.0297914 0.0336036 0 0 0 0 0 0 +LA 0.738326 +SE +ET PH +ID 3004 +TI 1760667400.592445135 +CC NStripHits 2 +PE 436.605 +PP 0.279078 0.359667 2.44298 +PW 0 +SE +ET CO +ID 3005 +TI 1760667400.592465162 +CC NStripHits 6 +PQ 0.910258 +SQ 2 +CT 0.566727 0.433273 +TL 1 +TE 217.495 +CE 181.414 1.33143 217.495 0.940956 +CD -0.768578 -0.593727 -2.32967 0.0336036 0.0214973 0.0336036 0.279078 0.0788886 -2.09686 0.0336036 0.0259347 0.0336036 0 0 0 0 0 0 +LA 1.26657 +SE +ET PH +ID 3006 +TI 1760667400.592497110 +CC NStripHits 3 +PE 85.8739 +PP 0.511891 -1.00658 -3.02811 +PW 0 +SE +ET PH +ID 3007 +TI 1760667400.613226890 +CC NStripHits 5 +PE 188.008 +PP -1.93264 -0.249919 -0.350766 +PW 0 +SE +ET UN +ID 3008 +TI 1760667400.613309621 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 397.118 +SE +ET CO +ID 3009 +TI 1760667400.613353967 +CC NStripHits 6 +PQ 9.21066 +SQ 2 +CT 0.680502 0.319498 +TL 1 +TE 430.826 +CE 270.542 1.84469 430.826 0.992453 +CD 4.00408 -0.645711 -0.932797 0.0336036 0.0213431 0.0336036 2.72361 -0.49361 -0.583578 0.0336036 0.0218405 0.0336036 0 0 0 0 0 0 +LA 1.33592 +SE +ET CO +ID 3010 +TI 1760667400.613420963 +CC NStripHits 4 +PQ 16.3315 +SQ 2 +CT 0 1 +TL 1 +TE 114.261 +CE 287.773 1.27741 114.261 0.938327 +CD -0.186547 -1.09855 -4.19217 0.0336036 0.0266006 0.0336036 -0.0701406 -1.06422 -4.07577 0.0336036 0.0220662 0.0336036 0 0 0 0 0 0 +LA 0.168161 +SE +ET PH +ID 3011 +TI 1760667400.613469362 +CC NStripHits 2 +PE 90.0663 +PP 4.23689 -0.592506 -1.16561 +PW 0 +SE +ET PH +ID 3012 +TI 1760667400.613508462 +CC NStripHits 2 +PE 172.98 +PP 0.0462656 -0.0473409 -1.39842 +PW 0 +SE +ET PH +ID 3013 +TI 1760667400.613546848 +CC NStripHits 2 +PE 108.896 +PP -2.28186 0.245339 -1.28202 +PW 0 +SE +ET PH +ID 3014 +TI 1760667400.613580465 +CC NStripHits 2 +PE 113.485 +PP -0.0701406 0.121057 1.74455 +PW 0 +SE +ET PH +ID 3015 +TI 1760667400.613618135 +CC NStripHits 2 +PE 181.601 +PP -2.28186 -0.921623 -2.9117 +PW 0 +SE +ET CO +ID 3016 +TI 1760667400.613652229 +CC NStripHits 5 +PQ 0.864035 +SQ 2 +CT 0 1 +TL 1 +TE 145.706 +CE 251.571 1.08091 145.706 0.911819 +CD -2.28186 -0.475688 0.580484 0.0336036 0.021934 0.0336036 -0.535766 -0.218453 1.04611 0.0336036 0.0233803 0.0336036 0 0 0 0 0 0 +LA 1.82533 +SE +ET PH +ID 3017 +TI 1760667400.613717079 +CC NStripHits 2 +PE 103.64 +PP 2.25798 -0.986982 0.464078 +PW 0 +SE +ET PH +ID 3018 +TI 1760667400.613749980 +CC NStripHits 2 +PE 477.948 +PP -0.535766 0.28689 -4.07577 +PW 0 +SE +ID 3019 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 253.789537) +BD GR Veto +PQ 4.98169 +SE +ID 3020 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 118.966187) +BD GR Veto +PQ 0.32053 +SE +ET PH +ID 3021 +TI 1760667400.613822221 +CC NStripHits 2 +PE 314.917 +PP 2.6072 -0.615347 2.09377 +PW 0 +SE +ET PH +ID 3022 +TI 1760667400.613858461 +CC NStripHits 2 +PE 47.3368 +PP 3.30564 -0.185029 -1.98045 +PW 0 +SE +ID 3023 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.691224) +BD GR Veto +PQ 4.96873 +SE +ID 3024 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.698078) +BD GR Veto +PQ 1.98677 +SE +ET PH +ID 3025 +TI 1760667400.614024162 +CC NStripHits 2 +PE 178.979 +PP 2.95642 0.276424 -2.56248 +PW 0 +SE +ET UN +ID 3026 +TI 1760667400.614041805 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3027 +TI 1760667400.614061594 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.8057 +SE +ET PH +ID 3028 +TI 1760667400.614079236 +CC NStripHits 2 +PE 119.451 +PP 3.42205 -0.85308 0.696891 +PW 0 +SE +ET PH +ID 3029 +TI 1760667400.614100217 +CC NStripHits 5 +PE 298.375 +PP 2.95642 -0.533177 2.55939 +PW 0 +SE +ET CO +ID 3030 +TI 1760667400.614125728 +CC NStripHits 5 +PQ 0.0782886 +SQ 2 +CT 0 1 +TL 1 +TE 111.677 +CE 132.19 1.08765 111.677 0.930266 +CD 3.88767 0.356085 1.97736 0.0336036 0.0286862 0.0336036 3.65486 -0.123025 1.74455 0.0336036 0.0241166 0.0336036 0 0 0 0 0 0 +LA 0.581332 +SE +ET UN +ID 3031 +TI 1760667400.614155292 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 3032 +TI 1760667400.614189386 +CC NStripHits 5 +PE 109.024 +PP -1.00139 -0.0214931 -0.350766 +PW 0 +SE +ID 3033 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 205.753083) +BD GR Veto +PQ 3.45065 +SE +ET CO +ID 3034 +TI 1760667400.614221572 +CC NStripHits 4 +PQ 1.00571 +SQ 2 +CT 0 1 +TL 1 +TE 61.9561 +CE 211.645 0.976707 61.9561 0.925103 +CD 1.44314 0.130806 -2.56248 0.0336036 0.026768 0.0336036 0.977516 0.133953 -2.09686 0.0336036 0.0268384 0.0336036 0 0 0 0 0 0 +LA 0.658496 +SE +ET PH +ID 3035 +TI 1760667400.614253044 +CC NStripHits 2 +PE 26.6522 +PP -1.46702 -1.09928 -1.74764 +PW 0 +SE +ET PH +ID 3036 +TI 1760667400.614270687 +CC NStripHits 3 +PE 323.325 +PP -0.768578 -1.05957 2.21017 +PW 0 +SE +ID 3037 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.048918) (Strip hit removed with energy 9.993706) +BD GR Veto +PQ +SE +ET PH +ID 3038 +TI 1760667400.614299535 +CC NStripHits 2 +PE 237.557 +PP 3.42205 -1.00497 -4.07577 +PW 0 +SE +ET PH +ID 3039 +TI 1760667400.614316701 +CC NStripHits 4 +PE 359.327 +PP 0.395484 -0.842559 -2.9117 +PW 0 +SE +ET PH +ID 3040 +TI 1760667400.614340066 +CC NStripHits 4 +PE 378.085 +PP 1.55955 -0.206299 -4.30858 +PW 0 +SE +ET PH +ID 3041 +TI 1760667400.614362716 +CC NStripHits 2 +PE 154.33 +PP -2.39827 -0.654915 -2.44608 +PW 0 +SE +ET PH +ID 3042 +TI 1760667400.614380598 +CC NStripHits 2 +PE 155.549 +PP 0.395484 -1.11123 0.114859 +PW 0 +SE +ET PH +ID 3043 +TI 1760667400.614398241 +CC NStripHits 3 +PE 297.794 +PP -2.51467 -0.970307 -3.72655 +PW 0 +SE +ID 3044 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.048608) (Strip hit removed with energy 19.682177) +QA StripPairing (Best reduced chi square is not below 25 (56.066560)) +BD GR Veto +PQ 56.0666 +SE +ET CO +ID 3045 +TI 1760667400.614441156 +CC NStripHits 6 +PQ 1.5194 +SQ 3 +CT 0.0627644 0.16165 +TL 1 +TE 73.9039 +CE 199.039 1.31787 73.9039 0.957471 +CD 1.21033 -0.737438 -3.95936 0.0336036 0.0205966 0.0336036 -0.302953 -0.398222 -2.56248 0.0336036 0.0224558 0.0336036 0 0 0 0 0 0 +LA 0.287673 +SE +ET PH +ID 3046 +TI 1760667400.614480733 +CC NStripHits 2 +PE 326.028 +PP 4.3533 -0.582504 0.696891 +PW 0 +SE +ET PH +ID 3047 +TI 1760667400.614495038 +CC NStripHits 2 +PE 90.8346 +PP 0.0462656 0.230655 -4.42498 +PW 0 +SE +ID 3048 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.313342) +BD GR Veto +PQ 1.94263 +SE +ID 3049 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.008554) +BD GR Veto +PQ 0.462656 +SE +ET PH +ID 3050 +TI 1760667400.614554166 +CC NStripHits 2 +PE 189.469 +PP 2.4908 0.356707 -4.07577 +PW 0 +SE +ET CO +ID 3051 +TI 1760667400.614578962 +CC NStripHits 7 +PQ 2.88022 +SQ 3 +CT 0.000797622 0.0792185 +TL 1 +TE 237.765 +CE 427.205 1.32068 237.765 1.9047 +CD 0.162672 0.270424 1.74455 0.0336036 0.0354496 0.0336036 -0.0701406 -0.585351 0.696891 0.0336036 0.0215491 0.0336036 0 0 0 0 0 0 +LA 1.37264 +SE +ET PH +ID 3052 +TI 1760667400.614623546 +CC NStripHits 3 +PE 141.386 +PP 0.744703 -1.12726 -2.21327 +PW 0 +SE +ID 3053 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 193.741790) +BD GR Veto +PQ 17.1142 +SE +ET PH +ID 3054 +TI 1760667400.614651679 +CC NStripHits 2 +PE 152.381 +PP -0.884984 0.271496 -0.00154687 +PW 0 +SE +ET UN +ID 3055 +TI 1760667400.614668846 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3056 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.503205) +QA StripPairing (Best reduced chi square is not below 25 (36.606745)) (GR Hit: Detector ID 0 and Energy 467.496263) +BD GR Veto +PQ 36.6067 +SE +ID 3057 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.338815) +BD GR Veto +PQ 8.68341 +SE +ET PH +ID 3058 +TI 1760667400.614711761 +CC NStripHits 2 +PE 204.735 +PP -1.93264 0.368596 -3.84295 +PW 0 +SE +ID 3059 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 120.878071) +BD GR Veto +PQ 2.38088 +SE +ET CO +ID 3060 +TI 1760667400.614750146 +CC NStripHits 5 +PQ 0.431784 +SQ 2 +CT 0 1 +TL 1 +TE 110.951 +CE 332.868 1.01033 110.951 1.08624 +CD 2.02517 -0.407314 -4.07577 0.0336036 0.022397 0.0336036 2.37439 -0.473574 -3.37733 0.0336036 0.0219426 0.0336036 0 0 0 0 0 0 +LA 0.783686 +SE +ET UN +ID 3061 +TI 1760667400.614787101 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 53.5091 +SE +ET UN +ID 3062 +TI 1760667400.614806890 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 446.668 +SE +ET PH +ID 3063 +TI 1760667400.614834070 +CC NStripHits 2 +PE 281.028 +PP 1.55955 0.0201666 -1.63123 +PW 0 +SE +ET UN +ID 3064 +TI 1760667400.614854335 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.4802 +SE +ET CO +ID 3065 +TI 1760667400.614871978 +CC NStripHits 5 +PQ 0.712477 +SQ 2 +CT 0 1 +TL 1 +TE 22.3428 +CE 456.663 1.18861 22.3428 0.892994 +CD -1.46702 -0.873543 -2.7953 0.0336036 0.019882 0.0336036 4.12048 0.196927 -1.86405 0.0336036 0.0285843 0.0336036 0 0 0 0 0 0 +LA 5.76483 +SE +ID 3066 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 141.554553) +BD GR Veto +PQ 4.14078 +SE +ID 3067 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.890369) (Strip hit removed with energy 11.445880) (Strip hit removed with energy 14.764979) (Strip hit removed with energy -0.112185) +QA StripPairing (Best reduced chi square is not below 25 (46.308504)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.515022)) (GR Hit: Detector ID 0 and Energy 179.868974) +BD GR Veto +PQ 46.3085 +SE +ET PH +ID 3068 +TI 1760667400.614977121 +CC NStripHits 2 +PE 103.275 +PP 1.79236 -0.782354 -2.56248 +PW 0 +SE +ET CO +ID 3069 +TI 1760667400.615005254 +CC NStripHits 6 +PQ 0.00937285 +SQ 2 +CT 0.648744 0.351256 +TL 1 +TE 281.957 +CE 195.076 0.957406 281.957 1.3274 +CD 3.88767 -0.730346 -2.21327 0.0336036 0.0206308 0.0336036 3.65486 -0.036322 -2.44608 0.0336036 0.0247612 0.0336036 0 0 0 0 0 0 +LA 0.76816 +SE +ET UN +ID 3070 +TI 1760667400.615039587 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 149.264 +SE +ET CO +ID 3071 +TI 1760667400.635742425 +CC NStripHits 6 +PQ 9.95128 +SQ 2 +CT 0.655761 0.344239 +TL 1 +TE 396.332 +CE 262.683 1.33707 396.332 1.26319 +CD 2.72361 -1.16186 1.16252 0.0336036 0.0237482 0.0336036 1.09392 -0.750945 -0.00154687 0.0336036 0.0204873 0.0336036 0 0 0 0 0 0 +LA 2.04445 +SE +ET UN +ID 3072 +TI 1760667400.635855436 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 398.012 +SE +ET CO +ID 3073 +TI 1760667400.635895490 +CC NStripHits 5 +PQ 1.69947 +SQ 2 +CT 0 1 +TL 1 +TE 23.6905 +CE 71.6932 1.06149 23.6905 0.920735 +CD 1.67595 -0.383181 0.347672 0.0336036 0.0225743 0.0336036 1.32673 0.175786 1.51173 0.0336036 0.0278227 0.0336036 0 0 0 0 0 0 +LA 1.3377 +SE +ET PH +ID 3074 +TI 1760667400.635955810 +CC NStripHits 2 +PE 123.627 +PP -1.81623 0.366168 -2.9117 +PW 0 +SE +ET UN +ID 3075 +TI 1760667400.635996103 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3076 +TI 1760667400.636025667 +CC NStripHits 2 +PE 118.831 +PP -1.2342 0.362851 2.21017 +PW 0 +SE +ID 3077 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1163.695981)) (GR Hit: Detector ID 0 and Energy 163.501424) +BD GR Veto +PQ 1163.7 +SE +ET PH +ID 3078 +TI 1760667400.636079788 +CC NStripHits 2 +PE 76.2406 +PP 1.44314 0.352366 -3.72655 +PW 0 +SE +ET PH +ID 3079 +TI 1760667400.636121034 +CC NStripHits 3 +PE 262.11 +PP 1.32673 -0.554038 -2.21327 +PW 0 +SE +ID 3080 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.078627) +BD GR Veto +PQ +SE +ID 3081 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 3082 +TI 1760667400.636180877 +CC NStripHits 2 +PE 67.668 +PP -1.1178 0.358028 -1.16561 +PW 0 +SE +ET PH +ID 3083 +TI 1760667400.636201381 +CC NStripHits 2 +PE 294.611 +PP 3.07283 -0.900993 1.27892 +PW 0 +SE +ET PH +ID 3084 +TI 1760667400.636222362 +CC NStripHits 3 +PE 236.991 +PP 1.67595 -0.69787 -1.39842 +PW 0 +SE +ET UN +ID 3085 +TI 1760667400.636245727 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.8652 +SE +ET CO +ID 3086 +TI 1760667400.636267423 +CC NStripHits 7 +PQ 11.7069 +SQ 3 +CT 0.000823401 0.181894 +TL 1 +TE 309.687 +CE 353.481 1.78037 309.687 1.97623 +CD 1.09392 -0.0411329 -1.98045 0.0336036 0.0247311 0.0336036 -0.768578 0.319527 -4.07577 0.0336036 0.0382751 0.0336036 0 0 0 0 0 0 +LA 2.82654 +SE +ET UN +ID 3087 +TI 1760667400.636315584 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 47.7805 +SE +ET PH +ID 3088 +TI 1760667400.636338949 +CC NStripHits 3 +PE 329.905 +PP -2.86389 -0.0457413 -1.74764 +PW 0 +SE +ET PH +ID 3089 +TI 1760667400.636358261 +CC NStripHits 4 +PE 205.199 +PP 3.07283 0.365844 -3.02811 +PW 0 +SE +ET PH +ID 3090 +TI 1760667400.636382579 +CC NStripHits 3 +PE 143.717 +PP 2.14158 0.317292 -2.21327 +PW 0 +SE +ET CO +ID 3091 +TI 1760667400.636401891 +CC NStripHits 5 +PQ 0.872877 +SQ 2 +CT 0 1 +TL 1 +TE 124.502 +CE 289.694 0.962167 124.502 1.11062 +CD 3.77127 0.328655 -1.16561 0.0336036 0.0371036 0.0336036 2.6072 -0.0880902 -3.26092 0.0336036 0.0243623 0.0336036 0 0 0 0 0 0 +LA 2.43291 +SE +ET UN +ID 3092 +TI 1760667400.636435508 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 194.96 +SE +ID 3093 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.869790) +BD GR Veto +PQ 0.131254 +SE +ET PH +ID 3094 +TI 1760667400.636483430 +CC NStripHits 2 +PE 118.473 +PP -2.04905 -1.16496 -1.28202 +PW 0 +SE +ET PH +ID 3095 +TI 1760667400.636500597 +CC NStripHits 2 +PE 241.089 +PP 0.0462656 -0.219937 -4.07577 +PW 0 +SE +ET PH +ID 3096 +TI 1760667400.636518001 +CC NStripHits 2 +PE 377.954 +PP 2.14158 0.178032 -1.74764 +PW 0 +SE +ET PH +ID 3097 +TI 1760667400.636537551 +CC NStripHits 2 +PE 81.1775 +PP -1.46702 -1.08937 2.21017 +PW 0 +SE +ET PH +ID 3098 +TI 1760667400.636554718 +CC NStripHits 4 +PE 276.41 +PP 2.4908 -0.906673 -2.67889 +PW 0 +SE +ET PH +ID 3099 +TI 1760667400.636592388 +CC NStripHits 4 +PE 396.907 +PP -1.81623 0.162423 -3.49373 +PW 0 +SE +ET CO +ID 3100 +TI 1760667400.636630058 +CC NStripHits 4 +PQ 3.61148 +SQ 2 +CT 0 1 +TL 1 +TE 41.0193 +CE 467.979 1.30585 41.0193 0.923618 +CD 0.628297 -0.345456 -2.7953 0.0336036 0.0228618 0.0336036 0.0462656 -1.04327 -3.02811 0.0336036 0.0209549 0.0336036 0 0 0 0 0 0 +LA 0.938033 +SE +ET CO +ID 3101 +TI 1760667400.636667251 +CC NStripHits 5 +PQ 0.779785 +SQ 2 +CT 0 1 +TL 1 +TE 90.3833 +CE 326.435 1.08167 90.3833 0.948884 +CD 1.55955 -0.118353 -1.51483 0.0336036 0.024152 0.0336036 2.14158 0.15058 -2.21327 0.0336036 0.0272123 0.0336036 0 0 0 0 0 0 +LA 0.948105 +SE +ET PH +ID 3102 +TI 1760667400.636709213 +CC NStripHits 3 +PE 467.715 +PP 2.14158 -0.774066 -2.44608 +PW 0 +SE +ET PH +ID 3103 +TI 1760667400.636729240 +CC NStripHits 3 +PE 238.463 +PP 3.53845 -0.257758 -0.583578 +PW 0 +SE +ET UN +ID 3104 +TI 1760667400.636747598 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3105 +TI 1760667400.636762380 +CC NStripHits 3 +PE 402.882 +PP 2.4908 -1.06595 -4.54139 +PW 0 +SE +ET PH +ID 3106 +TI 1760667400.636792898 +CC NStripHits 2 +PE 30.9076 +PP -2.39827 0.267108 1.04611 +PW 0 +SE +ET PH +ID 3107 +TI 1760667400.636811256 +CC NStripHits 5 +PE 662.944 +PP 0.395484 -0.364896 -3.49373 +PW 0 +SE +ET PH +ID 3108 +TI 1760667400.636835575 +CC NStripHits 3 +PE 311.367 +PP -0.652172 -0.879939 1.74455 +PW 0 +SE +ID 3109 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 245.833542) +BD GR Veto +PQ 6.74197 +SE +ID 3110 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 127.572375) +BD GR Veto +PQ 2.40239 +SE +ET PH +ID 3111 +TI 1760667400.636900901 +CC NStripHits 2 +PE 410.614 +PP 2.14158 -0.415637 -4.19217 +PW 0 +SE +ID 3112 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1343.613665)) (GR Hit: Detector ID 0 and Energy 145.649553) +BD GR Veto +PQ 1343.61 +SE +ET UN +ID 3113 +TI 1760667400.636928558 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3114 +TI 1760667400.636943817 +CC NStripHits 2 +PE 144.528 +PP -2.63108 -1.08075 2.09377 +PW 0 +SE +ID 3115 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 47.713076) (GR Hit: Detector ID 0 and Energy 274.621516) +BD GR Veto +PQ 0.0528954 +SE +ET PH +ID 3116 +TI 1760667400.636976957 +CC NStripHits 2 +PE 126.016 +PP -2.51467 -0.877768 -3.37733 +PW 0 +SE +ET PH +ID 3117 +TI 1760667400.636993885 +CC NStripHits 5 +PE 660.63 +PP 2.6072 -0.674662 -4.07577 +PW 0 +SE +ET PH +ID 3118 +TI 1760667400.637017965 +CC NStripHits 2 +PE 44.0036 +PP 2.02517 0.338709 1.74455 +PW 0 +SE +ID 3119 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 146.199563) +BD GR Veto +PQ 5.41317 +SE +ET UN +ID 3120 +TI 1760667400.637042522 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 207.048 +SE +ET PH +ID 3121 +TI 1760667400.637068271 +CC NStripHits 4 +PE 663.299 +PP 1.79236 0.182163 1.39533 +PW 0 +SE +ID 3122 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 142.767113) +BD GR Veto +PQ 4.32511 +SE +ET CO +ID 3123 +TI 1760667400.637104034 +CC NStripHits 7 +PQ 0.639998 +SQ 3 +CT 0.00907915 0.205591 +TL 1 +TE 156.928 +CE 191.52 1.3506 156.928 1.0983 +CD -0.884984 -0.478523 -1.86405 0.0336036 0.0219218 0.0336036 0.0462656 -1.17151 -1.28202 0.0336036 0.0189569 0.0336036 0 0 0 0 0 0 +LA 1.29854 +SE +ID 3124 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 27.304443)) +BD GR Veto +PQ 2.531 +SE +ET PH +ID 3125 +TI 1760667400.637169361 +CC NStripHits 2 +PE 155.818 +PP 3.42205 -1.10054 0.464078 +PW 0 +SE +ID 3126 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 99.289284) +BD GR Veto +PQ 0.254624 +SE +ID 3127 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.460360) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 240.745777)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 260.897192) (GR Hit: Detector ID 0 and Energy 113.649457) +BD GR Veto +PQ 11.4431 +SE +ID 3128 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 99.116518) +BD GR Veto +PQ 0.384649 +SE +ET PH +ID 3129 +TI 1760667400.637227535 +CC NStripHits 2 +PE 375.384 +PP -1.69983 0.101408 -4.30858 +PW 0 +SE +ET PH +ID 3130 +TI 1760667400.637245178 +CC NStripHits 2 +PE 67.5846 +PP -1.35061 0.0972438 0.580484 +PW 0 +SE +ID 3131 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 227.122423) +BD GR Veto +PQ 11.9359 +SE +ID 3132 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 0.441162) +QA StripPairing (Best reduced chi square is not below 25 (53.094223)) +BD GR Veto +PQ 53.0942 +SE +ET CO +ID 3133 +TI 1760667400.637288331 +CC NStripHits 6 +PQ 0.138122 +SQ 2 +CT 0.57679 0.42321 +TL 1 +TE 226.805 +CE 166.726 1.10871 226.805 1.12766 +CD 2.02517 0.345781 -0.234359 0.0336036 0.0327957 0.0336036 1.09392 -0.331546 0.114859 0.0336036 0.0229755 0.0336036 0 0 0 0 0 0 +LA 1.20331 +SE +ET PH +ID 3134 +TI 1760667400.637324333 +CC NStripHits 4 +PE 248.135 +PP 3.65486 0.304011 2.09377 +PW 0 +SE +ET UN +ID 3135 +TI 1760667400.655810594 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +CC NStripHits 12 +PE 0 +SE +ET PH +ID 3136 +TI 1760667400.655988454 +CC NStripHits 2 +PE 289.145 +PP -2.86389 -0.259882 -1.39842 +PW 0 +SE +ET PH +ID 3137 +TI 1760667400.656009674 +CC NStripHits 2 +PE 28.0722 +PP 0.0462656 -0.836468 -2.9117 +PW 0 +SE +ET PH +ID 3138 +TI 1760667400.656026840 +CC NStripHits 2 +PE 182.995 +PP 0.162672 0.36116 -3.49373 +PW 0 +SE +ET PH +ID 3139 +TI 1760667400.656044483 +CC NStripHits 3 +PE 185.838 +PP 1.79236 -0.965523 0.696891 +PW 0 +SE +ET UN +ID 3140 +TI 1760667400.656063795 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 659.12 +SE +ID 3141 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 238.609092) +BD GR Veto +PQ 2.78667 +SE +ET PH +ID 3142 +TI 1760667400.656149864 +CC NStripHits 2 +PE 63.6294 +PP -2.74748 0.0794612 -1.39842 +PW 0 +SE +ID 3143 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.707388) (Strip hit removed with energy 15.559765) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.164936)) (Event contains multiple hits on a single strip) +BD GR Veto +PQ 0.054315 +SE +ET UN +ID 3144 +TI 1760667400.656221389 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 42.8574 +SE +ET CO +ID 3145 +TI 1760667400.656239986 +CC NStripHits 8 +PQ 0.343993 +SQ 2 +CT 0 1 +TL 1 +TE 86.3771 +CE 148.881 1.4557 86.3771 1.07932 +CD 0.279078 -0.542557 -3.49373 0.0336036 0.0216475 0.0336036 -0.0701406 -0.187604 -3.95936 0.0336036 0.0235714 0.0336036 0 0 0 0 0 0 +LA 0.681731 +SE +ET PH +ID 3146 +TI 1760667400.656278848 +CC NStripHits 2 +PE 33.3495 +PP 2.25798 0.00690397 -0.816391 +PW 0 +SE +ET PH +ID 3147 +TI 1760667400.656295061 +CC NStripHits 2 +PE 132.676 +PP 1.55955 -0.114661 -1.63123 +PW 0 +SE +ET PH +ID 3148 +TI 1760667400.656311750 +CC NStripHits 2 +PE 147.278 +PP 0.977516 0.343221 -1.16561 +PW 0 +SE +ID 3149 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 283.554261) +BD GR Veto +PQ 0.627209 +SE +ET PH +ID 3150 +TI 1760667400.656337976 +CC NStripHits 4 +PE 407.462 +PP 3.30564 -0.537437 1.27892 +PW 0 +SE +ET UN +ID 3151 +TI 1760667400.656362295 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 570.184 +SE +ET CO +ID 3152 +TI 1760667400.656399965 +CC NStripHits 5 +PQ 19.2233 +SQ 2 +CT 0.57196 0.42804 +TL 1 +TE 254.877 +CE 218.242 1.8976 254.877 1.27531 +CD 1.55955 -0.79701 -2.9117 0.0336036 0.0202035 0.0336036 2.02517 -0.665586 -2.67889 0.0336036 0.0211839 0.0336036 0 0 0 0 0 0 +LA 0.536912 +SE +ET PH +ID 3153 +TI 1760667400.656428813 +CC NStripHits 3 +PE 660.858 +PP -0.652172 -0.449568 -2.09686 +PW 0 +SE +ET UN +ID 3154 +TI 1760667400.656451940 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.3898 +SE +ID 3155 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 150.017762) +BD GR Veto +PQ 1.12965 +SE +ET CO +ID 3156 +TI 1760667400.656498670 +CC NStripHits 4 +PQ 24.5403 +SQ 2 +CT 0 1 +TL 1 +TE 106.569 +CE 379.154 1.30527 106.569 1.29481 +CD 0.162672 -1.0956 -1.74764 0.0336036 0.0260996 0.0336036 0.0462656 -1.09092 0.114859 0.0336036 0.0253175 0.0336036 0 0 0 0 0 0 +LA 1.86614 +SE +ET PH +ID 3157 +TI 1760667400.656529664 +CC NStripHits 4 +PE 487.416 +PP 1.21033 -0.72825 0.696891 +PW 0 +SE +ID 3158 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.826505) +BD GR Veto +PQ +SE +ET PH +ID 3159 +TI 1760667400.656561851 +CC NStripHits 3 +PE 659.972 +PP -1.69983 -0.787117 -3.26092 +PW 0 +SE +ET PH +ID 3160 +TI 1760667400.656584024 +CC NStripHits 4 +PE 233.222 +PP -2.74748 -0.102855 -0.699984 +PW 0 +SE +ID 3161 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 134.073614) +BD GR Veto +PQ 2.37744 +SE +ET PH +ID 3162 +TI 1760667400.656612634 +CC NStripHits 2 +PE 140.822 +PP -1.58342 -0.988178 -2.32967 +PW 0 +SE +ET PH +ID 3163 +TI 1760667400.656631231 +CC NStripHits 3 +PE 90.0085 +PP 4.12048 0.332158 -3.37733 +PW 0 +SE +ET CO +ID 3164 +TI 1760667400.656650781 +CC NStripHits 5 +PQ 0.417413 +SQ 2 +CT 0 1 +TL 1 +TE 150.084 +CE 245.727 0.929834 150.084 1.12185 +CD 3.30564 -0.331432 -3.49373 0.0336036 0.0229765 0.0336036 2.84002 -0.0108002 -3.14452 0.0336036 0.0249116 0.0336036 0 0 0 0 0 0 +LA 0.664496 +SE +ET UN +ID 3165 +TI 1760667400.656685113 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 663.331 +SE +ID 3166 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (42.487681)) (GR Hit: Detector ID 0 and Energy 467.026062) +BD GR Veto +PQ 42.4877 +SE +ID 3167 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (148.167252)) (GR Hit: Detector ID 0 and Energy 657.426327) +BD GR Veto +PQ 148.167 +SE +ET PH +ID 3168 +TI 1760667400.656735658 +CC NStripHits 2 +PE 453.886 +PP -1.2342 0.367208 -3.37733 +PW 0 +SE +ET PH +ID 3169 +TI 1760667400.656770706 +CC NStripHits 3 +PE 138.729 +PP 2.84002 -1.0577 -3.61014 +PW 0 +SE +ID 3170 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.575536) (Strip hit removed with energy 16.316110) +QA StripPairing (Best reduced chi square is not below 25 (74.499191)) (GR Hit: Detector ID 0 and Energy 257.222378) +BD GR Veto +PQ 74.4992 +SE +ID 3171 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.070248) +BD GR Veto +PQ 0.648706 +SE +ET PH +ID 3172 +TI 1760667400.656816244 +CC NStripHits 2 +PE 26.779 +PP -2.51467 -0.23687 -2.32967 +PW 0 +SE +ET PH +ID 3173 +TI 1760667400.656832933 +CC NStripHits 3 +PE 381.178 +PP -2.51467 -0.0563532 1.16252 +PW 0 +SE +ET PH +ID 3174 +TI 1760667400.656852722 +CC NStripHits 2 +PE 423.65 +PP -1.58342 -0.0362922 1.51173 +PW 0 +SE +ET CO +ID 3175 +TI 1760667400.656872272 +CC NStripHits 4 +PQ 2.15969 +SQ 2 +CT 0 1 +TL 1 +TE 130.101 +CE 278.838 0.955121 130.101 0.94711 +CD -2.39827 -0.76168 -1.16561 0.0336036 0.0203699 0.0336036 -2.04905 -0.304436 -1.74764 0.0336036 0.0231546 0.0336036 0 0 0 0 0 0 +LA 0.818404 +SE +ET PH +ID 3176 +TI 1760667400.656903982 +CC NStripHits 3 +PE 102.824 +PP 2.6072 -0.0943662 2.21017 +PW 0 +SE +ET PH +ID 3177 +TI 1760667400.656923532 +CC NStripHits 4 +PE 268.113 +PP 0.279078 0.312322 1.27892 +PW 0 +SE +ID 3178 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (3142.522422)) (GR Hit: Detector ID 0 and Energy 255.650375) +BD GR Veto +PQ 3142.52 +SE +ID 3179 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.204541) +BD GR Veto +PQ 1.70605 +SE +ET PH +ID 3180 +TI 1760667400.656960248 +CC NStripHits 3 +PE 144.394 +PP 2.02517 -0.835202 -2.21327 +PW 0 +SE +ID 3181 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.496733) (Strip hit removed with energy 8.233824) +QA StripPairing (GR Hit: Detector ID 0 and Energy 92.823981) +BD GR Veto +PQ 12.7767 +SE +ID 3182 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.130994) +QA StripPairing (GR Hit: Detector ID 0 and Energy 324.721180) +BD GR Veto +PQ 7.79047 +SE +ET PH +ID 3183 +TI 1760667400.657046318 +CC NStripHits 2 +PE 127.183 +PP 4.12048 -0.999633 -1.16561 +PW 0 +SE +ET UN +ID 3184 +TI 1760667400.657065629 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 416.287 +SE +ET PH +ID 3185 +TI 1760667400.657109498 +CC NStripHits 2 +PE 56.7114 +PP -1.58342 -0.966371 -2.9117 +PW 0 +SE +ID 3186 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.456372) +BD GR Veto +PQ 0.580402 +SE +ET UN +ID 3187 +TI 1760667400.657145261 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 661.131 +SE +ID 3188 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (68.410298)) (GR Hit: Detector ID 0 and Energy 51.963984) +BD GR Veto +PQ 68.4103 +SE +ET PH +ID 3189 +TI 1760667400.657184600 +CC NStripHits 2 +PE 88.5483 +PP 2.4908 0.194749 -1.28202 +PW 0 +SE +ID 3190 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.359828) (Strip hit removed with energy 9.214614) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 35.083803)) +BD GR Veto +PQ 7.87557 +SE +ID 3191 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 129.643366) +BD GR Veto +PQ 2.02061 +SE +ET PH +ID 3192 +TI 1760667400.657237529 +CC NStripHits 3 +PE 110.689 +PP 4.12048 -0.942642 -1.51483 +PW 0 +SE +ET UN +ID 3193 +TI 1760667400.657257318 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 9 +PE 0 +SE +ET UN +ID 3194 +TI 1760667400.657310247 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +CC NStripHits 13 +PE 0 +SE +ET PH +ID 3195 +TI 1760667400.657370567 +CC NStripHits 2 +PE 193.374 +PP -0.419359 -1.08605 -3.61014 +PW 0 +SE +ET PH +ID 3196 +TI 1760667400.657387971 +CC NStripHits 3 +PE 224.174 +PP 1.44314 0.0944362 -1.86405 +PW 0 +SE +ET PH +ID 3197 +TI 1760667400.657407283 +CC NStripHits 3 +PE 391.968 +PP 3.07283 -1.06455 0.231266 +PW 0 +SE +ET UN +ID 3198 +TI 1760667400.657426595 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3199 +TI 1760667400.674080610 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 353.088 +SE +ET PH +ID 3200 +TI 1760667400.674157381 +CC NStripHits 3 +PE 208.264 +PP -0.652172 0.259998 -3.26092 +PW 0 +SE +ET PH +ID 3201 +TI 1760667400.674178838 +CC NStripHits 2 +PE 299.031 +PP -2.04905 -1.15576 -2.44608 +PW 0 +SE +ET PH +ID 3202 +TI 1760667400.674196481 +CC NStripHits 4 +PE 155.085 +PP 1.79236 0.173876 -1.98045 +PW 0 +SE +ET UN +ID 3203 +TI 1760667400.674219369 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 174.597 +SE +ID 3204 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (387.133441)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 265.867148)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 243.191090) (GR Hit: Detector ID 0 and Energy 25.537127) (GR Hit: Detector ID 0 and Energy 70.506609) +BD GR Veto +PQ 387.133 +SE +ET CO +ID 3205 +TI 1760667400.674293756 +CC NStripHits 7 +PQ 44.773 +SQ 2 +CT 0.651616 0.348384 +TL 1 +TE 339.584 +CE 177.479 2.13443 339.584 1.28403 +CD -0.0701406 -1.0909 2.09377 0.0336036 0.025314 0.0336036 0.279078 -1.14949 2.6758 0.0336036 0.0277223 0.0336036 0 0 0 0 0 0 +LA 0.681282 +SE +ET CO +ID 3206 +TI 1760667400.674331188 +CC NStripHits 5 +PQ 0.853301 +SQ 2 +CT 0 1 +TL 1 +TE 121.548 +CE 140.075 0.899636 121.548 1.07626 +CD -2.39827 -0.116649 1.39533 0.0336036 0.0241636 0.0336036 -2.74748 -0.591633 1.16252 0.0336036 0.0215103 0.0336036 0 0 0 0 0 0 +LA 0.633844 +SE +ET CO +ID 3207 +TI 1760667400.674368619 +CC NStripHits 4 +PQ 49.2845 +SQ 2 +CT 0.670936 0.329064 +TL 1 +TE 484.821 +CE 188.248 1.37115 484.821 1.35635 +CD 3.53845 -0.607381 1.51173 0.0336036 0.0214353 0.0336036 3.65486 -0.136534 1.27892 0.0336036 0.023988 0.0336036 0 0 0 0 0 0 +LA 0.538004 +SE +ET PH +ID 3208 +TI 1760667400.674397706 +CC NStripHits 2 +PE 24.4769 +PP -0.186547 -0.15824 -4.54139 +PW 0 +SE +ID 3209 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.455181) +BD GR Veto +PQ 0.216974 +SE +ID 3210 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.258937) +BD GR Veto +PQ 2.09089 +SE +ET UN +ID 3211 +TI 1760667400.674431324 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET PH +ID 3212 +TI 1760667400.674474477 +CC NStripHits 3 +PE 354.876 +PP 3.77127 -1.16319 -4.19217 +PW 0 +SE +ET PH +ID 3213 +TI 1760667400.674494504 +CC NStripHits 2 +PE 132.042 +PP 2.25798 0.311637 -2.32967 +PW 0 +SE +ET UN +ID 3214 +TI 1760667400.674511671 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3215 +TI 1760667400.674521684 +CC NStripHits 2 +PE 174.383 +PP 1.90877 -0.77786 -0.234359 +PW 0 +SE +ET PH +ID 3216 +TI 1760667400.674539566 +CC NStripHits 3 +PE 106.167 +PP 2.72361 0.256112 0.231266 +PW 0 +SE +ID 3217 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.085110) +BD GR Veto +PQ 0.0456778 +SE +ID 3218 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 460.284362) +BD GR Veto +PQ 9.38025 +SE +ET PH +ID 3219 +TI 1760667400.674583435 +CC NStripHits 3 +PE 391.621 +PP 1.09392 -1.05485 -1.74764 +PW 0 +SE +ID 3220 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.451796) +BD GR Veto +PQ +SE +ID 3221 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 103.601234) +BD GR Veto +PQ 0.129824 +SE +ID 3222 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.327825) +QA StripPairing (GR Hit: Detector ID 0 and Energy 326.203947) +BD GR Veto +PQ 1.7444 +SE +ET PH +ID 3223 +TI 1760667400.674665689 +CC NStripHits 2 +PE 91.7922 +PP -0.0701406 -1.09657 -0.932797 +PW 0 +SE +ET PH +ID 3224 +TI 1760667400.674686670 +CC NStripHits 3 +PE 243.592 +PP -0.419359 0.169945 -4.54139 +PW 0 +SE +ET PH +ID 3225 +TI 1760667400.674707889 +CC NStripHits 4 +PE 202.664 +PP 2.6072 -0.893991 1.86095 +PW 0 +SE +ID 3226 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 241.033977) +BD GR Veto +PQ 3.66501 +SE +ID 3227 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 167.724874) +BD GR Veto +PQ 0.0847443 +SE +ET UN +ID 3228 +TI 1760667400.674760818 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3229 +TI 1760667400.674777746 +CC NStripHits 3 +PE 217.472 +PP 1.90877 -0.915713 2.44298 +PW 0 +SE +ID 3230 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.730701) (Strip hit removed with energy 4.904161) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.350340)) (GR Hit: Detector ID 0 and Energy 121.162800) (GR Hit: Detector ID 0 and Energy 125.804677) +BD GR Veto +PQ 1.22536 +SE +ID 3231 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.194788) (Strip hit removed with energy 7.155119) +BD GR Veto +PQ 17.2049 +SE +ET UN +ID 3232 +TI 1760667400.674880266 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3233 +TI 1760667400.674890518 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET PH +ID 3234 +TI 1760667400.674945116 +CC NStripHits 2 +PE 107.037 +PP -0.884984 -0.435335 -1.0492 +PW 0 +SE +ET PH +ID 3235 +TI 1760667400.674962282 +CC NStripHits 2 +PE 118.044 +PP 0.279078 -0.866901 1.97736 +PW 0 +SE +ID 3236 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 3237 +TI 1760667400.674985885 +CC NStripHits 6 +PQ 1.13847 +SQ 2 +CT 0 1 +TL 1 +TE 123.78 +CE 230.554 1.30353 123.78 0.925361 +CD -1.46702 -0.020917 -1.16561 0.0336036 0.0248511 0.0336036 -2.28186 -0.995627 -0.00154687 0.0336036 0.0200744 0.0336036 0 0 0 0 0 0 +LA 1.7231 +SE +ET PH +ID 3238 +TI 1760667400.675032377 +CC NStripHits 2 +PE 130.15 +PP 0.861109 -0.472292 -3.14452 +PW 0 +SE +ID 3239 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 64.946367) +BD GR Veto +PQ 3.09782 +SE +ET PH +ID 3240 +TI 1760667400.675059318 +CC NStripHits 2 +PE 92.1541 +PP 4.3533 -0.74124 -0.00154687 +PW 0 +SE +ET PH +ID 3241 +TI 1760667400.675076961 +CC NStripHits 4 +PE 229.085 +PP 0.395484 -0.813711 -4.42498 +PW 0 +SE +ID 3242 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.096172) +QA StripPairing (Best reduced chi square is not below 25 (51.154635)) (GR Hit: Detector ID 0 and Energy 495.829582) +BD GR Veto +PQ 51.1546 +SE +ID 3243 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.039399) (Strip hit removed with energy 15.855246) +BD GR Veto +PQ +SE +ET PH +ID 3244 +TI 1760667400.675123214 +CC NStripHits 2 +PE 47.5393 +PP 3.42205 -0.811029 -3.02811 +PW 0 +SE +ET UN +ID 3245 +TI 1760667400.675141334 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 193.569 +SE +ID 3246 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.664291) +BD GR Veto +PQ +SE +ET CO +ID 3247 +TI 1760667400.675194978 +CC NStripHits 5 +PQ 11.2438 +SQ 2 +CT 0 1 +TL 1 +TE 75.1282 +CE 353.808 1.1134 75.1282 1.31965 +CD 0.511891 -0.875961 -3.02811 0.0336036 0.0198719 0.0336036 2.37439 -0.430211 -4.19217 0.0336036 0.0222574 0.0336036 0 0 0 0 0 0 +LA 2.24112 +SE +ID 3248 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.824490) +BD GR Veto +PQ 6.49387 +SE +ET PH +ID 3249 +TI 1760667400.675237178 +CC NStripHits 3 +PE 476.912 +PP -0.884984 -0.721944 -2.21327 +PW 0 +SE +ET UN +ID 3250 +TI 1760667400.675258636 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 489.812 +SE +ET CO +ID 3251 +TI 1760667400.675283908 +CC NStripHits 4 +PQ 1.99129 +SQ 2 +CT 0 1 +TL 1 +TE 41.2789 +CE 146.709 0.934852 41.2789 0.891535 +CD -2.28186 -0.998969 1.51173 0.0336036 0.0201028 0.0336036 -2.39827 -0.437575 1.97736 0.0336036 0.0221897 0.0336036 0 0 0 0 0 0 +LA 0.738597 +SE +ID 3252 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (70.110870)) (GR Hit: Detector ID 0 and Energy 59.334441) +BD GR Veto +PQ 70.1109 +SE +ID 3253 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.099145) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.146989) +BD GR Veto +PQ 15.6302 +SE +ET PH +ID 3254 +TI 1760667400.675364017 +CC NStripHits 3 +PE 266.787 +PP 0.395484 -0.359409 -0.234359 +PW 0 +SE +ET CO +ID 3255 +TI 1760667400.675384521 +CC NStripHits 7 +PQ 2.25135 +SQ 3 +CT 0.118224 1.51694 +TL 1 +TE 21.957 +CE 235.854 1.39979 21.957 0.92572 +CD 0.628297 -0.0617646 -1.86405 0.0336036 0.024611 0.0336036 -1.46702 -0.773142 -0.932797 0.0336036 0.0202791 0.0336036 0 0 0 0 0 0 +LA 1.16524 +SE +ET PH +ID 3256 +TI 1760667400.675436973 +CC NStripHits 2 +PE 56.2667 +PP 2.25798 0.374301 -3.49373 +PW 0 +SE +ET UN +ID 3257 +TI 1760667400.675457477 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 657.715 +SE +ET PH +ID 3258 +TI 1760667400.675492286 +CC NStripHits 4 +PE 166.351 +PP 2.14158 0.36942 0.813297 +PW 0 +SE +ID 3259 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 164.374758) +BD GR Veto +PQ 0.822459 +SE +ID 3260 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.736693) +QA StripPairing (GR Hit: Detector ID 0 and Energy 434.691428) +BD GR Veto +PQ 8.48669 +SE +ET UN +ID 3261 +TI 1760667400.675551891 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 122.311 +SE +ET PH +ID 3262 +TI 1760667400.675587892 +CC NStripHits 2 +PE 30.8584 +PP -2.74748 0.142868 -1.74764 +PW 0 +SE +ET PH +ID 3263 +TI 1760667400.698605298 +CC NStripHits 2 +PE 227.842 +PP 4.23689 0.0681014 -2.67889 +PW 0 +SE +ET CO +ID 3264 +TI 1760667400.698660135 +CC NStripHits 5 +PQ 12.7423 +SQ 2 +CT 0 1 +TL 1 +TE 142.316 +CE 347.933 1.16582 142.316 1.37466 +CD -0.0701406 -0.337317 -2.09686 0.0336036 0.0229267 0.0336036 2.72361 -0.30932 -3.14452 0.0336036 0.0231367 0.0336036 0 0 0 0 0 0 +LA 2.98386 +SE +ET PH +ID 3265 +TI 1760667400.698718547 +CC NStripHits 2 +PE 120.849 +PP 1.90877 0.355972 1.86095 +PW 0 +SE +ET UN +ID 3266 +TI 1760667400.698745012 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 663.582 +SE +ID 3267 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.286372) +QA StripPairing (Best reduced chi square is not below 25 (38.427159)) (GR Hit: Detector ID 0 and Energy 60.161877) +BD GR Veto +PQ 38.4272 +SE +ET PH +ID 3268 +TI 1760667400.698829650 +CC NStripHits 2 +PE 94.5504 +PP 3.18923 -1.11821 -0.932797 +PW 0 +SE +ET UN +ID 3269 +TI 1760667400.698847770 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.099 +SE +ET PH +ID 3270 +TI 1760667400.698873996 +CC NStripHits 2 +PE 68.5075 +PP 0.861109 -0.37776 -0.932797 +PW 0 +SE +ET UN +ID 3271 +TI 1760667400.698904991 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 659.361 +SE +ET PH +ID 3272 +TI 1760667400.698988914 +CC NStripHits 2 +PE 162.623 +PP -2.63108 -0.257852 -3.61014 +PW 0 +SE +ET PH +ID 3273 +TI 1760667400.699037551 +CC NStripHits 4 +PE 248.995 +PP 2.4908 0.130515 1.39533 +PW 0 +SE +ET PH +ID 3274 +TI 1760667400.699099540 +CC NStripHits 2 +PE 195.864 +PP -0.0701406 0.00357348 -3.95936 +PW 0 +SE +ET CO +ID 3275 +TI 1760667400.699133157 +CC NStripHits 5 +PQ 22.0599 +SQ 2 +CT 0 1 +TL 1 +TE 104.683 +CE 252.281 1.93232 104.683 1.36607 +CD 0.628297 -0.38336 0.696891 0.0336036 0.0225728 0.0336036 0.511891 -0.258777 0.464078 0.0336036 0.0233335 0.0336036 0 0 0 0 0 0 +LA 0.288571 +SE +ET PH +ID 3276 +TI 1760667400.699191331 +CC NStripHits 2 +PE 109.788 +PP -0.652172 0.0275649 0.347672 +PW 0 +SE +ET PH +ID 3277 +TI 1760667400.699253797 +CC NStripHits 2 +PE 80.9492 +PP 1.21033 -0.886745 1.97736 +PW 0 +SE +ET PH +ID 3278 +TI 1760667400.699299335 +CC NStripHits 3 +PE 214.904 +PP 1.67595 -0.763034 1.16252 +PW 0 +SE +ID 3279 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 206.817303) +BD GR Veto +PQ 2.65243 +SE +ET CO +ID 3280 +TI 1760667400.699364185 +CC NStripHits 5 +PQ 1.80384 +SQ 2 +CT 0 1 +TL 1 +TE 110.747 +CE 474.628 1.09667 110.747 0.942128 +CD 0.628297 0.222948 -0.932797 0.0336036 0.0299742 0.0336036 0.0462656 -0.698044 -1.28202 0.0336036 0.0209966 0.0336036 0 0 0 0 0 0 +LA 1.14409 +SE +ID 3281 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.323969) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.739478) +BD GR Veto +PQ 1.29709 +SE +ID 3282 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 94.151848) +BD GR Veto +PQ 0.00256482 +SE +ET UN +ID 3283 +TI 1760667400.699516534 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.5231 +SE +ET UN +ID 3284 +TI 1760667400.699553489 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 85.7326 +SE +ET PH +ID 3285 +TI 1760667400.699664592 +CC NStripHits 5 +PE 653.737 +PP 2.25798 -0.332747 2.21017 +PW 0 +SE +ET PH +ID 3286 +TI 1760667400.699733018 +CC NStripHits 2 +PE 153.088 +PP -1.35061 -0.43916 1.86095 +PW 0 +SE +ET PH +ID 3287 +TI 1760667400.699767351 +CC NStripHits 3 +PE 178.385 +PP 0.395484 -1.14283 -3.95936 +PW 0 +SE +ET PH +ID 3288 +TI 1760667400.699803113 +CC NStripHits 2 +PE 94.0008 +PP 3.65486 -0.0462766 -1.28202 +PW 0 +SE +ID 3289 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (40.080210)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 27.493199)) (GR Hit: Detector ID 0 and Energy 252.417521) +BD GR Veto +PQ 40.0802 +SE +ET UN +ID 3290 +TI 1760667400.699880123 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3291 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.475732) +QA StripPairing (GR Hit: Detector ID 0 and Energy 125.810737) +BD GR Veto +PQ 1.60966 +SE +ET PH +ID 3292 +TI 1760667400.699938535 +CC NStripHits 2 +PE 46.2196 +PP -1.81623 -0.127167 -4.30858 +PW 0 +SE +ET PH +ID 3293 +TI 1760667400.699969530 +CC NStripHits 3 +PE 116.868 +PP -0.0701406 -0.921746 -3.37733 +PW 0 +SE +ET UN +ID 3294 +TI 1760667400.700010061 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 670.135 +SE +ET PH +ID 3295 +TI 1760667400.700075149 +CC NStripHits 2 +PE 27.1375 +PP 3.42205 -0.561254 0.347672 +PW 0 +SE +ET PH +ID 3296 +TI 1760667400.700127601 +CC NStripHits 3 +PE 173.687 +PP -1.93264 -0.431007 0.464078 +PW 0 +SE +ET PH +ID 3297 +TI 1760667400.700158834 +CC NStripHits 3 +PE 209.553 +PP -0.884984 -0.204746 1.74455 +PW 0 +SE +ET CO +ID 3298 +TI 1760667400.700180053 +CC NStripHits 4 +PQ 9.83602 +SQ 2 +CT 0 1 +TL 1 +TE 123.378 +CE 138.962 0.932259 123.378 1.34162 +CD 1.67595 -0.471138 1.27892 0.0336036 0.0219523 0.0336036 1.21033 -1.14147 1.16252 0.0336036 0.0291688 0.0336036 0 0 0 0 0 0 +LA 0.824437 +SE +ET PH +ID 3299 +TI 1760667400.700242519 +CC NStripHits 2 +PE 105.912 +PP 4.12048 0.124448 1.97736 +PW 0 +SE +ET PH +ID 3300 +TI 1760667400.700281143 +CC NStripHits 2 +PE 104.409 +PP 2.6072 -0.392769 -1.51483 +PW 0 +SE +ET PH +ID 3301 +TI 1760667400.700313091 +CC NStripHits 2 +PE 72.2953 +PP 0.162672 0.310219 -0.583578 +PW 0 +SE +ID 3302 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.663421) +BD GR Veto +PQ 4.98757 +SE +ET PH +ID 3303 +TI 1760667400.700361967 +CC NStripHits 3 +PE 304.179 +PP -1.00139 -0.0450397 -4.30858 +PW 0 +SE +ET PH +ID 3304 +TI 1760667400.700420618 +CC NStripHits 2 +PE 92.1907 +PP -0.186547 0.24254 -2.56248 +PW 0 +SE +ID 3305 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 232.979194) +BD GR Veto +PQ 8.90644 +SE +ID 3306 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 164.922328) +BD GR Veto +PQ 1.52923 +SE +ET PH +ID 3307 +TI 1760667400.700485467 +CC NStripHits 3 +PE 172.173 +PP -1.81623 0.328819 1.04611 +PW 0 +SE +ET PH +ID 3308 +TI 1760667400.700526952 +CC NStripHits 3 +PE 464.525 +PP 0.628297 -0.908646 2.32658 +PW 0 +SE +ET PH +ID 3309 +TI 1760667400.700569152 +CC NStripHits 2 +PE 71.7764 +PP 3.53845 0.335823 -0.00154687 +PW 0 +SE +ET PH +ID 3310 +TI 1760667400.700603485 +CC NStripHits 3 +PE 661.756 +PP 1.09392 0.16002 -2.7953 +PW 0 +SE +ET PH +ID 3311 +TI 1760667400.700651168 +CC NStripHits 2 +PE 88.551 +PP 0.977516 -0.334365 -2.9117 +PW 0 +SE +ET PH +ID 3312 +TI 1760667400.700687408 +CC NStripHits 2 +PE 190.442 +PP 0.511891 -1.03536 -0.117953 +PW 0 +SE +ET PH +ID 3313 +TI 1760667400.700729846 +CC NStripHits 2 +PE 54.6692 +PP 1.32673 0.022409 0.114859 +PW 0 +SE +ET PH +ID 3314 +TI 1760667400.700798988 +CC NStripHits 2 +PE 256.858 +PP 1.90877 -0.497797 -1.86405 +PW 0 +SE +ET UN +ID 3315 +TI 1760667400.700886249 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 661.078 +SE +ET PH +ID 3316 +TI 1760667400.700995922 +CC NStripHits 2 +PE 426.78 +PP 0.279078 0.177294 -4.19217 +PW 0 +SE +ET PH +ID 3317 +TI 1760667400.701042652 +CC NStripHits 2 +PE 254.363 +PP -0.768578 0.367683 -3.72655 +PW 0 +SE +ET PH +ID 3318 +TI 1760667400.701089382 +CC NStripHits 2 +PE 204.823 +PP -1.00139 -0.711653 1.04611 +PW 0 +SE +ET CO +ID 3319 +TI 1760667400.701129913 +CC NStripHits 5 +PQ 1.85532 +SQ 2 +CT 0 1 +TL 1 +TE 102.636 +CE 303.513 1.10063 102.636 0.928412 +CD 1.79236 -1.07977 -0.234359 0.0336036 0.023655 0.0336036 1.09392 -0.756964 -0.467172 0.0336036 0.0204207 0.0336036 0 0 0 0 0 0 +LA 0.803881 +SE +ET CO +ID 3320 +TI 1760667400.701191186 +CC NStripHits 4 +PQ 0.42578 +SQ 2 +CT 0 1 +TL 1 +TE 154.387 +CE 290.457 0.949266 154.387 0.934045 +CD -2.39827 -0.462476 0.929703 0.0336036 0.0219896 0.0336036 -2.63108 -0.62545 0.114859 0.0336036 0.0214198 0.0336036 0 0 0 0 0 0 +LA 0.862978 +SE +ET PH +ID 3321 +TI 1760667400.701244115 +CC NStripHits 2 +PE 129.681 +PP -2.51467 -0.138047 0.464078 +PW 0 +SE +ET PH +ID 3322 +TI 1760667400.701277971 +CC NStripHits 2 +PE 122.021 +PP -0.0701406 -0.782583 -3.37733 +PW 0 +SE +ID 3323 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (264.571102)) (GR Hit: Detector ID 0 and Energy 651.398950) +BD GR Veto +PQ 264.571 +SE +ID 3324 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (778.013642)) (GR Hit: Detector ID 0 and Energy 121.411060) +BD GR Veto +PQ 778.014 +SE +ID 3325 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 128.789647) +BD GR Veto +PQ 7.33165 +SE +ET PH +ID 3326 +TI 1760667400.701386451 +CC NStripHits 4 +PE 198.422 +PP 0.977516 -0.778931 2.32658 +PW 0 +SE +ID 3327 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 85.895525) +BD GR Veto +PQ 0.0945019 +SE +ID 3328 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (126.896727)) (GR Hit: Detector ID 0 and Energy 374.227311) +BD GR Veto +PQ 126.897 +SE +ET UN +ID 3329 +TI 1760667400.718799114 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 9 +PE 0 +SE +ET UN +ID 3330 +TI 1760667400.718924283 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3331 +TI 1760667400.718945741 +CC NStripHits 2 +PE 62.8378 +PP 1.44314 0.0147719 -4.19217 +PW 0 +SE +ID 3332 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.552417) +BD GR Veto +PQ 0.123306 +SE +ID 3333 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 114.575411) +BD GR Veto +PQ 0.0287054 +SE +ET PH +ID 3334 +TI 1760667400.719011545 +CC NStripHits 2 +PE 178.595 +PP -2.39827 -0.425367 -1.98045 +PW 0 +SE +ET PH +ID 3335 +TI 1760667400.719046354 +CC NStripHits 2 +PE 119.274 +PP -0.302953 -1.04279 -2.9117 +PW 0 +SE +ID 3336 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.278405) +BD GR Veto +PQ 4.47198 +SE +ID 3337 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.544175) +BD GR Veto +PQ 19.8947 +SE +ET UN +ID 3338 +TI 1760667400.719163417 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 634.611 +SE +ET PH +ID 3339 +TI 1760667400.719277381 +CC NStripHits 3 +PE 382.558 +PP 1.32673 -0.185343 0.231266 +PW 0 +SE +ET PH +ID 3340 +TI 1760667400.719324827 +CC NStripHits 3 +PE 421.149 +PP 4.23689 -0.879634 1.51173 +PW 0 +SE +ET PH +ID 3341 +TI 1760667400.719372510 +CC NStripHits 3 +PE 202.796 +PP 0.744703 0.373134 0.696891 +PW 0 +SE +ET PH +ID 3342 +TI 1760667400.719409704 +CC NStripHits 2 +PE 115.957 +PP -2.39827 -0.304787 0.696891 +PW 0 +SE +ET UN +ID 3343 +TI 1760667400.719442605 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 414.964 +SE +ET UN +ID 3344 +TI 1760667400.719496011 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 177.199 +SE +ET PH +ID 3345 +TI 1760667400.719543218 +CC NStripHits 3 +PE 104.355 +PP 0.395484 -1.05435 -2.21327 +PW 0 +SE +ET PH +ID 3346 +TI 1760667400.719586610 +CC NStripHits 2 +PE 137.447 +PP 3.88767 -0.580765 1.27892 +PW 0 +SE +ID 3347 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.689897) +BD GR Veto +PQ +SE +ET CO +ID 3348 +TI 1760667400.719634532 +CC NStripHits 4 +PQ 24.386 +SQ 2 +CT 0 1 +TL 1 +TE 75.3496 +CE 278.904 1.27788 75.3496 1.29954 +CD 3.30564 -1.1009 0.580484 0.0336036 0.0269975 0.0336036 3.77127 -0.89259 0.813297 0.0336036 0.0198151 0.0336036 0 0 0 0 0 0 +LA 0.560719 +SE +ET PH +ID 3349 +TI 1760667400.719700336 +CC NStripHits 3 +PE 299.715 +PP 0.279078 0.344815 -0.932797 +PW 0 +SE +ET CO +ID 3350 +TI 1760667400.719748258 +CC NStripHits 6 +PQ 0.482129 +SQ 2 +CT 0 1 +TL 1 +TE 72.7021 +CE 287.466 0.969494 72.7021 1.30311 +CD -0.0701406 -0.0962242 -1.63123 0.0336036 0.0242894 0.0336036 -0.419359 -0.994975 -1.39842 0.0336036 0.0200693 0.0336036 0 0 0 0 0 0 +LA 0.991921 +SE +ET CO +ID 3351 +TI 1760667400.719810485 +CC NStripHits 5 +PQ 0.593648 +SQ 2 +CT 0.739771 0.260229 +TL 1 +TE 465.882 +CE 195.773 0.92292 465.882 1.11541 +CD 3.53845 -1.01943 -0.699984 0.0336036 0.0203476 0.0336036 4.00408 0.178008 -1.0492 0.0336036 0.0278893 0.0336036 0 0 0 0 0 0 +LA 1.3314 +SE +ET PH +ID 3352 +TI 1760667400.719880342 +CC NStripHits 2 +PE 485.326 +PP 2.14158 -0.369791 1.97736 +PW 0 +SE +ET CO +ID 3353 +TI 1760667400.719905376 +CC NStripHits 6 +PQ 0.901169 +SQ 3 +CT 0.126087 0.916501 +TL 1 +TE 485.533 +CE 174.307 1.30896 485.533 0.97798 +CD -1.00139 -1.11162 -1.98045 0.0336036 0.0286388 0.0336036 -0.884984 -0.706566 -1.74764 0.0336036 0.0208811 0.0336036 0 0 0 0 0 0 +LA 0.342548 +SE +ET PH +ID 3354 +TI 1760667400.719939231 +CC NStripHits 4 +PE 469.678 +PP 0.0462656 0.35014 -0.350766 +PW 0 +SE +ET PH +ID 3355 +TI 1760667400.719961404 +CC NStripHits 3 +PE 117.847 +PP 3.18923 0.163075 1.62814 +PW 0 +SE +ET CO +ID 3356 +TI 1760667400.719981193 +CC NStripHits 6 +PQ 4.94214 +SQ 2 +CT 0.718285 0.281715 +TL 1 +TE 469.342 +CE 192.585 0.946048 469.342 1.93355 +CD 0.162672 0.335955 -0.583578 0.0336036 0.035626 0.0336036 -0.302953 0.121798 0.813297 0.0336036 0.026578 0.0336036 0 0 0 0 0 0 +LA 1.48793 +SE +ET CO +ID 3357 +TI 1760667400.720021724 +CC NStripHits 4 +PQ 7.13855 +SQ 2 +CT 0 1 +TL 1 +TE 65.9995 +CE 194.009 1.45594 65.9995 0.913797 +CD 1.44314 0.333315 -4.54139 0.0336036 0.036219 0.0336036 1.32673 -0.596566 -4.19217 0.0336036 0.0214806 0.0336036 0 0 0 0 0 0 +LA 1.00009 +SE +ID 3358 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 268.274348) +BD GR Veto +PQ 2.54451 +SE +ET PH +ID 3359 +TI 1760667400.720073699 +CC NStripHits 3 +PE 385.664 +PP -2.9803 -0.745572 -0.699984 +PW 0 +SE +ET CO +ID 3360 +TI 1760667400.720143318 +CC NStripHits 6 +PQ 0.167701 +SQ 2 +CT 0 1 +TL 1 +TE 113.384 +CE 276.577 1.16627 113.384 1.03459 +CD 2.25798 -0.153731 -2.44608 0.0336036 0.0238146 0.0336036 2.37439 0.28162 -3.37733 0.0336036 0.0369801 0.0336036 0 0 0 0 0 0 +LA 1.03456 +SE +ET PH +ID 3361 +TI 1760667400.720176219 +CC NStripHits 3 +PE 244.078 +PP -2.74748 -0.199735 -2.44608 +PW 0 +SE +ET PH +ID 3362 +TI 1760667400.720200777 +CC NStripHits 2 +PE 51.6189 +PP -0.0701406 0.0984751 0.696891 +PW 0 +SE +ET PH +ID 3363 +TI 1760667400.720217943 +CC NStripHits 2 +PE 44.0018 +PP -1.46702 0.374123 -1.28202 +PW 0 +SE +ID 3364 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.498641) +BD GR Veto +PQ 0.379692 +SE +ET CO +ID 3365 +TI 1760667400.720243692 +CC NStripHits 9 +PQ 20.5398 +SQ 3 +CT 0.422695 0.463082 +TL 1 +TE 370.307 +CE 178.897 1.97925 370.307 1.37201 +CD -0.652172 -0.633662 -1.63123 0.0336036 0.0214053 0.0336036 -1.58342 -0.603833 -3.61014 0.0336036 0.0214463 0.0336036 0 0 0 0 0 0 +LA 0.689449 +SE +ET PH +ID 3366 +TI 1760667400.720299005 +CC NStripHits 4 +PE 443.686 +PP 0.395484 -0.252931 -3.14452 +PW 0 +SE +ET PH +ID 3367 +TI 1760667400.720331668 +CC NStripHits 2 +PE 85.2173 +PP -1.93264 0.347899 -2.09686 +PW 0 +SE +ET CO +ID 3368 +TI 1760667400.720350027 +CC NStripHits 4 +PQ 15.5391 +SQ 2 +CT 0 1 +TL 1 +TE 27.8547 +CE 206.103 1.21619 27.8547 1.36921 +CD 4.3533 0.364323 -0.699984 0.0336036 0.0245038 0.0336036 4.00408 -0.206683 0.114859 0.0336036 0.0234452 0.0336036 0 0 0 0 0 0 +LA 1.0545 +SE +ET UN +ID 3369 +TI 1760667400.720381975 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 58.0143 +SE +ET UN +ID 3370 +TI 1760667400.720401763 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 404.889 +SE +ET UN +ID 3371 +TI 1760667400.720437765 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 516.799 +SE +ET UN +ID 3372 +TI 1760667400.720465660 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET PH +ID 3373 +TI 1760667400.720509767 +CC NStripHits 2 +PE 511.06 +PP -2.04905 0.366967 -2.7953 +PW 0 +SE +ID 3374 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 139.035988) +BD GR Veto +PQ 3.56627 +SE +ET PH +ID 3375 +TI 1760667400.720537424 +CC NStripHits 5 +PE 395.82 +PP 2.6072 -0.118324 -3.49373 +PW 0 +SE +ET PH +ID 3376 +TI 1760667400.720566749 +CC NStripHits 3 +PE 102.668 +PP 2.84002 -0.516028 1.16252 +PW 0 +SE +ET PH +ID 3377 +TI 1760667400.720586299 +CC NStripHits 2 +PE 200.324 +PP 2.84002 0.291017 -3.84295 +PW 0 +SE +ET PH +ID 3378 +TI 1760667400.720604896 +CC NStripHits 2 +PE 28.8505 +PP 3.42205 -0.627328 1.16252 +PW 0 +SE +ET PH +ID 3379 +TI 1760667400.720623016 +CC NStripHits 2 +PE 662.67 +PP 2.72361 -0.987055 -2.9117 +PW 0 +SE +ET CO +ID 3380 +TI 1760667400.720645904 +CC NStripHits 5 +PQ 5.54249 +SQ 2 +CT 0 1 +TL 1 +TE 110.641 +CE 452.651 1.29753 110.641 1.06045 +CD 4.12048 -0.379795 0.813297 0.0336036 0.0226014 0.0336036 -2.39827 -0.780726 -3.72655 0.0336036 0.0202481 0.0336036 0 0 0 0 0 0 +LA 7.95393 +SE +ET UN +ID 3381 +TI 1760667400.720681667 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 268.252 +SE +ID 3382 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.715591) +QA StripPairing (Best reduced chi square is not below 25 (33.773414)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.270919)) (GR Hit: Detector ID 0 and Energy 483.784630) +BD GR Veto +PQ 33.7734 +SE +ET PH +ID 3383 +TI 1760667400.720730543 +CC NStripHits 2 +PE 194.66 +PP -1.1178 -0.112323 -0.699984 +PW 0 +SE +ET PH +ID 3384 +TI 1760667400.720748662 +CC NStripHits 2 +PE 161 +PP -1.35061 -0.82255 0.929703 +PW 0 +SE +ID 3385 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 236.241129) +BD GR Veto +PQ 4.2421 +SE +ID 3386 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 158.380051) +BD GR Veto +PQ 2.86663 +SE +ET UN +ID 3387 +TI 1760667400.720811605 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 9 +PE 0 +SE +ID 3388 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (28.987249)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 157.008982) (GR Hit: Detector ID 0 and Energy 311.337347) +BD GR Veto +PQ 28.9872 +SE +ID 3389 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.558256) +BD GR Veto +PQ 11.9504 +SE +ET PH +ID 3390 +TI 1760667400.720908403 +CC NStripHits 2 +PE 165.157 +PP 2.72361 0.0633056 -3.61014 +PW 0 +SE +ID 3391 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 209.398715) +BD GR Veto +PQ 4.63514 +SE +ID 3392 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.934071) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 31.463781) (GR Hit: Detector ID 0 and Energy 51.081851) (GR Hit: Detector ID 0 and Energy 576.190891) +BD GR Veto +PQ 0.255885 +SE +ET PH +ID 3393 +TI 1760667400.742187023 +CC NStripHits 3 +PE 454.981 +PP 2.6072 0.0995045 -1.51483 +PW 0 +SE +ET PH +ID 3394 +TI 1760667400.742236137 +CC NStripHits 4 +PE 286.988 +PP -0.0701406 -0.490219 -0.699984 +PW 0 +SE +ET PH +ID 3395 +TI 1760667400.742285966 +CC NStripHits 2 +PE 142.074 +PP 4.00408 0.362848 -2.67889 +PW 0 +SE +ET CO +ID 3396 +TI 1760667400.742328882 +CC NStripHits 5 +PQ 1.91072 +SQ 2 +CT 0 1 +TL 1 +TE 98.22 +CE 239.844 0.95692 98.22 1.06344 +CD -1.00139 -1.13282 -0.583578 0.0336036 0.029873 0.0336036 -0.0701406 -0.238147 -0.00154687 0.0336036 0.0233386 0.0336036 0 0 0 0 0 0 +LA 1.41648 +SE +ID 3397 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 40.279580) (GR Hit: Detector ID 0 and Energy 331.310605) +BD GR Veto +PQ 0.0550715 +SE +ET PH +ID 3398 +TI 1760667400.742441654 +CC NStripHits 2 +PE 114.791 +PP 0.977516 -0.162398 -3.61014 +PW 0 +SE +ET PH +ID 3399 +TI 1760667400.742479324 +CC NStripHits 2 +PE 53.8907 +PP -1.93264 -0.579986 -0.350766 +PW 0 +SE +ID 3400 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.184851) (Strip hit removed with energy 7.741544) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.395601) +BD GR Veto +PQ 4.80792 +SE +ID 3401 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 194.744933) +BD GR Veto +PQ 0.00551395 +SE +ET PH +ID 3402 +TI 1760667400.742598295 +CC NStripHits 3 +PE 363.694 +PP -2.04905 0.215445 -3.02811 +PW 0 +SE +ET PH +ID 3403 +TI 1760667400.742640495 +CC NStripHits 2 +PE 59.2884 +PP 4.3533 -0.865083 -1.0492 +PW 0 +SE +ET UN +ID 3404 +TI 1760667400.742679595 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET PH +ID 3405 +TI 1760667400.742748498 +CC NStripHits 2 +PE 134.674 +PP -1.2342 0.328248 2.44298 +PW 0 +SE +ET UN +ID 3406 +TI 1760667400.742773532 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.8332 +SE +ET PH +ID 3407 +TI 1760667400.742791175 +CC NStripHits 2 +PE 61.261 +PP 3.53845 -0.186497 -4.6578 +PW 0 +SE +ET PH +ID 3408 +TI 1760667400.742805957 +CC NStripHits 2 +PE 109.513 +PP -0.302953 0.376348 -2.32967 +PW 0 +SE +ET PH +ID 3409 +TI 1760667400.742823600 +CC NStripHits 2 +PE 52.4944 +PP 0.861109 0.179232 -3.49373 +PW 0 +SE +ET PH +ID 3410 +TI 1760667400.742841243 +CC NStripHits 5 +PE 319.807 +PP 0.162672 -0.937886 -0.234359 +PW 0 +SE +ET CO +ID 3411 +TI 1760667400.742866754 +CC NStripHits 5 +PQ 0.292069 +SQ 2 +CT 0 1 +TL 1 +TE 123.12 +CE 141.384 1.07116 123.12 0.940308 +CD 1.09392 0.175578 -3.84295 0.0336036 0.0278166 0.0336036 0.628297 -0.166193 -3.26092 0.0336036 0.0237128 0.0336036 0 0 0 0 0 0 +LA 0.819982 +SE +ET PH +ID 3412 +TI 1760667400.742900848 +CC NStripHits 3 +PE 321.488 +PP 2.25798 -1.06956 -0.350766 +PW 0 +SE +ET CO +ID 3413 +TI 1760667400.742922067 +CC NStripHits 7 +PQ 53.7443 +SQ 2 +CT 0 1 +TL 1 +TE 171.816 +CE 511.384 1.82244 171.816 1.93459 +CD -0.768578 -0.623478 -0.467172 0.0336036 0.0214209 0.0336036 -0.535766 -0.790925 -0.583578 0.0336036 0.0202224 0.0336036 0 0 0 0 0 0 +LA 0.3095 +SE +ET PH +ID 3414 +TI 1760667400.742954730 +CC NStripHits 3 +PE 550.385 +PP 1.90877 -0.282169 -1.51483 +PW 0 +SE +ET PH +ID 3415 +TI 1760667400.742977857 +CC NStripHits 2 +PE 46.954 +PP -1.81623 0.0530593 1.27892 +PW 0 +SE +ET CO +ID 3416 +TI 1760667400.742995500 +CC NStripHits 7 +PQ 3.41871 +SQ 2 +CT 0.637862 0.362138 +TL 1 +TE 757.918 +CE 505.564 1.14107 757.918 1.97638 +CD -2.28186 -1.05039 -3.37733 0.0336036 0.0212495 0.0336036 1.09392 -1.01838 0.464078 0.0336036 0.0203315 0.0336036 0 0 0 0 0 0 +LA 5.11403 +SE +ET UN +ID 3417 +TI 1760667400.743036985 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +CC NStripHits 11 +PE 0 +SE +ET UN +ID 3418 +TI 1760667400.743090867 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 431.042 +SE +ET PH +ID 3419 +TI 1760667400.743120431 +CC NStripHits 3 +PE 374.075 +PP 2.25798 -0.883882 -3.26092 +PW 0 +SE +ET PH +ID 3420 +TI 1760667400.743155956 +CC NStripHits 5 +PE 499.25 +PP 3.65486 -0.555551 -0.350766 +PW 0 +SE +ET CO +ID 3421 +TI 1760667400.743185043 +CC NStripHits 5 +PQ 14.8418 +SQ 2 +CT 0 1 +TL 1 +TE 102.812 +CE 273.198 1.87938 102.812 0.95719 +CD 1.21033 0.150626 2.21017 0.0336036 0.0272133 0.0336036 1.09392 -0.338381 1.97736 0.0336036 0.0229179 0.0336036 0 0 0 0 0 0 +LA 0.553967 +SE +ET UN +ID 3422 +TI 1760667400.743212461 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3423 +TI 1760667400.743224143 +CC NStripHits 3 +PE 118.849 +PP 0.511891 0.166354 -0.234359 +PW 0 +SE +ET PH +ID 3424 +TI 1760667400.743245363 +CC NStripHits 3 +PE 458.71 +PP -2.39827 0.362635 1.51173 +PW 0 +SE +ET UN +ID 3425 +TI 1760667400.743268251 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3426 +TI 1760667400.743287801 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 658.19 +SE +ET PH +ID 3427 +TI 1760667400.743330240 +CC NStripHits 2 +PE 147.945 +PP 0.511891 -0.144657 -1.16561 +PW 0 +SE +ET UN +ID 3428 +TI 1760667400.743347883 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 458.764 +SE +ET UN +ID 3429 +TI 1760667400.743388175 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.4104 +SE +ET PH +ID 3430 +TI 1760667400.743402957 +CC NStripHits 2 +PE 81.6172 +PP 3.65486 -1.17075 -4.42498 +PW 0 +SE +ET PH +ID 3431 +TI 1760667400.743422508 +CC NStripHits 2 +PE 661.145 +PP -0.186547 0.347138 -3.37733 +PW 0 +SE +ET PH +ID 3432 +TI 1760667400.743444681 +CC NStripHits 3 +PE 88.2967 +PP -1.69983 0.296946 1.39533 +PW 0 +SE +ID 3433 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (8574.980705)) (GR Hit: Detector ID 0 and Energy 387.233878) +BD GR Veto +PQ 8574.98 +SE +ET PH +ID 3434 +TI 1760667400.743472814 +CC NStripHits 2 +PE 152.322 +PP 3.88767 -0.397228 -1.16561 +PW 0 +SE +ET CO +ID 3435 +TI 1760667400.743490457 +CC NStripHits 4 +PQ 2.26901 +SQ 2 +CT 0.516119 0.483881 +TL 1 +TE 227.943 +CE 218.577 0.965988 227.943 0.912836 +CD 1.90877 -0.89398 -2.9117 0.0336036 0.0198111 0.0336036 1.09392 0.29011 -1.51483 0.0336036 0.0379237 0.0336036 0 0 0 0 0 0 +LA 2.00432 +SE +ET PH +ID 3436 +TI 1760667400.743530273 +CC NStripHits 3 +PE 266.984 +PP 2.25798 -0.391388 -2.56248 +PW 0 +SE +ID 3437 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 7.89575 +SE +ET UN +ID 3438 +TI 1760667400.743571281 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7447 +SE +ET UN +ID 3439 +TI 1760667400.743588924 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 265.15 +SE +ET PH +ID 3440 +TI 1760667400.743618726 +CC NStripHits 2 +PE 149.431 +PP 4.12048 0.299652 -1.86405 +PW 0 +SE +ID 3441 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.856719) (Strip hit removed with energy 8.372898) +QA StripPairing (GR Hit: Detector ID 0 and Energy 149.860569) +BD GR Veto +PQ 4.52884 +SE +ET PH +ID 3442 +TI 1760667400.743680238 +CC NStripHits 2 +PE 657.614 +PP -2.74748 0.147823 -0.350766 +PW 0 +SE +ID 3443 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 25.513198) +BD GR Veto +PQ 2.82139 +SE +ET CO +ID 3444 +TI 1760667400.743714570 +CC NStripHits 7 +PQ 0.0789002 +SQ 2 +CT 0.514353 0.485647 +TL 1 +TE 191.469 +CE 167.091 1.0881 191.469 1.31538 +CD -0.535766 0.018456 -1.63123 0.0336036 0.0252347 0.0336036 -2.86389 -0.555817 -0.117953 0.0336036 0.0216246 0.0336036 0 0 0 0 0 0 +LA 2.83548 +SE +ET PH +ID 3445 +TI 1760667400.743754148 +CC NStripHits 2 +PE 48.2442 +PP -2.04905 -1.02156 -1.28202 +PW 0 +SE +ET PH +ID 3446 +TI 1760667400.743774652 +CC NStripHits 3 +PE 162.13 +PP -1.46702 -0.192699 2.09377 +PW 0 +SE +ID 3447 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 99.172982) +BD GR Veto +PQ 0.0161151 +SE +ID 3448 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.128283) +BD GR Veto +PQ 2.48468 +SE +ET PH +ID 3449 +TI 1760667400.743811130 +CC NStripHits 2 +PE 89.5361 +PP 1.55955 0.33442 1.16252 +PW 0 +SE +ID 3450 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 116.360790) +BD GR Veto +PQ 9.89144 +SE +ET PH +ID 3451 +TI 1760667400.743837118 +CC NStripHits 5 +PE 220.051 +PP 3.30564 -0.162074 -1.39842 +PW 0 +SE +ET CO +ID 3452 +TI 1760667400.743863105 +CC NStripHits 4 +PQ 8.57382 +SQ 2 +CT 0 1 +TL 1 +TE 167.351 +CE 326.248 1.3476 167.351 1.31749 +CD 0.628297 -1.00596 1.16252 0.0336036 0.0201728 0.0336036 0.511891 -0.911581 0.813297 0.0336036 0.0197803 0.0336036 0 0 0 0 0 0 +LA 0.380019 +SE +ID 3453 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.124003) +BD GR Veto +PQ +SE +ET UN +ID 3454 +TI 1760667400.743898391 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 196.778 +SE +ET PH +ID 3455 +TI 1760667400.763464450 +CC NStripHits 3 +PE 311.017 +PP -1.58342 0.0725505 -3.61014 +PW 0 +SE +ET CO +ID 3456 +TI 1760667400.763516664 +CC NStripHits 5 +PQ 1.31062 +SQ 2 +CT 0 1 +TL 1 +TE 57.9095 +CE 282.438 1.07576 57.9095 0.9148 +CD 0.162672 -1.07016 -2.9117 0.0336036 0.0225717 0.0336036 0.744703 -0.576248 -3.26092 0.0336036 0.0215938 0.0336036 0 0 0 0 0 0 +LA 0.839443 +SE +ET UN +ID 3457 +TI 1760667400.763555288 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 459.393 +SE +ET PH +ID 3458 +TI 1760667400.763609409 +CC NStripHits 2 +PE 140.996 +PP -1.58342 0.310689 2.6758 +PW 0 +SE +ID 3459 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.251289) +QA StripPairing (Best reduced chi square is not below 25 (36.075898)) (GR Hit: Detector ID 0 and Energy 86.714052) +BD GR Veto +PQ 36.0759 +SE +ET PH +ID 3460 +TI 1760667400.763642072 +CC NStripHits 3 +PE 468.197 +PP 4.00408 -0.555614 -0.234359 +PW 0 +SE +ET PH +ID 3461 +TI 1760667400.763670682 +CC NStripHits 5 +PE 422.31 +PP 1.79236 -0.651579 2.32658 +PW 0 +SE +ID 3462 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (228.559360)) (GR Hit: Detector ID 0 and Energy 664.069329) +BD GR Veto +PQ 228.559 +SE +ET PH +ID 3463 +TI 1760667400.763704061 +CC NStripHits 2 +PE 63.7099 +PP 2.37439 0.372688 -4.07577 +PW 0 +SE +ET UN +ID 3464 +TI 1760667400.763722896 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 485.27 +SE +ET PH +ID 3465 +TI 1760667400.763769865 +CC NStripHits 3 +PE 118.426 +PP 2.14158 0.277655 -0.583578 +PW 0 +SE +ET PH +ID 3466 +TI 1760667400.763790607 +CC NStripHits 3 +PE 122.858 +PP 2.84002 -0.722325 -3.02811 +PW 0 +SE +ET CO +ID 3467 +TI 1760667400.763811349 +CC NStripHits 5 +PQ 0.371267 +SQ 2 +CT 0 1 +TL 1 +TE 90.2125 +CE 378.08 1.10639 90.2125 0.892092 +CD -0.884984 0.111156 1.16252 0.0336036 0.0263913 0.0336036 -0.652172 0.155631 1.51173 0.0336036 0.0273237 0.0336036 0 0 0 0 0 0 +LA 0.422051 +SE +ID 3468 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 189.706786)) +BD GR Veto +PQ 0.505761 +SE +ID 3469 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (6569.315447)) (GR Hit: Detector ID 0 and Energy 331.470731) +BD GR Veto +PQ 6569.32 +SE +ET PH +ID 3470 +TI 1760667400.763911008 +CC NStripHits 2 +PE 231.11 +PP -2.28186 -0.449573 1.97736 +PW 0 +SE +ID 3471 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.495555) +BD GR Veto +PQ 18.7746 +SE +ID 3472 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 152.964623) +BD GR Veto +PQ 6.2942 +SE +ET PH +ID 3473 +TI 1760667400.763948440 +CC NStripHits 3 +PE 80.337 +PP -0.419359 -0.00522342 1.86095 +PW 0 +SE +ET PH +ID 3474 +TI 1760667400.763970851 +CC NStripHits 2 +PE 108.815 +PP 1.09392 -1.05215 -3.49373 +PW 0 +SE +ET PH +ID 3475 +TI 1760667400.763989210 +CC NStripHits 2 +PE 159.113 +PP 0.511891 0.356159 2.32658 +PW 0 +SE +ET UN +ID 3476 +TI 1760667400.764007091 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 487.538 +SE +ET CO +ID 3477 +TI 1760667400.764043092 +CC NStripHits 5 +PQ 57.9711 +SQ 2 +CT 0 1 +TL 1 +TE 42.5674 +CE 463.891 1.95929 42.5674 1.26357 +CD -2.04905 -0.655873 -1.98045 0.0336036 0.0212608 0.0336036 -1.58342 -1.08301 -2.21327 0.0336036 0.0240983 0.0336036 0 0 0 0 0 0 +LA 0.673396 +SE +ET UN +ID 3478 +TI 1760667400.764080524 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 3479 +TI 1760667400.764112710 +CC NStripHits 9 +PQ 62.6298 +SQ 3 +CT 0.190224 0.85411 +TL 1 +TE 450.11 +CE 212.965 1.69776 450.11 1.95717 +CD 0.744703 -0.310526 -3.84295 0.0336036 0.0231312 0.0336036 0.861109 -0.648944 -3.72655 0.0336036 0.0213187 0.0336036 0 0 0 0 0 0 +LA 0.376332 +SE +ET PH +ID 3480 +TI 1760667400.764159440 +CC NStripHits 3 +PE 438.371 +PP 0.279078 0.368667 -1.16561 +PW 0 +SE +ET UN +ID 3481 +TI 1760667400.764182090 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 1028.09 +SE +ET PH +ID 3482 +TI 1760667400.764228582 +CC NStripHits 3 +PE 235.287 +PP 2.14158 -0.27464 1.51173 +PW 0 +SE +ET PH +ID 3483 +TI 1760667400.764248847 +CC NStripHits 3 +PE 140.597 +PP 1.09392 -0.34518 0.813297 +PW 0 +SE +ET UN +ID 3484 +TI 1760667400.764269113 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 241.225 +SE +ET PH +ID 3485 +TI 1760667400.764299154 +CC NStripHits 2 +PE 72.3384 +PP 3.30564 -1.15712 -4.19217 +PW 0 +SE +ET PH +ID 3486 +TI 1760667400.764317512 +CC NStripHits 2 +PE 329.445 +PP 3.30564 -0.769419 -2.9117 +PW 0 +SE +ET UN +ID 3487 +TI 1760667400.764336824 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 3488 +TI 1760667400.764347791 +CC NStripHits 9 +PQ 1.33462 +SQ 3 +CT 1.70778e-05 1.0027 +TL 1 +TE 38.8231 +CE 622.352 2.24912 38.8231 0.937982 +CD 1.79236 -0.920275 0.813297 0.0336036 0.0197812 0.0336036 2.72361 -0.0949078 1.04611 0.0336036 0.0242998 0.0336036 0 0 0 0 0 0 +LA 1.26596 +SE +ET UN +ID 3489 +TI 1760667400.764398813 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3490 +TI 1760667400.764414310 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9509 +SE +ET CO +ID 3491 +TI 1760667400.764432430 +CC NStripHits 8 +PQ 3.00021 +SQ 3 +CT 0.000774008 0.0426086 +TL 1 +TE 133.549 +CE 529.208 1.43579 133.549 1.88125 +CD -1.35061 -0.154194 2.09377 0.0336036 0.0238104 0.0336036 0.861109 -0.405534 1.74455 0.0336036 0.0224074 0.0336036 0 0 0 0 0 0 +LA 2.25318 +SE +ID 3492 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.116232) +BD GR Veto +PQ 0.12943 +SE +ID 3493 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (26.647608)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 127.488427) (GR Hit: Detector ID 0 and Energy 82.778625) +BD GR Veto +PQ 26.6476 +SE +ID 3494 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 249.695449) +BD GR Veto +PQ 1.24176 +SE +ET PH +ID 3495 +TI 1760667400.764515876 +CC NStripHits 3 +PE 170.73 +PP 2.95642 -0.625973 1.39533 +PW 0 +SE +ET PH +ID 3496 +TI 1760667400.764540910 +CC NStripHits 2 +PE 366.953 +PP 3.88767 -0.161418 -0.816391 +PW 0 +SE +ET PH +ID 3497 +TI 1760667400.764560699 +CC NStripHits 3 +PE 200.874 +PP -1.1178 -0.0673069 -1.0492 +PW 0 +SE +ET PH +ID 3498 +TI 1760667400.764580965 +CC NStripHits 2 +PE 122.892 +PP 3.30564 -0.515348 1.39533 +PW 0 +SE +ET PH +ID 3499 +TI 1760667400.764598131 +CC NStripHits 3 +PE 109.388 +PP -1.69983 -0.121428 -1.86405 +PW 0 +SE +ET PH +ID 3500 +TI 1760667400.764618396 +CC NStripHits 2 +PE 37.5221 +PP 4.12048 -0.303713 -0.932797 +PW 0 +SE +ET PH +ID 3501 +TI 1760667400.764635562 +CC NStripHits 4 +PE 368.367 +PP 3.07283 -1.14142 1.74455 +PW 0 +SE +ET PH +ID 3502 +TI 1760667400.764672279 +CC NStripHits 3 +PE 137.333 +PP -2.86389 -0.146762 -0.699984 +PW 0 +SE +ID 3503 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.405930) +BD GR Veto +PQ 0.744315 +SE +ET UN +ID 3504 +TI 1760667400.764705181 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.7787 +SE +ID 3505 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 447.416826) +BD GR Veto +PQ 19.0578 +SE +ET UN +ID 3506 +TI 1760667400.764731407 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.8059 +SE +ET PH +ID 3507 +TI 1760667400.764749526 +CC NStripHits 3 +PE 431.013 +PP 3.65486 -0.845818 -1.51483 +PW 0 +SE +ET PH +ID 3508 +TI 1760667400.764770030 +CC NStripHits 2 +PE 435.121 +PP -2.39827 0.355588 -1.86405 +PW 0 +SE +ID 3509 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.874328) +BD GR Veto +PQ +SE +ET PH +ID 3510 +TI 1760667400.764800548 +CC NStripHits 2 +PE 468.344 +PP -2.51467 -0.527985 1.39533 +PW 0 +SE +ID 3511 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.404472) (Strip hit removed with energy 1.460511) +BD GR Veto +PQ 11.5024 +SE +ID 3512 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (731.606263)) (GR Hit: Detector ID 0 and Energy 116.735531) +BD GR Veto +PQ 731.606 +SE +ET UN +ID 3513 +TI 1760667400.764868497 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ID 3514 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (33.232401)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 324.220027) (GR Hit: Detector ID 0 and Energy 114.110154) +BD GR Veto +PQ 33.2324 +SE +ET PH +ID 3515 +TI 1760667400.764947414 +CC NStripHits 8 +PE 663.951 +PP -1.69983 -0.897047 -3.02811 +PW 0 +SE +ET CO +ID 3516 +TI 1760667400.764979124 +CC NStripHits 4 +PQ 1.14662 +SQ 2 +CT 0 1 +TL 1 +TE 24.6189 +CE 117.185 0.901362 24.6189 0.902665 +CD 4.12048 -1.02697 -2.67889 0.0336036 0.0204841 0.0336036 4.3533 0.241575 -2.7953 0.0336036 0.0315941 0.0336036 0 0 0 0 0 0 +LA 1.29498 +SE +ET PH +ID 3517 +TI 1760667400.765002250 +CC NStripHits 2 +PE 375.512 +PP 3.88767 0.296045 -2.44608 +PW 0 +SE +ET PH +ID 3518 +TI 1760667400.765022277 +CC NStripHits 2 +PE 74.05 +PP 2.37439 -0.971404 2.32658 +PW 0 +SE +ET PH +ID 3519 +TI 1760667400.786550521 +CC NStripHits 2 +PE 262.103 +PP -2.86389 -0.226676 -3.14452 +PW 0 +SE +ET CO +ID 3520 +TI 1760667400.786625623 +CC NStripHits 5 +PQ 7.04498 +SQ 2 +CT 0 1 +TL 1 +TE 97.0282 +CE 122.095 0.910266 97.0282 1.85696 +CD -2.39827 -0.365757 1.04611 0.0336036 0.0227098 0.0336036 -2.9803 -0.429354 0.347672 0.0336036 0.0222645 0.0336036 0 0 0 0 0 0 +LA 0.911383 +SE +ET PH +ID 3521 +TI 1760667400.786694049 +CC NStripHits 2 +PE 120.08 +PP -1.58342 0.170585 -0.932797 +PW 0 +SE +ET UN +ID 3522 +TI 1760667400.786735773 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3523 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 143.521056) +BD GR Veto +PQ 3.40612 +SE +ID 3524 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 174.917794) +BD GR Veto +PQ 0.391465 +SE +ID 3525 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 215.627135) +BD GR Veto +PQ 2.85227 +SE +ET PH +ID 3526 +TI 1760667400.786815881 +CC NStripHits 3 +PE 660.408 +PP -2.28186 -0.249421 2.32658 +PW 0 +SE +ET PH +ID 3527 +TI 1760667400.786874532 +CC NStripHits 5 +PE 252.017 +PP -1.93264 -0.0172359 -2.44608 +PW 0 +SE +ID 3528 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.278836) +BD GR Veto +PQ 1.54072 +SE +ET PH +ID 3529 +TI 1760667400.786987066 +CC NStripHits 3 +PE 210.318 +PP 4.00408 0.0781226 -3.95936 +PW 0 +SE +ET PH +ID 3530 +TI 1760667400.787025213 +CC NStripHits 2 +PE 221.921 +PP -1.81623 -0.562294 -1.63123 +PW 0 +SE +ET UN +ID 3531 +TI 1760667400.787060976 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 234.477 +SE +ET UN +ID 3532 +TI 1760667400.787138223 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3533 +TI 1760667400.787159919 +CC NStripHits 4 +PE 300.293 +PP 3.65486 -0.107668 -1.63123 +PW 0 +SE +ET PH +ID 3534 +TI 1760667400.787204980 +CC NStripHits 3 +PE 227.915 +PP -1.35061 -0.153204 1.62814 +PW 0 +SE +ET PH +ID 3535 +TI 1760667400.787255525 +CC NStripHits 4 +PE 421.107 +PP 2.6072 0.0633918 2.09377 +PW 0 +SE +ET PH +ID 3536 +TI 1760667400.787316799 +CC NStripHits 3 +PE 448.96 +PP -1.58342 0.364087 -1.86405 +PW 0 +SE +ET PH +ID 3537 +TI 1760667400.787355899 +CC NStripHits 2 +PE 184.723 +PP 2.02517 -0.154274 -0.467172 +PW 0 +SE +ET PH +ID 3538 +TI 1760667400.787389278 +CC NStripHits 3 +PE 160.51 +PP -0.302953 -0.0560707 0.231266 +PW 0 +SE +ET UN +ID 3539 +TI 1760667400.787427425 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 60.8887 +SE +ET PH +ID 3540 +TI 1760667400.787465572 +CC NStripHits 3 +PE 137.178 +PP -2.28186 0.0101657 -2.67889 +PW 0 +SE +ET PH +ID 3541 +TI 1760667400.787503719 +CC NStripHits 2 +PE 141.01 +PP 0.162672 -0.58353 -0.467172 +PW 0 +SE +ET PH +ID 3542 +TI 1760667400.787542581 +CC NStripHits 2 +PE 36.0577 +PP -1.58342 0.334896 1.27892 +PW 0 +SE +ET UN +ID 3543 +TI 1760667400.787576913 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 583.814 +SE +ET PH +ID 3544 +TI 1760667400.787636041 +CC NStripHits 2 +PE 439.332 +PP -0.768578 -0.708814 1.74455 +PW 0 +SE +ET CO +ID 3545 +TI 1760667400.787679195 +CC NStripHits 4 +PQ 1.77363 +SQ 2 +CT 0 1 +TL 1 +TE 117.256 +CE 294.78 0.962805 117.256 0.909613 +CD -1.81623 -1.08574 1.62814 0.0336036 0.0244993 0.0336036 -2.86389 -0.639425 1.97736 0.0336036 0.0213819 0.0336036 0 0 0 0 0 0 +LA 1.19111 +SE +ET PH +ID 3546 +TI 1760667400.787741422 +CC NStripHits 2 +PE 47.337 +PP 2.14158 -0.397818 -2.67889 +PW 0 +SE +ET PH +ID 3547 +TI 1760667400.787779569 +CC NStripHits 2 +PE 101.974 +PP -0.0701406 0.368157 -2.67889 +PW 0 +SE +ET PH +ID 3548 +TI 1760667400.787813425 +CC NStripHits 2 +PE 156.601 +PP -1.00139 -1.08623 -3.84295 +PW 0 +SE +ET UN +ID 3549 +TI 1760667400.787852525 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3550 +TI 1760667400.787885904 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 483.64 +SE +ET UN +ID 3551 +TI 1760667400.787966489 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3552 +TI 1760667400.788000345 +CC NStripHits 4 +PE 457.13 +PP 0.395484 0.179852 1.16252 +PW 0 +SE +ET PH +ID 3553 +TI 1760667400.788043498 +CC NStripHits 2 +PE 203.538 +PP 3.30564 -1.02323 -1.63123 +PW 0 +SE +ET CO +ID 3554 +TI 1760667400.788077354 +CC NStripHits 6 +PQ 0.544262 +SQ 2 +CT 0.550235 0.449765 +TL 1 +TE 139.31 +CE 145.013 0.940277 139.31 1.3199 +CD 2.95642 -1.03546 0.929703 0.0336036 0.0206961 0.0336036 2.37439 -0.107201 0.464078 0.0336036 0.0242194 0.0336036 0 0 0 0 0 0 +LA 1.19047 +SE +ET PH +ID 3555 +TI 1760667400.788162231 +CC NStripHits 2 +PE 202.434 +PP -0.302953 0.359634 -4.07577 +PW 0 +SE +ID 3556 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (186.474574)) (GR Hit: Detector ID 0 and Energy 659.743957) +BD GR Veto +PQ 186.475 +SE +ID 3557 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.044859) +QA StripPairing (Best reduced chi square is not below 25 (42.960898)) (GR Hit: Detector ID 0 and Energy 99.124587) +BD GR Veto +PQ 42.9609 +SE +ET CO +ID 3558 +TI 1760667400.788214921 +CC NStripHits 6 +PQ 17.2513 +SQ 2 +CT 0 1 +TL 1 +TE 124.617 +CE 547.583 1.77774 124.617 1.25708 +CD -2.28186 -0.412116 -1.86405 0.0336036 0.0223708 0.0336036 -2.04905 -0.212569 -2.09686 0.0336036 0.0234102 0.0336036 0 0 0 0 0 0 +LA 0.384994 +SE +ID 3559 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 206.744603) +BD GR Veto +PQ 0.121795 +SE +ID 3560 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.097083)) (GR Hit: Detector ID 0 and Energy 169.099545) +BD GR Veto +PQ 27.0971 +SE +ET PH +ID 3561 +TI 1760667400.788260936 +CC NStripHits 2 +PE 100.338 +PP 3.30564 0.359063 1.27892 +PW 0 +SE +ET PH +ID 3562 +TI 1760667400.788279294 +CC NStripHits 3 +PE 454.745 +PP -2.28186 0.211521 -1.51483 +PW 0 +SE +ET PH +ID 3563 +TI 1760667400.788302421 +CC NStripHits 3 +PE 394.21 +PP -2.28186 -0.661274 1.62814 +PW 0 +SE +ID 3564 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 233.911249) +BD GR Veto +PQ 1.62293 +SE +ID 3565 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 132.196357) +BD GR Veto +PQ 13.2384 +SE +ET PH +ID 3566 +TI 1760667400.788362741 +CC NStripHits 3 +PE 125.665 +PP 1.90877 0.321377 2.44298 +PW 0 +SE +ID 3567 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 190.424373) +BD GR Veto +PQ 0.342704 +SE +ET PH +ID 3568 +TI 1760667400.788411378 +CC NStripHits 2 +PE 167.965 +PP -1.93264 0.251567 -1.39842 +PW 0 +SE +ET PH +ID 3569 +TI 1760667400.788429021 +CC NStripHits 3 +PE 238.045 +PP 0.977516 -0.818043 -4.30858 +PW 0 +SE +ET CO +ID 3570 +TI 1760667400.788448572 +CC NStripHits 5 +PQ 0.528466 +SQ 2 +CT 0 1 +TL 1 +TE 108.601 +CE 169.52 1.08227 108.601 0.935578 +CD 3.18923 -0.0780501 -4.19217 0.0336036 0.0244697 0.0336036 4.12048 -0.480274 -2.32967 0.0336036 0.0219138 0.0336036 0 0 0 0 0 0 +LA 2.12083 +SE +ID 3571 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.038795) +BD GR Veto +PQ 0.0429563 +SE +ID 3572 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.006083) +BD GR Veto +PQ +SE +ET PH +ID 3573 +TI 1760667400.788513898 +CC NStripHits 2 +PE 405.853 +PP 2.14158 -0.189775 -1.63123 +PW 0 +SE +ID 3574 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 199.820885) +BD GR Veto +PQ 2.24931 +SE +ET PH +ID 3575 +TI 1760667400.788549184 +CC NStripHits 4 +PE 210.569 +PP -0.884984 -0.637019 -2.32967 +PW 0 +SE +ET PH +ID 3576 +TI 1760667400.788583755 +CC NStripHits 2 +PE 31.0141 +PP 1.32673 -0.45633 -2.67889 +PW 0 +SE +ID 3577 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 180.663263) +BD GR Veto +PQ 17.8284 +SE +ET UN +ID 3578 +TI 1760667400.788612842 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.1408 +SE +ET PH +ID 3579 +TI 1760667400.788631200 +CC NStripHits 3 +PE 116.287 +PP 1.55955 -0.513628 -3.61014 +PW 0 +SE +ET UN +ID 3580 +TI 1760667400.788651227 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 418.721 +SE +ET PH +ID 3581 +TI 1760667400.788679838 +CC NStripHits 4 +PE 447.736 +PP -0.768578 -0.356737 0.347672 +PW 0 +SE +ET PH +ID 3582 +TI 1760667400.788703203 +CC NStripHits 2 +PE 114.555 +PP -0.652172 0.373844 -1.51483 +PW 0 +SE +ET PH +ID 3583 +TI 1760667400.810168981 +CC NStripHits 2 +PE 64.6904 +PP 3.88767 0.346461 -4.30858 +PW 0 +SE +ID 3584 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.223413) +BD GR Veto +PQ +SE +ET PH +ID 3585 +TI 1760667400.810232400 +CC NStripHits 3 +PE 384.513 +PP 3.18923 -1.08668 1.62814 +PW 0 +SE +ET PH +ID 3586 +TI 1760667400.810252189 +CC NStripHits 2 +PE 428.928 +PP -2.9803 -0.367157 -1.74764 +PW 0 +SE +ET PH +ID 3587 +TI 1760667400.810271024 +CC NStripHits 2 +PE 30.7884 +PP 4.00408 -0.457933 -1.28202 +PW 0 +SE +ID 3588 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.007850) +BD GR Veto +PQ 6.54024 +SE +ET PH +ID 3589 +TI 1760667400.810296535 +CC NStripHits 2 +PE 269.26 +PP -0.0701406 -0.163548 -2.67889 +PW 0 +SE +ET PH +ID 3590 +TI 1760667400.810313701 +CC NStripHits 3 +PE 98.3274 +PP 2.02517 0.0867924 1.86095 +PW 0 +SE +ET PH +ID 3591 +TI 1760667400.810333728 +CC NStripHits 3 +PE 420.27 +PP 0.395484 0.000453876 1.27892 +PW 0 +SE +ET PH +ID 3592 +TI 1760667400.810353994 +CC NStripHits 2 +PE 35.3228 +PP -1.69983 -0.621366 -4.42498 +PW 0 +SE +ET PH +ID 3593 +TI 1760667400.810371398 +CC NStripHits 2 +PE 234.353 +PP 2.95642 0.347926 -4.07577 +PW 0 +SE +ET UN +ID 3594 +TI 1760667400.810390233 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 446.976 +SE +ET PH +ID 3595 +TI 1760667400.810420274 +CC NStripHits 3 +PE 126.957 +PP -0.419359 0.353965 -4.6578 +PW 0 +SE +ET CO +ID 3596 +TI 1760667400.810438156 +CC NStripHits 4 +PQ 2.44781 +SQ 2 +CT 0 1 +TL 1 +TE 42.4715 +CE 273.88 0.975728 42.4715 0.906171 +CD -2.51467 -0.83398 0.347672 0.0336036 0.0200249 0.0336036 -1.69983 -0.313797 -0.467172 0.0336036 0.0231137 0.0336036 0 0 0 0 0 0 +LA 1.26433 +SE +ET CO +ID 3597 +TI 1760667400.810470819 +CC NStripHits 5 +PQ 9.69251 +SQ 2 +CT 0 1 +TL 1 +TE 89.2175 +CE 360.413 1.32539 89.2175 1.11554 +CD 0.0462656 -0.493968 -0.583578 0.0336036 0.0218383 0.0336036 -1.69983 -0.268182 -1.51483 0.0336036 0.0232942 0.0336036 0 0 0 0 0 0 +LA 1.99175 +SE +ID 3598 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 196.958533) +BD GR Veto +PQ 2.32862 +SE +ID 3599 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.619985) +QA StripPairing (GR Hit: Detector ID 0 and Energy 210.138241) (GR Hit: Detector ID 0 and Energy 156.971048) +BD GR Veto +PQ 8.46643 +SE +ET CO +ID 3600 +TI 1760667400.810540199 +CC NStripHits 6 +PQ 7.81641 +SQ 2 +CT 0 1 +TL 1 +TE 132.602 +CE 283.974 1.27068 132.602 1.81148 +CD -1.1178 0.0752334 -3.02811 0.0336036 0.0258706 0.0336036 -1.35061 -0.374988 -3.14452 0.0336036 0.0226392 0.0336036 0 0 0 0 0 0 +LA 0.520049 +SE +ET PH +ID 3601 +TI 1760667400.810577869 +CC NStripHits 2 +PE 102.611 +PP 2.72361 -0.118033 0.464078 +PW 0 +SE +ET PH +ID 3602 +TI 1760667400.810595273 +CC NStripHits 2 +PE 108.736 +PP 3.65486 -1.10268 1.04611 +PW 0 +SE +ID 3603 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 3604 +TI 1760667400.810671091 +CC NStripHits 2 +PE 59.1789 +PP -0.768578 -0.351174 0.929703 +PW 0 +SE +ET PH +ID 3605 +TI 1760667400.810688257 +CC NStripHits 3 +PE 665.359 +PP 2.95642 0.0715157 2.32658 +PW 0 +SE +ET PH +ID 3606 +TI 1760667400.810710668 +CC NStripHits 2 +PE 43.6731 +PP -2.16545 0.381054 0.696891 +PW 0 +SE +ET PH +ID 3607 +TI 1760667400.810728788 +CC NStripHits 2 +PE 75.046 +PP 1.79236 -0.373939 -0.00154687 +PW 0 +SE +ET PH +ID 3608 +TI 1760667400.810746431 +CC NStripHits 2 +PE 274.711 +PP 3.65486 -0.0645111 -2.7953 +PW 0 +SE +ET PH +ID 3609 +TI 1760667400.810764074 +CC NStripHits 4 +PE 144.659 +PP 2.37439 0.271042 -1.39842 +PW 0 +SE +ET CO +ID 3610 +TI 1760667400.810786485 +CC NStripHits 5 +PQ 6.15091 +SQ 2 +CT 0 1 +TL 1 +TE 60.2914 +CE 472.432 1.30104 60.2914 0.912548 +CD -2.63108 0.352536 -4.07577 0.0336036 0.0302402 0.0336036 -2.39827 -1.05978 -3.61014 0.0336036 0.0217572 0.0336036 0 0 0 0 0 0 +LA 1.50521 +SE +ET UN +ID 3611 +TI 1760667400.810823678 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 3612 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.820589) +QA StripPairing (Best reduced chi square is not below 25 (25.976043)) (GR Hit: Detector ID 0 and Energy 86.145772) +BD GR Veto +PQ 25.976 +SE +ID 3613 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 403.048128) +BD GR Veto +PQ 5.05912 +SE +ET CO +ID 3614 +TI 1760667400.810865640 +CC NStripHits 4 +PQ 76.482 +SQ 2 +CT 0 1 +TL 1 +TE 70.914 +CE 120.586 1.26642 70.914 1.33904 +CD 2.25798 -0.174047 -3.84295 0.0336036 0.023659 0.0336036 1.90877 0.214448 -3.95936 0.0336036 0.029444 0.0336036 0 0 0 0 0 0 +LA 0.535189 +SE +ET PH +ID 3615 +TI 1760667400.810892820 +CC NStripHits 3 +PE 115.118 +PP -2.04905 -0.108964 0.464078 +PW 0 +SE +ET CO +ID 3616 +TI 1760667400.810913324 +CC NStripHits 8 +PQ 13.5771 +SQ 4 +CT 0.22878 0.258806 +TL 1 +TE 105.906 +CE 547.569 2.13394 105.906 1.37531 +CD -1.1178 0.367915 -1.63123 0.0336036 0.0224357 0.0336036 -0.884984 0.186263 -1.28202 0.0336036 0.0281643 0.0336036 0 0 0 0 0 0 +LA 0.457327 +SE +ET CO +ID 3617 +TI 1760667400.810968399 +CC NStripHits 8 +PQ 10.9338 +SQ 4 +CT 0.0149487 0.102476 +TL 1 +TE 93.4744 +CE 352.727 1.81172 93.4744 1.33303 +CD 2.37439 -0.417 0.464078 0.0336036 0.0223453 0.0336036 2.6072 0.0648123 0.231266 0.0336036 0.0256864 0.0336036 0 0 0 0 0 0 +LA 0.583562 +SE +ID 3618 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (41.249400)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 211.950256) +BD GR Veto +PQ 41.2494 +SE +ET PH +ID 3619 +TI 1760667400.811049938 +CC NStripHits 2 +PE 328.887 +PP -2.28186 0.0806799 -2.32967 +PW 0 +SE +ET PH +ID 3620 +TI 1760667400.811069965 +CC NStripHits 2 +PE 94.5795 +PP 4.3533 -1.01347 -0.699984 +PW 0 +SE +ET PH +ID 3621 +TI 1760667400.811096429 +CC NStripHits 3 +PE 124.718 +PP 2.37439 -0.0830859 -2.32967 +PW 0 +SE +ET PH +ID 3622 +TI 1760667400.811130523 +CC NStripHits 3 +PE 197.911 +PP -0.535766 -1.0206 1.97736 +PW 0 +SE +ID 3623 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 470.787126) +BD GR Veto +PQ 16.069 +SE +ID 3624 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 39.552660) +BD GR Veto +PQ 0.00307595 +SE +ET PH +ID 3625 +TI 1760667400.811168909 +CC NStripHits 2 +PE 660.94 +PP 0.162672 -0.0914766 -1.86405 +PW 0 +SE +ID 3626 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (5141.391555)) (GR Hit: Detector ID 0 and Energy 395.383619) +BD GR Veto +PQ 5141.39 +SE +ET PH +ID 3627 +TI 1760667400.811196327 +CC NStripHits 3 +PE 134.441 +PP 0.279078 -0.894989 -4.07577 +PW 0 +SE +ET PH +ID 3628 +TI 1760667400.811215877 +CC NStripHits 2 +PE 98.7988 +PP -1.1178 -0.823286 -2.32967 +PW 0 +SE +ET PH +ID 3629 +TI 1760667400.811233520 +CC NStripHits 2 +PE 392.302 +PP 1.09392 0.345529 -1.0492 +PW 0 +SE +ET PH +ID 3630 +TI 1760667400.811254024 +CC NStripHits 3 +PE 108.668 +PP -1.2342 -0.767015 -0.932797 +PW 0 +SE +ID 3631 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (350.667066)) (GR Hit: Detector ID 0 and Energy 130.713843) +BD GR Veto +PQ 350.667 +SE +ID 3632 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.914233) +BD GR Veto +PQ 0.922117 +SE +ET PH +ID 3633 +TI 1760667400.811297178 +CC NStripHits 2 +PE 74.5203 +PP -0.419359 -0.181532 -1.51483 +PW 0 +SE +ET PH +ID 3634 +TI 1760667400.811314344 +CC NStripHits 2 +PE 318.486 +PP 3.77127 0.0451809 -0.350766 +PW 0 +SE +ET PH +ID 3635 +TI 1760667400.811331510 +CC NStripHits 3 +PE 238.208 +PP 1.67595 -0.929954 -3.02811 +PW 0 +SE +ID 3636 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 199.039718) +BD GR Veto +PQ 7.93621 +SE +ET CO +ID 3637 +TI 1760667400.811390161 +CC NStripHits 6 +PQ 9.29521 +SQ 2 +CT 0.541175 0.458825 +TL 1 +TE 348.806 +CE 316.013 1.08387 348.806 1.78071 +CD -2.04905 -0.56365 1.74455 0.0336036 0.0216193 0.0336036 -2.28186 -0.40435 1.39533 0.0336036 0.0224146 0.0336036 0 0 0 0 0 0 +LA 0.448923 +SE +ID 3638 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.741887) +QA StripPairing (Best reduced chi square is not below 25 (59.013755)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 66.849619)) (GR Hit: Detector ID 0 and Energy 414.078961) +BD GR Veto +PQ 59.0138 +SE +ID 3639 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 89.510783) +BD GR Veto +PQ 2.39366 +SE +ET PH +ID 3640 +TI 1760667400.811463594 +CC NStripHits 2 +PE 116.835 +PP -2.04905 -0.110651 1.62814 +PW 0 +SE +ET PH +ID 3641 +TI 1760667400.811481952 +CC NStripHits 2 +PE 342.184 +PP 1.55955 -0.542807 -1.63123 +PW 0 +SE +ET PH +ID 3642 +TI 1760667400.811500549 +CC NStripHits 2 +PE 323.031 +PP 0.628297 -1.02157 -3.37733 +PW 0 +SE +ET CO +ID 3643 +TI 1760667400.811520576 +CC NStripHits 9 +PQ 10.3133 +SQ 3 +CT 0.390342 0.465201 +TL 1 +TE 336.081 +CE 323.496 1.61155 336.081 1.81852 +CD -0.652172 -0.212169 -2.09686 0.0336036 0.0234125 0.0336036 -1.46702 -0.794142 -1.86405 0.0336036 0.0202133 0.0336036 0 0 0 0 0 0 +LA 1.02804 +SE +ET UN +ID 3644 +TI 1760667400.811573982 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 3645 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 95.316119) +BD GR Veto +PQ 0.912494 +SE +ET PH +ID 3646 +TI 1760667400.811603307 +CC NStripHits 3 +PE 414.743 +PP -1.58342 0.152277 0.696891 +PW 0 +SE +ET PH +ID 3647 +TI 1760667400.836154222 +CC NStripHits 4 +PE 479.302 +PP 2.72361 0.151719 -3.02811 +PW 0 +SE +ET UN +ID 3648 +TI 1760667400.836256504 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.158 +SE +ET UN +ID 3649 +TI 1760667400.836279392 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.7273 +SE +ET PH +ID 3650 +TI 1760667400.836314916 +CC NStripHits 2 +PE 170.405 +PP -0.186547 0.232681 -4.42498 +PW 0 +SE +ET PH +ID 3651 +TI 1760667400.836333274 +CC NStripHits 5 +PE 664.274 +PP 2.25798 -0.724081 -3.14452 +PW 0 +SE +ID 3652 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.752101) +BD GR Veto +PQ 3.05267 +SE +ET PH +ID 3653 +TI 1760667400.836368322 +CC NStripHits 3 +PE 298.156 +PP 4.12048 0.277675 -1.63123 +PW 0 +SE +ID 3654 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 432.779541) +BD GR Veto +PQ 1.98839 +SE +ET CO +ID 3655 +TI 1760667400.836401700 +CC NStripHits 5 +PQ 0.194908 +SQ 2 +CT 0 1 +TL 1 +TE 29.6028 +CE 312.049 1.17009 29.6028 0.939271 +CD 4.12048 -0.843089 -1.28202 0.0336036 0.0200065 0.0336036 2.95642 0.245146 -0.816391 0.0336036 0.0319937 0.0336036 0 0 0 0 0 0 +LA 1.66015 +SE +ET UN +ID 3656 +TI 1760667400.836439609 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3657 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 172.878646) +BD GR Veto +PQ 6.77804 +SE +ET PH +ID 3658 +TI 1760667400.836459159 +CC NStripHits 2 +PE 281.33 +PP 2.84002 -0.130815 1.27892 +PW 0 +SE +ET PH +ID 3659 +TI 1760667400.836477994 +CC NStripHits 2 +PE 33.1115 +PP -0.302953 -0.952763 2.09377 +PW 0 +SE +ET PH +ID 3660 +TI 1760667400.836496114 +CC NStripHits 2 +PE 133.267 +PP 3.65486 0.366507 -2.44608 +PW 0 +SE +ET UN +ID 3661 +TI 1760667400.836514711 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.3567 +SE +ET UN +ID 3662 +TI 1760667400.836533069 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 489.136 +SE +ET UN +ID 3663 +TI 1760667400.836562871 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.1658 +SE +ET CO +ID 3664 +TI 1760667400.836580514 +CC NStripHits 7 +PQ 32.1835 +SQ 3 +CT 0.00277242 0.0137785 +TL 1 +TE 436.119 +CE 224.144 1.60212 436.119 1.08791 +CD 1.21033 -1.00694 0.580484 0.0336036 0.0201837 0.0336036 0.861109 -0.570312 1.04611 0.0336036 0.0216105 0.0336036 0 0 0 0 0 0 +LA 0.260838 +SE +ET UN +ID 3665 +TI 1760667400.836629867 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 655.617 +SE +ET CO +ID 3666 +TI 1760667400.836656808 +CC NStripHits 6 +PQ 12.1765 +SQ 2 +CT 0 1 +TL 1 +TE 112.992 +CE 292.959 1.30707 112.992 1.05758 +CD 3.18923 -0.868817 -1.86405 0.0336036 0.0199033 0.0336036 2.4908 -0.294601 -2.32967 0.0336036 0.0231766 0.0336036 0 0 0 0 0 0 +LA 1.01702 +SE +ET CO +ID 3667 +TI 1760667400.836715459 +CC NStripHits 7 +PQ 6.27915 +SQ 2 +CT 0 1 +TL 1 +TE 96.1006 +CE 550.689 1.93069 96.1006 1.32202 +CD 0.511891 -0.248019 -0.816391 0.0336036 0.0233438 0.0336036 1.09392 -0.65762 -0.234359 0.0336036 0.0212459 0.0336036 0 0 0 0 0 0 +LA 0.919398 +SE +ET PH +ID 3668 +TI 1760667400.836759090 +CC NStripHits 3 +PE 185.119 +PP 3.07283 -0.342461 -3.61014 +PW 0 +SE +ID 3669 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 274.144322) +BD GR Veto +PQ 1.16349 +SE +ET CO +ID 3670 +TI 1760667400.836789131 +CC NStripHits 5 +PQ 6.6371 +SQ 2 +CT 0 1 +TL 1 +TE 69.247 +CE 133.541 1.07862 69.247 1.37089 +CD -1.1178 0.207377 -0.699984 0.0336036 0.0290672 0.0336036 -1.35061 -0.216532 -1.98045 0.0336036 0.0233894 0.0336036 0 0 0 0 0 0 +LA 1.36876 +SE +ET UN +ID 3671 +TI 1760667400.836821079 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3672 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 53.771065) +BD GR Veto +PQ 14.8481 +SE +ID 3673 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 140.321191) +BD GR Veto +PQ 5.14148 +SE +ET PH +ID 3674 +TI 1760667400.836856126 +CC NStripHits 3 +PE 205.688 +PP 2.72361 -1.06249 2.32658 +PW 0 +SE +ID 3675 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.891861) +BD GR Veto +PQ 5.17307 +SE +ET UN +ID 3676 +TI 1760667400.836892366 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.85 +SE +ET PH +ID 3677 +TI 1760667400.836911916 +CC NStripHits 2 +PE 55.1633 +PP 1.44314 0.198466 -1.63123 +PW 0 +SE +ID 3678 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.203565) (Strip hit removed with energy 17.544175) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 43.539089)) +BD GR Veto +PQ 0.187947 +SE +ET PH +ID 3679 +TI 1760667400.836968183 +CC NStripHits 2 +PE 88.7789 +PP 1.21033 0.283195 -1.98045 +PW 0 +SE +ID 3680 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.617486) +BD GR Veto +PQ 2.78272 +SE +ET UN +ID 3681 +TI 1760667400.836999177 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 233.438 +SE +ID 3682 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 78.966757) +BD GR Veto +PQ 2.50287 +SE +ET PH +ID 3683 +TI 1760667400.837072134 +CC NStripHits 2 +PE 96.9899 +PP -1.35061 -0.722225 -1.74764 +PW 0 +SE +ET PH +ID 3684 +TI 1760667400.837114810 +CC NStripHits 2 +PE 73.8341 +PP -2.04905 0.355414 -1.0492 +PW 0 +SE +ET PH +ID 3685 +TI 1760667400.837134599 +CC NStripHits 2 +PE 218.715 +PP -0.419359 -1.08636 -3.84295 +PW 0 +SE +ET PH +ID 3686 +TI 1760667400.837153434 +CC NStripHits 2 +PE 95.4329 +PP -1.58342 0.306631 -4.54139 +PW 0 +SE +ET PH +ID 3687 +TI 1760667400.837172985 +CC NStripHits 3 +PE 132.228 +PP -1.46702 -0.782736 -1.39842 +PW 0 +SE +ID 3688 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (29.925861)) (GR Hit: Detector ID 0 and Energy 66.572232) +BD GR Veto +PQ 29.9259 +SE +ET CO +ID 3689 +TI 1760667400.837216138 +CC NStripHits 9 +PQ 0.833363 +SQ 2 +CT 0.691998 0.308002 +TL 1 +TE 411.49 +CE 248.658 1.33967 411.49 1.49492 +CD 0.977516 -0.835651 -2.21327 0.0336036 0.0200214 0.0336036 0.279078 0.18269 -3.14452 0.0336036 0.0280399 0.0336036 0 0 0 0 0 0 +LA 1.54663 +SE +ET CO +ID 3690 +TI 1760667400.837284564 +CC NStripHits 5 +PQ 1.7662 +SQ 2 +CT 0 1 +TL 1 +TE 151.09 +CE 230.155 1.08475 151.09 0.926023 +CD -1.46702 -0.269776 -0.350766 0.0336036 0.0232853 0.0336036 -2.16545 -1.02614 -0.467172 0.0336036 0.020467 0.0336036 0 0 0 0 0 0 +LA 1.03607 +SE +ET PH +ID 3691 +TI 1760667400.837316751 +CC NStripHits 2 +PE 23.7045 +PP 3.53845 -0.0914354 -4.42498 +PW 0 +SE +ET CO +ID 3692 +TI 1760667400.837334871 +CC NStripHits 5 +PQ 50.7608 +SQ 2 +CT 0 1 +TL 1 +TE 95.3374 +CE 126.607 1.06436 95.3374 1.41604 +CD 2.72361 -0.868367 -1.28202 0.0336036 0.0199054 0.0336036 2.4908 -0.774242 -1.63123 0.0336036 0.0202734 0.0336036 0 0 0 0 0 0 +LA 0.430125 +SE +ET CO +ID 3693 +TI 1760667400.837372303 +CC NStripHits 5 +PQ 2.23591 +SQ 2 +CT 0 1 +TL 1 +TE 89.5845 +CE 166.07 0.955061 89.5845 1.09078 +CD 0.0462656 0.348766 -0.234359 0.0336036 0.0317301 0.0336036 0.744703 0.145746 -0.00154687 0.0336036 0.0271051 0.0336036 0 0 0 0 0 0 +LA 0.763697 +SE +ET PH +ID 3694 +TI 1760667400.837405443 +CC NStripHits 3 +PE 663.709 +PP -2.28186 -0.727565 -0.350766 +PW 0 +SE +ET UN +ID 3695 +TI 1760667400.837431669 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.3623 +SE +ET PH +ID 3696 +TI 1760667400.837455272 +CC NStripHits 2 +PE 42.2237 +PP 1.67595 -1.00109 -1.63123 +PW 0 +SE +ET UN +ID 3697 +TI 1760667400.837474107 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 129.329 +SE +ID 3698 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 174.872065) +BD GR Veto +PQ 0.0443139 +SE +ET PH +ID 3699 +TI 1760667400.837509155 +CC NStripHits 2 +PE 134.584 +PP -0.302953 0.0898468 -1.74764 +PW 0 +SE +ID 3700 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 233.322925) +BD GR Veto +PQ 6.74961 +SE +ID 3701 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (251.982949)) (GR Hit: Detector ID 0 and Energy 660.361936) +BD GR Veto +PQ 251.983 +SE +ET PH +ID 3702 +TI 1760667400.837545871 +CC NStripHits 2 +PE 165.883 +PP -0.0701406 -0.392599 -2.67889 +PW 0 +SE +ET CO +ID 3703 +TI 1760667400.837567090 +CC NStripHits 4 +PQ 0.662027 +SQ 2 +CT 0 1 +TL 1 +TE 95.9241 +CE 196.459 0.944293 95.9241 0.905744 +CD -0.884984 -0.613349 -3.61014 0.0336036 0.0214252 0.0336036 -1.00139 -0.632033 -3.49373 0.0336036 0.0214097 0.0336036 0 0 0 0 0 0 +LA 0.165683 +SE +ET CO +ID 3704 +TI 1760667400.837590456 +CC NStripHits 5 +PQ 1.03401 +SQ 2 +CT 0 1 +TL 1 +TE 88.9736 +CE 116.735 0.918477 88.9736 1.04505 +CD -2.04905 0.0102162 -4.07577 0.0336036 0.0251299 0.0336036 -2.16545 -0.00144143 -4.30858 0.0336036 0.0249913 0.0336036 0 0 0 0 0 0 +LA 0.260548 +SE +ID 3705 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.891341) +BD GR Veto +PQ 2.72204 +SE +ID 3706 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.993002) +QA StripPairing (Best reduced chi square is not below 25 (1954.333172)) (GR Hit: Detector ID 0 and Energy 165.490518) +BD GR Veto +PQ 1954.33 +SE +ET PH +ID 3707 +TI 1760667400.837657928 +CC NStripHits 3 +PE 149.564 +PP -1.46702 -0.0541886 -2.44608 +PW 0 +SE +ET CO +ID 3708 +TI 1760667400.837679147 +CC NStripHits 4 +PQ 2.37625 +SQ 2 +CT 0 1 +TL 1 +TE 123.479 +CE 238.131 0.951237 123.479 0.940055 +CD 0.511891 0.373931 -3.14452 0.0336036 0.0186922 0.0336036 0.744703 0.10918 -3.26092 0.0336036 0.0263616 0.0336036 0 0 0 0 0 0 +LA 0.371273 +SE +ET UN +ID 3709 +TI 1760667400.837704896 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3710 +TI 1760667400.837723255 +CC NStripHits 2 +PE 75.6395 +PP -2.9803 -0.961486 0.929703 +PW 0 +SE +ET CO +ID 3711 +TI 1760667400.859052658 +CC NStripHits 9 +PQ 19.3857 +SQ 3 +CT 0.000718891 0.03737 +TL 1 +TE 403.324 +CE 256.917 1.71935 403.324 1.35584 +CD 1.32673 -0.994089 -3.61014 0.0336036 0.0200625 0.0336036 1.09392 -0.713038 -3.84295 0.0336036 0.0207863 0.0336036 0 0 0 0 0 0 +LA 0.372964 +SE +ID 3712 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 207.262389) +BD GR Veto +PQ 0.215638 +SE +ET CO +ID 3713 +TI 1760667400.859133005 +CC NStripHits 6 +PQ 3.71424 +SQ 2 +CT 0.562787 0.437213 +TL 1 +TE 358.957 +CE 306.015 1.39583 358.957 1.33866 +CD 1.21033 -0.756334 1.04611 0.0336036 0.0204277 0.0336036 1.44314 -0.687467 -0.699984 0.0336036 0.0210833 0.0336036 0 0 0 0 0 0 +LA 1.76289 +SE +ET UN +ID 3714 +TI 1760667400.859165430 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 233.469 +SE +ET CO +ID 3715 +TI 1760667400.859201431 +CC NStripHits 6 +PQ 2.8758 +SQ 3 +CT 0.0287965 1.46441 +TL 1 +TE 101.579 +CE 294.989 1.30218 101.579 1.3269 +CD 0.279078 -0.548598 1.16252 0.0336036 0.0216337 0.0336036 0.861109 -0.226279 -0.00154687 0.0336036 0.0233519 0.0336036 0 0 0 0 0 0 +LA 1.34078 +SE +ET UN +ID 3716 +TI 1760667400.859256505 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.3719 +SE +ET PH +ID 3717 +TI 1760667400.859276056 +CC NStripHits 3 +PE 147.048 +PP -1.58342 -0.394122 -1.28202 +PW 0 +SE +ID 3718 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 59.875453) +BD GR Veto +PQ 0.520447 +SE +ET PH +ID 3719 +TI 1760667400.859318017 +CC NStripHits 4 +PE 348.977 +PP -2.51467 0.234291 -1.98045 +PW 0 +SE +ET PH +ID 3720 +TI 1760667400.859341621 +CC NStripHits 3 +PE 149.37 +PP 2.6072 0.0135308 0.929703 +PW 0 +SE +ET PH +ID 3721 +TI 1760667400.859362125 +CC NStripHits 2 +PE 156.285 +PP -0.186547 -0.251502 -1.0492 +PW 0 +SE +ID 3722 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.883824) +QA StripPairing (Best reduced chi square is not below 25 (26.313198)) +BD GR Veto +PQ 26.3132 +SE +ET PH +ID 3723 +TI 1760667400.859404802 +CC NStripHits 3 +PE 107.3 +PP 1.67595 -1.02901 -1.63123 +PW 0 +SE +ET PH +ID 3724 +TI 1760667400.859424114 +CC NStripHits 2 +PE 233.406 +PP 1.55955 -0.97151 1.74455 +PW 0 +SE +ET UN +ID 3725 +TI 1760667400.859443902 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.1418 +SE +ET PH +ID 3726 +TI 1760667400.859461545 +CC NStripHits 2 +PE 77.9541 +PP -1.81623 0.13708 -0.699984 +PW 0 +SE +ET CO +ID 3727 +TI 1760667400.859482288 +CC NStripHits 5 +PQ 43.2139 +SQ 2 +CT 0 1 +TL 1 +TE 84.0248 +CE 167.769 1.35268 84.0248 1.26978 +CD -1.1178 0.00952616 -3.49373 0.0336036 0.025121 0.0336036 0.511891 0.055367 -3.61014 0.0336036 0.0255491 0.0336036 0 0 0 0 0 0 +LA 1.63449 +SE +ET PH +ID 3728 +TI 1760667400.859511852 +CC NStripHits 2 +PE 215.248 +PP 0.0462656 0.0844789 -4.54139 +PW 0 +SE +ET PH +ID 3729 +TI 1760667400.859529018 +CC NStripHits 3 +PE 94.436 +PP 2.25798 0.275283 -3.61014 +PW 0 +SE +ID 3730 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 352.493598) +BD GR Veto +PQ 0.751136 +SE +ET UN +ID 3731 +TI 1760667400.859569549 +BD DepthCalibrationError (Out of Range) +CC NStripHits 10 +PE 652.409 +SE +ET UN +ID 3732 +TI 1760667400.859643697 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4795 +SE +ET PH +ID 3733 +TI 1760667400.859661102 +CC NStripHits 2 +PE 162.681 +PP -2.39827 -0.524577 1.39533 +PW 0 +SE +ET CO +ID 3734 +TI 1760667400.859678745 +CC NStripHits 4 +PQ 4.10132 +SQ 2 +CT 0.629327 0.370673 +TL 1 +TE 395.437 +CE 265.364 0.98743 395.437 0.920419 +CD 4.00408 -0.863378 -0.467172 0.0336036 0.0199295 0.0336036 -0.652172 -0.744552 -1.98045 0.0336036 0.0205486 0.0336036 0 0 0 0 0 0 +LA 4.89743 +SE +ET PH +ID 3735 +TI 1760667400.859710693 +CC NStripHits 3 +PE 315.499 +PP 2.84002 0.305285 1.39533 +PW 0 +SE +ET CO +ID 3736 +TI 1760667400.859730720 +CC NStripHits 4 +PQ 1.86799 +SQ 2 +CT 0.666903 0.333097 +TL 1 +TE 304.292 +CE 191.789 0.942677 304.292 0.953849 +CD -1.46702 0.0487392 -2.7953 0.0336036 0.0254815 0.0336036 -1.81623 -0.675562 -2.09686 0.0336036 0.0211306 0.0336036 0 0 0 0 0 0 +LA 1.06507 +SE +ID 3737 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.818506) +BD GR Veto +PQ 3.85902 +SE +ET PH +ID 3738 +TI 1760667400.859770298 +CC NStripHits 4 +PE 192.57 +PP 0.628297 0.0926838 -2.67889 +PW 0 +SE +ET UN +ID 3739 +TI 1760667400.859792947 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 129.746 +SE +ET CO +ID 3740 +TI 1760667400.859822988 +CC NStripHits 6 +PQ 5.31995 +SQ 2 +CT 0 1 +TL 1 +TE 159.487 +CE 347.01 1.99738 159.487 1.07226 +CD 3.88767 -0.392918 -0.234359 0.0336036 0.022496 0.0336036 -2.51467 -0.399771 -0.00154687 0.0336036 0.0224448 0.0336036 0 0 0 0 0 0 +LA 6.40658 +SE +ID 3741 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.966735) +BD GR Veto +PQ +SE +ET PH +ID 3742 +TI 1760667400.859863519 +CC NStripHits 3 +PE 154.234 +PP -2.04905 -1.11072 0.347672 +PW 0 +SE +ET UN +ID 3743 +TI 1760667400.859885454 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 250.618 +SE +ET PH +ID 3744 +TI 1760667400.859914302 +CC NStripHits 2 +PE 36.2046 +PP 3.77127 -0.913709 -3.02811 +PW 0 +SE +ET UN +ID 3745 +TI 1760667400.859931468 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 218.313 +SE +ID 3746 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.763875) +BD GR Veto +PQ +SE +ET UN +ID 3747 +TI 1760667400.859974622 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.0212 +SE +ET CO +ID 3748 +TI 1760667400.859992504 +CC NStripHits 4 +PQ 23.4405 +SQ 2 +CT 0 1 +TL 1 +TE 82.3631 +CE 332.762 1.30272 82.3631 0.920395 +CD 1.44314 -0.787812 -2.67889 0.0336036 0.0202301 0.0336036 2.14158 -0.46404 -0.234359 0.0336036 0.0219821 0.0336036 0 0 0 0 0 0 +LA 2.56288 +SE +ET CO +ID 3749 +TI 1760667400.860031604 +CC NStripHits 5 +PQ 4.67133 +SQ 2 +CT 0 1 +TL 1 +TE 140.199 +CE 516.732 1.44862 140.199 0.941869 +CD 1.32673 0.321299 -2.32967 0.0336036 0.038103 0.0336036 2.14158 -0.291277 -2.9117 0.0336036 0.023184 0.0336036 0 0 0 0 0 0 +LA 1.17388 +SE +ET UN +ID 3750 +TI 1760667400.860067605 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3751 +TI 1760667400.860085010 +CC NStripHits 3 +PE 361.644 +PP -2.86389 -1.09858 0.813297 +PW 0 +SE +ET UN +ID 3752 +TI 1760667400.860137462 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 194.76 +SE +ET PH +ID 3753 +TI 1760667400.860168933 +CC NStripHits 3 +PE 175.157 +PP 2.14158 0.271498 -3.72655 +PW 0 +SE +ID 3754 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.867616) +BD GR Veto +PQ 0.109099 +SE +ET PH +ID 3755 +TI 1760667400.860196590 +CC NStripHits 2 +PE 22.1032 +PP 0.977516 -0.780473 -1.28202 +PW 0 +SE +ET UN +ID 3756 +TI 1760667400.860214233 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 140.541 +SE +ET PH +ID 3757 +TI 1760667400.860240936 +CC NStripHits 3 +PE 144.197 +PP 3.07283 0.222255 -1.39842 +PW 0 +SE +ID 3758 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 263.549610) +BD GR Veto +PQ 0.786318 +SE +ET CO +ID 3759 +TI 1760667400.860274314 +CC NStripHits 4 +PQ 6.47885 +SQ 2 +CT 0.508911 0.491089 +TL 1 +TE 330.681 +CE 324.25 1.4356 330.681 0.919921 +CD 1.79236 -0.920912 -2.9117 0.0336036 0.0197816 0.0336036 2.02517 -0.580185 -2.56248 0.0336036 0.021577 0.0336036 0 0 0 0 0 0 +LA 0.540602 +SE +ET PH +ID 3760 +TI 1760667400.860304832 +CC NStripHits 2 +PE 186.051 +PP 0.744703 -0.425851 2.21017 +PW 0 +SE +ET PH +ID 3761 +TI 1760667400.860323190 +CC NStripHits 2 +PE 134.85 +PP 3.42205 -0.49022 2.55939 +PW 0 +SE +ET PH +ID 3762 +TI 1760667400.860339641 +CC NStripHits 2 +PE 90.0573 +PP -1.1178 0.365887 0.114859 +PW 0 +SE +ET CO +ID 3763 +TI 1760667400.860374689 +CC NStripHits 4 +PQ 9.89755 +SQ 2 +CT 0 1 +TL 1 +TE 36.3872 +CE 419.978 1.29926 36.3872 1.24223 +CD -1.35061 -0.869514 -0.467172 0.0336036 0.0199001 0.0336036 -1.58342 -0.837907 -0.816391 0.0336036 0.020017 0.0336036 0 0 0 0 0 0 +LA 0.420896 +SE +ET PH +ID 3764 +TI 1760667400.860406637 +CC NStripHits 4 +PE 300.83 +PP 4.12048 -0.891758 -0.699984 +PW 0 +SE +ET PH +ID 3765 +TI 1760667400.860428810 +CC NStripHits 2 +PE 204.411 +PP 1.55955 -0.931687 0.464078 +PW 0 +SE +ET PH +ID 3766 +TI 1760667400.860448598 +CC NStripHits 2 +PE 174.611 +PP 0.162672 -0.791255 -1.16561 +PW 0 +SE +ET PH +ID 3767 +TI 1760667400.860469102 +CC NStripHits 3 +PE 667.357 +PP 3.07283 -0.435842 -0.234359 +PW 0 +SE +ET PH +ID 3768 +TI 1760667400.860491752 +CC NStripHits 2 +PE 53.4998 +PP 2.25798 -0.574628 0.464078 +PW 0 +SE +ET UN +ID 3769 +TI 1760667400.860512495 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET PH +ID 3770 +TI 1760667400.860560178 +CC NStripHits 2 +PE 87.6927 +PP -2.28186 0.369099 -0.234359 +PW 0 +SE +ET PH +ID 3771 +TI 1760667400.860577821 +CC NStripHits 2 +PE 31.4915 +PP -1.1178 -0.300249 -2.7953 +PW 0 +SE +ET UN +ID 3772 +TI 1760667400.860594987 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3773 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.426689) +QA StripPairing (Best reduced chi square is not below 25 (41.860452)) (GR Hit: Detector ID 0 and Energy 47.755469) +BD GR Veto +PQ 41.8605 +SE +ET UN +ID 3774 +TI 1760667400.860620498 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 471.584 +SE +ID 3775 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.474545) (Strip hit removed with energy 10.244631) (Strip hit removed with energy 18.369529) +BD GR Veto +PQ 2.27391 +SE +ET UN +ID 3776 +TI 1760667400.883791446 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.8007 +SE +ID 3777 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 113.445804) +BD GR Veto +PQ 0.690711 +SE +ID 3778 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.362137) +BD GR Veto +PQ 8.81098 +SE +ET PH +ID 3779 +TI 1760667400.883857965 +CC NStripHits 2 +PE 57.317 +PP 2.02517 0.00731192 -0.00154687 +PW 0 +SE +ET PH +ID 3780 +TI 1760667400.883893489 +CC NStripHits 2 +PE 28.6192 +PP 3.77127 -0.932636 -0.699984 +PW 0 +SE +ET UN +ID 3781 +TI 1760667400.883928060 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 629.657 +SE +ID 3782 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 392.318630) +BD GR Veto +PQ 0.186517 +SE +ET UN +ID 3783 +TI 1760667400.884000778 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 4 +PE 69.0695 +SE +ID 3784 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 4.310726) +QA StripPairing (Best reduced chi square is not below 25 (42.253123)) (GR Hit: Detector ID 0 and Energy 72.800703) +BD GR Veto +PQ 42.2531 +SE +ET PH +ID 3785 +TI 1760667400.884047031 +CC NStripHits 3 +PE 123.826 +PP -1.2342 -0.0456177 -3.37733 +PW 0 +SE +ET CO +ID 3786 +TI 1760667400.884074687 +CC NStripHits 4 +PQ 8.66657 +SQ 2 +CT 0.717296 0.282704 +TL 1 +TE 424.047 +CE 237.09 0.935302 424.047 1.37473 +CD 2.6072 -0.77295 -2.7953 0.0336036 0.0202802 0.0336036 1.90877 -0.287708 -3.95936 0.0336036 0.0231941 0.0336036 0 0 0 0 0 0 +LA 1.44163 +SE +ET CO +ID 3787 +TI 1760667400.884128093 +CC NStripHits 6 +PQ 1.59959 +SQ 2 +CT 0 1 +TL 1 +TE 31.6494 +CE 552.104 1.31601 31.6494 0.90886 +CD -1.35061 0.318666 0.696891 0.0336036 0.0383496 0.0336036 -2.39827 0.355729 0.580484 0.0336036 0.0288488 0.0336036 0 0 0 0 0 0 +LA 1.05476 +SE +ET PH +ID 3788 +TI 1760667400.884161233 +CC NStripHits 2 +PE 235.221 +PP -1.1178 0.16442 -3.26092 +PW 0 +SE +ET PH +ID 3789 +TI 1760667400.884179115 +CC NStripHits 3 +PE 643.598 +PP -1.93264 0.0320499 -1.63123 +PW 0 +SE +ET PH +ID 3790 +TI 1760667400.884202241 +CC NStripHits 3 +PE 476.063 +PP -2.86389 0.0423337 -1.0492 +PW 0 +SE +ID 3791 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.654261) +QA StripPairing (GR Hit: Detector ID 0 and Energy 668.856826) +BD GR Veto +PQ 9.20921 +SE +ET PH +ID 3792 +TI 1760667400.884236574 +CC NStripHits 3 +PE 154.05 +PP 3.18923 -0.684194 1.86095 +PW 0 +SE +ET CO +ID 3793 +TI 1760667400.884270429 +CC NStripHits 5 +PQ 7.7036 +SQ 2 +CT 0.639914 0.360086 +TL 1 +TE 382.577 +CE 268.561 1.52045 382.577 1.18078 +CD 2.72361 -0.234001 -3.49373 0.0336036 0.0233394 0.0336036 1.67595 -0.24374 -2.44608 0.0336036 0.0233414 0.0336036 0 0 0 0 0 0 +LA 1.48164 +SE +ET UN +ID 3794 +TI 1760667400.884321689 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 511.636 +SE +ET CO +ID 3795 +TI 1760667400.884368658 +CC NStripHits 5 +PQ 1.52544 +SQ 2 +CT 0 1 +TL 1 +TE 44.2287 +CE 313.696 1.08334 44.2287 0.914749 +CD 0.279078 -0.951384 1.62814 0.0336036 0.0198378 0.0336036 0.0462656 -0.533209 0.929703 0.0336036 0.0216764 0.0336036 0 0 0 0 0 0 +LA 0.846691 +SE +ET CO +ID 3796 +TI 1760667400.884402513 +CC NStripHits 4 +PQ 18.9699 +SQ 2 +CT 0 1 +TL 1 +TE 95.0919 +CE 123.613 1.34308 95.0919 1.34219 +CD 3.53845 0.0115264 -2.56248 0.0336036 0.025147 0.0336036 4.00408 -0.0101202 -2.67889 0.0336036 0.0249164 0.0336036 0 0 0 0 0 0 +LA 0.480449 +SE +ET UN +ID 3797 +TI 1760667400.884437799 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET PH +ID 3798 +TI 1760667400.884486913 +CC NStripHits 4 +PE 228.215 +PP 3.65486 -0.256739 -4.07577 +PW 0 +SE +ET UN +ID 3799 +TI 1760667400.884514570 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 3800 +TI 1760667400.884532213 +CC NStripHits 8 +PQ 3.54909 +SQ 3 +CT 0.0853374 0.104963 +TL 1 +TE 421.445 +CE 236.895 1.71258 421.445 1.32083 +CD 2.02517 -1.03119 0.114859 0.0336036 0.0205807 0.0336036 2.72361 -0.262526 -1.51483 0.0336036 0.0233211 0.0336036 0 0 0 0 0 0 +LA 0.265299 +SE +ET PH +ID 3801 +TI 1760667400.884587526 +CC NStripHits 4 +PE 180.942 +PP 1.09392 -0.345218 0.231266 +PW 0 +SE +ET CO +ID 3802 +TI 1760667400.884610891 +CC NStripHits 6 +PQ 10.2731 +SQ 3 +CT 0.0268305 0.389193 +TL 1 +TE 84.4342 +CE 295.989 1.57595 84.4342 0.932379 +CD 3.77127 -0.964417 -2.32967 0.0336036 0.0199049 0.0336036 3.18923 -0.902522 0.580484 0.0336036 0.0197908 0.0336036 0 0 0 0 0 0 +LA 0.505051 +SE +ET PH +ID 3803 +TI 1760667400.884650945 +CC NStripHits 3 +PE 196.556 +PP -1.93264 -0.353471 -1.28202 +PW 0 +SE +ID 3804 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (233.367960)) (GR Hit: Detector ID 0 and Energy 665.150497) +BD GR Veto +PQ 233.368 +SE +ID 3805 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 120.816251) +BD GR Veto +PQ 4.61282 +SE +ET UN +ID 3806 +TI 1760667400.884705543 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3807 +TI 1760667400.884723186 +CC NStripHits 2 +PE 89.928 +PP 4.12048 -1.17504 -0.932797 +PW 0 +SE +ET UN +ID 3808 +TI 1760667400.884762287 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3809 +TI 1760667400.884779214 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 3810 +TI 1760667400.884845495 +CC NStripHits 2 +PE 68.6883 +PP 4.12048 -0.988273 -2.32967 +PW 0 +SE +ET CO +ID 3811 +TI 1760667400.884863853 +CC NStripHits 6 +PQ 3.56701 +SQ 3 +CT 0.0024918 0.268865 +TL 1 +TE 67.1091 +CE 278.26 1.5721 67.1091 0.934518 +CD -2.39827 -0.594532 -1.63123 0.0336036 0.0214925 0.0336036 -0.768578 -0.277055 -1.28202 0.0336036 0.0232428 0.0336036 0 0 0 0 0 0 +LA 0.945899 +SE +ET PH +ID 3812 +TI 1760667400.884909629 +CC NStripHits 3 +PE 661.53 +PP 2.37439 -0.475251 -1.86405 +PW 0 +SE +ET UN +ID 3813 +TI 1760667400.884934425 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 10 +PE 0 +SE +ID 3814 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy -0.170805) +BD GR Veto +PQ 0.763456 +SE +ET CO +ID 3815 +TI 1760667400.885018587 +CC NStripHits 6 +PQ 0.439099 +SQ 2 +CT 0 1 +TL 1 +TE 98.9771 +CE 452.512 1.1515 98.9771 1.07857 +CD 2.4908 -0.277427 0.347672 0.0336036 0.0232406 0.0336036 -1.69983 -0.69263 -0.117953 0.0336036 0.0210494 0.0336036 0 0 0 0 0 0 +LA 4.23681 +SE +ID 3816 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 217.563158) +BD GR Veto +PQ 1.26066 +SE +ET PH +ID 3817 +TI 1760667400.885064601 +CC NStripHits 2 +PE 117.024 +PP -1.81623 0.100867 -2.67889 +PW 0 +SE +ET PH +ID 3818 +TI 1760667400.885085105 +CC NStripHits 3 +PE 294.795 +PP 0.162672 -1.10428 -3.84295 +PW 0 +SE +ET CO +ID 3819 +TI 1760667400.885105609 +CC NStripHits 4 +PQ 13.5012 +SQ 2 +CT 0 1 +TL 1 +TE 48.2815 +CE 146.569 1.36503 48.2815 1.32352 +CD 2.84002 -0.130969 -2.7953 0.0336036 0.0240446 0.0336036 2.95642 0.196756 -2.56248 0.0336036 0.0285769 0.0336036 0 0 0 0 0 0 +LA 0.418519 +SE +ET PH +ID 3820 +TI 1760667400.885136127 +CC NStripHits 3 +PE 128.159 +PP 3.42205 0.199029 -3.72655 +PW 0 +SE +ET PH +ID 3821 +TI 1760667400.885160446 +CC NStripHits 3 +PE 453.515 +PP 2.02517 -0.023885 -2.21327 +PW 0 +SE +ID 3822 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (763.821053)) (GR Hit: Detector ID 0 and Energy 111.103469) +BD GR Veto +PQ 763.821 +SE +ET UN +ID 3823 +TI 1760667400.885189294 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 129.14 +SE +ET PH +ID 3824 +TI 1760667400.885223150 +CC NStripHits 2 +PE 60.6941 +PP 1.44314 0.083847 -4.07577 +PW 0 +SE +ET UN +ID 3825 +TI 1760667400.885241270 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 3826 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 433.591002) +BD GR Veto +PQ 14.9297 +SE +ID 3827 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 97.218695) +BD GR Veto +PQ 0.0175939 +SE +ET UN +ID 3828 +TI 1760667400.885295629 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 660.834 +SE +ET PH +ID 3829 +TI 1760667400.885334730 +CC NStripHits 3 +PE 315.415 +PP 0.744703 -0.686292 1.51173 +PW 0 +SE +ET PH +ID 3830 +TI 1760667400.885355234 +CC NStripHits 2 +PE 58.465 +PP 2.02517 -0.867556 1.39533 +PW 0 +SE +ET PH +ID 3831 +TI 1760667400.885374069 +CC NStripHits 2 +PE 185.969 +PP 3.42205 -0.00681194 -2.32967 +PW 0 +SE +ET CO +ID 3832 +TI 1760667400.885391950 +CC NStripHits 6 +PQ 2.05691 +SQ 2 +CT 0.625234 0.374766 +TL 1 +TE 384.046 +CE 278.223 1.04681 384.046 1.87509 +CD 1.21033 -0.596378 2.32658 0.0336036 0.0214817 0.0336036 2.25798 -0.119971 0.929703 0.0336036 0.0241404 0.0336036 0 0 0 0 0 0 +LA 1.80992 +SE +ID 3833 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 157.315643) +BD GR Veto +PQ 1.80695 +SE +ET PH +ID 3834 +TI 1760667400.885435819 +CC NStripHits 5 +PE 661.272 +PP 0.511891 -0.550046 -2.44608 +PW 0 +SE +ET PH +ID 3835 +TI 1760667400.885461568 +CC NStripHits 3 +PE 464.319 +PP 3.77127 -0.103358 -3.95936 +PW 0 +SE +ID 3836 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 268.773437) +BD GR Veto +PQ 8.39188 +SE +ET UN +ID 3837 +TI 1760667400.885508298 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 658.676 +SE +ET PH +ID 3838 +TI 1760667400.885549306 +CC NStripHits 3 +PE 174.48 +PP 3.18923 0.263541 -3.14452 +PW 0 +SE +ET PH +ID 3839 +TI 1760667400.906325817 +CC NStripHits 4 +PE 521.915 +PP 1.55955 -0.596534 0.813297 +PW 0 +SE +ID 3840 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 111.855767) +BD GR Veto +PQ 5.16318 +SE +ET PH +ID 3841 +TI 1760667400.906431436 +CC NStripHits 2 +PE 199.316 +PP -2.74748 -0.531069 2.09377 +PW 0 +SE +ID 3842 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.949678) +QA StripPairing (Best reduced chi square is not below 25 (40.315001)) (GR Hit: Detector ID 0 and Energy 89.676572) +BD GR Veto +PQ 40.315 +SE +ID 3843 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.640680) +QA StripPairing (GR Hit: Detector ID 0 and Energy 302.119076) +BD GR Veto +PQ 0.495413 +SE +ET UN +ID 3844 +TI 1760667400.906558990 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6036 +SE +ET UN +ID 3845 +TI 1760667400.906593084 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.5736 +SE +ET PH +ID 3846 +TI 1760667400.906627655 +CC NStripHits 2 +PE 100.267 +PP 1.32673 0.303533 0.929703 +PW 0 +SE +ET PH +ID 3847 +TI 1760667400.906690120 +CC NStripHits 2 +PE 245.549 +PP 2.25798 -1.17147 -3.49373 +PW 0 +SE +ET PH +ID 3848 +TI 1760667400.906727075 +CC NStripHits 2 +PE 127.362 +PP -1.81623 -1.12301 -2.21327 +PW 0 +SE +ET UN +ID 3849 +TI 1760667400.906760692 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 58.1468 +SE +ET PH +ID 3850 +TI 1760667400.906808614 +CC NStripHits 2 +PE 102.981 +PP 1.90877 0.350301 -4.07577 +PW 0 +SE +ET CO +ID 3851 +TI 1760667400.906846761 +CC NStripHits 4 +PQ 0.531487 +SQ 2 +CT 0 1 +TL 1 +TE 59.1729 +CE 175.325 0.935283 59.1729 0.930848 +CD 1.67595 -0.163946 -1.74764 0.0336036 0.0237294 0.0336036 1.44314 -0.773754 -0.00154687 0.0336036 0.0202759 0.0336036 0 0 0 0 0 0 +LA 1.86411 +SE +ET UN +ID 3852 +TI 1760667400.906876564 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.5212 +SE +ET UN +ID 3853 +TI 1760667400.906894445 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.5642 +SE +ET PH +ID 3854 +TI 1760667400.906912088 +CC NStripHits 3 +PE 460.13 +PP -1.1178 0.347063 -0.00154687 +PW 0 +SE +ID 3855 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 129.756720) +BD GR Veto +PQ 0.643552 +SE +ET PH +ID 3856 +TI 1760667400.906957387 +CC NStripHits 3 +PE 663.447 +PP -0.768578 -0.346261 0.114859 +PW 0 +SE +ET UN +ID 3857 +TI 1760667400.906984329 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 3858 +TI 1760667400.906995058 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 246.852 +SE +ID 3859 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 224.980043) +BD GR Veto +PQ 1.07296 +SE +ET PH +ID 3860 +TI 1760667400.907033681 +CC NStripHits 2 +PE 292.077 +PP 0.162672 -0.0177089 1.39533 +PW 0 +SE +ID 3861 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.524865) (Strip hit removed with energy 12.826505) +BD GR Veto +PQ 2.02892 +SE +ID 3862 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 197.961282) +BD GR Veto +PQ 2.1034 +SE +ET PH +ID 3863 +TI 1760667400.907082080 +CC NStripHits 2 +PE 116.205 +PP 3.42205 -0.272059 0.929703 +PW 0 +SE +ET CO +ID 3864 +TI 1760667400.907099723 +CC NStripHits 9 +PQ 33.3278 +SQ 4 +CT 0.0571722 0.0802495 +TL 1 +TE 54.8416 +CE 463.718 1.80185 54.8416 0.908393 +CD 2.6072 -0.664674 -4.54139 0.0336036 0.0211902 0.0336036 2.02517 -0.410672 -4.6578 0.0336036 0.0223785 0.0336036 0 0 0 0 0 0 +LA 0.616416 +SE +ET CO +ID 3865 +TI 1760667400.907142400 +CC NStripHits 5 +PQ 0.67757 +SQ 2 +CT 0.736836 0.263164 +TL 1 +TE 471.068 +CE 191.581 0.952435 471.068 1.09489 +CD -1.35061 -0.334414 -0.932797 0.0336036 0.022951 0.0336036 -1.1178 -0.572672 -1.16561 0.0336036 0.0216051 0.0336036 0 0 0 0 0 0 +LA 0.40641 +SE +ID 3866 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 162.183280) +BD GR Veto +PQ 4.11792 +SE +ET UN +ID 3867 +TI 1760667400.907183408 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3868 +TI 1760667400.907200574 +CC NStripHits 3 +PE 188.774 +PP -1.58342 0.0708455 2.55939 +PW 0 +SE +ET PH +ID 3869 +TI 1760667400.907218217 +CC NStripHits 2 +PE 310.535 +PP 0.279078 -0.178128 2.44298 +PW 0 +SE +ET UN +ID 3870 +TI 1760667400.907236337 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 659.878 +SE +ET CO +ID 3871 +TI 1760667400.907270193 +CC NStripHits 8 +PQ 49.1171 +SQ 3 +CT 0.131909 0.598396 +TL 1 +TE 72.5869 +CE 609.095 2.21982 72.5869 1.31039 +CD 1.21033 -0.631207 -2.67889 0.0336036 0.0214117 0.0336036 1.44314 -0.328891 -2.9117 0.0336036 0.0229983 0.0336036 0 0 0 0 0 0 +LA 0.399923 +SE +ET PH +ID 3872 +TI 1760667400.907304286 +CC NStripHits 2 +PE 125.365 +PP 4.23689 0.332675 0.464078 +PW 0 +SE +ET UN +ID 3873 +TI 1760667400.907322406 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 418.842 +SE +ID 3874 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.877385) +BD GR Veto +PQ +SE +ID 3875 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.862733) (Strip hit removed with energy 16.896780) +QA StripPairing (GR Hit: Detector ID 0 and Energy 176.374406) +BD GR Veto +PQ 9.70393 +SE +ET PH +ID 3876 +TI 1760667400.907411098 +CC NStripHits 3 +PE 170.066 +PP -0.535766 -0.5882 2.09377 +PW 0 +SE +ET CO +ID 3877 +TI 1760667400.907433986 +CC NStripHits 8 +PQ 19.7969 +SQ 3 +CT 0.191922 0.761124 +TL 1 +TE 119.167 +CE 518.671 2.01754 119.167 0.928187 +CD 2.84002 -0.0419318 0.464078 0.0336036 0.0247262 0.0336036 1.79236 -0.391525 -0.467172 0.0336036 0.022507 0.0336036 0 0 0 0 0 0 +LA 0.892009 +SE +ET PH +ID 3878 +TI 1760667400.907497406 +CC NStripHits 2 +PE 35.5821 +PP -0.302953 0.174963 1.51173 +PW 0 +SE +ET UN +ID 3879 +TI 1760667400.907515048 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 401.699 +SE +ET PH +ID 3880 +TI 1760667400.907547235 +CC NStripHits 4 +PE 667.902 +PP -0.652172 -0.190362 0.696891 +PW 0 +SE +ET CO +ID 3881 +TI 1760667400.907576322 +CC NStripHits 5 +PQ 4.83567 +SQ 2 +CT 0 1 +TL 1 +TE 137.063 +CE 242.874 1.32583 137.063 1.06063 +CD 3.07283 -0.408903 1.51173 0.0336036 0.022388 0.0336036 3.30564 0.111934 2.09377 0.0336036 0.0264034 0.0336036 0 0 0 0 0 0 +LA 0.815011 +SE +ET CO +ID 3882 +TI 1760667400.907608270 +CC NStripHits 6 +PQ 0.0220232 +SQ 2 +CT 0.758415 0.241585 +TL 1 +TE 455.698 +CE 206.692 1.08398 455.698 1.09883 +CD 0.744703 -0.897701 1.39533 0.0336036 0.0198014 0.0336036 0.977516 0.277706 1.04611 0.0336036 0.0364713 0.0336036 0 0 0 0 0 0 +LA 1.24809 +SE +ET PH +ID 3883 +TI 1760667400.907655477 +CC NStripHits 2 +PE 75.0015 +PP -2.74748 -0.0637988 -3.61014 +PW 0 +SE +ET PH +ID 3884 +TI 1760667400.907682418 +CC NStripHits 3 +PE 421.414 +PP 2.14158 -0.0257891 -3.02811 +PW 0 +SE +ET UN +ID 3885 +TI 1760667400.907705545 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3886 +TI 1760667400.907723188 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.5904 +SE +ET UN +ID 3887 +TI 1760667400.907742738 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 662.788 +SE +ET PH +ID 3888 +TI 1760667400.907777070 +CC NStripHits 2 +PE 85.2059 +PP -2.9803 -0.141923 1.27892 +PW 0 +SE +ET UN +ID 3889 +TI 1760667400.907792806 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET CO +ID 3890 +TI 1760667400.907827615 +CC NStripHits 6 +PQ 1.26985 +SQ 2 +CT 0 1 +TL 1 +TE 142.368 +CE 291.688 1.28794 142.368 0.929775 +CD 0.977516 -0.549345 -4.42498 0.0336036 0.0216324 0.0336036 -0.535766 -0.0469523 1.16252 0.0336036 0.0246961 0.0336036 0 0 0 0 0 0 +LA 5.81056 +SE +ET PH +ID 3891 +TI 1760667400.907865762 +CC NStripHits 2 +PE 294.876 +PP 1.79236 -0.664397 -3.14452 +PW 0 +SE +ET PH +ID 3892 +TI 1760667400.907883882 +CC NStripHits 2 +PE 58.4233 +PP 0.628297 -0.0775319 -3.95936 +PW 0 +SE +ET CO +ID 3893 +TI 1760667400.907901525 +CC NStripHits 4 +PQ 5.7019 +SQ 2 +CT 0 1 +TL 1 +TE 30.5035 +CE 170.694 0.957377 30.5035 1.21759 +CD 4.3533 -0.565395 -0.00154687 0.0336036 0.0216178 0.0336036 3.07283 0.0894753 0.231266 0.0336036 0.0260999 0.0336036 0 0 0 0 0 0 +LA 1.45694 +SE +ET CO +ID 3894 +TI 1760667400.907940864 +CC NStripHits 5 +PQ 60.4369 +SQ 2 +CT 0 1 +TL 1 +TE 87.9622 +CE 321.35 1.00465 87.9622 1.30492 +CD 0.861109 -0.34941 -3.14452 0.0336036 0.0228318 0.0336036 4.12048 0.234671 -2.44608 0.0336036 0.0309063 0.0336036 0 0 0 0 0 0 +LA 3.38415 +SE +ET UN +ID 3895 +TI 1760667400.908003330 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3896 +TI 1760667400.908013582 +CC NStripHits 2 +PE 58.8483 +PP 1.90877 -0.0540601 -1.39842 +PW 0 +SE +ET PH +ID 3897 +TI 1760667400.908031225 +CC NStripHits 3 +PE 210.899 +PP -1.2342 -0.055021 -3.95936 +PW 0 +SE +ET PH +ID 3898 +TI 1760667400.908059597 +CC NStripHits 2 +PE 242.792 +PP -1.35061 -0.749537 2.21017 +PW 0 +SE +ET PH +ID 3899 +TI 1760667400.908079624 +CC NStripHits 3 +PE 225.829 +PP 3.42205 0.351679 -4.6578 +PW 0 +SE +ET CO +ID 3900 +TI 1760667400.908111810 +CC NStripHits 6 +PQ 25.8193 +SQ 3 +CT 0.00466181 0.519864 +TL 1 +TE 266.566 +CE 183.065 1.8885 266.566 1.28526 +CD 3.53845 0.178564 -0.583578 0.0336036 0.0279064 0.0336036 3.77127 -0.17782 -0.234359 0.0336036 0.0236346 0.0336036 0 0 0 0 0 0 +LA 0.390586 +SE +ID 3901 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.644526) +BD GR Veto +PQ 0.761976 +SE +ET CO +ID 3902 +TI 1760667400.908154249 +CC NStripHits 8 +PQ 4.1355 +SQ 3 +CT 0.00715465 0.0656997 +TL 1 +TE 718.181 +CE 365.67 1.45233 718.181 1.73447 +CD -1.46702 -0.624939 -0.816391 0.0336036 0.0214201 0.0336036 -1.2342 -0.367702 -1.63123 0.0336036 0.0226951 0.0336036 0 0 0 0 0 0 +LA 0.549993 +SE +ET PH +ID 3903 +TI 1760667400.927442789 +CC NStripHits 2 +PE 316.465 +PP 0.628297 -1.11952 1.51173 +PW 0 +SE +ET PH +ID 3904 +TI 1760667400.927496910 +CC NStripHits 2 +PE 197.039 +PP 3.53845 0.131809 -2.9117 +PW 0 +SE +ET PH +ID 3905 +TI 1760667400.927516222 +CC NStripHits 3 +PE 138.216 +PP -1.58342 -0.55492 -4.54139 +PW 0 +SE +ET PH +ID 3906 +TI 1760667400.927538156 +CC NStripHits 3 +PE 256.635 +PP 2.84002 0.360303 -1.51483 +PW 0 +SE +ET PH +ID 3907 +TI 1760667400.927558660 +CC NStripHits 3 +PE 102.71 +PP 2.72361 -1.09752 -1.39842 +PW 0 +SE +ET PH +ID 3908 +TI 1760667400.927578687 +CC NStripHits 2 +PE 397.814 +PP 3.53845 0.369377 -2.32967 +PW 0 +SE +ET PH +ID 3909 +TI 1760667400.927601814 +CC NStripHits 3 +PE 148.277 +PP 1.44314 -0.4429 -4.6578 +PW 0 +SE +ID 3910 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 76.240522) +BD GR Veto +PQ 0.00649587 +SE +ID 3911 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (30.222283)) (GR Hit: Detector ID 0 and Energy 125.884395) +BD GR Veto +PQ 30.2223 +SE +ET UN +ID 3912 +TI 1760667400.927648305 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 648.598 +SE +ET PH +ID 3913 +TI 1760667400.927676439 +CC NStripHits 2 +PE 92.0939 +PP 3.88767 0.364209 -1.39842 +PW 0 +SE +ET UN +ID 3914 +TI 1760667400.927694797 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 157.725 +SE +ET UN +ID 3915 +TI 1760667400.927715778 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 1182.98 +SE +ET PH +ID 3916 +TI 1760667400.927762746 +CC NStripHits 2 +PE 138.863 +PP 0.977516 0.309059 -3.37733 +PW 0 +SE +ET PH +ID 3917 +TI 1760667400.927781105 +CC NStripHits 2 +PE 297.26 +PP 2.25798 -1.09997 -0.699984 +PW 0 +SE +ET PH +ID 3918 +TI 1760667400.927801370 +CC NStripHits 2 +PE 190.049 +PP 1.09392 -0.258977 2.32658 +PW 0 +SE +ID 3919 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 256.700865) +BD GR Veto +PQ 0.000563311 +SE +ET PH +ID 3920 +TI 1760667400.927827358 +CC NStripHits 2 +PE 236.879 +PP 0.395484 -0.441276 -3.02811 +PW 0 +SE +ET PH +ID 3921 +TI 1760667400.927845001 +CC NStripHits 2 +PE 165.488 +PP 1.21033 -0.0457221 -0.117953 +PW 0 +SE +ET PH +ID 3922 +TI 1760667400.927862167 +CC NStripHits 2 +PE 168.84 +PP 0.395484 -0.328918 -4.54139 +PW 0 +SE +ET PH +ID 3923 +TI 1760667400.927880048 +CC NStripHits 3 +PE 129.05 +PP 0.279078 -0.235012 -3.49373 +PW 0 +SE +ET PH +ID 3924 +TI 1760667400.927902221 +CC NStripHits 2 +PE 31.3451 +PP -0.768578 -1.14082 -4.07577 +PW 0 +SE +ET PH +ID 3925 +TI 1760667400.927921295 +CC NStripHits 2 +PE 144.122 +PP -0.768578 -0.694377 -2.21327 +PW 0 +SE +ET PH +ID 3926 +TI 1760667400.927938699 +CC NStripHits 2 +PE 64.5873 +PP 0.279078 -0.92782 -1.74764 +PW 0 +SE +ET PH +ID 3927 +TI 1760667400.927958726 +CC NStripHits 2 +PE 157.998 +PP 3.07283 -0.945035 -2.32967 +PW 0 +SE +ET PH +ID 3928 +TI 1760667400.927976608 +CC NStripHits 2 +PE 193.076 +PP -1.81623 -1.05086 0.813297 +PW 0 +SE +ET PH +ID 3929 +TI 1760667400.927995204 +CC NStripHits 2 +PE 42.405 +PP -0.302953 0.337024 -2.09686 +PW 0 +SE +ET CO +ID 3930 +TI 1760667400.928013086 +CC NStripHits 7 +PQ 1.38769 +SQ 3 +CT 0.0363998 0.273465 +TL 1 +TE 298.376 +CE 363.853 1.34135 298.376 1.07031 +CD 1.55955 -0.172159 -0.583578 0.0336036 0.0236715 0.0336036 2.02517 -0.442013 -0.00154687 0.0336036 0.0221459 0.0336036 0 0 0 0 0 0 +LA 0.792706 +SE +ET UN +ID 3931 +TI 1760667400.928055047 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET PH +ID 3932 +TI 1760667400.928107738 +CC NStripHits 2 +PE 186.753 +PP -0.302953 -1.00956 -4.30858 +PW 0 +SE +ET UN +ID 3933 +TI 1760667400.928126096 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 557.411 +SE +ID 3934 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 176.693977) +BD GR Veto +PQ 4.31426 +SE +ET PH +ID 3935 +TI 1760667400.928188085 +CC NStripHits 2 +PE 111.67 +PP 1.21033 -0.253974 -3.61014 +PW 0 +SE +ET PH +ID 3936 +TI 1760667400.928206682 +CC NStripHits 2 +PE 131.042 +PP 4.23689 -0.729737 1.86095 +PW 0 +SE +ET CO +ID 3937 +TI 1760667400.928224086 +CC NStripHits 4 +PQ 9.4801 +SQ 2 +CT 0.512087 0.487913 +TL 1 +TE 174.334 +CE 160.729 0.93937 174.334 1.3262 +CD 2.6072 0.10037 -2.9117 0.0336036 0.0262424 0.0336036 3.77127 -0.288801 -2.56248 0.0336036 0.0231907 0.0336036 0 0 0 0 0 0 +LA 1.27611 +SE +ID 3938 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 127.461745) +BD GR Veto +PQ 1.64409 +SE +ET PH +ID 3939 +TI 1760667400.928267240 +CC NStripHits 2 +PE 96.6303 +PP -1.1178 -0.291409 1.04611 +PW 0 +SE +ID 3940 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.379093) +BD GR Veto +PQ +SE +ID 3941 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 368.440613) +BD GR Veto +PQ 0.113964 +SE +ID 3942 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 172.139063) +BD GR Veto +PQ 0.0152681 +SE +ID 3943 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 3944 +TI 1760667400.928317546 +CC NStripHits 5 +PQ 7.17913 +SQ 2 +CT 0 1 +TL 1 +TE 40.4022 +CE 421.673 1.81001 40.4022 0.932814 +CD 2.14158 -0.275686 -1.51483 0.0336036 0.0232506 0.0336036 1.55955 -0.805324 -0.350766 0.0336036 0.0201646 0.0336036 0 0 0 0 0 0 +LA 1.40511 +SE +ET PH +ID 3945 +TI 1760667400.928354978 +CC NStripHits 2 +PE 98.6251 +PP 2.84002 -0.427847 -0.00154687 +PW 0 +SE +ID 3946 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (246.291245)) (GR Hit: Detector ID 0 and Energy 189.310900) +BD GR Veto +PQ 246.291 +SE +ID 3947 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.072126) +BD GR Veto +PQ +SE +ET UN +ID 3948 +TI 1760667400.928386449 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 177.449 +SE +ET UN +ID 3949 +TI 1760667400.928411483 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 3950 +TI 1760667400.928430795 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 376.803 +SE +ID 3951 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.052861) +BD GR Veto +PQ +SE +ET CO +ID 3952 +TI 1760667400.928463220 +CC NStripHits 5 +PQ 2.24346 +SQ 2 +CT 0 1 +TL 1 +TE 38.6977 +CE 443.746 1.1042 38.6977 0.922807 +CD 0.395484 -0.170182 -1.39842 0.0336036 0.0236848 0.0336036 -0.186547 -0.852455 -1.74764 0.0336036 0.0199786 0.0336036 0 0 0 0 0 0 +LA 0.962399 +SE +ID 3953 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 4.920728) +BD GR Veto +PQ +SE +ET UN +ID 3954 +TI 1760667400.928513288 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 3955 +TI 1760667400.928528547 +CC NStripHits 2 +PE 106.991 +PP 2.95642 0.326289 2.44298 +PW 0 +SE +ET PH +ID 3956 +TI 1760667400.928545951 +CC NStripHits 2 +PE 233.396 +PP -0.884984 -0.500472 2.21017 +PW 0 +SE +ET PH +ID 3957 +TI 1760667400.928563594 +CC NStripHits 2 +PE 54.6159 +PP 2.02517 -1.15998 0.929703 +PW 0 +SE +ET PH +ID 3958 +TI 1760667400.928581476 +CC NStripHits 4 +PE 665.006 +PP 4.00408 0.354363 -1.86405 +PW 0 +SE +ID 3959 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 112.679178) +BD GR Veto +PQ 2.3032 +SE +ID 3960 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.278744) (Strip hit removed with energy 18.089468) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.727191) +BD GR Veto +PQ 0.868798 +SE +ET CO +ID 3961 +TI 1760667400.928647279 +CC NStripHits 5 +PQ 32.7004 +SQ 2 +CT 0 1 +TL 1 +TE 110.032 +CE 366.536 1.08918 110.032 1.35226 +CD 2.6072 -0.546939 -1.98045 0.0336036 0.0216369 0.0336036 3.53845 -0.406752 -2.7953 0.0336036 0.0224002 0.0336036 0 0 0 0 0 0 +LA 1.24534 +SE +ET PH +ID 3962 +TI 1760667400.928686618 +CC NStripHits 3 +PE 349.104 +PP 0.511891 -1.1519 1.51173 +PW 0 +SE +ET UN +ID 3963 +TI 1760667400.928707122 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.3871 +SE +ET PH +ID 3964 +TI 1760667400.928726673 +CC NStripHits 2 +PE 109.807 +PP 3.42205 -0.488682 0.347672 +PW 0 +SE +ET CO +ID 3965 +TI 1760667400.928744792 +CC NStripHits 6 +PQ 1.06622 +SQ 2 +CT 0.597992 0.402008 +TL 1 +TE 219.606 +CE 167.874 0.919701 219.606 1.28646 +CD -0.652172 -0.452623 1.16252 0.0336036 0.0220508 0.0336036 -0.884984 -0.296152 1.27892 0.0336036 0.0231735 0.0336036 0 0 0 0 0 0 +LA 0.3037 +SE +ET PH +ID 3966 +TI 1760667400.928774118 +CC NStripHits 3 +PE 219.987 +PP -2.86389 0.0338861 -3.72655 +PW 0 +SE +ET PH +ID 3967 +TI 1760667400.950704336 +CC NStripHits 2 +PE 45.4741 +PP 3.07283 0.353567 -0.00154687 +PW 0 +SE +ET PH +ID 3968 +TI 1760667400.950756788 +CC NStripHits 2 +PE 87.4852 +PP -2.39827 -0.030046 -2.32967 +PW 0 +SE +ET PH +ID 3969 +TI 1760667400.950786590 +CC NStripHits 3 +PE 265.1 +PP 1.09392 -1.09563 1.04611 +PW 0 +SE +ID 3970 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 324.956230) +BD GR Veto +PQ 0.228306 +SE +ET PH +ID 3971 +TI 1760667400.950822591 +CC NStripHits 2 +PE 331.046 +PP -0.0701406 -1.01645 -4.30858 +PW 0 +SE +ET PH +ID 3972 +TI 1760667400.950864076 +CC NStripHits 2 +PE 275.659 +PP 2.6072 0.35515 1.97736 +PW 0 +SE +ET UN +ID 3973 +TI 1760667400.950919866 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 451.37 +SE +ET PH +ID 3974 +TI 1760667400.950996398 +CC NStripHits 4 +PE 271.218 +PP 1.67595 0.079437 1.39533 +PW 0 +SE +ET PH +ID 3975 +TI 1760667400.951055526 +CC NStripHits 2 +PE 435.982 +PP 2.14158 -0.115855 -0.350766 +PW 0 +SE +ID 3976 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 101.455352) (GR Hit: Detector ID 0 and Energy 136.264892) +BD GR Veto +PQ 1.32573 +SE +ET PH +ID 3977 +TI 1760667400.951173543 +CC NStripHits 2 +PE 49.1358 +PP 2.84002 -0.814876 -0.816391 +PW 0 +SE +ET PH +ID 3978 +TI 1760667400.951211214 +CC NStripHits 2 +PE 131.159 +PP -0.884984 0.349482 -0.117953 +PW 0 +SE +ET PH +ID 3979 +TI 1760667400.951244115 +CC NStripHits 2 +PE 403.468 +PP 3.53845 -0.946557 -0.234359 +PW 0 +SE +ET PH +ID 3980 +TI 1760667400.951279878 +CC NStripHits 2 +PE 117.593 +PP -2.04905 0.322746 -1.98045 +PW 0 +SE +ET PH +ID 3981 +TI 1760667400.951311111 +CC NStripHits 3 +PE 355.35 +PP -0.535766 0.320663 -0.467172 +PW 0 +SE +ET UN +ID 3982 +TI 1760667400.951345205 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 3983 +TI 1760667400.951390504 +CC NStripHits 3 +PE 450.844 +PP 0.395484 0.308118 0.696891 +PW 0 +SE +ET PH +ID 3984 +TI 1760667400.951427698 +CC NStripHits 3 +PE 201.408 +PP 3.30564 0.116074 -3.14452 +PW 0 +SE +ET UN +ID 3985 +TI 1760667400.951468229 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.7768 +SE +ID 3986 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 436.577611) +BD GR Veto +PQ 5.69463 +SE +ET PH +ID 3987 +TI 1760667400.951515674 +CC NStripHits 3 +PE 211.362 +PP -2.39827 -0.647513 -1.51483 +PW 0 +SE +ET UN +ID 3988 +TI 1760667400.951555013 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 662.478 +SE +ET CO +ID 3989 +TI 1760667400.951606273 +CC NStripHits 5 +PQ 0.0616021 +SQ 2 +CT 0 1 +TL 1 +TE 93.1193 +CE 568.544 1.09198 93.1193 0.91595 +CD 1.67595 -0.470785 1.51173 0.0336036 0.0219537 0.0336036 1.55955 -0.241531 1.97736 0.0336036 0.02334 0.0336036 0 0 0 0 0 0 +LA 0.5319 +SE +ET CO +ID 3990 +TI 1760667400.951645612 +CC NStripHits 9 +PQ 93.5546 +SQ 4 +CT 0.00965201 0.116482 +TL 1 +TE 93.7659 +CE 566.571 2.38051 93.7659 0.898398 +CD 1.90877 -0.0487399 -3.02811 0.0336036 0.0246858 0.0336036 1.79236 -0.125818 -2.7953 0.0336036 0.0240929 0.0336036 0 0 0 0 0 0 +LA 0.271464 +SE +ET PH +ID 3991 +TI 1760667400.951696395 +CC NStripHits 4 +PE 107.392 +PP 4.23689 0.0580056 -2.21327 +PW 0 +SE +ET PH +ID 3992 +TI 1760667400.951721906 +CC NStripHits 3 +PE 252.578 +PP -2.04905 -0.537656 1.16252 +PW 0 +SE +ID 3993 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.696932) +BD GR Veto +PQ 0.00350019 +SE +ET PH +ID 3994 +TI 1760667400.951758861 +CC NStripHits 2 +PE 76.028 +PP 4.00408 0.153813 0.696891 +PW 0 +SE +ET UN +ID 3995 +TI 1760667400.951780796 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 166.248 +SE +ID 3996 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (52.633085)) (GR Hit: Detector ID 0 and Energy 365.962507) +BD GR Veto +PQ 52.6331 +SE +ET PH +ID 3997 +TI 1760667400.951843976 +CC NStripHits 2 +PE 134.296 +PP 0.511891 -0.439743 0.231266 +PW 0 +SE +ET UN +ID 3998 +TI 1760667400.951864719 +BD DepthCalibrationError (Out of Range) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 528.402 +SE +ID 3999 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (151.019703)) (GR Hit: Detector ID 0 and Energy 176.647175) +BD GR Veto +PQ 151.02 +SE +ET PH +ID 4000 +TI 1760667400.951907634 +CC NStripHits 2 +PE 286.325 +PP 0.744703 0.0667209 2.6758 +PW 0 +SE +ET UN +ID 4001 +TI 1760667400.951924085 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET CO +ID 4002 +TI 1760667400.951958179 +CC NStripHits 4 +PQ 28.1875 +SQ 2 +CT 0 1 +TL 1 +TE 86.0064 +CE 386.612 0.967999 86.0064 1.35252 +CD 1.44314 -0.198412 -0.816391 0.0336036 0.0234992 0.0336036 0.744703 -0.210308 -0.699984 0.0336036 0.0234232 0.0336036 0 0 0 0 0 0 +LA 0.708171 +SE +ET PH +ID 4003 +TI 1760667400.951990604 +CC NStripHits 3 +PE 266.622 +PP 3.30564 -0.0427957 -2.32967 +PW 0 +SE +ID 4004 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (367.086478)) (GR Hit: Detector ID 0 and Energy 91.586470) +BD GR Veto +PQ 367.086 +SE +ET PH +ID 4005 +TI 1760667400.952018737 +CC NStripHits 2 +PE 124.921 +PP 0.744703 0.252007 -0.350766 +PW 0 +SE +ET CO +ID 4006 +TI 1760667400.952037811 +CC NStripHits 6 +PQ 33.0461 +SQ 2 +CT 0.507018 0.492982 +TL 1 +TE 236.441 +CE 232.528 1.15173 236.441 1.31558 +CD -2.63108 0.194516 -0.467172 0.0336036 0.0284831 0.0336036 -2.9803 -0.600289 -1.74764 0.0336036 0.0214612 0.0336036 0 0 0 0 0 0 +LA 1.54702 +SE +ID 4007 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 35.186162) +BD GR Veto +PQ 7.73562 +SE +ET UN +ID 4008 +TI 1760667400.952082157 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 228.346 +SE +ET PH +ID 4009 +TI 1760667400.952122449 +CC NStripHits 3 +PE 256.421 +PP -2.16545 -1.07242 -4.07577 +PW 0 +SE +ET PH +ID 4010 +TI 1760667400.952143430 +CC NStripHits 3 +PE 107.536 +PP 4.23689 -1.06395 -2.9117 +PW 0 +SE +ET UN +ID 4011 +TI 1760667400.952163934 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 290.621 +SE +ET PH +ID 4012 +TI 1760667400.952197074 +CC NStripHits 2 +PE 423.692 +PP -2.9803 0.177881 -0.117953 +PW 0 +SE +ET PH +ID 4013 +TI 1760667400.952224254 +CC NStripHits 2 +PE 393.453 +PP 1.21033 0.363987 0.813297 +PW 0 +SE +ID 4014 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 39.899032) +BD GR Veto +PQ 0.0631395 +SE +ET PH +ID 4015 +TI 1760667400.952264547 +CC NStripHits 5 +PE 324.61 +PP 2.72361 -0.87091 0.813297 +PW 0 +SE +ET PH +ID 4016 +TI 1760667400.952304601 +CC NStripHits 3 +PE 295.418 +PP 2.84002 -0.0877833 -4.54139 +PW 0 +SE +ID 4017 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.480242) (Strip hit removed with energy 11.858775) (Strip hit removed with energy 16.768929) (Strip hit removed with energy 18.072126) +BD GR Veto +PQ 23.3028 +SE +ID 4018 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 415.181404) +BD GR Veto +PQ 9.07978 +SE +ET PH +ID 4019 +TI 1760667400.952428579 +CC NStripHits 3 +PE 184.432 +PP 3.07283 -0.759229 1.16252 +PW 0 +SE +ET UN +ID 4020 +TI 1760667400.952460527 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4021 +TI 1760667400.952485322 +CC NStripHits 4 +PE 465.748 +PP 3.42205 -0.332695 0.231266 +PW 0 +SE +ET PH +ID 4022 +TI 1760667400.952520608 +CC NStripHits 3 +PE 281.039 +PP -2.51467 -0.329956 -3.14452 +PW 0 +SE +ET PH +ID 4023 +TI 1760667400.952557802 +CC NStripHits 4 +PE 453.442 +PP -0.0701406 -0.52492 2.21017 +PW 0 +SE +ET PH +ID 4024 +TI 1760667400.952595233 +CC NStripHits 2 +PE 229.515 +PP 0.861109 -0.3561 2.6758 +PW 0 +SE +ET PH +ID 4025 +TI 1760667400.952620267 +CC NStripHits 2 +PE 249.78 +PP -0.768578 -0.982432 -1.16561 +PW 0 +SE +ET PH +ID 4026 +TI 1760667400.952651739 +CC NStripHits 2 +PE 148.415 +PP -1.69983 -0.124787 -4.30858 +PW 0 +SE +ET UN +ID 4027 +TI 1760667400.952696323 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 362.077 +SE +ET PH +ID 4028 +TI 1760667400.952742338 +CC NStripHits 3 +PE 463.661 +PP 1.21033 -0.685333 -0.699984 +PW 0 +SE +ET PH +ID 4029 +TI 1760667400.952784299 +CC NStripHits 3 +PE 156.344 +PP -2.63108 -0.594824 -1.0492 +PW 0 +SE +ET UN +ID 4030 +TI 1760667400.952826261 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 491.81 +SE +ET PH +ID 4031 +TI 1760667400.976054430 +CC NStripHits 3 +PE 156.535 +PP 3.77127 -0.376504 -4.19217 +PW 0 +SE +ET PH +ID 4032 +TI 1760667400.976144313 +CC NStripHits 3 +PE 145.132 +PP -1.58342 -1.16057 2.09377 +PW 0 +SE +ID 4033 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (114.316260)) (GR Hit: Detector ID 0 and Energy 303.057532) +BD GR Veto +PQ 114.316 +SE +ET PH +ID 4034 +TI 1760667400.976177692 +CC NStripHits 4 +PE 661.298 +PP 0.628297 -0.327713 -2.67889 +PW 0 +SE +ET PH +ID 4035 +TI 1760667400.976201534 +CC NStripHits 2 +PE 222.617 +PP 4.12048 -1.11318 -3.72655 +PW 0 +SE +ID 4036 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 164.991559) +BD GR Veto +PQ 1.17317 +SE +ID 4037 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 287.488653) +BD GR Veto +PQ 2.07426 +SE +ET CO +ID 4038 +TI 1760667400.976255893 +CC NStripHits 4 +PQ 0.889223 +SQ 2 +CT 0.763597 0.236403 +TL 1 +TE 454.177 +CE 204.26 0.942018 454.177 0.987431 +CD 0.977516 -0.447464 -1.0492 0.0336036 0.022094 0.0336036 1.44314 0.171253 -1.39842 0.0336036 0.0276958 0.0336036 0 0 0 0 0 0 +LA 0.849453 +SE +ET UN +ID 4039 +TI 1760667400.976293087 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4040 +TI 1760667400.976314544 +CC NStripHits 2 +PE 475.875 +PP 2.37439 -0.244467 -1.63123 +PW 0 +SE +ID 4041 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 384.711714) +BD GR Veto +PQ 2.46914 +SE +ET UN +ID 4042 +TI 1760667400.976346731 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 153.11 +SE +ID 4043 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.461965) (Strip hit removed with energy 13.435758) +QA StripPairing (GR Hit: Detector ID 0 and Energy 283.539656) +BD GR Veto +PQ 0.0214128 +SE +ET PH +ID 4044 +TI 1760667400.976397514 +CC NStripHits 3 +PE 287.774 +PP -1.58342 -0.758701 1.51173 +PW 0 +SE +ET PH +ID 4045 +TI 1760667400.976420640 +CC NStripHits 3 +PE 200.818 +PP -2.04905 -0.865306 -4.42498 +PW 0 +SE +ET CO +ID 4046 +TI 1760667400.976448535 +CC NStripHits 10 +PQ 23.5967 +SQ 4 +CT 0.00931689 0.0291512 +TL 1 +TE 82.827 +CE 577.271 1.78648 82.827 1.29314 +CD 1.32673 0.198545 1.62814 0.0336036 0.0286542 0.0336036 1.90877 0.10138 1.51173 0.0336036 0.0262553 0.0336036 0 0 0 0 0 0 +LA 0.323209 +SE +ET PH +ID 4047 +TI 1760667400.976557493 +CC NStripHits 2 +PE 156.019 +PP -1.00139 -0.601313 -2.32967 +PW 0 +SE +ET PH +ID 4048 +TI 1760667400.976595640 +CC NStripHits 2 +PE 58.281 +PP -0.302953 -0.307952 -0.816391 +PW 0 +SE +ET CO +ID 4049 +TI 1760667400.976628541 +CC NStripHits 6 +PQ 0.274465 +SQ 2 +CT 0.74908 0.25092 +TL 1 +TE 458.483 +CE 203.119 1.32811 458.483 1.01537 +CD 3.18923 -0.969847 0.347672 0.0336036 0.0199323 0.0336036 4.12048 0.356324 0.696891 0.0336036 0.0285761 0.0336036 0 0 0 0 0 0 +LA 1.65768 +SE +ID 4050 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 116.404545) +BD GR Veto +PQ 3.68184 +SE +ET CO +ID 4051 +TI 1760667400.976713895 +CC NStripHits 6 +PQ 46.9998 +SQ 2 +CT 0.50931 0.49069 +TL 1 +TE 185.577 +CE 180.68 1.23067 185.577 1.81895 +CD 3.30564 -0.396027 -1.63123 0.0336036 0.022472 0.0336036 4.00408 -0.243093 -2.44608 0.0336036 0.023341 0.0336036 0 0 0 0 0 0 +LA 1.08406 +SE +ET CO +ID 4052 +TI 1760667400.976793289 +CC NStripHits 6 +PQ 7.91267 +SQ 2 +CT 0.645485 0.354515 +TL 1 +TE 262.478 +CE 175.6 1.91975 262.478 1.32721 +CD 1.21033 -0.751517 -1.86405 0.0336036 0.0204812 0.0336036 1.44314 -0.66812 -1.63123 0.0336036 0.0211675 0.0336036 0 0 0 0 0 0 +LA 0.339648 +SE +ET CO +ID 4053 +TI 1760667400.976857185 +CC NStripHits 5 +PQ 0.70558 +SQ 2 +CT 0 1 +TL 1 +TE 100.182 +CE 133.297 0.903524 100.182 1.09742 +CD 1.09392 0.360493 1.39533 0.0336036 0.0265479 0.0336036 1.44314 -0.249856 1.16252 0.0336036 0.0233441 0.0336036 0 0 0 0 0 0 +LA 0.74073 +SE +ET PH +ID 4054 +TI 1760667400.976913928 +CC NStripHits 4 +PE 448.29 +PP 1.55955 0.344958 -3.37733 +PW 0 +SE +ET CO +ID 4055 +TI 1760667400.976961612 +CC NStripHits 6 +PQ 17.615 +SQ 2 +CT 0 1 +TL 1 +TE 104.162 +CE 166.017 1.32087 104.162 1.27312 +CD 3.65486 -0.774766 0.114859 0.0336036 0.0202708 0.0336036 3.77127 -0.769636 0.580484 0.0336036 0.0203008 0.0336036 0 0 0 0 0 0 +LA 0.479984 +SE +ET CO +ID 4056 +TI 1760667400.977027893 +CC NStripHits 5 +PQ 1.38546 +SQ 2 +CT 0.523137 0.476863 +TL 1 +TE 212.562 +CE 202.305 0.92248 212.562 1.05835 +CD -0.768578 -0.908145 -4.07577 0.0336036 0.0197827 0.0336036 -1.35061 -0.746107 -3.84295 0.0336036 0.0205352 0.0336036 0 0 0 0 0 0 +LA 0.647474 +SE +ET PH +ID 4057 +TI 1760667400.977084159 +CC NStripHits 2 +PE 139.939 +PP -0.419359 -0.271447 1.04611 +PW 0 +SE +ET CO +ID 4058 +TI 1760667400.977116823 +CC NStripHits 4 +PQ 8.12834 +SQ 2 +CT 0 1 +TL 1 +TE 103.37 +CE 394.102 0.969525 103.37 1.33547 +CD 1.55955 0.365417 2.21017 0.0336036 0.0238888 0.0336036 -1.1178 0.20047 -3.61014 0.0336036 0.0287396 0.0336036 0 0 0 0 0 0 +LA 6.4087 +SE +ET PH +ID 4059 +TI 1760667400.977188348 +CC NStripHits 2 +PE 313.713 +PP 0.977516 -0.0852751 -3.95936 +PW 0 +SE +ET PH +ID 4060 +TI 1760667400.977222681 +CC NStripHits 2 +PE 220.136 +PP 2.95642 -0.712739 2.44298 +PW 0 +SE +ET PH +ID 4061 +TI 1760667400.977256536 +CC NStripHits 2 +PE 185.338 +PP -2.74748 0.0247431 1.51173 +PW 0 +SE +ID 4062 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.467990) +QA StripPairing (Best reduced chi square is not below 25 (37.428162)) (GR Hit: Detector ID 0 and Energy 167.222235) +BD GR Veto +PQ 37.4282 +SE +ID 4063 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 118.614697) +BD GR Veto +PQ 2.41896 +SE +ET PH +ID 4064 +TI 1760667400.977365016 +CC NStripHits 4 +PE 466.395 +PP -2.39827 -0.678291 -1.28202 +PW 0 +SE +ID 4065 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (170.802644)) (GR Hit: Detector ID 0 and Energy 288.391667) +BD GR Veto +PQ 170.803 +SE +ET PH +ID 4066 +TI 1760667400.977422475 +CC NStripHits 2 +PE 135.051 +PP -0.884984 -0.0320808 -3.37733 +PW 0 +SE +ET PH +ID 4067 +TI 1760667400.977462768 +CC NStripHits 2 +PE 377.789 +PP 0.162672 -0.591028 -4.6578 +PW 0 +SE +ID 4068 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 176.682002) +BD GR Veto +PQ 1.43439 +SE +ID 4069 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 272.921938) +BD GR Veto +PQ 2.76038 +SE +ET PH +ID 4070 +TI 1760667400.977521419 +CC NStripHits 3 +PE 161.454 +PP 0.162672 0.369456 0.347672 +PW 0 +SE +ET PH +ID 4071 +TI 1760667400.977560043 +CC NStripHits 4 +PE 405.119 +PP -2.04905 0.340765 -4.07577 +PW 0 +SE +ET CO +ID 4072 +TI 1760667400.977602958 +CC NStripHits 6 +PQ 9.21438 +SQ 2 +CT 0 1 +TL 1 +TE 114.259 +CE 551.633 2.07568 114.259 0.921001 +CD 2.25798 -1.05253 0.696891 0.0336036 0.0213515 0.0336036 1.90877 -0.238885 0.347672 0.0336036 0.0233388 0.0336036 0 0 0 0 0 0 +LA 0.951798 +SE +ET CO +ID 4073 +TI 1760667400.977674007 +CC NStripHits 5 +PQ 31.0775 +SQ 2 +CT 0.560402 0.439598 +TL 1 +TE 213.217 +CE 174.087 1.3423 213.217 1.08446 +CD 0.162672 -1.01716 -3.49373 0.0336036 0.0203134 0.0336036 1.32673 -0.86779 -4.54139 0.0336036 0.0199082 0.0336036 0 0 0 0 0 0 +LA 1.57319 +SE +ET PH +ID 4074 +TI 1760667400.977746963 +CC NStripHits 2 +PE 58.6036 +PP 2.14158 0.209788 0.696891 +PW 0 +SE +ET UN +ID 4075 +TI 1760667400.977779865 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 4076 +TI 1760667400.977849960 +CC NStripHits 2 +PE 95.8194 +PP 3.07283 -0.46249 -4.30858 +PW 0 +SE +ET PH +ID 4077 +TI 1760667400.977869510 +CC NStripHits 2 +PE 259.255 +PP 3.65486 -1.14285 -4.19217 +PW 0 +SE +ID 4078 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.923532) +BD GR Veto +PQ 2.49148 +SE +ET PH +ID 4079 +TI 1760667400.977908134 +CC NStripHits 3 +PE 364.198 +PP 1.79236 -1.09743 1.62814 +PW 0 +SE +ET PH +ID 4080 +TI 1760667400.977928638 +CC NStripHits 3 +PE 204.707 +PP 0.279078 0.331063 -0.467172 +PW 0 +SE +ET UN +ID 4081 +TI 1760667400.977950811 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 22.997 +SE +ET PH +ID 4082 +TI 1760667400.977968931 +CC NStripHits 2 +PE 28.9206 +PP -1.35061 0.000150156 -1.74764 +PW 0 +SE +ET PH +ID 4083 +TI 1760667400.977987051 +CC NStripHits 3 +PE 127.41 +PP 0.977516 -1.1346 -0.467172 +PW 0 +SE +ET CO +ID 4084 +TI 1760667400.978009700 +CC NStripHits 4 +PQ 21.3715 +SQ 2 +CT 0 1 +TL 1 +TE 24.7676 +CE 78.556 1.28982 24.7676 0.907558 +CD -0.186547 -0.289461 -4.6578 0.0336036 0.0231888 0.0336036 -2.39827 -0.939018 -2.44608 0.0336036 0.0197981 0.0336036 0 0 0 0 0 0 +LA 3.19458 +SE +ET PH +ID 4085 +TI 1760667400.978041410 +CC NStripHits 4 +PE 204.936 +PP 3.42205 -1.07663 1.62814 +PW 0 +SE +ET PH +ID 4086 +TI 1760667400.978065013 +CC NStripHits 2 +PE 99.5888 +PP 4.3533 -0.74096 -0.932797 +PW 0 +SE +ET PH +ID 4087 +TI 1760667400.978080034 +CC NStripHits 3 +PE 77.9966 +PP 3.18923 -1.17612 1.74455 +PW 0 +SE +ET PH +ID 4088 +TI 1760667400.978100299 +CC NStripHits 3 +PE 296.184 +PP -1.1178 -1.05056 -1.98045 +PW 0 +SE +ET CO +ID 4089 +TI 1760667400.978120565 +CC NStripHits 4 +PQ 1.04898 +SQ 2 +CT 0 1 +TL 1 +TE 78.1835 +CE 111.317 0.945995 78.1835 0.924787 +CD 1.44314 -0.304045 -0.234359 0.0336036 0.0231557 0.0336036 1.32673 -0.280328 -0.350766 0.0336036 0.023225 0.0336036 0 0 0 0 0 0 +LA 0.166326 +SE +ET CO +ID 4090 +TI 1760667400.978140115 +CC NStripHits 5 +PQ 0.262164 +SQ 2 +CT 0.802466 0.197534 +TL 1 +TE 131.473 +CE 138.215 0.917324 131.473 1.04462 +CD 1.55955 -0.531705 2.55939 0.0336036 0.0216813 0.0336036 0.628297 -0.244479 1.16252 0.0336036 0.0233419 0.0336036 0 0 0 0 0 0 +LA 1.70323 +SE +ET CO +ID 4091 +TI 1760667400.978171825 +CC NStripHits 5 +PQ 1.44645 +SQ 2 +CT 0 1 +TL 1 +TE 77.1961 +CE 397.242 1.11258 77.1961 0.928055 +CD 0.395484 -0.257269 -2.67889 0.0336036 0.023337 0.0336036 0.511891 -1.0266 -2.32967 0.0336036 0.0204764 0.0336036 0 0 0 0 0 0 +LA 0.852863 +SE +ID 4092 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 246.150520) +BD GR Veto +PQ 2.47266 +SE +ET UN +ID 4093 +TI 1760667400.978229761 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 4094 +TI 1760667400.978247165 +CC NStripHits 6 +PQ 3.7467 +SQ 2 +CT 0 1 +TL 1 +TE 70.4407 +CE 375.493 1.7293 70.4407 1.10617 +CD 1.21033 -0.425344 -2.44608 0.0336036 0.0222948 0.0336036 4.00408 -0.770099 -2.56248 0.0336036 0.0202977 0.0336036 0 0 0 0 0 0 +LA 2.81735 +SE +ET UN +ID 4095 +TI 1760667400.997285842 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4096 +TI 1760667400.997337579 +CC NStripHits 2 +PE 105.77 +PP -0.652172 0.378946 -4.54139 +PW 0 +SE +ET PH +ID 4097 +TI 1760667400.997358322 +CC NStripHits 2 +PE 56.8654 +PP 1.55955 -0.151864 -0.932797 +PW 0 +SE +ET UN +ID 4098 +TI 1760667400.997377634 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4099 +TI 1760667400.997410535 +CC NStripHits 2 +PE 25.6394 +PP 0.395484 -0.280143 -0.699984 +PW 0 +SE +ID 4100 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (64.026264)) (GR Hit: Detector ID 0 and Energy 466.242350) +BD GR Veto +PQ 64.0263 +SE +ET CO +ID 4101 +TI 1760667400.997451543 +CC NStripHits 7 +PQ 8.75698 +SQ 2 +CT 0.612628 0.387372 +TL 1 +TE 382.08 +CE 289.401 1.85488 382.08 1.29765 +CD 3.18923 -0.571993 -3.02811 0.0336036 0.0216068 0.0336036 2.72361 0.239247 -3.26092 0.0336036 0.0313497 0.0336036 0 0 0 0 0 0 +LA 0.963905 +SE +ET UN +ID 4102 +TI 1760667400.997486829 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 662.747 +SE +ET PH +ID 4103 +TI 1760667400.997524499 +CC NStripHits 3 +PE 88.548 +PP -1.69983 -0.0645197 -3.26092 +PW 0 +SE +ET PH +ID 4104 +TI 1760667400.997560739 +CC NStripHits 3 +PE 393.801 +PP 2.02517 -0.608401 -0.932797 +PW 0 +SE +ET PH +ID 4105 +TI 1760667400.997600793 +CC NStripHits 2 +PE 398.879 +PP -0.302953 -0.019892 -0.350766 +PW 0 +SE +ID 4106 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.704371) (Strip hit removed with energy 5.847915) +QA StripPairing (GR Hit: Detector ID 0 and Energy 151.869891) +BD GR Veto +PQ 9.32355 +SE +ET UN +ID 4107 +TI 1760667400.997710704 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4108 +TI 1760667400.997748851 +CC NStripHits 2 +PE 197.367 +PP -2.51467 -1.00158 -1.86405 +PW 0 +SE +ET PH +ID 4109 +TI 1760667400.997776269 +CC NStripHits 3 +PE 159.832 +PP -2.16545 -0.786843 -0.467172 +PW 0 +SE +ET PH +ID 4110 +TI 1760667400.997840881 +CC NStripHits 2 +PE 326.58 +PP -2.74748 -0.472757 -0.117953 +PW 0 +SE +ET PH +ID 4111 +TI 1760667400.997867584 +CC NStripHits 2 +PE 151.415 +PP -0.535766 -1.08397 1.51173 +PW 0 +SE +ID 4112 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.783941) +BD GR Veto +PQ 0.832386 +SE +ET PH +ID 4113 +TI 1760667400.997907400 +CC NStripHits 4 +PE 261.63 +PP 1.32673 -0.364216 1.86095 +PW 0 +SE +ET CO +ID 4114 +TI 1760667400.997931480 +CC NStripHits 4 +PQ 2.04434 +SQ 2 +CT 0 1 +TL 1 +TE 110.32 +CE 389.175 0.978447 110.32 0.914853 +CD -1.00139 -0.039755 -3.14452 0.0336036 0.0247397 0.0336036 -1.58342 -0.423644 -2.7953 0.0336036 0.0223063 0.0336036 0 0 0 0 0 0 +LA 0.779798 +SE +ID 4115 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (642.367680)) (GR Hit: Detector ID 0 and Energy 137.556856) +BD GR Veto +PQ 642.368 +SE +ET UN +ID 4116 +TI 1760667400.997982501 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4117 +TI 1760667400.998016119 +CC NStripHits 2 +PE 131.634 +PP -1.35061 -0.147144 0.929703 +PW 0 +SE +ID 4118 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 152.341520) +BD GR Veto +PQ 1.90271 +SE +ET PH +ID 4119 +TI 1760667400.998042583 +CC NStripHits 2 +PE 83.7603 +PP 1.90877 0.341415 -4.6578 +PW 0 +SE +ET PH +ID 4120 +TI 1760667400.998060464 +CC NStripHits 2 +PE 223.099 +PP -0.186547 -0.509753 1.39533 +PW 0 +SE +ET PH +ID 4121 +TI 1760667400.998079299 +CC NStripHits 2 +PE 466.737 +PP 2.14158 0.100604 -3.61014 +PW 0 +SE +ID 4122 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.484970) +BD GR Veto +PQ 2.08556e-06 +SE +ID 4123 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 231.028986) +BD GR Veto +PQ 2.15639 +SE +ET PH +ID 4124 +TI 1760667400.998121261 +CC NStripHits 5 +PE 521.458 +PP 2.4908 -0.965708 -3.72655 +PW 0 +SE +ET UN +ID 4125 +TI 1760667400.998172521 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 99.2025 +SE +ID 4126 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.352249) +BD GR Veto +PQ 4.3032 +SE +ET PH +ID 4127 +TI 1760667400.998206615 +CC NStripHits 3 +PE 194.245 +PP 2.37439 -0.0378392 -1.51483 +PW 0 +SE +ET PH +ID 4128 +TI 1760667400.998230218 +CC NStripHits 2 +PE 27.7547 +PP 3.18923 -0.475701 -3.02811 +PW 0 +SE +ET PH +ID 4129 +TI 1760667400.998248338 +CC NStripHits 2 +PE 62.1506 +PP 0.0462656 -1.04591 -0.583578 +PW 0 +SE +ET CO +ID 4130 +TI 1760667400.998268842 +CC NStripHits 4 +PQ 0.653289 +SQ 2 +CT 0 1 +TL 1 +TE 26.117 +CE 90.6332 0.908516 26.117 0.909484 +CD 3.53845 -0.0270767 -1.74764 0.0336036 0.024817 0.0336036 4.3533 0.36562 -2.21327 0.0336036 0.0237731 0.0336036 0 0 0 0 0 0 +LA 1.01735 +SE +ID 4131 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.517271) (Strip hit removed with energy 9.092625) +QA StripPairing (GR Hit: Detector ID 0 and Energy 266.667403) +BD GR Veto +PQ 0.686898 +SE +ID 4132 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.623980) +QA StripPairing (Best reduced chi square is not below 25 (219.493897)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 156.607320)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 39.301940) +BD GR Veto +PQ 219.494 +SE +ET CO +ID 4133 +TI 1760667400.998355627 +CC NStripHits 4 +PQ 1.02468 +SQ 2 +CT 0.561836 0.438164 +TL 1 +TE 355.572 +CE 301.225 0.945582 355.572 0.974507 +CD -2.39827 -0.976808 -1.86405 0.0336036 0.0199653 0.0336036 0.0462656 -1.07519 -2.9117 0.0336036 0.0230958 0.0336036 0 0 0 0 0 0 +LA 2.66139 +SE +ID 4134 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 295.143717) +BD GR Veto +PQ 6.53085 +SE +ET PH +ID 4135 +TI 1760667400.998402833 +CC NStripHits 2 +PE 106.789 +PP 2.72361 -1.06963 0.696891 +PW 0 +SE +ET PH +ID 4136 +TI 1760667400.998421669 +CC NStripHits 2 +PE 658.504 +PP 3.77127 0.360794 -2.7953 +PW 0 +SE +ID 4137 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.909793) (Strip hit removed with energy 15.855246) +QA StripPairing (Best reduced chi square is not below 25 (171.123277)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 124.967927) (GR Hit: Detector ID 0 and Energy 109.345904) +BD GR Veto +PQ 171.123 +SE +ET PH +ID 4138 +TI 1760667400.998471736 +CC NStripHits 2 +PE 118.905 +PP 0.511891 0.352368 1.39533 +PW 0 +SE +ID 4139 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 172.332083) +BD GR Veto +PQ 1.23963 +SE +ET PH +ID 4140 +TI 1760667400.998509407 +CC NStripHits 2 +PE 28.6216 +PP -0.884984 0.163802 -4.19217 +PW 0 +SE +ID 4141 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.758306) +BD GR Veto +PQ 2.42201 +SE +ET PH +ID 4142 +TI 1760667400.998534679 +CC NStripHits 4 +PE 336.386 +PP 1.55955 0.239066 0.929703 +PW 0 +SE +ET PH +ID 4143 +TI 1760667400.998557090 +CC NStripHits 2 +PE 347.836 +PP 3.07283 0.326002 -0.350766 +PW 0 +SE +ET PH +ID 4144 +TI 1760667400.998577594 +CC NStripHits 4 +PE 121.784 +PP -1.46702 -0.772646 -2.9117 +PW 0 +SE +ET PH +ID 4145 +TI 1760667400.998599529 +CC NStripHits 2 +PE 132.72 +PP 3.65486 0.13447 2.32658 +PW 0 +SE +ID 4146 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 4147 +TI 1760667400.998622894 +CC NStripHits 2 +PE 52.3533 +PP 2.25798 0.331786 -0.00154687 +PW 0 +SE +ET PH +ID 4148 +TI 1760667400.998640537 +CC NStripHits 3 +PE 108.907 +PP 1.21033 0.0863199 -1.16561 +PW 0 +SE +ET UN +ID 4149 +TI 1760667400.998662948 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 180.432 +SE +ET PH +ID 4150 +TI 1760667400.998696088 +CC NStripHits 3 +PE 253.216 +PP -2.39827 -0.217267 1.86095 +PW 0 +SE +ET PH +ID 4151 +TI 1760667400.998718738 +CC NStripHits 2 +PE 209.138 +PP 1.55955 -0.696146 -1.28202 +PW 0 +SE +ET PH +ID 4152 +TI 1760667400.998739480 +CC NStripHits 2 +PE 99.6714 +PP 2.6072 -0.380379 1.86095 +PW 0 +SE +ET PH +ID 4153 +TI 1760667400.998756647 +CC NStripHits 3 +PE 659.704 +PP -2.04905 0.162164 -3.02811 +PW 0 +SE +ET PH +ID 4154 +TI 1760667400.998780012 +CC NStripHits 2 +PE 96.6164 +PP 2.72361 -0.799912 -3.61014 +PW 0 +SE +ID 4155 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.981940)) (GR Hit: Detector ID 0 and Energy 108.106906) +BD GR Veto +PQ 25.9819 +SE +ET PH +ID 4156 +TI 1760667400.998805284 +CC NStripHits 2 +PE 82.2632 +PP 3.07283 -0.38746 -4.30858 +PW 0 +SE +ET UN +ID 4157 +TI 1760667400.998823642 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.5099 +SE +ET PH +ID 4158 +TI 1760667400.998843431 +CC NStripHits 2 +PE 178.317 +PP 3.42205 -0.48363 1.27892 +PW 0 +SE +ET UN +ID 4159 +TI 1760667401.016147136 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4160 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.141478) +QA StripPairing (GR Hit: Detector ID 0 and Energy 39.666924) +BD GR Veto +PQ 1.12825 +SE +ET UN +ID 4161 +TI 1760667401.016247987 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 537.547 +SE +ID 4162 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (31.564267)) (GR Hit: Detector ID 0 and Energy 541.709340) +BD GR Veto +PQ 31.5643 +SE +ID 4163 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (221.895275)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 37.218323) (GR Hit: Detector ID 0 and Energy 173.065391) +BD GR Veto +PQ 221.895 +SE +ET CO +ID 4164 +TI 1760667401.016399383 +CC NStripHits 5 +PQ 5.78662 +SQ 2 +CT 0 1 +TL 1 +TE 132.999 +CE 291.627 1.94018 132.999 0.922608 +CD -2.63108 -0.641177 0.929703 0.0336036 0.0213724 0.0336036 -2.39827 -0.475493 0.696891 0.0336036 0.0219348 0.0336036 0 0 0 0 0 0 +LA 0.368583 +SE +ET UN +ID 4165 +TI 1760667401.016451597 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4166 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 60.115924)) +BD GR Veto +PQ 0.491553 +SE +ID 4167 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 114.019785) +BD GR Veto +PQ 2.03292 +SE +ID 4168 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 4169 +TI 1760667401.016619443 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 50.7453 +SE +ID 4170 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.338843) +BD GR Veto +PQ 0.336737 +SE +ET PH +ID 4171 +TI 1760667401.016671657 +CC NStripHits 2 +PE 235.542 +PP -2.28186 0.0777208 -3.37733 +PW 0 +SE +ET PH +ID 4172 +TI 1760667401.016705274 +CC NStripHits 3 +PE 661.438 +PP -0.419359 -0.100763 -1.0492 +PW 0 +SE +ID 4173 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (107.908645)) (GR Hit: Detector ID 0 and Energy 477.679195) +BD GR Veto +PQ 107.909 +SE +ID 4174 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 484.097642) +BD GR Veto +PQ 21.2534 +SE +ID 4175 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 366.485673) +BD GR Veto +PQ 2.0623 +SE +ET PH +ID 4176 +TI 1760667401.016796112 +CC NStripHits 2 +PE 46.6611 +PP 4.12048 -0.98485 -2.44608 +PW 0 +SE +ET PH +ID 4177 +TI 1760667401.016840457 +CC NStripHits 2 +PE 32.4195 +PP -0.535766 -0.0935573 -4.19217 +PW 0 +SE +ET CO +ID 4178 +TI 1760667401.016873121 +CC NStripHits 8 +PQ 4.10087 +SQ 4 +CT 0.0881294 0.451012 +TL 1 +TE 25.0098 +CE 549.653 1.86015 25.0098 1.29847 +CD 0.395484 -0.022397 -4.42498 0.0336036 0.024843 0.0336036 0.744703 -0.0111113 -4.54139 0.0336036 0.0249095 0.0336036 0 0 0 0 0 0 +LA 0.368283 +SE +ET UN +ID 4179 +TI 1760667401.016970396 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4180 +TI 1760667401.016989707 +CC NStripHits 3 +PE 431.321 +PP 0.395484 -1.04622 -3.02811 +PW 0 +SE +ET PH +ID 4181 +TI 1760667401.017032146 +CC NStripHits 2 +PE 360.946 +PP -0.0701406 -0.273381 -4.6578 +PW 0 +SE +ET PH +ID 4182 +TI 1760667401.017060279 +CC NStripHits 2 +PE 82.754 +PP 1.09392 0.337753 2.09377 +PW 0 +SE +ET PH +ID 4183 +TI 1760667401.017093181 +CC NStripHits 3 +PE 151.684 +PP 3.18923 0.168481 -1.16561 +PW 0 +SE +ID 4184 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 50.458999) (GR Hit: Detector ID 0 and Energy 108.278621) +BD GR Veto +PQ 1.94284 +SE +ET PH +ID 4185 +TI 1760667401.017159938 +CC NStripHits 2 +PE 70.8527 +PP 1.21033 0.338905 -3.72655 +PW 0 +SE +ET PH +ID 4186 +TI 1760667401.017197370 +CC NStripHits 2 +PE 121.608 +PP 4.23689 -0.0617346 -3.95936 +PW 0 +SE +ET PH +ID 4187 +TI 1760667401.017240524 +CC NStripHits 2 +PE 100.577 +PP -2.39827 -1.04933 -1.28202 +PW 0 +SE +ET UN +ID 4188 +TI 1760667401.017265081 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4189 +TI 1760667401.017292261 +CC NStripHits 2 +PE 66.199 +PP -0.419359 0.305385 -2.09686 +PW 0 +SE +ET PH +ID 4190 +TI 1760667401.017310142 +CC NStripHits 2 +PE 173.348 +PP 2.95642 -0.934481 -4.19217 +PW 0 +SE +ET UN +ID 4191 +TI 1760667401.017327070 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 217.162 +SE +ID 4192 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.298949) +QA StripPairing (GR Hit: Detector ID 0 and Energy 325.694885) +BD GR Veto +PQ 20.9239 +SE +ET PH +ID 4193 +TI 1760667401.017374992 +CC NStripHits 3 +PE 328.986 +PP 1.32673 -0.694987 -3.14452 +PW 0 +SE +ET PH +ID 4194 +TI 1760667401.017395496 +CC NStripHits 3 +PE 199.228 +PP 2.02517 -0.453703 -4.42498 +PW 0 +SE +ET PH +ID 4195 +TI 1760667401.017416000 +CC NStripHits 3 +PE 96.7965 +PP -0.419359 -0.284913 2.55939 +PW 0 +SE +ET PH +ID 4196 +TI 1760667401.017433404 +CC NStripHits 2 +PE 56.4743 +PP 4.00408 -1.16855 -3.26092 +PW 0 +SE +ET CO +ID 4197 +TI 1760667401.017451047 +CC NStripHits 7 +PQ 30.4974 +SQ 3 +CT 0.104181 0.967912 +TL 1 +TE 214.94 +CE 155.307 1.28536 214.94 1.8 +CD -2.39827 -0.818501 -2.67889 0.0336036 0.0200847 0.0336036 -2.28186 -0.238369 -2.44608 0.0336036 0.0233386 0.0336036 0 0 0 0 0 0 +LA 0.63585 +SE +ID 4198 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (208.094877)) (GR Hit: Detector ID 0 and Energy 210.272956) +BD GR Veto +PQ 208.095 +SE +ID 4199 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 28.304009) +BD GR Veto +PQ 0.311956 +SE +ET CO +ID 4200 +TI 1760667401.017503738 +CC NStripHits 6 +PQ 3.90106 +SQ 2 +CT 0.760284 0.239716 +TL 1 +TE 448.128 +CE 218.123 1.86335 448.128 1.07919 +CD 4.23689 -0.371244 -2.21327 0.0336036 0.0226681 0.0336036 3.53845 -0.25615 -1.98045 0.0336036 0.0233392 0.0336036 0 0 0 0 0 0 +LA 0.745165 +SE +ID 4201 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 325.175976) +BD GR Veto +PQ 0.795527 +SE +ET CO +ID 4202 +TI 1760667401.017544269 +CC NStripHits 5 +PQ 51.3991 +SQ 2 +CT 0 1 +TL 1 +TE 101.549 +CE 184.709 1.3518 101.549 1.30896 +CD -2.51467 -0.4319 -3.14452 0.0336036 0.0222429 0.0336036 -2.04905 -0.106674 -3.26092 0.0336036 0.0242223 0.0336036 0 0 0 0 0 0 +LA 0.579761 +SE +ET PH +ID 4203 +TI 1760667401.017573356 +CC NStripHits 2 +PE 94.2378 +PP -0.302953 -0.84021 -4.6578 +PW 0 +SE +ET PH +ID 4204 +TI 1760667401.017588853 +CC NStripHits 2 +PE 65.3643 +PP 2.84002 0.220994 -0.583578 +PW 0 +SE +ET PH +ID 4205 +TI 1760667401.017606496 +CC NStripHits 2 +PE 292.823 +PP 4.23689 0.362109 0.464078 +PW 0 +SE +ET CO +ID 4206 +TI 1760667401.017626285 +CC NStripHits 7 +PQ 4.57551 +SQ 2 +CT 0 1 +TL 1 +TE 136.833 +CE 525.862 1.34297 136.833 1.8046 +CD -0.884984 0.0134246 -3.02811 0.0336036 0.0251716 0.0336036 -0.186547 0.0521517 -2.56248 0.0336036 0.0255134 0.0336036 0 0 0 0 0 0 +LA 0.840313 +SE +ET PH +ID 4207 +TI 1760667401.017667770 +CC NStripHits 2 +PE 376.236 +PP -1.00139 -0.549391 -4.07577 +PW 0 +SE +ID 4208 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.975289) +BD GR Veto +PQ 3.37205 +SE +ID 4209 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (25.069343)) (GR Hit: Detector ID 0 and Energy 194.386114) +BD GR Veto +PQ 25.0693 +SE +ET CO +ID 4210 +TI 1760667401.017704010 +CC NStripHits 5 +PQ 22.6521 +SQ 2 +CT 0 1 +TL 1 +TE 123.522 +CE 158.066 1.12981 123.522 1.2859 +CD -0.884984 -1.01324e-05 -3.02811 0.0336036 0.0250063 0.0336036 0.395484 0.229646 -2.44608 0.0336036 0.0304733 0.0336036 0 0 0 0 0 0 +LA 1.42517 +SE +ET UN +ID 4211 +TI 1760667401.017761468 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 130.376 +SE +ET CO +ID 4212 +TI 1760667401.017785310 +CC NStripHits 4 +PQ 0.642145 +SQ 2 +CT 0.558686 0.441314 +TL 1 +TE 355.927 +CE 303.159 0.975127 355.927 1.02689 +CD 2.37439 -0.81291 -2.09686 0.0336036 0.0201185 0.0336036 1.21033 -1.07596 0.696891 0.0336036 0.0231836 0.0336036 0 0 0 0 0 0 +LA 3.03797 +SE +ET PH +ID 4213 +TI 1760667401.017816305 +CC NStripHits 2 +PE 81.6926 +PP -0.652172 -0.695706 -4.42498 +PW 0 +SE +ET UN +ID 4214 +TI 1760667401.017839193 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4215 +TI 1760667401.017857789 +CC NStripHits 2 +PE 77.0228 +PP 3.18923 -1.16565 0.813297 +PW 0 +SE +ET UN +ID 4216 +TI 1760667401.017875432 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 267.419 +SE +ET PH +ID 4217 +TI 1760667401.017903089 +CC NStripHits 2 +PE 180.77 +PP 3.18923 -0.259628 -1.39842 +PW 0 +SE +ET PH +ID 4218 +TI 1760667401.017928123 +CC NStripHits 2 +PE 75.6236 +PP 1.90877 -0.786335 -1.16561 +PW 0 +SE +ET PH +ID 4219 +TI 1760667401.017948389 +CC NStripHits 5 +PE 470.313 +PP 2.4908 -0.3936 -2.9117 +PW 0 +SE +ET UN +ID 4220 +TI 1760667401.017987489 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 437.776 +SE +ET PH +ID 4221 +TI 1760667401.018043279 +CC NStripHits 2 +PE 274.893 +PP 2.25798 0.144829 1.74455 +PW 0 +SE +ET UN +ID 4222 +TI 1760667401.018061161 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.4298 +SE +ET PH +ID 4223 +TI 1760667401.043873071 +CC NStripHits 3 +PE 253.448 +PP 3.88767 0.363995 1.51173 +PW 0 +SE +ET CO +ID 4224 +TI 1760667401.043960094 +CC NStripHits 4 +PQ 0.615468 +SQ 2 +CT 0 1 +TL 1 +TE 118.764 +CE 129.804 0.904517 118.764 0.922741 +CD -0.884984 0.374874 -2.21327 0.0336036 0.0180809 0.0336036 -1.00139 0.221692 -3.02811 0.0336036 0.0298893 0.0336036 0 0 0 0 0 0 +LA 0.837245 +SE +ET UN +ID 4225 +TI 1760667401.044024944 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4226 +TI 1760667401.044069051 +CC NStripHits 3 +PE 153.967 +PP 3.07283 0.359253 -3.61014 +PW 0 +SE +ET PH +ID 4227 +TI 1760667401.044132471 +CC NStripHits 4 +PE 494.777 +PP 1.79236 -0.767681 -4.54139 +PW 0 +SE +ET UN +ID 4228 +TI 1760667401.044185876 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 188.996 +SE +ET UN +ID 4229 +TI 1760667401.044239521 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 492.091 +SE +ID 4230 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.904585)) (GR Hit: Detector ID 0 and Energy 407.304262) +BD GR Veto +PQ 27.9046 +SE +ET PH +ID 4231 +TI 1760667401.044325828 +CC NStripHits 2 +PE 115.874 +PP -1.35061 0.220472 2.09377 +PW 0 +SE +ET UN +ID 4232 +TI 1760667401.044367551 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 4233 +TI 1760667401.044434785 +CC NStripHits 6 +PQ 0.218218 +SQ 2 +CT 0.730782 0.269218 +TL 1 +TE 434.909 +CE 224.622 1.10187 434.909 1.05946 +CD -0.884984 -1.01441 1.74455 0.0336036 0.0202751 0.0336036 0.511891 0.000363887 0.813297 0.0336036 0.0250103 0.0336036 0 0 0 0 0 0 +LA 1.9617 +SE +ET UN +ID 4234 +TI 1760667401.044516801 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 22.9574 +SE +ET UN +ID 4235 +TI 1760667401.044558048 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 4236 +TI 1760667401.044661283 +CC NStripHits 2 +PE 290.745 +PP -2.28186 -0.220258 1.97736 +PW 0 +SE +ET PH +ID 4237 +TI 1760667401.044703483 +CC NStripHits 5 +PE 658.934 +PP 3.42205 -0.790624 -3.26092 +PW 0 +SE +ET UN +ID 4238 +TI 1760667401.044760942 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 122.357 +SE +ET UN +ID 4239 +TI 1760667401.044817924 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 273.756 +SE +ET UN +ID 4240 +TI 1760667401.044874191 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 4241 +TI 1760667401.044962406 +CC NStripHits 3 +PE 154.337 +PP 4.23689 -0.764572 -3.72655 +PW 0 +SE +ET UN +ID 4242 +TI 1760667401.044982194 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 508.206 +SE +ET PH +ID 4243 +TI 1760667401.045015573 +CC NStripHits 2 +PE 132.304 +PP 4.00408 0.369211 0.114859 +PW 0 +SE +ET PH +ID 4244 +TI 1760667401.045033693 +CC NStripHits 2 +PE 86.3739 +PP 2.4908 0.296533 -1.51483 +PW 0 +SE +ET UN +ID 4245 +TI 1760667401.045055389 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 657.693 +SE +ET PH +ID 4246 +TI 1760667401.045081853 +CC NStripHits 2 +PE 56.8427 +PP 2.37439 0.304364 -3.84295 +PW 0 +SE +ET PH +ID 4247 +TI 1760667401.045099020 +CC NStripHits 2 +PE 306.026 +PP 3.77127 0.356684 -3.61014 +PW 0 +SE +ET PH +ID 4248 +TI 1760667401.045119047 +CC NStripHits 2 +PE 87.6802 +PP 4.12048 0.228454 0.929703 +PW 0 +SE +ID 4249 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (52.383176)) (GR Hit: Detector ID 0 and Energy 325.855640) +BD GR Veto +PQ 52.3832 +SE +ET PH +ID 4250 +TI 1760667401.045144081 +CC NStripHits 3 +PE 254.336 +PP -0.768578 -1.11818 -1.16561 +PW 0 +SE +ET PH +ID 4251 +TI 1760667401.045163154 +CC NStripHits 2 +PE 140.313 +PP 1.90877 0.365977 -1.28202 +PW 0 +SE +ID 4252 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 122.578640) +BD GR Veto +PQ 0.00685138 +SE +ET PH +ID 4253 +TI 1760667401.045189380 +CC NStripHits 2 +PE 109.081 +PP 3.53845 -1.02334 -2.67889 +PW 0 +SE +ID 4254 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.076912) (Strip hit removed with energy 17.874328) +QA StripPairing (Event contains multiple hits on a single strip) +BD GR Veto +PQ 6.90392 +SE +ET CO +ID 4255 +TI 1760667401.045292615 +CC NStripHits 4 +PQ 1.41803 +SQ 2 +CT 0.687618 0.312382 +TL 1 +TE 308.828 +CE 191.869 0.912537 308.828 1.00144 +CD 2.6072 -0.678816 -3.14452 0.0336036 0.0211184 0.0336036 2.84002 -0.520948 -3.26092 0.0336036 0.0217147 0.0336036 0 0 0 0 0 0 +LA 0.304428 +SE +ID 4256 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1150.595111)) (GR Hit: Detector ID 0 and Energy 136.449534) +BD GR Veto +PQ 1150.6 +SE +ET PH +ID 4257 +TI 1760667401.045365810 +CC NStripHits 2 +PE 175.768 +PP -2.63108 -0.703668 -1.51483 +PW 0 +SE +ET CO +ID 4258 +TI 1760667401.045407295 +CC NStripHits 5 +PQ 2.22447 +SQ 2 +CT 0.59366 0.40634 +TL 1 +TE 231.236 +CE 170.188 0.933264 231.236 1.05819 +CD -0.768578 -0.942939 1.86095 0.0336036 0.0198069 0.0336036 -0.419359 -0.974016 0.929703 0.0336036 0.0199523 0.0336036 0 0 0 0 0 0 +LA 0.995058 +SE +ET PH +ID 4259 +TI 1760667401.045469522 +CC NStripHits 4 +PE 663.85 +PP 1.32673 -0.645688 -2.56248 +PW 0 +SE +ET PH +ID 4260 +TI 1760667401.045492649 +CC NStripHits 2 +PE 209.642 +PP 1.32673 -0.187724 0.813297 +PW 0 +SE +ET PH +ID 4261 +TI 1760667401.045509815 +CC NStripHits 2 +PE 191.511 +PP 0.744703 -0.663817 2.55939 +PW 0 +SE +ET UN +ID 4262 +TI 1760667401.045526504 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.7093 +SE +ET UN +ID 4263 +TI 1760667401.045549392 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 664.307 +SE +ET CO +ID 4264 +TI 1760667401.045584201 +CC NStripHits 9 +PQ 9.86455 +SQ 4 +CT 0.00486913 0.0486763 +TL 1 +TE 263.191 +CE 401.478 1.84964 263.191 1.13196 +CD 2.02517 0.287917 -1.63123 0.0336036 0.037705 0.0336036 1.79236 -1.0374 0.696891 0.0336036 0.0207543 0.0336036 0 0 0 0 0 0 +LA 1.22055 +SE +ET UN +ID 4265 +TI 1760667401.045691251 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 661.096 +SE +ET UN +ID 4266 +TI 1760667401.045729875 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.0474 +SE +ID 4267 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 4.99278 +SE +ET PH +ID 4268 +TI 1760667401.045769691 +CC NStripHits 3 +PE 402.449 +PP -2.63108 -0.775809 1.86095 +PW 0 +SE +ID 4269 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.560846) +BD GR Veto +PQ 0.209425 +SE +ID 4270 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (40.785439)) (GR Hit: Detector ID 0 and Energy 454.950849) +BD GR Veto +PQ 40.7854 +SE +ET PH +ID 4271 +TI 1760667401.045809984 +CC NStripHits 2 +PE 440.036 +PP -1.46702 0.0308349 -4.19217 +PW 0 +SE +ET UN +ID 4272 +TI 1760667401.045829772 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 418.73 +SE +ET PH +ID 4273 +TI 1760667401.045849561 +CC NStripHits 2 +PE 232.811 +PP 2.14158 -0.268823 1.51173 +PW 0 +SE +ET PH +ID 4274 +TI 1760667401.045867919 +CC NStripHits 3 +PE 135.929 +PP 1.09392 -0.798565 0.929703 +PW 0 +SE +ID 4275 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.935376) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 37.760447)) (GR Hit: Detector ID 0 and Energy 201.309964) +BD GR Veto +PQ 16.2833 +SE +ET PH +ID 4276 +TI 1760667401.045915842 +CC NStripHits 3 +PE 136.92 +PP 1.67595 -0.430013 1.97736 +PW 0 +SE +ET PH +ID 4277 +TI 1760667401.045935869 +CC NStripHits 2 +PE 132.367 +PP -0.302953 -0.41721 2.55939 +PW 0 +SE +ET PH +ID 4278 +TI 1760667401.045953750 +CC NStripHits 3 +PE 419.939 +PP -0.0701406 -0.0950234 -3.14452 +PW 0 +SE +ET PH +ID 4279 +TI 1760667401.045976161 +CC NStripHits 3 +PE 105.317 +PP 1.67595 -0.717045 -2.44608 +PW 0 +SE +ET CO +ID 4280 +TI 1760667401.045995950 +CC NStripHits 7 +PQ 11.2251 +SQ 3 +CT 0.00877831 0.0742645 +TL 1 +TE 146.528 +CE 427.193 1.66789 146.528 0.936195 +CD 2.84002 0.0493568 -0.583578 0.0336036 0.0254868 0.0336036 1.55955 -0.312996 -0.234359 0.0336036 0.0231183 0.0336036 0 0 0 0 0 0 +LA 0.935285 +SE +ET PH +ID 4281 +TI 1760667401.046037912 +CC NStripHits 2 +PE 466.702 +PP 1.90877 0.306794 -0.699984 +PW 0 +SE +ET PH +ID 4282 +TI 1760667401.046060323 +CC NStripHits 2 +PE 345.777 +PP 0.279078 -0.735007 -4.30858 +PW 0 +SE +ID 4283 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 231.859018) +BD GR Veto +PQ 0.684277 +SE +ET PH +ID 4284 +TI 1760667401.046086072 +CC NStripHits 2 +PE 121.397 +PP 0.279078 0.350337 -2.21327 +PW 0 +SE +ET PH +ID 4285 +TI 1760667401.046103715 +CC NStripHits 3 +PE 466.397 +PP -1.35061 -0.568278 -0.350766 +PW 0 +SE +ET PH +ID 4286 +TI 1760667401.046130895 +CC NStripHits 2 +PE 181.579 +PP -2.39827 -0.234052 -2.7953 +PW 0 +SE +ET UN +ID 4287 +TI 1760667401.066369295 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4288 +TI 1760667401.066437959 +CC NStripHits 3 +PE 65.0185 +PP -1.69983 -1.05977 -2.56248 +PW 0 +SE +ET CO +ID 4289 +TI 1760667401.066459417 +CC NStripHits 5 +PQ 2.74935 +SQ 2 +CT 0 1 +TL 1 +TE 26.1315 +CE 193.778 1.11967 26.1315 0.91981 +CD 3.88767 -0.457163 0.813297 0.0336036 0.0220192 0.0336036 4.12048 0.0497506 -0.583578 0.0336036 0.0254903 0.0336036 0 0 0 0 0 0 +LA 1.50413 +SE +ET CO +ID 4290 +TI 1760667401.066497087 +CC NStripHits 6 +PQ 1.56057 +SQ 2 +CT 0 1 +TL 1 +TE 69.2576 +CE 161.641 1.04951 69.2576 0.904612 +CD -2.39827 -0.88764 1.16252 0.0336036 0.01983 0.0336036 -2.04905 -0.568501 1.51173 0.0336036 0.0216138 0.0336036 0 0 0 0 0 0 +LA 0.588007 +SE +ET PH +ID 4291 +TI 1760667401.066551208 +CC NStripHits 3 +PE 81.2576 +PP 3.77127 -0.629214 1.51173 +PW 0 +SE +ET PH +ID 4292 +TI 1760667401.066571474 +CC NStripHits 2 +PE 130.607 +PP -2.04905 0.306496 -0.699984 +PW 0 +SE +ID 4293 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.813239) +BD GR Veto +PQ 0.24706 +SE +ET UN +ID 4294 +TI 1760667401.066602945 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 178.532 +SE +ET UN +ID 4295 +TI 1760667401.066630601 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 149.593 +SE +ET PH +ID 4296 +TI 1760667401.066661596 +CC NStripHits 3 +PE 147.884 +PP 0.0462656 -0.484302 -2.21327 +PW 0 +SE +ET CO +ID 4297 +TI 1760667401.066682338 +CC NStripHits 5 +PQ 8.94786 +SQ 2 +CT 0 1 +TL 1 +TE 102.295 +CE 562.376 1.64384 102.295 0.954069 +CD 0.744703 -0.262697 0.696891 0.0336036 0.0233204 0.0336036 0.977516 0.0901904 0.347672 0.0336036 0.0261099 0.0336036 0 0 0 0 0 0 +LA 0.548348 +SE +ET UN +ID 4298 +TI 1760667401.066711187 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.9095 +SE +ET PH +ID 4299 +TI 1760667401.066729068 +CC NStripHits 3 +PE 413.723 +PP -2.39827 0.0741992 0.347672 +PW 0 +SE +ET PH +ID 4300 +TI 1760667401.066751003 +CC NStripHits 2 +PE 439.064 +PP -2.86389 0.137264 -1.51483 +PW 0 +SE +ID 4301 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 3.192713) +QA StripPairing (GR Hit: Detector ID 0 and Energy 299.736164) +BD GR Veto +PQ 1.95307 +SE +ET PH +ID 4302 +TI 1760667401.066825151 +CC NStripHits 2 +PE 293.641 +PP 3.42205 -0.38264 2.55939 +PW 0 +SE +ET PH +ID 4303 +TI 1760667401.066844463 +CC NStripHits 3 +PE 122.495 +PP 4.3533 -0.0236326 -1.51483 +PW 0 +SE +ET CO +ID 4304 +TI 1760667401.066861391 +CC NStripHits 5 +PQ 4.95005 +SQ 2 +CT 0 1 +TL 1 +TE 65.1871 +CE 233.579 1.09841 65.1871 1.3198 +CD 2.95642 -0.453928 0.347672 0.0336036 0.0220411 0.0336036 3.88767 -0.371431 -1.28202 0.0336036 0.0226667 0.0336036 0 0 0 0 0 0 +LA 1.87881 +SE +ET PH +ID 4305 +TI 1760667401.066897630 +CC NStripHits 2 +PE 47.9436 +PP -0.535766 0.373608 -4.42498 +PW 0 +SE +ET UN +ID 4306 +TI 1760667401.066915273 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 708.283 +SE +ID 4307 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 281.330222) +BD GR Veto +PQ 2.92911 +SE +ET PH +ID 4308 +TI 1760667401.066962003 +CC NStripHits 4 +PE 145.146 +PP -1.2342 -0.161729 -4.54139 +PW 0 +SE +ID 4309 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.844707) +BD GR Veto +PQ 7.49403 +SE +ET PH +ID 4310 +TI 1760667401.066995382 +CC NStripHits 2 +PE 293.05 +PP 0.395484 -0.684596 -1.0492 +PW 0 +SE +ET PH +ID 4311 +TI 1760667401.067012786 +CC NStripHits 2 +PE 417.114 +PP 0.0462656 -0.288491 2.32658 +PW 0 +SE +ET PH +ID 4312 +TI 1760667401.067029714 +CC NStripHits 2 +PE 29.8555 +PP 2.25798 -0.229166 -0.699984 +PW 0 +SE +ET PH +ID 4313 +TI 1760667401.067046880 +CC NStripHits 2 +PE 200.722 +PP 2.25798 -0.854887 -0.467172 +PW 0 +SE +ID 4314 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (339.712502)) (GR Hit: Detector ID 0 and Energy 143.088775) +BD GR Veto +PQ 339.713 +SE +ET CO +ID 4315 +TI 1760667401.067070722 +CC NStripHits 4 +PQ 10.6248 +SQ 2 +CT 0 1 +TL 1 +TE 80.8486 +CE 373.496 1.31946 80.8486 0.921604 +CD 1.09392 -0.576769 1.62814 0.0336036 0.0215918 0.0336036 1.21033 -0.598559 1.27892 0.0336036 0.0214698 0.0336036 0 0 0 0 0 0 +LA 0.368756 +SE +ET UN +ID 4316 +TI 1760667401.067112445 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 141.05 +SE +ET UN +ID 4317 +TI 1760667401.067140102 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.2935 +SE +ET PH +ID 4318 +TI 1760667401.067157506 +CC NStripHits 4 +PE 661.162 +PP 1.44314 -1.03401 -4.54139 +PW 0 +SE +ET UN +ID 4319 +TI 1760667401.067179441 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 220.306 +SE +ID 4320 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (208.697517)) (GR Hit: Detector ID 0 and Energy 67.712061) +BD GR Veto +PQ 208.698 +SE +ET PH +ID 4321 +TI 1760667401.067212104 +CC NStripHits 2 +PE 89.1875 +PP -1.46702 0.0819836 0.231266 +PW 0 +SE +ET PH +ID 4322 +TI 1760667401.067232608 +CC NStripHits 3 +PE 98.9697 +PP 0.162672 -1.17519 -1.28202 +PW 0 +SE +ET UN +ID 4323 +TI 1760667401.067261695 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4324 +TI 1760667401.067278385 +CC NStripHits 2 +PE 81.144 +PP 4.23689 -0.113227 1.27892 +PW 0 +SE +ID 4325 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.183272) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 26.452990)) +BD GR Veto +PQ 0.174949 +SE +ET PH +ID 4326 +TI 1760667401.067317485 +CC NStripHits 3 +PE 660.575 +PP 4.00408 0.33788 -1.63123 +PW 0 +SE +ET PH +ID 4327 +TI 1760667401.067341566 +CC NStripHits 2 +PE 202.467 +PP 0.628297 -0.860946 -3.14452 +PW 0 +SE +ID 4328 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 265.420490) +BD GR Veto +PQ 7.84768 +SE +ET CO +ID 4329 +TI 1760667401.067374706 +CC NStripHits 4 +PQ 8.56249 +SQ 2 +CT 0 1 +TL 1 +TE 72.1738 +CE 131.586 0.948831 72.1738 1.32905 +CD 0.861109 0.211859 -3.72655 0.0336036 0.0293004 0.0336036 0.395484 -0.880274 -3.95936 0.0336036 0.0198552 0.0336036 0 0 0 0 0 0 +LA 1.20986 +SE +ET CO +ID 4330 +TI 1760667401.067407608 +CC NStripHits 7 +PQ 49.4306 +SQ 3 +CT 0.00171865 0.0421411 +TL 1 +TE 67.8403 +CE 595.715 1.99435 67.8403 1.30651 +CD 3.07283 -0.598891 -4.42498 0.0336036 0.0214681 0.0336036 2.84002 -0.840673 -4.19217 0.0336036 0.0200116 0.0336036 0 0 0 0 0 0 +LA 0.408484 +SE +ET CO +ID 4331 +TI 1760667401.067447900 +CC NStripHits 8 +PQ 1.043 +SQ 2 +CT 0.559124 0.440876 +TL 1 +TE 322.753 +CE 274.942 1.33439 322.753 1.29612 +CD -1.35061 -0.713056 -2.21327 0.0336036 0.020786 0.0336036 0.861109 -0.085908 -3.84295 0.0336036 0.0243848 0.0336036 0 0 0 0 0 0 +LA 2.81796 +SE +ID 4332 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.422173) +BD GR Veto +PQ +SE +ET UN +ID 4333 +TI 1760667401.067497253 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 214.714 +SE +ET PH +ID 4334 +TI 1760667401.067525386 +CC NStripHits 2 +PE 161.434 +PP 2.02517 -0.775309 -3.14452 +PW 0 +SE +ET PH +ID 4335 +TI 1760667401.067549943 +CC NStripHits 2 +PE 58.9714 +PP 1.67595 -1.14244 -3.14452 +PW 0 +SE +ID 4336 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 469.485169) +BD GR Veto +PQ 7.50592 +SE +ID 4337 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 120.955525) (GR Hit: Detector ID 0 and Energy 55.224319) +BD GR Veto +PQ 0.826729 +SE +ET CO +ID 4338 +TI 1760667401.067600011 +CC NStripHits 8 +PQ 0.630268 +SQ 3 +CT 0.000967524 0.816701 +TL 1 +TE 433.454 +CE 222.21 1.52695 433.454 1.0194 +CD 0.511891 -0.482456 -1.39842 0.0336036 0.0219033 0.0336036 -0.0701406 0.377712 -2.21327 0.0336036 0.0162178 0.0336036 0 0 0 0 0 0 +LA 1.30579 +SE +ET UN +ID 4339 +TI 1760667401.067653894 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 4340 +TI 1760667401.067664146 +CC NStripHits 6 +PQ 0.531958 +SQ 2 +CT 0.562093 0.437907 +TL 1 +TE 350.848 +CE 298.427 1.29259 350.848 0.957017 +CD -1.81623 -0.459084 -0.350766 0.0336036 0.0220077 0.0336036 -0.0701406 0.108451 1.04611 0.0336036 0.026351 0.0336036 0 0 0 0 0 0 +LA 2.30699 +SE +ET PH +ID 4341 +TI 1760667401.067714929 +CC NStripHits 2 +PE 54.8629 +PP 0.162672 -0.734911 -3.26092 +PW 0 +SE +ET PH +ID 4342 +TI 1760667401.067733049 +CC NStripHits 3 +PE 301.818 +PP 0.861109 -0.8506 -2.67889 +PW 0 +SE +ET PH +ID 4343 +TI 1760667401.067754745 +CC NStripHits 2 +PE 29.3381 +PP -0.0701406 -1.18194 -4.19217 +PW 0 +SE +ET PH +ID 4344 +TI 1760667401.067772150 +CC NStripHits 2 +PE 296.348 +PP 0.628297 -0.0911397 0.114859 +PW 0 +SE +ET PH +ID 4345 +TI 1760667401.067798852 +CC NStripHits 3 +PE 187.108 +PP 0.162672 -0.144358 -0.350766 +PW 0 +SE +ET UN +ID 4346 +TI 1760667401.067818641 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.3094 +SE +ET CO +ID 4347 +TI 1760667401.067892789 +CC NStripHits 5 +PQ 0.244969 +SQ 2 +CT 0 1 +TL 1 +TE 71.9538 +CE 190.265 1.12574 71.9538 0.925669 +CD 3.88767 -0.113547 -0.932797 0.0336036 0.0241832 0.0336036 4.00408 -0.0470817 -0.816391 0.0336036 0.0246953 0.0336036 0 0 0 0 0 0 +LA 0.177537 +SE +ET PH +ID 4348 +TI 1760667401.067917108 +CC NStripHits 2 +PE 150.141 +PP 4.12048 -0.490552 -1.28202 +PW 0 +SE +ET PH +ID 4349 +TI 1760667401.067934513 +CC NStripHits 2 +PE 208.362 +PP 3.30564 -0.30674 1.62814 +PW 0 +SE +ET PH +ID 4350 +TI 1760667401.067951917 +CC NStripHits 3 +PE 305.051 +PP -2.04905 -0.415623 1.16252 +PW 0 +SE +ET PH +ID 4351 +TI 1760667401.092402219 +CC NStripHits 3 +PE 472.35 +PP -1.35061 -0.510613 -3.72655 +PW 0 +SE +ET CO +ID 4352 +TI 1760667401.092455148 +CC NStripHits 7 +PQ 2.20583 +SQ 3 +CT 0.0931673 0.170084 +TL 1 +TE 76.9736 +CE 428.005 1.58525 76.9736 1.05119 +CD -2.04905 -1.06668 -1.51483 0.0336036 0.0222613 0.0336036 -1.1178 -0.679144 -0.117953 0.0336036 0.0211172 0.0336036 0 0 0 0 0 0 +LA 1.72298 +SE +ID 4353 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 161.878875) (GR Hit: Detector ID 0 and Energy 41.038187) +BD GR Veto +PQ 3.45132 +SE +ET PH +ID 4354 +TI 1760667401.092556953 +CC NStripHits 2 +PE 89.8401 +PP -0.884984 0.248551 -3.72655 +PW 0 +SE +ET CO +ID 4355 +TI 1760667401.092595338 +CC NStripHits 5 +PQ 40.6947 +SQ 2 +CT 0 1 +TL 1 +TE 121.389 +CE 264.723 1.24257 121.389 1.03617 +CD -1.58342 -1.05893 -3.02811 0.0336036 0.0217039 0.0336036 -1.81623 -0.695259 -2.56248 0.0336036 0.0210261 0.0336036 0 0 0 0 0 0 +LA 0.635034 +SE +ET CO +ID 4356 +TI 1760667401.092685222 +CC NStripHits 4 +PQ 6.51197 +SQ 2 +CT 0 1 +TL 1 +TE 106.064 +CE 222.307 1.3399 106.064 0.903197 +CD -0.535766 -0.0749013 -3.02811 0.0336036 0.0245024 0.0336036 -0.302953 0.0634556 -2.9117 0.0336036 0.025664 0.0336036 0 0 0 0 0 0 +LA 0.294781 +SE +ET PH +ID 4357 +TI 1760667401.092739582 +CC NStripHits 6 +PE 662.838 +PP -1.46702 -0.643629 0.347672 +PW 0 +SE +ID 4358 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 172.070605) +BD GR Veto +PQ 0.0733974 +SE +ET UN +ID 4359 +TI 1760667401.092839717 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 273.788 +SE +ET PH +ID 4360 +TI 1760667401.092898607 +CC NStripHits 3 +PE 534.413 +PP -0.302953 -0.654793 -4.30858 +PW 0 +SE +ID 4361 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.755210) +BD GR Veto +PQ 2.12895 +SE +ET PH +ID 4362 +TI 1760667401.092946290 +CC NStripHits 2 +PE 128.1 +PP 0.744703 -0.723825 1.97736 +PW 0 +SE +ET PH +ID 4363 +TI 1760667401.092965602 +CC NStripHits 3 +PE 348.669 +PP 2.14158 0.344624 2.6758 +PW 0 +SE +ET UN +ID 4364 +TI 1760667401.092984914 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.5506 +SE +ET CO +ID 4365 +TI 1760667401.093003749 +CC NStripHits 5 +PQ 4.65634 +SQ 2 +CT 0 1 +TL 1 +TE 120.778 +CE 322.863 1.30923 120.778 1.10605 +CD 1.21033 -0.181519 -1.74764 0.0336036 0.0236109 0.0336036 0.977516 -0.79436 -1.51483 0.0336036 0.0202126 0.0336036 0 0 0 0 0 0 +LA 0.695685 +SE +ID 4366 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (232.273395)) (GR Hit: Detector ID 0 and Energy 662.679154) +BD GR Veto +PQ 232.273 +SE +ID 4367 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 208.292965) +BD GR Veto +PQ 4.09294 +SE +ET PH +ID 4368 +TI 1760667401.093072891 +CC NStripHits 7 +PE 670.314 +PP -2.39827 -0.498796 -1.74764 +PW 0 +SE +ID 4369 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 59.262154) +BD GR Veto +PQ 2.31337 +SE +ET PH +ID 4370 +TI 1760667401.093120336 +CC NStripHits 2 +PE 413.823 +PP 4.3533 -0.643326 -0.816391 +PW 0 +SE +ET UN +ID 4371 +TI 1760667401.093138694 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 325.691 +SE +ID 4372 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.855246) +QA StripPairing (Best reduced chi square is not below 25 (30.856996)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.349991)) +BD GR Veto +PQ 30.857 +SE +ET UN +ID 4373 +TI 1760667401.093191146 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 9 +PE 656.438 +SE +ET PH +ID 4374 +TI 1760667401.093240022 +CC NStripHits 4 +PE 411.615 +PP 1.32673 -0.875745 -1.74764 +PW 0 +SE +ET PH +ID 4375 +TI 1760667401.093263864 +CC NStripHits 2 +PE 273.132 +PP 2.95642 -0.384078 0.580484 +PW 0 +SE +ET UN +ID 4376 +TI 1760667401.093281984 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 121.563 +SE +ET PH +ID 4377 +TI 1760667401.093306779 +CC NStripHits 2 +PE 77.9161 +PP 1.09392 0.347199 1.04611 +PW 0 +SE +ID 4378 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.242106) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 49.047325)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 40.054378) (GR Hit: Detector ID 0 and Energy 65.270033) (GR Hit: Detector ID 0 and Energy 55.360055) (GR Hit: Detector ID 0 and Energy 118.367716) +BD GR Veto +PQ 21.5184 +SE +ET PH +ID 4379 +TI 1760667401.093361616 +CC NStripHits 3 +PE 383.311 +PP 1.79236 -0.659533 2.55939 +PW 0 +SE +ET PH +ID 4380 +TI 1760667401.093384742 +CC NStripHits 2 +PE 93.8038 +PP 2.37439 -0.251008 1.51173 +PW 0 +SE +ID 4381 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.664291) +BD GR Veto +PQ +SE +ET PH +ID 4382 +TI 1760667401.093408107 +CC NStripHits 3 +PE 74.9899 +PP -1.81623 0.204853 -1.63123 +PW 0 +SE +ID 4383 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.896543) +BD GR Veto +PQ 0.75581 +SE +ET PH +ID 4384 +TI 1760667401.093436241 +CC NStripHits 3 +PE 208.99 +PP 2.25798 0.352329 -2.21327 +PW 0 +SE +ET PH +ID 4385 +TI 1760667401.093457698 +CC NStripHits 2 +PE 75.172 +PP 1.79236 -0.363699 1.97736 +PW 0 +SE +ID 4386 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.442656) +BD GR Veto +PQ +SE +ET UN +ID 4387 +TI 1760667401.093485116 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4388 +TI 1760667401.093495607 +CC NStripHits 2 +PE 86.0658 +PP 0.395484 0.0188621 -2.09686 +PW 0 +SE +ET PH +ID 4389 +TI 1760667401.093513488 +CC NStripHits 2 +PE 217.492 +PP -2.74748 0.249346 -2.44608 +PW 0 +SE +ET CO +ID 4390 +TI 1760667401.093531131 +CC NStripHits 7 +PQ 0.612858 +SQ 2 +CT 0.707765 0.292235 +TL 1 +TE 149.974 +CE 209.868 1.05788 149.974 1.29822 +CD -0.884984 -0.8745 -0.117953 0.0336036 0.0198779 0.0336036 -1.1178 -0.269425 0.464078 0.0336036 0.0232873 0.0336036 0 0 0 0 0 0 +LA 0.871251 +SE +ET UN +ID 4391 +TI 1760667401.093565702 +BD DepthCalibrationError (Out of Range) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 12 +PE 587.09 +SE +ET CO +ID 4392 +TI 1760667401.093658208 +CC NStripHits 5 +PQ 0.60399 +SQ 2 +CT 0 1 +TL 1 +TE 90.6902 +CE 393.15 1.1115 90.6902 0.952511 +CD 1.67595 -0.790463 -1.28202 0.0336036 0.0202236 0.0336036 2.37439 -0.842483 -1.51483 0.0336036 0.0200078 0.0336036 0 0 0 0 0 0 +LA 0.738055 +SE +ET PH +ID 4393 +TI 1760667401.093688011 +CC NStripHits 2 +PE 127.726 +PP -1.93264 0.330779 -2.9117 +PW 0 +SE +ET UN +ID 4394 +TI 1760667401.093708038 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4395 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.547381) +QA StripPairing (Best reduced chi square is not below 25 (1749.201574)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 115.966010)) (GR Hit: Detector ID 0 and Energy 517.762602) +BD GR Veto +PQ 1749.2 +SE +ET PH +ID 4396 +TI 1760667401.093746185 +CC NStripHits 3 +PE 109.33 +PP 2.95642 -0.085933 -3.84295 +PW 0 +SE +ET PH +ID 4397 +TI 1760667401.093766450 +CC NStripHits 4 +PE 123.511 +PP -0.0701406 -0.188752 -1.39842 +PW 0 +SE +ET PH +ID 4398 +TI 1760667401.093788862 +CC NStripHits 2 +PE 235.874 +PP 1.79236 -0.482793 1.51173 +PW 0 +SE +ET UN +ID 4399 +TI 1760667401.093808889 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 164.67 +SE +ET UN +ID 4400 +TI 1760667401.093838453 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 144.935 +SE +ID 4401 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 73.416051) +BD GR Veto +PQ 1.35357 +SE +ET CO +ID 4402 +TI 1760667401.093872547 +CC NStripHits 4 +PQ 0.578033 +SQ 2 +CT 0 1 +TL 1 +TE 101.861 +CE 209.771 0.92568 101.861 0.926551 +CD 2.4908 0.0494029 0.347672 0.0336036 0.0254873 0.0336036 3.07283 -0.344594 1.04611 0.0336036 0.0228685 0.0336036 0 0 0 0 0 0 +LA 0.990862 +SE +ET PH +ID 4403 +TI 1760667401.093909502 +CC NStripHits 2 +PE 204.156 +PP 1.79236 -0.6003 1.74455 +PW 0 +SE +ET UN +ID 4404 +TI 1760667401.093930006 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4405 +TI 1760667401.093948125 +CC NStripHits 3 +PE 427.715 +PP 3.65486 -0.969491 -4.07577 +PW 0 +SE +ET PH +ID 4406 +TI 1760667401.093968868 +CC NStripHits 3 +PE 357.432 +PP -1.35061 -0.360811 0.464078 +PW 0 +SE +ET CO +ID 4407 +TI 1760667401.093988895 +CC NStripHits 5 +PQ 0.331322 +SQ 2 +CT 0.674897 0.325103 +TL 1 +TE 404.45 +CE 253.933 0.96173 404.45 1.10621 +CD -0.419359 -1.05764 -0.234359 0.0336036 0.0216263 0.0336036 0.0462656 -0.546893 1.62814 0.0336036 0.021637 0.0336036 0 0 0 0 0 0 +LA 1.9866 +SE +ET CO +ID 4408 +TI 1760667401.094023942 +CC NStripHits 4 +PQ 17.903 +SQ 2 +CT 0 1 +TL 1 +TE 125.502 +CE 415.067 0.981798 125.502 1.35458 +CD 2.95642 0.34434 0.813297 0.0336036 0.0332747 0.0336036 2.02517 0.187012 -0.350766 0.0336036 0.0281915 0.0336036 0 0 0 0 0 0 +LA 1.49901 +SE +ET UN +ID 4409 +TI 1760667401.094063043 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4410 +TI 1760667401.094073534 +CC NStripHits 2 +PE 70.2165 +PP -0.652172 -0.826412 -2.67889 +PW 0 +SE +ET PH +ID 4411 +TI 1760667401.094093084 +CC NStripHits 2 +PE 108.351 +PP 1.79236 -0.0307628 -2.56248 +PW 0 +SE +ID 4412 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.229851) +BD GR Veto +PQ 0.599657 +SE +ID 4413 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 111.833787) +BD GR Veto +PQ 0.628837 +SE +ET UN +ID 4414 +TI 1760667401.094125986 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6552 +SE +ID 4415 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 58.850896) +BD GR Veto +PQ 0.107934 +SE +ET UN +ID 4416 +TI 1760667401.112297058 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 309.48 +SE +ET PH +ID 4417 +TI 1760667401.112334489 +CC NStripHits 2 +PE 215.413 +PP 1.67595 0.140643 1.62814 +PW 0 +SE +ID 4418 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.497348) +QA StripPairing (GR Hit: Detector ID 0 and Energy 178.724058) (GR Hit: Detector ID 0 and Energy 178.839156) +BD GR Veto +PQ 3.40514 +SE +ET PH +ID 4419 +TI 1760667401.112379789 +CC NStripHits 2 +PE 102.604 +PP -1.2342 0.205382 -4.30858 +PW 0 +SE +ET UN +ID 4420 +TI 1760667401.112401008 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4421 +TI 1760667401.112419605 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 4422 +TI 1760667401.112437725 +CC NStripHits 2 +PE 232.71 +PP -0.0701406 0.0831622 -1.51483 +PW 0 +SE +ET PH +ID 4423 +TI 1760667401.112455129 +CC NStripHits 2 +PE 23.5539 +PP 1.21033 0.377519 -0.350766 +PW 0 +SE +ET UN +ID 4424 +TI 1760667401.112490892 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 421.398 +SE +ET PH +ID 4425 +TI 1760667401.112528324 +CC NStripHits 2 +PE 48.5442 +PP 2.25798 0.364786 -3.84295 +PW 0 +SE +ET PH +ID 4426 +TI 1760667401.112547636 +CC NStripHits 3 +PE 225.214 +PP 1.09392 -0.540692 -3.72655 +PW 0 +SE +ET PH +ID 4427 +TI 1760667401.112570285 +CC NStripHits 3 +PE 456.056 +PP 2.02517 0.286824 -3.61014 +PW 0 +SE +ET CO +ID 4428 +TI 1760667401.112595558 +CC NStripHits 4 +PQ 0.141315 +SQ 2 +CT 0 1 +TL 1 +TE 53.7555 +CE 204.943 0.956824 53.7555 0.939307 +CD 2.4908 -0.161895 -1.28202 0.0336036 0.0237452 0.0336036 2.37439 -0.155175 -1.51483 0.0336036 0.0238015 0.0336036 0 0 0 0 0 0 +LA 0.260378 +SE +ET PH +ID 4429 +TI 1760667401.112622261 +CC NStripHits 3 +PE 219.526 +PP -2.16545 0.315746 1.51173 +PW 0 +SE +ID 4430 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.550841) +BD GR Veto +PQ 5.25274 +SE +ET PH +ID 4431 +TI 1760667401.112650632 +CC NStripHits 3 +PE 225.644 +PP -0.535766 -0.802197 -2.09686 +PW 0 +SE +ID 4432 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 54.579272) +BD GR Veto +PQ 0.406235 +SE +ET UN +ID 4433 +TI 1760667401.112679004 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 26.7593 +SE +ET PH +ID 4434 +TI 1760667401.112696886 +CC NStripHits 2 +PE 136.788 +PP 2.95642 -0.82199 -2.21327 +PW 0 +SE +ET UN +ID 4435 +TI 1760667401.112719058 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4436 +TI 1760667401.112730026 +CC NStripHits 2 +PE 125.961 +PP 1.55955 0.375477 -1.98045 +PW 0 +SE +ET PH +ID 4437 +TI 1760667401.112747430 +CC NStripHits 2 +PE 473.662 +PP 1.79236 -1.04236 2.09377 +PW 0 +SE +ID 4438 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.525034) +BD GR Veto +PQ 0.270531 +SE +ET PH +ID 4439 +TI 1760667401.112775325 +CC NStripHits 2 +PE 159.572 +PP 4.12048 -0.0387078 -2.21327 +PW 0 +SE +ID 4440 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.653535) +BD GR Veto +PQ +SE +ET UN +ID 4441 +TI 1760667401.112799882 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 221.864 +SE +ET PH +ID 4442 +TI 1760667401.112846851 +CC NStripHits 4 +PE 139.488 +PP 1.67595 -0.443448 0.464078 +PW 0 +SE +ET PH +ID 4443 +TI 1760667401.112869262 +CC NStripHits 4 +PE 174.07 +PP 0.162672 -0.0698061 -1.74764 +PW 0 +SE +ID 4444 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 180.503004) +BD GR Veto +PQ 2.40765 +SE +ET PH +ID 4445 +TI 1760667401.112914085 +CC NStripHits 2 +PE 385.911 +PP -1.46702 -0.966147 1.86095 +PW 0 +SE +ET PH +ID 4446 +TI 1760667401.112934112 +CC NStripHits 4 +PE 177.638 +PP -0.535766 -0.108702 -0.699984 +PW 0 +SE +ID 4447 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.590513) +BD GR Veto +PQ 1.62985 +SE +ET UN +ID 4448 +TI 1760667401.112968921 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 469.593 +SE +ET UN +ID 4449 +TI 1760667401.112997531 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 11 +PE 0 +SE +ET PH +ID 4450 +TI 1760667401.113057136 +CC NStripHits 3 +PE 184.995 +PP 3.65486 0.348647 -4.30858 +PW 0 +SE +ET PH +ID 4451 +TI 1760667401.113076448 +CC NStripHits 3 +PE 161.991 +PP -0.302953 0.364311 -0.00154687 +PW 0 +SE +ID 4452 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.213444) +BD GR Veto +PQ 0.490895 +SE +ET PH +ID 4453 +TI 1760667401.113105058 +CC NStripHits 2 +PE 240.769 +PP 0.977516 -0.232063 -0.350766 +PW 0 +SE +ET PH +ID 4454 +TI 1760667401.113125085 +CC NStripHits 2 +PE 130.669 +PP 2.4908 -0.49133 -2.9117 +PW 0 +SE +ET PH +ID 4455 +TI 1760667401.113153696 +CC NStripHits 2 +PE 135.497 +PP 3.42205 -0.398331 -3.14452 +PW 0 +SE +ET PH +ID 4456 +TI 1760667401.113172054 +CC NStripHits 2 +PE 219.772 +PP -1.93264 -1.00779 -1.74764 +PW 0 +SE +ET CO +ID 4457 +TI 1760667401.113189458 +CC NStripHits 9 +PQ 1.53652 +SQ 4 +CT 0.0172827 0.0433966 +TL 1 +TE 69.4335 +CE 587.355 1.70732 69.4335 0.927114 +CD 4.12048 -0.47778 -0.350766 0.0336036 0.0219251 0.0336036 4.3533 -1.16165 -1.0492 0.0336036 0.0238369 0.0336036 0 0 0 0 0 0 +LA 0.804959 +SE +ET UN +ID 4458 +TI 1760667401.113233327 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 320.357 +SE +ET PH +ID 4459 +TI 1760667401.113270759 +CC NStripHits 2 +PE 109.318 +PP 0.977516 -0.550302 -0.467172 +PW 0 +SE +ET PH +ID 4460 +TI 1760667401.113301038 +CC NStripHits 2 +PE 269.215 +PP -1.93264 -0.0591508 -4.54139 +PW 0 +SE +ET PH +ID 4461 +TI 1760667401.113318681 +CC NStripHits 2 +PE 262.859 +PP 2.25798 -0.420607 -1.0492 +PW 0 +SE +ID 4462 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.826505) +BD GR Veto +PQ +SE +ET CO +ID 4463 +TI 1760667401.113342046 +CC NStripHits 7 +PQ 40.3874 +SQ 3 +CT 0.517845 1.00446 +TL 1 +TE 284.38 +CE 325.06 1.86953 284.38 1.92269 +CD 0.0462656 -0.996669 1.27892 0.0336036 0.0200829 0.0336036 -0.302953 -0.266344 0.580484 0.0336036 0.0233038 0.0336036 0 0 0 0 0 0 +LA 1.06918 +SE +ID 4464 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.385020) (Strip hit removed with energy 12.054915) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 129.440175) +BD GR Veto +PQ 3.50768 +SE +ET PH +ID 4465 +TI 1760667401.113408327 +CC NStripHits 2 +PE 143.363 +PP -1.58342 -0.378874 -4.54139 +PW 0 +SE +ID 4466 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 116.675242) +BD GR Veto +PQ 0.0668769 +SE +ET CO +ID 4467 +TI 1760667401.113433599 +CC NStripHits 5 +PQ 2.36269 +SQ 2 +CT 0 1 +TL 1 +TE 95.0148 +CE 278.373 1.09187 95.0148 0.942214 +CD 0.977516 -0.267411 0.464078 0.0336036 0.0232983 0.0336036 -0.0701406 0.169609 0.580484 0.0336036 0.0276525 0.0336036 0 0 0 0 0 0 +LA 1.14111 +SE +ID 4468 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 139.400375) +BD GR Veto +PQ 5.44433 +SE +ET CO +ID 4469 +TI 1760667401.113471746 +CC NStripHits 7 +PQ 17.2775 +SQ 2 +CT 0 1 +TL 1 +TE 129.626 +CE 275.869 1.05784 129.626 1.94594 +CD 1.32673 -0.521094 0.231266 0.0336036 0.0217142 0.0336036 2.14158 0.331694 1.16252 0.0336036 0.0365498 0.0336036 0 0 0 0 0 0 +LA 1.50282 +SE +ID 4470 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.985068) (Strip hit removed with energy 13.794673) (Strip hit removed with energy 9.560261) (Strip hit removed with energy 13.169337) (Strip hit removed with energy 9.204676) +BD GR Veto +PQ 0.589688 +SE +ET UN +ID 4471 +TI 1760667401.113580465 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 6 +PE 526.73 +SE +ET PH +ID 4472 +TI 1760667401.113624334 +CC NStripHits 2 +PE 41.8815 +PP 2.25798 -0.567839 2.32658 +PW 0 +SE +ET UN +ID 4473 +TI 1760667401.113642454 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 174.477 +SE +ET PH +ID 4474 +TI 1760667401.113665103 +CC NStripHits 2 +PE 93.657 +PP 4.3533 0.350003 0.231266 +PW 0 +SE +ET UN +ID 4475 +TI 1760667401.113682508 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 660.697 +SE +ID 4476 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.576575) +BD GR Veto +PQ 2.10243 +SE +ET UN +ID 4477 +TI 1760667401.113729715 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4478 +TI 1760667401.113747358 +CC NStripHits 3 +PE 383.864 +PP 0.628297 0.156243 -4.54139 +PW 0 +SE +ID 4479 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.319388) +BD GR Veto +PQ 2.83032 +SE +ID 4480 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 266.259494) +BD GR Veto +PQ 6.34579 +SE +ET CO +ID 4481 +TI 1760667401.136261940 +CC NStripHits 5 +PQ 0.960084 +SQ 2 +CT 0 1 +TL 1 +TE 84.2296 +CE 239.982 1.04979 84.2296 0.91964 +CD 2.02517 0.310533 1.97736 0.0336036 0.0387708 0.0336036 -1.46702 0.363638 -2.32967 0.0336036 0.0248818 0.0336036 0 0 0 0 0 0 +LA 5.54515 +SE +ID 4482 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (14751.875253)) (GR Hit: Detector ID 0 and Energy 452.028905) +BD GR Veto +PQ 14751.9 +SE +ID 4483 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 43.250902) +BD GR Veto +PQ 10.3985 +SE +ID 4484 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (516.632963)) (GR Hit: Detector ID 0 and Energy 100.527163) +BD GR Veto +PQ 516.633 +SE +ID 4485 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.479152) (Strip hit removed with energy 16.553626) +BD GR Veto +PQ 1.67045 +SE +ET PH +ID 4486 +TI 1760667401.136446237 +CC NStripHits 2 +PE 71.5808 +PP 1.67595 0.350764 1.97736 +PW 0 +SE +ET CO +ID 4487 +TI 1760667401.136485576 +CC NStripHits 7 +PQ 1.06102 +SQ 2 +CT 0 1 +TL 1 +TE 23.5981 +CE 239.946 1.41563 23.5981 0.914562 +CD -0.0701406 -0.407899 -4.07577 0.0336036 0.0223936 0.0336036 1.44314 -0.492906 -0.117953 0.0336036 0.0218447 0.0336036 0 0 0 0 0 0 +LA 4.23811 +SE +ET UN +ID 4488 +TI 1760667401.136574506 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 296.538 +SE +ID 4489 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.092626) (Strip hit removed with energy 9.348977) (Strip hit removed with energy 7.001342) +QA StripPairing (Best reduced chi square is not below 25 (2962.307647)) (GR Hit: Detector ID 0 and Energy 302.190216) +BD GR Veto +PQ 2962.31 +SE +ET UN +ID 4490 +TI 1760667401.136692762 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 372.613 +SE +ET PH +ID 4491 +TI 1760667401.136781454 +CC NStripHits 2 +PE 49.2939 +PP 0.628297 -0.41877 0.347672 +PW 0 +SE +ET UN +ID 4492 +TI 1760667401.136825561 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 191.501 +SE +ET PH +ID 4493 +TI 1760667401.136875152 +CC NStripHits 2 +PE 190.465 +PP 0.744703 0.363921 -4.19217 +PW 0 +SE +ET UN +ID 4494 +TI 1760667401.136914253 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.2246 +SE +ID 4495 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 4496 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.728064) (Strip hit removed with energy 4.310726) +BD GR Veto +PQ +SE +ET PH +ID 4497 +TI 1760667401.136985778 +CC NStripHits 5 +PE 323.399 +PP -1.46702 -0.355076 -2.09686 +PW 0 +SE +ET CO +ID 4498 +TI 1760667401.137056350 +CC NStripHits 4 +PQ 3.31136 +SQ 2 +CT 0 1 +TL 1 +TE 144.229 +CE 333.112 0.961469 144.229 0.925022 +CD 2.72361 -1.15523 -3.61014 0.0336036 0.0261601 0.0336036 1.44314 -1.08087 -1.16561 0.0336036 0.0238018 0.0336036 0 0 0 0 0 0 +LA 2.76059 +SE +ET PH +ID 4499 +TI 1760667401.137143373 +CC NStripHits 3 +PE 208.307 +PP -0.535766 0.138037 -0.467172 +PW 0 +SE +ET UN +ID 4500 +TI 1760667401.137186288 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.9019 +SE +ID 4501 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 120.620520) +BD GR Veto +PQ 2.51299 +SE +ET UN +ID 4502 +TI 1760667401.137240409 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 80.3174 +SE +ET PH +ID 4503 +TI 1760667401.137283802 +CC NStripHits 3 +PE 215.271 +PP -0.884984 0.0986246 1.04611 +PW 0 +SE +ET PH +ID 4504 +TI 1760667401.137327909 +CC NStripHits 2 +PE 183.716 +PP 3.18923 -0.255801 -3.95936 +PW 0 +SE +ET PH +ID 4505 +TI 1760667401.137365818 +CC NStripHits 2 +PE 239.291 +PP 1.44314 -0.284894 -2.32967 +PW 0 +SE +ET CO +ID 4506 +TI 1760667401.137404441 +CC NStripHits 4 +PQ 8.99565 +SQ 2 +CT 0.693454 0.306546 +TL 1 +TE 370.111 +CE 186.41 1.38913 370.111 1.25834 +CD 3.65486 -0.552725 -4.54139 0.0336036 0.0216276 0.0336036 3.88767 0.350589 -3.95936 0.0336036 0.0310301 0.0336036 0 0 0 0 0 0 +LA 1.09952 +SE +ET PH +ID 4507 +TI 1760667401.137451887 +CC NStripHits 2 +PE 118.161 +PP -2.39827 -0.0596796 -1.51483 +PW 0 +SE +ET UN +ID 4508 +TI 1760667401.137470722 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 660.822 +SE +ET CO +ID 4509 +TI 1760667401.137524366 +CC NStripHits 6 +PQ 5.35643 +SQ 3 +CT 3.88562e-06 0.00221597 +TL 1 +TE 242.465 +CE 417.459 1.68416 242.465 0.961235 +CD 1.55955 -0.0126716 0.464078 0.0336036 0.0248991 0.0336036 2.6072 -0.836563 1.51173 0.0336036 0.0200196 0.0336036 0 0 0 0 0 0 +LA 1.05843 +SE +ET PH +ID 4510 +TI 1760667401.137570858 +CC NStripHits 3 +PE 350.272 +PP -0.768578 0.246511 1.97736 +PW 0 +SE +ET CO +ID 4511 +TI 1760667401.137590885 +CC NStripHits 6 +PQ 2.62992 +SQ 2 +CT 0 1 +TL 1 +TE 184.261 +CE 479.76 1.90562 184.261 0.944157 +CD 2.72361 0.114687 -0.234359 0.0336036 0.0264481 0.0336036 3.88767 -0.945965 0.464078 0.0336036 0.0198161 0.0336036 0 0 0 0 0 0 +LA 1.72274 +SE +ID 4512 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 24.466455) (GR Hit: Detector ID 0 and Energy 499.233619) +BD GR Veto +PQ 15.0334 +SE +ET UN +ID 4513 +TI 1760667401.137641906 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.0317 +SE +ET PH +ID 4514 +TI 1760667401.137660264 +CC NStripHits 3 +PE 461.621 +PP -0.0701406 0.0795977 -1.0492 +PW 0 +SE +ET CO +ID 4515 +TI 1760667401.137683391 +CC NStripHits 5 +PQ 10.6676 +SQ 2 +CT 0 1 +TL 1 +TE 79.769 +CE 446.033 1.83851 79.769 0.932573 +CD 2.6072 0.259224 0.696891 0.0336036 0.0338276 0.0336036 2.95642 -0.158119 0.580484 0.0336036 0.023776 0.0336036 0 0 0 0 0 0 +LA 0.556489 +SE +ET CO +ID 4516 +TI 1760667401.137715101 +CC NStripHits 4 +PQ 82.0126 +SQ 2 +CT 0.53237 0.46763 +TL 1 +TE 205.613 +CE 180.393 1.24147 205.613 0.949853 +CD -2.28186 -0.797749 -1.0492 0.0336036 0.0202007 0.0336036 -1.46702 -0.583238 -3.49373 0.0336036 0.0215612 0.0336036 0 0 0 0 0 0 +LA 2.58567 +SE +ID 4517 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.583366) +BD GR Veto +PQ 0.0708555 +SE +ET UN +ID 4518 +TI 1760667401.137763500 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 136.875 +SE +ET CO +ID 4519 +TI 1760667401.137790679 +CC NStripHits 8 +PQ 27.7167 +SQ 3 +CT 0.05837 0.359664 +TL 1 +TE 146.102 +CE 511.099 1.75092 146.102 1.85586 +CD 0.628297 0.125507 0.696891 0.0336036 0.0266535 0.0336036 0.744703 0.0702228 0.464078 0.0336036 0.0257806 0.0336036 0 0 0 0 0 0 +LA 0.266099 +SE +ET PH +ID 4520 +TI 1760667401.137850522 +CC NStripHits 4 +PE 663.469 +PP 3.65486 0.0864169 -3.49373 +PW 0 +SE +ID 4521 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.607598)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 25.527043) (GR Hit: Detector ID 0 and Energy 407.147848) +BD GR Veto +PQ 27.6076 +SE +ET PH +ID 4522 +TI 1760667401.137891530 +CC NStripHits 2 +PE 225.784 +PP -2.39827 -0.232386 -2.09686 +PW 0 +SE +ET CO +ID 4523 +TI 1760667401.137910127 +CC NStripHits 6 +PQ 0.550757 +SQ 2 +CT 0 1 +TL 1 +TE 105.478 +CE 183.571 1.05192 105.478 1.08329 +CD 3.53845 0.249088 1.39533 0.0336036 0.0324684 0.0336036 3.18923 -0.530067 1.97736 0.0336036 0.0216866 0.0336036 0 0 0 0 0 0 +LA 1.03334 +SE +ET PH +ID 4524 +TI 1760667401.137943744 +CC NStripHits 2 +PE 169.655 +PP -0.768578 -1.09689 -1.86405 +PW 0 +SE +ET PH +ID 4525 +TI 1760667401.137966632 +CC NStripHits 2 +PE 128.758 +PP 0.0462656 -1.14902 -3.37733 +PW 0 +SE +ET PH +ID 4526 +TI 1760667401.137985706 +CC NStripHits 3 +PE 148.243 +PP -2.51467 -0.307511 -3.02811 +PW 0 +SE +ET PH +ID 4527 +TI 1760667401.138006210 +CC NStripHits 2 +PE 226.55 +PP -0.768578 0.361985 -0.699984 +PW 0 +SE +ET PH +ID 4528 +TI 1760667401.138024330 +CC NStripHits 3 +PE 262.749 +PP -0.652172 -0.897636 -3.37733 +PW 0 +SE +ET PH +ID 4529 +TI 1760667401.138044834 +CC NStripHits 2 +PE 270.16 +PP -0.186547 0.151613 1.86095 +PW 0 +SE +ID 4530 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 119.916650) +BD GR Veto +PQ 10.4676 +SE +ET PH +ID 4531 +TI 1760667401.138072252 +CC NStripHits 2 +PE 68.6356 +PP 0.628297 0.338118 -3.84295 +PW 0 +SE +ET PH +ID 4532 +TI 1760667401.138091087 +CC NStripHits 2 +PE 37.4454 +PP 4.23689 -0.484327 0.813297 +PW 0 +SE +ET PH +ID 4533 +TI 1760667401.138119459 +CC NStripHits 3 +PE 417.963 +PP 2.37439 -0.54479 -2.7953 +PW 0 +SE +ID 4534 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 364.032079) +BD GR Veto +PQ 0.371565 +SE +ID 4535 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 42.621680) +BD GR Veto +PQ 15.5261 +SE +ET UN +ID 4536 +TI 1760667401.138176679 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.6102 +SE +ET PH +ID 4537 +TI 1760667401.138194084 +CC NStripHits 2 +PE 150.139 +PP 3.65486 -0.386482 -3.84295 +PW 0 +SE +ET PH +ID 4538 +TI 1760667401.138212442 +CC NStripHits 2 +PE 138.836 +PP 2.84002 0.25286 0.231266 +PW 0 +SE +ET UN +ID 4539 +TI 1760667401.138233184 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 281.361 +SE +ID 4540 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 93.089223) +BD GR Veto +PQ 3.00626 +SE +ET UN +ID 4541 +TI 1760667401.138283014 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.6551 +SE +ET PH +ID 4542 +TI 1760667401.138303518 +CC NStripHits 2 +PE 300.627 +PP -1.00139 -0.077255 -1.63123 +PW 0 +SE +ID 4543 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (71.296678)) (GR Hit: Detector ID 0 and Energy 513.952248) +BD GR Veto +PQ 71.2967 +SE +ET PH +ID 4544 +TI 1760667401.158768177 +CC NStripHits 2 +PE 78.49 +PP -2.51467 -0.289389 -1.86405 +PW 0 +SE +ET CO +ID 4545 +TI 1760667401.158822774 +CC NStripHits 7 +PQ 1.21719 +SQ 3 +CT 0.000811867 0.0289228 +TL 1 +TE 300.232 +CE 359.576 1.32903 300.232 1.17029 +CD -0.768578 -0.687584 -4.19217 0.0336036 0.0210827 0.0336036 -0.652172 -0.756214 -4.30858 0.0336036 0.0204291 0.0336036 0 0 0 0 0 0 +LA 0.178358 +SE +ET UN +ID 4546 +TI 1760667401.158889055 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 660.704 +SE +ET CO +ID 4547 +TI 1760667401.158920288 +CC NStripHits 4 +PQ 10.7924 +SQ 2 +CT 0 1 +TL 1 +TE 113.694 +CE 140.695 1.31948 113.694 1.31381 +CD 1.09392 -0.713577 1.16252 0.0336036 0.0207789 0.0336036 0.977516 -0.918693 1.04611 0.0336036 0.0197805 0.0336036 0 0 0 0 0 0 +LA 0.263009 +SE +ET PH +ID 4548 +TI 1760667401.158946037 +CC NStripHits 2 +PE 187.057 +PP 2.84002 -0.192063 -1.0492 +PW 0 +SE +ID 4549 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 388.275676) (GR Hit: Detector ID 0 and Energy 46.773606) +BD GR Veto +PQ 16.946 +SE +ET PH +ID 4550 +TI 1760667401.158990621 +CC NStripHits 3 +PE 181.769 +PP 2.95642 -1.15784 -2.7953 +PW 0 +SE +ET PH +ID 4551 +TI 1760667401.159018278 +CC NStripHits 2 +PE 414.039 +PP 0.162672 0.371007 0.347672 +PW 0 +SE +ET PH +ID 4552 +TI 1760667401.159038782 +CC NStripHits 2 +PE 418.019 +PP 3.77127 -0.984909 -3.49373 +PW 0 +SE +ET PH +ID 4553 +TI 1760667401.159068822 +CC NStripHits 3 +PE 153.354 +PP -0.186547 0.0834589 0.231266 +PW 0 +SE +ET UN +ID 4554 +TI 1760667401.159089565 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 266.039 +SE +ID 4555 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.250027) +BD GR Veto +PQ +SE +ET PH +ID 4556 +TI 1760667401.159127950 +CC NStripHits 2 +PE 153.718 +PP -2.63108 -0.270303 0.696891 +PW 0 +SE +ID 4557 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.855353) (Strip hit removed with energy 14.032265) +BD GR Veto +PQ 0.851415 +SE +ET PH +ID 4558 +TI 1760667401.159202814 +CC NStripHits 3 +PE 462.234 +PP 3.30564 0.36792 -2.9117 +PW 0 +SE +ET CO +ID 4559 +TI 1760667401.159227848 +CC NStripHits 4 +PQ 5.79877 +SQ 2 +CT 0 1 +TL 1 +TE 57.7029 +CE 414.546 1.01973 57.7029 1.35025 +CD 0.744703 -0.67254 -1.63123 0.0336036 0.0211437 0.0336036 0.0462656 -1.08756 -2.44608 0.0336036 0.0247794 0.0336036 0 0 0 0 0 0 +LA 1.15067 +SE +ET CO +ID 4560 +TI 1760667401.159262657 +CC NStripHits 5 +PQ 0.738787 +SQ 2 +CT 0 1 +TL 1 +TE 56.6166 +CE 99.6712 1.03495 56.6166 0.928492 +CD 1.32673 -0.557428 -0.816391 0.0336036 0.0216234 0.0336036 -2.9803 -0.825282 -3.72655 0.0336036 0.0200513 0.0336036 0 0 0 0 0 0 +LA 5.20493 +SE +ET CO +ID 4561 +TI 1760667401.159294366 +CC NStripHits 7 +PQ 6.99229 +SQ 3 +CT 0.183556 0.362571 +TL 1 +TE 250.996 +CE 391.78 1.32417 250.996 1.41499 +CD 2.02517 -0.968416 2.32658 0.0336036 0.0199253 0.0336036 2.14158 -0.972184 2.44298 0.0336036 0.0199436 0.0336036 0 0 0 0 0 0 +LA 0.164665 +SE +ID 4562 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (6136.324562)) (GR Hit: Detector ID 0 and Energy 372.048596) +BD GR Veto +PQ 6136.32 +SE +ET PH +ID 4563 +TI 1760667401.159343004 +CC NStripHits 2 +PE 49.5858 +PP -0.768578 0.337363 -0.932797 +PW 0 +SE +ID 4564 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 41.112146) +BD GR Veto +PQ 13.849 +SE +ET PH +ID 4565 +TI 1760667401.159382343 +CC NStripHits 3 +PE 152.249 +PP 2.02517 -0.246302 -2.9117 +PW 0 +SE +ET UN +ID 4566 +TI 1760667401.159401178 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 51.901 +SE +ID 4567 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 171.214934) +BD GR Veto +PQ 1.32969 +SE +ET PH +ID 4568 +TI 1760667401.159448623 +CC NStripHits 2 +PE 144.038 +PP 0.628297 -0.0504995 2.09377 +PW 0 +SE +ET UN +ID 4569 +TI 1760667401.159467458 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 141.961 +SE +ET PH +ID 4570 +TI 1760667401.159497261 +CC NStripHits 2 +PE 194.843 +PP -2.86389 -0.396056 -3.26092 +PW 0 +SE +ET CO +ID 4571 +TI 1760667401.159515380 +CC NStripHits 5 +PQ 2.5759 +SQ 2 +CT 0 1 +TL 1 +TE 50.5512 +CE 113.075 1.06314 50.5512 0.892828 +CD 4.23689 -0.744313 -1.74764 0.0336036 0.0205506 0.0336036 4.00408 -0.970396 -1.51483 0.0336036 0.019935 0.0336036 0 0 0 0 0 0 +LA 0.399393 +SE +ID 4572 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (5621.770276)) (GR Hit: Detector ID 0 and Energy 292.677250) +BD GR Veto +PQ 5621.77 +SE +ET PH +ID 4573 +TI 1760667401.159551858 +CC NStripHits 2 +PE 465.668 +PP 1.55955 0.108389 -1.63123 +PW 0 +SE +ET PH +ID 4574 +TI 1760667401.159573078 +CC NStripHits 2 +PE 661.12 +PP 1.44314 -0.779336 -0.467172 +PW 0 +SE +ET UN +ID 4575 +TI 1760667401.159595489 +BD DepthCalibrationError (Out of Range) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 528.947 +SE +ET CO +ID 4576 +TI 1760667401.159637451 +CC NStripHits 5 +PQ 1.43933 +SQ 2 +CT 0 1 +TL 1 +TE 151.592 +CE 505.549 1.06921 151.592 0.93954 +CD 3.77127 -0.508514 1.74455 0.0336036 0.0217587 0.0336036 3.65486 -0.45522 1.62814 0.0336036 0.022032 0.0336036 0 0 0 0 0 0 +LA 0.17304 +SE +ET CO +ID 4577 +TI 1760667401.159667491 +CC NStripHits 10 +PQ 13.491 +SQ 3 +CT 2.40609e-07 0.0693825 +TL 1 +TE 367.428 +CE 281.317 2.16571 367.428 1.33006 +CD 3.07283 -0.644628 -3.14452 0.0336036 0.0213507 0.0336036 2.4908 -0.791371 -2.56248 0.0336036 0.0202212 0.0336036 0 0 0 0 0 0 +LA 0.8361 +SE +ET PH +ID 4578 +TI 1760667401.159723043 +CC NStripHits 2 +PE 240.479 +PP -2.16545 -0.65277 1.62814 +PW 0 +SE +ID 4579 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 41.574598) +BD GR Veto +PQ 0.945091 +SE +ET PH +ID 4580 +TI 1760667401.159750223 +CC NStripHits 2 +PE 206.405 +PP -0.768578 0.121394 -3.26092 +PW 0 +SE +ET PH +ID 4581 +TI 1760667401.159767866 +CC NStripHits 3 +PE 114.989 +PP 2.14158 0.187444 -0.117953 +PW 0 +SE +ET CO +ID 4582 +TI 1760667401.159814357 +CC NStripHits 4 +PQ 0.788843 +SQ 2 +CT 0 1 +TL 1 +TE 132.568 +CE 149.865 0.95087 132.568 0.95109 +CD 0.162672 0.321057 -3.37733 0.0336036 0.0381281 0.0336036 0.395484 0.352934 -3.14452 0.0336036 0.0300731 0.0336036 0 0 0 0 0 0 +LA 0.330784 +SE +ET UN +ID 4583 +TI 1760667401.159842014 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.7645 +SE +ID 4584 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (37.483059)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 412.660296) (GR Hit: Detector ID 0 and Energy 101.101581) +BD GR Veto +PQ 37.4831 +SE +ID 4585 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 280.444914) +BD GR Veto +PQ 9.25848 +SE +ET PH +ID 4586 +TI 1760667401.159901618 +CC NStripHits 3 +PE 134.224 +PP 1.32673 0.288463 -4.07577 +PW 0 +SE +ET CO +ID 4587 +TI 1760667401.159922122 +CC NStripHits 5 +PQ 5.60448 +SQ 2 +CT 0.724998 0.275002 +TL 1 +TE 371.296 +CE 199.465 1.25182 371.296 1.0554 +CD 3.30564 -0.929672 0.929703 0.0336036 0.0197873 0.0336036 2.95642 -0.554101 1.16252 0.0336036 0.0216261 0.0336036 0 0 0 0 0 0 +LA 0.563216 +SE +ID 4588 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1425.045673)) (GR Hit: Detector ID 0 and Energy 177.184677) +BD GR Veto +PQ 1425.05 +SE +ID 4589 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 175.648420) (GR Hit: Detector ID 0 and Energy 43.808104) +BD GR Veto +PQ 4.55753 +SE +ET PH +ID 4590 +TI 1760667401.159985780 +CC NStripHits 2 +PE 212.873 +PP 1.09392 0.229896 -2.67889 +PW 0 +SE +ET UN +ID 4591 +TI 1760667401.160004138 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4592 +TI 1760667401.160015583 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 290.321 +SE +ET PH +ID 4593 +TI 1760667401.160041332 +CC NStripHits 2 +PE 217.338 +PP 0.395484 -0.972536 2.6758 +PW 0 +SE +ID 4594 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.100138) (Strip hit removed with energy 18.806353) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 22.425712) (GR Hit: Detector ID 0 and Energy 247.950989) (GR Hit: Detector ID 0 and Energy 29.103577) +BD GR Veto +PQ 2.43418 +SE +ET PH +ID 4595 +TI 1760667401.160097837 +CC NStripHits 2 +PE 466.073 +PP -2.04905 -0.871722 2.21017 +PW 0 +SE +ET UN +ID 4596 +TI 1760667401.160122632 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.7119 +SE +ET CO +ID 4597 +TI 1760667401.160141706 +CC NStripHits 7 +PQ 1.11506 +SQ 2 +CT 0 1 +TL 1 +TE 151.183 +CE 509.497 1.33705 151.183 1.12163 +CD 1.67595 -0.402691 -3.37733 0.0336036 0.0224251 0.0336036 0.744703 -0.891915 -3.84295 0.0336036 0.019817 0.0336036 0 0 0 0 0 0 +LA 1.15038 +SE +ID 4598 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 450.870556) +BD GR Veto +PQ 10.146 +SE +ET PH +ID 4599 +TI 1760667401.160191774 +CC NStripHits 3 +PE 311.999 +PP 2.95642 -0.839023 -3.14452 +PW 0 +SE +ET PH +ID 4600 +TI 1760667401.160212278 +CC NStripHits 2 +PE 123.355 +PP 3.30564 -0.0847031 -1.0492 +PW 0 +SE +ET CO +ID 4601 +TI 1760667401.160246372 +CC NStripHits 5 +PQ 20.1869 +SQ 2 +CT 0 1 +TL 1 +TE 43.994 +CE 336.144 0.961793 43.994 1.29129 +CD 2.25798 -1.03101 -2.67889 0.0336036 0.0205761 0.0336036 1.21033 -0.801712 -3.26092 0.0336036 0.0201834 0.0336036 0 0 0 0 0 0 +LA 1.22021 +SE +ET PH +ID 4602 +TI 1760667401.160285711 +CC NStripHits 3 +PE 661.293 +PP 3.88767 -1.08833 1.39533 +PW 0 +SE +ET PH +ID 4603 +TI 1760667401.160326957 +CC NStripHits 3 +PE 168.763 +PP -1.69983 -0.0133613 -2.9117 +PW 0 +SE +ET PH +ID 4604 +TI 1760667401.160353422 +CC NStripHits 2 +PE 180.924 +PP 4.3533 -1.0128 -1.86405 +PW 0 +SE +ID 4605 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.996158) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 134.774394) (GR Hit: Detector ID 0 and Energy 129.371682) (GR Hit: Detector ID 0 and Energy 389.390852) +BD GR Veto +PQ 2.51128 +SE +ET UN +ID 4606 +TI 1760667401.160407066 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9435 +SE +ET PH +ID 4607 +TI 1760667401.175731420 +CC NStripHits 3 +PE 146.839 +PP -1.00139 -0.374788 -3.72655 +PW 0 +SE +ET UN +ID 4608 +TI 1760667401.175806045 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4609 +TI 1760667401.175846576 +CC NStripHits 3 +PE 90.3781 +PP 1.21033 -0.396584 2.6758 +PW 0 +SE +ET PH +ID 4610 +TI 1760667401.175881624 +CC NStripHits 2 +PE 469.749 +PP 1.90877 -0.526548 -2.7953 +PW 0 +SE +ID 4611 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.869392) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 398.051582) (GR Hit: Detector ID 0 and Energy 266.594952) +BD GR Veto +PQ 0.164388 +SE +ET PH +ID 4612 +TI 1760667401.175963878 +CC NStripHits 2 +PE 233.522 +PP -1.35061 -0.841507 0.347672 +PW 0 +SE +ET UN +ID 4613 +TI 1760667401.175997257 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4614 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (147.898423)) (GR Hit: Detector ID 0 and Energy 71.397493) +BD GR Veto +PQ 147.898 +SE +ID 4615 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.560165) +BD GR Veto +PQ 1.29992 +SE +ET PH +ID 4616 +TI 1760667401.176061630 +CC NStripHits 2 +PE 327.523 +PP 1.21033 -0.230616 -4.07577 +PW 0 +SE +ID 4617 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 155.262432) +BD GR Veto +PQ 0.0839888 +SE +ET UN +ID 4618 +TI 1760667401.176127433 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 338.408 +SE +ET UN +ID 4619 +TI 1760667401.176191091 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.1645 +SE +ET PH +ID 4620 +TI 1760667401.176244258 +CC NStripHits 3 +PE 102.125 +PP -2.51467 0.314224 -0.816391 +PW 0 +SE +ID 4621 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.972764) +BD GR Veto +PQ 10.9994 +SE +ET PH +ID 4622 +TI 1760667401.176298379 +CC NStripHits 3 +PE 255.61 +PP 0.162672 0.15537 -3.49373 +PW 0 +SE +ID 4623 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (256.749140)) (GR Hit: Detector ID 0 and Energy 223.838477) +BD GR Veto +PQ 256.749 +SE +ET PH +ID 4624 +TI 1760667401.176350831 +CC NStripHits 2 +PE 62.3892 +PP -2.9803 -0.281357 1.39533 +PW 0 +SE +ET PH +ID 4625 +TI 1760667401.176385164 +CC NStripHits 2 +PE 30.7257 +PP 1.90877 -0.517697 0.929703 +PW 0 +SE +ET UN +ID 4626 +TI 1760667401.176418066 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 343.686 +SE +ID 4627 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 4628 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.438422) +QA StripPairing (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 132.381557) +BD GR Veto +PQ 13.472 +SE +ID 4629 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.203918) (Strip hit removed with energy 18.273484) +QA StripPairing (Best reduced chi square is not below 25 (37.771050)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.845021)) +BD GR Veto +PQ 37.7711 +SE +ET PH +ID 4630 +TI 1760667401.176596641 +CC NStripHits 3 +PE 143.708 +PP 2.14158 -1.11914 -4.30858 +PW 0 +SE +ID 4631 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 0.848991) +BD GR Veto +PQ +SE +ID 4632 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.350144) +QA StripPairing (GR Hit: Detector ID 0 and Energy 360.274937) +BD GR Veto +PQ 16.2483 +SE +ET PH +ID 4633 +TI 1760667401.176700592 +CC NStripHits 4 +PE 175.371 +PP 0.0462656 -1.07263 -0.816391 +PW 0 +SE +ET CO +ID 4634 +TI 1760667401.176743984 +CC NStripHits 4 +PQ 4.97617 +SQ 2 +CT 0.573856 0.426144 +TL 1 +TE 365.43 +CE 298.149 1.27483 365.43 1.00858 +CD 1.09392 -0.0373656 -4.30858 0.0336036 0.0247547 0.0336036 -1.93264 -0.747412 -3.02811 0.0336036 0.0205231 0.0336036 0 0 0 0 0 0 +LA 3.36212 +SE +ET UN +ID 4635 +TI 1760667401.176811695 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 11 +PE 656.154 +SE +ET PH +ID 4636 +TI 1760667401.176873445 +CC NStripHits 2 +PE 251.752 +PP 0.511891 -0.714246 -3.49373 +PW 0 +SE +ET UN +ID 4637 +TI 1760667401.176891326 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 4638 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 125.893238) +BD GR Veto +PQ 1.48681 +SE +ET PH +ID 4639 +TI 1760667401.176918745 +CC NStripHits 3 +PE 190.35 +PP -1.1178 -0.180003 -1.86405 +PW 0 +SE +ET PH +ID 4640 +TI 1760667401.176938772 +CC NStripHits 2 +PE 84.8973 +PP 0.162672 -0.100867 -1.86405 +PW 0 +SE +ET UN +ID 4641 +TI 1760667401.176956415 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 55.7272 +SE +ET UN +ID 4642 +TI 1760667401.176977157 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.259 +SE +ET PH +ID 4643 +TI 1760667401.176995038 +CC NStripHits 2 +PE 277.682 +PP -0.302953 0.296474 -3.26092 +PW 0 +SE +ET UN +ID 4644 +TI 1760667401.177011966 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 20.2906 +SE +ET PH +ID 4645 +TI 1760667401.177030086 +CC NStripHits 2 +PE 92.9831 +PP 0.0462656 -0.913579 1.62814 +PW 0 +SE +ET PH +ID 4646 +TI 1760667401.177047491 +CC NStripHits 2 +PE 63.3463 +PP 0.744703 0.267434 -2.56248 +PW 0 +SE +ET PH +ID 4647 +TI 1760667401.177064657 +CC NStripHits 2 +PE 40.3221 +PP 3.77127 0.335268 -0.932797 +PW 0 +SE +ET PH +ID 4648 +TI 1760667401.177083730 +CC NStripHits 2 +PE 200.004 +PP 0.511891 -0.553721 -0.932797 +PW 0 +SE +ET UN +ID 4649 +TI 1760667401.177101850 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4650 +TI 1760667401.177119970 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 211.036 +SE +ET PH +ID 4651 +TI 1760667401.177172183 +CC NStripHits 2 +PE 436.293 +PP -2.51467 0.324963 -3.02811 +PW 0 +SE +ET PH +ID 4652 +TI 1760667401.177192449 +CC NStripHits 4 +PE 662.949 +PP 2.14158 -0.02709 -1.16561 +PW 0 +SE +ET PH +ID 4653 +TI 1760667401.177219629 +CC NStripHits 2 +PE 181.115 +PP -1.1178 -0.0058106 -4.6578 +PW 0 +SE +ET UN +ID 4654 +TI 1760667401.177237272 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET UN +ID 4655 +TI 1760667401.177281618 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 10 +PE 663.915 +SE +ET PH +ID 4656 +TI 1760667401.177335500 +CC NStripHits 2 +PE 181.911 +PP -1.81623 -0.707581 0.114859 +PW 0 +SE +ID 4657 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.734401) +QA StripPairing (Best reduced chi square is not below 25 (45.512369)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 135.597398) (GR Hit: Detector ID 0 and Energy 53.066465) +BD GR Veto +PQ 45.5124 +SE +ID 4658 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.710948) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.747494) +BD GR Veto +PQ 1.07262 +SE +ET UN +ID 4659 +TI 1760667401.177395105 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 257.656 +SE +ID 4660 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (47.505628)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 80.686662)) (GR Hit: Detector ID 0 and Energy 173.065391) +BD GR Veto +PQ 47.5056 +SE +ET PH +ID 4661 +TI 1760667401.177454948 +CC NStripHits 3 +PE 208.63 +PP 3.42205 -0.785642 1.86095 +PW 0 +SE +ET PH +ID 4662 +TI 1760667401.177474975 +CC NStripHits 2 +PE 79.6435 +PP 4.00408 0.35071 -2.09686 +PW 0 +SE +ET PH +ID 4663 +TI 1760667401.177493572 +CC NStripHits 2 +PE 79.0364 +PP 1.67595 0.377719 0.464078 +PW 0 +SE +ID 4664 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 292.218768) +BD GR Veto +PQ 3.60667 +SE +ET CO +ID 4665 +TI 1760667401.177526950 +CC NStripHits 6 +PQ 0.815695 +SQ 2 +CT 0 1 +TL 1 +TE 85.2194 +CE 431.039 1.32811 85.2194 0.9354 +CD 0.861109 -0.879424 -4.19217 0.0336036 0.0198583 0.0336036 1.32673 -0.401535 -4.6578 0.0336036 0.0224327 0.0336036 0 0 0 0 0 0 +LA 0.813629 +SE +ET PH +ID 4666 +TI 1760667401.177561759 +CC NStripHits 3 +PE 152.216 +PP 3.65486 -0.0418412 -3.84295 +PW 0 +SE +ET UN +ID 4667 +TI 1760667401.177613258 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 444.898 +SE +ID 4668 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 253.984751) +BD GR Veto +PQ 3.02348 +SE +ID 4669 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (558.119961)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 366.744166)) (GR Hit: Detector ID 0 and Energy 171.124365) +BD GR Veto +PQ 558.12 +SE +ET PH +ID 4670 +TI 1760667401.177662372 +CC NStripHits 2 +PE 151.487 +PP 1.90877 0.283933 -0.816391 +PW 0 +SE +ET CO +ID 4671 +TI 1760667401.199493646 +CC NStripHits 4 +PQ 0.899985 +SQ 2 +CT 0 1 +TL 1 +TE 125.337 +CE 352.92 1.02561 125.337 0.939885 +CD 2.14158 -0.312388 -4.19217 0.0336036 0.0231217 0.0336036 0.162672 -0.0941889 -2.44608 0.0336036 0.0243057 0.0336036 0 0 0 0 0 0 +LA 2.64812 +SE +ET UN +ID 4672 +TI 1760667401.199600219 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 244.318 +SE +ET PH +ID 4673 +TI 1760667401.199685573 +CC NStripHits 2 +PE 177.169 +PP 1.44314 -1.12021 1.04611 +PW 0 +SE +ET PH +ID 4674 +TI 1760667401.199726819 +CC NStripHits 2 +PE 128.617 +PP 0.0462656 0.364612 1.74455 +PW 0 +SE +ET PH +ID 4675 +TI 1760667401.199761629 +CC NStripHits 4 +PE 398.213 +PP 1.09392 -0.215805 -3.61014 +PW 0 +SE +ID 4676 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.650949) (Strip hit removed with energy 16.223413) (Strip hit removed with energy 14.384587) +QA StripPairing (Best reduced chi square is not below 25 (27.515690)) +BD GR Veto +PQ 27.5157 +SE +ET PH +ID 4677 +TI 1760667401.199865579 +CC NStripHits 3 +PE 95.5838 +PP 2.02517 -0.403362 -3.49373 +PW 0 +SE +ET CO +ID 4678 +TI 1760667401.199909687 +CC NStripHits 6 +PQ 6.59248 +SQ 2 +CT 0 1 +TL 1 +TE 47.6496 +CE 442.524 1.12635 47.6496 1.80602 +CD 0.977516 -0.652781 1.16252 0.0336036 0.0212871 0.0336036 1.09392 -0.848357 0.114859 0.0336036 0.0199927 0.0336036 0 0 0 0 0 0 +LA 1.0721 +SE +ET UN +ID 4679 +TI 1760667401.199993610 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 72.4863 +SE +ET UN +ID 4680 +TI 1760667401.200032711 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 662.907 +SE +ET PH +ID 4681 +TI 1760667401.200129508 +CC NStripHits 2 +PE 124.252 +PP 3.65486 -0.53881 1.27892 +PW 0 +SE +ET CO +ID 4682 +TI 1760667401.200170040 +CC NStripHits 5 +PQ 21.0693 +SQ 2 +CT 0 1 +TL 1 +TE 41.1087 +CE 117.324 1.03403 41.1087 1.29392 +CD 3.30564 -0.594596 1.51173 0.0336036 0.0214921 0.0336036 3.53845 0.00338241 1.04611 0.0336036 0.0250445 0.0336036 0 0 0 0 0 0 +LA 0.792831 +SE +ET UN +ID 4683 +TI 1760667401.200237035 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.0633 +SE +ET PH +ID 4684 +TI 1760667401.200275182 +CC NStripHits 2 +PE 150.287 +PP -0.768578 0.362941 2.55939 +PW 0 +SE +ET PH +ID 4685 +TI 1760667401.200314521 +CC NStripHits 3 +PE 125.538 +PP -2.74748 -0.165145 -1.39842 +PW 0 +SE +ET PH +ID 4686 +TI 1760667401.200369596 +CC NStripHits 4 +PE 217.168 +PP -2.28186 -0.566592 -4.07577 +PW 0 +SE +ET PH +ID 4687 +TI 1760667401.200414896 +CC NStripHits 5 +PE 497.089 +PP 1.32673 -0.159834 -3.49373 +PW 0 +SE +ET PH +ID 4688 +TI 1760667401.200474262 +CC NStripHits 4 +PE 437.651 +PP 3.42205 0.0621908 2.32658 +PW 0 +SE +ET PH +ID 4689 +TI 1760667401.200522661 +CC NStripHits 3 +PE 192.081 +PP 1.09392 0.194064 -1.28202 +PW 0 +SE +ET PH +ID 4690 +TI 1760667401.200562000 +CC NStripHits 4 +PE 420.995 +PP 0.279078 0.361089 -1.16561 +PW 0 +SE +ET PH +ID 4691 +TI 1760667401.200605869 +CC NStripHits 4 +PE 160.959 +PP -0.652172 0.20505 2.44298 +PW 0 +SE +ID 4692 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.280445) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.843989)) (GR Hit: Detector ID 0 and Energy 157.152876) +BD GR Veto +PQ 6.00691 +SE +ET CO +ID 4693 +TI 1760667401.200725793 +CC NStripHits 6 +PQ 11.1694 +SQ 2 +CT 0.563579 0.436421 +TL 1 +TE 350.808 +CE 301.153 1.50362 350.808 1.06723 +CD -2.39827 -0.446547 0.580484 0.0336036 0.0221024 0.0336036 -2.16545 0.0949625 0.464078 0.0336036 0.0261734 0.0336036 0 0 0 0 0 0 +LA 0.600823 +SE +ET PH +ID 4694 +TI 1760667401.200792551 +CC NStripHits 2 +PE 166.181 +PP -2.04905 0.19509 1.27892 +PW 0 +SE +ID 4695 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 133.862241) +BD GR Veto +PQ 6.38768 +SE +ET CO +ID 4696 +TI 1760667401.200844049 +CC NStripHits 4 +PQ 2.08634 +SQ 2 +CT 0 1 +TL 1 +TE 42.2817 +CE 170.471 0.93699 42.2817 0.913882 +CD -1.00139 -0.994538 -1.98045 0.0336036 0.0200659 0.0336036 -0.768578 -0.142796 -1.39842 0.0336036 0.0239225 0.0336036 0 0 0 0 0 0 +LA 1.05756 +SE +ID 4697 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.109723) +BD GR Veto +PQ 1.37621 +SE +ET PH +ID 4698 +TI 1760667401.200883626 +CC NStripHits 2 +PE 127.259 +PP -0.186547 -0.550212 2.32658 +PW 0 +SE +ET PH +ID 4699 +TI 1760667401.200904846 +CC NStripHits 2 +PE 471.343 +PP 1.32673 0.362353 -4.42498 +PW 0 +SE +ID 4700 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (413.823645)) (GR Hit: Detector ID 0 and Energy 194.449384) +BD GR Veto +PQ 413.824 +SE +ET CO +ID 4701 +TI 1760667401.200933933 +CC NStripHits 6 +PQ 1.99358 +SQ 2 +CT 0.713899 0.286101 +TL 1 +TE 382.837 +CE 199.073 0.954424 382.837 1.37378 +CD 0.861109 -0.946968 -1.98045 0.0336036 0.0198196 0.0336036 -0.302953 -0.319322 -2.56248 0.0336036 0.0230768 0.0336036 0 0 0 0 0 0 +LA 1.4449 +SE +ID 4702 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 140.080052) +BD GR Veto +PQ 0.0212099 +SE +ID 4703 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (324.913197)) (GR Hit: Detector ID 0 and Energy 361.107002) +BD GR Veto +PQ 324.913 +SE +ET PH +ID 4704 +TI 1760667401.200992822 +CC NStripHits 2 +PE 450.674 +PP 3.18923 0.0717202 2.21017 +PW 0 +SE +ET PH +ID 4705 +TI 1760667401.201016426 +CC NStripHits 2 +PE 89.6731 +PP -0.419359 -1.13413 0.347672 +PW 0 +SE +ET PH +ID 4706 +TI 1760667401.201036691 +CC NStripHits 2 +PE 154.691 +PP 0.0462656 0.309687 -3.49373 +PW 0 +SE +ID 4707 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (39.253100)) (GR Hit: Detector ID 0 and Energy 183.409678) +BD GR Veto +PQ 39.2531 +SE +ET PH +ID 4708 +TI 1760667401.201086044 +CC NStripHits 3 +PE 663.444 +PP 0.0462656 -0.406702 1.74455 +PW 0 +SE +ET UN +ID 4709 +TI 1760667401.201112031 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 79.6243 +SE +ID 4710 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 21.704874) (GR Hit: Detector ID 0 and Energy 459.565317) +BD GR Veto +PQ 24.6301 +SE +ET PH +ID 4711 +TI 1760667401.201161623 +CC NStripHits 6 +PE 497.595 +PP -1.93264 0.0654388 -4.19217 +PW 0 +SE +ET PH +ID 4712 +TI 1760667401.201194524 +CC NStripHits 2 +PE 60.4503 +PP -1.58342 -0.567232 -2.56248 +PW 0 +SE +ET PH +ID 4713 +TI 1760667401.201215028 +CC NStripHits 2 +PE 655.63 +PP 2.4908 -0.401443 2.32658 +PW 0 +SE +ID 4714 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.840273) (Strip hit removed with energy 6.194324) +QA StripPairing (GR Hit: Detector ID 0 and Energy 98.536305) +BD GR Veto +PQ 6.36049 +SE +ID 4715 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 4716 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.556021) +BD GR Veto +PQ 6.41146 +SE +ID 4717 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.623980) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 128.464362) +BD GR Veto +PQ 0.068918 +SE +ET UN +ID 4718 +TI 1760667401.201339244 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 4719 +TI 1760667401.201349973 +CC NStripHits 7 +PQ 49.5485 +SQ 2 +CT 0.698204 0.301796 +TL 1 +TE 411.703 +CE 246.178 1.78366 411.703 1.53718 +CD -0.535766 -1.1638 -0.467172 0.0336036 0.0229137 0.0336036 -1.2342 -0.43077 0.347672 0.0336036 0.0222527 0.0336036 0 0 0 0 0 0 +LA 1.29966 +SE +ET PH +ID 4720 +TI 1760667401.201407909 +CC NStripHits 2 +PE 74.8547 +PP 3.18923 -0.462336 -1.39842 +PW 0 +SE +ET PH +ID 4721 +TI 1760667401.201433420 +CC NStripHits 2 +PE 33.6998 +PP -1.93264 -0.388814 -0.350766 +PW 0 +SE +ET UN +ID 4722 +TI 1760667401.201451778 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4723 +TI 1760667401.201469898 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9429 +SE +ET PH +ID 4724 +TI 1760667401.201490640 +CC NStripHits 2 +PE 57.0424 +PP 1.55955 0.104747 -1.86405 +PW 0 +SE +ID 4725 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.817367) (Strip hit removed with energy 16.460201) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 25.133860)) +BD GR Veto +PQ 17.9265 +SE +ET PH +ID 4726 +TI 1760667401.201535463 +CC NStripHits 2 +PE 162.864 +PP -0.884984 -0.0908282 -1.63123 +PW 0 +SE +ET PH +ID 4727 +TI 1760667401.201553583 +CC NStripHits 2 +PE 410.237 +PP -0.0701406 0.360106 -2.44608 +PW 0 +SE +ID 4728 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.768565) +BD GR Veto +PQ 0.5565 +SE +ET PH +ID 4729 +TI 1760667401.201580762 +CC NStripHits 3 +PE 222.386 +PP 1.32673 0.356813 1.97736 +PW 0 +SE +ET CO +ID 4730 +TI 1760667401.201601743 +CC NStripHits 4 +PQ 2.86071 +SQ 2 +CT 0.506229 0.493771 +TL 1 +TE 332.155 +CE 327.352 1.00005 332.155 0.947626 +CD 1.44314 -0.741755 -4.07577 0.0336036 0.0205701 0.0336036 0.162672 -0.421649 -3.49373 0.0336036 0.0223189 0.0336036 0 0 0 0 0 0 +LA 1.44251 +SE +ET PH +ID 4731 +TI 1760667401.201634407 +CC NStripHits 2 +PE 186.296 +PP 1.67595 -0.195652 -2.56248 +PW 0 +SE +ET CO +ID 4732 +TI 1760667401.201656818 +CC NStripHits 5 +PQ 1.60561 +SQ 2 +CT 0 1 +TL 1 +TE 33.5276 +CE 944.8 2.12376 33.5276 0.929469 +CD 3.07283 -0.617091 -2.56248 0.0336036 0.0214228 0.0336036 2.02517 -0.683741 -2.7953 0.0336036 0.0211003 0.0336036 0 0 0 0 0 0 +LA 1.07529 +SE +ID 4733 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.871292) (Strip hit removed with energy 19.582915) (Strip hit removed with energy 9.286132) +QA StripPairing (GR Hit: Detector ID 0 and Energy 194.095633) +BD GR Veto +PQ 7.41487 +SE +ID 4734 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (85.095501)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 76.231621)) (GR Hit: Detector ID 0 and Energy 190.945733) +BD GR Veto +PQ 85.0955 +SE +ET PH +ID 4735 +TI 1760667401.219052314 +CC NStripHits 5 +PE 663.555 +PP -1.81623 -0.186287 0.696891 +PW 0 +SE +ET PH +ID 4736 +TI 1760667401.219110965 +CC NStripHits 3 +PE 349.055 +PP 2.72361 -0.131798 1.97736 +PW 0 +SE +ET UN +ID 4737 +TI 1760667401.219137430 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 651.286 +SE +ET UN +ID 4738 +TI 1760667401.219173669 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.8858 +SE +ET PH +ID 4739 +TI 1760667401.219190835 +CC NStripHits 2 +PE 408.663 +PP -0.768578 0.142256 1.97736 +PW 0 +SE +ID 4740 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.260278) +QA StripPairing (GR Hit: Detector ID 0 and Energy 381.987474) +BD GR Veto +PQ 1.15775 +SE +ET UN +ID 4741 +TI 1760667401.219225168 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.7617 +SE +ET UN +ID 4742 +TI 1760667401.219240665 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 7 +PE 147.289 +SE +ET PH +ID 4743 +TI 1760667401.219278335 +CC NStripHits 2 +PE 662.577 +PP 0.628297 -0.496777 -1.16561 +PW 0 +SE +ET PH +ID 4744 +TI 1760667401.219300270 +CC NStripHits 4 +PE 479.585 +PP -2.51467 -0.151005 2.09377 +PW 0 +SE +ET UN +ID 4745 +TI 1760667401.219325065 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 60.6856 +SE +ET PH +ID 4746 +TI 1760667401.219383001 +CC NStripHits 2 +PE 49.8524 +PP 0.511891 -0.864131 1.62814 +PW 0 +SE +ET PH +ID 4747 +TI 1760667401.219402074 +CC NStripHits 4 +PE 267.766 +PP 2.37439 -0.369631 -3.37733 +PW 0 +SE +ET PH +ID 4748 +TI 1760667401.219424724 +CC NStripHits 2 +PE 50.6955 +PP 1.79236 -0.46693 -2.21327 +PW 0 +SE +ID 4749 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.595403) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 55.741919) +BD GR Veto +PQ 0.0606354 +SE +ID 4750 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.327248) +BD GR Veto +PQ +SE +ET PH +ID 4751 +TI 1760667401.219485282 +CC NStripHits 3 +PE 225.011 +PP -0.768578 -0.231269 -3.84295 +PW 0 +SE +ET PH +ID 4752 +TI 1760667401.219506025 +CC NStripHits 2 +PE 213.642 +PP -2.16545 -0.0932252 -0.234359 +PW 0 +SE +ET PH +ID 4753 +TI 1760667401.219524145 +CC NStripHits 3 +PE 425.461 +PP 1.79236 -0.5246 -1.74764 +PW 0 +SE +ET UN +ID 4754 +TI 1760667401.219549417 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 64.3147 +SE +ET UN +ID 4755 +TI 1760667401.219581365 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 482.891 +SE +ET PH +ID 4756 +TI 1760667401.219610214 +CC NStripHits 2 +PE 163.231 +PP 0.511891 -0.364859 1.86095 +PW 0 +SE +ET PH +ID 4757 +TI 1760667401.219628572 +CC NStripHits 3 +PE 167.294 +PP 1.79236 0.350354 0.929703 +PW 0 +SE +ET PH +ID 4758 +TI 1760667401.219649076 +CC NStripHits 2 +PE 92.3207 +PP 2.25798 -0.458508 -3.14452 +PW 0 +SE +ET PH +ID 4759 +TI 1760667401.219666957 +CC NStripHits 3 +PE 231.799 +PP 1.90877 0.05232 2.21017 +PW 0 +SE +ID 4760 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.361365) (Strip hit removed with energy 16.858619) +QA StripPairing (Best reduced chi square is not below 25 (47.009742)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 49.499068) +BD GR Veto +PQ 47.0097 +SE +ET CO +ID 4761 +TI 1760667401.219725131 +CC NStripHits 4 +PQ 3.09808 +SQ 2 +CT 0 1 +TL 1 +TE 149.012 +CE 245.298 0.924227 149.012 1.38465 +CD 3.88767 -0.109645 0.696891 0.0336036 0.0242057 0.0336036 3.77127 -0.163724 0.580484 0.0336036 0.0237311 0.0336036 0 0 0 0 0 0 +LA 0.173275 +SE +ET PH +ID 4762 +TI 1760667401.219749450 +CC NStripHits 4 +PE 663.824 +PP 0.395484 -0.19545 -3.26092 +PW 0 +SE +ET PH +ID 4763 +TI 1760667401.219773769 +CC NStripHits 3 +PE 131.653 +PP 3.30564 0.0159822 -1.16561 +PW 0 +SE +ID 4764 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (856.790572)) (GR Hit: Detector ID 0 and Energy 1092.147390) +BD GR Veto +PQ 856.791 +SE +ET PH +ID 4765 +TI 1760667401.219809532 +CC NStripHits 3 +PE 132.143 +PP -2.28186 -1.08742 0.580484 +PW 0 +SE +ET PH +ID 4766 +TI 1760667401.219830036 +CC NStripHits 2 +PE 238.425 +PP -0.302953 -0.811462 -4.42498 +PW 0 +SE +ET PH +ID 4767 +TI 1760667401.219846725 +CC NStripHits 3 +PE 382.019 +PP -1.69983 -0.118114 -3.49373 +PW 0 +SE +ET UN +ID 4768 +TI 1760667401.219867229 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 4769 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 188.823124) +BD GR Veto +PQ 1.69076 +SE +ID 4770 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.966735) +BD GR Veto +PQ +SE +ID 4771 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.171980) (Strip hit removed with energy 14.348422) +QA StripPairing (GR Hit: Detector ID 0 and Energy 160.677324) +BD GR Veto +PQ 1.70468 +SE +ET PH +ID 4772 +TI 1760667401.219926357 +CC NStripHits 4 +PE 429.1 +PP 2.72361 0.27021 -4.54139 +PW 0 +SE +ET PH +ID 4773 +TI 1760667401.219952344 +CC NStripHits 2 +PE 77.249 +PP 1.67595 0.195415 -4.54139 +PW 0 +SE +ET PH +ID 4774 +TI 1760667401.219969987 +CC NStripHits 3 +PE 104.977 +PP 3.77127 0.332454 -1.28202 +PW 0 +SE +ID 4775 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1007.801185)) (GR Hit: Detector ID 0 and Energy 261.722773) +BD GR Veto +PQ 1007.8 +SE +ET PH +ID 4776 +TI 1760667401.219998121 +CC NStripHits 2 +PE 180.432 +PP 0.628297 -0.420582 1.74455 +PW 0 +SE +ET PH +ID 4777 +TI 1760667401.220015525 +CC NStripHits 2 +PE 189.532 +PP 3.42205 -0.000710292 -3.49373 +PW 0 +SE +ET UN +ID 4778 +TI 1760667401.220032930 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 200.591 +SE +ET UN +ID 4779 +TI 1760667401.220062494 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 666.566 +SE +ET PH +ID 4780 +TI 1760667401.220136404 +CC NStripHits 5 +PE 661.984 +PP 3.07283 -0.837359 -2.21327 +PW 0 +SE +ET PH +ID 4781 +TI 1760667401.220163583 +CC NStripHits 3 +PE 139.324 +PP -0.535766 -0.108223 1.16252 +PW 0 +SE +ET CO +ID 4782 +TI 1760667401.220197916 +CC NStripHits 4 +PQ 1.15074 +SQ 2 +CT 0.628445 0.371555 +TL 1 +TE 385.975 +CE 275.944 0.978844 385.975 0.970331 +CD -1.46702 0.149442 -1.51483 0.0336036 0.0271872 0.0336036 -1.2342 -0.0336595 0.464078 0.0336036 0.0247778 0.0336036 0 0 0 0 0 0 +LA 2.00095 +SE +ET PH +ID 4783 +TI 1760667401.220242500 +CC NStripHits 3 +PE 165.717 +PP 0.744703 0.356648 1.74455 +PW 0 +SE +ET PH +ID 4784 +TI 1760667401.220262289 +CC NStripHits 2 +PE 240.579 +PP 0.0462656 -1.05284 0.464078 +PW 0 +SE +ET CO +ID 4785 +TI 1760667401.220282077 +CC NStripHits 4 +PQ 1.54839 +SQ 2 +CT 0 1 +TL 1 +TE 137.606 +CE 163.332 0.931627 137.606 0.918104 +CD 0.744703 -0.988416 2.44298 0.0336036 0.0200245 0.0336036 1.32673 -0.936643 2.32658 0.0336036 0.0197943 0.0336036 0 0 0 0 0 0 +LA 0.595806 +SE +ET PH +ID 4786 +TI 1760667401.220310449 +CC NStripHits 2 +PE 111.66 +PP -1.69983 0.23506 -1.98045 +PW 0 +SE +ID 4787 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 103.991867) +BD GR Veto +PQ 0.00614021 +SE +ET CO +ID 4788 +TI 1760667401.220337152 +CC NStripHits 5 +PQ 15.7653 +SQ 2 +CT 0.777999 0.222001 +TL 1 +TE 466.067 +CE 203.341 1.29449 466.067 1.34318 +CD 0.861109 -0.815645 1.39533 0.0336036 0.0201016 0.0336036 0.744703 -0.753486 1.16252 0.0336036 0.0204596 0.0336036 0 0 0 0 0 0 +LA 0.267609 +SE +ET CO +ID 4789 +TI 1760667401.220364809 +CC NStripHits 4 +PQ 1.34845 +SQ 2 +CT 0 1 +TL 1 +TE 162.744 +CE 351.244 0.983553 162.744 0.930328 +CD -0.768578 0.183047 -2.32967 0.0336036 0.0280519 0.0336036 -1.1178 0.350434 -3.49373 0.0336036 0.031091 0.0336036 0 0 0 0 0 0 +LA 1.22679 +SE +ID 4790 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.369529) (Strip hit removed with energy 3.293462) +BD GR Veto +PQ +SE +ET PH +ID 4791 +TI 1760667401.220408678 +CC NStripHits 3 +PE 263.766 +PP 4.3533 -0.771814 0.231266 +PW 0 +SE +ET CO +ID 4792 +TI 1760667401.220426559 +CC NStripHits 8 +PQ 14.6044 +SQ 3 +CT 0.0183109 0.590611 +TL 1 +TE 482.661 +CE 181.707 2.09906 482.661 1.76434 +CD -1.00139 -0.898244 -1.16561 0.0336036 0.0198001 0.0336036 -0.768578 0.148516 -0.932797 0.0336036 0.0271667 0.0336036 0 0 0 0 0 0 +LA 0.451872 +SE +ID 4793 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.526300) (Strip hit removed with energy 6.857522) +QA StripPairing (GR Hit: Detector ID 0 and Energy 300.644097) +BD GR Veto +PQ 10.8389 +SE +ET PH +ID 4794 +TI 1760667401.220509767 +CC NStripHits 2 +PE 106.056 +PP -0.535766 -0.363965 1.86095 +PW 0 +SE +ID 4795 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 110.913894) +BD GR Veto +PQ 0.0500361 +SE +ET CO +ID 4796 +TI 1760667401.220545053 +CC NStripHits 7 +PQ 2.03315 +SQ 3 +CT 0.000284628 1.94828 +TL 1 +TE 459.054 +CE 196.545 1.61516 459.054 1.16369 +CD 0.279078 -0.5695 -2.09686 0.0336036 0.0216121 0.0336036 0.511891 0.372647 -1.63123 0.0336036 0.0195152 0.0336036 0 0 0 0 0 0 +LA 1.07641 +SE +ET PH +ID 4797 +TI 1760667401.220593452 +CC NStripHits 3 +PE 208.659 +PP 1.21033 -1.13531 -1.16561 +PW 0 +SE +ET PH +ID 4798 +TI 1760667401.220613956 +CC NStripHits 2 +PE 131.154 +PP 0.279078 0.230099 -2.9117 +PW 0 +SE +ID 4799 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (281.106706)) (GR Hit: Detector ID 0 and Energy 662.370210) +BD GR Veto +PQ 281.107 +SE +ET PH +ID 4800 +TI 1760667401.241494417 +CC NStripHits 3 +PE 341.173 +PP 2.84002 -1.02089 -3.72655 +PW 0 +SE +ET PH +ID 4801 +TI 1760667401.241517305 +CC NStripHits 3 +PE 300.969 +PP -2.28186 0.213347 -0.467172 +PW 0 +SE +ET PH +ID 4802 +TI 1760667401.241537570 +CC NStripHits 3 +PE 467.097 +PP 0.511891 0.227324 1.86095 +PW 0 +SE +ET UN +ID 4803 +TI 1760667401.241559028 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.802 +SE +ID 4804 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 63.327866) +BD GR Veto +PQ 0.24826 +SE +ID 4805 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 249.273761) +BD GR Veto +PQ 0.0225664 +SE +ET PH +ID 4806 +TI 1760667401.241596460 +CC NStripHits 4 +PE 442.333 +PP 0.861109 -0.014607 -3.02811 +PW 0 +SE +ET PH +ID 4807 +TI 1760667401.241619348 +CC NStripHits 2 +PE 199.155 +PP -2.74748 -1.03586 -0.932797 +PW 0 +SE +ID 4808 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (290.493616)) (GR Hit: Detector ID 0 and Energy 653.717436) +BD GR Veto +PQ 290.494 +SE +ET PH +ID 4809 +TI 1760667401.241667509 +CC NStripHits 2 +PE 154.231 +PP -0.884984 -0.231537 -3.49373 +PW 0 +SE +ID 4810 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.738638) +QA StripPairing (Best reduced chi square is not below 25 (27.395073)) (GR Hit: Detector ID 0 and Energy 141.140429) +BD GR Veto +PQ 27.3951 +SE +ET UN +ID 4811 +TI 1760667401.241735458 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 465.702 +SE +ET UN +ID 4812 +TI 1760667401.241798162 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 4813 +TI 1760667401.241818428 +CC NStripHits 2 +PE 54.7279 +PP -1.1178 -0.335477 -1.51483 +PW 0 +SE +ET UN +ID 4814 +TI 1760667401.241851568 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.1364 +SE +ID 4815 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 89.993509) (GR Hit: Detector ID 0 and Energy 120.290407) +BD GR Veto +PQ 4.06563 +SE +ET PH +ID 4816 +TI 1760667401.241916418 +CC NStripHits 3 +PE 663.456 +PP 0.395484 -0.937344 -1.51483 +PW 0 +SE +ET UN +ID 4817 +TI 1760667401.241962909 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 387.354 +SE +ET CO +ID 4818 +TI 1760667401.242000579 +CC NStripHits 4 +PQ 1.72004 +SQ 2 +CT 0.725363 0.274637 +TL 1 +TE 424.256 +CE 235.54 0.962508 424.256 0.990767 +CD 0.162672 -0.56205 0.231266 0.0336036 0.0216205 0.0336036 0.279078 -0.426292 -0.699984 0.0336036 0.022288 0.0336036 0 0 0 0 0 0 +LA 0.948265 +SE +ET PH +ID 4819 +TI 1760667401.242064476 +CC NStripHits 3 +PE 124.245 +PP -1.2342 0.270005 -4.30858 +PW 0 +SE +ID 4820 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.066577) +BD GR Veto +PQ 1.07667 +SE +ET PH +ID 4821 +TI 1760667401.242131710 +CC NStripHits 2 +PE 152.333 +PP -1.00139 0.370529 -1.98045 +PW 0 +SE +ET PH +ID 4822 +TI 1760667401.242165327 +CC NStripHits 3 +PE 233.589 +PP 2.6072 -0.375094 2.44298 +PW 0 +SE +ET PH +ID 4823 +TI 1760667401.242221117 +CC NStripHits 2 +PE 58.4254 +PP -1.1178 0.341142 2.21017 +PW 0 +SE +ID 4824 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1405.463580)) (GR Hit: Detector ID 0 and Energy 164.948329) +BD GR Veto +PQ 1405.46 +SE +ID 4825 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.723399) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.350062) +BD GR Veto +PQ 1.50433 +SE +ID 4826 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.932062) +QA StripPairing (GR Hit: Detector ID 0 and Energy 453.224755) +BD GR Veto +PQ 11.8923 +SE +ID 4827 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (121.990816)) (GR Hit: Detector ID 0 and Energy 141.425340) +BD GR Veto +PQ 121.991 +SE +ET PH +ID 4828 +TI 1760667401.242336511 +CC NStripHits 2 +PE 302.126 +PP 2.14158 0.280894 -3.02811 +PW 0 +SE +ET CO +ID 4829 +TI 1760667401.242374181 +CC NStripHits 4 +PQ 0.269323 +SQ 2 +CT 0 1 +TL 1 +TE 114.345 +CE 129.371 0.928528 114.345 0.951292 +CD 3.42205 -1.07905 -1.86405 0.0336036 0.0235626 0.0336036 3.88767 0.315382 -3.14452 0.0336036 0.0385799 0.0336036 0 0 0 0 0 0 +LA 1.94958 +SE +ET PH +ID 4830 +TI 1760667401.242445707 +CC NStripHits 2 +PE 224.13 +PP -0.652172 0.0194628 -3.72655 +PW 0 +SE +ET PH +ID 4831 +TI 1760667401.242483377 +CC NStripHits 2 +PE 119.888 +PP 2.84002 0.0599206 0.929703 +PW 0 +SE +ET PH +ID 4832 +TI 1760667401.242525339 +CC NStripHits 2 +PE 63.1802 +PP -0.186547 -0.307643 -1.63123 +PW 0 +SE +ET PH +ID 4833 +TI 1760667401.242558717 +CC NStripHits 3 +PE 408.86 +PP 2.14158 0.180593 -3.72655 +PW 0 +SE +ID 4834 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.386878) (Strip hit removed with energy 1.664291) +BD GR Veto +PQ 20.5494 +SE +ET CO +ID 4835 +TI 1760667401.242660522 +CC NStripHits 4 +PQ 14.1084 +SQ 2 +CT 0 1 +TL 1 +TE 65.0033 +CE 107.112 0.93315 65.0033 1.28851 +CD 3.18923 -1.11476 0.929703 0.0336036 0.0290294 0.0336036 2.72361 -0.738209 0.347672 0.0336036 0.0205924 0.0336036 0 0 0 0 0 0 +LA 0.835076 +SE +ET UN +ID 4836 +TI 1760667401.242727518 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.0791 +SE +ET UN +ID 4837 +TI 1760667401.242760181 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 658.761 +SE +ET PH +ID 4838 +TI 1760667401.242816925 +CC NStripHits 2 +PE 101.357 +PP -1.81623 -1.02572 0.347672 +PW 0 +SE +ID 4839 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 404.210700) +BD GR Veto +PQ 2.82011 +SE +ID 4840 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (382.378159)) (GR Hit: Detector ID 0 and Energy 92.540413) +BD GR Veto +PQ 382.378 +SE +ET PH +ID 4841 +TI 1760667401.242880105 +CC NStripHits 2 +PE 87.9303 +PP 0.977516 -0.0347677 -4.54139 +PW 0 +SE +ID 4842 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.258737) +BD GR Veto +PQ 3.9593 +SE +ET UN +ID 4843 +TI 1760667401.242905378 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 154.246 +SE +ET UN +ID 4844 +TI 1760667401.242933273 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 224.826 +SE +ET PH +ID 4845 +TI 1760667401.242979049 +CC NStripHits 2 +PE 120.815 +PP 0.395484 0.368252 1.74455 +PW 0 +SE +ET PH +ID 4846 +TI 1760667401.242997169 +CC NStripHits 2 +PE 212.415 +PP -2.28186 -1.09044 -0.583578 +PW 0 +SE +ID 4847 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 245.454618) +BD GR Veto +PQ 0.789457 +SE +ET UN +ID 4848 +TI 1760667401.243022680 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.1029 +SE +ET PH +ID 4849 +TI 1760667401.243040323 +CC NStripHits 3 +PE 202.101 +PP -1.35061 -0.212936 1.16252 +PW 0 +SE +ID 4850 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (195.983624)) (GR Hit: Detector ID 0 and Energy 661.443345) +BD GR Veto +PQ 195.984 +SE +ET PH +ID 4851 +TI 1760667401.243068456 +CC NStripHits 2 +PE 138.066 +PP 0.628297 -0.379741 -3.37733 +PW 0 +SE +ET PH +ID 4852 +TI 1760667401.243085861 +CC NStripHits 3 +PE 182.517 +PP -2.74748 0.198785 1.86095 +PW 0 +SE +ET PH +ID 4853 +TI 1760667401.243106126 +CC NStripHits 3 +PE 161.101 +PP 3.88767 -0.258608 -3.49373 +PW 0 +SE +ET CO +ID 4854 +TI 1760667401.243129014 +CC NStripHits 4 +PQ 2.22524 +SQ 2 +CT 0 1 +TL 1 +TE 83.702 +CE 305.961 0.921409 83.702 0.932627 +CD 0.861109 -0.491109 2.09377 0.0336036 0.0218555 0.0336036 -0.535766 -0.0008116 -4.6578 0.0336036 0.0249978 0.0336036 0 0 0 0 0 0 +LA 6.91197 +SE +ET PH +ID 4855 +TI 1760667401.243157863 +CC NStripHits 3 +PE 295.983 +PP 3.53845 0.157944 -4.6578 +PW 0 +SE +ID 4856 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (39.845412)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 21.010024)) +BD GR Veto +PQ 39.8454 +SE +ET PH +ID 4857 +TI 1760667401.243193387 +CC NStripHits 4 +PE 308.357 +PP 4.00408 -0.705741 0.929703 +PW 0 +SE +ID 4858 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 4859 +TI 1760667401.243225336 +CC NStripHits 5 +PQ 1.76975 +SQ 2 +CT 0 1 +TL 1 +TE 139.289 +CE 353.098 1.20226 139.289 0.948323 +CD 1.55955 -1.00387 -1.0492 0.0336036 0.0201504 0.0336036 1.32673 -0.794479 0.347672 0.0336036 0.0202122 0.0336036 0 0 0 0 0 0 +LA 1.43154 +SE +ET PH +ID 4860 +TI 1760667401.243257284 +CC NStripHits 3 +PE 428.248 +PP -2.28186 0.248805 -1.86405 +PW 0 +SE +ET CO +ID 4861 +TI 1760667401.243280649 +CC NStripHits 5 +PQ 3.26296 +SQ 2 +CT 0 1 +TL 1 +TE 59.1594 +CE 194.436 0.919573 59.1594 1.20679 +CD -1.00139 -0.089601 2.32658 0.0336036 0.0243473 0.0336036 -1.2342 0.295725 2.44298 0.0336036 0.0383866 0.0336036 0 0 0 0 0 0 +LA 0.465001 +SE +ET PH +ID 4862 +TI 1760667401.243317842 +CC NStripHits 2 +PE 61.4764 +PP 3.88767 -0.13243 -2.9117 +PW 0 +SE +ET PH +ID 4863 +TI 1760667401.266322135 +CC NStripHits 4 +PE 288.508 +PP 0.744703 -0.444756 -3.61014 +PW 0 +SE +ET PH +ID 4864 +TI 1760667401.266376972 +CC NStripHits 2 +PE 57.6176 +PP 3.77127 -1.13452 -3.61014 +PW 0 +SE +ID 4865 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 202.535542) +BD GR Veto +PQ 2.79948 +SE +ET UN +ID 4866 +TI 1760667401.266404628 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 341.345 +SE +ET CO +ID 4867 +TI 1760667401.266453266 +CC NStripHits 8 +PQ 26.6325 +SQ 4 +CT 0.117539 0.265381 +TL 1 +TE 206.524 +CE 462.074 1.82332 206.524 1.33527 +CD -1.69983 -0.717938 -2.9117 0.0336036 0.0207243 0.0336036 -2.16545 -0.63632 -3.02811 0.0336036 0.021396 0.0336036 0 0 0 0 0 0 +LA 0.486842 +SE +ET PH +ID 4868 +TI 1760667401.266515254 +CC NStripHits 2 +PE 206.981 +PP 3.65486 0.134555 -0.932797 +PW 0 +SE +ID 4869 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 118.531747) +BD GR Veto +PQ 2.5751 +SE +ID 4870 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.397812) +BD GR Veto +PQ +SE +ET UN +ID 4871 +TI 1760667401.266544818 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 4872 +TI 1760667401.266556501 +CC NStripHits 6 +PQ 9.92327 +SQ 3 +CT 0.0294898 0.685513 +TL 1 +TE 434.792 +CE 231.218 1.56192 434.792 1.47171 +CD -2.04905 -0.296813 -1.0492 0.0336036 0.0231722 0.0336036 -2.86389 0.104591 -0.932797 0.0336036 0.0262974 0.0336036 0 0 0 0 0 0 +LA 0.570373 +SE +ET PH +ID 4873 +TI 1760667401.266593933 +CC NStripHits 3 +PE 266.472 +PP 0.395484 -0.578251 -0.117953 +PW 0 +SE +ET UN +ID 4874 +TI 1760667401.266613960 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4875 +TI 1760667401.266629695 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 364.373 +SE +ID 4876 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.390935) (Strip hit removed with energy 13.482849) +QA StripPairing (GR Hit: Detector ID 0 and Energy 79.887593) +BD GR Veto +PQ 4.86248 +SE +ET PH +ID 4877 +TI 1760667401.266694545 +CC NStripHits 2 +PE 199.874 +PP -2.9803 -1.06083 -3.72655 +PW 0 +SE +ET CO +ID 4878 +TI 1760667401.266710758 +CC NStripHits 7 +PQ 52.6709 +SQ 2 +CT 0 1 +TL 1 +TE 31.8661 +CE 228.275 2.31156 31.8661 1.31046 +CD 1.79236 -0.0672954 1.86095 0.0336036 0.0245714 0.0336036 1.21033 -0.831779 1.97736 0.0336036 0.0200301 0.0336036 0 0 0 0 0 0 +LA 0.967856 +SE +ID 4879 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 165.870975) +BD GR Veto +PQ 1.74179 +SE +ET CO +ID 4880 +TI 1760667401.266761064 +CC NStripHits 4 +PQ 1.09355 +SQ 2 +CT 0 1 +TL 1 +TE 63.9423 +CE 180.779 0.941462 63.9423 0.943883 +CD 1.44314 -0.169307 -0.583578 0.0336036 0.0236908 0.0336036 -0.419359 0.348879 -3.14452 0.0336036 0.0316878 0.0336036 0 0 0 0 0 0 +LA 3.20871 +SE +ET PH +ID 4881 +TI 1760667401.266793012 +CC NStripHits 4 +PE 666.349 +PP 0.162672 -0.642073 -2.32967 +PW 0 +SE +ID 4882 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.763875) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.064143) +BD GR Veto +PQ 17.7852 +SE +ET PH +ID 4883 +TI 1760667401.266843557 +CC NStripHits 2 +PE 123.476 +PP 3.07283 0.354449 -4.6578 +PW 0 +SE +ET PH +ID 4884 +TI 1760667401.266858816 +CC NStripHits 2 +PE 64.3663 +PP 3.88767 0.00628712 1.74455 +PW 0 +SE +ID 4885 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 84.914953) +BD GR Veto +PQ 4.50766 +SE +ID 4886 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.214007) (Strip hit removed with energy 8.777878) +BD GR Veto +PQ +SE +ET PH +ID 4887 +TI 1760667401.266906261 +CC NStripHits 3 +PE 110.541 +PP 2.6072 -1.07128 0.580484 +PW 0 +SE +ET UN +ID 4888 +TI 1760667401.266926765 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 659.292 +SE +ET PH +ID 4889 +TI 1760667401.266964673 +CC NStripHits 2 +PE 106.157 +PP 3.65486 -0.404929 -3.26092 +PW 0 +SE +ID 4890 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 155.804695) +BD GR Veto +PQ 0.677503 +SE +ET PH +ID 4891 +TI 1760667401.266992568 +CC NStripHits 2 +PE 116.228 +PP 1.79236 0.370249 -2.21327 +PW 0 +SE +ET CO +ID 4892 +TI 1760667401.267009973 +CC NStripHits 4 +PQ 4.09079 +SQ 2 +CT 0 1 +TL 1 +TE 62.7532 +CE 155.142 0.935217 62.7532 1.2015 +CD -1.46702 -0.0650967 2.44298 0.0336036 0.0245882 0.0336036 -2.04905 -0.0485517 2.21017 0.0336036 0.0246869 0.0336036 0 0 0 0 0 0 +LA 0.627083 +SE +ET PH +ID 4893 +TI 1760667401.267039537 +CC NStripHits 2 +PE 82.9003 +PP 0.162672 0.171503 -3.61014 +PW 0 +SE +ID 4894 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 101.236895) +BD GR Veto +PQ 1.25316 +SE +ET PH +ID 4895 +TI 1760667401.267080783 +CC NStripHits 3 +PE 355.826 +PP 3.07283 -1.08563 -2.21327 +PW 0 +SE +ET PH +ID 4896 +TI 1760667401.267100572 +CC NStripHits 3 +PE 149.571 +PP -0.652172 0.371558 -2.9117 +PW 0 +SE +ID 4897 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.260278) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 195.428881) (GR Hit: Detector ID 0 and Energy 290.865729) +BD GR Veto +PQ 2.27253 +SE +ID 4898 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 350.249711) +BD GR Veto +PQ 9.04735 +SE +ET PH +ID 4899 +TI 1760667401.267148733 +CC NStripHits 2 +PE 131.73 +PP 2.84002 0.309207 -4.19217 +PW 0 +SE +ID 4900 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 256.761242) +BD GR Veto +PQ 2.50358 +SE +ET CO +ID 4901 +TI 1760667401.267174482 +CC NStripHits 6 +PQ 83.9461 +SQ 2 +CT 0 1 +TL 1 +TE 164.584 +CE 513.599 1.31267 164.584 1.28713 +CD -2.51467 -0.473712 1.16252 0.0336036 0.021942 0.0336036 -2.63108 -0.589621 2.09377 0.0336036 0.0215229 0.0336036 0 0 0 0 0 0 +LA 0.945628 +SE +ID 4902 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 135.798031) +BD GR Veto +PQ 6.77978 +SE +ID 4903 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 177.342346) +BD GR Veto +PQ 3.19198 +SE +ET PH +ID 4904 +TI 1760667401.267238616 +CC NStripHits 2 +PE 248.661 +PP 4.00408 -0.630188 -1.63123 +PW 0 +SE +ET PH +ID 4905 +TI 1760667401.267256021 +CC NStripHits 2 +PE 131.956 +PP 2.4908 -0.132534 -3.84295 +PW 0 +SE +ET PH +ID 4906 +TI 1760667401.267278671 +CC NStripHits 2 +PE 49.0313 +PP -1.2342 -1.03114 0.813297 +PW 0 +SE +ID 4907 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 498.018253) +BD GR Veto +PQ 13.0578 +SE +ID 4908 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (88.011599)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 124.767450)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 28.760889) +BD GR Veto +PQ 88.0116 +SE +ET PH +ID 4909 +TI 1760667401.267340660 +CC NStripHits 3 +PE 455.989 +PP 3.53845 -0.111592 -0.00154687 +PW 0 +SE +ET PH +ID 4910 +TI 1760667401.267362594 +CC NStripHits 3 +PE 461.311 +PP 3.07283 -0.630183 -4.54139 +PW 0 +SE +ID 4911 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 129.469282) +BD GR Veto +PQ 4.94289 +SE +ID 4912 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 122.597055) +BD GR Veto +PQ 0.0867091 +SE +ET PH +ID 4913 +TI 1760667401.267431259 +CC NStripHits 3 +PE 405.464 +PP 1.44314 0.365094 2.32658 +PW 0 +SE +ET PH +ID 4914 +TI 1760667401.267450809 +CC NStripHits 2 +PE 79.0922 +PP 2.72361 -0.567004 1.74455 +PW 0 +SE +ET PH +ID 4915 +TI 1760667401.267471075 +CC NStripHits 2 +PE 81.0793 +PP -0.652172 -0.874708 -2.9117 +PW 0 +SE +ET PH +ID 4916 +TI 1760667401.267488241 +CC NStripHits 2 +PE 317.158 +PP -0.652172 -0.794004 -0.350766 +PW 0 +SE +ET PH +ID 4917 +TI 1760667401.267508745 +CC NStripHits 3 +PE 194.434 +PP 1.67595 0.327012 -2.09686 +PW 0 +SE +ET UN +ID 4918 +TI 1760667401.267528772 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.965 +SE +ET PH +ID 4919 +TI 1760667401.267547369 +CC NStripHits 2 +PE 249.237 +PP 1.32673 -0.109356 2.32658 +PW 0 +SE +ID 4920 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 1.01029 +SE +ET UN +ID 4921 +TI 1760667401.267592668 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.3647 +SE +ET PH +ID 4922 +TI 1760667401.267610311 +CC NStripHits 3 +PE 250.451 +PP -0.652172 0.313093 -0.932797 +PW 0 +SE +ET UN +ID 4923 +TI 1760667401.267630815 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.504 +SE +ID 4924 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.064892) +BD GR Veto +PQ +SE +ET PH +ID 4925 +TI 1760667401.267654180 +CC NStripHits 2 +PE 147.454 +PP 4.12048 0.192691 -3.95936 +PW 0 +SE +ET PH +ID 4926 +TI 1760667401.267672061 +CC NStripHits 3 +PE 115.78 +PP 0.395484 -1.08847 0.231266 +PW 0 +SE +ID 4927 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.693381) +BD GR Veto +PQ 0.548347 +SE +ET PH +ID 4928 +TI 1760667401.288965463 +CC NStripHits 2 +PE 205.356 +PP -0.768578 0.215249 -3.37733 +PW 0 +SE +ET PH +ID 4929 +TI 1760667401.288986444 +CC NStripHits 2 +PE 77.6664 +PP -1.1178 -1.09605 2.09377 +PW 0 +SE +ET UN +ID 4930 +TI 1760667401.289004325 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 119.16 +SE +ET UN +ID 4931 +TI 1760667401.289043426 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 6 +PE 176.043 +SE +ET CO +ID 4932 +TI 1760667401.289099216 +CC NStripHits 4 +PQ 2.90853 +SQ 2 +CT 0 1 +TL 1 +TE 79.3329 +CE 268.168 0.963326 79.3329 1.2647 +CD -2.04905 -1.14635 -1.0492 0.0336036 0.0283873 0.0336036 -1.46702 -0.664954 -0.816391 0.0336036 0.0211883 0.0336036 0 0 0 0 0 0 +LA 0.79038 +SE +ET CO +ID 4933 +TI 1760667401.289129972 +CC NStripHits 5 +PQ 26.6586 +SQ 2 +CT 0 1 +TL 1 +TE 46.8522 +CE 414.766 1.739 46.8522 0.96913 +CD 1.67595 0.340366 0.231266 0.0336036 0.0344801 0.0336036 2.84002 -0.664499 -1.39842 0.0336036 0.0211915 0.0336036 0 0 0 0 0 0 +LA 2.24069 +SE +ET PH +ID 4934 +TI 1760667401.289177656 +CC NStripHits 4 +PE 451.598 +PP -1.46702 0.0908512 -0.699984 +PW 0 +SE +ET PH +ID 4935 +TI 1760667401.289200782 +CC NStripHits 2 +PE 441.281 +PP -0.419359 -0.672525 0.114859 +PW 0 +SE +ET UN +ID 4936 +TI 1760667401.289223909 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 60.5686 +SE +ET CO +ID 4937 +TI 1760667401.289244413 +CC NStripHits 7 +PQ 51.7098 +SQ 3 +CT 0.255414 0.554452 +TL 1 +TE 371.829 +CE 301.387 1.83433 371.829 0.92148 +CD 2.84002 -0.180475 -4.42498 0.0336036 0.0236176 0.0336036 2.95642 -0.23886 -4.30858 0.0336036 0.0233388 0.0336036 0 0 0 0 0 0 +LA 0.174662 +SE +ID 4938 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.710468) +BD GR Veto +PQ 1.17084 +SE +ET UN +ID 4939 +TI 1760667401.289299726 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 164.245 +SE +ET PH +ID 4940 +TI 1760667401.289329767 +CC NStripHits 3 +PE 475.431 +PP 2.95642 0.142579 0.929703 +PW 0 +SE +ET PH +ID 4941 +TI 1760667401.289352416 +CC NStripHits 3 +PE 178.881 +PP 2.37439 -0.849611 -1.98045 +PW 0 +SE +ET PH +ID 4942 +TI 1760667401.289372920 +CC NStripHits 2 +PE 350.131 +PP 0.628297 -0.440508 2.6758 +PW 0 +SE +ET PH +ID 4943 +TI 1760667401.289388656 +CC NStripHits 3 +PE 408.587 +PP 1.90877 0.331671 1.74455 +PW 0 +SE +ID 4944 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 126.389798) +BD GR Veto +PQ 3.703 +SE +ET PH +ID 4945 +TI 1760667401.289416790 +CC NStripHits 3 +PE 308.735 +PP -2.39827 -0.595977 -0.816391 +PW 0 +SE +ET PH +ID 4946 +TI 1760667401.289436578 +CC NStripHits 2 +PE 351.151 +PP 3.42205 -0.863201 -2.21327 +PW 0 +SE +ET PH +ID 4947 +TI 1760667401.289454698 +CC NStripHits 2 +PE 189.392 +PP 2.37439 0.35632 -2.21327 +PW 0 +SE +ET CO +ID 4948 +TI 1760667401.289472818 +CC NStripHits 5 +PQ 3.82403 +SQ 2 +CT 0.713735 0.286265 +TL 1 +TE 425.393 +CE 232.849 1.32645 425.393 1.05026 +CD 1.90877 -0.902816 0.813297 0.0336036 0.0197903 0.0336036 2.95642 -0.104494 2.55939 0.0336036 0.0242347 0.0336036 0 0 0 0 0 0 +LA 2.18717 +SE +ET UN +ID 4949 +TI 1760667401.289510488 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 4950 +TI 1760667401.289521455 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 332.103 +SE +ET PH +ID 4951 +TI 1760667401.289568662 +CC NStripHits 2 +PE 52.6516 +PP -0.884984 0.368788 0.114859 +PW 0 +SE +ET UN +ID 4952 +TI 1760667401.289587020 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 7 +PE 208.096 +SE +ET PH +ID 4953 +TI 1760667401.289633274 +CC NStripHits 4 +PE 304.67 +PP -1.46702 -0.0483769 1.16252 +PW 0 +SE +ET CO +ID 4954 +TI 1760667401.289654970 +CC NStripHits 6 +PQ 9.98535 +SQ 3 +CT 0.0697801 1.16547 +TL 1 +TE 70.9757 +CE 238.345 1.56773 70.9757 1.28118 +CD -1.00139 -0.329851 -2.44608 0.0336036 0.0229901 0.0336036 -0.652172 -0.659335 -2.9117 0.0336036 0.0212316 0.0336036 0 0 0 0 0 0 +LA 0.668816 +SE +ET UN +ID 4955 +TI 1760667401.289705276 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 314.459 +SE +ET CO +ID 4956 +TI 1760667401.289742946 +CC NStripHits 4 +PQ 15.9588 +SQ 2 +CT 0 1 +TL 1 +TE 33.8516 +CE 144.623 0.939239 33.8516 1.31361 +CD 1.55955 -0.402391 -2.56248 0.0336036 0.0224271 0.0336036 1.79236 -0.294398 -3.49373 0.0336036 0.023177 0.0336036 0 0 0 0 0 0 +LA 0.965966 +SE +ET PH +ID 4957 +TI 1760667401.289772748 +CC NStripHits 2 +PE 67.8473 +PP -2.86389 0.350343 -1.51483 +PW 0 +SE +ET PH +ID 4958 +TI 1760667401.289790630 +CC NStripHits 2 +PE 87.4667 +PP -2.74748 0.203299 -3.49373 +PW 0 +SE +ET PH +ID 4959 +TI 1760667401.289808034 +CC NStripHits 3 +PE 271.053 +PP 2.72361 -0.594983 0.464078 +PW 0 +SE +ET UN +ID 4960 +TI 1760667401.289828538 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 4961 +TI 1760667401.289848804 +CC NStripHits 5 +PQ 8.33062 +SQ 2 +CT 0 1 +TL 1 +TE 109.813 +CE 292.169 1.86123 109.813 1.25222 +CD -2.28186 -0.6093 -2.09686 0.0336036 0.021431 0.0336036 3.53845 -1.12679 0.813297 0.0336036 0.0299016 0.0336036 0 0 0 0 0 0 +LA 6.52785 +SE +ET PH +ID 4962 +TI 1760667401.289891242 +CC NStripHits 2 +PE 463.195 +PP 2.95642 0.310024 1.62814 +PW 0 +SE +ET PH +ID 4963 +TI 1760667401.289913654 +CC NStripHits 2 +PE 52.5216 +PP 2.25798 0.0606176 -1.16561 +PW 0 +SE +ET PH +ID 4964 +TI 1760667401.289930820 +CC NStripHits 3 +PE 208.992 +PP -0.768578 0.315059 -2.67889 +PW 0 +SE +ET UN +ID 4965 +TI 1760667401.289950132 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 4966 +TI 1760667401.289967775 +CC NStripHits 7 +PQ 3.08543 +SQ 3 +CT 0.0174241 0.145882 +TL 1 +TE 79.8156 +CE 275.577 1.43217 79.8156 1.30067 +CD 2.37439 -0.602623 0.580484 0.0336036 0.0214509 0.0336036 2.02517 -0.674149 0.813297 0.0336036 0.0211365 0.0336036 0 0 0 0 0 0 +LA 0.425761 +SE +ET PH +ID 4967 +TI 1760667401.290013074 +CC NStripHits 2 +PE 223.504 +PP -1.69983 -0.01804 -3.02811 +PW 0 +SE +ET PH +ID 4968 +TI 1760667401.290031671 +CC NStripHits 2 +PE 31.2876 +PP 2.02517 -0.0333436 -0.932797 +PW 0 +SE +ET PH +ID 4969 +TI 1760667401.290046215 +CC NStripHits 2 +PE 394.871 +PP 3.42205 0.175266 1.74455 +PW 0 +SE +ET UN +ID 4970 +TI 1760667401.290068387 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 384.738 +SE +ID 4971 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.871801) (Strip hit removed with energy 18.020384) (Strip hit removed with energy 13.609268) (Strip hit removed with energy 15.926226) (Strip hit removed with energy 16.718727) (Strip hit removed with energy 4.920728) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 28.664311)) +BD GR Veto +PQ 0.110849 +SE +ET UN +ID 4972 +TI 1760667401.290147542 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 659.088 +SE +ID 4973 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.661216) +BD GR Veto +PQ 0.211208 +SE +ET UN +ID 4974 +TI 1760667401.290191650 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 396.473 +SE +ID 4975 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 188.428377) +BD GR Veto +PQ 2.39131 +SE +ID 4976 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.214007) +BD GR Veto +PQ 8.70651 +SE +ET PH +ID 4977 +TI 1760667401.290250778 +CC NStripHits 3 +PE 267.211 +PP 1.79236 0.103123 -3.84295 +PW 0 +SE +ET PH +ID 4978 +TI 1760667401.290270805 +CC NStripHits 3 +PE 436.621 +PP 4.3533 -0.545345 -0.00154687 +PW 0 +SE +ET PH +ID 4979 +TI 1760667401.290291309 +CC NStripHits 2 +PE 41.0066 +PP 3.30564 -1.17768 -3.37733 +PW 0 +SE +ET PH +ID 4980 +TI 1760667401.290308952 +CC NStripHits 3 +PE 139.255 +PP 2.25798 -0.515112 -1.51483 +PW 0 +SE +ET PH +ID 4981 +TI 1760667401.290329694 +CC NStripHits 3 +PE 311.661 +PP 0.861109 -0.616885 -3.95936 +PW 0 +SE +ET PH +ID 4982 +TI 1760667401.290349483 +CC NStripHits 2 +PE 466.405 +PP 2.02517 0.200499 -4.30858 +PW 0 +SE +ET PH +ID 4983 +TI 1760667401.290372848 +CC NStripHits 3 +PE 125.662 +PP 2.02517 -0.532393 2.32658 +PW 0 +SE +ET UN +ID 4984 +TI 1760667401.290393352 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 631.99 +SE +ET UN +ID 4985 +TI 1760667401.290441989 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 420.863 +SE +ET UN +ID 4986 +TI 1760667401.290466547 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 359.787 +SE +ET PH +ID 4987 +TI 1760667401.290518522 +CC NStripHits 4 +PE 664.528 +PP -1.2342 0.333729 -1.16561 +PW 0 +SE +ET PH +ID 4988 +TI 1760667401.290564537 +CC NStripHits 2 +PE 187.115 +PP -2.16545 -0.764232 -0.117953 +PW 0 +SE +ET PH +ID 4989 +TI 1760667401.290583372 +CC NStripHits 2 +PE 32.0976 +PP 3.88767 -0.0622032 -2.9117 +PW 0 +SE +ID 4990 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 156.357520) +BD GR Veto +PQ 4.16435 +SE +ET PH +ID 4991 +TI 1760667401.307642221 +CC NStripHits 4 +PE 665.156 +PP 2.6072 0.292508 1.86095 +PW 0 +SE +ET PH +ID 4992 +TI 1760667401.307732105 +CC NStripHits 2 +PE 140.779 +PP 1.79236 -0.948705 -4.19217 +PW 0 +SE +ET UN +ID 4993 +TI 1760667401.307772874 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET UN +ID 4994 +TI 1760667401.307815790 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 663.919 +SE +ID 4995 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 418.960334) +BD GR Veto +PQ 6.45765 +SE +ID 4996 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (598.201928)) (GR Hit: Detector ID 0 and Energy 118.046311) +BD GR Veto +PQ 598.202 +SE +ET UN +ID 4997 +TI 1760667401.307960510 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 60.8937 +SE +ET UN +ID 4998 +TI 1760667401.308007717 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET PH +ID 4999 +TI 1760667401.308125495 +CC NStripHits 2 +PE 103.849 +PP -0.186547 0.371091 -0.816391 +PW 0 +SE +ID 5000 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 122.753250) +BD GR Veto +PQ 2.66398 +SE +ET PH +ID 5001 +TI 1760667401.308207511 +CC NStripHits 2 +PE 163.321 +PP 3.30564 -0.995475 -1.0492 +PW 0 +SE +ET PH +ID 5002 +TI 1760667401.308249235 +CC NStripHits 2 +PE 235.406 +PP 1.90877 -1.05213 -3.61014 +PW 0 +SE +ET PH +ID 5003 +TI 1760667401.308284044 +CC NStripHits 2 +PE 138.55 +PP -1.81623 -1.02616 -3.02811 +PW 0 +SE +ID 5004 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.616500) +BD GR Veto +PQ 3.61739 +SE +ET PH +ID 5005 +TI 1760667401.308340311 +CC NStripHits 2 +PE 190.116 +PP 1.67595 0.0857213 0.114859 +PW 0 +SE +ET PH +ID 5006 +TI 1760667401.308375358 +CC NStripHits 2 +PE 241.393 +PP 1.32673 -0.100849 2.55939 +PW 0 +SE +ID 5007 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.412567) (Strip hit removed with energy 14.866880) +QA StripPairing (Best reduced chi square is not below 25 (29.610210)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.649708)) (GR Hit: Detector ID 0 and Energy 97.690846) +BD GR Veto +PQ 29.6102 +SE +ET CO +ID 5008 +TI 1760667401.308462858 +CC NStripHits 6 +PQ 24.9435 +SQ 2 +CT 0.51133 0.48867 +TL 1 +TE 336.381 +CE 326.151 1.53818 336.381 1.33909 +CD 3.42205 0.117828 -0.583578 0.0336036 0.026503 0.0336036 0.279078 0.367692 -0.00154687 0.0336036 0.0225677 0.0336036 0 0 0 0 0 0 +LA 3.20616 +SE +ET PH +ID 5009 +TI 1760667401.308539628 +CC NStripHits 2 +PE 57.323 +PP 2.6072 0.272052 -3.37733 +PW 0 +SE +ET PH +ID 5010 +TI 1760667401.308574199 +CC NStripHits 3 +PE 222.719 +PP 3.42205 0.337294 -3.49373 +PW 0 +SE +ET PH +ID 5011 +TI 1760667401.308613061 +CC NStripHits 3 +PE 131.649 +PP 0.279078 -0.750582 -4.19217 +PW 0 +SE +ET CO +ID 5012 +TI 1760667401.308656215 +CC NStripHits 5 +PQ 2.51193 +SQ 2 +CT 0 1 +TL 1 +TE 117.574 +CE 543.983 1.10976 117.574 1.3172 +CD -0.419359 0.0898072 -4.54139 0.0336036 0.0261045 0.0336036 -0.0701406 -0.573604 -4.30858 0.0336036 0.0216025 0.0336036 0 0 0 0 0 0 +LA 0.785028 +SE +ET UN +ID 5013 +TI 1760667401.308722972 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 117.394 +SE +ET PH +ID 5014 +TI 1760667401.308790922 +CC NStripHits 2 +PE 473.182 +PP 4.23689 -0.416952 -1.86405 +PW 0 +SE +ID 5015 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (45.623856)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 119.513692) +BD GR Veto +PQ 45.6239 +SE +ET UN +ID 5016 +TI 1760667401.308876037 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET UN +ID 5017 +TI 1760667401.308941602 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5018 +TI 1760667401.308960199 +CC NStripHits 2 +PE 131.617 +PP -1.81623 -0.763601 -4.19217 +PW 0 +SE +ET UN +ID 5019 +TI 1760667401.308978080 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 661.008 +SE +ET PH +ID 5020 +TI 1760667401.309008836 +CC NStripHits 2 +PE 299.033 +PP 2.84002 -0.727907 -0.583578 +PW 0 +SE +ID 5021 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 0.645091) +BD GR Veto +PQ +SE +ET PH +ID 5022 +TI 1760667401.309033155 +CC NStripHits 3 +PE 193.057 +PP 1.44314 -0.154306 -3.02811 +PW 0 +SE +ET UN +ID 5023 +TI 1760667401.309053421 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 352.404 +SE +ET PH +ID 5024 +TI 1760667401.309098958 +CC NStripHits 3 +PE 218.765 +PP 0.395484 -0.813312 -2.09686 +PW 0 +SE +ET PH +ID 5025 +TI 1760667401.309119939 +CC NStripHits 2 +PE 449.113 +PP 2.6072 0.153199 -3.84295 +PW 0 +SE +ET CO +ID 5026 +TI 1760667401.309142589 +CC NStripHits 4 +PQ 35.5432 +SQ 2 +CT 0 1 +TL 1 +TE 53.2677 +CE 117.502 1.31142 53.2677 1.2598 +CD -1.2342 -0.00417475 -3.49373 0.0336036 0.0249648 0.0336036 -1.1178 0.244337 -2.9117 0.0336036 0.0319006 0.0336036 0 0 0 0 0 0 +LA 0.64348 +SE +ET PH +ID 5027 +TI 1760667401.309169292 +CC NStripHits 2 +PE 209.004 +PP 4.3533 0.202629 -2.21327 +PW 0 +SE +ET UN +ID 5028 +TI 1760667401.309185981 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 657.476 +SE +ID 5029 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 403.048128) +BD GR Veto +PQ 4.95502 +SE +ET PH +ID 5030 +TI 1760667401.309247970 +CC NStripHits 2 +PE 101.448 +PP -1.00139 -0.844707 -1.86405 +PW 0 +SE +ET PH +ID 5031 +TI 1760667401.309265851 +CC NStripHits 2 +PE 168.398 +PP 1.55955 -0.285107 0.813297 +PW 0 +SE +ET CO +ID 5032 +TI 1760667401.309293508 +CC NStripHits 5 +PQ 0.259599 +SQ 2 +CT 0.631175 0.368825 +TL 1 +TE 381.02 +CE 277.664 0.96967 381.02 1.10325 +CD 0.511891 -1.1265 2.32658 0.0336036 0.0298945 0.0336036 0.628297 -1.12958 1.74455 0.0336036 0.0299321 0.0336036 0 0 0 0 0 0 +LA 0.593564 +SE +ID 5033 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 0.46847 +SE +ID 5034 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.460511) +BD GR Veto +PQ +SE +ET UN +ID 5035 +TI 1760667401.309352636 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 5036 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 482.219440) +BD GR Veto +PQ 11.047 +SE +ET PH +ID 5037 +TI 1760667401.309380054 +CC NStripHits 3 +PE 280.444 +PP 2.6072 -1.07413 -1.0492 +PW 0 +SE +ET PH +ID 5038 +TI 1760667401.309401035 +CC NStripHits 2 +PE 86.3696 +PP 2.25798 0.311663 -3.26092 +PW 0 +SE +ET PH +ID 5039 +TI 1760667401.309417963 +CC NStripHits 2 +PE 120.235 +PP -2.28186 0.371573 0.231266 +PW 0 +SE +ET PH +ID 5040 +TI 1760667401.309436082 +CC NStripHits 2 +PE 243.914 +PP 1.67595 0.363301 -4.19217 +PW 0 +SE +ET PH +ID 5041 +TI 1760667401.309456825 +CC NStripHits 3 +PE 402.969 +PP -0.535766 0.345071 -3.61014 +PW 0 +SE +ET PH +ID 5042 +TI 1760667401.309478282 +CC NStripHits 2 +PE 95.3787 +PP 3.18923 -0.466241 1.62814 +PW 0 +SE +ET UN +ID 5043 +TI 1760667401.309497117 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5044 +TI 1760667401.309508323 +CC NStripHits 5 +PE 537.115 +PP 0.861109 -0.297877 -3.26092 +PW 0 +SE +ET PH +ID 5045 +TI 1760667401.309542417 +CC NStripHits 3 +PE 113.957 +PP 2.84002 -0.559172 -3.61014 +PW 0 +SE +ET PH +ID 5046 +TI 1760667401.309563875 +CC NStripHits 2 +PE 81.4932 +PP 4.3533 0.149566 -1.51483 +PW 0 +SE +ET PH +ID 5047 +TI 1760667401.309579610 +CC NStripHits 2 +PE 98.0622 +PP 4.23689 -0.875007 -3.61014 +PW 0 +SE +ID 5048 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 141.485603) +BD GR Veto +PQ 0.166732 +SE +ET UN +ID 5049 +TI 1760667401.309606552 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 664.703 +SE +ET PH +ID 5050 +TI 1760667401.309634923 +CC NStripHits 3 +PE 425.139 +PP -2.51467 -0.870645 -0.932797 +PW 0 +SE +ET PH +ID 5051 +TI 1760667401.309664011 +CC NStripHits 3 +PE 215.575 +PP -0.535766 -0.199014 -0.350766 +PW 0 +SE +ET PH +ID 5052 +TI 1760667401.309684753 +CC NStripHits 3 +PE 445.305 +PP 3.42205 -0.411211 0.813297 +PW 0 +SE +ET UN +ID 5053 +TI 1760667401.309707164 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 275.416 +SE +ID 5054 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.758646) +QA StripPairing (Best reduced chi square is not below 25 (67.355729)) (GR Hit: Detector ID 0 and Energy 84.914953) +BD GR Veto +PQ 67.3557 +SE +ID 5055 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 54.383259) +BD GR Veto +PQ 0.945197 +SE +ET UN +ID 5056 +TI 1760667401.333151340 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 140.582 +SE +ID 5057 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5058 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.811296) +QA StripPairing (GR Hit: Detector ID 0 and Energy 347.349165) +BD GR Veto +PQ 4.03046 +SE +ET UN +ID 5059 +TI 1760667401.333218574 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5060 +TI 1760667401.333237409 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 9 +PE 315.053 +SE +ET PH +ID 5061 +TI 1760667401.333312749 +CC NStripHits 2 +PE 60.369 +PP 3.65486 -0.0496962 -0.467172 +PW 0 +SE +ID 5062 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 49.311858) +BD GR Veto +PQ 0.189709 +SE +ET PH +ID 5063 +TI 1760667401.333354711 +CC NStripHits 4 +PE 643.583 +PP -2.39827 -0.560814 2.09377 +PW 0 +SE +ET PH +ID 5064 +TI 1760667401.333379983 +CC NStripHits 3 +PE 240.254 +PP -2.74748 -0.0932131 -1.51483 +PW 0 +SE +ET UN +ID 5065 +TI 1760667401.333400011 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5066 +TI 1760667401.333417177 +CC NStripHits 2 +PE 101.46 +PP -1.69983 0.0926498 -4.30858 +PW 0 +SE +ET PH +ID 5067 +TI 1760667401.333469629 +CC NStripHits 4 +PE 484.94 +PP -0.419359 0.146781 -1.51483 +PW 0 +SE +ID 5068 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 40.279580) +BD GR Veto +PQ 10.0573 +SE +ET PH +ID 5069 +TI 1760667401.333503246 +CC NStripHits 2 +PE 210.661 +PP 1.09392 0.0106861 -4.54139 +PW 0 +SE +ID 5070 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.846400) +BD GR Veto +PQ +SE +ET PH +ID 5071 +TI 1760667401.333536863 +CC NStripHits 2 +PE 101.601 +PP 0.162672 -0.409454 1.27892 +PW 0 +SE +ET UN +ID 5072 +TI 1760667401.333556652 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 262.215 +SE +ID 5073 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.155119) +BD GR Veto +PQ +SE +ET CO +ID 5074 +TI 1760667401.333592176 +CC NStripHits 4 +PQ 5.16339 +SQ 2 +CT 0.510392 0.489608 +TL 1 +TE 334.522 +CE 325.989 1.44937 334.522 1.27353 +CD 1.55955 -0.800305 1.16252 0.0336036 0.02019 0.0336036 0.0462656 -0.595712 1.97736 0.0336036 0.0214855 0.0336036 0 0 0 0 0 0 +LA 1.73085 +SE +ET PH +ID 5075 +TI 1760667401.333631992 +CC NStripHits 2 +PE 51.3232 +PP -1.00139 -0.931398 2.55939 +PW 0 +SE +ET PH +ID 5076 +TI 1760667401.333649158 +CC NStripHits 2 +PE 119.582 +PP 2.84002 0.364404 -1.98045 +PW 0 +SE +ET PH +ID 5077 +TI 1760667401.333673954 +CC NStripHits 2 +PE 200.956 +PP 2.95642 -0.0949222 -2.7953 +PW 0 +SE +ET PH +ID 5078 +TI 1760667401.333703517 +CC NStripHits 3 +PE 197.196 +PP 4.00408 -0.222548 -3.26092 +PW 0 +SE +ET PH +ID 5079 +TI 1760667401.333739042 +CC NStripHits 2 +PE 284.299 +PP 2.37439 0.202074 0.580484 +PW 0 +SE +ET CO +ID 5080 +TI 1760667401.333768367 +CC NStripHits 5 +PQ 0.536937 +SQ 2 +CT 0 1 +TL 1 +TE 53.0242 +CE 266.667 1.06559 53.0242 0.920601 +CD -0.419359 -0.322462 0.929703 0.0336036 0.0230524 0.0336036 -0.768578 -1.08844 1.27892 0.0336036 0.0249172 0.0336036 0 0 0 0 0 0 +LA 0.911388 +SE +ET UN +ID 5081 +TI 1760667401.333827018 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.5092 +SE +ET PH +ID 5082 +TI 1760667401.333857297 +CC NStripHits 3 +PE 274.726 +PP 2.4908 -0.447552 -1.39842 +PW 0 +SE +ET PH +ID 5083 +TI 1760667401.333917379 +CC NStripHits 3 +PE 451.782 +PP 1.09392 -0.207499 -3.02811 +PW 0 +SE +ET UN +ID 5084 +TI 1760667401.333952188 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 191.706 +SE +ET PH +ID 5085 +TI 1760667401.333975315 +CC NStripHits 3 +PE 334.06 +PP 3.53845 -0.123056 -1.0492 +PW 0 +SE +ET PH +ID 5086 +TI 1760667401.333998918 +CC NStripHits 2 +PE 247.285 +PP 2.02517 -0.778644 1.97736 +PW 0 +SE +ET UN +ID 5087 +TI 1760667401.334019660 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.3057 +SE +ET CO +ID 5088 +TI 1760667401.334038972 +CC NStripHits 5 +PQ 0.70716 +SQ 2 +CT 0 1 +TL 1 +TE 60.7957 +CE 219.074 1.07742 60.7957 0.901665 +CD -1.00139 -0.64829 1.16252 0.0336036 0.0213238 0.0336036 -0.302953 0.351907 2.09377 0.0336036 0.0305001 0.0336036 0 0 0 0 0 0 +LA 1.53474 +SE +ET CO +ID 5089 +TI 1760667401.334074258 +CC NStripHits 9 +PQ 8.10213 +SQ 4 +CT 0.0483833 0.199839 +TL 1 +TE 79.87 +CE 360.128 1.95194 79.87 0.909414 +CD -0.302953 0.167948 1.16252 0.0336036 0.0276101 0.0336036 -0.0701406 0.242273 1.39533 0.0336036 0.0316698 0.0336036 0 0 0 0 0 0 +LA 0.33753 +SE +ID 5090 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.570801) +BD GR Veto +PQ 0.134322 +SE +ID 5091 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.481522) +QA StripPairing (Best reduced chi square is not below 25 (27.660120)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 152.345612) (GR Hit: Detector ID 0 and Energy 59.581408) (GR Hit: Detector ID 0 and Energy 35.680402) +BD GR Veto +PQ 27.6601 +SE +ID 5092 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 204.107534) +BD GR Veto +PQ 2.12478 +SE +ET PH +ID 5093 +TI 1760667401.334191083 +CC NStripHits 3 +PE 100.823 +PP -0.768578 0.262807 -4.30858 +PW 0 +SE +ET PH +ID 5094 +TI 1760667401.334211111 +CC NStripHits 3 +PE 98.8306 +PP 0.279078 -0.229884 -4.54139 +PW 0 +SE +ET CO +ID 5095 +TI 1760667401.334228754 +CC NStripHits 5 +PQ 7.91995 +SQ 2 +CT 0 1 +TL 1 +TE 27.2651 +CE 161.644 1.08121 27.2651 1.28869 +CD 3.07283 -0.573999 -3.37733 0.0336036 0.0216013 0.0336036 2.4908 -0.487711 -3.61014 0.0336036 0.0218753 0.0336036 0 0 0 0 0 0 +LA 0.632776 +SE +ID 5096 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.574805) (Strip hit removed with energy 10.333893) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.833174) +BD GR Veto +PQ 1.49262 +SE +ET UN +ID 5097 +TI 1760667401.334287643 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.5043 +SE +ET CO +ID 5098 +TI 1760667401.334306478 +CC NStripHits 8 +PQ 75.0356 +SQ 4 +CT 0.0588991 0.0846394 +TL 1 +TE 94.1272 +CE 569.69 2.32897 94.1272 1.3147 +CD 1.09392 -0.116974 -2.67889 0.0336036 0.0241615 0.0336036 0.977516 -0.267431 -3.14452 0.0336036 0.0232982 0.0336036 0 0 0 0 0 0 +LA 0.395996 +SE +ET UN +ID 5099 +TI 1760667401.334354639 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 362.967 +SE +ET PH +ID 5100 +TI 1760667401.334384679 +CC NStripHits 2 +PE 315.49 +PP -2.74748 0.0555903 -1.98045 +PW 0 +SE +ET PH +ID 5101 +TI 1760667401.334403038 +CC NStripHits 2 +PE 113.561 +PP 2.84002 0.265503 -2.7953 +PW 0 +SE +ID 5102 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 154.533005) +BD GR Veto +PQ 3.31705 +SE +ID 5103 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1968.076374)) (GR Hit: Detector ID 0 and Energy 168.919323) +BD GR Veto +PQ 1968.08 +SE +ID 5104 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 34.830094) +BD GR Veto +PQ 2.48967 +SE +ET PH +ID 5105 +TI 1760667401.334458827 +CC NStripHits 3 +PE 300.521 +PP 3.65486 -1.06797 2.21017 +PW 0 +SE +ID 5106 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 31.300044)) (GR Hit: Detector ID 0 and Energy 28.332378) +BD GR Veto +PQ 1.06232 +SE +ET PH +ID 5107 +TI 1760667401.334516286 +CC NStripHits 3 +PE 92.3522 +PP -1.58342 -0.62507 -0.816391 +PW 0 +SE +ET UN +ID 5108 +TI 1760667401.334535598 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 5109 +TI 1760667401.334554433 +CC NStripHits 8 +PQ 18.6429 +SQ 4 +CT 0.0257349 0.0470605 +TL 1 +TE 365.084 +CE 294.822 2.10054 365.084 1.01286 +CD -1.93264 0.120919 -2.09686 0.0336036 0.0265609 0.0336036 -0.186547 -0.111552 -1.0492 0.0336036 0.0241949 0.0336036 0 0 0 0 0 0 +LA 0.332183 +SE +ET CO +ID 5110 +TI 1760667401.334616899 +CC NStripHits 7 +PQ 37.7001 +SQ 3 +CT 0.000806811 0.599197 +TL 1 +TE 272.487 +CE 179.638 1.7681 272.487 1.07798 +CD -1.69983 -1.07022 -3.61014 0.0336036 0.0225772 0.0336036 -2.28186 -0.350054 -2.67889 0.0336036 0.022827 0.0336036 0 0 0 0 0 0 +LA 0.877068 +SE +ET UN +ID 5111 +TI 1760667401.334665775 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.0677 +SE +ID 5112 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.652147) (Strip hit removed with energy 13.842069) (Strip hit removed with energy 11.328372) (Strip hit removed with energy 17.456197) +QA StripPairing (Best reduced chi square is not below 25 (151874.330455)) (GR Hit: Detector ID 0 and Energy 2669.457316) +BD GR Veto +PQ 151874 +SE +ET PH +ID 5113 +TI 1760667401.334715843 +CC NStripHits 2 +PE 93.4118 +PP 1.67595 0.332091 -4.6578 +PW 0 +SE +ID 5114 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.517514) (Strip hit removed with energy 12.961327) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 31.025491)) (GR Hit: Detector ID 0 and Energy 39.029392) +BD GR Veto +PQ 1.77378 +SE +ID 5115 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 159.417024) +BD GR Veto +PQ 0.898243 +SE +ET UN +ID 5116 +TI 1760667401.334774255 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 99.4438 +SE +ID 5117 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5118 +TI 1760667401.334831953 +CC NStripHits 2 +PE 424.45 +PP 1.32673 -1.1641 -1.28202 +PW 0 +SE +ID 5119 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 195.350167) +BD GR Veto +PQ 0.583245 +SE +ET PH +ID 5120 +TI 1760667401.355380773 +CC NStripHits 2 +PE 272.23 +PP 2.84002 0.199254 -3.14452 +PW 0 +SE +ET PH +ID 5121 +TI 1760667401.355405569 +CC NStripHits 2 +PE 112.501 +PP 2.84002 -0.894873 -3.49373 +PW 0 +SE +ID 5122 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5123 +TI 1760667401.355430841 +CC NStripHits 3 +PE 169.889 +PP 1.90877 0.297081 -3.61014 +PW 0 +SE +ID 5124 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 228.675206) +BD GR Veto +PQ 6.51648 +SE +ET PH +ID 5125 +TI 1760667401.355460882 +CC NStripHits 3 +PE 439.113 +PP -1.81623 -0.0848641 -1.0492 +PW 0 +SE +ET UN +ID 5126 +TI 1760667401.355482816 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 43.3569 +SE +ET UN +ID 5127 +TI 1760667401.355504035 +BD DepthCalibrationError (Out of Range) +CC NStripHits 10 +PE 660.576 +SE +ID 5128 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 187.889935) +BD GR Veto +PQ 3.9336 +SE +ET PH +ID 5129 +TI 1760667401.355599641 +CC NStripHits 2 +PE 30.2842 +PP 2.14158 -0.132243 -3.26092 +PW 0 +SE +ET PH +ID 5130 +TI 1760667401.355618238 +CC NStripHits 2 +PE 94.097 +PP 1.32673 -0.355627 -3.84295 +PW 0 +SE +ID 5131 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.701773) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.223431) +BD GR Veto +PQ 22.0483 +SE +ET PH +ID 5132 +TI 1760667401.355652332 +CC NStripHits 2 +PE 269.019 +PP 1.21033 0.0336185 -0.467172 +PW 0 +SE +ET PH +ID 5133 +TI 1760667401.355670213 +CC NStripHits 5 +PE 251.656 +PP 0.511891 -1.03813 -3.61014 +PW 0 +SE +ET PH +ID 5134 +TI 1760667401.355696201 +CC NStripHits 2 +PE 245.272 +PP -0.186547 -1.13508 1.16252 +PW 0 +SE +ET UN +ID 5135 +TI 1760667401.355717182 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.8906 +SE +ET CO +ID 5136 +TI 1760667401.355735301 +CC NStripHits 5 +PQ 26.7399 +SQ 2 +CT 0 1 +TL 1 +TE 82.5972 +CE 134.366 1.06296 82.5972 1.3308 +CD 3.65486 -0.467726 -1.98045 0.0336036 0.0219661 0.0336036 3.18923 -0.126635 -1.63123 0.0336036 0.0240856 0.0336036 0 0 0 0 0 0 +LA 0.674618 +SE +ET PH +ID 5137 +TI 1760667401.355775117 +CC NStripHits 2 +PE 163.248 +PP -2.74748 0.211612 0.347672 +PW 0 +SE +ET PH +ID 5138 +TI 1760667401.355793476 +CC NStripHits 2 +PE 39.6263 +PP -0.768578 -0.955323 1.39533 +PW 0 +SE +ID 5139 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.988905) +QA StripPairing (Best reduced chi square is not below 25 (7568.713552)) (GR Hit: Detector ID 0 and Energy 385.073852) +BD GR Veto +PQ 7568.71 +SE +ET PH +ID 5140 +TI 1760667401.355855464 +CC NStripHits 5 +PE 658.302 +PP 2.02517 -1.10624 2.44298 +PW 0 +SE +ET UN +ID 5141 +TI 1760667401.355881929 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.6149 +SE +ET CO +ID 5142 +TI 1760667401.355900049 +CC NStripHits 6 +PQ 1.09304 +SQ 2 +CT 0.512769 0.487231 +TL 1 +TE 336.651 +CE 326.367 1.08919 336.651 1.05375 +CD -1.81623 -0.924974 -1.86405 0.0336036 0.019784 0.0336036 -2.63108 -1.11578 -2.09686 0.0336036 0.0291432 0.0336036 0 0 0 0 0 0 +LA 0.86867 +SE +ID 5143 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 129.440175) +BD GR Veto +PQ 1.73439 +SE +ET PH +ID 5144 +TI 1760667401.355956077 +CC NStripHits 2 +PE 81.481 +PP 1.55955 0.307703 2.6758 +PW 0 +SE +ET PH +ID 5145 +TI 1760667401.355971813 +CC NStripHits 3 +PE 141.609 +PP -0.884984 -1.02782 1.04611 +PW 0 +SE +ID 5146 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (85.515390)) (GR Hit: Detector ID 0 and Energy 202.125368) +BD GR Veto +PQ 85.5154 +SE +ET PH +ID 5147 +TI 1760667401.356005430 +CC NStripHits 3 +PE 142.673 +PP 1.67595 -0.523994 -4.42498 +PW 0 +SE +ID 5148 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 38.808170) +BD GR Veto +PQ 8.81194 +SE +ET PH +ID 5149 +TI 1760667401.356035232 +CC NStripHits 2 +PE 83.0007 +PP -0.419359 -1.11125 -3.26092 +PW 0 +SE +ET PH +ID 5150 +TI 1760667401.356053590 +CC NStripHits 2 +PE 57.0787 +PP 0.511891 -1.06317 0.580484 +PW 0 +SE +ET PH +ID 5151 +TI 1760667401.356074333 +CC NStripHits 2 +PE 28.412 +PP -2.9803 -0.305091 0.464078 +PW 0 +SE +ET CO +ID 5152 +TI 1760667401.356109380 +CC NStripHits 10 +PQ 45.9712 +SQ 4 +CT 0.604636 0.907185 +TL 1 +TE 338.763 +CE 172.801 1.87772 338.763 1.79217 +CD 2.14158 -0.847454 -0.117953 0.0336036 0.0199954 0.0336036 3.07283 0.234983 1.62814 0.0336036 0.0309351 0.0336036 0 0 0 0 0 0 +LA 0.533146 +SE +ET PH +ID 5153 +TI 1760667401.356169939 +CC NStripHits 2 +PE 91.2985 +PP -1.2342 -0.458192 -2.21327 +PW 0 +SE +ET PH +ID 5154 +TI 1760667401.356194734 +CC NStripHits 3 +PE 378.253 +PP -2.86389 -1.16018 -3.84295 +PW 0 +SE +ET PH +ID 5155 +TI 1760667401.356215000 +CC NStripHits 2 +PE 190.769 +PP 1.21033 -0.0699271 1.62814 +PW 0 +SE +ID 5156 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 44.005742) +BD GR Veto +PQ 20.1615 +SE +ET PH +ID 5157 +TI 1760667401.356244802 +CC NStripHits 2 +PE 270.403 +PP 1.55955 -0.332328 -3.61014 +PW 0 +SE +ET PH +ID 5158 +TI 1760667401.356263875 +CC NStripHits 2 +PE 105.78 +PP 0.628297 0.0663001 1.86095 +PW 0 +SE +ET UN +ID 5159 +TI 1760667401.356282472 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 21.8066 +SE +ID 5160 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 223.319231) +BD GR Veto +PQ 7.02781 +SE +ET CO +ID 5161 +TI 1760667401.356340885 +CC NStripHits 7 +PQ 0.493757 +SQ 3 +CT 0.0328368 0.0696307 +TL 1 +TE 92.5195 +CE 284.666 1.30247 92.5195 1.07839 +CD 4.00408 -0.290523 -3.95936 0.0336036 0.0231859 0.0336036 4.3533 0.361173 -3.49373 0.0336036 0.0261973 0.0336036 0 0 0 0 0 0 +LA 0.87377 +SE +ET PH +ID 5162 +TI 1760667401.356381654 +CC NStripHits 2 +PE 23.621 +PP 2.25798 -0.165384 -0.350766 +PW 0 +SE +ET PH +ID 5163 +TI 1760667401.356400012 +CC NStripHits 2 +PE 444.143 +PP -1.35061 -0.174011 -4.54139 +PW 0 +SE +ET UN +ID 5164 +TI 1760667401.356420516 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 111.1 +SE +ET CO +ID 5165 +TI 1760667401.356450319 +CC NStripHits 4 +PQ 16.7948 +SQ 2 +CT 0 1 +TL 1 +TE 112.079 +CE 149.093 0.934506 112.079 1.33019 +CD 2.84002 0.0714809 2.09377 0.0336036 0.0258032 0.0336036 2.14158 -0.29366 1.97736 0.0336036 0.0231785 0.0336036 0 0 0 0 0 0 +LA 0.796679 +SE +ET PH +ID 5166 +TI 1760667401.356480360 +CC NStripHits 2 +PE 192.575 +PP -2.28186 -0.830978 -2.09686 +PW 0 +SE +ID 5167 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 144.254284) +BD GR Veto +PQ 1.96389 +SE +ID 5168 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.326231) +BD GR Veto +PQ 0.992028 +SE +ID 5169 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.520652) (Strip hit removed with energy 9.031462) (Strip hit removed with energy 17.379093) +QA StripPairing (Event contains multiple hits on a single strip) +BD GR Veto +PQ 7.55877 +SE +ET UN +ID 5170 +TI 1760667401.356553316 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.3986 +SE +ET PH +ID 5171 +TI 1760667401.356572389 +CC NStripHits 2 +PE 91.938 +PP -0.884984 -0.210993 -0.467172 +PW 0 +SE +ET UN +ID 5172 +TI 1760667401.356591463 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 49.7304 +SE +ID 5173 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 178.952324) +BD GR Veto +PQ 0.291661 +SE +ET PH +ID 5174 +TI 1760667401.356622934 +CC NStripHits 3 +PE 189.005 +PP -1.35061 -0.476142 -0.816391 +PW 0 +SE +ET PH +ID 5175 +TI 1760667401.356648921 +CC NStripHits 2 +PE 47.3797 +PP -1.00139 0.203315 -1.51483 +PW 0 +SE +ID 5176 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5177 +TI 1760667401.356674194 +CC NStripHits 3 +PE 60.605 +PP 4.00408 -0.721036 -4.19217 +PW 0 +SE +ID 5178 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 69.947931) +BD GR Veto +PQ 0.0272576 +SE +ET PH +ID 5179 +TI 1760667401.356703758 +CC NStripHits 2 +PE 48.2137 +PP 2.4908 0.365015 -3.49373 +PW 0 +SE +ID 5180 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (81.333607)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 74.438910) +BD GR Veto +PQ 81.3336 +SE +ID 5181 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 37.071461)) +BD GR Veto +PQ 0.589898 +SE +ET PH +ID 5182 +TI 1760667401.356764078 +CC NStripHits 4 +PE 111.624 +PP -2.28186 -0.742794 -1.16561 +PW 0 +SE +ET UN +ID 5183 +TI 1760667401.375238180 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 276.154 +SE +ET UN +ID 5184 +TI 1760667401.375305414 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5185 +TI 1760667401.375324487 +CC NStripHits 2 +PE 47.6702 +PP 3.88767 -1.04276 0.929703 +PW 0 +SE +ID 5186 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 86.850868) +BD GR Veto +PQ 0.00736339 +SE +ET CO +ID 5187 +TI 1760667401.375352144 +CC NStripHits 4 +PQ 35.1631 +SQ 2 +CT 0 1 +TL 1 +TE 85.6962 +CE 309.785 1.24192 85.6962 1.33804 +CD 3.18923 -0.121857 -1.39842 0.0336036 0.024126 0.0336036 3.42205 -0.478411 -1.51483 0.0336036 0.0219223 0.0336036 0 0 0 0 0 0 +LA 0.44146 +SE +ET PH +ID 5188 +TI 1760667401.375380754 +CC NStripHits 5 +PE 491.704 +PP 0.395484 -0.544362 0.464078 +PW 0 +SE +ID 5189 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.343028) +BD GR Veto +PQ +SE +ID 5190 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 252.773466) +BD GR Veto +PQ 7.0589 +SE +ET UN +ID 5191 +TI 1760667401.375424861 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2004 +SE +ID 5192 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.157087) +QA StripPairing (Best reduced chi square is not below 25 (2256.445211)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 123.871360)) (GR Hit: Detector ID 0 and Energy 507.441935) +BD GR Veto +PQ 2256.45 +SE +ET CO +ID 5193 +TI 1760667401.375485897 +CC NStripHits 5 +PQ 0.888179 +SQ 2 +CT 0.638551 0.361449 +TL 1 +TE 475.661 +CE 186.977 0.95149 475.661 1.12364 +CD -0.768578 -0.62255 -0.467172 0.0336036 0.0214213 0.0336036 -0.302953 0.125687 -0.699984 0.0336036 0.0266572 0.0336036 0 0 0 0 0 0 +LA 0.911519 +SE +ET PH +ID 5194 +TI 1760667401.375520944 +CC NStripHits 2 +PE 227.835 +PP 2.6072 0.358776 -1.16561 +PW 0 +SE +ET CO +ID 5195 +TI 1760667401.375540018 +CC NStripHits 5 +PQ 2.24721 +SQ 2 +CT 0.749404 0.250596 +TL 1 +TE 435.005 +CE 221.138 0.94842 435.005 1.0919 +CD -1.1178 -0.576821 -1.86405 0.0336036 0.0215916 0.0336036 -1.2342 -0.764021 -2.67889 0.0336036 0.0203469 0.0336036 0 0 0 0 0 0 +LA 0.844131 +SE +ET PH +ID 5196 +TI 1760667401.375591754 +CC NStripHits 2 +PE 660.173 +PP 2.14158 0.0550289 -0.699984 +PW 0 +SE +ET PH +ID 5197 +TI 1760667401.375614881 +CC NStripHits 2 +PE 195.94 +PP 1.44314 -0.985649 -4.19217 +PW 0 +SE +ET PH +ID 5198 +TI 1760667401.375633478 +CC NStripHits 2 +PE 58.4623 +PP 0.395484 -1.00154 -3.49373 +PW 0 +SE +ET PH +ID 5199 +TI 1760667401.375652074 +CC NStripHits 2 +PE 137.798 +PP -0.186547 -0.953363 -3.02811 +PW 0 +SE +ET UN +ID 5200 +TI 1760667401.375670671 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 5201 +TI 1760667401.375682830 +CC NStripHits 8 +PQ 51.643 +SQ 3 +CT 0.384357 0.487648 +TL 1 +TE 338.582 +CE 340.992 1.83266 338.582 1.34015 +CD 2.72361 -0.821788 -1.63123 0.0336036 0.0200671 0.0336036 3.53845 -0.507016 -1.39842 0.0336036 0.0217655 0.0336036 0 0 0 0 0 0 +LA 0.373461 +SE +ET PH +ID 5202 +TI 1760667401.375722646 +CC NStripHits 3 +PE 257.624 +PP 1.79236 -0.0408349 0.813297 +PW 0 +SE +ET UN +ID 5203 +TI 1760667401.375747442 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8845 +SE +ET PH +ID 5204 +TI 1760667401.375766277 +CC NStripHits 2 +PE 28.9365 +PP -2.9803 -0.813206 -2.67889 +PW 0 +SE +ET CO +ID 5205 +TI 1760667401.375782966 +CC NStripHits 5 +PQ 1.51912 +SQ 2 +CT 0 1 +TL 1 +TE 143.686 +CE 513.367 1.12143 143.686 0.914587 +CD -1.81623 -0.682689 1.62814 0.0336036 0.0211044 0.0336036 -2.28186 -0.54059 1.16252 0.0336036 0.021653 0.0336036 0 0 0 0 0 0 +LA 0.673651 +SE +ET CO +ID 5206 +TI 1760667401.375829696 +CC NStripHits 5 +PQ 4.65515 +SQ 2 +CT 0.743429 0.256571 +TL 1 +TE 432.857 +CE 221.183 0.925961 432.857 1.34244 +CD -2.16545 -0.8991 2.09377 0.0336036 0.019798 0.0336036 -2.74748 -0.19852 1.39533 0.0336036 0.0234984 0.0336036 0 0 0 0 0 0 +LA 1.14778 +SE +ET PH +ID 5207 +TI 1760667401.375866889 +CC NStripHits 2 +PE 52.7615 +PP 3.30564 0.360511 -4.07577 +PW 0 +SE +ET UN +ID 5208 +TI 1760667401.375885725 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.1293 +SE +ET PH +ID 5209 +TI 1760667401.375905513 +CC NStripHits 2 +PE 169.815 +PP 3.07283 -0.472603 -3.84295 +PW 0 +SE +ET CO +ID 5210 +TI 1760667401.375926971 +CC NStripHits 7 +PQ 28.7758 +SQ 3 +CT 0.00898041 0.0531778 +TL 1 +TE 143.28 +CE 216.286 1.71442 143.28 1.43402 +CD -0.652172 -0.961799 -1.28202 0.0336036 0.0198911 0.0336036 0.861109 0.221896 -2.32967 0.0336036 0.029903 0.0336036 0 0 0 0 0 0 +LA 1.24075 +SE +ET PH +ID 5211 +TI 1760667401.375975131 +CC NStripHits 3 +PE 197.384 +PP -2.63108 -0.242633 -3.95936 +PW 0 +SE +ET CO +ID 5212 +TI 1760667401.375997781 +CC NStripHits 5 +PQ 0.311607 +SQ 2 +CT 0 1 +TL 1 +TE 98.5585 +CE 204.724 1.11047 98.5585 0.91565 +CD -1.46702 -1.00813 -0.350766 0.0336036 0.0201972 0.0336036 -1.93264 0.201902 -1.51483 0.0336036 0.0288047 0.0336036 0 0 0 0 0 0 +LA 1.74242 +SE +ET PH +ID 5213 +TI 1760667401.376035213 +CC NStripHits 2 +PE 48.3584 +PP 2.6072 0.0131579 -2.21327 +PW 0 +SE +ID 5214 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.738409) +BD GR Veto +PQ 3.95538 +SE +ET PH +ID 5215 +TI 1760667401.376078605 +CC NStripHits 3 +PE 191.154 +PP -0.302953 -1.15012 -1.28202 +PW 0 +SE +ET PH +ID 5216 +TI 1760667401.376128673 +CC NStripHits 2 +PE 137.263 +PP 0.0462656 -0.521693 -1.51483 +PW 0 +SE +ID 5217 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.065123) +QA StripPairing (GR Hit: Detector ID 0 and Energy 114.968630) +BD GR Veto +PQ 10.8549 +SE +ID 5218 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 358.179183) +BD GR Veto +PQ 1.82353 +SE +ET PH +ID 5219 +TI 1760667401.376190662 +CC NStripHits 3 +PE 98.5312 +PP 3.18923 -1.11433 2.6758 +PW 0 +SE +ID 5220 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 65.728611) +BD GR Veto +PQ 0.286451 +SE +ET PH +ID 5221 +TI 1760667401.376217842 +CC NStripHits 2 +PE 330.176 +PP -1.46702 -0.564527 2.09377 +PW 0 +SE +ET PH +ID 5222 +TI 1760667401.376239776 +CC NStripHits 3 +PE 389.932 +PP 2.02517 0.291478 0.231266 +PW 0 +SE +ET PH +ID 5223 +TI 1760667401.376282453 +CC NStripHits 2 +PE 483.212 +PP 2.14158 0.12031 0.114859 +PW 0 +SE +ET PH +ID 5224 +TI 1760667401.376319646 +CC NStripHits 2 +PE 122.018 +PP -1.00139 -0.206327 0.696891 +PW 0 +SE +ET PH +ID 5225 +TI 1760667401.376361846 +CC NStripHits 5 +PE 646.74 +PP -0.768578 -0.853714 -3.37733 +PW 0 +SE +ID 5226 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 225.567861) +BD GR Veto +PQ 6.4346 +SE +ET PH +ID 5227 +TI 1760667401.376423835 +CC NStripHits 2 +PE 114.173 +PP -1.1178 -0.61314 1.16252 +PW 0 +SE +ID 5228 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 460.754845) +BD GR Veto +PQ 19.6071 +SE +ET PH +ID 5229 +TI 1760667401.376465082 +CC NStripHits 2 +PE 660.661 +PP 3.88767 -0.981361 -1.63123 +PW 0 +SE +ET PH +ID 5230 +TI 1760667401.376497507 +CC NStripHits 2 +PE 163.239 +PP 1.55955 -0.794107 -2.09686 +PW 0 +SE +ET PH +ID 5231 +TI 1760667401.376518726 +CC NStripHits 2 +PE 129.086 +PP -2.51467 -0.416875 -4.19217 +PW 0 +SE +ET PH +ID 5232 +TI 1760667401.376537561 +CC NStripHits 3 +PE 661.982 +PP 1.09392 0.148982 1.16252 +PW 0 +SE +ET UN +ID 5233 +TI 1760667401.376579284 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 265.584 +SE +ET PH +ID 5234 +TI 1760667401.376665115 +CC NStripHits 2 +PE 299.927 +PP 3.30564 -0.695686 -1.86405 +PW 0 +SE +ET CO +ID 5235 +TI 1760667401.376693010 +CC NStripHits 8 +PQ 18.9083 +SQ 3 +CT 0.0126264 0.772326 +TL 1 +TE 97.8638 +CE 558.061 2.12919 97.8638 1.35405 +CD -0.0701406 0.197379 -0.932797 0.0336036 0.0286036 0.0336036 -1.1178 0.160931 -0.816391 0.0336036 0.0274425 0.0336036 0 0 0 0 0 0 +LA 1.05474 +SE +ET PH +ID 5236 +TI 1760667401.376765489 +CC NStripHits 2 +PE 194.162 +PP -2.74748 0.224052 -3.95936 +PW 0 +SE +ET PH +ID 5237 +TI 1760667401.376786231 +CC NStripHits 2 +PE 681.633 +PP -2.39827 -0.768771 2.09377 +PW 0 +SE +ET CO +ID 5238 +TI 1760667401.376812219 +CC NStripHits 6 +PQ 11.8243 +SQ 2 +CT 0 1 +TL 1 +TE 146.117 +CE 503.184 1.48661 146.117 0.930098 +CD 2.84002 -0.230455 -2.21327 0.0336036 0.0233432 0.0336036 -1.35061 -0.223828 -4.54139 0.0336036 0.0233592 0.0336036 0 0 0 0 0 0 +LA 4.79391 +SE +ET UN +ID 5239 +TI 1760667401.376856803 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 168.246 +SE +ET PH +ID 5240 +TI 1760667401.376890420 +CC NStripHits 3 +PE 392.891 +PP 1.32673 0.211822 1.97736 +PW 0 +SE +ID 5241 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (79.374855)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 198.863456)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 31.727107) +BD GR Veto +PQ 79.3749 +SE +ET CO +ID 5242 +TI 1760667401.376936435 +CC NStripHits 4 +PQ 1.45271 +SQ 2 +CT 0 1 +TL 1 +TE 113.897 +CE 155.339 0.947928 113.897 0.930914 +CD -0.0701406 -0.499291 -3.49373 0.0336036 0.0218064 0.0336036 0.0462656 -0.555707 -3.26092 0.0336036 0.0216247 0.0336036 0 0 0 0 0 0 +LA 0.266334 +SE +ID 5243 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.256701) +BD GR Veto +PQ 15.0003 +SE +ET PH +ID 5244 +TI 1760667401.377014636 +CC NStripHits 2 +PE 70.7618 +PP -0.884984 -0.229875 -2.09686 +PW 0 +SE +ID 5245 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.776829) +QA StripPairing (Best reduced chi square is not below 25 (30.958329)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 39.631102) +BD GR Veto +PQ 30.9583 +SE +ET UN +ID 5246 +TI 1760667401.377066850 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 475.235 +SE +ET PH +ID 5247 +TI 1760667401.398909330 +CC NStripHits 2 +PE 37.1342 +PP -2.28186 0.0785981 -1.16561 +PW 0 +SE +ET UN +ID 5248 +TI 1760667401.398964166 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 20.7854 +SE +ID 5249 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 3.496974) +BD GR Veto +PQ 7.36874 +SE +ET PH +ID 5250 +TI 1760667401.399005413 +CC NStripHits 4 +PE 140.017 +PP -2.39827 -0.908594 -0.816391 +PW 0 +SE +ID 5251 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.759748) +BD GR Veto +PQ 1.32406 +SE +ET UN +ID 5252 +TI 1760667401.399037837 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.9761 +SE +ET CO +ID 5253 +TI 1760667401.399057149 +CC NStripHits 9 +PQ 16.4388 +SQ 3 +CT 0.0376327 0.0815577 +TL 1 +TE 282.989 +CE 356.643 1.78564 282.989 1.54508 +CD -1.00139 -0.068504 -2.09686 0.0336036 0.0245616 0.0336036 -1.93264 -0.127421 -2.32967 0.0336036 0.0240784 0.0336036 0 0 0 0 0 0 +LA 0.907026 +SE +ET CO +ID 5254 +TI 1760667401.399128913 +CC NStripHits 6 +PQ 5.33176 +SQ 2 +CT 0.634622 0.365378 +TL 1 +TE 263.843 +CE 194.242 1.12373 263.843 1.77437 +CD -1.00139 0.167136 -1.16561 0.0336036 0.0275898 0.0336036 -1.35061 -0.0297982 -1.28202 0.0336036 0.0248012 0.0336036 0 0 0 0 0 0 +LA 0.417479 +SE +ID 5255 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 196.245117) +BD GR Veto +PQ 1.43706 +SE +ET PH +ID 5256 +TI 1760667401.399184226 +CC NStripHits 2 +PE 211.997 +PP 3.07283 -1.10417 -4.19217 +PW 0 +SE +ET UN +ID 5257 +TI 1760667401.399203062 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 639.136 +SE +ET PH +ID 5258 +TI 1760667401.399246931 +CC NStripHits 3 +PE 435.633 +PP -1.1178 -1.13505 -2.56248 +PW 0 +SE +ET PH +ID 5259 +TI 1760667401.399267911 +CC NStripHits 2 +PE 95.7873 +PP -2.86389 -0.349569 -1.28202 +PW 0 +SE +ET PH +ID 5260 +TI 1760667401.399285793 +CC NStripHits 2 +PE 91.1641 +PP -1.00139 -0.766479 -2.32967 +PW 0 +SE +ID 5261 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 131.465737) +BD GR Veto +PQ 2.07505 +SE +ET PH +ID 5262 +TI 1760667401.399327993 +CC NStripHits 2 +PE 127.19 +PP 1.55955 0.206203 -2.32967 +PW 0 +SE +ET CO +ID 5263 +TI 1760667401.399346351 +CC NStripHits 4 +PQ 0.518251 +SQ 2 +CT 0 1 +TL 1 +TE 150.897 +CE 251.375 0.90262 150.897 0.940108 +CD -2.86389 0.134025 -1.51483 0.0336036 0.02684 0.0336036 -2.9803 0.293212 -1.28202 0.0336036 0.0381977 0.0336036 0 0 0 0 0 0 +LA 0.30511 +SE +ET CO +ID 5264 +TI 1760667401.399369716 +CC NStripHits 8 +PQ 0.722769 +SQ 2 +CT 0.674186 0.325814 +TL 1 +TE 306.335 +CE 184.276 0.907941 306.335 1.32734 +CD -1.2342 -0.705587 -2.67889 0.0336036 0.0208956 0.0336036 -1.81623 -0.943777 -3.02811 0.0336036 0.0198092 0.0336036 0 0 0 0 0 0 +LA 0.719339 +SE +ET PH +ID 5265 +TI 1760667401.399424791 +CC NStripHits 2 +PE 210.997 +PP 0.861109 0.203979 1.04611 +PW 0 +SE +ET PH +ID 5266 +TI 1760667401.399446725 +CC NStripHits 2 +PE 191.827 +PP 2.4908 0.365814 -3.02811 +PW 0 +SE +ID 5267 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 0.162503 +SE +ET UN +ID 5268 +TI 1760667401.399531126 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 342.995 +SE +ET CO +ID 5269 +TI 1760667401.399580717 +CC NStripHits 8 +PQ 0.565409 +SQ 3 +CT 0.000366515 0.0154233 +TL 1 +TE 259.878 +CE 398.039 1.40706 259.878 1.15639 +CD 0.511891 0.277065 -1.28202 0.0336036 0.0363847 0.0336036 -0.884984 -1.14393 -2.67889 0.0336036 0.0288116 0.0336036 0 0 0 0 0 0 +LA 0.73651 +SE +ET CO +ID 5270 +TI 1760667401.399632215 +CC NStripHits 8 +PQ 13.5782 +SQ 4 +CT 0.311436 0.312185 +TL 1 +TE 420.287 +CE 242.528 1.79995 420.287 1.22928 +CD 3.42205 -0.404813 -3.37733 0.0336036 0.0224117 0.0336036 3.65486 -0.459728 -3.02811 0.0336036 0.022004 0.0336036 0 0 0 0 0 0 +LA 0.213805 +SE +ID 5271 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.327248) +QA StripPairing (Best reduced chi square is not below 25 (40.632014)) (GR Hit: Detector ID 0 and Energy 115.767612) +BD GR Veto +PQ 40.632 +SE +ET UN +ID 5272 +TI 1760667401.399693250 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5273 +TI 1760667401.399705410 +CC NStripHits 3 +PE 94.689 +PP 1.21033 0.280628 -2.7953 +PW 0 +SE +ET PH +ID 5274 +TI 1760667401.399729251 +CC NStripHits 2 +PE 51.9217 +PP 0.511891 -0.836013 -4.07577 +PW 0 +SE +ET PH +ID 5275 +TI 1760667401.399747848 +CC NStripHits 4 +PE 486.935 +PP -2.28186 -0.384343 1.86095 +PW 0 +SE +ET PH +ID 5276 +TI 1760667401.399780511 +CC NStripHits 2 +PE 359.939 +PP -2.16545 -0.514077 0.929703 +PW 0 +SE +ET UN +ID 5277 +TI 1760667401.399810791 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 197.009 +SE +ET PH +ID 5278 +TI 1760667401.399837017 +CC NStripHits 2 +PE 148.745 +PP 3.30564 -0.593633 0.580484 +PW 0 +SE +ET UN +ID 5279 +TI 1760667401.399856328 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +CC NStripHits 12 +PE 0 +SE +ID 5280 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 46.968026) (GR Hit: Detector ID 0 and Energy 96.519784) +BD GR Veto +PQ 1.67249 +SE +ET PH +ID 5281 +TI 1760667401.399940967 +CC NStripHits 2 +PE 398.835 +PP 3.77127 -0.399733 -0.816391 +PW 0 +SE +ID 5282 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.467448) +BD GR Veto +PQ 4.78798 +SE +ET PH +ID 5283 +TI 1760667401.399981260 +CC NStripHits 2 +PE 52.987 +PP 1.55955 -1.00409 -0.816391 +PW 0 +SE +ET UN +ID 5284 +TI 1760667401.399998903 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 462.054 +SE +ET PH +ID 5285 +TI 1760667401.400032520 +CC NStripHits 2 +PE 184.239 +PP -2.86389 0.342937 0.347672 +PW 0 +SE +ET PH +ID 5286 +TI 1760667401.400050401 +CC NStripHits 2 +PE 252.678 +PP 0.395484 -0.429312 1.97736 +PW 0 +SE +ET UN +ID 5287 +TI 1760667401.400072813 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 63.4966 +SE +ID 5288 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 1.42321 +SE +ET PH +ID 5289 +TI 1760667401.400134801 +CC NStripHits 5 +PE 481.588 +PP -1.2342 0.20895 -4.54139 +PW 0 +SE +ID 5290 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 316.669874) +BD GR Veto +PQ 1.68638 +SE +ID 5291 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.507301) (Strip hit removed with energy 8.679788) (Strip hit removed with energy 14.737264) +BD GR Veto +PQ 0.317514 +SE +ID 5292 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (233.629303)) (GR Hit: Detector ID 0 and Energy 661.443345) +BD GR Veto +PQ 233.629 +SE +ET CO +ID 5293 +TI 1760667401.400249958 +CC NStripHits 4 +PQ 15.6947 +SQ 2 +CT 0 1 +TL 1 +TE 35.9707 +CE 223.05 1.42582 35.9707 1.31929 +CD 1.09392 -0.47953 -0.816391 0.0336036 0.0219173 0.0336036 -0.186547 -0.367318 -1.51483 0.0336036 0.022698 0.0336036 0 0 0 0 0 0 +LA 1.46288 +SE +ET PH +ID 5294 +TI 1760667401.400290012 +CC NStripHits 3 +PE 273.982 +PP -2.16545 0.253089 -4.42498 +PW 0 +SE +ET PH +ID 5295 +TI 1760667401.400310993 +CC NStripHits 2 +PE 106.743 +PP 4.3533 -0.387351 -2.21327 +PW 0 +SE +ET PH +ID 5296 +TI 1760667401.400328159 +CC NStripHits 4 +PE 298.19 +PP -0.652172 -0.761284 -2.44608 +PW 0 +SE +ET UN +ID 5297 +TI 1760667401.400351762 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET PH +ID 5298 +TI 1760667401.400384426 +CC NStripHits 2 +PE 110.322 +PP -1.69983 0.359192 -2.7953 +PW 0 +SE +ET UN +ID 5299 +TI 1760667401.400403976 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 352.158 +SE +ET PH +ID 5300 +TI 1760667401.400432109 +CC NStripHits 2 +PE 352.346 +PP -2.63108 0.252152 1.04611 +PW 0 +SE +ET PH +ID 5301 +TI 1760667401.400453090 +CC NStripHits 2 +PE 88.4459 +PP -1.1178 0.342128 -4.42498 +PW 0 +SE +ET PH +ID 5302 +TI 1760667401.400471925 +CC NStripHits 2 +PE 91.316 +PP -1.69983 -0.190195 0.231266 +PW 0 +SE +ID 5303 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.472082) +QA StripPairing (GR Hit: Detector ID 0 and Energy 105.264021) +BD GR Veto +PQ 0.417487 +SE +ET CO +ID 5304 +TI 1760667401.400524139 +CC NStripHits 8 +PQ 4.28859 +SQ 3 +CT 0.0451778 3.09262 +TL 1 +TE 460.209 +CE 200.583 1.47209 460.209 2.04408 +CD 3.18923 -0.29573 -0.234359 0.0336036 0.0231743 0.0336036 3.07283 -0.443071 -0.583578 0.0336036 0.0221355 0.0336036 0 0 0 0 0 0 +LA 0.3965 +SE +ID 5305 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 145.841206) +BD GR Veto +PQ 0.781849 +SE +ET PH +ID 5306 +TI 1760667401.400580406 +CC NStripHits 3 +PE 191.673 +PP 3.77127 0.2871 2.21017 +PW 0 +SE +ET PH +ID 5307 +TI 1760667401.400601387 +CC NStripHits 2 +PE 86.3567 +PP 0.395484 0.0118934 -3.14452 +PW 0 +SE +ET PH +ID 5308 +TI 1760667401.400621891 +CC NStripHits 2 +PE 84.0522 +PP 0.0462656 0.127963 -2.32967 +PW 0 +SE +ET PH +ID 5309 +TI 1760667401.400642156 +CC NStripHits 2 +PE 153.429 +PP -2.04905 -0.292058 -2.7953 +PW 0 +SE +ET PH +ID 5310 +TI 1760667401.400660037 +CC NStripHits 2 +PE 29.4753 +PP 2.02517 -0.687176 -1.51483 +PW 0 +SE +ET PH +ID 5311 +TI 1760667401.419280290 +CC NStripHits 3 +PE 302.711 +PP -0.0701406 -0.798153 -4.30858 +PW 0 +SE +ID 5312 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 320.104125) +BD GR Veto +PQ 2.342 +SE +ET CO +ID 5313 +TI 1760667401.419367074 +CC NStripHits 4 +PQ 22.4225 +SQ 2 +CT 0 1 +TL 1 +TE 24.0363 +CE 432.773 1.40995 24.0363 0.891477 +CD -2.28186 -0.774232 -2.32967 0.0336036 0.0202734 0.0336036 -0.652172 -0.992244 -3.26092 0.0336036 0.0200492 0.0336036 0 0 0 0 0 0 +LA 1.88961 +SE +ET PH +ID 5314 +TI 1760667401.419404745 +CC NStripHits 3 +PE 110.62 +PP 2.84002 0.360791 1.86095 +PW 0 +SE +ET UN +ID 5315 +TI 1760667401.419427871 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.8246 +SE +ID 5316 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 438.105708) +BD GR Veto +PQ 0.611367 +SE +ET PH +ID 5317 +TI 1760667401.419452667 +CC NStripHits 2 +PE 154.571 +PP 0.395484 -0.193442 -0.350766 +PW 0 +SE +ET PH +ID 5318 +TI 1760667401.419472932 +CC NStripHits 3 +PE 415.285 +PP -0.884984 -0.821051 -3.61014 +PW 0 +SE +ET PH +ID 5319 +TI 1760667401.419498682 +CC NStripHits 2 +PE 188.95 +PP -0.884984 -1.1404 2.21017 +PW 0 +SE +ET PH +ID 5320 +TI 1760667401.419517993 +CC NStripHits 3 +PE 191.089 +PP 2.25798 0.0216687 -3.49373 +PW 0 +SE +ET PH +ID 5321 +TI 1760667401.419539213 +CC NStripHits 2 +PE 214.833 +PP 0.0462656 -0.991678 -3.72655 +PW 0 +SE +ID 5322 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 245.469423) +BD GR Veto +PQ 5.92342 +SE +ID 5323 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (225.509077)) (GR Hit: Detector ID 0 and Energy 189.706786) +BD GR Veto +PQ 225.509 +SE +ET PH +ID 5324 +TI 1760667401.419602155 +CC NStripHits 8 +PE 527.393 +PP 3.07283 0.263643 -1.74764 +PW 0 +SE +ET PH +ID 5325 +TI 1760667401.419642448 +CC NStripHits 2 +PE 349.277 +PP 2.95642 -0.503937 -4.30858 +PW 0 +SE +ET UN +ID 5326 +TI 1760667401.419661283 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 196.19 +SE +ET PH +ID 5327 +TI 1760667401.419694185 +CC NStripHits 2 +PE 167.815 +PP 2.72361 -0.61851 -0.234359 +PW 0 +SE +ET PH +ID 5328 +TI 1760667401.419712305 +CC NStripHits 3 +PE 420.787 +PP -2.16545 -0.792694 0.580484 +PW 0 +SE +ET UN +ID 5329 +TI 1760667401.419761896 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 604.287 +SE +ET PH +ID 5330 +TI 1760667401.419789552 +CC NStripHits 3 +PE 466.805 +PP 3.18923 -0.99921 1.27892 +PW 0 +SE +ET PH +ID 5331 +TI 1760667401.419810295 +CC NStripHits 4 +PE 241.03 +PP 2.37439 -0.844654 1.86095 +PW 0 +SE +ID 5332 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.355659) (Strip hit removed with energy 8.752565) +QA StripPairing (Best reduced chi square is not below 25 (490.261730)) (GR Hit: Detector ID 0 and Energy 345.968139) +BD GR Veto +PQ 490.262 +SE +ET CO +ID 5333 +TI 1760667401.419860839 +CC NStripHits 8 +PQ 5.83371 +SQ 3 +CT 0.0241734 0.0647733 +TL 1 +TE 366.789 +CE 291.664 1.49965 366.789 1.54088 +CD -0.884984 0.352923 2.21017 0.0336036 0.0300779 0.0336036 1.79236 -0.983433 -1.86405 0.0336036 0.0199971 0.0336036 0 0 0 0 0 0 +LA 2.19713 +SE +ID 5334 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 222.756439) +BD GR Veto +PQ 2.98119 +SE +ET UN +ID 5335 +TI 1760667401.419942617 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 161.84 +SE +ET UN +ID 5336 +TI 1760667401.419975996 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5337 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 5338 +TI 1760667401.420000553 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 242.522 +SE +ET PH +ID 5339 +TI 1760667401.420028209 +CC NStripHits 2 +PE 21.3859 +PP 2.14158 -1.16052 -3.14452 +PW 0 +SE +ET PH +ID 5340 +TI 1760667401.420046567 +CC NStripHits 2 +PE 69.4196 +PP 1.55955 -0.0287004 -3.72655 +PW 0 +SE +ET PH +ID 5341 +TI 1760667401.420064926 +CC NStripHits 3 +PE 408.938 +PP -1.35061 -0.277353 1.27892 +PW 0 +SE +ET UN +ID 5342 +TI 1760667401.420137405 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 479.024 +SE +ID 5343 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 58.778473) +BD GR Veto +PQ 0.331161 +SE +ET PH +ID 5344 +TI 1760667401.420183897 +CC NStripHits 2 +PE 92.8882 +PP -1.69983 0.21043 -4.30858 +PW 0 +SE +ET UN +ID 5345 +TI 1760667401.420210599 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 660.934 +SE +ET PH +ID 5346 +TI 1760667401.420257568 +CC NStripHits 2 +PE 56.1895 +PP 4.3533 -0.0433505 -3.49373 +PW 0 +SE +ID 5347 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.552035) (Strip hit removed with energy 5.894796) (Strip hit removed with energy 18.699644) +BD GR Veto +PQ 0.115325 +SE +ET UN +ID 5348 +TI 1760667401.420301198 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5349 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (150.575607)) (GR Hit: Detector ID 0 and Energy 605.421879) +BD GR Veto +PQ 150.576 +SE +ET PH +ID 5350 +TI 1760667401.420320272 +CC NStripHits 3 +PE 370.621 +PP -0.652172 -1.09597 -3.26092 +PW 0 +SE +ET PH +ID 5351 +TI 1760667401.420343637 +CC NStripHits 2 +PE 53.5053 +PP 2.25798 0.359288 -0.932797 +PW 0 +SE +ET CO +ID 5352 +TI 1760667401.420358896 +CC NStripHits 5 +PQ 1.36744 +SQ 2 +CT 0 1 +TL 1 +TE 50.9275 +CE 128.051 1.05696 50.9275 0.91336 +CD -2.9803 -0.633162 -1.98045 0.0336036 0.0214067 0.0336036 -2.86389 -0.546647 -1.63123 0.0336036 0.0216375 0.0336036 0 0 0 0 0 0 +LA 0.378141 +SE +ET PH +ID 5353 +TI 1760667401.420387268 +CC NStripHits 2 +PE 122.354 +PP -2.28186 0.287296 1.04611 +PW 0 +SE +ET PH +ID 5354 +TI 1760667401.420404911 +CC NStripHits 2 +PE 67.4336 +PP 0.861109 -1.07363 -0.350766 +PW 0 +SE +ID 5355 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 15.855246) +BD GR Veto +PQ +SE +ET PH +ID 5356 +TI 1760667401.420434236 +CC NStripHits 6 +PE 439.268 +PP -1.2342 -0.424279 -0.467172 +PW 0 +SE +ET PH +ID 5357 +TI 1760667401.420471906 +CC NStripHits 2 +PE 175.818 +PP 1.55955 -0.928565 1.74455 +PW 0 +SE +ET UN +ID 5358 +TI 1760667401.420495510 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 212.087 +SE +ET CO +ID 5359 +TI 1760667401.420522212 +CC NStripHits 7 +PQ 0.0756003 +SQ 2 +CT 0.513801 0.486199 +TL 1 +TE 221.166 +CE 214.168 1.31736 221.166 1.10975 +CD 1.21033 -0.183375 -3.72655 0.0336036 0.023599 0.0336036 2.25798 -0.993848 -4.19217 0.0336036 0.0200607 0.0336036 0 0 0 0 0 0 +LA 1.40401 +SE +ET PH +ID 5360 +TI 1760667401.420562982 +CC NStripHits 3 +PE 123.482 +PP 1.44314 0.306684 -1.98045 +PW 0 +SE +ET PH +ID 5361 +TI 1760667401.420584678 +CC NStripHits 3 +PE 103.273 +PP 1.67595 -0.803522 -1.51483 +PW 0 +SE +ID 5362 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (3350.780296)) (GR Hit: Detector ID 0 and Energy 243.935709) +BD GR Veto +PQ 3350.78 +SE +ET PH +ID 5363 +TI 1760667401.420614480 +CC NStripHits 2 +PE 83.0727 +PP 0.395484 -0.335735 -3.26092 +PW 0 +SE +ET UN +ID 5364 +TI 1760667401.420633792 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 38.6782 +SE +ET UN +ID 5365 +TI 1760667401.420652866 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 484.342 +SE +ET PH +ID 5366 +TI 1760667401.420687675 +CC NStripHits 3 +PE 83.7372 +PP 3.30564 -0.396494 0.929703 +PW 0 +SE +ET PH +ID 5367 +TI 1760667401.420708656 +CC NStripHits 3 +PE 285.745 +PP -0.652172 -0.0962807 -3.37733 +PW 0 +SE +ET PH +ID 5368 +TI 1760667401.420749902 +CC NStripHits 3 +PE 267.881 +PP -1.58342 -0.963142 -0.467172 +PW 0 +SE +ET PH +ID 5369 +TI 1760667401.420786857 +CC NStripHits 3 +PE 272.756 +PP -2.16545 0.354942 -0.816391 +PW 0 +SE +ID 5370 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (55.381874)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 31.436825)) (GR Hit: Detector ID 0 and Energy 215.653582) +BD GR Veto +PQ 55.3819 +SE +ID 5371 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.866880) +QA StripPairing (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 147.308539) (GR Hit: Detector ID 0 and Energy 159.151359) +BD GR Veto +PQ 22.9525 +SE +ID 5372 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.879208) +QA StripPairing (Best reduced chi square is not below 25 (188.641311)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 121.411060)) (GR Hit: Detector ID 0 and Energy 589.988064) +BD GR Veto +PQ 188.641 +SE +ET PH +ID 5373 +TI 1760667401.420935392 +CC NStripHits 2 +PE 462.49 +PP -2.16545 0.210738 1.86095 +PW 0 +SE +ID 5374 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 112.420509) (GR Hit: Detector ID 0 and Energy 88.911860) +BD GR Veto +PQ 1.05245 +SE +ET UN +ID 5375 +TI 1760667401.440585374 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 5376 +TI 1760667401.440634012 +CC NStripHits 5 +PQ 3.55594 +SQ 2 +CT 0.743247 0.256753 +TL 1 +TE 458.909 +CE 200.567 1.27824 458.909 1.12025 +CD 1.09392 -1.02546 0.696891 0.0336036 0.0204534 0.0336036 2.02517 0.112684 -0.234359 0.0336036 0.0264153 0.0336036 0 0 0 0 0 0 +LA 1.74064 +SE +ET PH +ID 5377 +TI 1760667401.440675258 +CC NStripHits 2 +PE 164.563 +PP 0.977516 0.262823 -2.32967 +PW 0 +SE +ET PH +ID 5378 +TI 1760667401.440694093 +CC NStripHits 3 +PE 353.564 +PP -2.86389 0.194619 -0.699984 +PW 0 +SE +ID 5379 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1399.849735)) (GR Hit: Detector ID 0 and Energy 165.851856) +BD GR Veto +PQ 1399.85 +SE +ID 5380 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 99.741810) +BD GR Veto +PQ 0.305278 +SE +ET UN +ID 5381 +TI 1760667401.440743207 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 44.4589 +SE +ET PH +ID 5382 +TI 1760667401.440762519 +CC NStripHits 3 +PE 446.698 +PP 1.09392 0.0771742 -2.21327 +PW 0 +SE +ET PH +ID 5383 +TI 1760667401.440784931 +CC NStripHits 2 +PE 182.839 +PP 0.162672 0.0592789 -3.37733 +PW 0 +SE +ID 5384 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 41.276688) +BD GR Veto +PQ 9.3079 +SE +ET PH +ID 5385 +TI 1760667401.440819025 +CC NStripHits 2 +PE 91.9183 +PP -1.58342 -1.03585 0.813297 +PW 0 +SE +ET CO +ID 5386 +TI 1760667401.440837383 +CC NStripHits 4 +PQ 21.9488 +SQ 2 +CT 0 1 +TL 1 +TE 108.27 +CE 319.323 1.44622 108.27 0.916645 +CD -1.81623 0.350979 1.39533 0.0336036 0.0308754 0.0336036 -1.35061 0.344595 1.97736 0.0336036 0.0331917 0.0336036 0 0 0 0 0 0 +LA 0.745387 +SE +ET PH +ID 5387 +TI 1760667401.440872669 +CC NStripHits 3 +PE 120.341 +PP -1.1178 0.218097 0.696891 +PW 0 +SE +ET PH +ID 5388 +TI 1760667401.440895795 +CC NStripHits 2 +PE 229.471 +PP 0.744703 0.20473 -1.98045 +PW 0 +SE +ET PH +ID 5389 +TI 1760667401.440924167 +CC NStripHits 2 +PE 107.843 +PP 1.09392 0.0117572 1.86095 +PW 0 +SE +ID 5390 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 122.344227) +BD GR Veto +PQ 16.9915 +SE +ID 5391 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.534588) (Strip hit removed with energy 16.056927) +BD GR Veto +PQ +SE +ET PH +ID 5392 +TI 1760667401.440964698 +CC NStripHits 2 +PE 56.5916 +PP 4.23689 0.35279 -3.95936 +PW 0 +SE +ET PH +ID 5393 +TI 1760667401.440982103 +CC NStripHits 2 +PE 94.1369 +PP 1.44314 -0.1594 -2.67889 +PW 0 +SE +ET PH +ID 5394 +TI 1760667401.440999746 +CC NStripHits 3 +PE 338.664 +PP 1.44314 -0.00859294 -3.02811 +PW 0 +SE +ET CO +ID 5395 +TI 1760667401.441027402 +CC NStripHits 5 +PQ 2.41142 +SQ 2 +CT 0.664204 0.335796 +TL 1 +TE 318.743 +CE 179.051 0.934545 318.743 1.05887 +CD -1.00139 -0.559462 -1.28202 0.0336036 0.0216221 0.0336036 -1.58342 -0.791953 -1.74764 0.0336036 0.0202196 0.0336036 0 0 0 0 0 0 +LA 0.780777 +SE +ET PH +ID 5396 +TI 1760667401.441061735 +CC NStripHits 2 +PE 663.017 +PP -2.28186 -0.426966 -4.42498 +PW 0 +SE +ET PH +ID 5397 +TI 1760667401.441086292 +CC NStripHits 3 +PE 282.243 +PP 0.861109 -0.324693 -1.16561 +PW 0 +SE +ET PH +ID 5398 +TI 1760667401.441110134 +CC NStripHits 2 +PE 23.4102 +PP -2.74748 -0.457025 -3.37733 +PW 0 +SE +ET PH +ID 5399 +TI 1760667401.441144227 +CC NStripHits 2 +PE 164.402 +PP 0.395484 5.16416e-05 -1.86405 +PW 0 +SE +ID 5400 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (118.985071)) (GR Hit: Detector ID 0 and Energy 148.946249) +BD GR Veto +PQ 118.985 +SE +ET PH +ID 5401 +TI 1760667401.441170215 +CC NStripHits 2 +PE 115.611 +PP -0.652172 -0.976874 -3.84295 +PW 0 +SE +ET CO +ID 5402 +TI 1760667401.441189289 +CC NStripHits 5 +PQ 0.16242 +SQ 2 +CT 0.56569 0.43431 +TL 1 +TE 144.771 +CE 171.124 0.967472 144.771 1.08052 +CD -0.768578 -0.0964391 -3.95936 0.0336036 0.0242877 0.0336036 -0.302953 -0.697913 -4.19217 0.0336036 0.0209981 0.0336036 0 0 0 0 0 0 +LA 0.795473 +SE +ET PH +ID 5403 +TI 1760667401.441255331 +CC NStripHits 2 +PE 468.351 +PP 3.07283 -0.486681 -4.42498 +PW 0 +SE +ET PH +ID 5404 +TI 1760667401.441274642 +CC NStripHits 2 +PE 99.6643 +PP -0.186547 -0.503949 1.97736 +PW 0 +SE +ET PH +ID 5405 +TI 1760667401.441292047 +CC NStripHits 2 +PE 124.241 +PP -2.86389 0.306736 -3.14452 +PW 0 +SE +ET PH +ID 5406 +TI 1760667401.441312789 +CC NStripHits 2 +PE 154.079 +PP 3.30564 -0.01466 0.580484 +PW 0 +SE +ET CO +ID 5407 +TI 1760667401.441330194 +CC NStripHits 5 +PQ 3.33759 +SQ 2 +CT 0 1 +TL 1 +TE 138.895 +CE 216.744 1.05187 138.895 0.920189 +CD 3.30564 -1.10767 -4.54139 0.0336036 0.0280788 0.0336036 1.79236 -0.170568 -2.44608 0.0336036 0.0236821 0.0336036 0 0 0 0 0 0 +LA 2.74927 +SE +ET CO +ID 5408 +TI 1760667401.441365242 +CC NStripHits 11 +PQ 8.1705 +SQ 4 +CT 0.0234021 0.0255871 +TL 1 +TE 363.075 +CE 299.377 2.44717 363.075 0.919568 +CD 1.67595 -0.0954933 2.55939 0.0336036 0.0242951 0.0336036 -1.81623 -0.170857 1.27892 0.0336036 0.0236802 0.0336036 0 0 0 0 0 0 +LA 0.40728 +SE +ET UN +ID 5409 +TI 1760667401.441433668 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.1837 +SE +ID 5410 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 77.501014) +BD GR Veto +PQ 0.145695 +SE +ID 5411 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (370.512335)) (GR Hit: Detector ID 0 and Energy 161.871795) +BD GR Veto +PQ 370.512 +SE +ID 5412 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.787518) +QA StripPairing (Best reduced chi square is not below 25 (71.834517)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 108.329780) (GR Hit: Detector ID 0 and Energy 525.754388) +BD GR Veto +PQ 71.8345 +SE +ET PH +ID 5413 +TI 1760667401.441488742 +CC NStripHits 2 +PE 340.195 +PP 4.00408 -0.549519 -0.00154687 +PW 0 +SE +ET PH +ID 5414 +TI 1760667401.441508293 +CC NStripHits 3 +PE 251.023 +PP 3.07283 -0.661581 -0.699984 +PW 0 +SE +ET PH +ID 5415 +TI 1760667401.441530466 +CC NStripHits 2 +PE 143.103 +PP 0.0462656 -1.02664 -1.39842 +PW 0 +SE +ID 5416 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 205.384369) +BD GR Veto +PQ 0.044871 +SE +ET UN +ID 5417 +TI 1760667401.441556453 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5418 +TI 1760667401.441566467 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 210.506 +SE +ET PH +ID 5419 +TI 1760667401.441596269 +CC NStripHits 3 +PE 282.711 +PP 1.67595 -0.440752 0.929703 +PW 0 +SE +ET PH +ID 5420 +TI 1760667401.441616058 +CC NStripHits 3 +PE 477.739 +PP -2.28186 -0.497626 -0.816391 +PW 0 +SE +ID 5421 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.601221) +BD GR Veto +PQ +SE +ID 5422 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.164738) +BD GR Veto +PQ 2.01115 +SE +ET PH +ID 5423 +TI 1760667401.441652297 +CC NStripHits 2 +PE 380.748 +PP -0.884984 0.35788 0.464078 +PW 0 +SE +ET PH +ID 5424 +TI 1760667401.441671609 +CC NStripHits 3 +PE 79.0174 +PP 0.861109 0.36386 -3.84295 +PW 0 +SE +ID 5425 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.874328) +QA StripPairing (Best reduced chi square is not below 25 (97.661867)) +BD GR Veto +PQ 97.6619 +SE +ET PH +ID 5426 +TI 1760667401.441709995 +CC NStripHits 2 +PE 173.952 +PP -0.302953 -0.643578 -3.95936 +PW 0 +SE +ID 5427 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 47.033323) +BD GR Veto +PQ 6.92744 +SE +ET PH +ID 5428 +TI 1760667401.441737174 +CC NStripHits 2 +PE 41.3849 +PP 2.6072 0.207424 2.55939 +PW 0 +SE +ET UN +ID 5429 +TI 1760667401.441755294 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.3338 +SE +ET PH +ID 5430 +TI 1760667401.441773653 +CC NStripHits 2 +PE 50.1075 +PP -0.535766 0.0547707 -0.467172 +PW 0 +SE +ET PH +ID 5431 +TI 1760667401.441796779 +CC NStripHits 2 +PE 661.657 +PP -1.93264 0.184547 0.231266 +PW 0 +SE +ID 5432 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.390420) +QA StripPairing (GR Hit: Detector ID 0 and Energy 163.682372) +BD GR Veto +PQ 14.0695 +SE +ET PH +ID 5433 +TI 1760667401.441860914 +CC NStripHits 3 +PE 139.841 +PP 0.977516 -0.596363 -2.9117 +PW 0 +SE +ET UN +ID 5434 +TI 1760667401.441893339 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.4871 +SE +ID 5435 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 25.302654)) +BD GR Veto +PQ 0.0156432 +SE +ET PH +ID 5436 +TI 1760667401.441934108 +CC NStripHits 2 +PE 115.943 +PP -1.81623 0.369831 -2.32967 +PW 0 +SE +ET CO +ID 5437 +TI 1760667401.441951990 +CC NStripHits 8 +PQ 0.578809 +SQ 3 +CT 0.0220659 0.359118 +TL 1 +TE 82.4346 +CE 582.236 1.60999 82.4346 0.929841 +CD 2.14158 0.127574 -0.350766 0.0336036 0.0266973 0.0336036 1.79236 -0.369727 -0.117953 0.0336036 0.0226797 0.0336036 0 0 0 0 0 0 +LA 0.469591 +SE +ET UN +ID 5438 +TI 1760667401.441996097 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.444 +SE +ET PH +ID 5439 +TI 1760667401.462384223 +CC NStripHits 2 +PE 440.347 +PP -1.46702 -0.674684 -0.699984 +PW 0 +SE +ET PH +ID 5440 +TI 1760667401.462466716 +CC NStripHits 2 +PE 90.8742 +PP -2.04905 -0.0882869 -1.39842 +PW 0 +SE +ET CO +ID 5441 +TI 1760667401.462501049 +CC NStripHits 4 +PQ 2.87663 +SQ 2 +CT 0 1 +TL 1 +TE 72.9208 +CE 128.04 1.37594 72.9208 0.936908 +CD -0.302953 0.1622 0.813297 0.0336036 0.0274717 0.0336036 -0.535766 -0.311146 0.696891 0.0336036 0.0231281 0.0336036 0 0 0 0 0 0 +LA 0.540193 +SE +ID 5442 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (5015.694165)) (GR Hit: Detector ID 0 and Energy 274.788240) +BD GR Veto +PQ 5015.69 +SE +ID 5443 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.910253) (Strip hit removed with energy 12.133912) +QA StripPairing (Best reduced chi square is not below 25 (127.982206)) (GR Hit: Detector ID 0 and Energy 453.695534) +BD GR Veto +PQ 127.982 +SE +ET UN +ID 5444 +TI 1760667401.462553739 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 679.541 +SE +ET PH +ID 5445 +TI 1760667401.462602138 +CC NStripHits 2 +PE 182.777 +PP 1.90877 0.0441848 0.347672 +PW 0 +SE +ET PH +ID 5446 +TI 1760667401.462635517 +CC NStripHits 2 +PE 55.6662 +PP -1.1178 -1.06972 -0.699984 +PW 0 +SE +ET PH +ID 5447 +TI 1760667401.462655782 +CC NStripHits 2 +PE 287.076 +PP 1.79236 0.00510658 -0.699984 +PW 0 +SE +ET UN +ID 5448 +TI 1760667401.462682962 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1726 +SE +ID 5449 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 196.610829) +BD GR Veto +PQ 0.517647 +SE +ET UN +ID 5450 +TI 1760667401.462726593 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.87 +SE +ET PH +ID 5451 +TI 1760667401.462744235 +CC NStripHits 2 +PE 106.924 +PP -2.74748 0.279259 -3.84295 +PW 0 +SE +ET PH +ID 5452 +TI 1760667401.462763786 +CC NStripHits 2 +PE 108.624 +PP 1.67595 0.358265 -0.583578 +PW 0 +SE +ET PH +ID 5453 +TI 1760667401.462782144 +CC NStripHits 2 +PE 76.0711 +PP -1.58342 -1.01845 0.464078 +PW 0 +SE +ET UN +ID 5454 +TI 1760667401.462802410 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 272.503 +SE +ET CO +ID 5455 +TI 1760667401.462840318 +CC NStripHits 4 +PQ 2.9955 +SQ 2 +CT 0 1 +TL 1 +TE 82.8809 +CE 380.516 1.60956 82.8809 0.936072 +CD 0.162672 -1.15586 -0.350766 0.0336036 0.0259584 0.0336036 1.09392 0.355917 -4.19217 0.0336036 0.028763 0.0336036 0 0 0 0 0 0 +LA 4.23191 +SE +ET PH +ID 5456 +TI 1760667401.462889432 +CC NStripHits 2 +PE 118.615 +PP -1.69983 -0.0186157 -3.37733 +PW 0 +SE +ET PH +ID 5457 +TI 1760667401.462912082 +CC NStripHits 2 +PE 98.3025 +PP 1.44314 -0.643702 -2.21327 +PW 0 +SE +ET CO +ID 5458 +TI 1760667401.462928533 +CC NStripHits 7 +PQ 46.8993 +SQ 3 +CT 0.417317 0.603978 +TL 1 +TE 101.475 +CE 321.451 1.4673 101.475 1.30554 +CD 4.00408 -0.771042 1.51173 0.0336036 0.0202915 0.0336036 3.88767 -0.850509 1.04611 0.0336036 0.0199857 0.0336036 0 0 0 0 0 0 +LA 0.486486 +SE +ID 5459 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 272.062360) +BD GR Veto +PQ 0.644052 +SE +ID 5460 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.112142) +BD GR Veto +PQ 4.05387 +SE +ET UN +ID 5461 +TI 1760667401.462989568 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 661.057 +SE +ET UN +ID 5462 +TI 1760667401.463055372 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 8 +PE 0 +SE +ET UN +ID 5463 +TI 1760667401.463104009 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 203.552 +SE +ET PH +ID 5464 +TI 1760667401.463136911 +CC NStripHits 2 +PE 113.287 +PP -2.9803 -0.641958 -3.61014 +PW 0 +SE +ET CO +ID 5465 +TI 1760667401.463155269 +CC NStripHits 7 +PQ 0.790062 +SQ 2 +CT 0 1 +TL 1 +TE 23.2039 +CE 426.36 1.35479 23.2039 0.894594 +CD 3.30564 -1.16034 -3.14452 0.0336036 0.024364 0.0336036 3.88767 -0.50701 -3.84295 0.0336036 0.0217656 0.0336036 0 0 0 0 0 0 +LA 1.11956 +SE +ET PH +ID 5466 +TI 1760667401.463234186 +CC NStripHits 4 +PE 666.973 +PP 1.09392 0.199855 -1.98045 +PW 0 +SE +ET PH +ID 5467 +TI 1760667401.463259696 +CC NStripHits 3 +PE 323.616 +PP 3.07283 -0.0366722 1.39533 +PW 0 +SE +ET PH +ID 5468 +TI 1760667401.463285684 +CC NStripHits 2 +PE 37.003 +PP 2.25798 0.3712 -0.00154687 +PW 0 +SE +ET PH +ID 5469 +TI 1760667401.463305234 +CC NStripHits 2 +PE 121.455 +PP -2.51467 -0.17087 0.580484 +PW 0 +SE +ET PH +ID 5470 +TI 1760667401.463325262 +CC NStripHits 2 +PE 31.7052 +PP 3.65486 -0.801365 -1.74764 +PW 0 +SE +ET PH +ID 5471 +TI 1760667401.463351488 +CC NStripHits 2 +PE 661.036 +PP -1.2342 0.10237 1.16252 +PW 0 +SE +ET UN +ID 5472 +TI 1760667401.463420152 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET CO +ID 5473 +TI 1760667401.463475704 +CC NStripHits 4 +PQ 1.22905 +SQ 2 +CT 0 1 +TL 1 +TE 110.181 +CE 184.956 0.947585 110.181 0.915886 +CD 0.0462656 0.368362 2.44298 0.0336036 0.0221685 0.0336036 0.279078 -0.105731 2.32658 0.0336036 0.0242276 0.0336036 0 0 0 0 0 0 +LA 0.540846 +SE +ET PH +ID 5474 +TI 1760667401.463500499 +CC NStripHits 3 +PE 117.381 +PP -2.04905 -0.662156 -4.30858 +PW 0 +SE +ET PH +ID 5475 +TI 1760667401.463521480 +CC NStripHits 3 +PE 441.421 +PP 0.977516 0.366687 0.580484 +PW 0 +SE +ET UN +ID 5476 +TI 1760667401.463545799 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.4041 +SE +ET PH +ID 5477 +TI 1760667401.463564872 +CC NStripHits 3 +PE 415.582 +PP -1.58342 0.341886 -1.39842 +PW 0 +SE +ET PH +ID 5478 +TI 1760667401.463584423 +CC NStripHits 3 +PE 461.463 +PP -0.186547 -0.736299 -3.84295 +PW 0 +SE +ET PH +ID 5479 +TI 1760667401.463604211 +CC NStripHits 4 +PE 243.027 +PP 0.279078 -0.915539 1.27892 +PW 0 +SE +ID 5480 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.994768) +BD GR Veto +PQ 0.65446 +SE +ET PH +ID 5481 +TI 1760667401.463633060 +CC NStripHits 3 +PE 124.851 +PP -0.302953 -0.950053 -4.6578 +PW 0 +SE +ET PH +ID 5482 +TI 1760667401.463651418 +CC NStripHits 3 +PE 57.2807 +PP 2.02517 -1.16222 -3.14452 +PW 0 +SE +ET CO +ID 5483 +TI 1760667401.463671207 +CC NStripHits 7 +PQ 5.90314 +SQ 3 +CT 0.0195631 0.202643 +TL 1 +TE 171.852 +CE 157.898 1.64321 171.852 1.07057 +CD 1.55955 -0.268475 0.231266 0.0336036 0.0232926 0.0336036 2.6072 0.0332198 0.813297 0.0336036 0.0253756 0.0336036 0 0 0 0 0 0 +LA 1.23586 +SE +ID 5484 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 290.785610) +BD GR Veto +PQ 1.06782 +SE +ET PH +ID 5485 +TI 1760667401.463766813 +CC NStripHits 2 +PE 102.056 +PP 1.09392 0.250918 -3.95936 +PW 0 +SE +ID 5486 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 415.653844) +BD GR Veto +PQ 4.33912 +SE +ET PH +ID 5487 +TI 1760667401.463829278 +CC NStripHits 2 +PE 32.5223 +PP 4.12048 -0.170548 -0.234359 +PW 0 +SE +ID 5488 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 184.416619) +BD GR Veto +PQ 1.62739 +SE +ID 5489 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 120.942673) +BD GR Veto +PQ 1.6427 +SE +ET CO +ID 5490 +TI 1760667401.463863134 +CC NStripHits 8 +PQ 30.8179 +SQ 3 +CT 0.136194 2.60485 +TL 1 +TE 57.9586 +CE 405.092 1.50591 57.9586 1.34333 +CD 0.744703 -0.645075 0.231266 0.0336036 0.0213476 0.0336036 1.21033 -0.674423 -0.117953 0.0336036 0.0211353 0.0336036 0 0 0 0 0 0 +LA 0.582772 +SE +ID 5491 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (3838.253943)) (GR Hit: Detector ID 0 and Energy 232.463435) +BD GR Veto +PQ 3838.25 +SE +ID 5492 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.956657) +QA StripPairing (Best reduced chi square is not below 25 (242.050823)) (GR Hit: Detector ID 0 and Energy 658.198906) +BD GR Veto +PQ 242.051 +SE +ET PH +ID 5493 +TI 1760667401.463931798 +CC NStripHits 3 +PE 319.862 +PP 2.37439 -0.995608 -2.7953 +PW 0 +SE +ID 5494 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy -0.374854) +BD GR Veto +PQ +SE +ET UN +ID 5495 +TI 1760667401.463958024 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.5372 +SE +ET PH +ID 5496 +TI 1760667401.463975429 +CC NStripHits 2 +PE 317.414 +PP -1.58342 -1.12912 0.813297 +PW 0 +SE +ET UN +ID 5497 +TI 1760667401.463995933 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 663.253 +SE +ID 5498 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 29.926919)) (GR Hit: Detector ID 0 and Energy 33.493073) +BD GR Veto +PQ 1.71899 +SE +ET PH +ID 5499 +TI 1760667401.464055299 +CC NStripHits 2 +PE 539.762 +PP 4.00408 -0.691939 -1.0492 +PW 0 +SE +ET PH +ID 5500 +TI 1760667401.464077711 +CC NStripHits 2 +PE 78.9817 +PP 2.72361 0.273089 -1.63123 +PW 0 +SE +ET PH +ID 5501 +TI 1760667401.464107275 +CC NStripHits 2 +PE 101.653 +PP 4.23689 0.355936 0.813297 +PW 0 +SE +ET UN +ID 5502 +TI 1760667401.464128494 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 5503 +TI 1760667401.479434967 +CC NStripHits 5 +PQ 7.56827 +SQ 2 +CT 0 1 +TL 1 +TE 148.739 +CE 229.739 0.962916 148.739 1.78217 +CD -0.768578 -0.56272 -1.16561 0.0336036 0.02162 0.0336036 -0.186547 0.0865084 -0.467172 0.0336036 0.026057 0.0336036 0 0 0 0 0 0 +LA 1.11717 +SE +ET UN +ID 5504 +TI 1760667401.479587316 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5505 +TI 1760667401.479626655 +CC NStripHits 3 +PE 273 +PP 1.09392 0.348498 -1.86405 +PW 0 +SE +ET CO +ID 5506 +TI 1760667401.479666948 +CC NStripHits 5 +PQ 15.857 +SQ 2 +CT 0 1 +TL 1 +TE 110.002 +CE 150.455 1.06593 110.002 1.30929 +CD 0.628297 -1.00302 -3.95936 0.0336036 0.0201416 0.0336036 0.279078 -0.666894 -4.54139 0.0336036 0.0211752 0.0336036 0 0 0 0 0 0 +LA 0.757426 +SE +ET PH +ID 5507 +TI 1760667401.479736089 +CC NStripHits 2 +PE 146.247 +PP -2.04905 0.0111997 -0.583578 +PW 0 +SE +ET CO +ID 5508 +TI 1760667401.479775190 +CC NStripHits 5 +PQ 2.24787 +SQ 2 +CT 0 1 +TL 1 +TE 28.5952 +CE 396.845 1.87145 28.5952 0.895109 +CD -1.93264 0.0595504 -3.49373 0.0336036 0.0256043 0.0336036 -0.652172 -0.558269 -2.7953 0.0336036 0.0216229 0.0336036 0 0 0 0 0 0 +LA 1.58402 +SE +ET CO +ID 5509 +TI 1760667401.479842185 +CC NStripHits 4 +PQ 8.73843 +SQ 2 +CT 0 1 +TL 1 +TE 73.4359 +CE 302.749 1.37314 73.4359 1.32608 +CD 0.279078 -0.69458 -1.39842 0.0336036 0.0210326 0.0336036 0.395484 -0.838526 -1.74764 0.0336036 0.0200158 0.0336036 0 0 0 0 0 0 +LA 0.395254 +SE +ET PH +ID 5510 +TI 1760667401.479896306 +CC NStripHits 2 +PE 268.226 +PP 0.395484 -0.882372 -0.117953 +PW 0 +SE +ET PH +ID 5511 +TI 1760667401.479930162 +CC NStripHits 3 +PE 412.294 +PP 0.744703 0.179616 0.696891 +PW 0 +SE +ET CO +ID 5512 +TI 1760667401.479968786 +CC NStripHits 5 +PQ 4.3112 +SQ 2 +CT 0.60538 0.39462 +TL 1 +TE 228.045 +CE 165.272 1.91148 228.045 0.949254 +CD -2.28186 -1.00293 -2.56248 0.0336036 0.0201408 0.0336036 -2.39827 -0.993224 -2.44608 0.0336036 0.0200561 0.0336036 0 0 0 0 0 0 +LA 0.164907 +SE +ET PH +ID 5513 +TI 1760667401.480016469 +CC NStripHits 5 +PE 662.837 +PP 0.511891 0.311218 1.04611 +PW 0 +SE +ET PH +ID 5514 +TI 1760667401.480063676 +CC NStripHits 2 +PE 45.623 +PP 4.23689 -0.996813 -3.49373 +PW 0 +SE +ET CO +ID 5515 +TI 1760667401.480112314 +CC NStripHits 5 +PQ 4.7579 +SQ 2 +CT 0 1 +TL 1 +TE 113.253 +CE 398.71 0.997023 113.253 1.94345 +CD 2.37439 -0.802264 -1.16561 0.0336036 0.0201807 0.0336036 2.14158 -0.612557 -0.467172 0.0336036 0.021426 0.0336036 0 0 0 0 0 0 +LA 0.760266 +SE +ET PH +ID 5516 +TI 1760667401.480200052 +CC NStripHits 3 +PE 291.714 +PP -0.652172 -1.0531 -4.54139 +PW 0 +SE +ET UN +ID 5517 +TI 1760667401.480239629 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 150.082 +SE +ET PH +ID 5518 +TI 1760667401.480277061 +CC NStripHits 2 +PE 137.628 +PP -2.28186 0.36763 -1.39842 +PW 0 +SE +ET CO +ID 5519 +TI 1760667401.480311393 +CC NStripHits 6 +PQ 0.436313 +SQ 2 +CT 0 1 +TL 1 +TE 85.5485 +CE 164.683 1.29355 85.5485 0.916996 +CD -2.28186 -0.209126 -3.49373 0.0336036 0.0234302 0.0336036 -1.69983 -0.184445 -3.72655 0.0336036 0.023592 0.0336036 0 0 0 0 0 0 +LA 0.627354 +SE +ET CO +ID 5520 +TI 1760667401.480373144 +CC NStripHits 6 +PQ 2.95064 +SQ 2 +CT 0.650438 0.349562 +TL 1 +TE 273.955 +CE 183.839 1.06472 273.955 1.82107 +CD 3.07283 -0.202769 -2.67889 0.0336036 0.0234702 0.0336036 2.6072 -0.527641 -3.02811 0.0336036 0.0216943 0.0336036 0 0 0 0 0 0 +LA 0.666564 +SE +ET CO +ID 5521 +TI 1760667401.480440139 +CC NStripHits 4 +PQ 0.288202 +SQ 2 +CT 0 1 +TL 1 +TE 27.0727 +CE 354.025 0.969342 27.0727 0.927809 +CD 4.00408 -0.778961 -2.44608 0.0336036 0.0202538 0.0336036 3.07283 0.255028 -2.21327 0.0336036 0.0332442 0.0336036 0 0 0 0 0 0 +LA 1.41087 +SE +ET PH +ID 5522 +TI 1760667401.480506658 +CC NStripHits 2 +PE 112.098 +PP 0.628297 0.0505027 1.27892 +PW 0 +SE +ET CO +ID 5523 +TI 1760667401.480537891 +CC NStripHits 5 +PQ 2.75528 +SQ 2 +CT 0.589853 0.410147 +TL 1 +TE 343.29 +CE 278.004 1.30917 343.29 1.00306 +CD 2.84002 -1.08487 -3.02811 0.0336036 0.0243686 0.0336036 2.37439 -1.01825 -3.26092 0.0336036 0.0203295 0.0336036 0 0 0 0 0 0 +LA 0.524833 +SE +ID 5524 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.036521) (Strip hit removed with energy 8.157087) +BD GR Veto +PQ 12.0571 +SE +ID 5525 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 438.934879) +BD GR Veto +PQ 7.25433 +SE +ID 5526 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 152.032516) +BD GR Veto +PQ 0.000146599 +SE +ET PH +ID 5527 +TI 1760667401.480623722 +CC NStripHits 2 +PE 139.486 +PP 0.744703 0.0453926 -0.117953 +PW 0 +SE +ET PH +ID 5528 +TI 1760667401.480641603 +CC NStripHits 3 +PE 402.006 +PP -1.2342 0.226588 -3.95936 +PW 0 +SE +ET CO +ID 5529 +TI 1760667401.480680942 +CC NStripHits 4 +PQ 10.7526 +SQ 2 +CT 0 1 +TL 1 +TE 45.2896 +CE 94.2641 1.2618 45.2896 0.891581 +CD -1.00139 -0.880953 -3.02811 0.0336036 0.0198527 0.0336036 -0.768578 -1.16345 -3.37733 0.0336036 0.0230689 0.0336036 0 0 0 0 0 0 +LA 0.505925 +SE +ET PH +ID 5530 +TI 1760667401.480711460 +CC NStripHits 2 +PE 132.717 +PP -2.51467 -1.161 -4.30858 +PW 0 +SE +ID 5531 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 157.310592) +BD GR Veto +PQ 0.210563 +SE +ET UN +ID 5532 +TI 1760667401.480742454 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 107.236 +SE +ET PH +ID 5533 +TI 1760667401.480770111 +CC NStripHits 2 +PE 64.5832 +PP -1.93264 0.369842 -2.09686 +PW 0 +SE +ET UN +ID 5534 +TI 1760667401.480787515 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 4 +PE 0 +SE +ET PH +ID 5535 +TI 1760667401.480819702 +CC NStripHits 2 +PE 55.1273 +PP -2.04905 0.355374 -0.117953 +PW 0 +SE +ET PH +ID 5536 +TI 1760667401.480838060 +CC NStripHits 2 +PE 160.639 +PP 0.861109 -0.0497141 0.696891 +PW 0 +SE +ET UN +ID 5537 +TI 1760667401.480858087 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6383 +SE +ET PH +ID 5538 +TI 1760667401.480875253 +CC NStripHits 2 +PE 402.693 +PP 2.95642 -1.0183 1.16252 +PW 0 +SE +ET PH +ID 5539 +TI 1760667401.480895757 +CC NStripHits 3 +PE 110.668 +PP 0.511891 -1.03394 -2.21327 +PW 0 +SE +ET PH +ID 5540 +TI 1760667401.480916738 +CC NStripHits 2 +PE 79.3555 +PP 0.511891 -1.13897 -1.74764 +PW 0 +SE +ID 5541 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (585.963352)) (GR Hit: Detector ID 0 and Energy 104.313904) +BD GR Veto +PQ 585.963 +SE +ET UN +ID 5542 +TI 1760667401.480948209 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 39.7175 +SE +ET UN +ID 5543 +TI 1760667401.480970382 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 5544 +TI 1760667401.480988502 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.9093 +SE +ET PH +ID 5545 +TI 1760667401.481006383 +CC NStripHits 2 +PE 148.728 +PP -2.28186 -1.02146 -0.699984 +PW 0 +SE +ET PH +ID 5546 +TI 1760667401.481026887 +CC NStripHits 4 +PE 181.4 +PP 4.00408 0.0538403 -2.44608 +PW 0 +SE +ID 5547 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 32.386102) +BD GR Veto +PQ 8.4221 +SE +ID 5548 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (52.888729)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 109.621430)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 111.093747) (GR Hit: Detector ID 0 and Energy 28.101565) +BD GR Veto +PQ 52.8887 +SE +ET UN +ID 5549 +TI 1760667401.481093645 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.9856 +SE +ET PH +ID 5550 +TI 1760667401.481112003 +CC NStripHits 2 +PE 70.5311 +PP -0.302953 0.274586 -0.583578 +PW 0 +SE +ID 5551 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.639874) +QA StripPairing (Best reduced chi square is not below 25 (691.673427)) (GR Hit: Detector ID 0 and Energy 174.495021) +BD GR Veto +PQ 691.673 +SE +ET CO +ID 5552 +TI 1760667401.481146335 +CC NStripHits 5 +PQ 6.97717 +SQ 2 +CT 0 1 +TL 1 +TE 95.7419 +CE 264.749 0.943405 95.7419 1.79622 +CD 2.4908 -0.0815661 0.580484 0.0336036 0.0244316 0.0336036 1.67595 -0.385289 -1.98045 0.0336036 0.0225572 0.0336036 0 0 0 0 0 0 +LA 2.70455 +SE +ET PH +ID 5553 +TI 1760667401.481187820 +CC NStripHits 3 +PE 255.053 +PP 1.21033 -0.553914 -0.117953 +PW 0 +SE +ET PH +ID 5554 +TI 1760667401.481210947 +CC NStripHits 2 +PE 196.533 +PP -0.302953 -0.852812 -2.09686 +PW 0 +SE +ET PH +ID 5555 +TI 1760667401.481236457 +CC NStripHits 3 +PE 139.888 +PP -2.39827 0.0738117 -3.61014 +PW 0 +SE +ET PH +ID 5556 +TI 1760667401.481257915 +CC NStripHits 2 +PE 132.129 +PP -0.0701406 -1.17026 2.21017 +PW 0 +SE +ET PH +ID 5557 +TI 1760667401.481277704 +CC NStripHits 2 +PE 73.2101 +PP 2.25798 -0.0957956 -0.816391 +PW 0 +SE +ET PH +ID 5558 +TI 1760667401.481298446 +CC NStripHits 3 +PE 434.672 +PP -0.302953 -0.577147 -0.467172 +PW 0 +SE +ET CO +ID 5559 +TI 1760667401.481325149 +CC NStripHits 7 +PQ 0.25839 +SQ 2 +CT 0 1 +TL 1 +TE 59.6839 +CE 183.893 1.06586 59.6839 1.29132 +CD -0.0701406 0.349385 -3.26092 0.0336036 0.0314969 0.0336036 1.90877 0.191918 -3.02811 0.0336036 0.0283781 0.0336036 0 0 0 0 0 0 +LA 1.99877 +SE +ID 5560 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5561 +TI 1760667401.481370449 +CC NStripHits 2 +PE 169.347 +PP -1.93264 -0.574442 -2.32967 +PW 0 +SE +ET PH +ID 5562 +TI 1760667401.481393098 +CC NStripHits 2 +PE 32.7732 +PP -2.74748 -0.111254 1.16252 +PW 0 +SE +ET PH +ID 5563 +TI 1760667401.481412172 +CC NStripHits 3 +PE 203.101 +PP -1.46702 -0.792466 -1.51483 +PW 0 +SE +ET PH +ID 5564 +TI 1760667401.481438875 +CC NStripHits 2 +PE 191.748 +PP -2.63108 0.372504 1.39533 +PW 0 +SE +ET PH +ID 5565 +TI 1760667401.481457471 +CC NStripHits 2 +PE 662.549 +PP -0.0701406 -1.15319 -1.63123 +PW 0 +SE +ET PH +ID 5566 +TI 1760667401.481480360 +CC NStripHits 2 +PE 109.15 +PP -0.652172 -0.446589 -1.63123 +PW 0 +SE +ID 5567 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 111.993494) (GR Hit: Detector ID 0 and Energy 44.993505) +BD GR Veto +PQ 0.000951978 +SE +ET CO +ID 5568 +TI 1760667401.499695777 +CC NStripHits 6 +PQ 18.7113 +SQ 2 +CT 0 1 +TL 1 +TE 121.727 +CE 536.647 1.37348 121.727 1.26643 +CD 2.95642 -0.0281314 -3.84295 0.0336036 0.0248109 0.0336036 3.30564 -0.781153 -3.37733 0.0336036 0.0202468 0.0336036 0 0 0 0 0 0 +LA 0.951734 +SE +ID 5569 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 212.019744) +BD GR Veto +PQ 7.9683 +SE +ET PH +ID 5570 +TI 1760667401.499766111 +CC NStripHits 2 +PE 183.14 +PP -1.35061 -0.566294 -4.07577 +PW 0 +SE +ET CO +ID 5571 +TI 1760667401.499788284 +CC NStripHits 6 +PQ 26.7162 +SQ 2 +CT 0 1 +TL 1 +TE 41.4044 +CE 434.459 1.37953 41.4044 1.34724 +CD 0.744703 0.0360943 0.929703 0.0336036 0.025395 0.0336036 1.32673 -0.499667 0.231266 0.0336036 0.0218042 0.0336036 0 0 0 0 0 0 +LA 1.05528 +SE +ET PH +ID 5572 +TI 1760667401.499830484 +CC NStripHits 2 +PE 120.295 +PP 1.55955 0.366619 -3.02811 +PW 0 +SE +ET PH +ID 5573 +TI 1760667401.499850749 +CC NStripHits 2 +PE 103.363 +PP 2.37439 -0.601069 1.27892 +PW 0 +SE +ET UN +ID 5574 +TI 1760667401.499869346 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 646.519 +SE +ET CO +ID 5575 +TI 1760667401.499913215 +CC NStripHits 4 +PQ 3.49767 +SQ 2 +CT 0 1 +TL 1 +TE 26.2103 +CE 119.747 1.35846 26.2103 0.920502 +CD -2.74748 -0.902323 -1.63123 0.0336036 0.0197912 0.0336036 -2.9803 -0.26922 -0.932797 0.0336036 0.0232885 0.0336036 0 0 0 0 0 0 +LA 0.970996 +SE +ID 5576 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 26.773868) +BD GR Veto +PQ 0.551926 +SE +ET UN +ID 5577 +TI 1760667401.499950885 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 226.408 +SE +ET PH +ID 5578 +TI 1760667401.499981403 +CC NStripHits 3 +PE 213.996 +PP 1.55955 -0.66228 -1.74764 +PW 0 +SE +ID 5579 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 181.794252) +BD GR Veto +PQ 9.89415 +SE +ID 5580 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 117.955301) +BD GR Veto +PQ 0.00327365 +SE +ID 5581 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 88.136950) +BD GR Veto +PQ 0.193966 +SE +ET PH +ID 5582 +TI 1760667401.500026941 +CC NStripHits 2 +PE 30.8861 +PP 1.32673 -0.177316 2.44298 +PW 0 +SE +ET PH +ID 5583 +TI 1760667401.500044822 +CC NStripHits 2 +PE 114.067 +PP -2.16545 0.335219 -2.21327 +PW 0 +SE +ID 5584 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (47.372784)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 45.921129)) (GR Hit: Detector ID 0 and Energy 102.800477) +BD GR Veto +PQ 47.3728 +SE +ID 5585 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 462.479777) +BD GR Veto +PQ 22.7751 +SE +ET UN +ID 5586 +TI 1760667401.500121593 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 664.991 +SE +ET UN +ID 5587 +TI 1760667401.500166893 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5588 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 113.559947) +BD GR Veto +PQ 0.301736 +SE +ET PH +ID 5589 +TI 1760667401.500193834 +CC NStripHits 2 +PE 32.8142 +PP -0.302953 -0.790816 -1.0492 +PW 0 +SE +ET PH +ID 5590 +TI 1760667401.500217199 +CC NStripHits 2 +PE 418.031 +PP 0.744703 0.362031 2.55939 +PW 0 +SE +ET PH +ID 5591 +TI 1760667401.500238656 +CC NStripHits 2 +PE 416.905 +PP 1.09392 -0.377339 -4.42498 +PW 0 +SE +ET PH +ID 5592 +TI 1760667401.500263214 +CC NStripHits 2 +PE 998.015 +PP -1.69983 -0.689572 -2.67889 +PW 0 +SE +ID 5593 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 251.748267) +BD GR Veto +PQ 2.72875 +SE +ID 5594 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.785206) +QA StripPairing (GR Hit: Detector ID 0 and Energy 292.572354) +BD GR Veto +PQ 5.51567 +SE +ET PH +ID 5595 +TI 1760667401.500325679 +CC NStripHits 2 +PE 151.13 +PP 3.30564 -0.436009 -4.6578 +PW 0 +SE +ET PH +ID 5596 +TI 1760667401.500346422 +CC NStripHits 2 +PE 173.459 +PP 2.95642 -0.0840551 -3.95936 +PW 0 +SE +ET PH +ID 5597 +TI 1760667401.500367403 +CC NStripHits 2 +PE 262.791 +PP -0.0701406 -0.149467 2.55939 +PW 0 +SE +ET CO +ID 5598 +TI 1760667401.500384569 +CC NStripHits 4 +PQ 42.339 +SQ 2 +CT 0 1 +TL 1 +TE 97.356 +CE 208 0.900754 97.356 1.30503 +CD -1.46702 -0.366496 0.580484 0.0336036 0.0227042 0.0336036 -1.93264 0.374174 1.16252 0.0336036 0.018535 0.0336036 0 0 0 0 0 0 +LA 1.05079 +SE +ET PH +ID 5599 +TI 1760667401.500419378 +CC NStripHits 4 +PE 302.154 +PP 3.65486 -0.106026 -1.39842 +PW 0 +SE +ET PH +ID 5600 +TI 1760667401.500443935 +CC NStripHits 2 +PE 383.242 +PP 0.0462656 -0.382466 -0.234359 +PW 0 +SE +ET PH +ID 5601 +TI 1760667401.500466346 +CC NStripHits 3 +PE 125.754 +PP -0.652172 -1.0869 -2.09686 +PW 0 +SE +ET PH +ID 5602 +TI 1760667401.500487327 +CC NStripHits 2 +PE 63.8623 +PP -0.768578 0.266344 -3.37733 +PW 0 +SE +ET UN +ID 5603 +TI 1760667401.500505924 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5604 +TI 1760667401.500524282 +CC NStripHits 3 +PE 421.836 +PP 3.42205 0.36346 -2.67889 +PW 0 +SE +ID 5605 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 106.497524) (GR Hit: Detector ID 0 and Energy 65.379283) +BD GR Veto +PQ 1.17898 +SE +ET PH +ID 5606 +TI 1760667401.500563144 +CC NStripHits 3 +PE 485.527 +PP 1.09392 0.252761 1.51173 +PW 0 +SE +ID 5607 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5608 +TI 1760667401.500594377 +CC NStripHits 3 +PE 354.993 +PP 1.55955 -0.0730675 -1.74764 +PW 0 +SE +ID 5609 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.968879) +QA StripPairing (Best reduced chi square is not below 25 (3041.987717)) (GR Hit: Detector ID 0 and Energy 402.574929) +BD GR Veto +PQ 3041.99 +SE +ET PH +ID 5610 +TI 1760667401.500629186 +CC NStripHits 2 +PE 164.54 +PP -2.63108 0.28136 -1.0492 +PW 0 +SE +ET PH +ID 5611 +TI 1760667401.500646591 +CC NStripHits 2 +PE 78.8705 +PP 2.02517 0.372413 0.464078 +PW 0 +SE +ET PH +ID 5612 +TI 1760667401.500664472 +CC NStripHits 2 +PE 208.672 +PP -1.46702 -1.16446 -0.117953 +PW 0 +SE +ID 5613 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (131.111977)) (GR Hit: Detector ID 0 and Energy 66.934911) +BD GR Veto +PQ 131.112 +SE +ID 5614 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 374.628578) +BD GR Veto +PQ 7.01935 +SE +ET PH +ID 5615 +TI 1760667401.500705003 +CC NStripHits 2 +PE 463.932 +PP 1.44314 0.0670028 -4.54139 +PW 0 +SE +ET PH +ID 5616 +TI 1760667401.500724792 +CC NStripHits 2 +PE 122.543 +PP 3.42205 -1.09712 -4.19217 +PW 0 +SE +ET PH +ID 5617 +TI 1760667401.500742673 +CC NStripHits 2 +PE 115.859 +PP 0.861109 -1.056 2.55939 +PW 0 +SE +ET PH +ID 5618 +TI 1760667401.500760078 +CC NStripHits 2 +PE 280.585 +PP 1.32673 -1.12721 1.39533 +PW 0 +SE +ET PH +ID 5619 +TI 1760667401.500779628 +CC NStripHits 3 +PE 82.9983 +PP -0.302953 0.286136 -0.00154687 +PW 0 +SE +ID 5620 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 4.514090) +BD GR Veto +PQ +SE +ET CO +ID 5621 +TI 1760667401.500808954 +CC NStripHits 5 +PQ 2.47425 +SQ 2 +CT 0.587872 0.412128 +TL 1 +TE 234.778 +CE 164.378 0.916766 234.778 1.07049 +CD 2.6072 -0.958373 1.04611 0.0336036 0.0198729 0.0336036 2.25798 -0.468206 0.813297 0.0336036 0.0219641 0.0336036 0 0 0 0 0 0 +LA 0.645306 +SE +ET CO +ID 5622 +TI 1760667401.500842809 +CC NStripHits 5 +PQ 0.966412 +SQ 2 +CT 0 1 +TL 1 +TE 93.6554 +CE 153.925 1.04852 93.6554 0.944928 +CD 1.21033 -1.03939 1.62814 0.0336036 0.0208181 0.0336036 1.79236 -0.791862 0.464078 0.0336036 0.0202199 0.0336036 0 0 0 0 0 0 +LA 1.32479 +SE +ET PH +ID 5623 +TI 1760667401.500876426 +CC NStripHits 3 +PE 297.077 +PP -1.46702 -0.561175 -1.39842 +PW 0 +SE +ET PH +ID 5624 +TI 1760667401.500896215 +CC NStripHits 2 +PE 58.3954 +PP 3.30564 -0.192397 2.55939 +PW 0 +SE +ET PH +ID 5625 +TI 1760667401.500914573 +CC NStripHits 4 +PE 663.898 +PP 0.744703 -0.23079 -1.74764 +PW 0 +SE +ET PH +ID 5626 +TI 1760667401.500940084 +CC NStripHits 2 +PE 315.879 +PP 1.09392 -0.0553108 2.21017 +PW 0 +SE +ET UN +ID 5627 +TI 1760667401.500961065 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 5628 +TI 1760667401.501005172 +CC NStripHits 2 +PE 312.252 +PP 0.628297 -0.772982 0.580484 +PW 0 +SE +ET UN +ID 5629 +TI 1760667401.501039266 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 5630 +TI 1760667401.501056909 +CC NStripHits 4 +PQ 29.2311 +SQ 2 +CT 0 1 +TL 1 +TE 54.9482 +CE 99.4312 0.927512 54.9482 1.34256 +CD -2.04905 -0.22867 0.929703 0.0336036 0.0233463 0.0336036 -2.74748 0.217929 0.696891 0.0336036 0.0296492 0.0336036 0 0 0 0 0 0 +LA 0.861079 +SE +ID 5631 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 71.148726) +BD GR Veto +PQ 0.855121 +SE +ID 5632 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.993706) +QA StripPairing (GR Hit: Detector ID 0 and Energy 155.579236) +BD GR Veto +PQ 20.5463 +SE +ET PH +ID 5633 +TI 1760667401.522027254 +CC NStripHits 3 +PE 116.821 +PP -2.28186 -0.268385 -4.6578 +PW 0 +SE +ET UN +ID 5634 +TI 1760667401.522064685 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ID 5635 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 139.456813) +BD GR Veto +PQ 0.732112 +SE +ET PH +ID 5636 +TI 1760667401.522175788 +CC NStripHits 2 +PE 84.7682 +PP -0.0701406 -1.02217 -1.16561 +PW 0 +SE +ID 5637 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 385.532158) +BD GR Veto +PQ 5.81514 +SE +ET PH +ID 5638 +TI 1760667401.522225141 +CC NStripHits 2 +PE 242.767 +PP 2.25798 -0.261061 -3.84295 +PW 0 +SE +ET PH +ID 5639 +TI 1760667401.522259235 +CC NStripHits 4 +PE 663.821 +PP 0.977516 -0.512119 -0.699984 +PW 0 +SE +ET PH +ID 5640 +TI 1760667401.522311687 +CC NStripHits 4 +PE 668.91 +PP 2.72361 0.211854 0.114859 +PW 0 +SE +ID 5641 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (99.197675)) +BD GR Veto +PQ 99.1977 +SE +ET PH +ID 5642 +TI 1760667401.522433280 +CC NStripHits 2 +PE 94.6938 +PP -2.04905 0.32455 -3.14452 +PW 0 +SE +ET UN +ID 5643 +TI 1760667401.522467613 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5644 +TI 1760667401.522506952 +CC NStripHits 2 +PE 74.756 +PP 2.25798 0.273561 -0.117953 +PW 0 +SE +ID 5645 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 5646 +TI 1760667401.522551298 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 56.8873 +SE +ET PH +ID 5647 +TI 1760667401.522592782 +CC NStripHits 2 +PE 113.343 +PP 2.37439 -0.890139 0.696891 +PW 0 +SE +ET PH +ID 5648 +TI 1760667401.522618532 +CC NStripHits 2 +PE 50.1897 +PP 2.84002 -0.576388 -1.74764 +PW 0 +SE +ET UN +ID 5649 +TI 1760667401.522636651 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.6039 +SE +ID 5650 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 92.846418) +BD GR Veto +PQ 1.14668 +SE +ET CO +ID 5651 +TI 1760667401.522659540 +CC NStripHits 5 +PQ 15.4646 +SQ 2 +CT 0 1 +TL 1 +TE 121.089 +CE 172.128 1.43454 121.089 1.07697 +CD 2.02517 0.0312707 -3.84295 0.0336036 0.0253613 0.0336036 2.25798 0.0706307 -4.19217 0.0336036 0.0257879 0.0336036 0 0 0 0 0 0 +LA 0.42155 +SE +ET PH +ID 5652 +TI 1760667401.522689104 +CC NStripHits 2 +PE 477.128 +PP -0.419359 -0.330994 0.347672 +PW 0 +SE +ET PH +ID 5653 +TI 1760667401.522714376 +CC NStripHits 3 +PE 343.727 +PP -2.63108 0.0152846 -3.14452 +PW 0 +SE +ET CO +ID 5654 +TI 1760667401.522734403 +CC NStripHits 4 +PQ 0.624238 +SQ 2 +CT 0 1 +TL 1 +TE 104.699 +CE 296.657 0.961097 104.699 0.913329 +CD -2.51467 -0.125628 0.114859 0.0336036 0.0240945 0.0336036 -2.74748 -1.10857 -0.350766 0.0336036 0.028213 0.0336036 0 0 0 0 0 0 +LA 1.11229 +SE +ET PH +ID 5655 +TI 1760667401.522765159 +CC NStripHits 4 +PE 125.955 +PP -2.39827 0.185077 -3.95936 +PW 0 +SE +ET PH +ID 5656 +TI 1760667401.522788286 +CC NStripHits 3 +PE 465.487 +PP 3.77127 0.0879327 -2.32967 +PW 0 +SE +ET PH +ID 5657 +TI 1760667401.522814273 +CC NStripHits 3 +PE 202.055 +PP 3.30564 -0.439162 1.62814 +PW 0 +SE +ID 5658 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 148.962811) +BD GR Veto +PQ 2.51348 +SE +ET UN +ID 5659 +TI 1760667401.522859811 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 324.13 +SE +ET CO +ID 5660 +TI 1760667401.522892236 +CC NStripHits 5 +PQ 1.10978 +SQ 2 +CT 0 1 +TL 1 +TE 139.392 +CE 355.974 1.04201 139.392 0.91063 +CD 2.4908 -1.03436 2.32658 0.0336036 0.0206644 0.0336036 1.67595 -0.989336 -0.350766 0.0336036 0.0200301 0.0336036 0 0 0 0 0 0 +LA 2.79896 +SE +ET PH +ID 5661 +TI 1760667401.522931814 +CC NStripHits 2 +PE 50.2939 +PP -0.419359 -1.11161 2.21017 +PW 0 +SE +ID 5662 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 30.573722) +BD GR Veto +PQ 5.01639 +SE +ID 5663 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 186.645360) +BD GR Veto +PQ 8.16388 +SE +ET UN +ID 5664 +TI 1760667401.522965669 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5665 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 294.929670) +BD GR Veto +PQ 0.623537 +SE +ET PH +ID 5666 +TI 1760667401.522997140 +CC NStripHits 4 +PE 195.763 +PP 0.744703 -0.187377 2.09377 +PW 0 +SE +ID 5667 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 413.921459) +BD GR Veto +PQ 4.09639 +SE +ID 5668 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 267.935967) +BD GR Veto +PQ 7.49884 +SE +ET UN +ID 5669 +TI 1760667401.523050069 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 237.138 +SE +ET UN +ID 5670 +TI 1760667401.523083686 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 96.3374 +SE +ET PH +ID 5671 +TI 1760667401.523113012 +CC NStripHits 3 +PE 470.732 +PP 1.32673 -0.514119 -3.84295 +PW 0 +SE +ET PH +ID 5672 +TI 1760667401.523137807 +CC NStripHits 2 +PE 438.64 +PP -0.652172 0.358746 1.39533 +PW 0 +SE +ID 5673 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 62.262702) +BD GR Veto +PQ 1.08097 +SE +ET PH +ID 5674 +TI 1760667401.523179769 +CC NStripHits 2 +PE 82.8042 +PP 2.37439 -0.876854 -1.39842 +PW 0 +SE +ET PH +ID 5675 +TI 1760667401.523200273 +CC NStripHits 2 +PE 58.4063 +PP -2.28186 -0.612948 2.44298 +PW 0 +SE +ID 5676 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 109.887526) +BD GR Veto +PQ 0.247048 +SE +ET CO +ID 5677 +TI 1760667401.523225545 +CC NStripHits 4 +PQ 8.56141 +SQ 2 +CT 0.51912 0.48088 +TL 1 +TE 144.635 +CE 149.839 0.941959 144.635 1.24232 +CD 2.25798 -0.261785 -2.9117 0.0336036 0.0233239 0.0336036 1.67595 -0.198992 -3.37733 0.0336036 0.0234953 0.0336036 0 0 0 0 0 0 +LA 0.748006 +SE +ET CO +ID 5678 +TI 1760667401.523257493 +CC NStripHits 4 +PQ 1.86999 +SQ 2 +CT 0 1 +TL 1 +TE 59.4797 +CE 382.975 0.966644 59.4797 0.925993 +CD 2.14158 -0.258971 0.813297 0.0336036 0.0233329 0.0336036 0.861109 -0.457965 0.929703 0.0336036 0.0220143 0.0336036 0 0 0 0 0 0 +LA 1.30106 +SE +ET UN +ID 5679 +TI 1760667401.523289442 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.6348 +SE +ET CO +ID 5680 +TI 1760667401.523308992 +CC NStripHits 4 +PQ 0.000156362 +SQ 2 +CT 0 1 +TL 1 +TE 61.6694 +CE 292.282 0.956657 61.6694 0.929607 +CD -1.00139 0.0685504 0.813297 0.0336036 0.0257508 0.0336036 -1.1178 0.107834 0.696891 0.0336036 0.0263421 0.0336036 0 0 0 0 0 0 +LA 0.169248 +SE +ET UN +ID 5681 +TI 1760667401.523332118 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 193.076 +SE +ET PH +ID 5682 +TI 1760667401.523386478 +CC NStripHits 2 +PE 102.017 +PP 2.25798 -0.275466 1.39533 +PW 0 +SE +ID 5683 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 381.309992) +BD GR Veto +PQ 1.22491 +SE +ET UN +ID 5684 +TI 1760667401.523429155 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 11 +PE 659.267 +SE +ET UN +ID 5685 +TI 1760667401.523495912 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 475.456 +SE +ET CO +ID 5686 +TI 1760667401.523533582 +CC NStripHits 10 +PQ 0.276926 +SQ 3 +CT 0.000291756 0.00612733 +TL 1 +TE 317.34 +CE 345.547 1.73234 317.34 1.11045 +CD 4.3533 0.281942 -0.350766 0.0336036 0.0370202 0.0336036 3.07283 -0.462413 -2.32967 0.0336036 0.0219899 0.0336036 0 0 0 0 0 0 +LA 1.19999 +SE +ID 5687 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.299328) (Strip hit removed with energy 9.198936) +QA StripPairing (GR Hit: Detector ID 0 and Energy 235.715792) +BD GR Veto +PQ 2.90362 +SE +ET PH +ID 5688 +TI 1760667401.523622035 +CC NStripHits 2 +PE 231.017 +PP -2.04905 -0.874758 -0.932797 +PW 0 +SE +ID 5689 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 268.333562) +BD GR Veto +PQ 2.56423 +SE +ET UN +ID 5690 +TI 1760667401.523648262 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5691 +TI 1760667401.523666143 +CC NStripHits 2 +PE 161.48 +PP 3.07283 -1.00116 -0.350766 +PW 0 +SE +ID 5692 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.136894) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 27.006331)) (GR Hit: Detector ID 0 and Energy 86.677888) +BD GR Veto +PQ 7.16368 +SE +ET PH +ID 5693 +TI 1760667401.523718833 +CC NStripHits 2 +PE 144.199 +PP 2.4908 -0.405295 0.696891 +PW 0 +SE +ET CO +ID 5694 +TI 1760667401.523741245 +CC NStripHits 6 +PQ 41.5146 +SQ 3 +CT 0.0184841 0.359743 +TL 1 +TE 39.5994 +CE 158.75 1.91185 39.5994 1.27317 +CD 2.37439 -0.46413 0.813297 0.0336036 0.0219817 0.0336036 2.02517 -0.228853 0.929703 0.0336036 0.023346 0.0336036 0 0 0 0 0 0 +LA 0.436876 +SE +ID 5695 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.664291) +BD GR Veto +PQ +SE +ET PH +ID 5696 +TI 1760667401.549465656 +CC NStripHits 2 +PE 97.1213 +PP -2.39827 -0.876169 0.813297 +PW 0 +SE +ID 5697 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 228.640804) +BD GR Veto +PQ 1.02655 +SE +ET CO +ID 5698 +TI 1760667401.549494981 +CC NStripHits 5 +PQ 2.22996 +SQ 2 +CT 0.714052 0.285948 +TL 1 +TE 423.442 +CE 238.994 0.941092 423.442 1.10325 +CD -2.04905 -0.871465 -3.49373 0.0336036 0.0198912 0.0336036 -1.1178 -0.225597 -4.42498 0.0336036 0.0233538 0.0336036 0 0 0 0 0 0 +LA 1.46683 +SE +ET UN +ID 5699 +TI 1760667401.549531459 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 662.111 +SE +ET PH +ID 5700 +TI 1760667401.549569129 +CC NStripHits 2 +PE 106.34 +PP 1.09392 -0.713333 -0.117953 +PW 0 +SE +ID 5701 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (26.907094)) (GR Hit: Detector ID 0 and Energy 462.950167) +BD GR Veto +PQ 26.9071 +SE +ET PH +ID 5702 +TI 1760667401.549599409 +CC NStripHits 2 +PE 167.892 +PP -0.419359 0.359072 -4.42498 +PW 0 +SE +ID 5703 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 202.160801) +BD GR Veto +PQ 1.66942 +SE +ET PH +ID 5704 +TI 1760667401.549665212 +CC NStripHits 3 +PE 153.113 +PP 1.67595 -0.829096 -0.234359 +PW 0 +SE +ID 5705 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 279.524155) +BD GR Veto +PQ 0.355606 +SE +ET PH +ID 5706 +TI 1760667401.549699544 +CC NStripHits 2 +PE 178.814 +PP 1.79236 0.0260099 1.51173 +PW 0 +SE +ET PH +ID 5707 +TI 1760667401.549736976 +CC NStripHits 4 +PE 163.611 +PP 1.55955 -0.252487 -4.19217 +PW 0 +SE +ID 5708 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1831.710194)) (GR Hit: Detector ID 0 and Energy 166.754778) +BD GR Veto +PQ 1831.71 +SE +ET PH +ID 5709 +TI 1760667401.549768924 +CC NStripHits 3 +PE 182.541 +PP 0.0462656 -0.66258 -1.51483 +PW 0 +SE +ET PH +ID 5710 +TI 1760667401.549789905 +CC NStripHits 2 +PE 78.7745 +PP 2.37439 -0.0651323 1.97736 +PW 0 +SE +ET PH +ID 5711 +TI 1760667401.549810409 +CC NStripHits 2 +PE 105.217 +PP 1.90877 -1.03513 -1.98045 +PW 0 +SE +ET CO +ID 5712 +TI 1760667401.549828052 +CC NStripHits 5 +PQ 1.81168 +SQ 2 +CT 0 1 +TL 1 +TE 106.707 +CE 315.765 0.960167 106.707 1.04697 +CD -2.51467 -0.845383 0.929703 0.0336036 0.020001 0.0336036 -0.884984 0.15544 -1.28202 0.0336036 0.0273194 0.0336036 0 0 0 0 0 0 +LA 2.92391 +SE +ET CO +ID 5713 +TI 1760667401.549862384 +CC NStripHits 4 +PQ 24.2759 +SQ 2 +CT 0.580542 0.419458 +TL 1 +TE 363.745 +CE 299.958 1.54743 363.745 0.969755 +CD 1.44314 -0.249101 -1.98045 0.0336036 0.023344 0.0336036 1.09392 -0.290465 -2.44608 0.0336036 0.0231861 0.0336036 0 0 0 0 0 0 +LA 0.583504 +SE +ET UN +ID 5714 +TI 1760667401.549895763 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 665.62 +SE +ET PH +ID 5715 +TI 1760667401.549927949 +CC NStripHits 2 +PE 120.408 +PP 2.14158 -0.0164822 -3.14452 +PW 0 +SE +ET PH +ID 5716 +TI 1760667401.549945116 +CC NStripHits 2 +PE 20.7074 +PP 1.09392 -1.16729 1.74455 +PW 0 +SE +ET PH +ID 5717 +TI 1760667401.549976825 +CC NStripHits 3 +PE 222.842 +PP 2.37439 0.036496 -3.02811 +PW 0 +SE +ID 5718 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.410828) +BD GR Veto +PQ +SE +ET PH +ID 5719 +TI 1760667401.550003051 +CC NStripHits 2 +PE 421.305 +PP -1.46702 0.348219 2.55939 +PW 0 +SE +ET PH +ID 5720 +TI 1760667401.550019741 +CC NStripHits 4 +PE 294.693 +PP 0.162672 -0.716023 -2.44608 +PW 0 +SE +ET PH +ID 5721 +TI 1760667401.550042629 +CC NStripHits 4 +PE 409.779 +PP 1.79236 -0.98456 2.55939 +PW 0 +SE +ID 5722 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (2287.739308)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 135.954713)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 71.010021) +BD GR Veto +PQ 2287.74 +SE +ET PH +ID 5723 +TI 1760667401.550112009 +CC NStripHits 2 +PE 370.066 +PP 3.65486 -0.533195 -1.28202 +PW 0 +SE +ET PH +ID 5724 +TI 1760667401.550129413 +CC NStripHits 5 +PE 443.97 +PP -1.1178 -0.211925 -4.6578 +PW 0 +SE +ET PH +ID 5725 +TI 1760667401.550150871 +CC NStripHits 2 +PE 75.9702 +PP 0.511891 -0.170543 -0.583578 +PW 0 +SE +ET PH +ID 5726 +TI 1760667401.550174951 +CC NStripHits 2 +PE 118.475 +PP -0.535766 -0.0619808 -1.63123 +PW 0 +SE +ET PH +ID 5727 +TI 1760667401.550191879 +CC NStripHits 3 +PE 148.818 +PP 1.32673 -0.62816 0.580484 +PW 0 +SE +ID 5728 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 52.373264) +BD GR Veto +PQ 3.37785 +SE +ET PH +ID 5729 +TI 1760667401.550220727 +CC NStripHits 6 +PE 492.845 +PP 3.53845 -0.397875 1.74455 +PW 0 +SE +ID 5730 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.442455) +BD GR Veto +PQ 3.96215 +SE +ET PH +ID 5731 +TI 1760667401.550255775 +CC NStripHits 2 +PE 34.847 +PP -1.00139 -0.261343 -2.09686 +PW 0 +SE +ET CO +ID 5732 +TI 1760667401.550273895 +CC NStripHits 5 +PQ 3.71377 +SQ 2 +CT 0.76284 0.23716 +TL 1 +TE 454.382 +CE 211.003 1.3759 454.382 0.984064 +CD 0.628297 -0.569363 1.04611 0.0336036 0.0216123 0.0336036 0.977516 0.355039 0.929703 0.0336036 0.0291595 0.0336036 0 0 0 0 0 0 +LA 0.994999 +SE +ID 5733 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 474.703583) +BD GR Veto +PQ 9.62054 +SE +ET CO +ID 5734 +TI 1760667401.550326585 +CC NStripHits 4 +PQ 27.4005 +SQ 2 +CT 0 1 +TL 1 +TE 70.3783 +CE 127.633 1.28857 70.3783 1.30036 +CD 2.14158 -0.521297 -2.9117 0.0336036 0.0217136 0.0336036 2.6072 -0.175778 -3.02811 0.0336036 0.0236478 0.0336036 0 0 0 0 0 0 +LA 0.591385 +SE +ET UN +ID 5735 +TI 1760667401.550358533 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 169.806 +SE +ID 5736 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (242.228024)) (GR Hit: Detector ID 0 and Energy 666.386031) +BD GR Veto +PQ 242.228 +SE +ID 5737 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 42.430831) +BD GR Veto +PQ 3.61412 +SE +ET UN +ID 5738 +TI 1760667401.550425767 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 116.904 +SE +ET PH +ID 5739 +TI 1760667401.550448179 +CC NStripHits 3 +PE 197.76 +PP 1.67595 -0.542029 -1.39842 +PW 0 +SE +ET PH +ID 5740 +TI 1760667401.550481319 +CC NStripHits 3 +PE 37.0967 +PP 1.09392 -0.900269 -3.72655 +PW 0 +SE +ET UN +ID 5741 +TI 1760667401.550532817 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.3835 +SE +ID 5742 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 166.574242) +BD GR Veto +PQ 5.80213 +SE +ET PH +ID 5743 +TI 1760667401.550559282 +CC NStripHits 5 +PE 406.529 +PP 4.23689 -0.412148 -2.7953 +PW 0 +SE +ID 5744 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 0.587936 +SE +ET PH +ID 5745 +TI 1760667401.550610780 +CC NStripHits 4 +PE 421.187 +PP 1.55955 -0.112105 -2.7953 +PW 0 +SE +ET PH +ID 5746 +TI 1760667401.550646305 +CC NStripHits 3 +PE 451.522 +PP -0.652172 -1.12918 0.813297 +PW 0 +SE +ET PH +ID 5747 +TI 1760667401.550668716 +CC NStripHits 3 +PE 504.954 +PP 3.88767 -0.0298051 -3.61014 +PW 0 +SE +ET UN +ID 5748 +TI 1760667401.550689220 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 66.684 +SE +ET UN +ID 5749 +TI 1760667401.550709486 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 653.686 +SE +ET UN +ID 5750 +TI 1760667401.550757408 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 23.688 +SE +ET PH +ID 5751 +TI 1760667401.550775289 +CC NStripHits 2 +PE 88.5659 +PP -1.69983 0.12566 -4.6578 +PW 0 +SE +ID 5752 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 285.996569) +BD GR Veto +PQ 1.83323 +SE +ET PH +ID 5753 +TI 1760667401.550809144 +CC NStripHits 2 +PE 454.006 +PP -1.00139 0.236033 0.231266 +PW 0 +SE +ID 5754 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 175.623558) +BD GR Veto +PQ 0.730357 +SE +ET PH +ID 5755 +TI 1760667401.550838708 +CC NStripHits 2 +PE 221.263 +PP -2.51467 -0.583768 0.114859 +PW 0 +SE +ID 5756 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.610806) +BD GR Veto +PQ 1.62346 +SE +ET PH +ID 5757 +TI 1760667401.550884008 +CC NStripHits 2 +PE 187.194 +PP -0.535766 -0.46181 -2.32967 +PW 0 +SE +ID 5758 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1105.113502)) (GR Hit: Detector ID 0 and Energy 160.240193) +BD GR Veto +PQ 1105.11 +SE +ET PH +ID 5759 +TI 1760667401.571640253 +CC NStripHits 2 +PE 662.499 +PP 0.279078 0.364342 2.21017 +PW 0 +SE +ET PH +ID 5760 +TI 1760667401.571732759 +CC NStripHits 2 +PE 30.9109 +PP -1.35061 0.148902 -0.583578 +PW 0 +SE +ET PH +ID 5761 +TI 1760667401.571773529 +CC NStripHits 2 +PE 74.5936 +PP 2.84002 -1.05893 -3.72655 +PW 0 +SE +ET UN +ID 5762 +TI 1760667401.571816682 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 5763 +TI 1760667401.571836471 +CC NStripHits 3 +PE 431.27 +PP -2.16545 0.142125 -0.467172 +PW 0 +SE +ET PH +ID 5764 +TI 1760667401.571875095 +CC NStripHits 3 +PE 126.82 +PP -0.768578 -0.878803 0.114859 +PW 0 +SE +ET PH +ID 5765 +TI 1760667401.571913957 +CC NStripHits 3 +PE 262.354 +PP -0.186547 -0.206684 -4.42498 +PW 0 +SE +ID 5766 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 30.739255) (GR Hit: Detector ID 0 and Energy 88.720615) +BD GR Veto +PQ 1.57983 +SE +ET CO +ID 5767 +TI 1760667401.571968078 +CC NStripHits 8 +PQ 18.7729 +SQ 3 +CT 0.0200795 0.125144 +TL 1 +TE 135.865 +CE 508.346 2.26241 135.865 0.925843 +CD 1.32673 -0.687472 1.51173 0.0336036 0.0210833 0.0336036 1.44314 -0.574805 1.74455 0.0336036 0.0215988 0.0336036 0 0 0 0 0 0 +LA 0.283638 +SE +ID 5768 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5769 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 66.221835) +BD GR Veto +PQ 0.0887072 +SE +ET PH +ID 5770 +TI 1760667401.572031021 +CC NStripHits 3 +PE 128.899 +PP -0.768578 -0.0602073 1.74455 +PW 0 +SE +ET PH +ID 5771 +TI 1760667401.572051048 +CC NStripHits 3 +PE 166.881 +PP -1.69983 0.37163 -0.467172 +PW 0 +SE +ET UN +ID 5772 +TI 1760667401.572070837 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 142.593 +SE +ET UN +ID 5773 +TI 1760667401.572136402 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 271.641 +SE +ET PH +ID 5774 +TI 1760667401.572170734 +CC NStripHits 2 +PE 96.8694 +PP 3.42205 0.365481 0.929703 +PW 0 +SE +ID 5775 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 93.584585) +BD GR Veto +PQ 0.379409 +SE +ET PH +ID 5776 +TI 1760667401.572198390 +CC NStripHits 2 +PE 443.038 +PP -1.69983 0.226094 0.231266 +PW 0 +SE +ID 5777 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 316.338303) +BD GR Veto +PQ 1.69598 +SE +ID 5778 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.444518) (Strip hit removed with energy 11.049341) +QA StripPairing (Best reduced chi square is not below 25 (1222.203404)) (GR Hit: Detector ID 0 and Energy 164.405922) +BD GR Veto +PQ 1222.2 +SE +ET PH +ID 5779 +TI 1760667401.572240829 +CC NStripHits 2 +PE 58.9735 +PP 2.25798 -0.801894 -1.39842 +PW 0 +SE +ET PH +ID 5780 +TI 1760667401.572275161 +CC NStripHits 2 +PE 131.065 +PP -1.81623 -1.00451 -3.26092 +PW 0 +SE +ET PH +ID 5781 +TI 1760667401.572294712 +CC NStripHits 3 +PE 168.347 +PP 3.30564 -0.89179 0.813297 +PW 0 +SE +ET PH +ID 5782 +TI 1760667401.572314262 +CC NStripHits 2 +PE 162.368 +PP -2.39827 0.369295 -0.583578 +PW 0 +SE +ET PH +ID 5783 +TI 1760667401.572332382 +CC NStripHits 3 +PE 282.171 +PP 3.30564 0.183087 -1.28202 +PW 0 +SE +ID 5784 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.454201) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 22.256096)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 96.896918) (GR Hit: Detector ID 0 and Energy 473.956889) +BD GR Veto +PQ 22.9905 +SE +ID 5785 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.435783) +BD GR Veto +PQ 4.73874 +SE +ET UN +ID 5786 +TI 1760667401.572388410 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5787 +TI 1760667401.572408437 +CC NStripHits 2 +PE 406.551 +PP 1.44314 0.155712 -1.74764 +PW 0 +SE +ET PH +ID 5788 +TI 1760667401.572430610 +CC NStripHits 2 +PE 332.954 +PP 4.00408 0.20339 2.21017 +PW 0 +SE +ET PH +ID 5789 +TI 1760667401.572450399 +CC NStripHits 3 +PE 266.689 +PP -2.74748 -0.843503 -0.816391 +PW 0 +SE +ET PH +ID 5790 +TI 1760667401.572470664 +CC NStripHits 3 +PE 562.151 +PP 3.07283 -0.530655 -2.44608 +PW 0 +SE +ID 5791 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (6165.836840)) (GR Hit: Detector ID 0 and Energy 316.663453) +BD GR Veto +PQ 6165.84 +SE +ET UN +ID 5792 +TI 1760667401.572502851 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.5957 +SE +ID 5793 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (434.817436)) (GR Hit: Detector ID 0 and Energy 91.013783) +BD GR Veto +PQ 434.817 +SE +ET UN +ID 5794 +TI 1760667401.572528362 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 454.832 +SE +ET PH +ID 5795 +TI 1760667401.572550296 +CC NStripHits 2 +PE 30.5051 +PP 2.02517 -0.642462 -2.67889 +PW 0 +SE +ET UN +ID 5796 +TI 1760667401.572568655 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.0849 +SE +ET PH +ID 5797 +TI 1760667401.572586297 +CC NStripHits 3 +PE 418.543 +PP -1.69983 0.278278 -1.0492 +PW 0 +SE +ID 5798 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 145.780336) +BD GR Veto +PQ 7.43096 +SE +ET UN +ID 5799 +TI 1760667401.572626590 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5800 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 188.398898) (GR Hit: Detector ID 0 and Energy 93.493686) +BD GR Veto +PQ 1.42375 +SE +ID 5801 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 173.058339) +BD GR Veto +PQ 12.1232 +SE +ET CO +ID 5802 +TI 1760667401.572671413 +CC NStripHits 4 +PQ 0.421219 +SQ 2 +CT 0 1 +TL 1 +TE 27.3856 +CE 160.566 0.929642 27.3856 0.94543 +CD 2.84002 -0.999035 -1.63123 0.0336036 0.0201034 0.0336036 4.00408 0.357179 -2.09686 0.0336036 0.0281768 0.0336036 0 0 0 0 0 0 +LA 1.84693 +SE +ET PH +ID 5803 +TI 1760667401.572703599 +CC NStripHits 2 +PE 197.86 +PP 3.88767 -0.92734 -2.9117 +PW 0 +SE +ET PH +ID 5804 +TI 1760667401.572722434 +CC NStripHits 6 +PE 662.068 +PP 2.84002 -0.658456 -3.84295 +PW 0 +SE +ID 5805 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.379093) +QA StripPairing (Best reduced chi square is not below 25 (110.116520)) +BD GR Veto +PQ 110.117 +SE +ID 5806 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 0.183323 +SE +ET PH +ID 5807 +TI 1760667401.572797536 +CC NStripHits 2 +PE 27.0107 +PP -1.93264 0.373478 2.6758 +PW 0 +SE +ET PH +ID 5808 +TI 1760667401.572812557 +CC NStripHits 4 +PE 480.533 +PP 2.14158 0.0785525 -2.32967 +PW 0 +SE +ID 5809 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (4005.897763)) (GR Hit: Detector ID 0 and Energy 252.773466) +BD GR Veto +PQ 4005.9 +SE +ET PH +ID 5810 +TI 1760667401.572848320 +CC NStripHits 2 +PE 74.408 +PP 2.72361 0.30842 -3.37733 +PW 0 +SE +ET PH +ID 5811 +TI 1760667401.572868347 +CC NStripHits 2 +PE 442.411 +PP 1.79236 0.00473519 -1.86405 +PW 0 +SE +ET PH +ID 5812 +TI 1760667401.572888612 +CC NStripHits 2 +PE 100.443 +PP 2.4908 -0.869256 -4.30858 +PW 0 +SE +ET UN +ID 5813 +TI 1760667401.572910547 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ID 5814 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 109.814989) +BD GR Veto +PQ 3.1191 +SE +ET PH +ID 5815 +TI 1760667401.572964429 +CC NStripHits 3 +PE 353.612 +PP 1.21033 -1.09306 0.464078 +PW 0 +SE +ET PH +ID 5816 +TI 1760667401.572985410 +CC NStripHits 2 +PE 56.3265 +PP -0.419359 -1.09327 0.813297 +PW 0 +SE +ET PH +ID 5817 +TI 1760667401.573004007 +CC NStripHits 2 +PE 34.5621 +PP 0.628297 -1.17636 -1.86405 +PW 0 +SE +ID 5818 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ID 5819 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 413.291430) +BD GR Veto +PQ 4.1532 +SE +ET UN +ID 5820 +TI 1760667401.573054552 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.6073 +SE +ET PH +ID 5821 +TI 1760667401.573072195 +CC NStripHits 2 +PE 104.864 +PP -1.2342 0.357981 -3.84295 +PW 0 +SE +ET CO +ID 5822 +TI 1760667401.573094844 +CC NStripHits 5 +PQ 0.187921 +SQ 2 +CT 0 1 +TL 1 +TE 63.9704 +CE 204.288 1.08718 63.9704 0.91406 +CD 2.02517 -0.447215 -2.7953 0.0336036 0.0220963 0.0336036 1.21033 -0.265541 -2.9117 0.0336036 0.0233078 0.0336036 0 0 0 0 0 0 +LA 0.842923 +SE +ET UN +ID 5823 +TI 1760667401.592461109 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 49.5394 +SE +ET CO +ID 5824 +TI 1760667401.592525005 +CC NStripHits 5 +PQ 12.5628 +SQ 2 +CT 0.514741 0.485259 +TL 1 +TE 172.277 +CE 159.792 0.913161 172.277 1.3476 +CD 1.21033 -0.588616 0.580484 0.0336036 0.0215292 0.0336036 1.79236 -0.565136 1.04611 0.0336036 0.021618 0.0336036 0 0 0 0 0 0 +LA 0.745733 +SE +ID 5825 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.282393) (Strip hit removed with energy 16.736295) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.184973)) +BD GR Veto +PQ 17.9482 +SE +ET UN +ID 5826 +TI 1760667401.592615842 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.1531 +SE +ID 5827 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 281.865688) +BD GR Veto +PQ 0.141099 +SE +ID 5828 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (308.075362)) (GR Hit: Detector ID 0 and Energy 84.587798) +BD GR Veto +PQ 308.075 +SE +ET UN +ID 5829 +TI 1760667401.592650175 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 386.211 +SE +ET PH +ID 5830 +TI 1760667401.592698097 +CC NStripHits 2 +PE 155.002 +PP -1.35061 -1.14819 -3.14452 +PW 0 +SE +ET CO +ID 5831 +TI 1760667401.592717647 +CC NStripHits 5 +PQ 36.865 +SQ 2 +CT 0 1 +TL 1 +TE 116.345 +CE 237.404 1.28778 116.345 1.24925 +CD -0.884984 -0.475061 -1.16561 0.0336036 0.0219366 0.0336036 -0.535766 -1.03228 -1.28202 0.0336036 0.0206083 0.0336036 0 0 0 0 0 0 +LA 0.66783 +SE +ET UN +ID 5832 +TI 1760667401.592747449 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 218.07 +SE +ET UN +ID 5833 +TI 1760667401.592772960 +BD DepthCalibrationError (Out of Range) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 10 +PE 660.479 +SE +ET PH +ID 5834 +TI 1760667401.592830896 +CC NStripHits 2 +PE 151.554 +PP 1.79236 -0.500293 0.347672 +PW 0 +SE +ET PH +ID 5835 +TI 1760667401.592861175 +CC NStripHits 2 +PE 434.737 +PP 0.279078 0.227104 -1.98045 +PW 0 +SE +ID 5836 +BD StripPairingError (More than maximum number of strip hits allowed on one side (7)) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.500440) +BD GR Veto +PQ +SE +ET PH +ID 5837 +TI 1760667401.592954635 +CC NStripHits 2 +PE 63.2572 +PP 1.21033 0.359038 -3.72655 +PW 0 +SE +ET UN +ID 5838 +TI 1760667401.592974901 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9272 +SE +ID 5839 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 57.456545) +BD GR Veto +PQ 0.0716187 +SE +ID 5840 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 96.453138) +BD GR Veto +PQ 0.0263205 +SE +ET PH +ID 5841 +TI 1760667401.593007087 +CC NStripHits 3 +PE 103.335 +PP 2.72361 -0.00562795 -3.49373 +PW 0 +SE +ET PH +ID 5842 +TI 1760667401.593044757 +CC NStripHits 3 +PE 187.831 +PP 3.77127 -0.5853 -2.32967 +PW 0 +SE +ET CO +ID 5843 +TI 1760667401.593064785 +CC NStripHits 8 +PQ 0.790996 +SQ 2 +CT 0 1 +TL 1 +TE 157.719 +CE 301.389 1.3095 157.719 1.33326 +CD 4.00408 -0.915395 0.114859 0.0336036 0.0197797 0.0336036 1.90877 -0.0181143 -0.699984 0.0336036 0.0248666 0.0336036 0 0 0 0 0 0 +LA 2.42062 +SE +ID 5844 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.850326) +BD GR Veto +PQ 2.06746 +SE +ET PH +ID 5845 +TI 1760667401.593117237 +CC NStripHits 3 +PE 114.898 +PP -2.28186 -0.728442 -1.63123 +PW 0 +SE +ET PH +ID 5846 +TI 1760667401.593136548 +CC NStripHits 3 +PE 288.592 +PP 1.32673 -0.741922 1.04611 +PW 0 +SE +ET PH +ID 5847 +TI 1760667401.593163967 +CC NStripHits 3 +PE 96.1166 +PP 2.25798 0.228084 -4.6578 +PW 0 +SE +ID 5848 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.664291) +BD GR Veto +PQ +SE +ET PH +ID 5849 +TI 1760667401.593190670 +CC NStripHits 3 +PE 269.655 +PP 1.79236 -0.679486 2.44298 +PW 0 +SE +ET PH +ID 5850 +TI 1760667401.593212604 +CC NStripHits 3 +PE 294.235 +PP 0.861109 -0.27633 1.27892 +PW 0 +SE +ET PH +ID 5851 +TI 1760667401.593250513 +CC NStripHits 4 +PE 197.138 +PP 0.279078 -0.0747583 -1.51483 +PW 0 +SE +ET PH +ID 5852 +TI 1760667401.593272924 +CC NStripHits 3 +PE 228.653 +PP -1.46702 -0.791683 -0.699984 +PW 0 +SE +ET PH +ID 5853 +TI 1760667401.593297719 +CC NStripHits 2 +PE 87.5995 +PP 2.02517 -0.838717 -1.74764 +PW 0 +SE +ET PH +ID 5854 +TI 1760667401.593315362 +CC NStripHits 2 +PE 660.793 +PP 2.02517 -0.397602 -1.51483 +PW 0 +SE +ET CO +ID 5855 +TI 1760667401.593337059 +CC NStripHits 6 +PQ 0.414755 +SQ 2 +CT 0 1 +TL 1 +TE 29.8247 +CE 188.838 1.30505 29.8247 0.928049 +CD -0.186547 -0.290673 -1.63123 0.0336036 0.0231855 0.0336036 -0.652172 -0.662714 -2.09686 0.0336036 0.0212047 0.0336036 0 0 0 0 0 0 +LA 0.756328 +SE +ET PH +ID 5856 +TI 1760667401.593378782 +CC NStripHits 4 +PE 256.392 +PP -1.00139 -0.279857 0.347672 +PW 0 +SE +ID 5857 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 130.699554) +BD GR Veto +PQ 0.526784 +SE +ET PH +ID 5858 +TI 1760667401.593452453 +CC NStripHits 2 +PE 199.473 +PP 0.511891 -0.811222 -4.6578 +PW 0 +SE +ET PH +ID 5859 +TI 1760667401.593467473 +CC NStripHits 2 +PE 307.484 +PP 3.65486 -0.215546 -1.0492 +PW 0 +SE +ID 5860 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.308903) +BD GR Veto +PQ 0.608585 +SE +ID 5861 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 165.188080) +BD GR Veto +PQ 0.268919 +SE +ET CO +ID 5862 +TI 1760667401.593517065 +CC NStripHits 8 +PQ 0.479217 +SQ 3 +CT 0.0049003 0.00659786 +TL 1 +TE 138.477 +CE 518.441 1.43143 138.477 1.08916 +CD 2.37439 -0.631976 -0.234359 0.0336036 0.0214099 0.0336036 2.02517 -0.748012 -0.117953 0.0336036 0.0205174 0.0336036 0 0 0 0 0 0 +LA 0.385965 +SE +ET PH +ID 5863 +TI 1760667401.593571186 +CC NStripHits 2 +PE 113.535 +PP -1.69983 0.368396 -1.63123 +PW 0 +SE +ET PH +ID 5864 +TI 1760667401.593600988 +CC NStripHits 2 +PE 128.837 +PP 0.162672 0.366759 -3.37733 +PW 0 +SE +ET CO +ID 5865 +TI 1760667401.593635320 +CC NStripHits 4 +PQ 1.06487 +SQ 2 +CT 0 1 +TL 1 +TE 71.9812 +CE 133.425 0.940412 71.9812 0.938878 +CD 1.55955 -0.0549737 -0.932797 0.0336036 0.0246511 0.0336036 1.79236 0.161489 -0.583578 0.0336036 0.0274553 0.0336036 0 0 0 0 0 0 +LA 0.47224 +SE +ID 5866 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 341.700112) +BD GR Veto +PQ 0.0381552 +SE +ID 5867 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 363.871342) +BD GR Veto +PQ 5.01117 +SE +ID 5868 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 0.441162) +BD GR Veto +PQ 0.0156772 +SE +ET CO +ID 5869 +TI 1760667401.593717813 +CC NStripHits 4 +PQ 1.38417 +SQ 2 +CT 0 1 +TL 1 +TE 29.5629 +CE 161.499 0.904429 29.5629 0.926046 +CD 3.65486 -0.517663 0.114859 0.0336036 0.0217248 0.0336036 2.25798 -0.0287853 0.580484 0.0336036 0.0248071 0.0336036 0 0 0 0 0 0 +LA 1.55148 +SE +ID 5870 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.214982) +QA StripPairing (GR Hit: Detector ID 0 and Energy 137.079822) +BD GR Veto +PQ 18.2629 +SE +ET UN +ID 5871 +TI 1760667401.593783617 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 143.837 +SE +ET UN +ID 5872 +TI 1760667401.593806266 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 339.546 +SE +ET CO +ID 5873 +TI 1760667401.593827247 +CC NStripHits 8 +PQ 0.781809 +SQ 2 +CT 0 1 +TL 1 +TE 126.617 +CE 534.15 1.47468 126.617 1.0553 +CD -1.2342 -0.911022 -1.74764 0.0336036 0.0197805 0.0336036 -1.00139 -1.0717 -1.98045 0.0336036 0.0227214 0.0336036 0 0 0 0 0 0 +LA 0.366358 +SE +ET PH +ID 5874 +TI 1760667401.593868732 +CC NStripHits 2 +PE 98.1731 +PP 2.37439 -0.293563 -0.932797 +PW 0 +SE +ET PH +ID 5875 +TI 1760667401.593886137 +CC NStripHits 2 +PE 131.575 +PP 1.44314 -0.0563757 -2.21327 +PW 0 +SE +ID 5876 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 114.983582) +BD GR Veto +PQ 3.7353 +SE +ID 5877 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 395.319550) +BD GR Veto +PQ 6.82824 +SE +ID 5878 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5879 +TI 1760667401.593927860 +CC NStripHits 2 +PE 32.5867 +PP -1.58342 -0.0218068 -4.42498 +PW 0 +SE +ID 5880 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 223.665417) +BD GR Veto +PQ 8.92632 +SE +ET CO +ID 5881 +TI 1760667401.593953847 +CC NStripHits 5 +PQ 0.931282 +SQ 2 +CT 0 1 +TL 1 +TE 106.471 +CE 340.676 1.0664 106.471 0.920898 +CD 1.55955 0.0847558 1.51173 0.0336036 0.0260305 0.0336036 2.72361 0.353734 0.231266 0.0336036 0.0297322 0.0336036 0 0 0 0 0 0 +LA 1.75128 +SE +ET PH +ID 5882 +TI 1760667401.593989610 +CC NStripHits 5 +PE 485.979 +PP 1.09392 0.138522 2.21017 +PW 0 +SE +ET PH +ID 5883 +TI 1760667401.594014406 +CC NStripHits 3 +PE 389.363 +PP -0.768578 -0.208899 2.55939 +PW 0 +SE +ID 5884 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 88.091969) +BD GR Veto +PQ 1.17336 +SE +ID 5885 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1611.983920)) (GR Hit: Detector ID 0 and Energy 173.058339) +BD GR Veto +PQ 1611.98 +SE +ID 5886 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 273.954418) +BD GR Veto +PQ 5.19342 +SE +ET PH +ID 5887 +TI 1760667401.617141008 +CC NStripHits 3 +PE 462.245 +PP 1.55955 -0.465979 -0.467172 +PW 0 +SE +ET PH +ID 5888 +TI 1760667401.617237091 +CC NStripHits 2 +PE 378.206 +PP 3.65486 0.348926 2.32658 +PW 0 +SE +ET PH +ID 5889 +TI 1760667401.617286443 +CC NStripHits 2 +PE 101.328 +PP 2.72361 0.360367 -4.30858 +PW 0 +SE +ET PH +ID 5890 +TI 1760667401.617305994 +CC NStripHits 3 +PE 128.534 +PP 2.37439 -0.847902 -2.56248 +PW 0 +SE +ET PH +ID 5891 +TI 1760667401.617327213 +CC NStripHits 2 +PE 144.637 +PP 3.42205 -0.925682 -0.467172 +PW 0 +SE +ID 5892 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.767947) +QA StripPairing (Best reduced chi square is not below 25 (11758.181537)) (GR Hit: Detector ID 0 and Energy 446.243379) +BD GR Veto +PQ 11758.2 +SE +ID 5893 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 106.820795) +BD GR Veto +PQ 2.342 +SE +ID 5894 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.858344) (Strip hit removed with energy 6.320097) +QA StripPairing (GR Hit: Detector ID 0 and Energy 247.511695) +BD GR Veto +PQ 3.30663 +SE +ET UN +ID 5895 +TI 1760667401.617395877 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 8 +PE 366.913 +SE +ET CO +ID 5896 +TI 1760667401.617450237 +CC NStripHits 4 +PQ 26.1575 +SQ 2 +CT 0 1 +TL 1 +TE 66.673 +CE 251.824 1.36718 66.673 1.3187 +CD 0.511891 -0.185414 -4.6578 0.0336036 0.0235858 0.0336036 0.279078 0.291763 -3.84295 0.0336036 0.0380751 0.0336036 0 0 0 0 0 0 +LA 0.972564 +SE +ID 5897 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 421.793644) +BD GR Veto +PQ 10.3724 +SE +ID 5898 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 125.057432) +BD GR Veto +PQ 0.367146 +SE +ET PH +ID 5899 +TI 1760667401.617493152 +CC NStripHits 2 +PE 99.0218 +PP 0.162672 -0.806372 -2.32967 +PW 0 +SE +ET UN +ID 5900 +TI 1760667401.617510318 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 1330.1 +SE +ET CO +ID 5901 +TI 1760667401.617544651 +CC NStripHits 5 +PQ 1.34981 +SQ 2 +CT 0.60503 0.39497 +TL 1 +TE 260.943 +CE 174.574 1.04674 260.943 0.935497 +CD -2.28186 -1.06819 1.51173 0.0336036 0.022391 0.0336036 -2.16545 0.189846 2.55939 0.0336036 0.0282974 0.0336036 0 0 0 0 0 0 +LA 1.64128 +SE +ET UN +ID 5902 +TI 1760667401.617571592 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET PH +ID 5903 +TI 1760667401.617613315 +CC NStripHits 3 +PE 109.149 +PP 0.511891 -0.768507 0.347672 +PW 0 +SE +ET UN +ID 5904 +TI 1760667401.617633104 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.0711 +SE +ET PH +ID 5905 +TI 1760667401.617647886 +CC NStripHits 3 +PE 230.43 +PP 4.3533 -0.318659 -0.583578 +PW 0 +SE +ET PH +ID 5906 +TI 1760667401.617664575 +CC NStripHits 2 +PE 71.7578 +PP -0.419359 -0.783657 -1.0492 +PW 0 +SE +ET PH +ID 5907 +TI 1760667401.617682218 +CC NStripHits 2 +PE 162.1 +PP 3.77127 0.357013 0.114859 +PW 0 +SE +ID 5908 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 418.960334) +BD GR Veto +PQ 15.1121 +SE +ET UN +ID 5909 +TI 1760667401.617706775 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 5910 +TI 1760667401.617724180 +CC NStripHits 5 +PQ 0.775769 +SQ 2 +CT 0 1 +TL 1 +TE 127.178 +CE 212.929 1.08 127.178 0.949405 +CD 0.861109 0.29907 -4.19217 0.0336036 0.0385875 0.0336036 0.279078 -0.596151 -4.54139 0.0336036 0.021483 0.0336036 0 0 0 0 0 0 +LA 1.12345 +SE +ET PH +ID 5911 +TI 1760667401.617756605 +CC NStripHits 4 +PE 507.834 +PP 2.25798 -0.0271266 -2.7953 +PW 0 +SE +ID 5912 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (768.380959)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 466.628812)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 135.617489) +BD GR Veto +PQ 768.381 +SE +ET UN +ID 5913 +TI 1760667401.617817640 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 662.995 +SE +ID 5914 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 433.433789) +BD GR Veto +PQ 15.2727 +SE +ET PH +ID 5915 +TI 1760667401.617854356 +CC NStripHits 2 +PE 48.7547 +PP 1.90877 -0.476456 0.464078 +PW 0 +SE +ID 5916 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 11.398125) (Strip hit removed with energy 15.874215) (Strip hit removed with energy 8.209153) (Strip hit removed with energy 8.395190) (Strip hit removed with energy 16.883824) (Strip hit removed with energy 8.298803) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 20.318979)) +BD GR Veto +PQ 0.0911969 +SE +ET PH +ID 5917 +TI 1760667401.617916822 +CC NStripHits 4 +PE 369.668 +PP 0.511891 -0.307864 -3.14452 +PW 0 +SE +ET PH +ID 5918 +TI 1760667401.617939710 +CC NStripHits 2 +PE 92.8289 +PP -0.768578 -1.12627 -3.14452 +PW 0 +SE +ET PH +ID 5919 +TI 1760667401.617956876 +CC NStripHits 2 +PE 27.0419 +PP -2.16545 -0.329291 -2.9117 +PW 0 +SE +ET PH +ID 5920 +TI 1760667401.617974519 +CC NStripHits 3 +PE 296.12 +PP 0.162672 -0.676418 -3.02811 +PW 0 +SE +ID 5921 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.219963) +BD GR Veto +PQ +SE +ET CO +ID 5922 +TI 1760667401.618000030 +CC NStripHits 8 +PQ 0.863186 +SQ 3 +CT 0.00160949 0.00570697 +TL 1 +TE 220.842 +CE 440.805 1.52477 220.842 0.933934 +CD -1.00139 -0.332631 1.97736 0.0336036 0.0229662 0.0336036 -0.419359 -0.262777 1.62814 0.0336036 0.0233201 0.0336036 0 0 0 0 0 0 +LA 0.471848 +SE +ET PH +ID 5923 +TI 1760667401.618040800 +CC NStripHits 2 +PE 220.392 +PP 0.162672 0.366587 -1.28202 +PW 0 +SE +ET UN +ID 5924 +TI 1760667401.618058204 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 51.0227 +SE +ID 5925 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (33.341268)) (GR Hit: Detector ID 0 and Energy 443.176674) +BD GR Veto +PQ 33.3413 +SE +ET UN +ID 5926 +TI 1760667401.618083953 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 5927 +TI 1760667401.618098497 +CC NStripHits 2 +PE 300.521 +PP 2.02517 -0.58543 -4.19217 +PW 0 +SE +ET PH +ID 5928 +TI 1760667401.618115663 +CC NStripHits 2 +PE 31.5793 +PP 0.628297 0.0135035 -3.95936 +PW 0 +SE +ET PH +ID 5929 +TI 1760667401.618132829 +CC NStripHits 3 +PE 221.869 +PP -2.04905 -0.943493 -3.37733 +PW 0 +SE +ET PH +ID 5930 +TI 1760667401.618151426 +CC NStripHits 3 +PE 94.4365 +PP 4.00408 -0.705226 -4.07577 +PW 0 +SE +ET PH +ID 5931 +TI 1760667401.618170261 +CC NStripHits 2 +PE 129.704 +PP 1.32673 0.374742 0.580484 +PW 0 +SE +ET UN +ID 5932 +TI 1760667401.618188619 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 233.478 +SE +ET UN +ID 5933 +TI 1760667401.618217468 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 66.0861 +SE +ID 5934 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.546095) +QA StripPairing (Best reduced chi square is not below 25 (52.585529)) (GR Hit: Detector ID 0 and Energy 121.801579) +BD GR Veto +PQ 52.5855 +SE +ET UN +ID 5935 +TI 1760667401.618273019 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.9237 +SE +ET PH +ID 5936 +TI 1760667401.618289232 +CC NStripHits 2 +PE 196.315 +PP -0.186547 -0.414643 -1.16561 +PW 0 +SE +ET UN +ID 5937 +TI 1760667401.618306398 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.1745 +SE +ET UN +ID 5938 +TI 1760667401.618323564 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 5 +PE 134.338 +SE +ID 5939 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 242.395063) +BD GR Veto +PQ 0.779177 +SE +ET PH +ID 5940 +TI 1760667401.618369102 +CC NStripHits 3 +PE 538.324 +PP 4.23689 -1.09945 -0.467172 +PW 0 +SE +ET CO +ID 5941 +TI 1760667401.618396043 +CC NStripHits 5 +PQ 1.86008 +SQ 2 +CT 0.590102 0.409898 +TL 1 +TE 366.147 +CE 292.97 1.06438 366.147 0.965669 +CD -2.16545 -0.603206 0.929703 0.0336036 0.0214486 0.0336036 -2.74748 0.252128 0.231266 0.0336036 0.0328571 0.0336036 0 0 0 0 0 0 +LA 1.24827 +SE +ET PH +ID 5942 +TI 1760667401.618429899 +CC NStripHits 6 +PE 666.671 +PP 2.72361 0.19589 1.51173 +PW 0 +SE +ET PH +ID 5943 +TI 1760667401.618464231 +CC NStripHits 3 +PE 171.279 +PP -1.2342 0.370175 -0.00154687 +PW 0 +SE +ID 5944 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 81.754639) +BD GR Veto +PQ 0.732218 +SE +ET PH +ID 5945 +TI 1760667401.618501424 +CC NStripHits 2 +PE 38.1339 +PP -2.04905 -0.950267 -3.26092 +PW 0 +SE +ET PH +ID 5946 +TI 1760667401.618518114 +CC NStripHits 4 +PE 368.146 +PP 2.6072 -0.554446 -4.07577 +PW 0 +SE +ET UN +ID 5947 +TI 1760667401.618540048 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.4084 +SE +ET PH +ID 5948 +TI 1760667401.618557453 +CC NStripHits 2 +PE 333.913 +PP 0.861109 -0.578706 1.16252 +PW 0 +SE +ET PH +ID 5949 +TI 1760667401.618578910 +CC NStripHits 2 +PE 340.361 +PP -1.00139 -0.227645 0.580484 +PW 0 +SE +ID 5950 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 25.559023) +BD GR Veto +PQ 0.134092 +SE +ET PH +ID 5951 +TI 1760667401.638618230 +CC NStripHits 2 +PE 84.7516 +PP -2.39827 0.361346 -2.44608 +PW 0 +SE +ET PH +ID 5952 +TI 1760667401.638699769 +CC NStripHits 3 +PE 439.607 +PP 2.02517 -0.0350724 0.580484 +PW 0 +SE +ET PH +ID 5953 +TI 1760667401.638766050 +CC NStripHits 2 +PE 137.625 +PP 1.21033 0.349549 -2.7953 +PW 0 +SE +ID 5954 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 165.630337) +BD GR Veto +PQ 1.61645 +SE +ET PH +ID 5955 +TI 1760667401.638911008 +CC NStripHits 2 +PE 99.4341 +PP -2.86389 -0.267155 0.813297 +PW 0 +SE +ET PH +ID 5956 +TI 1760667401.638948440 +CC NStripHits 2 +PE 123.867 +PP 3.42205 -0.448839 -4.30858 +PW 0 +SE +ET PH +ID 5957 +TI 1760667401.638969421 +CC NStripHits 2 +PE 214.631 +PP -1.35061 0.0854996 1.74455 +PW 0 +SE +ET UN +ID 5958 +TI 1760667401.638994216 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 156.241 +SE +ET PH +ID 5959 +TI 1760667401.639028072 +CC NStripHits 2 +PE 106.729 +PP 2.84002 -0.339376 -0.117953 +PW 0 +SE +ID 5960 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 131.958695) +BD GR Veto +PQ 1.30945 +SE +ET PH +ID 5961 +TI 1760667401.639055728 +CC NStripHits 2 +PE 148.647 +PP 2.95642 -0.654519 -1.98045 +PW 0 +SE +ID 5962 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.358067) +BD GR Veto +PQ +SE +ET PH +ID 5963 +TI 1760667401.639080047 +CC NStripHits 3 +PE 108.53 +PP 0.162672 -0.20749 0.813297 +PW 0 +SE +ET CO +ID 5964 +TI 1760667401.639100313 +CC NStripHits 6 +PQ 6.86414 +SQ 3 +CT 0.0589164 0.109186 +TL 1 +TE 94.8697 +CE 559.552 1.78276 94.8697 0.916341 +CD -2.16545 -0.418855 -2.9117 0.0336036 0.0223352 0.0336036 -2.63108 -0.645979 -1.86405 0.0336036 0.0213412 0.0336036 0 0 0 0 0 0 +LA 1.16875 +SE +ET CO +ID 5965 +TI 1760667401.639150142 +CC NStripHits 6 +PQ 1.79735 +SQ 2 +CT 0.509221 0.490779 +TL 1 +TE 165.974 +CE 227.395 1.2984 165.974 0.912424 +CD 4.3533 -0.301553 -3.37733 0.0336036 0.0231622 0.0336036 1.79236 -0.473702 0.580484 0.0336036 0.0219421 0.0336036 0 0 0 0 0 0 +LA 4.71724 +SE +ID 5966 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 75.545587) +BD GR Veto +PQ 0.0811865 +SE +ET PH +ID 5967 +TI 1760667401.639198541 +CC NStripHits 2 +PE 64.2142 +PP 3.07283 0.364968 -2.7953 +PW 0 +SE +ID 5968 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.183272) +BD GR Veto +PQ +SE +ET PH +ID 5969 +TI 1760667401.639224767 +CC NStripHits 3 +PE 64.4327 +PP 3.53845 -1.15566 -0.583578 +PW 0 +SE +ET PH +ID 5970 +TI 1760667401.639245271 +CC NStripHits 2 +PE 87.4 +PP -0.768578 -0.336365 -4.6578 +PW 0 +SE +ET PH +ID 5971 +TI 1760667401.639264583 +CC NStripHits 2 +PE 345.075 +PP 0.0462656 -0.729386 1.74455 +PW 0 +SE +ID 5972 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 110.126300) +BD GR Veto +PQ 0.756536 +SE +ET PH +ID 5973 +TI 1760667401.639290571 +CC NStripHits 3 +PE 158.111 +PP 3.53845 -0.46691 0.114859 +PW 0 +SE +ET UN +ID 5974 +TI 1760667401.639312267 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 327.432 +SE +ET UN +ID 5975 +TI 1760667401.639347791 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 5976 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 161.146883) +BD GR Veto +PQ 1.91775 +SE +ET CO +ID 5977 +TI 1760667401.639403581 +CC NStripHits 5 +PQ 23.2827 +SQ 2 +CT 0 1 +TL 1 +TE 109.216 +CE 389.243 1.04371 109.216 1.21021 +CD 4.23689 0.0450006 0.114859 0.0336036 0.0254525 0.0336036 3.42205 0.0145087 -0.699984 0.0336036 0.0251855 0.0336036 0 0 0 0 0 0 +LA 1.15276 +SE +ET UN +ID 5978 +TI 1760667401.639455556 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 289.149 +SE +ET PH +ID 5979 +TI 1760667401.639480113 +CC NStripHits 3 +PE 478.089 +PP 2.72361 -0.173452 -3.14452 +PW 0 +SE +ET CO +ID 5980 +TI 1760667401.639502286 +CC NStripHits 5 +PQ 13.5891 +SQ 2 +CT 0 1 +TL 1 +TE 52.5036 +CE 186.658 1.79433 52.5036 0.9178 +CD 1.90877 0.30673 0.347672 0.0336036 0.0388037 0.0336036 3.65486 -0.914254 -1.74764 0.0336036 0.0197796 0.0336036 0 0 0 0 0 0 +LA 2.9883 +SE +ID 5981 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.968735) +QA StripPairing (Best reduced chi square is not below 25 (689.522031)) (GR Hit: Detector ID 0 and Energy 184.217271) +BD GR Veto +PQ 689.522 +SE +ET PH +ID 5982 +TI 1760667401.639571428 +CC NStripHits 4 +PE 383.417 +PP 0.861109 -0.709398 -1.28202 +PW 0 +SE +ET PH +ID 5983 +TI 1760667401.639595508 +CC NStripHits 3 +PE 338.311 +PP -2.04905 -0.132663 -1.74764 +PW 0 +SE +ID 5984 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.545589) +QA StripPairing (GR Hit: Detector ID 0 and Energy 506.456518) +BD GR Veto +PQ 14.3304 +SE +ID 5985 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 237.954799) +BD GR Veto +PQ 4.21943 +SE +ID 5986 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 5987 +TI 1760667401.639692544 +CC NStripHits 3 +PE 268.831 +PP -0.0701406 -1.14625 1.16252 +PW 0 +SE +ET PH +ID 5988 +TI 1760667401.639714479 +CC NStripHits 2 +PE 54.3278 +PP 2.4908 0.321482 -1.39842 +PW 0 +SE +ET PH +ID 5989 +TI 1760667401.639734745 +CC NStripHits 2 +PE 363.425 +PP -2.74748 -0.608876 -3.02811 +PW 0 +SE +ID 5990 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 97.499660) +BD GR Veto +PQ 5.30637 +SE +ID 5991 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.845122) +BD GR Veto +PQ 1.59855 +SE +ET PH +ID 5992 +TI 1760667401.639789581 +CC NStripHits 2 +PE 296.407 +PP 3.07283 -0.909521 1.97736 +PW 0 +SE +ET PH +ID 5993 +TI 1760667401.639806985 +CC NStripHits 2 +PE 58.8381 +PP 1.90877 0.359171 -1.16561 +PW 0 +SE +ET PH +ID 5994 +TI 1760667401.639824390 +CC NStripHits 2 +PE 84.2677 +PP 0.279078 0.366103 -3.37733 +PW 0 +SE +ID 5995 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1428.065803)) (GR Hit: Detector ID 0 and Energy 237.269590) +BD GR Veto +PQ 1428.07 +SE +ET PH +ID 5996 +TI 1760667401.639849185 +CC NStripHits 3 +PE 277.135 +PP -1.69983 -0.664127 -0.699984 +PW 0 +SE +ID 5997 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.379093) +BD GR Veto +PQ +SE +ET PH +ID 5998 +TI 1760667401.639879226 +CC NStripHits 2 +PE 318.156 +PP 0.279078 -0.20367 1.39533 +PW 0 +SE +ID 5999 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 116.891984) +BD GR Veto +PQ 3.24322 +SE +ET PH +ID 6000 +TI 1760667401.639905452 +CC NStripHits 3 +PE 81.8423 +PP -2.63108 0.24223 0.696891 +PW 0 +SE +ET UN +ID 6001 +TI 1760667401.639925956 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 6002 +TI 1760667401.639969825 +CC NStripHits 2 +PE 131.402 +PP -2.86389 -0.262403 0.347672 +PW 0 +SE +ET PH +ID 6003 +TI 1760667401.639987468 +CC NStripHits 3 +PE 385.204 +PP 1.55955 0.126599 -4.42498 +PW 0 +SE +ET CO +ID 6004 +TI 1760667401.640007019 +CC NStripHits 5 +PQ 1.4621 +SQ 2 +CT 0 1 +TL 1 +TE 147.705 +CE 237.915 0.973168 147.705 1.10352 +CD 1.32673 -0.860684 -1.98045 0.0336036 0.0199425 0.0336036 0.511891 0.066644 -2.7953 0.0336036 0.0257175 0.0336036 0 0 0 0 0 0 +LA 1.47915 +SE +ET PH +ID 6005 +TI 1760667401.640041112 +CC NStripHits 2 +PE 108.714 +PP 1.79236 -0.595121 1.86095 +PW 0 +SE +ET UN +ID 6006 +TI 1760667401.640059232 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 677.975 +SE +ET PH +ID 6007 +TI 1760667401.640141010 +CC NStripHits 2 +PE 440.401 +PP 2.25798 0.348938 -0.816391 +PW 0 +SE +ET PH +ID 6008 +TI 1760667401.640164613 +CC NStripHits 2 +PE 168.332 +PP -2.39827 0.243639 0.347672 +PW 0 +SE +ET UN +ID 6009 +TI 1760667401.640182256 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 154.237 +SE +ET UN +ID 6010 +TI 1760667401.640211820 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 296.301 +SE +ET CO +ID 6011 +TI 1760667401.640245914 +CC NStripHits 7 +PQ 18.2117 +SQ 3 +CT 0.146472 1.29887 +TL 1 +TE 386.195 +CE 150.785 1.58765 386.195 1.12313 +CD 2.37439 -0.462045 -4.19217 0.0336036 0.0219918 0.0336036 3.53845 -1.1325 -3.84295 0.0336036 0.0298834 0.0336036 0 0 0 0 0 0 +LA 1.28411 +SE +ET PH +ID 6012 +TI 1760667401.640289545 +CC NStripHits 3 +PE 162.876 +PP -0.302953 -1.16639 -0.350766 +PW 0 +SE +ET PH +ID 6013 +TI 1760667401.640310287 +CC NStripHits 2 +PE 141.849 +PP 4.3533 -0.415374 -3.37733 +PW 0 +SE +ET PH +ID 6014 +TI 1760667401.640325546 +CC NStripHits 2 +PE 165.478 +PP 3.07283 -0.338857 1.74455 +PW 0 +SE +ET PH +ID 6015 +TI 1760667401.660537242 +CC NStripHits 4 +PE 229.916 +PP 2.6072 -0.0679199 -4.07577 +PW 0 +SE +ET UN +ID 6016 +TI 1760667401.660590171 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.0612 +SE +ET CO +ID 6017 +TI 1760667401.660611867 +CC NStripHits 5 +PQ 5.70954 +SQ 2 +CT 0.601157 0.398843 +TL 1 +TE 372.399 +CE 291.759 0.971957 372.399 1.32056 +CD 0.861109 -1.10179 2.44298 0.0336036 0.0271448 0.0336036 1.21033 -1.143 1.97736 0.0336036 0.0289554 0.0336036 0 0 0 0 0 0 +LA 0.583486 +SE +ET CO +ID 6018 +TI 1760667401.660646915 +CC NStripHits 7 +PQ 90.5039 +SQ 3 +CT 0.183588 0.466252 +TL 1 +TE 56.6164 +CE 435.995 1.91929 56.6164 0.918118 +CD 2.95642 0.240664 -2.44608 0.0336036 0.031497 0.0336036 2.02517 -0.292985 -1.28202 0.0336036 0.02318 0.0336036 0 0 0 0 0 0 +LA 0.262087 +SE +ET UN +ID 6019 +TI 1760667401.660695552 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 231.716 +SE +ID 6020 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 80.392591) +BD GR Veto +PQ 0.00433109 +SE +ET PH +ID 6021 +TI 1760667401.660736799 +CC NStripHits 2 +PE 60.2656 +PP 3.77127 0.260283 -1.39842 +PW 0 +SE +ET UN +ID 6022 +TI 1760667401.660754680 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 498.973 +SE +ID 6023 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 173.597274) +BD GR Veto +PQ 12.6958 +SE +ET PH +ID 6024 +TI 1760667401.660792827 +CC NStripHits 2 +PE 176.699 +PP 1.90877 0.354545 -1.74764 +PW 0 +SE +ID 6025 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.264892) +BD GR Veto +PQ 6.55969 +SE +ET CO +ID 6026 +TI 1760667401.660837411 +CC NStripHits 6 +PQ 8.30187 +SQ 2 +CT 0 1 +TL 1 +TE 107.844 +CE 557.675 2.24436 107.844 0.929377 +CD -0.768578 -0.702469 -0.699984 0.0336036 0.0209403 0.0336036 -0.535766 -0.613351 -0.583578 0.0336036 0.0214252 0.0336036 0 0 0 0 0 0 +LA 0.275125 +SE +ET UN +ID 6027 +TI 1760667401.660869359 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6028 +TI 1760667401.660888910 +CC NStripHits 2 +PE 65.7073 +PP 2.6072 -1.08102 1.86095 +PW 0 +SE +ID 6029 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 0.229083 +SE +ET PH +ID 6030 +TI 1760667401.660938978 +CC NStripHits 2 +PE 187.91 +PP -1.35061 0.0973913 1.51173 +PW 0 +SE +ID 6031 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 56.233190)) +BD GR Veto +PQ 0.0457851 +SE +ID 6032 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.658177) +BD GR Veto +PQ 1.81958 +SE +ID 6033 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.883302) +BD GR Veto +PQ +SE +ET UN +ID 6034 +TI 1760667401.661026239 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 24.6194 +SE +ET PH +ID 6035 +TI 1760667401.661055088 +CC NStripHits 2 +PE 436.574 +PP 0.861109 0.362063 -3.72655 +PW 0 +SE +ET UN +ID 6036 +TI 1760667401.661077499 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 66.6457 +SE +ET PH +ID 6037 +TI 1760667401.661097526 +CC NStripHits 2 +PE 96.0488 +PP 3.30564 -1.1547 -3.37733 +PW 0 +SE +ID 6038 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.749133) +QA StripPairing (Best reduced chi square is not below 25 (33.030983)) +BD GR Veto +PQ 33.031 +SE +ET PH +ID 6039 +TI 1760667401.661137580 +CC NStripHits 2 +PE 57.8174 +PP 3.30564 -0.952067 -3.72655 +PW 0 +SE +ET UN +ID 6040 +TI 1760667401.661155700 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 4 +PE 0 +SE +ET PH +ID 6041 +TI 1760667401.661182165 +CC NStripHits 2 +PE 93.6363 +PP 3.42205 -1.04939 -1.16561 +PW 0 +SE +ET PH +ID 6042 +TI 1760667401.661198854 +CC NStripHits 2 +PE 24.9338 +PP -2.51467 0.165093 -0.234359 +PW 0 +SE +ID 6043 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (35.725976)) (GR Hit: Detector ID 0 and Energy 348.185678) +BD GR Veto +PQ 35.726 +SE +ET CO +ID 6044 +TI 1760667401.661254167 +CC NStripHits 6 +PQ 3.97346 +SQ 3 +CT 0.0471581 1.41388 +TL 1 +TE 434.9 +CE 226.86 1.30343 434.9 1.55241 +CD -2.16545 0.0757316 -1.98045 0.0336036 0.0258795 0.0336036 -1.81623 0.217874 -2.32967 0.0336036 0.0296459 0.0336036 0 0 0 0 0 0 +LA 0.51392 +SE +ID 6045 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 237.971252) +BD GR Veto +PQ 3.45682 +SE +ID 6046 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.369529) (Strip hit removed with energy 11.815454) +BD GR Veto +PQ +SE +ET UN +ID 6047 +TI 1760667401.661319017 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.0083 +SE +ID 6048 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.867353) (Strip hit removed with energy 8.424378) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.473678) +BD GR Veto +PQ 0.91537 +SE +ET PH +ID 6049 +TI 1760667401.661363601 +CC NStripHits 2 +PE 125.156 +PP -1.81623 0.274626 -3.49373 +PW 0 +SE +ET CO +ID 6050 +TI 1760667401.661381721 +CC NStripHits 6 +PQ 0.777536 +SQ 3 +CT 0.302454 0.373104 +TL 1 +TE 58.6105 +CE 380.318 1.33444 58.6105 0.924504 +CD -0.302953 -0.903221 0.347672 0.0336036 0.0197896 0.0336036 -0.186547 -0.910689 0.580484 0.0336036 0.0197807 0.0336036 0 0 0 0 0 0 +LA 0.260399 +SE +ET UN +ID 6051 +TI 1760667401.661413431 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6052 +TI 1760667401.661430597 +CC NStripHits 2 +PE 104.508 +PP -0.652172 0.213897 -2.67889 +PW 0 +SE +ET PH +ID 6053 +TI 1760667401.661448240 +CC NStripHits 4 +PE 341.398 +PP 4.00408 -0.683436 1.39533 +PW 0 +SE +ET PH +ID 6054 +TI 1760667401.661472558 +CC NStripHits 2 +PE 355.691 +PP -0.186547 -0.54216 -3.14452 +PW 0 +SE +ET PH +ID 6055 +TI 1760667401.661491870 +CC NStripHits 2 +PE 71.7742 +PP 1.44314 -0.125703 -2.9117 +PW 0 +SE +ET UN +ID 6056 +TI 1760667401.661509037 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 53.397 +SE +ID 6057 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.260278) +QA StripPairing (Best reduced chi square is not below 25 (7032.743924)) (GR Hit: Detector ID 0 and Energy 556.311617) +BD GR Veto +PQ 7032.74 +SE +ET PH +ID 6058 +TI 1760667401.661539793 +CC NStripHits 3 +PE 144.437 +PP -0.186547 -0.97718 -0.816391 +PW 0 +SE +ID 6059 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.043512) (Strip hit removed with energy 10.171278) (Strip hit removed with energy 8.938343) (Strip hit removed with energy 8.800803) (Strip hit removed with energy 10.885317) (Strip hit removed with energy 16.718727) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 68.757530)) +BD GR Veto +PQ 0.401884 +SE +ET CO +ID 6060 +TI 1760667401.661609649 +CC NStripHits 10 +PQ 0.17489 +SQ 4 +CT 0.192877 0.245417 +TL 1 +TE 274.457 +CE 330.56 1.6687 274.457 1.0358 +CD 1.67595 0.129184 -2.7953 0.0336036 0.0267322 0.0336036 -1.46702 -0.233802 0.114859 0.0336036 0.0233395 0.0336036 0 0 0 0 0 0 +LA 0.360274 +SE +ET UN +ID 6061 +TI 1760667401.661668539 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 8 +PE 485.196 +SE +ET PH +ID 6062 +TI 1760667401.661709547 +CC NStripHits 3 +PE 245.874 +PP -2.51467 0.195952 0.114859 +PW 0 +SE +ET PH +ID 6063 +TI 1760667401.661730289 +CC NStripHits 2 +PE 123.826 +PP -1.93264 -0.315606 -0.467172 +PW 0 +SE +ET PH +ID 6064 +TI 1760667401.661746740 +CC NStripHits 2 +PE 86.366 +PP 3.30564 0.30956 -1.74764 +PW 0 +SE +ET PH +ID 6065 +TI 1760667401.661764621 +CC NStripHits 3 +PE 145.041 +PP 4.12048 0.168778 0.231266 +PW 0 +SE +ET UN +ID 6066 +TI 1760667401.661785125 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 9 +PE 657.284 +SE +ET UN +ID 6067 +TI 1760667401.661853075 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.1423 +SE +ET PH +ID 6068 +TI 1760667401.661880493 +CC NStripHits 4 +PE 663.444 +PP 3.18923 0.212901 -2.21327 +PW 0 +SE +ET PH +ID 6069 +TI 1760667401.661917686 +CC NStripHits 2 +PE 171.071 +PP 3.18923 -0.142222 -3.02811 +PW 0 +SE +ET PH +ID 6070 +TI 1760667401.661934852 +CC NStripHits 2 +PE 120.148 +PP -2.74748 -0.25646 -0.117953 +PW 0 +SE +ET UN +ID 6071 +TI 1760667401.661952495 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 207.001 +SE +ET PH +ID 6072 +TI 1760667401.661983966 +CC NStripHits 2 +PE 459.151 +PP 3.65486 0.10181 -2.9117 +PW 0 +SE +ET UN +ID 6073 +TI 1760667401.662003993 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 216.574 +SE +ID 6074 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 2.071762) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 575.622760) +BD GR Veto +PQ 0.446177 +SE +ID 6075 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1002.469079)) (GR Hit: Detector ID 0 and Energy 304.803144) +BD GR Veto +PQ 1002.47 +SE +ET CO +ID 6076 +TI 1760667401.662058353 +CC NStripHits 5 +PQ 0.228339 +SQ 2 +CT 0.621752 0.378248 +TL 1 +TE 258.891 +CE 178.022 0.950525 258.891 0.9963 +CD 4.3533 -0.320139 -1.86405 0.0336036 0.0230706 0.0336036 3.42205 -0.946133 -1.51483 0.0336036 0.0198167 0.0336036 0 0 0 0 0 0 +LA 1.17518 +SE +ET PH +ID 6077 +TI 1760667401.662086963 +CC NStripHits 3 +PE 294.168 +PP 2.6072 0.357414 -1.63123 +PW 0 +SE +ET UN +ID 6078 +TI 1760667401.662106037 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6079 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.124056) +BD GR Veto +PQ 0.773554 +SE +ET PH +ID 6080 +TI 1760667401.681514263 +CC NStripHits 2 +PE 59.4232 +PP 3.65486 -0.956608 -2.7953 +PW 0 +SE +ET PH +ID 6081 +TI 1760667401.681551933 +CC NStripHits 4 +PE 660.801 +PP 3.18923 -0.735177 1.04611 +PW 0 +SE +ID 6082 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 167.651433) +BD GR Veto +PQ 4.00208 +SE +ET CO +ID 6083 +TI 1760667401.681620121 +CC NStripHits 7 +PQ 29.5307 +SQ 2 +CT 0 1 +TL 1 +TE 136.707 +CE 531.616 2.3089 136.707 1.21061 +CD -2.9803 -0.602372 0.813297 0.0336036 0.021452 0.0336036 -2.74748 -0.347852 1.51173 0.0336036 0.0228435 0.0336036 0 0 0 0 0 0 +LA 0.77897 +SE +ET CO +ID 6084 +TI 1760667401.681694030 +CC NStripHits 7 +PQ 94.0852 +SQ 3 +CT 0.167092 0.896007 +TL 1 +TE 85.3203 +CE 349.091 1.88448 85.3203 1.32322 +CD 0.162672 -0.545208 0.114859 0.0336036 0.0216407 0.0336036 0.279078 -0.706472 -1.0492 0.0336036 0.0208825 0.0336036 0 0 0 0 0 0 +LA 0.329443 +SE +ET PH +ID 6085 +TI 1760667401.681776523 +CC NStripHits 4 +PE 412.87 +PP 0.395484 -0.00587148 -1.39842 +PW 0 +SE +ET UN +ID 6086 +TI 1760667401.681820631 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6087 +TI 1760667401.681849718 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.6478 +SE +ET PH +ID 6088 +TI 1760667401.681883096 +CC NStripHits 3 +PE 250.279 +PP 1.90877 -0.969712 1.74455 +PW 0 +SE +ET UN +ID 6089 +TI 1760667401.681922674 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 5 +PE 0 +SE +ET UN +ID 6090 +TI 1760667401.682013034 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 379.37 +SE +ET PH +ID 6091 +TI 1760667401.682088136 +CC NStripHits 3 +PE 121.309 +PP 2.37439 -0.125809 0.231266 +PW 0 +SE +ET PH +ID 6092 +TI 1760667401.682120084 +CC NStripHits 2 +PE 27.7573 +PP -2.28186 -0.663233 -3.84295 +PW 0 +SE +ET PH +ID 6093 +TI 1760667401.682137966 +CC NStripHits 2 +PE 155.484 +PP -2.74748 -0.723648 -2.21327 +PW 0 +SE +ET UN +ID 6094 +TI 1760667401.682155370 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 239.441 +SE +ET PH +ID 6095 +TI 1760667401.682196140 +CC NStripHits 2 +PE 293.337 +PP 2.72361 -0.644331 2.09377 +PW 0 +SE +ID 6096 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (194.148665)) (GR Hit: Detector ID 0 and Energy 663.297024) +BD GR Veto +PQ 194.149 +SE +ET PH +ID 6097 +TI 1760667401.682221889 +CC NStripHits 2 +PE 436.814 +PP -2.63108 0.366177 1.86095 +PW 0 +SE +ET PH +ID 6098 +TI 1760667401.682240962 +CC NStripHits 3 +PE 101.416 +PP -0.186547 -1.07477 2.44298 +PW 0 +SE +ET PH +ID 6099 +TI 1760667401.682261228 +CC NStripHits 2 +PE 188.849 +PP 1.21033 -0.0500099 1.62814 +PW 0 +SE +ET PH +ID 6100 +TI 1760667401.682288885 +CC NStripHits 3 +PE 266.279 +PP 3.53845 -0.102739 -0.932797 +PW 0 +SE +ET UN +ID 6101 +TI 1760667401.682306766 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 6 +PE 0 +SE +ET PH +ID 6102 +TI 1760667401.682358980 +CC NStripHits 5 +PE 662.864 +PP -2.28186 -0.0290545 -0.234359 +PW 0 +SE +ET CO +ID 6103 +TI 1760667401.682384967 +CC NStripHits 5 +PQ 94.5374 +SQ 2 +CT 0 1 +TL 1 +TE 89.6468 +CE 155.096 0.930936 89.6468 1.27524 +CD 1.90877 0.278226 -3.84295 0.0336036 0.036541 0.0336036 2.14158 -0.119946 -3.72655 0.0336036 0.0241406 0.0336036 0 0 0 0 0 0 +LA 0.4757 +SE +ET PH +ID 6104 +TI 1760667401.682415962 +CC NStripHits 2 +PE 83.1925 +PP -0.652172 0.153006 -2.09686 +PW 0 +SE +ET PH +ID 6105 +TI 1760667401.682431697 +CC NStripHits 3 +PE 360.69 +PP 3.65486 -0.817047 0.464078 +PW 0 +SE +ET UN +ID 6106 +TI 1760667401.682451486 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 213.421 +SE +ID 6107 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6108 +TI 1760667401.682482242 +CC NStripHits 2 +PE 130.205 +PP 2.37439 -0.281974 -2.67889 +PW 0 +SE +ET UN +ID 6109 +TI 1760667401.682502508 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 395.206 +SE +ET PH +ID 6110 +TI 1760667401.682543754 +CC NStripHits 2 +PE 31.1218 +PP 2.02517 -0.269014 1.51173 +PW 0 +SE +ET PH +ID 6111 +TI 1760667401.682562828 +CC NStripHits 2 +PE 470.464 +PP 0.511891 -1.05718 -3.72655 +PW 0 +SE +ET PH +ID 6112 +TI 1760667401.682580947 +CC NStripHits 2 +PE 177.055 +PP 3.88767 -0.800139 0.464078 +PW 0 +SE +ET PH +ID 6113 +TI 1760667401.682598590 +CC NStripHits 4 +PE 331.044 +PP 1.55955 -0.856261 -3.72655 +PW 0 +SE +ET PH +ID 6114 +TI 1760667401.682620763 +CC NStripHits 2 +PE 130.495 +PP 3.07283 0.365633 -0.467172 +PW 0 +SE +ET UN +ID 6115 +TI 1760667401.682638645 +BD DepthCalibrationError (Out of Range) +CC NStripHits 6 +PE 659.356 +SE +ET PH +ID 6116 +TI 1760667401.682683229 +CC NStripHits 4 +PE 312.256 +PP -2.86389 0.306589 -1.51483 +PW 0 +SE +ET CO +ID 6117 +TI 1760667401.682702541 +CC NStripHits 5 +PQ 8.28703 +SQ 2 +CT 0.564382 0.435618 +TL 1 +TE 284.923 +CE 166.458 1.78706 284.923 1.25204 +CD -0.884984 -0.449793 2.44298 0.0336036 0.0220736 0.0336036 -0.535766 -0.256126 2.55939 0.0336036 0.0233392 0.0336036 0 0 0 0 0 0 +LA 0.415946 +SE +ET UN +ID 6118 +TI 1760667401.682729721 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 210.548 +SE +ET PH +ID 6119 +TI 1760667401.682771205 +CC NStripHits 2 +PE 425.839 +PP -1.00139 -1.16072 -3.26092 +PW 0 +SE +ET PH +ID 6120 +TI 1760667401.682808160 +CC NStripHits 3 +PE 291.377 +PP 4.12048 -0.708224 -2.21327 +PW 0 +SE +ET UN +ID 6121 +TI 1760667401.682836294 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.8372 +SE +ID 6122 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.634230) (Strip hit removed with energy 11.164698) (Strip hit removed with energy 13.255186) (Strip hit removed with energy 15.790298) (Strip hit removed with energy 15.157282) +QA StripPairing (Best reduced chi square is not below 25 (42.589341)) (GR Hit: Detector ID 0 and Energy 156.392788) (GR Hit: Detector ID 0 and Energy 186.467470) +BD GR Veto +PQ 42.5893 +SE +ET UN +ID 6123 +TI 1760667401.682939291 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 6124 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 0.170716 +SE +ET UN +ID 6125 +TI 1760667401.683014392 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6126 +TI 1760667401.683032274 +CC NStripHits 2 +PE 114.744 +PP 2.37439 0.350134 1.51173 +PW 0 +SE +ET PH +ID 6127 +TI 1760667401.683076620 +CC NStripHits 2 +PE 462.071 +PP 3.53845 -1.1564 -0.932797 +PW 0 +SE +ET UN +ID 6128 +TI 1760667401.683098554 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6129 +TI 1760667401.683111429 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 205.921 +SE +ET UN +ID 6130 +TI 1760667401.683142423 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.8171 +SE +ET PH +ID 6131 +TI 1760667401.683163166 +CC NStripHits 2 +PE 100.223 +PP -2.39827 -0.215377 1.39533 +PW 0 +SE +ID 6132 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 343.564067) +BD GR Veto +PQ 0.399137 +SE +ET PH +ID 6133 +TI 1760667401.683192491 +CC NStripHits 3 +PE 99.176 +PP 0.861109 -1.11911 -2.7953 +PW 0 +SE +ET PH +ID 6134 +TI 1760667401.683214187 +CC NStripHits 2 +PE 300.404 +PP 3.65486 -0.627332 -0.816391 +PW 0 +SE +ID 6135 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 180.479838) +BD GR Veto +PQ 2.98064 +SE +ID 6136 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.487240) +BD GR Veto +PQ 6.11361 +SE +ID 6137 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.581768) +QA StripPairing (Best reduced chi square is not below 25 (582.338119)) (GR Hit: Detector ID 0 and Energy 92.540413) +BD GR Veto +PQ 582.338 +SE +ET UN +ID 6138 +TI 1760667401.683267354 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.7473 +SE +ET PH +ID 6139 +TI 1760667401.683284759 +CC NStripHits 2 +PE 88.2249 +PP 2.4908 -0.795663 -2.56248 +PW 0 +SE +ET PH +ID 6140 +TI 1760667401.683306932 +CC NStripHits 4 +PE 253.247 +PP 1.90877 -0.400192 -1.39842 +PW 0 +SE +ET PH +ID 6141 +TI 1760667401.683329105 +CC NStripHits 3 +PE 664.193 +PP -0.0701406 -0.474434 1.62814 +PW 0 +SE +ET PH +ID 6142 +TI 1760667401.683351039 +CC NStripHits 4 +PE 297.996 +PP -0.0701406 0.273903 -1.51483 +PW 0 +SE +ET UN +ID 6143 +TI 1760667401.704679727 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.2054 +SE +ET PH +ID 6144 +TI 1760667401.704763412 +CC NStripHits 2 +PE 157.26 +PP 2.95642 -0.755808 0.580484 +PW 0 +SE +ID 6145 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.072126) +BD GR Veto +PQ +SE +ET PH +ID 6146 +TI 1760667401.704826831 +CC NStripHits 2 +PE 115.667 +PP -1.1178 -1.08729 -2.67889 +PW 0 +SE +ET PH +ID 6147 +TI 1760667401.704867124 +CC NStripHits 2 +PE 126.159 +PP -0.884984 -1.00623 0.464078 +PW 0 +SE +ID 6148 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 68.648739) +BD GR Veto +PQ 0.579878 +SE +ET UN +ID 6149 +TI 1760667401.704922437 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 227.348 +SE +ID 6150 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.465147) (Strip hit removed with energy 19.177320) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 46.648191)) (GR Hit: Detector ID 0 and Energy 402.575116) +BD GR Veto +PQ 23.5952 +SE +ET UN +ID 6151 +TI 1760667401.705019474 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6152 +TI 1760667401.705031633 +CC NStripHits 3 +PE 295.499 +PP -0.768578 -0.417639 2.6758 +PW 0 +SE +ET PH +ID 6153 +TI 1760667401.705049276 +CC NStripHits 2 +PE 459.125 +PP -1.35061 -0.363517 0.231266 +PW 0 +SE +ET CO +ID 6154 +TI 1760667401.705070734 +CC NStripHits 9 +PQ 0.275278 +SQ 3 +CT 0.16589 1.46001 +TL 1 +TE 483.199 +CE 175.353 1.57697 483.199 0.999833 +CD 4.00408 -0.308486 -1.86405 0.0336036 0.0231403 0.0336036 3.88767 -0.358982 -1.74764 0.0336036 0.0227605 0.0336036 0 0 0 0 0 0 +LA 0.172199 +SE +ET PH +ID 6155 +TI 1760667401.705118179 +CC NStripHits 2 +PE 73.2041 +PP -1.69983 0.312948 -2.56248 +PW 0 +SE +ET PH +ID 6156 +TI 1760667401.705137252 +CC NStripHits 4 +PE 455.794 +PP 2.37439 -0.950951 -1.74764 +PW 0 +SE +ET PH +ID 6157 +TI 1760667401.705176591 +CC NStripHits 2 +PE 222.433 +PP 2.84002 -0.562478 2.32658 +PW 0 +SE +ET UN +ID 6158 +TI 1760667401.705194473 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 353.349 +SE +ET UN +ID 6159 +TI 1760667401.705224514 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 460.647 +SE +ID 6160 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.034858) +QA StripPairing (GR Hit: Detector ID 0 and Energy 154.135561) +BD GR Veto +PQ 9.39545 +SE +ID 6161 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 0.848991) +BD GR Veto +PQ +SE +ET PH +ID 6162 +TI 1760667401.705318927 +CC NStripHits 2 +PE 151.892 +PP -0.0701406 0.249271 -0.117953 +PW 0 +SE +ID 6163 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 61.633602) +BD GR Veto +PQ 0.18031 +SE +ID 6164 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 112.845762) +BD GR Veto +PQ 2.01299 +SE +ID 6165 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 83.167433) +BD GR Veto +PQ 0.577317 +SE +ET PH +ID 6166 +TI 1760667401.705378532 +CC NStripHits 3 +PE 234.567 +PP 3.07283 -0.602403 2.55939 +PW 0 +SE +ET PH +ID 6167 +TI 1760667401.705399036 +CC NStripHits 3 +PE 434.375 +PP -2.28186 -0.586636 -2.67889 +PW 0 +SE +ET PH +ID 6168 +TI 1760667401.705422401 +CC NStripHits 2 +PE 370.687 +PP 4.3533 -0.871307 -0.583578 +PW 0 +SE +ET CO +ID 6169 +TI 1760667401.705442905 +CC NStripHits 5 +PQ 33.2806 +SQ 2 +CT 0 1 +TL 1 +TE 82.1641 +CE 152.213 1.80027 82.1641 1.30302 +CD 3.42205 0.221264 -2.9117 0.0336036 0.029861 0.0336036 2.37439 0.329172 -4.19217 0.0336036 0.0370154 0.0336036 0 0 0 0 0 0 +LA 1.65796 +SE +ET UN +ID 6170 +TI 1760667401.705508947 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 33.4404 +SE +ET PH +ID 6171 +TI 1760667401.705526828 +CC NStripHits 4 +PE 300.007 +PP -1.69983 -0.427244 2.44298 +PW 0 +SE +ID 6172 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.544175) +BD GR Veto +PQ +SE +ET UN +ID 6173 +TI 1760667401.705558776 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 183.682 +SE +ET UN +ID 6174 +TI 1760667401.705604314 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 227.135 +SE +ET UN +ID 6175 +TI 1760667401.705632448 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6176 +TI 1760667401.705651044 +CC NStripHits 2 +PE 291.074 +PP 0.0462656 -1.02105 -2.7953 +PW 0 +SE +ET PH +ID 6177 +TI 1760667401.705669164 +CC NStripHits 2 +PE 102.869 +PP -2.74748 -0.667161 0.114859 +PW 0 +SE +ET PH +ID 6178 +TI 1760667401.705687522 +CC NStripHits 2 +PE 59.9726 +PP -0.302953 0.193598 -1.39842 +PW 0 +SE +ET PH +ID 6179 +TI 1760667401.705705404 +CC NStripHits 2 +PE 57.2752 +PP 1.90877 0.180151 -3.37733 +PW 0 +SE +ET PH +ID 6180 +TI 1760667401.705723762 +CC NStripHits 2 +PE 106.743 +PP 0.861109 -1.13878 -1.16561 +PW 0 +SE +ET PH +ID 6181 +TI 1760667401.705744028 +CC NStripHits 3 +PE 536.907 +PP -2.04905 -0.0132768 2.32658 +PW 0 +SE +ET PH +ID 6182 +TI 1760667401.705767869 +CC NStripHits 2 +PE 170.67 +PP 4.12048 -1.0067 1.74455 +PW 0 +SE +ET PH +ID 6183 +TI 1760667401.705786228 +CC NStripHits 2 +PE 75.8327 +PP 1.44314 -0.976323 -3.95936 +PW 0 +SE +ET PH +ID 6184 +TI 1760667401.705806732 +CC NStripHits 2 +PE 135.457 +PP 2.37439 -0.824785 2.44298 +PW 0 +SE +ET PH +ID 6185 +TI 1760667401.705826520 +CC NStripHits 3 +PE 350.349 +PP -1.1178 0.334727 0.231266 +PW 0 +SE +ET PH +ID 6186 +TI 1760667401.705848932 +CC NStripHits 3 +PE 263.718 +PP -1.35061 -0.885972 1.97736 +PW 0 +SE +ID 6187 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (60.245551)) (GR Hit: Detector ID 0 and Energy 581.525530) +BD GR Veto +PQ 60.2456 +SE +ET UN +ID 6188 +TI 1760667401.705894708 +BD DepthCalibrationError (Out of Range) +CC NStripHits 8 +PE 496.01 +SE +ET PH +ID 6189 +TI 1760667401.705946445 +CC NStripHits 2 +PE 25.4052 +PP 0.977516 -0.539633 -4.19217 +PW 0 +SE +ET UN +ID 6190 +TI 1760667401.705962181 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Out of Range) +CC NStripHits 5 +PE 344.665 +SE +ET UN +ID 6191 +TI 1760667401.705994129 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6959 +SE +ET UN +ID 6192 +TI 1760667401.706010341 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 580.169 +SE +ET PH +ID 6193 +TI 1760667401.706041097 +CC NStripHits 2 +PE 74.4139 +PP 1.32673 0.260033 -0.00154687 +PW 0 +SE +ET PH +ID 6194 +TI 1760667401.706069946 +CC NStripHits 4 +PE 189.098 +PP 1.09392 -0.524269 1.97736 +PW 0 +SE +ID 6195 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.998853) (Strip hit removed with energy 10.070055) (Strip hit removed with energy 14.114741) (Strip hit removed with energy 9.444518) (Strip hit removed with energy 13.750474) +QA StripPairing (GR Hit: Detector ID 0 and Energy 144.064857) +BD GR Veto +PQ 1.48995 +SE +ID 6196 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.634816) +QA StripPairing (Best reduced chi square is not below 25 (48.920118)) (GR Hit: Detector ID 0 and Energy 314.042599) +BD GR Veto +PQ 48.9201 +SE +ID 6197 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.763875) +QA StripPairing (Best reduced chi square is not below 25 (34.057919)) (GR Hit: Detector ID 0 and Energy 136.754883) +BD GR Veto +PQ 34.0579 +SE +ET PH +ID 6198 +TI 1760667401.706186771 +CC NStripHits 3 +PE 319.16 +PP -0.884984 -1.1016 1.51173 +PW 0 +SE +ID 6199 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.513151) +QA StripPairing (Best reduced chi square is not below 25 (54.541277)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 93.089719)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 163.320451) (GR Hit: Detector ID 0 and Energy 65.096303) +BD GR Veto +PQ 54.5413 +SE +ET PH +ID 6200 +TI 1760667401.706247091 +CC NStripHits 2 +PE 248.788 +PP 2.6072 0.0133142 0.696891 +PW 0 +SE +ET PH +ID 6201 +TI 1760667401.706271886 +CC NStripHits 3 +PE 196.197 +PP -2.63108 -0.11977 -1.63123 +PW 0 +SE +ET PH +ID 6202 +TI 1760667401.706291913 +CC NStripHits 2 +PE 660.226 +PP 3.65486 -0.490972 0.813297 +PW 0 +SE +ID 6203 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 25.646917) +BD GR Veto +PQ 0.185784 +SE +ET PH +ID 6204 +TI 1760667401.706331968 +CC NStripHits 2 +PE 260.082 +PP 1.32673 -0.242529 -2.7953 +PW 0 +SE +ID 6205 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 102.233946) +BD GR Veto +PQ 12.5126 +SE +ET PH +ID 6206 +TI 1760667401.706363677 +CC NStripHits 2 +PE 124.79 +PP 0.162672 -0.0968255 0.813297 +PW 0 +SE +ID 6207 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 56.562953) +BD GR Veto +PQ 4.27962 +SE +ET UN +ID 6208 +TI 1760667401.727117061 +BD DepthCalibrationError (Out of Range) +CC NStripHits 9 +PE 557.473 +SE +ET PH +ID 6209 +TI 1760667401.727260589 +CC NStripHits 3 +PE 91.2048 +PP 0.395484 -0.212634 0.231266 +PW 0 +SE +ID 6210 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 101.895784) +BD GR Veto +PQ 1.72447 +SE +ET PH +ID 6211 +TI 1760667401.727361440 +CC NStripHits 2 +PE 126.577 +PP -0.768578 -0.785618 0.114859 +PW 0 +SE +ET CO +ID 6212 +TI 1760667401.727410316 +CC NStripHits 5 +PQ 17.6001 +SQ 2 +CT 0 1 +TL 1 +TE 49.7598 +CE 171.75 1.1003 49.7598 1.18951 +CD 3.53845 -0.483908 2.44298 0.0336036 0.021896 0.0336036 3.18923 0.297273 1.86095 0.0336036 0.0384869 0.0336036 0 0 0 0 0 0 +LA 1.03487 +SE +ET PH +ID 6213 +TI 1760667401.727482795 +CC NStripHits 3 +PE 256.238 +PP -2.28186 0.296491 1.86095 +PW 0 +SE +ET CO +ID 6214 +TI 1760667401.727522134 +CC NStripHits 6 +PQ 37.0038 +SQ 2 +CT 0 1 +TL 1 +TE 167.793 +CE 336.315 1.12696 167.793 1.82041 +CD 2.84002 -0.50969 1.16252 0.0336036 0.0217537 0.0336036 3.77127 0.0415908 2.44298 0.0336036 0.0254296 0.0336036 0 0 0 0 0 0 +LA 1.67652 +SE +ET CO +ID 6215 +TI 1760667401.727602005 +CC NStripHits 5 +PQ 0.560355 +SQ 2 +CT 0.597368 0.402632 +TL 1 +TE 219.23 +CE 170.371 1.11435 219.23 0.946276 +CD 2.14158 -0.222091 -2.56248 0.0336036 0.0233653 0.0336036 2.25798 -0.529508 -2.44608 0.0336036 0.0216884 0.0336036 0 0 0 0 0 0 +LA 0.348716 +SE +ET PH +ID 6216 +TI 1760667401.727655410 +CC NStripHits 2 +PE 98.0608 +PP -2.63108 -0.872389 0.696891 +PW 0 +SE +ID 6217 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 227.742701) +BD GR Veto +PQ 0.452473 +SE +ID 6218 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 19.901930) +QA StripPairing (Best reduced chi square is not below 25 (72.007287)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 66.572232) +BD GR Veto +PQ 72.0073 +SE +ET PH +ID 6219 +TI 1760667401.727782487 +CC NStripHits 4 +PE 661.351 +PP -1.2342 0.183116 1.39533 +PW 0 +SE +ID 6220 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.826505) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 21.669996)) +BD GR Veto +PQ 0.204426 +SE +ID 6221 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 434.848622) +BD GR Veto +PQ 15.0492 +SE +ET UN +ID 6222 +TI 1760667401.727860212 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 70.2051 +SE +ET CO +ID 6223 +TI 1760667401.727880477 +CC NStripHits 5 +PQ 0.481901 +SQ 2 +CT 0.763492 0.236508 +TL 1 +TE 455.994 +CE 205.884 0.939589 455.994 1.05776 +CD -1.81623 -0.656625 1.74455 0.0336036 0.0212544 0.0336036 -1.1178 -0.0479876 1.97736 0.0336036 0.0246901 0.0336036 0 0 0 0 0 0 +LA 0.95522 +SE +ID 6224 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.660407) (Strip hit removed with energy 8.752565) +QA StripPairing (GR Hit: Detector ID 0 and Energy 133.378535) +BD GR Veto +PQ 19.5753 +SE +ET UN +ID 6225 +TI 1760667401.727937936 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6226 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (66.914795)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 21.669996)) +BD GR Veto +PQ 66.9148 +SE +ET UN +ID 6227 +TI 1760667401.727967262 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 6 +PE 203.094 +SE +ID 6228 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (189.904650)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 124.022306)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 44.073334) +BD GR Veto +PQ 189.905 +SE +ID 6229 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 134.222589) +BD GR Veto +PQ 0.107291 +SE +ET UN +ID 6230 +TI 1760667401.728045940 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 74.2119 +SE +ET UN +ID 6231 +TI 1760667401.728065967 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 86.8629 +SE +ET PH +ID 6232 +TI 1760667401.728089332 +CC NStripHits 2 +PE 103.37 +PP -1.93264 -0.064317 1.62814 +PW 0 +SE +ET UN +ID 6233 +TI 1760667401.728124618 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 192.572 +SE +ET PH +ID 6234 +TI 1760667401.728150129 +CC NStripHits 2 +PE 75.0749 +PP 3.18923 -1.16475 -4.30858 +PW 0 +SE +ET UN +ID 6235 +TI 1760667401.728170394 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.1942 +SE +ET PH +ID 6236 +TI 1760667401.728230237 +CC NStripHits 2 +PE 49.1534 +PP -2.04905 -0.681877 -3.37733 +PW 0 +SE +ET UN +ID 6237 +TI 1760667401.728247404 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.8911 +SE +ET PH +ID 6238 +TI 1760667401.728262424 +CC NStripHits 4 +PE 174.267 +PP 3.42205 -0.120585 -1.0492 +PW 0 +SE +ET CO +ID 6239 +TI 1760667401.728291511 +CC NStripHits 6 +PQ 0.256606 +SQ 2 +CT 0 1 +TL 1 +TE 138.072 +CE 320.84 1.15922 138.072 1.04372 +CD 1.79236 -0.166894 2.44298 0.0336036 0.0237077 0.0336036 2.14158 -0.768599 2.21017 0.0336036 0.0203083 0.0336036 0 0 0 0 0 0 +LA 0.733624 +SE +ID 6240 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 95.249866) +BD GR Veto +PQ 0.284075 +SE +ET PH +ID 6241 +TI 1760667401.728332042 +CC NStripHits 2 +PE 57.2217 +PP -2.16545 0.370412 1.97736 +PW 0 +SE +ET PH +ID 6242 +TI 1760667401.728350162 +CC NStripHits 2 +PE 253.196 +PP 4.23689 0.182333 -0.699984 +PW 0 +SE +ET PH +ID 6243 +TI 1760667401.728367805 +CC NStripHits 2 +PE 195.981 +PP 2.95642 -0.272798 2.32658 +PW 0 +SE +ET PH +ID 6244 +TI 1760667401.728385448 +CC NStripHits 3 +PE 247.567 +PP -2.63108 0.168444 0.696891 +PW 0 +SE +ET PH +ID 6245 +TI 1760667401.728405714 +CC NStripHits 2 +PE 207.84 +PP 3.65486 -0.42827 0.929703 +PW 0 +SE +ET PH +ID 6246 +TI 1760667401.728423833 +CC NStripHits 2 +PE 133.161 +PP 0.395484 0.0383897 -4.6578 +PW 0 +SE +ID 6247 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.214007) (Strip hit removed with energy 10.196240) +BD GR Veto +PQ +SE +ET UN +ID 6248 +TI 1760667401.728447675 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 297.771 +SE +ID 6249 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 452.597017) +BD GR Veto +PQ 8.63813 +SE +ET UN +ID 6250 +TI 1760667401.728509664 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 447.886 +SE +ET PH +ID 6251 +TI 1760667401.728544473 +CC NStripHits 2 +PE 77.8912 +PP -1.69983 0.197775 1.51173 +PW 0 +SE +ET UN +ID 6252 +TI 1760667401.728562355 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 214.862 +SE +ET CO +ID 6253 +TI 1760667401.728612184 +CC NStripHits 4 +PQ 3.69953 +SQ 2 +CT 0 1 +TL 1 +TE 46.321 +CE 133.032 0.912021 46.321 1.23558 +CD -1.46702 0.169879 -3.02811 0.0336036 0.0276595 0.0336036 -1.93264 0.0753832 -2.67889 0.0336036 0.0258733 0.0336036 0 0 0 0 0 0 +LA 0.589649 +SE +ET UN +ID 6254 +TI 1760667401.728655338 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 300.312 +SE +ID 6255 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6256 +TI 1760667401.728712558 +CC NStripHits 2 +PE 34.5136 +PP 2.72361 0.0275414 -4.19217 +PW 0 +SE +ET PH +ID 6257 +TI 1760667401.728733539 +CC NStripHits 5 +PE 417.73 +PP -2.51467 0.115814 -0.00154687 +PW 0 +SE +ET UN +ID 6258 +TI 1760667401.728758096 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 70.5908 +SE +ET CO +ID 6259 +TI 1760667401.728779315 +CC NStripHits 5 +PQ 2.04998 +SQ 2 +CT 0 1 +TL 1 +TE 52.7099 +CE 359.247 1.06388 52.7099 0.920641 +CD -0.0701406 -0.753406 -2.21327 0.0336036 0.0204605 0.0336036 1.44314 -0.701317 -1.86405 0.0336036 0.0209559 0.0336036 0 0 0 0 0 0 +LA 1.55393 +SE +ET PH +ID 6260 +TI 1760667401.728813648 +CC NStripHits 3 +PE 182.006 +PP 2.14158 0.156803 -4.54139 +PW 0 +SE +ET CO +ID 6261 +TI 1760667401.728834152 +CC NStripHits 4 +PQ 6.94203 +SQ 2 +CT 0 1 +TL 1 +TE 21.5849 +CE 248.822 1.36622 21.5849 0.900581 +CD 2.02517 -0.153698 -2.9117 0.0336036 0.0238149 0.0336036 1.67595 0.244793 -3.02811 0.0336036 0.0319528 0.0336036 0 0 0 0 0 0 +LA 0.542495 +SE +ET PH +ID 6262 +TI 1760667401.728861808 +CC NStripHits 2 +PE 453.739 +PP -1.69983 -0.146957 -1.0492 +PW 0 +SE +ET PH +ID 6263 +TI 1760667401.728884935 +CC NStripHits 3 +PE 121.043 +PP -0.0701406 0.266314 -3.61014 +PW 0 +SE +ET UN +ID 6264 +TI 1760667401.728914499 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 465.139 +SE +ET PH +ID 6265 +TI 1760667401.728960037 +CC NStripHits 3 +PE 223.048 +PP -1.81623 -0.547528 -4.54139 +PW 0 +SE +ET PH +ID 6266 +TI 1760667401.728980541 +CC NStripHits 2 +PE 66.7683 +PP 3.07283 0.26279 -1.39842 +PW 0 +SE +ET PH +ID 6267 +TI 1760667401.729003190 +CC NStripHits 2 +PE 662.315 +PP 2.84002 0.241136 -0.816391 +PW 0 +SE +ET PH +ID 6268 +TI 1760667401.729029655 +CC NStripHits 4 +PE 198.617 +PP -0.652172 -0.5123 -1.0492 +PW 0 +SE +ET PH +ID 6269 +TI 1760667401.729050159 +CC NStripHits 2 +PE 27.2439 +PP -0.419359 -0.308371 -2.67889 +PW 0 +SE +ET CO +ID 6270 +TI 1760667401.729068756 +CC NStripHits 5 +PQ 0.158469 +SQ 2 +CT 0 1 +TL 1 +TE 84.0772 +CE 353.809 1.11685 84.0772 0.944862 +CD 3.42205 0.160653 1.97736 0.0336036 0.0274361 0.0336036 4.00408 0.312985 0.231266 0.0336036 0.0386958 0.0336036 0 0 0 0 0 0 +LA 1.84684 +SE +ID 6271 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 148.453541) +BD GR Veto +PQ 1.41223 +SE +ID 6272 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.132977) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 46.772660) (GR Hit: Detector ID 0 and Energy 417.313104) +BD GR Veto +PQ 11.1614 +SE +ET CO +ID 6273 +TI 1760667401.750731468 +CC NStripHits 4 +PQ 32.5902 +SQ 2 +CT 0 1 +TL 1 +TE 72.7038 +CE 331.788 1.25998 72.7038 0.94845 +CD 1.21033 -0.644552 -2.9117 0.0336036 0.0213512 0.0336036 1.44314 -0.472733 -3.37733 0.0336036 0.021946 0.0336036 0 0 0 0 0 0 +LA 0.548209 +SE +ID 6274 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 117.549666) +BD GR Veto +PQ 0.0873118 +SE +ET CO +ID 6275 +TI 1760667401.750776290 +CC NStripHits 4 +PQ 38.3665 +SQ 2 +CT 0.520986 0.479014 +TL 1 +TE 179.727 +CE 165.54 1.27891 179.727 1.40591 +CD 3.42205 -0.362619 -1.0492 0.0336036 0.0227334 0.0336036 3.65486 -0.60048 -1.98045 0.0336036 0.0214603 0.0336036 0 0 0 0 0 0 +LA 0.988941 +SE +ET PH +ID 6276 +TI 1760667401.750820398 +CC NStripHits 2 +PE 74.3152 +PP 0.511891 -0.239334 -1.86405 +PW 0 +SE +ET CO +ID 6277 +TI 1760667401.750841140 +CC NStripHits 5 +PQ 8.83614 +SQ 2 +CT 0.750218 0.249782 +TL 1 +TE 448.348 +CE 215.685 0.94783 448.348 1.78613 +CD 1.79236 -0.49377 -0.583578 0.0336036 0.0218395 0.0336036 2.02517 0.272465 0.696891 0.0336036 0.0357428 0.0336036 0 0 0 0 0 0 +LA 1.51027 +SE +ET CO +ID 6278 +TI 1760667401.750878095 +CC NStripHits 10 +PQ 1.21378 +SQ 3 +CT 0.199919 0.303235 +TL 1 +TE 292.345 +CE 364.039 1.69053 292.345 1.0575 +CD -1.93264 -0.583825 -3.84295 0.0336036 0.0215579 0.0336036 -1.69983 -0.554987 -4.30858 0.0336036 0.0216253 0.0336036 0 0 0 0 0 0 +LA 0.521386 +SE +ET PH +ID 6279 +TI 1760667401.750932931 +CC NStripHits 2 +PE 283.206 +PP 3.18923 -0.149292 -3.61014 +PW 0 +SE +ET UN +ID 6280 +TI 1760667401.750955820 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 2 +PE 0 +SE +ET CO +ID 6281 +TI 1760667401.751003742 +CC NStripHits 4 +PQ 1.13113 +SQ 2 +CT 0.652654 0.347346 +TL 1 +TE 301.955 +CE 193.627 0.932387 301.955 0.961036 +CD 1.44314 0.334685 -1.28202 0.0336036 0.0359197 0.0336036 1.79236 -0.185579 -2.7953 0.0336036 0.0235847 0.0336036 0 0 0 0 0 0 +LA 1.63788 +SE +ID 6282 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 33.209761) +BD GR Veto +PQ 10.9124 +SE +ET CO +ID 6283 +TI 1760667401.751064062 +CC NStripHits 6 +PQ 0.744139 +SQ 2 +CT 0 1 +TL 1 +TE 171.077 +CE 356.169 1.12518 171.077 0.960946 +CD 2.6072 -0.614826 -0.467172 0.0336036 0.021424 0.0336036 3.07283 -0.405124 0.231266 0.0336036 0.0224098 0.0336036 0 0 0 0 0 0 +LA 0.865218 +SE +ET UN +ID 6284 +TI 1760667401.751104354 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 191.97 +SE +ET PH +ID 6285 +TI 1760667401.751133203 +CC NStripHits 3 +PE 77.5401 +PP -2.51467 0.220843 -0.583578 +PW 0 +SE +ET PH +ID 6286 +TI 1760667401.751155376 +CC NStripHits 2 +PE 83.9579 +PP 3.30564 0.123493 -1.63123 +PW 0 +SE +ET PH +ID 6287 +TI 1760667401.751170873 +CC NStripHits 2 +PE 106.261 +PP 0.861109 -0.0165618 -1.86405 +PW 0 +SE +ET PH +ID 6288 +TI 1760667401.751191377 +CC NStripHits 4 +PE 179.026 +PP 1.67595 -0.383633 1.16252 +PW 0 +SE +ET PH +ID 6289 +TI 1760667401.751221656 +CC NStripHits 3 +PE 90.0729 +PP -0.884984 0.088447 -0.00154687 +PW 0 +SE +ET PH +ID 6290 +TI 1760667401.751250028 +CC NStripHits 3 +PE 338.764 +PP 1.21033 -0.0713871 2.55939 +PW 0 +SE +ET UN +ID 6291 +TI 1760667401.751274347 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET CO +ID 6292 +TI 1760667401.751301050 +CC NStripHits 5 +PQ 0.865743 +SQ 2 +CT 0 1 +TL 1 +TE 86.2978 +CE 294.609 1.10119 86.2978 0.925416 +CD 2.14158 -0.314656 -0.117953 0.0336036 0.0231086 0.0336036 1.21033 -0.0876383 -0.583578 0.0336036 0.0243669 0.0336036 0 0 0 0 0 0 +LA 1.06563 +SE +ET PH +ID 6293 +TI 1760667401.751346588 +CC NStripHits 2 +PE 138.627 +PP 2.84002 -0.110069 -3.14452 +PW 0 +SE +ET PH +ID 6294 +TI 1760667401.751363515 +CC NStripHits 2 +PE 117.328 +PP 3.65486 -1.16867 -1.0492 +PW 0 +SE +ET PH +ID 6295 +TI 1760667401.751378536 +CC NStripHits 2 +PE 166.657 +PP 0.395484 0.264144 -2.09686 +PW 0 +SE +ET PH +ID 6296 +TI 1760667401.751396179 +CC NStripHits 4 +PE 260.37 +PP -0.768578 -0.388282 -3.26092 +PW 0 +SE +ET PH +ID 6297 +TI 1760667401.751429319 +CC NStripHits 3 +PE 432.042 +PP 3.07283 -0.203544 0.231266 +PW 0 +SE +ID 6298 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 174.712996) +BD GR Veto +PQ 1.92534 +SE +ET CO +ID 6299 +TI 1760667401.751477479 +CC NStripHits 4 +PQ 0.43299 +SQ 2 +CT 0 1 +TL 1 +TE 69.1424 +CE 111.088 0.923072 69.1424 0.917487 +CD -1.35061 -0.956587 -1.16561 0.0336036 0.0198635 0.0336036 -1.46702 -0.363954 -1.51483 0.0336036 0.0227234 0.0336036 0 0 0 0 0 0 +LA 0.697653 +SE +ET PH +ID 6300 +TI 1760667401.751505613 +CC NStripHits 2 +PE 271.93 +PP -1.93264 0.257712 -1.98045 +PW 0 +SE +ET PH +ID 6301 +TI 1760667401.751523256 +CC NStripHits 2 +PE 136.992 +PP 3.30564 -0.470412 1.74455 +PW 0 +SE +ET PH +ID 6302 +TI 1760667401.751544237 +CC NStripHits 2 +PE 110.069 +PP 3.18923 -1.02876 -3.84295 +PW 0 +SE +ET CO +ID 6303 +TI 1760667401.751562833 +CC NStripHits 4 +PQ 47.695 +SQ 2 +CT 0 1 +TL 1 +TE 64.1892 +CE 262.34 1.42299 64.1892 1.26917 +CD -2.9803 -0.392549 -3.26092 0.0336036 0.0224989 0.0336036 -2.86389 -0.0521636 -2.67889 0.0336036 0.0246667 0.0336036 0 0 0 0 0 0 +LA 0.684231 +SE +ID 6304 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.097891) +QA StripPairing (Best reduced chi square is not below 25 (61.730425)) (GR Hit: Detector ID 0 and Energy 235.223718) +BD GR Veto +PQ 61.7304 +SE +ET CO +ID 6305 +TI 1760667401.751604080 +CC NStripHits 7 +PQ 2.18968 +SQ 3 +CT 0.0617652 0.783572 +TL 1 +TE 129.305 +CE 381.072 1.50328 129.305 1.32581 +CD 0.395484 -0.689708 1.62814 0.0336036 0.0210704 0.0336036 0.0462656 0.014166 1.97736 0.0336036 0.0251811 0.0336036 0 0 0 0 0 0 +LA 0.485299 +SE +ID 6306 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 280.620058) +BD GR Veto +PQ 0.575858 +SE +ET PH +ID 6307 +TI 1760667401.751655101 +CC NStripHits 2 +PE 136.763 +PP 4.23689 0.370867 -2.9117 +PW 0 +SE +ET UN +ID 6308 +TI 1760667401.751672506 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 244.498 +SE +ET PH +ID 6309 +TI 1760667401.751698017 +CC NStripHits 2 +PE 110.526 +PP -1.1178 0.0574859 1.16252 +PW 0 +SE +ET PH +ID 6310 +TI 1760667401.751715660 +CC NStripHits 3 +PE 151.6 +PP -2.74748 0.16347 -2.44608 +PW 0 +SE +ET PH +ID 6311 +TI 1760667401.751734972 +CC NStripHits 2 +PE 83.7016 +PP 3.88767 -0.00586531 -2.09686 +PW 0 +SE +ET PH +ID 6312 +TI 1760667401.751752853 +CC NStripHits 3 +PE 99.7196 +PP -0.535766 -0.429615 -4.07577 +PW 0 +SE +ID 6313 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 68.479568) (GR Hit: Detector ID 0 and Energy 75.459312) +BD GR Veto +PQ 0.260966 +SE +ET PH +ID 6314 +TI 1760667401.751785755 +CC NStripHits 2 +PE 76.7134 +PP 2.02517 0.356242 -4.19217 +PW 0 +SE +ID 6315 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 2.071762) +BD GR Veto +PQ +SE +ET CO +ID 6316 +TI 1760667401.751822233 +CC NStripHits 5 +PQ 37.4984 +SQ 2 +CT 0 1 +TL 1 +TE 92.3204 +CE 165.913 1.24944 92.3204 1.07956 +CD -1.69983 0.0112593 -1.86405 0.0336036 0.0251435 0.0336036 -1.81623 -1.05324 -4.07577 0.0336036 0.0213865 0.0336036 0 0 0 0 0 0 +LA 2.45732 +SE +ET UN +ID 6317 +TI 1760667401.751859903 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 267.759 +SE +ET CO +ID 6318 +TI 1760667401.751886606 +CC NStripHits 6 +PQ 0.480048 +SQ 2 +CT 0.707594 0.292406 +TL 1 +TE 414.495 +CE 246.424 1.06902 414.495 1.06768 +CD 2.72361 -0.582347 -3.95936 0.0336036 0.021566 0.0336036 3.07283 -0.380772 -3.49373 0.0336036 0.0225936 0.0336036 0 0 0 0 0 0 +LA 0.615953 +SE +ET PH +ID 6319 +TI 1760667401.751924514 +CC NStripHits 2 +PE 151.108 +PP 2.95642 0.335471 1.74455 +PW 0 +SE +ET UN +ID 6320 +TI 1760667401.751942873 +BD DepthCalibrationError (Out of Range) +CC NStripHits 7 +PE 482.512 +SE +ET PH +ID 6321 +TI 1760667401.751975059 +CC NStripHits 3 +PE 666.538 +PP 2.25798 -0.494842 0.231266 +PW 0 +SE +ID 6322 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.474814) +BD GR Veto +PQ +SE +ET CO +ID 6323 +TI 1760667401.752006769 +CC NStripHits 7 +PQ 1.3396 +SQ 2 +CT 0 1 +TL 1 +TE 153.555 +CE 324.489 1.07953 153.555 1.08744 +CD 1.90877 -1.03177 0.114859 0.0336036 0.0205953 0.0336036 2.4908 -0.663716 0.929703 0.0336036 0.0211972 0.0336036 0 0 0 0 0 0 +LA 1.06686 +SE +ET PH +ID 6324 +TI 1760667401.752060890 +CC NStripHits 2 +PE 76.2942 +PP -1.46702 -0.882938 1.86095 +PW 0 +SE +ET PH +ID 6325 +TI 1760667401.752079010 +CC NStripHits 2 +PE 146.071 +PP 3.42205 -0.170157 -3.72655 +PW 0 +SE +ET PH +ID 6326 +TI 1760667401.752113342 +CC NStripHits 2 +PE 470.86 +PP -1.93264 0.359173 1.16252 +PW 0 +SE +ID 6327 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 6328 +TI 1760667401.752140045 +CC NStripHits 4 +PQ 59.7274 +SQ 2 +CT 0 1 +TL 1 +TE 35.421 +CE 141.902 1.38172 35.421 1.30883 +CD 1.79236 -0.962275 0.580484 0.0336036 0.0198936 0.0336036 1.55955 0.35692 0.696891 0.0336036 0.0282988 0.0336036 0 0 0 0 0 0 +LA 1.34463 +SE +ET PH +ID 6329 +TI 1760667401.752164840 +CC NStripHits 2 +PE 114.103 +PP 2.95642 0.138029 1.39533 +PW 0 +SE +ET PH +ID 6330 +TI 1760667401.752185344 +CC NStripHits 2 +PE 471.27 +PP 2.6072 0.13056 -0.00154687 +PW 0 +SE +ET PH +ID 6331 +TI 1760667401.752208232 +CC NStripHits 3 +PE 470.032 +PP -0.0701406 -0.986836 -4.54139 +PW 0 +SE +ID 6332 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 121.164386) +BD GR Veto +PQ 1.41327 +SE +ET PH +ID 6333 +TI 1760667401.752251148 +CC NStripHits 2 +PE 141.885 +PP 4.23689 -1.00692 -0.699984 +PW 0 +SE +ID 6334 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.042546) +QA StripPairing (Best reduced chi square is not below 25 (52.006944)) (GR Hit: Detector ID 0 and Energy 172.593404) +BD GR Veto +PQ 52.0069 +SE +ID 6335 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 27.443323) +BD GR Veto +PQ 0.558475 +SE +ET PH +ID 6336 +TI 1760667401.771838426 +CC NStripHits 4 +PE 458.833 +PP 1.09392 -0.545661 -2.56248 +PW 0 +SE +ET PH +ID 6337 +TI 1760667401.771864175 +CC NStripHits 2 +PE 140.305 +PP -2.86389 -1.14466 1.86095 +PW 0 +SE +ET PH +ID 6338 +TI 1760667401.771883249 +CC NStripHits 2 +PE 31.4615 +PP 1.90877 -0.465438 2.09377 +PW 0 +SE +ET PH +ID 6339 +TI 1760667401.771901369 +CC NStripHits 2 +PE 456.999 +PP -1.81623 0.251937 1.27892 +PW 0 +SE +ID 6340 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 131.041185) +BD GR Veto +PQ 0.339279 +SE +ID 6341 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 0.237203) +BD GR Veto +PQ +SE +ET PH +ID 6342 +TI 1760667401.771937370 +CC NStripHits 3 +PE 425.742 +PP 3.07283 0.28709 -4.19217 +PW 0 +SE +ET UN +ID 6343 +TI 1760667401.771958112 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 472.266 +SE +ET UN +ID 6344 +TI 1760667401.771998643 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 253.813 +SE +ET PH +ID 6345 +TI 1760667401.772026300 +CC NStripHits 3 +PE 142.789 +PP -0.0701406 0.338895 -3.95936 +PW 0 +SE +ET PH +ID 6346 +TI 1760667401.772047758 +CC NStripHits 3 +PE 176.079 +PP 2.72361 0.033164 -2.9117 +PW 0 +SE +ET CO +ID 6347 +TI 1760667401.772086620 +CC NStripHits 5 +PQ 16.1945 +SQ 2 +CT 0 1 +TL 1 +TE 56.1295 +CE 231.733 1.84612 56.1295 1.26072 +CD -0.768578 -1.08634 2.32658 0.0336036 0.0245908 0.0336036 -0.535766 -0.696039 1.74455 0.0336036 0.0210183 0.0336036 0 0 0 0 0 0 +LA 0.738441 +SE +ET UN +ID 6348 +TI 1760667401.772146463 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 164.694 +SE +ID 6349 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (43.961297)) (GR Hit: Detector ID 0 and Energy 489.417573) +BD GR Veto +PQ 43.9613 +SE +ET UN +ID 6350 +TI 1760667401.772179365 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 265.14 +SE +ET PH +ID 6351 +TI 1760667401.772206544 +CC NStripHits 3 +PE 191.973 +PP -1.2342 -0.848027 -3.95936 +PW 0 +SE +ET UN +ID 6352 +TI 1760667401.772230863 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 7 +PE 451.238 +SE +ET PH +ID 6353 +TI 1760667401.772278547 +CC NStripHits 2 +PE 42.8666 +PP -1.00139 -0.945151 2.32658 +PW 0 +SE +ET PH +ID 6354 +TI 1760667401.772295713 +CC NStripHits 3 +PE 661.646 +PP 1.90877 0.342266 -4.30858 +PW 0 +SE +ET UN +ID 6355 +TI 1760667401.772319793 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6356 +TI 1760667401.772336721 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 6357 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 104.493068) +BD GR Veto +PQ 3.17507 +SE +ID 6358 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 90.265490) +BD GR Veto +PQ 2.84833 +SE +ET UN +ID 6359 +TI 1760667401.772416114 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.6674 +SE +ET PH +ID 6360 +TI 1760667401.772433996 +CC NStripHits 2 +PE 67.7109 +PP 0.162672 0.241959 -1.51483 +PW 0 +SE +ID 6361 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.376991) +QA StripPairing (Best reduced chi square is not below 25 (65.107828)) (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 98.250029) +BD GR Veto +PQ 65.1078 +SE +ID 6362 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 12.557433) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 216.134400) +BD GR Veto +PQ 18.1916 +SE +ET UN +ID 6363 +TI 1760667401.772504329 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 241.927 +SE +ET PH +ID 6364 +TI 1760667401.772531032 +CC NStripHits 3 +PE 408.071 +PP -0.0701406 0.357205 -0.350766 +PW 0 +SE +ET UN +ID 6365 +TI 1760667401.772559642 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6366 +TI 1760667401.772591352 +CC NStripHits 2 +PE 199.298 +PP -1.35061 0.21546 -2.21327 +PW 0 +SE +ET PH +ID 6367 +TI 1760667401.772609233 +CC NStripHits 2 +PE 330.585 +PP 3.30564 -1.02417 1.51173 +PW 0 +SE +ET PH +ID 6368 +TI 1760667401.772629976 +CC NStripHits 5 +PE 269.032 +PP 1.44314 -0.45018 -0.234359 +PW 0 +SE +ET PH +ID 6369 +TI 1760667401.772654771 +CC NStripHits 3 +PE 331.257 +PP 2.84002 0.370844 -3.72655 +PW 0 +SE +ET PH +ID 6370 +TI 1760667401.772674560 +CC NStripHits 2 +PE 379.332 +PP 0.977516 -0.265071 -0.00154687 +PW 0 +SE +ID 6371 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 355.309690) +BD GR Veto +PQ 0.197351 +SE +ET PH +ID 6372 +TI 1760667401.772702693 +CC NStripHits 5 +PE 363.005 +PP 4.00408 -0.550685 -0.00154687 +PW 0 +SE +ID 6373 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6374 +TI 1760667401.772732734 +CC NStripHits 2 +PE 456.235 +PP 0.628297 -0.0178221 0.813297 +PW 0 +SE +ET UN +ID 6375 +TI 1760667401.772751092 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6376 +TI 1760667401.772762060 +CC NStripHits 2 +PE 229.703 +PP 3.77127 -0.307352 -2.7953 +PW 0 +SE +ID 6377 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 231.947480) +BD GR Veto +PQ 5.87111 +SE +ID 6378 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 472.510532) +BD GR Veto +PQ 10.1524 +SE +ET PH +ID 6379 +TI 1760667401.772816658 +CC NStripHits 4 +PE 520.312 +PP -1.00139 -0.846201 -1.98045 +PW 0 +SE +ET CO +ID 6380 +TI 1760667401.772838115 +CC NStripHits 6 +PQ 30.9862 +SQ 2 +CT 0 1 +TL 1 +TE 155.262 +CE 507.854 1.33189 155.262 1.28808 +CD 1.55955 -0.0184439 -3.37733 0.0336036 0.0248647 0.0336036 1.90877 -0.0890456 -3.61014 0.0336036 0.0243527 0.0336036 0 0 0 0 0 0 +LA 0.425605 +SE +ET PH +ID 6381 +TI 1760667401.772871971 +CC NStripHits 2 +PE 428.648 +PP 2.84002 -0.41955 -3.02811 +PW 0 +SE +ID 6382 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 367.080864) +BD GR Veto +PQ 2.65856 +SE +ET UN +ID 6383 +TI 1760667401.772900104 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 36.2331 +SE +ET PH +ID 6384 +TI 1760667401.772916316 +CC NStripHits 3 +PE 353.28 +PP -1.1178 -0.647216 -0.234359 +PW 0 +SE +ET PH +ID 6385 +TI 1760667401.772938251 +CC NStripHits 2 +PE 82.9784 +PP -2.63108 0.371425 -1.51483 +PW 0 +SE +ET PH +ID 6386 +TI 1760667401.772955417 +CC NStripHits 2 +PE 271.428 +PP 1.32673 -0.826198 1.62814 +PW 0 +SE +ID 6387 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.497514) +BD GR Veto +PQ 2.72196 +SE +ET UN +ID 6388 +TI 1760667401.772984981 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 28.4378 +SE +ET CO +ID 6389 +TI 1760667401.773002147 +CC NStripHits 4 +PQ 0.813899 +SQ 2 +CT 0 1 +TL 1 +TE 137.569 +CE 175.636 0.921105 137.569 0.920911 +CD -0.768578 0.357285 -0.00154687 0.0336036 0.0281268 0.0336036 -0.884984 0.242412 0.114859 0.0336036 0.0316851 0.0336036 0 0 0 0 0 0 +LA 0.20074 +SE +ID 6390 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 6391 +TI 1760667401.773030757 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 193.874 +SE +ID 6392 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.733649) +BD GR Veto +PQ +SE +ET PH +ID 6393 +TI 1760667401.773067712 +CC NStripHits 3 +PE 270.717 +PP 0.0462656 -0.0972731 -2.09686 +PW 0 +SE +ET PH +ID 6394 +TI 1760667401.773090124 +CC NStripHits 3 +PE 343.243 +PP 2.02517 -0.736933 -2.32967 +PW 0 +SE +ET PH +ID 6395 +TI 1760667401.773110628 +CC NStripHits 2 +PE 437.598 +PP -0.186547 0.104652 -1.51483 +PW 0 +SE +ET PH +ID 6396 +TI 1760667401.773130655 +CC NStripHits 2 +PE 104.677 +PP 2.95642 0.278565 -0.117953 +PW 0 +SE +ET PH +ID 6397 +TI 1760667401.773150205 +CC NStripHits 3 +PE 208.847 +PP 4.23689 0.260351 -0.699984 +PW 0 +SE +ET UN +ID 6398 +TI 1760667401.773167610 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6399 +TI 1760667401.795538425 +CC NStripHits 3 +PE 475.542 +PP -0.884984 -0.472053 1.74455 +PW 0 +SE +ET PH +ID 6400 +TI 1760667401.795592784 +CC NStripHits 2 +PE 64.4198 +PP 1.21033 -1.15767 -0.00154687 +PW 0 +SE +ET CO +ID 6401 +TI 1760667401.795612335 +CC NStripHits 4 +PQ 20.6909 +SQ 2 +CT 0.649822 0.350178 +TL 1 +TE 303.488 +CE 214.125 1.27451 303.488 0.936786 +CD 3.65486 -0.47526 -3.02811 0.0336036 0.0219357 0.0336036 3.53845 -0.509176 -3.61014 0.0336036 0.0217559 0.0336036 0 0 0 0 0 0 +LA 0.594525 +SE +ET UN +ID 6402 +TI 1760667401.795643329 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 143.419 +SE +ID 6403 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 74.568389) +BD GR Veto +PQ 1.34316 +SE +ID 6404 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 17.123847) +BD GR Veto +PQ +SE +ET PH +ID 6405 +TI 1760667401.795688629 +CC NStripHits 4 +PE 248.541 +PP -2.16545 0.255656 -2.67889 +PW 0 +SE +ID 6406 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1411.156750)) (GR Hit: Detector ID 0 and Energy 195.156606) +BD GR Veto +PQ 1411.16 +SE +ET PH +ID 6407 +TI 1760667401.795721530 +CC NStripHits 2 +PE 174.073 +PP 2.02517 -0.665291 -0.583578 +PW 0 +SE +ID 6408 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 285.596997) +BD GR Veto +PQ 0.101057 +SE +ID 6409 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (241.215528)) (GR Hit: Detector ID 0 and Energy 171.440238) +BD GR Veto +PQ 241.216 +SE +ET CO +ID 6410 +TI 1760667401.795756578 +CC NStripHits 4 +PQ 11.8889 +SQ 2 +CT 0.509363 0.490637 +TL 1 +TE 185.722 +CE 160.027 1.36894 185.722 0.9455 +CD 3.65486 -0.314773 -0.234359 0.0336036 0.0231079 0.0336036 3.42205 0.0768471 -2.32967 0.0336036 0.0258992 0.0336036 0 0 0 0 0 0 +LA 2.14427 +SE +ET PH +ID 6411 +TI 1760667401.795789241 +CC NStripHits 2 +PE 107.846 +PP -0.652172 0.0806416 0.114859 +PW 0 +SE +ID 6412 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 531.892214) +BD GR Veto +PQ 24.2024 +SE +ET UN +ID 6413 +TI 1760667401.795832872 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 660.035 +SE +ET UN +ID 6414 +TI 1760667401.795856952 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6415 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.870825) (Strip hit removed with energy 9.114039) +QA StripPairing (GR Hit: Detector ID 0 and Energy 36.027892) +BD GR Veto +PQ 17.9945 +SE +ET PH +ID 6416 +TI 1760667401.795918703 +CC NStripHits 3 +PE 226.38 +PP -2.28186 0.174705 -3.37733 +PW 0 +SE +ET PH +ID 6417 +TI 1760667401.795939683 +CC NStripHits 2 +PE 367.217 +PP 2.72361 0.369306 0.231266 +PW 0 +SE +ET PH +ID 6418 +TI 1760667401.795963287 +CC NStripHits 2 +PE 199.664 +PP 2.6072 -0.183136 0.464078 +PW 0 +SE +ET PH +ID 6419 +TI 1760667401.795983314 +CC NStripHits 3 +PE 98.4416 +PP 1.67595 -0.974226 0.464078 +PW 0 +SE +ID 6420 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.028923) (Strip hit removed with energy 13.129631) +QA StripPairing (Best reduced chi square is not below 25 (136.644428)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 83.354793)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 27.442180) +BD GR Veto +PQ 136.644 +SE +ET PH +ID 6421 +TI 1760667401.796031236 +CC NStripHits 3 +PE 249.634 +PP -0.419359 -0.33095 0.464078 +PW 0 +SE +ET PH +ID 6422 +TI 1760667401.796050786 +CC NStripHits 2 +PE 78.6539 +PP -2.39827 0.356437 -1.74764 +PW 0 +SE +ET CO +ID 6423 +TI 1760667401.796069383 +CC NStripHits 5 +PQ 1.44019 +SQ 2 +CT 0.663081 0.336919 +TL 1 +TE 394.374 +CE 264.732 0.952391 394.374 1.06715 +CD 1.44314 -1.02566 -0.350766 0.0336036 0.0204573 0.0336036 0.977516 -0.912016 -0.699984 0.0336036 0.0197801 0.0336036 0 0 0 0 0 0 +LA 0.593021 +SE +ID 6424 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.836820) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 35.515510)) +BD GR Veto +PQ 23.9454 +SE +ID 6425 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (743.504933)) (GR Hit: Detector ID 0 and Energy 122.344227) +BD GR Veto +PQ 743.505 +SE +ET UN +ID 6426 +TI 1760667401.796153783 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.4254 +SE +ET UN +ID 6427 +TI 1760667401.796172380 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.641 +SE +ET PH +ID 6428 +TI 1760667401.796190738 +CC NStripHits 3 +PE 377.666 +PP 3.30564 -0.458698 -1.28202 +PW 0 +SE +ET CO +ID 6429 +TI 1760667401.796211004 +CC NStripHits 4 +PQ 11.5197 +SQ 2 +CT 0 1 +TL 1 +TE 39.8412 +CE 115.786 1.32406 39.8412 0.93847 +CD 0.744703 -0.287139 -2.32967 0.0336036 0.023196 0.0336036 0.977516 -0.828183 -2.09686 0.0336036 0.0200406 0.0336036 0 0 0 0 0 0 +LA 0.633349 +SE +ET PH +ID 6430 +TI 1760667401.796248674 +CC NStripHits 3 +PE 155.271 +PP 3.30564 -0.000226211 -4.30858 +PW 0 +SE +ID 6431 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.471503) +QA StripPairing (GR Hit: Detector ID 0 and Energy 191.804746) +BD GR Veto +PQ 5.79205 +SE +ET CO +ID 6432 +TI 1760667401.796283721 +CC NStripHits 8 +PQ 9.36959 +SQ 3 +CT 0.320677 0.33193 +TL 1 +TE 315.231 +CE 342.423 1.61352 315.231 1.31313 +CD -1.00139 0.338461 1.62814 0.0336036 0.0349992 0.0336036 -0.535766 -0.691917 0.696891 0.0336036 0.021055 0.0336036 0 0 0 0 0 0 +LA 1.46482 +SE +ID 6433 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.907144) (Strip hit removed with energy 16.460201) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 47.445089)) +BD GR Veto +PQ 17.5556 +SE +ET PH +ID 6434 +TI 1760667401.796372175 +CC NStripHits 2 +PE 109.987 +PP 2.72361 0.36214 -0.234359 +PW 0 +SE +ET PH +ID 6435 +TI 1760667401.796389818 +CC NStripHits 2 +PE 136.252 +PP -0.419359 0.364857 2.32658 +PW 0 +SE +ET CO +ID 6436 +TI 1760667401.796408653 +CC NStripHits 4 +PQ 11.0231 +SQ 2 +CT 0 1 +TL 1 +TE 60.7758 +CE 148.686 0.94277 60.7758 1.31271 +CD 2.02517 0.337493 1.27892 0.0336036 0.0352487 0.0336036 -0.768578 -1.03612 -3.37733 0.0336036 0.0207154 0.0336036 0 0 0 0 0 0 +LA 5.60112 +SE +ET CO +ID 6437 +TI 1760667401.796447753 +CC NStripHits 6 +PQ 0.90356 +SQ 2 +CT 0 1 +TL 1 +TE 77.5718 +CE 142.558 1.0603 77.5718 1.06005 +CD 1.67595 -1.0567 1.39533 0.0336036 0.0215716 0.0336036 2.37439 -0.218422 1.04611 0.0336036 0.0233805 0.0336036 0 0 0 0 0 0 +LA 1.14564 +SE +ET PH +ID 6438 +TI 1760667401.796492338 +CC NStripHits 2 +PE 119.438 +PP 0.162672 -0.171931 0.347672 +PW 0 +SE +ET CO +ID 6439 +TI 1760667401.796510457 +CC NStripHits 4 +PQ 33.9566 +SQ 2 +CT 0 1 +TL 1 +TE 59.3597 +CE 265.316 1.28247 59.3597 1.29724 +CD 2.72361 0.0330185 -1.0492 0.0336036 0.0253742 0.0336036 3.07283 -1.13972 2.32658 0.0336036 0.0293789 0.0336036 0 0 0 0 0 0 +LA 3.5907 +SE +ID 6440 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 179.044871) +BD GR Veto +PQ 0.00811064 +SE +ET PH +ID 6441 +TI 1760667401.796570777 +CC NStripHits 5 +PE 295.002 +PP 4.12048 -0.668144 -2.32967 +PW 0 +SE +ET PH +ID 6442 +TI 1760667401.796597480 +CC NStripHits 2 +PE 276.106 +PP 0.162672 0.2513 2.32658 +PW 0 +SE +ET PH +ID 6443 +TI 1760667401.796615600 +CC NStripHits 2 +PE 204.093 +PP 2.25798 -0.677385 -2.09686 +PW 0 +SE +ET PH +ID 6444 +TI 1760667401.796637296 +CC NStripHits 2 +PE 51.3707 +PP 0.0462656 -0.281175 0.929703 +PW 0 +SE +ET PH +ID 6445 +TI 1760667401.796654224 +CC NStripHits 4 +PE 86.943 +PP -0.768578 0.0254657 0.464078 +PW 0 +SE +ET CO +ID 6446 +TI 1760667401.796691417 +CC NStripHits 8 +PQ 3.33429 +SQ 2 +CT 0.70883 0.29117 +TL 1 +TE 361.364 +CE 214.025 1.27725 361.364 1.32987 +CD -1.93264 0.141551 -0.234359 0.0336036 0.0270107 0.0336036 -1.46702 -0.0536729 -0.117953 0.0336036 0.0246583 0.0336036 0 0 0 0 0 0 +LA 0.518136 +SE +ET PH +ID 6447 +TI 1760667401.796732187 +CC NStripHits 2 +PE 77.2112 +PP -0.419359 0.315595 -0.816391 +PW 0 +SE +ID 6448 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (91.775633)) (GR Hit: Detector ID 0 and Energy 114.485520) +BD GR Veto +PQ 91.7756 +SE +ID 6449 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 56.727149) +BD GR Veto +PQ 6.04646 +SE +ET PH +ID 6450 +TI 1760667401.796766519 +CC NStripHits 2 +PE 154.547 +PP 1.21033 0.0349495 -2.32967 +PW 0 +SE +ET PH +ID 6451 +TI 1760667401.796785116 +CC NStripHits 2 +PE 78.9322 +PP -1.00139 0.325196 0.696891 +PW 0 +SE +ET PH +ID 6452 +TI 1760667401.796803236 +CC NStripHits 2 +PE 223.94 +PP 2.84002 -1.02433 -1.28202 +PW 0 +SE +ID 6453 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.146318) (Strip hit removed with energy 17.544175) +BD GR Veto +PQ 3.61186 +SE +ID 6454 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 429.974527) +BD GR Veto +PQ 12.8895 +SE +ID 6455 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 52.785439) +BD GR Veto +PQ 21.643 +SE +ID 6456 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 138.675914) +BD GR Veto +PQ 1.01679 +SE +ET UN +ID 6457 +TI 1760667401.796875953 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 47.6228 +SE +ET UN +ID 6458 +TI 1760667401.796896219 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 469.668 +SE +ID 6459 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 72.401227) +BD GR Veto +PQ 3.25905 +SE +ET PH +ID 6460 +TI 1760667401.796941757 +CC NStripHits 2 +PE 101.026 +PP -0.535766 -1.00578 -0.816391 +PW 0 +SE +ET UN +ID 6461 +TI 1760667401.796960353 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6462 +TI 1760667401.796978712 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 188.759 +SE +ET PH +ID 6463 +TI 1760667401.816944599 +CC NStripHits 2 +PE 332.39 +PP -0.0701406 0.283992 -0.699984 +PW 0 +SE +ET PH +ID 6464 +TI 1760667401.816999197 +CC NStripHits 2 +PE 98.5513 +PP 2.37439 -0.113573 -3.02811 +PW 0 +SE +ET PH +ID 6465 +TI 1760667401.817017316 +CC NStripHits 2 +PE 125.074 +PP 1.55955 0.349591 -1.28202 +PW 0 +SE +ID 6466 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 207.528763) +BD GR Veto +PQ 3.81459 +SE +ID 6467 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ 9.70907 +SE +ET PH +ID 6468 +TI 1760667401.817085266 +CC NStripHits 3 +PE 469.07 +PP -2.63108 -1.04728 0.347672 +PW 0 +SE +ET PH +ID 6469 +TI 1760667401.817106008 +CC NStripHits 3 +PE 201.412 +PP 2.4908 -0.862588 -2.21327 +PW 0 +SE +ID 6470 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 125.673665) +BD GR Veto +PQ 2.8387 +SE +ID 6471 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (7395.653939)) (GR Hit: Detector ID 0 and Energy 362.048021) +BD GR Veto +PQ 7395.65 +SE +ID 6472 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.388521) +BD GR Veto +PQ +SE +ET PH +ID 6473 +TI 1760667401.817159891 +CC NStripHits 3 +PE 279.834 +PP 4.3533 -0.287007 -2.21327 +PW 0 +SE +ID 6474 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (188.750732)) (GR Hit: Detector ID 0 and Energy 662.370210) +BD GR Veto +PQ 188.751 +SE +ET PH +ID 6475 +TI 1760667401.817185878 +CC NStripHits 2 +PE 456.147 +PP -0.419359 -0.0203329 -3.14452 +PW 0 +SE +ET PH +ID 6476 +TI 1760667401.817206382 +CC NStripHits 2 +PE 224.79 +PP -0.0701406 -0.622885 1.51173 +PW 0 +SE +ID 6477 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 201.995850) +BD GR Veto +PQ 0.470918 +SE +ET UN +ID 6478 +TI 1760667401.817231893 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ID 6479 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 95.067454) +BD GR Veto +PQ 2.70229 +SE +ET UN +ID 6480 +TI 1760667401.817248821 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 567.751 +SE +ET PH +ID 6481 +TI 1760667401.817284584 +CC NStripHits 2 +PE 133.433 +PP -1.1178 0.36952 -4.07577 +PW 0 +SE +ET PH +ID 6482 +TI 1760667401.817301511 +CC NStripHits 3 +PE 482.096 +PP 0.511891 -0.455861 -0.467172 +PW 0 +SE +ID 6483 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 101.144830) +BD GR Veto +PQ 0.225299 +SE +ET PH +ID 6484 +TI 1760667401.817333936 +CC NStripHits 2 +PE 206.371 +PP 4.23689 -0.596563 -0.117953 +PW 0 +SE +ET UN +ID 6485 +TI 1760667401.817351579 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 661.109 +SE +ID 6486 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 305.944773) +BD GR Veto +PQ 4.21839 +SE +ET PH +ID 6487 +TI 1760667401.817399740 +CC NStripHits 2 +PE 92.8641 +PP -0.652172 0.35713 0.347672 +PW 0 +SE +ET PH +ID 6488 +TI 1760667401.817417144 +CC NStripHits 2 +PE 286.381 +PP 2.37439 0.3141 1.51173 +PW 0 +SE +ET PH +ID 6489 +TI 1760667401.817436218 +CC NStripHits 5 +PE 290.257 +PP 0.861109 -1.05101 1.16252 +PW 0 +SE +ET UN +ID 6490 +TI 1760667401.817460536 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 46.8522 +SE +ET PH +ID 6491 +TI 1760667401.817478179 +CC NStripHits 4 +PE 342.519 +PP 2.14158 0.136259 -4.30858 +PW 0 +SE +ET PH +ID 6492 +TI 1760667401.817502498 +CC NStripHits 3 +PE 474.318 +PP 4.00408 0.127278 1.51173 +PW 0 +SE +ET PH +ID 6493 +TI 1760667401.817522525 +CC NStripHits 5 +PE 894.745 +PP -2.86389 -0.657994 -0.583578 +PW 0 +SE +ET UN +ID 6494 +TI 1760667401.817547798 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6495 +TI 1760667401.817568063 +CC NStripHits 3 +PE 261.386 +PP 0.744703 -1.1547 0.696891 +PW 0 +SE +ET PH +ID 6496 +TI 1760667401.817587375 +CC NStripHits 2 +PE 94.6311 +PP 1.09392 0.0730903 -0.583578 +PW 0 +SE +ID 6497 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (62.203516)) (GR Hit: Detector ID 0 and Energy 135.341302) +BD GR Veto +PQ 62.2035 +SE +ET CO +ID 6498 +TI 1760667401.817611932 +CC NStripHits 4 +PQ 57.4513 +SQ 2 +CT 0 1 +TL 1 +TE 72.2805 +CE 163.983 1.27335 72.2805 1.28086 +CD -1.00139 -0.86985 -1.39842 0.0336036 0.0198985 0.0336036 -1.69983 -0.945091 -1.0492 0.0336036 0.0198132 0.0336036 0 0 0 0 0 0 +LA 0.784496 +SE +ID 6499 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (33.578920)) (GR Hit: Detector ID 0 and Energy 68.047867) +BD GR Veto +PQ 33.5789 +SE +ET PH +ID 6500 +TI 1760667401.817656278 +CC NStripHits 2 +PE 168.843 +PP 2.6072 -0.898423 -1.98045 +PW 0 +SE +ET PH +ID 6501 +TI 1760667401.817673921 +CC NStripHits 2 +PE 31.088 +PP -2.04905 -0.0725818 -1.16561 +PW 0 +SE +ET PH +ID 6502 +TI 1760667401.817691564 +CC NStripHits 2 +PE 116.383 +PP 0.861109 -0.263569 -4.6578 +PW 0 +SE +ID 6503 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.168140) (Strip hit removed with energy 1.256701) +QA StripPairing (Best reduced chi square is not below 25 (59.055440)) +BD GR Veto +PQ 59.0554 +SE +ID 6504 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.916652) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 21.669996)) +BD GR Veto +PQ 7.99706 +SE +ID 6505 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 158.976021) +BD GR Veto +PQ 1.44599e-05 +SE +ET UN +ID 6506 +TI 1760667401.817801475 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 219.42 +SE +ID 6507 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 123.543274) +BD GR Veto +PQ 1.3853 +SE +ET PH +ID 6508 +TI 1760667401.817843675 +CC NStripHits 2 +PE 162.707 +PP -1.93264 -0.0814962 1.27892 +PW 0 +SE +ID 6509 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 14.062186) +QA StripPairing (Best reduced chi square is not below 25 (61.159988)) (GR Hit: Detector ID 0 and Energy 101.417900) +BD GR Veto +PQ 61.16 +SE +ET UN +ID 6510 +TI 1760667401.817909479 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 660.167 +SE +ET PH +ID 6511 +TI 1760667401.817959308 +CC NStripHits 2 +PE 53.5169 +PP 2.6072 -0.811181 -3.84295 +PW 0 +SE +ID 6512 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 55.617267) (GR Hit: Detector ID 0 and Energy 23.498561) +BD GR Veto +PQ 1.15173 +SE +ID 6513 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.830616) (Strip hit removed with energy 8.197676) (Strip hit removed with energy 17.268460) (Strip hit removed with energy 18.239574) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 361.410309)) +BD GR Veto +PQ 7.8332 +SE +ID 6514 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 454.793943) +BD GR Veto +PQ 21.6606 +SE +ID 6515 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 63.100684) (GR Hit: Detector ID 0 and Energy 142.528585) +BD GR Veto +PQ 3.17818 +SE +ET PH +ID 6516 +TI 1760667401.818075418 +CC NStripHits 2 +PE 409.78 +PP -1.69983 -0.190976 2.09377 +PW 0 +SE +ET CO +ID 6517 +TI 1760667401.818095684 +CC NStripHits 4 +PQ 0.415178 +SQ 2 +CT 0 1 +TL 1 +TE 118.876 +CE 229.51 0.944798 118.876 0.918461 +CD -1.2342 0.136463 2.09377 0.0336036 0.0268953 0.0336036 -0.535766 0.0955242 1.62814 0.0336036 0.0261807 0.0336036 0 0 0 0 0 0 +LA 0.840415 +SE +ET PH +ID 6518 +TI 1760667401.818134307 +CC NStripHits 2 +PE 238.625 +PP 3.88767 -0.233719 1.16252 +PW 0 +SE +ET CO +ID 6519 +TI 1760667401.818151950 +CC NStripHits 5 +PQ 2.24439 +SQ 2 +CT 0.576861 0.423139 +TL 1 +TE 300.178 +CE 251.786 1.13454 300.178 1.49937 +CD -1.1178 -0.0399023 1.86095 0.0336036 0.0247387 0.0336036 -1.69983 0.215005 2.21017 0.0336036 0.0294759 0.0336036 0 0 0 0 0 0 +LA 0.725046 +SE +ET PH +ID 6520 +TI 1760667401.818186044 +CC NStripHits 3 +PE 270.244 +PP 4.00408 0.0641731 0.929703 +PW 0 +SE +ID 6521 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (125.853789)) (GR Hit: Detector ID 0 and Energy 80.279076) +BD GR Veto +PQ 125.854 +SE +ET PH +ID 6522 +TI 1760667401.818214654 +CC NStripHits 3 +PE 308.569 +PP 1.44314 -0.0260445 -0.932797 +PW 0 +SE +ID 6523 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 135.539250) +BD GR Veto +PQ 0.300607 +SE +ID 6524 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 245.639729) +BD GR Veto +PQ 8.57215 +SE +ET PH +ID 6525 +TI 1760667401.818249940 +CC NStripHits 2 +PE 37.8495 +PP 3.65486 -0.374193 -1.63123 +PW 0 +SE +ET CO +ID 6526 +TI 1760667401.818267345 +CC NStripHits 5 +PQ 0.0685808 +SQ 2 +CT 0 1 +TL 1 +TE 42.5185 +CE 214.047 1.03735 42.5185 0.90637 +CD -1.58342 -0.307215 0.347672 0.0336036 0.0231453 0.0336036 -1.35061 -0.31942 0.114859 0.0336036 0.023076 0.0336036 0 0 0 0 0 0 +LA 0.329471 +SE +ET PH +ID 6527 +TI 1760667401.834403514 +CC NStripHits 3 +PE 457.348 +PP 3.65486 -0.639525 -3.49373 +PW 0 +SE +ET PH +ID 6528 +TI 1760667401.834454298 +CC NStripHits 3 +PE 308.07 +PP -2.63108 -0.636288 1.74455 +PW 0 +SE +ET UN +ID 6529 +TI 1760667401.834478378 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 525.272 +SE +ET PH +ID 6530 +TI 1760667401.834515571 +CC NStripHits 4 +PE 314.919 +PP -1.00139 -0.757056 -3.84295 +PW 0 +SE +ET PH +ID 6531 +TI 1760667401.834538221 +CC NStripHits 2 +PE 215.399 +PP -1.69983 -1.06705 0.580484 +PW 0 +SE +ET PH +ID 6532 +TI 1760667401.834559202 +CC NStripHits 4 +PE 122.877 +PP 2.25798 -0.972054 -0.350766 +PW 0 +SE +ID 6533 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 392.005519) +BD GR Veto +PQ 3.06338 +SE +ET UN +ID 6534 +TI 1760667401.834618330 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6535 +TI 1760667401.834635972 +CC NStripHits 2 +PE 189.707 +PP 1.79236 -0.411504 2.44298 +PW 0 +SE +ET CO +ID 6536 +TI 1760667401.834653615 +CC NStripHits 4 +PQ 0.298443 +SQ 2 +CT 0 1 +TL 1 +TE 22.9869 +CE 134.668 0.930191 22.9869 0.903282 +CD 2.02517 -0.58481 -1.39842 0.0336036 0.0215523 0.0336036 1.67595 0.243836 -2.09686 0.0336036 0.0318436 0.0336036 0 0 0 0 0 0 +LA 1.13861 +SE +ET PH +ID 6537 +TI 1760667401.834686756 +CC NStripHits 3 +PE 288.589 +PP 4.00408 -0.177552 -3.02811 +PW 0 +SE +ET PH +ID 6538 +TI 1760667401.834706544 +CC NStripHits 3 +PE 121.818 +PP 3.77127 0.0286124 -1.63123 +PW 0 +SE +ET UN +ID 6539 +TI 1760667401.834727048 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ID 6540 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 13.028627) +BD GR Veto +PQ +SE +ET CO +ID 6541 +TI 1760667401.834749221 +CC NStripHits 6 +PQ 1.50749 +SQ 2 +CT 0 1 +TL 1 +TE 109.014 +CE 158.803 1.30426 109.014 0.931942 +CD -2.16545 -1.05545 -0.117953 0.0336036 0.0215023 0.0336036 -2.51467 -0.667545 -0.350766 0.0336036 0.021171 0.0336036 0 0 0 0 0 0 +LA 0.571513 +SE +ID 6542 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 67.763919) +BD GR Veto +PQ 0.489096 +SE +ID 6543 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 133.397125) +BD GR Veto +PQ 0.0273321 +SE +ET CO +ID 6544 +TI 1760667401.834795951 +CC NStripHits 4 +PQ 125.545 +SQ 2 +CT 0 1 +TL 1 +TE 153.413 +CE 268.409 1.35413 153.413 1.30522 +CD 0.977516 0.121952 -3.02811 0.0336036 0.0265811 0.0336036 -0.0701406 0.123533 -2.9117 0.0336036 0.0266128 0.0336036 0 0 0 0 0 0 +LA 1.05411 +SE +ID 6545 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 16.883824) (Strip hit removed with energy 5.124003) +BD GR Veto +PQ +SE +ET UN +ID 6546 +TI 1760667401.834837675 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 306.161 +SE +ET CO +ID 6547 +TI 1760667401.834859848 +CC NStripHits 5 +PQ 2.75549 +SQ 2 +CT 0 1 +TL 1 +TE 79.1495 +CE 373.107 1.09852 79.1495 0.93812 +CD 0.395484 -0.575596 -0.117953 0.0336036 0.0215961 0.0336036 0.861109 -0.77392 -1.74764 0.0336036 0.020275 0.0336036 0 0 0 0 0 0 +LA 1.70646 +SE +ID 6548 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (32.200652)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 23.584888)) (GR Hit: Detector ID 0 and Energy 290.558825) (GR Hit: Detector ID 0 and Energy 206.452207) +BD GR Veto +PQ 32.2007 +SE +ET PH +ID 6549 +TI 1760667401.834921121 +CC NStripHits 3 +PE 73.3948 +PP 3.18923 -0.625216 0.347672 +PW 0 +SE +ET PH +ID 6550 +TI 1760667401.834941387 +CC NStripHits 4 +PE 361.566 +PP -2.86389 0.00662002 -0.117953 +PW 0 +SE +ET PH +ID 6551 +TI 1760667401.834963798 +CC NStripHits 2 +PE 120.196 +PP 1.09392 -0.304107 -4.30858 +PW 0 +SE +ET UN +ID 6552 +TI 1760667401.834980964 +BD DepthCalibrationError (Out of Range) +CC NStripHits 5 +PE 384.564 +SE +ET PH +ID 6553 +TI 1760667401.835017919 +CC NStripHits 2 +PE 24.0161 +PP -1.81623 0.379771 1.86095 +PW 0 +SE +ET PH +ID 6554 +TI 1760667401.835035324 +CC NStripHits 2 +PE 29.8188 +PP 3.07283 -0.179848 2.21017 +PW 0 +SE +ET PH +ID 6555 +TI 1760667401.835051774 +CC NStripHits 2 +PE 446.176 +PP -1.81623 -0.366987 0.696891 +PW 0 +SE +ET UN +ID 6556 +TI 1760667401.835073709 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 29.1502 +SE +ET PH +ID 6557 +TI 1760667401.835090637 +CC NStripHits 3 +PE 154.217 +PP 2.14158 0.00455259 -0.932797 +PW 0 +SE +ET PH +ID 6558 +TI 1760667401.835108757 +CC NStripHits 2 +PE 43.9155 +PP -0.652172 -0.792767 2.6758 +PW 0 +SE +ID 6559 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 85.851297) +BD GR Veto +PQ 0.112983 +SE +ID 6560 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET CO +ID 6561 +TI 1760667401.835142135 +CC NStripHits 5 +PQ 1.39308 +SQ 2 +CT 0 1 +TL 1 +TE 75.362 +CE 349.861 1.15041 75.362 0.917747 +CD -0.652172 0.335673 -0.816391 0.0336036 0.0356926 0.0336036 -1.1178 0.332228 -1.28202 0.0336036 0.0364436 0.0336036 0 0 0 0 0 0 +LA 0.658507 +SE +ET CO +ID 6562 +TI 1760667401.835175275 +CC NStripHits 5 +PQ 0.690206 +SQ 2 +CT 0.660022 0.339978 +TL 1 +TE 306.11 +CE 203.571 0.888645 306.11 1.15375 +CD 4.00408 -0.596616 0.464078 0.0336036 0.0214804 0.0336036 4.23689 0.159699 1.16252 0.0336036 0.0274145 0.0336036 0 0 0 0 0 0 +LA 1.05548 +SE +ET CO +ID 6563 +TI 1760667401.835206985 +CC NStripHits 6 +PQ 12.7495 +SQ 3 +CT 0.001991 0.00284105 +TL 1 +TE 266.504 +CE 395.904 1.58834 266.504 1.29319 +CD 2.14158 -0.0173971 1.04611 0.0336036 0.0248706 0.0336036 3.30564 -0.725925 0.347672 0.0336036 0.020655 0.0336036 0 0 0 0 0 0 +LA 0.862959 +SE +ID 6564 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 148.015110) +BD GR Veto +PQ 0.0538651 +SE +ET PH +ID 6565 +TI 1760667401.835262537 +CC NStripHits 2 +PE 99.9661 +PP -1.00139 0.0884214 -1.86405 +PW 0 +SE +ET PH +ID 6566 +TI 1760667401.835279703 +CC NStripHits 3 +PE 588.061 +PP -1.58342 -0.583556 -2.7953 +PW 0 +SE +ET UN +ID 6567 +TI 1760667401.835301876 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 726.758 +SE +ET PH +ID 6568 +TI 1760667401.835340976 +CC NStripHits 2 +PE 165.148 +PP 4.00408 -0.827881 1.04611 +PW 0 +SE +ID 6569 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 436.420442) +BD GR Veto +PQ 10.0116 +SE +ET UN +ID 6570 +TI 1760667401.835366487 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 45.8805 +SE +ET PH +ID 6571 +TI 1760667401.835385799 +CC NStripHits 3 +PE 110.869 +PP 4.3533 0.144597 -1.16561 +PW 0 +SE +ET PH +ID 6572 +TI 1760667401.835403203 +CC NStripHits 2 +PE 110.233 +PP 2.14158 0.0466741 -3.26092 +PW 0 +SE +ET UN +ID 6573 +TI 1760667401.835420370 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET UN +ID 6574 +TI 1760667401.835467100 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET PH +ID 6575 +TI 1760667401.835484743 +CC NStripHits 5 +PE 232.253 +PP 2.37439 0.0361011 1.74455 +PW 0 +SE +ET UN +ID 6576 +TI 1760667401.835523366 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 201.998 +SE +ET UN +ID 6577 +TI 1760667401.835547685 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET UN +ID 6578 +TI 1760667401.835558176 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 355.526 +SE +ID 6579 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 98.629817) +BD GR Veto +PQ 6.58843 +SE +ET CO +ID 6580 +TI 1760667401.835592985 +CC NStripHits 6 +PQ 1.34609 +SQ 2 +CT 0 1 +TL 1 +TE 128.396 +CE 131.629 1.0507 128.396 1.03623 +CD -1.46702 0.263302 1.16252 0.0336036 0.0344133 0.0336036 -1.2342 -0.146294 1.39533 0.0336036 0.0238865 0.0336036 0 0 0 0 0 0 +LA 0.525523 +SE +ID 6581 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 31.293320) +BD GR Veto +PQ 2.43093 +SE +ET PH +ID 6582 +TI 1760667401.835638523 +CC NStripHits 3 +PE 106.446 +PP -2.74748 0.0351053 -2.21327 +PW 0 +SE +ET PH +ID 6583 +TI 1760667401.835657835 +CC NStripHits 2 +PE 121.962 +PP 1.32673 -0.996622 1.39533 +PW 0 +SE +ET PH +ID 6584 +TI 1760667401.835675477 +CC NStripHits 3 +PE 106.499 +PP -0.884984 -1.08235 -1.63123 +PW 0 +SE +ID 6585 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 7.559646) +BD GR Veto +PQ 1.14729 +SE +ET PH +ID 6586 +TI 1760667401.835727453 +CC NStripHits 3 +PE 186.548 +PP 0.511891 -0.206081 -4.19217 +PW 0 +SE +ID 6587 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 9.303409) (Strip hit removed with energy 9.509243) (Strip hit removed with energy 8.615305) +QA StripPairing (GR Hit: Detector ID 0 and Energy 184.330955) +BD GR Veto +PQ 9.5598 +SE +ET PH +ID 6588 +TI 1760667401.835799694 +CC NStripHits 2 +PE 299.106 +PP -0.0701406 0.369318 -1.86405 +PW 0 +SE +ET CO +ID 6589 +TI 1760667401.835819721 +CC NStripHits 7 +PQ 10.1634 +SQ 2 +CT 0.590479 0.409521 +TL 1 +TE 367.909 +CE 292.743 1.39641 367.909 1.31889 +CD -2.86389 -0.95368 1.51173 0.0336036 0.0198487 0.0336036 -1.35061 -0.705286 1.97736 0.0336036 0.0209001 0.0336036 0 0 0 0 0 0 +LA 1.60266 +SE +ID 6590 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.175042) (Strip hit removed with energy 1.052861) +BD GR Veto +PQ 19.2086 +SE +ET PH +ID 6591 +TI 1760667401.856833696 +CC NStripHits 2 +PE 32.2297 +PP 3.30564 -0.606894 -1.16561 +PW 0 +SE +ET UN +ID 6592 +TI 1760667401.856913089 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 6 +PE 457.502 +SE +ET UN +ID 6593 +TI 1760667401.857002973 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 30.2726 +SE +ID 6594 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 127.772462) +BD GR Veto +PQ 0.762807 +SE +ET PH +ID 6595 +TI 1760667401.857051610 +CC NStripHits 2 +PE 390.368 +PP -1.69983 0.264976 -2.44608 +PW 0 +SE +ID 6596 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 18.039399) (Strip hit removed with energy 7.155119) +BD GR Veto +PQ +SE +ID 6597 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 340.893551) +BD GR Veto +PQ 10.7022 +SE +ID 6598 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 190.198243) +BD GR Veto +PQ 14.3964 +SE +ET UN +ID 6599 +TI 1760667401.857128858 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.7066 +SE +ET CO +ID 6600 +TI 1760667401.857157230 +CC NStripHits 8 +PQ 36.0988 +SQ 3 +CT 0.133441 0.725135 +TL 1 +TE 118.747 +CE 561.715 2.72172 118.747 1.29569 +CD 1.55955 0.299481 0.347672 0.0336036 0.0386079 0.0336036 2.02517 0.211224 0.696891 0.0336036 0.0292662 0.0336036 0 0 0 0 0 0 +LA 0.588681 +SE +ET PH +ID 6601 +TI 1760667401.857246160 +CC NStripHits 2 +PE 90.663 +PP -2.9803 -0.458886 -1.86405 +PW 0 +SE +ET UN +ID 6602 +TI 1760667401.857262134 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 189.877 +SE +ID 6603 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 70.879267) +BD GR Veto +PQ 4.17852 +SE +ID 6604 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.460511) +BD GR Veto +PQ +SE +ID 6605 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (27.547002)) (GR Hit: Detector ID 0 and Energy 461.068488) +BD GR Veto +PQ 27.547 +SE +ET UN +ID 6606 +TI 1760667401.857307434 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 66.278 +SE +ID 6607 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 427.143392) +BD GR Veto +PQ 14.3523 +SE +ET PH +ID 6608 +TI 1760667401.857335090 +CC NStripHits 2 +PE 300.217 +PP -1.93264 0.354294 -4.07577 +PW 0 +SE +ET PH +ID 6609 +TI 1760667401.857351779 +CC NStripHits 2 +PE 478.767 +PP 3.30564 -0.698756 -3.37733 +PW 0 +SE +ET PH +ID 6610 +TI 1760667401.857373714 +CC NStripHits 3 +PE 252.874 +PP -1.58342 -0.293465 1.97736 +PW 0 +SE +ET UN +ID 6611 +TI 1760667401.857395887 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 490.068 +SE +ET PH +ID 6612 +TI 1760667401.857424736 +CC NStripHits 4 +PE 459.236 +PP -1.2342 0.150866 1.74455 +PW 0 +SE +ID 6613 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 217.459889) +BD GR Veto +PQ 2.65542 +SE +ET PH +ID 6614 +TI 1760667401.857470989 +CC NStripHits 3 +PE 158.809 +PP 3.07283 -0.352557 -2.67889 +PW 0 +SE +ID 6615 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 116.019929) +BD GR Veto +PQ 0.576945 +SE +ID 6616 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.706881) +QA StripPairing (Strips not pairable wihin 2.5 sigma of measured energy) (GR Hit: Detector ID 0 and Energy 124.559885) (GR Hit: Detector ID 0 and Energy 111.479671) +BD GR Veto +PQ 11.3136 +SE +ET PH +ID 6617 +TI 1760667401.857526302 +CC NStripHits 2 +PE 171.825 +PP 4.00408 -0.587889 -1.16561 +PW 0 +SE +ET UN +ID 6618 +TI 1760667401.857545375 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 31.6254 +SE +ET PH +ID 6619 +TI 1760667401.857560157 +CC NStripHits 3 +PE 159.364 +PP -1.1178 -0.553833 0.464078 +PW 0 +SE +ET PH +ID 6620 +TI 1760667401.857579231 +CC NStripHits 2 +PE 466.068 +PP 3.30564 0.369478 0.929703 +PW 0 +SE +ET UN +ID 6621 +TI 1760667401.857601165 +BD DepthCalibrationError (Out of Range) (Out of Range) +CC NStripHits 4 +PE 83.3682 +SE +ET PH +ID 6622 +TI 1760667401.857638835 +CC NStripHits 3 +PE 93.2157 +PP 0.395484 0.26442 -0.932797 +PW 0 +SE +ET CO +ID 6623 +TI 1760667401.857692480 +CC NStripHits 6 +PQ 14.59 +SQ 3 +CT 0.499246 0.82813 +TL 1 +TE 213.246 +CE 225.465 1.66874 213.246 0.957308 +CD 2.4908 0.0573018 -1.86405 0.0336036 0.0255734 0.0336036 3.65486 0.376482 -1.63123 0.0336036 0.0170286 0.0336036 0 0 0 0 0 0 +LA 1.22927 +SE +ET CO +ID 6624 +TI 1760667401.857738018 +CC NStripHits 4 +PQ 22.6186 +SQ 2 +CT 0 1 +TL 1 +TE 123.359 +CE 263.178 0.977958 123.359 1.38299 +CD -1.00139 -0.0232586 -3.49373 0.0336036 0.0248383 0.0336036 -0.652172 0.368559 -2.7953 0.0336036 0.0220505 0.0336036 0 0 0 0 0 0 +LA 0.873658 +SE +ID 6625 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 36.608889) (GR Hit: Detector ID 0 and Energy 86.806681) +BD GR Veto +PQ 1.18207 +SE +ET CO +ID 6626 +TI 1760667401.857786178 +CC NStripHits 5 +PQ 16.6136 +SQ 2 +CT 0.504606 0.495394 +TL 1 +TE 175.138 +CE 173.102 1.38321 175.138 1.063 +CD 0.977516 0.335516 -2.9117 0.0336036 0.0357293 0.0336036 0.861109 0.275185 -2.7953 0.0336036 0.0361263 0.0336036 0 0 0 0 0 0 +LA 0.175326 +SE +ET UN +ID 6627 +TI 1760667401.857813835 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 4 +PE 0 +SE +ET CO +ID 6628 +TI 1760667401.857843399 +CC NStripHits 4 +PQ 41.5824 +SQ 2 +CT 0.679829 0.320171 +TL 1 +TE 405.866 +CE 256.927 0.929863 405.866 1.40832 +CD 0.395484 -0.17915 2.55939 0.0336036 0.0236261 0.0336036 -0.768578 -0.159941 2.6758 0.0336036 0.0237608 0.0336036 0 0 0 0 0 0 +LA 1.17003 +SE +ET PH +ID 6629 +TI 1760667401.857869625 +CC NStripHits 2 +PE 316.586 +PP 4.23689 -0.810382 -0.117953 +PW 0 +SE +ID 6630 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (3041.634436)) (GR Hit: Detector ID 0 and Energy 220.893450) +BD GR Veto +PQ 3041.63 +SE +ID 6631 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (37.710252)) (GR Hit: Detector ID 0 and Energy 48.019720) +BD GR Veto +PQ 37.7103 +SE +ET PH +ID 6632 +TI 1760667401.857913970 +CC NStripHits 2 +PE 94.86 +PP -1.69983 -0.67369 2.55939 +PW 0 +SE +ET PH +ID 6633 +TI 1760667401.857933998 +CC NStripHits 2 +PE 114.532 +PP 0.628297 -0.900611 -2.56248 +PW 0 +SE +ET PH +ID 6634 +TI 1760667401.857951164 +CC NStripHits 2 +PE 43.1548 +PP 1.21033 -1.16503 -4.07577 +PW 0 +SE +ET CO +ID 6635 +TI 1760667401.857983350 +CC NStripHits 4 +PQ 1.02085 +SQ 2 +CT 0.683936 0.316064 +TL 1 +TE 408.88 +CE 250.446 0.921837 408.88 0.967128 +CD 3.18923 -0.159809 0.231266 0.0336036 0.0237619 0.0336036 3.07283 -0.201713 2.09377 0.0336036 0.0234772 0.0336036 0 0 0 0 0 0 +LA 1.86661 +SE +ET PH +ID 6636 +TI 1760667401.858011484 +CC NStripHits 2 +PE 62.9377 +PP -2.16545 -0.750762 2.6758 +PW 0 +SE +ET PH +ID 6637 +TI 1760667401.858032226 +CC NStripHits 2 +PE 100.656 +PP 2.6072 0.08097 -3.61014 +PW 0 +SE +ET UN +ID 6638 +TI 1760667401.858051538 +BD ComptelTypeWithIncompatibleKinematics +CC NStripHits 4 +PE 138.074 +SE +ET PH +ID 6639 +TI 1760667401.858078956 +CC NStripHits 4 +PE 453.684 +PP 0.977516 -0.675835 1.27892 +PW 0 +SE +ID 6640 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 274.516958) +BD GR Veto +PQ 0.695902 +SE +ET CO +ID 6641 +TI 1760667401.858112573 +CC NStripHits 7 +PQ 0.910181 +SQ 2 +CT 0.70696 0.29304 +TL 1 +TE 415.493 +CE 246.246 1.45315 415.493 0.972657 +CD 3.07283 -1.05672 -1.0492 0.0336036 0.0215729 0.0336036 2.72361 -1.00133 -0.350766 0.0336036 0.0201249 0.0336036 0 0 0 0 0 0 +LA 0.782836 +SE +ET CO +ID 6642 +TI 1760667401.858152389 +CC NStripHits 8 +PQ 11.7397 +SQ 4 +CT 0.00111042 0.0986866 +TL 1 +TE 211.774 +CE 447.684 1.92995 211.774 0.964658 +CD 0.279078 0.0726991 1.97736 0.0336036 0.0258251 0.0336036 1.09392 -0.729308 1.62814 0.0336036 0.0206359 0.0336036 0 0 0 0 0 0 +LA 1.00139 +SE +ID 6643 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 89.003194) +BD GR Veto +PQ 4.80179 +SE +ID 6644 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 54.539987) +BD GR Veto +PQ 1.25466 +SE +ET PH +ID 6645 +TI 1760667401.858245849 +CC NStripHits 4 +PE 166.463 +PP -1.2342 -1.10881 -3.72655 +PW 0 +SE +ET PH +ID 6646 +TI 1760667401.858276128 +CC NStripHits 2 +PE 141.459 +PP 0.395484 -0.951789 0.929703 +PW 0 +SE +ID 6647 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 314.789743) +BD GR Veto +PQ 0.00388081 +SE +ET PH +ID 6648 +TI 1760667401.858317136 +CC NStripHits 2 +PE 297.274 +PP 0.628297 0.153395 -0.467172 +PW 0 +SE +ID 6649 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 239.837346) +BD GR Veto +PQ 7.6895 +SE +ID 6650 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (761.028482)) (GR Hit: Detector ID 0 and Energy 117.484704) +BD GR Veto +PQ 761.028 +SE +ET CO +ID 6651 +TI 1760667401.858351945 +CC NStripHits 4 +PQ 5.78558 +SQ 2 +CT 0.720986 0.279014 +TL 1 +TE 429.309 +CE 230.089 0.939767 429.309 1.46999 +CD -2.16545 -0.501739 -1.0492 0.0336036 0.0217925 0.0336036 -0.768578 0.372115 0.114859 0.0336036 0.0198533 0.0336036 0 0 0 0 0 0 +LA 2.0174 +SE +ET CO +ID 6652 +TI 1760667401.858385086 +CC NStripHits 5 +PQ 0.160358 +SQ 2 +CT 0 1 +TL 1 +TE 73.7365 +CE 425.453 1.11228 73.7365 0.924662 +CD -2.28186 -0.875433 -1.0492 0.0336036 0.0198741 0.0336036 -2.74748 -1.04426 -0.699984 0.0336036 0.0209922 0.0336036 0 0 0 0 0 0 +LA 0.606017 +SE +ET PH +ID 6653 +TI 1760667401.858422994 +CC NStripHits 3 +PE 150.496 +PP 0.744703 -0.481383 -3.95936 +PW 0 +SE +ET PH +ID 6654 +TI 1760667401.858445644 +CC NStripHits 2 +PE 77.9979 +PP -0.884984 -0.458684 -0.00154687 +PW 0 +SE +ET UN +ID 6655 +TI 1760667401.882273197 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 50.6562 +SE +ID 6656 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET PH +ID 6657 +TI 1760667401.882341623 +CC NStripHits 3 +PE 97.5758 +PP -1.2342 -0.0998255 -4.6578 +PW 0 +SE +ET UN +ID 6658 +TI 1760667401.882364988 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 83.3048 +SE +ET PH +ID 6659 +TI 1760667401.882389545 +CC NStripHits 3 +PE 117.684 +PP -1.2342 -0.630397 -4.6578 +PW 0 +SE +ID 6660 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 91.641446) +BD GR Veto +PQ 0.491614 +SE +ET PH +ID 6661 +TI 1760667401.882426261 +CC NStripHits 2 +PE 437.688 +PP -2.04905 0.0319455 -0.234359 +PW 0 +SE +ET PH +ID 6662 +TI 1760667401.882447242 +CC NStripHits 3 +PE 408.675 +PP 3.30564 -0.11643 -4.30858 +PW 0 +SE +ET PH +ID 6663 +TI 1760667401.882470607 +CC NStripHits 2 +PE 119.146 +PP 0.628297 0.00337076 0.231266 +PW 0 +SE +ID 6664 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 108.158254) +BD GR Veto +PQ 0.281986 +SE +ET CO +ID 6665 +TI 1760667401.882514953 +CC NStripHits 5 +PQ 1.30213 +SQ 2 +CT 0 1 +TL 1 +TE 91.8102 +CE 402.36 1.07226 91.8102 0.941656 +CD 0.511891 0.316168 -3.84295 0.0336036 0.0385324 0.0336036 -2.39827 -0.147374 0.114859 0.0336036 0.0238756 0.0336036 0 0 0 0 0 0 +LA 4.93439 +SE +ET PH +ID 6666 +TI 1760667401.882551193 +CC NStripHits 2 +PE 63.9062 +PP 2.6072 -0.0814023 -3.95936 +PW 0 +SE +ET CO +ID 6667 +TI 1760667401.882569551 +CC NStripHits 9 +PQ 3.17106 +SQ 3 +CT 0.0717372 0.157541 +TL 1 +TE 422.53 +CE 230.844 1.67364 422.53 1.29971 +CD -0.535766 -0.214549 -3.26092 0.0336036 0.0233995 0.0336036 0.0462656 0.15347 -2.09686 0.0336036 0.027276 0.0336036 0 0 0 0 0 0 +LA 1.35249 +SE +ET PH +ID 6668 +TI 1760667401.882640123 +CC NStripHits 3 +PE 235.999 +PP 3.30564 -1.14406 1.97736 +PW 0 +SE +ID 6669 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 29.220721) +BD GR Veto +PQ 2.29933 +SE +ET PH +ID 6670 +TI 1760667401.882668256 +CC NStripHits 2 +PE 164.576 +PP 1.32673 0.360822 0.580484 +PW 0 +SE +ET UN +ID 6671 +TI 1760667401.882684946 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 32.7293 +SE +ID 6672 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (122.270489)) (GR Hit: Detector ID 0 and Energy 388.466807) +BD GR Veto +PQ 122.27 +SE +ET CO +ID 6673 +TI 1760667401.882710218 +CC NStripHits 5 +PQ 1.70589 +SQ 2 +CT 0 1 +TL 1 +TE 149.86 +CE 376.119 1.17095 149.86 0.919884 +CD -1.35061 0.0547044 -2.67889 0.0336036 0.0255412 0.0336036 0.395484 -0.0234639 -2.7953 0.0336036 0.0248372 0.0336036 0 0 0 0 0 0 +LA 1.75172 +SE +ET CO +ID 6674 +TI 1760667401.882739305 +CC NStripHits 5 +PQ 3.71685 +SQ 2 +CT 0.640452 0.359548 +TL 1 +TE 265.15 +CE 185.887 1.90671 265.15 0.935243 +CD 1.79236 -0.584883 1.97736 0.0336036 0.0215518 0.0336036 2.37439 -0.269328 1.86095 0.0336036 0.0232878 0.0336036 0 0 0 0 0 0 +LA 0.672224 +SE +ET CO +ID 6675 +TI 1760667401.882770538 +CC NStripHits 4 +PQ 1.80479 +SQ 2 +CT 0 1 +TL 1 +TE 30.7522 +CE 115.646 0.934763 30.7522 0.915431 +CD 0.628297 -0.342161 0.347672 0.0336036 0.0228875 0.0336036 1.79236 -0.693002 0.696891 0.0336036 0.0210464 0.0336036 0 0 0 0 0 0 +LA 1.26495 +SE +ET PH +ID 6676 +TI 1760667401.882813453 +CC NStripHits 2 +PE 46.6492 +PP -2.63108 -0.819458 -0.350766 +PW 0 +SE +ET PH +ID 6677 +TI 1760667401.882830858 +CC NStripHits 5 +PE 660.023 +PP 1.79236 -0.389159 -3.61014 +PW 0 +SE +ET PH +ID 6678 +TI 1760667401.882868766 +CC NStripHits 3 +PE 256.036 +PP 4.00408 0.149504 -1.86405 +PW 0 +SE +ET PH +ID 6679 +TI 1760667401.882888555 +CC NStripHits 3 +PE 231.612 +PP -1.46702 -0.581989 -3.72655 +PW 0 +SE +ET CO +ID 6680 +TI 1760667401.882908582 +CC NStripHits 4 +PQ 40.6279 +SQ 2 +CT 0.748825 0.251175 +TL 1 +TE 437.541 +CE 223.397 1.26707 437.541 0.988904 +CD 3.88767 -0.361495 1.51173 0.0336036 0.0227418 0.0336036 3.42205 0.0931622 0.929703 0.0336036 0.02615 0.0336036 0 0 0 0 0 0 +LA 0.873081 +SE +ET UN +ID 6681 +TI 1760667401.882950067 +BD StripPairingError (One detector side has no strip hits) +CC NStripHits 1 +PE 0 +SE +ET CO +ID 6682 +TI 1760667401.882961750 +CC NStripHits 5 +PQ 15.6068 +SQ 2 +CT 0.575097 0.424903 +TL 1 +TE 360.332 +CE 301.355 0.998248 360.332 1.77786 +CD 3.65486 -0.546451 -1.0492 0.0336036 0.0216379 0.0336036 3.88767 -0.656627 -1.28202 0.0336036 0.0212543 0.0336036 0 0 0 0 0 0 +LA 0.347195 +SE +ET PH +ID 6683 +TI 1760667401.883008480 +CC NStripHits 2 +PE 229.381 +PP 2.95642 -0.483645 2.32658 +PW 0 +SE +ET UN +ID 6684 +TI 1760667401.883033275 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 657.351 +SE +ET PH +ID 6685 +TI 1760667401.883060693 +CC NStripHits 2 +PE 376.399 +PP 0.977516 0.363143 2.21017 +PW 0 +SE +ID 6686 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 8.959088) (Strip hit removed with energy 7.869458) (Strip hit removed with energy 11.113979) (Strip hit removed with energy 11.858440) +QA StripPairing (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 24.483183)) (GR Hit: Detector ID 0 and Energy 307.375055) +BD GR Veto +PQ 0.163046 +SE +ID 6687 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (1133.431657)) (GR Hit: Detector ID 0 and Energy 316.501655) +BD GR Veto +PQ 1133.43 +SE +ET PH +ID 6688 +TI 1760667401.883125543 +CC NStripHits 3 +PE 660.558 +PP 3.88767 0.199432 -2.21327 +PW 0 +SE +ET PH +ID 6689 +TI 1760667401.883153676 +CC NStripHits 3 +PE 203.29 +PP -1.93264 -0.724292 0.347672 +PW 0 +SE +ID 6690 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 87.163000) +BD GR Veto +PQ 3.12744 +SE +ET PH +ID 6691 +TI 1760667401.883181810 +CC NStripHits 2 +PE 143.297 +PP -1.2342 0.181883 2.09377 +PW 0 +SE +ET PH +ID 6692 +TI 1760667401.883206605 +CC NStripHits 2 +PE 438.292 +PP -0.535766 0.216468 2.21017 +PW 0 +SE +ET UN +ID 6693 +TI 1760667401.883226156 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 60.0186 +SE +ET PH +ID 6694 +TI 1760667401.883245706 +CC NStripHits 2 +PE 130.353 +PP 3.88767 0.229155 0.464078 +PW 0 +SE +ET PH +ID 6695 +TI 1760667401.883262872 +CC NStripHits 3 +PE 307.575 +PP 3.53845 0.10125 0.929703 +PW 0 +SE +ET PH +ID 6696 +TI 1760667401.883283376 +CC NStripHits 3 +PE 237.065 +PP 1.44314 0.332419 -1.63123 +PW 0 +SE +ET PH +ID 6697 +TI 1760667401.883304357 +CC NStripHits 2 +PE 340.497 +PP 0.511891 -0.622954 -2.32967 +PW 0 +SE +ET PH +ID 6698 +TI 1760667401.883322715 +CC NStripHits 2 +PE 24.5916 +PP 2.84002 -0.381663 1.62814 +PW 0 +SE +ET PH +ID 6699 +TI 1760667401.883341550 +CC NStripHits 3 +PE 298.104 +PP 1.44314 -0.485406 1.04611 +PW 0 +SE +ET UN +ID 6700 +TI 1760667401.883362770 +BD StripPairingError (Strips not pairable. Multiple hits per strip on LV and HV sides) +CC NStripHits 7 +PE 0 +SE +ET PH +ID 6701 +TI 1760667401.883408784 +CC NStripHits 2 +PE 85.7894 +PP -1.81623 -0.392839 0.929703 +PW 0 +SE +ET CO +ID 6702 +TI 1760667401.883432865 +CC NStripHits 5 +PQ 0.991807 +SQ 2 +CT 0.601522 0.398478 +TL 1 +TE 244.954 +CE 195.54 0.911989 244.954 1.06413 +CD -2.86389 -0.196069 -1.98045 0.0336036 0.0235149 0.0336036 -2.9803 0.0445504 -2.44608 0.0336036 0.0254493 0.0336036 0 0 0 0 0 0 +LA 0.536899 +SE +ET PH +ID 6703 +TI 1760667401.883460044 +CC NStripHits 2 +PE 138.844 +PP -0.419359 -0.548336 -0.00154687 +PW 0 +SE +ET PH +ID 6704 +TI 1760667401.883478641 +CC NStripHits 2 +PE 150.825 +PP -0.0701406 -0.895849 -0.816391 +PW 0 +SE +ET PH +ID 6705 +TI 1760667401.883496284 +CC NStripHits 2 +PE 82.5882 +PP 2.72361 -1.10933 -1.39842 +PW 0 +SE +ET PH +ID 6706 +TI 1760667401.883514404 +CC NStripHits 3 +PE 431.255 +PP -0.652172 0.0910594 2.55939 +PW 0 +SE +ID 6707 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 90.104690) +BD GR Veto +PQ 0.000718548 +SE +ET UN +ID 6708 +TI 1760667401.883542537 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 236.252 +SE +ET CO +ID 6709 +TI 1760667401.883571863 +CC NStripHits 8 +PQ 3.08455 +SQ 4 +CT 0.0361437 0.316547 +TL 1 +TE 245.038 +CE 417.976 1.62578 245.038 1.28898 +CD -0.419359 -0.685006 -0.816391 0.0336036 0.021095 0.0336036 -0.535766 -0.516017 -1.0492 0.0336036 0.0217302 0.0336036 0 0 0 0 0 0 +LA 0.310335 +SE +ID 6710 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (84.425770)) (GR Hit: Detector ID 0 and Energy 640.729599) +BD GR Veto +PQ 84.4258 +SE +ET PH +ID 6711 +TI 1760667401.883631706 +CC NStripHits 2 +PE 470.803 +PP 0.977516 -0.179262 2.44298 +PW 0 +SE +ET PH +ID 6712 +TI 1760667401.883656263 +CC NStripHits 2 +PE 85.4061 +PP -0.884984 -0.982773 2.44298 +PW 0 +SE +ET PH +ID 6713 +TI 1760667401.883676767 +CC NStripHits 2 +PE 316.352 +PP 2.6072 -0.525537 -4.42498 +PW 0 +SE +ET PH +ID 6714 +TI 1760667401.883694410 +CC NStripHits 3 +PE 274.485 +PP 2.72361 -0.324752 1.16252 +PW 0 +SE +ID 6715 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 202.551790) +BD GR Veto +PQ 1.2329 +SE +ID 6716 +BD StripPairingError (One detector side has no strip hits) +BD DepthCalibrationError (GR Veto) +BD GR Veto +PQ +SE +ET UN +ID 6717 +TI 1760667401.883728027 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 35.6951 +SE +ET CO +ID 6718 +TI 1760667401.883745908 +CC NStripHits 4 +PQ 9.11621 +SQ 2 +CT 0 1 +TL 1 +TE 92.4841 +CE 346.243 1.44345 92.4841 0.918716 +CD 1.09392 -0.977221 -4.30858 0.0336036 0.0199672 0.0336036 -1.00139 -0.333687 -4.07577 0.0336036 0.0229571 0.0336036 0 0 0 0 0 0 +LA 2.20424 +SE +ET PH +ID 6719 +TI 1760667401.902399539 +CC NStripHits 2 +PE 168.645 +PP 0.861109 -0.161926 -0.699984 +PW 0 +SE +ET PH +ID 6720 +TI 1760667401.902471780 +CC NStripHits 3 +PE 240.614 +PP -0.0701406 -0.807421 1.16252 +PW 0 +SE +ID 6721 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 126.586219) +BD GR Veto +PQ 0.808821 +SE +ID 6722 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 54.990577) +BD GR Veto +PQ 1.7365 +SE +ET PH +ID 6723 +TI 1760667401.902577638 +CC NStripHits 5 +PE 331.789 +PP -0.768578 -0.261389 1.97736 +PW 0 +SE +ID 6724 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (225.636933)) (GR Hit: Detector ID 0 and Energy 656.962761) +BD GR Veto +PQ 225.637 +SE +ET UN +ID 6725 +TI 1760667401.902645826 +BD StripPairingError (No strip hits) +CC NStripHits 0 +PE 0 +SE +ET PH +ID 6726 +TI 1760667401.902684211 +CC NStripHits 3 +PE 663.38 +PP 3.77127 -0.67821 -0.00154687 +PW 0 +SE +ID 6727 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (3683.149367)) (GR Hit: Detector ID 0 and Energy 295.143717) +BD GR Veto +PQ 3683.15 +SE +ET CO +ID 6728 +TI 1760667401.902752161 +CC NStripHits 5 +PQ 12.2983 +SQ 2 +CT 0 1 +TL 1 +TE 85.6594 +CE 187.351 1.05663 85.6594 1.30146 +CD 3.65486 -0.735644 0.114859 0.0336036 0.0206058 0.0336036 3.42205 0.227511 0.929703 0.0336036 0.0303052 0.0336036 0 0 0 0 0 0 +LA 1.2829 +SE +ID 6729 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 136.080224) +BD GR Veto +PQ 2.82097 +SE +ET UN +ID 6730 +TI 1760667401.902858972 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 173.761 +SE +ET PH +ID 6731 +TI 1760667401.902894258 +CC NStripHits 2 +PE 156.44 +PP 0.861109 -0.332718 -0.699984 +PW 0 +SE +ET UN +ID 6732 +TI 1760667401.902911901 +BD DepthCalibrationError (Out of Range) +CC NStripHits 4 +PE 102.391 +SE +ET PH +ID 6733 +TI 1760667401.902936935 +CC NStripHits 3 +PE 63.9078 +PP -2.39827 -0.128904 -1.16561 +PW 0 +SE +ET CO +ID 6734 +TI 1760667401.902954816 +CC NStripHits 6 +PQ 0.286577 +SQ 2 +CT 0.54122 0.45878 +TL 1 +TE 144.313 +CE 162.858 1.10739 144.313 1.10771 +CD 3.42205 -0.454803 -2.09686 0.0336036 0.0220349 0.0336036 3.07283 -0.735734 -1.98045 0.0336036 0.0206054 0.0336036 0 0 0 0 0 0 +LA 0.463064 +SE +ET CO +ID 6735 +TI 1760667401.902981281 +CC NStripHits 6 +PQ 88.1364 +SQ 2 +CT 0.735383 0.264617 +TL 1 +TE 440.087 +CE 211.725 1.36531 440.087 1.33963 +CD -1.2342 -1.03634 1.97736 0.0336036 0.020722 0.0336036 0.628297 -0.922526 0.813297 0.0336036 0.0197825 0.0336036 0 0 0 0 0 0 +LA 2.19929 +SE +ET PH +ID 6736 +TI 1760667401.903034210 +CC NStripHits 2 +PE 212.693 +PP 0.162672 -1.13685 1.16252 +PW 0 +SE +ET UN +ID 6737 +TI 1760667401.903053760 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 304.909 +SE +ID 6738 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 420.219676) +BD GR Veto +PQ 12.126 +SE +ET PH +ID 6739 +TI 1760667401.903083324 +CC NStripHits 3 +PE 249.046 +PP -2.74748 -0.277933 1.86095 +PW 0 +SE +ET PH +ID 6740 +TI 1760667401.903106212 +CC NStripHits 3 +PE 79.0245 +PP 1.44314 -0.473942 -4.07577 +PW 0 +SE +ID 6741 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 6.420050) (Strip hit removed with energy 1.460511) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 120.490632) +BD GR Veto +PQ 4.57188 +SE +ID 6742 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 314.148922) +BD GR Veto +PQ 4.49904 +SE +ET PH +ID 6743 +TI 1760667401.903159379 +CC NStripHits 2 +PE 417.464 +PP 2.37439 0.343807 -1.74764 +PW 0 +SE +ET PH +ID 6744 +TI 1760667401.903179168 +CC NStripHits 2 +PE 66.3692 +PP -0.652172 -0.165394 -3.72655 +PW 0 +SE +ET CO +ID 6745 +TI 1760667401.903198003 +CC NStripHits 5 +PQ 21.3959 +SQ 2 +CT 0 1 +TL 1 +TE 128.511 +CE 291.971 0.959657 128.511 1.85013 +CD 3.88767 -0.382516 -3.72655 0.0336036 0.0225796 0.0336036 -2.04905 0.363254 -4.42498 0.0336036 0.0250911 0.0336036 0 0 0 0 0 0 +LA 6.024 +SE +ET PH +ID 6746 +TI 1760667401.903234958 +CC NStripHits 3 +PE 662.619 +PP -2.63108 0.371079 -0.350766 +PW 0 +SE +ET PH +ID 6747 +TI 1760667401.903260946 +CC NStripHits 2 +PE 468.656 +PP 1.90877 0.365145 -0.932797 +PW 0 +SE +ET UN +ID 6748 +TI 1760667401.903283119 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 37.6812 +SE +ET CO +ID 6749 +TI 1760667401.903302907 +CC NStripHits 5 +PQ 3.17602 +SQ 2 +CT 0.726 0.274 +TL 1 +TE 425.319 +CE 234.816 1.30029 425.319 1.16482 +CD 3.18923 -0.263374 -1.28202 0.0336036 0.0233176 0.0336036 2.37439 0.160036 -0.816391 0.0336036 0.0274221 0.0336036 0 0 0 0 0 0 +LA 1.02959 +SE +ET PH +ID 6750 +TI 1760667401.903336763 +CC NStripHits 4 +PE 661.32 +PP 3.53845 -0.689037 0.231266 +PW 0 +SE +ET UN +ID 6751 +TI 1760667401.903361082 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 6 +PE 662.679 +SE +ID 6752 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (61.114148)) (Best strip pairing leaves at least one grouping of strips unpaired (unpaired energy: 79.509059)) (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 22.659841) +BD GR Veto +PQ 61.1141 +SE +ET PH +ID 6753 +TI 1760667401.903416395 +CC NStripHits 2 +PE 425.041 +PP -2.9803 0.226296 -0.117953 +PW 0 +SE +ID 6754 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 10.608799) +QA StripPairing (GR Hit: Detector ID 0 and Energy 89.984043) +BD GR Veto +PQ 13.1103 +SE +ET UN +ID 6755 +TI 1760667401.903446435 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 21.8349 +SE +ET PH +ID 6756 +TI 1760667401.903461933 +CC NStripHits 3 +PE 190.302 +PP -0.535766 -0.88454 -1.98045 +PW 0 +SE +ET PH +ID 6757 +TI 1760667401.903481483 +CC NStripHits 3 +PE 185.673 +PP 3.77127 -1.09544 -0.816391 +PW 0 +SE +ET PH +ID 6758 +TI 1760667401.903501272 +CC NStripHits 2 +PE 107.036 +PP -0.302953 0.364331 -0.583578 +PW 0 +SE +ET PH +ID 6759 +TI 1760667401.903519392 +CC NStripHits 5 +PE 657.702 +PP 0.861109 -0.902306 -0.234359 +PW 0 +SE +ET UN +ID 6760 +TI 1760667401.903545141 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 40.0454 +SE +ET PH +ID 6761 +TI 1760667401.903564691 +CC NStripHits 2 +PE 143.462 +PP 2.14158 -0.861353 1.39533 +PW 0 +SE +ID 6762 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 45.220519) (GR Hit: Detector ID 0 and Energy 130.528414) +BD GR Veto +PQ 2.32793 +SE +ET UN +ID 6763 +TI 1760667401.903597593 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 507.677 +SE +ET PH +ID 6764 +TI 1760667401.903624296 +CC NStripHits 2 +PE 71.6418 +PP -0.0701406 0.371997 -2.67889 +PW 0 +SE +ET PH +ID 6765 +TI 1760667401.903642892 +CC NStripHits 2 +PE 341.585 +PP -0.419359 -1.14817 -2.56248 +PW 0 +SE +ID 6766 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (46.223871)) (GR Hit: Detector ID 0 and Energy 493.640507) +BD GR Veto +PQ 46.2239 +SE +ET PH +ID 6767 +TI 1760667401.903670072 +CC NStripHits 2 +PE 131.733 +PP 2.72361 -0.831564 1.74455 +PW 0 +SE +ET PH +ID 6768 +TI 1760667401.903687238 +CC NStripHits 3 +PE 220.507 +PP 0.162672 0.223524 -3.49373 +PW 0 +SE +ET UN +ID 6769 +TI 1760667401.903706550 +BD DepthCalibrationError (Out of Range) +CC NStripHits 3 +PE 81.7931 +SE +ET CO +ID 6770 +TI 1760667401.903726339 +CC NStripHits 5 +PQ 16.6037 +SQ 2 +CT 0 1 +TL 1 +TE 100.724 +CE 144.698 1.76998 100.724 1.35527 +CD -1.46702 0.023644 -4.07577 0.0336036 0.0252931 0.0336036 -1.35061 -0.0059564 -3.72655 0.0336036 0.024949 0.0336036 0 0 0 0 0 0 +LA 0.369299 +SE +ET PH +ID 6771 +TI 1760667401.903755426 +CC NStripHits 3 +PE 288.216 +PP 1.09392 0.150196 1.86095 +PW 0 +SE +ET PH +ID 6772 +TI 1760667401.903778553 +CC NStripHits 2 +PE 92.9136 +PP 1.21033 -0.400003 -2.44608 +PW 0 +SE +ET UN +ID 6773 +TI 1760667401.903796434 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 5 +PE 356.27 +SE +ET PH +ID 6774 +TI 1760667401.903847217 +CC NStripHits 2 +PE 181.127 +PP 1.55955 -0.978371 0.464078 +PW 0 +SE +ET CO +ID 6775 +TI 1760667401.903864860 +CC NStripHits 5 +PQ 1.99245 +SQ 2 +CT 0 1 +TL 1 +TE 117.758 +CE 281.064 1.1199 117.758 0.922724 +CD 3.07283 -0.379493 1.86095 0.0336036 0.0226038 0.0336036 1.79236 -0.185468 0.696891 0.0336036 0.0235854 0.0336036 0 0 0 0 0 0 +LA 1.74135 +SE +ET PH +ID 6776 +TI 1760667401.903902530 +CC NStripHits 2 +PE 125.662 +PP -1.00139 -0.312033 1.97736 +PW 0 +SE +ID 6777 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (3256.870877)) (GR Hit: Detector ID 0 and Energy 228.675206) +BD GR Veto +PQ 3256.87 +SE +ET CO +ID 6778 +TI 1760667401.903930187 +CC NStripHits 5 +PQ 0.703589 +SQ 2 +CT 0.573332 0.426668 +TL 1 +TE 253.984 +CE 213.583 0.947865 253.984 1.06325 +CD -0.419359 -0.903173 1.39533 0.0336036 0.0197896 0.0336036 0.861109 -0.956448 1.62814 0.0336036 0.0198628 0.0336036 0 0 0 0 0 0 +LA 1.30255 +SE +ET UN +ID 6779 +TI 1760667401.903962850 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 397.144 +SE +ET UN +ID 6780 +TI 1760667401.903989791 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 412.876 +SE +ET PH +ID 6781 +TI 1760667401.904014110 +CC NStripHits 2 +PE 186.626 +PP -0.302953 0.237108 1.51173 +PW 0 +SE +ID 6782 +BD StripPairingError (No strip hits) +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 5.124003) +BD GR Veto +PQ +SE +ID 6783 +BD DepthCalibrationError (GR Veto) +QA StripHitBelowThreshold (Strip hit removed with energy 1.256701) +QA StripPairing (Event contains multiple hits on a single strip) (GR Hit: Detector ID 0 and Energy 152.823295) +BD GR Veto +PQ 1.06376 +SE +ET PH +ID 6784 +TI 1760667401.922360420 +CC NStripHits 2 +PE 69.1206 +PP 2.02517 -0.292334 -4.54139 +PW 0 +SE +ET PH +ID 6785 +TI 1760667401.922379732 +CC NStripHits 3 +PE 456.017 +PP -1.46702 -0.410902 -0.350766 +PW 0 +SE +ET PH +ID 6786 +TI 1760667401.922404766 +CC NStripHits 3 +PE 127.149 +PP 2.72361 -0.78621 -1.63123 +PW 0 +SE +ID 6787 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 174.792681) +BD GR Veto +PQ 3.28216 +SE +ET PH +ID 6788 +TI 1760667401.922440052 +CC NStripHits 2 +PE 75.8935 +PP 3.65486 0.0551271 -3.37733 +PW 0 +SE +ET PH +ID 6789 +TI 1760667401.922459363 +CC NStripHits 3 +PE 256.354 +PP 2.72361 -0.130555 1.51173 +PW 0 +SE +ET UN +ID 6790 +TI 1760667401.922481298 +BD DepthCalibrationError (Out of Range) +CC NStripHits 2 +PE 34.708 +SE +ET UN +ID 6791 +TI 1760667401.922507286 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 3 +PE 264.573 +SE +ET PH +ID 6792 +TI 1760667401.922535657 +CC NStripHits 3 +PE 304.2 +PP 0.395484 0.230444 0.696891 +PW 0 +SE +ET PH +ID 6793 +TI 1760667401.922570943 +CC NStripHits 2 +PE 195.605 +PP 1.55955 -0.362404 -4.19217 +PW 0 +SE +ET PH +ID 6794 +TI 1760667401.922602415 +CC NStripHits 2 +PE 71.9572 +PP 0.279078 0.0843536 -2.56248 +PW 0 +SE +ET PH +ID 6795 +TI 1760667401.922621726 +CC NStripHits 2 +PE 404.185 +PP -0.302953 0.0946297 1.16252 +PW 0 +SE +ET PH +ID 6796 +TI 1760667401.922647953 +CC NStripHits 4 +PE 422.051 +PP -0.652172 0.127348 -0.467172 +PW 0 +SE +ID 6797 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (218.501708)) (GR Hit: Detector ID 0 and Energy 663.914871) +BD GR Veto +PQ 218.502 +SE +ID 6798 +BD DepthCalibrationError (GR Veto) +QA StripPairing (GR Hit: Detector ID 0 and Energy 328.746155) +BD GR Veto +PQ 6.27894 +SE +ET UN +ID 6799 +TI 1760667401.922688245 +BD DepthCalibrationError (Multiple hits on single strip) (Multiple hits on single strip) +CC NStripHits 4 +PE 173.264 +SE +ET PH +ID 6800 +TI 1760667401.922718286 +CC NStripHits 2 +PE 128.415 +PP -1.58342 -0.685562 -0.00154687 +PW 0 +SE +ET CO +ID 6801 +TI 1760667401.922741174 +CC NStripHits 7 +PQ 28.463 +SQ 3 +CT 0.00855137 0.0432097 +TL 1 +TE 358.656 +CE 304.137 1.56184 358.656 1.10444 +CD 0.744703 0.11963 1.86095 0.0336036 0.0265363 0.0336036 -0.419359 -0.103557 1.27892 0.0336036 0.0242402 0.0336036 0 0 0 0 0 0 +LA 0.985461 +SE +ID 6802 +BD DepthCalibrationError (GR Veto) +QA StripPairing (Best reduced chi square is not below 25 (769.024586)) (GR Hit: Detector ID 0 and Energy 146.199563) +BD GR Veto +PQ 769.025 +SE +ET PH +ID 6803 +TI 1760667401.922797679 +CC NStripHits 2 +PE 29.9305 +PP -2.51467 -0.126048 1.39533 +PW 0 +EN + + diff --git a/resource/unittestdata/542-1/hp52542-1.coeffs.csv b/resource/unittestdata/542-1/hp52542-1.coeffs.csv new file mode 100644 index 00000000..36e695d7 --- /dev/null +++ b/resource/unittestdata/542-1/hp52542-1.coeffs.csv @@ -0,0 +1,4002 @@ +7,1.1722737353163053,27.448088434406756,10.65708107147159,4.401096439263616 +8,1.1635284781890538,27.391130027455027,10.269887123510737,3.8082226161667516 +9,1.1626939285132056,31.171789381956046,11.357634069574896,3.4490424544200544 +10,1.163147153939219,29.087628281083838,11.81984944883143,4.231938092219429 +11,1.1724356698837708,28.778774089669714,11.133943363208804,5.519723162816299 +12,1.1755851659963228,25.570478395343752,10.174711677866494,4.7941618924937455 +13,1.1737048345591272,27.360964554230893,10.683805397869202,4.009353605036752 +14,1.1772515765081466,33.15279576089324,10.066360902335994,4.997528598421668 +15,1.1702390782223102,27.96116838265227,10.675668239693923,5.277949808007593 +16,1.1749862734996903,28.445376621478246,9.92998252495492,5.796972946535224 +17,1.1744238457371214,26.92319167427608,10.427514567232832,4.769052632506998 +18,1.168187679022994,27.489726688421356,10.907419436942215,3.631992924371276 +19,1.168042371579433,28.22840369441745,10.936634207609874,3.3463913362319055 +20,1.1663698080526796,28.804219614185453,11.06630745173569,4.694445384733354 +21,1.166119662334264,26.32722101074228,10.206431420156,3.790253840839923 +22,1.1647234354038736,30.902254008149278,10.966084862420873,5.199606958612417 +23,1.168090127544012,26.9308433073787,10.253513457238434,4.46577927855687 +24,1.1632443372386299,26.93870688470364,11.086470678657848,3.4373318007672307 +25,1.1565574615916363,29.078155825845577,11.670087063565054,4.176362561349831 +26,1.1535479071139427,28.032170035066212,11.180989134565866,2.9154476621227228 +27,1.1596791406911011,26.587565021032187,10.654304280201325,4.687270971279108 +28,1.1535816228488547,26.60689966428941,11.216491199187152,4.209195548064053 +29,1.1592948152555074,24.542507310855274,10.63659762805977,3.4516495817912056 +30,1.1491662272473695,27.93108274432339,11.52375233224828,3.2669913621986586 +31,1.1545066293509678,25.36665154908457,10.744263800332533,4.856679782200317 +32,1.154995317043418,24.28485285622999,11.363836164030522,2.7527915714382267 +33,1.1530005461464312,28.61121430747598,11.261844570412265,3.3763115152162984 +34,1.1545641207384647,25.44338820564513,11.01937320388846,3.9378958428074076 +35,1.1491130170063601,27.197341326343697,11.159665776059713,3.1984718204094045 +36,1.152276712020313,25.594250502703527,10.61814925833887,2.665138209617321 +37,1.15736114073074,25.32366773249912,10.919051168140019,3.602949662643095 +38,1.158044463023145,26.475633765202087,10.573904999901607,3.1927414761497594 +39,1.1572892896713045,28.674088860530013,10.742234971892527,3.996118422700673 +40,1.158278715307097,27.51401118761017,10.675661100169433,3.0720798432935514 +41,1.152114788102135,28.346746372867,11.744014217667855,4.046859624355235 +42,1.1550277108040146,28.339972149225996,11.315891611024401,3.2709928783622497 +43,1.160988129988664,28.383738682816425,10.176722596490968,4.723170831049457 +44,1.1629477834444042,26.117895318925886,10.22074196381547,4.674375257192681 +45,1.1623885265604994,28.057112905440935,10.372001611792255,4.193643619454427 +46,1.166400611429408,32.90066052858793,10.710479529284024,3.7582102424957147 +47,1.1675515666538911,28.665960448467786,10.939213002115295,3.5452673965761687 +48,1.1656581422383059,26.770825927297476,11.033317230064583,3.905380669135213 +49,1.1614352062081363,27.92292858345347,11.18850247570225,3.228564235575229 +50,1.1654636609906628,27.40733699407305,10.654947852101655,3.5079839852605743 +51,1.1614915513367254,28.468756697408296,11.907703174445095,3.3393259828547306 +52,1.162432749628095,27.64581397098242,11.243560653985746,4.71052445944443 +53,1.153610941876935,28.080947171586327,11.934235072949638,2.8311860360622374 +54,1.1608156686691693,28.280270007549415,10.535922616884063,5.112451073905665 +55,1.1573102573655816,26.891878969973554,10.778064480754468,4.100364407068826 +56,1.1630611773165416,27.860869222866082,12.023411764425065,3.6964357979179248 +57,1.2001805130897663,29.863850231722015,9.895307550025255,0.665173256311379 +105,1.1997497653597398,26.38227504543892,10.917710284629191,0.8873572407104657 +106,1.1535373707446464,25.276523144916023,10.702660452099533,4.277547053762492 +107,1.1475978786290493,23.930367518911297,9.940674305057136,3.5292289383804354 +108,1.148815001961551,25.027885388907638,9.906160857001048,4.199720657488644 +109,1.149092047257967,28.138440136207354,10.883415816495127,4.148868681800711 +110,1.1517260752562026,26.08473252647018,11.005376643127564,4.027860489837398 +111,1.1570386765248863,26.091624136124395,10.368172918818729,3.8468911369226295 +112,1.1601977693576806,22.24891964108408,9.329625132469573,3.8302278472174556 +113,1.1585497302781615,24.422321010246737,10.033673978207627,4.771908669406913 +114,1.1625403933255645,29.74121977562658,9.662829107329939,3.9170897553697768 +115,1.157317865422074,25.027663605884875,10.09217433955329,4.3682868708816125 +116,1.1603079924143358,24.842665965073707,9.670042491983653,5.581419907507383 +117,1.1597826516065557,23.91071576569049,9.634698905027674,3.2523059992742707 +118,1.1571145894750525,24.05251801277841,10.465014490705139,4.323716675812254 +119,1.1566999990650535,24.509838191481496,10.632217514962472,4.064267503778134 +120,1.156137678034785,25.609514750676095,10.482409684556398,4.140446184828427 +121,1.1543457927488578,23.111322244583295,9.274799649721075,4.248165810493825 +122,1.1530932154901146,27.6631345117422,10.059766671280194,3.6218415943871185 +123,1.1522309620118896,24.1247508079128,9.83218642446668,4.7166273323992085 +124,1.1494144695093098,24.00738060144831,10.805791141838432,3.765262994999855 +125,1.1430062698352088,25.876393336793186,11.308315773378586,2.92849878314442 +126,1.1435027342143385,24.820206980438428,10.402148685569276,2.697701349790565 +127,1.143779701202688,23.74616231731375,9.58344095069088,3.9205784702492363 +128,1.1424947332393642,23.362436439214708,10.693521667168737,3.204182120155744 +129,1.1454639641403683,21.77896000736806,9.781630869519164,2.9744516831709924 +130,1.137895356775606,24.87212724810872,10.464842312243517,5.119273757957229 +131,1.1439670530228154,22.16005565572786,10.019686065800702,4.7475573140357294 +132,1.143726740120142,21.033793063382106,10.49282072752015,2.500864701955218 +133,1.1388322795547676,25.502153572819836,10.489445406299728,3.1033802768685153 +134,1.1410364188123052,22.60993146074375,10.713577238046746,3.254643963012059 +135,1.1380334296627506,24.244156708233216,10.260927653730395,4.230212744542187 +136,1.139281934109814,22.594084095048306,10.506592967757697,3.8712457982304636 +137,1.1430406177947685,21.79707220279957,9.881666385336857,3.535543176790717 +138,1.1446357733786099,23.56532265703078,9.834857093241784,3.6143156589537 +139,1.1450106969769027,25.18687182670992,9.875069017436696,3.0329197081672916 +140,1.1469147484262585,24.272040509651763,10.324125443183467,3.9080036488930667 +141,1.1394489908844867,25.112930859651055,11.17128499048502,3.2191386519165355 +142,1.1468951236969052,24.60281637304614,10.32066137619303,4.758421859969965 +143,1.1490730645876432,24.960552885849292,9.536954082510608,5.60701422016266 +144,1.1526026761823749,22.85140271945019,9.768597223519105,3.9759592414800187 +145,1.1508442999551625,24.672587303359695,9.767852533926455,4.162690579324902 +146,1.1520612214772972,29.887364969980702,10.364490131596321,4.238783026928703 +147,1.1524239302626789,25.504828303002697,10.167196659774236,3.2684480100405144 +148,1.151338865706735,23.669206643208074,10.069839665391672,4.510742461112747 +149,1.1507515916984954,24.818673850998263,10.637327891917552,3.500395639681895 +150,1.1526468224798874,24.60970408247333,10.176238329770362,3.852882639345009 +151,1.148570095192528,25.29939069502226,10.92460156175334,3.038179262584474 +152,1.148133225685698,24.851224357581497,10.344004211352178,3.4454062243225656 +153,1.1442726132983285,24.829094899043827,11.193340091056504,3.10061618438853 +154,1.1500515702510699,25.01226915198962,9.538034703511817,4.597720675178495 +155,1.1459136497776057,24.02457114486206,10.594268160973305,4.679995105381494 +156,1.1412072330277303,24.87305400008087,11.330099967145433,3.662270071202756 +157,1.150635356548188,24.201264891000896,11.12309616811311,4.095638861852934 +158,1.1759677932738006,23.25338454439219,11.374900124892777,1.7970969764292977 +204,1.181625960269234,26.19366610398716,10.726863387518513,1.3332138830102949 +205,1.152566325988252,26.06655320655904,11.838033846580968,4.141359266116833 +206,1.1467039294147339,24.789870106042294,10.511660982167529,2.92385452454824 +207,1.1501947807158235,24.793240207357496,9.838189384626842,4.908980450282602 +208,1.151901461344859,25.05659558077688,10.010425366659534,3.7910939802113175 +209,1.1501201213021894,28.757750875551174,11.312500372288934,3.5102695747161983 +210,1.151000780266924,26.682440663879483,11.769473458738103,3.770852322055358 +211,1.1596641835921564,26.164162185212778,10.743969782940729,4.530366730276244 +212,1.161742004674853,22.572129852257085,9.770461069354939,4.141353145927862 +213,1.1596666105021167,24.748221905010606,10.65755015180884,3.842607060553862 +214,1.163377865981334,30.266471847797327,9.922397884712403,4.07638795313834 +215,1.1566894900112235,25.551187929867584,10.437213826560086,4.636774440658761 +216,1.161003633987488,24.738996765982588,10.068071609552959,3.585609283586999 +217,1.1615763425413574,24.41320765275162,10.140044259975205,4.144538876241382 +218,1.1556977020543058,24.352276505847122,11.031358241026862,3.7430469823826367 +219,1.15657290216422,25.25832972427726,10.481282922090685,2.63862996424739 +220,1.1528647537004086,26.10058925005903,10.626655621552928,3.5609048505403114 +221,1.1543293514842876,23.180995534024447,9.924717106405952,3.789400069336616 +222,1.1529678435268644,27.89903549486001,10.785906888392672,3.762698653217252 +223,1.1515326009547495,24.526236182346164,10.036349539736708,3.535009102126848 +224,1.1461364756630466,25.012195868617987,11.301795594525183,3.156671836062414 +225,1.146729139025846,25.813204911587103,11.198347290256025,3.2482867277672685 +226,1.1436232362177208,25.661811460241275,11.065643447226437,3.897618931230559 +227,1.1457863351319522,23.820483669287892,10.385453133163864,4.233751755592913 +228,1.144589171823786,23.968475495045293,11.09141196294242,3.224654374756583 +229,1.1456067857432803,22.290338006211414,10.103243979022224,3.0926804745638576 +230,1.1391539479171457,25.30170422600634,10.806078992478843,3.3617139897692927 +231,1.1417876596607053,22.859166710544503,10.436492029800517,3.7235677007435477 +232,1.1443716905490828,21.191471260384656,10.68215621114829,2.4100680496690585 +233,1.1383384730856234,25.888416221980602,10.885420438638322,3.7011715498014612 +234,1.1402765647512734,23.398043996885487,10.525042507414545,3.270698323423548 +235,1.1368130197370525,24.57585263651638,10.689479766866876,3.7783375507440966 +236,1.1402426018503558,22.8639764107565,10.50514637559653,2.9643777479913203 +237,1.1446369232303175,22.215848900243444,10.164319398131857,3.73760727115557 +238,1.1451035679134889,24.05722033059338,10.016183279649281,3.022715456266681 +239,1.1431859469034988,25.905358040342477,10.383399579240995,3.4260314457630376 +240,1.147243584123463,24.974861893231534,10.309594414248098,3.534631804569942 +241,1.1402280433792633,25.60322644801054,11.043307205431184,3.5446935584579715 +242,1.148190163985433,24.98432689482542,10.687778590387316,3.3836134166928846 +243,1.1482408246087048,25.2958163444055,10.086389976867103,3.7788832603178917 +244,1.1517593080890807,23.200237248959773,10.018450168139246,4.246362157792481 +245,1.1527615541568905,25.083962257322536,9.620414983775555,3.29255127952546 +246,1.1548092651823476,30.021036992949828,10.040569867835007,3.4633929091254227 +247,1.1563998363293855,25.75720602100587,10.461783624737729,4.317254854504664 +248,1.1540604198632318,24.231215187772296,10.239373363583086,4.751075468232613 +249,1.1534567238311482,25.51475668183484,10.787608141462735,3.335702480804861 +250,1.153214447255236,24.89462625093047,10.63526581670107,3.2964672839130365 +251,1.1512284664709123,25.833979415059265,11.243143146630358,2.0516458725619864 +252,1.152226910864081,24.89234099896105,10.579180507868855,3.0431450381262826 +253,1.1470324083702637,25.03660947936609,11.526465365984532,3.106528380592292 +254,1.1541351700021805,25.3514504862209,9.743636812045267,2.7762097209787644 +255,1.150188923323526,24.285457293043475,10.729841935931839,4.420321765117046 +256,1.1452912192047533,25.41233491240312,11.754751686874918,2.886786141298937 +257,1.142260411724505,24.468118447917792,10.486467294707468,4.31309741948276 +258,1.153320524527795,21.98527895267178,10.681455023991132,4.626537541820888 +259,1.1790923186202096,23.273829105486843,11.18866110595866,2.0651825865092936 +303,1.175294338259246,25.185151541714333,11.133377417837051,2.092009159051614 +304,1.1472895343528622,25.645206343506008,10.775428214389846,5.090986392203964 +305,1.1386115668685408,26.850387647138582,10.94684789824307,3.2557453109288526 +306,1.141372608054413,25.80034507790385,10.391342690278377,4.026213693501283 +307,1.1458033251696635,25.157548239504834,10.056389222814984,5.214795187845378 +308,1.1477154576792734,25.451943766968572,9.973887061269513,5.265842501378758 +309,1.1460690516052219,28.744933607105942,11.485650987315175,4.17005214490448 +310,1.1452673436654335,27.486939436432348,11.638486670685452,3.1844284419461126 +311,1.1498713695710543,26.72063178741699,10.42746112555406,3.743078675607262 +312,1.155376928657037,22.991330434638417,9.470340138456478,4.713603687778846 +313,1.1518287641443195,24.924891713533043,10.464224118936382,5.0654881445206845 +314,1.1550392143178252,30.62467074915883,10.106712907049632,4.895387058129709 +315,1.1472418735042287,25.823056224427944,10.340333771996747,3.4974608408133068 +316,1.1521063239282388,25.810090817457933,9.84090226147471,5.696205576326505 +317,1.153676877908952,24.340789293503775,10.338329340385204,4.251081310660859 +318,1.1490488881063101,24.902519449702698,10.456104522319594,3.613270955062034 +319,1.1487171466170736,25.543029097450223,10.464506464637967,2.4700431473810824 +320,1.1436277562062542,26.554056393899227,10.580268814870687,3.4908018035949047 +321,1.1480900617181222,23.407361713103374,9.716868914124001,3.9531799629733553 +322,1.1453580758156563,28.33610120856878,10.410050896385995,3.685533066560181 +323,1.145990134536799,24.386683377450918,10.183159557147235,3.520775170530062 +324,1.1409374896793412,24.85857245349115,11.241140973308735,3.12861561380892 +325,1.1393358917064624,26.364311202708194,11.183806709666658,2.449308031711375 +326,1.1379622078093807,25.68822178085476,10.878746594330602,4.345240944770839 +327,1.1397980309062061,24.39587943076532,10.492378749516371,4.151208498113603 +328,1.1371063462636932,24.38181133564974,10.5862548688498,3.952420225136477 +329,1.140369028821609,22.58296299454488,9.720545028391896,2.92008787194845 +330,1.1318532829971133,25.63836354327941,11.29400471856914,4.198634330277941 +331,1.1384788984267802,22.583100987647693,10.053017096403533,3.5076964816560268 +332,1.1374073805514409,21.964662205618545,10.52390013354795,2.389275375916244 +333,1.1330703486439289,26.323348278382927,10.928411194384601,3.163690412502285 +334,1.1336492937646512,23.403885775525207,10.831215415333949,2.966239080245607 +335,1.1315305068889658,25.068668230721887,10.329324798563631,3.3078884911368944 +336,1.1334957466479274,23.2849229613265,10.46717588000437,3.263533813918361 +337,1.1367338069473083,22.787769568421137,9.824018128864163,3.139548491798557 +338,1.1375734076430506,23.993057803322966,10.377306650237278,2.9369761388356492 +339,1.1381352391775201,26.25134064907649,9.83120067935527,3.147765072792032 +340,1.139185192557109,25.641560807868057,10.533725435908407,3.130008815730354 +341,1.134112255039877,26.138386029725215,10.961875607590992,2.6591583435545147 +342,1.1379278422876449,25.981853127886726,10.730749626356825,3.353903983343331 +343,1.140430042801007,25.930169754610873,9.497235178899324,4.4031699753788525 +344,1.1460338875908695,23.352931620519932,10.37459600583834,4.478621310137318 +345,1.1453137755391558,25.439764760165648,9.991249597169304,4.079592099558353 +346,1.1489640415093643,30.203898587435265,10.017367924978549,2.585238824731234 +347,1.1464439037306917,26.355012172945766,10.570064177493984,3.635404161635362 +348,1.1479316763073137,24.900969767904414,10.213458117725203,4.851802874735125 +349,1.1469117950910022,25.873973241751862,11.007407314773701,3.7201637652989206 +350,1.1496085006948777,25.57938246282562,10.264970448275077,3.353454114865347 +351,1.1446238525914831,26.242708346959013,11.51912182630765,2.8842424533654856 +352,1.1458782273693275,25.676525604152953,10.930148634350253,3.0849538772672753 +353,1.1423038305671191,25.85298163983023,11.525829184016521,2.869992967813847 +354,1.1484676016126596,25.70024702087802,10.237281107284765,4.200515272203987 +355,1.1467961168318017,24.847414022239356,10.683748680139585,3.437687138624719 +356,1.141281549514758,25.978261057200683,11.752826872105954,2.8617873824366753 +357,1.1380406418533655,25.37576126043009,10.461168703205312,3.870142746375173 +358,1.1406127970096434,23.011052249760006,10.656195157074414,4.214155495481169 +359,1.1483302520723635,23.828260943852854,10.989335225322154,2.4610699894304813 +360,1.1758701498603779,24.018944045747677,10.08301266086788,1.7824921787139314 +402,1.1599874251649962,24.371066224947835,10.018191158504385,2.4099899772623985 +403,1.1337294047666027,23.824972147082907,11.875507578089271,3.566616534439653 +404,1.1251311577566794,24.247523388415125,10.972037979342153,3.453610315401369 +405,1.1271193192250129,25.242989385457083,11.1895993498612,2.7521187165032654 +406,1.1302935445216302,23.790448684752658,10.553810733098201,3.757400876327129 +407,1.1347146964485064,22.639035181038135,10.388599199462027,3.3596086191031764 +408,1.1355752013490508,22.620387846514433,10.43736231623048,4.035536425563182 +409,1.1320993375541213,26.49001301836021,11.277297690425055,3.0255740329331204 +410,1.133991514680988,24.960803637163796,11.416032391125961,3.1695332345462854 +411,1.1370718267326996,24.110567436675115,10.49097585061175,3.9352972710757217 +412,1.1416787905372179,20.30596260504646,9.635290483994597,4.188434141343422 +413,1.136914450823133,22.642013374803774,10.277735435963123,3.6209293271055842 +414,1.1428722138270604,27.882892499800295,9.861083447012696,3.8177240771044163 +415,1.1346562938789155,23.149262487779353,10.225238982059285,3.2255581382867615 +416,1.1380957051381013,22.72272511862332,10.05152990748223,4.059583070855189 +417,1.138943487337447,21.812762465961583,10.36472094322086,4.325951837143378 +418,1.1355406035757518,22.337964670440073,10.919147671920317,3.4085020849590184 +419,1.1351590380245264,22.644294927114615,10.591336825738711,2.7115855231394623 +420,1.1339944506813462,23.806676103287895,11.008744641254566,3.4451704437171506 +421,1.1330165752096923,21.260874962441278,9.996920192938017,3.3487420714717455 +422,1.1297595760855699,25.688119043416293,10.48813987820127,3.998565988237527 +423,1.1321382308409746,22.40282542264505,10.580516723401185,3.320302331122452 +424,1.129106637696785,22.21392187631494,11.21098046699451,2.5007664606055946 +425,1.1236984414870592,24.05006206021501,11.742118117745374,2.5124431850644826 +426,1.1241229459265814,23.18095068024806,11.451804602232505,2.713070429620217 +427,1.1251564653543586,21.662234266073394,10.292156914575052,3.1543992055081764 +428,1.1249308226466919,21.813090131085637,11.263771924466045,2.7396390429020476 +429,1.1292315228642829,19.68162906480771,10.162780097139827,2.4152017734809057 +430,1.1208450266415064,23.13586129361346,10.982159407923463,2.282477636631366 +431,1.1227755607889345,20.802913064423784,10.333722054345625,3.289138031448474 +432,1.12522723522558,19.585131009329814,10.516459288408088,2.191914745695839 +433,1.1191153999811307,24.261267608674395,11.081516747006399,2.177005179889694 +434,1.1202429535781442,20.745743635161052,11.09073591526892,2.4106804011520304 +435,1.1170491233114257,22.23869018967965,10.511980253692768,2.649660047124925 +436,1.1193652076013998,20.663179807436176,10.57290162019158,2.314709583792825 +437,1.1236316218707756,20.209401098442708,10.3047766197697,2.600624670519781 +438,1.1228416989353096,21.651375868214146,10.046232394533911,2.3731039240614993 +439,1.1246409073227883,23.649660776886094,10.06048325805596,3.39506496139533 +440,1.1261279620721516,22.988902044742314,10.43514658309399,2.76031024908173 +441,1.1211408508349254,23.30502804145143,11.419570920400217,3.0713728286813358 +442,1.1269714450558144,23.290393832409453,10.787213494668661,2.8872294035923693 +443,1.1280941630463053,23.24266895817098,9.787786621758018,4.557890268047593 +444,1.1325397163058952,20.93793927848923,10.837958617787214,3.628024785192641 +445,1.129311199088055,23.0630384702788,10.27749932089894,2.934886398011205 +446,1.1340737036371247,27.81702265063854,10.276438252072559,3.2737505699203333 +447,1.1325936318382115,23.818645283656682,10.558213963472376,2.0524607237692702 +448,1.133365923876382,22.498427775108723,10.361516075114112,4.771717375975473 +449,1.1315171464818574,23.611971573779766,11.136159152881802,2.7225657053782073 +450,1.1347179547768773,22.953129436271606,10.410366502711165,3.3173825053597077 +451,1.132822374368125,23.94031068817259,11.72831160450618,3.4802957379348793 +452,1.135487988484372,22.63823486001738,10.759703922462743,2.4762962730337086 +453,1.1299188467617183,23.488333625333333,11.336922541644446,2.276756402221772 +454,1.1340816397031432,23.410926818839748,10.390944810903703,3.9457051879390534 +455,1.1307844244013023,22.852630126938678,11.152334021365354,3.2918824237754802 +456,1.1312671896684936,23.27767200869899,11.81525470989554,3.1181714232818756 +457,1.1270286791396087,23.199053901014558,10.83414480839079,3.2090727267355037 +458,1.1280759759914807,20.847156293522577,10.935686124859929,3.4977114147364188 +459,1.1257205243807489,22.132132465019552,10.994211367188974,2.791126490597286 +460,1.140421061230771,21.951826668086962,11.009780936254424,4.023041202452052 +461,1.1695353812893317,24.064247172010504,10.785298211616404,1.6253733410576092 +501,1.1778593095725927,23.19556794644616,11.126202449005376,1.7705842713213589 +502,1.1524199077991706,23.601188992165927,10.22344727701891,6.322711234799917 +503,1.1364336672974709,26.58372518765812,11.881220274551,4.384873978035447 +504,1.1466518475359537,26.465261500879414,11.028027631540645,4.008369739492864 +505,1.1462754408707592,27.502221312116564,11.480746477170907,3.1168580470827005 +506,1.1511904042471797,25.85678535920864,10.590475330403416,3.1591124740874554 +507,1.1513293976101309,24.827065308342732,10.344459701622114,3.2357831646487654 +508,1.1531400004703616,25.034663634449714,10.77555908802914,5.4555840224394325 +509,1.1494965663925647,28.549756754614403,11.577678255664983,3.2980726810269045 +510,1.148527502723557,27.070874244920603,12.107401436121556,2.9725480552880787 +511,1.1520945811131413,26.343538926214734,11.43829555691282,3.389288866204185 +512,1.1556436896738778,22.873123430560153,9.527743208547227,3.9897277987246893 +513,1.152837057794479,24.78522444000268,10.735118718001743,3.1994259995660275 +514,1.1578702881637664,29.94244652013804,10.163615390592238,4.682996230559062 +515,1.1494593059790008,25.406202805009553,10.525855170428919,3.4936281411402166 +516,1.1505482707408177,25.51958671833167,9.943915281072648,6.97743794284238 +517,1.1524497403721732,24.192833818291707,10.313676462800112,3.678468340874213 +518,1.151233741695657,24.317553801735134,11.132996470663196,3.4697315939182776 +519,1.1476699994342656,25.558600453166157,10.859761222928926,2.851669263874843 +520,1.1464833498721474,25.757680856876355,10.925128494744442,3.4394464078985334 +521,1.1496923525022467,23.033811222888485,10.013262567829669,3.2699960224078133 +522,1.1454260797783409,27.69441483783923,10.867916085274626,4.063358891773147 +523,1.1469452222191971,24.470489070500953,11.016326461427385,3.6537559892374607 +524,1.143036155130522,24.357186772118485,11.536974203587462,2.8615835125488345 +525,1.140200842902204,25.720334880139525,11.715010059188122,2.3066700099382786 +526,1.1391205412926175,25.740614132036416,11.071706374237028,1.9570008107993024 +527,1.1406303345511566,23.572092727896667,10.278407050200208,3.2951081268733704 +528,1.1395229238110764,23.992109984449087,11.543776393101451,3.179193282710269 +529,1.1421913765465417,21.931371445766988,10.186152759051406,2.9235012411716186 +530,1.1354053375459139,25.332482762080527,11.458066495004495,3.2050885518132493 +531,1.1399277019269805,22.59782342721428,10.745951253789102,4.087743563373179 +532,1.140098642995255,21.46976209179928,11.122725451845033,1.605012805786956 +533,1.133832259058895,25.797948098877114,11.30367338773369,2.6915210691056073 +534,1.1339822015843124,23.063396002756875,11.290241216838343,2.6424965948738994 +535,1.1330036699284252,24.566875819494484,10.868299389023841,2.2340271720022153 +536,1.1357182050576218,22.567197717771716,10.640670731747507,2.4692038189597 +537,1.1417520612866683,21.88025372233825,10.177956680281762,3.116245307551707 +538,1.1401159930775004,23.64477755525721,10.52894273820564,3.555622642401624 +539,1.1389031523423467,25.819251829918276,10.263791514714592,3.722085547922781 +540,1.1417329489387167,24.978885634095356,10.614571906958362,2.8908765508436396 +541,1.1347588286097636,25.207556213837762,11.08617046592536,3.127164585384309 +542,1.139838918594624,25.33207489226622,11.16689677959065,3.233646821839581 +543,1.1434428180154625,25.188696411815737,10.390893417280116,5.8278035058534154 +544,1.145881053773065,23.26692293607859,10.674963180007019,3.6341860535153567 +545,1.146243794582073,25.128494526554437,10.069097419097128,2.7065360442103583 +546,1.1495669416104557,29.772842362753806,10.953020835221524,3.1191924989164854 +547,1.1492993040897128,25.82041060281093,11.124937780332532,2.9013679940463013 +548,1.1491274543159782,24.453570389017344,10.714512646405705,4.753174829367703 +549,1.1506300761419306,25.24684140079237,10.820460366079272,3.617581858977406 +550,1.152022295940224,25.1307064093061,10.812889719430869,3.6953049955153885 +551,1.1475766596216108,26.479571122029135,11.783318508478025,3.368573992293356 +552,1.1498458827338773,25.304706528441223,10.972796547383616,3.064715099522515 +553,1.1473718001268454,25.90289851229151,11.430427527754325,2.13314879456941 +554,1.1518371750626086,25.946424147620952,10.108921296472463,3.9106626430236284 +555,1.1518803140185225,24.367424368590285,10.967959793164207,3.221365858475472 +556,1.1494144102008728,25.54820129034864,12.22313827830635,3.348475965212713 +557,1.144150910499914,25.49220647690035,10.877145588851398,2.23690630237475 +558,1.1463186449781566,23.06752816276638,11.558811845040998,3.4665434610439028 +559,1.1444647523172897,23.885760028684903,11.145872364326303,2.8539463668143212 +560,1.1458337874328028,23.361190024973286,10.888390202863478,3.5075848626123967 +561,1.1570574466018204,24.04587704671393,10.531523821847214,5.2538406288466435 +562,1.1834051625756563,23.07626678176687,12.02294153400487,2.2888631191911295 +600,1.228313872262928,20.39474122665753,7.8160548941960375,0.7558363742591231 +601,1.1492757148384407,22.80323241407011,10.767895129879104,7.001493389520078 +602,1.1419968733081771,24.665543780088406,9.942456965431543,4.834156054481299 +603,1.140080644364749,26.319249535935285,11.761937105552851,2.9648377334204397 +604,1.145088770742838,27.133037569770906,11.417428435133331,2.8317958358449182 +605,1.145872828443912,27.955901608676506,11.910200676142336,3.198879856519926 +606,1.1503039186769193,25.944782396433766,10.787120818477105,4.0554708572401115 +607,1.1501072007840665,24.97852696123472,10.067105742832272,3.573930868432194 +608,1.1494090884955845,25.57819383812291,10.307012449168738,5.454391119773148 +609,1.1489578864534367,28.649617949052306,11.670673410741355,3.7752313454771556 +610,1.1453239832899091,27.330427103388867,12.02985386545886,3.1156892758670987 +611,1.1509635692933593,26.7046326546166,10.978435799999026,3.5586057394830863 +612,1.1550921583372586,22.659879210836973,10.123939352005399,4.049666816142427 +613,1.1497180293614973,24.88532536236622,10.774237964049737,3.0612006971159333 +614,1.1540763544578065,30.07449590384471,10.178685673339467,3.0870945797025096 +615,1.1449081525614881,25.7449079571764,10.331500012923469,3.821881511356424 +616,1.1500026949412863,25.370078450237063,9.980010479639574,5.315937681892134 +617,1.1501818174024383,24.046954583346242,10.288805163183603,3.8594230243264405 +618,1.1463270796828462,24.49648032104204,10.881346388759239,3.116051907678431 +619,1.1446723085668775,25.323039358523232,10.712789271014604,2.3244187010821675 +620,1.1429915260681653,26.284542347320937,10.886471889040056,2.323590672172607 +621,1.1453026215657938,23.642318096176535,10.331571591161776,3.9103942624059234 +622,1.1412095063644374,28.338239728917983,10.285954033795452,3.424153613176511 +623,1.1453796996764485,24.674107079876723,10.265120127973859,3.9046576618716924 +624,1.1411856529347932,24.69917608434686,11.432936367176698,2.596377690223785 +625,1.1372929215674494,26.20737417005124,11.520243313375536,1.9984847790458702 +626,1.1355796500604507,25.705514763750166,11.179201608573498,4.567658751373109 +627,1.1378432339075069,24.042783432965678,10.331578654774017,3.4397974883780376 +628,1.1358109662683629,24.145715941242862,11.31316592969074,3.3784566762487582 +629,1.139861103879375,22.262786864153632,10.125795718064595,2.1240165963837274 +630,1.132398803913918,25.921234593640396,11.047960560719057,4.523546984272563 +631,1.1348229273286123,22.90960718791706,10.478209363571267,2.7194226442736187 +632,1.1385569712319223,21.22334154096781,10.782708748334667,2.3614070005702206 +633,1.1311294980537125,26.23126012971012,11.016955322156283,3.2978132647826897 +634,1.134478981273867,23.25078542389125,10.742694158171336,2.32206753744624 +635,1.131055562264211,24.629804589629863,11.14300487439206,2.8089000699741637 +636,1.1311995863717605,23.240418152465107,10.483817624306102,4.042643680998642 +637,1.1372227048593857,22.22599968719985,10.208752401172271,2.868573784989552 +638,1.1381309006008273,24.1989306688686,10.385906130596098,2.932386703952419 +639,1.1374231432780884,26.130590279711345,10.331804586364623,3.5184019408062364 +640,1.1390435120141336,25.40694022067926,10.677751835286925,3.1225065813737016 +641,1.1338010354012218,25.551859181934415,11.538959497348307,2.188689613996788 +642,1.138560547375347,25.61300431932802,11.069486606066523,3.144322413015622 +643,1.1405536708274833,25.60124469562067,9.63333679817289,7.493977018492858 +644,1.1446049746756481,23.459377993835908,11.062111554895889,3.550688198955922 +645,1.1439943767040237,25.37265079905571,10.32074350710265,3.2141685511090023 +646,1.146526896537519,30.04366473722693,10.719171891049335,3.131782073606356 +647,1.1458183968508684,26.222702740078127,10.960139872676264,2.8957092392422767 +648,1.1461887482522828,24.277741448032728,10.872494473783597,3.9646890220127347 +649,1.1468141638894382,25.699396513244324,10.730777751768077,2.5275767103517093 +650,1.14844931576049,25.140066521463986,11.124295328266886,3.7986951861038234 +651,1.1463148217737826,26.323951621521157,11.49281838732435,2.835432784185443 +652,1.1485821605081528,25.321779241582398,11.413361629696503,3.371923973531256 +653,1.1478038276617542,25.932527751790545,11.356692943297451,2.5500812190236797 +654,1.1515592377287112,26.05985371159222,9.673160734220408,4.2876406080662965 +655,1.1479824896329507,25.05718509878499,11.204247429773261,3.7742226199849007 +656,1.1484470939657951,26.104621213771644,11.647490484986413,2.8442785064703076 +657,1.1456700555781436,25.753523553432064,11.158604316266754,3.2645777755594216 +658,1.1452334701284497,23.316889948626663,11.565456534504875,3.585643371558395 +659,1.1441375095606425,24.356231655824647,11.472779044206618,2.286321143436617 +660,1.1444208798825248,23.72474766751148,10.76630216824702,2.892672014628672 +661,1.146538856512132,24.633145675504167,10.325885408256864,3.410881893335183 +662,1.1552989478262874,21.821496068778494,11.168702383753512,4.41993940104811 +663,1.19492828146687,31.211789350810456,12.498466217482282,1.7238525232789605 +700,1.1550185878967303,19.52186233084691,10.53183833628505,5.646350372220657 +701,1.141270110065793,21.48207118852286,10.762823578507158,3.859962939617565 +702,1.147621569046873,23.17067877732542,9.9128899069118,4.050795402389528 +703,1.1478302755125944,24.355753023575076,11.413630745764356,3.001322868771531 +704,1.1502635442893163,25.878028263883223,11.320200012096468,3.8798058507980606 +705,1.151302121246046,26.77495344762676,11.418437674322305,3.5562363024716515 +706,1.1544240603296803,24.951891707014116,11.002721563251676,2.3634377322570503 +707,1.1544717005227791,23.51264743204875,10.308000627152296,4.423283072560576 +708,1.1558626324259955,24.096205120197844,10.00811360602934,4.2310281392891556 +709,1.1528176934335979,27.116892467339053,11.655361142001317,2.6901262674089805 +710,1.1513287682854987,25.760291725215637,11.502493001500751,2.1592763188620774 +711,1.1545953462523244,25.06631783052724,10.802274790710113,3.5193765211874792 +712,1.1582747484286424,21.36014623381881,9.914282198478709,3.6164846544065234 +713,1.153614972474735,23.29904039102707,10.756443294862297,3.1674784985834443 +714,1.156909373283216,28.706326905130062,10.452002825969442,4.019004678836538 +715,1.1501284128781082,24.058461531031114,10.832621619828021,3.9836014306716714 +716,1.1540312054864446,23.810285251037882,10.016897427646276,2.7952564357087115 +717,1.1540330225684543,22.527565646940516,10.82931088120261,3.605812471738247 +718,1.149215286855385,23.037511900141762,11.254032648554068,3.3530548730253593 +719,1.1489476983956521,24.252149999339377,10.573914009236859,2.591624833622652 +720,1.1476023004297662,24.815623189453486,10.83260628391282,2.95719365727606 +721,1.1486212751236136,22.20268778102537,10.166043965093413,3.819447521768532 +722,1.1492581924083947,26.375409020608235,10.786407046031119,3.5700911346109288 +723,1.14646957549643,23.271689250265197,10.27205313953614,3.197306548514048 +724,1.1434232820152714,23.30551013641075,11.311052489295665,2.605922882485524 +725,1.140561575116727,24.84260946741664,11.686579694059454,2.455137289204582 +726,1.1403808453171431,24.08901076518781,10.867813811592521,3.234698663649665 +727,1.1405459813838856,22.423285491565156,10.63568666973847,4.0915253053438105 +728,1.1405106907829095,22.593158683476943,11.181187800537291,3.3628578002543676 +729,1.1429718110992975,20.85148524784862,10.137844505638899,2.763522501469228 +730,1.1358961575856106,24.228492316204385,11.362136616241004,3.2621036607480702 +731,1.1398046964016189,21.38788865662495,10.623448425185082,2.9271455161434172 +732,1.1431738197138128,20.001370594629662,10.512478291386214,2.0600448670021962 +733,1.1355734616811968,25.05428737143327,11.224929379335379,2.5827598724837166 +734,1.1370522869667314,21.84056813552464,11.353546543694597,3.0828174883967727 +735,1.1329028314855105,23.245571870364394,10.711763617219704,2.54188441707114 +736,1.1371900150460743,21.70990771185554,11.202212710585822,3.193890482706963 +737,1.1410625374980947,20.972208801642022,10.304721216819564,2.9476096952572663 +738,1.1395579809982685,22.4121858713901,10.726186890734215,3.1812361716127815 +739,1.1407746315458214,24.439532014982902,10.616790428336358,3.42048968156344 +740,1.1437157518757057,23.781155606186964,10.816870839999634,2.61459751265675 +741,1.1361131508979712,24.37231412445846,11.524263001358621,2.1032615984178813 +742,1.1444643210174674,24.129649409147998,10.834178584642537,2.9296056762081824 +743,1.1443778990635245,23.99985437968924,10.136941086684649,5.7093897661899815 +744,1.148503470558094,22.01502698665752,10.410419372048766,3.112392001352659 +745,1.1492482234472183,23.657039476997117,10.018507790485453,3.419120007235771 +746,1.1528333998335856,28.583272792988986,10.608627429970054,3.210077575015111 +747,1.1491151969326632,24.745549185908867,10.95897113709063,2.1654353401141035 +748,1.151103653879332,22.836539716842424,10.380746750861764,2.7225990414941124 +749,1.1521379562148926,24.03779280799956,11.164893046639486,2.5732664143643316 +750,1.153795192816218,23.85598468117437,10.866862137291884,2.997526280626476 +751,1.1520365691406118,24.740038395512002,11.765671043255509,2.173535958635435 +752,1.1524568667295976,24.195034638054665,11.70911844198552,2.7231640737180185 +753,1.1501989824076158,24.57569350187612,11.380829499641173,1.9461289874315122 +754,1.158064472543154,24.05535389996313,10.206853136594365,2.8729485850789467 +755,1.1564864197509117,23.722203330675278,10.889082482225685,3.369413429241423 +756,1.154224999219931,24.445415638126892,11.661640773999608,2.778205847348133 +757,1.1500316652356473,23.8139751458693,11.247496389254765,3.2940148948130377 +758,1.1498523889718086,22.18720119064639,11.209695957386137,3.204408428803421 +759,1.1520044867091355,22.604536771837108,11.376693331098226,2.6431964679944175 +760,1.148371548693947,22.857926474659916,11.098778019574537,2.633204624322907 +761,1.1514633194573862,23.834408253811247,10.512637485461864,3.5751381564376663 +762,1.1457950592491843,21.100637428934576,10.821680434102701,2.708587146783185 +763,1.1669523391082968,22.381137078634,10.60591070132027,4.552346827607309 +800,1.1414523407249983,22.265213902112578,10.32335099190971,2.439328497658703 +801,1.1324162936827389,23.51048444159751,10.980204856452882,3.351742060999725 +802,1.1370782326938353,24.603019862054914,9.682334616697643,3.7710523605277855 +803,1.137790723203275,25.62051761275717,11.627321999556473,2.6194391916909323 +804,1.1389864783937886,27.2626973561092,11.124805203642044,3.0975331331700775 +805,1.143577736612521,27.74992340534957,11.62522499434185,3.1067835887057598 +806,1.145736873355622,25.638403649037418,11.110855038982656,2.657752758357026 +807,1.1447464151408417,25.27433444740329,10.17835538647837,3.9167368895308496 +808,1.1450682517702833,25.58948061496451,10.162904980384637,4.4045432240926505 +809,1.1420223891414842,28.398115816802935,11.410149756913576,2.6632178782438247 +810,1.142673291551831,26.740853842291006,11.766379835913272,2.8471475744460926 +811,1.1437498581008614,26.710522765952458,11.018788566843105,2.501800721058702 +812,1.1466994028274986,22.878273274364997,9.915613774591712,3.614521857397036 +813,1.1423242958738207,24.696190858213196,10.907905097067289,3.261531959707274 +814,1.146114464391725,30.4960846237155,9.730388536871747,4.172032828286778 +815,1.1383089012312138,25.850706332368556,10.273577721709087,2.6901429536197607 +816,1.1429576326171336,25.232306051672484,9.668750664618004,4.251816549433961 +817,1.1422995645512932,24.46670396275994,10.286230618997369,3.078635625947443 +818,1.138826612195793,24.73912983831068,10.778367435938875,3.5287571186289757 +819,1.1375151981704907,25.438152306783735,10.522091589010987,2.0028002083982135 +820,1.133918984360786,26.206938845340094,10.631457839507867,2.5265379466536433 +821,1.1369447472870666,23.75896737039324,9.964197349867488,2.9810941180430843 +822,1.1365136311954973,28.3111392915449,10.357329966779808,3.74124584246157 +823,1.1369434139899253,24.586811631051347,10.211955368265365,2.5404600596463793 +824,1.1315843766934042,24.864442260007678,11.41945947361536,2.7061292053261 +825,1.1309707337403967,26.35226534507536,11.47119729071686,2.49829613718483 +826,1.128434644802904,26.463862901513355,10.884804041416977,4.646409268120383 +827,1.1311955584181055,24.071078780305825,10.566109039103525,2.9984067547096838 +828,1.1278755853125553,24.501900631953628,11.087738911910249,2.684282547247861 +829,1.1331273718141723,22.216445276772724,9.970148995744552,2.5103180191387784 +830,1.1278366373691713,25.800540575362817,10.956904164191526,2.0215176277185143 +831,1.1291948388445037,23.122497692739564,10.480686829481508,2.15192644681261 +832,1.132692178832608,21.634001220216724,10.627144249089605,2.7247479220163484 +833,1.1264208775605695,26.769569621652465,11.2020093885818,1.7357954752680762 +834,1.127211797211188,23.436818230040224,11.12755682958092,2.1554388982602144 +835,1.1247248806050965,25.029033534642874,10.665090982327472,2.5842752619414466 +836,1.127754577270529,23.584774621160726,10.557977633575613,2.328201740666593 +837,1.1313303565915571,22.742012744161187,10.304849413292235,2.7212084499582527 +838,1.1324637191416989,23.818370370099185,9.938071287233285,2.37421917277544 +839,1.1325993751731596,26.02366423121278,9.926788373539377,3.052197417973518 +840,1.1342169974307963,25.596151270217614,10.517598064331084,2.8460271509273896 +841,1.124886561167277,26.291488811242402,11.431257994211887,2.4722970658093755 +842,1.1318603908431424,25.775358207708877,10.932403005940996,2.6410640428456778 +843,1.1350373337312807,25.605135832498554,9.810763310589323,4.276194576128154 +844,1.137827289663803,23.70964893453614,10.665081667277715,2.5574355953629495 +845,1.1396500111780588,25.44542904967918,9.761428919799771,2.819068712040649 +846,1.1426823942530513,30.602230061915982,10.367347714000154,2.696294591022909 +847,1.1399576828542162,26.362639774922293,10.7764669809432,2.6009800082316743 +848,1.139782630870218,24.290910577605455,10.511881990403378,6.4750363836916325 +849,1.1416076241839344,25.78449945036224,10.948891715385582,2.646314888319632 +850,1.1414063257057832,25.56420396808875,10.186072542541908,3.085595314488957 +851,1.140796671027275,26.471447561828587,11.231478838010599,2.5115669820050184 +852,1.1427396109597008,25.755484605683957,10.820392290185646,2.4191309074699645 +853,1.141885838267495,26.059339412620467,11.456965024887277,2.918831259807199 +854,1.1485533980012523,25.688817504256377,9.863553743967332,2.513598431387962 +855,1.1455898115599639,25.274541019307648,10.777657215144123,2.8542050815488125 +856,1.1451428173806917,25.90326192421225,11.674565949732935,2.6403372577384325 +857,1.1390885543261622,25.84797368835695,10.864186569321516,2.9186253683382666 +858,1.1426176964335466,23.32773357318698,10.83077905945515,3.4250417549464256 +859,1.1410412592066868,24.506772025153143,11.236463624982145,1.8975398629842033 +860,1.1390713963918628,24.859615935418866,10.76762356927953,3.875009122555162 +861,1.1394106130650994,25.40108400057051,10.533167517705525,3.5955343595537386 +862,1.1353328668963505,23.52598706110481,10.722924810096586,2.5034361933320417 +863,1.150170015469498,25.36565229407697,10.331041091372665,3.3551522976353354 +900,1.1361587622023257,20.697477075264814,11.345792480896591,4.053956681233241 +901,1.128475948936422,21.296079241961458,11.312886485801695,3.7184676482059094 +902,1.1329314582182688,22.20665774734753,10.15324477929442,4.367242429682648 +903,1.1328212496398578,23.390791708264864,11.566923657185303,2.979781488713359 +904,1.1348655564956232,24.532112813055434,11.072342808553113,2.9829935050382157 +905,1.1374734685465588,25.207045039641276,11.614660626868254,3.2344864386305683 +906,1.1415009165581753,23.326151939586886,10.38515470931161,3.9185819681123593 +907,1.140442401424187,22.405601916884347,10.53209132732172,4.045870308297943 +908,1.1392039671207765,22.817147053608245,10.2932491323985,3.86588496156023 +909,1.1375199845678923,26.030158503478752,11.01101674995423,4.454913263420499 +910,1.1360757744735248,24.676973541247293,11.595215157690102,2.6009504584761234 +911,1.1383731368291925,24.10098475547492,10.596128695574158,4.58917247509873 +912,1.1439834958250135,19.889013977885593,9.175951164397866,4.561270668194038 +913,1.1396113096761138,22.024229462644755,10.619345189341685,3.5800447866471217 +914,1.141652959789859,28.288783679797596,9.789236014127937,4.475849952676579 +915,1.1339127434312413,23.362228642711138,10.10756922245894,4.2558156889361864 +916,1.137824303469742,22.679669341762228,9.967547727913393,3.6651162531820813 +917,1.1362102916231542,22.089377650123566,10.467065872298523,3.974579907823596 +918,1.1364837639596366,21.593131451430942,10.926949356237067,3.016676538546208 +919,1.1350058923450732,22.995452106960915,10.338696952272949,1.6701723994846533 +920,1.1324044298348699,23.458397570698946,10.89501245936748,3.1217821794152893 +921,1.1335144868043872,20.773530615439796,9.919020468489943,3.447298457722396 +922,1.1315577876100014,25.568678106858297,10.446096969601165,3.174771330577243 +923,1.134989595082179,21.8443265267175,10.48004863706173,3.8619648769693553 +924,1.1321589903442275,21.769716156910718,11.202468475634976,2.787779687941019 +925,1.1248157553690172,23.875867019036118,11.364732636410949,2.549603089503636 +926,1.1270708808633356,23.28325766020895,10.918004500378974,4.0434198946970685 +927,1.1280390908227296,21.622098579540044,10.186452651815053,3.392234966131415 +928,1.1274115771164188,21.510874879128696,11.00522207506313,2.734373081470321 +929,1.1306571499131859,19.56406989015134,9.597209695993088,2.5810966218890554 +930,1.12161925933207,23.393302036400698,10.711851440799817,2.5080517732975287 +931,1.1267507566417243,20.47722593682149,10.11090651669626,3.1600056559891603 +932,1.1280591854140418,18.975441904972257,10.680229221968553,2.21135002150505 +933,1.1226456697256106,23.954935454251764,10.842699798058685,2.495616611328455 +934,1.1229137720945033,20.818733306671632,10.922254402908623,3.1497479708857834 +935,1.1217918723588955,22.675812929047137,10.64449379864978,3.0546190205590196 +936,1.122297670883896,21.208334193892732,10.37944037822933,3.1974121624670353 +937,1.1262165239476944,20.029338279486836,9.85671559848008,2.8235139368265556 +938,1.1281407089104225,21.72306497379722,10.470840789003626,3.4239618687412823 +939,1.1256933434844902,24.163790197911066,10.036806455064966,2.9719006771227594 +940,1.128687669371232,23.144025110591343,10.377756813684895,3.260724701469501 +941,1.121747533362962,23.765435116161797,11.492383723250896,2.464228670416532 +942,1.1275481109101402,23.383814545844608,10.969540514701928,3.3709231199761596 +943,1.1310197483882143,23.24150222561658,9.941970042519555,3.152973315541332 +944,1.1338874360799878,21.306056493876135,10.518821330577225,3.4899527825541288 +945,1.1325203960550383,23.129382240357277,10.015462981775022,3.985878093155512 +946,1.1385532057972572,27.586589635569894,10.17600022212493,3.6691886991290112 +947,1.1394362941223544,23.534623748290446,10.844319210090818,3.3939126109527087 +948,1.1380870552381266,21.735940456949624,10.136787286308426,3.0290883890717404 +949,1.1375808967254597,23.17436586593835,10.958969846524935,2.550880341713042 +950,1.1400781812667422,22.548630326793194,10.41019608323689,2.8296547528383464 +951,1.1378141623865088,23.698596072726772,11.494414101837792,2.815390536784283 +952,1.1406111089952573,23.14439757245147,10.833887835158025,3.112748414250238 +953,1.1374794528804344,23.581144270456264,11.057164661165235,2.7293939170692854 +954,1.1447650555549957,23.122435357922924,9.797364874392008,3.278790873234945 +955,1.1444928766607898,22.44250751190848,10.510106649949883,2.9307555811143167 +956,1.1401101360705266,23.488434219600826,11.710122332006854,2.8487848515364504 +957,1.137495886375539,23.2757731552797,10.825898165685247,3.380418159607094 +958,1.1378561476450666,21.092972527289785,11.012463017742116,3.4065114368506 +959,1.137771383854584,21.98907600400299,11.080361942216898,2.9617122146819894 +960,1.1355039632148485,22.200358474838115,10.746347098457663,3.107884159119087 +961,1.135690393208824,23.3356194603771,10.468590142679362,4.114084540873287 +962,1.1313135036236661,21.43501954330644,11.217238076566716,3.2071414689343243 +963,1.1440633761858305,23.826592152483276,10.707173009366475,3.5366788669086557 +1000,1.1414932270725853,22.61089469550337,11.053725200365324,3.935194099926001 +1001,1.1294731946331602,23.310557044507892,11.021361464506152,4.136920351850784 +1002,1.133519302582767,24.42304866452737,9.99696247699147,3.6197186709182203 +1003,1.1345275179635268,25.607577637707806,11.525465579398926,3.212054236999362 +1004,1.1367308962303668,26.60898500466125,10.987477877675344,3.213041519153582 +1005,1.1384627179261395,27.60789273904957,11.912039322297069,2.807959859863958 +1006,1.1426745159963851,25.951844081272057,10.526384083828498,3.1775628726080307 +1007,1.1427317057063864,24.873106048177505,10.36692156303753,4.307842323762041 +1008,1.1429254437362484,24.99036813559028,9.85708442336887,4.65507079428341 +1009,1.1371947959290614,28.49081169893901,11.17191513035458,3.436221129004712 +1010,1.1354008487891147,26.937964613582984,11.620000850170067,3.036464889885421 +1011,1.1412727640596037,26.10188799977247,10.76792721958541,4.2084103964156006 +1012,1.1430022616490512,22.52773350954502,9.57353661385574,3.7118076515162093 +1013,1.1362185716604987,25.014912387101297,10.236098825626414,3.3468423285597324 +1014,1.1419553179261515,30.27771855983912,10.115381236820538,3.892588686309423 +1015,1.1320766536976141,25.601153784946995,10.620000832609486,3.6908382281174776 +1016,1.1408458275766082,24.958549324816218,9.729134374218564,3.0283350271314964 +1017,1.1371277040032202,24.236068900341138,9.935960739870044,3.455934770134456 +1018,1.136445281175402,24.275292330975766,10.760947429299229,2.964957857200628 +1019,1.1339414891258073,25.119298092343467,10.795644991082224,1.9784293440801572 +1020,1.1315795446519266,26.379001083861365,10.833996658752271,2.806382037693607 +1021,1.1339521512554547,23.077133858738446,9.97133287661558,3.590348084915319 +1022,1.1321806267153451,28.261448874683197,10.298397010355306,3.0549694405267602 +1023,1.1327695377392977,24.599833546182843,10.27695106890519,2.5652414703754642 +1024,1.1310451817783116,24.724351032925636,10.995816826549857,2.5144101307745883 +1025,1.1279668140325758,26.273598720424527,11.31614576076958,2.2484952109936622 +1026,1.126833743435777,25.642712501780974,11.0115976040406,2.3699187661445 +1027,1.1296852363022247,23.831360330132767,9.936565946179522,2.683493402666973 +1028,1.1266230076867403,24.18587780384733,10.974994345122369,3.458516126730033 +1029,1.1300188170972416,22.402791448549994,9.923208605948899,2.1243859982700597 +1030,1.123671060633698,25.678723240696744,11.13122314055633,4.004096755669607 +1031,1.1291034368490072,22.764318227998345,10.030843225837918,3.5416114896701165 +1032,1.1280196096703556,21.70159251931844,10.421749899365617,2.0071731893841633 +1033,1.1218468157642825,26.76939976325432,11.25908809032795,2.872176598276445 +1034,1.123974000736461,23.444082044905784,10.968872477424904,2.4601779726057447 +1035,1.1232039675740608,25.01515170411991,10.378437279457046,2.6068329358851536 +1036,1.1247028935165244,23.377362515977648,10.470607785137208,3.2330274374066144 +1037,1.1268035177219673,22.606282402201664,10.382838449824334,3.4180929365935255 +1038,1.1298142123139767,23.788289871473708,10.279929343435954,2.6042588451411564 +1039,1.128566073225737,26.210674402613474,9.980231146551002,2.5088911712123716 +1040,1.130328916449783,25.330720837267858,10.591318072803185,2.2877387698968565 +1041,1.1255440098181801,25.739186231975978,11.123748013259682,2.5736505236687135 +1042,1.1285162908097681,25.76968422794245,10.925827791552146,3.219310789833909 +1043,1.1314839554083596,25.516667702272684,9.727147878589296,4.417230789227587 +1044,1.1354094075948782,23.273135408952015,10.53417806707347,3.3047432724437438 +1045,1.1360525879694219,25.148480382550805,9.788123980211868,3.4076877492403725 +1046,1.1361440547473933,30.15301286388953,10.397028975634258,2.4353479074133433 +1047,1.137328491435844,26.166354356884273,10.552141919381913,3.284320688696835 +1048,1.1388403658203965,24.209411614864866,10.275801742534682,3.533188719150547 +1049,1.1379963077491613,25.39464805331312,10.968600090032881,3.0062123903324776 +1050,1.1393401871169753,25.170077233911446,10.488486850508126,3.0540838055065316 +1051,1.1355758463399936,26.38506898111246,11.602795610750798,2.7325472559084467 +1052,1.1412650018168873,25.29549819443617,11.070527351704095,4.158401476313643 +1053,1.139677131372475,25.505103963442053,11.425791094187142,2.693631885297403 +1054,1.1426652188120816,25.744020865620467,9.917410724463695,3.8569748103917973 +1055,1.1422678545547935,24.967029385265004,10.813355122855418,3.6718535854789334 +1056,1.1421349642332532,25.732031073352225,11.70147825714672,2.9735170894412692 +1057,1.13873954678193,25.179305143651398,10.984546493692006,2.828558190431293 +1058,1.1418450721373137,23.0554636790547,10.96593761140822,2.8164035729510593 +1059,1.1417250238195833,23.95839336429572,10.814959042722304,2.116382779619839 +1060,1.1367972549841188,24.369257026380804,10.515407343139847,3.4976368105512106 +1061,1.1358313480621294,25.55075884732966,10.558017135987624,3.5669386672372165 +1062,1.1340128941389924,23.395511794948767,11.03814275488708,2.59343131493535 +1063,1.1456793005482298,26.14904677576442,11.409078876978667,4.4276825708167875 +1100,1.146191175279782,21.06953545814815,10.906531337419006,3.805780333927585 +1101,1.132847155907117,22.85179786838493,11.04092215072878,3.001998794663685 +1102,1.139275765034342,23.530879746443066,9.637576448616452,3.1950360903693977 +1103,1.1386117007287182,25.17426235273203,11.49671267868116,3.3294932583840677 +1104,1.1415315830556172,25.93211705843492,11.35937586820349,2.1381128949408774 +1105,1.1422432607592294,27.271570302126136,11.807000464414102,2.330481527793227 +1106,1.1449831938608277,25.240935084374048,10.779566694523739,3.3323120042351158 +1107,1.1490548529722495,24.02685864991917,10.256638745603414,3.9662767482549905 +1108,1.1450956415047648,24.167518649755063,10.17442059176934,3.6458877909701064 +1109,1.1442639509129213,27.413174182871792,11.166410440463759,3.0504430025316385 +1110,1.1411992273723632,26.366181120089184,11.540440412198471,2.945507274818214 +1111,1.1443172630148508,25.617151895001307,10.775854907821524,3.506940890920237 +1112,1.1467272066990701,21.41444711631183,9.419815370649099,3.1419442927263455 +1113,1.1411174268180206,23.88885142526452,10.389063948481654,3.244090732136247 +1114,1.1448083281362624,29.354011148688436,10.018990033860868,3.1015218065890924 +1115,1.137432164836629,25.00550274302614,10.396454244947165,3.2447895995735023 +1116,1.141193042540025,24.302643355442157,9.792639070476264,5.722643213506556 +1117,1.1431271897798918,23.17249193100235,9.92763893632424,3.6024520544061556 +1118,1.1398965761042865,23.455011814567424,10.717044393774355,2.273318755638185 +1119,1.1386503931594472,24.483620915794926,10.681652604217964,1.8200105913036067 +1120,1.1382762279170304,25.312746748487655,10.641689521083451,2.696582580171367 +1121,1.1377720611850117,22.624666320696647,9.703255871834264,2.9909490615672016 +1122,1.1357903250784243,27.419818893679764,10.537364776367228,3.8037450885883493 +1123,1.1374699606465732,23.761255261075284,10.373479654876208,3.0433837635831273 +1124,1.134894492369262,23.664435083652723,11.6208894725906,2.308161510471617 +1125,1.130506285261119,25.63198091270953,11.327652044614625,2.517707366233058 +1126,1.1323646083589545,24.59794696457688,10.93063707113846,2.2989908284078275 +1127,1.1330881385659513,23.218560488519095,10.370630950130183,3.0664085496721643 +1128,1.1316911853800666,23.459416941420965,11.694847434449448,3.063054856910481 +1129,1.135706017652614,21.27991081167492,9.721161220163433,2.7816136234844913 +1130,1.1286865411477003,24.549690721813707,10.930914394096513,4.027718378657763 +1131,1.1322306958261619,21.90775190942987,10.188594647402574,3.092923623782999 +1132,1.1342468107153583,20.62795148899933,10.437860449726449,1.867723819273813 +1133,1.128305678570531,25.427605505041655,10.739102633290805,2.7204475390602805 +1134,1.1308101973436326,22.580986432998678,10.801845447128862,2.659752929682742 +1135,1.1258544610644432,23.787706682429683,10.483286292438674,2.7998248441246396 +1136,1.1285529524948108,22.401824998307816,10.707298499064857,2.2344170751783046 +1137,1.132964376878151,21.53106371292849,10.089491120495229,3.1248222771777354 +1138,1.1335308562716964,23.107057942746923,10.430287224486593,2.6524291111663016 +1139,1.1324277670455676,25.255037879986904,10.165014148093286,2.9691973871760786 +1140,1.1356605487679892,24.295382596241268,10.340694943893155,2.6373713159449452 +1141,1.127525272559622,25.040775638482557,11.015646347594863,2.9002808118542456 +1142,1.1330781025797192,24.60261269868568,10.77720765160821,2.9824774801384852 +1143,1.1368661894181942,24.283031573330547,9.605417000194937,4.467230257821303 +1144,1.1392275355783708,22.406232061690794,10.07911713417732,3.6611406459710163 +1145,1.1391770419199747,24.325494756901836,10.176162267311115,2.6030427264505156 +1146,1.1402827007348841,29.417531244485946,10.592873941981875,2.965622656829808 +1147,1.142396450393474,25.08786648739289,10.484950497264158,2.8469578144163163 +1148,1.14249029428147,23.366100326528876,10.364806389219106,3.6375132858927763 +1149,1.1428195809624304,24.778393456736666,10.873243575197804,2.1084453646248433 +1150,1.1458483385792115,24.110467761890273,10.517481127453161,3.2959064832383027 +1151,1.1405586833393013,25.443320523427204,11.612512881725886,1.9502984208932057 +1152,1.1428325432445712,24.58566307453155,10.78192280526473,2.6326535451628885 +1153,1.1444792911843276,24.523792856786088,11.228482075102805,2.2390665083421903 +1154,1.1492360340175343,24.7683590420967,9.70833502819159,2.984020201104467 +1155,1.1473623481805748,24.032950908422826,11.221813424220688,3.3867761558749176 +1156,1.1479944799871442,24.991622364760527,11.754288836212195,2.69462185767498 +1157,1.143243061529945,24.242731332545404,10.85731694019099,2.7227783456244423 +1158,1.1416446755337293,22.726118456394683,11.120434716624278,3.514737988463227 +1159,1.1428669858791434,23.579316998265774,10.978934333964597,1.7250826571963074 +1160,1.1423514308361384,23.434377933983686,10.926992431323411,2.977556666799183 +1161,1.1433606239763734,24.524921406411508,10.654501128509938,3.517324318913267 +1162,1.140084934343286,22.210828051716664,10.743167002631901,2.9226217686299996 +1163,1.1502655109478481,24.674940875859768,11.031803443097363,4.102465659736252 +1200,1.1502494619190593,21.723323829360712,10.476388151357838,3.383594005253864 +1201,1.1415645713422697,23.000632239016653,10.631890529878072,2.946325192909621 +1202,1.1443349843870954,23.71878469350987,10.128637765137128,3.791245762019616 +1203,1.144065525958249,25.483258401038448,11.550290018834158,2.2150085570218225 +1204,1.145658367488782,26.196480228750517,11.507102183371389,2.5695468578476426 +1205,1.1430903915772839,27.87926706232394,11.535126785626566,2.7508716550560908 +1206,1.1485348673637685,25.791235839628133,10.646277858960056,3.038689243178052 +1207,1.1489730105560345,24.881071599090166,10.615401875695504,3.0495440766835027 +1208,1.1477158042843274,24.709770194567078,10.383808072752363,3.7848351130565345 +1209,1.147102937814524,27.98480668651809,11.110732996035942,2.614544089176448 +1210,1.1443190010513278,26.92069376554383,11.77787356923552,2.7648100097464563 +1211,1.1453697106675518,26.370341751967665,11.066086713346944,2.8045112546731463 +1212,1.1501310733382988,22.260893449243945,9.779894884130911,3.2109839023336275 +1213,1.143274096240404,24.825912370509972,10.762031758497537,3.201087150952027 +1214,1.1482012569298319,29.87740015421639,9.85379486161683,3.33539976872653 +1215,1.140016895827226,25.579992774882477,10.241559345417008,2.771345660323924 +1216,1.1450571321925243,25.13029808279035,10.178484781931417,6.608788379981024 +1217,1.1451285458118516,24.09458036904156,10.379119439548543,3.5905654806701346 +1218,1.141117904708476,24.16183110204113,10.972048329056387,2.7506179012619203 +1219,1.1421218930730368,25.34165348344143,10.610384584294028,2.7607653844618536 +1220,1.1397989071784742,26.170923942301684,10.423012377857383,3.448568920714989 +1221,1.1414895473997206,23.17197470710386,9.909595871142438,3.5251847878944216 +1222,1.1415684235673609,27.82783471232463,10.666796130946357,3.7601489926159006 +1223,1.141092250723227,24.65080173956408,10.053966572797664,3.2502729563038146 +1224,1.1384236338865614,24.687381799286296,11.270530125714124,2.206129601611228 +1225,1.1354550047803305,26.44687273333485,11.255024369660196,2.169142185695782 +1226,1.13559308698585,25.619140035666877,10.969029146635402,4.298951306873063 +1227,1.1380480549200607,24.09327651225658,10.558234522257493,3.3589446143554262 +1228,1.134316582229424,24.165092240924093,11.24174145801736,2.5945361241967837 +1229,1.1408808554840026,22.212035038040312,9.73649415115136,3.3455559936683237 +1230,1.1325784022048004,25.646183402200283,11.187452445250772,3.7344110362938365 +1231,1.139231155266593,22.649648396065132,10.213858512613594,3.485044302435278 +1232,1.1395378169359747,21.32523869544737,10.736189491526698,2.5714122836694546 +1233,1.1322219322882014,26.26750612309159,11.40796410348371,2.3516069618286397 +1234,1.1345372806376222,23.40903200600381,11.211749985846463,2.6606074867346075 +1235,1.131251902438609,24.510354599181557,10.860573642882278,2.6058021508578504 +1236,1.1331100168432808,23.340812587306587,10.582083023560866,4.452116777254199 +1237,1.137179426824713,22.31805736426192,10.324340581293425,2.7602486646704554 +1238,1.1377256968770753,23.583273172368877,10.179321569179214,2.7564349194390445 +1239,1.136025970630881,26.066123324317907,10.290739629833698,3.319392810644465 +1240,1.1392680157136787,25.068457566474354,10.615344612481199,1.955346520375567 +1241,1.1316148743194339,25.927854564184667,11.317017791939401,2.047880490672098 +1242,1.1385847549469443,25.340316765857136,10.694702997847465,2.707409308273229 +1243,1.1401914657394834,25.529687704610097,9.537917095854937,4.58689620188919 +1244,1.14194647066766,23.441088296648513,10.426152881986482,3.1746225981648677 +1245,1.141486945660792,25.35735399722452,10.177198267508723,2.128774161136982 +1246,1.146232408981059,29.57108540268371,10.462619453023676,2.7259579718800406 +1247,1.1447669175437754,25.763757173326745,10.790795887505318,3.1661426893657305 +1248,1.1450490505190472,24.470575615699595,10.643108131696286,3.3082068058190486 +1249,1.1464182249348698,25.110003209719334,11.142755175820321,2.7874054471372034 +1250,1.1460772220175937,25.304265995343155,10.506273282206928,2.559775499795206 +1251,1.1448633161327542,26.271887826682356,11.592342288062325,2.3086644504726697 +1252,1.146526075542218,25.2578174065839,10.858303191513038,3.2594080623763553 +1253,1.1465491536881085,25.605215520773537,11.389501605041053,2.6175710052386187 +1254,1.1523495786817934,25.378124603616104,9.951327430211112,3.0443712290917406 +1255,1.1508616876748592,24.481605130463418,11.135152722136807,3.4755412087094335 +1256,1.1498696646820503,25.90046584836379,12.154446145676255,2.724183127081933 +1257,1.146318676323262,25.366408484294645,10.826019298613286,2.8509608810673917 +1258,1.148218690830097,22.903726582220507,11.192788675073873,3.0777315870855686 +1259,1.1474053660731567,24.159047563358175,11.317150964919831,2.1961365936997015 +1260,1.1451698201167915,24.277679126379,10.990601514401998,3.02312549276145 +1261,1.1474536976440317,25.35482123213217,10.623747634912519,3.2869740268713086 +1262,1.1429862892259768,23.040588950657472,10.982361821622462,2.0227473473239335 +1263,1.155404823503108,24.859403848879754,10.915062066921761,4.011759162584886 +1300,1.145681258282925,21.901480765208984,10.665644941089498,3.6395605514576985 +1301,1.1331193303602303,23.07382473061604,10.71581800915903,3.0160747266438674 +1302,1.1385010682145396,23.25307784314068,9.242357303941349,3.33715840829323 +1303,1.1336500540687708,24.699161520929056,11.611380635757985,3.1746246887850944 +1304,1.1371651783542818,25.595462581306332,11.142465331758684,2.3281947594187797 +1305,1.1374697831724392,26.72779883336301,11.224993827684232,3.5210445955611944 +1306,1.1422557403598077,24.87010362800115,10.310736444850349,3.0790030651772575 +1307,1.143922192389066,23.58976403587531,9.918899702566355,4.009130422138291 +1308,1.1424084375971917,24.380300429214415,9.928753433096917,4.2420417470351195 +1309,1.1385083741445234,27.273307750221793,11.46504579227914,3.4626999298969143 +1310,1.1385811108507682,25.65246662249795,11.588277340683101,2.527865484711106 +1311,1.1393779879696724,25.28494267424639,10.630997051705412,2.39495773119059 +1312,1.1425936314039942,21.421074316326774,9.65087126981653,3.2499588174252843 +1313,1.1360645930838915,24.042867673167923,10.249018661418381,2.2511800189526383 +1314,1.143107311512838,28.891434666559714,9.687295366831531,3.4564601948561253 +1315,1.1321444594464622,24.722676076156908,10.087372598451251,3.5643973519447516 +1316,1.1373808574767463,24.277573895208565,9.77385761346992,3.1084991659483827 +1317,1.1380719051996506,23.49833449107348,10.191283786021813,3.123313133151355 +1318,1.136288615409517,23.465849919251713,10.469407635318078,3.1865763475991127 +1319,1.1357009808081677,24.18394029077704,10.375614857817688,2.2215510991912786 +1320,1.1340578315867198,25.295511536183316,10.526961556639646,2.9663136264954395 +1321,1.1355222634479547,22.657391464712823,9.781452869872695,2.840387112113859 +1322,1.1334219564962553,27.533966234132386,10.542135379884952,3.2907358243610307 +1323,1.1379790709275748,23.51507078902231,10.138588115989956,3.1554756050097894 +1324,1.1326570363795025,23.93506287042322,11.068735189251367,2.290815098854503 +1325,1.13063878157816,25.44269567480248,11.093139801777133,1.8670416286571498 +1326,1.1300313657888514,24.78459902850875,10.689177849558833,2.744670064294058 +1327,1.1329027692660287,23.105393080929563,9.97463324252936,3.244641276347215 +1328,1.1278573547412734,23.81523218764802,11.243799300024174,3.3170864529914046 +1329,1.135245656984504,21.108476294787213,9.738448852169485,2.813583810250683 +1330,1.127674669292898,25.046038765813204,10.730041793488045,2.9235139034694715 +1331,1.1338238886914291,21.99698293972159,10.087665257478932,2.8434114689052743 +1332,1.1336904938686285,20.622442122480273,10.181704788543708,2.5051778399285176 +1333,1.127658652140401,25.743375480282683,11.18701710547749,2.727753597484926 +1334,1.1306837901534388,22.35895444000877,10.858681901523992,2.96019908483834 +1335,1.127958906729437,24.081829425879448,10.1818900555489,3.1389366310744515 +1336,1.1287679664663615,22.469399659468998,10.421351953508898,2.757332046397319 +1337,1.1331919181886403,21.50541403579743,10.36996962206707,3.127397075935166 +1338,1.1325791379762165,23.20281942784255,9.836487166273214,3.2613364138479284 +1339,1.1316983124171913,25.323391948797063,9.7144234293367,3.792587876664148 +1340,1.1315799550360581,24.683415155315068,10.465056396635507,2.8005828747923847 +1341,1.1260626030994705,24.71051022684633,11.040753985866736,2.7030551400567275 +1342,1.1316128269946542,24.647297517539368,11.01370368218035,3.1851208111203992 +1343,1.1323485640296969,24.809803725421453,9.560767348422068,4.554032585471924 +1344,1.1354684826780002,22.612439987828857,10.282073228263542,2.9342923909831935 +1345,1.13596462909955,24.362534152760173,10.1419611527531,3.8148500237746648 +1346,1.1373574763584084,29.082651663299785,10.21991819643219,2.798015126429318 +1347,1.1386633344007306,25.24010969738339,10.278014465172781,2.4630002944070286 +1348,1.135108982332005,23.54450305608944,10.584311071255147,4.506748694338218 +1349,1.138812890937323,24.73009673299872,10.708664292263514,2.6841165781499448 +1350,1.1422789416304335,24.082543593225356,9.993114397648089,3.1672116265395043 +1351,1.1400640629286074,25.31144519057827,11.357930494804178,2.279570172135416 +1352,1.1416466395027363,24.19431708993144,10.839223125348669,2.5412134407372413 +1353,1.1400242719642535,24.895876511470156,10.899090244257202,2.300491418483904 +1354,1.145446147233256,24.785534857010642,9.570899540487906,3.486766839036716 +1355,1.1440118882526535,24.24705008125671,10.761746178816281,3.6249720426167182 +1356,1.1454461838451584,24.79259760755395,11.83175454644752,3.2544400859999683 +1357,1.1418233609278536,24.132532012878418,10.707492455141995,2.879476143491093 +1358,1.141429210943045,22.350505929758985,10.96019865715211,3.4772462302153264 +1359,1.1422821535025427,23.267505686313456,11.02776519011624,2.4432243854089575 +1360,1.141034982228781,23.473682071433903,10.731181795405718,3.529300904692625 +1361,1.1416770783364687,24.545688910330224,10.528370732191743,3.6910150221136377 +1362,1.1380723638334893,22.502938008357248,10.81635464923398,2.5086548866980407 +1363,1.1498419111879026,25.024758962899988,10.988758342402187,4.214098254497385 +1400,1.1639207428761187,19.38270050738944,10.511409539540026,4.116946034315803 +1401,1.1510787907065247,21.897536672685224,11.823817239033156,2.712562293301129 +1402,1.153446758014295,23.59233759350629,10.340260118657486,4.433214903522329 +1403,1.1507598740607548,25.344068601162007,11.872392150842353,2.509656892607209 +1404,1.1523528686502675,26.15436309410812,11.587898926373938,2.109450194111216 +1405,1.1540379454809149,26.999796364026608,12.316879870338608,1.4927771708209738 +1406,1.1581872383711662,25.396153340546334,11.12413410080718,2.3899081597755423 +1407,1.1578829822032648,24.368656301306817,10.840382753127393,2.318488109935033 +1408,1.1553076607278283,24.52075855103432,10.683546219727441,4.2639283013246825 +1409,1.1522606224283742,28.045104598021734,11.715832885811782,2.3201415657227753 +1410,1.151495092256156,26.31012331107443,12.244092048258553,2.0880825295799554 +1411,1.1521550348804623,25.92440529686449,11.688928698554825,2.2149319177983475 +1412,1.1549152869482515,22.421279160102028,10.08287410455733,1.9994391124074549 +1413,1.1520592960963294,24.1683966968875,11.08639843137953,1.7250996094942934 +1414,1.1532013575088518,30.019535994491125,10.869582271945001,2.969575342671541 +1415,1.1486871950154702,25.019490441797743,10.818174559861674,2.7610051478111144 +1416,1.152594117367554,24.826407358236477,10.498925863126551,2.291831443720267 +1417,1.1503754128342787,23.889033050083817,11.167517541140011,2.555150848272762 +1418,1.1505284821705684,23.601558587321914,11.167117198151782,1.744021335727257 +1419,1.1485427743070584,25.032382428920116,10.965853725649513,1.4978126383756258 +1420,1.1497352151844253,25.96011990856983,10.997063062849321,2.502472472714092 +1421,1.1498446173319437,22.894470965794763,10.79388698913155,2.206034071687469 +1422,1.1516526175727688,27.458775649832187,11.238415148330677,2.533118936334071 +1423,1.1525492466307845,24.007871529314407,10.751309540207663,2.3414082584747105 +1424,1.1473100758148,24.234003495127293,11.87636038728752,1.667176681176705 +1425,1.1458715955920142,25.741388339163347,11.779745752290147,1.5082941077941279 +1426,1.1447522968377433,25.25209986636641,11.644931125408458,3.9446895406110194 +1427,1.1500186044730225,23.30120735290958,10.393574099756803,2.1283981317135052 +1428,1.1467200885924285,23.753274389946974,10.923528951271638,3.036869881863507 +1429,1.1514724338645443,21.723199640315247,10.652124817179875,1.962092734228552 +1430,1.1435065058006957,25.425090902299388,11.53707953154669,2.6971218200229807 +1431,1.1492021659239227,22.592997993330243,10.991855012158368,1.6384689059823943 +1432,1.1513610303072588,20.916861968751643,11.006907306898583,1.9105399268946521 +1433,1.1455985110817082,26.000516312549465,11.598357904847122,1.7525727620616138 +1434,1.145336867978428,22.963148180214617,11.359264379437626,1.8937554048203578 +1435,1.143689184798664,24.1102607193109,10.978861387777702,2.2623350088939698 +1436,1.1447350573309187,23.11985714591464,11.025120046886613,3.3215112783905747 +1437,1.148457368308731,21.78147623079925,10.513504070243435,2.0850602023344313 +1438,1.148116241971641,23.611864695909986,10.888987442554976,2.0231475234432437 +1439,1.1472941195257216,25.48150459089167,10.359743177199581,2.058060942744565 +1440,1.1474093763403732,25.179427959848443,11.671977359998644,1.8522383840405905 +1441,1.1402819954005785,25.434954891811604,12.063068831281962,2.407031865202963 +1442,1.1461162927655228,25.254355229476957,11.129520417066901,2.4063934177763806 +1443,1.147000974535868,25.148221386212178,10.846102968850117,2.2235929958520297 +1444,1.1517886460034,22.838481657159964,10.636335200047641,1.9426612579618183 +1445,1.14956389733303,24.875829937112105,10.828900460443434,1.9336563199723884 +1446,1.153353818554779,29.437134744329505,11.243654560592608,1.7801151485860913 +1447,1.1518594045481205,25.715397885360982,10.914780784920364,2.5418893968206278 +1448,1.1521425536684853,24.10206161271343,10.820823087457644,2.0655622467751438 +1449,1.1534947690561261,25.089962517561865,11.345681333264366,1.9421072552373928 +1450,1.1555845475490603,24.9203016827569,10.764778538880986,1.9676077860455499 +1451,1.153766906522019,25.741801542412244,11.824561205991536,1.6411418235394286 +1452,1.1565131598210776,24.87959308286505,11.470802441033113,1.8077442895239142 +1453,1.1566772209399603,25.345257631409652,12.03869427831797,1.460796726824389 +1454,1.1605745250706672,25.416160228101408,10.253263867896191,1.8454955572078273 +1455,1.159225292014621,24.450312772411728,11.440664244493668,2.067357535925263 +1456,1.1587522992246395,25.409177162049517,12.403348803056598,1.9651900014837689 +1457,1.1550451063290739,25.08620253627379,11.236816545470079,2.029025809958297 +1458,1.1575948696832625,22.87549796829615,11.295245830166088,1.7023273704466046 +1459,1.1569794579990038,23.675388690361775,11.765131224429307,1.9406769733547407 +1460,1.1568449326442936,23.57623053816379,11.231261342013527,2.1369958417520216 +1461,1.1595812759592306,24.189457567217076,11.11425336960771,2.9049163317049054 +1462,1.155137989355489,21.43213535228,11.557011875191487,2.0189560082785016 +1463,1.1684835659879844,22.24954146063098,11.479252772920765,3.911822593512295 +1500,1.1482711670383932,21.642084659124514,10.246708932201054,2.936660125785035 +1501,1.1377166020743135,22.394948493147993,10.644201146347235,3.248157973454201 +1502,1.1412997368480844,23.55620629946607,9.712478948508727,4.319278504347439 +1503,1.1419216660280016,24.598237024142048,11.119932771237924,2.4601005120388018 +1504,1.1455306742355866,25.40540932817736,10.475174743798705,2.177308355285951 +1505,1.1427820830894848,26.54304497402602,11.462553775097215,2.3469854854719476 +1506,1.1452418769522443,25.076155006677098,10.979294095794279,2.8445596538184557 +1507,1.1456678922682941,24.239736894237097,10.266616035232019,3.8106975330006025 +1508,1.1455695440975435,24.44300257552548,9.65209028359998,3.7123870700583117 +1509,1.14242791979552,27.483188685070445,11.4273676207128,3.0163115691104423 +1510,1.1406451633271937,26.553511372620537,11.330185057359055,3.2327533689020913 +1511,1.144015021929255,25.64465253038618,10.560147468492767,3.7694496895475282 +1512,1.1458901823526797,21.85357741593691,9.267141640184036,3.138802053532873 +1513,1.142903554208557,23.89130015074527,10.109229207221016,3.0814971842046366 +1514,1.147528647072289,29.27345599444334,9.7435869329313,3.559579726401748 +1515,1.1383802731272066,24.74832265005103,10.116206531595838,3.0343638461791707 +1516,1.1426907451738142,24.603619995480056,9.937537512091657,5.011821402238711 +1517,1.1430878188894456,23.55664716085693,10.058993653920995,3.641383501217665 +1518,1.1412562762992882,23.94912668012482,10.67410445772705,3.425504111851856 +1519,1.1415657867352982,24.643917573788425,10.33206577751585,1.7243237574565253 +1520,1.1422222686964287,25.415799652228483,10.243060665361012,3.240714724321761 +1521,1.1427050358557203,22.826038764549264,9.664411201259389,2.5102370605992697 +1522,1.141095807974528,27.489908579240108,10.769054545634749,2.4275312970051797 +1523,1.14318566853442,23.862875404793268,10.369130119357493,2.901359519314446 +1524,1.139194253380604,24.433591476691408,11.169429216925927,2.626967233994654 +1525,1.1360419278553415,25.78557322767835,11.410060786394338,2.2230790463022836 +1526,1.1371843292921322,25.219938057896496,10.677425753428766,3.3840240200671516 +1527,1.139152416011642,23.817458093793405,9.968041422934105,2.8100267376288253 +1528,1.134972341535487,23.849393564428908,11.426137692469318,3.2571413040386705 +1529,1.1444787397631626,21.477074136206355,9.558069222815606,2.266562590067518 +1530,1.137943756266463,25.177674175129628,10.937535608237525,3.0825882650893095 +1531,1.1408235230772041,22.43072651058967,10.325731574672442,2.4489901344661575 +1532,1.1412079501013397,20.831039649008392,10.515761814880857,2.0919781573256575 +1533,1.1364880638579575,25.885042425283707,10.9572950240419,2.5084060267564063 +1534,1.1381641771943252,22.760901029768128,10.963228187556807,2.557060232612201 +1535,1.133168423084795,24.5388368213393,10.60724073132362,2.2244576205727538 +1536,1.1356952271327454,22.669658203263218,10.482223150220145,2.4706124710637503 +1537,1.1380534990474713,21.84877860135982,10.083851528889738,2.7744086763070603 +1538,1.1388676604079309,23.581197505391554,10.060955596302968,3.123966258599391 +1539,1.138614470839916,25.475090444097656,9.857083202812495,3.74666607422353 +1540,1.1419411227986382,24.410119432546832,10.413043037416404,2.199947091808802 +1541,1.131042519041377,25.51739077036042,11.213530761486249,1.8574715990937416 +1542,1.136816743113375,25.19909581306394,10.824868930732777,3.36608128434802 +1543,1.1378577561591,24.622675597492908,9.975048274045935,3.2567404204755186 +1544,1.1439902655212564,22.920909494818236,10.433526580063363,3.0429759518585286 +1545,1.1417223316883347,24.69048502977332,9.810651228926595,2.9624223565672065 +1546,1.143274607536218,29.611863390591324,10.383464323079409,2.397200363337382 +1547,1.1445857154597268,25.03201105278959,10.844749064446644,3.3362156861137704 +1548,1.1422598293714878,24.046305088341533,10.491194100553077,4.465878481250316 +1549,1.1453305767040718,24.532243281489396,10.586492350087232,2.977516062715019 +1550,1.145368198290109,24.497308043697252,10.141780177690064,3.0805571264133222 +1551,1.1421137776474404,25.65464085117036,11.687541374984765,2.16757637642191 +1552,1.1461444864073036,24.595949524503332,10.918687802899672,3.1674720158227196 +1553,1.143568280614313,25.160959183294842,11.112682280748992,2.5545454830712715 +1554,1.1507779285065045,24.938090106089128,9.619537839509546,2.117861677013776 +1555,1.1516142797087772,23.62970954259111,10.735566100016324,3.5673138867125465 +1556,1.1485718828079783,25.025304878254357,11.741687703818494,2.539456914358753 +1557,1.1459227283907518,24.236704343915125,10.827239755034384,2.9578552358029144 +1558,1.1476601115142417,22.53936983820119,10.679118172192469,3.425580972060669 +1559,1.1445685525325568,23.777831398089344,11.07750120699924,2.004452903511352 +1560,1.1485415461301116,23.72934646336135,10.384123075924109,3.51163549965237 +1561,1.1482594784554903,24.908137370365242,10.830657398710056,3.8933580414833124 +1562,1.144364621581615,22.552221828628007,10.368220466238137,2.7931580872827952 +1563,1.152819063921711,24.226341782828733,10.868810326765658,3.408836812185669 +1600,1.1507618612631632,22.32513138720305,10.224476271634481,3.044128126530837 +1601,1.1383174379873093,23.60214475077722,10.507150638514688,2.804476546083531 +1602,1.1397643122696806,24.570995863403386,9.815947671702647,2.9391396714448295 +1603,1.1398691038232645,25.75523255077978,11.573331672065944,2.7627497948324464 +1604,1.1425808513974869,26.681608187461507,10.671770667303207,2.1410287138348396 +1605,1.139588600830872,28.04171918957586,11.98793667486658,2.6440562549772686 +1606,1.1434690419776765,26.44578528897962,10.360042478674634,2.6714101944286153 +1607,1.1456452083653108,25.261985119104395,10.438690649466457,2.9640275506531215 +1608,1.1446292464356518,25.700463651738147,9.913253173436706,4.132842926005035 +1609,1.1415921633672508,29.14131218349935,11.287406544452047,3.053773612997773 +1610,1.140260275759607,27.55577892371623,11.607699962435508,2.526610709956502 +1611,1.143230135248504,26.940871271921615,10.912282635230104,3.002666415216147 +1612,1.1457607825238514,23.404733428780883,9.332883469100562,2.8297937605263455 +1613,1.1402128967980814,25.512079160106513,10.457125109283378,2.5788860732109993 +1614,1.145105207543367,31.259221964737677,9.914571625097073,4.009807548935884 +1615,1.1382990947413196,26.32112567299108,10.376716777534805,2.58274155118772 +1616,1.1427601317369822,25.942482406249937,9.813932254979607,4.654092397241677 +1617,1.1429516599612206,24.9717846249839,9.917094532683526,3.1572951078749085 +1618,1.140629931846834,25.33442502597616,10.919652932059277,2.9927643058345486 +1619,1.140123141735029,26.06991650629312,10.316906692250157,1.9392756243121478 +1620,1.1406892627442202,26.561123352116088,10.823957617391736,2.8941746446888064 +1621,1.1414084851464708,24.207945323994807,9.914870746585073,3.144954214073263 +1622,1.1413615940232944,28.898286441316102,10.397414301397593,2.791664226314045 +1623,1.143654320778581,25.473801834190652,10.176514127025497,3.095536454823201 +1624,1.140236272448629,25.99827887170214,11.534650408611993,1.7625913102769126 +1625,1.1399697080504705,26.70070600841158,11.225016557724558,3.2689794127070773 +1626,1.1381434552739502,26.779087594804494,10.90382740446358,3.0525563734741623 +1627,1.1400208904565343,24.684770753952588,10.25800473123134,3.5136687543697205 +1628,1.1392812705811879,25.017580603621372,10.87944549862417,2.575418934813932 +1629,1.1458534763155759,22.92620926057606,9.877160821405031,2.5288426233567662 +1630,1.1364580363024974,26.659979279962577,11.144483549548191,4.609212308564995 +1631,1.1424238135158122,23.744994437196173,10.04295911278886,2.696044468378445 +1632,1.1434317581547067,22.34007591802,10.444812390331311,2.4435443429009958 +1633,1.1366264439526566,27.52420732536539,10.823037430578802,2.0865535505872224 +1634,1.1379993991201778,24.60206189550817,11.159147509747555,2.26172711042925 +1635,1.1342624810918551,25.450590753182496,10.826708962241927,2.7036189100118655 +1636,1.1364634442318111,24.48003595593983,10.683099836357762,3.1878253277685813 +1637,1.1419630922783786,23.277797088593548,10.13686118878571,3.714600324381218 +1638,1.1402735090734493,25.076686229672656,10.593483048464597,2.9195495784034464 +1639,1.1405973190083423,26.810725932176542,10.11304791450203,3.085281933083932 +1640,1.1404325129555752,26.083574188488907,10.374812359558257,2.2289680421689124 +1641,1.133132049382945,26.55579377942455,11.184575773704461,2.3790330252677547 +1642,1.1362102076412133,26.683345192336237,11.006998847364525,2.8309262055379962 +1643,1.139358170788173,26.235460528368556,9.884440152983435,3.4132507243417676 +1644,1.141577170794567,24.33293091722501,10.764590694066374,3.2503971584042026 +1645,1.1406291666363915,26.07303435185549,10.258608520169417,2.8888818503037554 +1646,1.142700080256084,30.598101644800714,10.853159322474475,2.8985130653043467 +1647,1.143956033814901,26.635294034412667,10.526143678430095,3.384916690688498 +1648,1.1415861856588538,25.302983772025172,10.283636992108535,3.9902569887843695 +1649,1.1407204994840043,26.46967708313972,10.956537118076108,2.041969704867502 +1650,1.1463091320439664,25.568723463541744,10.257663249849953,2.7352566101413047 +1651,1.14103309654241,27.273116694570646,11.76410100771152,2.1248154580715384 +1652,1.1453593797495618,26.155230600386894,10.893920462357977,2.799316401719068 +1653,1.1453248735789237,26.371231086731033,11.381818902986184,1.9172281443053327 +1654,1.1505982356118594,26.25454139418051,9.976831670210007,3.958554547965419 +1655,1.1499145090858875,25.48555092977793,11.010016128755101,3.1416027137980542 +1656,1.1472012413266917,26.27905161977359,11.807075821641918,1.748417275873372 +1657,1.1439401520498707,26.128454441594076,10.844732912490846,2.2558494715680673 +1658,1.1475732304116266,23.882862582484268,11.027174543310204,3.0206585597271287 +1659,1.1476867878120869,25.079282067823534,10.824494191998932,2.2257960486464943 +1660,1.1456290100372128,24.938808848557354,10.823189109934257,2.4599863308623777 +1661,1.1475433739025664,25.74708971243326,10.89306560675753,4.823314237307912 +1662,1.1431371704916375,23.82171820698508,10.887862245275716,2.268927382236992 +1663,1.154149668960454,25.802424798655725,10.866445754973833,3.4316598525898954 +1700,1.1429137059071197,22.029463676587042,10.389229979409059,4.538179268037447 +1701,1.1292942887016968,22.74169223276622,10.764830567859907,3.0170133330938977 +1702,1.1327481059428077,23.359533878306657,9.741285250935553,4.09178842490893 +1703,1.1302015541797232,24.43256241917507,11.545698872571789,2.7129044280271737 +1704,1.1315958398337103,25.783036707005632,11.026972735650594,2.104780387334942 +1705,1.1322288512674878,26.823260248162928,11.735076513336967,1.8346782439269351 +1706,1.1355426865766474,25.336857034970908,10.67496766837336,3.1426549548201606 +1707,1.137780325183521,24.18409761505423,10.188399835696359,3.6488778309674914 +1708,1.1360588365040416,24.301614474681376,9.973313853690376,4.282942898849446 +1709,1.1337548214733697,27.98485716203837,11.231119844079076,2.43418487066695 +1710,1.1302812515968703,26.510266545625463,11.590475567290804,3.5201153050166036 +1711,1.1354575552478363,25.867248817657394,10.62437692167677,3.471712887185258 +1712,1.1354588064078528,22.252803616847586,9.627576024741604,3.124265493231969 +1713,1.1342606006669618,23.808312432643916,10.56328458259544,3.642191520121197 +1714,1.1376025206779716,29.65019128004498,9.715009031107117,3.2759251962710385 +1715,1.1298259392786572,24.75975505184065,10.284695357773863,3.4611102669344365 +1716,1.1354259708012333,24.644770485811932,9.833052751322214,2.5856151742274154 +1717,1.1348872832816277,23.471534175499347,9.983893812920702,3.129050809055819 +1718,1.1335860324481029,23.8151838395647,10.970642780278757,3.118618380604633 +1719,1.1340261189779168,24.964152413560633,10.119943591226436,2.194833299143566 +1720,1.134291215160324,25.57585514493903,10.668054620089329,3.263517473481862 +1721,1.1355393470448432,23.042042643154364,9.821126813022671,3.0774224649970314 +1722,1.134043597878823,27.89629159442293,10.341926823000467,3.195119563980689 +1723,1.1378982730285943,23.919201250896037,10.220734421666393,3.116091532291336 +1724,1.1351544202649357,24.142671272559507,10.96762022430214,2.6017117978780866 +1725,1.1323221634183749,25.793502279013797,11.172965394101794,2.734098344635092 +1726,1.131840444650424,25.257124172982767,10.691778322583756,4.627820646895605 +1727,1.135444835587358,23.62782913967618,10.125669369389273,3.2735056919923857 +1728,1.1327612508183935,23.82213427081082,11.323794966359728,2.731549385133836 +1729,1.1394725135454558,21.538148786633002,9.625104151482912,3.6095491823582058 +1730,1.1323332544773461,25.546590052977805,10.786229723237188,3.245660261955705 +1731,1.137030264073692,22.49148253617689,9.930253572573783,3.1562975357751837 +1732,1.1370339677966916,21.18436061017779,10.37380342791942,2.6594341499274696 +1733,1.1315726331854434,25.9600162116277,10.935240601702061,2.53514030110173 +1734,1.133175333175911,23.063680909179123,10.725149289012137,3.1205928847393096 +1735,1.1291632950383967,24.596019490797485,10.678803065944248,3.2974007491411523 +1736,1.1305916427273313,23.066839291736922,10.60233762291289,2.7500471343033426 +1737,1.1352771980399325,22.10844833348602,9.876268389185537,3.1056413649954004 +1738,1.1342630220416143,23.97544757038773,9.892814141794322,3.860684644432079 +1739,1.1342081630026783,25.69980876311029,9.708394479573952,4.173421219837122 +1740,1.1342076510712795,25.117405107724046,10.46947153723535,3.004857122987564 +1741,1.1259898688900478,25.626003948899683,11.161472505997583,2.840587243751372 +1742,1.1318521860369717,25.158284967541526,10.959023643708981,3.350256535174411 +1743,1.1325680486337322,25.195262169603634,9.622363131218096,5.17390312688053 +1744,1.1349862037229705,23.07552145490023,10.221998654597321,4.513684647585611 +1745,1.1354104113963406,25.032162731343803,9.583325461862989,2.5806156758526617 +1746,1.1369242913423139,29.66102160939111,10.123449863402818,2.5416856245914974 +1747,1.1364812093163215,25.36396981261711,10.603091659537112,2.775551162991494 +1748,1.1340063385330026,24.177151469110324,9.966938921816025,6.562360855350687 +1749,1.1358129603104845,25.381375370080438,10.817060656415489,2.3168943933909856 +1750,1.1367480983831626,24.630037213895587,10.369052860935286,3.4695088726616676 +1751,1.1356862664456933,25.67206809622087,11.160124852832885,2.0943772028560756 +1752,1.1372511613916285,24.71568402488111,11.232925377887897,2.434182654298702 +1753,1.1368013042009182,25.25014936531133,10.89239407900757,2.418733979148091 +1754,1.1414052477996302,25.103903505759266,9.78960976420332,3.7640712177956024 +1755,1.142330058086174,24.287151660847726,11.130109321538411,3.6461235078373573 +1756,1.1407159307582129,25.174284000670088,12.271273835650662,2.2370886870441833 +1757,1.1374346308492727,24.88004852737648,10.882954052699649,3.16933529765245 +1758,1.1396854057953378,22.603253045564777,11.329722947731153,2.7492980388934343 +1759,1.1397988679579538,23.655235001000772,11.031034330924827,2.603567360015609 +1760,1.137325107571864,23.69256552900626,10.659861719385743,3.0902149895311894 +1761,1.1395562545654507,24.935321272805304,10.316450966225696,3.1979575687202435 +1762,1.1368356166164257,22.828013457330282,11.047352657244398,2.4725549466291525 +1763,1.1457937615273723,25.36641431803525,11.080821498996116,3.947229126491398 +1800,1.145279996272675,23.1688381711564,10.922740403957134,3.576206952097254 +1801,1.134702058791728,23.57294407631807,10.805268539354568,3.711241966416178 +1802,1.1328383601792054,24.73092890120968,9.769260466567586,3.4350085120418616 +1803,1.1359429371959808,25.584752656888156,11.240250950074683,2.129523953138423 +1804,1.1368772713206634,26.355250793862872,11.125493142595946,2.0895690247086534 +1805,1.1339614862335896,27.732917476144987,11.803639534027068,2.9314233040534927 +1806,1.1390782535365356,26.296440628429465,10.468321823273124,3.9238879531020348 +1807,1.1413805285412768,25.51606030724016,10.060555444340903,3.8158193743482967 +1808,1.1383361573578952,25.956967292497474,10.137794179343375,4.90250987698399 +1809,1.136503499637573,29.110886782335292,11.292311831739777,2.845288899993428 +1810,1.1330555743127486,27.82319178141469,11.651612635212791,2.6488605020422566 +1811,1.137045147483869,27.2514797605709,10.788654392538058,3.41124943829881 +1812,1.142018438014481,23.079403116616575,9.384434080792024,2.7333813820467814 +1813,1.1388852844791777,25.348554443153773,10.242799734103485,3.0972623200864713 +1814,1.1405913026579804,30.83874108702978,9.772659598291904,4.419038778750416 +1815,1.1350746962619591,26.28900614762983,10.289476736471501,3.688818167403584 +1816,1.140106693796472,25.783739706747767,9.774975637791359,5.473889354337313 +1817,1.1411389516319712,24.7975445453128,10.171545993836675,2.8353326855372645 +1818,1.1387539923968528,24.876262958774245,11.090427382736886,3.508464918034026 +1819,1.139323607768065,26.26122006367503,10.655080751280963,1.7508072030491801 +1820,1.1399781756630247,26.961280761938145,10.782915883139365,3.203702647019366 +1821,1.1433471117175171,24.002874037151166,9.55835438579137,2.9725182107516592 +1822,1.13755767507739,28.79545747025929,10.522561960747998,3.388050882874694 +1823,1.1422367816377506,25.42979999234777,10.224931959808089,3.9823764954209713 +1824,1.1395163430116009,25.97597739427703,11.071789094743357,2.795607297818412 +1825,1.1373052860328583,27.184269479032828,11.51994862013939,2.319966091984604 +1826,1.1404654367504687,26.362164420014196,10.904921146274015,3.4933952795212333 +1827,1.1411595480371728,24.89472394898056,10.113657294944339,3.1304277713196993 +1828,1.139302252979375,25.39869342561494,10.911676639689606,2.81457300834953 +1829,1.1438749107403594,22.932972551760237,9.753838414965857,2.7256315890226936 +1830,1.136298322678801,26.68773463979475,10.992667943807271,2.5355245041325465 +1831,1.1421890747196577,23.780884431574112,10.02966452224131,3.7112754845024947 +1832,1.1448329619334539,22.368825276766202,10.59397624725272,1.9498121738976961 +1833,1.1371576768748057,27.754052625731436,10.976795741274914,2.850010398241483 +1834,1.1390538130067285,24.435486383605216,11.006038358838246,2.956535112690124 +1835,1.1351778023359453,25.814998023686567,10.596838150414083,3.452086874888471 +1836,1.1368628462058283,24.404181103276866,10.501676261607107,3.1567871605215703 +1837,1.1409994426485628,23.56041754082376,10.23755227996811,3.2630039023205972 +1838,1.1393156165629095,25.225078881221993,10.068348782171027,3.68922242246842 +1839,1.1406464619048706,26.754772902461802,9.888655890667673,3.0783785941944966 +1840,1.1394965624873439,26.43727705418485,10.279475997256847,2.774303714997931 +1841,1.1325405021319859,26.76321621116595,11.102831561354346,2.147385650514673 +1842,1.1369682265422287,26.433315284421425,10.811381773068517,3.4414358455887033 +1843,1.1375372796575545,26.31581607365156,9.86652180466445,4.503127965889755 +1844,1.1409152127810223,24.111408816877248,10.203377919616754,2.7115967756438177 +1845,1.1410159083503308,26.090812725569425,9.877506388168733,3.1756371046415826 +1846,1.1404386908672755,30.98077453613357,10.237049449872103,2.7708675033907095 +1847,1.1421191444953105,26.689244074752263,10.93349117417535,3.124797471564216 +1848,1.1388890818798845,25.042663875035682,10.331957755811887,4.697084730815006 +1849,1.142087375607805,26.287720797383187,10.88424075847306,2.4366269436407353 +1850,1.14443514002371,25.568766440529288,10.583133838013843,2.552888223432764 +1851,1.1383319173618527,26.8980209982193,11.404444203658084,2.557929387167162 +1852,1.1406748946396639,26.17710144021664,11.018583836241627,2.4502312107416557 +1853,1.1407913312927132,26.54482580019439,11.373837369058828,1.9500141593864493 +1854,1.1471154031664792,26.108561610248895,9.895454986678217,3.6038799296704926 +1855,1.1472687034103781,25.249312815990734,11.204986134556291,3.3944181919358445 +1856,1.1438194831502966,26.561054613370974,11.910849277975519,2.790846302671653 +1857,1.1427208100654838,26.04413447553264,10.616233558561325,3.528547607016016 +1858,1.142617022404284,24.12493203578467,11.029522262331144,2.793922624565842 +1859,1.142320106787432,25.233350109905423,11.096277929429718,2.0527636719753386 +1860,1.1433827087993778,24.87342741835941,11.17747782979102,3.1703161803463646 +1861,1.1449193110931257,25.92516002174121,10.66467859294461,3.4180637948511934 +1862,1.1391105006543978,23.880199058634684,10.834022697585972,1.7603278595591447 +1863,1.151111107351763,25.86752864598799,10.924583688017997,3.339159385732172 +1900,1.1422260098349952,22.09591039112153,10.66677211429609,2.760354372424982 +1901,1.128051130025209,22.729748278944378,10.8945063342078,2.9660494779163322 +1902,1.127486588322982,23.51928980140625,9.866564101880467,3.194839839942855 +1903,1.1268059197266942,24.42614703979956,11.530116966603066,2.622542299651852 +1904,1.1298706400392584,25.007029268526423,10.89723892215597,2.3920411917906574 +1905,1.1277170193972934,26.414858732847875,11.607289064175914,2.4554740920307485 +1906,1.1315160827632553,25.188275892962,11.088512363814637,2.283206815839059 +1907,1.1327163290727895,24.140698450421237,10.246610323851606,3.203605331113564 +1908,1.1339666771489563,24.396390469857234,9.988483379010042,2.776450119295631 +1909,1.1319214078143904,27.779417398161335,11.28843338425869,3.1408262044417046 +1910,1.1297441871171,26.3311468958625,11.689400098632932,2.403817342436353 +1911,1.1309689017915285,25.93665291975028,11.020799965487601,2.6980852040352183 +1912,1.135476060161259,21.81514498625932,9.22196157143084,3.7266236172838654 +1913,1.1310232525322717,24.339054955152953,10.532273590826563,2.5909705265701435 +1914,1.1343370548507579,29.764489412331773,10.125930759486877,3.5684474366910512 +1915,1.1284309753540187,25.119366777118,10.23125694079969,2.895771478704285 +1916,1.1343252191779856,24.58895057708719,9.976257202869387,2.6724016090671916 +1917,1.132543708199069,23.982699815981405,10.11328252682727,3.732383730083764 +1918,1.1318422633157532,24.17680095515698,10.64121269605031,2.2470486170544346 +1919,1.1323099866441162,25.153862697005923,10.218461554427419,2.3544936292288763 +1920,1.1345718518838266,25.56269587906936,10.568590756300921,3.4333609301398567 +1921,1.1361074704811034,22.714137947229936,9.395434058321962,3.7681190819714527 +1922,1.1343290267859962,27.714343943783625,10.6670306581672,3.2245298175702737 +1923,1.1397542019386724,24.02803844189153,9.989249445788722,2.9232794294241007 +1924,1.1351160236817246,24.52437003867845,11.286834026240822,3.2765360159978942 +1925,1.1325565773160833,26.01946885718288,11.340135655144442,2.2098298020553786 +1926,1.1332742769538067,25.315838281731043,11.259618646939947,2.7881730841980885 +1927,1.1365964249517588,23.693973836409224,10.125790289678037,3.9428211833084115 +1928,1.1329393665564644,24.24813981502224,11.212480612967118,3.339789441986187 +1929,1.140335184957214,21.914482899655095,9.592726499235104,2.677005866941906 +1930,1.1345030177567474,25.17138685420519,11.131899737178676,3.01263267439021 +1931,1.1361489572687682,22.887934144936505,10.034969498911584,3.75759194547183 +1932,1.1428721814810683,20.804939474806403,10.18304592530905,2.861689461269236 +1933,1.1332263220371677,26.009432840889563,11.328649797915565,3.2916354596603736 +1934,1.1348059629649465,23.18608746960901,10.76985705595438,2.8934381805004072 +1935,1.1306421999216698,24.446428857900543,10.56770858079283,2.8045078298213535 +1936,1.13342762339325,22.97306566552582,10.779943575919786,2.3440989756565003 +1937,1.136291518860935,22.056716818374767,10.032405735083929,2.6709302647614606 +1938,1.136792219078536,23.500261256668082,9.778828398131928,3.591940768844802 +1939,1.135183365616852,26.188454572645362,9.906740500343675,2.670244314366527 +1940,1.1334919787421804,25.331245112524563,10.360747264535352,2.750341506012374 +1941,1.1277365830849448,25.463743585469214,11.296866055962273,2.133633455137536 +1942,1.1304479713635527,25.128410363271232,11.073134551617354,2.994804447893218 +1943,1.1318553866211878,25.160529652473436,9.740729508893407,4.791125711106287 +1944,1.1355202987850825,23.239894882938646,10.089807272440865,2.891669739558258 +1945,1.1338243418892957,24.728437236407665,9.820027447276006,3.0318628090146547 +1946,1.1373929058987617,29.563872741831137,10.309749056571734,3.6698024059246817 +1947,1.1368010198040268,25.584555075796704,10.407862879906412,3.6682515279791943 +1948,1.1352315476779458,23.815031751288128,10.17104738077586,4.0134691689197055 +1949,1.1352606622153503,24.930276210895254,10.732838937955043,2.8875266922326985 +1950,1.1359377709142764,24.676554410449192,10.678946009250092,3.079507706625969 +1951,1.1320080507653532,25.784148710213785,11.876599409415785,2.549589816268461 +1952,1.1359612502929335,24.415917421919893,11.086764307237686,2.0584788611483225 +1953,1.1350018793813776,24.998782407611724,11.45521928105174,2.543493502704981 +1954,1.1389738787831252,24.9257870542176,9.987634943022332,2.688516153633699 +1955,1.1383184602943368,24.40076656113656,11.32237336392277,3.3014072007828172 +1956,1.138155764053525,25.510109904360952,11.682402386925636,2.0525363789386066 +1957,1.1356154825197047,24.63784333397188,10.507004109035808,2.2861404029896124 +1958,1.1373342544074734,22.392612745564414,10.865557496437502,2.9349773187429045 +1959,1.1354743558165168,23.597389628950538,11.309144256739117,2.328849350695925 +1960,1.134563158550411,23.701682358041484,10.343223649634586,3.126027899482125 +1961,1.137911189141386,24.964452670594387,10.814845450174102,3.2816654441096214 +1962,1.136076111732698,22.629713629104604,11.226476540509234,2.0689133318881554 +1963,1.1457615679329662,25.383481752105972,11.32896491263765,3.8027744796859957 +2000,1.1456545569149073,20.97817706824657,10.721775789824736,3.03651248453886 +2001,1.1306125277301466,21.707560273125406,10.895075721235019,2.8129163538283213 +2002,1.1338560164482128,22.49184518751103,9.925784439531038,3.2846606426633222 +2003,1.1317882970791515,23.531455055626246,11.564544557484275,2.4511630999193894 +2004,1.131919548578519,24.508813564967177,11.12064485134482,2.1383459379011516 +2005,1.134199398525669,25.55392359251852,11.23757023546327,2.473381213183666 +2006,1.1361242685342487,24.071365858009997,10.69849890712672,2.647343027138111 +2007,1.138635014117819,23.480124914338898,10.115130517317258,3.2770889871595235 +2008,1.1374239671663882,23.956979291196717,10.221527413574291,5.914130725853674 +2009,1.1368540410679195,26.795527559612424,11.18999518998399,3.072692329706177 +2010,1.1332467557977493,25.559044266624152,11.984931553933437,2.5388236781073434 +2011,1.1367850809319977,24.909968094655312,10.668264476653514,3.943244291465792 +2012,1.1421858145982002,21.043123522618757,9.412358477139227,2.6660476032854787 +2013,1.137122256503443,23.322533286624797,10.573248198617373,2.872189922741498 +2014,1.1434027739103865,28.799449962440185,9.727082090906263,3.7463201963563653 +2015,1.1334565415040438,24.207646073215486,10.260414053530344,3.1884019290568704 +2016,1.1395706235519776,24.045781263562066,9.759852155516231,2.3973418187503373 +2017,1.1409156353354646,22.851018819534676,10.623690075513904,2.8070941197529367 +2018,1.1380488726033358,23.025693202472887,10.983845715873196,2.7430947052634496 +2019,1.139921009331595,24.075376065811593,10.572659195715813,2.175050428153835 +2020,1.1414668199883315,24.795807895388176,10.62126252758333,2.1731511748143073 +2021,1.1442903364731474,21.751870461580925,9.634865402950377,3.9840307377716266 +2022,1.1419834973159277,26.922665336773072,10.542990128423481,3.5143833343010122 +2023,1.1444616058948016,23.274108856727906,10.189845252452985,3.1664270392364657 +2024,1.1436313847463078,23.646996208803902,10.989593225009768,2.675043979643795 +2025,1.138812046574564,25.07426698760548,11.083475676259155,2.6960786508883734 +2026,1.1400238594064933,24.786727027259833,11.011859566805123,3.6033330669021466 +2027,1.144823857405698,22.851674538367096,10.044301310530296,2.2262949492686364 +2028,1.142735547426512,23.019178618906857,11.014243953234116,3.298177276473364 +2029,1.1486904377761433,21.079240848021527,9.862691289622502,2.3596602650249596 +2030,1.1404899896626697,24.894371124464374,11.121565529796655,3.4926303872840814 +2031,1.1476615615851389,21.34752764167759,10.270056973461916,3.0892564539289906 +2032,1.1498726210625854,20.027840221793017,10.438869962821212,2.1443030259367544 +2033,1.1382969892726094,25.451438414587646,11.264149142505774,3.0507058899019124 +2034,1.1430782395892327,22.341967594672564,10.864779546873637,2.675141589177743 +2035,1.1381478579537954,24.021459399842275,10.557164108190342,2.44818907846334 +2036,1.140134686683836,22.12386781711154,10.68316069878802,2.4778270269059437 +2037,1.1432447097864065,21.151847758000407,9.995029504139255,2.9606820409965637 +2038,1.1442328511466768,22.463392130591682,10.284533050568351,3.6849171180538804 +2039,1.142994263659563,24.90252891149118,10.107137463848096,3.116073385615222 +2040,1.1425070739216405,24.066092464696215,10.30832294719686,3.0096558201477945 +2041,1.1332262668614186,24.784194684894494,11.565897461073787,3.281381589380518 +2042,1.1376044098945592,24.625227775766643,10.708973923163533,2.625052643156081 +2043,1.1367992457779226,24.32646672488749,10.002357706383254,5.84419591178529 +2044,1.1422311546990027,22.009644749959758,10.171634467328916,2.6643236005085935 +2045,1.1391845366278335,24.11159488531025,10.06985438375091,3.220988624094199 +2046,1.1426187827293004,28.62987573488214,10.110617681543959,3.280085497732918 +2047,1.1418683260109321,24.874733531833687,10.839877669591534,3.0378547747660245 +2048,1.1400026480099772,23.06257516773298,10.401662979360193,3.3584059201910152 +2049,1.141619828669746,23.92516199881096,11.159631784112689,2.709576561894813 +2050,1.142167255596504,23.69619091967009,10.154440417260671,3.0924217268987118 +2051,1.1404475202932605,24.677077900375117,11.528297954923433,2.1450375166186975 +2052,1.1394790024613066,23.810599870803504,10.978546861998735,2.652678512215875 +2053,1.1387173228377931,24.11755672507777,11.638220370269694,2.251848263917309 +2054,1.1473440941617612,23.938548440630292,9.921937130183863,2.8733725988752292 +2055,1.1447554724785787,23.450994720309,10.66792252687845,2.799512216521528 +2056,1.142584420736734,24.015602619382637,11.852834145279406,1.7413497389701982 +2057,1.1407897110918834,23.911102436489646,10.754448870674223,2.6223658952264373 +2058,1.1422030476735197,21.721936627628875,10.86375341526742,2.500794642148854 +2059,1.142189763925929,22.79841497276041,11.087659422793957,1.9380639611212562 +2060,1.14122276509139,22.918154884106585,11.10594481052364,2.7835465172315694 +2061,1.1437309034762442,23.867259148864747,10.31916152931438,3.0441904897994383 +2062,1.139290170973663,21.573161558157985,11.259704587779394,2.156475152407045 +2063,1.147861403646376,24.04205273552759,11.27512358464458,3.5610781034747374 +2100,1.1485355345226549,19.251399743150586,10.623102246426779,3.4904757955732837 +2101,1.1371686089881359,19.970080643860737,10.58624075474911,3.6034811967179126 +2102,1.1351264386894657,21.28410221228384,9.871651936307071,3.9956367654597367 +2103,1.136107425837748,22.488237923751406,11.495983174566092,2.525195167496182 +2104,1.1347288266881121,23.271186085498677,11.31695858819376,1.6169529413000736 +2105,1.1379266309773082,24.588620458286684,11.65732847441992,2.178864609093662 +2106,1.1389075604734402,23.379005477480444,10.4959870454318,2.352744531493314 +2107,1.1419268034472994,22.296392909996815,10.416237610811635,2.9289381520931563 +2108,1.1392684902139356,22.66985702054032,10.018034640468551,3.9690446757538025 +2109,1.1393929916692438,26.252873257437923,11.092443841511697,2.547607659130924 +2110,1.1384750833671982,24.487196730874206,11.545615055258876,2.2010596054212312 +2111,1.1405962949219068,23.92913801162676,10.890838948279125,2.7757497114873386 +2112,1.144701619827768,20.318432994928198,9.551630068696777,3.1154407619493765 +2113,1.140819355569744,22.1994967498976,10.455891177503322,3.3970552047524882 +2114,1.1455520935683805,27.839416103366812,9.924906457810076,2.3434107948868346 +2115,1.1367976963414614,23.17188312687004,10.593458127689331,3.473518739814283 +2116,1.1437403620554063,23.00993927011302,10.069613264695029,5.9246336298485565 +2117,1.1459969123725873,21.904847300549648,10.309186183931873,3.0780797142590246 +2118,1.141811711249878,22.572673649143983,10.872195512892668,3.3193966149533343 +2119,1.1442073935951995,23.153181173388706,10.344230695247816,2.2799903717999817 +2120,1.1452913653749934,24.037408606655397,10.971514254946522,3.0397298933300485 +2121,1.1486822472693536,21.215657940880604,9.809434096752199,2.892999652509213 +2122,1.1465840787421455,26.01052184032511,10.574378323984192,3.000076106034513 +2123,1.1493350671060438,22.493106500412832,10.516793650378842,3.4923001917049876 +2124,1.1473992833319073,22.986470975854914,11.223877126343211,2.6080511899523313 +2125,1.1447798202802737,24.4570545974275,11.543201135829621,3.3987859969523715 +2126,1.146863831448208,23.74317156563705,10.724408832903196,2.0547540731603853 +2127,1.1473230048474212,22.42349126079931,10.314799921177041,3.8688462451207792 +2128,1.1492486071443404,22.100640765465634,11.171407533109832,3.2100749867399303 +2129,1.1559749077875545,20.107710470777455,9.758904279946771,3.002885709106958 +2130,1.1444485912072688,24.067235921723256,10.924590184105854,3.694341063767369 +2131,1.1500753128355832,20.96006714260443,10.242499964168667,2.873066153074891 +2132,1.1548722818470698,19.502193059275356,10.660242400321877,3.4029114769768327 +2133,1.1445526649991369,24.764834611704277,11.306538307820695,2.6328672350581135 +2134,1.146776783464436,21.685731866969533,11.036438578933744,3.312673914336691 +2135,1.1430782447516665,22.921529408177708,10.49476535766555,2.4836970456024834 +2136,1.1446151509719682,21.371383730241984,10.912251100354265,2.700788267808472 +2137,1.1479310852484248,20.682673585964995,10.294705936259975,3.2089354393211313 +2138,1.1487061130529634,22.09807378080978,10.15402873346689,3.086678563603436 +2139,1.1451091598785355,24.059047030247207,9.976705850965242,2.954602927303495 +2140,1.1496202042519537,23.14585625903527,10.572753358004674,3.0046021491191772 +2141,1.1390624451547064,24.058051127956613,11.12061315729084,2.4507021530045474 +2142,1.1435432037222817,23.504252858742095,11.054486112424678,3.6188647226487607 +2143,1.1446116201738203,23.141036457694142,9.886503997923883,4.250680987235031 +2144,1.1464129896376163,21.589467501034054,11.00939208251648,3.768951252348153 +2145,1.144929715711726,23.236466255110926,10.536294693899233,3.082185741384258 +2146,1.1474931330242277,27.74732483449161,10.264931352755596,3.19826015587152 +2147,1.1458896654625106,23.648647910733395,10.917093708382925,2.9247191871713554 +2148,1.1426749811455674,22.418053712423507,10.633784638584075,3.93180773173982 +2149,1.1454663131223155,23.244904568816672,10.989727242393572,1.9839979443822369 +2150,1.1442231947065749,22.669235439716463,10.368416583631719,2.726784051529521 +2151,1.1426806061464694,24.008300082127715,11.493472179597154,1.9747686887841718 +2152,1.1442197388606616,22.981645022201125,11.42783121578009,2.506652674200322 +2153,1.1434840604575873,23.374263271820567,11.555826186135164,1.7647570781378425 +2154,1.1474260783986423,23.503340697475615,10.062078933420196,2.992877419307349 +2155,1.147541633345442,22.72980112202616,10.79023305802603,2.988897938462285 +2156,1.1477395822779026,23.293299874609133,11.975826091160444,3.2647633897801263 +2157,1.1443577929275608,22.88044827770322,10.821518561528913,3.4706660821596995 +2158,1.1449800885892991,20.80021235366065,11.271113326041352,2.9338527341665745 +2159,1.1459540447062213,21.915455938525223,11.077822019691423,2.068505672451192 +2160,1.1450324383209305,21.85541309391921,10.669187386562452,2.625434359934924 +2161,1.149285021062727,22.804805056190297,10.956187227674176,3.639134270327437 +2162,1.1441359538025229,20.399865504925305,11.192472171106742,2.256514712188996 +2163,1.1516967888475584,22.859840127483512,10.72128542408938,3.352648111547601 +2200,1.141514673448846,22.551833223993988,10.465964536516378,2.968209207854569 +2201,1.128718251826015,23.066978556854654,10.75764648072127,2.790901963905795 +2202,1.1289489798286225,23.937877062788083,9.567159524182621,3.1510471896002947 +2203,1.126864486106432,24.661004784235743,11.73263791857198,1.7869514928704637 +2204,1.1282779928574358,25.480080504134946,10.895664088999581,2.213330016511581 +2205,1.1278660993402225,26.55876032587199,11.808787430584823,1.6382477572792666 +2206,1.1305268961009538,25.786740809497992,10.784317471336461,2.086397884428004 +2207,1.1324113685606518,24.651779929671225,10.51002238731564,3.1043649840475545 +2208,1.1322415820468892,25.028937206646486,10.319480424996359,2.7848069356865275 +2209,1.1296995684061448,28.854097676171165,11.369912248607575,2.5830703272142843 +2210,1.1329487538042127,26.730969505287582,11.535292632269146,1.7807096576688217 +2211,1.1342134596610347,26.18571210489702,10.478913420722131,2.649169034807722 +2212,1.1373478312374967,22.55419194155087,9.5873168956125,2.384939920886925 +2213,1.1333007482605966,24.61489547423632,10.288089083634695,2.555325034761456 +2214,1.1381422586380605,30.3663922120376,10.276190240814529,3.8233933508862443 +2215,1.1340392101488286,25.610682794190385,10.634859263146051,2.491516181147653 +2216,1.136090946501567,25.107149357908337,9.611886554032163,5.716288500514879 +2217,1.1381254930346807,24.202989239340543,10.329129558166642,2.586624047155825 +2218,1.1375864755251983,24.456724092595483,11.180519027102765,2.8750858123489724 +2219,1.1367846368420897,25.701756988109043,10.455572114279475,1.557792133951768 +2220,1.1378193297231038,26.2406872720571,10.987101837544122,2.5560763142670653 +2221,1.1430197103919313,23.478618101397355,9.737513290148156,3.886487797622457 +2222,1.1414817093105833,28.350410240973638,10.542425853726991,3.2439597257121338 +2223,1.1435552715581245,24.75696756747787,10.18813101728525,3.564443509817526 +2224,1.1430942201381937,25.11119001291483,11.589594699907382,2.7182247052974056 +2225,1.1409585631566783,26.52058153344724,11.254344443897494,2.3582832287570192 +2226,1.1403663071594632,26.012933757408657,10.924224188466674,3.974412477391324 +2227,1.144598974610653,24.38867120020607,10.139571543257196,3.2745717971143615 +2228,1.1423527776646671,24.535428006231253,10.905754652372622,3.066168556434174 +2229,1.1469334995328104,22.63474085288094,9.888689045686975,3.3600085378291484 +2230,1.1397681534380504,26.088948036133555,10.805984483317468,2.6791315432627743 +2231,1.143199491183038,23.474286888543958,10.186880306769538,3.447623898403673 +2232,1.149650259065362,21.61550383620471,10.388343022699846,2.3574435201336 +2233,1.1385912156977833,27.274370960651638,11.11261086993124,2.955848533142104 +2234,1.14112048128765,24.040543261953097,10.901300026375432,2.5236352710955714 +2235,1.137896080108661,25.278597552833507,10.490016002728167,3.302378678034796 +2236,1.1390850342593122,24.229549871444497,10.486247341871765,2.8262767871036214 +2237,1.1441092614765416,22.856403866841248,10.566292610888684,2.9121429900799805 +2238,1.1413707775783997,24.518755884839642,10.330054582060496,3.508417746559537 +2239,1.1407245512714195,26.185168582280944,10.298448378417133,2.8783800918658584 +2240,1.141456393322309,25.711785093543448,10.483876091707382,3.2895017066239736 +2241,1.1325050048905752,26.677904411924967,11.208043893034702,3.327636490079409 +2242,1.137479705871898,25.9669986528644,10.781567811668918,3.384731645771293 +2243,1.1363349606442867,25.78301569204561,9.839345926524494,2.9173286978325206 +2244,1.140780666721446,23.842981080970777,10.389603342532304,3.226070398649437 +2245,1.1381453070412553,25.531085549600615,10.130834842216085,3.5407938418139624 +2246,1.1404514438766744,30.525030960174032,10.420721366169715,3.0981248393747087 +2247,1.1385030919205024,26.208140975045644,10.648822484812872,2.777032193836575 +2248,1.1374353396016632,24.771138842270503,10.461246411500607,2.3167623612300616 +2249,1.136596477227692,25.846224334453844,10.934389909949518,2.9881478762508444 +2250,1.1378782336404336,25.13281128221894,10.256463038960137,3.1110609112839462 +2251,1.1358409627475503,26.003483877591613,11.752384489455602,1.8501149409158 +2252,1.137985621891366,25.287057914838037,10.884088105674374,2.9418668908193744 +2253,1.1374123718028446,25.50475375762571,11.479693310876257,2.390782796216383 +2254,1.1415265426167098,25.461954264756326,9.85906661551502,2.9358721224274826 +2255,1.1403011462116341,24.95995308583322,11.225965787775841,2.515731367841375 +2256,1.1384380178805413,25.65702873525025,11.712972374040701,1.8687461359270165 +2257,1.1353805160218693,25.520409909749013,10.83859883445373,2.6671769342733493 +2258,1.1368517431164185,23.240889663840445,11.020224117244458,2.597706898899629 +2259,1.140539335302143,24.342003308936025,11.020283215204815,1.8289590238336575 +2260,1.1378665732081508,24.07118373145506,11.184102862067785,2.6062490282840978 +2261,1.140288088354564,25.358152829806645,10.635694617801606,3.6859612912070547 +2262,1.139725098725421,22.914137908751634,11.001064561904863,1.8319220904977935 +2263,1.147623564124915,24.96570611891657,10.673030846320582,3.2321779927065535 +2300,1.1395897980214358,22.33603882077602,11.062332666887016,3.485084624451083 +2301,1.1235210726038998,22.893644562331534,11.008038633841492,3.081855306292394 +2302,1.1242785472813004,23.143658706727514,9.971253856942967,3.7013040943485787 +2303,1.1240065543692008,23.89465852567129,11.244182752352962,1.872687985611615 +2304,1.1240411938635344,24.804997503237825,10.98001739628381,3.2500572810394996 +2305,1.1245688268600287,26.07046460553766,11.917006909956703,1.7618151084321947 +2306,1.1288369946264905,24.42186743414642,10.518801362025334,2.5623086557686023 +2307,1.1290998984835225,23.8755421315076,10.2097851049536,3.414226481798919 +2308,1.127824189736808,24.505912891559237,9.813678907274664,4.026788375486323 +2309,1.1249788450939944,27.833462787578505,11.314354989902563,2.975814841905067 +2310,1.1272792259921163,26.222350266764497,11.64328134610214,2.4929219651131582 +2311,1.130902622672124,25.25183672117667,10.77799741108325,3.5699304207938267 +2312,1.1349509625420633,21.7821434906328,9.344994172802004,2.955546700153193 +2313,1.1309957451970134,23.603011865589753,10.717622718470572,2.7809612307570277 +2314,1.1344600614176126,29.431337257635764,9.827461357725765,3.464638206549394 +2315,1.130340490969684,24.58016064693181,10.158798232428232,3.1164364761295213 +2316,1.1342710937139109,24.44715639072534,9.567399676355507,4.3867872175432625 +2317,1.134656336063257,23.55875279488229,10.119521977477602,3.8554956625695573 +2318,1.1347932348443504,23.76036404510954,10.68621644119261,3.1043068268002165 +2319,1.1357933045949076,24.67929800775885,10.4936290716296,2.6268137858690186 +2320,1.1364964612523951,25.65638812408043,10.720955354242312,3.6469881368027153 +2321,1.1403081359586522,22.469761810877838,9.882431545865987,3.477605538073097 +2322,1.1398366013462617,27.49057835301789,10.34051180493433,4.390694938667788 +2323,1.1411106970363625,24.1631006943176,10.031292890191732,3.479061228441483 +2324,1.1403254868118988,24.28241166550817,11.274740052892902,3.305397133608327 +2325,1.1372120417827416,25.613749630495064,11.435875071286949,2.668141549441693 +2326,1.138244864861589,25.199843979608488,10.83834905108262,2.8804826553686134 +2327,1.140204926455075,23.15163233116415,9.924767259357399,2.7590539454331036 +2328,1.1394486334602278,23.972175991379277,11.087157372479005,4.56169619147408 +2329,1.1464283631993988,21.665109053964073,9.396907247775406,2.8303673796726487 +2330,1.1384585060306454,25.173997211902005,11.044250042266201,3.7756966153935663 +2331,1.1445144659164057,22.095761097425996,10.087505449982878,3.7919277120246457 +2332,1.1475477321972283,20.535889203096954,10.197521769872022,2.0440179543102923 +2333,1.1383438629936815,25.9447310830773,11.090805856925074,3.69785581576879 +2334,1.138751638651473,23.162582604310682,10.589764555999436,3.5953801375462966 +2335,1.1340572354415763,24.736281053428723,10.774490132657258,2.9809078633046213 +2336,1.136993372682968,23.16648237896589,10.263147646367779,3.8639741583804885 +2337,1.141677000429573,21.843914052298317,10.08195460607711,3.3554716847503427 +2338,1.1404225108997792,23.413473573631137,9.906504546048913,3.511282815898476 +2339,1.1419893552425862,24.93906520078175,10.062492798093942,3.9961246588922363 +2340,1.1389322037379022,24.90588117097109,10.49826194262154,2.933912910979821 +2341,1.1312483967953022,25.564145008848467,11.29372087763041,3.615366070678795 +2342,1.1327505901157389,25.447812725131715,11.176288790431942,3.516565899344278 +2343,1.135570091228728,24.737077489384273,9.365076267102326,3.5874855454549905 +2344,1.1376089473426603,22.86021220144716,10.162394201367327,3.3634018268757964 +2345,1.135041013421161,24.894976660411174,9.84848459950091,3.7007351015728602 +2346,1.1378524793526361,29.315135126962986,10.288419157338456,3.68086464663302 +2347,1.136423388518657,25.116975473427477,10.678361573165535,2.7647401979715993 +2348,1.1350955332617856,23.628177353176564,10.54229890668782,5.630106102536608 +2349,1.1348192230447653,24.886582420081897,10.703585185700934,2.755090286564107 +2350,1.1358129389157356,24.550609195997918,10.446249008893927,2.8454852325473223 +2351,1.133750645752879,25.109846168231833,11.428989066986112,2.3458240741845238 +2352,1.1336587062069292,24.671028559825707,10.825963508248185,3.649870108610909 +2353,1.1337401961243248,24.529954981377372,11.44799779231002,1.8417410497501434 +2354,1.1391207091213242,24.79072419060022,9.776193916118698,4.155154262103819 +2355,1.1366579187631878,24.015251004688032,11.013854769829335,3.4572827254788736 +2356,1.137408000885145,24.83814547305684,11.539251295681261,2.206729923899612 +2357,1.1315183846142138,24.639382106247762,10.85226521147112,2.5247717327001302 +2358,1.1348497333923042,22.28505007053724,10.65885508837911,3.2187437644438903 +2359,1.134964175381819,23.238242283722716,10.971138953630742,2.3690728585791563 +2360,1.1353267642366955,23.620951172090194,10.691506318525093,3.5172250886964047 +2361,1.1369976203558645,24.197158697264097,10.684295994421229,3.5065188552625304 +2362,1.1320479293552865,22.97576477423218,10.97393750881993,2.2271895236682338 +2363,1.1439613863043245,24.877203132628324,11.442687620822863,2.8166200822426752 +2400,1.1467444212787021,21.156412132402252,10.589841939337768,3.5743960264103514 +2401,1.1347053879038633,22.422947139001085,11.057711220353436,2.9654788865912742 +2402,1.1363017450891373,22.98175586628443,9.676194046568336,2.6255757313442833 +2403,1.1317424772106839,24.363267004587684,11.87173228914058,2.2490756245938606 +2404,1.1333215404548493,25.445730308855463,10.91600385649314,3.5208073525959085 +2405,1.1349331279134025,26.36319779915457,11.669865664942808,1.8278495181023424 +2406,1.1365739845695895,25.2771907139348,10.963120279139037,2.128479267309235 +2407,1.1390402523327652,24.19036369334588,10.862804045485076,2.5502302484449 +2408,1.138087930118257,25.01306510930291,10.081373740330148,6.179905784017619 +2409,1.1383817314281102,27.715037457234693,11.271340890332837,2.6155213954251053 +2410,1.1362666429848851,26.756442167370874,11.866938929041215,1.9885607202170954 +2411,1.142985405283646,25.87155138279534,10.995721039766968,2.4993381488486057 +2412,1.1424761017890765,22.628421313533583,10.012625228026895,3.0136151728850287 +2413,1.1421329014661077,24.517852326054303,10.486609912245422,2.697085160685209 +2414,1.1475739381307997,29.785583460309102,10.365870723088982,4.488215099118015 +2415,1.1410942035084204,25.202946876321505,10.568960100406382,3.2054868020348057 +2416,1.1450870463415204,25.04932371668059,10.04004395943653,2.8102050191948087 +2417,1.1483498224310367,23.84237260912932,10.419728036523823,2.8097434243309833 +2418,1.1475115397453122,24.24964045297258,11.322579262577692,3.4489486870250365 +2419,1.1477495684357357,25.28019193570862,10.543546521280492,1.8576441208719872 +2420,1.1484662541122361,25.808332620967292,10.78438717666271,3.1017086030952794 +2421,1.1485229098191752,23.57165822552544,10.088690638746964,3.2347697995005804 +2422,1.1497389317071247,28.205060587939876,11.015128246563432,3.2422451514428063 +2423,1.1534591635922566,24.60445779181324,10.926095837759304,3.6250058938164833 +2424,1.1508871808130858,25.13837571154261,11.640346114303318,2.694056194590909 +2425,1.1485174560307467,26.21302333770319,11.611076100032742,2.322225374066148 +2426,1.1503248844369636,26.112363583934894,11.281278404332927,5.732426061596975 +2427,1.1534323133745246,24.58140365523841,10.497481699616378,3.608923395346544 +2428,1.1518844914063524,24.625096665498067,11.494590497218798,3.6605562449799045 +2429,1.1589307493490584,22.185946552198768,9.835869215707291,2.1423445226536124 +2430,1.1480238242083054,26.276772864751894,10.937717841881868,2.760289088141218 +2431,1.1541274796265213,23.026186690709217,10.28702202415322,3.1625648731681943 +2432,1.1594751784302697,21.535388757975223,10.582597857961357,3.0304292858459143 +2433,1.1505375772958342,26.952028617359606,11.11399846700324,2.959607088297949 +2434,1.1500761493442195,24.165871022617555,10.91928877155419,2.798735181463723 +2435,1.1480860014736423,25.044527263974757,10.790154312071907,3.4013744911205817 +2436,1.1508611024740512,23.60908886381293,10.481222504323569,2.545532186450521 +2437,1.1520136564633,22.817121327078386,10.029630621760797,3.839620843190948 +2438,1.154783848862829,24.33290739483737,10.245910644054812,3.839742932821246 +2439,1.149419459386292,26.36800954001116,10.21401975897001,3.249869680781431 +2440,1.1499756628511093,25.51733705045131,10.935197497035842,3.403669888205244 +2441,1.143538104412256,26.14795560936972,11.344947118720686,2.7411515870253456 +2442,1.145200270949997,25.802073900354383,11.084214657924715,2.3351574867302567 +2443,1.1476178988181875,25.571498007737333,10.04678484767368,3.5686151035287845 +2444,1.1484809638474436,23.17820894880489,10.679917526561495,3.0561280892993556 +2445,1.1468464129664984,25.167998247340176,10.278356647841717,2.602507800048073 +2446,1.1479743850712008,30.00942575078046,10.433640762044048,2.6181116892970313 +2447,1.1475426065705925,25.679240261092264,11.042567561360011,2.3662708793984573 +2448,1.1448831643045958,24.42431690685624,10.229645758672259,2.7212884659401304 +2449,1.1451517360797434,25.444321813692824,11.125763894116211,2.227666092915914 +2450,1.1451574855328541,25.001881255622582,10.510186681785626,3.139234500608185 +2451,1.1440412073483954,25.95362283189745,11.67444376885008,2.336778110979496 +2452,1.1447666881832306,24.905155411103276,11.278704771476631,2.1169594697985117 +2453,1.1426070486960767,25.224803840319897,11.821186663609467,1.7778498039075166 +2454,1.148167891591862,25.475101427939567,10.236601498589453,3.4146393521330354 +2455,1.1472438549742308,24.425310222875165,11.41986816122984,3.0814743502427104 +2456,1.1459036418622857,25.31090051370147,12.09181888346992,2.53424787997585 +2457,1.1423057199210713,24.996225694731606,11.109376423915421,2.422824492442951 +2458,1.1439918159539733,22.73930855393964,11.361668363581396,2.5403588477460515 +2459,1.1466286899931173,23.86633773650847,11.53610527583067,1.9550949742998915 +2460,1.1461067405773129,24.023664331831228,10.771732715840377,2.215547086840256 +2461,1.1459836678676125,25.109079728457477,11.04008484110904,2.422889401507598 +2462,1.1418178191085315,22.77029971113399,11.508282083209162,2.0998841612655976 +2463,1.1535797695958767,24.262766414766777,10.91878976065275,3.088963187384696 +2500,1.1419011349587262,21.611823304127263,10.57723980434058,3.1010982252614814 +2501,1.1259233554143855,22.28511075090351,10.74471539661936,2.9585015310657368 +2502,1.1273168982293604,22.81032574658906,9.440663284615912,2.356248962280696 +2503,1.1253089006913384,23.89982897575286,11.823155484797882,1.895100889489671 +2504,1.126091523386518,24.900868510814465,10.975177719960316,1.6606490308986417 +2505,1.1258249189773364,25.611716356117416,11.207124559533785,2.168431760208137 +2506,1.1288255876520095,24.611478535903792,10.556596550749239,2.2485836550898357 +2507,1.1310454220481283,23.727340451111004,10.128211857649578,3.2611495423903807 +2508,1.1305662843845072,24.091412439532405,9.68509346890436,3.1527774009016944 +2509,1.1297204190835999,27.273570539878204,11.007151576944182,2.624735526700041 +2510,1.1310950064542755,25.674907618773382,11.79468123551004,2.160241201482628 +2511,1.1343399709298625,25.139253686038693,10.69162941300214,3.381888346923347 +2512,1.1367034719140001,21.603644469103664,9.233769902064282,2.803899498309436 +2513,1.133240220077418,23.856042463869084,10.48665866656271,2.821224686689532 +2514,1.1397026640165024,29.34730721699242,10.058917342563792,2.857598209927322 +2515,1.1312725804147674,24.425660673902595,10.489925606814753,2.5669752219424815 +2516,1.1377880538020573,24.461736218913696,9.712867907198863,4.83767689591797 +2517,1.1398110817988019,23.170276553085635,9.909808025088708,3.0303525354834417 +2518,1.1407980042253523,23.515355156047686,10.529448350730842,3.5367470468089173 +2519,1.1416324815421475,24.410692124594956,10.459514904518047,1.5813216404125363 +2520,1.1415447346739587,25.378474845551604,10.63512682116963,3.1857596482901474 +2521,1.1424793865309413,22.641481881111844,9.829282417292442,3.233501156516223 +2522,1.1453638218972166,26.938049721282788,10.364447456517034,3.8678994192916423 +2523,1.1468215380045905,24.049178690413815,10.14001499132386,2.865188979541902 +2524,1.1464219949601178,23.705516818048032,11.195698315279497,2.66090226231036 +2525,1.1446354369765224,25.560235931853093,11.253788497541432,2.397708922158489 +2526,1.1441773014332102,24.921003915871196,10.77789160590573,2.9329918028926243 +2527,1.1481028358687422,23.32962543176533,10.135849153802852,2.9844329644088576 +2528,1.1471282676401695,23.35226750823962,11.115605818742377,3.6490817428650333 +2529,1.1524100024225181,21.327810606738826,9.615116748686779,3.167208446186492 +2530,1.1438990609498567,25.02580596282242,10.909905833310184,5.063140574096841 +2531,1.1488465726020227,22.101857966996487,9.906814761241675,3.2862263464731263 +2532,1.152052318198139,20.596291007961863,10.536900480360625,3.131297118406767 +2533,1.1439298727413452,26.13682884390811,10.891155461444145,3.4395493801213517 +2534,1.1460492049771744,22.6364668502957,10.89438067537057,3.3004851412922633 +2535,1.1421274495383513,24.275441505747185,10.442073493789934,3.0797842292280353 +2536,1.1434521811793272,22.737468031838834,10.759030677684867,2.7410198445770644 +2537,1.1464579038477198,22.184797463373982,10.281750835074671,3.4729438157591237 +2538,1.1472274148886072,23.54703553610211,10.229299115337277,4.264717720609976 +2539,1.1440673699611827,25.681374260049246,9.917781254040845,3.678358156354732 +2540,1.1448311070066155,24.79459699215956,10.593587990271663,4.136057012067695 +2541,1.135684442587998,25.62332031460386,11.21356260794901,2.9295958676340574 +2542,1.1399194650231772,25.150655642430678,10.662317514916186,3.5046422061614906 +2543,1.143276589900323,24.641854378813445,9.608039663712377,2.843126718272357 +2544,1.1432468727286391,22.602971226042584,10.361970821522693,3.6892965610892525 +2545,1.1418848111001696,24.02085471202686,9.609614504938692,2.6564147705943095 +2546,1.1415376731036915,29.247729277385112,10.037937864934998,2.956720324328443 +2547,1.141767649081583,24.879954622517413,10.729856406176248,1.9900653575545235 +2548,1.1391261075838792,23.587377709874477,10.489562018297965,5.990945270068164 +2549,1.1383374978847072,24.463537626119713,10.988605243639674,2.5252404752317115 +2550,1.1376443167902073,23.986434237014453,10.123927762934015,2.404049104017272 +2551,1.136039473718616,25.101591677632936,11.574836005419108,2.5281391948447114 +2552,1.136591323776427,24.214368339602686,10.670242855693862,2.996081461642782 +2553,1.1356379458402466,24.55940265686276,11.443873994166804,2.2233674913488897 +2554,1.1400783673073727,24.44389443977053,9.756314169594864,3.3102868576800906 +2555,1.1392582396205513,23.74263075676219,10.640633766711977,3.2667522669583744 +2556,1.1396445866262817,24.392341708516504,11.737568052072659,2.450102587827034 +2557,1.1370793241607362,23.877873051726166,11.081880117565454,3.610843096452745 +2558,1.137543549310889,22.27325058871154,11.100891739998051,2.992532508751499 +2559,1.1387368015481432,23.137859290689835,10.884525778129944,1.7098954671458046 +2560,1.1371029268477517,23.05164915376126,10.557264932815464,2.5576667042529584 +2561,1.1392189712228407,24.273457973096765,10.505285001862914,3.6812723696423704 +2562,1.1372057647431761,22.13554874557945,10.810462463007754,2.0902389765838705 +2563,1.1487668687516737,23.990515011260104,11.042035667344797,3.3148904685522207 +2600,1.134721059427031,19.095334949411267,11.035745072072858,2.6065648657308125 +2601,1.1196643724638362,19.126431328479743,11.710277094961633,1.9417957407477209 +2602,1.1165101051982418,19.93110247082625,10.54170917924559,1.7094586282925002 +2603,1.1125453041819882,20.657732649413404,12.29393964320813,1.849719168266589 +2604,1.1131166894067133,21.468124711823915,11.696474248206743,1.6464119011213603 +2605,1.1136344749107547,22.406157562939516,11.856187166175161,1.626072348412604 +2606,1.1158904915016146,21.158679565450555,11.40309392735926,1.1223666231324698 +2607,1.115663605691554,20.292459187716382,10.988503811994345,2.209116854368025 +2608,1.1173793672117671,20.439300091015472,10.391084415632694,1.7253841160059287 +2609,1.115137110132884,24.1301266847769,12.065620544500298,1.950969490786294 +2610,1.1141943326551893,22.41878799987482,12.00222762596426,1.65056140658789 +2611,1.1195595430291447,21.915518297596496,11.674806890408282,1.6503080147580627 +2612,1.121346049179121,17.69224463385769,10.360006801401541,1.3839422265112116 +2613,1.1204018927577446,19.905931833162533,10.981437587704486,2.532745307222671 +2614,1.1244117377660372,25.632405862180843,10.632795019907947,2.2607437519389877 +2615,1.1192225403051554,21.03436162859262,11.258900353342108,1.2508103872332983 +2616,1.127398039897148,20.339694418560036,10.634130457658417,1.6495263743337094 +2617,1.1252529026646265,19.650321540138822,10.805775895324274,1.4580308816597873 +2618,1.1257649888531978,19.732207865584872,11.24039126137136,2.210513256846846 +2619,1.125108641515707,21.164909544487227,10.930608831123031,1.6042037702378003 +2620,1.1268247106810407,21.711975845528833,11.23078408694884,2.5054004063771202 +2621,1.1288760436619207,18.92005864807974,10.494061200427378,2.1676069769424315 +2622,1.1301585467199038,23.500643132805937,10.991815496036896,2.3250454424394893 +2623,1.1313191244095213,19.990837415282176,10.521344163380027,2.9710885558855753 +2624,1.1310684029942022,20.62836915546624,11.922683223536776,2.2350982149038146 +2625,1.128535108556008,22.121033696225464,11.668343402591423,1.8950849658332942 +2626,1.12983440558155,21.059038075541615,11.66381738000898,1.9142219551386583 +2627,1.1326458087740856,19.38212967660176,10.497778325837354,2.647840249030737 +2628,1.1292356983853598,20.042454477918046,11.89659026506571,2.9369438963691232 +2629,1.137679512890604,17.889456811708484,9.892348433726317,2.1420183072713352 +2630,1.1287702859843884,21.378586496334545,11.01844261090039,2.630663263717795 +2631,1.1338145278975522,18.525054229035433,10.286015700740837,2.424146169738517 +2632,1.1369665400226345,16.954784450077213,11.049469367349737,2.151446675037815 +2633,1.1289706149011307,22.502394759246098,11.418987655496307,2.3139474577926316 +2634,1.1314683467668283,19.419808826222983,10.948553927962049,2.470784338163195 +2635,1.128350939514396,20.584763895288663,11.188743432087561,2.571704749202382 +2636,1.1302362864091473,19.58364441157736,10.860113569448869,2.1260948425252337 +2637,1.1338330675667465,18.076639280510694,10.516779883526661,1.951141579824788 +2638,1.1329672005028668,19.806985618861763,10.718568285990225,2.3089719412134264 +2639,1.1321288863837695,21.746774084643956,10.394336214202461,2.8009647351248783 +2640,1.131335510732992,20.93008446550632,11.026002182424126,1.9818388153112863 +2641,1.124549731415799,21.62624784691417,11.853862381292183,2.026154077617127 +2642,1.1245664211846824,21.7914295886504,11.492154017590558,2.8097833332383195 +2643,1.1271196361458296,21.10253402341638,9.896753066374778,2.5680352356524403 +2644,1.1276069032681157,19.23561395676441,10.833061348456514,2.51649105644376 +2645,1.1289311041818497,20.831320408314685,10.209578289818866,1.8517290974450806 +2646,1.1280661619897534,25.52686149049415,10.846490226426587,2.0281832653758904 +2647,1.1255341083789452,21.409265284595406,10.882586964211994,2.1248159565206306 +2648,1.123899166739083,19.898219082995013,10.801665804476375,2.410995611168999 +2649,1.1238708176821934,21.30674446796352,11.246019586065398,1.666474582946961 +2650,1.124766207268157,20.471239237478173,10.954894350480815,1.7830589494556053 +2651,1.1218388767422436,21.322208416549664,12.248310262128847,1.4479533943848275 +2652,1.1230247858204154,20.44369341393494,11.362833581156023,1.9396472888362704 +2653,1.1231862927148595,20.604858801766927,11.90071135366067,1.139510565735198 +2654,1.1265371726731828,20.829202833571127,10.389651252091063,3.079437240475302 +2655,1.1256458160519762,20.175800752928392,11.446695432426893,2.2317616356711754 +2656,1.1233449403029188,20.899866598522394,12.285078791919213,1.5509440218304267 +2657,1.11893593072693,20.803137760329477,11.51044518721555,1.3123059005517224 +2658,1.1239266845612226,18.34200530146925,11.755154591011859,1.723278319241908 +2659,1.1224693870134406,19.71029057069181,11.7441356086939,1.16116416434616 +2660,1.1217368234350362,20.16544634946907,11.230803791742735,1.4312455938370228 +2661,1.1245429307784636,21.63626812545654,11.146841820672579,1.7167036053494582 +2662,1.125625742966924,19.146692005335467,11.841971500385757,1.3586508566365523 +2663,1.1388089952122082,22.012215130151606,11.769534411492995,2.1490757923203505 +2700,1.1443735926590968,20.796252918169948,10.409467153947642,2.8926309243454984 +2701,1.127918582706653,21.38608819358849,11.070592284703592,3.0923064611164603 +2702,1.1244824888282074,22.4269324179109,9.813783739584933,3.2463910576187165 +2703,1.125113199954,23.53262104043896,12.12774985087476,1.3373735713948423 +2704,1.125706466917352,23.961958468446845,11.142109322188846,2.1607703532589224 +2705,1.1272346340858763,25.205673002788494,11.743464278258292,1.8317540348631822 +2706,1.1292381514777028,24.24493090652873,11.063405873385076,2.2938351566085253 +2707,1.1308213806634417,23.31714978060741,10.407437489746433,2.0503505373293547 +2708,1.1302959899633014,23.222855259682333,10.264291846395068,2.9367699208667424 +2709,1.1308049266323306,26.542585203854962,11.542834624977608,2.2657828852841 +2710,1.1304592473825252,25.051868183560135,12.016663347581858,2.098596668464226 +2711,1.134200893258032,24.706498317129864,10.841460915166882,2.695335794999902 +2712,1.1375984870707774,20.88639185910626,9.857228286870672,3.1517529230485075 +2713,1.1344259655598545,23.28366555517743,10.848335332473393,2.791372088681798 +2714,1.1403743315663177,28.47982091143654,9.752678028712321,2.783959476040274 +2715,1.1338222739568031,24.028122289163846,10.334145497452383,2.9856683192755007 +2716,1.1380444336077424,23.84291619909258,10.173067475875364,6.676952236381287 +2717,1.1392573847083827,22.6431516884012,10.330682020740687,3.1109670006575425 +2718,1.139937310616594,23.16341855540182,10.778541543089126,3.156628279301388 +2719,1.1421280554815343,24.034898523530682,10.742571500504905,1.9445918892929814 +2720,1.1436810183047699,24.445821734835008,10.855044806579665,3.322986225329621 +2721,1.146485870634357,21.794286682324778,10.009483091481787,2.529724725805852 +2722,1.1436894852694455,27.03373000905751,10.740251794138885,3.421149495799179 +2723,1.1489134898691977,22.995200154211954,10.396176558912508,3.765267555514786 +2724,1.1463516806016008,23.13955606137257,11.222240565226132,2.7629142962628164 +2725,1.1455050320327214,25.098374183930964,11.021575462876651,2.8119812402166766 +2726,1.1452949816754607,24.8062891368081,11.263320097640179,3.155446369059453 +2727,1.148244218282571,22.871816714252372,10.08778595008707,3.7717087214451257 +2728,1.1465771306748966,23.066044486136605,11.41522001237776,3.611732679215693 +2729,1.1544447040116408,20.811949573535294,9.821551828536396,2.3212043100722224 +2730,1.1443120272430343,24.99744808862927,11.081117193730234,3.3738386475893387 +2731,1.1511421656731233,21.660250037328883,10.577680644482472,3.6189201675347644 +2732,1.1539534486228735,20.46697832962039,10.316413042869877,2.841421763591751 +2733,1.1447655680187159,25.764032700481486,11.046262353086014,3.331489184081453 +2734,1.1474975084736818,22.550552368123455,11.080698468035608,3.44245745504963 +2735,1.1436927009002884,23.657113985760322,10.883390577644038,2.835132529164997 +2736,1.1470677718622917,22.042481141729716,10.56364601936918,3.262225926376665 +2737,1.1503438075781451,21.170482176557048,10.32749163649294,3.162068668782222 +2738,1.1493092793194952,23.075040898548004,10.364121848985619,4.053282756705657 +2739,1.1468478618036855,25.176815575330938,10.348615976502522,3.8251845155258826 +2740,1.1465370965337796,24.31637133616516,10.563653713802323,2.817974587131255 +2741,1.1397251955628476,24.42061608570627,11.156368556951442,3.044027039193786 +2742,1.1407505766021708,24.797216517796357,10.92525322080069,3.050549148604934 +2743,1.144617643310124,23.947848183910082,9.687659907932277,4.89256817117115 +2744,1.1438687510020267,21.936459481071534,10.383498027229914,3.8937228244679325 +2745,1.1419663569564795,24.103838480695384,9.821247929947424,3.1400277303491815 +2746,1.142333315843047,28.530713198748014,10.46664678415592,3.1695434862229344 +2747,1.1403960978167689,24.06621146845862,11.16617444689869,2.759443615556783 +2748,1.137632144736597,22.956262348606625,10.735535833480524,4.2742125095520835 +2749,1.1380781865427045,24.04980796075131,11.191596448080803,2.5177721117506238 +2750,1.139902501664235,23.283132194560235,10.828072983946273,3.3149150187354035 +2751,1.1349692540121499,24.464488305895607,11.993837419499108,1.9675969906505337 +2752,1.1387325866413178,23.27057747335118,11.1321129079285,2.307602786619129 +2753,1.1348571767294315,23.80342074569709,11.610240066478857,1.765377110288215 +2754,1.1399215286639621,23.957722685783803,9.872400981346495,3.6844186206832017 +2755,1.1379032023312727,23.355370792289765,11.040563578314684,3.380440598442157 +2756,1.1368872092649724,24.012461625674554,11.958100632419457,2.1096231651990296 +2757,1.1332571626031238,23.470475249169034,10.9706498540333,3.4701761486519365 +2758,1.1359946397921188,21.39219926849233,11.375386682355932,3.2309783324731427 +2759,1.136337668418902,22.359756065636702,11.556089016673857,1.724999910808358 +2760,1.1380111143159832,22.432347010012666,10.875286128170371,2.8238791263331016 +2761,1.1384724142848017,23.45450303505136,10.99665861941909,2.376122113090155 +2762,1.134872964364984,21.86641345641986,11.057186078051146,2.3296892065225667 +2763,1.1453214885638587,23.64519029530617,11.335403792980669,3.3339212175861066 +2800,1.143627125670114,21.708532423079753,11.170724506111231,3.2683670895459263 +2801,1.1296262559340295,22.04431270088054,11.1779257284064,2.9504191748325916 +2802,1.13096722672895,22.997994086860153,9.944279474105924,2.965975862649282 +2803,1.129223201957437,24.038770488728115,11.802922267007858,1.6370041826044206 +2804,1.128390048623995,25.38735304317327,11.019361710776392,1.7352067014763761 +2805,1.1289511372507082,26.23314965092288,11.685445123627233,1.9247229266213397 +2806,1.1336925549895398,24.943231893730925,10.88711136555831,2.2589664624495405 +2807,1.1340985788538647,24.06278379041072,10.261469927410698,2.9221561692053957 +2808,1.13410149820627,24.3440511420797,10.082070009334428,2.6782293150946375 +2809,1.1321393385843121,27.842828209144827,11.419051191187956,2.7455464315628175 +2810,1.1332675680965139,26.205524726543103,12.060427253985965,2.019346176873244 +2811,1.1366106271445624,25.743594737244802,10.864208409879325,3.1278720270134692 +2812,1.1411936425592613,21.83243285158869,9.832876376328244,3.296734715238193 +2813,1.1389964365801957,23.711134331912685,10.562069801810917,3.1061854457410973 +2814,1.1413706140323976,29.929116079527113,10.22397499282841,3.4802060398000623 +2815,1.1372136933008572,24.93739147958693,10.62313096594127,2.724026163774347 +2816,1.1431520737570575,24.553905585996286,10.279761006743577,3.8068299217618935 +2817,1.1459414539604484,23.60171344531773,10.425750655488644,2.9440567780010527 +2818,1.1442835503075426,24.21371027534671,11.23520362364448,3.4185238290106397 +2819,1.1452831378501616,24.866776420567742,10.508615170983187,2.1118906600235556 +2820,1.145839254727845,25.80959464451578,11.206478356196856,4.191237185512958 +2821,1.1478507839254128,23.079095531276625,9.805290770735816,3.147929636568861 +2822,1.1495128420848428,27.905646487422157,10.860088798939955,3.1689209659870805 +2823,1.1515636020508357,24.32868687493779,10.658285558494278,4.920228675185075 +2824,1.1499311608383955,24.528554596416864,11.5419681359599,2.2018516925110716 +2825,1.148405401355168,26.066588057873236,11.225734461258916,2.6418339976467915 +2826,1.1500249803503444,25.418548546113193,10.840521318554947,2.9072237086868373 +2827,1.1498191961729112,23.91149674247724,10.288568873214178,4.411351858312931 +2828,1.1490148794262547,24.02523067487,11.612354983705144,3.440878845475161 +2829,1.1557729743078244,22.23685751040616,9.939523816290851,2.7179907896881206 +2830,1.1489194926622017,25.52769127242857,11.186808557129888,4.1192521006608285 +2831,1.153670382914394,23.139248918411745,10.182344024094661,3.8817429983376037 +2832,1.1581344546585812,21.2584918372034,10.497794337917586,2.5800946735378933 +2833,1.1479851136461101,26.723237448671224,11.216094588159418,2.809061729943766 +2834,1.1502437121717195,23.319962513255412,11.18853262866708,2.737292848378131 +2835,1.1470682741628266,24.765028114047396,10.870897740872415,4.0838253359307295 +2836,1.1491989969350824,23.26130208366551,10.459915834757428,3.24019273853681 +2837,1.152185022004837,22.502140222120676,10.520435856014716,4.224916542121032 +2838,1.1512475161562925,23.922514236498156,10.523093136544082,2.8797438636597925 +2839,1.151365083360719,25.367258028311845,10.263529338220955,3.1817494910871806 +2840,1.150013391055806,25.07682085836914,10.85535383116021,1.993430930737559 +2841,1.140659365768106,25.970151615422584,11.303062461966961,2.3073821532626537 +2842,1.143924677279146,25.414550797305406,10.765614230971687,3.073174890855569 +2843,1.1472367511634947,24.956427741141002,9.725331940649738,4.018550561249126 +2844,1.1458159526498326,23.218723670173024,10.288325360973337,3.0807153761296266 +2845,1.1445136249616148,24.818390181482783,9.990607274175781,2.327136612008326 +2846,1.1447669483507434,29.84784063691856,10.686207742796308,2.6789605416464894 +2847,1.1436752793980849,25.30338447004821,11.017790158345594,2.3767434349829197 +2848,1.1421548634115617,23.652418583257482,10.755040468016661,3.5573161466231458 +2849,1.13966173153546,24.914526225176818,11.255824324917212,2.480805048010094 +2850,1.1404671485918507,24.401316753062336,10.435945392131837,2.3685195857241417 +2851,1.1374287020747185,25.33511084527984,11.991174174189194,1.8382464284397075 +2852,1.137692491031666,24.838696242477674,11.163856674171413,2.780994960569704 +2853,1.1364978331182218,24.939302418728502,11.445480620287725,1.9485121480574956 +2854,1.1418130732031002,25.079745876706077,10.128823876363626,3.6715583007159833 +2855,1.1414832103975465,24.13966565739855,10.758756531387656,3.1892036538711275 +2856,1.138657839978483,25.16715153753577,12.158659434425761,2.0205022838404485 +2857,1.1361152739820788,24.372928093319494,11.220195390320727,3.499395182901659 +2858,1.1381033715309035,22.2472605538273,11.287328535594808,3.0889462507595 +2859,1.138638010319056,23.59621481495371,11.17807074758053,2.398658233650977 +2860,1.1388756892679182,23.275865159857986,11.231497947587528,2.6621971388793333 +2861,1.1382027883368526,25.092821504663533,11.122502178780566,3.791516640512629 +2862,1.135778285990924,22.335014301825545,11.270929795275128,1.8914020731895955 +2863,1.1473521172317098,25.05543541378786,11.142563423103853,3.8197542721710045 +2900,1.1397601478934087,23.28008427265132,10.71532438373888,2.4376810771352164 +2901,1.127659833686836,23.428523744796657,11.09894628228887,3.063505482551435 +2902,1.1250514029265961,24.24663486598437,9.790093508235069,2.351146470327702 +2903,1.1242287633445933,25.10897899560686,11.873158817589328,1.8293765943572462 +2904,1.12388500845211,26.422302790899117,11.051592458267015,1.8107946085444053 +2905,1.1256541500017772,27.41437751524907,11.713710581987037,2.1981000569902345 +2906,1.1281755584529392,25.99862683222353,10.977623444261068,2.871595605316008 +2907,1.1302415804397927,24.560179900677323,10.614292347768073,3.1372356439113185 +2908,1.12889434701329,25.359018474649634,10.336587212585899,5.226522028574064 +2909,1.1287604514404848,28.888228495213152,11.79413847707187,3.247499760618499 +2910,1.1289793322842125,27.311835742572416,12.079854711523913,1.6790777100034344 +2911,1.1322659767493364,26.7205099962033,10.917155297295581,3.298280609103407 +2912,1.1359573590677965,22.938511379711187,9.714023311896003,3.228122361469706 +2913,1.133082154139043,25.265656155546264,10.5297939612005,2.6427198617852503 +2914,1.1384125264003406,30.546693488001168,10.19612080715035,3.3104535303872007 +2915,1.132357140706258,26.286143926586167,10.572333481506504,3.0574726059562765 +2916,1.1392278886298286,25.824282040435744,9.795880022486353,4.619315517205078 +2917,1.1406311905909243,24.67057589980473,10.17617357954782,3.311602709194245 +2918,1.1409590287973117,24.86210861121494,11.136102487945227,3.045337132287232 +2919,1.1406095645588499,25.853442164992874,10.890548892349528,2.185540857164495 +2920,1.1412297526441693,26.549187086502265,10.588282633264717,3.923338770682716 +2921,1.1441389958812802,23.933390412828732,9.991825871342998,2.5822175207157794 +2922,1.1434863733674627,28.71699614770584,10.814870885555912,3.4475902698371197 +2923,1.147670882180721,25.083420136206755,10.38531940874846,3.9622963752034095 +2924,1.1448681762485768,25.49587132165578,11.163078679744912,3.0986052734525176 +2925,1.1417419279284415,27.02876579203167,11.651958027287815,3.0322879624402788 +2926,1.144395085119494,26.184948229581472,11.098149773314963,3.590231603065223 +2927,1.1479226582954845,24.651632771165023,10.144523890065445,2.388124898301627 +2928,1.1452582609404904,25.058290356133767,10.995643900937187,2.6992411150006954 +2929,1.1509669168096013,22.743800681486146,9.885718527582133,3.258755607815616 +2930,1.1417848912030286,26.743894404715036,11.18633777737511,4.486579668547429 +2931,1.1504512825717095,23.622465604575186,10.36216734542499,3.428600961362258 +2932,1.1532818641191867,22.409064606107204,10.340473509973382,2.3050609518500513 +2933,1.1439257000609004,27.38141819791561,11.211032574610146,2.6984939521092373 +2934,1.14788194277968,24.314479154601088,10.741726800250582,2.36866529879686 +2935,1.1450021866114328,25.51819539343574,10.468410167759696,3.4663702931622096 +2936,1.144258853590257,23.883845783998538,10.73544822270793,2.9771510411386317 +2937,1.1468138613035783,23.530925082956202,10.039330256397143,3.6647151771053985 +2938,1.147132610786193,25.025226769303313,10.146889128043263,3.700067063582288 +2939,1.146040872829632,26.916555346501262,10.287490354785362,4.8133049420703005 +2940,1.1449886897941612,26.195620815596474,10.493444854833637,2.2690474928360103 +2941,1.1354659532842968,26.926420730988283,11.82622654392148,2.2046673344900722 +2942,1.1402703790607633,26.412234526802028,10.932079832342431,2.9824982445095527 +2943,1.1425386210709154,25.99536905020912,9.929002233517211,4.73107613591647 +2944,1.1427571121295672,24.167612006763864,10.114466745667263,2.933616873435628 +2945,1.141071571037338,25.389596139185734,9.88623812315543,3.002395942931878 +2946,1.1393164936718694,30.644097179085726,10.57803596213802,2.9363310895836183 +2947,1.138886761664034,26.344186835668363,10.840904117173073,2.817080921439998 +2948,1.1353814671243425,24.629962068735068,10.779017563801007,3.5919405844189 +2949,1.1367690859235493,25.61360359158232,11.209524771816456,2.0676112902048187 +2950,1.1355858113743558,25.57408967605831,10.413322208992874,2.4435334550838266 +2951,1.1295148156127504,26.558800298717113,12.07014756494564,2.0175733313233253 +2952,1.1318183313502606,25.333917316641628,11.330194400893046,2.2355032286102965 +2953,1.1294271318614173,25.981708484934074,11.527754296386195,1.7590076688633391 +2954,1.134146101118129,25.936852372044605,10.084100911691937,3.198729326229582 +2955,1.1358253889083008,25.015240162831333,10.958943016127147,2.73569682073618 +2956,1.1332500223672615,25.7972998025319,12.056749854480735,1.60811476387319 +2957,1.1296392442618493,25.384218789363395,11.16378933706666,2.978082950254479 +2958,1.1314029222242574,23.52529471506353,11.424342341877079,2.7148387159899343 +2959,1.1324284875341455,24.517793846293426,11.43210951556744,2.3704525899690476 +2960,1.1328827750057293,24.279157264856632,11.133844657375237,2.516482468040373 +2961,1.1346136595502165,25.59722126040696,11.263234600899146,2.570792523064675 +2962,1.1328689579878448,23.70362523666652,11.362291582631244,0.9784717806312908 +2963,1.1444262565729741,25.78937123938023,11.385444733894177,3.3201263842301105 +3000,1.1472656586376102,20.56560278440934,11.082774909536232,4.077471732475895 +3001,1.1341936717884449,21.082653068748517,11.016447398183068,2.8771412098967875 +3002,1.1348697780937556,21.86637873929901,10.232263260576977,3.1388823918731927 +3003,1.1349185136412685,22.63765342781275,12.065207520561877,1.7834416528174235 +3004,1.1335433901287033,23.806253429972482,11.514649016526695,1.920003951826701 +3005,1.1310701795857665,25.210283731896826,12.12793546797098,1.6107531915366258 +3006,1.135479726454535,24.108473651501267,10.787814717419867,2.291224900505027 +3007,1.1388222840794198,22.672919657551493,10.919228758093418,3.3359359504949007 +3008,1.1365901389489175,23.550599117608037,10.577465857014092,3.9198034241320463 +3009,1.1366040317849202,26.667592117623528,11.557496998179449,2.938566842215244 +3010,1.137460369198532,25.148274097224412,12.109630055798336,2.1492055740405562 +3011,1.1401898744715417,24.613246079530175,11.142360155013986,3.0009181587390503 +3012,1.1444296270746728,20.909024295436122,9.785221689532912,1.9969757197675457 +3013,1.142172821881183,23.243980479561312,10.693249054525452,2.980296018009982 +3014,1.1486792803101487,28.690468482224784,10.134298073062668,2.8160549815845277 +3015,1.1400967814343168,23.84374678556644,10.714185724018918,2.644554284006072 +3016,1.1433395367707078,24.531467351504034,10.33173514994141,5.7231718377150695 +3017,1.1481922394624302,22.85163340769719,10.684904599601424,2.870811864518837 +3018,1.147238024797598,23.247266994694836,11.194587449075843,3.8543396714382085 +3019,1.1485676112379628,24.32025946946023,11.123962465183558,2.497577973810644 +3020,1.1504693310934082,25.005471913189016,10.98476675274289,4.016636512618844 +3021,1.1526127282167715,22.02099500178445,10.619607234297218,3.703224814513153 +3022,1.1532206596840526,26.661825616390495,10.88843480093639,3.9243071037352157 +3023,1.1554955227151524,23.23415449312773,10.52014842522399,3.2898902444749387 +3024,1.1505789754529212,23.94853979937998,11.777478520226323,3.0859707984105627 +3025,1.1508970255503093,25.06377091958514,11.764303652533377,2.8258969520862514 +3026,1.1505206615638595,24.454273868946586,11.281992936829294,2.2235239030602183 +3027,1.153426249336262,22.965305814048946,10.355593838689867,3.2268170020827167 +3028,1.1528142374841914,23.007477435803352,11.127631207260682,3.4075354321052918 +3029,1.1584741404803718,21.0239476439392,9.790667893362691,3.2964899769196445 +3030,1.1504422953246016,24.99629710488062,11.234313508066263,4.127079659124283 +3031,1.155910412764456,22.268360338427886,10.592395898034002,3.058757692149353 +3032,1.1614744620193962,20.131555812704143,10.573404782863527,2.7527014038042776 +3033,1.1516533079730913,25.938992756558775,11.120259662977709,3.3286157607774167 +3034,1.1528655277323838,22.99481669836727,11.361822716005218,3.8911780454880187 +3035,1.1512115485595638,24.214896806609346,11.221773089002253,3.96376599448753 +3036,1.1534178201346597,22.498706083392133,11.10359889543712,3.226301745979736 +3037,1.1567855860810428,21.53724113464284,10.435994436903364,4.063678425784692 +3038,1.1559758501059738,23.030590410109017,10.43096883015404,3.9355825393504347 +3039,1.156371466110598,24.61587973909181,10.24290094065772,4.224323581484033 +3040,1.1521699274980812,24.529870761123558,10.586536264435312,3.8626174510099522 +3041,1.1430877033451643,25.19818913994722,11.48118259781815,3.2358400074463374 +3042,1.1466250868207088,24.420671010832834,11.216334286119976,3.742270366212056 +3043,1.1491291494464737,24.43520461634438,10.081825553831601,3.776319252807624 +3044,1.1492480770711966,22.231718257187595,10.932431676348838,3.328601082494372 +3045,1.1496503852972861,23.764164392478722,10.413280360412507,2.611384769134942 +3046,1.1474382620385482,28.737128867101514,10.567889016877723,2.946361850515072 +3047,1.1470779006436227,24.73958650281046,11.261490187784894,2.6123894333773885 +3048,1.1421673420673957,23.150304625633076,10.783357847784742,3.484534742170257 +3049,1.1434570523767695,23.896328450986932,11.253897481840632,2.311218542797716 +3050,1.1428630974267835,23.5341263918994,10.609437125838884,3.9997086592742765 +3051,1.1414192507807703,24.319735285767468,11.906499008680923,2.158515981866338 +3052,1.1423053920824093,23.292787495626747,10.97059648943453,2.6395487410437934 +3053,1.1385974701977728,23.733681335654936,11.54157191134902,1.9818452864262979 +3054,1.1430791071569892,23.88433964832958,10.268849663090812,3.114551388831185 +3055,1.1416325465332968,22.99301927587406,11.159039705630814,2.920004461760202 +3056,1.1380579069772883,23.901983897281063,12.135083995904845,2.1459741851201284 +3057,1.1371463288932833,23.18696033962344,11.278667664054796,2.389872876105724 +3058,1.13934924373645,21.26708868722866,11.522672259536975,2.1881259866382123 +3059,1.1386302385533509,22.36467655977367,11.219909483598146,1.9330449481383762 +3060,1.1398347482594924,22.375442440071033,10.94427312133741,2.2685605220503917 +3061,1.1415316675069809,23.076080864074452,10.814841311526472,2.851672126311822 +3062,1.139003428936192,21.19830805851994,11.213201114247244,2.505207839185034 +3063,1.1512001640539522,22.936658952818586,11.283362896597358,4.258278590707578 +3100,1.1414462558076446,22.232003908854693,11.468629962174312,2.4719537162949585 +3101,1.1300260359281593,21.910686964473985,11.128810432091507,3.0956191890712716 +3102,1.126547153453571,23.07396702148944,9.82994466824734,2.91607588745575 +3103,1.1248392629197863,24.190703191621104,11.335094599755463,2.4919413625585527 +3104,1.1269984027087363,24.77584738330173,11.307300280212406,2.434690445522491 +3105,1.1261291763211,25.844738083294963,11.527563241765792,2.400326294299997 +3106,1.1300991835598633,24.849146920311465,10.934356619211886,2.2546230875093425 +3107,1.1310383800654074,23.76689836893937,10.535548238298935,3.421631882160594 +3108,1.1310770431471089,24.007877477017736,10.468046475935271,3.45664642853094 +3109,1.1281529602869922,27.55128691656677,11.71618716744257,2.4214074373465397 +3110,1.1308708730749362,25.69360847555952,11.842461863650389,2.2134505353628255 +3111,1.1320200064903063,25.425094011778334,11.193815713944254,2.9824986908669584 +3112,1.1394146473206013,21.20680380120627,9.257458644315074,3.279214316013161 +3113,1.1344895298547695,23.80265029056807,10.622178401247469,3.3508790005443165 +3114,1.1404444898348896,29.18344552743254,9.863342304758188,3.3634891849212796 +3115,1.134517826600635,24.716501786888966,10.694267436145433,3.5354353457715475 +3116,1.1400601899431613,24.008775808009382,9.76402572777313,5.905878423571162 +3117,1.1400456717205494,23.45171438893744,10.29312918452235,4.372913938750085 +3118,1.1414234295628942,23.166906484522396,11.189482933222221,3.898014489957355 +3119,1.142164087540886,24.670804298790284,10.75872064058287,2.3500305799302157 +3120,1.1420823360019727,25.33864874392663,10.938296005655546,3.3828035609329192 +3121,1.145487832593542,22.390763794757696,9.909862891643588,3.305583351197124 +3122,1.1451101169267561,27.490037284622414,10.458542707285341,3.7843137372899993 +3123,1.1470588322186894,23.622810368617515,10.382775568988698,3.7291271021479377 +3124,1.144905767159415,24.350204223595554,11.469657420480315,3.2829822128328234 +3125,1.1434802742049806,25.752252609367545,11.38489842350287,3.229696164256839 +3126,1.1465134374684296,24.776199045100057,10.676714760932914,3.995904033579493 +3127,1.1473173064768742,23.233475645141098,10.388474837777661,4.242819787509262 +3128,1.146614551026391,23.459702872411142,11.416297310321633,3.108477387613632 +3129,1.1514651324066447,21.536269360215826,9.84567343027324,3.2586211690427462 +3130,1.147490960861381,25.047590551605463,11.160200154762213,4.2198473011392155 +3131,1.1505303745485416,22.474471597160168,10.319275731880415,4.404756964406377 +3132,1.1552764557898942,20.820338864305587,10.453158670983804,3.0057802155958018 +3133,1.143476981562942,26.489598726383182,10.94098865279455,3.099821512630294 +3134,1.1454753575588255,23.50974769592976,10.823779335663062,3.7223975014690303 +3135,1.1441940676583953,24.42041485734692,10.520202250329243,3.9337883785578778 +3136,1.1443536464334942,23.11732311336442,10.41765189563386,3.1073660725810694 +3137,1.149605482135973,22.061350327369507,10.070464961160548,3.6401015686273643 +3138,1.1497093708279507,23.3356569536168,10.375279058828141,4.028436289725454 +3139,1.148459578626065,25.325762245813696,10.238639808921967,4.0324465806903484 +3140,1.1484498386998052,24.753843520919617,10.540320983855247,2.9786528499182237 +3141,1.1396225350489975,25.332168961786763,11.471037003506963,2.662738455291477 +3142,1.141588070568637,24.843769406657263,10.881934158929443,3.935359641146055 +3143,1.1418761162973505,24.971494161975883,9.805704472796563,4.424206806710969 +3144,1.14275288759655,23.003252205891275,10.365775346516239,3.5449947050379524 +3145,1.1437321122135178,24.043614019637648,10.316255090301247,4.375368932829012 +3146,1.1421049171386888,29.37337861367574,10.585997207874343,2.714240530789835 +3147,1.1399486071979912,25.06589822792228,10.70900366950993,2.8171377083352485 +3148,1.140038450232218,23.02509263956416,10.330833759372341,4.334414708456399 +3149,1.1360431708171532,24.56332183237067,10.790469570686659,2.524879062262887 +3150,1.1362251722696395,23.952133237270047,10.527089424038216,2.822649561558192 +3151,1.1329008716200486,24.958197662647887,11.967637077043467,1.9780384682781524 +3152,1.1343046118007483,24.20768935666157,11.11302131082483,3.2321937592313286 +3153,1.1311556640252667,24.386291814770193,11.533709402673946,2.076124592721325 +3154,1.1359659053600115,24.26120497084625,10.014671405134878,2.194074462423484 +3155,1.1339920352077741,23.47790011513686,11.396709318768965,3.4783814099760826 +3156,1.13482022978362,24.268509501555453,11.764686013566365,2.3162277836783427 +3157,1.13076855138693,24.159711402234432,11.03046823787944,2.2146906596937703 +3158,1.131663183806017,21.974631521841104,11.125610777759606,2.5112763981981483 +3159,1.1319277992584327,23.266303386369586,11.137558247291306,2.413497363357579 +3160,1.1333799177201922,22.939640341171906,11.076703426819776,2.4187018885647826 +3161,1.1342788770935928,24.3038722007392,10.928580015218163,2.9320003299491217 +3162,1.1323730833379761,22.17223685909455,11.541707436410137,2.6333905219446585 +3163,1.14431926594747,24.637255975445395,11.712467565335128,3.4890949002752984 +3200,1.149677881425587,23.77074004752251,10.920533929680555,3.42518710469648 +3201,1.133038909217268,24.59508502421331,10.65916426554305,2.986745071321031 +3202,1.1335174692590997,25.443536009293943,9.96414632050544,2.844386846324451 +3203,1.1312187377525238,26.362672632714375,11.779132373546243,2.2205810713842964 +3204,1.1305314283858114,27.194472513991585,11.078574562515394,2.1736525224684566 +3205,1.1328502448923174,28.64788445879241,11.715481070051128,2.393796706606281 +3206,1.1358836267252812,27.03725422882288,10.96267393332869,2.250461026336123 +3207,1.1376942175259075,26.314083735293952,10.488280548845752,3.0927210763120057 +3208,1.137918305789819,26.463738734833544,10.243091058270197,2.6869832456440195 +3209,1.1359257280207635,30.12139516776367,11.328094946200011,3.5450254544077864 +3210,1.1361948418142704,28.343184143921704,11.763206862651051,2.3413429058145283 +3211,1.1404925135153217,27.694505835350903,10.95840856647594,3.635834121512982 +3212,1.1427789924535194,24.254342808846328,9.715193298196386,2.980308216134657 +3213,1.1405662153805625,26.248271518657937,10.71216323395104,2.996393798785996 +3214,1.1455839529840963,31.899004673765187,10.260757896048643,3.886021653051071 +3215,1.1396778255445779,27.200834869757884,10.52187440563148,3.714433203108204 +3216,1.143914175009156,26.8700130926845,10.078082891200236,2.6679032050349525 +3217,1.1457787045797083,26.043507657539152,10.576468791556335,3.5319627076215383 +3218,1.1441011421159644,26.447817883783205,11.005254623261365,4.266320360481255 +3219,1.1464593203101698,27.171633168358863,10.606981522585071,2.1806153934765837 +3220,1.1463556643068562,27.966357938756012,10.885274912010749,2.814574281693211 +3221,1.150414502076053,25.273908130716535,9.87579240657361,3.6569229663539287 +3222,1.1474001217224035,30.0710595104751,10.78379805807762,3.981110066066302 +3223,1.1538271851950963,26.30875639489554,10.114829054869515,2.968014557120076 +3224,1.1494134998040133,26.841634787302127,11.821720416895266,3.4617084453439704 +3225,1.148259129496007,28.566048180067302,11.728064888911398,2.8941727036481706 +3226,1.1495101974818023,27.691760046146804,11.174150280996024,3.4121437463966866 +3227,1.1525797610777462,25.818372459976672,9.894560023289468,4.676053445544589 +3228,1.1522338596699275,25.93342352231948,11.5146825967256,4.088301517712472 +3229,1.1585699385475061,23.784597931076295,10.28011441270912,3.6973884990996853 +3230,1.1488479058890424,27.95952320509246,11.124909281131622,4.473147726662048 +3231,1.1530836942926508,25.438695279849288,10.347356079109792,3.8049197349415618 +3232,1.1592745408305374,23.346874282995742,10.185320038938295,2.4592539853942474 +3233,1.14886370146017,28.99742748251085,11.282570596835807,2.5220954269902407 +3234,1.1531038870033472,25.44601644990653,10.830745292553965,3.6439364396493326 +3235,1.1487866058614853,26.9251009054887,10.837405833320313,3.6855291270044974 +3236,1.1530088138335324,25.211632388835,10.496236957459509,2.6148777186102703 +3237,1.1545479438908937,24.66905931660856,10.291187333404288,4.333837817568202 +3238,1.1530943478392603,26.312043519525552,10.296708013190212,3.955129592856582 +3239,1.1524338381081365,27.821313880805253,10.55438125321286,3.603147227800802 +3240,1.1531999177380903,26.99687360038073,10.96919824888831,3.0532659656367187 +3241,1.143902630546557,28.2307356549085,11.477536423178739,2.938866542897973 +3242,1.1456586271810583,27.728056790289703,11.145031532276802,3.470964084693071 +3243,1.1447436199168133,27.656512735855372,10.03687774435176,4.095450992858467 +3244,1.148340083426001,25.16275374669759,10.366055723493005,3.903425674111036 +3245,1.1468074295052528,27.18460893451445,10.141080528617653,3.362157754303383 +3246,1.1475142029741556,31.722084681642894,10.243137923239228,2.8789980679086367 +3247,1.1441715439263784,27.664384324812406,10.579484975774054,2.8795503710236954 +3248,1.1415071882454624,25.906928397826217,10.793110806693731,3.660775074039666 +3249,1.1411979922844475,27.05376212922954,11.192952246316182,2.6649147210209794 +3250,1.1422210709579823,26.521795670158724,10.473501734944778,3.0864263878147513 +3251,1.1381044572451315,27.811893341778216,11.971281907946576,2.2587664918162336 +3252,1.1383499655540574,26.318217132615494,11.097649558858478,2.714552182761506 +3253,1.135742688438019,26.84711600867362,11.580100148387482,1.632832737636087 +3254,1.1407573206408503,27.086304391717725,10.041399549400166,2.3558541030779026 +3255,1.139511871822426,26.256305890538425,10.733533470805115,2.9479724443025637 +3256,1.1401156695166395,26.781893983517982,12.07949469245068,2.1409946314602992 +3257,1.1345714450970779,26.50379134293956,11.09060638119314,1.8258599895874004 +3258,1.1378566203231126,24.64002581778766,11.287917043085043,2.745787920407159 +3259,1.1371235159132098,25.379440402762583,10.964019876387821,1.948764417129425 +3260,1.1368579018502478,25.836836975152796,10.722625521720598,2.2130598430332986 +3261,1.1402663397464268,26.187292095622233,11.18808129070246,2.8826777045682292 +3262,1.136454653458229,24.251133989953605,11.210867542813784,2.183805179558569 +3263,1.148678472815532,26.451515153280905,11.290457646381718,3.3565195827308787 +3300,1.148160219817553,23.929571513986513,10.824445294657828,3.4663621696074727 +3301,1.134064092388177,24.167363156625882,10.83456011991794,2.750811607628797 +3302,1.1316272812517585,25.13036114228964,9.761165456620494,2.815027554420675 +3303,1.1290292790816954,25.91406714691237,11.28827724825794,2.2233016245835575 +3304,1.1290508612046681,26.911442228830637,11.177342356040402,2.318459660541715 +3305,1.130951324599264,27.91652655860484,11.771993243822164,1.8825345689772497 +3306,1.1328944412145623,26.918047688544373,10.25378866407765,3.0465501847609757 +3307,1.1336770888777774,25.62644966202787,10.040082607468246,2.1904996243771446 +3308,1.1339990259357648,26.444360396467005,9.732416155712968,2.620766487447241 +3309,1.132804923730277,29.444580094216978,11.366704196035904,2.579965648049248 +3310,1.1334603175961044,28.0703294136272,11.594022010250578,2.561961013571374 +3311,1.13744308643419,27.45492902154932,10.571573562441408,2.3562045811868595 +3312,1.1400323825610688,23.776534999712013,9.456010165530461,3.0658208724199474 +3313,1.139482336939675,25.3557603396626,10.320090517075567,2.588291636070945 +3314,1.1437462366729725,31.385185739515542,10.014371622984022,3.5388289548997807 +3315,1.137630420584348,26.51074449996223,9.947471683735067,2.8009729249767203 +3316,1.1440721340177666,26.083617183327746,9.934895525315612,3.165706326741373 +3317,1.144241550649498,25.128032543338392,9.941969100007789,3.057239373647237 +3318,1.1444285249643629,25.177154843851763,10.916781920362373,3.2353073868628606 +3319,1.1447502184424139,26.367908702363774,10.433566522186206,2.0113530863468174 +3320,1.144603334846147,27.21159059373276,10.439805075462738,3.2312982900041076 +3321,1.1482030954710294,24.40243937491353,9.866220317912731,3.7132295659193293 +3322,1.1474060893533349,29.42626984900803,10.439418704532734,3.86496024151172 +3323,1.15187771674868,25.653884549996445,9.89245917646503,3.350746053393249 +3324,1.1488793711635916,25.87902058500152,10.899949320953015,2.72994612665451 +3325,1.1468731193548827,27.636678175803276,11.3742721800806,2.7644144697372304 +3326,1.149094571414217,26.691606138470473,10.67701765427716,2.7170176850910175 +3327,1.1506743461049451,25.06945249217257,10.366641347222094,3.2776692927060647 +3328,1.1501307171852613,25.663260901065197,10.945941083235688,3.492980350378757 +3329,1.1571392763728103,23.37807139430273,9.578091801962866,3.64399350093104 +3330,1.1461534790233916,27.47177407480726,10.704444657529987,3.4911654579312392 +3331,1.1542413933593958,24.02976237863062,9.87435992153428,3.645983263498189 +3332,1.1556915793359344,22.763805305846553,10.385086559317728,3.698850843934078 +3333,1.1465177926131707,27.99959417606795,11.083106033561215,3.40063420655285 +3334,1.1502727961969568,24.692017632576718,10.60527862131055,3.718993185965396 +3335,1.1464141999963626,26.26828562462673,10.729013721356825,2.9776911282664718 +3336,1.1472207625978912,24.421021047428134,10.11595347391348,4.112346199587184 +3337,1.152059706356608,23.929682318820298,9.932877027187562,3.347145982022155 +3338,1.1523620956059772,25.074634506099304,9.777049940920584,3.787802295848424 +3339,1.1494249224621156,27.060077710201462,9.6837244953582,3.7180816729571906 +3340,1.150849365509999,26.365049489301214,10.670031060646133,2.3874295965737464 +3341,1.1400645161466902,27.09153978281533,11.003743325631007,2.897504060935344 +3342,1.1424959583116245,27.0091505801127,10.686830626756219,3.0252311489737407 +3343,1.143878587512874,26.69129673145161,9.619317903108064,2.4916072931288564 +3344,1.1446127927159253,24.518511168774026,10.288131145974729,2.734877938425424 +3345,1.1430804387878466,26.245866157068374,10.162714809897185,3.6918655260131588 +3346,1.144606244122594,30.9320959126996,10.338505564342311,2.1884493162406486 +3347,1.142000891114673,26.942270815117546,10.481121285470866,3.5294571021693613 +3348,1.1407971784108093,25.104123668487276,10.131235036054603,2.662448027364636 +3349,1.1381623006170118,26.138489937865614,11.053186143420843,2.376358327216222 +3350,1.1391719445998971,25.672480353523877,10.743040074420234,3.261422504195262 +3351,1.1370670936152085,26.81537953355489,11.605604591839029,1.6326843036310215 +3352,1.1363718552683615,25.99121609385865,10.69802586515688,1.9854081474464795 +3353,1.1330794305077367,26.601518323048314,11.327255053276012,1.9790168009224802 +3354,1.1374485801528436,26.287103167032257,9.895165989679938,2.776893842303478 +3355,1.1370166825388168,25.043912174425493,10.782372877381068,3.261065599591417 +3356,1.1354085173548583,26.35762319926881,11.700977680369995,2.3773930214483117 +3357,1.1313289269097686,25.71718683698001,11.175570937355552,2.685614981516904 +3358,1.1351829695331916,23.66810223003995,10.851125092312135,2.298670545885492 +3359,1.13407994582056,24.780155724557098,11.270461370758081,1.4937640437522237 +3360,1.1348248314102,24.449484469044574,10.858151025403796,2.5201930566891018 +3361,1.1361846118469459,26.123279905220077,10.805542915504311,3.0685218536449694 +3362,1.1337286549674963,24.06032999037365,11.435626584804535,1.6527007720333902 +3363,1.1457797360462567,26.600268722875775,10.980606472026494,3.287452749130742 +3400,1.1470125437285406,23.250554373288086,10.443758723774375,2.6742080948468323 +3401,1.134508362638087,23.44790702334074,10.60567627268459,2.3433362952512025 +3402,1.131996356407711,24.298835235848053,9.677737584815949,3.8733981483830386 +3403,1.1296381420554085,25.563502423528742,11.44344839511924,2.064282972686115 +3404,1.1318808990555973,26.535700343605626,10.75924882662534,2.8745624289170855 +3405,1.1331507469084048,27.465778419989206,11.244905144712861,2.2680271865900163 +3406,1.13518889362898,26.177313418827545,11.029531733337622,2.4283097209658395 +3407,1.1378988231850928,25.379182084980254,10.215765582020316,3.057684760190284 +3408,1.1378160987260615,26.005671593548055,9.680645602000991,3.5501298435437714 +3409,1.135470739332671,28.989455039587224,11.466302988315563,2.4642421336882565 +3410,1.134275713233752,27.503416190518948,11.728834703697745,2.3244794169942264 +3411,1.1380076751916404,27.08751101668673,10.97010201409714,2.734319306986717 +3412,1.1419166718059082,23.19264026772212,9.57736041329183,2.726327908999676 +3413,1.138812311009699,25.295620841302764,10.562989382916388,2.54679464797966 +3414,1.1436039808557776,30.903847675142696,9.820302309992309,3.7499636403425547 +3415,1.1362363294389988,26.273853285800886,10.167933949564151,2.772934837874077 +3416,1.1407985502948879,26.3165547283611,9.894121920671148,4.223500408162729 +3417,1.1469123808440849,24.744305114752933,10.069517916348754,3.7274863581467175 +3418,1.1424244224909255,25.193143210417034,10.735644971474152,3.068158920822132 +3419,1.1459080822315215,25.840575580974022,10.38732001007211,2.6164111730594284 +3420,1.1458668874170617,27.103586015808208,10.564520138956848,4.277351081793164 +3421,1.149055692781825,24.071499524228926,9.429719931914375,2.9242030980549076 +3422,1.1452198713212831,29.02599548861781,10.611225431562023,4.3619771549675335 +3423,1.1503271610031605,25.219521745346757,9.959884944409312,3.0674521619014836 +3424,1.1466060286285797,26.05383692073314,11.20648687832688,2.451692526810275 +3425,1.1472935920085963,27.124152782417934,11.227735573526296,2.248017721812839 +3426,1.1481851465418955,26.47912605217145,10.838162719171892,3.940890554324578 +3427,1.150396181007359,24.899398678446843,10.01813890879093,3.9770551915051198 +3428,1.1477714429244195,25.27701107539866,10.771942831618064,3.337478739825969 +3429,1.1553501183352732,23.095105817774215,9.73959280300467,2.6250438145373414 +3430,1.1464883263000394,26.769921006180656,10.865973248958705,2.1626132895735544 +3431,1.153506424414216,24.028050831103393,10.239306448244688,3.183420617119023 +3432,1.1570777634043747,22.38026924183459,10.263185628058894,1.7541140488655849 +3433,1.1471705190993955,27.71226343617648,10.737564860340415,2.510676189299328 +3434,1.1502455882474802,24.710289325780874,10.673713752357164,3.2327616956298293 +3435,1.1468556863366834,25.98073833543031,10.530886392168899,2.568515157392571 +3436,1.1489901063842252,24.556912123835644,10.251708781207594,2.771376057907789 +3437,1.15450820483728,23.392756933301634,10.274063724309537,3.7789958607454035 +3438,1.1520522052359108,24.794155243374984,10.058566730286701,3.123617252231711 +3439,1.1505301632650797,27.041173413309597,9.929676178939182,3.079462173224315 +3440,1.1489943678928054,26.279815838127544,10.58065964398023,2.5739034967121355 +3441,1.1404061398800258,27.073684946710582,11.661193105493897,3.4590247120609376 +3442,1.1439564421563404,26.423652043743708,10.537275294354018,3.0657785826858066 +3443,1.1457067729279309,25.99029960454951,9.687958122205409,4.454042965157931 +3444,1.1458240158403243,24.31414298017281,10.082830320607014,2.725644600636653 +3445,1.1442562718948757,26.078618203594765,9.976689577526088,2.862372765972086 +3446,1.142767823760704,30.89295842072684,10.485845534845899,2.3763807664973884 +3447,1.1444190779413181,26.652255310446154,10.776848053332518,2.382599139377804 +3448,1.139155461064029,24.954504627148946,10.19018180574981,4.112694616760967 +3449,1.1395160424444764,25.885825834079018,10.852566290692783,2.274727557987447 +3450,1.1395497832883101,25.312430197477074,10.571792698847636,2.757542797555807 +3451,1.1348266405546077,26.580786750510736,11.57573239995393,1.5572176001946632 +3452,1.1359925967806608,25.728159598121735,11.046896993578198,2.340527045460743 +3453,1.1353291140453852,25.826325482233823,11.214576024486288,1.8694596334296998 +3454,1.1378373216462847,25.915012910172365,9.74695495810174,2.7206980904588836 +3455,1.136698117711462,24.652980144365667,10.8351867576043,3.363066289716261 +3456,1.1370322202858338,25.854257370623056,12.030232751376426,2.0642561754699393 +3457,1.133029945848482,25.60341597895617,11.07054943135356,2.5550027442012753 +3458,1.1357385082167917,23.677596028171234,11.152073694043706,2.300980790254525 +3459,1.1341532837568447,24.630402583525587,10.940890619197443,2.0398441681344517 +3460,1.1355912345431605,24.399467141526944,10.762342812299847,2.1262851636716613 +3461,1.1377538397209401,25.552333962712247,10.616880658797449,1.9084686221610232 +3462,1.1347208328718936,23.468808109788366,10.926982335453063,1.9233762564979433 +3463,1.145780332270419,26.04485183381528,10.764146301426559,3.1219898927118344 +3500,1.1517008116814285,21.05892808885118,10.087583000613805,3.083343977496413 +3501,1.1367879080656178,22.13222179170536,10.860908275786555,3.0424798915305775 +3502,1.1368932975672448,22.75589074426995,9.425284280037907,3.7475112193360767 +3503,1.1320727164414035,24.272406080083762,11.685542478686385,2.014599770186368 +3504,1.1331955291039304,25.09675971655048,11.248665301175814,3.005958602690881 +3505,1.1355569235063832,26.129043002967983,11.536298385448566,2.1836420626376314 +3506,1.1388019953976096,24.696274245708373,10.54674223088834,2.529152453872937 +3507,1.1412264956850071,24.098248106000774,10.094333585505405,3.2426765750378777 +3508,1.1429707971348406,24.368225773709295,9.790255948181391,5.160089997609167 +3509,1.1382765419207441,27.413334019129902,11.275912196283011,3.2401285032698777 +3510,1.1362096885832376,26.061008026429278,11.524839236561359,2.2868649810428487 +3511,1.1409062160202712,25.686410299932646,10.812865978975267,2.7556590402933714 +3512,1.1433377911556875,21.619147886110177,9.655203441249137,2.756153762783751 +3513,1.1414387298213893,24.123802616618462,10.56230039954188,3.2767449674481672 +3514,1.1469479256576547,29.479847398232575,9.838762296019842,4.239807824427909 +3515,1.1382787065053097,24.88671888956456,10.624250241410955,2.5291825812886053 +3516,1.145155046674261,24.55171977077896,9.726237935640235,5.716320741145633 +3517,1.1488987277763099,23.54068056441637,10.01722392222292,3.2627667244702985 +3518,1.1452800485077692,23.638253085673746,10.854151634293443,3.2017792751609444 +3519,1.1472236316319724,24.688275346804158,10.689088495194984,1.7565425161360109 +3520,1.147173246372683,25.228855971179645,10.975628583990474,3.6502041601888586 +3521,1.1523688419274771,22.41752422206114,9.690903784177854,3.124990249402669 +3522,1.148972803761451,27.786150136596177,10.213957524504423,2.931402011130918 +3523,1.1522314251779293,23.99493572038197,10.091166207358272,2.7489335768382617 +3524,1.14989121634278,24.405098143016037,10.99025215433631,2.1706343242886073 +3525,1.1469526884754004,25.884464396666488,11.592108534490572,2.9284100446358345 +3526,1.1490814247588708,25.517938755003296,10.66853268693055,2.449405113951587 +3527,1.1531955442978996,23.44297421000307,10.024375618783056,3.54698400395117 +3528,1.1520453818376255,23.92616793248176,11.036473045904149,3.617782129783361 +3529,1.1592363647088872,21.671615214703365,9.588410842697058,2.5823799488110413 +3530,1.1489887935295457,25.46527189800614,10.97966431350254,2.8937052108813113 +3531,1.154662544765051,22.73700927901335,9.946085024089482,3.2772182200510342 +3532,1.15917937030457,20.86588804159063,10.134651971131575,3.0867864354471144 +3533,1.1502648577361494,26.44569832297597,11.020608872211213,3.382526298022365 +3534,1.1530555748102924,23.14082826347977,10.735695714221341,3.538499348481102 +3535,1.1476651762682575,24.858996475206737,10.609622794793387,3.511463911238202 +3536,1.1513829315181594,22.962901006081662,10.77019101426596,2.8034713277738006 +3537,1.1566369367549292,22.11263986452818,9.689803087161598,3.3276375591210114 +3538,1.1554970789227788,23.454230699196575,10.128415292213363,3.4077434800930515 +3539,1.1532137433398622,25.605340427337584,10.36252688141802,4.721258631617012 +3540,1.1540283283622865,24.71518568428107,10.529995164539505,2.439598210085267 +3541,1.142842322802913,25.84879966697101,11.14202752409896,4.734382708482845 +3542,1.1470594256168698,25.086842293726413,10.788959476704816,2.803952332391673 +3543,1.1474461786376982,24.84257137580719,9.439812494244833,3.6098562477814853 +3544,1.1508558475735686,22.997757435741594,10.361418125151753,3.454952442271962 +3545,1.1462923356170878,24.6989710768334,9.736559822344871,3.390234840069714 +3546,1.146744642530889,29.478344161073082,10.442784222411506,2.9916556818203306 +3547,1.1455265294505643,25.222741500182803,10.667081290433734,2.7627315315226713 +3548,1.1408535021564077,23.865062603491765,10.41840773320424,5.861774868209954 +3549,1.1417530373514135,24.44809635062233,10.862435610089793,2.622039762198533 +3550,1.1411641717994767,24.408384840425757,10.362582879387896,2.881394718907037 +3551,1.1364334656004538,25.369183460720436,11.45743298544741,2.2507847390191387 +3552,1.1377530569392524,24.53705221295406,11.19568383871968,2.2919397707229896 +3553,1.136532505639471,24.819119066640994,11.261364900849395,1.9984298989070641 +3554,1.1407554689907893,24.63344749014347,10.260636526227863,3.6540200659852156 +3555,1.1399715747949777,23.846321408046823,10.813913710092208,2.989020999579184 +3556,1.1393884592833097,24.54086382550537,11.75956406748584,2.0650665902602454 +3557,1.1342425687680004,24.199882576441002,10.774599784055672,3.160575022344034 +3558,1.1377167791233262,21.998645028734245,11.110962031181637,2.8666479726845204 +3559,1.1373858574516351,22.949780249872234,11.24036499259806,1.6223438141042694 +3560,1.1352982078214318,23.2293075725141,10.96973164532935,2.1988607757032614 +3561,1.139840075419312,24.204257180077047,10.442929253820592,2.2757489929288086 +3562,1.135128224225042,22.0400395708803,10.751261537562947,1.2142107816801542 +3563,1.148681062149644,23.800399092248107,10.789571685814721,3.0280938776605746 +3600,1.1531842553598728,21.821803718167686,10.668938326184183,4.122649514825568 +3601,1.1416824274341746,21.808843379342505,10.67551023585415,3.224762008416257 +3602,1.1404947487653567,23.208830054470326,9.76342134247714,2.379860422794053 +3603,1.136996671185634,24.59537244848918,11.556584245745984,1.836316192415455 +3604,1.1397196122125972,25.503014855869296,11.005503750111728,2.7370235074057976 +3605,1.1414691222914581,26.69109141997497,11.502159925025543,2.438571306823127 +3606,1.144248229570607,24.903617949094834,10.877876977962625,1.984435338822853 +3607,1.1442337874967385,24.326958176410546,10.391803528609866,2.6278894268027857 +3608,1.1417484407167602,24.924041449692872,10.031078110375033,3.2205261692668823 +3609,1.1414855698795927,27.970921459167158,11.719928220029834,3.1111956324459156 +3610,1.1396761618465059,26.772669019319924,11.789083097815487,2.1987625185952333 +3611,1.1441796535514699,25.900483591514913,11.075260414777787,2.8489899485629784 +3612,1.1477452352158415,22.052222328072187,9.608419841976207,3.5121365592436167 +3613,1.1432268416391378,24.140612366841022,10.726298666315353,2.62204167688938 +3614,1.1519555657479201,29.665775724726828,10.123402607698925,3.0280259060239785 +3615,1.141618635174447,25.34857928058092,10.378189315012037,2.8319555701550687 +3616,1.145879667833218,25.2528408007523,10.291925234610073,4.167174652446684 +3617,1.1502487519559215,23.5568985303005,10.26246379323928,3.573594503875009 +3618,1.1490114062536183,24.29103918010119,10.862497456287334,2.6260604094923274 +3619,1.151237684110175,25.046369533235396,11.079863594913359,2.632971860476428 +3620,1.1510571699637906,25.824997665407974,10.918094203623877,2.929892610619104 +3621,1.152302668023251,23.23550904913028,10.104406063427675,3.2909140579828993 +3622,1.1541741490324502,27.948019295559952,10.867378410432325,3.0940545080638566 +3623,1.157967696761488,24.197296184410494,10.282449814279687,2.9109677629277804 +3624,1.1525164099318739,24.84132366804561,10.995093236907294,2.764291330318982 +3625,1.1515624898868584,26.312672314381086,11.16924729308931,2.324852896049744 +3626,1.1520635996297628,25.63379366975531,11.051617452810419,3.5274262647847356 +3627,1.1550521740434878,24.390674071669,10.034999225513094,2.971224811115174 +3628,1.153499953650002,24.631190746610788,11.338874157311013,3.38183345926701 +3629,1.1597497429419488,22.272253499689494,9.860842693342077,3.212563779225396 +3630,1.1530092753286239,26.14733975769735,11.376968224944374,4.484020665202567 +3631,1.156845785388716,22.95864668405124,10.22105704375473,3.0768699294854907 +3632,1.1618791564747044,21.437269414994226,10.429091166642474,3.1696089730256074 +3633,1.1546683742032193,26.798170548954804,11.03782360355644,3.6391411329569783 +3634,1.1572756130176522,23.775966590379614,10.848247666199352,2.301800912476214 +3635,1.1517509678468854,25.085574032700354,10.621521427980202,2.7795771875962814 +3636,1.15248393972396,24.001981541748716,10.71330013565918,3.1404132828641527 +3637,1.1584564886485675,22.455380291683678,10.469722707534384,3.5549737821800345 +3638,1.1560411527478676,24.31709378457981,10.237051360977084,3.39318907478006 +3639,1.156013097496543,26.18272903861652,10.281994655077273,3.4822501501307412 +3640,1.1558744729422321,25.108838961894904,10.52295123995433,3.344299352695247 +3641,1.1463528541486159,26.139438817312456,11.278813784670735,2.587647866560828 +3642,1.148801619109446,25.53774617248672,11.021815584588927,3.0063353720837136 +3643,1.1492553743114509,25.51852955778386,9.986235090325895,4.42496352266041 +3644,1.1496394488387933,23.542208979013544,10.438264663141872,4.086395647006365 +3645,1.1512524530168322,24.903033064470716,10.338113423616871,2.6652101533697037 +3646,1.1484573302477916,29.90376474076062,10.433543687612712,2.9930207346224225 +3647,1.1486004088547124,25.57444372456399,10.936272078731244,2.7929038065931557 +3648,1.1444504170349874,24.058164195877783,10.711927945003204,4.163241869693573 +3649,1.1446709891691675,25.229033600545236,11.251196726646638,2.5597898633192746 +3650,1.1463144581699607,24.727604615984816,10.309826889655172,1.828581872596808 +3651,1.141692122759646,25.71640834169017,11.81695571926301,2.625604332643321 +3652,1.141986252668813,24.770785331850103,11.038232828181771,2.104027715111217 +3653,1.1415143440149431,24.87981718496382,11.438410820373933,1.6742918227789023 +3654,1.14284562294019,25.34605278352031,10.266569167030001,3.413248035678537 +3655,1.142511862389063,24.30442730740155,11.01905060767926,2.3632544040578525 +3656,1.1420734578248941,25.00078451291851,11.895037418082069,2.4352806349002507 +3657,1.1398297196693525,24.75358434402951,11.267589394682176,2.960019003925319 +3658,1.1406280313147612,22.400793293164167,11.291422097368436,1.8574815460069618 +3659,1.1415632152082642,23.465841488289072,11.295828139606394,1.575994036620978 +3660,1.1399552872306695,23.408246900183208,10.871110359748432,2.3267765363205535 +3661,1.1423467329551558,24.416185978807455,10.729205580204415,3.2189757106615504 +3662,1.1388687025960493,22.422726443287306,11.242893604191359,2.232535716375564 +3663,1.150459014394936,23.86514511943872,11.173010740952936,2.5587956797160327 +3700,1.1540010178938827,20.33850466252321,10.541375818125404,2.9153961700084308 +3701,1.1421659021576764,20.774355981694743,10.710694435739022,3.0229953067970374 +3702,1.1418399092919997,22.057118146499796,9.725563905699419,3.155849264899616 +3703,1.1410498697943874,23.133284501938427,11.827063392676719,1.5105084704437408 +3704,1.141284978206262,24.11108163653787,10.821714243697304,2.536739124694419 +3705,1.1405738369739118,25.417171392444025,11.591670349566023,2.023690721439242 +3706,1.1449464993121363,23.73722955034663,10.6829006122816,3.470178931727656 +3707,1.1453668619783366,22.967588596144758,10.288722335341532,2.6917650787674843 +3708,1.1460085301387297,23.237072913281654,10.161912884759698,4.574941159840665 +3709,1.1430190047307092,26.575936351662257,11.496891509514795,3.1896935962190165 +3710,1.1416821143760627,25.31848626141503,11.460509942856293,2.49043476820087 +3711,1.146638017734253,24.396454470171637,10.821195191941962,3.601970633870175 +3712,1.1480321033042622,20.83259963477365,9.584508604392862,3.384086168163492 +3713,1.1440175138973607,22.84342167021009,10.607831815861562,2.8347711819789763 +3714,1.150425533055008,28.321073695510155,9.921844357208343,3.5498709734823937 +3715,1.1447475671761076,23.64692783060225,10.21645351940482,4.0651371909313845 +3716,1.1496509271569124,23.279078385288578,9.82167861571739,3.367015446180528 +3717,1.1500612308661113,22.32674922951231,10.204186907037759,2.8548330045788854 +3718,1.1493620531198843,22.88755052592745,10.588357148160394,2.335409318893819 +3719,1.1495634571139586,24.00480272999017,10.557386941439256,2.636434858504842 +3720,1.149879287756773,24.56933073116685,10.661849006514677,3.188840810272694 +3721,1.1517483963572788,21.799857803660483,9.57136800771959,3.2846677282450703 +3722,1.1515921911870945,26.78953353743441,10.514536914541553,3.0901113774299183 +3723,1.1553341576188079,23.089921952713723,10.156782354297901,3.096658030923272 +3724,1.152955576707824,23.410766076465286,11.383601205014928,3.070744203538841 +3725,1.152437544468723,25.094000437458757,11.232835459241404,2.2861228889677676 +3726,1.1525706438769336,24.27044073407411,11.114408351828295,2.3525511514595063 +3727,1.1563592676835457,22.46408775444032,10.317667664722363,3.37809418286267 +3728,1.15510361567997,23.050238873856248,10.976446217618108,2.9303136370759066 +3729,1.161445784082489,20.88988844434396,9.814523435914744,3.5052442176971277 +3730,1.1523887092223533,24.255977997298068,11.167617384789889,3.861996509166034 +3731,1.15830769430948,21.292644091141753,10.562555421842347,2.899695578105282 +3732,1.1621224183683487,19.865948370993863,10.293640769751404,2.522200582257045 +3733,1.1528391816069414,25.573680710220412,11.323913120690701,3.6234003163630697 +3734,1.1552100419773712,22.334872456472315,10.732259395803263,2.77224138563313 +3735,1.1517045101134096,24.055621577664034,11.016062044842705,2.759495323282213 +3736,1.1543291901066457,22.125389152897757,10.589382110285639,3.446819727294086 +3737,1.1577261699697179,21.149510999438213,10.427944032396587,4.185888670515573 +3738,1.1566043801122083,22.516169335043188,10.28396604536525,4.072764922963687 +3739,1.1535795764789505,24.737553947702946,10.435502886771314,3.6449670290800533 +3740,1.1537571135851146,23.769328016356422,10.776561874836128,3.7461115759411463 +3741,1.1444282500979412,24.696513283689775,11.424769264592797,2.347366661926939 +3742,1.149896445978887,23.939802486419396,11.10894160771132,2.91329177451109 +3743,1.1500746023902335,23.875536060931744,9.777982317931889,5.429027409753057 +3744,1.1500264902331072,21.686598680279026,10.413057276868736,3.045164656189316 +3745,1.1490561612952195,23.44871978653685,9.933847467248338,3.05109832398033 +3746,1.1507516941412506,28.29407363295435,10.359792735885382,2.445996243084692 +3747,1.1486422435171675,24.00813882626048,11.061273105015596,2.5767372351213833 +3748,1.1453073560047902,22.374508059135735,10.456266299330897,2.8259400131495442 +3749,1.1454793068291105,23.421364300286605,11.175905853321522,2.1596185230742524 +3750,1.1455248074936009,23.35756740585767,10.365432089759931,2.5921086883783424 +3751,1.1418367760246064,24.341310084664116,11.7841746693594,2.6176216620176476 +3752,1.1419242360624264,23.366714905031362,11.137433304827834,2.4739111405098386 +3753,1.141008710608152,23.684781302306263,11.327320890547975,1.6381034840954156 +3754,1.145167002917704,23.813679719727816,9.69069882134321,4.6021971045188135 +3755,1.1456926671381469,22.626896204764016,11.032774074035087,2.579396932478436 +3756,1.14269645606956,23.394155511346412,11.796118239596659,1.832773198077636 +3757,1.1407569294958735,23.079542332770004,10.70799049816913,2.311746293881873 +3758,1.1428661817299484,20.8374389415509,11.004063054871638,2.945095431579508 +3759,1.1392678722335132,22.432118429516393,11.396787280279534,1.9405876780938542 +3760,1.1401554531996545,22.167086889694655,10.987772671066995,2.2455536349462086 +3761,1.1412498080361537,22.681995894505327,10.659547711425581,3.5846801214097233 +3762,1.1388555273536831,20.58649732001857,10.960636266139916,1.8932174462100524 +3763,1.1492968374758625,22.961225257685882,11.223027241637862,3.858402390797074 +3800,1.1517960978765607,21.677061813970116,10.203506814424975,2.571174157931034 +3801,1.1386893210868645,22.14266802707946,10.728433679546779,2.772387324371527 +3802,1.1356261158731564,23.447032271705808,9.41779514313647,3.6372579141983694 +3803,1.1358480157801574,24.34389737523958,11.351948301266889,2.162835710077886 +3804,1.1351740239044705,25.48456822972518,10.977435491622794,3.343229195184225 +3805,1.1368749404892025,26.03085184263739,11.611259339939023,1.851520931045961 +3806,1.1384927400845444,24.83900729128743,10.487767651908285,2.8483682314271164 +3807,1.1409535273049678,24.17507321531111,10.294829235607253,2.68419166286405 +3808,1.139558967323386,24.58145964747009,9.684810773230934,2.9248699100356346 +3809,1.1377056848883331,27.754883820510386,11.343105772452962,2.59941432483422 +3810,1.1364885753876095,25.711177230017352,11.781407682705101,2.4630524017304833 +3811,1.1397659756825098,25.788536043247657,10.616446297554974,3.2396727549305986 +3812,1.1418809426414522,21.700284801453957,9.222197828679613,3.29542159141189 +3813,1.1391562083631783,24.192991043465515,10.044113631690049,2.101836966882474 +3814,1.142862443529267,29.667713613482064,9.512139690692344,3.3498322539557726 +3815,1.1359536183813705,25.087091938436163,10.020227187269443,3.4486115859242648 +3816,1.1430301423941418,24.8070548997803,9.921758496252258,6.205847329011146 +3817,1.1442516841475046,23.784585879697143,9.923468073844312,3.077203137090891 +3818,1.1438647630276029,23.952634619994996,10.610472562240759,2.614261299509258 +3819,1.1459985068581062,24.465451308529648,10.192325628863848,2.5864264537717947 +3820,1.144014089589203,25.603484117351105,10.780191634493,3.737733236687107 +3821,1.1467603272146722,23.07951476977882,9.513991630335253,3.217098352344244 +3822,1.1469305865790629,27.844787633593988,10.246625365015985,3.1197813147870566 +3823,1.1486875350003554,24.06245967250968,10.08472010528896,3.2433851726745244 +3824,1.1474144388969298,24.445239744799473,11.294048015298133,2.752141169820295 +3825,1.1446415580981943,26.611276706067503,10.735060303379711,2.172751406131332 +3826,1.144726705040925,25.601227697702832,10.68144146734365,3.891255206527055 +3827,1.1478111136639486,23.885081293256402,10.03259678407649,3.5178134604990214 +3828,1.146481663695158,23.936886066802177,10.730508416318278,2.672374190946744 +3829,1.1543665762492377,21.429981569515142,9.345369405913887,1.8313025130783116 +3830,1.143984072519761,25.747455697390485,10.515197162200941,3.8303620342847227 +3831,1.15051326067113,22.663234973982625,9.770979086970796,3.6057646841891136 +3832,1.1539222368726807,21.082757069059518,10.36301710076228,2.788102808373813 +3833,1.144736544893034,26.442106462748388,10.97400525216772,3.0376422738447135 +3834,1.1472105935757297,23.152596738819632,10.66468311906401,2.8238554402712555 +3835,1.1445954909773488,24.420896399142194,10.361119581332721,2.8165367784564275 +3836,1.146647625341082,22.95732018662466,10.08852919039323,3.309595214995489 +3837,1.153189596785579,22.077897567486012,10.089357322155683,3.4178973361121217 +3838,1.1490685787746944,23.824681179582612,10.123379473589623,4.015422852051461 +3839,1.1487382465503506,25.43972150462817,9.966484860250645,3.544109774936682 +3840,1.1459167965041352,25.175459549524515,10.292152459337391,3.127917344736444 +3841,1.138564311363706,25.882090368894808,11.37322464059304,2.604517311344427 +3842,1.1421453142322342,25.19180390766325,10.721869965623856,2.9972707153787783 +3843,1.1447388904225648,24.780680151397267,9.279674978241864,2.433840193915321 +3844,1.1440947249355284,23.058389244742777,10.267972473886692,2.966522536509396 +3845,1.1429171444043456,24.796560032709763,9.524759320446487,2.6636109781799804 +3846,1.1449367586376895,29.345938707361807,10.243715655278235,1.9123038843266436 +3847,1.1424167340521667,25.228589189987108,10.39333662931704,2.759562457884761 +3848,1.1388922010937226,23.613546204551454,10.614807781664464,3.7279042596079077 +3849,1.1374097793447264,25.127561842275753,10.78783953510199,2.5680339515939723 +3850,1.139345933363389,24.24742727529649,10.221636256187894,2.39428111362677 +3851,1.1351840045467385,25.533584342067417,11.458396863112283,2.228252600976109 +3852,1.1373847209820147,24.65101319470446,11.142603615549149,2.277272799547205 +3853,1.1346238580345618,24.668807041678697,11.237922787138096,1.890966729087274 +3854,1.1387718883738067,25.139020170565807,9.816181236608667,2.35566749354819 +3855,1.138580390226169,23.79340481660697,10.739037213059754,1.8632347888959628 +3856,1.1376346433556048,24.424300768124162,11.580765233531231,2.782525493867159 +3857,1.1315101761863884,24.60166538679921,10.69326203411535,2.6351120062642153 +3858,1.1345321840649574,22.55495852036076,10.993038224564001,1.9433513613921447 +3859,1.1354545920569352,23.47531325889608,10.622595630710192,2.184992236552826 +3860,1.136638349647283,23.179843216865567,10.906259700998355,2.2831377924816683 +3861,1.1385371082888363,24.477172597831313,10.485696433751496,2.4272995195480536 +3862,1.1347619335761403,22.317379233302347,10.693441544051133,1.5720071997078588 +3863,1.1454847799701304,24.68526894678035,10.714827941333917,3.6577329547927 +3900,1.1543731184080062,20.488655422660827,10.083637475081447,3.1730727715658724 +3901,1.139820178487313,21.23658054371189,10.322312754184491,3.9364023194826596 +3902,1.1431017582748844,21.97935607422647,9.333061682867333,2.9238614135360828 +3903,1.1419986920243321,23.128537593705147,11.180608907293276,2.4938692672400817 +3904,1.1395966540628015,24.262630322534736,10.787425956187118,2.5516108288132746 +3905,1.1412165336113467,25.227065068519142,11.281021192219677,2.1733001696703544 +3906,1.1444964012864292,23.794045570284265,10.538359444694516,2.042258570560033 +3907,1.144574132826777,22.94459269445631,10.067277843751224,2.4799255660779584 +3908,1.1447887333175086,23.445968630049084,9.681803529660067,4.249040298712799 +3909,1.1409972692280983,26.79867891470157,11.028400829981486,2.3944203028477125 +3910,1.1416027378657925,24.985091217439045,11.556528177604967,3.289062322144037 +3911,1.1435674531260527,24.33841792791082,10.957118605644581,3.0612303846912807 +3912,1.1464591457048965,20.69737457279318,9.153936818971443,2.0866552250678376 +3913,1.1428101353998128,22.937270620344496,10.377665209187944,2.9958884291635943 +3914,1.1488288514521119,28.30059135532605,9.472950285417847,2.9032128563293678 +3915,1.1410142365695888,23.946898549287617,10.0584560617232,3.7470106083995076 +3916,1.147318453634318,23.411779937592204,9.17196537996426,3.0665612427684312 +3917,1.1476695679099167,22.461156485644747,10.104243944939249,2.5058832251580645 +3918,1.1457294865522267,22.763783313500408,10.584855829361896,2.3370760821039327 +3919,1.147625243154708,23.675074979564442,10.138793832926321,1.6794585316727253 +3920,1.1473783859277547,24.235557416910268,10.570116204022307,2.9433990859973242 +3921,1.1478695855817023,22.075279229408615,9.668811456313351,3.9112103472904614 +3922,1.148906354524852,26.492868480084272,10.622271194654033,4.455885338999434 +3923,1.1539052033327697,22.862701032092406,9.690744040842956,3.3628607835328883 +3924,1.14946023548524,23.24566772698719,10.964723011902485,2.5890065876120834 +3925,1.1470373732774477,25.101180370806514,10.968459592324358,3.137561048332888 +3926,1.151089756259392,24.195701995389868,10.725369903119034,2.4516188800618828 +3927,1.1514297425522142,22.504923185970604,10.021841493763077,3.354242024400667 +3928,1.1501627663007365,22.613349381224733,10.764019913392143,3.2423025354060946 +3929,1.1566401326513929,20.756463174022244,9.709283067439081,1.8521201154468685 +3930,1.149447332349529,24.54658202353458,10.62681095331622,3.374189847534736 +3931,1.1530114722294116,21.493173290205256,10.074797140518013,3.4052721227783853 +3932,1.1578896039440356,19.773287559383526,10.32938842193018,2.8565273370012556 +3933,1.149648135576577,25.05578191011678,10.591752020903497,2.3917759272639803 +3934,1.1505319411951043,21.956978194988665,10.569730149516548,2.490916667651837 +3935,1.1492745709351584,23.220440010029186,10.620274375650927,3.5023357202351573 +3936,1.151015924495579,21.92956239995886,10.677471864004104,2.741178012674164 +3937,1.1534616136834297,21.102523360157797,10.045065117205478,4.163408396805314 +3938,1.1519497481732526,22.974859457286108,10.184239987000778,3.8094615360301156 +3939,1.1507425394336563,24.51120521268897,10.21560437873117,2.902476548123378 +3940,1.1498066120073334,24.074845056855747,10.258454482267174,2.5167512041166464 +3941,1.143373082635483,24.405377102751114,11.142940784925463,2.527564638775902 +3942,1.1464554373066083,24.20563533255394,10.557420607042825,3.0795679367105753 +3943,1.1479580472023911,23.82081880484931,9.539263416738036,4.372027692710532 +3944,1.1497226365199211,21.768587062655598,10.07555416113971,3.1686594239112837 +3945,1.1481698686738628,23.471037347064225,9.616620370276427,3.1742548581505257 +3946,1.1489530659534108,28.259374456495852,10.216476446020952,2.1597519154306672 +3947,1.1456839678502033,24.30452655357998,10.763343139668338,2.464229541862583 +3948,1.14543376956626,22.1901215140583,9.924181593667923,4.28979517856956 +3949,1.1456147477798893,23.437389298701497,10.755298326118405,2.840234607070702 +3950,1.1440631485022097,23.030430988545668,10.20771776003723,2.961019204323661 +3951,1.1395773882354667,24.392436002071264,11.525472687803179,1.669398666118825 +3952,1.1415641961090692,23.47022884482706,10.909034982024359,2.78249592494484 +3953,1.142666430967322,23.52236776256794,11.125354914176041,2.08758099728055 +3954,1.144761482222896,23.804945163786336,9.62291802823644,3.414627907959703 +3955,1.14473642729525,22.51672604641339,10.77227681827595,3.2297326117831884 +3956,1.1441626022163855,23.6166060242059,11.54668733202639,1.988552580241299 +3957,1.137428825312779,23.34982021175819,10.848557697202287,2.1018956359856915 +3958,1.1405214325052626,21.24530052122188,11.039194925874027,2.569012923982179 +3959,1.1397231190744415,22.367109075039316,11.014201817262368,2.097831219547032 +3960,1.141139999051186,21.921842618026048,10.59136643289094,2.7167495677931943 +3961,1.141137450801971,23.291794916076825,10.377206775251834,2.9192947113101084 +3962,1.138341003152133,21.126454853659773,11.085643636187628,1.7647500842741775 +3963,1.148599591280074,23.375541709478114,10.778491080579835,3.973264276446714 +4000,1.1504705771258534,23.739261300239484,10.34295536007944,2.162749628867127 +4001,1.136353901036991,24.28306820100971,10.503802729791152,2.825526353798559 +4002,1.1372435929502844,24.861113974582967,9.477898545457094,2.843797946262473 +4003,1.1349694553495029,26.092750271107082,11.183455902929913,2.049150233281945 +4004,1.1369114458091922,26.473338417344184,10.664425165242108,1.8626381086505597 +4005,1.1365586053275405,27.54402051354968,11.527915564656587,2.3280451048966286 +4006,1.1402575557029944,26.284530327849495,10.022973955182634,2.3899449317622414 +4007,1.1394704591440457,25.623984591270844,10.138676242667882,3.286008317721676 +4008,1.1397403882653612,25.9943403205607,9.606497792328108,2.4789375342670685 +4009,1.13538510822795,28.896834205524403,11.337368304177927,2.882485830764568 +4010,1.1362871818072398,27.543803285066208,11.313355868111836,2.014238685218163 +4011,1.138904443295611,26.9958442312506,10.605033150940232,3.1909369943389456 +4012,1.1426513587751024,23.123648396472444,9.422417329892186,2.7908680405799475 +4013,1.1380612655008366,25.38967475074094,10.366523833147788,2.5557038544819815 +4014,1.1436109162809847,30.73873694496653,9.588675104838948,2.738054634637521 +4015,1.1357923421530132,26.375896060461585,9.932954241790837,3.0414383278249386 +4016,1.1427847358926249,25.83961115394529,9.839274749621502,5.0730515359656145 +4017,1.1418351051904823,24.734081487933157,10.068253027728817,3.35680177737233 +4018,1.1419353754714388,24.923352959306214,10.386904123972032,3.141457641525702 +4019,1.142971935357718,26.05738350251723,10.44037574872638,2.2620636130901666 +4020,1.1414988954121101,26.695809614199284,10.430517933446524,2.746834519662774 +4021,1.14381457114601,24.145381117942335,9.339079832500621,3.47849934665663 +4022,1.142392451028504,29.044704566139732,10.567226732158124,3.9143838295548172 +4023,1.1469706018247692,25.493074070494654,10.031647391238412,2.806211373492941 +4024,1.1456530111678136,25.293802376302388,10.993500360417338,3.4079892123133475 +4025,1.1419806338989982,27.438419512465963,11.178662286717163,2.4977736787814253 +4026,1.1415978641062927,26.708391196793446,10.776378531519537,2.751704123211895 +4027,1.1438161935097988,25.201219658063017,9.648487953760014,3.51074744426677 +4028,1.1462516344389206,25.129281799562225,10.813284265308871,3.693549642972415 +4029,1.1505468930172327,23.122622652833265,9.505489231959993,2.734635061250472 +4030,1.1436645961831262,26.770447203395445,10.395432522635748,3.394278816069785 +4031,1.1487066909594013,23.996138074329433,9.906059136263927,3.7017422844679744 +4032,1.1515017676558001,22.406259001309344,10.054595775381866,2.7581158720561896 +4033,1.144525899836561,27.579366986810633,10.910125388031197,2.699537916901264 +4034,1.1439669423518535,24.791729806635697,10.964075704461616,3.882010161440385 +4035,1.1424959575201736,25.531757546742927,10.374100156479306,2.5907383716922716 +4036,1.1425610279339034,24.764111810758802,10.420193616009263,2.7044181307646946 +4037,1.1462557102067463,23.638606180328647,10.03228407659706,3.5213408938949318 +4038,1.1460293866787281,25.1624380417124,9.78414996804409,3.2790402745548946 +4039,1.1452028478068679,26.911958563356617,9.835127386164547,3.0861874255200363 +4040,1.1458150841685102,26.592178163850065,9.960442405046452,2.3446270984988633 +4041,1.1379738867046063,26.727184507111943,10.836684262294233,2.0673777783870055 +4042,1.141258555680687,26.442376826590557,10.768251236602683,3.0498634831520035 +4043,1.141405746216684,26.23950180745867,9.970204069774011,3.5633348293361102 +4044,1.143181424131503,24.24805745256242,10.25584462057538,3.2575064052385394 +4045,1.141558493593849,26.302855701389365,9.786881052846805,2.8579394820101327 +4046,1.141484333292839,30.985097467664207,10.323385651898391,3.3179914174331784 +4047,1.1389704904508826,26.99952167456073,10.287952696530967,2.9224338328123167 +4048,1.1383019121292832,24.964569229726965,10.16636542376841,3.3987590680762616 +4049,1.1393240584955742,26.060597692635746,10.915662697041059,2.1632293339297157 +4050,1.1389867244843896,25.695933635527012,10.120126876032014,2.8163674626235777 +4051,1.1379157279885361,26.640612171454542,11.111530366030259,2.2784143744568786 +4052,1.1375118435745584,25.785080308203153,11.010503462577981,2.1457928302773275 +4053,1.1374851789669036,25.71294829052775,11.37788302270973,2.1459689988630264 +4054,1.1421414911191845,26.028828750267973,9.872174830146879,2.6516340788962878 +4055,1.1394501464644409,25.264508343416498,10.615450668016724,2.3283823460807187 +4056,1.1396324886765226,26.38455106230776,11.630735187337386,2.055857766940257 +4057,1.1346733345503688,25.875023895952772,10.826699247250259,2.9639401731574035 +4058,1.1344304545758317,23.596715597740342,10.923772439788408,2.6295066350702014 +4059,1.1351768210449356,24.916847102229866,11.021799331031332,1.5579873657472962 +4060,1.1352876819094184,24.975152793369073,10.791160555973745,2.145119655458269 +4061,1.1358528441764981,25.893954318345358,10.437313602080133,3.0908497987929686 +4062,1.132494061872993,24.154178085634392,11.080051920951227,2.299984254335191 +4063,1.1447479026754859,26.33393510911202,10.95995325711307,3.416007150757702 +4100,1.1587849498779206,19.861166767019693,10.040126712569656,4.2425983410435 +4101,1.1478875554133494,19.976313759407937,10.417436571202849,4.1983694995826895 +4102,1.1459266168271702,21.5072833965798,9.63718627203075,5.327242237460858 +4103,1.1478339065484666,22.034800892219593,11.532338685323452,2.512095257370641 +4104,1.145504749782747,23.733721345073306,11.182066016503356,3.747248661360435 +4105,1.1458547039751559,24.702582497676282,11.533936701845768,2.374219316735041 +4106,1.1490398124534589,23.46282524775363,10.63321218826161,2.3711894489999277 +4107,1.1516449972864797,22.188324593344035,10.116524192273424,3.4381302946570114 +4108,1.1500786113284507,22.774101068948298,10.008046073610272,3.5841309321165964 +4109,1.1460798526324005,26.048188345467256,11.565840110252084,2.995421806668933 +4110,1.1454220503318748,24.541214656192228,10.948267071571061,2.142779756073425 +4111,1.148368169261426,24.122565631882303,10.763470553304964,3.0307354476501596 +4112,1.1514811935525984,20.013604013585734,9.609575543772422,2.584810724279871 +4113,1.1458691675345312,22.223294652012893,10.76084505432185,2.4190352929968872 +4114,1.152646440218615,27.621415809498245,9.421157831078686,2.44289550778637 +4115,1.1447405229358227,23.159862069674205,10.16175020293065,3.309444140880245 +4116,1.148978401670818,23.071069567257922,9.659857025152622,6.798762841364257 +4117,1.1492828205780252,21.92036137920374,10.024457443092961,2.8872443580589966 +4118,1.1496509353349877,22.108609089524826,10.589874484093537,2.6149782633161465 +4119,1.1499637922411654,23.025026005917525,10.213518541276876,1.9554337661978372 +4120,1.1495997388758354,23.781630776191122,10.656082869450097,3.2309440369041993 +4121,1.1514633901690117,21.277748568884565,10.032194857737888,3.23004897492595 +4122,1.1515697558181668,25.837547249422503,10.38377247802178,3.322712873193209 +4123,1.1548614881176016,22.24922494762795,10.010925868385856,2.7465203593722642 +4124,1.1525689645945703,22.786600966399693,10.977561747923465,2.365008221027915 +4125,1.1517172652497758,24.31504410604196,11.046241176126477,2.484525297202059 +4126,1.1498982567790847,23.898498811784012,10.666489942762698,4.290420900888446 +4127,1.1535107259757296,21.928962421516406,9.966882516212893,3.926452491618813 +4128,1.1543607779442397,22.006978273428725,11.170093220004711,3.737778221600511 +4129,1.1575998936424472,20.03807538842718,9.889051809013417,2.6002582577353923 +4130,1.1508803432127475,23.900991000564705,11.189208416849244,3.639287286309318 +4131,1.1538847197968705,21.13123311061781,10.012091904785363,3.437469532720644 +4132,1.1582701283816164,19.325638245803823,10.677651941927719,2.116521462540845 +4133,1.151793558309687,24.579569357474817,10.99349238650512,2.8451088581106774 +4134,1.1530991760779443,21.549438870580094,10.97767713991857,3.0377720056288275 +4135,1.1493763405632154,23.023917891610296,10.76423187741393,2.4769028467997485 +4136,1.1539486341821903,21.415235793227527,10.386099214191685,3.5838179481151435 +4137,1.1563040517506333,20.456778262966825,10.24255355424884,3.208620134213463 +4138,1.156145969224035,21.92348644664209,10.38361774457706,4.165825206090997 +4139,1.1555655940891612,24.145821462524466,9.99160056924654,3.081097235034207 +4140,1.1534804524087636,23.44648918980802,10.4413685750556,2.805854260921632 +4141,1.1470566704693426,24.12691136247923,11.37528940238871,3.25926428867627 +4142,1.149021898260683,23.66647312766189,10.716750530292762,2.7781189944997977 +4143,1.1508217068050757,23.370214947565522,9.675414262880135,3.439424260851819 +4144,1.150497940321336,21.256394199048277,10.635266875789489,3.042190109596303 +4145,1.1497459810319153,23.143021144048568,9.780222275014971,2.5997903040579153 +4146,1.151668876025599,27.74531421363955,9.929551190227684,2.944802204459979 +4147,1.1500079463536679,23.393019245156765,10.453108719497395,2.7383498100038857 +4148,1.1442897399230842,22.367056247595492,10.367381508525048,5.624408010446579 +4149,1.1490969551298984,23.14139986766435,10.663799873289548,2.0132650593146764 +4150,1.1490614077792074,22.588084056534967,10.263028160267558,2.6711166087292235 +4151,1.1446814371030867,23.537109965218924,11.309940288129864,2.1767283066564915 +4152,1.14924975272222,22.725938452417495,11.045505904627715,2.4472421684322487 +4153,1.1481508264760785,23.25444369167228,11.610805152857255,1.6884285092935327 +4154,1.1499977582314105,23.174383461609093,9.9854753986582,3.2093462932810524 +4155,1.1489374987526966,22.252833965935704,10.516436646071519,2.502447583340851 +4156,1.149951724001517,22.67552562918481,11.782170798116697,2.447186080136702 +4157,1.143984080508999,22.9535264266416,10.872838259568708,2.4833473349619974 +4158,1.1466417531266724,20.853057617788572,10.898291899792573,2.2819078540688738 +4159,1.1448050462538302,21.765837104606682,11.156095322343031,1.9851180677612579 +4160,1.1452982107271363,21.05633094932171,10.617832912789316,2.844962796667047 +4161,1.1488820670532955,22.476205118124106,10.768920363784153,2.5236467025623943 +4162,1.142412997882566,20.156350972690504,11.159279965002183,2.02596974849381 +4163,1.1507733013420611,22.13841677093572,11.05821687552542,3.5495088912184207 +4200,1.1596783865048768,20.588781633354046,10.466201505642546,3.189878118844383 +4201,1.146448942953203,20.32107977831791,10.705251836514199,3.3273705259982607 +4202,1.1478059806074195,21.594424416564284,9.336733943555355,4.452501199050628 +4203,1.1457583580440818,22.70209542233323,11.322223523152221,1.6050018638021737 +4204,1.1458024462232745,23.703502446141897,11.273315953731148,2.0962810508381122 +4205,1.1461842687576078,24.758510435387993,11.615394386605752,2.579579348130864 +4206,1.1484696258284135,23.50561488639637,10.238333030059785,2.011365093226968 +4207,1.150052468777683,22.36751285426155,10.163850995419793,3.3208380997826428 +4208,1.1485783976942063,23.000401916175033,9.890979166057477,3.5257173271654594 +4209,1.1449383371901103,26.093550673139017,11.053300435631042,2.8687639854038336 +4210,1.1438589639782881,24.545938622543655,11.598630793981993,3.1557508153779765 +4211,1.1470960310038434,24.279790730028363,10.672410049929779,2.6814555689476567 +4212,1.1491569790119665,20.316568088706642,9.483538257833642,3.078229714703743 +4213,1.1475435392264681,22.403424745162805,10.321237119681667,2.7341860490995216 +4214,1.1501362320654342,27.79049372813427,10.008254262940456,4.524868797293029 +4215,1.1445807991171257,23.115216738735285,9.882616499918402,3.178455372611452 +4216,1.146735005449665,23.395245377315288,9.518813680555937,6.966370095047505 +4217,1.1501475277753381,21.87096032421121,9.787948862044253,2.6592773563078587 +4218,1.1473191318471079,22.21485630120966,10.639386285219775,3.8168111002403995 +4219,1.1485497777341425,23.2699653606625,10.146031689873006,1.758525791119375 +4220,1.1480980859580807,23.994992796061585,10.42239177419054,2.9538691521560976 +4221,1.1520414353807416,20.82549034532399,9.513932388162832,3.4184783002464805 +4222,1.1492806400064608,26.150580423405348,10.436874752775768,3.6227495097378775 +4223,1.1522837243834934,22.329279885227386,10.142356967447558,3.1973125896980683 +4224,1.150398142969324,22.637915539707542,11.174176209294732,2.944615928175748 +4225,1.14750170067715,24.603105206398737,10.926414871510447,3.1313712452654965 +4226,1.147734320890353,23.933080640725706,10.887756063244542,2.78846086664597 +4227,1.1516467047989731,22.168661910888055,9.812624292944944,3.017764024356257 +4228,1.1485392172573496,22.415797184348765,11.128077978001578,4.123856840013438 +4229,1.156981555785709,20.207081048549046,9.312135355792142,2.882480130550039 +4230,1.146461460911175,23.678471164393347,11.031442929165895,2.8936435734917456 +4231,1.1533376827744821,20.62095589613138,10.318808428590064,3.445614705665296 +4232,1.1556007958776606,19.60405850768646,10.725578636980524,2.458163235388384 +4233,1.148528572020605,24.455663838372946,10.933147921545117,3.2899700855414453 +4234,1.1522557297684897,21.181007609912346,10.870513492669273,2.506237391857143 +4235,1.1478058954323413,22.627036403358844,10.729210482270787,2.650826600626864 +4236,1.1482379103940465,21.779390835876427,10.577727060943957,4.08487641146529 +4237,1.1526684298811098,20.392545966922516,10.189210242305329,3.263228876604842 +4238,1.1531152584048168,22.056090798811304,9.888761864953075,2.6613601022731537 +4239,1.1519087598810458,23.932476440674137,9.868272671215172,3.5523938315180503 +4240,1.1513079155232933,23.40384797158741,10.2784666820752,2.1980878847670526 +4241,1.1436237263646347,23.902677340969735,10.843139653825826,2.277004739023983 +4242,1.14652002903035,23.73104313650326,10.579855834454213,2.838365006423226 +4243,1.149440524050617,23.490083258559036,9.311042752551817,5.225853783359177 +4244,1.1494074051322594,21.543933419120254,10.323082008988793,3.0525515655711564 +4245,1.1493111979615127,22.742612338754093,9.787619655728063,3.235023820093218 +4246,1.1496123913475358,27.664623770982686,10.217111342651656,3.1559228734145566 +4247,1.1503031095376433,23.387516335673354,10.31191934585255,2.6934321379909334 +4248,1.1471086714863215,22.161463062929396,10.274223448078631,3.585201636635734 +4249,1.1451421028013784,23.392705914324804,10.874859828702833,2.0918763088370715 +4250,1.1469821280181305,22.728775540273574,10.321149619253239,3.156293577075743 +4251,1.1461807820300958,23.77282966126486,11.340749927256201,2.013540043695123 +4252,1.1457950168985815,22.986816940356814,11.020378776951828,2.907330388973809 +4253,1.1449429050036186,23.100422318013425,11.242570421705144,1.6543180192788878 +4254,1.1501907554121147,23.432491840176503,9.788464387350905,3.7005666413009326 +4255,1.1500669451593142,22.30040012661326,10.44166348308276,2.2937717159584143 +4256,1.146103627422336,23.63964422390816,11.419695031660558,2.093915886418374 +4257,1.1445781371453136,22.687434615244776,10.767411485594732,3.4073207086322297 +4258,1.1451320734750379,20.72387171397715,10.861638560439008,3.07370928922092 +4259,1.1453382459108155,21.717891360651194,10.991130084131996,1.256918011772989 +4260,1.142780835066526,21.83290918842405,10.693913377443367,2.3392011759994706 +4261,1.1460936871025431,22.553532809109385,10.62255786519291,3.854701445092576 +4262,1.1431442275784889,20.40783796035292,11.075182567556153,1.588301297845887 +4263,1.151161721037963,22.441778000484383,10.680720727980942,3.3237884880155146 +4300,1.1556406946336113,20.172331884173847,10.316663685200147,5.144167348404389 +4301,1.1401377290251238,20.761991907150048,10.319258908002466,2.676996624206661 +4302,1.1426163087298897,21.102491262340678,9.591553054339425,3.7018244874503727 +4303,1.139614808758394,22.74006590737102,11.315496763800718,2.497490663078833 +4304,1.1411801395372132,23.350367025977263,10.648778635005304,3.562066849897232 +4305,1.141286936113399,24.618563287361955,11.570506026336881,2.800390013809186 +4306,1.141797997104834,23.0701206577347,10.592473899213006,2.4372180351716937 +4307,1.1441554631053732,22.078790642108984,9.987022932738212,4.101686800675079 +4308,1.1428068293222755,22.58715688192849,9.910469008822687,2.6663287639261717 +4309,1.1418163392910956,25.647370740853496,10.983373650177363,3.032892854790265 +4310,1.1396183765946841,24.27461982500771,11.516312798847558,2.7336023173539874 +4311,1.1400748394674636,23.57002136621804,10.558606568836515,3.1588602329180224 +4312,1.14324131811828,19.78753218130797,9.227878071530291,3.21196656613756 +4313,1.1409546540404962,21.837328978813158,9.898466130301701,2.500408457641804 +4314,1.1450569845908627,27.490540644813976,9.68873473735065,4.730438808964994 +4315,1.1372579618033394,23.05877316260057,9.745268944787151,2.040903274772599 +4316,1.1413516237634658,22.648668332904112,9.32177328706959,6.636248696851007 +4317,1.143026381938776,21.511866709418154,10.069439133967807,3.6603902088072657 +4318,1.1423221026699042,21.983212309294476,10.573858401965005,2.9787318150465407 +4319,1.1412762769668432,22.54765097275027,10.259348136868287,1.869385686495101 +4320,1.140694606117988,23.37000898708685,10.278769712739395,3.356446033418468 +4321,1.1429717276714615,21.058429813880466,9.311866428420084,2.431423992720728 +4322,1.1435371395765161,25.569318617140436,10.041172235540794,3.423789938151171 +4323,1.1468924264074354,21.86184340406999,9.68330699925296,2.5038513917052705 +4324,1.140790139237822,22.64419875824514,11.21927858767691,2.7492689659011593 +4325,1.1404373044871738,23.796163303800373,10.743967374222441,2.049659404987609 +4326,1.1406860588215406,23.166820655332636,10.392942290033458,3.0397833859968864 +4327,1.144963095129766,21.68034652380956,9.890054202723693,3.157288118345416 +4328,1.1408803191116375,21.944699032815972,10.910894785183501,3.8232794528012146 +4329,1.1468442483251327,19.739567908502455,9.564109483862428,2.7626587304449437 +4330,1.1410493216782824,23.54289630157797,10.6296665876592,4.400462383939362 +4331,1.146478314592877,20.311000995560818,10.069405745603031,2.8944064509597722 +4332,1.149396195303901,19.154606022680195,10.372102359498063,2.7263197098553005 +4333,1.1389589077135132,24.22918371701654,10.897981664219921,3.272940824015757 +4334,1.1430862203382586,21.272590547105967,10.952113711305786,2.511828363271496 +4335,1.1391629908901086,22.49400097837817,10.465305458104869,3.301240575456143 +4336,1.1429559029711986,21.05934286226646,10.093123311115203,2.5899612130218994 +4337,1.1456262521868994,20.295431940201624,9.72838197314115,2.75134188551111 +4338,1.146115470474165,21.789954960266694,9.989881680759796,2.650669134804565 +4339,1.1446481651698024,23.78940873463805,9.69184521354092,2.748605431684502 +4340,1.1452360337650878,23.080821510529244,10.173748890258324,2.7751315267906893 +4341,1.137889168640782,23.72345382099361,11.19505890026527,3.3441939053989542 +4342,1.141213639266965,22.89203578760934,10.557483224323503,2.913280646877108 +4343,1.140546759205842,23.170116444880023,9.64445984180477,6.652780444760192 +4344,1.143147767419274,20.858239824956026,10.076620169255266,3.314167040120136 +4345,1.141121254027993,22.824692003987618,9.695114485566803,3.5292740625274996 +4346,1.1444564414361087,27.411424433451348,10.244440623097216,3.1118839450039673 +4347,1.141219925326122,23.398616009430736,10.59472951279032,3.2052573632231396 +4348,1.1400283961749147,21.924318760337425,9.76695945420521,4.66681501154076 +4349,1.1398964968362961,22.78678159417333,10.98884126109285,2.3087674458476424 +4350,1.1403383552749469,22.623508214445266,10.18525899686452,2.779789346366181 +4351,1.136443119011228,23.575453262749686,11.35656211738621,1.958243109182277 +4352,1.1412482430808832,22.73136014344472,11.038560566916285,2.4616222183369962 +4353,1.1389717347871393,23.025655756743546,10.947746432394814,2.3133715192643742 +4354,1.1440359811512872,22.91546576005616,9.610715858148472,4.259466714261921 +4355,1.1445576052682507,21.895745978320896,10.408170174696897,3.146621230302605 +4356,1.1431699371242832,23.46580744180504,11.62566386002937,2.581064286168435 +4357,1.138563607362199,22.64182235785591,10.708393973414893,3.462375544861004 +4358,1.1401604441624889,20.353985067363187,10.644763163659544,2.2600408152444706 +4359,1.1393212678628384,21.689357957861336,11.085083906684964,1.7198822664653197 +4360,1.1391268885501997,21.546951142496656,10.648784670100374,3.5606130253899533 +4361,1.139964156185434,22.546009257640783,10.134755224587238,2.2440835977223714 +4362,1.13506632961521,20.532947653296826,10.734447012447413,1.8894621742416942 +4363,1.1449044440459477,22.27615945205176,10.528045939407237,3.010421631071535 +4400,1.1613492379601824,21.293955839756183,9.97808604766533,3.3900222828576267 +4401,1.144977730967679,21.575330236228062,10.331016785262156,2.709673250371295 +4402,1.144931087819947,22.78403023765874,9.407385483971838,3.098584764699199 +4403,1.1440031398656385,23.864646800625742,11.118638597994673,2.2985284483547592 +4404,1.145423149244908,24.499042377857126,11.131703565941894,2.7967575316774043 +4405,1.1454423095421384,26.011412605527337,11.335986558828493,2.6593405516910713 +4406,1.14705541303215,24.54663723365783,10.30777145949089,2.678963460790913 +4407,1.1477549104512812,23.32093079354512,10.013180095611167,2.3839551997996047 +4408,1.1486458348616082,23.566895343762233,9.580895503916352,3.1855440338232492 +4409,1.1456544497140082,26.76101250986452,11.207194860286407,2.8765934016161 +4410,1.1420890677925921,25.471549683028705,11.079017152418862,1.888105940324132 +4411,1.1441562833639258,24.95599689747269,10.732281445322352,3.195150144686484 +4412,1.1479950773236975,21.205931736421416,9.323460636999554,2.8561243313920928 +4413,1.1424941852689645,23.614080394844144,10.167103389877711,2.4865980531043856 +4414,1.1460226918496368,29.087224492217842,9.307858194279712,3.6738977476507895 +4415,1.1401563893007634,24.13495724961919,10.058948495104772,3.4554753077727773 +4416,1.1456054221975844,23.96693696670889,9.5033962467944,2.124277201939285 +4417,1.146437096294466,22.744255655087446,9.826210400901827,3.1716710453964043 +4418,1.1454032096324402,22.770108324556645,10.638367447691515,2.5735430953243865 +4419,1.1450539673168156,23.909500031996956,10.187424545585085,2.860551570100145 +4420,1.14560848185952,24.677421335246365,10.361943056053047,2.9882550612891463 +4421,1.1455245597243697,22.13497344041052,9.577571628210606,3.2919808430535227 +4422,1.1451067345221801,26.884899694475013,10.206426852767017,3.300476654000057 +4423,1.1450479384660388,23.435881726787205,9.842740507578936,2.7402628524295074 +4424,1.146087272932741,23.37624633076464,11.116157679804136,2.8689413479347445 +4425,1.1436789477587055,24.930297505131925,11.258551757285847,2.4913512183131648 +4426,1.1415842280017467,25.02381889498887,10.773666739966078,5.437376922168819 +4427,1.1466766714391994,22.953135584370692,9.866182883207948,3.441747185786958 +4428,1.1451361067959784,23.100286748581272,10.583289342298922,2.3174134474941157 +4429,1.149543342184379,21.181198238022414,9.5559441557298,2.484895414982204 +4430,1.143102091205496,24.71902080267928,10.728439329133124,3.042220820435394 +4431,1.1484472720916044,21.520715269876302,10.082456528568937,3.4535319603727563 +4432,1.151479352011659,20.238315406206127,10.022998312013218,2.397095562104629 +4433,1.1434840663150225,25.571068186172145,10.761882443499031,2.6899810245743034 +4434,1.1444267178677383,22.814078866046508,10.74172095440266,2.345442191975943 +4435,1.1446498788385728,23.523493697364508,10.379811607786515,2.506469984819215 +4436,1.1451538630417892,22.32373616630107,10.077159588616219,2.00864781155145 +4437,1.1488353939307734,21.27380679793567,9.912861915787978,2.7563174095239353 +4438,1.1477341672102683,23.033824751133448,10.120749568566223,3.1567969824344404 +4439,1.1468948107543708,24.85616747525981,9.416338245933042,3.7574461723436774 +4440,1.1476328452272266,24.200726574960314,10.433602609262852,2.4546429758553203 +4441,1.1397037360575981,24.6496295078819,11.093354115712083,1.9895401820141125 +4442,1.1434315101162624,24.433355684933957,11.01862302621722,2.369744405337026 +4443,1.1453815014062454,24.248998758241527,9.177751346142513,4.246912846505683 +4444,1.1454175094986052,22.54813791008998,10.162074193450188,3.028221192462599 +4445,1.1458527445091309,24.01545190057773,9.375356958215658,1.8711692032358058 +4446,1.148021777685689,28.734188765685754,10.023198643463138,2.409414987187303 +4447,1.1455944970508736,24.653069563287282,10.268163656860388,2.4450863810160968 +4448,1.1453134197398047,22.953430888104908,10.003262381460475,3.9963323478331194 +4449,1.1430450053218149,24.58984195678383,10.443815515825582,1.9461114620219107 +4450,1.1450181100442387,23.502072963446864,10.390835099838949,3.2082181656633137 +4451,1.143090991854933,24.48798226793982,11.415996893448101,1.5768481964100498 +4452,1.144095816372138,23.77975072649652,10.408819981361177,2.496240976231665 +4453,1.1409978624721353,24.51172409068995,11.331244600723661,1.5410899474361552 +4454,1.1474564256666069,24.407860826791136,9.882158644405038,2.629282695186691 +4455,1.148508645813438,23.115137871484304,10.485826791203623,3.022885201120442 +4456,1.1455820676550332,24.346030369774418,11.710099644100836,2.013818064253532 +4457,1.1420297424600117,23.932540169488004,10.639677440804546,2.520175937667303 +4458,1.1452567994680702,21.528168193734984,10.886494936380764,2.7547295080524394 +4459,1.1443573523726518,22.874983232274143,10.723377486688275,2.004772718973809 +4460,1.1431822936328528,22.89328677409139,10.24249155149264,2.2199858439604623 +4461,1.1443532294125307,23.93570293099205,10.723634637208619,2.90799045346371 +4462,1.1410045371248179,21.83333382810914,10.841930966922295,1.568728887729052 +4463,1.1487518146515143,23.875499399202234,10.674758149887218,3.854360406138175 +4500,1.1573207553809732,22.382986407901637,10.838637206596523,3.3009968913215326 +4501,1.1429252945138033,22.779620653320404,10.804912556410933,2.6405623390137642 +4502,1.140028135070251,23.830401071574574,9.519224502278336,3.2650050914643662 +4503,1.1398889508872196,24.405995331500815,11.191015738758663,2.52795673730157 +4504,1.1395304766758312,25.50297733851771,10.993275257102429,2.6505134868981077 +4505,1.1427362948180284,26.221452785036373,11.096015595409543,2.376971298573386 +4506,1.1432829995623075,25.080699817207385,10.184530493065656,3.193766621259457 +4507,1.1448693496307474,23.814682324754113,9.807921240495867,3.3147277438812246 +4508,1.1446031956259055,24.252967465651302,9.393102293772209,3.249544823186584 +4509,1.1413330888216853,27.350364356087873,11.113041441128214,3.014155748386616 +4510,1.1371495993452014,26.146864310763494,11.158676105667276,2.061836850300982 +4511,1.1414549322650487,25.326316470956943,10.595970139678515,2.569125393843038 +4512,1.144044026957885,21.610768202105074,9.28532767363139,3.98280257249609 +4513,1.1395566817845804,23.883896215229015,9.739363189944402,3.1109761542409404 +4514,1.1455965770273675,29.206781701592522,9.543291833932871,3.093829627733213 +4515,1.1369793498455159,24.54704014993342,9.861590460152962,3.2967398539958612 +4516,1.1403598140698565,24.817358874431292,9.533625211583606,6.014785346131012 +4517,1.1408883621767276,23.20143325606737,10.29044836101126,3.0361159802507287 +4518,1.1386471984749735,23.803997989302758,10.822851548914791,2.863851647810385 +4519,1.1401280527133568,24.76255190698673,10.052905600929906,2.2729257244101944 +4520,1.1383476300872528,25.488934878260263,10.233110438886502,2.7886500208513456 +4521,1.1419219258592879,22.453287896885723,9.484287378539186,3.4856247590711216 +4522,1.1394721348070658,27.39738781739769,10.369151713609996,3.890477782354718 +4523,1.1401663719381983,23.97400971746203,9.684547813521196,2.7835706274449175 +4524,1.1388267894092872,23.846605313613924,11.018348986960142,2.690916126152605 +4525,1.1352433815223655,25.888217926373414,11.09753858215849,2.247557755328785 +4526,1.1376181394375229,25.095610531633366,10.257239345119443,2.725683130784696 +4527,1.140018393990485,23.401559819038226,9.605836936175411,2.701413358073609 +4528,1.138548360179767,23.529675693961426,10.934295303408478,2.906631372202918 +4529,1.1440091498621405,21.504262898539753,9.63870880417089,3.541488119204129 +4530,1.1357967231695039,25.270870531087894,10.938321157965689,4.251838675227518 +4531,1.142113750422918,22.03299691406774,9.906981635898708,2.9107907514281433 +4532,1.1440201084466346,20.592189860132383,10.117462565751119,2.8238656027954883 +4533,1.1385782558667799,25.715993883500044,10.718583130580708,3.0236216011636077 +4534,1.138488667929052,22.7663196228034,10.627303200692749,2.8315499940533826 +4535,1.1355635031650313,24.255587351619706,10.52994443871558,2.856876885489952 +4536,1.1392054921192802,22.307784338566027,10.344891191498025,2.231862203840611 +4537,1.142747322127855,21.778919395774228,9.621065823707037,2.129919028282458 +4538,1.1430495512890964,23.281243448389564,9.875609187492882,2.872518348473423 +4539,1.1432491239795775,25.31348821511996,9.741622093103043,3.3752547445368286 +4540,1.1422329735688084,24.66978123396346,10.4867351508058,2.6686210076160783 +4541,1.1330311881537358,25.501000620529197,11.182890378698344,2.3285218234456173 +4542,1.1381165583178,25.349051519215468,10.379282721346483,2.764081706516399 +4543,1.1414864673969245,24.495425788361466,9.522311725610807,3.963572159379119 +4544,1.1422679066750068,22.639687749637673,10.0141455760057,2.8863430567942787 +4545,1.1424800342700836,24.428897812866563,9.47044963028688,2.536215922581411 +4546,1.1424025740797925,29.347131907781502,9.741296194248124,2.709507335138042 +4547,1.140041489103976,25.27036383944802,10.411434477272815,2.6422469778673947 +4548,1.1408580516778508,23.628646867968207,10.043008857743226,4.693046956898261 +4549,1.1409324636252285,24.30889919510685,10.56646736544491,1.7984633819038855 +4550,1.1416495803001998,24.07720715551627,9.98490757805111,3.1394260992765854 +4551,1.1397528814512756,25.069384502692976,11.662784987256584,2.319826403331698 +4552,1.1406581011049852,24.372865023250622,10.79389729658896,1.7886950217844484 +4553,1.1410943822740862,24.33501505152872,11.322151660127812,1.6117671898990154 +4554,1.1451989142523957,24.83374911245538,9.534240266424264,3.043369730152611 +4555,1.1451031876648958,23.632331965849136,10.408061924334216,3.367655456010644 +4556,1.1445492850002696,24.75206007036514,11.728785174028568,2.4375145755169214 +4557,1.1385208322843847,24.46411609414186,10.52486316928154,2.901506798071509 +4558,1.1416534168301855,22.26069530708582,10.805154729382517,2.9109489642521726 +4559,1.141041715325166,23.230871001897977,10.977983025039931,2.07381034411343 +4560,1.1403271627820153,23.097184756480768,10.49615941733667,2.521618988173396 +4561,1.1380041133137166,24.63421724951777,10.784299625776546,3.168494726930001 +4562,1.1350970169860886,22.541155243398823,11.181525549239533,2.0012627299228014 +4563,1.147473087350544,24.92240266196399,11.037292587269112,3.9482007819616323 +4600,1.1593878759751115,21.446117816287767,9.91071683097588,2.9458594395609765 +4601,1.1428625912702912,22.181705787055467,10.413659723458052,3.187937155425488 +4602,1.1430512613076065,23.160123436106222,9.246967609540897,3.010274822004211 +4603,1.141511246400659,23.97908313970822,11.031587885815371,2.298689954947761 +4604,1.1412912103520805,24.94885790299585,10.195529633437985,2.380684621810601 +4605,1.1417854861556582,25.91348765494713,11.341382216296262,2.1684500031244687 +4606,1.1449841977623243,24.53485652676286,10.277774608933466,2.837891703160088 +4607,1.1434486198363942,24.037163502192463,9.976117919840574,2.670760787167113 +4608,1.141713440247342,24.140621963794242,9.636047421613037,3.3731818396883284 +4609,1.139930982256084,27.364497167063405,11.122250659537203,2.4811776233859217 +4610,1.1371136182998551,25.907598095837105,11.278453578526815,2.375946885836067 +4611,1.1416831962730467,25.44168440133765,10.741783418465435,3.259500066849688 +4612,1.1424951014367875,21.54641804437635,8.76841831049358,2.390467915561452 +4613,1.1380785146650112,24.05794221175941,10.235901193021201,2.457347125236076 +4614,1.1442101039357118,29.040178409378857,9.42354410576254,2.544788566283438 +4615,1.1355065083694016,24.650545486629216,10.015959447368733,2.7694971607625036 +4616,1.1404152107827408,24.288865683434693,9.434272533697916,2.9570565531598967 +4617,1.1428626750233088,23.11781689947166,9.634962778785454,2.536054792323292 +4618,1.1392361213361806,23.240654661003383,10.707510499086096,2.2836612108520438 +4619,1.139664799159311,24.19892572853283,9.919537176733172,1.5395797161276852 +4620,1.1378507290156978,25.04001287816335,10.677801281086905,2.246080907578428 +4621,1.1403686373824502,22.373680391943733,9.576220887559234,3.160758186351572 +4622,1.137369898511123,27.155958378248126,10.115412134696562,3.009817865561082 +4623,1.1417556058362295,23.359381876287117,9.918879794516487,3.006229392349952 +4624,1.1393716278481483,23.431920002186956,10.93546273397835,2.9256789584504523 +4625,1.136139858099045,25.134586639769587,10.8798243674079,1.883024397311202 +4626,1.13375286616659,24.59132304863668,10.67693403813092,1.335442309936437 +4627,1.1372654396241895,23.05614420760886,9.876513137276122,1.9042368214884904 +4628,1.135491213069891,23.47110696299796,10.613696193238345,2.5992984056323847 +4629,1.1428216806432228,21.066894377218027,9.567432405983787,1.5276817795534152 +4630,1.1360735154993034,24.7163375653332,10.914359314348825,2.1854811258259836 +4631,1.139825277307352,21.932980342825676,9.742094252548812,2.14813334625779 +4632,1.1410898516877723,20.654685234872062,10.027960701026682,1.55275266102335 +4633,1.135189788488815,25.390395181989387,11.03976037656099,2.3480849584888324 +4634,1.1361149233837076,22.545246608364966,10.964337172065353,3.138951871858685 +4635,1.1344925829586776,23.740231134590402,10.27144077800399,2.3308159025440824 +4636,1.137385329550744,22.180905992528174,10.01124375347511,2.8141650981861632 +4637,1.1403851728797025,21.54805844102481,9.83504654314283,2.2661209595452356 +4638,1.139016522240497,23.144722528404223,9.91842510239213,2.7330534914089046 +4639,1.1403805681407506,25.148004218873588,9.617843542214933,2.8329774943117796 +4640,1.1400753300443698,24.554660298251115,10.004987445379262,2.590458328159439 +4641,1.1337947502100578,24.85105770995228,10.859535971860762,1.6217974287753119 +4642,1.1353106273499833,24.733671318374725,10.826887215724325,2.673183179450898 +4643,1.1400463756118515,24.34993997647623,9.262263688389924,2.8989052469743823 +4644,1.140100114052801,22.291952267668986,9.880700511719985,2.6351045492878735 +4645,1.1402827595964695,23.963618260264035,9.521903298646073,1.9725793840416168 +4646,1.1427949107092803,28.52593373316238,9.980877807296588,1.922779157914172 +4647,1.1409898518200652,24.858256464361638,10.418002998106859,2.50343651824688 +4648,1.1420826512454507,22.97928797205869,10.193119816831008,3.239357186369388 +4649,1.1392759998463537,24.283055435087856,10.527288465570845,2.1897835634886698 +4650,1.1407073948231174,24.2191546667543,10.120236489239145,3.0752047794324318 +4651,1.1400479283193783,24.680144992938914,11.392203096899843,2.130757906314532 +4652,1.142350701135797,24.134004189868143,10.386051249205904,2.0702114976445127 +4653,1.1408701644287325,24.31000442430898,10.975113366882988,2.028817923297305 +4654,1.1459561100653584,24.2570237910832,9.54025415355459,1.866206772671313 +4655,1.1449793063496956,23.721802485936127,10.467436143683253,2.456610291525636 +4656,1.1458717604929456,24.139593314310243,11.427608863964162,2.574801879688334 +4657,1.139547149643805,24.213783503074485,10.618034100824852,1.6568372542335976 +4658,1.1409604855068876,22.159396518765732,10.57811713471287,2.5972991410052457 +4659,1.1415255567741556,22.901649790336993,10.53147209947167,1.9484706157853142 +4660,1.1376029753557968,22.862525749913758,10.55202645550692,2.169393205963523 +4661,1.1383819930422907,24.44150473588696,10.738628370976711,2.491934681405546 +4662,1.1359913970305333,22.294452151247086,10.496374842611331,2.4161548339836605 +4663,1.144853523417231,24.450833991646668,11.15327519740423,3.628228464231887 +4700,1.1580638178041458,23.347443213501638,10.27583749629381,3.497110673675688 +4701,1.1415818978539278,23.986992207390887,10.427820867604192,3.3025925499357176 +4702,1.1430131148878262,24.541989232198485,9.090760732293866,4.059830235367507 +4703,1.1394163788253775,25.547509956371915,11.341051590708616,2.266570886453077 +4704,1.1412383197717142,26.41706152380023,10.901541186109524,3.0234055282159833 +4705,1.1398508815734412,27.40414439795154,11.038840325824982,2.312190836132004 +4706,1.1431397552083464,25.903904617544004,10.337031568790678,2.5970084991790126 +4707,1.142752045589576,25.0934819612804,9.992222618980405,3.1587719640387286 +4708,1.1440900570533432,25.083771028707776,9.409212776493678,2.866786655683406 +4709,1.1370440850021744,29.17348622004847,11.068070923943923,2.7231840039526567 +4710,1.1391815713906086,26.771740465051536,11.162235837732988,2.0855901879267646 +4711,1.1400994642988962,26.763962943493144,10.417884327106448,3.2277720244647323 +4712,1.1431404482950556,22.90171651961566,8.911463060050888,2.436152772835912 +4713,1.1404221345334042,24.98570023522656,10.034204240437985,2.8933435209957845 +4714,1.1431451704058582,30.02168605725915,9.910261739083126,3.3196687138175793 +4715,1.134250005743142,25.80482844885328,9.678194098120413,2.03761256078933 +4716,1.1393241725217622,25.871852873033024,8.868557472026371,4.523941930313288 +4717,1.1394290973897372,24.499381576717777,10.276125378811269,3.088874701566878 +4718,1.1367584655458451,24.92863905588849,10.76399466195704,3.2984802233435033 +4719,1.1373557668209824,26.071854783121097,10.105506319451433,2.131157817227278 +4720,1.1373353195911047,26.273074741491865,10.432003706590963,2.770671312008872 +4721,1.1385800863860087,23.79313751975868,9.622560832688716,3.102650782560421 +4722,1.1359510369804648,28.325715102661142,10.139746130114258,2.621781204032916 +4723,1.139365398242652,24.708674824855983,9.796626469853402,2.5366446265863662 +4724,1.1352545182812643,24.99121379832724,10.913023011706795,1.8087487169012038 +4725,1.1304762922181084,26.742079218096166,11.457300949126791,2.0560879395594975 +4726,1.1334020065758317,25.908827743799556,10.368957190117705,1.8715305768481667 +4727,1.1369819454353263,24.36576484920317,10.023247296353011,2.607936826256676 +4728,1.1348112714951997,24.525519647003392,10.440823371409682,2.0002647321696787 +4729,1.141157213743465,22.440731401999614,9.187967980756818,1.8177598102047356 +4730,1.1328992731230558,26.17494476092652,10.627976200055208,3.1266104309312905 +4731,1.1388210751636607,23.15125917039074,9.715019122925773,3.1747788512405806 +4732,1.139765825452587,21.80592665584466,9.96983745674225,1.9903398321690706 +4733,1.132561651348583,27.23778502347334,10.990097207739645,2.853445231374896 +4734,1.134699235095453,24.030939265884573,10.865713594979441,2.5467260134646175 +4735,1.1334776691902821,25.16588391341392,10.23190566417493,2.446571157523485 +4736,1.1338932886886681,24.025318975200026,10.278785209829456,2.3363749020217908 +4737,1.1399551332492408,22.71601386361212,9.937930037550199,2.3236158894530496 +4738,1.137906057084346,24.148058484868336,10.13309596995431,3.233739841899561 +4739,1.1402474452554838,26.186313538109147,9.836642462636147,2.8996216923885725 +4740,1.1395692374724598,25.5892529924953,10.220738166826669,2.34862374604492 +4741,1.1334891589224538,26.447983606736777,10.85887110663393,2.406086639789201 +4742,1.1365531207439283,25.713219783604252,10.565307665187754,2.548958989325321 +4743,1.139830400854294,25.760398124463855,9.416875774032992,3.282505705328772 +4744,1.1402144143468893,23.457992509204875,10.233684900599284,3.2245270368308145 +4745,1.1404881243286566,25.465941017029,9.736479885345375,2.521475256329257 +4746,1.1409071700217692,30.071215228773283,10.17564627967086,2.6709057842660946 +4747,1.1431053499770802,25.891623581630782,9.991197438362466,2.067365065896541 +4748,1.1391250712263974,24.550518883940992,9.778956842278019,2.78859178803173 +4749,1.1386296364856818,25.89958196018138,10.567590923516075,2.3783722521475954 +4750,1.1410002485717083,25.219819443615734,10.076361347819832,2.332959626728051 +4751,1.1392821302406642,26.047393261996238,11.373512882464103,2.593690890644541 +4752,1.142820991342847,25.072830040617873,10.52874860135111,2.030393313864806 +4753,1.141751528113082,25.428690688355672,10.959635397249235,1.592544940448218 +4754,1.1456067654103725,25.9252141516635,9.486857373556111,3.5932693435440424 +4755,1.1443336929060655,25.119708472156525,10.6645979852422,2.755469199431722 +4756,1.1440748043766393,25.630077683218925,11.382159586948928,1.9166223368121142 +4757,1.140534942613054,25.53080312812352,10.398545851406503,3.821122561957303 +4758,1.1424228070887161,23.3725303313777,10.690785763551494,2.2348645875015998 +4759,1.1394625991747669,24.558212746198645,10.705720392404992,1.833886589688805 +4760,1.1397983877778284,24.447927232017186,10.292378901652416,2.1866718046254774 +4761,1.1403812736522088,25.691775986828937,10.330497251660734,2.6509074223702465 +4762,1.136087153750426,23.464986800833238,10.96133367917595,2.3626569292971356 +4763,1.1449296966814857,26.043641506299416,10.909936724626883,3.3854588503695635 +4800,1.159162940646104,23.00775868408707,10.368797764679194,2.906085376985828 +4801,1.1443717609698123,23.374435663119332,10.38837882341954,3.4896246315458295 +4802,1.1458325641121312,24.21606574142404,9.628360377261922,3.840966577889609 +4803,1.147066350287603,24.561515377907934,10.983887013173812,2.1729829208635367 +4804,1.146978789535738,25.80518020643473,10.41377240578184,2.8082699950528975 +4805,1.1465884720955053,26.768808691480885,11.297422884715129,2.3568102751482543 +4806,1.1504289670388623,25.52589078687506,10.14615813371147,2.245098975870889 +4807,1.149562248145859,24.2127098320712,10.182321980088236,2.930519219429084 +4808,1.1489472382746135,24.796560738010253,9.621284084665731,3.059639795278525 +4809,1.1447979791161418,28.247129627632404,10.98211154732548,3.10092984677228 +4810,1.1456100149978228,26.46797559621192,11.05217018520909,1.9294650586503084 +4811,1.1469169907564782,25.809135550184678,10.540313773984575,2.790369355999814 +4812,1.148761472373431,22.244610799023814,9.414973974540148,2.8003307649057554 +4813,1.144660696914259,24.02302382769582,9.876097214799833,2.7649843111060846 +4814,1.1490889428606554,29.712417155425353,9.725940210309847,2.775374804445393 +4815,1.1395289385464422,25.00586833390293,9.888602371920285,2.7611861508848627 +4816,1.1447625888615658,24.821506067844325,9.781653576532769,5.0690077168210275 +4817,1.143894288027197,23.977643118010004,9.913091697802361,3.014772937460603 +4818,1.1414962197591505,23.979807487276585,10.525705738464692,3.768296063583596 +4819,1.141661268449307,24.77853715050602,10.260178829209005,1.6535921267736293 +4820,1.1399461788811598,25.87914851874556,10.263594980349914,3.7805171756616542 +4821,1.1437848771394177,22.65481932439601,9.732718268872151,3.3127981285634664 +4822,1.1409515877017844,27.57055344482858,10.476222083653818,2.7198022892240896 +4823,1.1418036103101918,24.318804978493127,9.88048503446061,3.788620217999771 +4824,1.1383117237817229,24.546538234840895,10.772593044789154,2.0958688015400577 +4825,1.135483105005161,25.808899456122464,11.041197394365746,1.7643126980495047 +4826,1.135678137355151,25.322484178327834,10.638460341413825,4.680573089451235 +4827,1.1385322282258912,23.520425965435535,9.644546343231033,2.590408938846906 +4828,1.1377364020230585,23.810230602361102,10.797818981683971,2.724430486513929 +4829,1.1427216333114547,22.036674043516246,9.321717693573163,1.9930172142206708 +4830,1.1353062536399927,25.298320536391405,10.58239629125199,4.318830922328482 +4831,1.1423715605186735,22.21030033226127,9.561241107386792,2.7240988300497624 +4832,1.1431838589292738,21.06820034697357,10.00984676916023,2.3768732690587937 +4833,1.1361179393325902,25.721968419449748,10.914080706875035,1.895741253492707 +4834,1.1399077093520924,23.077958116597905,10.344714969940986,2.6251706432049486 +4835,1.138769057448683,24.130702496199472,9.991026293951542,2.1001583803997472 +4836,1.138865200035653,22.955008344679253,10.260805293747259,2.7646177767739224 +4837,1.1429321554373504,21.815081567170395,9.612435092655332,3.267545042037195 +4838,1.1427125714869304,23.512924270018654,9.6296074361436,2.8750589205587214 +4839,1.1418298923445502,25.469011480113508,9.766719103597657,2.2956866301424292 +4840,1.1423767926233064,25.08616863550043,10.32667655214923,2.1789596845107337 +4841,1.1370295561127424,25.581609757487335,10.763011178726378,1.7677928109219123 +4842,1.141828781392121,25.09561640997335,10.323996286492044,2.625004599806699 +4843,1.144010205437984,25.07122120649815,9.585602041227867,2.9002279228048016 +4844,1.1461766539602622,22.651409976763755,9.985690266839436,2.859193050170007 +4845,1.1427848212367908,24.81972513419848,9.333975483046732,2.780924032777784 +4846,1.1446289387815418,29.545827016499064,9.6889023914976,2.3999757585692345 +4847,1.146011279434182,25.505610850923876,10.160265432275244,1.8526324917025263 +4848,1.1435283619620586,23.991402968597477,9.972642288909622,3.8730857914793377 +4849,1.1449242452146786,25.08195293920467,10.598681955985308,2.860544494711237 +4850,1.1472338195023384,24.187128809314153,10.022451557013618,2.7978273049501934 +4851,1.1430560264847762,25.560526197721735,11.411788136502853,2.4142025901559925 +4852,1.14694623552104,24.93639836186895,10.744486387886512,2.5688787056902402 +4853,1.146542446732011,25.038640157990955,10.943218327066544,2.3535286398514996 +4854,1.1506734073398956,24.979354153821138,9.648454538807103,2.8215811169476996 +4855,1.1492690984107259,24.800732329767143,10.422845594961604,3.3595042490962768 +4856,1.1484615718525304,25.03698476597558,11.549409411442596,1.6329311848771977 +4857,1.145213949198717,24.99012027942405,10.594978763721912,2.8557698771409763 +4858,1.1476333699226378,22.674457663155845,10.708450453707623,2.4045958220607186 +4859,1.1450701957257585,23.681087984219293,10.805157911219272,1.7704496999540924 +4860,1.1447879092884892,23.838663211152983,10.46735459209153,3.1376078545881674 +4861,1.145492100814859,24.635383749253005,10.45964822831181,2.949268446627039 +4862,1.1382863013852245,22.869413317152482,11.161452968472302,1.929670107457694 +4863,1.150787273219861,24.67532095197174,10.958151737431397,3.1933319052314184 +4900,1.1646343832379633,21.620685157258965,10.295838471979373,3.682294373454313 +4901,1.1518572143131558,22.1346843391036,10.477326657635878,3.847929438770918 +4902,1.152497072136109,23.06477261321667,9.28015297506874,3.7645725604252678 +4903,1.1512541500678732,23.83527888596851,11.610326954815445,3.240417288733396 +4904,1.1539859868977744,24.917557754142063,10.647590735311173,3.5024059054358445 +4905,1.15547941176998,25.7161463123421,10.679150547805085,2.209758938854253 +4906,1.1551490323016274,24.47140661275084,10.414419121558995,3.0337119574285283 +4907,1.1550419158641172,23.57407643467464,10.218463684056783,3.882795328641837 +4908,1.1555285506205255,24.05230665573677,9.812837367465182,5.313482492205151 +4909,1.1525937798972363,27.418496992542913,11.189243514194036,3.3997208856119734 +4910,1.1487459348475264,26.242363575683886,11.322979729917533,1.698848115751553 +4911,1.152430886761406,24.935736763534226,10.771256233816029,3.3653352425244463 +4912,1.1562958080508319,20.983452083824687,9.37285051745452,3.4336143515772757 +4913,1.153163700854562,23.276729071353618,9.736550476191239,2.615540706976606 +4914,1.1553187901282778,28.77583842136683,9.52435197139795,3.691093301478352 +4915,1.1466184513576283,24.4727466749503,9.991930331777576,3.7698479636485493 +4916,1.1519439277713952,24.067245501501024,9.687743124655647,2.8397842114861134 +4917,1.150415449648879,23.1759757977623,10.053986640524618,3.614694110103858 +4918,1.1462483647120982,23.39322861070605,10.436774616484552,3.455920996392986 +4919,1.1480957193429788,23.868881845870952,10.196577968920723,1.9438608198675131 +4920,1.1477776351321447,24.766495056411436,10.72928269528164,2.4002506378239232 +4921,1.146579870117984,22.083941550542036,9.584745983588062,3.0607647395886888 +4922,1.1442792110947542,26.921723036015386,10.563622636219419,2.5664025328451427 +4923,1.145670043679372,23.334434314940044,10.07970273691097,2.85645618086606 +4924,1.1435734235272565,23.455431425819782,10.989120538037735,2.3874192343343377 +4925,1.1407361326719583,25.162252960050402,11.036029388926572,2.581178681643231 +4926,1.1413919317771453,24.364914748158967,10.94273568508396,2.299957640264992 +4927,1.1418403911971906,22.65592816506819,10.223421331565238,2.465610653024306 +4928,1.14236951337603,23.024781865193116,11.270226394502467,2.5968275146885778 +4929,1.1469752775506232,21.20240636948094,9.621672634760749,2.9771705823904226 +4930,1.139004640589043,24.63599718393915,11.038033125229845,2.4350042971855896 +4931,1.1451527114345061,21.227514747429506,10.220171801517731,2.0828450854025675 +4932,1.147465575793704,20.141175162767414,10.187749866144785,2.097436249361592 +4933,1.1426225228041704,25.094994650575813,11.122484360625348,2.169875851507599 +4934,1.1412812872637095,22.552378316616963,10.471423593780777,2.258616541324521 +4935,1.1398654414418454,23.774534535660102,10.50285998404759,2.569573547040452 +4936,1.143123791410773,22.20120745234705,10.211555335672642,2.146650837407052 +4937,1.149141488066069,21.144700826907943,10.104365545801768,2.793797545965772 +4938,1.1475030335553833,22.921810100332063,9.731193331236744,3.6151474165251756 +4939,1.1471465185588168,24.964720175147413,9.974431013854225,2.9758555583744877 +4940,1.1479344146100054,24.110750664905737,10.416957871383056,2.661210744365767 +4941,1.1405733252499477,25.065047573116097,11.109436473926682,2.974384655808307 +4942,1.1472766699068784,24.49160796324891,10.518075113058483,3.209338878085083 +4943,1.1489917093945976,24.373851305175688,9.5206861843585,5.166555136029061 +4944,1.1512255190301137,21.929721731880495,10.414446494866334,3.2533535567087633 +4945,1.1516003195793998,24.153021244882904,9.657706994629034,3.29717560747711 +4946,1.1527744932091872,28.887911188671016,9.878921478599864,2.537400729930947 +4947,1.1529458243511153,24.69062592767896,10.482684871540728,3.5862897462087457 +4948,1.152935736899631,22.88811369233537,10.189420935689396,3.176935298565124 +4949,1.151635267255261,24.412127667164658,10.719106918687153,3.470156244406277 +4950,1.1531015108095537,23.59185341199971,10.218777797154697,2.3530135504722076 +4951,1.1495796582488367,24.960163811174667,11.426464504996996,2.4374646766830796 +4952,1.1542075417494118,23.79885739983513,10.40340926726219,2.3433744396287715 +4953,1.1521286113288107,24.171255725245505,10.871379305800156,2.6662961811518757 +4954,1.1580493673566243,24.757576071570156,9.440668787499296,4.015310287504059 +4955,1.1567543953842145,23.885590792542196,10.367735825529703,3.57513679670944 +4956,1.1568996416074848,24.62403437143714,11.47916514230931,2.708964553769066 +4957,1.154083303552191,23.87580081274369,10.56641659758885,2.948543064452989 +4958,1.1544079364526074,22.350135290395215,10.91492908577648,3.4202104038542207 +4959,1.1533804094292617,23.097930793418477,10.640313099698146,2.5298297978294966 +4960,1.152927384309257,22.721646302183228,10.44085477858754,2.156418969368012 +4961,1.1521801355919195,23.58358944558285,10.577853637793176,3.583948412777921 +4962,1.1466650766734106,21.63937027364541,11.07209292904512,2.3732852370171265 +4963,1.1545842429540478,23.677145531980514,10.29667051776712,4.1901728872159785 +5000,1.1633572909180334,21.31460267410259,10.507650117886147,3.846777265677818 +5001,1.1486403309516175,21.720769760774736,10.429211219934478,3.870749123983199 +5002,1.1505974176541272,22.753665195899583,9.566040981546164,3.8472916440970537 +5003,1.1469882549456734,24.162088270187333,11.188676655702142,3.086560296523146 +5004,1.1508634729776501,24.500667567697953,10.631946999658775,3.4365899531934003 +5005,1.1505177627733512,25.72526872280774,11.207809544241568,3.4435751778986443 +5006,1.153901300689119,24.26460560232531,10.53186960404662,3.6294370798951756 +5007,1.155643361050273,23.022213519863403,9.70439244448393,3.9484287070673467 +5008,1.1528324068542706,23.54303729966967,9.716232721479576,3.110535345524086 +5009,1.1498352640623886,26.698516048180117,11.11321432927172,3.810038987513753 +5010,1.1488248127062555,25.369050729363817,11.122903474561499,2.109898171730495 +5011,1.151251199255205,24.829758275446995,10.625885407718432,2.6413478462052105 +5012,1.1527277105104414,20.911123625401096,9.270443697128902,3.519984706883164 +5013,1.148514018060129,23.122277745873333,10.160769913279745,2.7208156545649733 +5014,1.1531945931596763,28.27037072465075,9.582583956009353,3.2695934614977387 +5015,1.142799211556477,23.877590529606326,9.932528558095077,4.0659710706186365 +5016,1.1504366369095744,23.556773729813024,9.794621720657032,2.629088973936885 +5017,1.1475773191805807,22.81373496180494,9.731059337303751,2.9765329690224953 +5018,1.14718281052709,22.84723458360084,10.554770671943166,2.98608278590779 +5019,1.1446983494746286,23.710483460153434,10.510010652313463,1.9238188204119833 +5020,1.1443389655634177,24.206625093810533,10.388537594218471,3.2126810467553977 +5021,1.1438604008539723,22.046067751077235,9.623815174624827,2.7913828064618356 +5022,1.1434693945918237,26.288358930087142,10.066760120044442,3.4060672193922463 +5023,1.1439591207591637,23.027692246621882,9.582274040689024,2.9812488344055312 +5024,1.1425437544794466,23.022277721175232,11.042155400203773,2.65405507976451 +5025,1.1363821517249095,24.61012062722587,10.936239614968747,1.9242822909812336 +5026,1.1365855496587862,24.446113957887246,10.664649853864232,3.4849262381875126 +5027,1.1399229404012345,22.14769056037707,10.198362706376633,3.526951558207586 +5028,1.1381632262210348,22.92737599383187,10.986605787054954,3.0027008999316593 +5029,1.1438651307570413,20.56669547811733,9.919135919615025,2.2724473689030713 +5030,1.1358308742449674,24.34119274149348,10.793807879981188,3.469071999147117 +5031,1.142121487742641,21.03315941408738,9.740996090164385,2.502775916456167 +5032,1.1444332107614994,20.00133499448852,9.963014082116961,1.7213628330096322 +5033,1.1376752966599004,25.25143340071145,10.5710294194881,2.713788674490602 +5034,1.1395336617704765,21.707884129864812,10.632114016288492,2.353802242408219 +5035,1.1362375265722198,23.910592279296623,10.47229574206055,2.8457408008757845 +5036,1.1420764148677125,21.697706591211226,10.430722401076157,3.358664893720462 +5037,1.1441779862581498,20.930665600170627,10.021272947240567,2.658469338206491 +5038,1.1437838407540326,22.51210192820701,9.617172452840435,2.3629690790416484 +5039,1.1448331703359944,24.510942492564645,9.791461055141632,2.9708539688096165 +5040,1.1472919492407023,24.02795473181321,10.07700907541877,2.2460780983723136 +5041,1.1394639989918325,24.656572075565467,11.342243634976445,2.0092452011438318 +5042,1.1439679281021138,23.927261235628407,10.31157882965781,3.590435357404322 +5043,1.145647636993051,23.86078742234318,9.321602714556866,6.7082723684624925 +5044,1.1496400434340974,21.916137722014323,10.08664284160846,3.928953974055544 +5045,1.149554481058648,23.536318557996925,9.634232072245252,3.5054251412502375 +5046,1.149323824452238,28.69939998642813,10.016524327724742,2.475025645184787 +5047,1.1500985674153335,24.268289035921708,10.5813858474075,2.272809655801448 +5048,1.1472704328129413,23.161668023276476,10.32830282642171,5.245482219002461 +5049,1.1488332365925848,24.039389392689028,10.75565073131548,2.8757123973082463 +5050,1.1519736939811,23.482327286163795,10.005273217567154,3.312625437334145 +5051,1.1485532860660261,24.408895042403216,11.205082037737114,2.195798617552951 +5052,1.1530689056254069,23.540118893948943,10.964294119310201,2.5501901514510825 +5053,1.1504315238451017,23.97282862004778,11.037778436744064,2.0547739797281213 +5054,1.1575506720807118,23.949212645071526,9.715031913146678,2.8808025011335947 +5055,1.1558205277184113,23.364036600355135,10.629905040014227,3.9536732139432016 +5056,1.155554245134703,24.00024945604921,11.905242498271702,2.8318672162907372 +5057,1.1502954085546073,23.96023411312416,10.382299901294896,3.731242762240284 +5058,1.1508646527412665,21.953930598997832,10.78543905432874,3.0138826906700222 +5059,1.1521560949685445,22.685780985657672,10.634676333671843,2.3715209848496404 +5060,1.1469502745055788,22.904060838225625,10.426285848241783,3.35357076073111 +5061,1.1495943161826205,23.61442366678659,10.764983731163992,2.782149748463351 +5062,1.1437127872854915,21.52178083052343,10.824744306543515,2.8195902482090887 +5063,1.1522156616781736,23.444013078044414,10.840642980763427,3.152675734043166 +5100,1.1599417505501681,20.583387553270512,9.788152945671559,3.224102834620115 +5101,1.1438780787116125,21.229271855735686,10.39333456414968,3.5481939663989013 +5102,1.1453266420504973,21.98892588968667,9.369713893442636,2.9135423429669847 +5103,1.143428384079871,23.069567717061986,11.228235744386357,2.5842477199114278 +5104,1.1451040265978325,23.491667197837828,10.612293716511939,2.9974871205700175 +5105,1.1447963592716102,25.018928773100516,10.965562824208952,2.4270447070824632 +5106,1.1476038558108421,23.60007160646363,10.166893531243488,3.2451531682768695 +5107,1.1467678851672065,22.69429530629422,9.719106191752465,2.665352986856771 +5108,1.1477854021893061,22.78847738691995,9.460037195656602,2.491581025711174 +5109,1.1451723702994507,25.625277905551993,10.840640767926827,3.2963881067430916 +5110,1.1436815849863844,24.58681906412862,11.031712380223828,1.8215480830448756 +5111,1.1467705081036677,23.825280068260472,10.428479110106386,2.7334629349007384 +5112,1.148330158142806,20.140882941258866,8.981289353910547,2.463350482550795 +5113,1.1441739448589012,22.29187093153873,9.944588442119096,2.317501331550895 +5114,1.1467566800532925,27.714170095981007,9.437619032775205,3.145741285236184 +5115,1.1384596467027008,23.487636597886578,9.528438664005895,2.562738483737724 +5116,1.140993387964251,23.224349349352792,9.609284654654832,3.24548292361787 +5117,1.1435135116394568,21.625067199127535,9.78272382897159,3.036648774088327 +5118,1.1400131125562083,21.954124169310216,10.43092263112657,2.370015574744026 +5119,1.1392038217501022,22.85914295142969,10.178956444878088,1.8183110099990243 +5120,1.1383030832393939,23.559702753940112,10.626482529541969,3.182370259600828 +5121,1.13913427676122,20.86310561936333,9.267607794596975,3.0014317807638493 +5122,1.1370866311876997,25.53713657511537,10.27631821775259,2.9896076911529055 +5123,1.1390619543013276,22.03677611551309,9.755312507376484,2.4701427447047717 +5124,1.1348806705688874,22.308880241687817,11.365250093455026,1.8660278382086712 +5125,1.1320104645523426,23.919208793147348,10.809189039934157,1.8392839357544672 +5126,1.1319100909207158,23.203188156313274,10.659874776357697,1.577702749063288 +5127,1.134409707806968,21.562860322335396,9.7965603498233,2.2770964792511696 +5128,1.1326331858556835,21.881701417124905,10.938459407761995,2.190189220573189 +5129,1.1381690093940124,19.7552545828996,9.473328714080978,1.2697607178246266 +5130,1.131701509578815,23.472510507486135,10.823281336883229,4.649241039622751 +5131,1.1362501675940804,20.310475980621085,10.139399221818795,2.1132281225448235 +5132,1.1385554405443572,19.0136842656042,9.915881388107717,1.9267012695971832 +5133,1.1311551442691479,24.345895770329538,10.732137564843798,2.3627883213146843 +5134,1.1319421944858394,21.393710047108705,10.680282878460647,1.9084060450120341 +5135,1.1323469440713054,22.53282558819804,9.96907036084285,2.496897462184016 +5136,1.1339933140888647,21.2276048271458,10.207976692942367,2.3130654182831245 +5137,1.1390009866302606,20.08354187443676,9.678486676456277,1.9422602547394163 +5138,1.138218667384531,21.95316681436436,9.53500027642933,2.2999497930777566 +5139,1.1388253406641409,23.62873526270132,9.595277919326099,2.7953782177962374 +5140,1.1401757194465598,23.09788461739322,10.185724691944731,1.8334609785076448 +5141,1.1328838724933812,23.59077889008927,10.665120666056689,2.301587448946517 +5142,1.1376862597123063,23.336058693541545,10.536894622965677,3.1479008468571887 +5143,1.1401509674604222,23.17748894685546,9.354476130794348,3.9818590878024516 +5144,1.1409687202407406,21.449657750962476,10.07209291047283,2.7230330719443705 +5145,1.1434214527021906,22.847327304913488,9.317259203332299,2.500150545202363 +5146,1.1471611470824148,27.51080847026941,9.83463445710555,2.4345931901188744 +5147,1.143483329957685,23.877902327166435,10.446878076152341,3.101249543024122 +5148,1.1437840479115267,22.229438192776232,9.916597943221303,3.4721151672539623 +5149,1.1444077780751096,22.83989274230133,10.519306950982456,2.6306547638059925 +5150,1.145708422548515,22.756776460949006,10.087004833879938,2.6928090140752827 +5151,1.1432328196286607,23.47848552279729,11.591691772226088,2.4411594429975136 +5152,1.1457125845309095,23.055978518638007,11.1143511906979,2.515495089276744 +5153,1.1437590652222853,23.223427736959618,11.042483358645068,2.1297567601668987 +5154,1.1493733526400063,23.640287509304958,9.533216526267887,4.19695230456245 +5155,1.1496278273027145,22.193039076685366,10.445309468191544,2.61140547039097 +5156,1.1487966060425632,23.519313907260383,11.15890037137903,2.652113574811293 +5157,1.146825389746484,23.043864327805792,10.402313709032958,2.6478681602921976 +5158,1.1454540342543673,20.94507541278502,10.46917636183965,2.517262465749134 +5159,1.1454384566799798,22.084921860591546,10.356638395131906,2.122308847054894 +5160,1.1439834625341188,22.0573717177411,10.291499835101455,2.652570558132333 +5161,1.1431981420619102,22.99311104708139,10.482638410869978,2.8611714699740447 +5162,1.1396217043224068,21.011377473951686,10.968540570142881,2.0607924304466394 +5163,1.1480969041949192,23.33986521294527,10.734112469201287,3.3272599948997117 +5200,1.1641783730753998,20.563417958705042,9.7129985167706,3.777144096149173 +5201,1.1496527179789744,21.572501959053923,10.234837701221265,3.33692754713549 +5202,1.1539685852422923,22.150969721387376,9.836524198403849,4.782823502107514 +5203,1.1513112123379767,23.62873084952197,11.47883342424637,2.306651874298662 +5204,1.1530958298989056,24.54075162859874,11.066688332809699,3.296702629404826 +5205,1.1520599585063516,25.881052233013897,11.359067103925009,2.450931491814352 +5206,1.156570643295475,24.195305348577982,10.376511627764229,2.219424100459138 +5207,1.1588801929465793,22.84405344486819,10.276889241469364,3.785380546532432 +5208,1.1568336654826261,23.675932783679357,9.835196359467817,4.772985890609636 +5209,1.1521647709661742,26.8801804625387,11.018303239600412,2.93766951192124 +5210,1.1510257266517319,25.38858500679654,11.5088560384944,1.707922098620564 +5211,1.152230220119054,24.914743914229955,10.8323823582194,2.982744817432071 +5212,1.1570664840585472,21.085001596665286,9.484565782004385,2.3871202281940187 +5213,1.150828307095447,23.103469073974193,10.304199892662966,2.9187785200242344 +5214,1.154742289374778,28.72479738762172,9.859247176252829,3.476790711100069 +5215,1.147712725775336,23.96295936447866,9.96195863687192,2.727058093175437 +5216,1.15071602855588,23.704932752084325,9.902904456163506,4.47854949215367 +5217,1.148519051953509,22.821471159376312,10.207868243850022,2.716690364970718 +5218,1.1453174067362537,22.879375118770373,10.964931037485915,3.6945222111455305 +5219,1.1476546898391167,23.79334958713328,10.531327923310272,1.7249088343765773 +5220,1.1445100296338406,24.520505117280262,10.791033390715317,2.324437876525186 +5221,1.1454984395170005,21.984530186123035,9.905406303342934,2.3965034899694126 +5222,1.1445961382843957,26.719449961100757,10.617939923534832,3.5516541983331114 +5223,1.1458879295376607,22.73142845700273,10.369676980412285,2.8037156872998623 +5224,1.1421836316991976,22.91836243850547,10.967216203606226,2.0180309564192913 +5225,1.1395754485504814,24.56573582252363,11.244469273490008,1.818622621748453 +5226,1.1371968920423603,23.975926085980596,10.760917582583184,3.1071426285107915 +5227,1.1398609037828877,22.55539354078106,10.02796982302449,2.6830330586710986 +5228,1.1400868204431764,22.367471255696543,11.088426178812401,3.3221652012083833 +5229,1.1435173218336985,20.409373821635466,9.696634938340093,2.149783767034977 +5230,1.1362950161825627,24.063754756862497,10.631838025166761,5.296925025485891 +5231,1.1410590243759828,21.29176828564305,10.240624820282529,1.9700462423204939 +5232,1.1438530834260443,19.703311375927264,10.865771787501577,1.8927792848736427 +5233,1.1389284645039492,24.369685885533876,11.25914678306316,2.746102329378886 +5234,1.1382299096264827,21.911495880774016,10.9231184126006,2.3857988368281724 +5235,1.1377818775932402,23.482826605831416,10.478283057110007,3.1575668763026434 +5236,1.1405745406659495,21.77695757878637,10.510740581898789,2.198714918952725 +5237,1.146433656729004,21.035050244930087,9.74133182387713,1.952915060138118 +5238,1.1471874121240522,22.320577477314135,10.235134955737056,2.789289736368081 +5239,1.146361015526572,24.398342285959277,9.953318631694263,2.5760283382438973 +5240,1.1459050898852419,23.843775450730675,10.365193267078904,2.4104817057870567 +5241,1.140787100847469,24.27472921914735,11.02245055558169,2.1918266869294993 +5242,1.1429491108502676,24.2365866870964,10.895228443339017,2.6043310213031288 +5243,1.1470815352044335,24.070145469318444,9.862653111916623,2.7040839275044295 +5244,1.1514157321756529,21.785551588833286,10.283866881046448,3.056649738908429 +5245,1.1510390909019397,23.57055196903502,9.916719519605337,3.0460513252142367 +5246,1.1543824507123466,28.55995619457447,10.3562404542687,2.72917215724684 +5247,1.1553760253822818,23.70845329667336,10.572385840761134,2.738723104188816 +5248,1.1528020664377647,22.933171977738844,10.171015628410235,4.845964839757835 +5249,1.1528897117894472,24.0502348569809,10.785305357119343,2.438992773888655 +5250,1.1539011324237956,23.40159017672397,10.391871529627634,3.115353448622621 +5251,1.1516294062848966,24.342693830480613,11.435098982220678,2.5264661303712037 +5252,1.1561063266815257,23.581067542959957,10.806369298826889,2.280636187081657 +5253,1.154421570586382,23.643475282898613,11.370659519637538,1.6351874106619892 +5254,1.1599490714842091,23.970450951963997,9.969581786124714,2.6956268335481526 +5255,1.1585739015579957,23.51569755726477,10.47762459097437,3.2715210910429535 +5256,1.157738967893829,24.09634976748744,11.57029193715158,2.746881525046047 +5257,1.153116629284092,23.683001450182193,10.719595696914189,3.209803948089629 +5258,1.1544776168201833,21.58423802438781,11.233599262953254,2.7316460933343545 +5259,1.1524784861073782,22.93771540836301,11.023403229170171,2.1445317760305125 +5260,1.1530440089647513,22.64852438342276,10.424525100055343,2.923739405558462 +5261,1.1490554161202329,23.932180850404677,10.662000266438175,2.4575883572032495 +5262,1.1450992568209328,21.477482237775966,10.664516843465899,1.913947974305183 +5263,1.153038411943861,22.876112721560485,10.52747480701779,3.6653566809740115 +5300,1.161642445319914,20.80784523726113,9.779778691875622,4.161410390525624 +5301,1.1467152328469161,22.049923041426606,10.326895776975181,3.552577938201858 +5302,1.148058929635623,23.34695250145404,9.175941363317301,3.214420445587104 +5303,1.1463353525419593,24.189072869242935,11.208129598635054,1.8745245551555298 +5304,1.1482017889528437,25.421382946794214,10.94454080409802,2.5009339280951557 +5305,1.1513213905705577,26.14056860553257,10.988564421394726,2.47003809687019 +5306,1.1540844584457044,24.68491578115705,10.327566582304847,3.336027875695356 +5307,1.152473144131139,24.025297621904656,10.372338886756793,3.3276201345761636 +5308,1.1530225324969836,24.053936734402352,9.843237108726015,3.645424744526568 +5309,1.1499843297736008,27.528707856972254,10.931613725251708,2.9222006827815004 +5310,1.148844696638246,25.772210418685507,10.983671751656683,2.3901745312269465 +5311,1.1524566381911399,25.54024286196433,10.375935518435268,3.8995306451206 +5312,1.1549225021542844,21.509340588080477,9.069841985785516,2.5727751166345545 +5313,1.1482503611349884,23.778785113429873,10.319794889505188,3.9807655400292288 +5314,1.1530889396610673,28.93435855254455,9.770276310231107,3.3445409707831155 +5315,1.14540282723826,24.258723120382466,10.014447167717421,2.7405098427566004 +5316,1.1465438790898046,24.845638794820637,9.873401377916222,6.887271105183531 +5317,1.148909439462195,23.284755693626952,9.946160793307966,2.5831190287074772 +5318,1.1454740310905274,23.239459136211828,11.074102329907504,3.4449209974923507 +5319,1.1437717994183083,24.210138489338124,10.13603855529384,1.8723980402027443 +5320,1.1427257500931738,24.981920438403016,10.276159099786932,2.3666752365000834 +5321,1.1454963424380054,22.046423481713507,9.339727910941434,2.11848362720604 +5322,1.1412139962272685,27.148471971870215,10.481918253040462,3.2302839283777898 +5323,1.1434269550106317,23.155711404829063,9.861587294945652,3.0700167137866226 +5324,1.1375075101743373,23.76003038374936,11.046792085482682,2.3024048093674123 +5325,1.134672812930704,25.219009403414578,11.182111663760606,1.902074029603645 +5326,1.1364214267654684,24.210243068866802,10.54516912148493,1.8405496306571534 +5327,1.1383392769384955,22.910341865411244,9.494012212410157,1.608568715926305 +5328,1.1357413188524943,22.532839438500726,10.926266829342447,2.400913084222094 +5329,1.1404514814791857,21.30862297100774,9.596597283890725,1.9075970331124563 +5330,1.1346864482071597,24.70402148698242,10.745818451809534,3.164345492738782 +5331,1.13999002855683,21.65406053468601,10.22219786414942,2.86906774357433 +5332,1.1408987064174532,20.11102632671471,10.298069051962226,1.4562446115195846 +5333,1.1371310397447079,24.973884480636954,10.636809362726511,2.9507565836619842 +5334,1.1394213146772638,22.14712230844324,10.955920492693755,3.1149254576725705 +5335,1.1343164373367907,23.600734631025826,10.457102753800582,2.1680784302854175 +5336,1.1387050946189918,22.163814340472648,10.40398634881661,1.7302768466219334 +5337,1.1438430749341835,21.360948146768237,9.87154246093575,2.3877616659487866 +5338,1.1443108105912925,22.921042700552004,10.014437152630586,3.4733201310101194 +5339,1.1440447254438608,24.778981538348045,9.908269987568545,2.6341560974030442 +5340,1.144907144688098,24.176847918497355,10.144165002186643,2.1988221575219202 +5341,1.1369976401755286,24.91444998223914,11.276653359152956,2.374618844230232 +5342,1.1420799381760978,24.762422821534642,10.617946292082847,3.05237847044675 +5343,1.1454596197617988,24.515187196978186,9.475159067438973,4.897995937725239 +5344,1.1474583252946302,22.41058845347232,10.339303478200502,2.3089798676416553 +5345,1.1477539608722547,23.976092826044884,9.719248039319167,2.453121526718152 +5346,1.1531699408870928,28.880628339690983,9.968431711029712,2.534150055453492 +5347,1.1510764584459707,24.87423399178416,10.163143784147522,2.145236748600508 +5348,1.1492118245060527,23.39575162669243,10.294699301132216,2.7967943968423867 +5349,1.150758652206353,24.232552483699774,10.666521346291448,2.2243230366133804 +5350,1.1520248858938624,24.065588732402045,10.23298609376203,2.8920822205003724 +5351,1.1509451733040157,25.05065752430153,10.988140827082008,2.8474989529703922 +5352,1.15419065092899,23.78629567153943,10.586006085464122,3.4067499658039107 +5353,1.1534699247687767,24.668788138979167,11.167505138291906,2.6778528801447963 +5354,1.1575202249493497,24.830129478726032,9.82584655175559,2.4707713271075034 +5355,1.1578276134642325,23.62407346056347,10.529301536154435,3.7420531115931808 +5356,1.155513822047204,24.62411149373706,11.544483113517659,2.1843842027784492 +5357,1.1520159843327986,24.315730596594697,10.480611140699796,2.325114382470602 +5358,1.1524972243978988,22.383943825809514,10.454804999658675,3.445358193377347 +5359,1.149988442655391,23.404794866766412,10.746268772310094,2.120012972699741 +5360,1.1489511795380358,23.16395826301884,10.683331448653961,2.4412401103530534 +5361,1.1487517487376657,24.293895839126364,10.667231034977913,2.3450383633742904 +5362,1.141153295774614,22.172562032144327,10.628053349757597,2.343948557003533 +5363,1.1518954312016396,23.601819125359548,10.55426419542269,3.692196808483561 +5400,1.158086358618165,21.67849263266602,9.687196549095173,3.2441779256969006 +5401,1.142208538731755,22.17806199392332,10.126699790562702,3.7607178989155794 +5402,1.1439215232384536,23.10165934605558,9.394880223441378,3.374281471254005 +5403,1.1413244198667476,24.034595106900575,11.172928307719584,2.2898104232312124 +5404,1.1448511241373038,24.896397446476396,10.829412528756018,2.5743866249884513 +5405,1.1452292026330906,25.75057881069529,11.364264946514375,2.417778743902451 +5406,1.1496105963323182,24.362989906893276,10.317981465027103,3.081370440657723 +5407,1.1506313841840485,23.603450932357863,9.84237757113513,3.2427503484970117 +5408,1.1505477085368545,23.98222669066839,9.565685300631635,3.3057340635781256 +5409,1.1454659603959843,27.391351956517205,10.96742772634799,2.585693953943883 +5410,1.1457012295760223,25.68497430319258,11.361686115596115,2.8616095752913395 +5411,1.147771574055655,25.069891034170944,10.49019160967678,3.246930738197514 +5412,1.1524533751144685,21.174447665635036,9.006838486276981,3.364337724613435 +5413,1.144776733623864,23.668601712870885,10.038615776296544,2.602976873305819 +5414,1.1517228749265105,28.61641010186652,9.10661525568277,2.8435942072249585 +5415,1.1409350101788307,24.559825060778586,9.925952571438488,2.5484511228465743 +5416,1.1464506175443965,23.818735398630647,8.922222981668108,2.083288123833696 +5417,1.1444950367435591,22.71327977962252,9.769716010447123,3.220855855170271 +5418,1.1404479730167252,23.097956990519826,10.463654055201523,3.7666827535256715 +5419,1.1403430594276365,24.04970447583248,9.813446733878548,2.389515738426725 +5420,1.1388857427282524,24.718604331085615,10.214001973867525,2.86181455015197 +5421,1.1390747438877917,22.008549876200867,9.213963137926251,2.696691654901943 +5422,1.1377612603581646,26.81403695790084,10.204667377644675,2.8617997147550804 +5423,1.1411222224833257,22.896931900608816,9.541697316231813,2.5310077276431713 +5424,1.137168298209809,23.194154902823023,10.769625833252409,1.1347733292828917 +5425,1.1317050211173676,24.71466116903332,11.094474318966716,1.392464736587886 +5426,1.1304951735734505,24.262024088368246,10.871956635304002,5.500140771414534 +5427,1.1304514479914103,22.92374362753582,9.961619124956828,3.2142476610371102 +5428,1.1338629114340273,22.352434202682744,10.812539218985105,3.105204058801844 +5429,1.1362288857267657,20.935286932728797,9.218120809421587,2.792130520755511 +5430,1.1299843789447517,24.364934082463147,10.684914585915823,2.2645260113191368 +5431,1.1350972440800098,21.52771246109475,9.796979998461103,2.192120956717996 +5432,1.140013549198831,20.008915748488143,10.130513376167382,2.0108949697060052 +5433,1.129983319674039,25.404078562270335,10.894426179048105,2.8373041085430577 +5434,1.1347597035805002,21.842509746918825,10.833834010443448,2.428038486925666 +5435,1.1325952012260967,23.682659198712752,10.17207120513929,1.9216208620098072 +5436,1.1359057847894811,22.338385220112453,9.737199042767259,2.6366737734028103 +5437,1.1385586668759737,21.574268525324573,9.733680017870533,2.482987345461143 +5438,1.1409957415544119,22.862065698610408,9.716863415973346,2.805616584290741 +5439,1.1411012061789891,24.587655614284206,10.1656321615451,2.7361032615523055 +5440,1.1415263685073505,24.56720900255262,9.979317012990993,2.5265053337400047 +5441,1.1347587073407306,24.706746348466545,11.068337660224403,3.178858327384782 +5442,1.1388750254785462,24.556172962769615,10.221737652258732,2.980687935971657 +5443,1.1441555559332754,24.18494644318481,8.985499461657511,2.8900186401693677 +5444,1.1462269488804593,22.18323131804781,10.084496673836721,3.1748355971359303 +5445,1.1454627533588264,24.244052585195302,9.515447429486,2.693520174165597 +5446,1.1483740691877842,28.784512054685266,9.787281085100838,3.294310514567598 +5447,1.1488406693652244,24.693146544945172,10.376254692697392,2.7408402518390775 +5448,1.147449698869184,23.315164433356884,9.826530891307032,5.4637258993857465 +5449,1.1488897074513424,24.37261546504753,10.46757105831963,2.9143662457490356 +5450,1.1491134890560946,23.938723582771303,9.990802107550554,3.4253877414223752 +5451,1.1450958870180663,25.309534787173302,11.031897672304407,2.3784459219133898 +5452,1.1501939268089154,23.88628048173913,10.646564947634197,2.7114700153524507 +5453,1.1491034366842297,24.44020359525608,11.094566302844946,2.8393802245247928 +5454,1.1530772640838804,24.34402624676098,9.541485127411919,3.4302163815767073 +5455,1.1549314222377602,23.55150921527254,10.267333537337885,3.4055325226139694 +5456,1.1519852388932428,24.065675018787235,11.62461609287386,2.442701192014587 +5457,1.1460954834642758,24.070973007109675,10.534446229936623,2.302048905460916 +5458,1.1505513278998685,21.803717519709302,10.479380103606433,2.9891968962602897 +5459,1.1475714555476628,23.297310608784663,10.780346442047303,2.0095095474433236 +5460,1.143612986073466,23.50479989054653,10.465898010422256,2.837509744438887 +5461,1.1452233542069585,23.94405870091975,10.442864449652577,3.113379798621989 +5462,1.1408713354721112,21.849195941009153,10.390605966845255,2.727829715768186 +5463,1.1468429390073949,24.175937927851436,9.912517119878375,3.0544932870351404 +5500,1.1617187948195529,20.81248723428673,9.915586448111954,3.6893324528079567 +5501,1.1468101005684144,21.76298165848225,10.536707937472338,3.6544736823751096 +5502,1.1490806133302416,22.650049503637444,9.626222074582484,3.1398846066439368 +5503,1.1493202744729656,23.66309436695873,11.146433150242238,2.7798213915534253 +5504,1.1503467460008463,24.3939638216346,10.993399912872293,2.6886027426557373 +5505,1.1534613395044615,25.489466809720152,11.679985659978891,2.8163068217448464 +5506,1.156290945691236,24.311230543840797,10.624983683449763,3.675339709412207 +5507,1.1560958927325353,23.293139571255054,10.312912772520688,3.938919746471867 +5508,1.1601554333151218,23.01370527195725,9.68269949449905,3.764756686196001 +5509,1.1545965208377833,26.773250441312886,11.286382248711885,3.86067830685137 +5510,1.1516394266621126,25.394327132917173,11.221297477161546,3.3580273229614503 +5511,1.15475421242464,24.794425461494466,10.631422875633252,3.4480532748038706 +5512,1.1584385086129894,20.963122645533474,9.411052615273029,3.791441446067945 +5513,1.153233483250125,23.05079702052951,10.319525920380002,3.214189785097395 +5514,1.1598599908876042,28.06766166981013,10.071048616373572,3.3459901975683803 +5515,1.147679995165581,23.949111403101075,10.245741541830634,3.949658168545104 +5516,1.1523950245191736,23.548128034835862,9.521003231261476,3.163600369687746 +5517,1.15300499498046,22.721592819063716,10.024119802313368,2.888842786140904 +5518,1.1477160556913946,22.79684283774385,10.98799510532237,2.9770060364378814 +5519,1.1493601467146972,23.64606873754717,10.392415479988752,2.71198711031765 +5520,1.146685648606886,24.32081540449683,10.430392727518322,3.106397882064926 +5521,1.1477182995491482,21.67330122282687,9.81117720834185,2.8074544128419903 +5522,1.1452511975301192,26.173781151435712,10.169181952892503,3.183502125765391 +5523,1.1454905016277874,22.530463534790076,10.016110807838707,2.656694268864329 +5524,1.1417678255955086,22.676497944964492,11.154856476185149,1.8816733843823714 +5525,1.1366405809331344,24.221803540853262,11.171524150945226,2.5054356408801297 +5526,1.1389114142991432,23.59080080420851,10.67788112413037,1.3405244336839401 +5527,1.1386173146605996,22.130623212462005,9.868857187211608,2.7257968655974634 +5528,1.1393952761359891,21.961622265300047,10.974727082341246,2.4312909416578146 +5529,1.1441608460314756,20.436393806429432,9.456719331587514,1.900791671448016 +5530,1.136993724858409,23.75855149385964,10.726262797291405,2.4046514652853137 +5531,1.1419219674735293,21.065493224727224,10.323200890102846,3.3637264883562423 +5532,1.143268270544267,19.973648429671055,10.485619580315534,2.3043526923800703 +5533,1.1376449042713668,24.379629362250054,11.138840301964315,2.0772227084993813 +5534,1.1407829360301853,21.474362769504424,10.824614067260894,2.1876716394020352 +5535,1.1377273385558946,23.283317707933605,10.406245771850257,3.070536467210817 +5536,1.1407024013505642,21.6972889462973,10.22764212454522,2.1927617988217674 +5537,1.1457690451372988,20.520391517960668,10.14747678396528,3.2108169857137248 +5538,1.1452734643344589,22.354421740230215,10.018572809860816,2.994642794593728 +5539,1.1456444608953864,24.616412915941545,9.629895902101534,3.2133041815680556 +5540,1.1488834136981898,23.590382598601586,10.832575083643409,2.464069507080919 +5541,1.140919712896046,24.54632420378269,10.976158098466653,1.8462099182246943 +5542,1.1451600476720976,23.839567815147905,10.742980465864004,4.3690782608713485 +5543,1.150915207058238,23.579101095332415,9.633128085186726,4.543801368451558 +5544,1.1510052176024408,21.697680971569298,10.311708813605007,3.0931939980384695 +5545,1.1527221779040882,23.625451546802196,10.024158933154107,2.3705300079824134 +5546,1.155785318658235,28.119610038784973,10.223063461028106,2.3217083416384985 +5547,1.155851186745737,23.977858337611753,10.483784126567878,2.660519178510812 +5548,1.1540381729770173,22.667425282086544,10.284891810641565,2.535884210799008 +5549,1.1547226183378403,23.461329605896022,10.734854413076988,2.677366402215158 +5550,1.1557663548883004,23.640399105335245,10.278092189021265,2.762945272398561 +5551,1.1552981193314156,24.260367183738,11.128598230188139,2.471894622606956 +5552,1.1554282314503552,23.470170660605806,10.767799348159482,2.410493992068078 +5553,1.1535212180884908,23.980361250759454,11.216737982826938,2.305942088750218 +5554,1.1599896293133327,23.870499667818287,9.80656354763189,2.7284233687231016 +5555,1.1583429844256783,23.383742565565072,10.660680244286148,3.6236088885296 +5556,1.1573347079969194,24.29926335599429,11.604785134165374,2.0582612280016854 +5557,1.1540437979598368,23.293616305249596,10.702216006101446,2.6935096356787094 +5558,1.155034238927804,21.66748062954704,10.691487250603421,2.845919930964109 +5559,1.1529622649502764,22.48111210639058,11.132737074483604,2.3657847821613482 +5560,1.1491955982441318,22.937273312684045,10.524867700145425,2.698033169307826 +5561,1.1502174713980233,23.549176977542768,10.372127246259861,3.3871284574700935 +5562,1.1418075674569867,21.557595159049,10.496550002805952,2.6233738144343195 +5563,1.1556554570665938,23.23962511424889,10.211891741619615,4.365315885912464 +5600,1.1710821305720163,21.57966461141601,9.774273018237254,2.3638422339025755 +5601,1.1508513116298174,22.05524994019855,10.208292502146634,3.430037126915614 +5602,1.1488734162856895,23.223260353311133,9.778521785743747,4.868093261264415 +5603,1.1466710173340227,24.929981579876873,11.240515369332739,2.735913858832247 +5604,1.1480439174319603,25.858911542058266,10.841707706515963,3.1319444944093364 +5605,1.151141153875418,26.971767854861447,11.577775892158213,3.4380016745826505 +5606,1.1558309320200315,25.494341915096214,10.662428429944905,3.147937863541283 +5607,1.156213735588006,24.523800782077608,10.153569275072659,3.9585752156411815 +5608,1.1582149771573782,24.63723519647933,9.837529485449263,4.082522796284274 +5609,1.156953703210633,27.855536270757984,11.182044042961232,2.8118465746938464 +5610,1.153336406210624,26.426878578931653,11.311744564267373,3.1689878149529207 +5611,1.1573784887525786,25.828903623429486,10.58972417481154,4.363866813280096 +5612,1.1608853672217734,21.84513703904759,9.77629571986461,4.147848004858931 +5613,1.1549843464556147,24.194701388888905,10.577821352380223,2.7545267717084463 +5614,1.1609603102757509,29.440886099052427,9.991265323870978,2.907500308469501 +5615,1.1508914889091506,25.080427762366025,10.224670183739,3.8713964487289276 +5616,1.1521610617022449,24.65891196835452,10.129167432841509,5.377089479760761 +5617,1.1537578065645915,23.657022726118946,10.093585589041616,4.418148067576696 +5618,1.1512616612441513,23.671867411648478,10.895647220424555,3.3989313532052368 +5619,1.1501250488716583,24.625940192159653,10.3815743271626,2.173943268991821 +5620,1.1477025065779343,25.34505703845028,11.009997462934615,3.543384757354417 +5621,1.1497095435633102,22.608550561409956,9.663515660400426,2.9881631673851157 +5622,1.1460895005299812,27.31138708322085,10.484448561051162,3.740662622135635 +5623,1.1462173301323662,23.670864569946996,10.175006248880385,2.6662029743152025 +5624,1.1425498942175765,24.011488249888313,11.079032125045039,1.937340548581903 +5625,1.1380296696900982,25.125138153233745,11.440842685136865,2.2596577979250805 +5626,1.1381354586117731,24.91558487448794,10.919865890384346,4.944221071813 +5627,1.1399629937709432,23.10023720665512,10.116305761818262,3.5658897337956525 +5628,1.1381474500854742,22.994975595786084,11.170824839196166,2.828401139576918 +5629,1.1445827418373924,21.74612737943971,9.528838277039092,1.8927498154896134 +5630,1.137141106451724,25.337719762084056,10.66588558733484,1.9219828045633596 +5631,1.14433327143708,22.006437981867293,9.73795973873026,2.9389834965320483 +5632,1.146738393821249,20.78002435268226,10.41301697085143,2.6716335563522984 +5633,1.1385235397850573,25.543170744035407,11.154290933653616,2.619994388598592 +5634,1.1394873384885527,22.906053626007353,11.044943370781906,2.1756244174701216 +5635,1.1395575165320666,24.245301154072294,10.754604687006134,2.8210751977228954 +5636,1.1419505026358048,22.687577545295223,10.55837401954941,2.562765305538154 +5637,1.1476653305995967,21.65016505683098,10.148121620160987,3.0863483007809216 +5638,1.1483206355949611,23.329464608022164,10.041498040631058,3.5569052789634035 +5639,1.148355822173524,25.378228673274805,9.938459795769104,2.9380312280815577 +5640,1.1493271240246894,24.60475117614271,10.301159546303559,1.9145933538659323 +5641,1.1425176456262869,25.4654310436218,11.155558279009309,2.8098458259301755 +5642,1.1460863298839958,25.29127972533254,10.785359969095985,2.9601786032416717 +5643,1.1501990899912515,24.92556688383632,9.677922815898238,4.052499904141495 +5644,1.1524687852703337,22.9091029103183,10.34005005904751,3.805717818927404 +5645,1.1517358961941742,25.088659811638532,9.815212363285223,4.055154709676214 +5646,1.1568724070218308,29.5662198584301,10.261666053834116,2.2006291753110316 +5647,1.154040844574166,25.23394010359356,10.403153522948308,2.138975267165031 +5648,1.1547129616422176,23.963529866622796,10.232583560012648,3.5630197961541157 +5649,1.1563518058370348,24.98304931601499,10.985357627569465,3.6963014164357237 +5650,1.1552296066996486,24.75713387678688,10.089619146700445,3.1093754082522973 +5651,1.1540413534601057,25.59429573432092,11.091218842633099,2.408754014337337 +5652,1.155969929009343,24.77056084928589,10.903997294034372,3.300810885652584 +5653,1.1556127701033438,25.23714226746511,11.08739399771825,2.635032593345028 +5654,1.1628638648725498,24.67634088479251,9.656824636139795,3.38570101001336 +5655,1.1590521669458116,24.26110081737396,10.840810301972857,3.4159268862595265 +5656,1.1578709011614414,25.06569034517785,11.891644968886709,2.8787882075739963 +5657,1.1540063385770385,24.672145766411884,10.937971776075212,4.051276349101901 +5658,1.1538802162601962,22.598807547862446,11.188144897856223,2.903265213379881 +5659,1.151085666306481,23.774011789548375,11.091526501720333,2.3946335652678568 +5660,1.149658769869557,23.914144176307367,10.696929625120195,3.409308581699433 +5661,1.1515069810577958,24.521928406720026,10.637022941047132,3.5948661323240816 +5662,1.145626393592294,22.214846980256564,10.531773089807231,2.4041906528937016 +5663,1.1599661294576682,23.467882685434358,9.924566590903714,3.0186083135482193 +5701,1.167470027316043,21.858411503563328,9.93223751045003,3.517168312173918 +5702,1.1533325052368042,22.98341126731541,9.063329437332394,5.763626711280999 +5703,1.1459313157133142,23.893061575878843,11.377643697871314,3.0806292774459108 +5704,1.1504922286521617,24.960452265325536,10.889234968074124,3.4220147293197978 +5705,1.153012084824963,25.954125906361263,11.454304182353553,2.63085481295613 +5706,1.1556226965996443,24.968820276216018,10.50503263986158,3.4368728691707617 +5707,1.158467795444697,23.963108900047306,10.318225978022806,3.8855086463885056 +5708,1.1604731963882629,24.175726326669135,9.758986777190568,3.7630006341266853 +5709,1.1535026411575808,27.750200761836496,11.314092352165467,2.6899828916606694 +5710,1.1553491007977044,26.07538591804389,11.465580706518752,3.07911342952738 +5711,1.1582171481368158,25.583699850220256,10.536233778013013,3.6950197159479354 +5712,1.1631685193235843,21.603191610507803,9.712365451360391,3.7754804358818146 +5713,1.1571562384950485,23.994177421823476,10.68785009226724,4.284478510313299 +5714,1.1627485847501742,29.103312854803512,9.56578975052102,3.955700309974777 +5715,1.1534473719213378,24.612857097783195,10.237293041044472,3.426807286137973 +5716,1.156556541968601,24.4100842893553,10.239755033377985,3.5467358689707895 +5717,1.156337939499499,23.37735935508816,10.210611315560092,3.8365530391724367 +5718,1.1524067358421466,23.53111753123688,10.679376188615764,3.895602987619574 +5719,1.1500383761383062,24.442170574534025,10.68155726055012,2.907556182961333 +5720,1.1483528585582357,24.98400751172268,10.558701539695114,3.1058396362561473 +5721,1.1510935631043264,22.15428968485099,9.604839767760293,2.6993374808649135 +5722,1.1446033128970003,27.21142243727392,10.257651962255823,2.877309781974089 +5723,1.149959114231764,23.376915181426735,10.233869624169058,2.8371237609491566 +5724,1.1450548220668948,23.484704756918394,11.090011546355594,2.873905298309858 +5725,1.1396381950256085,25.024090513888783,11.411602624445973,2.405120263677283 +5726,1.1398029868719868,24.420146254305592,10.820396282989808,2.1446692017495095 +5727,1.13993628310259,23.241656584914868,10.176857489974445,3.101847288423065 +5728,1.1419967574202614,22.86086756533729,11.087559460456287,2.615494787517387 +5729,1.1463190524391396,21.320134372157,9.527114320997336,2.566189597763522 +5730,1.137584299377557,24.84406340087091,10.920311922901778,2.661885887793081 +5731,1.1444310592481355,21.604024909672937,10.158264186613648,3.186616452756672 +5732,1.1462633719408415,20.548841097273687,10.37426220913983,2.011153384588998 +5733,1.141284371890148,25.19201062372178,10.951004025493052,2.1005992614104536 +5734,1.1420188375112852,22.763415588791307,10.424533371251915,2.5376059877580115 +5735,1.1411365879083966,23.912879659709144,10.543396513714358,2.4459929051237568 +5736,1.1425517728425985,22.308701882503915,10.579919048038807,3.498816878328105 +5737,1.148690103549726,21.530902686102433,9.82223027596952,2.4188636887991306 +5738,1.147563393093125,23.284500859576777,9.929851142250618,2.396921885550622 +5739,1.1494786913035442,24.878054832005006,9.841987392556844,3.5388734554014385 +5740,1.1503779805895418,24.281898010901237,10.305012420675281,2.6604106528496083 +5741,1.1441314996492038,24.882735199390236,11.12990708266885,3.446309270591703 +5742,1.1496408926167452,24.558713592411365,10.589318291674825,3.1474634060304307 +5743,1.1537196399894563,24.375722586596538,9.727514579347801,3.5700437092162947 +5744,1.1550365474300424,22.38777777511313,10.385821639027133,3.531638814754014 +5745,1.155028051251635,24.322115681202902,9.67047740115991,2.818621504167041 +5746,1.1585235423372697,29.12951449943444,10.410959118058765,2.810381093991 +5747,1.1595113064829718,25.017875293394084,10.28036495865656,3.1918230376057104 +5748,1.1559213830478134,23.41871737362716,10.35337644986273,4.135182063383214 +5749,1.1566140101904414,24.98152786003729,10.771938366136242,3.2205770995127287 +5750,1.1594563887797305,24.386182345983848,10.227895904616293,3.2082101696507017 +5751,1.1559761411212275,25.433849409055284,11.136936328706236,2.849281858497672 +5752,1.1576704907276323,24.35169144603394,11.098681162550786,3.1760897257374716 +5753,1.1571156747335078,24.549569078928005,11.018517351392376,1.8772355053172973 +5754,1.1619386789360522,25.032661011326123,9.732676059113873,3.614596975502688 +5755,1.160657252874831,23.828915632533466,11.038737797221101,3.674007146193779 +5756,1.157413366267113,24.866028466682504,11.285922166960681,1.9599988572073017 +5757,1.1548883354177104,24.569996209190204,10.987703113100423,4.8749415775145994 +5758,1.1538950448624972,22.75927374184833,10.867745306281908,3.647052841955931 +5759,1.1521582489906563,23.522894657863713,11.072983636496197,2.6020573929946673 +5760,1.1489546413161738,23.508988279181843,10.602343267367596,2.9869737174808444 +5761,1.1519793257057855,24.015217089754273,10.019487357660593,2.865895151028381 +5762,1.1559980547838797,20.804296858560324,10.469934579775003,2.0747790008136744 +5802,1.165615076973541,25.221846637117164,9.775718115499593,3.9535067484645725 +5803,1.1476517726373738,25.333639937379868,11.344428828788919,3.2478331663700963 +5804,1.1448475473311244,27.04651605099901,10.864992981569154,4.182083436832988 +5805,1.1477144926204406,27.75085430024137,11.246913415506258,2.9854594415559217 +5806,1.1540212461476853,26.231853656181016,10.47434368454467,3.77751770249731 +5807,1.1554874603388277,25.6840415889518,10.190292672225997,3.5790065566700484 +5808,1.1560526755385614,26.1992249663954,10.122601786506454,3.5854731185525033 +5809,1.1549392124681317,29.505184246266886,11.073950737739478,3.355193415337604 +5810,1.1540063392026374,27.949571050544773,11.347465315788952,2.525995734116831 +5811,1.155815709165398,27.25115338750615,10.51671427874322,3.1178487122095344 +5812,1.1606417805398896,23.615555969956137,9.672289541903593,4.1871694274019795 +5813,1.1557649939620258,25.524591492287094,10.231926520961744,2.9748680693766176 +5814,1.1610114140765209,30.828734044618233,9.934952492032556,2.9524366503213764 +5815,1.1506676557333577,26.50761863002853,9.983013600496227,3.4667116784154133 +5816,1.1544124061809833,26.16059663752054,9.697328644195538,3.9919160936469344 +5817,1.1539153979288033,25.098545753927407,10.106934078702206,4.6360208176731055 +5818,1.1504575977585876,25.35728737765083,10.691241991825057,3.0855164960780077 +5819,1.149967854674765,26.18337575659671,10.76484171703482,2.204381372309536 +5820,1.1495496814745823,26.592463609091016,10.668622645299937,3.6789833779085495 +5821,1.148188017637671,24.252793403793618,9.674086731188117,2.9669268056335945 +5822,1.1441313336593923,28.780490765428787,10.34435668634202,2.87791675264445 +5823,1.1490503232872322,24.64605809961825,10.312836601988508,2.134746060500179 +5824,1.144586154153577,25.145657192857502,10.993586275896355,2.509599466812183 +5825,1.1394683110657,26.7089048819878,11.221207760412412,2.458125177960782 +5826,1.1396652123860744,26.009162671020107,10.707213766595691,1.609557032382908 +5827,1.1394183136997451,24.82679762337063,9.818049380301249,3.3653344587318714 +5828,1.139974899390944,24.780150057634238,10.955121294306585,2.6107328749697722 +5829,1.1433928367808066,22.905631649371927,9.939474451089977,2.366518075520848 +5830,1.1374944162154765,26.353816615988816,10.80738120787295,2.2681573547169847 +5831,1.1447076190271457,23.428493996144326,10.091361780363878,3.074304343443186 +5832,1.1471487258597768,22.180104622236303,10.306292096283345,2.030627577781866 +5833,1.1402933684027936,26.495079976927773,10.931867615918152,2.5368657800649363 +5834,1.1418662025103865,23.760416394162103,10.778435801934473,2.8587690972316895 +5835,1.1416239022532761,25.533629321347387,10.458424440619035,2.1464379509440157 +5836,1.143482807189687,23.805408496819737,10.241400270137722,2.698731791430214 +5837,1.1468474345340496,23.418388587988396,9.71823334107621,2.5688507223109704 +5838,1.1487568334147609,24.632633662515303,9.929047279726236,3.0237265543423693 +5839,1.1476514208663389,26.744607966109164,10.106294281155828,2.5370296527233718 +5840,1.1506975460390176,25.992806403505522,10.342550718815005,2.6527732259657357 +5841,1.1430498723992315,26.76111312014993,11.112855553875825,3.2553206850721916 +5842,1.1500150288334972,26.061519974362962,10.78046426237655,3.065932711332813 +5843,1.1507331662830005,26.29207268333631,9.612298902579509,3.481907013230628 +5844,1.1544417110765985,24.360329912372652,10.08773762908198,3.0241780310039106 +5845,1.1525791861284282,26.308617854560342,9.763281649618705,3.4026262888665344 +5846,1.1561791928565683,31.029871389271477,10.07288342307769,2.9580855379727646 +5847,1.1546345153629862,26.96602093639416,10.187391191171578,2.352919706898129 +5848,1.1528305299884567,25.58849879775326,9.96843585451743,3.3306498646862956 +5849,1.157521753529512,26.235117023816898,10.868312174139598,3.011671029117654 +5850,1.156435967983611,26.065092329174405,10.417735154217244,3.582055594346093 +5851,1.1539314396030838,27.234343697597417,11.73575326581591,2.3439535943399545 +5852,1.1561869346569407,26.04300828076403,11.101680861792282,2.642143479460303 +5853,1.1539668228676274,26.62660842721387,11.137917697201797,2.6556260910172864 +5854,1.1598382765591848,26.33720938969228,9.652845789166363,3.4305246664328672 +5855,1.1578968677294248,25.44162965131717,10.583684055814741,3.556131883330171 +5856,1.1552267762977362,26.479474104218856,11.61377174032616,2.5997854417949764 +5857,1.1495328276590193,26.08376973404915,11.02734206927825,4.182903519187578 +5858,1.1489134146084288,24.3699708665352,10.610488053417003,2.5664078157100034 +5859,1.1483303504932876,25.084032606296184,10.925046336694898,2.5002311426897976 +5860,1.1477055639710398,24.80620029508322,10.677481595194715,2.4953217657116555 +5861,1.1575588394606076,25.304236342503707,10.119668388009321,3.01213586738809 +5903,1.1613175216156748,24.826223119905222,11.181136568025389,3.771635977312988 +5904,1.144561044780737,26.127409490310196,10.621624634363274,2.478504484619761 +5905,1.142690749831826,27.349532858024535,11.471729558415486,2.551839759396961 +5906,1.1460411291214572,26.511872883308026,10.219466954798152,3.5248583311114183 +5907,1.1512432258877,25.422215319076265,9.986239817156015,3.9356077127026694 +5908,1.1545176176633551,25.26567111694679,9.38789711631032,4.012824553809706 +5909,1.1482122757956166,29.346480304656733,10.89758299450467,3.9090720272128068 +5910,1.149804188181171,27.147154767875996,11.2312427296881,2.967693573703984 +5911,1.1566270735107533,26.483062779869,10.169909796681171,3.842745117094323 +5912,1.1572162719520263,22.783291600467,9.403718503215837,3.348009957231803 +5913,1.1530436682967626,25.035325492981006,10.189009407901677,3.4823445828668143 +5914,1.1572902390319797,30.443235442982022,9.381452289032834,3.364695225617928 +5915,1.1486376372596099,26.189458007748826,10.038476980208154,2.294962812408585 +5916,1.1541249455427545,25.371216082555776,9.428877057082643,3.20821469982547 +5917,1.1526541249236386,24.587335873988362,9.581366372549043,3.372030044860674 +5918,1.149163239098449,24.561242406763103,10.382843888260329,2.906170944567834 +5919,1.1476110065282186,25.531129831279326,10.58865729965624,2.5051644838716993 +5920,1.145399777483903,26.40665570898657,10.27481801223362,2.9960655213834153 +5921,1.1447530459694129,23.703782781200555,9.75943159911281,2.6986926209656366 +5922,1.1433843454636992,28.43110459734412,10.306989215543071,2.824919310708225 +5923,1.1431406156702457,24.815936671369677,9.808811274205313,2.2731003890835364 +5924,1.1394688254605132,25.165715286192068,11.085128381990279,2.57419725194082 +5925,1.1383024342314556,26.44915227252543,10.881328665467336,2.6360496299845586 +5926,1.1362475716456288,25.761903171660432,10.84824076907665,1.53428494758377 +5927,1.1377016805479025,24.43513813703224,9.771140576092982,2.14924202792539 +5928,1.1376567961749504,24.39652734731424,10.961544615059298,3.250190408920269 +5929,1.1398365242000035,22.964425305236457,9.519897968323829,2.2461980584035777 +5930,1.1346907875178558,26.174880556800083,10.563954382117528,3.7597070322975665 +5931,1.1420559781766142,23.090784323220202,10.069438223227639,3.610642809259939 +5932,1.1422391727705248,21.679703263696656,10.553311567662005,1.980349491235066 +5933,1.138298705976485,26.95060596786374,10.72563643361695,3.0311374971087695 +5934,1.140783226806448,23.55001235150851,10.577923696723548,3.1318165241790688 +5935,1.1385574535066847,25.148540372701195,10.322358001732441,2.256072640595664 +5936,1.1407642265454376,23.590715400652524,10.171144099880317,2.4061406745552834 +5937,1.146897437675739,22.717874016620332,9.869430210347973,1.9546869465573726 +5938,1.1459548465369358,24.711799072347763,9.531747944653835,2.45344617025196 +5939,1.1457457370396242,26.361571836365453,9.856720664110522,3.1982781180170963 +5940,1.1478551377293138,25.70653011519549,9.976425029743794,3.131336639543136 +5941,1.142101404501222,26.468490188414428,10.747740887679283,2.515064702651319 +5942,1.1464938348758609,25.865515294125053,10.670908691888268,2.843922474568315 +5943,1.1484231497675015,26.412655972348766,9.128196819330107,3.665630120613506 +5944,1.1483096031800664,24.30546641053837,10.06268274985276,3.483381872258526 +5945,1.1497577021846441,26.121577322708294,9.76756884202074,3.2931493939798178 +5946,1.1545131663777712,30.33727541816476,9.956391924720004,2.437290072159121 +5947,1.1529970957764306,26.36473298064427,10.187217547161366,3.0529823682971093 +5948,1.1524814289710579,24.649440208991976,10.243219421048286,4.003979244926403 +5949,1.1529689372462508,26.2269044403183,10.62226703100041,3.130218229091735 +5950,1.1543210359243055,25.404355364372396,10.180761816244058,4.345265782711916 +5951,1.1498936615807165,26.66581584653144,11.04571606079904,3.7420924894888157 +5952,1.1527717383178466,25.832284311888692,10.49433360115179,3.3979785315914746 +5953,1.151722679957945,25.901019075212645,10.876785428244233,2.7556829261228324 +5954,1.155619878032813,26.100592565152507,9.580470969245741,3.771614865614268 +5955,1.1518799933751545,25.666864775395197,10.371159527140094,3.0717506038952034 +5956,1.1493215385459534,25.991682594539036,11.42831067270049,2.157553055651934 +5957,1.1440713007120364,26.016962906396483,10.41406258354507,3.3484043870295914 +5958,1.1454206195809216,23.765476048518355,10.790904677450747,3.5303412548606206 +5959,1.1432483441952264,24.782236757776747,10.722585110703228,2.246646101352021 +5960,1.151219722501749,24.37930737264977,10.111422795161738,2.736665875668169 +5961,1.1767051500680015,27.666167690332795,10.644873800927352,0.8987986679717803 +6004,1.1687202388017832,24.47289284600394,10.735075615519222,4.60104140901767 +6005,1.1518653748675647,25.974248696954955,10.97419450804769,3.4617852004534804 +6006,1.1555771835811917,24.802723291738655,10.062012607942284,3.4032016222606742 +6007,1.1611772878205182,24.06816743893745,9.769986875337548,4.1598109374702075 +6008,1.1597966807342432,25.118262985701996,9.53312979495169,3.741045936645048 +6009,1.159236762192916,27.82223318126012,10.790736675894752,2.722814160413808 +6010,1.1579640297175977,26.25142255419993,11.290277796183096,3.849582766713299 +6011,1.1621686635076638,26.037896195604525,10.26439480241558,4.538599984068686 +6012,1.1665892377811704,22.315201604239256,9.44173835464767,4.3099968024094295 +6013,1.1638555080560806,24.144184600277175,10.01793293895523,4.281314563191235 +6014,1.1691450661062284,29.45066342895943,9.783444600549544,3.8907584901494814 +6015,1.1580742018693135,25.327067046019867,10.190209848133405,4.280564333762116 +6016,1.1625090996039882,24.737068053804805,9.610159128847231,5.987800868615948 +6017,1.1603978120909295,23.833875664759848,9.941244724333767,3.7199732705117263 +6018,1.157756320952218,23.748358890720475,10.338354376123402,3.5625500864227204 +6019,1.1568113917100402,24.753056363365477,10.356957089515653,2.316620471090278 +6020,1.154611710399311,25.221335961208517,10.057954894702931,3.559860420586228 +6021,1.15756265101039,22.656979285334266,9.372681892783856,3.5864920072035646 +6022,1.152201159554622,27.70646906605155,10.019923391672108,3.678498062770613 +6023,1.1551720127311274,23.744217298951703,9.612246868064172,2.7729901175859117 +6024,1.148298933374042,23.836800734929515,10.825223345755008,3.290789217785871 +6025,1.1453664322295674,25.313291884083768,11.238171412120591,2.3639848878005214 +6026,1.144910275387906,24.639924824640367,10.920559195441069,2.4210515830706654 +6027,1.1492394075170507,23.358002937674872,9.61185398101804,3.048652223942664 +6028,1.1473249451837126,23.571437720018757,10.442998885129683,3.3188875743913675 +6029,1.1502527226188615,21.94555895143897,9.63592120832501,3.141484461912485 +6030,1.1435006290569862,25.18546169133235,10.318018840058421,3.0215559567749906 +6031,1.1491039031688666,22.58800190395149,10.143762066129106,2.4950969899666164 +6032,1.1530342134225262,20.80972920440846,10.534212927359004,2.0200413133850246 +6033,1.14706131782153,25.810326928043626,10.634812540827914,2.735466476771354 +6034,1.1496625727552816,22.586776825286712,10.641407930134205,3.026818823396778 +6035,1.1479445874932184,24.2109870674447,10.306998856760913,2.7312568793358425 +6036,1.1511416829944754,22.421572688109038,10.227495200829049,2.255904123102436 +6037,1.156773016678244,21.87397463867287,9.276535346329004,3.1624000238902115 +6038,1.1560164272834423,23.396796266820726,9.765906410910155,2.9338422631963104 +6039,1.1548312490416726,25.931101675045436,9.679681741771757,3.859670516459035 +6040,1.1553123706716015,25.104674346323687,10.131727375325356,3.6349928687129527 +6041,1.1513130240357097,25.432514891122032,10.79478695919498,2.5602705613127807 +6042,1.1563581415022748,25.175745322020283,10.191473717537203,3.802267417091589 +6043,1.1587182925028963,25.008924247691883,9.726224226152357,3.029721216359466 +6044,1.1620919523821787,22.891509394368047,10.01538042256074,3.1093668825464635 +6045,1.1599404364652608,24.820617103083688,10.208075144632502,3.3720076649837316 +6046,1.1639003046917742,29.655049172720158,9.825819350655035,3.4225540052732 +6047,1.162763348227459,25.266059471274698,10.031764741042908,2.997478325926972 +6048,1.1624873450734665,23.755331971811614,10.131786311288018,4.713657897925769 +6049,1.1619277746274108,25.035388995777435,10.139735895676436,3.053728584212124 +6050,1.1620806052996606,24.635161168133017,9.92377510140863,2.893790181762722 +6051,1.159352536986143,25.69012413099397,11.093026844579548,2.7794824850413304 +6052,1.1597679585202312,24.548311015310794,10.560656659389737,2.307918938491787 +6053,1.1562396527557357,24.966111271791082,11.11385252291124,3.3551391420706724 +6054,1.1614253085280477,25.02864677271634,9.530325202200618,3.4263730435013966 +6055,1.1578545562669897,24.6164835009282,10.21825324024181,3.6566958545664745 +6056,1.1560105121470963,25.219266257220877,11.434673151468266,2.8972897716289565 +6057,1.1513544316815543,24.809593848926998,10.212778021962437,3.4375270896839702 +6058,1.1507893258469755,22.967358570286383,10.319923081068863,2.7055245673603174 +6059,1.1582286200931338,22.867867985479304,10.471683615197078,2.0687286953299378 +6060,1.1813233074535874,23.426340073006294,10.185682584856451,0.8698156181829668 +6105,1.1770067384568235,25.270114908502833,10.84512626797245,4.002010551908125 +6106,1.1632533661013307,24.80557619751687,9.86524007311431,3.226202209933109 +6107,1.1657403342519588,24.327319965014823,10.204251234349234,4.021748461330596 +6108,1.166107218972771,25.354277385863732,10.468994158843595,4.909591366527956 +6109,1.1649255283533317,28.184556179446012,11.08201153957035,3.761578565506358 +6110,1.168948668801772,26.527546134745098,10.992504572560117,3.867046792529515 +6111,1.1678331447577361,26.629755293168223,10.579382170115144,3.3951445583764 +6112,1.1735592685489409,23.051599747543868,9.515292876720704,4.109035875145995 +6113,1.171035989190983,24.73996619398957,10.254408956696231,2.732816584014427 +6114,1.1746261573837966,30.126092946756366,9.832699908400214,3.249050723920307 +6115,1.1675716371915972,25.40836403016345,10.189650130589586,3.998984590379138 +6116,1.1698084678210967,25.261271751042813,9.87319559381535,3.6909008308294595 +6117,1.1702188459171219,24.069530668657055,9.476734896627915,2.884152125395831 +6118,1.1642911105216756,24.97124541778728,10.381931401901431,4.425766392681759 +6119,1.1627672480621993,25.13957881529044,10.561835432944518,2.3213713967275176 +6120,1.1617751872125675,25.880883939519123,10.587022933436259,3.352125142828748 +6121,1.162740438197612,23.443895785908733,9.789258565051133,3.490335785173536 +6122,1.1587116715188346,27.93978124664554,10.06554713287044,2.9277249604738795 +6123,1.1618222439476464,24.356352382382486,10.00443772647663,3.4543464096082905 +6124,1.1565597458140973,24.40728446671267,11.039912877734855,3.2943628716724915 +6125,1.1536576535773562,26.151908492951588,11.307838090686023,2.733318886567499 +6126,1.1501238545164096,25.622771073768114,10.960550148098491,4.822025874954633 +6127,1.1552050530896432,24.044054991953143,10.175657828866298,2.698064565070313 +6128,1.1536997305594654,23.93029803930836,10.987189182298325,3.492463158890306 +6129,1.158376041764829,22.12428961840598,9.9828319977257,2.5974379353011545 +6130,1.1505017054987525,25.810218542282986,10.46172588513012,4.744313947854672 +6131,1.1584919106685838,22.67684259122909,10.130783843518925,3.374507581043974 +6132,1.1604442044928098,21.568368527383004,10.332154599196603,2.0942432515315974 +6133,1.1528503943744204,26.40488804217135,10.209947007492751,2.923287531575917 +6134,1.1575376451866084,23.195564895983583,10.679203613787855,2.716380528779928 +6135,1.154272422808637,24.81692380514264,9.97549605026078,2.7600726508800055 +6136,1.159849696411984,23.116646068799586,10.285599390193761,3.7886825267785076 +6137,1.1631786372359842,22.530240112395134,9.987825859150046,3.465190202099573 +6138,1.1640380632369893,24.248831578175135,9.921426655736697,3.090665313330008 +6139,1.1633975063623896,25.913736512438184,10.084885224588938,3.202333159318471 +6140,1.1659062196833514,24.970096367508685,10.317016723611813,2.767356692670851 +6141,1.1590799281834794,25.90943520862623,11.10351881531439,3.5390148800584242 +6142,1.1655639282702024,25.408212696762504,10.388047562246271,3.8310141033586453 +6143,1.1664773152952237,25.523489078068447,9.633616809282216,3.2483200674325765 +6144,1.1688432394765207,23.65925774285593,10.037506937585638,3.6123587346278185 +6145,1.1672717634366727,25.731418614302164,9.98276229393023,3.88830078288848 +6146,1.1715774531666872,30.147252460942862,9.888422613130622,3.840034585018532 +6147,1.1714537100677032,26.144813913621643,10.570471163536437,3.2962188547486626 +6148,1.1692314302165647,24.424155325331466,10.257620735263016,5.25681185892509 +6149,1.1695904800521342,25.444450200417855,10.790413072152749,3.0337253077206374 +6150,1.1685035562639663,25.358683166497897,9.991681125605895,3.401378323286368 +6151,1.1642659898792858,26.113247671357367,11.228713729695007,3.2439863020609936 +6152,1.1618752190070742,25.562110123049898,10.56501509050755,2.5305121652577203 +6153,1.16211713654476,25.61831001565669,10.986681202188104,3.052832435353057 +6154,1.1670551190818519,25.669785825125977,9.62369533568254,3.492189165129942 +6155,1.1627618414924137,24.651242526413014,10.543557614598585,3.188831101134632 +6156,1.1601735097034995,25.75149293519535,11.405841674628958,3.0324650508166475 +6157,1.1537093575551236,25.303819238281267,10.162451541619188,1.8827322281748469 +6158,1.1637982854211721,22.348964312810146,10.215032445397847,3.3778977018050513 +6159,1.192195219735784,21.58791412841268,10.454273008978323,1.5990439878917215 +6206,1.1779470249406654,25.41265107011139,11.010273870644692,5.3672267840878884 +6207,1.1685516767078337,23.90055553890269,9.62737844186821,4.088931050789675 +6208,1.1699434278035044,24.476753878734016,9.969720324696722,4.737245541523724 +6209,1.165180478445843,28.09895329942945,10.580454460128488,4.859639600911209 +6210,1.1693865955618492,26.13212459742777,10.930180925499622,4.203606627614175 +6211,1.1719923112860393,25.83231039715153,10.032604683328378,3.879361589395881 +6212,1.1793713224820697,22.47836139633113,8.816101886318814,4.429870537926666 +6213,1.1741311969244184,24.048952125260865,10.124183827065886,3.5438385264443726 +6214,1.1797071201171623,29.94017381786822,9.258614438557242,4.205390374500164 +6215,1.1680891584778756,25.553228124138027,9.440930630684525,4.632951193258579 +6216,1.1720918234057516,25.16311597348816,9.430133995020956,5.296748306240303 +6217,1.174149142883058,23.772273371626323,9.573005095210856,4.48349838642975 +6218,1.1726820577328831,23.762155447236896,10.134111177126147,5.062901616904752 +6219,1.1684753209435925,24.51202524063843,10.106984004227582,3.191428081905933 +6220,1.1669335744975164,26.02951092377718,10.28353602893603,4.121793695399557 +6221,1.1657120197955326,23.34108358407773,9.680123377480845,3.2950577551868228 +6222,1.1637006302590245,27.938630370924937,10.184580220505826,3.6566290532286168 +6223,1.1646006428281563,24.490535415142517,9.768248803041848,4.204796233593344 +6224,1.160037995434575,23.76198911135336,10.367772748672152,3.2022173012601804 +6225,1.1568182475087834,25.696572485729156,10.935950142435072,2.6509039278907944 +6226,1.15592372494394,24.70190594239767,10.692006264338072,3.205084638919205 +6227,1.1599458674584227,23.85233131781249,9.559290397819199,3.199071718713228 +6228,1.1574965487194242,23.485214061106625,10.387708203012073,2.7738301797578626 +6229,1.1600698756114083,21.976355199919485,9.77937891716894,2.634509351061625 +6230,1.1539249431936516,26.02024798595594,10.513882765064162,5.194063665468669 +6231,1.1622964078610927,22.698580836120115,10.06563632323922,3.498584819984747 +6232,1.1614524217164997,21.171027697924284,10.537234879705235,2.1066056075122286 +6233,1.1594963128935007,25.809907520000987,10.8811669846801,3.2295894370126237 +6234,1.1621934093431776,23.079580880865507,10.506970735116731,3.612626130450058 +6235,1.1598170717038507,24.479833895902587,10.202802821705097,3.0203862717237207 +6236,1.1614409926814557,22.99264940220327,10.026568134925347,2.7915000144533995 +6237,1.1671821794289436,22.393504322117337,9.717654324903654,3.7022832671295682 +6238,1.1689437737079986,23.728807033278407,9.709842407886736,4.075001530062945 +6239,1.1718803579910229,25.315566992377487,9.515944955171042,4.032722296824402 +6240,1.1685450155666615,25.178340223359548,9.96248894190183,2.6997186714773194 +6241,1.1626130510014647,25.72781175005616,10.784137905268585,4.111637440799708 +6242,1.1694446602580721,25.30481748783455,10.074980657784081,4.283880450424074 +6243,1.1711380130482258,25.652835061265026,9.266666156625329,3.5894557222152486 +6244,1.173113649231462,23.42738052420087,9.940026517583131,4.7665667247540995 +6245,1.1754023816230974,25.10548735194514,9.379906052751423,4.0348532070933505 +6246,1.175766212379131,29.698871285478983,9.659862636292907,3.8496373612478374 +6247,1.1758458769079199,25.3837302976373,10.363385275047353,3.7347975353368983 +6248,1.1720500074656126,24.356851094658076,9.977883125576168,5.428804537808155 +6249,1.170099945296138,25.197552603469106,10.41016262012164,3.6071185232312963 +6250,1.1711950928695702,24.894788261610778,9.764001723552022,3.5331736248829055 +6251,1.1665304969284824,25.80801218000506,11.070076740021886,3.267346220160397 +6252,1.1674100238869742,24.824506252341696,10.241308786562424,3.4563499910216766 +6253,1.162434188465901,25.416089758828303,10.616191508997595,4.044844294684737 +6254,1.165557487342849,26.03741609002147,9.613121724848952,4.801847521668786 +6255,1.160929624627519,24.66724978559418,10.435100595809244,3.5932351677322623 +6256,1.1575353707917238,25.30857382342526,11.269646314440891,2.945747208825746 +6257,1.1574070282445323,25.81302481343758,10.162688512594189,4.326375925385437 +6258,1.1902402793157294,23.61702597683043,10.551195262450603,1.1579279248060823 +6307,1.2037048497581893,23.37783912389693,10.7201991390747,4.254056326625177 +6308,1.189767508245811,23.635866035170736,10.219394821835941,4.816689635179848 +6309,1.1866476963499124,26.784313510683443,11.48204278938264,3.977069280227034 +6310,1.1881578137942732,25.31252855393029,11.670105647061154,4.457178250019896 +6311,1.1924313804295756,25.196844688042603,11.424409370958884,4.893245821497954 +6312,1.1953900977224743,22.274552353329433,11.076731872662739,4.950673295355642 +6313,1.1938482526323173,23.831623972552478,11.011699872385819,4.444060143875036 +6314,1.1989575423200232,29.39729537864998,10.319040465239013,3.826008184106114 +6315,1.191019607857418,24.897991432760065,10.4392951447889,4.018649251137331 +6316,1.193642794267455,24.899803875385423,10.368746437318228,5.017350379325113 +6317,1.1937923126966088,23.58792729072336,10.618099637132289,4.4991382373548925 +6318,1.1899336929593725,23.283045797905604,11.288740702140124,4.298496571297752 +6319,1.1868293842425204,24.501056291750018,11.429625216809614,3.8185188372861862 +6320,1.1875093559342387,24.97703220134363,11.204415402787681,3.795668478583116 +6321,1.18574938547925,22.96298703763631,10.51344232805618,5.217701446179564 +6322,1.1833447238009747,27.271442889941458,10.925447477077716,3.8808589435990717 +6323,1.1866859460558294,23.336404966143224,10.214215444832265,3.3658141717983647 +6324,1.1802124473989666,23.62699149591625,11.039426332272807,3.2520429226910466 +6325,1.174671657127336,24.79505767898728,12.076689727162897,3.1414693973540118 +6326,1.176179818358707,24.25230834143908,11.56267037217756,2.4534058797885985 +6327,1.1793516485794673,23.28002844401562,10.990526884994402,3.357501665283092 +6328,1.1768609290235135,23.22417300627705,10.862191319634169,3.2429394522382915 +6329,1.1795973701507094,21.50960446184502,10.972401837635427,3.0673694100197335 +6330,1.1732075211422455,24.468611060048783,11.830534906527284,5.049656131842232 +6331,1.1802654749972605,21.57276417781935,10.867614440409405,3.695864967415229 +6332,1.1806919287429172,20.904732445600064,11.576761058062978,3.843671943474506 +6333,1.1781918312675927,24.864646947085312,11.762452662551082,3.2010937644668087 +6334,1.181458384777961,22.116719271176038,11.561835076814889,4.014030599338489 +6335,1.1804218157697213,23.732691033263787,11.237655959948,3.8947138445524163 +6336,1.1824197643508247,22.178267262305084,10.9722521753327,2.9476555158893354 +6337,1.1879433515580333,21.8248040602073,10.990276526698837,3.4472180018113527 +6338,1.1908519238963513,23.062307408264935,10.522468879280712,3.0646320418964357 +6339,1.1906680531369458,25.032967250054718,11.22450584238834,3.82962370584295 +6340,1.1924642236716747,24.501581034168318,11.462303035547908,4.36919060970751 +6341,1.1857763662624026,24.488777587717617,11.383997666265854,3.6067054976865416 +6342,1.1910664187398816,24.38778803522249,11.36209986526053,4.955604466801434 +6343,1.1894788505120253,25.073036659736065,10.667100188166275,5.232652050280131 +6344,1.1962425159471657,22.91708700419369,10.616898122679459,5.018350662697318 +6345,1.1934006466309488,24.890385004953327,10.623769024071558,5.024783582277839 +6346,1.198030053771389,28.947649742975365,10.678685723408877,4.218330314542945 +6347,1.1956667589852112,25.620883967055054,10.915617312218076,4.0312430205172785 +6348,1.1920052988100196,24.058276967543797,10.8419725689368,5.054221357433578 +6349,1.1931260691707521,24.604148884949087,11.416019817568126,2.955550184147812 +6350,1.1912200890061215,24.510901141454777,11.065134076569402,3.8741759673216207 +6351,1.1851418799281748,24.87459636527615,11.880323592701872,3.1458243968427726 +6352,1.1863011185257308,24.436958408608948,11.311587963206126,3.7677447335173673 +6353,1.1807124765040047,24.541049984451853,11.50464312109226,3.203364993665339 +6354,1.1862502392294638,24.634317715048653,10.674202827344246,3.72125253363701 +6355,1.1810089811517868,23.606889859862175,11.236123086705408,3.41515281732403 +6356,1.1832026055472569,23.800605796179465,11.722991251753673,3.7392081575033496 +6357,1.2450044620738707,22.76050091854491,10.143164900861782,0.4822212707831689 diff --git a/resource/unittestdata/542-1/hp52542-1.full.ecal b/resource/unittestdata/542-1/hp52542-1.full.ecal new file mode 100644 index 00000000..d1333c7c --- /dev/null +++ b/resource/unittestdata/542-1/hp52542-1.full.ecal @@ -0,0 +1,2322 @@ +# Energy calibration file created with Melinator + +# Used files and isotopes: +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa_withtaccal/gse_20251017T124249.hdf5.roa" with isotopes: Isotope Am-241 with the following lines: 59.541 keV (0.359) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa_withtaccal/gse_20251017T145543.hdf5.roa" with isotopes: Isotope Ba-133 with the following lines: 80.997 keV (34.06), 276.398 keV (7.164), 302.853 keV (18.33), 356.017 keV (62.05), 383.851 keV (8.94) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa_withtaccal/gse_20251016T184447.hdf5.roa" with isotopes: Isotope Co-57 with the following lines: 122.061 keV (0.856), 136.474 keV (0.1068) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa/gse_20251017T182813.hdf5.roa" with isotopes: Isotope Co-60 with the following lines: 1173.24 keV (0.9997), 1332.5 keV (0.9999) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa/gse_20251018T143357.hdf5.roa" with isotopes: Isotope Co-60 with the following lines: 1173.24 keV (0.9997), 1332.5 keV (0.9999) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa/gse_20251019T112533.hdf5.roa" with isotopes: Isotope Co-60 with the following lines: 1173.24 keV (0.9997), 1332.5 keV (0.9999) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa/gse_20251020T073827.hdf5.roa" with isotopes: Isotope Na-22 with the following lines: 510.99 keV (1.8069), 1274.58 keV (0.9994) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa_withtaccal/gse_20251017T102525.hdf5.roa" with isotopes: Isotope Am-241 with the following lines: 59.541 keV (0.359) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa_withtaccal/gse_20251017T145543.hdf5.roa" with isotopes: Isotope Ba-133 with the following lines: 80.997 keV (34.06), 276.398 keV (7.164), 302.853 keV (18.33), 356.017 keV (62.05), 383.851 keV (8.94) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa_withtaccal/gse_20251016T182342.hdf5.roa" with isotopes: Isotope Co-57 with the following lines: 122.061 keV (0.856), 136.474 keV (0.1068) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa/gse_20251017T182813.hdf5.roa" with isotopes: Isotope Co-60 with the following lines: 1173.24 keV (0.9997), 1332.5 keV (0.9999) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa/gse_20251018T143357.hdf5.roa" with isotopes: Isotope Co-60 with the following lines: 1173.24 keV (0.9997), 1332.5 keV (0.9999) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa/gse_20251019T112533.hdf5.roa" with isotopes: Isotope Co-60 with the following lines: 1173.24 keV (0.9997), 1332.5 keV (0.9999) +# File: "/volumes/mobius/users/robin/UnitLevelGeDTesting/LBL_HP52542-1/roa/gse_20251020T073827.hdf5.roa" with isotopes: Isotope Na-22 with the following lines: 510.99 keV (1.8069), 1274.58 keV (0.9994) + +# Keyword description +# CL - calibration points: the fit parameters plus uncertainty for each calibration point +# CP - calibration points: the data points going into the calibration +# pawk = ADCs, Energy in keV, FWHM of energy in keV for each point +# CM - calibration model energy: the energy calibration model +# CR - calibration model fwhm: the FWHM calibration model + + +TYPE ECAL + + +# ROU: dss 0 0 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.20317 0.760659 0.00132901 0.000403269 1354.08 157.846 83.6518 38.73 1923.74 0.0513104 7.41405 0.022985 16045.6 0.022985 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 1 param+error -728.681 1514.23 0.562419 0.72582 533.68 33.6938 67.7372 15.1654 2054.08 0.104172 7.71331 0.0832947 2548.9 0.0832947 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 2 param+error 426.404 448.754 -0.178907 0.191984 52.5922 37.8703 120.878 567.545 2306.67 0.256622 7.47729 0.140797 760.481 0.140797 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 3 param+error -88.5732 276.457 0.0367531 0.114114 5.93336 5.12117 90.8263 387.221 2395.14 0.475171 7.45958 0.343348 79.0988 0.343348 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 4 param+error 228.721 185.948 -0.0621238 0.0563522 16.9675 21.85 11.1759 21.1135 3255.08 1.64769 7.6917 0.774122 64.3678 0.774122 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 5 param+error 6.83517 0.660668 0.00204068 0.000190913 12.7471 3.40883 40.6978 14.1459 3418.38 0.288282 7.5477 0.235997 125.878 0.235997 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 6 param+error -89.9306 3.96657 0.0239668 0.00105049 17.4201 4.02533 33.8275 8.212 3746.93 0.189167 7.93302 0.130079 228.313 0.130079 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 7 param+error 24.7065 29.2842 -0.00615402 0.0074191 9.9 6.5028 7.60268 1.74338 3920.45 0.730103 5.6763 0.504232 18.4216 0.504232 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 8 param+error -667.136 495.071 0.142173 0.104246 12.7088 2.78405 650.367 2643.95 4708.69 0.507415 11.2999 0.428654 83.5495 0.428654 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 9 param+error 1274.84 1008.96 -0.141722 0.113529 45.21 23.1935 21.2285 17.5429 8847.33 1.97191 10.9156 0.982517 74.7878 0.982517 +CL dss 0 0 l M:PF-B:L-L:GCDFED-P:G 10 param+error -133.422 282.001 0.0136224 0.0285092 17.7513 3.54298 67.4558 29.2106 9840.37 0.941353 12.1333 0.656539 50.301 0.656539 +CP dss 0 0 l pakw 11 1923.74 59.541 2.85734 2054.08 80.997 2.96946 2306.67 122.061 2.87276 2395.14 136.474 2.86399 3255.08 276.398 2.93514 3418.38 302.853 2.87721 3746.93 356.017 3.01815 3920.45 383.851 2.15747 4708.69 510.99 4.27839 8847.33 1173.24 4.11333 9840.37 1332.5 4.58482 +CM dss 0 0 l poly3 -258.113 0.16676 -9.23122e-07 4.08779e-11 error 2.95492 0.00248613 5.99441e-07 3.93255e-11 +CR dss 0 0 l poly2 3.13466 -0.00244417 2.70041e-06 error 0.223778 0.00111048 8.06301e-07 + +# ROU: dss 0 1 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 0 param+error 539.302 5.32716 -0.269272 0.00269147 1249.9 36.3173 183.1 33.3365 1942.92 0.0243707 7.59249 0.0152839 16904.7 0.0152839 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 1 param+error -2118.58 2216.07 1.23649 1.05306 478.14 26.1837 141.869 59.925 2073.61 0.0873117 8.0379 0.0785217 2969.23 0.0785217 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.3453 0.596964 0.00203891 0.00026505 61.9127 9.01025 88.8248 39.4892 2327.7 0.115389 7.70614 0.0800815 823.419 0.0800815 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 3 param+error 0.363667 0.211415 0.000121332 8.65124e-05 3.76869 0.351304 17784.9 2564.17 2416.24 0.222855 7.61559 0.180877 91.2918 0.180877 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 4 param+error -40.7255 210.526 0.0215211 0.0635639 4.36216 2.44983 32623.9 23513.6 3279.25 0.42742 7.91905 0.287702 83.321 0.287702 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 5 param+error -1307.11 294.929 0.38165 0.0850355 16.8442 2.87237 34233.1 18887 3443.78 0.267818 8.35889 0.196119 156.058 0.196119 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 6 param+error -1.21009 8.64881 -0.000270697 0.00227997 51.0546 13.6778 18.7068 4.10763 3774.32 0.236216 7.9856 0.182723 291.407 0.182723 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 7 param+error -18.6928 52.6237 0.00478771 0.0132484 0.537616 0.507969 39284.6 20538 3946.3 0.420617 8.19853 0.297524 32.2375 0.297524 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 8 param+error 431.081 240.18 -0.0882508 0.0502369 17.5651 14.5676 22.3153 21.005 4740.45 0.809648 10.7962 0.50389 85.7485 0.50389 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 9 param+error 7.81192 0.529249 0.000906783 6.03176e-05 25.7759 4.34043 80.8177 22.8745 8969.26 0.539253 11.883 0.356316 113.037 0.356316 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 10 param+error 5.50225 4.2666 -0.000560077 0.0004545 0.359788 0.213084 131.307 145.478 9624.12 2.46296 11.168 2.33071 2.94105 2.33071 +CL dss 0 1 l M:PF-B:L-L:GCDFED-P:G 11 param+error 395.554 70.6151 -0.0392979 0.00704977 27.4688 1.635 37.7617 2.88191 10001.3 0.566723 12.0175 0.410903 61.4149 0.410903 +CP dss 0 1 l pakw 12 1942.92 59.541 2.91634 2073.61 80.997 3.08415 2327.7 122.061 2.95075 2416.24 136.474 2.91398 3279.25 276.398 3.00897 3443.78 302.853 3.17187 3774.32 356.017 3.02213 3946.3 383.851 3.09841 4740.45 510.99 4.05407 8969.26 1173.24 4.31399 9624.12 1274.58 4.03348 10001.3 1332.5 4.32739 +CM dss 0 1 l poly3 -259.895 0.165722 -6.77892e-07 2.51431e-12 error 2.97466 0.00247028 5.8772e-07 3.7933e-11 +CR dss 0 1 l poly2 2.92762 0.000269279 5.85762e-07 error 0.234546 0.00122986 8.6817e-07 + +# ROU: dss 0 2 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 0 param+error -19.4883 8.88613 0.0141524 0.0044873 1300.25 30.9693 200.873 30.9698 1946.16 0.0225487 7.64309 0.0146354 17595 0.0146354 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 1 param+error 243.421 4.97084 0.116371 0.0025661 719.938 80.0317 42.7807 8.43147 2077.15 0.14341 7.87251 0.0849489 3043.25 0.0849489 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 2 param+error 1228.23 493.05 -0.517085 0.208598 76.8621 64.8853 31.7413 44.0008 2331.96 0.317045 7.89104 0.154828 827.82 0.154828 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 3 param+error -117.869 383.369 0.04813 0.156656 6.17101 3.92397 8830.45 14767.4 2421.23 0.409686 7.91223 0.218744 89.1573 0.218744 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 4 param+error 261.847 700.636 -0.0702386 0.211168 23.4817 33.0278 12.5265 20.3364 3292.95 1.37535 8.4847 0.737249 71.5756 0.737249 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 5 param+error -300.921 681.83 0.0915066 0.195473 67.32 62.5285 10.6115 3.15049 3459.76 0.417819 7.66126 0.257635 131.794 0.257635 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 6 param+error 17.0101 1.009 -0.00425395 0.000281727 28.3661 13.2972 16.4814 4.74914 3793.14 0.253147 8.21708 0.14179 272.835 0.14179 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 7 param+error 22.7154 26.3703 -0.00557909 0.00660228 6.68285 7.86014 5.32722 9.16588 3968.27 1.48326 7.74534 0.56974 25.743 0.56974 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 8 param+error 394.831 559.269 -0.079896 0.116167 28.6624 37.2956 19.3014 28.0812 4775.57 1.53672 10.2153 0.838364 91.9186 0.838364 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 9 param+error 9.06525 0.596992 0.00104656 6.76735e-05 29.2215 7.26242 63.3261 23.2826 9081.29 0.605997 12.4764 0.385102 128.231 0.385102 +CL dss 0 2 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.614357 3.16936 6.35484e-05 0.00031168 20.3274 2.50116 73.8854 11.5465 10125 0.596358 12.4811 0.386611 77.6061 0.386611 +CP dss 0 2 l pakw 11 1946.16 59.541 2.927 2077.15 80.997 3.00881 2331.96 122.061 3.00436 2421.23 136.474 3.00846 3292.95 276.398 3.18703 3459.76 302.853 2.87143 3793.14 356.017 3.06671 3968.27 383.851 2.88442 4775.57 510.99 3.76922 9081.29 1173.24 4.46921 10125 1332.5 4.46215 +CM dss 0 2 l poly3 -262.034 0.168063 -1.53778e-06 4.84448e-11 error 2.95942 0.00244543 5.76934e-07 3.68475e-11 +CR dss 0 2 l poly2 3.00729 -0.00041728 1.23309e-06 error 0.234146 0.00121236 8.74098e-07 + +# ROU: dss 0 3 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 0 param+error 71.8955 77.2761 -0.0270713 0.0403266 1279.32 31.8477 341.659 103.015 1894.65 0.0216331 7.5936 0.0189917 18590.9 0.0189917 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 1 param+error -3017.73 2261.96 1.72291 1.09997 515.804 27.0389 214.982 119.069 2025.36 0.0784213 8.09712 0.0705056 3499.46 0.0705056 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.27712 0.583843 0.00185548 0.000268578 61.6526 8.48246 174.643 139.816 2279.28 0.104575 7.59894 0.0687808 934.248 0.0687808 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 3 param+error -12.1144 141.405 0.00521616 0.0589308 12.8594 6.5065 25.6803 20.1684 2368.4 0.415522 7.52962 0.309001 89.68 0.309001 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 4 param+error 718.067 430.816 -0.20984 0.132261 29.2041 30.1064 6.05109 11.6032 3235.51 1.77915 7.84495 0.746142 72.675 0.746142 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 5 param+error 8.94811 7.79042 0.00275345 0.00227043 35.6506 14.141 17.5086 4.923 3400.66 0.441453 7.87212 0.265217 149.5 0.265217 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.556395 5.91379 0.000142172 0.00157269 30.7227 14.5255 26.9069 14.5789 3732.66 0.254406 8.12507 0.153299 299.12 0.153299 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 7 param+error -60.6608 250.396 0.0154983 0.0636379 1.31515 1.00674 140.651 1499.38 3906.79 0.550801 8.40072 0.429012 28.5251 0.429012 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 8 param+error -979.243 694.462 0.208433 0.146231 20.4575 3.9022 147.599 210.829 4710.67 0.48563 10.6778 0.439168 108.682 0.439168 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 9 param+error -962.649 8.77403 0.108968 0.000973386 68.97 11.6124 37.9848 1.60272 8977.16 0.382006 10.9118 0.32234 112.6 0.32234 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 10 param+error 24.1307 10.9157 -0.00247033 0.0011417 3.04436 3.16611 18.6488 7.61911 9635.04 5.2095 7.38693 2.31172 2.05786 2.31172 +CL dss 0 3 l M:PF-B:L-L:GCDFED-P:G 11 param+error -2097.95 3.08763 0.208878 0.000307199 24.2925 1.89107 347.852 167.733 10004.8 0.479557 12.9369 0.291695 94.1787 0.291695 +CP dss 0 3 l pakw 12 1894.65 59.541 2.92092 2025.36 80.997 3.10844 2279.28 122.061 2.90624 2368.4 136.474 2.87601 3235.51 276.398 2.9613 3400.66 302.853 2.96537 3732.66 356.017 3.04832 3906.79 383.851 3.14534 4710.67 510.99 3.96364 8977.16 1173.24 3.95678 9635.04 1274.58 2.67817 10004.8 1332.5 4.69181 +CM dss 0 3 l poly3 -254.807 0.168671 -1.56164e-06 5.52406e-11 error 2.87071 0.00241816 5.8141e-07 3.77656e-11 +CR dss 0 3 l poly2 2.91524 0.000328342 2.83056e-08 error 0.234179 0.0012259 8.59285e-07 + +# ROU: dss 0 4 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 0 param+error -600.679 435.576 0.311921 0.222859 1351.78 36.8751 272.867 70.6527 1919.09 0.0228384 7.65851 0.0153837 18999.4 0.0153837 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 1 param+error 271.055 3.91315 0.132666 0.00199024 603.18 30.6593 79.1174 10.5311 2050.42 0.0784328 7.95952 0.0560049 3594.33 0.0560049 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.10639 0.619183 0.00200923 0.000268452 97.2527 12.4588 45.2376 8.99656 2305.3 0.116512 7.75606 0.0743407 940.846 0.0743407 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 3 param+error 83.2653 54.7174 -0.034195 0.0226187 36.96 23.0323 10.8866 1.33844 2395.25 0.345663 7.32154 0.219569 79.1306 0.219569 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 4 param+error 827.508 180.839 -0.241017 0.0553783 5.54485e-06 31.847 15026.3 23361 3260.71 0.31435 7.78395 0.330116 96.8269 0.330116 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 5 param+error -467.862 520.717 0.140976 0.15066 10.3527 4.6793 34122.5 33442.2 3425.83 0.293432 8.40315 0.170784 179.609 0.170784 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 6 param+error -348.823 259.931 0.0922784 0.068523 36.0577 14.8573 22.0759 10.1797 3758.94 0.261602 8.29637 0.17042 295.833 0.17042 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 7 param+error 6.7465 36.2165 -0.00158359 0.00921789 12.87 12.0989 5.72337 1.70218 3933.89 0.56287 7.14627 0.413203 27.3934 0.413203 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 8 param+error 336.97 564.137 -0.0682314 0.117992 14.5624 10.9254 40.3622 64.7944 4739.37 0.665112 10.9157 0.536184 107.995 0.536184 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 9 param+error 1824.39 453.466 -0.197407 0.0496167 80.1891 74.0378 20.3365 2.58612 9103.26 0.513979 11.5663 0.340319 109.833 0.340319 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 10 param+error 3.17984 21.3752 -0.000308109 0.00216727 0.635715 0.283005 89.437 92.693 9776.45 1.5199 10.3084 1.26331 4.46527 1.26331 +CL dss 0 4 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.942238 0.225929 9.884e-05 2.24435e-05 21.4832 2.02407 75.3557 8.1178 10161.2 0.490774 12.5935 0.337831 89.7272 0.337831 +CP dss 0 4 l pakw 12 1919.09 59.541 2.9492 2050.42 80.997 3.05833 2305.3 122.061 2.9675 2395.25 136.474 2.79708 3260.71 276.398 2.93261 3425.83 302.853 3.15775 3758.94 356.017 3.10172 3933.89 383.851 2.66468 4739.37 510.99 4.02262 9103.26 1173.24 4.04871 9776.45 1274.58 3.58699 10161.2 1332.5 4.36838 +CM dss 0 4 l poly3 -259.741 0.169204 -1.57098e-06 3.23711e-11 error 2.79216 0.00232209 5.5138e-07 3.53179e-11 +CR dss 0 4 l poly2 3.00571 -0.000611803 1.07261e-06 error 0.231632 0.00119026 8.38027e-07 + +# ROU: dss 0 5 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 0 param+error 631.868 7.5122 -0.312371 0.00376409 1345.81 38.5365 164.006 25.9585 1959.12 0.0242602 7.91077 0.0151975 18057.7 0.0151975 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 1 param+error 283.645 4.20374 0.13378 0.00198611 579.22 30.6139 100.28 17.1159 2091.17 0.0805333 8.39942 0.0586609 3649.97 0.0586609 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 2 param+error -2188.78 1572.34 0.924686 0.661579 83.522 20.0915 284.448 949.054 2348.7 0.164828 8.28739 0.130019 952.332 0.130019 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 3 param+error 178.925 0.675777 -0.0720469 0.000272147 8.22974 6.396 37.5523 45.1184 2438.86 0.42899 7.70087 0.255055 96.8174 0.255055 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 4 param+error -13.4445 781.402 0.0127704 0.233769 22.7387 8.10858 32.1233 33.205 3317.62 0.594504 8.10529 0.459963 85.8733 0.459963 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 5 param+error -1011.72 828.723 0.293487 0.236095 75.8999 39.7359 15.956 4.42858 3486.34 0.40295 7.81792 0.241396 137.145 0.241396 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 6 param+error -179.632 330.373 0.0468374 0.0856255 75.7215 38.4279 14.0094 6.15442 3823.71 0.499595 8.25877 0.261588 263.996 0.261588 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 7 param+error -125.84 135.333 0.0312574 0.0335659 1.47007 1.05676 39956.2 20004.5 4000.42 0.526306 8.2718 0.288995 31.3229 0.288995 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 8 param+error -865.023 423.114 0.180395 0.0870053 23.5209 9.22764 102.747 142.678 4818.61 0.753081 11.3067 0.509443 110.503 0.509443 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.0782 0.681299 0.00123476 7.4555e-05 49.1029 8.03952 50.4261 9.34658 9131.98 0.628239 11.7047 0.372758 139.588 0.372758 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.604561 3.29177 -4.72431e-05 0.000327245 0.638418 0.342625 84.7631 73.6424 9789.97 1.84157 10.1924 1.39891 3.7984 1.39891 +CL dss 0 5 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.505844 4.4473 5.38418e-05 0.000435736 36.8034 5.66084 50.8724 9.07242 10169.3 0.754547 11.6799 0.426069 83.8644 0.426069 +CP dss 0 5 l pakw 12 1959.12 59.541 3.00352 2091.17 80.997 3.18204 2348.7 122.061 3.12653 2438.86 136.474 2.90113 3317.62 276.398 3.01477 3486.34 302.853 2.90143 3823.71 356.017 3.05215 4000.42 383.851 3.0506 4818.61 510.99 4.13432 9131.98 1173.24 4.22099 9789.97 1274.58 3.68519 10169.3 1332.5 4.23171 +CM dss 0 5 l poly3 -262.072 0.167402 -1.79114e-06 7.37641e-11 error 2.91439 0.00238947 5.60854e-07 3.56458e-11 +CR dss 0 5 l poly2 3.06701 -0.00044889 9.36449e-07 error 0.240135 0.00123454 8.65598e-07 + +# ROU: dss 0 6 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 0 param+error 101.153 74.2166 -0.0614137 0.0384062 1413.81 37.3382 460.973 200.468 1909.21 0.0218277 7.80157 0.0180181 20130.2 0.0180181 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 1 param+error 287.667 4.00491 0.140873 0.00204528 631.622 33.5515 86.7456 13.347 2041.38 0.0783741 8.10066 0.0554338 3864.18 0.0554338 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.86235 0.666888 0.0021539 0.000289727 73.3037 8.63365 98.4239 37.6507 2297.74 0.0984821 7.84002 0.067184 1006.12 0.067184 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 3 param+error 266.152 173.546 -0.109935 0.0718854 41.9053 34.8077 7.90648 2.42266 2387.88 0.468146 7.47611 0.241526 87.5599 0.241526 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 4 param+error 313.275 148.698 -0.0835517 0.0456357 49.4999 46.8144 9.68153 1.76367 3260.82 0.537832 7.66105 0.453318 71.6369 0.453318 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 5 param+error -806.662 579.161 0.239137 0.167574 15.8484 5.26601 25158 19410.1 3424.48 0.305821 8.82733 0.172978 191.019 0.172978 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 6 param+error -438.397 357.061 0.115929 0.0941215 67.1906 29.4529 17.2983 7.1737 3759.1 0.362105 8.43697 0.214621 312.147 0.214621 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 7 param+error 8.60696 0.220383 -0.00206892 5.28715e-05 8.57718 6.35212 12.3148 5.04821 3934.74 0.813926 8.33865 0.445039 32.0766 0.445039 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 8 param+error -481.023 561.307 0.103851 0.117693 59.4 38.7028 21.9616 4.93496 4739.85 0.522133 9.6368 0.342362 92.4405 0.342362 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 9 param+error 10.2779 0.657484 0.0012194 7.36806e-05 44.0695 5.79368 66.839 12.1087 8947.01 0.521388 11.9824 0.351081 148.319 0.351081 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 10 param+error 1.30143 5.00794 -0.000118098 0.000510298 0.653987 0.388277 79.6678 70.5901 9583.92 1.79512 11.1664 2.25278 4.54006 2.25278 +CL dss 0 6 l M:PF-B:L-L:GCDFED-P:G 11 param+error 579.829 79.5778 -0.0578247 0.00796138 44.8708 44.5584 36.063 2.47118 9956.08 0.444602 10.7337 0.255604 86.901 0.255604 +CP dss 0 6 l pakw 12 1909.21 59.541 2.96635 2041.38 80.997 3.07611 2297.74 122.061 2.96996 2387.88 136.474 2.82979 3260.82 276.398 2.87895 3424.48 302.853 3.31325 3759.1 356.017 3.15943 3934.74 383.851 3.11908 4739.85 510.99 3.5886 8947.01 1173.24 4.44495 9583.92 1274.58 4.15172 9956.08 1332.5 3.99757 +CM dss 0 6 l poly3 -251.968 0.165039 -1.07565e-06 4.88819e-11 error 2.87761 0.00239871 5.70666e-07 3.68379e-11 +CR dss 0 6 l poly2 2.86723 0.000718865 2.32661e-07 error 0.235597 0.00124243 8.73381e-07 + +# ROU: dss 0 7 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 0 param+error -2292.88 832.218 1.18702 0.429064 1458.04 30.4282 216.449 33.8941 1906.82 0.0210273 7.78603 0.0154462 19702 0.0154462 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 1 param+error 302.377 4.19134 0.144399 0.00215548 685.02 44.6288 67.3184 10.3787 2037.98 0.0870855 8.13307 0.0581668 3913.07 0.0581668 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 2 param+error 1.95578 2.36261 -0.000134725 0.00124067 81.7837 12.113 79.5284 34.2093 2294.34 0.11708 8.05955 0.0981283 1005.49 0.0981283 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 3 param+error 35.3346 129.411 -0.0141691 0.0535543 11.6696 6.05992 29.7573 24.8372 2383.65 0.377243 7.593 0.287025 103.981 0.287025 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 4 param+error 18.4969 1.24246 0.00574863 0.000475703 9.84397 4.76537 63.0233 64.3553 3251.68 0.483505 8.88 0.393573 100.967 0.393573 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 5 param+error 10.6307 0.789316 0.00322029 0.000238606 25.0169 10.7607 31.9801 15.9947 3416.61 0.360569 8.20953 0.237276 196.655 0.237276 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 6 param+error 1.04461 7.63995 0.000302545 0.0020231 68.3501 26.0197 16.9995 4.89288 3748.74 0.272049 8.31283 0.145749 371.823 0.145749 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 7 param+error -122.922 131.429 0.0312542 0.0332817 1.34445 1.04946 38354.6 27902.4 3922.34 0.387876 7.96678 0.250651 45.8977 0.250651 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.73473 0.983773 0.00134894 0.000249696 15.792 7.44176 69.5478 65.7401 4721.91 0.513497 10.6024 0.400741 130.683 0.400741 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 9 param+error 10.856 7.96017 0.00123548 0.000884535 61.9638 10.3559 40.0139 6.80806 8956.19 0.618513 11.2244 0.353585 147.351 0.353585 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.0639513 0.994405 5.79761e-06 0.000103005 0.542833 0.287308 152.924 171.763 9609.44 2.24496 13.3126 1.66141 3.603 1.66141 +CL dss 0 7 l M:PF-B:L-L:GCDFED-P:G 11 param+error -1550.87 3.58495 0.154875 0.000357534 41.7607 5.85767 63.4027 13.0272 9981.94 0.728212 12.5667 0.369603 91.882 0.369603 +CP dss 0 7 l pakw 12 1906.82 59.541 2.97237 2037.98 80.997 3.10147 2294.34 122.061 3.06695 2383.65 136.474 2.8873 3251.68 276.398 3.35351 3416.61 302.853 3.09638 3748.74 356.017 3.12747 3922.34 383.851 2.99341 4721.91 510.99 3.96079 8956.19 1173.24 4.08917 9609.44 1274.58 4.83522 9981.94 1332.5 4.55687 +CM dss 0 7 l poly3 -252.146 0.16486 -7.60372e-07 1.44127e-11 error 2.91949 0.00244427 5.84225e-07 3.78961e-11 +CR dss 0 7 l poly2 3.03312 -0.000145214 1.0204e-06 error 0.237269 0.00124131 8.82962e-07 + +# ROU: dss 0 8 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 0 param+error 41.3993 79.8226 -0.020193 0.0399858 1408.39 35.4088 216.877 42.1264 1974.39 0.0214746 7.74085 0.0187233 19891.6 0.0187233 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 1 param+error 292.14 4.36272 0.140219 0.00216989 642.637 33.5102 85.1746 12.5178 2106.09 0.0784139 8.13748 0.0548018 3921.76 0.0548018 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 2 param+error 1142.88 632.55 -0.473551 0.264132 59.0065 32.547 329.187 16210.7 2363.57 0.177227 7.81393 0.111374 1042.56 0.111374 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 3 param+error 0.43251 4.53061 0.000173434 0.00182731 12.3709 6.43243 32.6853 23.2272 2453.62 0.390814 7.54747 0.243894 104.704 0.243894 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 4 param+error -38.4436 653.09 0.0237387 0.194264 36.3419 46.0452 15.4845 20.9478 3327.5 1.58296 7.92499 0.903846 83.3053 0.903846 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 5 param+error -1969.95 1580.01 0.567039 0.449087 25.1054 11.3556 34751.1 18006.1 3492.01 0.409865 8.28596 0.193473 203.29 0.193473 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.737537 4.862 0.000276495 0.00125974 75.7355 17.6398 16.9701 2.3885 3827.03 0.22896 8.34516 0.124729 392.262 0.124729 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 7 param+error 43.0312 47.174 -0.0107398 0.0117541 15.84 14.3088 11.3696 1.92491 4003.96 0.509872 8.63497 0.364717 35.7375 0.364717 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 8 param+error 814.783 203.099 -0.165248 0.0418673 49.7174 42.2934 10.7887 8.09609 4814.19 1.33637 10.7867 0.521915 108.843 0.521915 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 9 param+error 708.065 897.195 -0.074658 0.0976158 77.22 10.7232 28.6378 4.45747 9148.51 0.392518 10.7849 0.294874 139.547 0.294874 +CL dss 0 8 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.886045 0.251849 9.51036e-05 2.4809e-05 22.0257 2.28901 86.89 12.4192 10194 0.456932 13.1557 0.319202 103.538 0.319202 +CP dss 0 8 l pakw 11 1974.39 59.541 2.95269 2106.09 80.997 3.09792 2363.57 122.061 2.96358 2453.62 136.474 2.85881 3327.5 276.398 2.96597 3492.01 302.853 3.09441 3827.03 356.017 3.10327 4003.96 383.851 3.20403 4814.19 510.99 3.96476 9148.51 1173.24 3.83104 10194 1332.5 4.6551 +CM dss 0 8 l poly3 -265.355 0.167232 -1.44841e-06 4.02984e-11 error 2.88402 0.00235258 5.5089e-07 3.51352e-11 +CR dss 0 8 l poly2 2.9754 -2.77984e-05 8.22414e-07 error 0.236167 0.00124891 9.05691e-07 + +# ROU: dss 0 9 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 0 param+error 818.056 421.444 -0.408755 0.212972 1456.02 39.8891 189.866 35.0879 1942.7 0.0219258 7.60464 0.0147463 20661 0.0147463 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 1 param+error 294.987 3.97823 0.144078 0.00226802 707.016 32.559 68.8662 7.29151 2074.78 0.0738619 7.8656 0.0520567 3983.94 0.0520567 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 2 param+error 134.978 551.763 -0.0528772 0.23361 121.501 69.9782 34.1191 35.5606 2331.22 0.273856 7.48245 0.135795 1034.1 0.135795 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 3 param+error 0.792455 4.709 0.000324028 0.00192439 12.6168 7.77937 28.8853 22.2204 2420.9 0.424108 7.50175 0.264253 105.758 0.264253 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 4 param+error -2131.44 11.8792 0.654498 0.00358048 30.425 7.74467 140.488 206.202 3292.91 0.566828 7.8515 0.402094 105.478 0.402094 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 5 param+error -1070.21 768.433 0.312955 0.220303 30.4223 7.08923 70.6773 72.7066 3456.33 0.308928 8.31465 0.278092 206.149 0.278092 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.371392 5.9671 9.60236e-05 0.00156332 59.4001 25.3862 18.8214 6.73948 3788 0.25571 8.27062 0.132574 407.736 0.132574 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 7 param+error 19.1924 36.403 -0.0047434 0.00916456 19.7999 18.6489 8.4684 1.37999 3962.69 0.451106 7.91678 0.311645 41.5686 0.311645 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.40198 7.65546 0.00137777 0.00159644 27.4054 12.0171 31.1398 14.05 4762.12 0.618123 10.6142 0.384612 120.945 0.384612 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 9 param+error 3020.16 680.174 -0.330569 0.0750868 82.4999 61.6643 16.6069 2.79635 9020.94 0.485761 10.8846 0.298955 134.426 0.298955 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 10 param+error -2.14247 59.1978 0.000225093 0.00609413 0.436941 0.1599 311.878 1878.22 9672.05 1.36547 11.3236 1.39117 4.96476 1.39117 +CL dss 0 9 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.758924 4.05924 9.12608e-05 0.000402345 31.7387 6.55256 54.391 15.3829 10047.9 0.621849 11.6151 0.349511 106.384 0.349511 +CP dss 0 9 l pakw 12 1942.7 59.541 2.89684 2074.78 80.997 2.99292 2331.22 122.061 2.84105 2420.9 136.474 2.84626 3292.91 276.398 2.95797 3456.33 302.853 3.1284 3788 356.017 3.10376 3962.69 383.851 2.96696 4762.12 510.99 3.95389 9020.94 1173.24 3.94246 9672.05 1274.58 4.08654 10047.9 1332.5 4.18328 +CM dss 0 9 l poly3 -257.416 0.164545 -7.48259e-07 1.1345e-11 error 2.49186 0.00204598 4.82904e-07 3.10658e-11 +CR dss 0 9 l poly2 2.86754 0.00029656 5.20427e-07 error 0.229441 0.00120738 8.53871e-07 + +# ROU: dss 0 10 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 0 param+error 962.876 513.027 -0.482557 0.259068 1351.8 35.7081 144.829 19.1806 1944.98 0.022572 7.73922 0.0155703 18802.1 0.0155703 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 1 param+error 300.111 4.48867 0.144488 0.00230221 655.376 28.9689 82.5959 9.57016 2076.01 0.0723336 8.06451 0.0531478 3978.94 0.0531478 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 2 param+error 227.325 657.408 -0.0923805 0.278231 107.125 71.5272 36.51 46.41 2331.78 0.291066 7.86186 0.148714 1020.6 0.148714 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 3 param+error 288.536 381.552 -0.117386 0.155865 25.6275 23.58 10.219 19.7646 2421.12 1.2197 7.41852 0.573453 93.2686 0.573453 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 4 param+error -377.837 691.236 0.126301 0.208239 11.5215 6.36286 32797.7 16567.8 3288.63 0.571839 8.65246 0.328229 102.126 0.328229 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 5 param+error 211.337 449.75 -0.0548229 0.129865 89.1 58.8376 12.8665 1.93043 3455.04 0.320897 7.51269 0.277207 167.059 0.277207 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 6 param+error -437.222 581.131 0.115005 0.152179 67.7402 24.5417 22.3552 10.7062 3785.76 0.269855 8.26647 0.196514 407.326 0.196514 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 7 param+error -31.9946 56.9999 0.00813182 0.0142814 19.47 16.3546 8.12552 1.6063 3959.83 0.480821 7.13929 0.273505 40.0779 0.273505 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 8 param+error -943.883 503.789 0.199163 0.105032 16.7923 4.15174 46069.1 46242.7 4756.82 0.421385 11.3758 0.248935 131.495 0.248935 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.4666 1.02697 0.00142252 0.00011734 48.966 6.03469 52.3927 7.83314 8929.97 0.426003 11.0325 0.320592 168.513 0.320592 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 10 param+error -27.8819 74.7847 0.00291957 0.0077822 0.518768 0.276631 1088.33 21384.3 9565.34 1.71792 12.8648 1.31947 4.72178 1.31947 +CL dss 0 10 l M:PF-B:L-L:GCDFED-P:G 11 param+error 1660.75 571.168 -0.166258 0.0572524 51.81 32.4344 20.5371 3.7162 9935.52 0.49805 11.2354 0.282584 90.7008 0.282584 +CP dss 0 10 l pakw 12 1944.98 59.541 2.95088 2076.01 80.997 3.07217 2331.78 122.061 2.98992 2421.12 136.474 2.81969 3288.63 276.398 3.27184 3455.04 302.853 2.8383 3785.76 356.017 3.1178 3959.83 383.851 2.6904 4756.82 510.99 4.27216 8929.97 1173.24 4.11536 9565.34 1274.58 4.80199 9935.52 1332.5 4.19624 +CM dss 0 10 l poly3 -257.649 0.164414 -7.26352e-07 2.91215e-11 error 3.1897 0.00265178 6.31373e-07 4.08509e-11 +CR dss 0 10 l poly2 3.03205 -0.000776087 1.42207e-06 error 0.232444 0.00119158 8.42467e-07 + +# ROU: dss 0 11 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 0 param+error 6.80956 2.21964 0.000960543 0.00116602 1338.64 82.5088 136.548 45.8258 2028.64 0.0333064 7.77151 0.0188529 18490.5 0.0188529 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 1 param+error 296.85 4.08241 0.138595 0.00195062 736.473 40.4503 58.8242 6.50277 2160.75 0.0837862 8.06605 0.0566449 3882.34 0.0566449 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 2 param+error -920.687 611.908 0.37995 0.249794 84.9592 8.02883 123.85 69.0498 2418.59 0.0978617 7.98474 0.0814419 1033.39 0.0814419 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 3 param+error 133.22 444.563 -0.0522887 0.175333 13.4463 12.0544 23.6305 40.0685 2509.08 0.503841 7.40977 0.359263 103.569 0.359263 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 4 param+error 1228.55 500.694 -0.349239 0.14717 43.2198 29.7202 5.78065 14.8349 3381.68 2.44824 8.23657 0.815001 85.7528 0.815001 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 5 param+error 9.35131 1.22525 0.00289141 0.000590563 17.3429 6.35101 65.4616 47.6237 3547.34 0.306196 8.62664 0.255365 208.169 0.255365 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 6 param+error -384.667 449.675 0.0986028 0.114884 66.7371 18.7035 23.9287 8.67052 3881.27 0.236909 8.21181 0.164832 413.887 0.164832 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 7 param+error 64.0551 54.0278 -0.0155172 0.0132353 20.13 17.8511 6.64045 1.99439 4056.31 0.625016 8.0969 0.358604 39.5753 0.358604 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 8 param+error 5.93539 0.538641 0.00124125 0.000114101 15.5217 4.56999 72.5139 37.848 4860.59 0.431418 11.0829 0.314941 126.232 0.314941 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 9 param+error 10.801 8.62256 0.00116896 0.00093087 27.7032 6.97967 151.87 145.696 9220.78 0.489165 12.6147 0.334724 168.881 0.334724 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 10 param+error 14.491 42.642 -0.00143527 0.00429295 2.12995 1.3173 25.4102 17.2852 9904.85 2.53747 8.94266 2.04395 3.50707 2.04395 +CL dss 0 11 l M:PF-B:L-L:GCDFED-P:G 11 param+error 1.427 4.20806 0.000140691 0.00040717 30.6594 5.39302 57.1158 13.2775 10291.9 0.589057 11.942 0.360133 101.416 0.360133 +CP dss 0 11 l pakw 12 2028.64 59.541 2.9537 2160.75 80.997 3.06196 2418.59 122.061 3.02385 2509.08 136.474 2.80371 3381.68 276.398 3.08983 3547.34 302.853 3.23062 3881.27 356.017 3.06444 4056.31 383.851 3.01585 4860.59 510.99 4.0908 9220.78 1173.24 4.3836 9904.85 1274.58 3.07257 10291.9 1332.5 4.07591 +CM dss 0 11 l poly3 -270.758 0.164099 -6.00237e-07 -2.141e-11 error 3.02755 0.00242599 5.58683e-07 3.4944e-11 +CR dss 0 11 l poly2 2.89365 0.000648553 -4.70064e-08 error 0.234488 0.00122841 8.59133e-07 + +# ROU: dss 0 12 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 0 param+error 3.38905 0.961156 0.00275094 0.000473681 1576.05 31.8717 183.963 21.6157 2010.59 0.0202137 7.68989 0.013199 20803.5 0.013199 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 1 param+error -1211.49 1340.03 0.835938 0.615382 762.328 78.6567 59.5445 16.4674 2141.51 0.117953 8.04413 0.0766616 3945.2 0.0766616 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 2 param+error -184.185 670.842 0.0792802 0.27645 94.8733 50.0432 70.3322 129.214 2395.99 0.237718 7.80781 0.130227 1046.1 0.130227 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 3 param+error -426.606 351.841 0.170212 0.140093 10.789 3.60549 23696.3 16672.8 2484.71 0.337343 7.76546 0.189888 108.882 0.189888 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 4 param+error 293.063 231.029 -0.074542 0.0682525 53.7893 51.5199 8.02711 2.42107 3350.82 0.652505 7.45724 0.386045 79.7614 0.386045 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 5 param+error -150.846 580.968 0.048748 0.163905 8.17355 4.98886 33761.4 25114.3 3514.26 0.272958 8.45035 0.160865 206.274 0.160865 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 6 param+error -552.938 346.933 0.142926 0.0893895 25.3046 8.4932 42.4964 29.0702 3847.23 0.178015 8.3158 0.138781 397.008 0.138781 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 7 param+error 4.3299 51.2099 -0.0009618 0.0126085 15.8399 15.6779 7.81603 2.05422 4022.6 0.600047 7.80909 0.359799 31.7598 0.359799 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 8 param+error 2.71668 3.71651 0.00200022 0.000805831 15.2958 6.06025 59.7311 37.5614 4822.88 0.468162 11.1034 0.338794 130.39 0.338794 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.22 0.863391 0.00137294 9.68383e-05 46.6877 10.3687 49.0889 13.8468 8991.9 0.556239 11.3847 0.358117 171.583 0.358117 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 10 param+error 8.39389 23.7409 -0.000850579 0.0024566 0.746581 0.399941 62.9778 67.1152 9627.25 1.28133 8.7864 1.02397 5.41198 1.02397 +CL dss 0 12 l M:PF-B:L-L:GCDFED-P:G 11 param+error -382.621 3.28564 0.0383052 0.000327219 33.3431 3.92534 57.5827 7.81169 9994 0.511395 11.7459 0.300336 106.107 0.300336 +CP dss 0 12 l pakw 12 2010.59 59.541 2.9483 2141.51 80.997 3.07964 2395.99 122.061 2.98107 2484.71 136.474 2.96219 3350.82 276.398 2.822 3514.26 302.853 3.19362 3847.23 356.017 3.13494 4022.6 383.851 2.94036 4822.88 510.99 4.16148 8991.9 1173.24 4.26839 9627.25 1274.58 3.30626 9994 1332.5 4.4311 +CM dss 0 12 l poly3 -271.988 0.16725 -1.29204e-06 6.26649e-11 error 3.15377 0.00256601 6.01484e-07 3.85205e-11 +CR dss 0 12 l poly2 2.97864 -5.47504e-05 5.90308e-07 error 0.235721 0.00122379 8.59324e-07 + +# ROU: dss 0 13 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1254.66 583.415 0.645804 0.298345 1495.37 33.4971 350.605 94.3477 1921.33 0.0205992 7.68154 0.0145104 21106.3 0.0145104 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 1 param+error 314.334 5.51928 0.151717 0.00289767 809.489 83.3853 46.1186 9.02186 2053.09 0.118345 7.88168 0.0693162 3899.15 0.0693162 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 2 param+error 2174.58 1222.04 -0.926967 0.523139 277.189 141.335 11.7359 5.79661 2308.82 0.346019 7.27232 0.179006 937.019 0.179006 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 3 param+error 112.841 401.519 -0.0461966 0.165702 4.17665 4.18358 23647.2 22880.3 2397.26 0.35963 7.67938 0.1853 108.434 0.1853 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 4 param+error 440.918 290.637 -0.121845 0.088006 35.4861 41.6528 10.4493 12.7988 3263.55 1.49081 7.89732 0.650612 95.3319 0.650612 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 5 param+error 10.004 0.762483 0.00302494 0.000233396 34.1782 11.4871 24.6122 7.51123 3426.72 0.316178 8.04875 0.210323 210.846 0.210323 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 6 param+error 204.36 365.582 -0.0536837 0.0965843 89.5003 36.903 15.7752 5.76396 3755.91 0.311109 7.96443 0.172592 411.441 0.172592 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 7 param+error 6.80881 58.3266 -0.0016125 0.0147453 19.1399 18.5432 9.02786 1.81066 3928.05 0.518261 7.61634 0.317265 39.451 0.317265 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 8 param+error 240.088 462.347 -0.048105 0.0974241 58.08 58.0636 14.8184 3.98046 4714.3 0.559863 10.5635 0.330809 105.38 0.330809 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.54 0.847013 0.00144222 9.74361e-05 41.6894 6.28342 58.7771 12.1381 8824.79 0.40801 11.2702 0.287853 186.613 0.287853 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 10 param+error -36.3567 81.9156 0.00384647 0.00862071 0.572651 0.233405 93828.4 60692.8 9450.2 1.30434 12.2155 1.1275 5.94529 1.1275 +CL dss 0 13 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.81155 3.76127 8.31834e-05 0.000381649 30.2844 6.71206 51.9659 15.828 9812.75 0.529219 11.2637 0.297835 121.42 0.297835 +CP dss 0 13 l pakw 12 1921.33 59.541 2.92313 2053.09 80.997 2.99928 2308.82 122.061 2.76736 2397.26 136.474 2.92224 3263.55 276.398 3.00474 3426.72 302.853 3.06223 3755.91 356.017 3.02986 3928.05 383.851 2.89727 4714.3 510.99 4.01703 8824.79 1173.24 4.27098 9450.2 1274.58 4.62557 9812.75 1332.5 4.2631 +CM dss 0 13 l poly3 -250.886 0.161552 2.59719e-08 -4.62393e-12 error 2.98332 0.00249998 6.00703e-07 3.93055e-11 +CR dss 0 13 l poly2 2.89401 -1.58001e-06 9.19835e-07 error 0.229837 0.00120093 8.50664e-07 + +# ROU: dss 0 14 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 0 param+error 217.096 9.54801 -0.103601 0.00478449 1484.18 33.8171 284.042 60.5852 1960.88 0.0201963 7.54549 0.0131079 21385.6 0.0131079 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 1 param+error 303.359 4.15429 0.143451 0.00203306 650.536 6.65094 86.6559 1.10943 2091.17 0.0459623 7.89426 0.0395653 4157.38 0.0395653 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 2 param+error 5.43079 0.676052 0.00242724 0.000287804 94.8941 11.1425 50.85 10.5398 2344.72 0.099183 7.57913 0.0651809 1060.77 0.0651809 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 3 param+error -162.178 192.41 0.066028 0.0780802 16.1997 5.52476 37.4444 28.6977 2433.82 0.36776 7.40348 0.303256 107.994 0.303256 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 4 param+error 78.1363 719.444 -0.0120144 0.216908 3.91418 5.92905 32889 26435.2 3285.08 0.476256 8.28618 0.317834 116.274 0.317834 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 5 param+error 110.146 172.906 -0.0256136 0.0497856 85.7994 61.9963 8.71199 1.22471 3446.78 0.301125 7.61808 0.198557 169.381 0.198557 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 6 param+error -615.314 290.156 0.162162 0.0763365 19.3335 5.86248 61.351 50.604 3767.28 0.160953 8.14404 0.128056 376.005 0.128056 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 7 param+error -44.4392 58.1693 0.0113148 0.0146635 13.1847 7.22172 8.49242 2.16734 3935.56 0.626628 7.35553 0.337664 29.3368 0.337664 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 8 param+error -231.669 749.033 0.0519312 0.158256 16.2362 16.5146 94.6353 399.769 4694.78 0.813717 10.2589 0.529049 140.467 0.529049 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 9 param+error 222.798 804.279 -0.0226058 0.0932871 89.1 55.0732 25.1634 3.23778 8579.7 0.341031 9.82477 0.265353 155.651 0.265353 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 10 param+error -28.1685 127.483 0.00307265 0.0138429 0.64084 0.34284 169.529 774.257 9165.3 1.58805 11.234 1.3069 5.16494 1.3069 +CL dss 0 14 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.79005 3.18154 9.84028e-05 0.000333044 38.7615 5.43461 44.2339 6.26064 9506.86 0.511316 11.0537 0.287369 114.367 0.287369 +CP dss 0 14 l pakw 12 1960.88 59.541 2.87725 2091.17 80.997 3.01642 2344.72 122.061 2.90729 2433.82 136.474 2.8437 3285.08 276.398 3.22092 3446.78 302.853 2.96745 3767.28 356.017 3.18505 3935.56 383.851 2.88249 4694.78 510.99 4.05431 8579.7 1173.24 3.98618 9165.3 1274.58 4.56524 9506.86 1332.5 4.49494 +CM dss 0 14 l poly3 -252.546 0.156307 1.58322e-06 -5.06123e-11 error 3.17231 0.00264953 6.39572e-07 4.26493e-11 +CR dss 0 14 l poly2 2.92496 -1.94898e-05 9.0565e-07 error 0.230155 0.00120907 8.60527e-07 + +# ROU: dss 0 15 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 0 param+error -491.92 558.029 0.247973 0.276299 1491.7 34.7123 304.008 72.9179 1984.93 0.0208315 7.68419 0.0144151 21165.6 0.0144151 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 1 param+error 308.13 4.19824 0.143854 0.00201852 592.872 6.43765 109.613 1.58925 2115.08 0.0480478 7.97946 0.0404951 4106.62 0.0404951 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 2 param+error -156.842 421.031 0.0690031 0.175331 82.7704 9.54708 92.6395 42.1201 2368.95 0.0995284 7.7458 0.0771404 1054.29 0.0771404 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 3 param+error 0.249328 0.219552 6.72687e-05 9.31229e-05 4.73297 0.379782 14228.9 2893.42 2457.23 0.201933 7.82402 0.159517 112.498 0.159517 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 4 param+error -1198.92 1496.17 0.370512 0.447797 17.2261 10.754 32890.9 31871.9 3317.74 0.70261 7.91549 0.325731 108.252 0.325731 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 5 param+error 519.733 175.925 -0.14221 0.0501837 87.4497 86.7801 8.88221 1.17713 3480.45 0.28198 7.71085 0.186767 171.497 0.186767 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 6 param+error -197.567 290.333 0.0517163 0.0755727 34.4641 12.9834 27.0375 13.4366 3807.62 0.197332 8.14733 0.139032 404.863 0.139032 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 7 param+error 90.8888 25.6174 -0.0225751 0.00644559 18.1412 9.29585 1.05138 0.0506684 3978.74 0.544957 8.57389 0.0969208 42.9785 0.0969208 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.74666 0.644262 0.00158074 0.000148765 14.6997 6.08579 65.4122 48.2017 4765.04 0.45598 10.7233 0.315446 132.212 0.315446 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 9 param+error 13.8021 0.867231 0.00157577 9.79392e-05 59.9477 11.5081 37.6111 7.31761 8839.66 0.523045 10.5577 0.321338 178.214 0.321338 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 10 param+error 8.43053 46.6358 -0.000867846 0.00491461 2.0233 1.33427 29.9335 24.0687 9462.31 2.95565 8.81006 1.562 3.76813 1.562 +CL dss 0 15 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.452259 4.67733 3.90044e-05 0.000474631 31.0598 5.04515 51.9562 10.2334 9817.46 0.478286 11.7272 0.312386 119.368 0.312386 +CP dss 0 15 l pakw 12 1984.93 59.541 2.94799 2115.08 80.997 3.06021 2368.95 122.061 2.96872 2457.23 136.474 2.99808 3317.74 276.398 3.02796 3480.45 302.853 2.94893 3807.62 356.017 3.11445 3978.74 383.851 3.27685 4765.04 510.99 4.09579 8839.66 1173.24 4.05156 9462.31 1274.58 3.38726 9817.46 1332.5 4.5143 +CM dss 0 15 l poly3 -264.806 0.164047 -3.49012e-07 2.17037e-11 error 3.12013 0.00256825 6.09685e-07 3.96832e-11 +CR dss 0 15 l poly2 2.9486 0.000324927 3.26432e-07 error 0.236726 0.00124469 8.76946e-07 + +# ROU: dss 0 16 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 0 param+error 38.4085 9.79862 -0.0180288 0.00670347 1478.52 40.9518 193.347 36.9427 1886.54 0.0221653 7.62255 0.0186276 20554 0.0186276 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 1 param+error -1754.54 2320.39 1.15922 1.13306 664.702 34.4283 90.2765 24.8708 2016.54 0.0757482 7.97264 0.069223 4081.54 0.069223 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 2 param+error 6.87735 2.03965 0.00247905 0.00101989 91.6596 15.2711 52.6458 17.3803 2269.45 0.118479 7.68126 0.0905612 1043.46 0.0905612 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 3 param+error -188.144 164.631 0.0792144 0.0689278 7.59842 1.96367 23608.8 17517.1 2358.38 0.252186 7.75401 0.176228 114.4 0.176228 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 4 param+error 316.902 142.534 -0.0865507 0.0443027 52.47 41.1978 8.40336 1.73149 3219.54 0.560138 7.86292 0.437175 80.2715 0.437175 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 5 param+error 958.102 174.723 -0.27551 0.0515236 9.46647e-09 40.4253 14491.7 23393.6 3380.4 0.183746 8.36835 0.190121 197.49 0.190121 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.197067 1.17196 0.00019044 0.000391032 51.4216 26.6867 13.0229 4.44951 3710.23 0.29574 7.8212 0.210215 305.498 0.210215 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 7 param+error 148.555 2.03074e-05 -0.0379083 1.32422e-06 13.5227 6.10016e-05 1.01399 6.13797e-05 3882.3 33.7168 7.87413 0.00139623 30.451 0.00139623 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 8 param+error 7.37582 0.961967 0.00149916 0.000235552 12.7212 5.13064 76.4769 67.5524 4674.56 0.393186 10.1677 0.311455 142.82 0.311455 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 9 param+error 13.0007 0.825858 0.00148791 9.39755e-05 42.2754 5.86021 57.0251 10.7419 8896.32 0.366795 10.6979 0.262414 184.188 0.262414 +CL dss 0 16 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.793612 3.77808 8.34686e-05 0.00037936 42.2916 7.83966 37.2197 6.75207 9918.08 0.603838 11.1857 0.329287 107.381 0.329287 +CP dss 0 16 l pakw 11 1886.54 59.541 2.9443 2016.54 80.997 3.07533 2269.45 122.061 2.95517 2358.38 136.474 2.98043 3219.54 276.398 2.99652 3380.4 302.853 3.18421 3710.23 356.017 2.96677 3882.3 383.851 2.98209 4674.56 510.99 3.82355 8896.32 1173.24 3.90413 9918.08 1332.5 4.06089 +CM dss 0 16 l poly3 -253.14 0.167516 -9.82712e-07 2.08321e-11 error 2.77576 0.00234077 5.63292e-07 3.6761e-11 +CR dss 0 16 l poly2 2.99926 -0.000169662 7.53213e-07 error 0.234537 0.0012168 8.70325e-07 + +# ROU: dss 0 17 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 0 param+error 3.54594 1.04925 0.00241362 0.000534904 2041.5 215.587 56.0829 15.6041 1900.02 0.0500299 7.6073 0.0217025 20806.7 0.0217025 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 1 param+error 302.815 4.17549 0.144617 0.00225121 648.562 38.7678 80.9772 13.5182 2031.35 0.08083 8.07248 0.0553714 4032.18 0.0553714 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 2 param+error 712.638 341.034 -0.303587 0.146847 74.6019 11.4721 59.5482 23.8352 2288.47 0.103504 7.8048 0.0776056 1056.32 0.0776056 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 3 param+error -340.958 152.499 0.141805 0.0633309 9.71074 1.96707 23743 23643.2 2378.26 0.262341 8.01625 0.163411 114.447 0.163411 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 4 param+error 606.872 9.17192 -0.173952 0.00280165 21.3207 39.2074 8.94248 8.07495 3248 0.832893 8.4413 0.464803 98.0463 0.464803 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 5 param+error 11.0748 11.081 0.00343814 0.00322933 47.3088 20.1052 14.9049 4.78667 3414.14 0.395156 7.53244 0.28104 194.19 0.28104 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 6 param+error -2285.64 6.56105 0.605563 0.00173746 39.162 9.03817 68.4853 42.576 3748.82 0.178339 8.10305 0.115896 404.474 0.115896 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 7 param+error -12.1737 95.0096 0.00313362 0.0240839 18.48 18.4421 6.26076 2.55306 3925.77 0.676966 7.47842 0.399139 35.5752 0.399139 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 8 param+error 5.97922 0.559979 0.0013035 0.000118471 17.7388 8.49356 39.8269 21.6229 4741.18 0.513851 11.0172 0.334926 133.25 0.334926 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 9 param+error -7206.39 8.83904 0.785204 0.000960038 57.6064 4.64803 398.907 298.395 9168.48 0.40666 12.088 0.292271 184.468 0.292271 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 10 param+error -11.6711 43.7298 0.00120558 0.00442388 0.449596 0.167572 222.279 567.927 9845.46 1.07975 8.97704 1.17884 5.76496 1.17884 +CL dss 0 17 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.487104 0.313581 4.65624e-05 3.06913e-05 23.8807 4.4885 77.7713 24.6518 10232.2 0.509147 12.2878 0.320937 115.976 0.320937 +CP dss 0 17 l pakw 12 1900.02 59.541 2.92658 2031.35 80.997 3.09654 2288.47 122.061 2.97718 2378.26 136.474 3.05197 3248 276.398 3.15705 3414.14 302.853 2.80804 3748.82 356.017 3.00165 3925.77 383.851 2.76125 4741.18 510.99 4.01063 9168.48 1173.24 4.18442 9845.46 1274.58 3.09681 10232.2 1332.5 4.23281 +CM dss 0 17 l poly3 -257.999 0.170947 -2.17387e-06 6.31147e-11 error 2.7664 0.00231475 5.5065e-07 3.51328e-11 +CR dss 0 17 l poly2 3.06245 -0.00070371 9.26073e-07 error 0.234474 0.0011917 8.32539e-07 + +# ROU: dss 0 18 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 0 param+error 173.945 589.365 -0.0854938 0.303762 1512.11 31.613 290.013 58.8214 1906.24 0.0197969 7.61418 0.0139263 21476.3 0.0139263 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 1 param+error 307.204 3.94737 0.149082 0.00212166 703.924 43.4298 63.1441 8.9123 2037.68 0.0827282 7.86174 0.0543717 4029.65 0.0543717 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.50718 0.984438 0.00188961 0.000448215 103.386 29.5763 40.6363 19.6836 2292.49 0.161619 7.78301 0.0912343 1049.17 0.0912343 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 3 param+error -9.69579 108.671 0.00423145 0.0449909 22.595 15.2616 15.1704 9.0191 2382.14 0.586492 7.74435 0.331964 95.8288 0.331964 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 4 param+error 19.179 9.44591 0.00657119 0.00288085 11.3477 11.6725 22.2799 22.3042 3247.58 0.54028 7.47178 0.391481 109.109 0.391481 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 5 param+error 9.91754 0.911247 0.00302269 0.000287594 13.4442 7.1082 31.7599 18.8893 3410.67 0.275565 8.30593 0.223738 197.618 0.223738 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 6 param+error -452.059 463.359 0.120593 0.123018 129.36 123.88 8.96479 1.3944 3740.32 0.243466 7.80388 0.119816 298.137 0.119816 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 7 param+error -16.3845 39.7587 0.00418394 0.010103 13.53 13.3406 8.38643 1.90373 3912.74 0.618311 7.61329 0.374138 26.7676 0.374138 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 8 param+error 576.23 217.876 -0.119221 0.0460509 47.0511 49.8584 15.6263 8.48437 4692.83 0.969135 9.38575 0.463671 121.219 0.463671 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 9 param+error 13.1027 0.763134 0.00151877 8.72646e-05 75.7632 13.6451 30.9935 5.0266 8700.38 0.543359 9.74872 0.313013 174.225 0.313013 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 10 param+error -64.2209 61.9048 0.00688653 0.0066269 0.730476 0.341633 88450.2 49274 9308.33 1.28395 10.6171 1.06851 6.43198 1.06851 +CL dss 0 18 l M:PF-B:L-L:GCDFED-P:G 11 param+error 850.284 3.59078 -0.0874702 0.000370012 40.9225 9.61695 30.7783 6.14013 9662.01 0.639539 11.0132 0.332607 112.398 0.332607 +CP dss 0 18 l pakw 12 1906.24 59.541 2.88568 2037.68 80.997 2.98138 2292.49 122.061 2.95517 2382.14 136.474 2.94178 3247.58 276.398 2.85042 3410.67 302.853 3.17124 3740.32 356.017 2.98454 3912.74 383.851 2.91421 4692.83 510.99 3.60723 8700.38 1173.24 3.83095 9308.33 1274.58 4.18718 9662.01 1332.5 4.35254 +CM dss 0 18 l poly3 -245.738 0.159522 3.57939e-07 4.96915e-12 error 2.88952 0.00243262 5.87012e-07 3.88456e-11 +CR dss 0 18 l poly2 2.97114 -0.000368835 1.01628e-06 error 0.230582 0.0011978 8.48548e-07 + +# ROU: dss 0 19 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 0 param+error 28489.9 375.5 -14.4898 0.191285 1479.35 37.2509 73.2725 4.84833 1941.41 0.0202771 7.58949 0.0160905 21142.8 0.0160905 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 1 param+error 309.265 3.97772 0.145866 0.00189205 619.007 7.09412 93.3953 1.28498 2071.63 0.0467691 7.97037 0.0403807 4114.54 0.0403807 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.33984 0.993278 0.00181314 0.000422411 91.4384 26.1849 56.224 37.1413 2324.26 0.159721 7.82086 0.0900968 1061 0.0900968 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 3 param+error 0.175247 4.15195 0.000127185 0.00170263 29.3888 13.134 15.0062 4.78761 2413.74 0.575836 7.36256 0.298553 95.4117 0.298553 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 4 param+error -637.703 805.639 0.204876 0.243866 14.7775 5.59889 227.397 811.719 3272.84 0.46991 8.14735 0.398492 115.23 0.398492 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 5 param+error 10.0598 0.775996 0.00299057 0.000230289 23.3023 9.21641 33.1263 15.4314 3434.98 0.31733 8.36184 0.216743 202.088 0.216743 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 6 param+error -249.818 433.552 0.0661506 0.114244 44.7612 15.8354 23.7248 11.8423 3762.84 0.186915 8.0773 0.144848 438.396 0.144848 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 7 param+error 21.585 79.3798 -0.00540388 0.0200007 7.58708 15.7209 10.3079 9.8934 3934.17 0.698609 7.75507 0.357275 45.634 0.357275 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 8 param+error 271.185 445.744 -0.0543127 0.0936941 35.8838 22.9206 21.0868 16.3061 4717.51 0.823052 10.4814 0.502415 118.539 0.502415 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.4902 11.1134 0.00134416 0.00126492 94.0497 72.9327 24.6435 1.13583 8753.73 0.294978 9.768 0.2445 165.533 0.2445 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 10 param+error -2.66657 261.364 0.000302359 0.0277522 0.238889 0.703757 91798.6 81791.7 9358.98 2.28524 13.7863 1.59728 6.05847 1.59728 +CL dss 0 19 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.98355 0.25379 0.000120561 2.60632e-05 28.6206 3.49285 60.662 9.18373 9714.59 0.401975 10.9962 0.252884 126.796 0.252884 +CP dss 0 19 l pakw 12 1941.41 59.541 2.91328 2071.63 80.997 3.05843 2324.26 122.061 2.99926 2413.74 136.474 2.82298 3272.84 276.398 3.12026 3434.98 302.853 3.20212 3762.84 356.017 3.09299 3934.17 383.851 2.96971 4717.51 510.99 4.01678 8753.73 1173.24 3.81514 9358.98 1274.58 5.41139 9714.59 1332.5 4.32992 +CM dss 0 19 l poly3 -258.008 0.164364 -4.72629e-07 4.25122e-11 error 2.9761 0.00248005 5.94504e-07 3.91298e-11 +CR dss 0 19 l poly2 2.97023 -7.53109e-05 9.46895e-07 error 0.232791 0.0012224 8.71179e-07 + +# ROU: dss 0 20 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 0 param+error -458.031 562.914 0.231569 0.278706 1500.1 35.0717 300.527 71.832 1984.95 0.0210409 7.7142 0.0146264 21054.1 0.0146264 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 1 param+error 305.809 4.30153 0.144479 0.0021195 673.938 31.8681 72.3863 8.18504 2115.27 0.072838 7.95339 0.0524037 4063.9 0.0524037 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 2 param+error 745.402 438.077 -0.306794 0.182354 96.8671 14.9842 35.7088 10.5388 2369.43 0.109231 7.77307 0.0833968 1048.38 0.0833968 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 3 param+error -98.4236 190.531 0.039689 0.0765314 12.6222 3.8569 45.1889 38.6106 2458.56 0.318704 7.85616 0.279281 108.984 0.279281 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 4 param+error 307.632 631.559 -0.0804026 0.188411 3.12265 6.56236 58.2641 528.58 3320.8 0.557221 8.76623 0.397284 105.31 0.397284 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 5 param+error -12.7378 446.373 0.00997906 0.127352 77.88 75.6396 8.74255 2.34869 3485.81 0.42978 7.87263 0.273645 153.646 0.273645 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 6 param+error -450.939 1.99945 0.117373 0.000525214 9.19996 0.499166 35943.5 26955.1 3814.01 0.115488 8.47453 0.089931 327.793 0.089931 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 7 param+error 9.43919 0.345741 -0.00225457 7.43656e-05 0.837033 1.89682 30.2527 71.8263 3985.95 0.595663 8.70584 0.438653 29.8164 0.438653 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 8 param+error 187.136 576.345 -0.0360518 0.119771 7.91302 4.26146 301.8 2869.03 4771.62 0.382979 10.2791 0.340544 144.874 0.340544 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 9 param+error 13.2149 0.882136 0.00153376 0.000102263 43.0246 9.95786 49.4703 14.9099 8832.3 0.484205 10.879 0.319414 189.183 0.319414 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 10 param+error 6.0031 22.7034 -0.000615431 0.00239526 0.843171 0.47273 73.0089 81.8274 9452.49 1.61341 9.50379 1.49419 5.36589 1.49419 +CL dss 0 20 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.642829 0.367252 6.87343e-05 3.79804e-05 31.1449 4.00471 52.5409 7.72361 9809.44 0.420449 10.861 0.274777 125.482 0.274777 +CP dss 0 20 l pakw 12 1984.95 59.541 2.9456 2115.27 80.997 3.03656 2369.43 122.061 2.96711 2458.56 136.474 2.99865 3320.8 276.398 3.3451 3485.81 302.853 3.00414 3814.01 356.017 3.23408 3985.95 383.851 3.3226 4771.62 510.99 3.92543 8832.3 1173.24 4.19785 9452.49 1274.58 3.67688 9809.44 1332.5 4.20887 +CM dss 0 20 l poly3 -262.669 0.162707 -1.98855e-07 1.99505e-11 error 3.12461 0.00256301 6.05366e-07 3.92625e-11 +CR dss 0 20 l poly2 2.87781 0.00109748 -1.72657e-07 error 0.236738 0.00126132 8.88882e-07 + +# ROU: dss 0 21 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 0 param+error 176.605 703.14 -0.0858205 0.360836 1535.1 32.7664 227.987 38.1771 1914.64 0.0205029 7.75416 0.0147696 21069.8 0.0147696 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 1 param+error 74.8936 3.80191 0.256014 0.00333215 651.876 39.7662 75.8282 12.2328 2046.75 0.0812347 8.0562 0.0565788 4016.56 0.0565788 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.74358 0.651003 0.00222277 0.000284328 88.8522 13.0081 63.7924 20.9147 2304.1 0.117692 7.88223 0.0747769 1027.4 0.0747769 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 3 param+error 1.61282 0.287231 -0.000378475 0.000151783 5.59465 0.420359 3340.69 810.436 2393.83 0.213009 8.11197 0.178546 107.09 0.178546 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 4 param+error -60.9531 507.306 0.0308213 0.153505 6.4904 4.68692 32416.9 23181.5 3269.96 0.49232 8.46446 0.344638 100.643 0.344638 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 5 param+error 1232.09 563.464 -0.349363 0.162843 4.16402 69.417 12.4394 110.964 3436.19 0.605092 8.21233 0.289209 217.324 0.289209 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 6 param+error -19.7314 181.982 0.00565877 0.0477458 34.2436 13.7895 38.198 24.014 3773.36 0.208671 8.15257 0.12692 425.493 0.12692 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 7 param+error -61.3452 121.801 0.015467 0.0305543 4.63423 6.26871 23.3232 41.4144 3950.85 0.775983 8.10313 0.463023 45.3489 0.463023 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 8 param+error 470.63 206.066 -0.0950389 0.0429374 60.3825 56.2774 12.755 2.30559 4763.42 0.503454 10.4123 0.307089 104.88 0.307089 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 9 param+error 2856.58 411.871 -0.311653 0.0453188 87.7576 83.9296 17.0199 1.96201 9053.63 0.343661 10.2876 0.242401 158.42 0.242401 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.0918466 1.17657 9.71135e-06 0.00012058 0.854337 0.603489 58.3102 54.2685 9712.72 1.57422 10.4731 1.26498 5.71015 1.26498 +CL dss 0 21 l M:PF-B:L-L:GCDFED-P:G 11 param+error 1697.36 206.32 -0.167276 0.0203622 53.4406 53.3806 18.7163 1.91208 10091.5 0.416158 10.728 0.260956 100.814 0.260956 +CP dss 0 21 l pakw 12 1914.64 59.541 2.94655 2046.75 80.997 3.05567 2304.1 122.061 2.97921 2393.83 136.474 3.06238 3269.96 276.398 3.16089 3436.19 302.853 3.06092 3773.36 356.017 3.02747 3950.85 383.851 3.00355 4763.42 510.99 3.82994 9053.63 1173.24 3.71648 9712.72 1274.58 3.78601 10091.5 1332.5 3.88127 +CM dss 0 21 l poly3 -253.966 0.166328 -1.45077e-06 5.43048e-11 error 2.71062 0.00224376 5.29341e-07 3.38893e-11 +CR dss 0 21 l poly2 3.01095 -3.03042e-05 5.13897e-07 error 0.234895 0.00121605 8.5404e-07 + +# ROU: dss 0 22 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 0 param+error -730.24 10.8842 0.377022 0.0055417 1499.57 34.5465 192.392 27.5527 1929.75 0.0214364 7.75417 0.0138074 20300 0.0138074 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 1 param+error 301.679 4.27045 0.145796 0.0021632 654.658 30.976 82.5594 10.5194 2059.48 0.0731902 8.06682 0.0527444 4077.44 0.0527444 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 2 param+error 5.0826 0.65429 0.00229153 0.000286513 91.1953 13.1624 50.1489 12.544 2311.97 0.11209 7.88714 0.0720436 1041.49 0.0720436 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 3 param+error -289.852 173.11 0.119479 0.0711864 13.5394 3.43761 68.5161 59.4467 2400.43 0.345939 7.84056 0.257442 104.737 0.257442 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 4 param+error 189.092 168.371 -0.0461441 0.0513905 54.12 47.9444 9.14575 1.77299 3258.47 0.530578 6.86243 0.372166 76.3568 0.372166 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 5 param+error -737.745 966.394 0.219412 0.280202 29.6829 66.134 21.1494 47.108 3418.84 0.898597 8.16506 0.468605 178.754 0.468605 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.365796 0.238864 9.50937e-05 6.78777e-05 5.42702 0.460641 12762.8 2688.85 3743.28 0.117737 8.2195 0.0888774 309.708 0.0888774 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 7 param+error -50.6862 148.572 0.0128276 0.0376746 0.809443 1.17078 38588.8 36449.9 3913.53 0.621724 8.79991 0.349073 27.179 0.349073 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 8 param+error 7.0233 0.55458 0.00153027 0.000119417 18.9435 7.88116 38.5185 18.3407 4684.14 0.449357 10.2305 0.296464 140.708 0.296464 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 9 param+error 13.1287 10.7518 0.00152901 0.00123939 93.748 73.0292 24.2947 3.65821 8643.4 0.634309 9.90873 0.355517 164.291 0.355517 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 10 param+error 28.807 111.908 -0.00309743 0.0120611 0.56476 0.500149 70.6454 220.078 9241.91 1.25363 9.95574 1.08192 6.66391 1.08192 +CL dss 0 22 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.921016 3.74585 9.66651e-05 0.000388943 35.8311 7.76294 42.7459 10.7235 9588.52 0.532897 10.7754 0.298985 127.737 0.298985 +CP dss 0 22 l pakw 12 1929.75 59.541 2.96887 2059.48 80.997 3.09082 2311.97 122.061 3.02627 2400.43 136.474 3.0099 3258.47 276.398 2.6473 3418.84 302.853 3.15271 3743.28 356.017 3.17966 3913.53 383.851 3.40754 4684.14 510.99 3.9793 8643.4 1173.24 3.94695 9241.91 1274.58 3.9804 9588.52 1332.5 4.31743 +CM dss 0 22 l poly3 -252.386 0.160868 4.37072e-07 3.26597e-12 error 2.97588 0.00250047 6.05908e-07 4.03259e-11 +CR dss 0 22 l poly2 2.97204 0.000109291 6.11783e-07 error 0.239214 0.00125793 8.87476e-07 + +# ROU: dss 0 23 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 0 param+error 1111.99 969.003 -0.535823 0.470207 1802.13 213.001 82.2541 37.6453 2027.9 0.0514438 7.72699 0.0249222 20985.5 0.0249222 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 1 param+error 312.192 3.91648 0.139347 0.00183328 668.634 44.416 74.4105 12.9018 2158.15 0.0868406 8.05343 0.0565588 4044.02 0.0565588 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.71307 0.994847 0.00173647 0.000449209 90.2745 26.8792 64.9868 51.5873 2412.3 0.163107 7.81009 0.0943242 1053.15 0.0943242 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 3 param+error -562.247 445.895 0.22241 0.176353 11.2613 4.61162 24894.7 12516.4 2500.99 0.377548 8.30442 0.203713 111.764 0.203713 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 4 param+error 167.697 290.323 -0.0382635 0.0857158 4.95307 3.12488 33425.2 23246.3 3361.79 0.402499 8.66713 0.307068 111.349 0.307068 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 5 param+error 10.8636 0.773759 0.00302964 0.000218231 8.21609 1.10975 7416.37 8191.82 3525.19 0.18045 8.30159 0.163921 217.022 0.163921 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.576262 0.268641 0.000179627 7.16868e-05 7.58068 0.639048 881.831 193.941 3853.78 0.107073 8.47395 0.0845925 406.748 0.0845925 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 7 param+error 43.5576 1.99946 -0.0106693 0.000499277 0.123302 0.197686 14979.3 32559 4025.66 0.328933 8.08764 0.263718 39.7734 0.263718 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.34571 7.58417 0.00133715 0.00156358 29.49 11.5265 29.7597 11.6996 4817.27 0.565127 10.1772 0.336392 127.306 0.336392 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.7094 0.830966 0.0013349 9.26646e-05 55.5631 7.20728 44.9759 6.35775 8993.1 0.427357 10.8662 0.279467 177.369 0.279467 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 10 param+error -9.33912 76.9519 0.00097166 0.00795164 0.345465 0.361213 50316.5 69372.4 9631.19 2.31609 14.2984 1.50187 3.88869 1.50187 +CL dss 0 23 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.325897 4.61003 5.60919e-05 0.000459245 25.5009 3.40879 73.7556 15.225 10000.7 0.43316 12.1169 0.309107 118.66 0.309107 +CP dss 0 23 l pakw 12 2027.9 59.541 2.97246 2158.15 80.997 3.09506 2412.3 122.061 2.99601 2500.99 136.474 3.18362 3361.79 276.398 3.30306 3525.19 302.853 3.16035 3853.78 356.017 3.21916 4025.66 383.851 3.06909 4817.27 510.99 3.84376 8993.1 1173.24 4.02838 9631.19 1274.58 5.29089 10000.7 1332.5 4.47935 +CM dss 0 23 l poly3 -274.361 0.166025 -7.09052e-07 1.71492e-11 error 3.21158 0.00259193 6.02483e-07 3.84693e-11 +CR dss 0 23 l poly2 3.061 3.24419e-06 9.12582e-07 error 0.239535 0.0012563 8.94455e-07 + +# ROU: dss 0 24 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 0 param+error -21087.7 30449.4 10.4299 15.0647 1614.39 159.541 19910 18704.6 1998.35 0.0436666 7.93115 0.0357677 20781.4 0.0357677 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 1 param+error 298.375 4.14895 0.13951 0.00203304 649.51 32.3637 81.182 10.7259 2130.91 0.0755934 8.20495 0.054363 3959.66 0.054363 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 2 param+error 9.51672 18.2944 -0.00135398 0.00758476 62.1037 8.5042 400.165 775.762 2388.99 0.0954222 8.01179 0.0829269 1060.45 0.0829269 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 3 param+error -59.7578 168.76 0.0239898 0.067245 6.39682 1.93698 24810.4 24689.5 2478.97 0.273843 7.91763 0.180553 105.319 0.180553 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 4 param+error 23.1101 357.356 0.00457121 0.105756 4.6014 3.55974 32690.7 22391.5 3353.65 0.442713 8.33978 0.322458 101.641 0.322458 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 5 param+error 2.67438 774.253 0.00451005 0.217932 23.688 25.57 21.7807 38.274 3520.03 0.489133 8.24008 0.38454 197.93 0.38454 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 6 param+error 247.43 115.436 -0.0630785 0.0296912 133.527 133.307 8.15616 0.717882 3856.1 0.188545 7.80856 0.115359 302.955 0.115359 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 7 param+error 1.072 1.99314 -0.000179374 0.000492839 0.352371 0.211365 10369.9 35166.1 4030.08 0.365016 8.39193 0.313254 34.5244 0.313254 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.08454 0.640854 0.00129895 0.000139395 10.472 1.55239 134.365 44.5288 4832.33 0.292557 11.0963 0.257573 138.168 0.257573 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 9 param+error 9.44618 2.62776 0.00167531 0.000317792 39.5363 7.14292 62.3048 16.449 8978.24 0.435902 11.1337 0.30509 187.479 0.30509 +CL dss 0 24 l M:PF-B:L-L:GCDFED-P:G 10 param+error -2858.86 343.394 0.285661 0.0342951 25.8168 1.8032 99315.3 50043.1 9971.59 0.34453 12.0534 0.208392 127.053 0.208392 +CP dss 0 24 l pakw 11 1998.35 59.541 2.9925 2130.91 80.997 3.09386 2388.99 122.061 3.01753 2478.97 136.474 2.98094 3353.65 276.398 3.13031 3520.03 302.853 3.0915 3856.1 356.017 2.92732 4030.08 383.851 3.14496 4832.33 510.99 4.15447 8978.24 1173.24 4.21314 9971.59 1332.5 4.59034 +CM dss 0 24 l poly3 -262.467 0.162271 -6.32205e-07 4.04365e-11 error 3.13641 0.00255455 5.99022e-07 3.84864e-11 +CR dss 0 24 l poly2 3.04825 -0.000336609 1.12548e-06 error 0.23841 0.0012427 8.97772e-07 + +# ROU: dss 0 25 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 0 param+error -4581.88 40.0388 2.29482 0.0200047 1375.68 79.1528 207.13 98.7461 1972.5 0.0319566 7.77471 0.0182798 19217.9 0.0182798 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 1 param+error -4233.3 2408.93 2.26052 1.12769 663.244 32.3996 122.209 38.6932 2104.65 0.0764568 8.18363 0.0673259 4020.4 0.0673259 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 2 param+error 41.2028 485.697 -0.0137957 0.202836 98.2437 12.283 50.4423 16.6875 2362.24 0.108281 7.86066 0.0869673 1027.34 0.0869673 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 3 param+error 0.264784 3.92977 0.000109304 0.00158513 15.4869 9.93416 20.9516 12.8499 2452.53 0.442498 7.5593 0.25557 107.354 0.25557 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 4 param+error -1227.12 1722.58 0.377926 0.514186 16.7918 12.5064 33230.5 28450.3 3324.7 0.783682 8.42302 0.33343 110.473 0.33343 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 5 param+error 1129.58 620.991 -0.314252 0.176372 87.1199 86.4975 6.10701 2.57594 3491.06 0.487696 7.8456 0.254436 180.994 0.254436 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 6 param+error -18.0135 377.253 0.00506586 0.0977403 92.5486 46.8108 13.5134 5.57801 3826.38 0.365156 8.04887 0.199594 385.292 0.199594 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 7 param+error -19.9603 136.68 0.00503355 0.0339219 0.601511 1.05336 39023.4 27232.3 4002.26 0.384776 8.10522 0.2535 46.4079 0.2535 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 8 param+error 283.766 8.04495 -0.0560365 0.00165842 7.82794 0.998232 48159 47482.4 4815.38 0.29011 11.1879 0.267651 139.271 0.267651 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 9 param+error 10.231 0.663421 0.00154218 7.58384e-05 37.998 5.74667 64.1083 13.1449 9113.94 0.422469 11.5783 0.301505 180.518 0.301505 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 10 param+error -26.5309 1.37035 0.0027212 0.000139748 1.37598 0.824424 43.1545 30.6998 9769.41 1.55664 9.27631 1.24576 5.91789 1.24576 +CL dss 0 25 l M:PF-B:L-L:GCDFED-P:G 11 param+error 1659.22 457.286 -0.162762 0.0449036 51.81 39.5328 18.9237 2.99631 10143.5 0.446257 11.5383 0.257812 100.672 0.257812 +CP dss 0 25 l pakw 12 1972.5 59.541 2.96415 2104.65 80.997 3.11386 2362.24 122.061 2.97969 2452.53 136.474 2.86175 3324.7 276.398 3.15176 3491.06 302.853 2.92968 3826.38 356.017 2.9937 4002.26 383.851 3.00868 4815.38 510.99 4.11847 9113.94 1173.24 4.17717 9769.41 1274.58 3.34856 10143.5 1332.5 4.16823 +CM dss 0 25 l poly3 -265.111 0.16742 -1.56896e-06 5.77308e-11 error 2.9389 0.00240203 5.62863e-07 3.57817e-11 +CR dss 0 25 l poly2 2.97525 -4.25734e-05 5.47135e-07 error 0.235288 0.00121821 8.53669e-07 + +# ROU: dss 0 26 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 0 param+error 12264.7 2.50595e-06 -6.29224 8.04141e-06 7503.21 1.48077e-06 2.03124 2627.23 1978.12 0.00126711 10.6834 8.16085e-05 18188 8.16085e-05 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 1 param+error 301.512 3.9854 0.141336 0.00194126 719.542 40.3788 68.1595 8.89579 2111.96 0.0836293 8.17072 0.0559204 3938.23 0.0559204 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 2 param+error 7.23954 2.14232 0.00267742 0.00100487 98.4545 16.4916 45.3629 13.1332 2365.24 0.122229 7.89628 0.096885 1011.19 0.096885 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 3 param+error 151.607 312.354 -0.0609284 0.125954 19.4034 17.3002 15.1526 16.976 2453.84 0.538769 7.70041 0.318199 105.421 0.318199 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 4 param+error 14.3595 1.91623 0.00871547 0.000858173 7.91025 5.31131 41.3018 38.2968 3315.08 0.485784 7.83271 0.425774 103.73 0.425774 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 5 param+error 387.357 293.18 -0.103627 0.0835273 63.5229 67.5313 8.70833 7.33445 3478.82 0.900902 7.87016 0.377798 177.056 0.377798 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 6 param+error 700.288 61.5643 -0.181879 0.0160551 2.41048e-07 27.2606 1.02834 0.00433069 3806.45 0.103995 8.42417 0.0870026 373.547 0.0870026 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 7 param+error -0.0362403 2.87686 -3.56484e-05 0.00071805 0.947593 0.320352 37788 23962.2 3979.67 0.386244 8.26625 0.309595 36.7048 0.309595 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.56054 6.43169 0.00137806 0.00133878 17.0715 5.54832 58.0525 30.0424 4765.38 0.425312 10.2763 0.312581 133.555 0.312581 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.4155 0.866771 0.00140102 9.93133e-05 23.6986 1.15206 281.787 17.2803 8807.67 0.241204 11.6349 0.2107 213.657 0.2107 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 10 param+error 35.2551 40.4809 -0.00371157 0.00428667 4.49484 4.75398 15.5073 8.7416 9429.09 5.67778 8.67757 2.04855 3.38977 2.04855 +CL dss 0 26 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.807816 4.31754 8.34568e-05 0.000439829 31.3578 6.1462 56.1393 15.4046 9775.22 0.515242 11.7469 0.303967 123.148 0.303967 +CP dss 0 26 l pakw 12 1978.12 59.541 4.07682 2111.96 80.997 3.11807 2365.24 122.061 3.0136 2453.84 136.474 2.93897 3315.08 276.398 2.99144 3478.82 302.853 3.00629 3806.45 356.017 3.21925 3979.67 383.851 3.15969 4765.38 510.99 3.93342 8807.67 1173.24 4.51364 9429.09 1274.58 3.37645 9775.22 1332.5 4.57882 +CM dss 0 26 l poly3 -261.23 0.162209 -9.2567e-08 1.78936e-11 error 3.40409 0.0027641 6.50689e-07 4.21941e-11 +CR dss 0 26 l poly2 3.29087 -0.00104836 1.25573e-06 error 0.261263 0.00132849 9.2504e-07 + +# ROU: dss 0 27 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 0 param+error -2625.06 3609.24 1.33128 1.82531 1599.76 90.2134 225.112 137.032 1948.52 0.0332905 7.95965 0.0249878 20562.4 0.0249878 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 1 param+error 304.078 4.30611 0.142278 0.00225343 679.334 40.7349 73.1797 10.7665 2080.35 0.0867214 8.26736 0.0586314 3914.83 0.0586314 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.15479 0.654248 0.00204109 0.000283191 88.1496 12.8681 66.0079 22.0305 2336.09 0.112836 8.09724 0.0727841 1019.11 0.0727841 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 3 param+error 1.33758 1.03797 -0.000239029 0.000438523 9.67697 3.39923 52.2666 32.591 2425.35 0.320198 7.7909 0.217075 103.264 0.217075 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 4 param+error 1225.94 19.8954 -0.356532 0.00599807 58.74 47.1134 1.17811 0.337176 3293.27 0.00191182 8.35079 0.000809675 101.816 0.000809675 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 5 param+error 11.9367 0.80727 0.00356006 0.000243434 34.3896 13.3148 21.2127 6.68397 3457.25 0.351351 8.17239 0.221451 199.277 0.221451 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 6 param+error 432.975 163.886 -0.112949 0.0429152 161.04 127.549 10.3933 0.681028 3786.11 0.157672 8.0133 0.0927831 362.11 0.0927831 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 7 param+error -158.113 124.156 0.0396771 0.031088 2.95778 0.656574 145.201 262.889 3956.77 0.358772 8.62723 0.292263 49.0853 0.292263 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 8 param+error -1248.71 474.5 0.264024 0.0992681 18.8926 3.88976 47400.1 45247.1 4741.33 0.388533 10.8256 0.221689 141.241 0.221689 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 9 param+error 291.652 1062.92 -0.0299904 0.119492 53.6098 22.8784 39.5739 26.244 8849.88 0.766646 11.1074 0.458558 187.793 0.458558 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.566126 3.97499 -4.83366e-05 0.000409018 0.713014 0.294401 108.797 75.8176 9480.31 1.41866 10.9648 1.02173 6.23279 1.02173 +CL dss 0 27 l M:PF-B:L-L:GCDFED-P:G 11 param+error -480.508 538.181 0.0487807 0.0544167 32.8147 9.39011 61.7902 34.9662 9842.7 0.774786 11.9279 0.480032 115.081 0.480032 +CP dss 0 27 l pakw 12 1948.52 59.541 3.01803 2080.35 80.997 3.13591 2336.09 122.061 3.07354 2425.35 136.474 2.95793 3293.27 276.398 3.17623 3457.25 302.853 3.10917 3786.11 356.017 3.04996 3956.77 383.851 3.28421 4741.33 510.99 4.12294 8849.88 1173.24 4.19748 9480.31 1274.58 4.13237 9842.7 1332.5 4.48746 +CM dss 0 27 l poly3 -253.009 0.159765 4.00424e-07 -2.7126e-11 error 3.09735 0.00257053 6.12976e-07 3.99393e-11 +CR dss 0 27 l poly2 3.027 0.000137726 6.68822e-07 error 0.241078 0.00126391 8.93297e-07 + +# ROU: dss 0 28 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 0 param+error 33.3819 7.84786 -0.0121457 0.00525991 1120.52 47.6452 109.046 18.2648 1948.99 0.030244 8.04988 0.0233496 15032.7 0.0233496 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 1 param+error 298.199 4.12941 0.139786 0.00217659 692.197 41.8082 72.3233 10.5369 2080.58 0.0892894 8.46158 0.0604922 3824.08 0.0604922 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 2 param+error 3.85437 0.647958 0.00169439 0.000280272 72.5759 9.30103 130.151 70.76 2338.06 0.1057 8.25561 0.0687003 1000.38 0.0687003 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 3 param+error -687.975 4.02654 0.280301 0.00163943 19.3977 5.66885 77.1642 68.9214 2428.9 0.42799 8.24438 0.255397 100.971 0.255397 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 4 param+error 721.068 213.496 -0.204533 0.0637731 52.7993 51.898 6.66738 2.94546 3310 0.862852 8.37198 0.477946 75.9067 0.477946 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 5 param+error 10.6414 1.99724 0.00245553 0.000624535 9.61042 1.14717 34822.1 29199.4 3477.53 0.214663 8.94019 0.187943 192.08 0.187943 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 6 param+error 421.303 93.3963 -0.109199 0.0243572 126.06 81.5017 9.26709 0.577552 3820.27 0.166421 8.69658 0.117695 296.868 0.117695 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 7 param+error 47.0217 86.4692 -0.0115607 0.0214214 14.85 14.3731 6.77381 20.7506 4000.64 4.51286 8.76319 1.28647 30.1317 1.28647 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 8 param+error -1127.89 698.141 0.233826 0.143117 17.7406 5.28306 978.162 27135.5 4835.61 0.541457 12.413 0.399376 125.839 0.399376 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.3219 0.656891 0.00135179 6.86229e-05 40.2338 4.92097 61.0421 8.51357 9408.18 0.462403 12.4832 0.343184 159.402 0.343184 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 10 param+error -25.7127 20.4648 0.00253144 0.00201349 0.520804 0.181109 35325.8 65157.9 10118.2 1.74614 14.0694 1.31254 4.46741 1.31254 +CL dss 0 28 l M:PF-B:L-L:GCDFED-P:G 11 param+error 1.16696 3.86454 0.000113512 0.000365545 42.2238 8.55153 37.0759 6.71968 10526.4 0.80341 12.4461 0.413019 92.6744 0.413019 +CP dss 0 28 l pakw 12 1948.99 59.541 3.08177 2080.58 80.997 3.22674 2338.06 122.061 3.1246 2428.9 136.474 3.1122 3310 276.398 3.08465 3477.53 302.853 3.27963 3820.27 356.017 3.1626 4000.64 383.851 3.17269 4835.61 510.99 4.40802 9408.18 1173.24 4.15424 10118.2 1274.58 4.66674 10526.4 1332.5 4.12407 +CM dss 0 28 l poly3 -267.268 0.173056 -2.95083e-06 8.95878e-11 error 2.80418 0.00228469 5.29902e-07 3.29433e-11 +CR dss 0 28 l poly2 3.12367 -6.71616e-05 7.75811e-07 error 0.246166 0.00127676 8.9867e-07 + +# ROU: dss 0 29 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1523.83 15.0611 0.767831 0.00754292 1497.65 31.8113 275.569 49.1899 1963.35 0.0218533 8.10075 0.0143008 19905.7 0.0143008 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 1 param+error 305.956 4.07061 0.142099 0.00208362 675.725 45.6346 77.0222 13.8083 2094.3 0.0938582 8.39539 0.0608493 3849.63 0.0608493 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.53445 1.11757 0.00188617 0.000453018 133.407 36.7026 31.0164 11.1368 2349.06 0.194791 8.01897 0.107356 975.135 0.107356 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 3 param+error 0.535822 4.70404 0.000232184 0.00190941 22.0918 10.9639 17.8657 7.0559 2438.05 0.517235 7.86007 0.29339 94.8344 0.29339 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 4 param+error 376.12 465.168 -0.100806 0.139353 48.1902 31.2085 9.82666 12.6072 3304.04 2.02301 8.53259 0.801201 81.7989 0.801201 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 5 param+error 10.799 0.98596 0.00318243 0.000329955 21.9952 6.67145 41.1024 17.6869 3467.38 0.294969 8.55999 0.226092 199.132 0.226092 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 6 param+error -100.008 181.578 0.0263406 0.0473231 30.3873 21.4253 40.2543 46.4302 3797.51 0.291577 8.79312 0.158226 436.107 0.158226 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 7 param+error -346.47 142.282 0.0866645 0.0355892 3.50626 1.16692 39203.9 35577.5 3971.45 0.416032 8.6782 0.266096 47.2888 0.266096 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 8 param+error 577.58 500.872 -0.117703 0.104246 3.82412 4.08069 44362.4 26846.5 4765.29 0.399224 11.0835 0.230465 142.024 0.230465 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.3662 0.685542 0.00137933 7.72799e-05 37.3781 8.13926 67.4644 25.682 8970.77 0.428609 11.1639 0.27852 192.04 0.27852 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 10 param+error -20.6645 95.347 0.00216559 0.00987594 0.67194 0.289102 141.811 377.449 9617.96 1.18064 9.53937 1.07386 6.29978 1.07386 +CL dss 0 29 l M:PF-B:L-L:GCDFED-P:G 11 param+error -3419.13 3.61013 0.340941 0.000359836 32.2456 2.67187 477.532 394.226 9990.88 0.423833 12.3598 0.265359 124.437 0.265359 +CP dss 0 29 l pakw 12 1963.35 59.541 3.10131 2094.3 80.997 3.21114 2349.06 122.061 3.06169 2438.05 136.474 2.99917 3304.04 276.398 3.23662 3467.38 302.853 3.24348 3797.51 356.017 3.32457 3971.45 383.851 3.27741 4765.29 510.99 4.16469 8970.77 1173.24 4.0976 9617.96 1274.58 3.4905 9990.88 1332.5 4.51472 +CM dss 0 29 l poly3 -261.928 0.164946 -6.30206e-07 9.23203e-12 error 3.06593 0.00251853 5.94353e-07 3.82727e-11 +CR dss 0 29 l poly2 3.04276 0.000603103 9.14881e-08 error 0.245817 0.00129783 9.13923e-07 + +# ROU: dss 0 30 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 0 param+error 3.46234 1.07533 0.00203383 0.000554293 1513.31 31.1058 274.819 47.6396 1915.59 0.0217568 8.00301 0.0140484 20569.4 0.0140484 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 1 param+error 306.48 4.09522 0.150909 0.0020988 682.452 44.9724 74.0001 12.6739 2046.07 0.0910971 8.31392 0.0585549 3883.99 0.0585549 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 2 param+error -307.551 732.197 0.136413 0.314119 124.376 76.9848 36.5811 42.9937 2300.06 0.324072 8.04586 0.165044 984.139 0.165044 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 3 param+error -0.0518892 3.99036 -4.43247e-05 0.00165128 9.71523 7.70642 50.5156 84.9771 2388.38 0.476692 8.38664 0.277213 104.05 0.277213 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 4 param+error -496.953 653.239 0.164647 0.199197 11.9646 6.00039 32210.2 32321.4 3249.64 0.552933 8.44407 0.315479 104.198 0.315479 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 5 param+error 11.9562 11.471 0.00361163 0.00333654 54.0296 21.8832 18.0354 6.10279 3412.91 0.456456 7.91372 0.264019 189.497 0.264019 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 6 param+error 395.376 118.674 -0.104184 0.0315899 165.99 17.3293 10.8331 0.535588 3740.71 0.155035 8.07152 0.110173 368.304 0.110173 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 7 param+error 4.6919 101.028 -0.00112164 0.0255954 10.2305 15.6824 11.7911 9.84355 3911.72 0.761901 8.58548 0.390688 48.5566 0.390688 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 8 param+error 5.46316 0.681481 0.00115553 0.000147559 16.8827 4.49362 69.1315 31.2129 4696.41 0.403924 11.2096 0.314495 133.406 0.314495 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.2896 0.839881 0.00141916 9.70757e-05 47.4029 12.145 50.3058 17.5183 8767.31 0.581351 11.5598 0.355025 182.337 0.355025 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 10 param+error 21.0776 19.3766 -0.00220163 0.00206485 3.66178 3.95284 17.4154 7.20454 9391.24 5.41181 6.90948 2.57924 3.06896 2.57924 +CL dss 0 30 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.635576 4.16674 6.67522e-05 0.000425835 26.522 5.51575 62.2822 19.7492 9744.15 0.502316 11.9205 0.305845 121.869 0.305845 +CP dss 0 30 l pakw 12 1915.59 59.541 3.06466 2046.07 80.997 3.18305 2300.06 122.061 3.07925 2388.38 136.474 3.20927 3249.64 276.398 3.22818 3412.91 302.853 3.02503 3740.71 356.017 3.08471 3911.72 383.851 3.28086 4696.41 510.99 4.28298 8767.31 1173.24 4.44015 9391.24 1274.58 2.65848 9744.15 1332.5 4.59141 +CM dss 0 30 l poly3 -252.507 0.163317 -2.3007e-07 1.6612e-11 error 3.16105 0.00266567 6.44588e-07 4.2447e-11 +CR dss 0 30 l poly2 3.08775 0.000267762 -1.42003e-08 error 0.245934 0.00127546 8.89167e-07 + +# ROU: dss 0 31 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 0 param+error 4.13832 0.955239 0.00273427 0.000500896 1553.36 37.1283 181.916 25.3935 1897.97 0.0226488 8.00703 0.0142888 20209.7 0.0142888 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 1 param+error 308.41 4.42584 0.15049 0.00225189 648.298 30.7405 86.8827 11.4175 2028.09 0.0757636 8.34172 0.0555315 3938.96 0.0555315 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 2 param+error -807.749 390.434 0.352093 0.168751 88.8537 9.45443 118.215 59.758 2281.26 0.104435 8.07767 0.0802027 1025.95 0.0802027 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 3 param+error 265.227 56.5652 -0.11026 0.0236044 41.5799 40.8767 8.56953 1.51193 2370.55 0.334859 7.70035 0.206716 88.2962 0.206716 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 4 param+error 19.4573 1.12693 0.00610709 0.000371672 15.2382 4.86051 48.8013 23.2057 3235.27 0.491687 8.24686 0.423807 99.3793 0.423807 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 5 param+error 78.0571 513.12 -0.0164857 0.149383 16.7029 13.58 62.9115 144.254 3398.58 0.428381 8.90892 0.304136 209.467 0.304136 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 6 param+error 316.179 173.631 -0.0834618 0.046148 165.658 163.828 10.9847 0.7019 3730.71 0.167002 8.18232 0.102296 364.846 0.102296 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 7 param+error 70.9923 120.054 -0.0178571 0.0304836 21.78 10.9932 7.01812 15.2494 3903.82 3.25565 8.36721 1.00039 44.1192 1.00039 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 8 param+error 774.866 151.158 -0.160727 0.0319344 57.0892 52.2565 10.9287 2.00883 4702.58 0.466699 10.6323 0.294987 111.212 0.294987 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 9 param+error -447.337 7.84245 0.0528846 0.000879316 34.254 5.73252 99.8156 38.3066 8872.14 0.392755 11.8019 0.270522 196.512 0.270522 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 10 param+error -0.769548 48.8964 9.47146e-05 0.00512324 0.583158 0.233055 151.142 345.457 9502.35 1.28931 10.789 1.18906 5.80008 1.18906 +CL dss 0 31 l M:PF-B:L-L:GCDFED-P:G 11 param+error 155.984 3.16144 -0.0155602 0.000318876 42.0309 6.56829 37.8778 5.13084 9866.97 0.600415 11.4523 0.318278 107.827 0.318278 +CP dss 0 31 l pakw 12 1897.97 59.541 3.08189 2028.09 80.997 3.20529 2281.26 122.061 3.09403 2370.55 136.474 2.94634 3235.27 276.398 3.12632 3398.58 302.853 3.37217 3730.71 356.017 3.0883 3903.82 383.851 3.15377 4702.58 510.99 3.98674 8872.14 1173.24 4.43804 9502.35 1274.58 4.07667 9866.97 1332.5 4.34159 +CM dss 0 31 l poly3 -255.041 0.168372 -1.51592e-06 7.71483e-11 error 3.00772 0.00253062 6.08355e-07 3.96959e-11 +CR dss 0 31 l poly2 3.05776 0.000164958 6.18481e-07 error 0.244043 0.00127325 8.9621e-07 + +# ROU: dss 0 32 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 0 param+error 4.09386 0.915791 0.00234251 0.000471965 1607.14 40.7846 198.591 32.3945 1953.04 0.0238369 8.12669 0.0147839 20094.5 0.0147839 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 1 param+error 301.518 4.62889 0.142653 0.00223662 603.032 28.9739 104.319 15.8557 2084.51 0.0766717 8.42421 0.0564423 3939.33 0.0564423 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 2 param+error 6.30937 1.32698 0.00153194 0.000706305 88.6138 10.4363 69.2246 18.1429 2339.05 0.108674 8.20389 0.072003 1007.43 0.072003 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 3 param+error 222.9 439.5 -0.0904152 0.178933 10.0128 23.5368 18.5672 55.0529 2427.94 0.766098 8.35799 0.452336 98.1076 0.452336 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 4 param+error 733.172 11.6711 -0.208368 0.00350932 5.61348 9.02174 65.4274 362.345 3300.42 0.596805 8.06102 0.446562 98.059 0.446562 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 5 param+error -1863.74 575.842 0.539402 0.164736 24.6291 5.14411 34569.3 26637.6 3465.36 0.28908 8.55142 0.165105 204.693 0.165105 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 6 param+error 947.985 399.471 -0.248367 0.105052 140.579 97.7952 9.16979 1.14552 3798.19 0.226523 8.38112 0.190235 318.074 0.190235 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 7 param+error 167.446 1.99901 -0.0417358 0.000507288 0.000312962 13.3898 4256.99 25334.1 3971.2 0.318377 8.15188 0.324838 41.857 0.324838 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 8 param+error 82.1336 421.413 -0.0142474 0.0875269 21.4156 12.0099 42.5085 40.763 4770.12 0.674012 10.9968 0.450154 122.15 0.450154 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 9 param+error 10.6287 0.652513 0.00123476 7.33684e-05 49.4676 8.54646 57.3116 13.1559 9009.8 0.534869 11.7533 0.332915 169.472 0.332915 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 10 param+error -7.06142 46.8114 0.00074661 0.00482496 0.522076 0.227562 190.042 558.923 9657.72 1.93259 12.7379 2.21993 3.92411 2.21993 +CL dss 0 32 l M:PF-B:L-L:GCDFED-P:G 11 param+error 1.03749 4.27212 0.000100057 0.000424102 31.9502 5.6102 54.9398 11.8388 10030.6 0.597099 12.4216 0.360103 106.589 0.360103 +CP dss 0 32 l pakw 12 1953.04 59.541 3.10382 2084.51 80.997 3.21297 2339.05 122.061 3.12069 2427.94 136.474 3.17644 3300.42 276.398 3.03816 3465.36 302.853 3.21827 3798.19 356.017 3.1452 3971.2 383.851 3.05482 4770.12 510.99 4.09597 9009.8 1173.24 4.30071 9657.72 1274.58 4.6586 10030.6 1332.5 4.5428 +CM dss 0 32 l poly3 -260.754 0.165992 -1.07982e-06 3.63648e-11 error 3.07952 0.00254063 6.00505e-07 3.8588e-11 +CR dss 0 32 l poly2 3.19904 -0.000691409 1.35853e-06 error 0.246975 0.00127075 8.97906e-07 + +# ROU: dss 0 33 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 0 param+error 3.81914 1.28167 0.00346231 0.000695017 1505.96 31.3143 276.289 48.333 1899.67 0.0211695 8.08038 0.0140427 20412.6 0.0140427 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 1 param+error 300.382 4.05233 0.147691 0.00197244 804.437 47.4636 49.3868 4.96368 2031.91 0.0923882 8.26018 0.0591107 3799.48 0.0591107 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.11062 0.595141 0.00175456 0.000252148 80.6376 11.4781 76.9832 28.9392 2286.85 0.109887 8.03861 0.0714894 1028.46 0.0714894 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 3 param+error -204.9 172.597 0.085241 0.0716581 12.7703 3.85485 61.2849 56.891 2376.81 0.353381 8.15883 0.277319 103.546 0.277319 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 4 param+error 86.6911 294.578 -0.0161202 0.0898312 46.5299 46.0748 11.3204 3.25774 3247.67 0.685777 7.84088 0.463486 65.0919 0.463486 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 5 param+error 166.62 391.895 -0.0431342 0.113887 30.9669 24.1679 16.3634 14.5052 3410.34 0.548537 8.25097 0.348957 149.523 0.348957 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.565213 4.45594 0.000176763 0.0011824 11.5403 4.40096 32.9845 12.9911 3738.5 0.176971 8.56911 0.129462 271.52 0.129462 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 7 param+error 23.0897 36.0057 -0.0057975 0.00914406 11.8796 6.81731 3.9519 3.93177 3910.41 1.07038 7.87036 0.538335 22.6742 0.538335 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 8 param+error -390.744 403.812 0.0850195 0.0852749 22.4659 9.41394 75.0551 82.7251 4690.8 0.608286 11.1941 0.40416 130.966 0.40416 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.9716 0.810763 0.00150206 9.3413e-05 51.7147 11.446 49.0802 14.4773 8741.47 0.554946 10.76 0.337756 182.928 0.337756 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 10 param+error 20.4247 32.5958 -0.00214387 0.00345068 0.891815 1.10832 43.4947 78.7993 9363.4 3.7076 12.2135 2.52445 3.39413 2.52445 +CL dss 0 33 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.992346 4.33871 0.000104664 0.000444511 34.6674 6.78139 47.1384 10.8661 9719.75 0.543922 11.6903 0.312192 120.038 0.312192 +CP dss 0 33 l pakw 12 1899.67 59.541 3.04924 2031.91 80.997 3.12001 2286.85 122.061 3.04163 2376.81 136.474 3.08896 3247.67 276.398 2.98428 3410.34 302.853 3.14313 3738.5 356.017 3.26982 3910.41 383.851 3.00569 4690.8 510.99 4.28927 8741.47 1173.24 4.14672 9363.4 1274.58 4.70308 9719.75 1332.5 4.4986 +CM dss 0 33 l poly3 -242.446 0.157724 7.55793e-07 -3.17565e-11 error 3.04755 0.00257574 6.24147e-07 4.12618e-11 +CR dss 0 33 l poly2 3.09976 -0.000405308 1.16166e-06 error 0.241808 0.00125553 8.89387e-07 + +# ROU: dss 0 34 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 0 param+error 1601.29 59.5029 -0.820488 0.0307076 1462.23 94.9495 316.482 255.634 1908.41 0.0356003 8.12545 0.0199861 20250.9 0.0199861 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 1 param+error 297.445 4.05095 0.143906 0.0021366 752.189 42.8437 59.3299 6.77641 2040.51 0.0908867 8.38124 0.0600487 3788.33 0.0600487 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.38414 0.62683 0.00186218 0.000277972 67.6764 1.66049 138.536 6.03654 2295.52 0.0732824 8.24892 0.0565531 1015.89 0.0565531 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 3 param+error 0.404342 0.252701 0.000157485 0.000105009 5.39999 0.457593 603.103 201.399 2385 0.227321 8.5352 0.174141 105 0.174141 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 4 param+error 848.012 11.6477 -0.247308 0.00354554 0.436463 1.45578 10839.3 25366.6 3259.4 0.368487 8.03343 0.348664 97.5348 0.348664 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 5 param+error 270.306 406.462 -0.072824 0.117545 48.0801 57.9735 11.3396 13.0837 3426.9 1.03492 7.93481 0.482438 164.076 0.482438 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 6 param+error 385.67 90.9567 -0.10138 0.0239875 106.256 105.178 6.56433 0.854996 3761.1 0.234582 8.29682 0.132077 247.359 0.132077 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 7 param+error -4.26073 3.29422 0.00108243 0.000786366 0.73162 1.02303 41.1297 71.7997 3936.2 0.505973 8.4184 0.34409 28.4404 0.34409 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 8 param+error -215.342 582.928 0.0477565 0.121936 15.2083 5.30994 115.169 189.48 4739.58 0.458522 10.9323 0.379386 133.331 0.379386 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.5394 8.70847 0.00140245 0.000973683 43.8099 11.1844 57.1146 23.8455 8900.27 0.521942 11.3599 0.315487 182.011 0.315487 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 10 param+error 30.4201 26.1371 -0.0031598 0.00272529 3.3 1.67387 23.93 18.0506 9533.14 9.77582 12.4364 3.62892 2.70669 3.62892 +CL dss 0 34 l M:PF-B:L-L:GCDFED-P:G 11 param+error 1.02099 5.12286 0.000100519 0.000516085 30.0246 5.21157 56.0566 12.8236 9889.45 0.508202 11.6271 0.346212 118.419 0.346212 +CP dss 0 34 l pakw 12 1908.41 59.541 3.0888 2040.51 80.997 3.18138 2295.52 122.061 3.1228 2385 136.474 3.2283 3259.4 276.398 3.01606 3426.9 302.853 2.97561 3761.1 356.017 3.10503 3936.2 383.851 3.14761 4739.58 510.99 4.07526 8900.27 1173.24 4.3075 9533.14 1274.58 4.75021 9889.45 1332.5 4.46165 +CM dss 0 34 l poly3 -252.347 0.165815 -1.38897e-06 8.3886e-11 error 3.00849 0.00252332 6.05009e-07 3.93991e-11 +CR dss 0 34 l poly2 3.19187 -0.000804503 1.4497e-06 error 0.246543 0.00126488 8.92697e-07 + +# ROU: dss 0 35 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 0 param+error 102.28 79.4323 -0.063575 0.0419741 1488.94 40.9067 362.053 128.351 1869.04 0.022816 8.07413 0.019088 20416.8 0.019088 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 1 param+error 294.469 4.08849 0.147637 0.0021213 669.162 36.88 70.7213 9.16246 2001.7 0.0812319 8.32297 0.0560861 3931.47 0.0560861 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 2 param+error 3.01636 0.622425 0.0014419 0.000256545 80.0497 10.9362 71.3682 22.474 2257.69 0.112514 8.31732 0.0726532 993.161 0.0726532 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 3 param+error 39.0942 1.99617 -0.0162837 0.00085974 3.77326 0.377411 21845.2 21547.7 2347.58 0.215074 8.34846 0.1786 106.462 0.1786 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 4 param+error 112.709 278.542 -0.0241085 0.0856183 42.5608 42.8125 10.8185 8.40668 3225.67 1.51203 7.81906 0.685578 67.2833 0.685578 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 5 param+error 9.54259 0.644519 0.0028182 0.000189402 4.27777 0.942246 4486.69 3265.47 3389.84 0.20948 8.48124 0.18973 167.208 0.18973 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 6 param+error -286.813 1.85266 0.0768261 0.000524378 91.08 78.4496 9.22295 0.492175 3724.86 0.183563 8.16112 0.140584 219.959 0.140584 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 7 param+error -67.9855 0.17614 0.0173122 2.73697e-05 1.94381 0.759035 69.3611 45.4556 3899.69 0.606302 8.68489 0.477319 21.9594 0.477319 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 8 param+error -436.651 572.198 0.0945454 0.1207 14.1981 4.57789 219.757 530.889 4699.6 0.426821 11.1198 0.34898 136.924 0.34898 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.96 8.98072 0.00136747 0.0010052 45.9609 9.23065 48.3002 12.108 8895.67 0.487952 11.5653 0.322845 178.009 0.322845 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 10 param+error -12.9279 29.0495 0.00136801 0.00303339 0.392403 0.147498 1268.36 10458.3 9531.42 1.24809 11.6131 0.942874 5.79148 0.942874 +CL dss 0 35 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.504124 3.57945 5.43776e-05 0.000359932 35.75 7.76258 46.6155 12.2377 9901.67 0.609743 11.8096 0.319761 114.195 0.319761 +CP dss 0 35 l pakw 12 1869.04 59.541 3.05523 2001.7 80.997 3.14646 2257.69 122.061 3.13889 2347.58 136.474 3.1488 3225.67 276.398 2.93398 3389.84 302.853 3.17976 3724.86 356.017 3.05482 3899.69 383.851 3.24834 4699.6 510.99 4.1465 8895.67 1173.24 4.30771 9531.42 1274.58 4.33413 9901.67 1332.5 4.41373 +CM dss 0 35 l poly3 -242.962 0.163213 -7.78924e-07 3.71472e-11 error 2.9184 0.00247876 5.99854e-07 3.92397e-11 +CR dss 0 35 l poly2 3.11707 -0.000318812 1.02128e-06 error 0.244762 0.00126736 8.93392e-07 + +# ROU: dss 0 36 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 0 param+error -279.473 577.87 0.145933 0.295085 7285.41 6872.72 9.78068 0.439532 1923.12 0.106566 9.15907 0.0403981 14005 0.0403981 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 1 param+error 3502.78 2202.05 -1.38924 1.05473 735.539 57.0155 47.4199 10.3613 2054.95 0.100505 8.32925 0.0821132 3770.94 0.0821132 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 2 param+error 840.423 1607.5 -0.355446 0.688013 72.4828 25.2458 77.4583 122.133 2308.43 0.16363 8.15784 0.130244 1015.12 0.130244 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 3 param+error -184.98 135.176 0.0764815 0.0556405 8.42394 5.13709 24009.7 17909.1 2397.85 0.438723 8.35063 0.286362 106.212 0.286362 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 4 param+error 307.227 259.481 -0.0825014 0.0783571 1.84846 2.82904 31600.7 16659.2 3268.49 0.428126 8.81864 0.342569 100.35 0.342569 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 5 param+error 42.5429 635.591 -0.00632253 0.183456 11.8161 13.3473 27.6609 64.4963 3432.57 0.35283 8.3138 0.311155 182.517 0.311155 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 6 param+error 217.88 81.0087 -0.0571323 0.021366 109.89 101.884 7.58545 0.573266 3762.2 0.168845 7.88339 0.105131 268.899 0.105131 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 7 param+error 63.2524 91.2226 -0.0158727 0.0229848 0.0407082 7.20816 37494.7 20297.8 3933.12 0.467536 8.02024 0.324161 28.7751 0.324161 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 8 param+error 372.038 431.427 -0.0754779 0.090664 35.5217 46.009 19.899 18.9712 4714.02 1.14791 10.3192 0.636991 118.793 0.636991 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.7989 0.799282 0.00136385 9.5898e-05 33.4293 9.08245 86.6661 53.4613 8821.16 0.481818 11.6457 0.32201 191.651 0.32201 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 10 param+error -0.567314 1.07409 9.02742e-05 0.000113007 0.400588 0.383783 138.508 319.247 9453.61 1.60934 12.2213 1.54867 5.2451 1.54867 +CL dss 0 36 l M:PF-B:L-L:GCDFED-P:G 11 param+error 1.06831 4.49471 5.46947e-05 0.000455614 13.3269 1.98157 6152.87 66127.6 9822.83 0.335985 12.7588 0.253662 129.92 0.253662 +CP dss 0 36 l pakw 12 1923.12 59.541 3.46851 2054.95 80.997 3.15594 2308.43 122.061 3.09395 2397.85 136.474 3.16807 3268.49 276.398 3.35406 3432.57 302.853 3.16319 3762.2 356.017 3.00127 3933.12 383.851 3.05417 4714.02 510.99 3.93238 8821.16 1173.24 4.39456 9453.61 1274.58 4.59545 9822.83 1332.5 4.78639 +CM dss 0 36 l poly3 -248.054 0.159142 5.39713e-07 -3.60512e-11 error 3.234 0.00268958 6.41884e-07 4.18876e-11 +CR dss 0 36 l poly2 3.34806 -0.00132789 1.8296e-06 error 0.254141 0.00129271 9.12622e-07 + +# ROU: dss 0 37 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 0 param+error -304.467 16.2861 0.162116 0.00839009 1940.69 219.541 70.2937 25.4123 1908.27 0.0540933 7.97434 0.0231499 20251.8 0.0231499 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 1 param+error 4219.63 2309.53 -1.74692 1.11454 714.128 50.543 49.6897 11.0232 2039.9 0.0924763 8.28799 0.0787316 3821.36 0.0787316 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.26379 1.1616 0.00172385 0.000496471 78.9258 24.4135 88.2091 95.1712 2293.11 0.165934 8.16104 0.099317 1010.85 0.099317 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 3 param+error 126.673 0.823206 -0.0518964 0.000339269 26.5702 30.1151 13.199 5.69529 2382.97 0.707716 7.85454 0.324161 90.8434 0.324161 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 4 param+error -61.1854 513.523 0.0293189 0.156104 5.75478 4.78531 32609.3 32560.1 3255.51 0.468519 8.55296 0.308207 106.999 0.308207 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 5 param+error 9.85284 10.2168 0.00298152 0.00296454 24.6377 22.0306 17.3475 12.9813 3420.78 0.461977 8.47418 0.276268 182.679 0.276268 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 6 param+error -572.627 300.632 0.151438 0.0793896 18.0185 5.15769 60.0045 47.6462 3752.87 0.16893 8.48262 0.131811 334.937 0.131811 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 7 param+error 16.5427 61.1906 -0.0040607 0.015448 12.54 6.33006 6.4502 16.1139 3927.7 3.51386 8.07768 1.06183 26.9755 1.06183 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.52163 0.571969 0.00137614 0.00012051 19.2104 7.23157 47.9178 24.0006 4717.25 0.504232 10.7943 0.325401 129.9 0.325401 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 9 param+error 13.344 0.824862 0.00154976 9.56377e-05 47.8781 10.7314 49.0953 14.7735 8741.65 0.478366 10.8311 0.302142 193.303 0.302142 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 10 param+error -28.2125 17.2649 0.00301624 0.00183865 0.549629 0.173707 92237 46448.3 9347.73 1.28975 11.5683 1.07423 5.62477 1.07423 +CL dss 0 37 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.820257 0.440313 9.3678e-05 4.61775e-05 28.9447 4.79037 65.9176 16.7772 9697.31 0.468343 11.3322 0.312274 124.372 0.312274 +CP dss 0 37 l pakw 12 1908.27 59.541 3.02376 2039.9 80.997 3.14121 2293.11 122.061 3.09076 2382.97 136.474 2.97402 3255.51 276.398 3.2356 3420.78 302.853 3.20608 3752.87 356.017 3.21066 3927.7 383.851 3.0585 4717.25 510.99 4.09847 8741.65 1173.24 4.29058 9347.73 1274.58 4.62985 9697.31 1332.5 4.56418 +CM dss 0 37 l poly3 -249.204 0.163066 -7.66412e-07 8.09441e-11 error 3.0913 0.00260219 6.27509e-07 4.13842e-11 +CR dss 0 37 l poly2 3.05703 1.64814e-05 8.86116e-07 error 0.24138 0.00126361 8.96149e-07 + +# ROU: dss 0 38 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.95975 1.02165 0.00216535 0.000561997 2091.3 228.334 56.2507 16.1481 1860.04 0.0530524 7.73718 0.0225669 20599.5 0.0225669 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 1 param+error 300.133 3.8637 0.151066 0.00201212 766.777 46.6235 54.5213 6.47205 1990.03 0.0857936 7.99574 0.0562556 4030.82 0.0562556 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 2 param+error 3.31687 0.581048 0.00146035 0.000258502 90.9511 11.4791 60.0536 15.435 2240.81 0.103457 7.8837 0.0677238 1040.74 0.0677238 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 3 param+error -358.27 141.35 0.151959 0.0598726 15.9447 2.82155 69.2817 39.1742 2329.67 0.312646 7.87361 0.222797 103.659 0.222797 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 4 param+error -997.065 1463.92 0.321652 0.455524 13.4552 10.9804 31865.7 31868.1 3188.14 0.730492 8.1532 0.332874 104.444 0.332874 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 5 param+error -261.517 336.918 0.082989 0.0996064 49.0515 23.9638 14.7136 7.28993 3351.41 0.497447 7.6685 0.300902 155.909 0.300902 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.458718 5.9957 0.000394988 0.00161926 95.2711 90.7846 7.86363 1.7102 3676.4 0.37082 7.99708 0.162311 258.725 0.162311 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 7 param+error -35.7182 48.7369 0.00929666 0.0125667 12.5398 11.0969 8.01934 2.11355 3847.08 0.57753 7.09296 0.342607 26.4407 0.342607 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.5197 7.63544 0.00142306 0.00164186 28.216 10.6791 29.7821 11.3001 4618 0.504 9.96743 0.312455 135.322 0.312455 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.8558 10.556 0.00126261 0.00122117 31.3282 7.76353 284.867 600.89 8609.29 0.388968 10.8274 0.276524 209.79 0.276524 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 10 param+error 41.097 56.2901 -0.00442014 0.00609164 3.3 3.13594 15.9475 6.77352 9218.44 2.15338 9.91804 1.74846 3.90798 1.74846 +CL dss 0 38 l M:PF-B:L-L:GCDFED-P:G 11 param+error -1114.14 3.76221 0.116118 0.000391571 49.7368 6.64609 46.6612 7.32331 9568.17 0.633113 10.9857 0.324617 104.86 0.324617 +CP dss 0 38 l pakw 12 1860.04 59.541 2.9649 1990.03 80.997 3.06534 2240.81 122.061 3.025 2329.67 136.474 3.02206 3188.14 276.398 3.13901 3351.41 302.853 2.95417 3676.4 356.017 3.08449 3847.08 383.851 2.73754 4618 510.99 3.85846 8609.29 1173.24 4.26463 9218.44 1274.58 3.91785 9568.17 1332.5 4.34702 +CM dss 0 38 l poly3 -242.042 0.161764 2.43613e-07 5.86688e-12 error 2.97715 0.00256061 6.29291e-07 4.21505e-11 +CR dss 0 38 l poly2 3.08162 -0.000765939 1.26955e-06 error 0.23559 0.00120318 8.46875e-07 + +# ROU: dss 0 39 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 0 param+error -574.674 10.5658 0.298098 0.00538127 1555.02 38.1119 291.777 68.9119 1928.2 0.0220571 7.84319 0.0139374 20867.9 0.0139374 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 1 param+error 306.265 4.24081 0.149621 0.00204022 692.17 35.6928 72.0677 9.00275 2057.57 0.0781054 8.07006 0.0551364 3990.94 0.0551364 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 2 param+error -211.56 600.75 0.0941974 0.256896 126.533 58.3945 34.5009 26.6837 2307.66 0.237362 7.8771 0.121241 1024.99 0.121241 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 3 param+error 54.2029 218.31 -0.0220872 0.0900909 8.63944 3.78428 35.6177 43.6539 2395.17 0.306952 7.81758 0.242669 104.176 0.242669 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 4 param+error 752.706 119.537 -0.21854 0.0364883 6.00323e-08 3.43512 15385.6 21163.6 3254.37 0.279965 8.12882 0.292408 108.59 0.292408 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 5 param+error 251.787 138.404 -0.0673661 0.0402596 74.25 55.5896 8.15269 1.21438 3418.52 0.316651 7.58952 0.217606 148.285 0.217606 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 6 param+error -49.8578 421.112 0.0135166 0.111431 13.2168 8.40044 31.3632 41.614 3746.33 0.192651 8.28212 0.173895 285.142 0.173895 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 7 param+error 7.75214 99.3698 -0.00192247 0.0251381 0.217752 0.752278 37223.2 37054.2 3918.86 0.457076 7.70054 0.29174 30.0528 0.29174 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 8 param+error -1279.25 468.456 0.272418 0.0986909 20.0117 3.83445 47049 34294.6 4706.97 0.390617 10.8791 0.23282 136.07 0.23282 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 9 param+error 13.6724 10.7646 0.00153605 0.00121392 49.5193 12.5714 45.213 16.4406 8834.24 0.504096 10.3673 0.323701 185.489 0.323701 +CL dss 0 39 l M:PF-B:L-L:GCDFED-P:G 10 param+error -1534.69 4.0068 0.155768 0.000406193 31.666 5.06832 96.4473 36.6859 9822.58 0.498295 11.8351 0.288474 124.777 0.288474 +CP dss 0 39 l pakw 11 1928.2 59.541 3.04076 2057.57 80.997 3.12385 2307.66 122.061 3.04037 2395.17 136.474 3.01446 3254.37 276.398 3.10794 3418.52 302.853 2.89767 3746.33 356.017 3.15392 3918.86 383.851 2.92878 4706.97 510.99 4.11832 8834.24 1173.24 3.93655 9822.58 1332.5 4.52811 +CM dss 0 39 l poly3 -262.076 0.169325 -1.42676e-06 7.31697e-11 error 2.98504 0.00249774 6.0024e-07 3.94009e-11 +CR dss 0 39 l poly2 3.13526 -0.000871666 1.38945e-06 error 0.240115 0.00123751 8.92073e-07 + +# ROU: dss 0 40 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 0 param+error 75.2122 77.269 -0.040234 0.0413572 1539.45 39.6621 254.039 59.697 1845.27 0.0216541 7.80422 0.0178736 20923 0.0178736 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 1 param+error 299.608 4.19303 0.150891 0.00231307 750.07 40.263 55.4565 5.62915 1976.59 0.0813879 7.98277 0.0553496 3938.26 0.0553496 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 2 param+error 3.79569 2.29501 0.00143621 0.00112832 100.99 16.5359 41.7469 10.8788 2229.93 0.121955 7.9479 0.0974862 1018.71 0.0974862 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 3 param+error 0.291129 0.203084 0.000117184 8.51866e-05 4.34313 0.403449 8906.88 3203.46 2318.62 0.213109 8.02445 0.166674 108.729 0.166674 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 4 param+error 549.416 160.739 -0.160946 0.0500085 44.7282 25.0957 6.36846 5.51188 3191.91 1.30948 7.69005 0.527261 77.6679 0.527261 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 5 param+error -746.373 404.515 0.225616 0.119218 15.4791 8.35564 102.413 245.793 3358.1 0.408894 8.27404 0.290545 160.808 0.290545 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.419323 0.385334 0.000115059 0.000103808 17.316 1.17182 19.0316 2.26529 3692.03 0.142218 8.16791 0.12007 243.271 0.12007 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 7 param+error -21.852 77.7695 0.00582935 0.0200065 10.23 7.86049 5.67668 3.55385 3868.22 0.8976 7.01304 0.544246 21.7196 0.544246 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 8 param+error -233.729 714.886 0.0523441 0.151787 19.155 7.39459 65.1782 89.6222 4668.83 0.538546 11.2733 0.495428 125.497 0.495428 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.2444 0.787617 0.00138205 8.85623e-05 42.6674 10.8478 61.6739 26.4352 8876.5 0.540466 11.0492 0.334329 186.59 0.334329 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.0772188 1.2351 7.08789e-06 0.000129182 0.84884 0.711254 53.7533 58.3613 9522.61 2.8116 11.9826 2.21413 3.08054 2.21413 +CL dss 0 40 l M:PF-B:L-L:GCDFED-P:G 11 param+error -1770.55 4.22381 0.178478 0.00042515 30.8089 4.9053 129.057 66.5086 9892.79 0.499079 11.9343 0.2959 120.96 0.2959 +CP dss 0 40 l pakw 12 1845.27 59.541 2.97991 1976.59 80.997 3.04324 2229.93 122.061 3.02099 2318.62 136.474 3.04703 3191.91 276.398 2.89407 3358.1 302.853 3.10917 3692.03 356.017 3.06061 3868.22 383.851 2.62421 4668.83 510.99 4.1956 8876.5 1173.24 4.09865 9522.61 1274.58 4.45935 9892.79 1332.5 4.45162 +CM dss 0 40 l poly3 -243.324 0.166459 -1.3421e-06 6.30074e-11 error 2.81274 0.0024119 5.87928e-07 3.86441e-11 +CR dss 0 40 l poly2 3.14005 -0.00134532 1.81043e-06 error 0.235043 0.00119132 8.42366e-07 + +# ROU: dss 0 41 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 0 param+error 343.678 639.117 -0.181685 0.346417 1534.55 32.1376 232.975 38.4931 1810.61 0.0207214 7.83415 0.0147589 20746 0.0147589 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 1 param+error -3427.39 1975.95 2.04059 1.0003 681.598 38.3977 95.7131 26.2422 1942.89 0.0826247 8.22559 0.068969 4008.16 0.068969 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 2 param+error 3.71728 0.587032 0.00199431 0.000272463 133.564 19.3598 29.5366 4.60789 2199.13 0.134665 7.8928 0.0783868 981.88 0.0783868 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 3 param+error -6.19334 176.093 0.00300255 0.0758762 9.14343 4.06828 46.4918 56.332 2289.05 0.342486 7.94342 0.28767 100.853 0.28767 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 4 param+error 102.846 354.428 -0.0209221 0.111462 48.5092 44.1084 6.49544 3.57325 3165.57 0.863487 7.82211 0.534255 78.1933 0.534255 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 5 param+error 1017.67 10.6556 -0.297454 0.00318602 71.9396 46.2576 1.02103 0.0919881 3331.02 0.00996788 8.10492 0.00318266 172.805 0.00318266 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 6 param+error -249.558 307.926 0.0677669 0.0832433 9.71514 3.52784 85.2132 126.749 3665.99 0.168584 8.4037 0.13642 279.437 0.13642 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 7 param+error 10.6531 35.8619 -0.00263859 0.00927155 10.23 10.1994 8.61188 8.29729 3843.21 2.00595 7.14958 0.789581 21.025 0.789581 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 8 param+error -768.907 745.656 0.166888 0.159149 16.4558 5.27826 38906 24069.1 4647.57 0.44038 10.7095 0.299147 135.9 0.299147 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.2273 1.01294 0.00135847 0.000118032 35.2213 6.337 74.9938 24.1822 8904.82 0.405331 11.4175 0.308199 191.129 0.308199 +CL dss 0 41 l M:PF-B:L-L:GCDFED-P:G 10 param+error -0.202465 0.407426 -1.30595e-05 4.12675e-05 27.7898 3.33004 67.3544 10.6025 9928.77 0.447625 12.2097 0.309708 118.679 0.309708 +CP dss 0 41 l pakw 11 1810.61 59.541 2.97537 1942.89 80.997 3.11933 2199.13 122.061 2.98462 2289.05 136.474 3.00084 3165.57 276.398 2.92912 3331.02 302.853 3.03041 3665.99 356.017 3.13291 3843.21 383.851 2.66143 4647.57 510.99 3.96259 8904.82 1173.24 4.16902 9928.77 1332.5 4.46546 +CM dss 0 41 l poly3 -235.768 0.165099 -1.17852e-06 4.60355e-11 error 2.72007 0.00235198 5.76118e-07 3.79258e-11 +CR dss 0 41 l poly2 3.12237 -0.00119134 1.69704e-06 error 0.236095 0.00120368 8.66949e-07 + +# ROU: dss 0 42 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 0 param+error 403.81 10.1459 -0.200867 0.00516394 1507.74 33.0888 278.273 53.9241 1930.59 0.0208662 7.80258 0.0135453 20889.7 0.0135453 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 1 param+error 1791.25 1268.53 -0.562136 0.604765 893.695 95.6505 37.7108 7.15955 2061.64 0.12945 7.89753 0.079653 3820.18 0.079653 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.53386 0.687666 0.00236821 0.000303342 117.816 13.8778 36.0934 5.23911 2314.13 0.110308 7.7897 0.0714551 1018.57 0.0714551 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 3 param+error 2.83011 295.874 -0.000813663 0.121666 8.46138 8.29333 79.939 359.39 2403.14 0.497051 7.6762 0.355162 106.111 0.355162 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 4 param+error -521.169 491.077 0.167603 0.148668 9.71787 4.38067 32740.7 29943.6 3270.31 0.452332 7.99234 0.311489 99.4969 0.311489 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 5 param+error -257.002 469.875 0.0790574 0.135654 6.01109 4.22465 34041.3 34150.9 3434.29 0.297853 8.28534 0.172612 163.171 0.172612 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 6 param+error -15.9985 163.731 0.00453346 0.0430468 30.2679 28.6873 13.5754 9.6784 3765.87 0.436005 7.99133 0.217021 226.54 0.217021 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 7 param+error -260.327 244.485 0.0657194 0.0616602 1.9729 1.50495 39288 35401.9 3939.68 0.583741 6.97228 0.303005 26.6593 0.303005 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 8 param+error 332.402 460.767 -0.0671122 0.0966129 60.7199 52.2664 15.6597 3.50191 4737.54 0.493395 9.8413 0.309733 110.664 0.309733 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.3165 0.835397 0.00126372 9.30605e-05 49.596 12.9533 47.8616 15.9111 9006.7 0.646456 11.8217 0.377166 175.809 0.377166 +CL dss 0 42 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.736432 4.54045 7.70038e-05 0.000450531 34.7234 6.32234 42.8549 8.07485 10040.1 0.552922 11.6471 0.334903 114.09 0.334903 +CP dss 0 42 l pakw 11 1930.59 59.541 3.00314 2061.64 80.997 3.03434 2314.13 122.061 2.98295 2403.14 136.474 2.93609 3270.31 276.398 3.02426 3434.29 302.853 3.12908 3765.87 356.017 3.00657 3939.68 383.851 2.61809 4737.54 510.99 3.66444 9006.7 1173.24 4.26933 10040.1 1332.5 4.19128 +CM dss 0 42 l poly3 -260.386 0.16812 -1.31657e-06 3.68158e-11 error 2.91206 0.00241476 5.71826e-07 3.67206e-11 +CR dss 0 42 l poly2 3.07942 -0.000982868 1.47927e-06 error 0.233847 0.00118978 8.51932e-07 + +# ROU: dss 0 43 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 0 param+error -804.945 834.324 0.436166 0.446634 1571.06 30.9287 222.119 33.3845 1835.14 0.0203195 7.76165 0.0149625 20910.1 0.0149625 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 1 param+error 300.188 3.89755 0.149529 0.00211446 682.45 41.6421 74.345 11.673 1966.59 0.0833237 7.98966 0.0554229 4056.43 0.0554229 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 2 param+error 5.40796 1.07565 0.00231987 0.000508606 115.822 29.2465 35.8836 13.5967 2220.51 0.157842 7.73374 0.0856017 1023.13 0.0856017 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 3 param+error -397.801 387.28 0.170288 0.165842 9.74297 4.24863 23073.1 12505.6 2309.4 0.351403 7.94323 0.179807 111.567 0.179807 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 4 param+error -929.056 2294.49 0.300324 0.715499 15.2381 12.4729 31811.3 28964.5 3179.68 0.876457 8.42274 0.837278 100.994 0.837278 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 5 param+error 59.6104 165.101 -0.0120269 0.0490053 77.55 62.9717 9.50957 1.31272 3344.59 0.336072 7.60359 0.224864 138.327 0.224864 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 6 param+error 365.588 38.9193 -0.0983575 0.0105347 4.56059 105.495 1.02124 0.00059556 3673.55 0.0269315 8.43741 0.00857779 286.855 0.00857779 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 7 param+error 51.0472 1.9918 -0.0130786 0.000518862 2.15017e-08 0.904873 2843.07 26283.1 3847.6 0.358931 7.54579 0.307432 27.836 0.307432 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.51711 0.573427 0.00143069 0.000121982 22.3996 6.01873 46.2505 15.9619 4638.15 0.418764 9.92718 0.299804 134.704 0.299804 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.5113 0.815276 0.00145826 9.56504e-05 63.3241 12.2462 35.763 6.70553 8742.96 0.528958 10.5088 0.324933 180.699 0.324933 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 10 param+error 18.9222 13.2983 -0.00198125 0.00142197 3.91594 0.165919 19.7503 2.55844 9371.71 0.831612 5.10638 0.62157 4.75425 0.62157 +CL dss 0 43 l M:PF-B:L-L:GCDFED-P:G 11 param+error -0.833046 3.20863 0.000221061 0.000328394 24.3791 3.08085 81.823 16.6187 9722.73 0.403848 12.0859 0.25643 127.109 0.25643 +CP dss 0 43 l pakw 12 1835.14 59.541 2.95611 1966.59 80.997 3.04112 2220.51 122.061 2.94053 2309.4 136.474 3.0191 3179.68 276.398 3.19223 3344.59 302.853 2.88059 3673.55 356.017 3.19425 3847.6 383.851 2.85584 4638.15 510.99 3.75418 8742.96 1173.24 4.01923 9371.71 1274.58 1.96076 9722.73 1332.5 4.65223 +CM dss 0 43 l poly3 -238.678 0.163533 -6.02494e-07 4.10734e-11 error 2.93658 0.00253227 6.20545e-07 4.11832e-11 +CR dss 0 43 l poly2 2.95404 0.000380793 -5.01286e-07 error 0.234541 0.00121186 8.40813e-07 + +# ROU: dss 0 44 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 0 param+error -26262.3 25072 14.1801 13.53 1720.94 143.127 18230.3 9999.25 1830.19 0.0401814 7.82361 0.033897 20872.2 0.033897 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 1 param+error 295.709 4.2602 0.15317 0.00227917 679.83 35.0704 70.8186 8.54456 1962.61 0.0787667 8.17801 0.0554588 3928.33 0.0554588 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 2 param+error 642.203 479.644 -0.281727 0.213064 260.597 304.922 12.6226 8.2121 2219.14 0.54833 7.65364 0.195892 927.561 0.195892 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 3 param+error -358.405 336.853 0.153395 0.144227 11.1355 3.6861 23079.7 22982.3 2308.79 0.348605 7.94822 0.200541 105.066 0.200541 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 4 param+error 639.505 208.989 -0.189628 0.0650002 0.699633 37.6388 31871.4 23259.1 3188.51 0.770951 8.31846 0.561756 88.2058 0.561756 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 5 param+error 455.326 86.0216 -0.129858 0.0257459 2.11935e-06 37.8006 9904.68 20176.2 3354.64 0.197758 8.493 0.194323 151.258 0.194323 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 6 param+error 71.9032 326.129 -0.0191562 0.0876994 80.8496 80.0641 7.01144 1.92278 3692.21 0.350616 8.15014 0.163451 201.129 0.163451 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 7 param+error 18.3876 26.1572 -0.00465656 0.00671576 4.01609e-07 0.844367 9969.44 33752.3 3868.48 0.451486 8.35903 0.381565 21.2405 0.381565 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.06242 6.05181 0.00132933 0.00128258 14.3441 3.9093 65.3505 27.393 4679.9 0.394042 11.2896 0.30289 130.967 0.30289 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 9 param+error 2467.86 729.808 -0.267772 0.0799262 82.5 54.1604 18.0789 2.99617 9092.36 0.46462 11.0868 0.274685 141.6 0.274685 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 10 param+error 12.5567 58.6461 -0.00125832 0.005976 0.471656 0.32129 95.7251 269.41 9775.35 1.24208 9.97917 1.15688 5.83412 1.15688 +CL dss 0 44 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.583049 3.89352 6.16499e-05 0.000381403 37.2428 8.59749 41.3096 10.1352 10165.7 0.702798 12.3677 0.361139 102.056 0.361139 +CP dss 0 44 l pakw 12 1830.19 59.541 2.98011 1962.61 80.997 3.10791 2219.14 122.061 2.8958 2308.79 136.474 3.00267 3188.51 276.398 3.09735 3354.64 302.853 3.15402 3692.21 356.017 3.01087 3868.48 383.851 3.07977 4679.9 510.99 4.11057 9092.36 1173.24 3.84506 9775.35 1274.58 3.44371 10165.7 1332.5 4.25719 +CM dss 0 44 l poly3 -241.528 0.167337 -1.62994e-06 3.86372e-11 error 2.61477 0.00222716 5.37138e-07 3.47e-11 +CR dss 0 44 l poly2 2.99492 7.01291e-05 4.48401e-07 error 0.236152 0.00123088 8.65966e-07 + +# ROU: dss 0 45 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 0 param+error -132.51 8.21489 0.0745519 0.00432645 1497.61 40.8565 293.291 79.8815 1862.64 0.0224644 7.73719 0.0140187 20943.8 0.0140187 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 1 param+error 297.585 4.33424 0.149494 0.00225506 653.795 31.2283 83.8084 10.9934 1994.96 0.0736962 8.02359 0.0531548 3990.44 0.0531548 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 2 param+error -376.548 533.589 0.16943 0.233876 93.9283 60.5758 64.8188 137.821 2250.46 0.264923 7.71436 0.13465 1044.23 0.13465 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 3 param+error -75.8195 419.756 0.0322749 0.177275 14.9654 11.8911 29.1069 48.8631 2340.67 0.561268 7.63134 0.395541 104.54 0.395541 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 4 param+error -12.306 159.202 0.014813 0.0489133 52.14 35.9193 13.3761 2.08897 3216.51 0.498027 7.09265 0.354272 72.5217 0.354272 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 5 param+error -3984.03 10.5115 1.17509 0.00308573 37.6535 1.99715 20617 17528.7 3381.43 0.222852 8.52869 0.197402 191.367 0.197402 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 6 param+error -1561.41 303.381 0.417079 0.0810432 18.9946 2.69158 37070.2 36269 3715.27 0.143475 8.37853 0.0897669 334.68 0.0897669 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 7 param+error 0.175714 1.86388 4.26306e-05 0.000475841 0.381546 0.592756 176.558 2741.67 3890.2 0.434496 7.73063 0.326578 29.3988 0.326578 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 8 param+error 5.79226 6.34275 0.00130144 0.00134001 21.5272 6.28137 43.9481 15.3308 4695.1 0.451126 10.5707 0.31666 131.534 0.31666 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.166 0.803499 0.00137207 9.04604e-05 44.8001 11.0122 52.2369 18.0605 8941.72 0.551787 11.1634 0.347007 178.597 0.347007 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 10 param+error -35.4158 75.9215 0.00367197 0.00786815 0.790773 0.249123 94836.9 64198.5 9586.87 1.52103 14.0011 1.2463 5.23487 1.2463 +CL dss 0 45 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.79442 0.421586 8.25994e-05 4.2433e-05 26.3435 3.60417 75.8004 16.6367 9960.73 0.439336 11.497 0.294582 119.258 0.294582 +CP dss 0 45 l pakw 12 1862.64 59.541 2.94207 1994.96 80.997 3.04653 2250.46 122.061 2.92109 2340.67 136.474 2.88693 3216.51 276.398 2.66049 3381.43 302.853 3.1945 3715.27 356.017 3.12944 3890.2 383.851 2.8834 4695.1 510.99 3.91996 8941.72 1173.24 4.08996 9586.87 1274.58 5.13432 9960.73 1332.5 4.21969 +CM dss 0 45 l poly3 -244.627 0.165301 -1.15347e-06 4.54854e-11 error 2.66885 0.00226297 5.46916e-07 3.56812e-11 +CR dss 0 45 l poly2 2.96761 -0.000473974 1.27198e-06 error 0.232883 0.00120785 8.55664e-07 + +# ROU: dss 0 46 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 0 param+error 3.90555 0.768213 0.00215878 0.000417845 1518.93 36.7997 278.625 63.4845 1816.36 0.0214226 7.70209 0.0136329 20954 0.0136329 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 1 param+error 299.325 4.35098 0.154766 0.00236643 649.863 30.9378 79.6756 9.92196 1947.22 0.0733548 7.96051 0.0522907 4037.33 0.0522907 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 2 param+error -3.38369 361.406 0.00511305 0.161828 74.2625 9.41845 95.065 48.4944 2200.19 0.0972107 7.88901 0.0765231 1057.39 0.0765231 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 3 param+error -25.9121 153.564 0.0114665 0.0661881 10.1175 3.4249 47.9858 40.7918 2289.04 0.313092 7.83155 0.239878 105.141 0.239878 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 4 param+error 358.88 167.494 -0.10173 0.0528197 4.98294 9.37546 22.1786 52.0756 3154.42 0.539041 8.36229 0.432201 93.5144 0.432201 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 5 param+error -931.792 460.822 0.283265 0.137538 15.2223 4.25514 33078.4 26778.1 3318.77 0.274673 8.40251 0.172012 182.812 0.172012 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.520829 0.247078 0.000125478 7.19111e-05 5.13943 0.452238 15978.4 5380.74 3647.54 0.11868 8.14285 0.0911369 300.497 0.0911369 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 7 param+error 13.6546 26.8216 -0.00347645 0.00703886 10.889 5.56409 6.47708 1.98594 3819.78 0.726681 8.05848 0.540953 20.3926 0.540953 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 8 param+error 255.45 570.117 -0.0522666 0.122731 10.337 4.97066 82.8172 160.083 4605.41 0.404587 10.611 0.346318 139.737 0.346318 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.8575 9.027 0.00140768 0.00103269 73.8978 10.8605 33.6744 4.41898 8704.84 0.535312 10.4234 0.322338 165.711 0.322338 +CL dss 0 46 l M:PF-B:L-L:GCDFED-P:G 10 param+error -1188.98 3.34746 0.122333 0.000344118 33.3654 5.05327 77.065 22.5843 9685.95 0.48565 11.5596 0.283242 117.557 0.283242 +CP dss 0 46 l pakw 11 1816.36 59.541 2.94601 1947.22 80.997 3.04323 2200.19 122.061 3.01295 2289.04 136.474 2.99003 3154.42 276.398 3.18413 3318.77 302.853 3.19814 3647.54 356.017 3.09708 3819.78 383.851 3.06399 4605.41 510.99 4.03033 8704.84 1173.24 3.98517 9685.95 1332.5 4.43963 +CM dss 0 46 l poly3 -236.698 0.163977 -5.13582e-07 3.22201e-11 error 2.80926 0.00243975 6.02524e-07 4.03563e-11 +CR dss 0 46 l poly2 2.99149 0.000146165 6.59428e-07 error 0.236052 0.00124201 8.96592e-07 + +# ROU: dss 0 47 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 0 param+error -490.167 555.767 0.26491 0.295008 1521.37 34.7319 270.061 56.5634 1849.48 0.0211494 7.72056 0.0147396 20901.2 0.0147396 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 1 param+error 292.611 3.52092 0.147525 0.00180967 737.558 77.2851 57.3073 13.8946 1981.35 0.115751 8.0069 0.0645852 3978.69 0.0645852 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 2 param+error -724.778 590.272 0.324406 0.260499 77.8242 28.4831 239.012 979.93 2235.88 0.147479 7.83488 0.0910876 1049.48 0.0910876 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 3 param+error -305.478 430.396 0.129907 0.183048 9.57722 4.702 23234.8 20443.7 2325.42 0.375942 8.02511 0.193163 111.583 0.193163 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 4 param+error 233.788 195.968 -0.062177 0.0608839 4.48082 2.37599 31730.4 30496.8 3194.04 0.375609 8.21862 0.289786 102.518 0.289786 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 5 param+error 449.356 116.063 -0.126715 0.0344229 1.34993e-06 3.12326 16806.4 25192.2 3357.88 0.172749 8.21287 0.169958 192.274 0.169958 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 6 param+error -616.445 328.769 0.16616 0.0883661 9.49807 3.16503 36888.4 31676.7 3687.91 0.161147 8.36443 0.131452 299.67 0.131452 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 7 param+error -96.6337 1.91217 0.0248799 0.000490621 10.251 5.89888 12.3461 6.25302 3861.99 1.48254 7.88896 0.618194 21.7672 0.618194 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.83007 7.64753 0.00148995 0.00163594 21.8263 10.5177 33.3767 17.9375 4641.25 0.511929 10.434 0.330739 133.809 0.330739 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 9 param+error 13.0776 0.796662 0.00154885 9.25095e-05 49.5816 7.39799 46.2935 7.85165 8672.31 0.418661 10.1784 0.282728 187.064 0.282728 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 10 param+error 5.78097 41.847 -0.000605995 0.00448258 1.39332 1.02222 44.6027 49.315 9290.84 3.89056 11.559 2.33378 2.77221 2.33378 +CL dss 0 47 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.800727 3.19341 9.6378e-05 0.000329621 27.7839 3.35866 65.3437 10.5376 9642.45 0.404101 11.0111 0.252198 125.726 0.252198 +CP dss 0 47 l pakw 12 1849.48 59.541 2.91971 1981.35 80.997 3.02989 2235.88 122.061 2.96835 2325.42 136.474 3.0417 3194.04 276.398 3.12762 3357.88 302.853 3.12778 3687.91 356.017 3.19028 3861.99 383.851 3.01129 4641.25 510.99 3.99661 8672.31 1173.24 3.9648 9290.84 1274.58 4.51346 9642.45 1332.5 4.30534 +CM dss 0 47 l poly3 -235.991 0.159156 3.96573e-07 -2.73326e-12 error 2.87093 0.0024655 6.03925e-07 4.02977e-11 +CR dss 0 47 l poly2 2.97285 0.000161721 6.74799e-07 error 0.234647 0.00123138 8.72992e-07 + +# ROU: dss 0 48 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 0 param+error -377.78 10.1247 0.206428 0.00537739 1521.7 42.2423 260.157 63.7653 1846.61 0.0233102 7.85236 0.0144578 20537.2 0.0144578 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 1 param+error 295.152 4.1555 0.149986 0.00221172 663.232 33.0487 78.3163 10.0473 1978.4 0.0770759 8.15273 0.0549906 3907.28 0.0549906 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 2 param+error 3.43047 0.582189 0.00177771 0.000264999 91.9369 12.0459 56.8846 14.716 2232.15 0.106189 7.90156 0.0699617 1018.94 0.0699617 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 3 param+error -55.118 145.061 0.0238218 0.0616753 5.56617 1.91606 22653.6 11675.8 2321.24 0.268129 8.02706 0.175979 108.033 0.175979 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 4 param+error -148.318 292.68 0.0564314 0.0909171 7.69098 3.22676 31785.3 31704.3 3195.19 0.433823 8.89145 0.344767 102.091 0.344767 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 5 param+error 9.63288 0.720226 0.00300056 0.000231399 20.9525 13.6401 20.5555 10.7737 3361.49 0.36389 8.22359 0.237051 188.881 0.237051 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 6 param+error -767.401 381.875 0.20599 0.102392 18.9462 5.37124 73.8678 74.7283 3696.16 0.175278 8.60956 0.148276 337.94 0.148276 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 7 param+error -63.6204 181.192 0.0163482 0.0464099 1.04271 1.16348 148.062 2906.69 3871.43 0.474132 8.12773 0.421484 35.7241 0.421484 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.76737 7.73664 0.00142779 0.00164348 11.8953 6.33666 109.817 197.697 4672.86 0.441335 10.7737 0.313046 138.016 0.313046 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.9335 0.772886 0.00135171 8.78179e-05 38.014 6.77138 67.9733 19.3415 8836.84 0.427048 11.7025 0.296422 183.42 0.296422 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 10 param+error 7.46804 32.1318 -0.000773872 0.00337594 1.14292 0.773961 56.1022 65.3337 9470.69 2.15426 10.3922 1.97023 5.18973 1.97023 +CL dss 0 48 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.954488 4.42608 0.000131613 0.000448348 39.0244 7.31859 38.0039 6.78397 9832.98 0.602684 11.4004 0.340533 106.744 0.340533 +CP dss 0 48 l pakw 12 1846.61 59.541 2.9917 1978.4 80.997 3.10147 2232.15 122.061 2.99765 2321.24 136.474 3.04246 3195.19 276.398 3.34383 3361.49 302.853 3.08887 3696.16 356.017 3.22664 3871.43 383.851 3.04292 4672.86 510.99 4.0193 8836.84 1173.24 4.42376 9470.69 1274.58 3.95433 9832.98 1332.5 4.35652 +CM dss 0 48 l poly3 -242.827 0.166086 -1.38632e-06 8.0867e-11 error 2.89878 0.00248149 6.03566e-07 3.9681e-11 +CR dss 0 48 l poly2 2.99244 0.00038554 4.53534e-07 error 0.239135 0.00125328 8.83533e-07 + +# ROU: dss 0 49 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 0 param+error 150.737 13.864 -0.075306 0.00741852 1693.46 209.121 100.539 57.513 1835.6 0.0527788 7.83757 0.0227428 20351 0.0227428 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 1 param+error 296.946 4.06567 0.150344 0.00202104 713.977 41.1407 61.2085 7.36242 1968.35 0.0876492 8.14272 0.0587024 3824.8 0.0587024 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.42715 0.656334 0.0020604 0.000285444 88.476 11.917 51.0967 11.8844 2225.12 0.108573 8.03909 0.0702979 1012.83 0.0702979 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 3 param+error -864.734 463.123 0.368839 0.197549 16.9811 6.10941 349.477 2897 2316.48 0.462973 8.39362 0.352425 107.922 0.352425 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 4 param+error 138.313 145.732 -0.0329275 0.0453497 40.2599 33.1329 10.4567 2.26968 3202.89 0.636838 7.38683 0.475319 56.9904 0.475319 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 5 param+error 148.736 472.902 -0.0389586 0.139047 12.9651 20.0497 19.3431 43.2769 3370.11 0.523077 8.47807 0.378945 142.876 0.378945 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.966459 3.23523 -3.29979e-05 0.000863659 19.7814 9.5123 18.622 6.23549 3712.17 0.263431 8.11908 0.157783 205.894 0.157783 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 7 param+error -0.167077 1.81869 -1.66739e-05 0.000464209 0.78332 0.738421 82.0659 188.225 3891.97 0.549856 8.48455 0.44093 23.1359 0.44093 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 8 param+error 509.847 202.435 -0.104303 0.0425181 53.1478 27.3705 13.7774 4.35393 4725.6 0.910538 10.6419 0.432669 94.7594 0.432669 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.2903 8.75718 0.00135004 0.000938194 53.3375 12.5142 37.0265 8.58903 9294.1 0.657978 11.7276 0.390193 149.223 0.390193 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 10 param+error -22.18 113.228 0.00222701 0.0112788 2.37492 2.55421 31.614 35.853 10004.4 4.79446 10.582 2.37649 2.30421 2.37649 +CL dss 0 49 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.779598 4.43103 8.0725e-05 0.000424367 39.9933 7.71948 40.9409 7.89235 10401.5 0.762356 12.4873 0.410238 90.4587 0.410238 +CP dss 0 49 l pakw 12 1835.6 59.541 2.99036 1968.35 80.997 3.09486 2225.12 122.061 3.03321 2316.48 136.474 3.15888 3202.89 276.398 2.71493 3370.11 302.853 3.10288 3712.17 356.017 2.9467 3891.97 383.851 3.06623 4725.6 510.99 3.77541 9294.1 1173.24 3.92087 10004.4 1274.58 3.52971 10401.5 1332.5 4.16338 +CM dss 0 49 l poly3 -246.477 0.171614 -2.86194e-06 9.09186e-11 error 2.52995 0.00213937 5.10336e-07 3.2384e-11 +CR dss 0 49 l poly2 3.09311 -0.000702664 1.01976e-06 error 0.238922 0.00122185 8.5602e-07 + +# ROU: dss 0 50 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 0 param+error -925.928 498.227 0.482125 0.256952 1499.93 41.8726 339.773 109.565 1903.36 0.0238112 7.97323 0.0158383 20226.3 0.0158383 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 1 param+error 299.298 4.18687 0.147331 0.00212152 687.981 33.1161 69.5624 7.66369 2035.24 0.0766181 8.0807 0.0548497 3925.22 0.0548497 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.0734 0.628829 0.00192445 0.000275094 120.364 14.5225 37.6086 5.83876 2289.63 0.119243 7.90292 0.0768578 983.856 0.0768578 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 3 param+error -374.113 326.738 0.155593 0.135747 11.7329 2.21628 158.121 318.606 2378.92 0.28165 7.65459 0.26186 110.875 0.26186 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 4 param+error -4.51966 188.171 0.0117959 0.0574641 5.59149 2.26139 32141.4 31013.5 3250.52 0.388277 8.05245 0.31318 94.4832 0.31318 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 5 param+error 716.139 1.99949 -0.203035 0.000626302 1.10156e-05 13.217 33743.7 30598.7 3414.54 0.173469 8.28667 0.166779 176.538 0.166779 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 6 param+error 240.239 0.808497 -0.0632878 0.000212057 11.0857 7.54966 22.2017 11.9167 3746.68 0.199561 8.32375 0.131488 265.418 0.131488 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 7 param+error 8.60186 33.4669 -0.00213064 0.00849304 12.21 7.77754 7.91618 1.46953 3921.93 0.546795 6.11112 0.40642 22.6725 0.40642 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 8 param+error 796.268 329.461 -0.165085 0.0694638 60.7199 54.2533 9.79411 3.09018 4713.37 0.649687 10.3303 0.366452 111.029 0.366452 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 9 param+error 10.8874 0.771154 0.00124633 8.78178e-05 64.2192 12.721 39.2724 8.17394 8854.06 0.623005 11.1236 0.362735 166.514 0.362735 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 10 param+error -27.3893 1.86293 0.00289555 0.000196636 4.2898 3.74916 20.7632 3.37507 9492.03 2.61141 8.88685 2.07858 2.13913 2.07858 +CL dss 0 50 l M:PF-B:L-L:GCDFED-P:G 11 param+error -736.504 2.95853 0.0745456 0.000298905 22.8912 2.69432 148.359 50.2532 9849.92 0.411406 12.3319 0.267797 122.11 0.267797 +CP dss 0 50 l pakw 12 1903.36 59.541 3.03098 2035.24 80.997 3.06985 2289.63 122.061 2.99874 2378.92 136.474 2.90334 3250.52 276.398 3.04374 3414.54 302.853 3.13054 3746.68 356.017 3.14132 3921.93 383.851 2.30516 4713.37 510.99 3.88971 8854.06 1173.24 4.19835 9492.03 1274.58 3.36122 9849.92 1332.5 4.67067 +CM dss 0 50 l poly3 -249.288 0.163293 -5.75817e-07 3.05436e-11 error 2.97278 0.00249768 5.99615e-07 3.91581e-11 +CR dss 0 50 l poly2 3.20569 -0.00193421 1.97228e-06 error 0.233427 0.00116204 8.15667e-07 + +# ROU: dss 0 51 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 0 param+error 79529.2 25.2319 -40.2896 0.0127371 3867.28 386.203 9.84843 0.557778 1949.81 0.040095 7.51196 0.024346 18829.3 0.024346 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 1 param+error 292.255 4.00018 0.140122 0.00195289 710.6 38.485 60.5209 6.85081 2081.05 0.0800202 8.07795 0.0545009 3939.9 0.0545009 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 2 param+error 217.383 364.91 -0.0884359 0.154028 79.5567 11.9606 64.0098 26.6225 2335.3 0.106587 7.90183 0.0810273 1044.04 0.0810273 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 3 param+error -98.3845 162.31 0.0405262 0.0661064 7.46129 2.84421 141.644 328.201 2423.55 0.30499 7.81916 0.249733 109.108 0.249733 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 4 param+error 304.709 86.5916 -0.083068 0.0262786 2.03405e-07 1.01581 11910.3 19846.9 3296.36 0.338967 8.55297 0.346136 78.6889 0.346136 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 5 param+error 480.557 101.682 -0.133461 0.0291921 59.7261 50.1025 4.63707 1.92065 3463.67 0.50269 8.02939 0.291452 115.818 0.291452 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 6 param+error -336.405 277.551 0.0879246 0.0724094 18.8978 10.6865 26.8189 22.1344 3799.02 0.325265 8.05617 0.239346 191.64 0.239346 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 7 param+error -0.539965 27.119 0.000178214 0.00677601 8.57973 5.06231 6.58074 2.32977 3976.06 0.846681 7.21386 0.550716 14.9751 0.550716 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 8 param+error -473.383 517.801 0.100395 0.107229 12.3656 4.26178 47872.9 46969.5 4788.56 0.425134 11.4757 0.236835 134.266 0.236835 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 9 param+error 10.7046 0.664361 0.00125183 7.85769e-05 25.5514 4.48283 178.768 111.995 9225.1 0.434741 12.8487 0.325883 169.96 0.325883 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 10 param+error 10.941 0.0410099 -0.00108883 4.74024e-07 0.428958 0.199084 134.216 74.9868 9913.1 1.68013 15.2312 1.51025 4.95898 1.51025 +CL dss 0 51 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.822124 3.83693 7.87839e-05 0.000370602 34.4068 6.55617 49.6083 10.6545 10308.6 0.716864 12.7292 0.406248 95.0184 0.406248 +CP dss 0 51 l pakw 12 1949.81 59.541 2.89203 2081.05 80.997 3.10086 2335.3 122.061 3.01638 2423.55 136.474 2.97912 3296.36 276.398 3.19996 3463.67 302.853 2.99407 3799.02 356.017 2.98448 3976.06 383.851 2.66345 4788.56 510.99 4.1751 9225.1 1173.24 4.41766 9913.1 1274.58 5.21138 10308.6 1332.5 4.34527 +CM dss 0 51 l poly3 -266.643 0.171272 -2.16329e-06 5.73794e-11 error 2.91904 0.0024068 5.6552e-07 3.57147e-11 +CR dss 0 51 l poly2 3.07805 -0.000994925 1.72033e-06 error 0.233216 0.0011881 8.42043e-07 + +# ROU: dss 0 52 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 0 param+error -128.292 12.3357 0.071506 0.00630572 1517.12 36.106 256.851 50.4255 1921.81 0.0221839 7.85207 0.0141852 20310.2 0.0141852 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 1 param+error 309.458 5.39009 0.138202 0.00310217 602.946 22.3041 103.437 11.5575 2052.55 0.0664991 8.24038 0.0552266 3955.82 0.0552266 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 2 param+error 4.31728 0.644086 0.00193221 0.000279114 74.6541 9.91387 90.3186 36.0267 2305.25 0.102341 7.9894 0.0702502 1030.14 0.0702502 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 3 param+error -308.828 222.499 0.127665 0.0918153 15.929 3.23592 44.4351 30.4799 2394.45 0.307876 8.06975 0.261681 105.67 0.261681 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 4 param+error -22.3836 373.64 0.0177893 0.113774 4.89331 3.36496 4851.73 16582.1 3258.55 0.465019 8.30565 0.35554 89.937 0.35554 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 5 param+error -463.32 516.608 0.14093 0.150067 73.59 62.43 11.2035 2.66518 3422.12 0.407368 7.51488 0.254303 140.756 0.254303 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 6 param+error -2798.88 934.724 0.741296 0.247581 27.1032 6.48324 37393.6 27785.8 3747.99 0.221525 8.46372 0.122573 279.562 0.122573 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 7 param+error -12.4885 42.1344 0.00319611 0.0106807 11.5496 11.2998 7.85908 2.23545 3919.7 0.710262 7.50728 0.403259 21.7427 0.403259 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 8 param+error 710.763 417.712 -0.147149 0.088255 35.7411 33.2146 12.2193 22.8045 4691.28 1.85612 10.4553 0.757603 123.032 0.757603 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 9 param+error 13.6336 9.15085 0.0015934 0.00104794 55.0565 10.0676 45.4419 10.3517 8692.55 0.515493 10.6793 0.322596 170.89 0.322596 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 10 param+error 2.94735 0.0232263 -0.000296954 2.26699e-07 0.329073 0.0791402 374.922 167.28 9296.98 1.3321 14.3281 1.09642 5.96374 1.09642 +CL dss 0 52 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.948463 3.47153 0.000102012 0.000357972 45.2329 8.07086 36.3458 5.86656 9652.28 0.702106 11.494 0.351704 98.6869 0.351704 +CP dss 0 52 l pakw 12 1921.81 59.541 2.98676 2052.55 80.997 3.1368 2305.25 122.061 3.04561 2394.45 136.474 3.07778 3258.55 276.398 3.18281 3422.12 302.853 2.88231 3747.99 356.017 3.25185 3919.7 383.851 2.88697 4691.28 510.99 4.03657 8692.55 1173.24 4.19902 9296.98 1274.58 5.64745 9652.28 1332.5 4.53669 +CM dss 0 52 l poly3 -248.956 0.159693 4.95477e-07 -5.87974e-12 error 2.62846 0.0021974 5.29856e-07 3.51329e-11 +CR dss 0 52 l poly2 3.12554 -0.000828387 1.62606e-06 error 0.23965 0.00123517 8.78776e-07 + +# ROU: dss 0 53 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 0 param+error 266.313 434.809 -0.131872 0.222388 1532.61 43.5728 213.31 45.263 1918.67 0.0238374 7.86973 0.0156616 20215 0.0156616 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 1 param+error 304.421 4.16732 0.143368 0.00208462 604.878 33.726 95.6395 16.7387 2049.79 0.0805422 8.31484 0.0562928 3904.72 0.0562928 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 2 param+error 1019.06 402.729 -0.432316 0.172258 120.723 23.2626 25.8616 7.07832 2304.49 0.132455 7.68612 0.0961543 990.308 0.0961543 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 3 param+error -147.233 202.12 0.0610656 0.0833683 6.6711 2.3827 805.955 23193.2 2393.73 0.298076 7.87779 0.26374 106.928 0.26374 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 4 param+error 30.4309 10.6258 -0.000490552 0.00322639 3.52876 1.29853 32676.1 25831.3 3267.81 0.388079 8.34151 0.349243 87.4438 0.349243 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 5 param+error 6.72564 0.705067 0.00200176 0.000211978 12.59 5.07202 34.9384 16.7664 3434.85 0.311355 8.09868 0.246773 137.124 0.246773 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 6 param+error 220.647 54.7048 -0.0578178 0.0144635 73.2599 51.5933 7.67669 0.606731 3771.95 0.195351 7.84814 0.135036 174.52 0.135036 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 7 param+error 21.2625 10.2717 -0.00531289 0.00260846 1.40702 4.50113 11.2944 21.1742 3948.31 1.07086 8.40228 0.566196 17.8334 0.566196 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 8 param+error 223.143 212.596 -0.0438178 0.0443621 54.12 40.0274 18.5788 2.61895 4761.04 0.434042 9.99748 0.298399 102.917 0.298399 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.4828 0.873186 0.0012701 0.000102508 33.0267 9.37047 79.9173 45.7591 9071.45 0.550753 12.2198 0.364922 178.177 0.364922 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 10 param+error 80.0321 0.269336 -0.00819394 3.17873e-05 0.00625265 1.00293 1.02553 95870.3 9730.19 1.50738 12.7037 1.44268 5.07001 1.44268 +CL dss 0 53 l M:PF-B:L-L:GCDFED-P:G 11 param+error -1059.54 3.63772 0.104486 0.000358288 32.9852 3.37503 81.463 13.114 10109.5 0.518187 12.7317 0.317874 102.225 0.317874 +CP dss 0 53 l pakw 12 1918.67 59.541 3.01417 2049.79 80.997 3.17654 2304.49 122.061 2.92226 2393.73 136.474 2.99023 3267.81 276.398 3.11965 3434.85 302.853 3.02106 3771.95 356.017 2.91321 3948.31 383.851 3.11132 4761.04 510.99 3.66535 9071.45 1173.24 4.40873 9730.19 1274.58 4.59762 10109.5 1332.5 4.61911 +CM dss 0 53 l poly3 -258.975 0.169735 -2.0978e-06 8.72412e-11 error 2.91048 0.002418 5.72848e-07 3.67103e-11 +CR dss 0 53 l poly2 3.06346 -0.000533736 1.34557e-06 error 0.239269 0.00123872 8.77666e-07 + +# ROU: dss 0 54 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 0 param+error -1458.44 1028.95 0.777209 0.545947 1435.13 134.483 1167.91 9950.49 1852.01 0.0402565 7.85307 0.0212898 20304.1 0.0212898 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 1 param+error 300.909 3.93559 0.150801 0.00214176 778.62 48.4402 49.8354 5.46814 1982.84 0.0925796 8.06507 0.0594636 3836.68 0.0594636 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 2 param+error 92.11 502.276 -0.0362045 0.221581 60.3001 6.50411 22255 15561.1 2234.71 0.103043 8.0321 0.0840495 1028.17 0.0840495 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 3 param+error 86.2841 140.942 -0.0362524 0.0599451 12.7782 9.39296 19.9151 19.2424 2323.41 0.410131 7.6605 0.278271 100.315 0.278271 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 4 param+error 126.255 1.99469 -0.0285646 0.000747827 3.78446 0.873545 13669.1 24635.7 3185.38 0.31217 7.77572 0.290781 97.2586 0.290781 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 5 param+error -2158.94 1385.44 0.645228 0.410555 22.4885 10.423 33475.7 21124.5 3348.24 0.462444 8.46557 0.209651 165.183 0.209651 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.709203 0.341249 0.000188007 9.08276e-05 9.29603 1.74374 130.42 52.4676 3674.93 0.166462 8.06615 0.129787 266.443 0.129787 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 7 param+error 7.2328 43.4564 -0.00185572 0.0112188 12.21 12.1425 8.33701 2.14432 3847.67 0.806906 7.11515 0.436869 18.6014 0.436869 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 8 param+error 91.4604 623.956 -0.0165596 0.1339 11.364 4.34071 46304.8 41903.8 4622.35 0.3725 9.9159 0.277498 141.27 0.277498 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 9 param+error 11.6498 0.988905 0.00132795 0.000118264 49.9042 12.6751 47.8698 15.9766 8680.48 0.598196 11.1732 0.370857 177.648 0.370857 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 10 param+error 42.0534 1.16056 -0.00449603 0.000124087 0.168175 0.557197 494.905 86909 9300.8 2.21176 13.9334 1.69787 5.17365 1.69787 +CL dss 0 54 l M:PF-B:L-L:GCDFED-P:G 11 param+error 0.528012 0.371859 5.46286e-05 3.8697e-05 25.7087 5.602 65.8851 22.4031 9662.96 0.542655 11.9961 0.330847 115.726 0.330847 +CP dss 0 54 l pakw 12 1852.01 59.541 3.00223 1982.84 80.997 3.08415 2234.71 122.061 3.07315 2323.41 136.474 2.93149 3185.38 276.398 2.98021 3348.24 302.853 3.24545 3674.93 356.017 3.09381 3847.67 383.851 2.7297 4622.35 510.99 3.80764 8680.48 1173.24 4.29293 9300.8 1274.58 5.35064 9662.96 1332.5 4.60492 +CM dss 0 54 l poly3 -240.311 0.161571 2.41674e-07 -1.15257e-11 error 2.95331 0.00253864 6.22611e-07 4.15254e-11 +CR dss 0 54 l poly2 3.11717 -0.00102727 1.79492e-06 error 0.237029 0.00121593 8.65242e-07 + +# ROU: dss 0 55 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 0 param+error -540.862 10.5766 0.296222 0.00568741 1521.25 38.5802 226.188 42.4909 1824.57 0.0230862 7.92761 0.014515 19935.2 0.014515 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 1 param+error -7881.86 3575.3 4.27689 1.80063 626.525 27.7881 250.829 165.255 1956.17 0.0730901 8.3447 0.0727722 3968.05 0.0727722 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 2 param+error -929.046 545.703 0.418393 0.243363 74.3418 8.13348 175.589 147.535 2210.52 0.101817 8.22147 0.0854321 1008.77 0.0854321 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 3 param+error 204.032 369.489 -0.0874155 0.158738 3.06342 4.05999 22266.7 14124.6 2299.28 0.373108 8.30342 0.234965 103.136 0.234965 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 4 param+error -364.051 814.177 0.124633 0.254415 12.449 7.28858 49.3027 121.606 3169.39 0.573946 8.19127 0.574506 90.7142 0.574506 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 5 param+error 435.338 510.902 -0.124608 0.151551 5.57414 53.6588 19.6322 496.283 3333.86 1.03889 8.3528 0.654505 157.06 0.654505 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 6 param+error -480.701 19.4517 0.130341 0.00526106 8.21336 2.55673 36647.2 25974.3 3664.76 0.175077 8.40775 0.128347 237.969 0.128347 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 7 param+error -1.97692 59.3822 0.000658308 0.0154235 10.89 10.8852 6.19366 2.57661 3838.3 0.871424 6.57014 0.570587 19.2366 0.570587 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 8 param+error 84.6164 446.702 -0.0156108 0.0956955 29.7959 13.3935 29.0114 19.8427 4627.26 0.62061 10.3386 0.44361 119.364 0.44361 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.4481 0.803469 0.0014245 9.21099e-05 33.8028 6.56902 77.3755 26.8711 8837.5 0.458934 11.8445 0.305112 173.736 0.305112 +CL dss 0 55 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.367739 3.52484 4.19448e-05 0.000355863 34.9946 7.66737 45.3326 11.4329 9862.48 0.643633 12.2224 0.34008 107.062 0.34008 +CP dss 0 55 l pakw 11 1824.57 59.541 3.02098 1956.17 80.997 3.1781 2210.52 122.061 3.12762 2299.28 136.474 3.15753 3169.39 276.398 3.10213 3333.86 302.853 3.16074 3664.76 356.017 3.17625 3838.3 383.851 2.47983 4627.26 510.99 3.88581 8837.5 1173.24 4.33348 9862.48 1332.5 4.43723 +CM dss 0 55 l poly3 -236.762 0.163006 -2.95123e-07 -1.03334e-11 error 2.84433 0.00245494 6.00432e-07 3.95756e-11 +CR dss 0 55 l poly2 3.28329 -0.00181202 2.11293e-06 error 0.240647 0.00120398 8.64273e-07 + +# ROU: dss 0 56 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 0 param+error 3320.93 32.0731 -1.75361 0.0167898 1509.54 72.7406 199.865 72.2264 1869.41 0.028242 7.7395 0.0247031 20362.5 0.0247031 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 1 param+error 301.9 3.98852 0.149099 0.00212511 700.429 43.033 60.4293 7.76201 1999.21 0.087117 8.08356 0.0579863 3876.11 0.0579863 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 2 param+error -107.082 451.007 0.0512351 0.197664 109.805 14.2392 40.6977 11.5578 2249.66 0.114314 7.76254 0.0899631 994.6 0.0899631 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 3 param+error 37.3454 184.512 -0.0154063 0.0779094 20.326 13.6235 18.2926 15.3553 2338.43 0.570443 7.1851 0.378539 94.5689 0.378539 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 4 param+error 77.7795 601.605 -0.014449 0.186173 10.561 24.3923 17.1776 68.456 3199.85 1.07353 7.78605 0.787918 83.564 0.787918 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 5 param+error 2.05385 379.894 0.00411017 0.112111 3.71903 3.45212 33508.3 32357.4 3363.11 0.289606 8.15209 0.194747 145.319 0.194747 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 6 param+error 165.017 285.871 -0.0441601 0.0768649 77.2199 71.2474 7.24228 1.73122 3692.71 0.334675 7.97082 0.170869 181.893 0.170869 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 7 param+error 33.5561 1.99173 -0.00855617 0.000517095 9.32319e-08 0.661705 2017.18 27671.7 3864.45 0.496632 8.60508 0.458443 17.0891 0.458443 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 8 param+error 6.38699 0.548091 0.00140866 0.000120286 25.3669 10.0408 34.2038 13.5832 4651.7 0.604458 10.6113 0.377553 120.664 0.377553 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 9 param+error 12.9619 0.757933 0.00150693 9.16923e-05 40.244 10.8697 58.058 25.6626 8723.15 0.529629 10.8945 0.327499 180.92 0.327499 +CL dss 0 56 l M:PF-B:L-L:GCDFED-P:G 10 param+error -3008.61 666.091 0.309302 0.06847 27.6496 3.06105 96709.3 77237.2 9687.67 0.423923 12.4799 0.217019 125.321 0.217019 +CP dss 0 56 l pakw 11 1869.41 59.541 2.98733 1999.21 80.997 3.11598 2249.66 122.061 2.98503 2338.43 136.474 2.76075 3199.85 276.398 2.97247 3363.11 302.853 3.10929 3692.71 356.017 3.03525 3864.45 383.851 3.2745 4651.7 510.99 4.0303 8723.15 1173.24 4.23863 9687.67 1332.5 4.92254 +CM dss 0 56 l poly3 -250.368 0.168093 -1.37802e-06 9.27303e-11 error 2.97686 0.00254911 6.25308e-07 4.17744e-11 +CR dss 0 56 l poly2 2.95819 -2.30064e-05 1.05157e-06 error 0.237353 0.0012583 9.1633e-07 + +# ROU: dss 0 57 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 0 param+error 8.86817 2.5736 0.000890921 0.00148404 1617.82 91.6102 116.941 30.9002 1860.64 0.0345051 7.91051 0.0190768 19269.5 0.0190768 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 1 param+error 286.966 4.0042 0.142919 0.00204882 716.157 40.6741 58.4283 6.54484 1992.9 0.0907837 8.29404 0.0611013 3604.49 0.0611013 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 2 param+error 3.3433 0.61443 0.00171643 0.000288912 69.4835 9.65382 97.4194 43.8618 2248.16 0.107265 8.1216 0.069261 991.299 0.069261 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 3 param+error -266.683 157.984 0.112867 0.0666741 12.1376 2.16531 78.2642 60.5545 2338.14 0.29763 7.93465 0.238421 99.6968 0.238421 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 4 param+error -415.827 894.811 0.137578 0.275488 6.9932 6.33602 32266.8 30067 3217.84 0.580693 7.93033 0.550922 87.16 0.550922 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 5 param+error 8.26841 7.23081 0.00258905 0.00211645 9.70755 7.64692 29.1887 24.8802 3385.52 0.369554 8.36644 0.25785 140.469 0.25785 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 6 param+error -609.351 5.21244 0.162358 0.00138885 8.30942 0.689274 37142.6 33784 3724.58 0.157199 8.76603 0.129204 223.467 0.129204 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 7 param+error 6.60404 109.994 -0.0016587 0.0279535 0.329503 0.803478 1582.9 32435.3 3904.72 0.571411 7.26784 0.334968 21.6365 0.334968 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 8 param+error 5.44509 6.15959 0.00116885 0.00129222 15.673 5.71403 59.7785 34.2271 4726.54 0.494633 11.6465 0.337028 117.626 0.337028 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 9 param+error -577.506 958.55 0.0653921 0.104335 44.2484 12.822 60.9155 38.418 9136.68 0.824411 12.7637 0.564106 144.023 0.564106 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 10 param+error -7.75165 48.5663 0.000801768 0.00492679 1.87521 2.39851 37.5131 36.9124 9816.74 5.9494 11.4077 3.2392 2.24941 3.2392 +CL dss 0 57 l M:PF-B:L-L:GCDFED-P:G 11 param+error -4.48528 3.13423 0.000568171 0.000305746 37.8691 7.08108 39.1679 6.37041 10203 0.780564 12.4443 0.393334 88.8167 0.393334 +CP dss 0 57 l pakw 12 1860.64 59.541 3.02245 1992.9 80.997 3.15912 2248.16 122.061 3.07532 2338.14 136.474 2.99845 3217.84 276.398 2.94179 3385.52 302.853 3.09346 3724.58 356.017 3.22076 3904.72 383.851 2.66174 4726.54 510.99 4.20896 9136.68 1173.24 4.47208 9816.74 1274.58 4.00321 10203 1332.5 4.37415 +CM dss 0 57 l poly3 -249.634 0.170381 -2.44006e-06 9.18305e-11 error 2.7948 0.00236688 5.68103e-07 3.64389e-11 +CR dss 0 57 l poly2 3.14325 -0.00104314 1.50551e-06 error 0.239439 0.00121553 8.54031e-07 + +# ROU: dss 0 58 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 0 param+error 2.46493 0.909904 0.00320374 0.000476837 1481.16 37.7765 181.64 27.6834 1880.8 0.0238325 7.90988 0.0147331 18720.8 0.0147331 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 1 param+error 281.698 4.39706 0.139588 0.00234487 614.772 29.0136 77.215 8.83286 2012.63 0.079979 8.26682 0.0589019 3544.87 0.0589019 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 2 param+error 151.621 636.161 -0.0621046 0.276728 61.224 18.4779 429.064 3623.19 2267.55 0.142137 8.12569 0.106425 929.169 0.106425 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 3 param+error -155.916 0.647795 0.0655878 0.000268873 11.2211 8.1533 68.1159 131.498 2357.65 0.616536 8.37929 0.320265 96.1867 0.320265 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 4 param+error 170.348 132.536 -0.0423264 0.0408983 41.2488 36.319 9.83114 1.96057 3235.97 0.637908 7.22982 0.49637 51.6708 0.49637 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 5 param+error -161.207 600.007 0.0511762 0.174803 6.42404 4.76973 133.539 784.064 3400.12 0.339177 8.63125 0.298289 146.172 0.298289 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 6 param+error 226.859 73.9394 -0.0599185 0.0196275 78.2097 78.1009 5.7695 1.02448 3734.91 0.267012 8.23199 0.145523 186.319 0.145523 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 7 param+error 30.4362 22.5489 -0.00764976 0.0057493 5.93057e-07 0.629149 3301.03 24157.6 3910.51 0.45633 8.29749 0.358586 21.0894 0.358586 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 8 param+error -11.0306 810.377 0.00469357 0.17061 22.2831 18.7564 38.73 63.636 4711.66 0.926554 10.5584 0.6008 114.528 0.6008 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 9 param+error 10.8272 8.48715 0.00123046 0.000949977 63.0669 12.6709 34.2742 6.3315 8894.56 0.698293 11.4534 0.394139 140.9 0.394139 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 10 param+error 4.22071 0.0159489 -0.000421271 1.72093e-07 0.904674 0.308554 85.1972 27.5314 9532.94 1.8998 11.5795 1.35967 4.9503 1.35967 +CL dss 0 58 l M:PF-B:L-L:GCDFED-P:G 11 param+error -2219.3 591.928 0.223203 0.0595197 21.9424 2.94583 98720.8 95542.7 9900.44 0.542301 14.411 0.274061 100.008 0.274061 +CP dss 0 58 l pakw 12 1880.8 59.541 2.99807 2012.63 80.997 3.12987 2267.55 122.061 3.07011 2357.65 136.474 3.16372 3235.97 276.398 2.7134 3400.12 302.853 3.23627 3734.91 356.017 3.08106 3910.51 383.851 3.10294 4711.66 510.99 3.93619 8894.56 1173.24 4.28878 9532.94 1274.58 4.35211 9900.44 1332.5 5.42986 +CM dss 0 58 l poly3 -245.84 0.164108 -9.85164e-07 5.23874e-11 error 2.98068 0.0025312 6.13263e-07 4.02616e-11 +CR dss 0 58 l poly2 3.15009 -0.000983007 1.71599e-06 error 0.242365 0.00125489 8.94674e-07 + +# ROU: dss 0 59 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 0 param+error 3.04213 0.880274 0.00317366 0.000459745 1414.05 36.8019 182.655 28.6985 1880.47 0.023679 7.8482 0.0148346 18258.2 0.0148346 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 1 param+error 279.24 4.73989 0.137873 0.00225538 900.614 174.141 31.2077 8.78771 2013.01 0.219807 7.92515 0.0997239 3184.95 0.0997239 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 2 param+error -634.275 624.649 0.279251 0.271752 82.6441 52.705 86.0456 231.868 2267.55 0.290422 8.02632 0.154171 904.303 0.154171 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 3 param+error 250.282 3.72413 -0.104983 0.00156261 19.9262 29.7526 8.58711 5.84159 2357.06 0.73294 8.14605 0.338349 81.2769 0.338349 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 4 param+error 199.397 197.506 -0.052832 0.0604803 39.5998 37.3436 7.65612 3.16815 3229.85 0.81659 8.235 0.466646 63.5319 0.466646 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 5 param+error -283.895 470.069 0.0869406 0.137274 6.5686 4.27392 33896.1 29279.8 3393.33 0.328768 8.64251 0.188231 144.797 0.188231 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 6 param+error 0.151241 5.36738 4.82356e-05 0.0014305 9.72644 9.68347 30.0766 37.0814 3724.93 0.274488 8.48493 0.176657 211.502 0.176657 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 7 param+error -2.7073 113.485 0.00072758 0.0289203 0.284989 0.847107 38909.2 37297.7 3898.29 0.663156 8.29552 0.409821 20.0115 0.409821 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 8 param+error -1617.57 7.30425 0.345196 0.0015465 21.5288 5.0482 374.655 976.638 4688.72 0.5035 10.7377 0.348236 113.189 0.348236 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 9 param+error 9.50681 0.656323 0.0010786 7.5598e-05 34.5159 9.85837 63.7289 29.0916 8851.93 0.640526 12.2563 0.380235 150.709 0.380235 +CL dss 0 59 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.638375 0.272173 7.03309e-05 2.78499e-05 24.0108 2.26598 66.7862 7.57647 9862.31 0.45523 11.9313 0.315227 92.8975 0.315227 +CP dss 0 59 l pakw 11 1880.47 59.541 2.97612 2013.01 80.997 3.00463 2267.55 122.061 3.04163 2357.06 136.474 3.08651 3229.85 276.398 3.11496 3393.33 302.853 3.268 3724.93 356.017 3.20612 3898.29 383.851 3.13335 4688.72 510.99 4.04821 8851.93 1173.24 4.56173 9862.31 1332.5 4.42351 +CM dss 0 59 l poly3 -243.635 0.161461 -9.16385e-08 -7.5794e-12 error 2.98009 0.00252754 6.10954e-07 3.99953e-11 +CR dss 0 59 l poly2 2.95222 0.000584968 4.85968e-07 error 0.238404 0.00126038 9.07196e-07 + +# ROU: dss 0 60 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 0 param+error 8.59226 2.21538 0.00163068 0.00125819 1472.55 88.4129 123.766 36.4438 1900.6 0.0371885 7.74618 0.0202726 17623.2 0.0202726 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 1 param+error 230.328 3.87597 0.145823 0.00323575 625.269 37.7908 59.7056 7.38482 2032.47 0.0950851 8.06592 0.0643338 3175.62 0.0643338 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 2 param+error 3.24735 0.506221 0.00141609 0.000227356 111.678 17.1658 31.7668 5.59823 2286.83 0.141495 7.89478 0.0846956 838.825 0.0846956 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 3 param+error -426.066 140.866 0.177314 0.0585217 9.57604 2.03528 1129.23 15672.4 2376.01 0.315268 7.99102 0.216693 93.4028 0.216693 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 4 param+error 404.112 377.651 -0.11486 0.115125 1.55288 3.3632 16902 24716.3 3245.72 0.49956 7.92235 0.382716 76.2721 0.382716 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 5 param+error -2005.85 1127.42 0.587518 0.327972 20.317 8.14427 34112.5 30184.4 3411.72 0.418386 8.0355 0.206291 145.309 0.206291 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 6 param+error 23.3003 3.1268 -0.00595088 0.000827666 17.8095 10.9281 17.5002 7.23393 3743.06 0.273759 8.24507 0.157138 210.16 0.157138 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 7 param+error -5.58928 38.3029 0.00150295 0.0097597 8.58 7.43327 9.50989 1.97081 3919.39 0.690891 6.02683 0.512219 14.652 0.512219 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 8 param+error 702.999 105.66 -0.145779 0.0223169 45.8683 28.0219 7.95895 2.18627 4710.58 0.56697 10.6538 0.351718 88.216 0.351718 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 9 param+error 8.817 0.770989 0.00100329 8.8108e-05 34.6732 9.06011 57.3165 21.6317 8879.5 0.669163 12.0676 0.418892 129.45 0.418892 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 10 param+error 4.73811 27.3145 -0.000467523 0.00285879 0.426264 0.366932 91.4194 213.606 9516.72 1.96541 10.6515 1.80679 3.65201 1.80679 +CL dss 0 60 l M:PF-B:L-L:GCDFED-P:G 11 param+error -1916.98 2.84183 0.193151 0.000286171 22.1223 2.40131 390.272 332.059 9883.98 0.562413 13.189 0.337093 83.7576 0.337093 +CP dss 0 60 l pakw 12 1900.6 59.541 2.94993 2032.47 80.997 3.06907 2286.83 122.061 2.99916 2376.01 136.474 3.03408 3245.72 276.398 2.99358 3411.72 302.853 3.03385 3743.06 356.017 3.10818 3919.39 383.851 2.27022 4710.58 510.99 4.00112 8879.5 1173.24 4.51562 9516.72 1274.58 3.99072 9883.98 1332.5 4.94609 +CM dss 0 60 l poly3 -249.886 0.164076 -7.09216e-07 3.13857e-11 error 2.89469 0.00244177 5.882e-07 3.84364e-11 +CR dss 0 60 l poly2 3.23652 -0.00233836 2.57915e-06 error 0.232653 0.00115287 8.15288e-07 + +# ROU: dss 0 61 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 0 param+error 82114.9 642.398 -41.1289 0.324459 6086.26 5878.79 1.83249 0.00250943 1972.33 0.240773 7.92299 0.0480548 15682 0.0480548 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 1 param+error 256.007 3.77542 0.11918 0.00195843 536.471 34.6656 71.3519 10.7549 2104.84 0.0988906 8.15715 0.0669293 2967.57 0.0669293 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 2 param+error 3.27041 0.55082 0.00150829 0.000234205 75.1184 11.2241 52.5784 14.3047 2360.11 0.125944 7.9067 0.0791775 829.129 0.0791775 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 3 param+error -130.282 138.686 0.0526648 0.0558968 14.2972 4.56291 29.0473 17.0699 2450.23 0.40958 7.77956 0.304594 76.8141 0.304594 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 4 param+error 322.742 399.689 -0.0889789 0.119267 1.68943 3.80899 32812.1 26784.9 3321.25 0.560746 8.75826 0.347245 77.3041 0.347245 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 5 param+error 202.484 134.055 -0.0531814 0.0381751 60.0198 33.3423 6.9558 3.06611 3487.42 0.737144 7.64757 0.329389 114.428 0.329389 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 6 param+error -313.493 306.773 0.0816653 0.0796684 13.3566 4.67307 47.1714 42.6823 3817.45 0.214864 8.31802 0.173157 215.194 0.173157 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 7 param+error 46.2492 22.9251 -0.0114587 0.0057281 1.71328e-06 1.72685 16416.4 24140.2 3990.51 0.485748 8.12356 0.365308 17.9981 0.365308 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 8 param+error 5.46935 5.98786 0.00120031 0.00124461 15.2324 4.54872 46.7604 17.0483 4776.94 0.525758 10.7855 0.399016 92.9438 0.399016 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 9 param+error 9.55384 7.37821 0.00110602 0.000828076 38.9344 6.52412 43.6841 7.62512 8872.09 0.605457 11.1728 0.418553 110.402 0.418553 +CL dss 0 61 l M:PF-B:L-L:GCDFED-P:G 10 param+error 0.881679 3.3541 9.95442e-05 0.000338867 24.2028 4.13517 51.3456 9.57277 9854.41 0.709712 11.6639 0.416981 71.2084 0.416981 +CP dss 0 61 l pakw 11 1972.33 59.541 2.995 2104.84 80.997 3.08397 2360.11 122.061 2.99017 2450.23 136.474 2.9424 3321.25 276.398 3.31622 3487.42 302.853 2.89632 3817.45 356.017 3.15168 3990.51 383.851 3.07877 4776.94 510.99 4.09251 8872.09 1173.24 4.27296 9854.41 1332.5 4.47099 +CM dss 0 61 l poly3 -256.662 0.160228 6.24165e-08 4.54014e-12 error 3.13106 0.0025774 6.10509e-07 3.96211e-11 +CR dss 0 61 l poly2 3.00075 -2.16436e-05 8.8179e-07 error 0.237798 0.00124576 8.97884e-07 + +# ROU: dss 0 62 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 0 param+error -216.589 483.897 0.112813 0.2454 1263.76 32.7159 159.35 22.9115 1937.03 0.0244053 7.72926 0.0169215 16151.5 0.0169215 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 1 param+error 237.221 4.19307 0.116118 0.00209271 894.017 180.819 25.4725 6.27923 2069.23 0.272369 7.71411 0.119965 2453.26 0.119965 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 2 param+error -479.574 505.821 0.206432 0.21489 95.7443 54.7386 40.7168 47.9964 2323.36 0.315288 7.73653 0.153261 744.283 0.153261 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 3 param+error -118.547 198.75 0.0487929 0.0814984 31.35 26.8442 14.4045 3.48992 2413.87 0.421495 7.05144 0.249655 62.1488 0.249655 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 4 param+error 584.371 995.715 -0.168635 0.300979 1.43663 18.2849 31288.1 19938.9 3283.09 0.76385 7.18251 0.405831 64.8485 0.405831 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 5 param+error -1009.96 435.968 0.294041 0.125316 12.9353 3.85217 34466.8 32238.2 3448.27 0.378896 8.41044 0.22084 115.152 0.22084 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 6 param+error 253.234 53.724 -0.0662916 0.0141789 65.9979 64.3178 6.85479 0.801977 3779.11 0.241676 8.26761 0.168726 153.493 0.168726 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 7 param+error -80.0902 105.86 0.0201412 0.0265853 0.894058 0.787116 33102.9 20111.1 3951.63 0.646889 7.28341 0.39665 17.318 0.39665 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 8 param+error -903.053 340.152 0.191043 0.0711353 13.0928 4.90223 829.194 28374.4 4738.23 0.618688 11.0136 0.469666 88.8803 0.469666 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 9 param+error 7.96413 0.624802 0.000933275 7.22257e-05 27.0206 2.97958 79.1127 12.9846 8797.8 0.551897 11.8071 0.435576 97.3614 0.435576 +CL dss 0 62 l M:PF-B:L-L:GCDFED-P:G 10 param+error 579.612 492.726 -0.0589632 0.0502366 30.3599 20.5834 31.1451 6.52185 9768.95 0.599029 10.767 0.439757 47.574 0.439757 +CP dss 0 62 l pakw 11 1937.03 59.541 2.92889 2069.23 80.997 2.92317 2323.36 122.061 2.93184 2413.87 136.474 2.67232 3283.09 276.398 2.72413 3448.27 302.853 3.1906 3779.11 356.017 3.13816 3951.63 383.851 2.76551 4738.23 510.99 4.18984 8797.8 1173.24 4.58059 9768.95 1332.5 4.2066 +CM dss 0 62 l poly3 -252.254 0.161234 -1.60517e-07 2.72972e-11 error 3.05468 0.00255228 6.12827e-07 4.00941e-11 +CR dss 0 62 l poly2 2.83829 6.40864e-06 9.26336e-07 error 0.22786 0.00119098 8.55228e-07 + +# ROU: dss 0 63 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 0 param+error -15697.1 3631.43 8.42287 1.95325 1228.17 49.0855 18309.3 10686.5 1838.8 0.0285889 7.55802 0.0183724 15648.6 0.0183724 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 1 param+error 222.283 3.57865 0.113878 0.00196065 453.54 26.7415 81.1974 12.9368 1970.36 0.106775 7.90236 0.0743196 2281.55 0.0743196 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 2 param+error -85.9141 381.085 0.0413841 0.168812 121.847 91.1314 21.2027 20.3813 2226.37 0.451894 7.3988 0.192555 663.975 0.192555 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 3 param+error -86.8991 314.877 0.0373268 0.134402 7.63247 5.9027 72.6985 230.012 2315.73 0.572945 7.59817 0.427206 70.2291 0.427206 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 4 param+error 30.6126 566.787 -0.0029593 0.176037 28.7096 21.7352 15.8387 8.13995 3198.76 0.963158 6.9766 0.598029 37.2847 0.598029 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 5 param+error 247.457 355.069 -0.0690749 0.10483 46.8598 46.7439 9.06438 2.84035 3365.45 0.539807 7.20457 0.332378 82.0748 0.332378 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 6 param+error 413.211 102.558 -0.110319 0.027448 68.9693 55.0551 9.20082 0.948993 3705.97 0.262346 7.45208 0.157999 137.507 0.157999 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 7 param+error 3.78634 23.3445 -0.000890459 0.0059541 6.9298 5.39662 10.3808 2.72974 3885.34 1.02509 7.70829 0.645156 9.546 0.645156 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 8 param+error 3.91043 5.32745 0.000826679 0.00112164 13.0858 5.8734 52.9049 37.8829 4712.17 0.780779 10.6024 0.520513 63.2508 0.520513 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 9 param+error 5.69544 5.24451 0.000637012 0.000567208 20.4077 2.77795 87.6332 18.4904 9203.1 0.772745 12.7642 0.562738 64.4882 0.562738 +CL dss 0 63 l M:PF-B:L-L:GCDFED-P:G 10 param+error -406.544 198.077 0.0394489 0.0191561 14.0181 2.39443 99.3115 43.1668 10282.6 1.04545 13.6691 0.714842 40.4849 0.714842 +CP dss 0 63 l pakw 11 1838.8 59.541 2.89453 1970.36 80.997 3.01529 2226.37 122.061 2.80343 2315.73 136.474 2.87208 3198.76 276.398 2.57893 3365.45 302.853 2.65278 3705.97 356.017 2.72283 3885.34 383.851 2.80549 4712.17 510.99 3.79575 9203.1 1173.24 4.38025 10282.6 1332.5 4.70208 +CM dss 0 63 l poly3 -247.918 0.172109 -2.86156e-06 1.03471e-10 error 2.60641 0.00222607 5.38531e-07 3.46382e-11 +CR dss 0 63 l poly2 3.01251 -0.00169374 2.31057e-06 error 0.228298 0.00115901 8.40894e-07 + +# ROU: dss 0 64 l +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 0 param+error -93367.7 728.429 49.2618 0.37527 27716.1 189.765 112.876 1.83412 1889.95 0.0219974 14.3075 0.0123525 112330 0.0123525 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 1 param+error 6039.16 3326.94 0.397682 1.60296 4927.11 66.0894 20208.2 12464.5 2021.26 0.0399354 14.1911 0.0352286 29051.4 0.0352286 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 2 param+error -8623.1 2708.87 3.79258 1.16963 680.325 50.4791 22712.4 17557.9 2272.35 0.0831679 14.1633 0.0372903 7539.55 0.0372903 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 3 param+error 3.9941 19.7706 0.0108662 0.00824848 271.834 38.2248 32.5178 4.38091 2362.15 0.34588 13.6198 0.217194 673.647 0.217194 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 4 param+error 2149.22 3142.27 -0.51952 0.960183 56.5786 41.4183 31314.9 31752.2 3229.27 0.413879 14.9416 0.165814 1072.74 0.165814 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 5 param+error 140.992 4.63292 0.035962 0.00175834 142.733 20.475 117.145 38.8556 3395.1 0.135776 15.2822 0.107898 2175.56 0.107898 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 6 param+error -14927.1 2463.57 3.97236 0.651295 501.916 28.4796 143.055 47.7691 3730.08 0.0841832 15.3797 0.0805029 5027.27 0.0805029 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 7 param+error -1823.04 971.502 0.465758 0.245446 50.2789 9.52573 284.39 501.179 3905.79 0.249405 15.5857 0.221806 617.761 0.221806 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 8 param+error 51.2303 1.55453 0.0123331 0.000357208 449.901 74.5555 28.1522 2.72755 4717.7 0.290207 16.83 0.140845 1689.92 0.140845 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 9 param+error 260.75 3.85551 0.0300331 0.00045477 1452.87 101.02 43.9006 2.43525 9025.87 0.221229 18.3848 0.117181 4058.34 0.117181 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 10 param+error -265.236 1.77594 0.0272449 0.000185345 63.36 59.0021 38.7305 1.02709 9689.06 0.363159 17.8924 0.27127 128.879 0.27127 +CL dss 0 64 l M:PF-B:L-L:GCDFED-P:G 11 param+error 8.67131 1.51942 0.00124302 0.000160483 1208.47 85.3051 39.6404 1.94192 10065.7 0.244454 18.9143 0.108881 3045.88 0.108881 +CP dss 0 64 l pakw 12 1889.95 59.541 5.52987 2021.26 80.997 5.46906 2272.35 122.061 5.42907 2362.15 136.474 5.21095 3229.27 276.398 5.62152 3395.1 302.853 5.73288 3730.08 356.017 5.73702 3905.79 383.851 5.79756 4717.7 510.99 6.18839 9025.87 1173.24 6.61983 9689.06 1274.58 6.46183 10065.7 1332.5 6.84752 +CM dss 0 64 l poly3 -257.854 0.172057 -2.3709e-06 9.67642e-11 error 4.77603 0.00396505 9.36674e-07 6.00912e-11 +CR dss 0 64 l poly2 5.30685 0.00121344 -1.22638e-07 error 0.428555 0.00225616 1.58312e-06 + +# ROU: dss 0 0 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 0 param+error -733.823 637.629 0.378391 0.324676 1211.36 29.449 174.712 25.7606 1930.54 0.0233939 7.63531 0.0167536 16147.7 0.0167536 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 1 param+error 244.558 3.66913 0.117123 0.00172104 410.861 32.5649 77.1322 16.6545 2062.85 0.0673035 7.87533 0.0481167 4136.89 0.0481167 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 2 param+error -314.529 582.97 0.136872 0.248443 208.177 197.972 17.4499 8.74175 2316.18 0.520849 7.74499 0.222185 615.098 0.222185 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 3 param+error -128.161 187.402 0.0531445 0.0770539 20.4249 7.99942 22.7934 14.5225 2404.55 0.625042 8.02797 0.427504 61.5434 0.427504 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 4 param+error -667.751 590.023 0.209813 0.178832 21.1647 9.33888 107.033 231.209 3263.87 1.2778 9.31144 0.933192 55.7709 0.933192 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 5 param+error 179.477 334.491 -0.0480197 0.0967126 53.46 39.1203 19.8938 3.62602 3424.93 0.400509 8.14941 0.301949 90.6977 0.301949 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 6 param+error 26.3049 127.583 -0.00672492 0.0336783 82.5 11.6781 24.5887 1.41402 3750.49 0.230565 8.56432 0.153486 174.496 0.153486 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 7 param+error -57.8266 66.5473 0.0146825 0.0168476 10.56 1.81482 20.703 4.64067 3921.75 0.9485 8.48498 0.660245 16.1527 0.660245 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 8 param+error -27.6945 154.102 0.00781176 0.0323605 32.0397 6.66943 41.9414 12.77 4705.46 1.24862 11.4642 0.768706 54.5049 0.768706 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 9 param+error 10.0594 0.597146 0.00115584 6.7967e-05 38.529 3.3243 87.8475 14.0336 8837.56 0.622118 10.164 0.424704 76.6372 0.424704 +CL dss 0 0 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.90819 0.197502 0.00010523 2.04023e-05 22.6787 1.5768 106.428 11.1935 9837.21 0.78895 10.8728 0.445718 49.1389 0.445718 +CP dss 0 0 h pakw 11 1930.54 59.541 2.93074 2062.85 80.997 3.02252 2316.18 122.061 2.9717 2404.55 136.474 3.07995 3263.87 276.398 3.56733 3424.93 302.853 3.12109 3750.49 356.017 3.27751 3921.75 383.851 3.24573 4705.46 510.99 4.37509 8837.56 1173.24 3.79508 9837.21 1332.5 4.0284 +CM dss 0 0 h poly3 -255.314 0.162985 7.55126e-08 -2.45722e-11 error 2.68017 0.00222541 5.3134e-07 3.47526e-11 +CR dss 0 0 h poly2 2.9047 0.00117412 -2.91081e-07 error 0.236111 0.00126269 9.05228e-07 + +# ROU: dss 0 1 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 0 param+error 18.3158 0.831632 -0.00481875 0.000429017 1301.92 33.2953 153.023 20.0424 1954.06 0.0233587 7.63158 0.0147877 17402.8 0.0147877 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 1 param+error 255.624 5.09563 0.120669 0.00275477 593.219 82.3261 40.2477 9.46443 2084.74 0.0982257 7.79087 0.0606673 4435.54 0.0606673 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 2 param+error 247.4 465.204 -0.100754 0.1964 143.097 26.7371 26.015 6.94095 2335.94 0.207521 7.91084 0.145129 672.287 0.145129 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 3 param+error -195.451 157.732 0.0799127 0.0642107 15.5219 3.9744 48.3901 30.811 2424.64 0.491162 7.86525 0.365296 69.2299 0.365296 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 4 param+error 13.9564 8.04853 0.00439219 0.00242598 12.432 3.44243 62.3624 30.9311 3291.59 0.619964 8.47556 0.564631 63.9663 0.564631 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 5 param+error -114.407 444.176 0.0370851 0.127331 57.09 45.5518 22.7248 5.11728 3458.83 0.432513 8.36691 0.286477 98.513 0.286477 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 6 param+error -171.623 153.569 0.0452693 0.0401143 89.0999 9.41559 28.6991 1.66065 3790.32 0.226118 8.62912 0.157655 184.514 0.157655 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 7 param+error -10.5559 51.3434 0.00264173 0.0128736 9.9 6.47919 26.4157 5.12003 3965.21 1.02206 8.35942 0.654561 15.3199 0.654561 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 8 param+error 233.583 52.4315 -0.04664 0.0109708 37.29 2.29878 30.0478 2.23911 4756.33 0.564005 10.8968 0.425525 57.6329 0.425525 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 9 param+error 9.59085 0.56059 0.00113389 6.67504e-05 34.2708 1.55086 144.171 11.1059 8854.14 0.555416 11.5507 0.494612 78.711 0.494612 +CL dss 0 1 h M:PF-B:L-L:GCDFED-P:G 10 param+error 358.486 163.769 -0.036135 0.0165894 28.9129 3.37235 72.3856 12.8927 9834.8 0.982521 10.0043 0.588964 41.4314 0.588964 +CP dss 0 1 h pakw 11 1954.06 59.541 2.92511 2084.74 80.997 2.98227 2335.94 122.061 3.02105 2424.64 136.474 3.00127 3291.59 276.398 3.21356 3458.83 302.853 3.16932 3790.32 356.017 3.26331 3965.21 383.851 3.15904 4756.33 510.99 4.10957 8854.14 1173.24 4.45191 9834.8 1332.5 3.9062 +CM dss 0 1 h poly3 -262.171 0.167003 -1.33724e-06 8.65334e-11 error 3.07353 0.00254587 6.04554e-07 3.91564e-11 +CR dss 0 1 h poly2 2.84526 0.0012431 -2.01498e-07 error 0.235196 0.00125015 8.90162e-07 + +# ROU: dss 0 2 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.1484 0.902051 0.00134207 0.000445847 1514.44 206.737 69.9579 31.3389 1947.56 0.0591948 7.77074 0.0254283 16885.7 0.0254283 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4363.27 2165.08 2.30121 1.02505 444.881 28.7544 187.641 110.494 2080.22 0.0641539 8.25662 0.0571319 4567.25 0.0571319 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 2 param+error -170.189 756.446 0.0754302 0.31902 102.089 14.0918 47.3757 21.1108 2339.65 0.159417 8.42149 0.145748 696.369 0.145748 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 3 param+error -73.178 180.566 0.03005 0.0732452 22.9295 8.76949 23.8753 14.3971 2434.34 0.848644 7.67594 0.551114 59.3246 0.551114 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 4 param+error 80.9691 574.142 -0.0153984 0.169149 21.7071 11.8033 31.8626 39.8162 3364.32 1.45299 8.5859 1.13105 44.8266 1.13105 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 5 param+error 7.74994 0.71835 0.00240628 0.000214881 37.5403 6.45805 34.7302 5.4151 3539.37 0.694528 9.57639 0.427283 90.6695 0.427283 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 6 param+error 178.932 209.19 -0.0453965 0.0533917 77.55 2.65362 33.1092 3.01922 3891.64 0.325407 9.75694 0.246712 146.06 0.246712 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 7 param+error 54.8544 18.4175 -0.0133104 0.00450802 9.56925 7.30723 19.2917 2.69795 4073.23 0.963527 9.95775 0.613344 14.569 0.613344 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 8 param+error 181.132 55.6723 -0.0347115 0.0112529 34.3454 27.9876 39.335 6.06428 4905.45 1.0775 12.1798 0.632788 49.7619 0.632788 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 9 param+error 9.93254 0.683651 0.00113855 7.63255e-05 43.56 1.26092 97.0228 4.50111 9152.93 0.713241 11.5541 0.640407 50.8781 0.640407 +CL dss 0 2 h M:PF-B:L-L:GCDFED-P:G 10 param+error 247.581 49.671 -0.0240418 0.00486822 26.4 0.818174 85.5753 5.08274 10162.7 0.741001 11.7019 0.460902 39.6064 0.460902 +CP dss 0 2 h pakw 11 1947.56 59.541 2.82933 2080.22 80.997 3.00001 2339.65 122.061 3.04844 2434.34 136.474 2.77504 3364.32 276.398 3.07448 3539.37 302.853 3.42505 3891.64 356.017 3.48322 4073.23 383.851 3.55263 4905.45 510.99 4.34421 9152.93 1173.24 4.3958 10162.7 1332.5 4.58815 +CM dss 0 2 h poly3 -246.801 0.161264 -2.17132e-06 1.59346e-10 error 2.94721 0.00241487 5.64126e-07 3.58021e-11 +CR dss 0 2 h poly2 2.69117 0.00224459 -6.35445e-07 error 0.234244 0.00129862 9.4227e-07 + +# ROU: dss 0 3 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 0 param+error -31.6269 1.28188 0.0195005 0.000766595 1359.7 37.4999 102.823 9.71133 1961.33 0.0245809 7.84262 0.0155225 17131.9 0.0155225 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 1 param+error 259.765 3.60448 0.123962 0.00182804 544.338 44.4042 55.3188 9.05394 2093.61 0.0719708 8.08642 0.0476183 4643.4 0.0476183 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 2 param+error 2.97611 1.02739 0.00139143 0.000454538 185.817 42.406 22.9443 5.0105 2350.02 0.275122 8.08385 0.136971 682.676 0.136971 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 3 param+error 147.736 61.6199 -0.0594873 0.0249337 31.02 22.3424 16.0717 2.06319 2442.23 0.432846 7.59872 0.27685 56.3652 0.27685 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 4 param+error 368.166 134.729 -0.101035 0.0405325 37.2899 30.6183 15.1679 2.46744 3325.96 0.642996 8.59956 0.55216 44.5164 0.55216 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 5 param+error -973.976 7.54898 0.279686 0.00214253 37.374 6.14488 87.5497 38.1442 3491.13 0.576667 9.90075 0.371152 104.991 0.371152 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 6 param+error 350.65 443.371 -0.0907986 0.115149 79.5046 58.2641 28.4229 8.28893 3821.33 0.545308 8.78765 0.317249 152.339 0.317249 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 7 param+error -99.2118 89.0096 0.0246579 0.0220641 3.87267 0.522734 151.478 176.222 3991.56 0.839774 10.1765 0.756109 16.4824 0.756109 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 8 param+error -996.416 488.126 0.208833 0.101312 23.0945 2.50986 1049.5 3041.01 4771.21 0.647453 13.7395 0.608923 73.2502 0.608923 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 9 param+error 10.4716 0.645957 0.00123236 7.35717e-05 41.3702 2.68042 100.009 9.28065 8824.54 0.804401 11.6414 0.572085 73.3457 0.572085 +CL dss 0 3 h M:PF-B:L-L:GCDFED-P:G 10 param+error 343.089 119.779 -0.0347177 0.0121725 31.02 2.68035 68.617 5.86176 9800.12 0.640636 10.9453 0.436999 43.9304 0.436999 +CP dss 0 3 h pakw 11 1961.33 59.541 2.92149 2093.61 80.997 3.01614 2350.02 122.061 3.02244 2442.23 136.474 2.84346 3325.96 276.398 3.24256 3491.13 302.853 3.73813 3821.33 356.017 3.32634 3991.56 383.851 3.85692 4771.21 510.99 5.23543 8824.54 1173.24 4.51313 9800.12 1332.5 4.24978 +CM dss 0 3 h poly3 -247.255 0.154851 9.3674e-07 -2.88988e-11 error 3.25069 0.00269718 6.44318e-07 4.20327e-11 +CR dss 0 3 h poly2 2.67188 0.00295087 -1.2737e-06 error 0.238337 0.00132982 9.56235e-07 + +# ROU: dss 0 4 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 0 param+error 14.9188 1.19671 -0.00388299 0.000757026 1456.06 35.3639 115.456 10.6417 1961.6 0.0224078 7.64098 0.0139953 18663.8 0.0139953 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 1 param+error -10391.5 2622.25 5.15946 1.23639 531.767 25.2207 577.728 696.848 2090.63 0.0560645 8.03348 0.0511899 4994.74 0.0511899 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 2 param+error -832.284 402.511 0.354454 0.169851 108.407 11.8502 66.3656 21.1942 2336.9 0.141722 8.11834 0.103102 785.768 0.103102 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 3 param+error 13.5293 146.874 -0.00534863 0.0598126 12.2898 4.2072 43.9199 33.592 2424.43 0.42985 7.69989 0.308703 79.7088 0.308703 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 4 param+error -465.886 511.6 0.150668 0.155198 12.795 5.32088 32571.5 21162.1 3265.34 0.913661 9.88929 0.523448 62.9134 0.523448 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 5 param+error 8.05817 0.609997 0.00248982 0.000180098 28.9023 4.72277 48.0085 9.55642 3423.17 0.457942 9.25694 0.324446 113.086 0.324446 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 6 param+error 0.625537 0.528925 0.000162562 0.000141151 65.7096 7.13869 35.4977 4.18738 3741.51 0.304662 8.76282 0.139891 184.424 0.139891 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.0507924 2.15929 1.52675e-05 0.000548207 4.51114 2.42629 32.6151 17.4112 3906.06 1.08008 9.67277 0.68356 20.5724 0.68356 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 8 param+error 5.17106 0.491632 0.0013761 0.000114135 30.9371 4.76523 48.3005 7.63484 4669.02 0.753932 11.5264 0.472545 69.4374 0.472545 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1313.62 191.496 -0.148339 0.0220273 57.09 3.81646 40.4564 3.02126 8662.13 0.49421 9.01043 0.382615 73.4227 0.382615 +CL dss 0 4 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.866011 3.82659 0.000112951 0.000396019 32.01 3.59639 75.9198 3.049 9625.51 0.531348 10.2865 0.39021 53.4013 0.39021 +CP dss 0 4 h pakw 11 1961.6 59.541 2.9946 2090.63 80.997 3.14905 2336.9 122.061 3.18339 2424.43 136.474 3.01963 3265.34 276.398 3.88097 3423.17 302.853 3.63304 3741.51 356.017 3.43935 3906.06 383.851 3.79651 4669.02 510.99 4.52275 8662.13 1173.24 3.50185 9625.51 1332.5 3.9804 +CM dss 0 4 h poly3 -266.262 0.165643 2.69567e-07 -2.34177e-11 error 3.09942 0.00256778 6.14011e-07 4.06248e-11 +CR dss 0 4 h poly2 2.89946 0.00252748 -1.46984e-06 error 0.244664 0.00135009 9.69415e-07 + +# ROU: dss 0 5 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 0 param+error 862.468 780.839 -0.441625 0.402222 1497.38 31.957 166.602 20.424 1907.44 0.0218501 7.91964 0.0160174 19352.9 0.0160174 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 1 param+error 1816.46 1864.67 -0.606997 0.900448 560.637 51.9261 55.1517 15.3546 2037.41 0.0733527 8.10337 0.0613888 4983.12 0.0613888 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 2 param+error 5.64604 1.15264 0.00264401 0.000526293 212.29 43.5858 21.9022 4.17373 2285.94 0.255581 7.8111 0.127767 739.292 0.127767 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 3 param+error 245.68 246.431 -0.101853 0.102728 32.496 17.2971 9.55583 7.25854 2372.1 0.896225 7.82555 0.395987 69.7532 0.395987 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 4 param+error 624.233 85.6724 -0.182658 0.0265296 42.57 32.3657 12.1554 2.06797 3206.57 0.829724 8.26135 0.664843 42.9535 0.664843 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 5 param+error -407.509 437.097 0.125913 0.128956 56.76 7.48279 30.1447 6.6944 3364.45 0.463842 8.57826 0.386802 85.4387 0.386802 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 6 param+error -163.316 174.358 0.0444812 0.0469189 89.76 4.23392 28.9143 1.88809 3679.54 0.237312 8.57049 0.168111 173.312 0.168111 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 7 param+error 31.7686 22.3904 -0.0081014 0.00580881 7.47589 2.54325 28.8921 9.72503 3846.65 1.51711 7.10944 1.04842 14.2433 1.04842 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 8 param+error -26.5984 428.081 0.00862893 0.0923125 42.9 4.6077 38.8009 9.61998 4602.22 0.596754 10.0134 0.493106 59.7565 0.493106 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 9 param+error 335.072 358.906 -0.0361955 0.0417453 58.74 4.54297 62.851 7.68163 8557.2 0.545287 10.0462 0.417819 78.9629 0.417819 +CL dss 0 5 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.834798 2.98208 9.95144e-05 0.000312144 31.4398 1.97028 89.1536 6.88675 9509.25 0.82501 11.3485 0.492177 52.5078 0.492177 +CP dss 0 5 h pakw 11 1907.44 59.541 3.10014 2037.41 80.997 3.17521 2285.94 122.061 3.06616 2372.1 136.474 3.07364 3206.57 276.398 3.26023 3364.45 302.853 3.3877 3679.54 356.017 3.38884 3846.65 383.851 2.81271 4602.22 510.99 3.96847 8557.2 1173.24 3.93059 9509.25 1332.5 4.40164 +CM dss 0 5 h poly3 -254.869 0.16304 1.02497e-06 -6.57033e-11 error 3.08896 0.00261809 6.3891e-07 4.29252e-11 +CR dss 0 5 h poly2 3.16772 -0.000421917 9.67586e-07 error 0.243541 0.00126278 9.07978e-07 + +# ROU: dss 0 6 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.12772 0.877886 0.00232783 0.000462794 1571.11 39.8418 165.511 22.7351 1873.98 0.0237251 7.98191 0.0148049 19806.6 0.0148049 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 1 param+error -2005.24 1967.59 1.26271 0.964773 441.224 33.0318 251.859 205.189 2006.42 0.0632351 8.37258 0.053579 5113.61 0.053579 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 2 param+error -258.881 294.649 0.117002 0.128226 155.868 36.77 29.5925 9.01529 2261.86 0.236742 8.32199 0.130826 787.796 0.130826 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.257471 0.257906 0.000113697 0.000109625 6.03327 0.627793 13474.5 17911.3 2350.63 0.308623 9.06624 0.232295 83.3661 0.232295 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 4 param+error 16.9616 1.10161 0.00504347 0.000401455 14.4802 4.10107 76.615 45.5044 3236.27 0.667573 8.88944 0.594335 71.2299 0.594335 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 5 param+error 8.63819 0.810411 0.00251205 0.00023904 34.3727 11.0719 43.7918 20.14 3403.02 0.726298 9.36791 0.445333 110.937 0.445333 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1121.61 554.282 0.297774 0.146949 87.12 9.47034 41.4453 6.82199 3739.24 0.254634 9.32389 0.223463 175.122 0.223463 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 7 param+error -5.36629 68.4125 0.00141833 0.0173382 2.85046 0.898881 64.8934 72.3059 3913.03 0.64085 9.25037 0.566506 21.2712 0.566506 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 8 param+error 5.91855 0.594849 0.00146582 0.000138083 32.859 4.6121 49.6378 7.75501 4713.63 0.704158 11.0626 0.454655 77.1738 0.454655 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 9 param+error -26.0938 0.852883 0.00566067 9.68702e-05 51.8941 3.90672 81.2951 9.25604 8833.24 0.724494 10.7345 0.464484 86.81 0.464484 +CL dss 0 6 h M:PF-B:L-L:GCDFED-P:G 10 param+error -741.867 2.63533 0.0753653 0.000267082 26.0374 1.33343 252.159 39.3588 9816.16 0.736939 12.6519 0.455962 63.7867 0.455962 +CP dss 0 6 h pakw 11 1873.98 59.541 3.00204 2006.42 80.997 3.14658 2261.86 122.061 3.12339 2350.63 136.474 3.40128 3236.27 276.398 3.32462 3403.02 302.853 3.50233 3739.24 356.017 3.48417 3913.03 383.851 3.45623 4713.63 510.99 4.13505 8833.24 1173.24 4.12857 9816.16 1332.5 4.93011 +CM dss 0 6 h poly3 -241.654 0.162224 -8.65676e-07 7.00515e-11 error 3.02213 0.00256359 6.19138e-07 4.07909e-11 +CR dss 0 6 h poly2 3.05967 0.00105635 8.69299e-08 error 0.247942 0.00133716 9.72503e-07 + +# ROU: dss 0 7 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1423.17 936.249 0.72031 0.470842 1559.04 35.153 127.873 13.3214 1954.8 0.022817 8.05107 0.0167987 19250.3 0.0167987 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4251.7 2575.86 2.27661 1.2146 528.436 31.1692 156.918 74.8583 2088.96 0.0609606 8.42026 0.054958 5194.14 0.054958 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 2 param+error -58.0925 306.128 0.0283053 0.128272 164.028 41.5992 26.806 7.95673 2350.07 0.260833 8.43626 0.137381 771.707 0.137381 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 3 param+error -187.803 368.064 0.0761032 0.148907 11.9835 2.52765 83.0916 128.809 2442.83 0.391999 8.51115 0.357986 82.1761 0.357986 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 4 param+error 15.585 0.779382 0.00473149 0.000236715 20.7318 6.22207 39.5625 13.3619 3352.48 0.895499 9.6504 0.548286 60.3098 0.548286 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 5 param+error 14.8418 343.312 0.000958363 0.0968135 60.06 11.1945 22.6606 4.06708 3525.11 0.479688 9.14845 0.395983 96.6899 0.395983 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1721.69 4.63964 0.441535 0.00118938 87.45 4.77407 44.0586 1.47237 3867.49 0.250153 10.0231 0.187571 179.126 0.187571 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 7 param+error 13.9349 36.1558 -0.00338576 0.00886479 10.8898 10.607 16.2583 3.59524 4044.51 1.20087 10.6649 0.698324 13.6994 0.698324 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 8 param+error 259.912 70.537 -0.0505435 0.0144239 41.58 5.37504 33.0206 2.80452 4859.07 0.577355 12.3533 0.432909 66.5903 0.432909 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.6066 0.626522 0.0014389 7.34418e-05 42.2926 2.51339 119.924 11.7125 9019.29 0.686265 11.8042 0.505135 90.4463 0.505135 +CL dss 0 7 h M:PF-B:L-L:GCDFED-P:G 10 param+error -428.513 255.679 0.042777 0.0254111 31.6416 2.20274 128.338 29.2063 10009.6 0.930858 11.8279 0.574407 56.6214 0.574407 +CP dss 0 7 h pakw 11 1954.8 59.541 2.9462 2088.96 80.997 3.08 2350.07 122.061 3.08376 2442.83 136.474 3.11054 3352.48 276.398 3.5249 3525.11 302.853 3.3421 3867.49 356.017 3.66376 4044.51 383.851 3.90003 4859.07 510.99 4.53171 9019.29 1173.24 4.52907 10009.6 1332.5 4.61748 +CM dss 0 7 h poly3 -245.397 0.157276 -6.99349e-07 7.48824e-11 error 3.16888 0.00260435 6.11977e-07 3.92308e-11 +CR dss 0 7 h poly2 2.78525 0.0028136 -1.09655e-06 error 0.244628 0.0013645 9.87231e-07 + +# ROU: dss 0 8 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.97869 0.871569 0.00282488 0.000458863 1656.45 47.9681 155.728 23.6926 1919.24 0.0252956 8.0225 0.0152159 20189.7 0.0152159 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 1 param+error 291.969 4.30169 0.138799 0.00213522 467.839 29.0673 142.496 40.1677 2050.51 0.0588388 8.38897 0.0433494 5190.63 0.0433494 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 2 param+error -142.026 378.731 0.0646248 0.162101 147.543 38.3562 32.4807 12.2916 2301.76 0.242379 8.2749 0.136043 831.246 0.136043 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.299498 0.209841 0.000106408 8.7081e-05 6.86448 0.620183 23751.8 1222.63 2389.48 0.302217 8.35715 0.231145 87.2588 0.231145 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 4 param+error 15.8042 0.856525 0.00492325 0.00029356 21.7531 4.33764 55.64 16.3343 3242.69 0.679119 8.89094 0.551905 67.4688 0.551905 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 5 param+error -2882.52 9.30952 0.84637 0.00271351 47.1368 3.31536 273.547 141.311 3405.04 0.396552 8.70734 0.315943 128.671 0.315943 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 6 param+error -326.777 400.036 0.0870839 0.106295 95.04 4.09189 30.5021 3.36548 3729.11 0.241957 9.20622 0.192051 197.758 0.192051 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 7 param+error 74.2353 111.912 -0.0188234 0.0285022 12.54 7.99171 16.6742 5.09735 3900.29 1.06042 8.17652 0.650704 18.5661 0.650704 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 8 param+error 215.667 254.081 -0.0427704 0.0538829 49.17 6.69347 28.6536 4.66125 4679.6 0.599023 10.9037 0.430131 71.8517 0.430131 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 9 param+error 11.6327 0.600528 0.001373 7.06909e-05 44.1342 2.25752 119.343 9.72859 8763.28 0.531084 11.6376 0.393586 105.158 0.393586 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 10 param+error 14.2813 26.0319 -0.00148708 0.00275655 0.765941 0.851469 56.644 101.458 9388.81 4.23832 11.5083 3.35177 2.95828 3.35177 +CL dss 0 8 h M:PF-B:L-L:GCDFED-P:G 11 param+error -510.758 375.639 0.0523473 0.0383447 32.5646 2.32219 118.375 31.1606 9749.15 0.831355 11.7608 0.543421 60.2627 0.543421 +CP dss 0 8 h pakw 12 1919.24 59.541 3.09847 2050.51 80.997 3.23927 2301.76 122.061 3.1938 2389.48 136.474 3.22503 3242.69 276.398 3.42545 3405.04 302.853 3.35362 3729.11 356.017 3.5434 3900.29 383.851 3.14594 4679.6 510.99 4.18802 8763.28 1173.24 4.42046 9388.81 1274.58 4.36252 9749.15 1332.5 4.45287 +CM dss 0 8 h poly3 -255.777 0.164494 -1.09123e-07 -5.54321e-12 error 3.19566 0.00268548 6.46636e-07 4.24997e-11 +CR dss 0 8 h poly2 3.13192 0.000556582 3.54679e-07 error 0.250222 0.00131615 9.29168e-07 + +# ROU: dss 0 9 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.68899 0.694333 0.00186857 0.000361054 1621.24 45.0457 138.056 17.8959 1903.35 0.0242976 7.94236 0.0148737 19973.9 0.0148737 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 1 param+error 290.424 4.13988 0.140646 0.00222309 476.681 27.7114 121.134 27.1222 2035.17 0.0553133 8.22519 0.0416606 5269.48 0.0416606 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.4009 0.666019 0.00209526 0.000291518 142.806 18.822 32.8201 4.91692 2289.11 0.164378 8.18774 0.0936715 824.279 0.0936715 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 3 param+error -170.778 250.481 0.0711587 0.103962 9.38931 2.60861 23566.1 15748 2378.68 0.378437 8.25035 0.345098 86.7332 0.345098 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 4 param+error -191.881 231.37 0.0677421 0.0701538 39.8424 12.0666 25.7933 10.2608 3255.38 1.32803 8.51817 0.695992 56.6042 0.695992 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 5 param+error 8.28275 0.964766 0.00247046 0.000307284 34.5514 8.24939 35.7601 9.71419 3419.57 0.489844 9.0236 0.34376 132.902 0.34376 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 6 param+error 279.603 409.094 -0.0736222 0.108003 89.0559 68.8188 22.3587 6.7587 3752.9 0.600888 9.10195 0.326361 195.513 0.326361 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 7 param+error 33.3673 36.0758 -0.00839973 0.00911011 10.0018 9.48972 20.0155 8.33995 3927.5 1.58811 9.20651 0.764097 16.7613 0.764097 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 8 param+error 233.241 419.343 -0.0463708 0.0879142 33.4125 15.4842 35.8988 27.1943 4722.43 1.19554 12.2446 0.820276 85.4141 0.820276 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 9 param+error 11.8006 0.711488 0.00141668 8.20993e-05 59.2459 5.65945 69.3014 8.67232 8854.79 0.93856 11.8388 0.552134 90.5905 0.552134 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.571915 3.96716 -4.31779e-05 0.000408385 1.1234 0.219882 96.1158 30.8662 9490.08 1.30004 6.12766 0.985859 3.18381 0.985859 +CL dss 0 9 h M:PF-B:L-L:GCDFED-P:G 11 param+error 435.838 129.848 -0.0438488 0.0131316 36.3 1.02834 65.8998 5.21321 9846.74 0.536516 11.0336 0.378906 58.8954 0.378906 +CP dss 0 9 h pakw 12 1903.35 59.541 3.01218 2035.17 80.997 3.11701 2289.11 122.061 3.09843 2378.68 136.474 3.12065 3255.38 276.398 3.20954 3419.57 302.853 3.39804 3752.9 356.017 3.4241 3927.5 383.851 3.46189 4722.43 510.99 4.59815 8854.79 1173.24 4.49736 9490.08 1274.58 2.33825 9846.74 1332.5 4.22222 +CM dss 0 9 h poly3 -248.936 0.16343 -7.62151e-07 4.842e-11 error 3.07776 0.00259299 6.24501e-07 4.08155e-11 +CR dss 0 9 h poly2 2.88623 0.00204533 -1.50028e-06 error 0.244478 0.00131197 9.14316e-07 + +# ROU: dss 0 10 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1863.57 766.303 0.971328 0.398264 1613.03 32.9837 149.734 15.8466 1890.81 0.0211796 7.80898 0.0153504 20251.2 0.0153504 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 1 param+error -3110.44 1927.09 1.79827 0.937755 540.884 36.0371 125.711 50.5257 2022.27 0.0616804 8.09571 0.0525849 5349.22 0.0525849 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 2 param+error -303.314 569.998 0.1358 0.247092 108.462 11.949 55.6257 19.0628 2274.99 0.127157 8.10411 0.104191 870.801 0.104191 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 3 param+error -444.702 421.942 0.186165 0.176423 12.2125 4.52847 23617.7 13838.1 2364.53 0.445749 8.36022 0.250816 89.3127 0.250816 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 4 param+error -194.946 549.203 0.0690284 0.16773 25.1765 15.9841 43.5366 64.7994 3239.19 1.38158 8.65083 0.878273 72.1858 0.878273 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 5 param+error 199.172 320.11 -0.0527364 0.0934162 60.0599 37.1806 22.5146 3.77625 3404.28 0.388854 8.50387 0.312632 110.896 0.312632 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 6 param+error -246.852 489.768 0.0660123 0.130238 100.32 17.9153 28.8505 3.90387 3733.07 0.266574 8.9924 0.182877 196.496 0.182877 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 7 param+error -35.1055 73.3954 0.00900214 0.0186107 12.54 9.21881 24.7219 4.65823 3906.39 0.967195 7.99685 0.609579 14.5227 0.609579 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 8 param+error 551.813 117.192 -0.114033 0.0247749 45.87 7.26988 23.0851 2.63908 4690.74 0.501378 11.1704 0.356067 79.9394 0.356067 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 9 param+error 2007.9 582.584 -0.22421 0.0658772 69.63 7.3711 37.6176 5.15611 8810.3 0.575058 9.98438 0.392368 83.9009 0.392368 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 10 param+error -0.00319575 0.945942 1.32629e-05 9.97318e-05 0.830912 0.324618 114.707 68.5895 9438.37 3.69434 14.4209 2.3557 2.29524 2.3557 +CL dss 0 10 h M:PF-B:L-L:GCDFED-P:G 11 param+error 624.804 76.2103 -0.0631834 0.00774378 37.29 1.77873 57.1045 3.16405 9807.1 0.514407 10.5856 0.330148 56.6911 0.330148 +CP dss 0 10 h pakw 12 1890.81 59.541 2.96024 2022.27 80.997 3.06882 2274.99 122.061 3.07179 2364.53 136.474 3.16878 3239.19 276.398 3.2782 3404.28 302.853 3.22238 3733.07 356.017 3.40724 3906.39 383.851 3.02991 4690.74 510.99 4.23165 8810.3 1173.24 3.78054 9438.37 1274.58 5.4603 9807.1 1332.5 4.00809 +CM dss 0 10 h poly3 -244.723 0.16108 -2.87935e-08 9.59923e-13 error 2.93317 0.00247322 5.95066e-07 3.90218e-11 +CR dss 0 10 h poly2 3.03037 0.000390666 4.40211e-07 error 0.23891 0.00125578 8.89841e-07 + +# ROU: dss 0 11 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 0 param+error 22.0139 8.37999 -0.0138734 0.00530367 1670.38 51.0203 122.808 16.6876 1949.63 0.0250021 7.83996 0.0200268 20114.8 0.0200268 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 1 param+error -2603.54 2206.65 1.51442 1.04495 529.477 33.2168 142.852 63.3486 2079.53 0.0601105 8.15632 0.05297 5330.04 0.05297 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 2 param+error -979.341 444.498 0.41889 0.188272 96.6878 11.6049 103.259 53.4051 2327.61 0.130253 8.28473 0.0992856 888.135 0.0992856 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 3 param+error 544.127 52.8527 -0.2224 0.0216691 6.44339e-05 28.9288 1.00627 0.000256296 2413.99 0.232545 7.94401 0.203047 92.9051 0.203047 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 4 param+error 16.8649 1.16695 0.00514879 0.000422257 10.1111 2.61415 161.789 147.66 3267.72 0.554002 9.38658 0.50537 77.6184 0.50537 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 5 param+error 97.8372 456.288 -0.0230658 0.131712 64.0197 60.9868 19.9273 4.45234 3433.4 0.451701 8.75134 0.286176 106.313 0.286176 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 6 param+error 8.35244 291.377 -0.00191162 0.0767826 105.93 101.643 18.8471 1.64114 3761.89 0.25051 8.66802 0.16155 188.775 0.16155 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 7 param+error -118.245 104.14 0.029885 0.0262303 7.23172 3.9681 35.4422 33.4613 3935.5 1.30315 7.81011 0.664432 21.1844 0.664432 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 8 param+error 1188.08 211.041 -0.246519 0.0443312 50.1594 40.6878 13.5063 2.75053 4725.38 0.578131 10.493 0.384785 83.6878 0.384785 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 9 param+error 11.9477 0.829466 0.00138039 9.46884e-05 57.8553 6.34105 71.3956 12.2961 8865.86 0.783623 10.7787 0.490067 103.456 0.490067 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 10 param+error -38.1021 96.4642 0.00401181 0.0101141 0.895757 0.269779 232.148 600.095 9497.19 2.27558 11.0772 1.891 3.15248 1.891 +CL dss 0 11 h M:PF-B:L-L:GCDFED-P:G 11 param+error 546.188 434.104 -0.0548907 0.0438238 38.4571 5.22676 58.5349 14.2316 9862.44 0.816986 10.0108 0.514138 66.852 0.514138 +CP dss 0 11 h pakw 12 1949.63 59.541 3.05926 2079.53 80.997 3.17628 2327.61 122.061 3.2143 2413.99 136.474 3.07826 3267.72 276.398 3.59695 3433.4 302.853 3.34716 3761.89 356.017 3.30369 3935.5 383.851 2.97161 4725.38 510.99 3.96624 8865.86 1173.24 4.07173 9497.19 1274.58 4.20511 9862.44 1332.5 3.81331 +CM dss 0 11 h poly3 -269.124 0.171814 -1.826e-06 8.89857e-11 error 3.02179 0.00249495 5.89999e-07 3.81544e-11 +CR dss 0 11 h poly2 3.09691 0.000447612 2.06108e-07 error 0.244227 0.00126922 8.89784e-07 + +# ROU: dss 0 12 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.17909 0.860237 0.00282262 0.000462145 1626.45 42.3101 164.373 23.3554 1856.3 0.0234759 7.91903 0.0144827 20380.4 0.0144827 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 1 param+error 296.328 5.61085 0.138824 0.00309063 431.552 23.421 312.91 161.873 1987.38 0.0525078 8.23747 0.0409831 5347.02 0.0409831 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.40931 0.657597 0.00203674 0.000293031 89.7303 12.6954 69.8711 23.4595 2239.98 0.133265 8.2922 0.0838473 877.144 0.0838473 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 3 param+error -189.549 194.691 0.0805924 0.0824803 13.7112 3.8874 64.6272 61.7829 2329.53 0.449824 8.29003 0.341369 82.0749 0.341369 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 4 param+error 16.6127 0.618127 0.00524479 0.000194611 15.8345 4.07494 59.9147 24.3593 3197.23 0.59162 9.03225 0.437695 75.2654 0.437695 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 5 param+error 764.791 303.768 -0.220447 0.089569 61.7098 49.8251 13.1463 3.03033 3360.99 0.511424 9.11703 0.296347 112.994 0.296347 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 6 param+error -182.2 327.049 0.049269 0.0878279 99 8.92199 23.5865 2.24646 3689.31 0.244425 9.01039 0.171824 196.184 0.171824 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 7 param+error 63.3326 19.2686 -0.0162064 0.00500733 11.88 9.39401 13.523 1.51336 3860.21 0.62991 8.59983 0.471627 20.794 0.471627 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 8 param+error 686.988 142.02 -0.143746 0.0303156 49.8299 37.7438 18.7837 2.45322 4643.84 0.492002 10.5168 0.311511 79.9514 0.311511 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1649.45 308.54 -0.185404 0.0352409 66.66 4.00571 42.2284 3.92752 8715.53 0.464818 10.0251 0.322319 94.5891 0.322319 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.0539092 0.893067 7.22074e-06 9.52268e-05 0.732242 0.256841 134.77 82.0296 9333.21 3.11438 13.405 2.68276 2.36283 2.68276 +CL dss 0 12 h M:PF-B:L-L:GCDFED-P:G 11 param+error -291.102 3.20236 0.0301179 0.000328924 40.141 2.40836 77.1412 5.74934 9693.57 0.64282 10.4388 0.39002 71.659 0.39002 +CP dss 0 12 h pakw 12 1856.3 59.541 3.01657 1987.38 80.997 3.13785 2239.98 122.061 3.15872 2329.53 136.474 3.15792 3197.23 276.398 3.44163 3360.99 302.853 3.47425 3689.31 356.017 3.43438 3860.21 383.851 3.27834 4643.84 510.99 4.0123 8715.53 1173.24 3.85796 9333.21 1274.58 5.1688 9693.57 1332.5 4.03004 +CM dss 0 12 h poly3 -240.698 0.161922 -7.71012e-08 1.24801e-11 error 2.85976 0.00243544 5.90815e-07 3.91301e-11 +CR dss 0 12 h poly2 3.02445 0.00110958 -1.20624e-07 error 0.244275 0.00130193 9.21987e-07 + +# ROU: dss 0 13 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 0 param+error 89793.1 715.152 -46.5261 0.375899 7487.04 5643.76 1.85709 0.0167061 1909.28 0.214789 8.16698 0.04529 19613.4 0.04529 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 1 param+error 293.513 4.12133 0.140683 0.00209775 486.19 31.4708 130.837 36.2895 2040.68 0.0585612 8.06082 0.0421611 5388.56 0.0421611 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 2 param+error 1605.64 487.22 -0.687604 0.209748 337.905 314.267 11.6412 0.773548 2292.17 0.127862 7.52073 0.0907831 753.171 0.0907831 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.350393 4.03026 0.000136674 0.00167423 17.4898 9.23558 28.4385 19.3332 2380.03 0.543242 7.58948 0.299381 89.8339 0.299381 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 4 param+error 16.4408 10.9229 0.00511443 0.00334042 36.994 15.8301 18.826 7.33938 3246.43 1.12637 7.94189 0.659753 62.8346 0.659753 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 5 param+error 8.97737 8.34788 0.00282219 0.00242622 57.1533 14.0143 20.1437 3.95989 3409.56 0.730538 8.60625 0.391254 109.166 0.391254 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 6 param+error 351.034 272.876 -0.0926297 0.0723464 91.74 15.9266 17.4731 1.7532 3738.29 0.24632 8.63469 0.154408 195.494 0.154408 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 7 param+error 43.2663 13.6922 -0.010884 0.00349573 9.89999 7.34593 15.9747 1.8175 3911.37 0.720103 7.61706 0.53873 16.9927 0.53873 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 8 param+error -1793.58 1210.67 0.381396 0.255821 29.1409 8.62754 46214.3 23739.3 4698.13 0.775651 11.6129 0.3699 104.709 0.3699 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 9 param+error 13.4733 0.66254 0.00158477 8.07342e-05 50.8756 3.62838 79.6566 7.46124 8796.57 0.545129 11.2094 0.399982 123.249 0.399982 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 10 param+error 9.37474 5.34666 -0.000961562 0.000561503 2.17347 0.388617 45.326 10.2629 9431.01 4.76549 7.14894 7.95901 0.28738 7.95901 +CL dss 0 13 h M:PF-B:L-L:GCDFED-P:G 11 param+error 1.37241 0.255663 0.000163255 2.69163e-05 36.0207 2.2679 77.7436 5.18912 9779.99 0.712668 10.3492 0.404505 71.0565 0.404505 +CP dss 0 13 h pakw 12 1909.28 59.541 3.13155 2040.68 80.997 3.08845 2292.17 122.061 2.87748 2380.03 136.474 2.90243 3246.43 276.398 3.0252 3409.56 302.853 3.27626 3738.29 356.017 3.28345 3911.37 383.851 2.895 4698.13 510.99 4.40604 8796.57 1173.24 4.28282 9431.01 1274.58 2.7409 9779.99 1332.5 3.9765 +CM dss 0 13 h poly3 -253.336 0.165163 -7.33659e-07 4.30617e-11 error 3.01247 0.00252817 6.08858e-07 3.99078e-11 +CR dss 0 13 h poly2 2.95311 0.000496476 -1.33746e-07 error 0.238568 0.0012424 8.64842e-07 + +# ROU: dss 0 14 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3880.79 33.5156 -2.01433 0.0174433 1877.33 101.794 69.0717 10.6464 1892.46 0.0334051 7.61244 0.0182753 20402.5 0.0182753 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 1 param+error 298.633 4.02531 0.145967 0.00213126 533.038 36.5129 92.7589 20.7057 2022.33 0.0590277 7.89719 0.0419188 5406.33 0.0419188 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 2 param+error 3.74606 2.2834 0.00123835 0.00112976 108.063 17.0658 50.1142 14.7641 2270.04 0.143469 7.9679 0.114977 906.404 0.114977 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 3 param+error -65.698 229.72 0.0279087 0.0963899 36.96 30.8529 12.7884 3.58508 2357.77 0.455469 7.76539 0.257465 76.3313 0.257465 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 4 param+error -206.443 240.169 0.0740192 0.0741395 12.1492 2.61369 31971.4 16938.4 3199.29 0.406693 8.00838 0.3024 95.0742 0.3024 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 5 param+error -217.597 385.821 0.0700918 0.113673 63.69 45.0199 18.3266 3.47375 3359.85 0.380587 8.56919 0.26875 119.09 0.26875 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 6 param+error -869.292 302.79 0.234203 0.08151 63.8187 12.8348 39.5322 12.8718 3680.32 0.393626 8.86373 0.228749 235.152 0.228749 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 7 param+error -44.4336 148.439 0.0114825 0.038262 2.51841 1.56708 77.6574 176.738 3847.71 0.666861 7.93617 0.46919 26.7065 0.46919 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 8 param+error -1724.59 674.203 0.372708 0.144641 37.571 5.54524 134.535 112.404 4621.29 0.643286 11.2229 0.503326 106.645 0.503326 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 9 param+error 805.444 898.67 -0.0893914 0.103195 73.9199 45.7368 41.2075 7.17033 8672.91 0.484942 9.68982 0.360224 96.1201 0.360224 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 10 param+error 15.6049 17.7093 -0.00166021 0.00190551 1.05131 0.367864 71.2114 45.7733 9295.9 2.16002 7.74443 1.76821 2.60763 1.76821 +CL dss 0 14 h M:PF-B:L-L:GCDFED-P:G 11 param+error 795.162 387.644 -0.0818258 0.0400201 40.92 1.66509 48.8856 7.1585 9649.43 0.513012 10.5909 0.344996 72.0067 0.344996 +CP dss 0 14 h pakw 12 1892.46 59.541 2.98179 2022.33 80.997 3.09184 2270.04 122.061 3.11667 2357.77 136.474 3.03648 3199.29 276.398 3.12185 3359.85 302.853 3.33852 3680.32 356.017 3.44926 3847.71 383.851 3.08643 4621.29 510.99 4.35256 8672.91 1173.24 3.70539 9295.9 1274.58 2.95527 9649.43 1332.5 4.0367 +CM dss 0 14 h poly3 -256.469 0.167524 -3.17597e-07 1.6639e-12 error 2.9439 0.00250077 6.09341e-07 4.05475e-11 +CR dss 0 14 h poly2 2.9807 0.000872921 -3.99782e-07 error 0.239592 0.00126329 8.85437e-07 + +# ROU: dss 0 15 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.69642 0.74524 0.00259547 0.000378875 1575.7 43.6633 81.0597 6.2061 1935.84 0.0242248 7.70184 0.0147578 18620.6 0.0147578 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4552.08 2336.9 2.45874 1.11489 511.575 28.4573 281.6 202.386 2064.7 0.0551873 8.04566 0.0493148 5464.78 0.0493148 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 2 param+error 5.35709 1.0874 0.00228183 0.000456478 153.142 39.2856 26.7018 7.82975 2308.97 0.211701 7.83248 0.114093 876.942 0.114093 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 3 param+error -445.589 221.652 0.184213 0.0914251 12.8633 2.67952 284.368 683.494 2393.82 0.36216 8.2595 0.27871 93.461 0.27871 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 4 param+error -963.842 536.823 0.30801 0.165604 21.4882 4.50693 277.562 628.316 3207.9 0.550964 8.33551 0.465583 88.5005 0.465583 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 5 param+error -26.1939 312.525 0.0125384 0.0921431 79.53 55.6683 18.1845 2.4704 3362.96 0.384978 8.00762 0.252319 112.502 0.252319 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 6 param+error 223.723 339.954 -0.0599693 0.0917194 95.1774 78.3721 17.4656 5.34398 3671.79 0.603877 8.30732 0.309668 217.544 0.309668 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 7 param+error -27.7803 104.741 0.00721821 0.0271361 12.21 11.8337 11.7147 4.15669 3834.94 1.01601 8.15536 0.534789 18.2448 0.534789 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 8 param+error 327.488 175.745 -0.0680315 0.0380795 54.45 8.38908 22.6091 2.79092 4583.44 0.487743 10.3498 0.339345 89.8922 0.339345 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.4177 0.783 0.00163385 9.80128e-05 55.0834 4.40803 71.0361 7.88845 8568.42 0.516483 10.354 0.353463 133.529 0.353463 +CL dss 0 15 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.785497 0.326865 0.00012394 3.5895e-05 34.243 3.80117 80.9813 15.8553 9537.3 0.587782 10.6184 0.362774 87.8574 0.362774 +CP dss 0 15 h pakw 11 1935.84 59.541 3.08962 2064.7 80.997 3.22897 2308.97 122.061 3.14559 2393.82 136.474 3.31773 3207.9 276.398 3.35044 3362.96 302.853 3.21825 3671.79 356.017 3.33709 3834.94 383.851 3.2748 4583.44 510.99 4.14404 8568.42 1173.24 3.95298 9537.3 1332.5 3.97216 +CM dss 0 15 h poly3 -268.754 0.168097 8.5493e-07 -9.36146e-11 error 3.15661 0.00266187 6.47681e-07 4.3301e-11 +CR dss 0 15 h poly2 3.13581 0.000463342 1.49776e-07 error 0.248961 0.00130105 9.2503e-07 + +# ROU: dss 0 16 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.73272 0.843564 0.00296774 0.000448041 1719.04 38.8565 163.925 20.104 1897.25 0.0217521 7.72618 0.0136088 21198.7 0.0136088 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 1 param+error 295.8 4.13734 0.142827 0.00215495 501.379 27.6604 129.421 30.0938 2026.13 0.0528632 7.95727 0.039716 5486.14 0.039716 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.26924 0.616052 0.00201469 0.000272725 115.192 15.6039 42.5728 8.66991 2271.45 0.139744 8.0236 0.0810191 886.837 0.0810191 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 3 param+error -282.154 367.949 0.118566 0.154162 19.5472 9.67116 32.7177 36.1146 2358.14 0.624096 8.05645 0.451111 84.6213 0.451111 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 4 param+error 17.6175 9.50336 0.00472314 0.00296371 11.1275 4.46031 138.206 221.379 3178.79 0.611928 10.0549 0.55102 84.4016 0.55102 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 5 param+error -1349.56 1.61961 0.408269 0.000714319 74.58 64.0408 22.4684 1.30867 3334.25 0.305227 7.94331 0.277965 121.404 0.277965 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 6 param+error -390.284 460.846 0.106531 0.125368 38.907 9.19888 56.9131 35.5437 3641.55 0.28943 9.06904 0.219041 266.472 0.219041 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 7 param+error -122.339 173.973 0.0320379 0.0454313 11.55 7.64437 22.99 8.10931 3806.37 0.87873 6.97007 0.581444 16.9004 0.581444 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 8 param+error 6.2642 0.602416 0.00141859 0.000134492 39.2768 9.1993 35.7972 8.03902 4544.02 0.761699 10.8537 0.436196 96.8324 0.436196 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 9 param+error 14.4207 0.871128 0.00173165 0.000104246 58.607 8.56604 67.8105 17.1564 8432.66 0.743838 9.8831 0.46589 125.445 0.46589 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 10 param+error -45.7891 0.986265 0.00506306 0.000108699 1.22821 0.22369 215.263 95.5103 9032.9 2.25662 10.1829 2.25931 3.09044 2.25931 +CL dss 0 16 h M:PF-B:L-L:GCDFED-P:G 11 param+error 772.408 158.582 -0.0818042 0.0168442 42.24 2.10339 44.9941 3.54895 9372.79 0.448237 10.5514 0.318271 74.6696 0.318271 +CP dss 0 16 h pakw 12 1897.25 59.541 3.05555 2026.13 80.997 3.15287 2271.45 122.061 3.18985 2358.14 136.474 3.2065 3178.79 276.398 4.03751 3334.25 302.853 3.19384 3641.55 356.017 3.65487 3806.37 383.851 2.81194 4544.02 510.99 4.39285 8432.66 1173.24 3.90688 9032.9 1274.58 3.9857 9372.79 1332.5 4.10363 +CM dss 0 16 h poly3 -253.897 0.161812 1.98123e-06 -1.28224e-10 error 3.25758 0.00279175 6.88317e-07 4.66869e-11 +CR dss 0 16 h poly2 3.16374 0.000160203 3.93651e-07 error 0.244386 0.00127083 8.94883e-07 + +# ROU: dss 0 17 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1342.33 812.443 0.716052 0.431229 1673.57 33.3371 207.937 29.5377 1850.74 0.021123 7.87462 0.0153474 20921.6 0.0153474 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 1 param+error 298.891 4.75619 0.152241 0.00249809 1008.66 240.827 26.2853 7.97884 1980.18 0.171737 7.86982 0.0765905 5021.34 0.0765905 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.86194 0.644477 0.00235494 0.000297832 113.617 17.3258 41.8514 9.87518 2222.58 0.144285 7.90206 0.084414 908.729 0.084414 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 3 param+error -586.089 199.69 0.25143 0.0855564 12.8084 2.52059 22919.5 22967.2 2306.8 0.326588 7.99908 0.181687 96.6656 0.181687 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 4 param+error 541.046 311.718 -0.160541 0.0993782 49.4999 34.5554 12.2188 3.29442 3103.18 0.761512 7.9037 0.533023 59.0505 0.533023 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 5 param+error 9.77061 0.781637 0.00309255 0.000249754 38.1187 12.0272 30.9916 10.4976 3250.73 0.50515 8.46923 0.308703 155.157 0.308703 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 6 param+error 48.6977 183.322 -0.0130904 0.0510791 106.59 98.0978 18.6147 1.1319 3551.51 0.207718 8.4777 0.149367 228.4 0.149367 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 7 param+error 46.872 24.5282 -0.0124092 0.00656852 12.87 8.31399 13.7376 2.09488 3710.48 0.865545 8.27978 0.549096 18.1899 0.549096 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 8 param+error -870.537 497.788 0.197327 0.111194 25.1913 4.92174 162.414 97.634 4436.05 0.549777 11.5927 0.334133 117.793 0.334133 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.6259 0.690042 0.00154178 8.37362e-05 58.3134 7.82644 63.1164 14.0824 8291.96 0.532736 9.92156 0.335096 148.168 0.335096 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 10 param+error 13.1358 11.1263 -0.00144861 0.00125382 0.809665 0.496128 48.666 36.5651 8882.68 1.51139 9.84241 1.27085 5.00976 1.27085 +CL dss 0 17 h M:PF-B:L-L:GCDFED-P:G 11 param+error -1030.4 4.01257 0.11156 0.000433274 34.4495 1.99394 129.848 17.1265 9224.04 0.439056 10.0252 0.298781 96.602 0.298781 +CP dss 0 17 h pakw 12 1850.74 59.541 3.19169 1980.18 80.997 3.19645 2222.58 122.061 3.22121 2306.8 136.474 3.26457 3103.18 276.398 3.25383 3250.73 302.853 3.49067 3551.51 356.017 3.50084 3710.48 383.851 3.42174 4436.05 510.99 4.79781 8291.96 1173.24 3.90366 8882.68 1274.58 3.80722 9224.04 1332.5 3.83522 +CM dss 0 17 h poly3 -253.507 0.164866 2.48461e-06 -1.89009e-10 error 3.16609 0.00277343 7.00977e-07 4.8557e-11 +CR dss 0 17 h poly2 3.10756 0.00108814 -3.9877e-07 error 0.25245 0.0013326 9.33439e-07 + +# ROU: dss 0 18 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1249.38 544.995 0.640388 0.277574 1650.85 42.08 158.832 22.0542 1928.16 0.0235309 7.97611 0.0158607 20253 0.0158607 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 1 param+error 314.604 62.2245 0.12733 0.0298743 515.778 33.8722 105.076 27.0264 2061 0.05857 8.24319 0.0520757 5237.05 0.0520757 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.25223 1.01871 0.00204973 0.000490524 201.233 60.8024 20.985 6.14528 2316.78 0.306639 7.93998 0.141007 819.046 0.141007 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 3 param+error -17.2534 105.969 0.00736828 0.0433828 6.94819 1.4532 22926.7 17280.4 2406.19 0.31184 8.74327 0.229847 90.4789 0.229847 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 4 param+error 210.336 626.415 -0.0531777 0.188622 15.6879 7.33028 41.7699 66.1124 3289.94 0.648088 8.66138 0.590042 79.4433 0.590042 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 5 param+error -123.052 441.308 0.0406032 0.126526 63.03 49.3086 20.7088 4.36605 3457.44 0.404425 8.50435 0.266803 113.721 0.266803 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 6 param+error -676.726 312.255 0.177172 0.0816063 101.97 10.7132 22.5175 1.94984 3791.62 0.228045 9.19184 0.165723 208.14 0.165723 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 7 param+error 4.68491 34.212 -0.0011475 0.00853814 13.86 7.25689 16.4728 9.17142 3967.34 2.15814 7.72731 0.846385 20.1775 0.846385 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 8 param+error 547.208 99.046 -0.111353 0.020641 48.51 10.5185 20.6783 2.15941 4764.47 0.491675 11.0715 0.361191 83.1607 0.361191 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.7363 0.666759 0.00148373 7.47912e-05 48.6315 2.98442 95.3513 8.26415 8885.25 0.567648 11.6011 0.409531 113.164 0.409531 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 10 param+error 1.90436 25.934 -0.000178173 0.00271512 1.80087 0.467015 54.1467 24.103 9523.68 3.93227 6.12767 3.36725 0.914299 3.36725 +CL dss 0 18 h M:PF-B:L-L:GCDFED-P:G 11 param+error 468.326 172.569 -0.0470409 0.0174105 40.26 2.34205 57.0494 4.91665 9870.44 0.493215 11.4012 0.358295 68.4188 0.358295 +CP dss 0 18 h pakw 12 1928.16 59.541 2.99715 2061 80.997 3.09584 2316.78 122.061 2.97916 2406.19 136.474 3.27958 3289.94 276.398 3.24198 3457.44 302.853 3.18247 3791.62 356.017 3.43872 3967.34 383.851 2.89063 4764.47 510.99 4.14347 8885.25 1173.24 4.43763 9523.68 1274.58 2.35859 9870.44 1332.5 4.40467 +CM dss 0 18 h poly3 -249.554 0.161437 -6.32907e-07 5.17246e-11 error 2.93966 0.00244467 5.81698e-07 3.77365e-11 +CR dss 0 18 h poly2 3.01268 0.000669802 -4.79983e-07 error 0.240595 0.00125238 8.71368e-07 + +# ROU: dss 0 19 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 0 param+error 34.7817 9.1764 -0.025836 0.00628956 1722.2 52.2649 133.08 19.3882 1861.33 0.0246651 7.89023 0.019634 20593.5 0.019634 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 1 param+error -6453.88 2154.03 3.47991 1.06435 570.867 31.0875 207.724 110.421 1991.87 0.0589288 8.1537 0.052079 5366.67 0.052079 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 2 param+error 5.60586 0.729036 0.00275281 0.000328354 128.789 16.0153 37.4205 5.94881 2241.6 0.142486 7.92063 0.0842684 884.005 0.0842684 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 3 param+error -48.1202 141.413 0.0205516 0.0599195 6.71467 1.87353 23096 17431.4 2328.54 0.295964 8.27021 0.202053 95.2094 0.202053 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 4 param+error -225.044 511.687 0.0812152 0.159778 10.3479 4.99254 20450.3 24331.7 3165.42 0.61261 9.55288 0.45977 87.3362 0.45977 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 5 param+error 10.0845 1.03766 0.00308063 0.00033927 29.7435 8.42378 38.7066 13.6171 3323.58 0.452672 9.05613 0.323813 148.384 0.323813 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1274.97 391.616 0.34751 0.106596 103.95 17.2312 28.6748 2.87342 3640.68 0.204373 8.99976 0.158463 233.208 0.158463 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 7 param+error 74.7671 31.8342 -0.0193764 0.0083874 13.53 11.0335 10.4491 1.78426 3805.12 0.605735 8.80448 0.491807 24.3489 0.491807 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 8 param+error -1480.93 6.19919 0.324099 0.00134563 34.5412 3.16785 142.612 39.3776 4567.7 0.528963 11.8887 0.377918 99.4548 0.377918 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 9 param+error 10.9094 0.759077 0.00183612 9.87191e-05 59.1678 4.52227 67.2882 6.57907 8564.37 0.5778 10.6666 0.375106 116.928 0.375106 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 10 param+error 21.8088 18.5737 -0.00234292 0.00201186 1.22961 0.76174 45.4445 35.8945 9178.06 2.52228 10.8458 1.7905 3.68526 1.7905 +CL dss 0 19 h M:PF-B:L-L:GCDFED-P:G 11 param+error 682.423 162.747 -0.0711309 0.0170142 46.86 1.1144 46.7376 3.16278 9530.47 0.411293 9.1301 0.294274 77.1592 0.294274 +CP dss 0 19 h pakw 12 1861.33 59.541 3.08013 1991.87 80.997 3.18576 2241.6 122.061 3.09948 2328.54 136.474 3.23789 3165.42 276.398 3.75431 3323.58 302.853 3.56092 3640.68 356.017 3.54172 3805.12 383.851 3.46601 4567.7 510.99 4.6831 8564.37 1173.24 4.11279 9178.06 1274.58 4.15246 9530.47 1332.5 3.47979 +CM dss 0 19 h poly3 -246.775 0.162914 9.68767e-07 -7.16621e-11 error 3.03883 0.00260866 6.40943e-07 4.29559e-11 +CR dss 0 19 h poly2 2.91961 0.00247924 -1.38063e-06 error 0.24788 0.00133524 9.34226e-07 + +# ROU: dss 0 20 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 0 param+error 4.60218 0.897392 0.00295635 0.000463052 1698.73 42.1404 154.89 19.7122 1920.46 0.0233317 7.93411 0.0143733 20611.1 0.0143733 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 1 param+error -10042.1 1832.36 5.11689 0.880822 543.742 27.4876 20453.6 16852.1 2049.91 0.0569179 8.30658 0.0334005 5387.06 0.0334005 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.93652 0.658242 0.00220253 0.000286194 99.4471 12.4458 61.1865 15.8621 2296.09 0.128347 8.08424 0.0809071 883.674 0.0809071 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.379841 0.280894 0.000113072 0.000117622 6.08631 0.579622 18098.4 4652.83 2381.71 0.254504 8.01631 0.191592 96.8184 0.191592 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 4 param+error 15.7511 0.889622 0.00498736 0.000307193 18.1841 5.40424 61.7834 33.2074 3218.02 0.655128 8.8634 0.463997 81.44 0.463997 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 5 param+error 1190.36 228.201 -0.344248 0.0670144 70.6172 69.66 8.88435 2.25033 3376.19 0.525734 8.90591 0.297799 124.78 0.297799 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 6 param+error 512.727 285.88 -0.136907 0.076617 100.65 64.8427 16.7731 1.65987 3697.45 0.234052 8.58117 0.145627 221.284 0.145627 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 7 param+error -154.907 76.3038 0.0397987 0.0195779 2.83566 0.837122 38254.9 24455.5 3864.14 0.658573 10.316 0.413787 25.7308 0.413787 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 8 param+error 63.7718 241.398 -0.0107658 0.0516462 51.15 33.2312 28.711 4.23538 4639.75 0.484577 10.4421 0.349136 87.8008 0.349136 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.4781 0.662794 0.00158594 8.42625e-05 55.5198 5.96175 68.5904 10.3026 8666.72 0.693926 10.9699 0.421989 120.369 0.421989 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 10 param+error -39.8598 104.875 0.00429325 0.0112613 0.802025 0.266295 547.927 3810.94 9276.38 1.9264 10.9622 1.51827 3.68061 1.51827 +CL dss 0 20 h M:PF-B:L-L:GCDFED-P:G 11 param+error 789.627 331.136 -0.0814104 0.0342406 45.21 3.7738 46.5087 5.32656 9632.11 0.462105 9.78665 0.316967 71.6746 0.316967 +CP dss 0 20 h pakw 12 1920.46 59.541 3.13695 2049.91 80.997 3.28074 2296.09 122.061 3.18671 2381.71 136.474 3.15787 3218.02 276.398 3.47127 3376.19 302.853 3.4845 3697.45 356.017 3.35113 3864.14 383.851 4.02496 4639.75 510.99 4.05915 8666.72 1173.24 4.2471 9276.38 1274.58 4.25094 9632.11 1332.5 3.79968 +CM dss 0 20 h poly3 -265.925 0.171046 -9.43205e-07 4.31112e-11 error 3.17093 0.00266381 6.42682e-07 4.24684e-11 +CR dss 0 20 h poly2 2.96958 0.00219391 -1.05018e-06 error 0.253668 0.00136999 9.6091e-07 + +# ROU: dss 0 21 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1297.75 4.60755e-06 0.667039 5.4165e-05 7319.4 3.88459e-08 2.68218 2033.79 1889.69 0.00120036 10.4353 0.00019361 18727.1 0.00019361 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 1 param+error 299.393 4.11475 0.146479 0.00212253 496.543 35.1773 116.622 32.9421 2023.01 0.0609599 8.14793 0.0432588 5333.95 0.0432588 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.763 0.634186 0.00209478 0.00027386 107.25 15.1146 53.3614 13.9757 2271.37 0.141527 8.12555 0.0886615 875.048 0.0886615 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.252818 0.246424 8.46099e-05 0.00010326 5.2251 0.559175 14149.8 5128.25 2357.63 0.271699 8.21973 0.193214 95.9935 0.193214 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 4 param+error 16.9353 0.951098 0.00528555 0.000299229 12.506 1.60519 71.0408 6.06589 3201.56 0.452017 9.42078 0.400492 83.5369 0.400492 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 5 param+error 578.691 259.206 -0.164655 0.0764617 66.9892 54.8727 13.0679 2.30415 3362.11 0.387963 8.47468 0.245391 129.887 0.245391 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 6 param+error -261.681 350.211 0.0706271 0.094217 107.91 73.5605 20.8539 2.15907 3683.55 0.237064 9.26758 0.145464 226.917 0.145464 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 7 param+error -2.22758 34.218 0.000669837 0.00880005 13.5293 13.5257 15.8807 2.37055 3853 0.721786 8.38827 0.412653 20.2113 0.412653 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 8 param+error 5.32247 5.53158 0.00133886 0.00118396 36.1395 9.68391 31.7096 6.59778 4625.2 0.784064 12.2422 0.449986 100.637 0.449986 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 9 param+error 4.07767 1.0409 0.00265011 0.00011697 61.3562 4.61026 66.4393 6.79275 8659.03 0.626073 10.4735 0.44808 113.361 0.44808 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 10 param+error -4.44893 4.03891 0.000485729 0.000425166 0.478465 0.0911157 17892.6 4762.07 9268.3 1.67322 11.0426 1.4749 4.39443 1.4749 +CL dss 0 21 h M:PF-B:L-L:GCDFED-P:G 11 param+error -1024.74 3.67273 0.106245 0.000379938 38.8383 3.28472 107.188 19.5179 9624.77 0.724741 11.427 0.404678 75.4772 0.404678 +CP dss 0 21 h pakw 12 1889.69 59.541 4.06925 2023.01 80.997 3.17651 2271.37 122.061 3.16635 2357.63 136.474 3.20255 3201.56 276.398 3.66508 3362.11 302.853 3.29611 3683.55 356.017 3.60257 3853 383.851 3.25985 4625.2 510.99 4.75176 8659.03 1173.24 4.04371 9268.3 1274.58 4.26069 9624.77 1332.5 4.40744 +CM dss 0 21 h poly3 -254.326 0.166209 -1.70964e-07 3.14888e-12 error 3.29265 0.00276475 6.69625e-07 4.45032e-11 +CR dss 0 21 h poly2 3.41151 -0.000368216 8.12669e-07 error 0.269223 0.00139117 9.76159e-07 + +# ROU: dss 0 22 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 0 param+error 5.79207 1.04296 0.00133291 0.000516027 1721.78 32.9512 164.5 16.1343 1979.38 0.020606 7.75974 0.0133078 21207.3 0.0133078 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 1 param+error 301.893 4.80069 0.145868 0.0023955 1003.27 216.144 26.4292 7.218 2108.55 0.157158 7.81866 0.0711775 5081.6 0.0711775 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.58029 0.644283 0.00216289 0.000290492 116.232 15.7829 45.6529 10.6973 2352.24 0.14395 7.98778 0.0850411 871.157 0.0850411 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 3 param+error 109.497 416.482 -0.0440553 0.169022 17.2645 12.4705 22.4156 28.1605 2437.28 0.587579 7.75067 0.391644 91.3723 0.391644 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 4 param+error 390.167 279 -0.107743 0.0849602 47.5188 46.1394 12.6967 3.46113 3257.11 0.76426 8.30663 0.538411 60.6094 0.538411 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 5 param+error 9.43077 0.929665 0.00272247 0.000309183 22.5031 6.94654 47.9409 21.8595 3410.29 0.396224 9.01256 0.299732 156.318 0.299732 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 6 param+error -946.783 430.35 0.252232 0.11457 57.7551 11.5916 39.0813 14.6849 3722.38 0.321216 9.0264 0.220392 264.389 0.220392 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 7 param+error 23.1402 42.3593 -0.00583573 0.0108119 12.87 12.1099 10.9708 2.17772 3887.06 0.684487 7.60504 0.472732 20.1162 0.472732 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 8 param+error -2951.45 789.999 0.633656 0.168864 39.9368 5.06729 621.299 1615.12 4638.3 0.593892 11.8087 0.473147 119.466 0.473147 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 9 param+error -3881.47 8.77327 0.45325 0.00101842 69.7609 3.90004 150.85 26.3656 8578.63 0.498821 10.9767 0.345145 131.975 0.345145 +CL dss 0 22 h M:PF-B:L-L:GCDFED-P:G 10 param+error 285.043 409.108 -0.0294991 0.0427524 43.2557 8.88667 54.0615 12.59 9525.68 0.84258 9.95401 0.519637 73.7926 0.519637 +CP dss 0 22 h pakw 11 1979.38 59.541 3.10014 2108.55 80.997 3.12479 2352.24 122.061 3.19426 2437.28 136.474 3.1 3257.11 276.398 3.32592 3410.29 302.853 3.60881 3722.38 356.017 3.61437 3887.06 383.851 3.04502 4638.3 510.99 4.72379 8578.63 1173.24 4.29708 9525.68 1332.5 3.85977 +CM dss 0 22 h poly3 -275.225 0.168103 5.43619e-07 -5.06678e-11 error 3.38242 0.0028191 6.80196e-07 4.51613e-11 +CR dss 0 22 h poly2 3.01773 0.0011804 -3.08977e-07 error 0.245916 0.00130026 9.2246e-07 + +# ROU: dss 0 23 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.844 0.821602 0.00184909 0.000471404 1594.01 37.5067 215.676 35.5314 1889.58 0.0223125 7.94826 0.01407 20699.7 0.01407 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 1 param+error -192.685 1791.75 0.375178 0.871934 490.518 38.5196 149.272 75.7533 2021.61 0.0651233 8.23179 0.0527052 5309.35 0.0527052 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 2 param+error 403.091 217.581 -0.170102 0.0939334 134.839 41.8667 27.1498 10.0713 2277.58 0.231831 8.13109 0.1218 860.136 0.1218 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 3 param+error -156.83 145.218 0.0656336 0.0605153 6.63399 1.89569 23678.9 20029 2367.59 0.302935 8.60004 0.2094 93.8288 0.2094 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 4 param+error 15.4467 9.10136 0.00479761 0.00276745 24.7846 10.362 30.5523 13.8306 3257.54 0.845593 9.0444 0.552853 77.0782 0.552853 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 5 param+error -282.546 565.017 0.0866498 0.163282 34.6193 20.6763 39.3234 44.7389 3423.55 0.845777 9.61806 0.521882 138.181 0.521882 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 6 param+error 52.0247 294.02 -0.0134928 0.077737 103.95 22.0854 19.9031 1.95172 3756.35 0.271765 9.2709 0.181701 204.98 0.181701 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 7 param+error 19.8508 86.8769 -0.00493963 0.0218965 0.789891 0.915176 39131.3 31170.1 3925.76 0.659729 10.762 0.406861 26.6666 0.406861 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 8 param+error -85.8025 384.33 0.0210973 0.0808028 49.17 5.2981 29.5482 6.04845 4717.87 0.52251 10.7149 0.402233 81.6421 0.402233 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 9 param+error 11.9513 0.83039 0.0015552 0.000100787 58.7977 5.78832 68.3956 8.39873 8744.37 0.801163 12.1239 0.483018 109.387 0.483018 +CL dss 0 23 h M:PF-B:L-L:GCDFED-P:G 10 param+error 1.00602 0.262609 0.000122111 2.76997e-05 35.4325 2.69188 82.7868 8.04111 9702.03 0.730359 11.6472 0.410574 75.873 0.410574 +CP dss 0 23 h pakw 11 1889.58 59.541 2.96522 2021.61 80.997 3.07213 2277.58 122.061 3.037 2367.59 136.474 3.21316 3257.54 276.398 3.39231 3423.55 302.853 3.61065 3756.35 356.017 3.487 3925.76 383.851 4.0521 4717.87 510.99 4.05695 8744.37 1173.24 4.80093 9702.03 1332.5 4.67926 +CM dss 0 23 h poly3 -239.031 0.158143 -6.22291e-08 4.84145e-11 error 3.20519 0.00271328 6.55114e-07 4.31827e-11 +CR dss 0 23 h poly2 2.77852 0.00294792 -1.10528e-06 error 0.245803 0.00137327 9.93574e-07 + +# ROU: dss 0 24 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 0 param+error -29519.6 5187.27 15.5186 2.73081 1814.1 70.3441 18701.7 9615.78 1877.33 0.028974 7.9691 0.0164108 20834.4 0.0164108 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 1 param+error 300.011 3.97758 0.147851 0.00203708 502.118 33.8097 114.699 29.9294 2007.68 0.0598572 8.17389 0.0430573 5304.38 0.0430573 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 2 param+error 5.4934 0.696601 0.00258241 0.000316633 111.484 15.7116 41.1293 8.28879 2255.86 0.135657 8.09805 0.0837496 896.856 0.0837496 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 3 param+error -120.756 2.9897 0.0510137 0.00125815 7.89297 3.96888 1271.07 12231.1 2342.97 0.463348 8.08008 0.270914 93.575 0.270914 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 4 param+error -818.821 621.499 0.266127 0.193909 15.8499 6.02218 31712.3 17781.4 3178.83 0.69333 9.23821 0.403915 86.2263 0.403915 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 5 param+error -232.454 857.256 0.0745817 0.254469 44.8641 24.527 24.1974 24.2632 3336.37 0.778971 8.38281 0.592438 135.34 0.592438 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 6 param+error -606.692 419.31 0.164846 0.113811 47.2902 11.6587 40.0118 19.2846 3650.48 0.347564 8.75747 0.244665 247.412 0.244665 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 7 param+error 16.6895 170.636 -0.00429739 0.0443404 4.57585 7.71259 21.3678 46.8287 3814.85 1.3551 8.1254 0.816294 25.4085 0.816294 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 8 param+error 306.772 269.148 -0.0638398 0.0584685 54.1189 53.6287 22.6354 3.69279 4569.06 0.506042 10.4233 0.334591 88.8783 0.334591 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 9 param+error 13.485 0.977311 0.00158502 0.000116714 60.8995 5.18019 66.0248 8.34287 8506.28 0.539049 10.2849 0.393974 125.673 0.393974 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 10 param+error 36.0765 10.218 -0.00391839 0.00112855 0.972359 0.547911 1.3573 0.0541252 9101.36 1.52591 15.7625 1.07617 3.58358 1.07617 +CL dss 0 24 h M:PF-B:L-L:GCDFED-P:G 11 param+error -224.532 294.156 0.0238662 0.0309794 42.24 1.07347 68.7552 8.15632 9452.18 0.440063 10.2122 0.313817 78.5069 0.313817 +CP dss 0 24 h pakw 12 1877.33 59.541 3.11135 2007.68 80.997 3.19569 2255.86 122.061 3.17388 2342.97 136.474 3.16946 3178.83 276.398 3.64845 3336.37 302.853 3.31413 3650.48 356.017 3.4688 3814.85 383.851 3.22127 4569.06 510.99 4.14487 8506.28 1173.24 4.04866 9101.36 1274.58 6.17163 9452.18 1332.5 3.98387 +CM dss 0 24 h poly3 -248.199 0.161625 1.33433e-06 -7.90391e-11 error 3.13033 0.00268068 6.58682e-07 4.43967e-11 +CR dss 0 24 h poly2 3.09305 0.000823664 1.60368e-07 error 0.248294 0.00131114 9.27076e-07 + +# ROU: dss 0 25 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.56087 0.913783 0.00277345 0.000509829 1613.07 37.1786 226.766 38.4264 1841.49 0.0218019 7.94156 0.0139333 20934.6 0.0139333 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 1 param+error -2887.48 2606.61 1.74955 1.30259 468.781 27.39 497.488 632.154 1970.45 0.0555982 8.16629 0.0500247 5392.83 0.0500247 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 2 param+error 245.168 434.159 -0.104249 0.193058 124.394 19.5351 36.1566 10.406 2215.8 0.150282 7.95817 0.110544 880.473 0.110544 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.256648 0.207811 7.70724e-05 8.53365e-05 7.62756 0.640889 21929.8 3395.3 2301.4 0.266306 7.81053 0.18163 92.5907 0.18163 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 4 param+error 352 1.99334 -0.100448 0.000699019 6.42024 1.34065 7454.23 27615.7 3125.35 0.432137 8.7485 0.39046 86.8015 0.39046 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 5 param+error 9.04304 8.46277 0.00279385 0.00255402 19.6075 7.5597 61.3522 48.441 3281.29 0.39288 8.93705 0.27615 164.487 0.27615 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 6 param+error 251.602 248.224 -0.0689254 0.0684297 100.98 20.7059 15.838 1.51867 3595.59 0.231411 8.65094 0.138968 222.523 0.138968 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 7 param+error -30.4502 147.437 0.00805376 0.0388729 1.32164 1.22397 37467.9 24614.7 3758.53 0.626266 9.11804 0.377729 27.9328 0.377729 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 8 param+error 155.193 246.809 -0.0308095 0.0543419 50.49 11.3465 24.2919 3.89352 4513.1 0.508323 10.873 0.378326 90.7952 0.378326 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1524.58 393.092 -0.176093 0.0461488 61.1519 10.2732 41.7701 10.139 8480.35 0.733927 10.8379 0.464857 123.241 0.464857 +CL dss 0 25 h M:PF-B:L-L:GCDFED-P:G 10 param+error 142.913 385.539 -0.0148585 0.0406862 42.9 2.17816 59.8803 8.35512 9443.86 0.436199 10.0713 0.329574 78.5957 0.329574 +CP dss 0 25 h pakw 11 1841.49 59.541 3.15257 1970.45 80.997 3.2435 2215.8 122.061 3.16366 2301.4 136.474 3.10583 3125.35 276.398 3.48496 3281.29 302.853 3.5606 3595.59 356.017 3.44704 3758.53 383.851 3.63306 4513.1 510.99 4.32813 8480.35 1173.24 4.19483 9443.86 1332.5 3.84823 +CM dss 0 25 h poly3 -249.474 0.166567 7.33479e-07 -6.78649e-11 error 3.07405 0.00266752 6.63061e-07 4.49471e-11 +CR dss 0 25 h poly2 2.981 0.0019836 -9.37923e-07 error 0.25164 0.00135397 9.60187e-07 + +# ROU: dss 0 26 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.16311 0.708249 0.00218932 0.000363459 1660.4 45.9432 223.205 46.7703 1902.42 0.0241024 7.93608 0.0147638 20852.2 0.0147638 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 1 param+error 419.949 2069.14 0.0926217 1.00284 587.973 41.6205 73.819 21.0811 2030.69 0.0650902 8.07235 0.0563836 5261.34 0.0563836 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.82109 0.741342 0.00230481 0.000339847 79.2623 9.33423 97.7414 36.2224 2274.46 0.111802 8.2123 0.0752224 908.973 0.0752224 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 3 param+error 141.046 176.722 -0.0585406 0.0738824 13.2795 8.07366 25.9669 25.2509 2360.19 0.506595 7.82411 0.38317 84.1499 0.38317 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 4 param+error 4.46292 229.896 0.00973715 0.0717828 7.91176 2.76939 31530.1 20168.6 3179.06 0.489785 8.94571 0.422131 85.3305 0.422131 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 5 param+error -202.53 357.858 0.0649844 0.106174 64.35 11.4668 18.3732 3.27498 3335.36 0.388229 8.81842 0.280611 118.273 0.280611 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 6 param+error -217.648 203.433 0.0593998 0.055211 41.2918 7.9835 39.609 12.3417 3645.41 0.285406 9.29073 0.203032 248.425 0.203032 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 7 param+error -3.87113 45.1869 0.00109201 0.0117828 11.88 9.43443 14.8759 2.82479 3809.37 0.731316 8.27254 0.492717 20.8355 0.492717 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 8 param+error -842.958 818.553 0.185977 0.177984 26.0036 6.30111 140.38 216.686 4557.59 0.651381 11.9729 0.57412 113.822 0.57412 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.5835 0.718907 0.00153169 8.56044e-05 59.8179 3.89401 70.4589 5.94221 8469.61 0.501362 9.91635 0.341199 131.829 0.341199 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.368341 0.0201582 -2.24592e-05 1.51654e-07 1.02502 0.206206 147.177 44.8029 9064.94 1.65627 10.2285 1.10491 4.33665 1.10491 +CL dss 0 26 h M:PF-B:L-L:GCDFED-P:G 11 param+error -1240.65 4.08313 0.131642 0.000432275 45.4787 3.718 81.1076 11.9249 9407.76 0.663026 10.1212 0.359246 82.1129 0.359246 +CP dss 0 26 h pakw 12 1902.42 59.541 3.1676 2030.69 80.997 3.22355 2274.46 122.061 3.28223 2360.19 136.474 3.12795 3179.06 276.398 3.58383 3335.36 302.853 3.53383 3645.41 356.017 3.72478 3809.37 383.851 3.31717 4557.59 510.99 4.80241 8469.61 1173.24 3.92887 9064.94 1274.58 4.03658 9407.76 1332.5 3.98415 +CM dss 0 26 h poly3 -261.648 0.167781 5.74146e-07 -4.30085e-11 error 3.19337 0.00272478 6.70679e-07 4.53931e-11 +CR dss 0 26 h poly2 3.08332 0.00144663 -5.78934e-07 error 0.252159 0.00134558 9.46756e-07 + +# ROU: dss 0 27 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 0 param+error 7.99709 2.68494 0.000111433 0.00152329 1778.48 105.893 125.026 37.0478 1924.45 0.0359627 8.03424 0.0198895 20446 0.0198895 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 1 param+error -1638.6 2079.35 1.07283 0.996193 594.047 40.0435 90.7673 28.4265 2054.45 0.0663283 8.23347 0.0563857 5179.03 0.0563857 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.1418 0.616653 0.00190804 0.000269096 103.531 16.4085 50.2141 13.9859 2302.5 0.148842 8.33416 0.0883776 878.664 0.0883776 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.365415 0.231884 0.000140095 9.37165e-05 6.02968 0.63754 13304.5 4223.32 2389.05 0.27777 8.61305 0.220279 92.2307 0.220279 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 4 param+error 41.8367 400.894 -0.00196779 0.122732 20.4378 9.10064 28.5064 22.8476 3230.95 0.715404 8.96729 0.509528 78.9938 0.509528 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 5 param+error 8.04585 1.02226 0.00244411 0.000318197 36.559 9.28064 33.5986 9.2844 3389.05 0.529181 8.82095 0.377104 133.873 0.377104 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1536.87 579.519 0.411508 0.154995 55.357 13.4092 51.1442 30.1925 3704.52 0.418764 9.43031 0.300244 246.549 0.300244 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 7 param+error 70.3221 23.2462 -0.0179001 0.00595655 12.2083 6.97565 7.42219 2.54189 3868.75 0.845467 9.09882 0.504429 22.0123 0.504429 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 8 param+error 351.031 125.084 -0.0723488 0.0268472 53.46 7.36717 20.605 2.25451 4627.25 0.480838 10.8284 0.343992 92.0699 0.343992 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1903.33 272.312 -0.21754 0.0316232 69.3 12.4541 35.6523 2.95422 8585.07 0.423003 9.78928 0.301438 106.087 0.301438 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 10 param+error -3.62252 36.003 0.000418977 0.00389933 0.752667 0.324976 98.533 140.092 9185.87 1.76584 11.8423 1.38989 4.40245 1.38989 +CL dss 0 27 h M:PF-B:L-L:GCDFED-P:G 11 param+error -3662.3 4.42287 0.382792 0.000461999 40.2683 2.30026 378.487 162.026 9537.21 0.552653 11.437 0.362359 89.1361 0.362359 +CP dss 0 27 h pakw 12 1924.45 59.541 3.13135 2054.45 80.997 3.21226 2302.5 122.061 3.25752 2389.05 136.474 3.36858 3230.95 276.398 3.52508 3389.05 302.853 3.4703 3704.52 356.017 3.71533 3868.75 383.851 3.5871 4627.25 510.99 4.2789 8585.07 1173.24 3.84084 9185.87 1274.58 4.62812 9537.21 1332.5 4.45786 +CM dss 0 27 h poly3 -256.183 0.16234 9.90272e-07 -5.75567e-11 error 3.23781 0.00272784 6.6163e-07 4.42351e-11 +CR dss 0 27 h poly2 3.13018 0.00131947 -3.14732e-07 error 0.254325 0.00136938 9.72455e-07 + +# ROU: dss 0 28 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.62398 0.838384 0.00188669 0.000426831 1690.81 7.22375 187.46 1.54547 1960.68 0.0161883 8.10103 0.0119136 20447.6 0.0119136 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 1 param+error 302.214 5.96231 0.134001 0.0032022 449.845 24.3092 257.038 108.442 2091.49 0.0541403 8.40288 0.0426525 5262.77 0.0426525 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 2 param+error 3.155 0.998979 0.0012043 0.000460266 110.92 34.4198 49.6858 30.3179 2340.75 0.231259 8.31637 0.123164 863.132 0.123164 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 3 param+error -610.344 251.876 0.248635 0.10259 13.1782 3.14717 24203.4 12568.9 2427.7 0.402551 8.76433 0.209136 89.2696 0.209136 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 4 param+error -397.951 535.84 0.130285 0.162007 26.0763 7.76041 54.5487 47.9337 3271.85 0.851394 9.28885 0.613292 74.7594 0.613292 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 5 param+error 794.093 293.774 -0.224022 0.0847665 71.61 46.9994 12.1304 2.09141 3430.81 0.389503 8.24662 0.2564 123.004 0.2564 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 6 param+error -902.793 395.774 0.238733 0.104529 78.9767 18.3204 27.7017 8.31452 3751.92 0.441806 9.00575 0.251802 238.799 0.251802 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 7 param+error 16.7041 22.0185 -0.00415093 0.00559767 10.89 7.1487 15.8616 2.09367 3920.75 0.727107 8.58051 0.556335 17.6906 0.556335 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 8 param+error 495.148 332.429 -0.102196 0.0702443 51.81 11.8577 23.0127 4.56422 4694.23 0.554709 11.269 0.362475 87.9293 0.362475 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1318.67 311.326 -0.146996 0.0354761 74.58 7.48242 39.0528 3.1976 8745.06 0.454135 9.74011 0.340023 98.4094 0.340023 +CL dss 0 28 h M:PF-B:L-L:GCDFED-P:G 10 param+error -480.043 3.62668 0.049393 0.000371623 42.1125 2.78978 75.8342 6.74565 9720.55 0.655041 10.4045 0.386328 74.3303 0.386328 +CP dss 0 28 h pakw 11 1960.68 59.541 3.16188 2091.49 80.997 3.27882 2340.75 122.061 3.24335 2427.7 136.474 3.41742 3271.85 276.398 3.61499 3430.81 302.853 3.20815 3751.92 356.017 3.50069 3920.75 383.851 3.33397 4694.23 510.99 4.36956 8745.06 1173.24 3.72621 9720.55 1332.5 3.9648 +CM dss 0 28 h poly3 -266.183 0.166327 -1.26588e-07 -7.20681e-12 error 3.1229 0.00258211 6.15006e-07 4.0328e-11 +CR dss 0 28 h poly2 3.22881 0.000482632 1.0934e-08 error 0.254205 0.00132965 9.45565e-07 + +# ROU: dss 0 29 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 0 param+error 244.43 10.2759 -0.122005 0.00533969 1694.35 40.945 196.46 30.2803 1889.01 0.0233469 8.02589 0.0145478 20622.1 0.0145478 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 1 param+error 303.954 4.27033 0.148098 0.00221088 535.591 32.0792 105.696 21.2106 2018.41 0.0605322 8.2519 0.0443187 5232.12 0.0443187 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.11774 0.640982 0.0019351 0.000284991 117.117 14.1952 43.9956 7.9451 2265.25 0.13433 8.1462 0.083687 876.991 0.083687 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 3 param+error 40.4177 141.152 -0.0166861 0.0591732 27.4321 27.5376 17.5924 9.92976 2352.6 0.799299 8.06748 0.449678 77.0831 0.449678 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 4 param+error 49.0743 567.563 -0.00457972 0.176332 24.724 17.9242 24.7723 30.1214 3183.61 1.16932 8.66904 0.823902 71.5011 0.823902 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 5 param+error -2305.65 548.357 0.689715 0.162913 32.4517 5.26212 33304.3 16662.9 3339.73 0.398977 9.7606 0.246532 157.13 0.246532 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 6 param+error -114.755 124.418 0.0314329 0.0337045 99.66 4.03499 20.3597 1.12367 3655.9 0.215908 8.67564 0.13373 210.681 0.13373 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 7 param+error -51.0802 116.592 0.0134887 0.0303289 13.53 10.3955 15.5014 4.08737 3821.09 0.719243 7.30234 0.507254 22.8129 0.507254 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 8 param+error 242.095 322.468 -0.0496518 0.0699244 51.81 10.0145 24.6794 4.64678 4575.83 0.527589 10.77 0.373168 88.3249 0.373168 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1800.28 275.202 -0.20699 0.0321337 76.2287 74.6524 34.9571 2.86398 8534.62 0.437616 10.3992 0.316176 103.303 0.316176 +CL dss 0 29 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.963024 3.13204 0.000119246 0.00032843 35.1643 2.25845 78.2643 5.69567 9490.62 0.603269 10.9968 0.348058 81.5664 0.348058 +CP dss 0 29 h pakw 11 1889.01 59.541 3.15584 2018.41 80.997 3.24744 2265.25 122.061 3.21065 2352.6 136.474 3.18119 3183.61 276.398 3.43138 3339.73 302.853 3.86548 3655.9 356.017 3.43887 3821.09 383.851 2.89559 4575.83 510.99 4.27437 8534.62 1173.24 4.0552 9490.62 1332.5 4.24566 +CM dss 0 29 h poly3 -253.594 0.164163 9.33386e-07 -6.63413e-11 error 3.23045 0.00275903 6.76436e-07 4.55102e-11 +CR dss 0 29 h poly2 3.22287 4.24888e-05 5.47844e-07 error 0.249803 0.00129969 9.29706e-07 + +# ROU: dss 0 30 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 0 param+error -628.514 19.0045 0.333478 0.00991271 1935.63 223.8 87.4149 39.5044 1884.43 0.0570879 8.09949 0.0243207 20261.1 0.0243207 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 1 param+error 20.3862 2120.67 0.287288 1.03566 504.925 38.8651 117.798 52.717 2014.65 0.0668278 8.37915 0.0577558 5195.28 0.0577558 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 2 param+error 5.29123 0.694535 0.00230027 0.000287556 112.652 16.0394 43.4635 9.26611 2263.74 0.144627 8.2555 0.0887115 867.33 0.0887115 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 3 param+error -29.7347 160.147 0.0127927 0.0671796 6.9295 3.47503 138.859 400.07 2351.01 0.380632 8.42772 0.308845 95.2171 0.308845 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 4 param+error 17.2857 1.16173 0.00542699 0.000443488 14.6863 7.22682 47.9298 35.5863 3195.35 0.737954 9.25643 0.565944 82.1337 0.565944 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 5 param+error 132.481 610.31 -0.0333049 0.180241 44.7179 21.5195 21.3633 15.9972 3354.54 0.683492 8.69575 0.447443 131.967 0.447443 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 6 param+error -547.08 293.54 0.147988 0.0791854 107.91 12.6323 19.5701 1.71505 3673.87 0.225881 8.91158 0.151055 213.811 0.151055 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 7 param+error -145.874 149.933 0.0376627 0.0387002 2.41044 1.399 38292.7 31236.3 3838.54 0.743511 10.2999 0.407524 27.0903 0.407524 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 8 param+error -1235.14 848.615 0.268637 0.182632 35.1462 6.57383 100.688 94.8755 4605.5 0.735298 11.9497 0.633143 98.8193 0.633143 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.1367 0.750862 0.00147428 8.7472e-05 50.3567 4.42963 88.509 13.264 8604.61 0.547332 11.288 0.398375 128.334 0.398375 +CL dss 0 30 h M:PF-B:L-L:GCDFED-P:G 10 param+error 666.719 297.899 -0.0692425 0.0310189 43.89 2.13038 48.9263 5.3942 9571.42 0.494898 10.4679 0.363679 72.0097 0.363679 +CP dss 0 30 h pakw 11 1884.43 59.541 3.14834 2014.65 80.997 3.25919 2263.74 122.061 3.21486 2351.01 136.474 3.2832 3195.35 276.398 3.6171 3354.54 302.853 3.3995 3673.87 356.017 3.48651 3838.54 383.851 4.03097 4605.5 510.99 4.68079 8604.61 1173.24 4.37078 9571.42 1332.5 4.02516 +CM dss 0 30 h poly3 -249.745 0.162965 6.90888e-07 -4.69303e-11 error 3.20753 0.00273924 6.70981e-07 4.48411e-11 +CR dss 0 30 h poly2 2.99639 0.00228772 -1.07545e-06 error 0.255889 0.00138822 9.86883e-07 + +# ROU: dss 0 31 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.69008 1.28629 0.0033061 0.000698212 1596.3 34.8412 259.236 45.9733 1883.26 0.0231228 8.24516 0.0147167 20144.2 0.0147167 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 1 param+error 296.471 4.27533 0.142732 0.0022356 543.245 39.5378 94.618 21.8464 2015.8 0.0692271 8.45188 0.0478681 5080.41 0.0478681 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 2 param+error 761.328 420.155 -0.326425 0.182166 137.134 26.4156 28.1521 7.71402 2271.9 0.179071 8.29509 0.122311 823.67 0.122311 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 3 param+error -419.912 180.325 0.175614 0.075358 11.2273 2.37043 5324.45 13968.2 2361.8 0.368113 8.85914 0.24119 87.3615 0.24119 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 4 param+error 16.2444 9.4438 0.00511634 0.00288859 20.2992 6.14836 45.8396 20.3937 3242.93 0.709823 8.74397 0.546732 75.1322 0.546732 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 5 param+error -2179.49 715.195 0.637714 0.207815 33.2509 6.76738 34086.2 17513.2 3408.64 0.466074 10.1841 0.23535 149.422 0.23535 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 6 param+error -591.411 285.579 0.156918 0.0755244 71.8756 12.0888 35.2999 8.74895 3742.4 0.401345 9.69148 0.267946 229.259 0.267946 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 7 param+error 28.1952 27.739 -0.00710978 0.00703116 11.88 2.02151 17.0716 2.24349 3918.98 0.723203 7.67414 0.468202 19.6221 0.468202 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 8 param+error -397.913 552.823 0.0859539 0.1161 32.9283 7.30959 65.3734 46.5819 4715 0.809624 12.5044 0.699678 94.2414 0.699678 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.017 0.641172 0.0014024 7.32267e-05 53.5656 3.92228 75.4376 7.47862 8874.31 0.625683 11.9416 0.42452 106.303 0.42452 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 10 param+error 13.2845 16.4985 -0.00137006 0.00173217 1.78324 0.993299 45.1944 18.7041 9518.69 6.18437 10.0529 2.97436 1.26609 2.97436 +CL dss 0 31 h M:PF-B:L-L:GCDFED-P:G 11 param+error 325.928 129.045 -0.0326089 0.0130056 36.3 2.76727 68.4918 5.72332 9874.98 0.502585 11.7163 0.341465 67.4427 0.341465 +CP dss 0 31 h pakw 12 1883.26 59.541 3.10491 2015.8 80.997 3.18111 2271.9 122.061 3.11915 2361.8 136.474 3.3302 3242.93 276.398 3.2783 3408.64 302.853 3.81671 3742.4 356.017 3.62953 3918.98 383.851 2.87309 4715 510.99 4.6766 8874.31 1173.24 4.49287 9518.69 1274.58 3.79218 9874.98 1332.5 4.42693 +CM dss 0 31 h poly3 -242.783 0.161425 -4.8352e-07 2.9327e-11 error 3.11443 0.00263331 6.33993e-07 4.13703e-11 +CR dss 0 31 h poly2 3.14603 0.000406032 3.15959e-07 error 0.248081 0.00129668 9.12383e-07 + +# ROU: dss 0 32 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 0 param+error 414.123 6.0958 -0.215306 0.00322302 622.802 33.1484 120.078 26.089 1854.22 0.0435363 8.25158 0.026031 7576.75 0.026031 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 1 param+error 294.04 5.74792 0.139196 0.003209 382.804 36.6073 110.761 39.4612 1982.87 0.0811596 8.64192 0.0563517 3929.84 0.0563517 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.61834 0.659957 0.00226756 0.000306331 159.676 24.9607 29.5026 4.91231 2230.67 0.193662 8.40742 0.104611 789.515 0.104611 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.444769 0.199534 0.000129256 0.000102449 6.7272 0.658635 19929.7 3956.12 2317.23 0.279433 8.26971 0.215844 86.9697 0.215844 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 4 param+error 396.477 582.068 -0.113697 0.182217 39.3226 42.4071 16.366 19.1964 3163.07 2.14358 9.18811 1.07359 59.7794 1.07359 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 5 param+error 79.7093 441.483 -0.0177521 0.1317 63.03 46.8243 19.8637 4.54348 3322.16 0.45972 8.78497 0.291518 111.267 0.291518 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 6 param+error -700.081 1.47072 0.191285 0.000423036 99.6599 86.5295 26.5437 0.848673 3640.62 0.212699 9.16134 0.156757 210.706 0.156757 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 7 param+error 54.9898 32.6253 -0.0142139 0.00850354 13.2 2.56044 18.1818 2.4266 3809.18 0.716487 7.80442 0.501494 19.5195 0.501494 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 8 param+error 6.17484 0.498157 0.00152279 0.000118381 35.2639 9.69865 35.3343 8.29137 4569.99 0.888853 12.0593 0.510261 91.3688 0.510261 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 9 param+error -2243.75 7.63789 0.263295 0.000886326 50.4383 2.70249 216.39 40.9623 8575.36 0.505743 12.2469 0.366179 124.087 0.366179 +CL dss 0 32 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.679298 0.402319 8.38119e-05 4.4914e-05 35.8352 1.90135 84.1546 5.59235 9546.87 0.652791 11.1377 0.461225 71.8007 0.461225 +CP dss 0 32 h pakw 11 1854.22 59.541 3.2168 1982.87 80.997 3.37026 2230.67 122.061 3.28105 2317.23 136.474 3.22802 3163.07 276.398 3.59246 3322.16 302.853 3.43556 3640.62 356.017 3.58393 3809.18 383.851 3.05347 4569.99 510.99 4.71874 8575.36 1173.24 4.73807 9546.87 1332.5 4.28391 +CM dss 0 32 h poly3 -246.254 0.164252 4.46013e-07 -3.44888e-11 error 3.32245 0.00287548 7.11222e-07 4.7763e-11 +CR dss 0 32 h poly2 3.24177 0.000292625 5.12406e-07 error 0.256893 0.00133608 9.51094e-07 + +# ROU: dss 0 33 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.55206 0.611549 0.00153497 0.000323312 351.407 23.5413 57.0722 7.32782 1872.62 0.0558577 8.22829 0.0339896 3946.02 0.0339896 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 1 param+error 280.892 3.88154 0.140921 0.00204069 319.378 31.0742 59.3081 11.5547 2002.33 0.0913689 8.33972 0.0682889 2814.8 0.0682889 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.80962 0.698309 0.00213081 0.000310538 87.83 12.1229 71.4265 23.4069 2249.49 0.136252 8.50433 0.0871384 859.966 0.0871384 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 3 param+error -13.7854 137.408 0.00610922 0.057983 13.3837 4.89305 38.0692 26.2089 2336.52 0.429037 8.34901 0.312102 86.46 0.312102 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 4 param+error 585.003 307.289 -0.170734 0.0958956 45.8698 40.4876 13.1807 4.28738 3177.82 1.09031 8.50348 0.679522 47.8223 0.679522 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 5 param+error -116.852 394.093 0.0407064 0.11691 69.96 13.1674 20.4481 3.44923 3335.78 0.383247 8.54473 0.287622 118.603 0.287622 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 6 param+error 198.89 316.452 -0.053875 0.0859936 111.21 72.7678 22.3234 2.11812 3653.71 0.252669 8.80332 0.171296 207.032 0.171296 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 7 param+error 0.0152251 2.30689 8.77573e-06 0.000599059 6.58187 2.867 30.8126 12.1101 3818.43 0.975207 9.6657 0.598958 25.8916 0.598958 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 8 param+error 305.635 101.372 -0.0629667 0.0219363 51.15 5.63369 20.4114 2.08116 4586.75 0.483255 10.5779 0.344343 86.6143 0.344343 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 9 param+error 903.089 691.795 -0.101606 0.0801715 69.3 4.84251 44.932 7.16433 8593.4 0.519969 10.7109 0.376654 99.3449 0.376654 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 10 param+error 9.1181 41.7172 -0.000940928 0.00452229 1.61675 0.371785 42.9807 20.7191 9206.79 0.793604 3.06383 0.943815 4.49663 0.943815 +CL dss 0 33 h M:PF-B:L-L:GCDFED-P:G 11 param+error 675.436 129.243 -0.070241 0.0134927 40.59 5.61049 50.1316 3.38963 9555.65 0.459525 10.664 0.360259 68.0776 0.360259 +CP dss 0 33 h pakw 12 1872.62 59.541 3.22502 2002.33 80.997 3.26867 2249.49 122.061 3.33305 2336.52 136.474 3.2721 3177.82 276.398 3.33131 3335.78 302.853 3.34709 3653.71 356.017 3.44746 3818.43 383.851 3.78458 4586.75 510.99 4.13797 8593.4 1173.24 4.1503 9206.79 1274.58 1.18461 9555.65 1332.5 4.11773 +CM dss 0 33 h poly3 -252.159 0.166313 7.31493e-08 -1.36346e-11 error 3.14461 0.00269056 6.59673e-07 4.41719e-11 +CR dss 0 33 h poly2 3.05974 0.00221476 -2.64518e-06 error 0.257982 0.00136571 9.40008e-07 + +# ROU: dss 0 34 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 0 param+error -751.962 606.748 0.407942 0.32617 698.669 28.994 70.2059 7.96645 1826.3 0.0379044 8.18257 0.0275236 8015.35 0.0275236 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 1 param+error 289.976 4.37099 0.146772 0.00250413 440.087 28.5147 74.6788 11.461 1955.78 0.0693884 8.41849 0.053274 4002.3 0.053274 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.33432 0.689525 0.00207206 0.000315463 98.5065 13.1078 58.8699 15.167 2201.6 0.14034 8.48418 0.0860344 859.818 0.0860344 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 3 param+error 77.665 0.858073 -0.0332747 0.000364543 5.83368 5.27253 158.539 1090.12 2287.37 0.513512 8.76743 0.314843 87.4632 0.314843 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 4 param+error -21.3162 331.795 0.0184775 0.104762 11.166 3.12759 139.495 262.017 3124.44 0.549553 9.33153 0.536754 84.9067 0.536754 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 5 param+error 8.19429 0.971206 0.00250323 0.000298951 34.6533 1.79319 39.7242 2.04879 3283.18 0.286164 9.3572 0.238406 139.999 0.238406 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 6 param+error -805.828 355.25 0.2219 0.0977116 100.65 5.92178 30.1277 2.91 3602.14 0.216506 9.08462 0.16991 215.914 0.16991 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 7 param+error 22.7043 45.6452 -0.00587155 0.0120247 13.2 8.2677 18.5961 2.98521 3768.89 0.687357 8.30904 0.468805 22.2719 0.468805 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 8 param+error -620.139 429.394 0.138346 0.0938424 35.1668 5.68556 64.7154 32.9036 4531.03 0.617798 11.3613 0.51388 104.409 0.51388 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.3704 9.14354 0.00145866 0.00107144 52.469 6.89665 85.6091 24.601 8495.52 0.577744 10.7472 0.366676 137.609 0.366676 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 10 param+error 14.6582 8.74846 -0.0015759 0.000973361 2.64 2.05364 29.9028 4.67379 9103.9 2.32496 7.97489 2.10086 2.32279 2.10086 +CL dss 0 34 h M:PF-B:L-L:GCDFED-P:G 11 param+error 0.99571 0.240268 0.000118131 2.55521e-05 35.3432 2.54453 74.3211 6.57534 9444.47 0.584991 10.9336 0.323 86.0024 0.323 +CP dss 0 34 h pakw 12 1826.3 59.541 3.21987 1955.78 80.997 3.31228 2201.6 122.061 3.33737 2287.37 136.474 3.44854 3124.44 276.398 3.66827 3283.18 302.853 3.67806 3602.14 356.017 3.57042 3768.89 383.851 3.26542 4531.03 510.99 4.46433 8495.52 1173.24 4.23403 9103.9 1274.58 3.14466 9444.47 1332.5 4.31372 +CM dss 0 34 h poly3 -246.063 0.167513 -1.38743e-07 9.91491e-12 error 2.88223 0.00250419 6.22375e-07 4.22716e-11 +CR dss 0 34 h poly2 3.24387 0.00100034 -4.91505e-07 error 0.258976 0.0013593 9.51055e-07 + +# ROU: dss 0 35 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.7772 0.699521 0.00166255 0.000362363 361.384 22.1244 65.4808 8.5659 1906.18 0.0554976 8.29114 0.0337154 4046.09 0.0337154 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 1 param+error 279.575 8.0916 0.132261 0.00583684 363.011 53.6493 44.259 11.3651 2037.3 0.131388 8.51897 0.110374 2557.76 0.110374 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.23279 0.664543 0.00188133 0.000287942 92.0412 12.3815 64.7229 18.5081 2289.24 0.138985 8.51227 0.0846394 834.825 0.0846394 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 3 param+error 143.175 83.0952 -0.0588461 0.0345662 32.0099 29.1828 13.4567 2.12926 2379.45 0.375705 7.51897 0.26137 71.7314 0.26137 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 4 param+error 17.597 0.747625 0.00545896 0.000232619 10.2865 0.874821 325.271 17.7246 3244.81 0.444006 9.83138 0.409512 77.511 0.409512 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 5 param+error -384.088 640.535 0.116649 0.185942 50.2802 21.8718 33.8447 26.269 3408.6 0.956297 9.56703 0.575133 127.638 0.575133 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 6 param+error 119.542 436.345 -0.0314715 0.115878 100.32 16.5074 24.1875 3.04039 3731.48 0.257915 9.55652 0.174281 206.935 0.174281 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 7 param+error 18.0384 40.9161 -0.00451019 0.0103903 12.54 1.82155 18.2396 3.04039 3901.23 0.899719 8.66883 0.543519 19.6431 0.543519 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 8 param+error -70.4101 830.227 0.017792 0.176196 35.5252 17.5729 36.5178 37.4282 4669.78 1.17131 12.3317 0.807127 92.9309 0.807127 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1116.89 228.74 -0.124822 0.0262105 71.94 2.64842 41.3954 3.01872 8691.08 0.469139 10.5314 0.343029 101.742 0.343029 +CL dss 0 35 h M:PF-B:L-L:GCDFED-P:G 10 param+error 1.02368 0.219698 0.000120415 2.38704e-05 29.4673 1.92009 99.2136 8.41026 9657.86 0.561014 12.292 0.352539 82.8762 0.352539 +CP dss 0 35 h pakw 11 1906.18 59.541 3.1515 2037.3 80.997 3.24139 2289.24 122.061 3.24494 2379.45 136.474 2.86816 3244.81 276.398 3.77173 3408.6 302.853 3.67388 3731.48 356.017 3.67649 3901.23 383.851 3.33798 4669.78 510.99 4.76545 8691.08 1173.24 4.09622 9657.86 1332.5 4.77387 +CM dss 0 35 h poly3 -245.433 0.158631 8.30007e-07 -3.47968e-11 error 3.2402 0.0027331 6.62453e-07 4.4074e-11 +CR dss 0 35 h poly2 3.02085 0.00154849 -3.34365e-07 error 0.250562 0.00136535 9.9001e-07 + +# ROU: dss 0 36 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.15443 0.572714 0.00162095 0.000282582 203.803 21.1942 72.1742 19.1214 1949.97 0.0814518 8.27956 0.0486717 2337.1 0.0486717 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 1 param+error -1292.28 2171.73 0.868294 1.02828 214.079 27.7491 105.835 84.5005 2079.92 0.127965 8.52027 0.118317 1891.8 0.118317 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.92929 0.68719 0.00226236 0.0003013 125.033 15.4394 37.5378 5.8734 2329.51 0.158023 8.22078 0.0960464 764.644 0.0960464 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 3 param+error -11.2114 166.654 0.0047896 0.0680446 5.71822 2.16731 24064.7 15093.1 2416.55 0.344913 8.79007 0.214372 88.096 0.214372 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 4 param+error 17.904 9.4495 0.00573229 0.00285988 30.4691 12.5388 22.6494 7.9047 3274.52 1.03894 8.87048 0.632466 64.5015 0.632466 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 5 param+error 8.90911 1.09397 0.00261917 0.000338241 36.0162 9.74911 37.5162 12.1057 3435.71 0.561672 9.53383 0.405559 135.22 0.405559 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 6 param+error 291.024 559.818 -0.0763215 0.147446 88.972 27.1317 24.3621 9.3929 3761.75 0.581535 9.2947 0.336748 227.174 0.336748 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 7 param+error -15.6119 45.5839 0.00406625 0.0115236 11.55 10.4831 22.9757 3.70488 3932.7 0.754069 8.30468 0.513823 19.4945 0.513823 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 8 param+error 4.74538 5.34514 0.00138763 0.00112305 37.9623 6.45295 37.6215 5.29749 4714.04 0.682065 11.3009 0.423894 97.4701 0.423894 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 9 param+error 13.2639 0.837675 0.00163197 0.000100639 66.0685 5.50818 59.1254 5.72772 8760.86 0.755823 10.6519 0.53875 106.251 0.53875 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 10 param+error -45.2075 97.7723 0.0048085 0.0103909 0.831291 0.300568 686.132 4825.1 9370.18 1.68339 11.6255 1.36042 4.66972 1.36042 +CL dss 0 36 h M:PF-B:L-L:GCDFED-P:G 11 param+error 821.909 117.471 -0.0838686 0.0120316 44.88 2.91412 42.1069 2.60998 9727.05 0.499188 10.2945 0.326746 68.479 0.326746 +CP dss 0 36 h pakw 12 1949.97 59.541 3.20462 2079.92 80.997 3.29517 2329.51 122.061 3.17482 2416.55 136.474 3.39308 3274.52 276.398 3.41115 3435.71 302.853 3.66424 3761.75 356.017 3.56897 3932.7 383.851 3.18752 4714.04 510.99 4.33274 8760.86 1173.24 4.14241 9370.18 1274.58 4.54364 9727.05 1332.5 4.03656 +CM dss 0 36 h poly3 -263.24 0.166995 -8.37017e-07 5.56669e-11 error 3.20657 0.00265659 6.32383e-07 4.13337e-11 +CR dss 0 36 h poly2 3.19881 0.000694362 8.29278e-08 error 0.255074 0.0013371 9.39742e-07 + +# ROU: dss 0 37 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 0 param+error 0.951404 1.12671 0.00352303 0.000547118 530.497 22.7926 72.9227 6.93971 1924.1 0.0450173 8.39662 0.0289045 5721.03 0.0289045 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 1 param+error -2419.42 2331.74 1.42208 1.1166 370.33 37.8303 104.309 60.7184 2054.97 0.103253 8.83573 0.0949343 3079.06 0.0949343 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 2 param+error 3.83008 0.717293 0.00177422 0.000321644 94.7844 12.167 67.7565 19.1371 2306.78 0.140774 8.67657 0.0892075 819.44 0.0892075 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 3 param+error -479.547 449.734 0.198074 0.185512 19.2965 7.90088 58.7937 85.7761 2396.75 0.610481 7.90872 0.42573 85.1518 0.42573 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 4 param+error 679.39 201.531 -0.195109 0.0611688 41.4846 32.0492 8.92118 8.38994 3263.08 1.87403 8.71967 0.780479 66.8615 0.780479 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 5 param+error -615.259 1.19569 0.183533 0.000505174 61.71 52.7951 27.4994 1.39836 3427.73 0.317616 9.18575 0.275028 116.835 0.275028 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1760.48 661.925 0.465383 0.174713 99 7.92267 37.1874 6.46555 3755.87 0.23193 9.64502 0.188401 216.209 0.188401 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 7 param+error -76.3793 156.978 0.0193306 0.0396177 10.5251 6.39807 25.1983 19.1932 3927.64 1.47035 9.52278 0.845493 20.5142 0.845493 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 8 param+error 5.59944 0.504427 0.00126211 0.000110814 22.7249 3.46572 60.5007 11.0878 4714.48 0.495198 11.9939 0.353224 104.633 0.353224 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 9 param+error 13.2203 0.814913 0.0015326 9.39438e-05 62.675 7.68016 59.9966 10.0814 8823.05 0.824081 10.7335 0.500055 107.326 0.500055 +CL dss 0 37 h M:PF-B:L-L:GCDFED-P:G 10 param+error 1.03219 0.332271 0.000116458 3.67495e-05 37.7418 2.40138 76.7947 5.37306 9810.33 0.706136 11.3522 0.441287 70.2031 0.441287 +CP dss 0 37 h pakw 11 1924.1 59.541 3.21085 2054.97 80.997 3.37696 2306.78 122.061 3.31288 2396.75 136.474 3.01869 3263.08 276.398 3.31888 3427.73 302.853 3.49471 3755.87 356.017 3.66645 3927.64 383.851 3.6186 4714.48 510.99 4.55137 8823.05 1173.24 4.08549 9810.33 1332.5 4.33519 +CM dss 0 37 h poly3 -254.226 0.163988 -4.94263e-07 2.72881e-11 error 3.09131 0.00257529 6.16301e-07 4.03506e-11 +CR dss 0 37 h poly2 3.10731 0.00127444 -3.05217e-07 error 0.257509 0.00138181 9.88876e-07 + +# ROU: dss 0 38 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.61885 0.600066 0.00160219 0.000315167 393.858 29.9114 75.4538 14.9674 1950.03 0.0587338 8.26034 0.0341086 4587.29 0.0341086 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 1 param+error 280.958 3.74418 0.134937 0.0018936 345.927 38.312 54.0712 11.3379 2079.97 0.104627 8.36165 0.0728285 2746.05 0.0728285 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 2 param+error -1504.94 504.471 0.641134 0.21363 100.854 11.1437 124.383 71.7434 2328.63 0.138422 8.51418 0.107634 844.337 0.107634 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 3 param+error 148.381 93.0736 -0.0604046 0.0380344 36.63 24.9878 13.9761 2.03746 2418.09 0.389091 7.52452 0.249533 71.6271 0.249533 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 4 param+error 430.453 241.254 -0.118659 0.0728635 45.2094 37.0841 13.1064 3.58467 3278.63 0.845156 8.62811 0.534052 54.8485 0.534052 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 5 param+error -1318.51 630.521 0.384885 0.181383 45.3472 15.8985 71.3061 79.513 3440.46 0.848423 9.48631 0.529088 136.765 0.529088 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 6 param+error 6.54321 248.166 -0.00132469 0.0652035 85.7909 16.4751 27.2449 5.92822 3766.19 0.466591 9.42147 0.276047 224.854 0.276047 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 7 param+error 83.6878 24.3034 -0.0209766 0.00614899 11.55 9.36361 13.6356 2.16756 3936.21 0.677744 8.90024 0.46843 21.1296 0.46843 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 8 param+error -1287.74 825.327 0.273193 0.173424 25.6055 5.81718 495.118 1761.57 4717.17 0.692915 12.3652 0.551631 108.082 0.551631 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1629.91 843.164 -0.181508 0.0954718 70.62 10.0145 36.3346 6.23013 8790.82 0.484507 10.2601 0.392144 97.8559 0.392144 +CL dss 0 38 h M:PF-B:L-L:GCDFED-P:G 10 param+error -5090.73 3.57502 0.519174 0.00036451 42.2126 1.87233 97483.9 49619 9769.7 0.433547 12.4604 0.323032 86.1057 0.323032 +CP dss 0 38 h pakw 11 1950.03 59.541 3.18784 2079.97 80.997 3.22488 2328.63 122.061 3.27991 2418.09 136.474 2.89751 3278.63 276.398 3.31148 3440.46 302.853 3.63898 3766.19 356.017 3.6107 3936.21 383.851 3.40945 4717.17 510.99 4.72951 8790.82 1173.24 3.94283 9769.7 1332.5 4.80893 +CM dss 0 38 h poly3 -261.715 0.165874 -6.11821e-07 3.48261e-11 error 3.2076 0.00266486 6.38551e-07 4.20535e-11 +CR dss 0 38 h poly2 3.07817 0.000988326 2.98649e-08 error 0.251871 0.0013602 9.85822e-07 + +# ROU: dss 0 39 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.72129 1.70671 0.00195967 0.000844495 632.647 79.9732 39.6964 8.14261 1956.65 0.0783604 7.97317 0.0404147 5601.99 0.0404147 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 1 param+error 480.778 1990.34 0.0442159 0.939172 368.759 37.5171 60.1604 22.0017 2086.79 0.087216 8.19121 0.0755109 3309.5 0.0755109 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 2 param+error -1217.42 451.734 0.517999 0.190673 105.273 11.6136 89.0379 36.6568 2336.03 0.133486 8.39251 0.0976482 865.714 0.0976482 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 3 param+error -124.611 177.972 0.0509913 0.0724791 14.6437 4.84733 51.9551 45.0216 2424.19 0.466549 7.99172 0.355342 86.0977 0.355342 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 4 param+error -387.164 628.2 0.128058 0.18994 14.4789 7.7545 742.498 23315.1 3272 0.793203 9.67568 0.511216 88.0756 0.511216 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 5 param+error -1960.84 665.817 0.571777 0.192166 32.6309 6.13136 34174.2 24858 3432.85 0.395371 9.35879 0.219157 163.778 0.219157 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 6 param+error 398.899 313.574 -0.104579 0.0829111 105.6 73.7868 20.0566 1.99921 3757.16 0.250235 9.05768 0.175761 216.095 0.175761 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 7 param+error 55.5853 36.9614 -0.0139952 0.00933271 14.1336 8.36528 15.8833 4.37389 3926.88 1.16208 9.09623 0.57677 20.3142 0.57677 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 8 param+error 241.655 235.438 -0.0479573 0.049755 54.12 7.20843 22.4766 3.28455 4705.54 0.555739 10.7709 0.414576 84.7975 0.414576 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 9 param+error 716.6 559.972 -0.0783584 0.0634989 73.5898 16.142 48.7667 5.99437 8782.67 0.406477 9.0866 0.322498 103.42 0.322498 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 10 param+error -12.3013 69.168 0.00132517 0.00732524 0.592808 0.240565 242.336 731.264 9397.69 1.99495 11.7496 1.64371 3.55428 1.64371 +CL dss 0 39 h M:PF-B:L-L:GCDFED-P:G 11 param+error 609.269 175.545 -0.0620523 0.0179185 41.9543 4.14006 54.3631 8.13388 9763.73 0.809608 10.3723 0.468808 68.2823 0.468808 +CP dss 0 39 h pakw 12 1956.65 59.541 3.10527 2086.79 80.997 3.1879 2336.03 122.061 3.26185 2424.19 136.474 3.10464 3272 276.398 3.74323 3432.85 302.853 3.618 3757.16 356.017 3.49666 3926.88 383.851 3.50908 4705.54 510.99 4.14289 8782.67 1173.24 3.46835 9397.69 1274.58 4.48475 9763.73 1332.5 3.95958 +CM dss 0 39 h poly3 -266.059 0.167443 -5.87439e-07 2.1472e-11 error 2.97673 0.00244655 5.78357e-07 3.7748e-11 +CR dss 0 39 h poly2 3.07237 0.00149718 -6.52469e-07 error 0.248827 0.00134004 9.48934e-07 + +# ROU: dss 0 40 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.21036 0.662033 0.0020773 0.0003472 285.687 21.577 67.962 11.8116 1895.52 0.0610038 8.12429 0.0376765 3348.71 0.0376765 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 1 param+error 266.92 3.82005 0.13195 0.00191572 270.623 30.2629 60.8134 13.8905 2026.4 0.105677 8.43372 0.0785017 2360.92 0.0785017 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 2 param+error 843.419 355.935 -0.360614 0.153852 119.883 22.7469 31.0965 8.63283 2278.41 0.172539 8.16531 0.11556 798.346 0.11556 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.668032 1.07036 1.21023e-05 0.000492774 5.46937 0.58974 16783.6 8462.89 2366.93 0.288886 8.85935 0.231403 85.2146 0.231403 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 4 param+error 162.918 154.43 -0.0385008 0.0469914 28.3643 10.9807 26.0523 12.4272 3238.3 1.01456 8.58885 0.653644 64.1907 0.653644 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 5 param+error 172.278 407.521 -0.0449392 0.118621 67.65 41.7953 19.7341 3.60809 3400.67 0.410071 8.905 0.317404 109.295 0.317404 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 6 param+error 214.634 334.66 -0.0566263 0.0892278 107.25 13.9262 21.7487 2.19741 3725.27 0.257724 9.12741 0.180292 221.228 0.180292 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 7 param+error -161.618 116.403 0.0411838 0.0296067 3.31298 0.786476 1181.88 21785.1 3893.29 0.583947 10.1146 0.44369 29.2675 0.44369 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 8 param+error 5.36578 5.61165 0.00133765 0.00119115 31.7911 5.38185 45.3184 7.15812 4668.45 0.674655 12.4001 0.454716 96.7008 0.454716 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 9 param+error 13.4097 0.64635 0.00160377 7.45822e-05 53.4837 3.33821 79.7485 6.1295 8684.29 0.583413 11.0935 0.389928 112.877 0.389928 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 10 param+error 2.03698 3.43087 -0.000196076 0.000360094 0.845094 0.178487 111.853 39.484 9297.09 1.47805 8.17021 5.83773 3.35835 5.83773 +CL dss 0 40 h M:PF-B:L-L:GCDFED-P:G 11 param+error 378.36 221.152 -0.0388003 0.0228059 40.26 5.61257 58.5074 6.04635 9650.97 0.511248 11.1884 0.351978 66.8206 0.351978 +CP dss 0 40 h pakw 12 1895.52 59.541 3.08278 2026.4 80.997 3.20296 2278.41 122.061 3.1061 2366.93 136.474 3.37201 3238.3 276.398 3.28623 3400.67 302.853 3.41031 3725.27 356.017 3.5017 3893.29 383.851 3.88389 4668.45 510.99 4.77981 8684.29 1173.24 4.33317 9297.09 1274.58 3.19469 9650.97 1332.5 4.37701 +CM dss 0 40 h poly3 -243.594 0.1589 6.43135e-07 -1.85456e-11 error 3.19481 0.00271383 6.60966e-07 4.39196e-11 +CR dss 0 40 h poly2 2.9718 0.00205589 -1.11016e-06 error 0.252093 0.00136382 9.58008e-07 + +# ROU: dss 0 41 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.83814 0.545783 0.00144739 0.00027748 150.246 15.843 100.996 36.6871 1910.86 0.0802332 8.1559 0.0504023 1978.24 0.0504023 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 1 param+error 1700.1 902.792 -0.570887 0.433313 171.487 31.2424 48.0932 22.372 2043.57 0.149477 8.35333 0.133857 1505.66 0.133857 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 2 param+error 3.7431 2.20584 0.00106157 0.00116744 86.7024 17.2948 53.8653 21.6384 2301.56 0.186694 8.4071 0.152961 676.189 0.152961 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 3 param+error 102.912 290.838 -0.0422816 0.119966 8.70942 6.08841 35.6987 69.5397 2393.45 0.46632 8.6593 0.424679 80.3963 0.424679 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 4 param+error 322.209 296.568 -0.0864739 0.0888377 6.10864 2.56433 88.2209 206.413 3299.9 0.481223 9.86833 0.455094 85.7201 0.455094 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 5 param+error -490.773 740.526 0.145579 0.211103 32.5718 8.79705 53.1462 54.9771 3470.48 0.50021 9.71634 0.522996 138.324 0.522996 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 6 param+error 444.339 162.958 -0.1153 0.0424086 96.03 4.23572 20.7935 1.56792 3808.23 0.260769 10.0401 0.163875 202.974 0.163875 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 7 param+error -239.251 111.586 0.0595724 0.02775 4.21979 1.19892 39682.1 39715.3 3981.83 0.866433 11.4894 0.459155 24.6953 0.459155 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 8 param+error 9.04052 417.588 0.000641919 0.0865934 49.5 42.7052 29.031 6.92741 4785.84 0.628197 11.9308 0.41032 78.7125 0.41032 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.2366 0.579901 0.0014338 6.55053e-05 53.4066 3.03637 84.5266 6.15142 8985.92 0.628796 11.9944 0.40845 98.7587 0.40845 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 10 param+error 2.43676 46.954 -0.000219945 0.00485542 0.78578 0.646306 69.4052 131.961 9635.55 3.17573 10.494 2.36921 2.94423 2.36921 +CL dss 0 41 h M:PF-B:L-L:GCDFED-P:G 11 param+error 380.526 100.504 -0.0377321 0.0100084 36.3 0.528883 69.2639 4.57989 10007.7 0.557682 12.3684 0.400754 65.5499 0.400754 +CP dss 0 41 h pakw 12 1910.86 59.541 3.00432 2043.57 80.997 3.07708 2301.56 122.061 3.09704 2393.45 136.474 3.19003 3299.9 276.398 3.63714 3470.48 302.853 3.5816 3808.23 356.017 3.70208 3981.83 383.851 4.23726 4785.84 510.99 4.40456 8985.92 1173.24 4.47471 9635.55 1274.58 3.92429 10007.7 1332.5 4.63193 +CM dss 0 41 h poly3 -238.976 0.156552 -6.92177e-08 1.28734e-11 error 3.11764 0.00259528 6.15143e-07 3.96334e-11 +CR dss 0 41 h poly2 2.75354 0.0036741 -1.93048e-06 error 0.248459 0.0014044 9.98099e-07 + +# ROU: dss 0 42 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 0 param+error 7.89286 4.58339 -0.000634577 0.00277101 463.418 33.7256 60.4885 9.8428 1933.35 0.0534037 8.08258 0.0420429 5305.8 0.0420429 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 1 param+error -5628.85 2357.06 2.95194 1.12439 379.543 27.9216 139.754 79.5216 2064.67 0.0864113 8.37909 0.0794738 3132.72 0.0794738 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 2 param+error 0.529559 2.49648 -9.10036e-05 0.00124783 121.767 21.2371 41.578 11.4314 2317.91 0.170496 8.32624 0.135019 845.169 0.135019 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.316381 0.299672 0.000111544 0.000123149 5.06611 0.612671 5471.52 4356.16 2406.02 0.280491 8.92144 0.240329 88.8334 0.240329 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 4 param+error 435.975 185.28 -0.12055 0.0561295 46.5288 45.9951 11.6357 2.62399 3272.78 0.648022 8.61497 0.437011 60.9168 0.437011 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 5 param+error 9.24464 1.04282 0.00261309 0.000348787 23.6303 7.01035 62.1231 34.159 3434.89 0.470017 9.74236 0.364645 142.194 0.364645 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 6 param+error -0.593061 6.24028 -9.56724e-05 0.001645 92.9219 12.0515 26.6453 2.71397 3764.38 0.38527 9.27863 0.218769 227.218 0.218769 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 7 param+error 25.0627 46.7134 -0.00626525 0.011773 11.55 1.3861 22.9297 3.97748 3936.74 0.86801 8.60248 0.532659 20.8972 0.532659 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 8 param+error 188.477 122.27 -0.0368105 0.0256776 51.1499 11.4937 24.8068 2.58136 4723.82 0.495729 11.0373 0.337511 83.0315 0.337511 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 9 param+error 11.4282 0.647208 0.00139943 7.61188e-05 51.9345 3.93767 86.0298 9.50933 8818.88 0.62548 11.6662 0.420072 115.645 0.420072 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 10 param+error -73.1782 36.7938 0.00772223 0.00388117 0.902198 0.275838 92704.3 47519 9439.82 2.41571 14.0057 1.76427 3.62897 1.76427 +CL dss 0 42 h M:PF-B:L-L:GCDFED-P:G 11 param+error 125.365 351.462 -0.0125218 0.0356728 34.5251 3.98833 78.3117 21.0629 9802.56 0.863674 11.8322 0.547804 71.9382 0.547804 +CP dss 0 42 h pakw 12 1933.35 59.541 3.08908 2064.67 80.997 3.20107 2317.91 122.061 3.17847 2406.02 136.474 3.40484 3272.78 276.398 3.2811 3434.89 302.853 3.70934 3764.38 356.017 3.53083 3936.74 383.851 3.27273 4723.82 510.99 4.19582 8818.88 1173.24 4.45931 9439.82 1274.58 5.36537 9802.56 1332.5 4.53935 +CM dss 0 42 h poly3 -255.33 0.163601 -4.1018e-07 2.55289e-11 error 3.23522 0.00269952 6.4488e-07 4.21011e-11 +CR dss 0 42 h poly2 3.11936 0.000850557 3.32502e-07 error 0.251389 0.00133538 9.48375e-07 + +# ROU: dss 0 43 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 0 param+error 8.1242 4.25138 -0.00202616 0.00282157 397.201 28.7677 79.3832 16.779 1877.37 0.0554813 8.01551 0.0438153 4669.4 0.0438153 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 1 param+error 277.819 3.68984 0.140118 0.00211774 339.129 38.3134 55.3375 12.3345 2006.81 0.102768 8.21829 0.0703295 2761.69 0.0703295 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 2 param+error 7.97652 2.36824 0.00249778 0.00130268 85.4557 14.0397 73.2349 32.3574 2253.76 0.137726 8.12237 0.114291 874.793 0.114291 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 3 param+error -30.7037 4.55011 0.0134639 0.00192189 20.203 9.98336 23.3997 12.2255 2341.37 0.604399 7.61624 0.320215 87.2649 0.320215 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 4 param+error 303.895 301.417 -0.0828707 0.0934877 48.1797 30.7161 10.9594 4.10611 3183.58 0.950752 9.55846 0.56582 65.8889 0.56582 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 5 param+error -516.198 406.777 0.158501 0.120416 69.9599 46.1476 23.2109 3.8425 3344.05 0.35072 8.43147 0.275115 121.67 0.275115 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1226.63 499.882 0.332055 0.135141 48.3829 4.4438 102.432 52.2547 3662.4 0.247574 10.0358 0.225102 274.122 0.225102 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 7 param+error 43.4404 35.163 -0.0111757 0.00910436 11.2484 10.5251 21.3046 8.34884 3832.88 1.47525 7.98742 0.703026 22.7884 0.703026 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 8 param+error -1082.36 644.304 0.23545 0.138558 36.1346 4.62831 94.0376 67.0715 4605.96 0.712029 12.3816 0.641033 94.3869 0.641033 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.5337 0.761202 0.00149855 8.78544e-05 54.6129 4.04538 76.9534 8.18061 8662.58 0.584171 11.1368 0.412796 117.887 0.412796 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 10 param+error 1.89562 110.556 -0.000160959 0.0118639 0.645903 0.516169 73.2787 215.706 9279.66 2.1968 11.2945 1.55496 3.96946 1.55496 +CL dss 0 43 h M:PF-B:L-L:GCDFED-P:G 11 param+error 0.379544 0.357035 5.34024e-05 3.67419e-05 38.1142 2.20412 78.2004 5.36677 9642.99 0.588537 10.8771 0.416845 75.9773 0.416845 +CP dss 0 43 h pakw 12 1877.37 59.541 3.1432 2006.81 80.997 3.22084 2253.76 122.061 3.17974 2341.37 136.474 2.98044 3183.58 276.398 3.72681 3344.05 302.853 3.28516 3662.4 356.017 3.90503 3832.88 383.851 3.10577 4605.96 510.99 4.79923 8662.58 1173.24 4.25408 9279.66 1274.58 4.30595 9642.99 1332.5 4.14222 +CM dss 0 43 h poly3 -254.517 0.167997 -4.07735e-07 5.68697e-12 error 3.11618 0.00266229 6.51929e-07 4.34599e-11 +CR dss 0 43 h poly2 3.03082 0.00124439 -2.38696e-07 error 0.248675 0.00132637 9.3494e-07 + +# ROU: dss 0 44 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 0 param+error 5.36357 1.75485 0.00178858 0.000984882 564.398 65.9968 59.6026 16.6887 1900.77 0.0698133 8.06889 0.0381155 6047.36 0.0381155 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 1 param+error 286.29 3.91818 0.138796 0.00211388 386.935 38.2425 61.0543 12.7869 2031.12 0.0912293 8.32493 0.0639068 3258.98 0.0639068 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 2 param+error -353.513 562.014 0.156841 0.242788 75.0046 9.35715 167.743 150.286 2282.14 0.122773 8.51389 0.102501 881.431 0.102501 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 3 param+error -130.652 246.6 0.0546412 0.102778 6.77006 3.13295 23656.4 12156.7 2371.19 0.392163 8.74138 0.198392 92.8717 0.198392 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 4 param+error -1687.04 439.392 0.52482 0.133983 27.1147 4.5751 32294.2 19239.6 3251.68 0.714187 9.50776 0.449032 79.7731 0.449032 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 5 param+error -871.792 874.098 0.258053 0.253357 28.0243 8.46424 138.312 279.873 3415.75 0.544849 9.95274 0.457256 139.618 0.457256 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 6 param+error -33.2414 358.188 0.00922579 0.0948963 104.28 6.31618 22.4053 2.43995 3749 0.273297 9.3885 0.191368 212.224 0.191368 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 7 param+error -267.645 112.48 0.0676328 0.0284462 4.2209 1.1396 39061.9 29995.1 3920.49 0.682343 10.68 0.406612 29.7746 0.406612 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 8 param+error 328.364 107.214 -0.0662754 0.0225619 50.49 10.0305 21.6216 2.243 4715.37 0.472883 11.3205 0.328224 88.0061 0.328224 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 9 param+error 11.8287 0.618866 0.00140261 7.29625e-05 61.9107 3.42848 73.5195 5.12383 8772.48 0.565489 10.4415 0.406621 109.904 0.406621 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 10 param+error 1.98782 2.24396 -0.000203675 0.000252893 0.697298 0.258351 162.667 118.858 9381.14 3.26052 13.156 2.50009 2.51896 2.50009 +CL dss 0 44 h M:PF-B:L-L:GCDFED-P:G 11 param+error 580.157 88.6383 -0.0590699 0.00907155 45.87 5.87118 47.8802 2.44831 9733.22 0.51538 10.2335 0.356613 63.6153 0.356613 +CP dss 0 44 h pakw 12 1900.77 59.541 3.06763 2031.12 80.997 3.16164 2282.14 122.061 3.22745 2371.19 136.474 3.31172 3251.68 276.398 3.58691 3415.75 302.853 3.7531 3749 356.017 3.53825 3920.49 383.851 4.02444 4715.37 510.99 4.26968 8772.48 1173.24 4.10932 9381.14 1274.58 5.23779 9733.22 1332.5 4.10391 +CM dss 0 44 h poly3 -250.159 0.165144 -1.27259e-06 1.05308e-10 error 3.08685 0.0025895 6.19992e-07 4.06527e-11 +CR dss 0 44 h poly2 2.93579 0.00273915 -1.25836e-06 error 0.252087 0.00138882 9.84852e-07 + +# ROU: dss 0 45 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.00867 1.20389 0.00125505 0.000667645 392.346 53.112 49.8132 13.7281 1868.49 0.0760278 7.81371 0.0420851 4182.18 0.0420851 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 1 param+error 278.24 7.1157 0.136945 0.00460886 443.723 47.776 40.3662 7.01239 1997.24 0.102247 7.90748 0.0826978 3037.64 0.0826978 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 2 param+error 5.52604 0.670632 0.0025931 0.000300143 143.626 17.9203 33.2532 4.92035 2239.43 0.145965 7.78255 0.0834124 880.005 0.0834124 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 3 param+error -397.128 365.583 0.168994 0.155486 23.4889 9.73176 36.6861 34.8015 2324.59 0.636614 7.62267 0.412244 85.8941 0.412244 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 4 param+error 806.42 460.426 -0.242639 0.145274 1.22476 4.28016 8055.4 16780.4 3134.06 0.523152 8.63506 0.398618 91.6046 0.398618 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 5 param+error 421.432 1041.57 -0.120536 0.31356 50.5088 60.7254 17.5758 25.681 3289.65 1.2107 8.41121 0.740092 141.478 0.740092 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1054.19 520.888 0.290602 0.143318 97.8773 16.7064 32.5536 9.112 3602.45 0.461759 8.44816 0.284336 240.075 0.284336 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 7 param+error 35.1292 36.1176 -0.00915204 0.00950805 13.1999 8.45616 18.592 2.77414 3766.57 0.764037 8.61698 0.483713 20.4711 0.483713 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 8 param+error 69.9066 614.797 -0.0127245 0.134678 28.8112 12.0639 45.3758 42.7332 4522.92 0.778957 11.0177 0.620388 110.787 0.620388 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 9 param+error 13.2738 0.753566 0.00157607 8.86079e-05 62.5674 6.60951 57.4974 8.58641 8541.48 0.536076 9.50409 0.331975 136.817 0.331975 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 10 param+error -118.177 57.2358 0.0128592 0.00622489 1.1104 0.335842 75525 53562 9158.13 1.73749 10.6633 1.24293 4.57003 1.24293 +CL dss 0 45 h M:PF-B:L-L:GCDFED-P:G 11 param+error 1.24974 4.09648 0.000136896 0.000428972 40.6906 3.76471 65.8391 8.96658 9512.23 0.611409 9.65255 0.341992 82.0244 0.341992 +CP dss 0 45 h pakw 12 1868.49 59.541 3.16597 1997.24 80.997 3.20082 2239.43 122.061 3.14438 2324.59 136.474 3.07775 3134.06 276.398 3.46411 3289.65 302.853 3.37002 3602.45 356.017 3.37606 3766.57 383.851 3.43879 4522.92 510.99 4.36836 8541.48 1173.24 3.62381 9158.13 1274.58 4.03864 9512.23 1332.5 3.64145 +CM dss 0 45 h poly3 -264.64 0.174393 -5.93007e-07 -1.07091e-11 error 2.90775 0.00249113 6.13446e-07 4.13379e-11 +CR dss 0 45 h poly2 3.05481 0.0011608 -4.79035e-07 error 0.248213 0.00131414 9.21605e-07 + +# ROU: dss 0 46 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.82985 0.567204 0.00174152 0.000296757 129.646 12.3817 100.84 32.8116 1904.22 0.0839699 7.86562 0.0540287 1576.88 0.0540287 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 1 param+error 514.556 2347.37 0.00493308 1.13671 115.408 28.1772 20420.6 15821.7 2035.49 0.167153 8.2025 0.127848 1324.12 0.127848 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.19013 0.985662 0.00176641 0.000439878 73.058 7.11857 88.0931 21.9464 2284.29 0.11761 8.36632 0.088796 787.612 0.088796 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 3 param+error -285.768 1.5692 0.119066 0.000675182 34.9798 30.292 16.2442 0.968996 2373.31 0.324925 7.9061 0.233108 72.4462 0.233108 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 4 param+error 20.2205 9.19887 0.00604596 0.00283377 8.82673 2.96159 176.937 268.125 3219.41 0.505918 8.67002 0.46797 84.2572 0.46797 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 5 param+error 9.23405 0.936498 0.00283675 0.00029922 40.7339 9.21418 27.8856 5.856 3379.39 0.444974 8.68068 0.308418 144.149 0.308418 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 6 param+error -390.11 390.224 0.10482 0.104565 102.96 7.588 25.6776 2.69329 3698.99 0.224076 8.92804 0.155734 219.778 0.155734 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 7 param+error 31.6757 65.1386 -0.00805881 0.0167145 13.8022 13.974 17.8056 8.87565 3866.38 1.96096 8.7678 0.845415 19.2923 0.845415 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 8 param+error 55.5086 716.172 -0.00866493 0.153343 47.1918 47.2709 25.1905 20.7425 4629.96 1.36034 11.0562 0.819822 91.2213 0.819822 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 9 param+error 13.8623 0.765019 0.00166007 9.46799e-05 55.2515 3.96125 69.3976 6.38666 8648.72 0.540403 10.2909 0.396293 119.3 0.396293 +CL dss 0 46 h M:PF-B:L-L:GCDFED-P:G 10 param+error 514.602 168.884 -0.0529447 0.0174829 41.91 1.38329 52.8718 4.21589 9624.46 0.487283 9.69149 0.327381 67.2284 0.327381 +CP dss 0 46 h pakw 11 1904.22 59.541 3.04385 2035.49 80.997 3.17716 2284.29 122.061 3.24592 2373.31 136.474 3.06905 3219.41 276.398 3.37978 3379.39 302.853 3.38595 3698.99 356.017 3.4859 3866.38 383.851 3.42478 4629.96 510.99 4.32314 8648.72 1173.24 3.95055 9624.46 1332.5 3.6809 +CM dss 0 46 h poly3 -250.836 0.161333 9.83545e-07 -6.82863e-11 error 3.02278 0.00255113 6.17824e-07 4.09479e-11 +CR dss 0 46 h poly2 2.96923 0.00166638 -8.02789e-07 error 0.246363 0.00131482 9.30938e-07 + +# ROU: dss 0 47 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.08561 0.684444 0.00215213 0.00034723 566.62 29.5261 62.5585 6.9328 1951.78 0.0439071 7.96604 0.0265537 6417.71 0.0265537 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 1 param+error 280.341 4.12463 0.13652 0.00211056 459.921 34.0755 51.8384 6.65707 2082.83 0.0828807 8.20782 0.0591912 3431.28 0.0591912 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 2 param+error -1056.2 394.812 0.45031 0.166721 100.757 13.2804 103.274 55.8667 2334.1 0.143833 8.40503 0.102207 864.847 0.102207 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.313523 0.22329 6.18333e-05 0.00011797 6.51811 0.586605 14983.7 7839.63 2422.58 0.292733 8.47902 0.203943 87.4666 0.203943 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 4 param+error 437.23 8.79475 -0.120683 0.00263964 5.46239 7.85454 351.938 27617.1 3292.48 0.895276 9.9266 0.638974 79.599 0.638974 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 5 param+error 711.247 321.743 -0.198753 0.0922596 73.9186 64.3897 12.8539 2.66463 3457.3 0.527066 9.29855 0.319162 108.548 0.319162 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 6 param+error -1143.53 0.662081 0.29947 0.000211385 97.68 83.5789 35.1454 1.01661 3788.19 0.209501 9.34438 0.151226 213.749 0.151226 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 7 param+error 65.5477 63.5687 -0.0162775 0.0159298 11.88 9.37948 15.0242 3.49518 3960.45 0.805647 8.23035 0.482331 20.18 0.482331 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 8 param+error -894.319 506.699 0.189516 0.105742 27.0341 3.64672 123.169 95.6336 4747.84 0.544931 11.7533 0.480502 105.387 0.480502 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.5868 0.65732 0.00147979 7.60009e-05 47.3996 3.21397 97.9391 10.148 8836.58 0.577219 11.4936 0.389822 117.014 0.389822 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 10 param+error -10.902 86.4647 0.00116176 0.00909998 0.832786 0.297524 153.511 427.992 9458.01 2.57454 12.3879 2.74274 2.82491 2.74274 +CL dss 0 47 h M:PF-B:L-L:GCDFED-P:G 11 param+error 5.85785 254.307 -0.000371063 0.0257821 39.93 1.299 66.9728 7.55876 9819.15 0.493711 10.6027 0.345649 69.0951 0.345649 +CP dss 0 47 h pakw 12 1951.78 59.541 3.04275 2082.83 80.997 3.13293 2334.1 122.061 3.20425 2422.58 136.474 3.23113 3292.48 276.398 3.77057 3457.3 302.853 3.53041 3788.19 356.017 3.54513 3960.45 383.851 3.12151 4747.84 510.99 4.45447 8836.58 1173.24 4.42185 9458.01 1274.58 4.78969 9819.15 1332.5 4.11257 +CM dss 0 47 h poly3 -258.914 0.164492 -7.33781e-07 5.06028e-11 error 2.6412 0.00216806 5.12435e-07 3.32994e-11 +CR dss 0 47 h poly2 3.0318 0.00134104 -2.15935e-07 error 0.246369 0.00131063 9.2537e-07 + +# ROU: dss 0 48 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 0 param+error 27468.6 726.543 -14.3396 0.383396 3988.71 2677.85 2.54962 0.509374 1907.52 0.319542 9.58116 0.0819943 9666.9 0.0819943 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 1 param+error 290.255 4.10781 0.143052 0.00216174 484.986 32.5928 80.9769 14.8032 2041.24 0.0667805 8.18572 0.0485592 4420.43 0.0485592 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 2 param+error 3.7864 0.661685 0.00183196 0.000334187 100.278 11.5243 59.3095 13.0542 2298.86 0.130298 8.35258 0.0839255 860.348 0.0839255 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 3 param+error 14.2759 139.991 -0.00562666 0.0577256 13.9533 6.44114 31.6874 23.5608 2391.4 0.489443 8.33294 0.363682 82.8709 0.363682 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 4 param+error 245.206 136.111 -0.0628328 0.0411221 46.2 9.99237 16.3527 2.17024 3309.46 0.642488 7.33039 0.513049 54.96 0.513049 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 5 param+error 217.867 511.054 -0.0565938 0.14538 29.7249 20.7657 35.2098 43.1569 3478.68 0.791549 9.03472 0.491105 140.161 0.491105 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 6 param+error -235.632 291.066 0.0614299 0.0753696 81.4822 14.4715 31.9573 7.5292 3822.65 0.487546 9.6046 0.302042 215.937 0.302042 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 7 param+error -399.48 2.32622 0.0990623 0.000576397 8.98013 1.56725 92.9597 37.0801 4002.47 1.09833 10.1347 0.681863 20.2114 0.681863 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 8 param+error -656.848 6.53194 0.1378 0.00134542 22.4789 4.90231 196.91 209.251 4813.3 0.627449 12.4413 0.423176 100.566 0.423176 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 9 param+error 11.5593 0.710111 0.00136565 8.20203e-05 61.9277 4.32031 75.1167 6.36576 8985.74 0.894201 11.7153 0.55971 86.6816 0.55971 +CL dss 0 48 h M:PF-B:L-L:GCDFED-P:G 10 param+error 1.15508 0.247018 0.000131787 2.49117e-05 36.3 0.545079 85.3714 2.4316 9979.76 0.561096 11.5367 0.414925 57.8757 0.414925 +CP dss 0 48 h pakw 11 1907.52 59.541 3.50028 2041.24 80.997 2.98887 2298.86 122.061 3.04712 2391.4 136.474 3.03915 3309.46 276.398 2.67041 3478.68 302.853 3.29154 3822.65 356.017 3.50069 4002.47 383.851 3.69531 4813.3 510.99 4.54982 8985.74 1173.24 4.49016 9979.76 1332.5 4.50415 +CM dss 0 48 h poly3 -237.476 0.157286 -7.95853e-07 8.16469e-11 error 3.06651 0.00254244 6.0424e-07 3.90111e-11 +CR dss 0 48 h poly2 3.02819 0.000444736 5.74913e-07 error 0.253434 0.0013478 9.65063e-07 + +# ROU: dss 0 49 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1.50479 0.579131 0.00160199 0.000300301 865.304 34.0748 76.567 7.97081 1887.58 0.0332576 7.91223 0.0205812 10392 0.0205812 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 1 param+error 294.823 4.48067 0.143624 0.00242901 452.068 26.7703 89.2066 14.9064 2019.58 0.0618758 8.23289 0.0474332 4425.81 0.0474332 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 2 param+error 3.9123 0.722666 0.00192528 0.00031386 83.659 9.07281 82.4379 23.2411 2274.76 0.11716 8.38159 0.0752351 882.475 0.0752351 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.311191 0.235221 0.000107136 9.54301e-05 7.82307 0.616682 13869 5504.88 2366.19 0.284505 7.99861 0.207073 91.5282 0.207073 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 4 param+error 236.201 126.629 -0.0592868 0.0389341 48.51 35.6815 12.8338 1.8428 3260.46 0.682265 7.61852 0.593255 51.8624 0.593255 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 5 param+error -79.8842 554.482 0.029111 0.160398 63.69 43.3372 24.7445 6.1564 3427.04 0.451335 8.61842 0.297843 107.105 0.297843 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 6 param+error -225.907 188.952 0.0600883 0.0497714 101.31 8.20984 27.9659 1.7637 3758.79 0.221419 9.07878 0.155254 208.214 0.155254 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 7 param+error -148.456 203.588 0.0374507 0.0513646 3.30186 1.87246 39201.6 28653.7 3928.85 0.95141 11.1858 0.496517 25.6749 0.496517 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 8 param+error -322.359 660.169 0.0705486 0.138629 40.1263 12.8675 41.551 30.4793 4717.72 1.22895 12.2464 0.880106 81.5044 0.880106 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 9 param+error 478.429 584.235 -0.0512179 0.066096 64.68 3.33955 56.1716 8.79606 8796.14 0.523429 11.1651 0.408191 91.474 0.408191 +CL dss 0 49 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.668214 0.277169 8.27877e-05 2.80203e-05 33.3283 1.99399 88.8631 6.01177 9774.91 0.749076 12.3261 0.474909 69.0981 0.474909 +CP dss 0 49 h pakw 11 1887.58 59.541 2.93914 2019.58 80.997 3.06031 2274.76 122.061 3.1197 2366.19 136.474 2.97857 3260.46 276.398 2.85071 3427.04 302.853 3.22784 3758.79 356.017 3.40661 3928.85 383.851 4.2013 4717.72 510.99 4.62093 8796.14 1173.24 4.32753 9774.91 1332.5 4.81184 +CM dss 0 49 h poly3 -236.419 0.156332 3.49216e-07 9.13758e-12 error 3.06262 0.00260475 6.34519e-07 4.20257e-11 +CR dss 0 49 h poly2 2.83797 0.00155645 -1.2602e-07 error 0.243084 0.0013364 9.6985e-07 + +# ROU: dss 0 50 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.51472 0.604217 0.00188584 0.000314095 310.871 22.2786 60.3084 8.95514 1959.56 0.0588506 7.87665 0.0359998 3526.25 0.0359998 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 1 param+error -2502.27 2634.03 1.44276 1.24183 284.015 24.1313 115.58 75.4219 2090.64 0.0900017 8.27822 0.085937 2679.64 0.085937 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 2 param+error -774.185 444.204 0.33002 0.186871 85.0102 10.6018 122.051 75.3358 2343.83 0.126032 8.34019 0.0962131 879.028 0.0962131 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 3 param+error -259.875 207.33 0.105679 0.0841158 10.9542 2.6689 128.916 189.691 2434.06 0.349114 8.24913 0.288466 92.3685 0.288466 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 4 param+error 333.355 228.986 -0.0885087 0.0683456 46.8597 36.4778 13.985 3.33609 3320.92 0.795454 8.51039 0.513914 55.1542 0.513914 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 5 param+error -965.598 591.804 0.27953 0.167916 31.4951 5.18296 105.698 101.578 3486.38 0.449714 10.0159 0.410883 141.797 0.410883 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 6 param+error -112.431 161.369 0.0295823 0.0417986 102.3 3.60234 26.9588 1.46667 3822.09 0.224667 8.9832 0.164363 200.295 0.164363 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 7 param+error -104.183 21.5462 0.0258645 0.00533415 3.22245 0.757269 39876.4 24673.2 3993.28 0.738299 12.0436 0.521185 25.444 0.521185 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 8 param+error 255.118 295.147 -0.0503256 0.0611823 48.84 33.0903 27.3532 4.83975 4794.15 0.554026 11.082 0.424353 79.5497 0.424353 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 9 param+error 762.268 508.413 -0.082278 0.0567503 65.34 5.14397 50.2765 6.76564 8916.04 0.479115 10.5795 0.36072 98.0914 0.36072 +CL dss 0 50 h M:PF-B:L-L:GCDFED-P:G 10 param+error 277.176 148.134 -0.0276766 0.0149003 37.62 1.04808 66.9979 5.5508 9903.31 0.56549 11.0337 0.368047 63.7654 0.368047 +CP dss 0 50 h pakw 11 1959.56 59.541 2.97032 2090.64 80.997 3.11901 2343.83 122.061 3.13743 2434.06 136.474 3.10157 3320.92 276.398 3.18732 3486.38 302.853 3.74934 3822.09 356.017 3.36016 3993.28 383.851 4.50366 4794.15 510.99 4.14323 8916.04 1173.24 4.0613 9903.31 1332.5 4.29067 +CM dss 0 50 h poly3 -256.593 0.163139 -9.78347e-07 7.26554e-11 error 3.0204 0.00247943 5.83871e-07 3.77258e-11 +CR dss 0 50 h poly2 2.81203 0.00280119 -1.34738e-06 error 0.246719 0.00137725 9.90804e-07 + +# ROU: dss 0 51 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 0 param+error 5.47864 0.944259 0.000935811 0.000508972 1422.61 33.4998 95.9195 6.79968 1851.06 0.023055 7.97283 0.0153902 16396.6 0.0153902 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 1 param+error -3403.53 2120.22 1.98795 1.05181 509.709 33.0615 229.555 153.242 1983.23 0.0639437 8.3628 0.0550276 5097.01 0.0550276 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.51108 0.776336 0.00195274 0.000333115 92.8785 3.76942 91.7936 7.36697 2235.66 0.105626 8.18337 0.0785177 882.446 0.0785177 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 3 param+error -41.3347 411.256 0.017763 0.174904 7.74405 4.47765 23217.2 13152.8 2324.62 0.43239 8.12958 0.23401 91.6137 0.23401 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 4 param+error -325.358 727.62 0.112489 0.225668 49.17 35.1106 23.5506 9.02063 3196.83 0.886858 7.65385 0.640653 44.5382 0.640653 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 5 param+error 8.548 0.625049 0.0026685 0.000196368 28.859 7.22935 53.4839 21.2656 3357.92 0.500208 9.84361 0.317975 135.973 0.317975 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 6 param+error -399.605 418.432 0.107752 0.112394 108.57 15.3173 28.3317 2.9132 3689.45 0.238953 8.97824 0.178905 204.426 0.178905 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 7 param+error 48.2801 14.6514 -0.0123503 0.00378199 12.21 2.70324 20.5557 1.85518 3862.46 0.777157 9.04962 0.517842 16.973 0.517842 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 8 param+error 6.4082 6.65463 0.00149599 0.00141789 41.8455 9.6025 32.8398 6.84957 4654.42 0.829622 11.0252 0.478155 88.8218 0.478155 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1299.26 401.376 -0.144225 0.0454647 68.97 50.8781 41.747 4.43576 8789.53 0.463901 9.90398 0.316671 94.9818 0.316671 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 10 param+error 4.41643 0.0220034 -0.000440995 1.58773e-07 1.53351 0.384298 83.6165 16.8778 9422.69 3.59599 8.54559 2.31444 2.73464 2.31444 +CL dss 0 51 h M:PF-B:L-L:GCDFED-P:G 11 param+error 611.297 128.155 -0.0620148 0.0130469 39.27 1.59074 54.98 4.04885 9782.76 0.552798 11.2922 0.357857 64.9325 0.357857 +CP dss 0 51 h pakw 12 1851.06 59.541 3.04047 1983.23 80.997 3.18695 2235.66 122.061 3.11457 2324.62 136.474 3.09276 3196.83 276.398 2.90082 3357.92 302.853 3.72851 3689.45 356.017 3.39686 3862.46 383.851 3.42202 4654.42 510.99 4.1606 8789.53 1173.24 3.7432 9422.69 1274.58 3.23635 9782.76 1332.5 4.28236 +CM dss 0 51 h poly3 -241.845 0.163884 -6.11961e-07 3.18152e-11 error 3.01758 0.00257983 6.27755e-07 4.14662e-11 +CR dss 0 51 h poly2 3.00921 0.00101505 -3.87419e-07 error 0.245489 0.00130797 9.20251e-07 + +# ROU: dss 0 52 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.71112 0.696674 0.0020956 0.000357831 640.477 29.849 65.1601 6.64514 1904.72 0.037485 7.94692 0.0230937 7861.11 0.0230937 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 1 param+error 303.522 4.13435 0.149655 0.00211783 493.908 33.2694 57.5894 7.46715 2034.93 0.068875 8.10002 0.0508482 4184.05 0.0508482 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.12293 0.732033 0.00234589 0.000342233 112.146 12.7758 47.4873 8.39646 2282.93 0.134239 8.22505 0.083759 862.196 0.083759 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 3 param+error -176.323 195.443 0.0737363 0.0814576 6.99451 2.51071 23645.8 13386.4 2369.66 0.351588 8.50552 0.195278 91.3454 0.195278 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 4 param+error -182.741 568.868 0.067967 0.174978 11.6316 5.59277 31391.4 30001.2 3214.64 0.708431 9.59771 0.508253 79.522 0.508253 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 5 param+error -1164.8 624.461 0.34734 0.183004 26.3871 4.40091 360.122 877.372 3374.62 0.405653 10.3456 0.379532 149.734 0.379532 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 6 param+error -14.2035 367.137 0.00398129 0.0983577 103.95 72.411 24.2865 2.4496 3699.42 0.233978 8.90211 0.159989 210.509 0.159989 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 7 param+error -3.33929 30.8952 0.000913154 0.00791182 7.99611 2.7096 31.5031 11.9488 3869.6 1.11593 9.54765 0.662986 20.4277 0.662986 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 8 param+error 305.652 214.287 -0.0625753 0.045765 47.52 30.2215 25.3475 3.94415 4647.21 0.548896 11.0662 0.392847 77.2355 0.392847 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 9 param+error 11.9326 0.756661 0.00138667 8.75533e-05 51.4577 4.89127 88.8291 16.2041 8694.48 0.604311 10.8258 0.404367 123.938 0.404367 +CL dss 0 52 h M:PF-B:L-L:GCDFED-P:G 10 param+error 596.615 135.245 -0.0613023 0.0139418 40.92 1.91533 55.9762 3.90439 9665.87 0.475064 10.0725 0.310152 69.5307 0.310152 +CP dss 0 52 h pakw 11 1904.72 59.541 3.10815 2034.93 80.997 3.16521 2282.93 122.061 3.20883 2369.66 136.474 3.31642 3214.64 276.398 3.72436 3374.62 302.853 4.0114 3699.42 356.017 3.44652 3869.6 383.851 3.69377 4647.21 510.99 4.26935 8694.48 1173.24 4.1758 9665.87 1332.5 3.89893 +CM dss 0 52 h poly3 -259.259 0.168719 -8.04236e-07 3.99896e-11 error 3.14551 0.00264822 6.37699e-07 4.20366e-11 +CR dss 0 52 h poly2 2.96342 0.00265952 -1.44379e-06 error 0.251696 0.00137204 9.76297e-07 + +# ROU: dss 0 53 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 0 param+error 643.397 763.429 -0.32934 0.395093 798.034 29.1345 56.1643 5.08624 1899.34 0.0342976 7.98865 0.0259807 8868.77 0.0259807 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 1 param+error -1934.17 1261.12 1.22898 0.610547 487.954 73.8689 81.9228 44.4079 2028.8 0.105846 8.33604 0.0704466 4292.65 0.0704466 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 2 param+error -1455.89 13.4763 0.635733 0.0058481 139.481 22.952 45.5499 13.8178 2276.79 0.169023 8.30846 0.0997871 837.078 0.0997871 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 3 param+error -303.709 441.778 0.127071 0.184693 11.8622 4.78791 21585 14820.2 2364.34 0.469414 8.52734 0.266273 87.8753 0.266273 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 4 param+error -446.944 525.477 0.148292 0.161267 16.2502 4.99058 32306.1 19975.3 3222.61 0.697152 9.12942 0.511633 72.4375 0.511633 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 5 param+error -143.961 838.422 0.0476224 0.245304 48.2231 20.7657 28.8311 24.4401 3384.49 0.861454 9.22505 0.591108 121.635 0.591108 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 6 param+error -649.861 432.528 0.173654 0.115395 97.68 3.86249 31.3377 3.66923 3713.94 0.247264 9.46586 0.19713 196.602 0.19713 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 7 param+error 2.69518 46.4836 -0.000616225 0.0118414 9.39331 3.60323 26.5847 11.9374 3885.48 1.36856 9.54574 0.758914 19.9657 0.758914 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 8 param+error -1215.62 537.828 0.259886 0.113917 29.891 3.71647 201.142 193.873 4675.93 0.59295 12.814 0.519619 102.424 0.519619 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1444.36 229.284 -0.160274 0.0259355 62.7 2.65733 42.3182 3.42693 8804.95 0.5011 10.4376 0.39127 88.6219 0.39127 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 10 param+error 1.67501 3.32471 -0.000159354 0.000342789 0.838631 0.479881 85.1266 59.5153 9433.91 5.42818 13.1259 3.33388 2.08172 3.33388 +CL dss 0 53 h M:PF-B:L-L:GCDFED-P:G 11 param+error 0.75312 3.00798 9.66905e-05 0.000305697 33.8751 1.83219 93.9798 6.20074 9798.39 0.706099 10.439 0.419865 66.1874 0.419865 +CP dss 0 53 h pakw 12 1899.34 59.541 3.10863 2028.8 80.997 3.23814 2276.79 122.061 3.21704 2364.34 136.474 3.29816 3222.61 276.398 3.49707 3384.49 302.853 3.52807 3713.94 356.017 3.60927 3885.48 383.851 3.63446 4675.93 510.99 4.85164 8804.95 1173.24 3.95395 9433.91 1274.58 4.99453 9798.39 1332.5 3.98447 +CM dss 0 53 h poly3 -258.853 0.170395 -1.57869e-06 7.85714e-11 error 3.00902 0.00253319 6.10207e-07 4.00548e-11 +CR dss 0 53 h poly2 3.04934 0.00176424 -6.59107e-07 error 0.252754 0.00136087 9.61112e-07 + +# ROU: dss 0 54 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 0 param+error 4.35232 1.11504 0.00273308 0.000611166 1282.48 183.347 68.4863 31.1891 1868.02 0.0645044 7.82622 0.0274091 14019.8 0.0274091 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 1 param+error 2563.79 1828.56 -0.960186 0.900496 604.492 53.4582 50.8313 12.5365 1997.25 0.0749771 8.05867 0.0614519 4867.03 0.0614519 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 2 param+error -3726.82 13.8168 1.64419 0.00608016 148.048 17.6865 83.9773 32.9586 2245.28 0.154178 8.32196 0.0952792 856.61 0.0952792 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 3 param+error -142.969 393.304 0.0609168 0.166657 8.45983 4.29988 23327.1 21271.7 2332.19 0.429591 8.26843 0.239735 91.5194 0.239735 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 4 param+error 211.055 219.043 -0.0531385 0.0682515 49.17 32.1548 15.615 3.02547 3197.25 0.901439 7.63753 0.654412 46.9053 0.654412 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 5 param+error -125.89 629.862 0.0419812 0.185448 26.2845 5.78374 97.3537 126.53 3358.36 0.497383 9.97411 0.516704 132.87 0.516704 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 6 param+error 183.635 361.073 -0.0488911 0.096972 92.3995 15.4339 27.9413 2.95746 3689.25 0.240172 8.9741 0.184787 193.803 0.184787 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 7 param+error 52.3186 20.4848 -0.013394 0.00535472 11.55 7.24089 18.6954 1.9394 3861.12 0.757538 8.91983 0.623318 17.3791 0.623318 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 8 param+error 370.808 161.849 -0.0762867 0.0345217 44.55 6.25559 27.5803 3.68298 4654.38 0.549814 11.1001 0.420999 74.5945 0.420999 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 9 param+error 11.1655 0.646987 0.00131941 7.57543e-05 47.0874 3.75848 101.389 14.9001 8789.4 0.635645 11.4713 0.429958 105.733 0.429958 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 10 param+error -36.928 67.3356 0.00391859 0.00711324 0.691671 0.223504 928.745 8034.27 9421.22 1.73548 10.6287 1.40659 4.22198 1.40659 +CL dss 0 54 h M:PF-B:L-L:GCDFED-P:G 11 param+error 826.724 104.465 -0.0839751 0.0106412 37.9499 33.0775 51.7395 3.31299 9785.92 0.531745 10.1506 0.339091 58.4887 0.339091 +CP dss 0 54 h pakw 12 1868.02 59.541 3.03553 1997.25 80.997 3.11995 2245.28 122.061 3.21099 2332.19 136.474 3.18669 3197.25 276.398 2.91399 3358.36 302.853 3.79931 3689.25 356.017 3.40793 3861.12 383.851 3.3824 4654.38 510.99 4.1862 8789.4 1173.24 4.34869 9421.22 1274.58 4.05249 9785.92 1332.5 3.88527 +CM dss 0 54 h poly3 -252.689 0.170076 -1.68372e-06 8.84899e-11 error 2.95058 0.00251394 6.10244e-07 4.01362e-11 +CR dss 0 54 h poly2 2.96751 0.00136716 -4.01702e-07 error 0.246242 0.00130911 9.17985e-07 + +# ROU: dss 0 55 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.96771 0.613116 0.0017415 0.000304282 314.853 21.9744 68.5499 11.138 2007.57 0.0551713 8.01092 0.0340585 3882.73 0.0340585 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4997.73 3107.13 2.56213 1.43209 331.787 24.0427 162.824 125.773 2139.46 0.0864643 8.34953 0.087134 2871.91 0.087134 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.36239 0.706012 0.00197571 0.000297901 107.156 13.2142 51.0878 10.6715 2394.53 0.142155 8.32278 0.0877206 829.368 0.0877206 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 3 param+error 217.388 346.702 -0.0864943 0.137919 12.0006 14.2299 23.9809 52.3956 2484.67 0.764111 8.68301 0.552436 79.6778 0.552436 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 4 param+error -301.383 682.866 0.0993629 0.200846 11.7808 6.20795 33565.1 32447.1 3368.17 0.779792 9.14136 0.431314 74.427 0.431314 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 5 param+error -673.362 562.539 0.193183 0.157446 29.85 5.31812 133.161 147.966 3534.16 0.513408 10.377 0.448789 129.232 0.448789 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 6 param+error -520.311 472.366 0.133766 0.121086 96.69 2.93423 32.6683 4.04283 3867.53 0.258467 9.25368 0.201961 184.997 0.201961 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 7 param+error -100.331 1.44765 0.0246714 0.000359921 12.21 10.4593 26.5225 2.35069 4041.49 0.711797 7.79046 0.459584 20.6883 0.459584 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 8 param+error 161.886 52.5537 -0.0307178 0.0108365 42.24 5.89916 34.4288 2.32579 4828.21 0.500936 11.5654 0.385662 71.7206 0.385662 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 9 param+error 12.0728 0.780686 0.00146083 9.55821e-05 53.7252 4.46953 80.2212 9.78239 8880.9 0.727576 11.17 0.483532 98.9429 0.483532 +CL dss 0 55 h M:PF-B:L-L:GCDFED-P:G 10 param+error 467.993 93.9365 -0.0471008 0.00950709 34.98 1.06971 66.7382 4.43692 9849.87 0.564062 11.6221 0.397536 58.0817 0.397536 +CP dss 0 55 h pakw 11 2007.57 59.541 3.00349 2139.46 80.997 3.13094 2394.53 122.061 3.12211 2484.67 136.474 3.25776 3368.17 276.398 3.43738 3534.16 302.853 3.90417 3867.53 356.017 3.48584 4041.49 383.851 2.93674 4828.21 510.99 4.37635 8880.9 1173.24 4.37261 9849.87 1332.5 4.60231 +CM dss 0 55 h poly3 -259.77 0.159359 -1.59058e-07 4.10176e-11 error 3.3722 0.0027424 6.41352e-07 4.13263e-11 +CR dss 0 55 h poly2 3.08029 0.00066153 3.58909e-07 error 0.244 0.001294 9.35325e-07 + +# ROU: dss 0 56 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 0 param+error 24.5628 6.57658 -0.00691226 0.00435401 1132.34 49.163 88.3998 12.2929 1908.98 0.0331893 7.97656 0.0258072 13152.9 0.0258072 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 1 param+error 306.039 4.8691 0.149711 0.00225144 503.5 36.9291 92.6161 21.3914 2039.52 0.0680827 8.27023 0.0481079 4766.09 0.0481079 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 2 param+error 5.06155 0.769705 0.00241267 0.000339235 123.927 14.3471 41.4589 6.60276 2291.13 0.14387 8.28037 0.0870792 832.978 0.0870792 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 3 param+error 0.255171 4.16147 0.000105667 0.00172826 15.4317 9.22433 30.4871 24.4482 2380.39 0.636661 8.2777 0.349371 77.0674 0.349371 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 4 param+error 17.0921 7.97778 0.00544928 0.00243106 13.4445 2.9446 131.9 80.1606 3248.17 0.684291 10.7129 0.576787 71.7986 0.576787 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 5 param+error 296.373 235.193 -0.0804787 0.0681638 61.3799 43.4244 25.0291 3.52475 3415.53 0.396138 8.59228 0.280228 99.7271 0.280228 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 6 param+error -62.6684 258.937 0.0168485 0.0685268 92.73 3.15112 32.674 2.99644 3746.72 0.263888 9.06804 0.165597 185.284 0.165597 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 7 param+error 72.5761 63.9552 -0.0182547 0.0161786 11.55 7.70351 21.7805 4.24178 3920.13 0.765745 7.47826 0.582968 17.9346 0.582968 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 8 param+error 630.209 125.368 -0.130134 0.0263589 42.5698 32.2396 22.3382 3.35541 4715.76 0.656801 12.876 0.421727 72.9422 0.421727 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 9 param+error 13.3107 0.768453 0.00154505 8.77265e-05 51.2088 2.92482 87.2104 7.48994 8921.64 0.669855 10.5106 0.491293 87.5369 0.491293 +CL dss 0 56 h M:PF-B:L-L:GCDFED-P:G 10 param+error 364.097 113.144 -0.0362271 0.0113356 35.64 1.26351 70.7481 5.09369 9943.91 0.558682 9.89544 0.351492 54.1583 0.351492 +CP dss 0 56 h pakw 11 1908.98 59.541 3.05883 2039.52 80.997 3.16707 2291.13 122.061 3.16272 2380.39 136.474 3.15886 3248.17 276.398 4.05487 3415.53 302.853 3.24747 3746.72 356.017 3.41783 3920.13 383.851 2.81473 4715.76 510.99 4.81841 8921.64 1173.24 3.87501 9943.91 1332.5 3.64984 +CM dss 0 56 h poly3 -254.641 0.166604 -1.0984e-06 4.00245e-11 error 2.83321 0.00236002 5.60983e-07 3.62515e-11 +CR dss 0 56 h poly2 3.12945 0.000330244 1.11971e-07 error 0.24311 0.00125718 8.892e-07 + +# ROU: dss 0 57 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 0 param+error 2.19576 0.630954 0.00175479 0.00032221 594.975 30.0063 57.9402 5.75969 1904.08 0.0427793 7.96817 0.0259818 6487.97 0.0259818 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 1 param+error -4438.85 2903.94 2.42833 1.406 421.668 26.5001 131.647 72.8116 2034.84 0.0741984 8.30737 0.074047 3673.04 0.074047 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 2 param+error -617.477 396.978 0.270049 0.171067 106.41 14.7235 70.6542 28.557 2286.38 0.153026 8.48782 0.108854 823.92 0.108854 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 3 param+error -7.74903 89.6545 0.00349958 0.0372357 33.99 30.8797 15.8796 2.19592 2376.58 0.392606 7.57303 0.242546 65.0761 0.242546 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 4 param+error -96.7203 222.767 0.0404342 0.0682014 10.4709 3.04895 31181.6 17301.5 3229.89 0.609253 10.4266 0.431434 77.8493 0.431434 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 5 param+error 9.94711 0.640932 0.00301098 0.000191273 39.937 7.77634 35.2511 7.10732 3390.77 0.541364 8.88468 0.325899 113.985 0.325899 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 6 param+error -38.9624 201.103 0.0106805 0.0536265 84.178 11.1805 33.1589 5.46198 3710.9 0.437459 9.19595 0.25438 198.978 0.25438 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 7 param+error 52.5746 18.255 -0.0133502 0.00468286 12.21 1.57648 17.581 2.04936 3877.38 0.82962 8.53346 0.564316 16.5275 0.564316 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 8 param+error 16.3727 319.467 -0.000828107 0.0681408 46.4281 37.2162 32.5107 11.6802 4642.64 1.10955 11.7634 0.685867 69.8377 0.685867 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 9 param+error 11.5993 8.60382 0.00139847 0.000988715 64.5322 5.77683 57.7636 6.439 8667.37 0.818998 10.0248 0.484603 89.1399 0.484603 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 10 param+error 1.35279 4.33262 -0.000126338 0.000455632 0.433126 0.174616 241.935 241.783 9275.36 2.75334 15.2294 2.36112 2.72163 2.36112 +CL dss 0 57 h M:PF-B:L-L:GCDFED-P:G 11 param+error 1.18044 0.262276 0.000128289 2.72535e-05 30.4855 1.88045 92.6437 7.41057 9637.87 0.686839 11.3913 0.421461 62.8198 0.421461 +CP dss 0 57 h pakw 12 1904.08 59.541 3.05752 2034.84 80.997 3.19144 2286.38 122.061 3.26775 2376.58 136.474 2.91769 3229.89 276.398 4.04059 3390.77 302.853 3.4461 3710.9 356.017 3.57243 3877.38 383.851 3.31742 4642.64 510.99 4.58387 8667.37 1173.24 3.85934 9275.36 1274.58 5.83098 9637.87 1332.5 4.34523 +CM dss 0 57 h poly3 -247.514 0.159336 1.14858e-06 -6.99358e-11 error 3.12372 0.00263754 6.39305e-07 4.25209e-11 +CR dss 0 57 h poly2 3.01971 0.00138574 -1.90494e-07 error 0.246331 0.001333 9.51372e-07 + +# ROU: dss 0 58 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 0 param+error -1019.36 706.608 0.533346 0.367265 829.388 181.594 40.7995 17.6909 1891.76 0.0994187 7.83456 0.0458519 7820.35 0.0458519 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 1 param+error 1073.48 1187.14 -0.238067 0.577028 551.673 84.8686 42.6546 13.1771 2021.1 0.115162 7.95291 0.0750192 3900.08 0.0750192 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 2 param+error -179.102 596.974 0.0816494 0.259604 100.059 61.3478 61.7115 117.012 2267.48 0.335376 8.3137 0.166719 822.876 0.166719 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 3 param+error 322.393 56.2456 -0.134867 0.0236402 32.9992 19.0266 8.21155 1.7686 2354.68 0.464726 8.06678 0.281701 69.7061 0.281701 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 4 param+error 35.8877 532.85 0.000420094 0.165122 8.55389 5.19039 31945.9 19133.6 3190 0.731278 9.69487 0.531932 74.3091 0.531932 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 5 param+error -3327.44 541.335 0.991838 0.160442 47.6891 5.09149 33350.8 20581.2 3349.26 0.461738 8.84017 0.279086 127.848 0.279086 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 6 param+error -633.43 417.24 0.171617 0.112784 80.6859 13.4814 46.5403 14.9226 3665.12 0.512709 9.15703 0.299963 200.712 0.299963 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 7 param+error 60.1681 83.756 -0.0155289 0.0216824 11.88 2.45355 19.7496 4.65998 3831.91 0.873832 7.64766 0.537128 17.8908 0.537128 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 8 param+error 110.053 418.816 -0.0212039 0.0904624 43.56 28.978 33.1752 8.3541 4591.74 0.557956 10.7778 0.398876 73.3848 0.398876 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 9 param+error 10.7103 0.599631 0.00133158 7.11942e-05 58.6955 4.1664 65.0099 5.69902 8605.51 0.703338 10.4461 0.398866 88.3035 0.398866 +CL dss 0 58 h M:PF-B:L-L:GCDFED-P:G 10 param+error -373.567 355.424 0.0390358 0.0369236 36.1918 3.17612 85.9628 21.3821 9579.21 0.98238 10.7709 0.663673 59.6825 0.663673 +CP dss 0 58 h pakw 11 1891.76 59.541 3.07969 2021.1 80.997 3.12708 2267.48 122.061 3.2704 2354.68 136.474 3.17368 3190 276.398 3.81653 3349.26 302.853 3.47998 3665.12 356.017 3.6041 3831.91 383.851 3.00954 4591.74 510.99 4.23564 8605.51 1173.24 4.0082 9579.21 1332.5 4.09074 +CM dss 0 58 h poly3 -255.354 0.165704 4.60636e-07 -4.81103e-11 error 3.10746 0.00264306 6.44033e-07 4.29921e-11 +CR dss 0 58 h poly2 3.1023 0.000899274 -1.19676e-07 error 0.246519 0.0013026 9.31067e-07 + +# ROU: dss 0 59 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 0 param+error 3.09525 0.735419 0.0021652 0.000385975 837.817 33.9809 68.7088 6.40021 1880.59 0.0344663 8.07384 0.0212051 9682.32 0.0212051 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 1 param+error 284.582 4.71644 0.140291 0.00237298 510.706 9.59416 65.5146 2.54509 2012.48 0.0555951 8.35149 0.0490342 4109.02 0.0490342 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 2 param+error 5.10253 0.67346 0.0023382 0.000299113 136.59 18.4214 34.4826 5.5084 2264.4 0.175023 8.25071 0.10161 742.35 0.10161 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 3 param+error -111.883 190.986 0.047129 0.0800901 10.8444 4.08545 85.5279 135.947 2352.85 0.529513 8.26385 0.407703 77.3319 0.407703 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 4 param+error 187.331 756.761 -0.0469925 0.233343 23.2298 17.9784 30.1898 52.3226 3210.8 1.47649 9.75058 1.06296 57.9314 1.06296 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 5 param+error 289.013 415.973 -0.0804893 0.122432 57.4199 39.3479 25.5976 5.82294 3372.86 0.486886 9.40175 0.366158 95.2734 0.366158 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 6 param+error -362.476 229.853 0.0974186 0.0615725 90.42 2.94666 36.6982 2.96239 3696.14 0.25357 9.43224 0.18516 173.558 0.18516 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 7 param+error -266.249 134.314 0.068285 0.0344276 5.2024 1.14559 4597.25 19548.5 3863.42 0.923321 10.8579 0.587948 22.0773 0.587948 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 8 param+error -1633.69 610.865 0.35171 0.130563 27.9287 5.30765 46318.1 44917.6 4639.01 0.781999 12.7901 0.382075 85.4671 0.382075 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1357.55 100.23 -0.152658 0.0114749 59.73 11.2613 44.0864 2.2304 8717.12 0.511221 9.74914 0.363649 77.6339 0.363649 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 10 param+error 11.1867 18.5006 -0.00117933 0.00197462 0.776654 0.307226 90.4995 84.2716 9340.15 1.70976 9.68933 1.58403 3.78486 1.58403 +CL dss 0 59 h M:PF-B:L-L:GCDFED-P:G 11 param+error -32.6119 1.57936 0.00357318 0.000166355 32.9414 2.71519 77.938 8.50291 9702.39 0.967914 11.1326 0.517696 52.9534 0.517696 +CP dss 0 59 h pakw 12 1880.59 59.541 3.09825 2012.48 80.997 3.20611 2264.4 122.061 3.1697 2352.85 136.474 3.17549 3210.8 276.398 3.75313 3372.86 302.853 3.6196 3696.14 356.017 3.63245 3863.42 383.851 4.1819 4639.01 510.99 4.92594 8717.12 1173.24 3.70347 9340.15 1274.58 3.6655 9702.39 1332.5 4.20025 +CM dss 0 59 h poly3 -245.779 0.16158 4.71534e-07 -3.72104e-11 error 3.21092 0.00272743 6.62632e-07 4.39611e-11 +CR dss 0 59 h poly2 2.92365 0.00294192 -1.74449e-06 error 0.252294 0.00140173 9.92659e-07 + +# ROU: dss 0 60 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 0 param+error 422.268 366.002 -0.216592 0.191078 504.347 26.2273 56.3146 6.29033 1880.8 0.0433689 7.74956 0.0297811 5833.99 0.0297811 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 1 param+error 269.43 3.9589 0.135681 0.00213949 436.232 30.4689 47.3808 5.26044 2012.03 0.0771638 7.9684 0.0575497 3342.21 0.0575497 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 2 param+error -906.056 477.373 0.3989 0.207787 101.13 10.9169 72.7835 26.6543 2265.1 0.138303 8.25095 0.107826 763.359 0.107826 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 3 param+error -682.059 205.378 0.28633 0.0862005 14.9391 2.58968 23496.8 21654.5 2355.23 0.404135 8.16646 0.202852 79.7465 0.202852 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 4 param+error -494.517 615.152 0.161618 0.188479 14.0481 5.80103 32216.2 21124.4 3233.03 0.771234 8.90031 0.430325 71.3409 0.430325 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 5 param+error 7.41941 0.607549 0.00231304 0.000179538 32.2275 4.38995 57.9285 11.0742 3399.66 0.472209 9.2888 0.317219 112.77 0.317219 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 6 param+error -177.418 600.302 0.0473518 0.159618 89.1 9.3991 31.9958 5.78481 3732.82 0.299212 9.29117 0.202926 176.869 0.202926 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 7 param+error -188.295 202.715 0.047848 0.0514149 5.60886 1.61126 89.3354 131.459 3904.05 1.00938 10.9023 0.874701 21.8593 0.874701 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 8 param+error 45.3922 600.123 -0.00765777 0.126397 20.9881 6.0618 72.2617 88.2821 4700.22 0.880835 13.7215 0.878515 73.4987 0.878515 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1050.96 271.517 -0.115742 0.0305364 53.79 5.00745 49.9889 5.18695 8853.94 0.568533 10.6746 0.414362 70.7811 0.414362 +CL dss 0 60 h M:PF-B:L-L:GCDFED-P:G 10 param+error 535.251 269.308 -0.0538732 0.02721 31.7656 4.34954 61.4035 16.3386 9853.22 1.27505 11.1122 0.721795 43.33 0.721795 +CP dss 0 60 h pakw 11 1880.8 59.541 2.93965 2012.03 80.997 3.02004 2265.1 122.061 3.12217 2355.23 136.474 3.08854 3233.03 276.398 3.35087 3399.66 302.853 3.49464 3732.82 356.017 3.49106 3904.05 383.851 4.09403 4700.22 510.99 5.14217 8853.94 1173.24 4.02921 9853.22 1332.5 4.22026 +CM dss 0 60 h poly3 -245.43 0.163608 -8.00405e-07 4.61623e-11 error 2.94 0.00249303 6.03853e-07 3.9694e-11 +CR dss 0 60 h poly2 2.77085 0.00288874 -1.42433e-06 error 0.24261 0.00135278 9.73329e-07 + +# ROU: dss 0 61 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 0 param+error -427.805 481.568 0.227189 0.251396 939.262 30.9664 83.5988 8.32341 1881.35 0.0302516 7.79753 0.0210163 11146.5 0.0210163 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 1 param+error -3382.64 1769.31 1.91887 0.864456 477.336 34.7697 119.746 49.8925 2013.86 0.0741889 8.11252 0.0620337 4147.45 0.0620337 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.04985 0.590949 0.00188902 0.00026281 106.229 16.9078 39.8273 8.97244 2270.36 0.168466 8.21662 0.0982241 725.954 0.0982241 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 3 param+error -279.208 152.807 0.116721 0.0638272 11.186 2.89344 105.139 126.64 2361.69 0.440428 8.49795 0.343985 74.1525 0.343985 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 4 param+error 15.7453 1.17651 0.00500358 0.000395142 16.8048 4.89067 50.8279 22.1638 3261.51 0.835355 8.61474 0.66321 59.4834 0.66321 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 5 param+error -665.173 500.521 0.19682 0.144348 32.5898 3.29223 93.3555 63.9692 3431.51 0.429514 9.30317 0.399909 115.95 0.399909 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 6 param+error -2546.09 0.708883 0.669733 0.000185738 89.4255 89.0895 65.6436 20.4398 3771.83 0.577981 9.57398 0.205464 177.989 0.205464 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 7 param+error 56.5359 19.7986 -0.0141921 0.0050616 11.22 8.07527 22.2639 2.24418 3948.83 0.880106 9.44771 0.826894 14.9465 0.826894 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 8 param+error 2.99652 5.05056 0.00135859 0.00105195 31.8302 5.23145 46.2932 7.05378 4756.67 1.026 12.0076 0.612621 61.8553 0.612621 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 9 param+error 1099.98 215.22 -0.120535 0.0239766 49.83 1.84634 59.4558 5.75536 8945.92 0.674811 11.7733 0.52946 60.9084 0.52946 +CL dss 0 61 h M:PF-B:L-L:GCDFED-P:G 10 param+error 330.704 120.895 -0.0329141 0.0120976 32.67 1.29889 68.4057 5.58107 9953.23 0.749845 10.0237 0.471662 39.4088 0.471662 +CP dss 0 61 h pakw 11 1881.35 59.541 2.89748 2013.86 80.997 3.0118 2270.36 122.061 3.04549 2361.69 136.474 3.14807 3261.51 276.398 3.17812 3431.51 302.853 3.43021 3771.83 356.017 3.52698 3948.83 383.851 3.4793 4756.67 510.99 4.41986 8945.92 1173.24 4.44116 9953.23 1332.5 3.82839 +CM dss 0 61 h poly3 -239.349 0.160599 -9.36219e-07 6.80709e-11 error 2.90786 0.00244872 5.85575e-07 3.78406e-11 +CR dss 0 61 h poly2 2.76514 0.0024416 -1.12349e-06 error 0.238658 0.00129957 9.24208e-07 + +# ROU: dss 0 62 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 0 param+error 1600.11 2041.29 -0.797354 1.02 618.472 68.8164 61.3794 22.0401 1972.4 0.0562242 7.80249 0.0409519 7699.44 0.0409519 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 1 param+error -2272.32 1969.41 1.32058 0.922383 479.663 35.6652 66.2968 19.1129 2103 0.0781984 8.00088 0.0682638 3698.15 0.0682638 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 2 param+error 4.10123 0.641845 0.00190327 0.00027679 97.7004 13.4139 43.4751 8.78041 2353.44 0.154287 8.12407 0.0940729 713.447 0.0940729 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 3 param+error -60.2635 263.665 0.0246418 0.10671 9.5964 3.94082 47.7227 70.3106 2441.32 0.467241 7.86 0.426561 70.403 0.426561 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 4 param+error 34.9164 9.55426 -0.00133011 0.00287375 32.1371 13.419 20.8247 7.36617 3300.67 1.3903 9.29225 0.856864 49.7959 0.856864 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 5 param+error 7.93314 0.5617 0.00239917 0.000168539 36.2659 5.47338 42.1183 6.91748 3461.99 0.523127 8.84789 0.33958 106.364 0.33958 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 6 param+error -245.265 425.682 0.064459 0.111411 93.72 6.77846 30.4524 3.593 3788.15 0.249392 8.94961 0.185096 186.865 0.185096 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 7 param+error 29.0837 67.8652 -0.00718951 0.0169655 11.6773 3.04013 27.5204 9.12117 3960.21 1.56045 8.0647 0.848333 15.1771 0.848333 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 8 param+error 5.31795 0.654704 0.0012477 0.000148796 30.3584 3.82453 45.6279 6.15902 4737.33 0.83291 11.1875 0.626168 59.0172 0.626168 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 9 param+error 10.7589 0.59636 0.00126314 6.99808e-05 38.8709 2.45626 100.206 9.13357 8789.41 0.759543 10.7219 0.565371 76.9919 0.565371 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 10 param+error 4.48649 2.47322 -0.000456009 0.000264644 0.633883 0.199358 105.666 46.0202 9408.78 3.04971 11.234 3.22817 1.60836 3.22817 +CL dss 0 62 h M:PF-B:L-L:GCDFED-P:G 11 param+error 348.503 40.781 -0.0353414 0.00416037 27.06 0.479994 70.1375 3.6304 9765.92 0.661749 11.1059 0.432946 43.9696 0.432946 +CP dss 0 62 h pakw 12 1972.4 59.541 3.00329 2103 80.997 3.07902 2353.44 122.061 3.12528 2441.32 136.474 3.02333 3300.67 276.398 3.57089 3461.99 302.853 3.39969 3788.15 356.017 3.43804 3960.21 383.851 3.09782 4737.33 510.99 4.29658 8789.41 1173.24 4.13713 9408.78 1274.58 4.34147 9765.92 1332.5 4.29621 +CM dss 0 62 h poly3 -263.409 0.164161 -2.24936e-07 1.57563e-11 error 3.14193 0.0025905 6.14839e-07 4.01003e-11 +CR dss 0 62 h poly2 2.97833 0.00105586 -3.42103e-08 error 0.240962 0.00128431 9.09529e-07 + +# ROU: dss 0 63 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 0 param+error -937.207 420.054 0.481818 0.21408 1129.66 32.8409 90.9577 8.66101 1928.11 0.0266177 7.4574 0.0181122 13418.8 0.0181122 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 1 param+error -7087.57 2856.13 3.65749 1.36741 448.02 33.9369 20663.1 20110.5 2060.03 0.0675432 7.88495 0.0496814 4273.6 0.0496814 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 2 param+error 3.4494 0.538886 0.00166443 0.000248805 84.7892 12.5221 55.5876 16.2882 2310.74 0.150002 7.79677 0.0898226 709.119 0.0898226 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 3 param+error 9.73703 184.355 -0.003854 0.075884 9.39559 4.85508 50.0653 67.3 2398.97 0.53184 7.96363 0.375485 67.0337 0.375485 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 4 param+error 234.149 348.387 -0.0623218 0.106182 40.92 30.0936 15.8194 4.74589 3249.12 0.920611 8.0272 0.641615 42.6995 0.641615 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 5 param+error -235.774 426.145 0.0730776 0.123856 54.12 6.37587 25.0768 5.59687 3410.06 0.412351 8.51511 0.307606 96.9483 0.307606 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 6 param+error -684.168 261.594 0.181728 0.0693899 94.71 4.94745 26.3751 1.96693 3736.5 0.221682 8.45874 0.162363 189.806 0.162363 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 7 param+error -51.7774 39.3824 0.0132726 0.0100229 11.88 2.08351 23.8932 3.30577 3909.97 0.9463 7.57995 0.6821 14.3856 0.6821 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 8 param+error -50.4809 219.438 0.0124168 0.0462694 38.61 24.5113 35.2077 6.07964 4699.25 0.563307 10.9361 0.397831 62.3604 0.397831 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 9 param+error 865.233 751.056 -0.0955527 0.0847437 43.1925 6.75672 57.6484 24.4532 8826.16 0.937454 9.69993 0.667243 76.2204 0.667243 +CL dss 0 63 h M:PF-B:L-L:GCDFED-P:G 10 param+error 0.711481 3.63388 7.96168e-05 0.000369079 26.2488 1.85475 81.831 7.56963 9811.19 0.811587 10.2775 0.536938 47.4717 0.536938 +CP dss 0 63 h pakw 11 1928.11 59.541 2.90134 2060.03 80.997 3.06342 2310.74 122.061 3.0214 2398.97 136.474 3.08336 3249.12 276.398 3.08405 3410.06 302.853 3.26721 3736.5 356.017 3.23739 3909.97 383.851 2.8974 4699.25 510.99 4.15924 8826.16 1173.24 3.66283 9811.19 1332.5 3.89299 +CM dss 0 63 h poly3 -262.866 0.169188 -1.17797e-06 5.11906e-11 error 2.85791 0.00238627 5.71396e-07 3.73957e-11 +CR dss 0 63 h poly2 3.00001 0.000180008 3.50002e-07 error 0.234588 0.00122314 8.73277e-07 + +# ROU: dss 0 64 h +# Method:FittedPeak BackgroundModel:Linear EnergyLossModel:GaussianConvolvedDeltaFunctionWithExponentialDecay PeakShapeModel:Gaussian +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 0 param+error -42122.2 742.203 21.7967 0.373059 28986.5 178.511 121.39 2.18514 1948.85 0.0191305 12.2847 0.0114738 112685 0.0114738 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 1 param+error -21341.5 5026.43 13.5204 2.36996 6556.49 82.8622 20727.5 18576.7 2073.68 0.0355163 12.8364 0.0312844 35344.3 0.0312844 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 2 param+error -21376.9 5116.27 9.16641 2.17659 1122.87 65.0395 376.769 345.92 2310.74 0.0938245 12.6314 0.0838726 7338.22 0.0838726 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 3 param+error -6366.9 21.8331 2.62976 0.00899363 312.18 49.7344 69.905 2.86054 2394.04 0.169169 12.8303 0.182961 695.64 0.182961 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 4 param+error -8809.69 32.2 2.88312 0.00996375 337.672 24.8079 149.278 39.0311 3190.53 0.315831 13.6457 0.222155 933.827 0.222155 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 5 param+error 1652.23 623.292 -0.398807 0.184553 866.91 31.2501 28.6983 1.09082 3341.89 0.13766 13.0969 0.100165 1573.77 0.100165 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 6 param+error -3443.88 948.453 0.954863 0.257166 1714.35 23.2059 35.8387 0.889304 3646.39 0.0753115 13.4963 0.0495557 3711.19 0.0495557 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 7 param+error -3901.7 11.3378 1.01801 0.0029445 188.43 15.3269 78.4498 11.6195 3806.98 0.357091 13.9981 0.206916 464.722 0.206916 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 8 param+error -3038.22 991.655 0.686557 0.215656 638.55 11.3562 51.6847 2.92379 4543.81 0.146484 15.3266 0.109511 1234.04 0.109511 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 9 param+error 3307.52 2103.98 -0.340461 0.221606 909.81 879.151 76.2366 4.95131 9439.58 0.204807 14.6481 0.14173 1592.42 0.14173 +CL dss 0 64 h M:PF-B:L-L:GCDFED-P:G 10 param+error -1187.76 11.1258 0.117772 0.00109322 5.96576 2.99365 84486.2 88594.9 10158.5 15.4663 12.2553 43.428 2.68998e-06 43.428 +CP dss 0 64 h pakw 11 1948.85 59.541 5.66237 2073.68 80.997 5.81261 2310.74 122.061 5.5336 2394.04 136.474 5.55687 3190.53 276.398 5.33418 3341.89 302.853 5.02901 3646.39 356.017 5.00884 3806.98 383.851 5.10814 4543.81 510.99 5.23386 9439.58 1173.24 5.81589 10158.5 1332.5 5.3447 +CM dss 0 64 h poly3 -385.483 0.262634 -2.03324e-05 1.08423e-09 error 4.66432 0.00385756 9.12838e-07 5.79517e-11 +CR dss 0 64 h poly2 5.82355 -0.00255345 1.81663e-06 error 0.433884 0.00213655 1.48125e-06 diff --git a/resource/unittestdata/542-1/hp52542-1.gse_20251016T191639.hdf5 b/resource/unittestdata/542-1/hp52542-1.gse_20251016T191639.hdf5 new file mode 100644 index 00000000..d645538f Binary files /dev/null and b/resource/unittestdata/542-1/hp52542-1.gse_20251016T191639.hdf5 differ diff --git a/resource/unittestdata/542-1/hp52542-1.revan.cfg b/resource/unittestdata/542-1/hp52542-1.revan.cfg new file mode 100644 index 00000000..653ed5e7 --- /dev/null +++ b/resource/unittestdata/542-1/hp52542-1.revan.cfg @@ -0,0 +1,104 @@ + + 2 + 49000 + + + 1 + 0 + 0 + 2 + 0 + 1 + 0 + 1e-06 + 1000 + MLP + + 0.2 + 1.1 + 0.3 + 0 + 0.2 + 0.3 + 0.3 + 0.3 + 0 + 1.5 + 1 + + true + true + false + true + 2 + 1 + false + 6 + + SStrip + + false + 3 + false + true + false + false + + 0 + 1000 + + 7 + + 0 + 0 + 10000 + + + 0 + 0 + 0 + + + + + + + BDTD + + 0 + 25000 + + + 0 + 1000 + + + -1 + -1 + + true + + 3 + 20 + + 1 + + 120 + false + 0 + 2500 + + true + false + true + false + true + false + false + true + false + 1000 + true + 1 + 12200 + diff --git a/resource/unittestdata/542-1/hp52542-1.simplified.geo.setup b/resource/unittestdata/542-1/hp52542-1.simplified.geo.setup new file mode 100644 index 00000000..a4d8459e --- /dev/null +++ b/resource/unittestdata/542-1/hp52542-1.simplified.geo.setup @@ -0,0 +1,151 @@ +# Simplified mass model for COSI STTC HP52542-1 +# Single germanium detector: active wafer + guard ring only. + +SurroundingSphere 20 0.0 0.0 0.0 20 +ShowSurroundingSphere False + +# ------------------------------------------------------- +# Constants + +Constant DetectorHalfHeight {1.595/2} +Constant DetectorHalfWidth 4.025 +Constant GuardRingSize 0.3 +Constant IngotRadius {2 * 2.54} + +Constant Xshift 1.342 +Constant Yshift 0.991 +Constant Zshift -0.4 + +# ------------------------------------------------------- +# Materials + +Material Vacuum +Vacuum.Density 1E-12 +Vacuum.Component H 1 + +Material active_ge_recoil +active_ge_recoil.Density 5.323 +active_ge_recoil.ComponentByMass Ge 1 + +# ------------------------------------------------------- +# World volume + +Volume WorldVolume +WorldVolume.Material Vacuum +WorldVolume.Visibility 0 +WorldVolume.Shape Sphere 0.0 100 +WorldVolume.Mother 0 + +# ------------------------------------------------------- +# Detector geometry + +Volume SingleDetector +SingleDetector.Material Vacuum +SingleDetector.Shape BRIK 6.1225 5.791 {DetectorHalfHeight+.9} +SingleDetector.Visibility 0 +SingleDetector.Virtual true +SingleDetector.Rotation -90.0 0.0 0.0 +SingleDetector.Position 0.0 0.0 0.0 +SingleDetector.Mother WorldVolume + +Shape BRIK ActiveWaferOuterBox +ActiveWaferOuterBox.Parameters { DetectorHalfWidth - GuardRingSize } { DetectorHalfWidth - GuardRingSize } DetectorHalfHeight + +Shape TUBE ActiveWaferCutDisk +ActiveWaferCutDisk.Parameters 0.0 { IngotRadius - GuardRingSize } DetectorHalfHeight + +Shape Intersection ActiveWafer +ActiveWafer.Parameters ActiveWaferOuterBox ActiveWaferCutDisk + +Shape BRIK WaferOuterBox +WaferOuterBox.Parameters DetectorHalfWidth DetectorHalfWidth DetectorHalfHeight + +Shape TUBE WaferCutDisk +WaferCutDisk.Parameters 0.0 IngotRadius DetectorHalfHeight + +Shape Intersection WholeWafer +WholeWafer.Parameters WaferOuterBox WaferCutDisk + +Shape Subtraction GuardRing_AlmostThere +GuardRing_AlmostThere.Parameters WholeWafer ActiveWafer + +Shape Intersection GuardRing +GuardRing.Parameters WaferOuterBox GuardRing_AlmostThere + +Volume D1_GeWafer +D1_GeWafer.Material active_ge_recoil +D1_GeWafer.Visibility 1 +D1_GeWafer.Color 4 +D1_GeWafer.Shape ActiveWafer +D1_GeWafer.Position {-0.6555+Xshift} {0.0+Yshift} {Zshift} +D1_GeWafer.Mother SingleDetector + +Volume GeWaferGuardRing +GeWaferGuardRing.Material active_ge_recoil +GeWaferGuardRing.Visibility 1 +GeWaferGuardRing.Color 3 +GeWaferGuardRing.Shape GuardRing +GeWaferGuardRing.Position {-0.6555+Xshift} {0.0+Yshift} {Zshift} +GeWaferGuardRing.Mother SingleDetector + +# ------------------------------------------------------- +# Detector definitions + +MDStrip3D GeD_0 + +GeD_0.DetectorVolume D1_GeWafer +GeD_0.SensitiveVolume D1_GeWafer + +GeD_0.Offset 0.0 0.0 +GeD_0.StripNumber 64 64 + +GeD_0.NoiseThreshold 15 +GeD_0.TriggerThreshold 30 + +GeD_0.DepthResolution 10 0.02 +GeD_0.DepthResolution 100 0.02 +GeD_0.DepthResolution 1000 0.02 + +GeD_0.EnergyResolution Gaus 10 10 0.417 +GeD_0.EnergyResolution Gaus 20 20 0.425 +GeD_0.EnergyResolution Gaus 50 50 0.4375 +GeD_0.EnergyResolution Gaus 100 100 0.454 +GeD_0.EnergyResolution Gaus 200 200 0.492 +GeD_0.EnergyResolution Gaus 500 500 0.5875 +GeD_0.EnergyResolution Gaus 1000 1000 0.7217 +GeD_0.EnergyResolution Gaus 2000 2000 0.9317 +GeD_0.EnergyResolution Gaus 5000 5000 1.3819 +GeD_0.EnergyResolution Gaus 10000 10000 1.9094 +GeD_0.EnergyResolution Gaus 100000 100000 5.907 + +GeD_0.FailureRate 0.0 + + +Simple GuardRingDetector + +GuardRingDetector.DetectorVolume GeWaferGuardRing +GuardRingDetector.SensitiveVolume GeWaferGuardRing + +GuardRingDetector.TriggerThreshold 40 +GuardRingDetector.NoiseThresholdEqualsTriggerThreshold true + +GuardRingDetector.EnergyResolution Gaus 10 10 3 +GuardRingDetector.EnergyResolution Gaus 20 20 3 +GuardRingDetector.EnergyResolution Gaus 50 50 3 +GuardRingDetector.EnergyResolution Gaus 100 100 3 +GuardRingDetector.EnergyResolution Gaus 200 200 3 +GuardRingDetector.EnergyResolution Gaus 500 500 3 +GuardRingDetector.EnergyResolution Gaus 1000 1000 3 +GuardRingDetector.EnergyResolution Gaus 2000 2000 3 +GuardRingDetector.EnergyResolution Gaus 5000 5000 3 + + +Trigger GeD_0Trigger +GeD_0Trigger.Veto false +GeD_0Trigger.TriggerByChannel true +GeD_0Trigger.Detector GeD_0 1 + +Trigger GuardRingVeto +GuardRingVeto.Veto true +GuardRingVeto.TriggerByChannel true +GuardRingVeto.Detector GuardRingDetector 1 diff --git a/resource/unittestdata/542-1/hp52542-1.splines.csv b/resource/unittestdata/542-1/hp52542-1.splines.csv new file mode 100644 index 00000000..a1d285f4 --- /dev/null +++ b/resource/unittestdata/542-1/hp52542-1.splines.csv @@ -0,0 +1,319 @@ +-0.7974499904632568,-193.03689294481325 +-0.7924499904632569,-193.00489639802595 +-0.7874499904632569,-192.87773625548294 +-0.7824499904632568,-192.71775553690836 +-0.7774499904632568,-192.35633228250035 +-0.7724499904632569,-191.9635986897092 +-0.7674499904632569,-191.4278567361214 +-0.7624499904632569,-190.88780725716435 +-0.7574499904632568,-190.21700506645445 +-0.7524499904632569,-189.4296216308117 +-0.7474499904632569,-188.62872881902052 +-0.7424499904632569,-187.73737809525625 +-0.7374499904632569,-186.7833927202558 +-0.7324499904632569,-185.94629614854162 +-0.7274499904632569,-184.85374334880026 +-0.7224499904632569,-183.72047379558552 +-0.7174499904632569,-182.64581758995658 +-0.7124499904632569,-181.41738273587958 +-0.7074499904632569,-180.40894431051873 +-0.7024499904632568,-179.12902956894723 +-0.6974499904632568,-177.966664938067 +-0.6924499904632568,-176.5960259897686 +-0.6874499904632569,-175.32341376816058 +-0.6824499904632568,-173.91536949246697 +-0.6774499904632568,-172.67864990834627 +-0.6724499904632568,-171.12342941687797 +-0.6674499904632569,-169.86232446206915 +-0.6624499904632568,-168.579777822138 +-0.6574499904632568,-167.0559924745897 +-0.6524499904632568,-165.62693819024005 +-0.6474499904632569,-164.19042394811885 +-0.6424499904632569,-162.71127368144846 +-0.6374499904632568,-161.06839243631234 +-0.6324499904632568,-159.78476636208217 +-0.6274499904632569,-158.29714316581362 +-0.6224499904632569,-156.84055343555744 +-0.6174499904632569,-155.33075088670668 +-0.6124499904632568,-153.76685468408198 +-0.6074499904632569,-152.26599061545105 +-0.6024499904632569,-150.72431309802639 +-0.5974499904632569,-149.30723377424516 +-0.5924499904632569,-147.94355237810356 +-0.5874499904632569,-146.3153005395585 +-0.5824499904632569,-144.8138318455034 +-0.5774499904632568,-143.23289568851513 +-0.5724499904632568,-141.85791467022273 +-0.5674499904632568,-140.40619552717266 +-0.5624499904632568,-138.8128763189532 +-0.5574499904632568,-137.28642513491005 +-0.5524499904632568,-135.7689219242534 +-0.5474499904632568,-134.31360472784348 +-0.5424499904632569,-132.6772167605534 +-0.5374499904632568,-131.35253899938212 +-0.5324499904632568,-129.77660757842054 +-0.5274499904632568,-128.1817632520693 +-0.5224499904632569,-126.64329803887111 +-0.5174499904632569,-125.04320832287509 +-0.5124499904632568,-123.66994788520927 +-0.5074499904632568,-122.18148608120276 +-0.5024499904632569,-120.51942775118673 +-0.4974499904632569,-119.0311556076018 +-0.4924499904632569,-117.57192030898167 +-0.4874499904632568,-115.9567344343422 +-0.4824499904632568,-114.61262790091006 +-0.47744999046325687,-112.98980531650464 +-0.47244999046325686,-111.5155542337074 +-0.46744999046325686,-109.94888029602474 +-0.4624499904632568,-108.54518810379872 +-0.45744999046325685,-107.01071281381559 +-0.45244999046325685,-105.51330624310806 +-0.44744999046325684,-103.96412889369395 +-0.4424499904632569,-102.47215067762748 +-0.43744999046325683,-100.94357689977754 +-0.43244999046325683,-99.53709001085275 +-0.4274499904632568,-97.94321673735912 +-0.4224499904632569,-96.46590695319078 +-0.41744999046325687,-95.11765921315705 +-0.4124499904632568,-93.45096629651643 +-0.4074499904632568,-92.06291909949651 +-0.40244999046325686,-90.48962972073673 +-0.39744999046325685,-89.09717707640655 +-0.39244999046325685,-87.48390581207417 +-0.38744999046325684,-85.99462634763407 +-0.38244999046325684,-84.62591464554137 +-0.37744999046325683,-83.1345732846497 +-0.37244999046325683,-81.5817285814987 +-0.3674499904632568,-80.12180517309085 +-0.3624499904632569,-78.73216579158223 +-0.3574499904632568,-77.22031968550375 +-0.35244999046325687,-75.74838750060944 +-0.3474499904632568,-74.32247418618194 +-0.34244999046325686,-72.72856270132783 +-0.33744999046325685,-71.39033729913928 +-0.33244999046325685,-69.68957322153017 +-0.32744999046325685,-68.36920613741623 +-0.32244999046325684,-66.88980723033423 +-0.31744999046325684,-65.5479584597184 +-0.31244999046325683,-64.11031435355186 +-0.30744999046325683,-62.70713987906223 +-0.3024499904632568,-61.163725083122266 +-0.2974499904632568,-59.79217269825227 +-0.2924499904632568,-58.3323770065327 +-0.28744999046325687,-56.79184997237265 +-0.2824499904632568,-55.45035330644672 +-0.27744999046325686,-54.10846207325949 +-0.2724499904632568,-52.6406128373328 +-0.26744999046325685,-51.23906225644607 +-0.2624499904632568,-49.865961835472454 +-0.25744999046325684,-48.49698218522059 +-0.25244999046325683,-47.03394762428037 +-0.24744999046325683,-45.67996464754822 +-0.24244999046325683,-44.16261514296005 +-0.23744999046325682,-42.87271371108549 +-0.23244999046325682,-41.427588763476805 +-0.22744999046325684,-39.90834702590749 +-0.2224499904632568,-38.63386974049428 +-0.21744999046325683,-37.15188343191172 +-0.2124499904632568,-35.736588319511085 +-0.20744999046325682,-34.43029057911941 +-0.20244999046325685,-33.016352088204044 +-0.1974499904632568,-31.620009459250564 +-0.19244999046325684,-30.275503815528534 +-0.18744999046325683,-28.805883872270186 +-0.18244999046325683,-27.479881770193423 +-0.17744999046325682,-26.033502830528537 +-0.17244999046325682,-24.693184572679613 +-0.16744999046325684,-23.210226181477744 +-0.16244999046325684,-21.84770703629144 +-0.15744999046325683,-20.404640127421015 +-0.15244999046325683,-19.147361399002616 +-0.14744999046325682,-17.719700863398206 +-0.14244999046325685,-16.300279559617742 +-0.13744999046325684,-14.92225595247119 +-0.13244999046325684,-13.577382680055303 +-0.12744999046325683,-12.263639573157759 +-0.12244999046325682,-10.782183125568213 +-0.11744999046325684,-9.39808057549376 +-0.11244999046325684,-7.994370396353269 +-0.10744999046325683,-6.667992293568293 +-0.10244999046325683,-5.3852941483872545 +-0.09744999046325682,-3.8398476601733376 +-0.09244999046325683,-2.5317271888836634 +-0.08744999046325683,-1.1856911808300585 +-0.08244999046325682,0.324380364226019 +-0.07744999046325682,1.6564131916362157 +-0.07244999046325681,2.959521861153229 +-0.06744999046325682,4.432536132507063 +-0.06244999046325682,5.706907076122818 +-0.05744999046325683,7.061185991179342 +-0.052449990463256824,8.48139663461854 +-0.04744999046325682,9.805933046937612 +-0.04244999046325682,11.22021055832837 +-0.037449990463256824,12.332830206020171 +-0.03244999046325682,13.773765508738784 +-0.027449990463256822,15.237543743560465 +-0.022449990463256818,16.59855657598519 +-0.01744999046325682,17.976206414086835 +-0.01244999046325682,19.1985261951239 +-0.00744999046325682,20.575323878929474 +-0.0024499904632568196,21.92796523015099 +0.002550009536743181,23.238287686276387 +0.007550009536743181,24.57965689081062 +0.012550009536743184,25.900890249230642 +0.017550009536743183,27.288749220676955 +0.02255000953674318,28.59899297379585 +0.02755000953674318,29.95015996756983 +0.03255000953674318,31.096570690828273 +0.03755000953674319,32.64308465438411 +0.042550009536743184,33.83751421692167 +0.04755000953674318,35.189140577333944 +0.05255000953674318,36.52171651864589 +0.057550009536743184,37.7816103785948 +0.0625500095367432,39.163049083082164 +0.06755000953674319,40.405849035928604 +0.07255000953674319,41.73180573292874 +0.07755000953674318,43.03636964731947 +0.08255000953674319,44.31556098136968 +0.08755000953674319,45.65168444060146 +0.09255000953674318,46.90729727771672 +0.09755000953674318,48.21100284339082 +0.10255000953674318,49.65249397873859 +0.10755000953674318,50.77294782397779 +0.11255000953674318,52.140891129264524 +0.11755000953674319,53.33785927406152 +0.12255000953674319,54.57871263865452 +0.12755000953674317,55.884095853175815 +0.13255000953674317,57.2262293927512 +0.13755000953674318,58.524169807588166 +0.14255000953674318,59.78643905339768 +0.1475500095367432,61.06659966841466 +0.1525500095367432,62.41846482179781 +0.1575500095367432,63.723089314265025 +0.1625500095367432,64.9925038719601 +0.1675500095367432,66.2098756831141 +0.1725500095367432,67.52327061269463 +0.1775500095367432,68.7635555924137 +0.1825500095367432,70.10919917634547 +0.1875500095367432,71.37654914793411 +0.1925500095367432,72.70683688410587 +0.1975500095367432,73.98523207560515 +0.20255000953674318,75.13999139268726 +0.2075500095367432,76.46154170428731 +0.2125500095367432,77.82913327481182 +0.21755000953674317,79.08692143721692 +0.2225500095367432,80.35161082889428 +0.22755000953674318,81.69177373469194 +0.2325500095367432,82.86571192910483 +0.23755000953674318,84.08303258621036 +0.24255000953674316,85.4558836858536 +0.2475500095367432,86.71355965746116 +0.25255000953674317,87.88763787886909 +0.25755000953674323,89.15943877750506 +0.2625500095367432,90.47972573594485 +0.26755000953674324,91.6993222485332 +0.2725500095367432,92.9054518346586 +0.2775500095367432,94.10181246082223 +0.2825500095367432,95.41649574695154 +0.2875500095367432,96.79576378602927 +0.2925500095367432,97.7975170538509 +0.2975500095367432,99.21198819208009 +0.30255000953674316,100.30820315748028 +0.3075500095367432,101.71482533582707 +0.31255000953674317,102.7875120348246 +0.3175500095367432,103.96420032394597 +0.3225500095367432,105.16966359155937 +0.3275500095367432,106.46503640701116 +0.3325500095367432,107.73965107726485 +0.3375500095367432,108.99576987115003 +0.3425500095367432,110.4148001687469 +0.3475500095367432,111.3650115686303 +0.3525500095367432,112.63601268629888 +0.3575500095367432,113.66267561059185 +0.3625500095367432,115.06629366045614 +0.3675500095367432,116.31600424636893 +0.3725500095367432,117.41908175310631 +0.37755000953674317,118.6590794007149 +0.38255000953674323,120.01555292693293 +0.3875500095367432,121.07130812560025 +0.39255000953674324,122.16062778686849 +0.3975500095367432,123.40013965294057 +0.40255000953674325,124.65666038439092 +0.4075500095367432,125.81830139934334 +0.4125500095367432,127.08784268686512 +0.41755000953674315,128.23329989935596 +0.42255000953674327,129.39117711679742 +0.4275500095367432,130.65263444825808 +0.4325500095367432,131.83994685857252 +0.43755000953674317,133.07102045405577 +0.44255000953674317,134.4358111489134 +0.44755000953674323,135.44588408173783 +0.45255000953674324,136.62312643400944 +0.4575500095367432,137.7571067617793 +0.4625500095367432,138.87834635171356 +0.4675500095367432,140.01209997973325 +0.47255000953674325,141.12699120995828 +0.4775500095367432,142.49038698151125 +0.4825500095367432,143.6095553809622 +0.4875500095367432,144.71128429633737 +0.49255000953674316,145.8842043875519 +0.4975500095367432,147.00546952942722 +0.5025500095367432,148.16657243461682 +0.5075500095367432,149.34465198789863 +0.5125500095367432,150.48617133440183 +0.5175500095367431,151.567653241397 +0.5225500095367432,152.64865160950163 +0.5275500095367432,153.79079082741646 +0.5325500095367433,154.9896999103006 +0.5375500095367431,156.18492119562578 +0.5425500095367431,157.09808041452519 +0.5475500095367433,158.25000171232594 +0.5525500095367433,159.55290108624092 +0.5575500095367432,160.669419206057 +0.5625500095367432,161.66397026714068 +0.5675500095367432,162.80671740416736 +0.5725500095367433,163.78490128639686 +0.5775500095367432,164.94638199056047 +0.5825500095367432,166.05323221003215 +0.5875500095367432,167.08570927408397 +0.5925500095367432,168.1595880635337 +0.5975500095367432,169.0640223641593 +0.6025500095367432,170.25709451538384 +0.6075500095367432,171.4023870752517 +0.6125500095367432,172.30301746802027 +0.6175500095367432,173.4230910880168 +0.6225500095367432,174.4897093699658 +0.6275500095367432,175.51506267946195 +0.6325500095367432,176.41666467522884 +0.6375500095367432,177.48476091845285 +0.6425500095367432,178.54096007368466 +0.6475500095367432,179.3871057091949 +0.6525500095367432,180.34000504509345 +0.6575500095367433,181.47138150885434 +0.6625500095367431,182.51136259349045 +0.6675500095367433,183.31775342463618 +0.6725500095367433,184.29433922393136 +0.6775500095367433,185.2498207295637 +0.6825500095367432,186.04826958122604 +0.6875500095367432,186.99909288047863 +0.6925500095367433,187.82472826134318 +0.6975500095367433,188.65507351051266 +0.7025500095367432,189.44056520463758 +0.7075500095367432,190.3601950193344 +0.7125500095367432,191.1626424044703 +0.7175500095367433,191.86789891733545 +0.7225500095367432,192.5501466052138 +0.7275500095367432,193.16338567677101 +0.7325500095367432,193.98930128486884 +0.7375500095367432,194.67440714358992 +0.7425500095367432,195.28317983453385 +0.7475500095367432,195.74728542713837 +0.7525500095367432,196.346419964796 +0.7575500095367432,196.72644135651854 +0.7625500095367432,197.22844226070197 +0.7675500095367432,197.54852473935946 +0.7725500095367432,197.9469278059323 +0.7775500095367432,198.25602189506046 +0.7825500095367433,198.44784279070885 +0.7875500095367431,198.55027669985137 +0.7925500095367433,198.71970688918768 diff --git a/resource/unittestdata/542-1/hp52542-1.stripmap.map b/resource/unittestdata/542-1/hp52542-1.stripmap.map new file mode 100644 index 00000000..4816da9a --- /dev/null +++ b/resource/unittestdata/542-1/hp52542-1.stripmap.map @@ -0,0 +1,2082 @@ +# Columns are strip_id, rtb, drm, is_primary, asic, channel, detector, side (0=LV, 1=HV), strip +0 0 0 0 0 0 0 1 32 +1 0 0 0 0 1 0 1 33 +2 0 0 0 0 2 0 1 34 +3 0 0 0 0 3 0 1 35 +4 0 0 0 0 4 0 1 36 +5 0 0 0 0 5 0 1 37 +6 0 0 0 0 6 0 1 38 +7 0 0 0 0 7 0 1 39 +8 0 0 0 0 8 0 1 40 +9 0 0 0 0 9 0 1 41 +10 0 0 0 0 10 0 1 42 +11 0 0 0 0 11 0 1 43 +12 0 0 0 0 12 0 1 44 +13 0 0 0 0 13 0 1 45 +14 0 0 0 0 14 0 1 46 +15 0 0 0 0 15 0 1 47 +16 0 0 0 0 16 0 1 48 +17 0 0 0 0 17 0 1 49 +18 0 0 0 0 18 0 1 50 +19 0 0 0 0 19 0 1 51 +20 0 0 0 0 20 0 1 52 +21 0 0 0 0 21 0 1 53 +22 0 0 0 0 22 0 1 54 +23 0 0 0 0 23 0 1 55 +24 0 0 0 0 24 0 1 56 +25 0 0 0 0 25 0 1 57 +26 0 0 0 0 26 0 1 58 +27 0 0 0 0 27 0 1 59 +28 0 0 0 0 28 0 1 60 +29 0 0 0 0 29 0 1 61 +30 0 0 0 0 30 0 1 62 +31 0 0 0 0 31 0 1 63 +32 0 0 0 1 0 0 1 0 +33 0 0 0 1 1 0 1 1 +34 0 0 0 1 2 0 1 2 +35 0 0 0 1 3 0 1 3 +36 0 0 0 1 4 0 1 4 +37 0 0 0 1 5 0 1 5 +38 0 0 0 1 6 0 1 6 +39 0 0 0 1 7 0 1 7 +40 0 0 0 1 8 0 1 8 +41 0 0 0 1 9 0 1 9 +42 0 0 0 1 10 0 1 10 +43 0 0 0 1 11 0 1 11 +44 0 0 0 1 12 0 1 12 +45 0 0 0 1 13 0 1 13 +46 0 0 0 1 14 0 1 14 +47 0 0 0 1 15 0 1 15 +48 0 0 0 1 16 0 1 16 +49 0 0 0 1 17 0 1 17 +50 0 0 0 1 18 0 1 18 +51 0 0 0 1 19 0 1 19 +52 0 0 0 1 20 0 1 20 +53 0 0 0 1 21 0 1 21 +54 0 0 0 1 22 0 1 22 +55 0 0 0 1 23 0 1 23 +56 0 0 0 1 24 0 1 24 +57 0 0 0 1 25 0 1 25 +58 0 0 0 1 26 0 1 26 +59 0 0 0 1 27 0 1 27 +60 0 0 0 1 28 0 1 28 +61 0 0 0 1 29 0 1 29 +62 0 0 0 1 30 0 1 30 +63 0 0 0 1 31 0 1 31 +64 0 0 1 0 0 0 0 32 +65 0 0 1 0 1 0 0 33 +66 0 0 1 0 2 0 0 34 +67 0 0 1 0 3 0 0 35 +68 0 0 1 0 4 0 0 36 +69 0 0 1 0 5 0 0 37 +70 0 0 1 0 6 0 0 38 +71 0 0 1 0 7 0 0 39 +72 0 0 1 0 8 0 0 40 +73 0 0 1 0 9 0 0 41 +74 0 0 1 0 10 0 0 42 +75 0 0 1 0 11 0 0 43 +76 0 0 1 0 12 0 0 44 +77 0 0 1 0 13 0 0 45 +78 0 0 1 0 14 0 0 46 +79 0 0 1 0 15 0 0 47 +80 0 0 1 0 16 0 0 48 +81 0 0 1 0 17 0 0 49 +82 0 0 1 0 18 0 0 50 +83 0 0 1 0 19 0 0 51 +84 0 0 1 0 20 0 0 52 +85 0 0 1 0 21 0 0 53 +86 0 0 1 0 22 0 0 54 +87 0 0 1 0 23 0 0 55 +88 0 0 1 0 24 0 0 56 +89 0 0 1 0 25 0 0 57 +90 0 0 1 0 26 0 0 58 +91 0 0 1 0 27 0 0 59 +92 0 0 1 0 28 0 0 60 +93 0 0 1 0 29 0 0 61 +94 0 0 1 0 30 0 0 62 +95 0 0 1 0 31 0 0 63 +96 0 0 1 1 0 0 0 0 +97 0 0 1 1 1 0 0 1 +98 0 0 1 1 2 0 0 2 +99 0 0 1 1 3 0 0 3 +100 0 0 1 1 4 0 0 4 +101 0 0 1 1 5 0 0 5 +102 0 0 1 1 6 0 0 6 +103 0 0 1 1 7 0 0 7 +104 0 0 1 1 8 0 0 8 +105 0 0 1 1 9 0 0 9 +106 0 0 1 1 10 0 0 10 +107 0 0 1 1 11 0 0 11 +108 0 0 1 1 12 0 0 12 +109 0 0 1 1 13 0 0 13 +110 0 0 1 1 14 0 0 14 +111 0 0 1 1 15 0 0 15 +112 0 0 1 1 16 0 0 16 +113 0 0 1 1 17 0 0 17 +114 0 0 1 1 18 0 0 18 +115 0 0 1 1 19 0 0 19 +116 0 0 1 1 20 0 0 20 +117 0 0 1 1 21 0 0 21 +118 0 0 1 1 22 0 0 22 +119 0 0 1 1 23 0 0 23 +120 0 0 1 1 24 0 0 24 +121 0 0 1 1 25 0 0 25 +122 0 0 1 1 26 0 0 26 +123 0 0 1 1 27 0 0 27 +124 0 0 1 1 28 0 0 28 +125 0 0 1 1 29 0 0 29 +126 0 0 1 1 30 0 0 30 +127 0 0 1 1 31 0 0 31 +128 0 1 0 0 0 1 1 32 +129 0 1 0 0 1 1 1 33 +130 0 1 0 0 2 1 1 34 +131 0 1 0 0 3 1 1 35 +132 0 1 0 0 4 1 1 36 +133 0 1 0 0 5 1 1 37 +134 0 1 0 0 6 1 1 38 +135 0 1 0 0 7 1 1 39 +136 0 1 0 0 8 1 1 40 +137 0 1 0 0 9 1 1 41 +138 0 1 0 0 10 1 1 42 +139 0 1 0 0 11 1 1 43 +140 0 1 0 0 12 1 1 44 +141 0 1 0 0 13 1 1 45 +142 0 1 0 0 14 1 1 46 +143 0 1 0 0 15 1 1 47 +144 0 1 0 0 16 1 1 48 +145 0 1 0 0 17 1 1 49 +146 0 1 0 0 18 1 1 50 +147 0 1 0 0 19 1 1 51 +148 0 1 0 0 20 1 1 52 +149 0 1 0 0 21 1 1 53 +150 0 1 0 0 22 1 1 54 +151 0 1 0 0 23 1 1 55 +152 0 1 0 0 24 1 1 56 +153 0 1 0 0 25 1 1 57 +154 0 1 0 0 26 1 1 58 +155 0 1 0 0 27 1 1 59 +156 0 1 0 0 28 1 1 60 +157 0 1 0 0 29 1 1 61 +158 0 1 0 0 30 1 1 62 +159 0 1 0 0 31 1 1 63 +160 0 1 0 1 0 1 1 0 +161 0 1 0 1 1 1 1 1 +162 0 1 0 1 2 1 1 2 +163 0 1 0 1 3 1 1 3 +164 0 1 0 1 4 1 1 4 +165 0 1 0 1 5 1 1 5 +166 0 1 0 1 6 1 1 6 +167 0 1 0 1 7 1 1 7 +168 0 1 0 1 8 1 1 8 +169 0 1 0 1 9 1 1 9 +170 0 1 0 1 10 1 1 10 +171 0 1 0 1 11 1 1 11 +172 0 1 0 1 12 1 1 12 +173 0 1 0 1 13 1 1 13 +174 0 1 0 1 14 1 1 14 +175 0 1 0 1 15 1 1 15 +176 0 1 0 1 16 1 1 16 +177 0 1 0 1 17 1 1 17 +178 0 1 0 1 18 1 1 18 +179 0 1 0 1 19 1 1 19 +180 0 1 0 1 20 1 1 20 +181 0 1 0 1 21 1 1 21 +182 0 1 0 1 22 1 1 22 +183 0 1 0 1 23 1 1 23 +184 0 1 0 1 24 1 1 24 +185 0 1 0 1 25 1 1 25 +186 0 1 0 1 26 1 1 26 +187 0 1 0 1 27 1 1 27 +188 0 1 0 1 28 1 1 28 +189 0 1 0 1 29 1 1 29 +190 0 1 0 1 30 1 1 30 +191 0 1 0 1 31 1 1 31 +192 0 1 1 0 0 1 0 32 +193 0 1 1 0 1 1 0 33 +194 0 1 1 0 2 1 0 34 +195 0 1 1 0 3 1 0 35 +196 0 1 1 0 4 1 0 36 +197 0 1 1 0 5 1 0 37 +198 0 1 1 0 6 1 0 38 +199 0 1 1 0 7 1 0 39 +200 0 1 1 0 8 1 0 40 +201 0 1 1 0 9 1 0 41 +202 0 1 1 0 10 1 0 42 +203 0 1 1 0 11 1 0 43 +204 0 1 1 0 12 1 0 44 +205 0 1 1 0 13 1 0 45 +206 0 1 1 0 14 1 0 46 +207 0 1 1 0 15 1 0 47 +208 0 1 1 0 16 1 0 48 +209 0 1 1 0 17 1 0 49 +210 0 1 1 0 18 1 0 50 +211 0 1 1 0 19 1 0 51 +212 0 1 1 0 20 1 0 52 +213 0 1 1 0 21 1 0 53 +214 0 1 1 0 22 1 0 54 +215 0 1 1 0 23 1 0 55 +216 0 1 1 0 24 1 0 56 +217 0 1 1 0 25 1 0 57 +218 0 1 1 0 26 1 0 58 +219 0 1 1 0 27 1 0 59 +220 0 1 1 0 28 1 0 60 +221 0 1 1 0 29 1 0 61 +222 0 1 1 0 30 1 0 62 +223 0 1 1 0 31 1 0 63 +224 0 1 1 1 0 1 0 0 +225 0 1 1 1 1 1 0 1 +226 0 1 1 1 2 1 0 2 +227 0 1 1 1 3 1 0 3 +228 0 1 1 1 4 1 0 4 +229 0 1 1 1 5 1 0 5 +230 0 1 1 1 6 1 0 6 +231 0 1 1 1 7 1 0 7 +232 0 1 1 1 8 1 0 8 +233 0 1 1 1 9 1 0 9 +234 0 1 1 1 10 1 0 10 +235 0 1 1 1 11 1 0 11 +236 0 1 1 1 12 1 0 12 +237 0 1 1 1 13 1 0 13 +238 0 1 1 1 14 1 0 14 +239 0 1 1 1 15 1 0 15 +240 0 1 1 1 16 1 0 16 +241 0 1 1 1 17 1 0 17 +242 0 1 1 1 18 1 0 18 +243 0 1 1 1 19 1 0 19 +244 0 1 1 1 20 1 0 20 +245 0 1 1 1 21 1 0 21 +246 0 1 1 1 22 1 0 22 +247 0 1 1 1 23 1 0 23 +248 0 1 1 1 24 1 0 24 +249 0 1 1 1 25 1 0 25 +250 0 1 1 1 26 1 0 26 +251 0 1 1 1 27 1 0 27 +252 0 1 1 1 28 1 0 28 +253 0 1 1 1 29 1 0 29 +254 0 1 1 1 30 1 0 30 +255 0 1 1 1 31 1 0 31 +256 0 2 0 0 0 2 1 32 +257 0 2 0 0 1 2 1 33 +258 0 2 0 0 2 2 1 34 +259 0 2 0 0 3 2 1 35 +260 0 2 0 0 4 2 1 36 +261 0 2 0 0 5 2 1 37 +262 0 2 0 0 6 2 1 38 +263 0 2 0 0 7 2 1 39 +264 0 2 0 0 8 2 1 40 +265 0 2 0 0 9 2 1 41 +266 0 2 0 0 10 2 1 42 +267 0 2 0 0 11 2 1 43 +268 0 2 0 0 12 2 1 44 +269 0 2 0 0 13 2 1 45 +270 0 2 0 0 14 2 1 46 +271 0 2 0 0 15 2 1 47 +272 0 2 0 0 16 2 1 48 +273 0 2 0 0 17 2 1 49 +274 0 2 0 0 18 2 1 50 +275 0 2 0 0 19 2 1 51 +276 0 2 0 0 20 2 1 52 +277 0 2 0 0 21 2 1 53 +278 0 2 0 0 22 2 1 54 +279 0 2 0 0 23 2 1 55 +280 0 2 0 0 24 2 1 56 +281 0 2 0 0 25 2 1 57 +282 0 2 0 0 26 2 1 58 +283 0 2 0 0 27 2 1 59 +284 0 2 0 0 28 2 1 60 +285 0 2 0 0 29 2 1 61 +286 0 2 0 0 30 2 1 62 +287 0 2 0 0 31 2 1 63 +288 0 2 0 1 0 2 1 0 +289 0 2 0 1 1 2 1 1 +290 0 2 0 1 2 2 1 2 +291 0 2 0 1 3 2 1 3 +292 0 2 0 1 4 2 1 4 +293 0 2 0 1 5 2 1 5 +294 0 2 0 1 6 2 1 6 +295 0 2 0 1 7 2 1 7 +296 0 2 0 1 8 2 1 8 +297 0 2 0 1 9 2 1 9 +298 0 2 0 1 10 2 1 10 +299 0 2 0 1 11 2 1 11 +300 0 2 0 1 12 2 1 12 +301 0 2 0 1 13 2 1 13 +302 0 2 0 1 14 2 1 14 +303 0 2 0 1 15 2 1 15 +304 0 2 0 1 16 2 1 16 +305 0 2 0 1 17 2 1 17 +306 0 2 0 1 18 2 1 18 +307 0 2 0 1 19 2 1 19 +308 0 2 0 1 20 2 1 20 +309 0 2 0 1 21 2 1 21 +310 0 2 0 1 22 2 1 22 +311 0 2 0 1 23 2 1 23 +312 0 2 0 1 24 2 1 24 +313 0 2 0 1 25 2 1 25 +314 0 2 0 1 26 2 1 26 +315 0 2 0 1 27 2 1 27 +316 0 2 0 1 28 2 1 28 +317 0 2 0 1 29 2 1 29 +318 0 2 0 1 30 2 1 30 +319 0 2 0 1 31 2 1 31 +320 0 2 1 0 0 2 0 32 +321 0 2 1 0 1 2 0 33 +322 0 2 1 0 2 2 0 34 +323 0 2 1 0 3 2 0 35 +324 0 2 1 0 4 2 0 36 +325 0 2 1 0 5 2 0 37 +326 0 2 1 0 6 2 0 38 +327 0 2 1 0 7 2 0 39 +328 0 2 1 0 8 2 0 40 +329 0 2 1 0 9 2 0 41 +330 0 2 1 0 10 2 0 42 +331 0 2 1 0 11 2 0 43 +332 0 2 1 0 12 2 0 44 +333 0 2 1 0 13 2 0 45 +334 0 2 1 0 14 2 0 46 +335 0 2 1 0 15 2 0 47 +336 0 2 1 0 16 2 0 48 +337 0 2 1 0 17 2 0 49 +338 0 2 1 0 18 2 0 50 +339 0 2 1 0 19 2 0 51 +340 0 2 1 0 20 2 0 52 +341 0 2 1 0 21 2 0 53 +342 0 2 1 0 22 2 0 54 +343 0 2 1 0 23 2 0 55 +344 0 2 1 0 24 2 0 56 +345 0 2 1 0 25 2 0 57 +346 0 2 1 0 26 2 0 58 +347 0 2 1 0 27 2 0 59 +348 0 2 1 0 28 2 0 60 +349 0 2 1 0 29 2 0 61 +350 0 2 1 0 30 2 0 62 +351 0 2 1 0 31 2 0 63 +352 0 2 1 1 0 2 0 0 +353 0 2 1 1 1 2 0 1 +354 0 2 1 1 2 2 0 2 +355 0 2 1 1 3 2 0 3 +356 0 2 1 1 4 2 0 4 +357 0 2 1 1 5 2 0 5 +358 0 2 1 1 6 2 0 6 +359 0 2 1 1 7 2 0 7 +360 0 2 1 1 8 2 0 8 +361 0 2 1 1 9 2 0 9 +362 0 2 1 1 10 2 0 10 +363 0 2 1 1 11 2 0 11 +364 0 2 1 1 12 2 0 12 +365 0 2 1 1 13 2 0 13 +366 0 2 1 1 14 2 0 14 +367 0 2 1 1 15 2 0 15 +368 0 2 1 1 16 2 0 16 +369 0 2 1 1 17 2 0 17 +370 0 2 1 1 18 2 0 18 +371 0 2 1 1 19 2 0 19 +372 0 2 1 1 20 2 0 20 +373 0 2 1 1 21 2 0 21 +374 0 2 1 1 22 2 0 22 +375 0 2 1 1 23 2 0 23 +376 0 2 1 1 24 2 0 24 +377 0 2 1 1 25 2 0 25 +378 0 2 1 1 26 2 0 26 +379 0 2 1 1 27 2 0 27 +380 0 2 1 1 28 2 0 28 +381 0 2 1 1 29 2 0 29 +382 0 2 1 1 30 2 0 30 +383 0 2 1 1 31 2 0 31 +384 0 3 0 0 0 3 1 32 +385 0 3 0 0 1 3 1 33 +386 0 3 0 0 2 3 1 34 +387 0 3 0 0 3 3 1 35 +388 0 3 0 0 4 3 1 36 +389 0 3 0 0 5 3 1 37 +390 0 3 0 0 6 3 1 38 +391 0 3 0 0 7 3 1 39 +392 0 3 0 0 8 3 1 40 +393 0 3 0 0 9 3 1 41 +394 0 3 0 0 10 3 1 42 +395 0 3 0 0 11 3 1 43 +396 0 3 0 0 12 3 1 44 +397 0 3 0 0 13 3 1 45 +398 0 3 0 0 14 3 1 46 +399 0 3 0 0 15 3 1 47 +400 0 3 0 0 16 3 1 48 +401 0 3 0 0 17 3 1 49 +402 0 3 0 0 18 3 1 50 +403 0 3 0 0 19 3 1 51 +404 0 3 0 0 20 3 1 52 +405 0 3 0 0 21 3 1 53 +406 0 3 0 0 22 3 1 54 +407 0 3 0 0 23 3 1 55 +408 0 3 0 0 24 3 1 56 +409 0 3 0 0 25 3 1 57 +410 0 3 0 0 26 3 1 58 +411 0 3 0 0 27 3 1 59 +412 0 3 0 0 28 3 1 60 +413 0 3 0 0 29 3 1 61 +414 0 3 0 0 30 3 1 62 +415 0 3 0 0 31 3 1 63 +416 0 3 0 1 0 3 1 0 +417 0 3 0 1 1 3 1 1 +418 0 3 0 1 2 3 1 2 +419 0 3 0 1 3 3 1 3 +420 0 3 0 1 4 3 1 4 +421 0 3 0 1 5 3 1 5 +422 0 3 0 1 6 3 1 6 +423 0 3 0 1 7 3 1 7 +424 0 3 0 1 8 3 1 8 +425 0 3 0 1 9 3 1 9 +426 0 3 0 1 10 3 1 10 +427 0 3 0 1 11 3 1 11 +428 0 3 0 1 12 3 1 12 +429 0 3 0 1 13 3 1 13 +430 0 3 0 1 14 3 1 14 +431 0 3 0 1 15 3 1 15 +432 0 3 0 1 16 3 1 16 +433 0 3 0 1 17 3 1 17 +434 0 3 0 1 18 3 1 18 +435 0 3 0 1 19 3 1 19 +436 0 3 0 1 20 3 1 20 +437 0 3 0 1 21 3 1 21 +438 0 3 0 1 22 3 1 22 +439 0 3 0 1 23 3 1 23 +440 0 3 0 1 24 3 1 24 +441 0 3 0 1 25 3 1 25 +442 0 3 0 1 26 3 1 26 +443 0 3 0 1 27 3 1 27 +444 0 3 0 1 28 3 1 28 +445 0 3 0 1 29 3 1 29 +446 0 3 0 1 30 3 1 30 +447 0 3 0 1 31 3 1 31 +448 0 3 1 0 0 3 0 32 +449 0 3 1 0 1 3 0 33 +450 0 3 1 0 2 3 0 34 +451 0 3 1 0 3 3 0 35 +452 0 3 1 0 4 3 0 36 +453 0 3 1 0 5 3 0 37 +454 0 3 1 0 6 3 0 38 +455 0 3 1 0 7 3 0 39 +456 0 3 1 0 8 3 0 40 +457 0 3 1 0 9 3 0 41 +458 0 3 1 0 10 3 0 42 +459 0 3 1 0 11 3 0 43 +460 0 3 1 0 12 3 0 44 +461 0 3 1 0 13 3 0 45 +462 0 3 1 0 14 3 0 46 +463 0 3 1 0 15 3 0 47 +464 0 3 1 0 16 3 0 48 +465 0 3 1 0 17 3 0 49 +466 0 3 1 0 18 3 0 50 +467 0 3 1 0 19 3 0 51 +468 0 3 1 0 20 3 0 52 +469 0 3 1 0 21 3 0 53 +470 0 3 1 0 22 3 0 54 +471 0 3 1 0 23 3 0 55 +472 0 3 1 0 24 3 0 56 +473 0 3 1 0 25 3 0 57 +474 0 3 1 0 26 3 0 58 +475 0 3 1 0 27 3 0 59 +476 0 3 1 0 28 3 0 60 +477 0 3 1 0 29 3 0 61 +478 0 3 1 0 30 3 0 62 +479 0 3 1 0 31 3 0 63 +480 0 3 1 1 0 3 0 0 +481 0 3 1 1 1 3 0 1 +482 0 3 1 1 2 3 0 2 +483 0 3 1 1 3 3 0 3 +484 0 3 1 1 4 3 0 4 +485 0 3 1 1 5 3 0 5 +486 0 3 1 1 6 3 0 6 +487 0 3 1 1 7 3 0 7 +488 0 3 1 1 8 3 0 8 +489 0 3 1 1 9 3 0 9 +490 0 3 1 1 10 3 0 10 +491 0 3 1 1 11 3 0 11 +492 0 3 1 1 12 3 0 12 +493 0 3 1 1 13 3 0 13 +494 0 3 1 1 14 3 0 14 +495 0 3 1 1 15 3 0 15 +496 0 3 1 1 16 3 0 16 +497 0 3 1 1 17 3 0 17 +498 0 3 1 1 18 3 0 18 +499 0 3 1 1 19 3 0 19 +500 0 3 1 1 20 3 0 20 +501 0 3 1 1 21 3 0 21 +502 0 3 1 1 22 3 0 22 +503 0 3 1 1 23 3 0 23 +504 0 3 1 1 24 3 0 24 +505 0 3 1 1 25 3 0 25 +506 0 3 1 1 26 3 0 26 +507 0 3 1 1 27 3 0 27 +508 0 3 1 1 28 3 0 28 +509 0 3 1 1 29 3 0 29 +510 0 3 1 1 30 3 0 30 +511 0 3 1 1 31 3 0 31 +512 0 4 0 0 0 4 1 32 +513 0 4 0 0 1 4 1 33 +514 0 4 0 0 2 4 1 34 +515 0 4 0 0 3 4 1 35 +516 0 4 0 0 4 4 1 36 +517 0 4 0 0 5 4 1 37 +518 0 4 0 0 6 4 1 38 +519 0 4 0 0 7 4 1 39 +520 0 4 0 0 8 4 1 40 +521 0 4 0 0 9 4 1 41 +522 0 4 0 0 10 4 1 42 +523 0 4 0 0 11 4 1 43 +524 0 4 0 0 12 4 1 44 +525 0 4 0 0 13 4 1 45 +526 0 4 0 0 14 4 1 46 +527 0 4 0 0 15 4 1 47 +528 0 4 0 0 16 4 1 48 +529 0 4 0 0 17 4 1 49 +530 0 4 0 0 18 4 1 50 +531 0 4 0 0 19 4 1 51 +532 0 4 0 0 20 4 1 52 +533 0 4 0 0 21 4 1 53 +534 0 4 0 0 22 4 1 54 +535 0 4 0 0 23 4 1 55 +536 0 4 0 0 24 4 1 56 +537 0 4 0 0 25 4 1 57 +538 0 4 0 0 26 4 1 58 +539 0 4 0 0 27 4 1 59 +540 0 4 0 0 28 4 1 60 +541 0 4 0 0 29 4 1 61 +542 0 4 0 0 30 4 1 62 +543 0 4 0 0 31 4 1 63 +544 0 4 0 1 0 4 1 0 +545 0 4 0 1 1 4 1 1 +546 0 4 0 1 2 4 1 2 +547 0 4 0 1 3 4 1 3 +548 0 4 0 1 4 4 1 4 +549 0 4 0 1 5 4 1 5 +550 0 4 0 1 6 4 1 6 +551 0 4 0 1 7 4 1 7 +552 0 4 0 1 8 4 1 8 +553 0 4 0 1 9 4 1 9 +554 0 4 0 1 10 4 1 10 +555 0 4 0 1 11 4 1 11 +556 0 4 0 1 12 4 1 12 +557 0 4 0 1 13 4 1 13 +558 0 4 0 1 14 4 1 14 +559 0 4 0 1 15 4 1 15 +560 0 4 0 1 16 4 1 16 +561 0 4 0 1 17 4 1 17 +562 0 4 0 1 18 4 1 18 +563 0 4 0 1 19 4 1 19 +564 0 4 0 1 20 4 1 20 +565 0 4 0 1 21 4 1 21 +566 0 4 0 1 22 4 1 22 +567 0 4 0 1 23 4 1 23 +568 0 4 0 1 24 4 1 24 +569 0 4 0 1 25 4 1 25 +570 0 4 0 1 26 4 1 26 +571 0 4 0 1 27 4 1 27 +572 0 4 0 1 28 4 1 28 +573 0 4 0 1 29 4 1 29 +574 0 4 0 1 30 4 1 30 +575 0 4 0 1 31 4 1 31 +576 0 4 1 0 0 4 0 32 +577 0 4 1 0 1 4 0 33 +578 0 4 1 0 2 4 0 34 +579 0 4 1 0 3 4 0 35 +580 0 4 1 0 4 4 0 36 +581 0 4 1 0 5 4 0 37 +582 0 4 1 0 6 4 0 38 +583 0 4 1 0 7 4 0 39 +584 0 4 1 0 8 4 0 40 +585 0 4 1 0 9 4 0 41 +586 0 4 1 0 10 4 0 42 +587 0 4 1 0 11 4 0 43 +588 0 4 1 0 12 4 0 44 +589 0 4 1 0 13 4 0 45 +590 0 4 1 0 14 4 0 46 +591 0 4 1 0 15 4 0 47 +592 0 4 1 0 16 4 0 48 +593 0 4 1 0 17 4 0 49 +594 0 4 1 0 18 4 0 50 +595 0 4 1 0 19 4 0 51 +596 0 4 1 0 20 4 0 52 +597 0 4 1 0 21 4 0 53 +598 0 4 1 0 22 4 0 54 +599 0 4 1 0 23 4 0 55 +600 0 4 1 0 24 4 0 56 +601 0 4 1 0 25 4 0 57 +602 0 4 1 0 26 4 0 58 +603 0 4 1 0 27 4 0 59 +604 0 4 1 0 28 4 0 60 +605 0 4 1 0 29 4 0 61 +606 0 4 1 0 30 4 0 62 +607 0 4 1 0 31 4 0 63 +608 0 4 1 1 0 4 0 0 +609 0 4 1 1 1 4 0 1 +610 0 4 1 1 2 4 0 2 +611 0 4 1 1 3 4 0 3 +612 0 4 1 1 4 4 0 4 +613 0 4 1 1 5 4 0 5 +614 0 4 1 1 6 4 0 6 +615 0 4 1 1 7 4 0 7 +616 0 4 1 1 8 4 0 8 +617 0 4 1 1 9 4 0 9 +618 0 4 1 1 10 4 0 10 +619 0 4 1 1 11 4 0 11 +620 0 4 1 1 12 4 0 12 +621 0 4 1 1 13 4 0 13 +622 0 4 1 1 14 4 0 14 +623 0 4 1 1 15 4 0 15 +624 0 4 1 1 16 4 0 16 +625 0 4 1 1 17 4 0 17 +626 0 4 1 1 18 4 0 18 +627 0 4 1 1 19 4 0 19 +628 0 4 1 1 20 4 0 20 +629 0 4 1 1 21 4 0 21 +630 0 4 1 1 22 4 0 22 +631 0 4 1 1 23 4 0 23 +632 0 4 1 1 24 4 0 24 +633 0 4 1 1 25 4 0 25 +634 0 4 1 1 26 4 0 26 +635 0 4 1 1 27 4 0 27 +636 0 4 1 1 28 4 0 28 +637 0 4 1 1 29 4 0 29 +638 0 4 1 1 30 4 0 30 +639 0 4 1 1 31 4 0 31 +640 0 5 0 0 0 5 1 32 +641 0 5 0 0 1 5 1 33 +642 0 5 0 0 2 5 1 34 +643 0 5 0 0 3 5 1 35 +644 0 5 0 0 4 5 1 36 +645 0 5 0 0 5 5 1 37 +646 0 5 0 0 6 5 1 38 +647 0 5 0 0 7 5 1 39 +648 0 5 0 0 8 5 1 40 +649 0 5 0 0 9 5 1 41 +650 0 5 0 0 10 5 1 42 +651 0 5 0 0 11 5 1 43 +652 0 5 0 0 12 5 1 44 +653 0 5 0 0 13 5 1 45 +654 0 5 0 0 14 5 1 46 +655 0 5 0 0 15 5 1 47 +656 0 5 0 0 16 5 1 48 +657 0 5 0 0 17 5 1 49 +658 0 5 0 0 18 5 1 50 +659 0 5 0 0 19 5 1 51 +660 0 5 0 0 20 5 1 52 +661 0 5 0 0 21 5 1 53 +662 0 5 0 0 22 5 1 54 +663 0 5 0 0 23 5 1 55 +664 0 5 0 0 24 5 1 56 +665 0 5 0 0 25 5 1 57 +666 0 5 0 0 26 5 1 58 +667 0 5 0 0 27 5 1 59 +668 0 5 0 0 28 5 1 60 +669 0 5 0 0 29 5 1 61 +670 0 5 0 0 30 5 1 62 +671 0 5 0 0 31 5 1 63 +672 0 5 0 1 0 5 1 0 +673 0 5 0 1 1 5 1 1 +674 0 5 0 1 2 5 1 2 +675 0 5 0 1 3 5 1 3 +676 0 5 0 1 4 5 1 4 +677 0 5 0 1 5 5 1 5 +678 0 5 0 1 6 5 1 6 +679 0 5 0 1 7 5 1 7 +680 0 5 0 1 8 5 1 8 +681 0 5 0 1 9 5 1 9 +682 0 5 0 1 10 5 1 10 +683 0 5 0 1 11 5 1 11 +684 0 5 0 1 12 5 1 12 +685 0 5 0 1 13 5 1 13 +686 0 5 0 1 14 5 1 14 +687 0 5 0 1 15 5 1 15 +688 0 5 0 1 16 5 1 16 +689 0 5 0 1 17 5 1 17 +690 0 5 0 1 18 5 1 18 +691 0 5 0 1 19 5 1 19 +692 0 5 0 1 20 5 1 20 +693 0 5 0 1 21 5 1 21 +694 0 5 0 1 22 5 1 22 +695 0 5 0 1 23 5 1 23 +696 0 5 0 1 24 5 1 24 +697 0 5 0 1 25 5 1 25 +698 0 5 0 1 26 5 1 26 +699 0 5 0 1 27 5 1 27 +700 0 5 0 1 28 5 1 28 +701 0 5 0 1 29 5 1 29 +702 0 5 0 1 30 5 1 30 +703 0 5 0 1 31 5 1 31 +704 0 5 1 0 0 5 0 32 +705 0 5 1 0 1 5 0 33 +706 0 5 1 0 2 5 0 34 +707 0 5 1 0 3 5 0 35 +708 0 5 1 0 4 5 0 36 +709 0 5 1 0 5 5 0 37 +710 0 5 1 0 6 5 0 38 +711 0 5 1 0 7 5 0 39 +712 0 5 1 0 8 5 0 40 +713 0 5 1 0 9 5 0 41 +714 0 5 1 0 10 5 0 42 +715 0 5 1 0 11 5 0 43 +716 0 5 1 0 12 5 0 44 +717 0 5 1 0 13 5 0 45 +718 0 5 1 0 14 5 0 46 +719 0 5 1 0 15 5 0 47 +720 0 5 1 0 16 5 0 48 +721 0 5 1 0 17 5 0 49 +722 0 5 1 0 18 5 0 50 +723 0 5 1 0 19 5 0 51 +724 0 5 1 0 20 5 0 52 +725 0 5 1 0 21 5 0 53 +726 0 5 1 0 22 5 0 54 +727 0 5 1 0 23 5 0 55 +728 0 5 1 0 24 5 0 56 +729 0 5 1 0 25 5 0 57 +730 0 5 1 0 26 5 0 58 +731 0 5 1 0 27 5 0 59 +732 0 5 1 0 28 5 0 60 +733 0 5 1 0 29 5 0 61 +734 0 5 1 0 30 5 0 62 +735 0 5 1 0 31 5 0 63 +736 0 5 1 1 0 5 0 0 +737 0 5 1 1 1 5 0 1 +738 0 5 1 1 2 5 0 2 +739 0 5 1 1 3 5 0 3 +740 0 5 1 1 4 5 0 4 +741 0 5 1 1 5 5 0 5 +742 0 5 1 1 6 5 0 6 +743 0 5 1 1 7 5 0 7 +744 0 5 1 1 8 5 0 8 +745 0 5 1 1 9 5 0 9 +746 0 5 1 1 10 5 0 10 +747 0 5 1 1 11 5 0 11 +748 0 5 1 1 12 5 0 12 +749 0 5 1 1 13 5 0 13 +750 0 5 1 1 14 5 0 14 +751 0 5 1 1 15 5 0 15 +752 0 5 1 1 16 5 0 16 +753 0 5 1 1 17 5 0 17 +754 0 5 1 1 18 5 0 18 +755 0 5 1 1 19 5 0 19 +756 0 5 1 1 20 5 0 20 +757 0 5 1 1 21 5 0 21 +758 0 5 1 1 22 5 0 22 +759 0 5 1 1 23 5 0 23 +760 0 5 1 1 24 5 0 24 +761 0 5 1 1 25 5 0 25 +762 0 5 1 1 26 5 0 26 +763 0 5 1 1 27 5 0 27 +764 0 5 1 1 28 5 0 28 +765 0 5 1 1 29 5 0 29 +766 0 5 1 1 30 5 0 30 +767 0 5 1 1 31 5 0 31 +768 0 6 0 0 0 6 1 32 +769 0 6 0 0 1 6 1 33 +770 0 6 0 0 2 6 1 34 +771 0 6 0 0 3 6 1 35 +772 0 6 0 0 4 6 1 36 +773 0 6 0 0 5 6 1 37 +774 0 6 0 0 6 6 1 38 +775 0 6 0 0 7 6 1 39 +776 0 6 0 0 8 6 1 40 +777 0 6 0 0 9 6 1 41 +778 0 6 0 0 10 6 1 42 +779 0 6 0 0 11 6 1 43 +780 0 6 0 0 12 6 1 44 +781 0 6 0 0 13 6 1 45 +782 0 6 0 0 14 6 1 46 +783 0 6 0 0 15 6 1 47 +784 0 6 0 0 16 6 1 48 +785 0 6 0 0 17 6 1 49 +786 0 6 0 0 18 6 1 50 +787 0 6 0 0 19 6 1 51 +788 0 6 0 0 20 6 1 52 +789 0 6 0 0 21 6 1 53 +790 0 6 0 0 22 6 1 54 +791 0 6 0 0 23 6 1 55 +792 0 6 0 0 24 6 1 56 +793 0 6 0 0 25 6 1 57 +794 0 6 0 0 26 6 1 58 +795 0 6 0 0 27 6 1 59 +796 0 6 0 0 28 6 1 60 +797 0 6 0 0 29 6 1 61 +798 0 6 0 0 30 6 1 62 +799 0 6 0 0 31 6 1 63 +800 0 6 0 1 0 6 1 0 +801 0 6 0 1 1 6 1 1 +802 0 6 0 1 2 6 1 2 +803 0 6 0 1 3 6 1 3 +804 0 6 0 1 4 6 1 4 +805 0 6 0 1 5 6 1 5 +806 0 6 0 1 6 6 1 6 +807 0 6 0 1 7 6 1 7 +808 0 6 0 1 8 6 1 8 +809 0 6 0 1 9 6 1 9 +810 0 6 0 1 10 6 1 10 +811 0 6 0 1 11 6 1 11 +812 0 6 0 1 12 6 1 12 +813 0 6 0 1 13 6 1 13 +814 0 6 0 1 14 6 1 14 +815 0 6 0 1 15 6 1 15 +816 0 6 0 1 16 6 1 16 +817 0 6 0 1 17 6 1 17 +818 0 6 0 1 18 6 1 18 +819 0 6 0 1 19 6 1 19 +820 0 6 0 1 20 6 1 20 +821 0 6 0 1 21 6 1 21 +822 0 6 0 1 22 6 1 22 +823 0 6 0 1 23 6 1 23 +824 0 6 0 1 24 6 1 24 +825 0 6 0 1 25 6 1 25 +826 0 6 0 1 26 6 1 26 +827 0 6 0 1 27 6 1 27 +828 0 6 0 1 28 6 1 28 +829 0 6 0 1 29 6 1 29 +830 0 6 0 1 30 6 1 30 +831 0 6 0 1 31 6 1 31 +832 0 6 1 0 0 6 0 32 +833 0 6 1 0 1 6 0 33 +834 0 6 1 0 2 6 0 34 +835 0 6 1 0 3 6 0 35 +836 0 6 1 0 4 6 0 36 +837 0 6 1 0 5 6 0 37 +838 0 6 1 0 6 6 0 38 +839 0 6 1 0 7 6 0 39 +840 0 6 1 0 8 6 0 40 +841 0 6 1 0 9 6 0 41 +842 0 6 1 0 10 6 0 42 +843 0 6 1 0 11 6 0 43 +844 0 6 1 0 12 6 0 44 +845 0 6 1 0 13 6 0 45 +846 0 6 1 0 14 6 0 46 +847 0 6 1 0 15 6 0 47 +848 0 6 1 0 16 6 0 48 +849 0 6 1 0 17 6 0 49 +850 0 6 1 0 18 6 0 50 +851 0 6 1 0 19 6 0 51 +852 0 6 1 0 20 6 0 52 +853 0 6 1 0 21 6 0 53 +854 0 6 1 0 22 6 0 54 +855 0 6 1 0 23 6 0 55 +856 0 6 1 0 24 6 0 56 +857 0 6 1 0 25 6 0 57 +858 0 6 1 0 26 6 0 58 +859 0 6 1 0 27 6 0 59 +860 0 6 1 0 28 6 0 60 +861 0 6 1 0 29 6 0 61 +862 0 6 1 0 30 6 0 62 +863 0 6 1 0 31 6 0 63 +864 0 6 1 1 0 6 0 0 +865 0 6 1 1 1 6 0 1 +866 0 6 1 1 2 6 0 2 +867 0 6 1 1 3 6 0 3 +868 0 6 1 1 4 6 0 4 +869 0 6 1 1 5 6 0 5 +870 0 6 1 1 6 6 0 6 +871 0 6 1 1 7 6 0 7 +872 0 6 1 1 8 6 0 8 +873 0 6 1 1 9 6 0 9 +874 0 6 1 1 10 6 0 10 +875 0 6 1 1 11 6 0 11 +876 0 6 1 1 12 6 0 12 +877 0 6 1 1 13 6 0 13 +878 0 6 1 1 14 6 0 14 +879 0 6 1 1 15 6 0 15 +880 0 6 1 1 16 6 0 16 +881 0 6 1 1 17 6 0 17 +882 0 6 1 1 18 6 0 18 +883 0 6 1 1 19 6 0 19 +884 0 6 1 1 20 6 0 20 +885 0 6 1 1 21 6 0 21 +886 0 6 1 1 22 6 0 22 +887 0 6 1 1 23 6 0 23 +888 0 6 1 1 24 6 0 24 +889 0 6 1 1 25 6 0 25 +890 0 6 1 1 26 6 0 26 +891 0 6 1 1 27 6 0 27 +892 0 6 1 1 28 6 0 28 +893 0 6 1 1 29 6 0 29 +894 0 6 1 1 30 6 0 30 +895 0 6 1 1 31 6 0 31 +896 0 7 0 0 0 7 1 32 +897 0 7 0 0 1 7 1 33 +898 0 7 0 0 2 7 1 34 +899 0 7 0 0 3 7 1 35 +900 0 7 0 0 4 7 1 36 +901 0 7 0 0 5 7 1 37 +902 0 7 0 0 6 7 1 38 +903 0 7 0 0 7 7 1 39 +904 0 7 0 0 8 7 1 40 +905 0 7 0 0 9 7 1 41 +906 0 7 0 0 10 7 1 42 +907 0 7 0 0 11 7 1 43 +908 0 7 0 0 12 7 1 44 +909 0 7 0 0 13 7 1 45 +910 0 7 0 0 14 7 1 46 +911 0 7 0 0 15 7 1 47 +912 0 7 0 0 16 7 1 48 +913 0 7 0 0 17 7 1 49 +914 0 7 0 0 18 7 1 50 +915 0 7 0 0 19 7 1 51 +916 0 7 0 0 20 7 1 52 +917 0 7 0 0 21 7 1 53 +918 0 7 0 0 22 7 1 54 +919 0 7 0 0 23 7 1 55 +920 0 7 0 0 24 7 1 56 +921 0 7 0 0 25 7 1 57 +922 0 7 0 0 26 7 1 58 +923 0 7 0 0 27 7 1 59 +924 0 7 0 0 28 7 1 60 +925 0 7 0 0 29 7 1 61 +926 0 7 0 0 30 7 1 62 +927 0 7 0 0 31 7 1 63 +928 0 7 0 1 0 7 1 0 +929 0 7 0 1 1 7 1 1 +930 0 7 0 1 2 7 1 2 +931 0 7 0 1 3 7 1 3 +932 0 7 0 1 4 7 1 4 +933 0 7 0 1 5 7 1 5 +934 0 7 0 1 6 7 1 6 +935 0 7 0 1 7 7 1 7 +936 0 7 0 1 8 7 1 8 +937 0 7 0 1 9 7 1 9 +938 0 7 0 1 10 7 1 10 +939 0 7 0 1 11 7 1 11 +940 0 7 0 1 12 7 1 12 +941 0 7 0 1 13 7 1 13 +942 0 7 0 1 14 7 1 14 +943 0 7 0 1 15 7 1 15 +944 0 7 0 1 16 7 1 16 +945 0 7 0 1 17 7 1 17 +946 0 7 0 1 18 7 1 18 +947 0 7 0 1 19 7 1 19 +948 0 7 0 1 20 7 1 20 +949 0 7 0 1 21 7 1 21 +950 0 7 0 1 22 7 1 22 +951 0 7 0 1 23 7 1 23 +952 0 7 0 1 24 7 1 24 +953 0 7 0 1 25 7 1 25 +954 0 7 0 1 26 7 1 26 +955 0 7 0 1 27 7 1 27 +956 0 7 0 1 28 7 1 28 +957 0 7 0 1 29 7 1 29 +958 0 7 0 1 30 7 1 30 +959 0 7 0 1 31 7 1 31 +960 0 7 1 0 0 7 0 32 +961 0 7 1 0 1 7 0 33 +962 0 7 1 0 2 7 0 34 +963 0 7 1 0 3 7 0 35 +964 0 7 1 0 4 7 0 36 +965 0 7 1 0 5 7 0 37 +966 0 7 1 0 6 7 0 38 +967 0 7 1 0 7 7 0 39 +968 0 7 1 0 8 7 0 40 +969 0 7 1 0 9 7 0 41 +970 0 7 1 0 10 7 0 42 +971 0 7 1 0 11 7 0 43 +972 0 7 1 0 12 7 0 44 +973 0 7 1 0 13 7 0 45 +974 0 7 1 0 14 7 0 46 +975 0 7 1 0 15 7 0 47 +976 0 7 1 0 16 7 0 48 +977 0 7 1 0 17 7 0 49 +978 0 7 1 0 18 7 0 50 +979 0 7 1 0 19 7 0 51 +980 0 7 1 0 20 7 0 52 +981 0 7 1 0 21 7 0 53 +982 0 7 1 0 22 7 0 54 +983 0 7 1 0 23 7 0 55 +984 0 7 1 0 24 7 0 56 +985 0 7 1 0 25 7 0 57 +986 0 7 1 0 26 7 0 58 +987 0 7 1 0 27 7 0 59 +988 0 7 1 0 28 7 0 60 +989 0 7 1 0 29 7 0 61 +990 0 7 1 0 30 7 0 62 +991 0 7 1 0 31 7 0 63 +992 0 7 1 1 0 7 0 0 +993 0 7 1 1 1 7 0 1 +994 0 7 1 1 2 7 0 2 +995 0 7 1 1 3 7 0 3 +996 0 7 1 1 4 7 0 4 +997 0 7 1 1 5 7 0 5 +998 0 7 1 1 6 7 0 6 +999 0 7 1 1 7 7 0 7 +1000 0 7 1 1 8 7 0 8 +1001 0 7 1 1 9 7 0 9 +1002 0 7 1 1 10 7 0 10 +1003 0 7 1 1 11 7 0 11 +1004 0 7 1 1 12 7 0 12 +1005 0 7 1 1 13 7 0 13 +1006 0 7 1 1 14 7 0 14 +1007 0 7 1 1 15 7 0 15 +1008 0 7 1 1 16 7 0 16 +1009 0 7 1 1 17 7 0 17 +1010 0 7 1 1 18 7 0 18 +1011 0 7 1 1 19 7 0 19 +1012 0 7 1 1 20 7 0 20 +1013 0 7 1 1 21 7 0 21 +1014 0 7 1 1 22 7 0 22 +1015 0 7 1 1 23 7 0 23 +1016 0 7 1 1 24 7 0 24 +1017 0 7 1 1 25 7 0 25 +1018 0 7 1 1 26 7 0 26 +1019 0 7 1 1 27 7 0 27 +1020 0 7 1 1 28 7 0 28 +1021 0 7 1 1 29 7 0 29 +1022 0 7 1 1 30 7 0 30 +1023 0 7 1 1 31 7 0 31 +1024 1 0 0 0 0 8 1 32 +1025 1 0 0 0 1 8 1 33 +1026 1 0 0 0 2 8 1 34 +1027 1 0 0 0 3 8 1 35 +1028 1 0 0 0 4 8 1 36 +1029 1 0 0 0 5 8 1 37 +1030 1 0 0 0 6 8 1 38 +1031 1 0 0 0 7 8 1 39 +1032 1 0 0 0 8 8 1 40 +1033 1 0 0 0 9 8 1 41 +1034 1 0 0 0 10 8 1 42 +1035 1 0 0 0 11 8 1 43 +1036 1 0 0 0 12 8 1 44 +1037 1 0 0 0 13 8 1 45 +1038 1 0 0 0 14 8 1 46 +1039 1 0 0 0 15 8 1 47 +1040 1 0 0 0 16 8 1 48 +1041 1 0 0 0 17 8 1 49 +1042 1 0 0 0 18 8 1 50 +1043 1 0 0 0 19 8 1 51 +1044 1 0 0 0 20 8 1 52 +1045 1 0 0 0 21 8 1 53 +1046 1 0 0 0 22 8 1 54 +1047 1 0 0 0 23 8 1 55 +1048 1 0 0 0 24 8 1 56 +1049 1 0 0 0 25 8 1 57 +1050 1 0 0 0 26 8 1 58 +1051 1 0 0 0 27 8 1 59 +1052 1 0 0 0 28 8 1 60 +1053 1 0 0 0 29 8 1 61 +1054 1 0 0 0 30 8 1 62 +1055 1 0 0 0 31 8 1 63 +1056 1 0 0 1 0 8 1 0 +1057 1 0 0 1 1 8 1 1 +1058 1 0 0 1 2 8 1 2 +1059 1 0 0 1 3 8 1 3 +1060 1 0 0 1 4 8 1 4 +1061 1 0 0 1 5 8 1 5 +1062 1 0 0 1 6 8 1 6 +1063 1 0 0 1 7 8 1 7 +1064 1 0 0 1 8 8 1 8 +1065 1 0 0 1 9 8 1 9 +1066 1 0 0 1 10 8 1 10 +1067 1 0 0 1 11 8 1 11 +1068 1 0 0 1 12 8 1 12 +1069 1 0 0 1 13 8 1 13 +1070 1 0 0 1 14 8 1 14 +1071 1 0 0 1 15 8 1 15 +1072 1 0 0 1 16 8 1 16 +1073 1 0 0 1 17 8 1 17 +1074 1 0 0 1 18 8 1 18 +1075 1 0 0 1 19 8 1 19 +1076 1 0 0 1 20 8 1 20 +1077 1 0 0 1 21 8 1 21 +1078 1 0 0 1 22 8 1 22 +1079 1 0 0 1 23 8 1 23 +1080 1 0 0 1 24 8 1 24 +1081 1 0 0 1 25 8 1 25 +1082 1 0 0 1 26 8 1 26 +1083 1 0 0 1 27 8 1 27 +1084 1 0 0 1 28 8 1 28 +1085 1 0 0 1 29 8 1 29 +1086 1 0 0 1 30 8 1 30 +1087 1 0 0 1 31 8 1 31 +1088 1 0 1 0 0 8 0 32 +1089 1 0 1 0 1 8 0 33 +1090 1 0 1 0 2 8 0 34 +1091 1 0 1 0 3 8 0 35 +1092 1 0 1 0 4 8 0 36 +1093 1 0 1 0 5 8 0 37 +1094 1 0 1 0 6 8 0 38 +1095 1 0 1 0 7 8 0 39 +1096 1 0 1 0 8 8 0 40 +1097 1 0 1 0 9 8 0 41 +1098 1 0 1 0 10 8 0 42 +1099 1 0 1 0 11 8 0 43 +1100 1 0 1 0 12 8 0 44 +1101 1 0 1 0 13 8 0 45 +1102 1 0 1 0 14 8 0 46 +1103 1 0 1 0 15 8 0 47 +1104 1 0 1 0 16 8 0 48 +1105 1 0 1 0 17 8 0 49 +1106 1 0 1 0 18 8 0 50 +1107 1 0 1 0 19 8 0 51 +1108 1 0 1 0 20 8 0 52 +1109 1 0 1 0 21 8 0 53 +1110 1 0 1 0 22 8 0 54 +1111 1 0 1 0 23 8 0 55 +1112 1 0 1 0 24 8 0 56 +1113 1 0 1 0 25 8 0 57 +1114 1 0 1 0 26 8 0 58 +1115 1 0 1 0 27 8 0 59 +1116 1 0 1 0 28 8 0 60 +1117 1 0 1 0 29 8 0 61 +1118 1 0 1 0 30 8 0 62 +1119 1 0 1 0 31 8 0 63 +1120 1 0 1 1 0 8 0 0 +1121 1 0 1 1 1 8 0 1 +1122 1 0 1 1 2 8 0 2 +1123 1 0 1 1 3 8 0 3 +1124 1 0 1 1 4 8 0 4 +1125 1 0 1 1 5 8 0 5 +1126 1 0 1 1 6 8 0 6 +1127 1 0 1 1 7 8 0 7 +1128 1 0 1 1 8 8 0 8 +1129 1 0 1 1 9 8 0 9 +1130 1 0 1 1 10 8 0 10 +1131 1 0 1 1 11 8 0 11 +1132 1 0 1 1 12 8 0 12 +1133 1 0 1 1 13 8 0 13 +1134 1 0 1 1 14 8 0 14 +1135 1 0 1 1 15 8 0 15 +1136 1 0 1 1 16 8 0 16 +1137 1 0 1 1 17 8 0 17 +1138 1 0 1 1 18 8 0 18 +1139 1 0 1 1 19 8 0 19 +1140 1 0 1 1 20 8 0 20 +1141 1 0 1 1 21 8 0 21 +1142 1 0 1 1 22 8 0 22 +1143 1 0 1 1 23 8 0 23 +1144 1 0 1 1 24 8 0 24 +1145 1 0 1 1 25 8 0 25 +1146 1 0 1 1 26 8 0 26 +1147 1 0 1 1 27 8 0 27 +1148 1 0 1 1 28 8 0 28 +1149 1 0 1 1 29 8 0 29 +1150 1 0 1 1 30 8 0 30 +1151 1 0 1 1 31 8 0 31 +1152 1 1 0 0 0 9 1 32 +1153 1 1 0 0 1 9 1 33 +1154 1 1 0 0 2 9 1 34 +1155 1 1 0 0 3 9 1 35 +1156 1 1 0 0 4 9 1 36 +1157 1 1 0 0 5 9 1 37 +1158 1 1 0 0 6 9 1 38 +1159 1 1 0 0 7 9 1 39 +1160 1 1 0 0 8 9 1 40 +1161 1 1 0 0 9 9 1 41 +1162 1 1 0 0 10 9 1 42 +1163 1 1 0 0 11 9 1 43 +1164 1 1 0 0 12 9 1 44 +1165 1 1 0 0 13 9 1 45 +1166 1 1 0 0 14 9 1 46 +1167 1 1 0 0 15 9 1 47 +1168 1 1 0 0 16 9 1 48 +1169 1 1 0 0 17 9 1 49 +1170 1 1 0 0 18 9 1 50 +1171 1 1 0 0 19 9 1 51 +1172 1 1 0 0 20 9 1 52 +1173 1 1 0 0 21 9 1 53 +1174 1 1 0 0 22 9 1 54 +1175 1 1 0 0 23 9 1 55 +1176 1 1 0 0 24 9 1 56 +1177 1 1 0 0 25 9 1 57 +1178 1 1 0 0 26 9 1 58 +1179 1 1 0 0 27 9 1 59 +1180 1 1 0 0 28 9 1 60 +1181 1 1 0 0 29 9 1 61 +1182 1 1 0 0 30 9 1 62 +1183 1 1 0 0 31 9 1 63 +1184 1 1 0 1 0 9 1 0 +1185 1 1 0 1 1 9 1 1 +1186 1 1 0 1 2 9 1 2 +1187 1 1 0 1 3 9 1 3 +1188 1 1 0 1 4 9 1 4 +1189 1 1 0 1 5 9 1 5 +1190 1 1 0 1 6 9 1 6 +1191 1 1 0 1 7 9 1 7 +1192 1 1 0 1 8 9 1 8 +1193 1 1 0 1 9 9 1 9 +1194 1 1 0 1 10 9 1 10 +1195 1 1 0 1 11 9 1 11 +1196 1 1 0 1 12 9 1 12 +1197 1 1 0 1 13 9 1 13 +1198 1 1 0 1 14 9 1 14 +1199 1 1 0 1 15 9 1 15 +1200 1 1 0 1 16 9 1 16 +1201 1 1 0 1 17 9 1 17 +1202 1 1 0 1 18 9 1 18 +1203 1 1 0 1 19 9 1 19 +1204 1 1 0 1 20 9 1 20 +1205 1 1 0 1 21 9 1 21 +1206 1 1 0 1 22 9 1 22 +1207 1 1 0 1 23 9 1 23 +1208 1 1 0 1 24 9 1 24 +1209 1 1 0 1 25 9 1 25 +1210 1 1 0 1 26 9 1 26 +1211 1 1 0 1 27 9 1 27 +1212 1 1 0 1 28 9 1 28 +1213 1 1 0 1 29 9 1 29 +1214 1 1 0 1 30 9 1 30 +1215 1 1 0 1 31 9 1 31 +1216 1 1 1 0 0 9 0 32 +1217 1 1 1 0 1 9 0 33 +1218 1 1 1 0 2 9 0 34 +1219 1 1 1 0 3 9 0 35 +1220 1 1 1 0 4 9 0 36 +1221 1 1 1 0 5 9 0 37 +1222 1 1 1 0 6 9 0 38 +1223 1 1 1 0 7 9 0 39 +1224 1 1 1 0 8 9 0 40 +1225 1 1 1 0 9 9 0 41 +1226 1 1 1 0 10 9 0 42 +1227 1 1 1 0 11 9 0 43 +1228 1 1 1 0 12 9 0 44 +1229 1 1 1 0 13 9 0 45 +1230 1 1 1 0 14 9 0 46 +1231 1 1 1 0 15 9 0 47 +1232 1 1 1 0 16 9 0 48 +1233 1 1 1 0 17 9 0 49 +1234 1 1 1 0 18 9 0 50 +1235 1 1 1 0 19 9 0 51 +1236 1 1 1 0 20 9 0 52 +1237 1 1 1 0 21 9 0 53 +1238 1 1 1 0 22 9 0 54 +1239 1 1 1 0 23 9 0 55 +1240 1 1 1 0 24 9 0 56 +1241 1 1 1 0 25 9 0 57 +1242 1 1 1 0 26 9 0 58 +1243 1 1 1 0 27 9 0 59 +1244 1 1 1 0 28 9 0 60 +1245 1 1 1 0 29 9 0 61 +1246 1 1 1 0 30 9 0 62 +1247 1 1 1 0 31 9 0 63 +1248 1 1 1 1 0 9 0 0 +1249 1 1 1 1 1 9 0 1 +1250 1 1 1 1 2 9 0 2 +1251 1 1 1 1 3 9 0 3 +1252 1 1 1 1 4 9 0 4 +1253 1 1 1 1 5 9 0 5 +1254 1 1 1 1 6 9 0 6 +1255 1 1 1 1 7 9 0 7 +1256 1 1 1 1 8 9 0 8 +1257 1 1 1 1 9 9 0 9 +1258 1 1 1 1 10 9 0 10 +1259 1 1 1 1 11 9 0 11 +1260 1 1 1 1 12 9 0 12 +1261 1 1 1 1 13 9 0 13 +1262 1 1 1 1 14 9 0 14 +1263 1 1 1 1 15 9 0 15 +1264 1 1 1 1 16 9 0 16 +1265 1 1 1 1 17 9 0 17 +1266 1 1 1 1 18 9 0 18 +1267 1 1 1 1 19 9 0 19 +1268 1 1 1 1 20 9 0 20 +1269 1 1 1 1 21 9 0 21 +1270 1 1 1 1 22 9 0 22 +1271 1 1 1 1 23 9 0 23 +1272 1 1 1 1 24 9 0 24 +1273 1 1 1 1 25 9 0 25 +1274 1 1 1 1 26 9 0 26 +1275 1 1 1 1 27 9 0 27 +1276 1 1 1 1 28 9 0 28 +1277 1 1 1 1 29 9 0 29 +1278 1 1 1 1 30 9 0 30 +1279 1 1 1 1 31 9 0 31 +1280 1 2 0 0 0 10 1 32 +1281 1 2 0 0 1 10 1 33 +1282 1 2 0 0 2 10 1 34 +1283 1 2 0 0 3 10 1 35 +1284 1 2 0 0 4 10 1 36 +1285 1 2 0 0 5 10 1 37 +1286 1 2 0 0 6 10 1 38 +1287 1 2 0 0 7 10 1 39 +1288 1 2 0 0 8 10 1 40 +1289 1 2 0 0 9 10 1 41 +1290 1 2 0 0 10 10 1 42 +1291 1 2 0 0 11 10 1 43 +1292 1 2 0 0 12 10 1 44 +1293 1 2 0 0 13 10 1 45 +1294 1 2 0 0 14 10 1 46 +1295 1 2 0 0 15 10 1 47 +1296 1 2 0 0 16 10 1 48 +1297 1 2 0 0 17 10 1 49 +1298 1 2 0 0 18 10 1 50 +1299 1 2 0 0 19 10 1 51 +1300 1 2 0 0 20 10 1 52 +1301 1 2 0 0 21 10 1 53 +1302 1 2 0 0 22 10 1 54 +1303 1 2 0 0 23 10 1 55 +1304 1 2 0 0 24 10 1 56 +1305 1 2 0 0 25 10 1 57 +1306 1 2 0 0 26 10 1 58 +1307 1 2 0 0 27 10 1 59 +1308 1 2 0 0 28 10 1 60 +1309 1 2 0 0 29 10 1 61 +1310 1 2 0 0 30 10 1 62 +1311 1 2 0 0 31 10 1 63 +1312 1 2 0 1 0 10 1 0 +1313 1 2 0 1 1 10 1 1 +1314 1 2 0 1 2 10 1 2 +1315 1 2 0 1 3 10 1 3 +1316 1 2 0 1 4 10 1 4 +1317 1 2 0 1 5 10 1 5 +1318 1 2 0 1 6 10 1 6 +1319 1 2 0 1 7 10 1 7 +1320 1 2 0 1 8 10 1 8 +1321 1 2 0 1 9 10 1 9 +1322 1 2 0 1 10 10 1 10 +1323 1 2 0 1 11 10 1 11 +1324 1 2 0 1 12 10 1 12 +1325 1 2 0 1 13 10 1 13 +1326 1 2 0 1 14 10 1 14 +1327 1 2 0 1 15 10 1 15 +1328 1 2 0 1 16 10 1 16 +1329 1 2 0 1 17 10 1 17 +1330 1 2 0 1 18 10 1 18 +1331 1 2 0 1 19 10 1 19 +1332 1 2 0 1 20 10 1 20 +1333 1 2 0 1 21 10 1 21 +1334 1 2 0 1 22 10 1 22 +1335 1 2 0 1 23 10 1 23 +1336 1 2 0 1 24 10 1 24 +1337 1 2 0 1 25 10 1 25 +1338 1 2 0 1 26 10 1 26 +1339 1 2 0 1 27 10 1 27 +1340 1 2 0 1 28 10 1 28 +1341 1 2 0 1 29 10 1 29 +1342 1 2 0 1 30 10 1 30 +1343 1 2 0 1 31 10 1 31 +1344 1 2 1 0 0 10 0 32 +1345 1 2 1 0 1 10 0 33 +1346 1 2 1 0 2 10 0 34 +1347 1 2 1 0 3 10 0 35 +1348 1 2 1 0 4 10 0 36 +1349 1 2 1 0 5 10 0 37 +1350 1 2 1 0 6 10 0 38 +1351 1 2 1 0 7 10 0 39 +1352 1 2 1 0 8 10 0 40 +1353 1 2 1 0 9 10 0 41 +1354 1 2 1 0 10 10 0 42 +1355 1 2 1 0 11 10 0 43 +1356 1 2 1 0 12 10 0 44 +1357 1 2 1 0 13 10 0 45 +1358 1 2 1 0 14 10 0 46 +1359 1 2 1 0 15 10 0 47 +1360 1 2 1 0 16 10 0 48 +1361 1 2 1 0 17 10 0 49 +1362 1 2 1 0 18 10 0 50 +1363 1 2 1 0 19 10 0 51 +1364 1 2 1 0 20 10 0 52 +1365 1 2 1 0 21 10 0 53 +1366 1 2 1 0 22 10 0 54 +1367 1 2 1 0 23 10 0 55 +1368 1 2 1 0 24 10 0 56 +1369 1 2 1 0 25 10 0 57 +1370 1 2 1 0 26 10 0 58 +1371 1 2 1 0 27 10 0 59 +1372 1 2 1 0 28 10 0 60 +1373 1 2 1 0 29 10 0 61 +1374 1 2 1 0 30 10 0 62 +1375 1 2 1 0 31 10 0 63 +1376 1 2 1 1 0 10 0 0 +1377 1 2 1 1 1 10 0 1 +1378 1 2 1 1 2 10 0 2 +1379 1 2 1 1 3 10 0 3 +1380 1 2 1 1 4 10 0 4 +1381 1 2 1 1 5 10 0 5 +1382 1 2 1 1 6 10 0 6 +1383 1 2 1 1 7 10 0 7 +1384 1 2 1 1 8 10 0 8 +1385 1 2 1 1 9 10 0 9 +1386 1 2 1 1 10 10 0 10 +1387 1 2 1 1 11 10 0 11 +1388 1 2 1 1 12 10 0 12 +1389 1 2 1 1 13 10 0 13 +1390 1 2 1 1 14 10 0 14 +1391 1 2 1 1 15 10 0 15 +1392 1 2 1 1 16 10 0 16 +1393 1 2 1 1 17 10 0 17 +1394 1 2 1 1 18 10 0 18 +1395 1 2 1 1 19 10 0 19 +1396 1 2 1 1 20 10 0 20 +1397 1 2 1 1 21 10 0 21 +1398 1 2 1 1 22 10 0 22 +1399 1 2 1 1 23 10 0 23 +1400 1 2 1 1 24 10 0 24 +1401 1 2 1 1 25 10 0 25 +1402 1 2 1 1 26 10 0 26 +1403 1 2 1 1 27 10 0 27 +1404 1 2 1 1 28 10 0 28 +1405 1 2 1 1 29 10 0 29 +1406 1 2 1 1 30 10 0 30 +1407 1 2 1 1 31 10 0 31 +1408 1 3 0 0 0 11 1 32 +1409 1 3 0 0 1 11 1 33 +1410 1 3 0 0 2 11 1 34 +1411 1 3 0 0 3 11 1 35 +1412 1 3 0 0 4 11 1 36 +1413 1 3 0 0 5 11 1 37 +1414 1 3 0 0 6 11 1 38 +1415 1 3 0 0 7 11 1 39 +1416 1 3 0 0 8 11 1 40 +1417 1 3 0 0 9 11 1 41 +1418 1 3 0 0 10 11 1 42 +1419 1 3 0 0 11 11 1 43 +1420 1 3 0 0 12 11 1 44 +1421 1 3 0 0 13 11 1 45 +1422 1 3 0 0 14 11 1 46 +1423 1 3 0 0 15 11 1 47 +1424 1 3 0 0 16 11 1 48 +1425 1 3 0 0 17 11 1 49 +1426 1 3 0 0 18 11 1 50 +1427 1 3 0 0 19 11 1 51 +1428 1 3 0 0 20 11 1 52 +1429 1 3 0 0 21 11 1 53 +1430 1 3 0 0 22 11 1 54 +1431 1 3 0 0 23 11 1 55 +1432 1 3 0 0 24 11 1 56 +1433 1 3 0 0 25 11 1 57 +1434 1 3 0 0 26 11 1 58 +1435 1 3 0 0 27 11 1 59 +1436 1 3 0 0 28 11 1 60 +1437 1 3 0 0 29 11 1 61 +1438 1 3 0 0 30 11 1 62 +1439 1 3 0 0 31 11 1 63 +1440 1 3 0 1 0 11 1 0 +1441 1 3 0 1 1 11 1 1 +1442 1 3 0 1 2 11 1 2 +1443 1 3 0 1 3 11 1 3 +1444 1 3 0 1 4 11 1 4 +1445 1 3 0 1 5 11 1 5 +1446 1 3 0 1 6 11 1 6 +1447 1 3 0 1 7 11 1 7 +1448 1 3 0 1 8 11 1 8 +1449 1 3 0 1 9 11 1 9 +1450 1 3 0 1 10 11 1 10 +1451 1 3 0 1 11 11 1 11 +1452 1 3 0 1 12 11 1 12 +1453 1 3 0 1 13 11 1 13 +1454 1 3 0 1 14 11 1 14 +1455 1 3 0 1 15 11 1 15 +1456 1 3 0 1 16 11 1 16 +1457 1 3 0 1 17 11 1 17 +1458 1 3 0 1 18 11 1 18 +1459 1 3 0 1 19 11 1 19 +1460 1 3 0 1 20 11 1 20 +1461 1 3 0 1 21 11 1 21 +1462 1 3 0 1 22 11 1 22 +1463 1 3 0 1 23 11 1 23 +1464 1 3 0 1 24 11 1 24 +1465 1 3 0 1 25 11 1 25 +1466 1 3 0 1 26 11 1 26 +1467 1 3 0 1 27 11 1 27 +1468 1 3 0 1 28 11 1 28 +1469 1 3 0 1 29 11 1 29 +1470 1 3 0 1 30 11 1 30 +1471 1 3 0 1 31 11 1 31 +1472 1 3 1 0 0 11 0 32 +1473 1 3 1 0 1 11 0 33 +1474 1 3 1 0 2 11 0 34 +1475 1 3 1 0 3 11 0 35 +1476 1 3 1 0 4 11 0 36 +1477 1 3 1 0 5 11 0 37 +1478 1 3 1 0 6 11 0 38 +1479 1 3 1 0 7 11 0 39 +1480 1 3 1 0 8 11 0 40 +1481 1 3 1 0 9 11 0 41 +1482 1 3 1 0 10 11 0 42 +1483 1 3 1 0 11 11 0 43 +1484 1 3 1 0 12 11 0 44 +1485 1 3 1 0 13 11 0 45 +1486 1 3 1 0 14 11 0 46 +1487 1 3 1 0 15 11 0 47 +1488 1 3 1 0 16 11 0 48 +1489 1 3 1 0 17 11 0 49 +1490 1 3 1 0 18 11 0 50 +1491 1 3 1 0 19 11 0 51 +1492 1 3 1 0 20 11 0 52 +1493 1 3 1 0 21 11 0 53 +1494 1 3 1 0 22 11 0 54 +1495 1 3 1 0 23 11 0 55 +1496 1 3 1 0 24 11 0 56 +1497 1 3 1 0 25 11 0 57 +1498 1 3 1 0 26 11 0 58 +1499 1 3 1 0 27 11 0 59 +1500 1 3 1 0 28 11 0 60 +1501 1 3 1 0 29 11 0 61 +1502 1 3 1 0 30 11 0 62 +1503 1 3 1 0 31 11 0 63 +1504 1 3 1 1 0 11 0 0 +1505 1 3 1 1 1 11 0 1 +1506 1 3 1 1 2 11 0 2 +1507 1 3 1 1 3 11 0 3 +1508 1 3 1 1 4 11 0 4 +1509 1 3 1 1 5 11 0 5 +1510 1 3 1 1 6 11 0 6 +1511 1 3 1 1 7 11 0 7 +1512 1 3 1 1 8 11 0 8 +1513 1 3 1 1 9 11 0 9 +1514 1 3 1 1 10 11 0 10 +1515 1 3 1 1 11 11 0 11 +1516 1 3 1 1 12 11 0 12 +1517 1 3 1 1 13 11 0 13 +1518 1 3 1 1 14 11 0 14 +1519 1 3 1 1 15 11 0 15 +1520 1 3 1 1 16 11 0 16 +1521 1 3 1 1 17 11 0 17 +1522 1 3 1 1 18 11 0 18 +1523 1 3 1 1 19 11 0 19 +1524 1 3 1 1 20 11 0 20 +1525 1 3 1 1 21 11 0 21 +1526 1 3 1 1 22 11 0 22 +1527 1 3 1 1 23 11 0 23 +1528 1 3 1 1 24 11 0 24 +1529 1 3 1 1 25 11 0 25 +1530 1 3 1 1 26 11 0 26 +1531 1 3 1 1 27 11 0 27 +1532 1 3 1 1 28 11 0 28 +1533 1 3 1 1 29 11 0 29 +1534 1 3 1 1 30 11 0 30 +1535 1 3 1 1 31 11 0 31 +1536 1 4 0 0 0 12 1 32 +1537 1 4 0 0 1 12 1 33 +1538 1 4 0 0 2 12 1 34 +1539 1 4 0 0 3 12 1 35 +1540 1 4 0 0 4 12 1 36 +1541 1 4 0 0 5 12 1 37 +1542 1 4 0 0 6 12 1 38 +1543 1 4 0 0 7 12 1 39 +1544 1 4 0 0 8 12 1 40 +1545 1 4 0 0 9 12 1 41 +1546 1 4 0 0 10 12 1 42 +1547 1 4 0 0 11 12 1 43 +1548 1 4 0 0 12 12 1 44 +1549 1 4 0 0 13 12 1 45 +1550 1 4 0 0 14 12 1 46 +1551 1 4 0 0 15 12 1 47 +1552 1 4 0 0 16 12 1 48 +1553 1 4 0 0 17 12 1 49 +1554 1 4 0 0 18 12 1 50 +1555 1 4 0 0 19 12 1 51 +1556 1 4 0 0 20 12 1 52 +1557 1 4 0 0 21 12 1 53 +1558 1 4 0 0 22 12 1 54 +1559 1 4 0 0 23 12 1 55 +1560 1 4 0 0 24 12 1 56 +1561 1 4 0 0 25 12 1 57 +1562 1 4 0 0 26 12 1 58 +1563 1 4 0 0 27 12 1 59 +1564 1 4 0 0 28 12 1 60 +1565 1 4 0 0 29 12 1 61 +1566 1 4 0 0 30 12 1 62 +1567 1 4 0 0 31 12 1 63 +1568 1 4 0 1 0 12 1 0 +1569 1 4 0 1 1 12 1 1 +1570 1 4 0 1 2 12 1 2 +1571 1 4 0 1 3 12 1 3 +1572 1 4 0 1 4 12 1 4 +1573 1 4 0 1 5 12 1 5 +1574 1 4 0 1 6 12 1 6 +1575 1 4 0 1 7 12 1 7 +1576 1 4 0 1 8 12 1 8 +1577 1 4 0 1 9 12 1 9 +1578 1 4 0 1 10 12 1 10 +1579 1 4 0 1 11 12 1 11 +1580 1 4 0 1 12 12 1 12 +1581 1 4 0 1 13 12 1 13 +1582 1 4 0 1 14 12 1 14 +1583 1 4 0 1 15 12 1 15 +1584 1 4 0 1 16 12 1 16 +1585 1 4 0 1 17 12 1 17 +1586 1 4 0 1 18 12 1 18 +1587 1 4 0 1 19 12 1 19 +1588 1 4 0 1 20 12 1 20 +1589 1 4 0 1 21 12 1 21 +1590 1 4 0 1 22 12 1 22 +1591 1 4 0 1 23 12 1 23 +1592 1 4 0 1 24 12 1 24 +1593 1 4 0 1 25 12 1 25 +1594 1 4 0 1 26 12 1 26 +1595 1 4 0 1 27 12 1 27 +1596 1 4 0 1 28 12 1 28 +1597 1 4 0 1 29 12 1 29 +1598 1 4 0 1 30 12 1 30 +1599 1 4 0 1 31 12 1 31 +1600 1 4 1 0 0 12 0 32 +1601 1 4 1 0 1 12 0 33 +1602 1 4 1 0 2 12 0 34 +1603 1 4 1 0 3 12 0 35 +1604 1 4 1 0 4 12 0 36 +1605 1 4 1 0 5 12 0 37 +1606 1 4 1 0 6 12 0 38 +1607 1 4 1 0 7 12 0 39 +1608 1 4 1 0 8 12 0 40 +1609 1 4 1 0 9 12 0 41 +1610 1 4 1 0 10 12 0 42 +1611 1 4 1 0 11 12 0 43 +1612 1 4 1 0 12 12 0 44 +1613 1 4 1 0 13 12 0 45 +1614 1 4 1 0 14 12 0 46 +1615 1 4 1 0 15 12 0 47 +1616 1 4 1 0 16 12 0 48 +1617 1 4 1 0 17 12 0 49 +1618 1 4 1 0 18 12 0 50 +1619 1 4 1 0 19 12 0 51 +1620 1 4 1 0 20 12 0 52 +1621 1 4 1 0 21 12 0 53 +1622 1 4 1 0 22 12 0 54 +1623 1 4 1 0 23 12 0 55 +1624 1 4 1 0 24 12 0 56 +1625 1 4 1 0 25 12 0 57 +1626 1 4 1 0 26 12 0 58 +1627 1 4 1 0 27 12 0 59 +1628 1 4 1 0 28 12 0 60 +1629 1 4 1 0 29 12 0 61 +1630 1 4 1 0 30 12 0 62 +1631 1 4 1 0 31 12 0 63 +1632 1 4 1 1 0 12 0 0 +1633 1 4 1 1 1 12 0 1 +1634 1 4 1 1 2 12 0 2 +1635 1 4 1 1 3 12 0 3 +1636 1 4 1 1 4 12 0 4 +1637 1 4 1 1 5 12 0 5 +1638 1 4 1 1 6 12 0 6 +1639 1 4 1 1 7 12 0 7 +1640 1 4 1 1 8 12 0 8 +1641 1 4 1 1 9 12 0 9 +1642 1 4 1 1 10 12 0 10 +1643 1 4 1 1 11 12 0 11 +1644 1 4 1 1 12 12 0 12 +1645 1 4 1 1 13 12 0 13 +1646 1 4 1 1 14 12 0 14 +1647 1 4 1 1 15 12 0 15 +1648 1 4 1 1 16 12 0 16 +1649 1 4 1 1 17 12 0 17 +1650 1 4 1 1 18 12 0 18 +1651 1 4 1 1 19 12 0 19 +1652 1 4 1 1 20 12 0 20 +1653 1 4 1 1 21 12 0 21 +1654 1 4 1 1 22 12 0 22 +1655 1 4 1 1 23 12 0 23 +1656 1 4 1 1 24 12 0 24 +1657 1 4 1 1 25 12 0 25 +1658 1 4 1 1 26 12 0 26 +1659 1 4 1 1 27 12 0 27 +1660 1 4 1 1 28 12 0 28 +1661 1 4 1 1 29 12 0 29 +1662 1 4 1 1 30 12 0 30 +1663 1 4 1 1 31 12 0 31 +1664 1 5 0 0 0 13 1 32 +1665 1 5 0 0 1 13 1 33 +1666 1 5 0 0 2 13 1 34 +1667 1 5 0 0 3 13 1 35 +1668 1 5 0 0 4 13 1 36 +1669 1 5 0 0 5 13 1 37 +1670 1 5 0 0 6 13 1 38 +1671 1 5 0 0 7 13 1 39 +1672 1 5 0 0 8 13 1 40 +1673 1 5 0 0 9 13 1 41 +1674 1 5 0 0 10 13 1 42 +1675 1 5 0 0 11 13 1 43 +1676 1 5 0 0 12 13 1 44 +1677 1 5 0 0 13 13 1 45 +1678 1 5 0 0 14 13 1 46 +1679 1 5 0 0 15 13 1 47 +1680 1 5 0 0 16 13 1 48 +1681 1 5 0 0 17 13 1 49 +1682 1 5 0 0 18 13 1 50 +1683 1 5 0 0 19 13 1 51 +1684 1 5 0 0 20 13 1 52 +1685 1 5 0 0 21 13 1 53 +1686 1 5 0 0 22 13 1 54 +1687 1 5 0 0 23 13 1 55 +1688 1 5 0 0 24 13 1 56 +1689 1 5 0 0 25 13 1 57 +1690 1 5 0 0 26 13 1 58 +1691 1 5 0 0 27 13 1 59 +1692 1 5 0 0 28 13 1 60 +1693 1 5 0 0 29 13 1 61 +1694 1 5 0 0 30 13 1 62 +1695 1 5 0 0 31 13 1 63 +1696 1 5 0 1 0 13 1 0 +1697 1 5 0 1 1 13 1 1 +1698 1 5 0 1 2 13 1 2 +1699 1 5 0 1 3 13 1 3 +1700 1 5 0 1 4 13 1 4 +1701 1 5 0 1 5 13 1 5 +1702 1 5 0 1 6 13 1 6 +1703 1 5 0 1 7 13 1 7 +1704 1 5 0 1 8 13 1 8 +1705 1 5 0 1 9 13 1 9 +1706 1 5 0 1 10 13 1 10 +1707 1 5 0 1 11 13 1 11 +1708 1 5 0 1 12 13 1 12 +1709 1 5 0 1 13 13 1 13 +1710 1 5 0 1 14 13 1 14 +1711 1 5 0 1 15 13 1 15 +1712 1 5 0 1 16 13 1 16 +1713 1 5 0 1 17 13 1 17 +1714 1 5 0 1 18 13 1 18 +1715 1 5 0 1 19 13 1 19 +1716 1 5 0 1 20 13 1 20 +1717 1 5 0 1 21 13 1 21 +1718 1 5 0 1 22 13 1 22 +1719 1 5 0 1 23 13 1 23 +1720 1 5 0 1 24 13 1 24 +1721 1 5 0 1 25 13 1 25 +1722 1 5 0 1 26 13 1 26 +1723 1 5 0 1 27 13 1 27 +1724 1 5 0 1 28 13 1 28 +1725 1 5 0 1 29 13 1 29 +1726 1 5 0 1 30 13 1 30 +1727 1 5 0 1 31 13 1 31 +1728 1 5 1 0 0 13 0 32 +1729 1 5 1 0 1 13 0 33 +1730 1 5 1 0 2 13 0 34 +1731 1 5 1 0 3 13 0 35 +1732 1 5 1 0 4 13 0 36 +1733 1 5 1 0 5 13 0 37 +1734 1 5 1 0 6 13 0 38 +1735 1 5 1 0 7 13 0 39 +1736 1 5 1 0 8 13 0 40 +1737 1 5 1 0 9 13 0 41 +1738 1 5 1 0 10 13 0 42 +1739 1 5 1 0 11 13 0 43 +1740 1 5 1 0 12 13 0 44 +1741 1 5 1 0 13 13 0 45 +1742 1 5 1 0 14 13 0 46 +1743 1 5 1 0 15 13 0 47 +1744 1 5 1 0 16 13 0 48 +1745 1 5 1 0 17 13 0 49 +1746 1 5 1 0 18 13 0 50 +1747 1 5 1 0 19 13 0 51 +1748 1 5 1 0 20 13 0 52 +1749 1 5 1 0 21 13 0 53 +1750 1 5 1 0 22 13 0 54 +1751 1 5 1 0 23 13 0 55 +1752 1 5 1 0 24 13 0 56 +1753 1 5 1 0 25 13 0 57 +1754 1 5 1 0 26 13 0 58 +1755 1 5 1 0 27 13 0 59 +1756 1 5 1 0 28 13 0 60 +1757 1 5 1 0 29 13 0 61 +1758 1 5 1 0 30 13 0 62 +1759 1 5 1 0 31 13 0 63 +1760 1 5 1 1 0 13 0 0 +1761 1 5 1 1 1 13 0 1 +1762 1 5 1 1 2 13 0 2 +1763 1 5 1 1 3 13 0 3 +1764 1 5 1 1 4 13 0 4 +1765 1 5 1 1 5 13 0 5 +1766 1 5 1 1 6 13 0 6 +1767 1 5 1 1 7 13 0 7 +1768 1 5 1 1 8 13 0 8 +1769 1 5 1 1 9 13 0 9 +1770 1 5 1 1 10 13 0 10 +1771 1 5 1 1 11 13 0 11 +1772 1 5 1 1 12 13 0 12 +1773 1 5 1 1 13 13 0 13 +1774 1 5 1 1 14 13 0 14 +1775 1 5 1 1 15 13 0 15 +1776 1 5 1 1 16 13 0 16 +1777 1 5 1 1 17 13 0 17 +1778 1 5 1 1 18 13 0 18 +1779 1 5 1 1 19 13 0 19 +1780 1 5 1 1 20 13 0 20 +1781 1 5 1 1 21 13 0 21 +1782 1 5 1 1 22 13 0 22 +1783 1 5 1 1 23 13 0 23 +1784 1 5 1 1 24 13 0 24 +1785 1 5 1 1 25 13 0 25 +1786 1 5 1 1 26 13 0 26 +1787 1 5 1 1 27 13 0 27 +1788 1 5 1 1 28 13 0 28 +1789 1 5 1 1 29 13 0 29 +1790 1 5 1 1 30 13 0 30 +1791 1 5 1 1 31 13 0 31 +1792 1 6 0 0 0 14 1 32 +1793 1 6 0 0 1 14 1 33 +1794 1 6 0 0 2 14 1 34 +1795 1 6 0 0 3 14 1 35 +1796 1 6 0 0 4 14 1 36 +1797 1 6 0 0 5 14 1 37 +1798 1 6 0 0 6 14 1 38 +1799 1 6 0 0 7 14 1 39 +1800 1 6 0 0 8 14 1 40 +1801 1 6 0 0 9 14 1 41 +1802 1 6 0 0 10 14 1 42 +1803 1 6 0 0 11 14 1 43 +1804 1 6 0 0 12 14 1 44 +1805 1 6 0 0 13 14 1 45 +1806 1 6 0 0 14 14 1 46 +1807 1 6 0 0 15 14 1 47 +1808 1 6 0 0 16 14 1 48 +1809 1 6 0 0 17 14 1 49 +1810 1 6 0 0 18 14 1 50 +1811 1 6 0 0 19 14 1 51 +1812 1 6 0 0 20 14 1 52 +1813 1 6 0 0 21 14 1 53 +1814 1 6 0 0 22 14 1 54 +1815 1 6 0 0 23 14 1 55 +1816 1 6 0 0 24 14 1 56 +1817 1 6 0 0 25 14 1 57 +1818 1 6 0 0 26 14 1 58 +1819 1 6 0 0 27 14 1 59 +1820 1 6 0 0 28 14 1 60 +1821 1 6 0 0 29 14 1 61 +1822 1 6 0 0 30 14 1 62 +1823 1 6 0 0 31 14 1 63 +1824 1 6 0 1 0 14 1 0 +1825 1 6 0 1 1 14 1 1 +1826 1 6 0 1 2 14 1 2 +1827 1 6 0 1 3 14 1 3 +1828 1 6 0 1 4 14 1 4 +1829 1 6 0 1 5 14 1 5 +1830 1 6 0 1 6 14 1 6 +1831 1 6 0 1 7 14 1 7 +1832 1 6 0 1 8 14 1 8 +1833 1 6 0 1 9 14 1 9 +1834 1 6 0 1 10 14 1 10 +1835 1 6 0 1 11 14 1 11 +1836 1 6 0 1 12 14 1 12 +1837 1 6 0 1 13 14 1 13 +1838 1 6 0 1 14 14 1 14 +1839 1 6 0 1 15 14 1 15 +1840 1 6 0 1 16 14 1 16 +1841 1 6 0 1 17 14 1 17 +1842 1 6 0 1 18 14 1 18 +1843 1 6 0 1 19 14 1 19 +1844 1 6 0 1 20 14 1 20 +1845 1 6 0 1 21 14 1 21 +1846 1 6 0 1 22 14 1 22 +1847 1 6 0 1 23 14 1 23 +1848 1 6 0 1 24 14 1 24 +1849 1 6 0 1 25 14 1 25 +1850 1 6 0 1 26 14 1 26 +1851 1 6 0 1 27 14 1 27 +1852 1 6 0 1 28 14 1 28 +1853 1 6 0 1 29 14 1 29 +1854 1 6 0 1 30 14 1 30 +1855 1 6 0 1 31 14 1 31 +1856 1 6 1 0 0 14 0 32 +1857 1 6 1 0 1 14 0 33 +1858 1 6 1 0 2 14 0 34 +1859 1 6 1 0 3 14 0 35 +1860 1 6 1 0 4 14 0 36 +1861 1 6 1 0 5 14 0 37 +1862 1 6 1 0 6 14 0 38 +1863 1 6 1 0 7 14 0 39 +1864 1 6 1 0 8 14 0 40 +1865 1 6 1 0 9 14 0 41 +1866 1 6 1 0 10 14 0 42 +1867 1 6 1 0 11 14 0 43 +1868 1 6 1 0 12 14 0 44 +1869 1 6 1 0 13 14 0 45 +1870 1 6 1 0 14 14 0 46 +1871 1 6 1 0 15 14 0 47 +1872 1 6 1 0 16 14 0 48 +1873 1 6 1 0 17 14 0 49 +1874 1 6 1 0 18 14 0 50 +1875 1 6 1 0 19 14 0 51 +1876 1 6 1 0 20 14 0 52 +1877 1 6 1 0 21 14 0 53 +1878 1 6 1 0 22 14 0 54 +1879 1 6 1 0 23 14 0 55 +1880 1 6 1 0 24 14 0 56 +1881 1 6 1 0 25 14 0 57 +1882 1 6 1 0 26 14 0 58 +1883 1 6 1 0 27 14 0 59 +1884 1 6 1 0 28 14 0 60 +1885 1 6 1 0 29 14 0 61 +1886 1 6 1 0 30 14 0 62 +1887 1 6 1 0 31 14 0 63 +1888 1 6 1 1 0 14 0 0 +1889 1 6 1 1 1 14 0 1 +1890 1 6 1 1 2 14 0 2 +1891 1 6 1 1 3 14 0 3 +1892 1 6 1 1 4 14 0 4 +1893 1 6 1 1 5 14 0 5 +1894 1 6 1 1 6 14 0 6 +1895 1 6 1 1 7 14 0 7 +1896 1 6 1 1 8 14 0 8 +1897 1 6 1 1 9 14 0 9 +1898 1 6 1 1 10 14 0 10 +1899 1 6 1 1 11 14 0 11 +1900 1 6 1 1 12 14 0 12 +1901 1 6 1 1 13 14 0 13 +1902 1 6 1 1 14 14 0 14 +1903 1 6 1 1 15 14 0 15 +1904 1 6 1 1 16 14 0 16 +1905 1 6 1 1 17 14 0 17 +1906 1 6 1 1 18 14 0 18 +1907 1 6 1 1 19 14 0 19 +1908 1 6 1 1 20 14 0 20 +1909 1 6 1 1 21 14 0 21 +1910 1 6 1 1 22 14 0 22 +1911 1 6 1 1 23 14 0 23 +1912 1 6 1 1 24 14 0 24 +1913 1 6 1 1 25 14 0 25 +1914 1 6 1 1 26 14 0 26 +1915 1 6 1 1 27 14 0 27 +1916 1 6 1 1 28 14 0 28 +1917 1 6 1 1 29 14 0 29 +1918 1 6 1 1 30 14 0 30 +1919 1 6 1 1 31 14 0 31 +1920 1 7 0 0 0 15 1 32 +1921 1 7 0 0 1 15 1 33 +1922 1 7 0 0 2 15 1 34 +1923 1 7 0 0 3 15 1 35 +1924 1 7 0 0 4 15 1 36 +1925 1 7 0 0 5 15 1 37 +1926 1 7 0 0 6 15 1 38 +1927 1 7 0 0 7 15 1 39 +1928 1 7 0 0 8 15 1 40 +1929 1 7 0 0 9 15 1 41 +1930 1 7 0 0 10 15 1 42 +1931 1 7 0 0 11 15 1 43 +1932 1 7 0 0 12 15 1 44 +1933 1 7 0 0 13 15 1 45 +1934 1 7 0 0 14 15 1 46 +1935 1 7 0 0 15 15 1 47 +1936 1 7 0 0 16 15 1 48 +1937 1 7 0 0 17 15 1 49 +1938 1 7 0 0 18 15 1 50 +1939 1 7 0 0 19 15 1 51 +1940 1 7 0 0 20 15 1 52 +1941 1 7 0 0 21 15 1 53 +1942 1 7 0 0 22 15 1 54 +1943 1 7 0 0 23 15 1 55 +1944 1 7 0 0 24 15 1 56 +1945 1 7 0 0 25 15 1 57 +1946 1 7 0 0 26 15 1 58 +1947 1 7 0 0 27 15 1 59 +1948 1 7 0 0 28 15 1 60 +1949 1 7 0 0 29 15 1 61 +1950 1 7 0 0 30 15 1 62 +1951 1 7 0 0 31 15 1 63 +1952 1 7 0 1 0 15 1 0 +1953 1 7 0 1 1 15 1 1 +1954 1 7 0 1 2 15 1 2 +1955 1 7 0 1 3 15 1 3 +1956 1 7 0 1 4 15 1 4 +1957 1 7 0 1 5 15 1 5 +1958 1 7 0 1 6 15 1 6 +1959 1 7 0 1 7 15 1 7 +1960 1 7 0 1 8 15 1 8 +1961 1 7 0 1 9 15 1 9 +1962 1 7 0 1 10 15 1 10 +1963 1 7 0 1 11 15 1 11 +1964 1 7 0 1 12 15 1 12 +1965 1 7 0 1 13 15 1 13 +1966 1 7 0 1 14 15 1 14 +1967 1 7 0 1 15 15 1 15 +1968 1 7 0 1 16 15 1 16 +1969 1 7 0 1 17 15 1 17 +1970 1 7 0 1 18 15 1 18 +1971 1 7 0 1 19 15 1 19 +1972 1 7 0 1 20 15 1 20 +1973 1 7 0 1 21 15 1 21 +1974 1 7 0 1 22 15 1 22 +1975 1 7 0 1 23 15 1 23 +1976 1 7 0 1 24 15 1 24 +1977 1 7 0 1 25 15 1 25 +1978 1 7 0 1 26 15 1 26 +1979 1 7 0 1 27 15 1 27 +1980 1 7 0 1 28 15 1 28 +1981 1 7 0 1 29 15 1 29 +1982 1 7 0 1 30 15 1 30 +1983 1 7 0 1 31 15 1 31 +1984 1 7 1 0 0 15 0 32 +1985 1 7 1 0 1 15 0 33 +1986 1 7 1 0 2 15 0 34 +1987 1 7 1 0 3 15 0 35 +1988 1 7 1 0 4 15 0 36 +1989 1 7 1 0 5 15 0 37 +1990 1 7 1 0 6 15 0 38 +1991 1 7 1 0 7 15 0 39 +1992 1 7 1 0 8 15 0 40 +1993 1 7 1 0 9 15 0 41 +1994 1 7 1 0 10 15 0 42 +1995 1 7 1 0 11 15 0 43 +1996 1 7 1 0 12 15 0 44 +1997 1 7 1 0 13 15 0 45 +1998 1 7 1 0 14 15 0 46 +1999 1 7 1 0 15 15 0 47 +2000 1 7 1 0 16 15 0 48 +2001 1 7 1 0 17 15 0 49 +2002 1 7 1 0 18 15 0 50 +2003 1 7 1 0 19 15 0 51 +2004 1 7 1 0 20 15 0 52 +2005 1 7 1 0 21 15 0 53 +2006 1 7 1 0 22 15 0 54 +2007 1 7 1 0 23 15 0 55 +2008 1 7 1 0 24 15 0 56 +2009 1 7 1 0 25 15 0 57 +2010 1 7 1 0 26 15 0 58 +2011 1 7 1 0 27 15 0 59 +2012 1 7 1 0 28 15 0 60 +2013 1 7 1 0 29 15 0 61 +2014 1 7 1 0 30 15 0 62 +2015 1 7 1 0 31 15 0 63 +2016 1 7 1 1 0 15 0 0 +2017 1 7 1 1 1 15 0 1 +2018 1 7 1 1 2 15 0 2 +2019 1 7 1 1 3 15 0 3 +2020 1 7 1 1 4 15 0 4 +2021 1 7 1 1 5 15 0 5 +2022 1 7 1 1 6 15 0 6 +2023 1 7 1 1 7 15 0 7 +2024 1 7 1 1 8 15 0 8 +2025 1 7 1 1 9 15 0 9 +2026 1 7 1 1 10 15 0 10 +2027 1 7 1 1 11 15 0 11 +2028 1 7 1 1 12 15 0 12 +2029 1 7 1 1 13 15 0 13 +2030 1 7 1 1 14 15 0 14 +2031 1 7 1 1 15 15 0 15 +2032 1 7 1 1 16 15 0 16 +2033 1 7 1 1 17 15 0 17 +2034 1 7 1 1 18 15 0 18 +2035 1 7 1 1 19 15 0 19 +2036 1 7 1 1 20 15 0 20 +2037 1 7 1 1 21 15 0 21 +2038 1 7 1 1 22 15 0 22 +2039 1 7 1 1 23 15 0 23 +2040 1 7 1 1 24 15 0 24 +2041 1 7 1 1 25 15 0 25 +2042 1 7 1 1 26 15 0 26 +2043 1 7 1 1 27 15 0 27 +2044 1 7 1 1 28 15 0 28 +2045 1 7 1 1 29 15 0 29 +2046 1 7 1 1 30 15 0 30 +2047 1 7 1 1 31 15 0 31 +# Guard ring strips +2048 0 0 0 2 15 0 1 64 +2049 0 0 1 2 15 0 0 64 +2050 0 1 0 2 15 1 1 64 +2051 0 1 1 2 15 1 0 64 +2052 0 2 0 2 15 2 1 64 +2053 0 2 1 2 15 2 0 64 +2054 0 3 0 2 15 3 1 64 +2055 0 3 1 2 15 3 0 64 +2056 0 4 0 2 15 4 1 64 +2057 0 4 1 2 15 4 0 64 +2058 0 5 0 2 15 5 1 64 +2059 0 5 1 2 15 5 0 64 +2060 0 6 0 2 15 6 1 64 +2061 0 6 1 2 15 6 0 64 +2062 0 7 0 2 15 7 1 64 +2063 0 7 1 2 15 7 0 64 +2064 1 0 0 2 15 8 1 64 +2065 1 0 1 2 15 8 0 64 +2066 1 1 0 2 15 9 1 64 +2067 1 1 1 2 15 9 0 64 +2068 1 2 0 2 15 10 1 64 +2069 1 2 1 2 15 10 0 64 +2070 1 3 0 2 15 11 1 64 +2071 1 3 1 2 15 11 0 64 +2072 1 4 0 2 15 12 1 64 +2073 1 4 1 2 15 12 0 64 +2074 1 5 0 2 15 13 1 64 +2075 1 5 1 2 15 13 0 64 +2076 1 6 0 2 15 14 1 64 +2077 1 6 1 2 15 14 0 64 +2078 1 7 0 2 15 15 1 64 +2079 1 7 1 2 15 15 0 64 diff --git a/resource/unittestdata/542-1/hp52542-1.taccal.csv b/resource/unittestdata/542-1/hp52542-1.taccal.csv new file mode 100644 index 00000000..69a4f688 --- /dev/null +++ b/resource/unittestdata/542-1/hp52542-1.taccal.csv @@ -0,0 +1,129 @@ +#STRIP_ID,Detector,Side,Strip,TAC_calibration,TAC_calibration_error,TAC_offset,TAC_offset_error +64,0,0,32,0.4331645207716815,0.0006410414682602,-519.4184537501642,6.512229114705868 +65,0,0,33,0.4464631567400904,0.0001877831975884,-510.4345270262294,1.8471470060598376 +66,0,0,34,0.4526436316574847,0.0006323187618278,-619.0171783396856,6.283037245325352 +67,0,0,35,0.4468527924684647,0.0010028828748504,-651.7608419232297,10.166092794825268 +68,0,0,36,0.4471357535090447,0.0002763407712955,-527.6889725946043,2.7245696509466217 +69,0,0,37,0.4363349240519947,0.00089195476875,-556.5991016920103,9.069562816481191 +70,0,0,38,0.4350600465209827,0.0004337532031991,-525.4331225917035,4.393077663662767 +71,0,0,39,0.4351013420941085,0.0003718578064962,-492.56919142064254,3.738432962127096 +72,0,0,40,0.438070188304993,0.000128731934096,-548.6303560556806,1.301499466075568 +73,0,0,41,0.4343813112390431,0.0008080318091387,-579.5704935443913,8.294894593061606 +74,0,0,42,0.4297978925385372,0.0005438787956243,-525.4345357657728,5.575879208501049 +75,0,0,43,0.4436187745343765,0.0009312318727368,-663.0828723010493,9.531821125720274 +76,0,0,44,0.4440523960533249,0.0004837066624206,-588.4407521227859,4.866809056906579 +77,0,0,45,0.4419035630016443,0.000912721083913,-555.090054587973,9.160724813680112 +78,0,0,46,0.4413560152270065,0.000323681706528,-546.4118227762134,3.2465199402128646 +79,0,0,47,0.4397486524067672,0.0005368945258379,-580.074412704198,5.444850617062662 +80,0,0,48,0.4366746565558558,0.0008376669547997,-598.2544567636972,8.588958493754236 +81,0,0,49,0.4372438338314309,0.0008196914420188,-590.5632431958721,8.379624699740056 +82,0,0,50,0.4464359003205305,0.0007310935316675,-628.5021540278203,7.380702004329938 +83,0,0,51,0.4442593519459515,0.0008861746580285,-653.3909614328084,9.038655068288229 +84,0,0,52,0.441360719570381,0.0005356317370971,-604.927962424515,5.44166230611545 +85,0,0,53,0.4439000078356253,0.0006406732928974,-601.6978525314976,6.467027674629861 +86,0,0,54,0.4441628847728454,0.0012730909304322,-696.3617799192177,13.108271539471206 +87,0,0,55,0.4459805145970006,0.0005302762704335,-624.754069519683,5.354478269744438 +88,0,0,56,0.4360929520348257,0.0006403377890226,-609.3158291003156,6.590281398033235 +89,0,0,57,0.4400534265017047,0.0004847883142725,-527.4464331615295,4.85641448266552 +90,0,0,58,0.4459937246339001,0.0003150828843104,-505.2654486631808,3.0990410969506543 +91,0,0,59,0.4453453606071419,0.0005373572925047,-589.4639700987899,5.392123032158531 +92,0,0,60,0.449994868299392,0.0004931093030072,-513.6992554668716,4.815938153206794 +93,0,0,61,0.4461432441066072,0.0003551224869619,-575.2354653946257,3.546050923882213 +94,0,0,62,0.4417224709634678,0.0008409364975044,-605.0270956639632,8.536542545963396 +95,0,0,63,0.442229025428427,0.0005774895139994,-535.5448654518698,5.766919414490388 +96,0,0,0,0.4341022278845114,0.0006033472235104,-490.16995323636377,6.0763941757145865 +97,0,0,1,0.4318332764611444,0.0009320039484532,-593.7892755329256,9.653960253304671 +98,0,0,2,0.4426396512699418,0.0007503694544875,-613.1231418266304,7.614799094022429 +99,0,0,3,0.4350519740336732,0.0004093541606766,-481.53464195653294,4.105736628605524 +100,0,0,4,0.4364128190057001,0.0006568258277761,-573.9473902949412,6.703030115853831 +101,0,0,5,0.4381717487604806,0.0007035261249951,-509.1677420552858,7.049266084454051 +102,0,0,6,0.4347588525901988,0.0007332911418261,-563.3534970935755,7.494394776651754 +103,0,0,7,0.4425905827790936,0.0007446788389166,-584.2342458535493,7.510411846210198 +104,0,0,8,0.4482992558416914,0.0008210200767468,-613.0873085787794,8.226516690273264 +105,0,0,9,0.4456427548574185,0.0008281569080375,-604.6697299156448,8.332211240235972 +106,0,0,10,0.4391645087085706,0.0005296315494747,-539.9802647528743,5.331129025899 +107,0,0,11,0.450682697010186,0.0005539327993866,-516.1848835232303,5.404693705889641 +108,0,0,12,0.4547987025711902,0.0005102428745209,-521.5469174900393,4.939228674445817 +109,0,0,13,0.4323965092731179,0.00056489581359,-500.4709368002938,5.724716996106362 +110,0,0,14,0.4465877508244216,0.0008217426154225,-614.1595084633825,8.267238824449304 +111,0,0,15,0.4395653570241877,0.0004937501434659,-507.778420123754,4.930122719559185 +112,0,0,16,0.4320056818464887,0.0006163075960823,-482.2518226268548,6.226022489804048 +113,0,0,17,0.4426338908378861,0.0007265457228518,-551.8833092229271,7.274965193318458 +114,0,0,18,0.4473116372360807,0.0005777102333836,-551.4842660721334,5.723666788456548 +115,0,0,19,0.4413035919317846,0.0009610667698468,-621.4759741909052,9.80026709844791 +116,0,0,20,0.4560113285426133,0.0005439237014634,-625.2791616914874,5.372082524420043 +117,0,0,21,0.4376283183929295,0.0009522888618404,-619.9813280067598,9.78913135218456 +118,0,0,22,0.447449568836167,0.0008831510102216,-610.2473656191496,8.860388800506783 +119,0,0,23,0.4462604598543999,0.0007846958586877,-611.5162624489127,7.8957751541832195 +120,0,0,24,0.4379035637803587,0.0006370544127859,-563.9264347403629,6.46489235733705 +121,0,0,25,0.4344197609214727,0.0009931214455054,-604.1866874066619,10.249001123819417 +122,0,0,26,0.4328143064458613,0.0015653738919967,-658.6761922721267,16.407112342122208 +123,0,0,27,0.4514707110295727,0.0010410599280547,-643.1239859492526,10.42568243967764 +124,0,0,28,0.4336408045871988,0.0009167059345398,-585.3268388856974,9.438447845800845 +125,0,0,29,0.4434875183753141,0.0009522196536948,-601.724347342885,9.620805821093242 +126,0,0,30,0.4312863045303737,0.0010855269184715,-608.8859411928353,11.29556880593665 +127,0,0,31,0.4379969968990487,0.0009581994608778,-631.7545537420443,9.866762978079285 +0,0,1,32,0.4379269846968159,0.0011709366731421,-534.1651893571644,11.804460953914266 +1,0,1,33,0.4548706406976214,0.000458986110836,-519.3478343564665,4.440187239880746 +2,0,1,34,0.4450553225103452,0.0005200628930455,-496.8970184838342,5.116394072492886 +3,0,1,35,0.4512477957969305,0.0012770542289992,-622.6042683225304,12.738619465657614 +4,0,1,36,0.4486569035723737,0.0011334167427652,-630.1855734210227,11.389836801694084 +5,0,1,37,0.4354623239203037,0.0009961085523168,-570.1630079394256,10.179207715970174 +6,0,1,38,0.4381872542009998,0.0007491511151702,-549.7439181866513,7.573865972618458 +7,0,1,39,0.4467032246547033,0.0006613439614755,-511.8967855292185,6.503987567588422 +8,0,1,40,0.4430763634169561,0.0005060294249048,-485.1215923867374,4.98744737421693 +9,0,1,41,0.4453223033491501,0.0011878234016053,-634.2435582283033,12.036532986858203 +10,0,1,42,0.4497891855305904,0.0006502300939386,-498.2348218715985,6.331543673587775 +11,0,1,43,0.4546817810217894,0.0013377744564543,-661.825329515174,13.356284527211594 +12,0,1,44,0.4465794613234176,0.0005924783448136,-518.344989168771,5.836691869885312 +13,0,1,45,0.4427540191217018,0.0010670368670563,-592.4455661347076,10.776886522809535 +14,0,1,46,0.4474008897178858,0.0007249230841369,-563.4309154496095,7.199644292986728 +15,0,1,47,0.4420184033523334,0.0004747978522276,-482.6795847043521,4.688269399970047 +16,0,1,48,0.4529429636046331,0.0012182701269378,-644.7248972304076,12.164902396628085 +17,0,1,49,0.4482042229984629,0.0008190786473498,-584.7017849512371,8.158136751901015 +18,0,1,50,0.4416174187143651,0.0004616849876299,-490.2453769719549,4.570645304541047 +19,0,1,51,0.4480345366140482,0.0010396786366353,-616.3427864044418,10.430981744890154 +20,0,1,52,0.4400408081884456,0.0006287254046268,-559.9164938406541,6.34378589205021 +21,0,1,53,0.4512953050549703,0.001025544124999,-625.1310975128761,10.234339886333226 +22,0,1,54,0.4471562900162338,0.0011976962335117,-645.1502654346297,12.11534551749987 +23,0,1,55,0.4464259019539476,0.0005221940249166,-474.425893128698,5.0959459818334185 +24,0,1,56,0.4359847974973041,0.0008601488042058,-501.5269808228759,8.647133280513062 +25,0,1,57,0.4423462155578298,0.001244202078078,-617.7546712399381,12.647344736509378 +26,0,1,58,0.4430574158840124,0.0004803451748255,-475.8004192354976,4.724646973452563 +27,0,1,59,0.4474543361038401,0.0010545048517359,-587.4417215231291,10.526921349564615 +28,0,1,60,0.4539476329462067,0.0006962235494935,-525.9419621663187,6.758763617813723 +29,0,1,61,0.432582343006091,0.0007613172902644,-491.5086335492098,7.696570139425839 +30,0,1,62,0.4404637590523287,0.0008012465891918,-500.349568654684,7.970986762627572 +31,0,1,63,0.4415375025595306,0.0009304671900429,-521.8352602654547,9.278175041497278 +32,0,1,0,0.4311466632475447,0.001157783306946,-608.1584988714898,12.049433819374311 +33,0,1,1,0.4190963159542579,0.0007631069619854,-486.18452279736806,7.953454073788829 +34,0,1,2,0.433001084902502,0.0013471025214608,-647.5219160438313,14.079348180228717 +35,0,1,3,0.4381856624476911,0.0006634384254712,-564.066071449885,6.728511952454311 +36,0,1,4,0.4244983690033522,0.0015139846996855,-615.8361255789099,16.030056339232516 +37,0,1,5,0.4235540322107564,0.000919613370735,-533.7996940574781,9.584641429827974 +38,0,1,6,0.4213557576614046,0.0006964968384418,-508.7244718491886,7.256638235756871 +39,0,1,7,0.424689282500997,0.0007995466354107,-521.8258546330078,8.288972649471859 +40,0,1,8,0.4208950246871095,0.0014185842787069,-618.641870910797,15.157784884310752 +41,0,1,9,0.4216665178958791,0.0008570209497159,-479.6324540718112,8.864832898347029 +42,0,1,10,0.4236623685406439,0.0011807592516762,-606.2451290854906,12.500428647437348 +43,0,1,11,0.4209139711319978,0.0007947334891515,-513.874272617122,8.298321696041054 +44,0,1,12,0.4252719696397745,0.0007015537931609,-507.49980852614,7.240044562997726 +45,0,1,13,0.4242943423750667,0.0009076406088236,-531.2896006181218,9.438109249497533 +46,0,1,14,0.4271786793956607,0.0010129706892503,-592.1832733985234,10.603245838895706 +47,0,1,15,0.4264450242209024,0.0015067916825575,-622.3088311309697,15.903413198379258 +48,0,1,16,0.4334601256841389,0.0018003369708321,-684.7061916181681,18.9473845760296 +49,0,1,17,0.4238118562589273,0.0008662677285193,-526.7151414872612,9.009022287159246 +50,0,1,18,0.4303459229595822,0.00069200400925,-533.3259274824516,7.097818336475116 +51,0,1,19,0.4246050962235467,0.0011150457917172,-584.1914107815961,11.7219606142045 +52,0,1,20,0.4291647829119021,0.0007919630359423,-514.9360787866184,8.112324395254774 +53,0,1,21,0.4246195110555669,0.0011099000074236,-574.5754013401927,11.642923922314058 +54,0,1,22,0.4320384004518114,0.0005817947938225,-516.5695091580039,5.922014058212648 +55,0,1,23,0.427694543192743,0.0005988926622193,-501.648336273988,6.137577151863937 +56,0,1,24,0.4288675779426328,0.0006133281848293,-504.18441868501526,6.271862135245404 +57,0,1,25,0.4299604462089193,0.001147572657059,-608.0738106135469,11.975897439958194 +58,0,1,26,0.4273997394742855,0.0012925064906266,-640.796685794896,13.665900124783883 +59,0,1,27,0.4322499427114272,0.0011730117472052,-601.5549717863017,12.15925695741646 +60,0,1,28,0.4302678774915868,0.0006426064983667,-498.1089111029566,6.541021171897358 +61,0,1,29,0.4327415079437174,0.0012277515815516,-618.2412016109474,12.758470138974364 +62,0,1,30,0.4268619905099753,0.0015220728589919,-635.595925673885,16.09529651476177 +63,0,1,31,0.438513509311476,0.0005149527679409,-485.811240311377,5.128997149405751 diff --git a/resource/unittestdata/542-1/hp52542-1.taccut.csv b/resource/unittestdata/542-1/hp52542-1.taccut.csv new file mode 100644 index 00000000..8a92b7cb --- /dev/null +++ b/resource/unittestdata/542-1/hp52542-1.taccut.csv @@ -0,0 +1,131 @@ +# DetID,Strip voltage, StripID, Shaping Offset, Coincidence Window, Disable Time, Flag-to-enable Delay, FL noise cut, Flag delay +0,l,0,2255,500,1400,100,200,200 +0,l,1,2255,500,1400,100,200,200 +0,l,2,2255,500,1400,100,200,200 +0,l,3,2255,500,1400,100,200,200 +0,l,4,2255,500,1400,100,200,200 +0,l,5,2255,500,1400,100,200,200 +0,l,6,2255,500,1400,100,200,200 +0,l,7,2255,500,1400,100,200,200 +0,l,8,2255,500,1400,100,200,200 +0,l,9,2255,500,1400,100,200,200 +0,l,10,2255,500,1400,100,200,200 +0,l,11,2255,500,1400,100,200,200 +0,l,12,2255,500,1400,100,200,200 +0,l,13,2255,500,1400,100,200,200 +0,l,14,2255,500,1400,100,200,200 +0,l,15,2255,500,1400,100,200,200 +0,l,16,2255,500,1400,100,200,200 +0,l,17,2255,500,1400,100,200,200 +0,l,18,2255,500,1400,100,200,200 +0,l,19,2255,500,1400,100,200,200 +0,l,20,2255,500,1400,100,200,200 +0,l,21,2255,500,1400,100,200,200 +0,l,22,2255,500,1400,100,200,200 +0,l,23,2255,500,1400,100,200,200 +0,l,24,2255,500,1400,100,200,200 +0,l,25,2255,500,1400,100,200,200 +0,l,26,2255,500,1400,100,200,200 +0,l,27,2255,500,1400,100,200,200 +0,l,28,2255,500,1400,100,200,200 +0,l,29,2255,500,1400,100,200,200 +0,l,30,2255,500,1400,100,200,200 +0,l,31,2255,500,1400,100,200,200 +0,l,32,2255,500,1400,100,200,200 +0,l,33,2255,500,1400,100,200,200 +0,l,34,2255,500,1400,100,200,200 +0,l,35,2255,500,1400,100,200,200 +0,l,36,2255,500,1400,100,200,200 +0,l,37,2255,500,1400,100,200,200 +0,l,38,2255,500,1400,100,200,200 +0,l,39,2255,500,1400,100,200,200 +0,l,40,2255,500,1400,100,200,200 +0,l,41,2255,500,1400,100,200,200 +0,l,42,2255,500,1400,100,200,200 +0,l,43,2255,500,1400,100,200,200 +0,l,44,2255,500,1400,100,200,200 +0,l,45,2255,500,1400,100,200,200 +0,l,46,2255,500,1400,100,200,200 +0,l,47,2255,500,1400,100,200,200 +0,l,48,2255,500,1400,100,200,200 +0,l,49,2255,500,1400,100,200,200 +0,l,50,2255,500,1400,100,200,200 +0,l,51,2255,500,1400,100,200,200 +0,l,52,2255,500,1400,100,200,200 +0,l,53,2255,500,1400,100,200,200 +0,l,54,2255,500,1400,100,200,200 +0,l,55,2255,500,1400,100,200,200 +0,l,56,2255,500,1400,100,200,200 +0,l,57,2255,500,1400,100,200,200 +0,l,58,2255,500,1400,100,200,200 +0,l,59,2255,500,1400,100,200,200 +0,l,60,2255,500,1400,100,200,200 +0,l,61,2255,500,1400,100,200,200 +0,l,62,2255,500,1400,100,200,200 +0,l,63,2255,500,1400,100,200,200 +0,l,64,2255,500,1400,100,200,200 +0,h,65,2255,500,1400,100,200,200 +0,h,0,2255,500,1400,100,200,200 +0,h,1,2255,500,1400,100,200,200 +0,h,2,2255,500,1400,100,200,200 +0,h,3,2255,500,1400,100,200,200 +0,h,4,2255,500,1400,100,200,200 +0,h,5,2255,500,1400,100,200,200 +0,h,6,2255,500,1400,100,200,200 +0,h,7,2255,500,1400,100,200,200 +0,h,8,2255,500,1400,100,200,200 +0,h,9,2255,500,1400,100,200,200 +0,h,10,2255,500,1400,100,200,200 +0,h,11,2255,500,1400,100,200,200 +0,h,12,2255,500,1400,100,200,200 +0,h,13,2255,500,1400,100,200,200 +0,h,14,2255,500,1400,100,200,200 +0,h,15,2255,500,1400,100,200,200 +0,h,16,2255,500,1400,100,200,200 +0,h,17,2255,500,1400,100,200,200 +0,h,18,2255,500,1400,100,200,200 +0,h,19,2255,500,1400,100,200,200 +0,h,20,2255,500,1400,100,200,200 +0,h,21,2255,500,1400,100,200,200 +0,h,22,2255,500,1400,100,200,200 +0,h,23,2255,500,1400,100,200,200 +0,h,24,2255,500,1400,100,200,200 +0,h,25,2255,500,1400,100,200,200 +0,h,26,2255,500,1400,100,200,200 +0,h,27,2255,500,1400,100,200,200 +0,h,28,2255,500,1400,100,200,200 +0,h,29,2255,500,1400,100,200,200 +0,h,30,2255,500,1400,100,200,200 +0,h,31,2255,500,1400,100,200,200 +0,h,32,2255,500,1400,100,200,200 +0,h,33,2255,500,1400,100,200,200 +0,h,34,2255,500,1400,100,200,200 +0,h,35,2255,500,1400,100,200,200 +0,h,36,2255,500,1400,100,200,200 +0,h,37,2255,500,1400,100,200,200 +0,h,38,2255,500,1400,100,200,200 +0,h,39,2255,500,1400,100,200,200 +0,h,40,2255,500,1400,100,200,200 +0,h,41,2255,500,1400,100,200,200 +0,h,42,2255,500,1400,100,200,200 +0,h,43,2255,500,1400,100,200,200 +0,h,44,2255,500,1400,100,200,200 +0,h,45,2255,500,1400,100,200,200 +0,h,46,2255,500,1400,100,200,200 +0,h,47,2255,500,1400,100,200,200 +0,h,48,2255,500,1400,100,200,200 +0,h,49,2255,500,1400,100,200,200 +0,h,50,2255,500,1400,100,200,200 +0,h,51,2255,500,1400,100,200,200 +0,h,52,2255,500,1400,100,200,200 +0,h,53,2255,500,1400,100,200,200 +0,h,54,2255,500,1400,100,200,200 +0,h,55,2255,500,1400,100,200,200 +0,h,56,2255,500,1400,100,200,200 +0,h,57,2255,500,1400,100,200,200 +0,h,58,2255,500,1400,100,200,200 +0,h,59,2255,500,1400,100,200,200 +0,h,60,2255,500,1400,100,200,200 +0,h,61,2255,500,1400,100,200,200 +0,h,62,2255,500,1400,100,200,200 +0,h,63,2255,500,1400,100,200,200 diff --git a/resource/unittestdata/HDF5_Extractor.py b/resource/unittestdata/HDF5_Extractor.py new file mode 100644 index 00000000..f636f9f8 --- /dev/null +++ b/resource/unittestdata/HDF5_Extractor.py @@ -0,0 +1,81 @@ +#!/usr/bin/env python3 +"""Extract a fractional subset of an HDF5 file, preserving its exact structure.""" + +import argparse +import os +import h5py + + +def parse_args(): + parser = argparse.ArgumentParser(description="Extract a fractional subset of an HDF5 file, preserving its structure.") + parser.add_argument("-f", "--file", required=True, help="Input HDF5 file") + parser.add_argument("-r", "--ratio", type=float, required=True, help="Fraction of rows to keep (e.g. 0.02 for 2%%)") + return parser.parse_args() + + +def main(): + args = parse_args() + + input_path = args.file + ratio = args.ratio + + if not 0 < ratio <= 1: + raise ValueError("ratio must be between 0 (exclusive) and 1 (inclusive)") + + # Derive output path by inserting ".small" before the extension + base, ext = os.path.splitext(input_path) + output_path = base + ".small" + ext + + with h5py.File(input_path, "r") as input_file, h5py.File(output_path, "w") as output_file: + + # HDFv2 files link /Events -> /EventIndices -> /FEEHits, so these must be + # truncated consistently: keep K events, then keep exactly the /FEEHits + # rows those events reference. (V1 files have no /EventIndices.) + events_cutoff = None + feehits_cutoff = None + if "EventIndices" in input_file and "Events" in input_file: + n_events = input_file["Events"].shape[0] + events_cutoff = min(max(1, int(n_events * ratio)), n_events) + if events_cutoff > 0: + feehits_cutoff = int(input_file["EventIndices"][events_cutoff - 1]["fee_hits"][1]) + + for name, dataset in input_file.items(): + if dataset.shape == (1,) or dataset.shape == (): + # Scalar/config datasets are small — copy them in full using [()] to read all data + output_dataset = output_file.create_dataset(name, data=dataset[()], dtype=dataset.dtype) + else: + # Pick the row count, keeping the relational V2 datasets consistent + if name in ("Events", "EventIndices") and events_cutoff is not None: + number_of_rows = min(events_cutoff, dataset.shape[0]) + elif name == "FEEHits" and feehits_cutoff is not None: + number_of_rows = min(feehits_cutoff, dataset.shape[0]) + else: + # Generic: at least 1 row for tiny ratios, never more than the source has + number_of_rows = max(1, int(dataset.shape[0] * ratio)) + number_of_rows = min(number_of_rows, dataset.shape[0]) + + if number_of_rows == 0: + # An empty dataset cannot be chunked or compressed + output_dataset = output_file.create_dataset(name, data=dataset[:0], dtype=dataset.dtype) + else: + # Cap chunk size to the output row count so it never exceeds the data shape + chunks = (min(dataset.chunks[0], number_of_rows),) if dataset.chunks else None + output_dataset = output_file.create_dataset(name, data=dataset[:number_of_rows], dtype=dataset.dtype, + compression=dataset.compression, + compression_opts=dataset.compression_opts, + chunks=chunks) + print(f" {name}: {dataset.shape[0]} -> {number_of_rows} rows") + + # Copy the dataset's attributes (e.g. HDFVersion, Config on /Events) + for attr_name, attr_value in dataset.attrs.items(): + output_dataset.attrs[attr_name] = attr_value + + # Copy file-level (root group) attributes + for attr_name, attr_value in input_file.attrs.items(): + output_file.attrs[attr_name] = attr_value + + print(f"Written {os.path.getsize(output_path) / 1024**2:.1f} MB to {output_path}") + + +if __name__ == "__main__": + main() diff --git a/src/MHit.cxx b/src/MHit.cxx index 24043d6c..485da92d 100644 --- a/src/MHit.cxx +++ b/src/MHit.cxx @@ -82,6 +82,18 @@ void MHit::Clear() m_StripHits.clear(); m_Origins.clear(); + + m_HitQuality = 0.0; + m_PossibleCrossTalk = false; + m_PossibleChargeLoss = false; + m_GuardRingHit = false; + m_StripHitMultipleTimesX = false; + m_StripHitMultipleTimesY = false; + m_ChargeSharing = false; + m_ChargeSharingLV = false; + m_ChargeSharingHV = false; + m_NoDepth = false; + m_IsNonDominantNeighborStrip = false; } @@ -151,9 +163,10 @@ bool MHit::StreamDat(ostream& S, int Version) for( auto SH : m_StripHits ){ SH->StreamDat(S,0); } + } else { + return false; } - return true; } @@ -220,39 +233,35 @@ void MHit::StreamEvta(ostream& S) //////////////////////////////////////////////////////////////////////////////// -bool MHit::Parse(MString &Line, int Version){ - - //check that line begins with HT - const char* line = Line.Data(); - if( line[0] == 'H' && line[1] == 'T' ){ - float X,Y,Z,E; - sscanf(&line[3],"%f %f %f %f",&X, &Y, &Z, &E); - m_Position.SetX(X); - m_Position.SetY(Y); - m_Position.SetZ(Z); - m_Energy = E; - return true; - } else { - return false; - } - - /* - if( Line.BeginsWith("HT") ){ - vector tokens = Line.Tokenize(" "); - if( tokens.size() >= 5 ){ - m_Position.SetX( tokens.at(1).ToDouble() ); - m_Position.SetY( tokens.at(2).ToDouble() ); - m_Position.SetZ( tokens.at(3).ToDouble() ); - m_Energy = tokens.at(4).ToDouble(); - return true; - } else { - return false; - } - } else { - return false; - } - */ +bool MHit::Parse(MString &Line, int Version) +{ + if (Line.Length() < 3) return false; + if (Line.BeginsWith("HT") == false) return false; + if (Version < 1 || Version > 3) return false; + + Clear(); + if (Version == 3) { + double X, Y, Z, E, LVE, HVE; + int N = sscanf(Line.Data() + 3, "%lf %lf %lf %lf %lf %lf", &X, &Y, &Z, &E, &LVE, &HVE); + if (N != 6) return false; + m_Position.SetX(X); + m_Position.SetY(Y); + m_Position.SetZ(Z); + m_Energy = E; + m_LVEnergy = LVE; + m_HVEnergy = HVE; + } else { + double X, Y, Z, E; + int N = sscanf(Line.Data() + 3, "%lf %lf %lf %lf", &X, &Y, &Z, &E); + if (N != 4) return false; + m_Position.SetX(X); + m_Position.SetY(Y); + m_Position.SetZ(Z); + m_Energy = E; + } + + return true; } diff --git a/src/MReadOutAssembly.cxx b/src/MReadOutAssembly.cxx index d4084d83..439502cd 100644 --- a/src/MReadOutAssembly.cxx +++ b/src/MReadOutAssembly.cxx @@ -129,11 +129,17 @@ void MReadOutAssembly::Clear() m_EventTimeRTS = 0; m_EventTimeUTC = 0; + m_HasSimAspectInfo = false; + m_GalacticPointingXAxisTheta = 0.0; + m_GalacticPointingXAxisPhi = 0.0; + m_GalacticPointingZAxisTheta = 0.0; + m_GalacticPointingZAxisPhi = 0.0; + m_ShieldVeto = false; m_GuardRingVeto = false; m_Trigger = true; - for (int DetectorID = 0; DetectorID <= 11; DetectorID++) { + for (unsigned int DetectorID = 0; DetectorID < 16; ++DetectorID) { m_InDetector[DetectorID] = false; } @@ -191,6 +197,7 @@ void MReadOutAssembly::Clear() m_StripPairingString_QualityFlag.clear(); m_FilteredOut = false; + m_AnalysisProgress = 0; delete m_PhysicalEvent; m_PhysicalEvent = nullptr; @@ -223,7 +230,7 @@ void MReadOutAssembly::DeleteHits() bool MReadOutAssembly::InDetector(int DetectorID) { //! Find out if the event contains strip hits in a given detector - if ( (DetectorID>=0) && (DetectorID<=11) ) + if ( (DetectorID>=0) && (DetectorID<=15) ) { return m_InDetector[DetectorID]; } @@ -242,7 +249,16 @@ void MReadOutAssembly::SetPhysicalEvent(MPhysicalEvent* Event) //! Set the physical event from event reconstruction // We make our own local copy here - m_PhysicalEvent = Event->Duplicate(); + // Guard against self-assignment: deleting m_PhysicalEvent first would leave + // Event dangling before Duplicate() could be called on it + if (Event == m_PhysicalEvent) return; + + delete m_PhysicalEvent; + if (Event != nullptr) { + m_PhysicalEvent = Event->Duplicate(); + } else { + m_PhysicalEvent = nullptr; + } } @@ -269,9 +285,11 @@ MStripHit* MReadOutAssembly::GetStripHit(unsigned int i) void MReadOutAssembly::AddStripHit(MStripHit* StripHit) { //! Add a strip hit - int DetectorID = StripHit->GetDetectorID(); - if ( (DetectorID>=0) && (DetectorID<=11) ) { - m_InDetector[DetectorID]=true; + if (StripHit == nullptr) return; + + unsigned int DetectorID = StripHit->GetDetectorID(); + if (DetectorID <= 15) { + m_InDetector[DetectorID] = true; } m_StripHits.push_back(StripHit); } @@ -287,6 +305,17 @@ void MReadOutAssembly::RemoveStripHit(unsigned int i) vector::iterator it; it = m_StripHits.begin()+i; m_StripHits.erase(it); + + // Recompute the per-detector flags from the remaining strip hits + for (unsigned int DetectorID = 0; DetectorID < 16; ++DetectorID) { + m_InDetector[DetectorID] = false; + } + for (unsigned int h = 0; h < m_StripHits.size(); ++h) { + unsigned int DetectorID = m_StripHits[h]->GetDetectorID(); + if (DetectorID <= 15) { + m_InDetector[DetectorID] = true; + } + } } } @@ -314,13 +343,8 @@ MStripHit* MReadOutAssembly::GetStripHitTOnly(unsigned int i) void MReadOutAssembly::AddStripHitTOnly(MStripHit* StripHit) { //! Add a strip hit - //comment this out for now since it might mess with other stuff - /* - int DetectorID = StripHit->GetDetectorID(); - if ( (DetectorID>=0) && (DetectorID<=11) ) - { - m_InDetector[DetectorID]=true; - }*/ + if (StripHit == nullptr) return; + m_StripHitsTOnly.push_back(StripHit); } @@ -362,8 +386,10 @@ MCrystalHit* MReadOutAssembly::GetCrystalHit(unsigned int i) void MReadOutAssembly::AddCrystalHit(MCrystalHit* CrystalHit) { //! Add a crystal hit + if (CrystalHit == nullptr) return; + // Note: For ACS detectors, DetectorID is a string (e.g., "X0", "X1", "Y0", "Y1", "Z0", "Z1") - // so we can't use it with m_InDetector array which expects numeric indices 0-11. + // so we can't use it with m_InDetector array which expects numeric indices 0-15. // The m_InDetector tracking is primarily for GeD detectors which have numeric IDs. // We skip the m_InDetector tracking for crystal hits. @@ -388,7 +414,24 @@ void MReadOutAssembly::RemoveCrystalHit(unsigned int i) //////////////////////////////////////////////////////////////////////////////// -MHit* MReadOutAssembly::GetHit(unsigned int i) +MGuardringHit* MReadOutAssembly::GetGuardringHit(unsigned int i) +{ + //! Return guardring hit i + + if (i < m_GuardringHits.size()) { + return m_GuardringHits[i]; + } + + merr<<"Index out of bounds!"<Parse(Line,1) ){ + if (h->Parse(Line, Version) == true) { AddHit(h); return true; } else { + delete h; return false; } } if (Line.BeginsWith("SH")) { // assuming that the SHs belong to the last read hit + if (m_Hits.empty() == true) return false; MHit* h = m_Hits.back(); - if (h != nullptr) { - MStripHit* SH = new MStripHit(); - if (SH->Parse(Line, 2)) { - h->AddStripHit(SH); - return true; - } else { - delete SH; - return false; - } + MStripHit* SH = new MStripHit(); + if (SH->Parse(Line, 2) == true) { + AddStripHit(SH); + h->AddStripHit(SH); + return true; } else { + delete SH; return false; } } @@ -486,8 +535,9 @@ bool MReadOutAssembly::Parse(MString& Line, int Version) return true; } - - return false; + // Everything else (SE, TI, ID, IA, ...) goes to the tolerant base parser, + // which also consumes unrecognized lines and returns true + return MReadOutSequence::Parse(Line); } @@ -499,11 +549,15 @@ bool MReadOutAssembly::GetNextFromDatFile(MFile &F){ MString Line; int i; int MaxIter = 1000; + bool EventRead = false; Clear(); for( i = 0; i < MaxIter; i++ ){ //try 1000 times to get the complete event - F.ReadLine(Line); + if( F.ReadLine(Line) == false ){ + //end of file reached + break; + } const char* line = Line.Data(); //vector tokens = Line.Tokenize(" "); if( Line.BeginsWith("SE") ){ @@ -513,38 +567,52 @@ bool MReadOutAssembly::GetNextFromDatFile(MFile &F){ } }else if( Line.BeginsWith("ID") ){ unsigned int ID; - sscanf(&line[3],"%u",&ID); - SetID( ID ); + if( sscanf(&line[3],"%u",&ID) == 1 ){ + SetID( ID ); + EventRead = true; + } else { + cout<<"MReadOutAssembly::GetNextFromDatFile(): Error parsing ID line"<Parse(Line); - AddHit(h); + if( h->Parse(Line) == true ){ + AddHit(h); + EventRead = true; + } else { + delete h; + } } else if( Line.BeginsWith("SH") ){ MStripHit* sh = new MStripHit(); - sh->Parse(Line); - AddStripHit(sh); - if( m_Hits.size() > 0 ){ - //add this SH to the last read in HT - MHit* h = m_Hits.back(); - h->AddStripHit(sh); + if( sh->Parse(Line) == true ){ + AddStripHit(sh); + EventRead = true; + if( m_Hits.size() > 0 ){ + //add this SH to the last read in HT + MHit* h = m_Hits.back(); + h->AddStripHit(sh); + } + } else { + delete sh; } } else if( Line.BeginsWith("BD") ){ + EventRead = true; SetFilteredOut(true); } } if( i == MaxIter ){ - cout<<"MReadoutAssembly::GetNextFromFile(): reached MaxIter"<= 1 && Version <= 3) { + S<<"SE"<StreamDat(S, Version); + if (m_EventTimeUTC == 0 && m_EventTimeRTS != 0) { + S<<"TI "<StreamDat(S, Version); - } - } else if (Version == 2) { - for (auto H : m_Hits) { - H->StreamDat(S, 2); + for (MSimIA& IA: m_SimIAs) { + S<StreamDat(S, 3); + + if (Version == 1) { + for (unsigned int h = 0; h < m_StripHits.size(); ++h) { + m_StripHits[h]->StreamDat(S, Version); + } + + for (unsigned int h = 0; h < m_Hits.size(); ++h) { + m_Hits[h]->StreamDat(S, Version); + } + } else if (Version == 2) { + for (auto H : m_Hits) { + H->StreamDat(S, 2); + } + } else if (Version == 3) { + for (auto H : m_Hits) { + H->StreamDat(S, 3); + } } - } - StreamBDFlags(S); - - return true; + StreamBDFlags(S); + + return true; + } else { + return false; + } } @@ -652,11 +724,11 @@ void MReadOutAssembly::StreamRoa(ostream& S, bool WithADCs, bool WithTACs, bool if (WithNearestNeighbors == false && m_StripHits[h]->IsNearestNeighbor() == true) { continue; } - m_StripHits[h]->StreamRoa(S, WithADCs, WithTACs, WithEnergies, WithTimings, WithTemperatures, WithFlags); + m_StripHits[h]->StreamRoa(S, WithADCs, WithTACs, WithEnergies, WithTimings, WithTemperatures, WithFlags, WithOrigins); ++Counter; } for (unsigned int h = 0; h < m_CrystalHits.size(); ++h) { - m_CrystalHits[h]->StreamRoa(S, WithADCs, WithEnergies, WithTemperatures, WithFlags); + m_CrystalHits[h]->StreamRoa(S, WithADCs, WithEnergies, WithFlags, WithOrigins); ++Counter; } if (Counter == 0) { diff --git a/src/MStripHit.cxx b/src/MStripHit.cxx index d45b3bdd..f8b62f3c 100644 --- a/src/MStripHit.cxx +++ b/src/MStripHit.cxx @@ -103,24 +103,42 @@ void MStripHit::Clear() bool MStripHit::Parse(MString& Line, int Version) { const char* line = Line.Data(); + if (Line.Length() < 3) { + if (g_Verbosity >= c_Error) cout<<"Error in MStripHit::Parse: line too short"<= c_Error) cout<<"Error in MStripHit::Parse: malformed SH line"<= c_Error) cout<<"Error in MStripHit::Parse: unknown detector face: "<= c_Error) cout<<"Error in MStripHit::Parse: line does not start with SH"</, modeled +on UTNEndToEnd_542-1.cxx (see section "End-to-End Tests"). It must be fully +automatic and safe to run in parallel with the other end-to-end tests. +``` + + +### Information for AIs + +This document captures the rules and patterns that govern every unit test in +`nuclearizer/unittests/`. + +Read it before writing a new test; keep it up to date when a new pattern is established. + +When you find a bug in production code (`src/*`, `include/*`, `apps/*`), do not +fix it silently while writing tests. Fix one bug at a time, show the diff and +wait for approval, make the minimum change that fixes it, and do not refactor or +restyle unrelated code unless explicitly asked. + +--- + +## 1. File and Class Structure + +There are two kinds of test files: + +- **Class unit tests** (`UTN.cxx`) — test a single class `MClassName` in isolation. +- **End-to-end tests** (`UTNEndToEnd_.cxx`) — run a full pipeline and compare output to a reference file. + +Each class unit test file tests exactly one class `MFoo`. + +### Header block + +```cpp +// Standard libs: +#include +using namespace std; + +// MEGAlib: +#include "MGlobal.h" +#include "MUnitTest.h" + +// Nuclearizer: +#include "MFoo.h" +``` + +Include `` whenever any stream test is needed. Group includes in +three blocks — standard, MEGAlib, Nuclearizer — in that order. + +Add other standard headers explicitly when they are used. Common examples: +`` for `getenv`, `` for fixture files, and `` for +`getpid()` when building process-ID-suffixed file names. + +Tests emit any diagnostic output — a skip notice, a progress line — through the +MEGAlib streams `mout`/`merr`, never `cout`/`cerr`. + +### Test class + +```cpp +class UTFoo : public MUnitTest +{ +public: + UTFoo() : MUnitTest("UTFoo") {} + virtual ~UTFoo() {} + + virtual bool Run(); + +private: + bool TestDefaultConstruction(); + bool TestGettersSetters(); + // ... one method per logical concern +}; +``` + +The constructor passes the class name as a string to `MUnitTest`. + +### `Run()` + +```cpp +bool UTFoo::Run() +{ + bool Passed = true; + + Passed = TestDefaultConstruction() && Passed; + Passed = TestGettersSetters() && Passed; + // ... + + Summarize(); + return Passed; +} +``` + +Every sub-test is chained with `&& Passed` so all sub-tests run even when one +fails, but the overall result is false if any failed. + +### `main()` + +```cpp +int main(int argc, char** argv) +{ + if (MGlobal::Initialize("UTFoo", "Unit tests for MFoo") == false) return 1; + + UTFoo Test; + return Test.Run() == true ? 0 : 1; +} +``` + +If the class under test does not need `MGlobal::Initialize` (e.g., pure data +classes like `MStripHit` or `MHit`), call only `Test.Run()`: + +```cpp +int main() +{ + UTFoo Test; + return Test.Run() == true ? 0 : 1; +} +``` + +--- + +## 2. Evaluate Calls + +All assertions use the four `MUnitTest` helpers. + +All four helpers share the same argument prefix: **Function**, **Input**, **Description**, then the value(s). + +### `Evaluate` — equality + +```cpp +Passed = Evaluate("SetFoo/GetFoo", "representative value 42", + "GetFoo returns the representative value 42", + H.GetFoo(), 42) && Passed; +``` + +Arguments: `Function`, `Input`, `Description`, `Output`, `Truth`. + +Use for exact equality of `int`, `unsigned int`, `MString`, `bool`-as-int, etc. + +`Output` and `Truth` share a single template parameter, so they must be the +**exact same type** or the call fails to compile (`deduced conflicting types +for parameter 'T2'`). Match the truth literal to the getter's return type: + +- `size_t` counts (`.size()`) — cast both sides to `(unsigned int)`. +- `GetID()` returns `unsigned long` — write the literal as `(unsigned long) 1`. +- otherwise cast the literal to whatever the getter returns. + +### `EvaluateNear` — floating-point + +```cpp +Passed = EvaluateNear("SetEnergy/GetEnergy", "representative value", + "GetEnergy returns the representative value 511.0 keV", + H.GetEnergy(), 511.0, 1e-9) && Passed; +``` + +Arguments: `Function`, `Input`, `Description`, `Output`, `Truth`, `Tolerance`. + +Always supply an explicit tolerance. Use `1e-9` for a double-precision +round-trip, `1e-4` for values limited by a stream's default `ostream` output +precision (6 significant digits), and `0.5` for integer-valued fields read back +via `sscanf` with `%d`. Never compare floating-point values with `==` — always +use `EvaluateNear` with an explicit tolerance. + +### `EvaluateTrue` / `EvaluateFalse` — boolean + +```cpp +Passed = EvaluateTrue("IsLowVoltageStrip()", "alias true", + "IsLowVoltageStrip() returns true after IsXStrip(true)", + H.IsLowVoltageStrip() == true) && Passed; + +Passed = EvaluateFalse("HasTriggered()", "default", + "Default HasTriggered is false", + H.HasTriggered()) && Passed; +``` + +Arguments: `Function`, `Input`, `Description`, `bool`. All four arguments are +required — omitting `Description` causes a compile error. + +Prefer `EvaluateTrue`/`EvaluateFalse` over `Evaluate(..., true)` / +`Evaluate(..., false)` for boolean results. + +### `Summarize()` + +```cpp +Summarize(); // no arguments, returns void +return Passed; +``` + +`Summarize()` takes no arguments and returns `void`. Call it at the end of +`Run()` and return `Passed` separately. + +--- + +## 3. Standard Sub-Test Set + +Every class test should cover these concerns in this order when applicable. + +| Sub-test | Covers | +|---|---| +| `TestDefaultConstruction` | Default values after `T obj;` and after explicit `obj.Clear()` — do **not** add a trivially-true `Evaluate(..., true, true)` "construction" check; if construction crashes the test crashes, which is sufficient signal | +| `TestGettersSetters` | Every public setter/getter pair, once with a representative value | +| `TestXxx` (domain logic) | Bit layouts, deduplication, sorting, accumulation, etc. | +| `TestStreamDatParse` | `StreamDat()` round-trip through `Parse()` for each version | +| `TestStreamRoa` / `TestStreamEvta` | Output format, conditional fields, edge cases | + +Not every class needs all of them; omit what does not apply. + +--- + +## 4. Test Completeness + +Use this checklist before calling a class unit test complete. + +### Public API coverage + +- Every public function declared or overridden by the class under test gets a + direct functional test. Indirect coverage through another API does not count. +- Every public setter/getter pair is tested directly. +- Inherited framework APIs do not need retesting unless the class changes their + behaviour or relies on them in a nontrivial way. +- Public functions that are intentionally unsupported, deprecated, or impossible + to exercise in a unit test must be documented in the test with a short comment. +- Non-public functions are tested only when needed to verify behaviour that is not + reachable through the public API. + +### Real usage coverage + +- Audit real in-tree usage of the class before deciding the test is complete. +- Add tests for the usage patterns found there, not only for abstract API + behaviour. +- If production code relies on a non-obvious convention, such as a filename + timestamp, ownership transfer, event ordering, or a sentinel value, the unit + test must cover that convention directly. + +### Inputs and edge cases + +- Test representative typical inputs and meaningful edge cases. +- Edge cases include, when applicable: empty input, single-element input, zero, + negative values, maximum size, and boundary values (`n`, `n-1`, `n+1`). +- Do not only test trivial, symmetric, or axis-point inputs. Add nontrivial + interior-domain cases when the function has a meaningful domain. +- Every documented error path is tested. Verify the documented behaviour: + `false`, `nullptr`, sentinel value, thrown exception, or preserved old state. + +### State and lifecycle + +- Stateful classes must be tested with repeated operations on the same object: + repeated parses, reads, loads, clears, resets, or reinitializations. +- For I/O classes, failed operations on reused objects must not leave stale state + that affects the next successful operation. +- Owning classes need lifecycle tests for `Clear()`, removal, destruction + semantics, and copy/assignment when those operations are public and supported. +- Tests must verify that copied state is independent when copy or assignment is + part of the supported API. + +### Exactness + +- When a concrete expected value can be derived, assert the exact value. +- Range, finiteness, and non-empty checks are fallback assertions only when no + exact expected value is reasonably derivable. +- For math, geometry, calibration, and time-conversion helpers, prefer direct + value assertions or inverse/round-trip checks with explicit tolerances. +- For stochastic code, fix the random seed explicitly before asserting results. + +### Cross-boundary changes + +- If a change crosses class boundaries, add or update the relevant integration or + end-to-end test in addition to the class unit test. +- Reassess completeness only after public API coverage, real usage coverage, + edge/error cases, and cross-boundary behaviour have all been considered. + +--- + +## 5. TestDefaultConstruction Conventions + +- Construct the object and assert every field that has a reliable default. +- For numeric "not defined" sentinels use `== g_DoubleNotDefined` or + `== g_UnsignedIntNotDefined` (exact equality is correct for sentinel values). +- For "not defined" vector sentinels use `== g_VectorNotDefined`. +- For fields that are **not** reset by `Clear()` (e.g., `MHit`'s bool flags) + or that are intentionally set to a non-obvious default (e.g., + `MReadOutAssembly::m_Trigger = true` after `Clear()`), add a comment + explaining the behaviour rather than omitting the test silently. +- After asserting the freshly-constructed state, mutate every covered field, + call `Clear()`, then re-assert all the same properties to confirm that + `Clear()` actually resets them. + +--- + +## 6. TestGettersSetters Conventions + +- One representative value per setter/getter pair — not a sweep of edge values. +- For `bool` properties, test both `true` and `false`. +- For aliases (e.g., `IsXStrip` ↔ `IsLowVoltageStrip`), assert that setting + via the alias is visible through both names. +- Use physically meaningful values when they exist (e.g., `511.0` for an + annihilation energy, `10452` for a TAC count, `25.3` for a temperature in °C). + +--- + +## 7. Stream / Parse Tests + +### Output format checks + +Use `ostringstream`, capture to `MString`, then search with `Index()`: + +```cpp +ostringstream Out; +H.StreamRoa(Out, /*flags*/); +MString S(Out.str().c_str()); + +// Presence: token exists somewhere in output +Passed = EvaluateTrue("StreamRoa()", "contains ADC 4053", + "Output contains ADC value 4053", + S.Contains("4053")) && Passed; + +// Absence: token must NOT appear +Passed = EvaluateTrue("StreamRoa()", "no TAC", + "Output does not contain TAC value 10452", + S.Contains("10452") == false) && Passed; + +// Starts-with: token is at position 0 +Passed = EvaluateTrue("StreamRoa()", "starts with UH", + "Output starts with 'UH'", + S.BeginsWith("UH")) && Passed; +``` + +Use `S.Index(...)` only when positional information or occurrence counting is +needed. + +### Round-trip checks + +For `StreamDat`/`Parse` pairs, write with one instance and read into another: + +```cpp +MFoo Writer; +// ... populate Writer ... +ostringstream Out; +Writer.StreamDat(Out); + +MFoo Reader; +Reader.Parse(MString(Out.str().c_str())); +// ... assert Reader fields match Writer fields ... +``` + +Then also assert that `Parse()` returns `false` for a line that does not start +with the expected keyword: + +```cpp +MString BadLine("UH 0 41 l 4053 10452 4"); +MFoo Dummy; +Passed = EvaluateFalse("Parse()", "non-HT line", + "Parse() returns false for a line that does not start with 'HT'", + Dummy.Parse(BadLine)) && Passed; +``` + +### Tolerances for Parse() + +Fields written as integers (ADC, TAC, strip ID, detector ID) and read back +with `%d` use a tolerance of `0.5`. Fields limited by the default `ostream` +output precision (6 significant digits) use `1e-4`. Fields that survive a full +`double` round-trip use `1e-9`. + +--- + +## 8. Ownership and Pointer Tests + +### Classes that OWN their children (e.g., `MReadOutAssembly` owning `MStripHit*`) + +Always allocate children with `new`; the owner deletes them. Never pass a +stack-allocated object to an owning container. + +```cpp +MStripHit* SH = new MStripHit(); +SH->SetDetectorID(3); +R.AddStripHit(SH); // R now owns SH; do NOT delete SH manually +``` + +After `Clear()` or at destruction, the children are gone — verify with count: + +```cpp +R.Clear(); +Passed = EvaluateTrue("TestClearOwnership", "NStripHits=0 after Clear", + R.GetNStripHits() == 0) && Passed; +``` + +If `RemoveXxx(i)` erases from the container **without** deleting the pointer, +delete the pointer manually in the test to avoid a leak. + +### Classes that do NOT own their children (e.g., `MHit` over `MStripHit*`) + +Pass stack-allocated or caller-managed pointers; the parent does not delete them: + +```cpp +MStripHit SH0, SH1; // stack-allocated; caller's lifetime +H.AddStripHit(&SH0); +``` + +After `RemoveStripHit`, verify the remaining element: + +```cpp +H.RemoveStripHit((unsigned int) 1); // removes index 1, shifts down +Passed = EvaluateTrue(..., H.GetStripHit(1) == &SH2) && Passed; +``` + +### Out-of-bounds access + +Wrap any call that is expected to produce a `merr` (error message) with +`DisableDefaultStreams()` / `EnableDefaultStreams()` and assert the return value: + +```cpp +DisableDefaultStreams(); +Passed = EvaluateTrue("GetStripHit()", "out of bounds returns null", + "GetStripHit(99) returns nullptr", + H.GetStripHit(99) == nullptr) && Passed; +EnableDefaultStreams(); +``` + +--- + +## 9. Error-State and Error-Suppression Tests + +When testing that a function correctly rejects invalid input (e.g., a missing +file, a bad configuration, a malformed line), suppress the expected diagnostic +output. Which mechanism to use depends on **how the code under test prints**. + +### MEGAlib streams — `DisableDefaultStreams()` / `EnableDefaultStreams()` + +When the code under test reports through the MEGAlib streams (`mout`, `merr`, +`mlog`, `mgui`) — for example `MHit::GetStripHit` does `merr<<"..."<= c_Error) cout<<...<"; +``` + +Never hard-code absolute paths. If the variable is unset in a class or module +unit test, skip the committed-data sub-test with a printed notice and return +`Passed` (true), so local builds do not fail when the data is unavailable. +Dedicated end-to-end tests are required-data tests: CI must run them with +`NUCLEARIZER` set, and if `NUCLEARIZER` is set but a required file is missing, +the test must fail. + +### Test-generated fixture files + +When a test builds a small input file itself (rather than using committed +data), write it under `/tmp/`, assert the stream opened, and remove it +afterwards: + +```cpp +MString DatFile("/tmp/UTNFoo_valid.dat"); +ofstream Out(DatFile.Data()); +Passed = EvaluateTrue("Foo()", "write fixture", "The fixture file can be created", + Out.is_open()) && Passed; +Out << "..." << endl; +Out.close(); + +// ... use the file ... + +MFile::Remove(DatFile); +``` + +Always assert `is_open()` so a write failure is reported directly instead of +surfacing later as a confusing read error. Give each fixture a name unique to +the test (process-ID-suffixed if it may run concurrently with itself — see +section "End-to-End Tests"). + +--- + +## 11. Build System + +The nuclearizer `Makefile` discovers all unit test sources via wildcard: + +```makefile +CXX_UT := $(wildcard $(NUCLEARIZER_DIR)/unittests/*.cxx) +EXE_UT := $(patsubst %.cxx,%,$(CXX_UT)) +EXE_UT := $(patsubst $(NUCLEARIZER_DIR)/unittests/%,$(BN)/%,$(EXE_UT)) +``` + +A new file `unittests/UTFoo.cxx` is automatically compiled and linked as +`$(MEGALIB)/bin/UTFoo` the next time `make unittests` is run. No Makefile +edit is needed. + +--- + +## 12. Naming and Comment Style + +- Sub-test method names: `TestCamelCase`, one logical concern per method. +- Every sub-test method has a `//! ...` doxygen comment on the declaration. +- The first argument to every `Evaluate*` call is the function signature being + tested: `"SetFoo/GetFoo"`, `"StreamDat() V2"`, `"Parse()"`, etc. + **Exception:** in end-to-end tests there is no single function under test; use + the test scenario name instead: `"End-to-end test 542-1"` (see section + "End-to-End Tests"). +- The second argument is a short description of the input scenario: + `"representative value 42"`, `"after Clear"`, `"missing HDF5 file"`. +- The third argument is a complete English sentence describing the expected + outcome: `"GetFoo returns the representative value 42"`. +- Comments inside sub-tests explain non-obvious behaviour (e.g., which fields + `Clear()` does *not* reset, or why a particular sentinel value is expected). + +--- + +## 13. End-to-End Tests + +End-to-end tests run a full nuclearizer pipeline and compare the output file to +a checked-in reference. + +### File and class naming + +``` +UTNEndToEnd_.cxx → class UTNEndToEnd_ +``` + +The dash in the file name is replaced with an underscore in the C++ class name +because dashes are not valid in identifiers: + +``` +UTNEndToEnd_542-1.cxx → class UTNEndToEnd_542_1 +``` + +The constructor string keeps the original dash so the runner output is readable: + +```cpp +UTNEndToEnd_542_1() : MUnitTest("UTNEndToEnd_542-1") {} +``` + +### `Evaluate*` first argument + +Because there is no single function under test, the first argument is the +human-readable test scenario name, not a function signature: + +```cpp +Passed = EvaluateTrue("End-to-end test 542-1", "exit status", + "nuclearizer exits with status 0", + Status == 0) && Passed; +``` + +Use the same string consistently for every `Evaluate*` call within the test. + +### Running the pipeline with `RunChildProcess` + +Build the full argument string before calling `RunChildProcess`: + +```cpp +MString Arguments = MString("-c ") + ConfigFile + " -a -n"; +int Status = MSystem::RunChildProcess("nuclearizer", Arguments, LogFile); +``` + +`MSystem::RunChildProcess` invokes `/bin/sh -c "nuclearizer "`, so the shell +splits the string into separate argv entries. Stdout and stderr are captured to +`LogFile` (in `/tmp/`) for post-failure inspection. + +### Parallel safety and reproducibility + +End-to-end tests are separate executables and may run concurrently, so every +path a test *writes* must be unique to it: + +- **Log file** — name it `/tmp/UTNEndToEnd__.log`, building the + process-ID suffix with `getpid()` (`#include `). A fixed log name + would be clobbered if the same test is run twice at once: + + ```cpp + MString LogFile = MString("/tmp/UTNEndToEnd_542-1_") + (unsigned int) getpid() + ".log"; + ``` + +- **Output file** — generated output must live under `/tmp/`, not in the source + tree. Give it a dataset-and-process-ID-specific name. If the committed + nuclearizer configuration hard-codes the output file path, copy the + configuration to `/tmp/` for the test run and rewrite only the output path in + that temporary copy. Delete any pre-existing output *before* running + nuclearizer, so the "output file was created" check and the comparison reflect + strictly the current run, not a stale artifact: + + ```cpp + MString OutputFile = MString("/tmp/UTNEndToEnd_542-1_") + (unsigned int) getpid() + ".tra"; + if (MFile::Exists(OutputFile) == true) { + MFile::Remove(OutputFile); + } + ``` + +The test is fully automatic: it takes no command-line arguments and needs no +interactive input — the data is located via `$NUCLEARIZER` and nuclearizer is +run headless (`-a` runs the analysis, `-n` suppresses the GUI). + +### Comparing output to a reference file + +Use `EvaluateFilesIdentical`, which streams both files line by line without +loading them into memory and stops at the first mismatch: + +```cpp +Passed = EvaluateFilesIdentical("End-to-end test 542-1", "output file", + "The output .tra file is identical to the reference", + OutputFile, ReferenceFile) && Passed; +``` + +The reference file lives alongside the config and input data under +`$NUCLEARIZER/resource/unittestdata//` and is named +`.reference.`. + +If a production bug fix changes the end-to-end output, do **not** blindly +regenerate the reference. First inspect the old and new outputs and document why +the old reference was wrong or why the intended behaviour changed. For example, +the HDF v2 loader once merged consecutive `/Events` rows into one +`MReadOutAssembly`; the stale reference could be identified because the new +single-event energies summed exactly to the old merged-event energy. + +When practical, pair an end-to-end reference comparison with a focused module +unit test for the semantic behaviour being protected. A full `.tra` comparison +can detect that output changed, but a module test should identify the actual +contract, e.g. "one HDF `/Events` row produces one `MReadOutAssembly` with this +ID and this strip-hit count". + +Reference files should have documented provenance either in nearby comments, in +the test source, or in a small companion note: input file, configuration file, +expected event count, and whether the reference was generated before or after a +known behaviour change. + +### Locating files + +Use `$NUCLEARIZER` (see section "Tests That Need External Data Files") and +`MFile::Exists` (not `ifstream`) to check that prerequisites exist before +launching the pipeline: + +```cpp +Passed = EvaluateTrue("End-to-end test 542-1", "config file", + "The nuclearizer config file exists", + MFile::Exists(ConfigFile)) && Passed; +``` + +If production code derives semantics from a fixture file name, the test must +document that filename contract and use a representative real filename pattern. +For HDF v2.2+ input, for example, the loader needs an acquisition start timestamp +to convert SpaceWire time codes into UTC, so the fixture name must contain the +timestamp form accepted by production code. + +--- + +## 14. Module Unit Tests + +A test for an `MModule` subclass (e.g. `MModuleLoaderMeasurementsHDF`) is still +a class unit test, but covers a few module-specific concerns beyond the standard +getter/setter set. + +### `Initialize()` error paths + +Verify `Initialize()` returns `false` for each missing prerequisite — a missing +input file, a missing calibration, a bad configuration. Suppress the expected +diagnostics (see section "Error-State and Error-Suppression Tests"): + +```cpp +DisableDefaultStreams(); +bool Result = Loader.Initialize(); +EnableDefaultStreams(); +Passed = EvaluateFalse("Initialize()", "missing HDF5 file", + "Initialize() returns false when the HDF5 file does not exist", + Result) && Passed; +``` + +### XML configuration round-trip + +Serialise with `CreateXmlConfiguration()`, read the node back into a fresh +instance with `ReadXmlConfiguration()`, and assert every configured value +survives. Delete the node when done: + +```cpp +MModuleFoo Writer; +Writer.SetSomething(Value); +MXmlNode* Node = Writer.CreateXmlConfiguration(); + +MModuleFoo Reader; +Reader.ReadXmlConfiguration(Node); +Passed = Evaluate("ReadXmlConfiguration()", "Something", + "ReadXmlConfiguration() restores the configured value", + Reader.GetSomething(), Value) && Passed; +delete Node; +``` + +### `AnalyzeEvent()` against committed data + +For a module that produces events, run `Initialize()` and then a series of +`AnalyzeEvent()` calls on a committed `$NUCLEARIZER` dataset (see section +"Tests That Need External Data Files"), and assert the reconstructed +`MReadOutAssembly` matches documented reference values +— event ID, strip-hit count, and per-hit detector / strip / ADC / TAC. Guard +per-hit access with the count so a wrong count cannot crash the test: + +```cpp +if (Event->GetNStripHits() == 4) { + MStripHit* H0 = Event->GetStripHit(0); + Passed = Evaluate("AnalyzeEvent()", "event 1 hit 0 strip", + "Event 1 hit 0 has the representative strip ID 41", + H0->GetStripID(), 41u) && Passed; + // ... +} +``` + +`AnalyzeEvent()` events are heap-allocated `MReadOutAssembly*`; `delete` each one +after its checks (the assembly owns and frees its strip hits). + +For loaders that read grouped event formats, include checks that protect the +event-boundary contract directly. Do not only assert that `AnalyzeEvent()` +returns true: assert the expected sequence of event IDs and per-event hit counts +so accidental merging, splitting, or skipping of file events is visible in the +module unit test. + +--- + +## 15. Test Isolation + +Each test executable must pass on its own and in any order relative to the +others. + +- A test must not depend on another test's side effects, files, or global state. +- Restore any global, `static`, singleton, or environment-variable state the + test mutates. In particular, do not assert the *absolute* value of a + process-wide counter (e.g. `MReadOutAssembly`'s static assembly-ID counter) — + assert only relative properties such as uniqueness and strict increase. +- Do all filesystem work under `/tmp/` (see section "Tests That Need External + Data Files"), never in the source tree or the real user filesystem, and + remove what you create. +- No network access in a unit test. +- A flaky test is a bug — fix the cause, never paper over it with retries. +- Use real objects and small real inputs; do not mock the class under test, and + do not write tests for ROOT, Geant4, or other third-party behaviour. diff --git a/unittests/UTNEndToEnd_406-1.cxx b/unittests/UTNEndToEnd_406-1.cxx new file mode 100644 index 00000000..fb240ad2 --- /dev/null +++ b/unittests/UTNEndToEnd_406-1.cxx @@ -0,0 +1,242 @@ +/* + * UTNEndToEnd_406-1.cxx + * + * Copyright (C) by Andreas Zoglauer. + * All rights reserved. + * + * Please see the source-file for the copyright-notice. + * + */ + + +// Standard libs: +#include +#include +#include +#include +#include +using namespace std; + +// MEGAlib: +#include "MGlobal.h" +#include "MFile.h" +#include "MString.h" +#include "MSystem.h" +#include "MUnitTest.h" + + +//! End-to-end test: run nuclearizer on the 406-1 HDF5 data and verify the .tra output. +//! +//! Design notes: +//! - Fully automatic: takes no command-line arguments and needs no interactive +//! input. The data is located via $NUCLEARIZER and nuclearizer runs headless +//! (-a runs the analysis, -n suppresses the GUI). +//! - Parallel-safe: every path it writes is unique to this test and carries the +//! process ID, so it can run concurrently with the other UTNEndToEnd_* tests. +class UTNEndToEnd_406_1 : public MUnitTest +{ +public: + UTNEndToEnd_406_1() : MUnitTest("UTNEndToEnd_406-1") {} + virtual ~UTNEndToEnd_406_1() {} + + virtual bool Run(); + +private: + //! Run nuclearizer on the 406-1 HDF5 input and compare the output to the reference .tra file + bool TestHDF5ToTra(); + //! Run nuclearizer with arguments and capture stdout/stderr in a log file + int RunNuclearizer(const MString& Arguments, const MString& LogFile); + //! Compare generated output with the reference file + bool CompareOutputToReference(const MString& OutputFile, const MString& ReferenceFile); +}; + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNEndToEnd_406_1::Run() +{ + bool Passed = true; + + Passed = TestHDF5ToTra() && Passed; + + Summarize(); + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNEndToEnd_406_1::TestHDF5ToTra() +{ + bool Passed = true; + + // Require $NUCLEARIZER to locate the data files + const char* NuclearizerEnv = getenv("NUCLEARIZER"); + Passed = EvaluateTrue("End-to-end test 406-1", "environment variable", + "$NUCLEARIZER environment variable must be set", + NuclearizerEnv != nullptr && NuclearizerEnv[0] != '\0') && Passed; + if (Passed == false) return Passed; + + MString NuclearizerDir(NuclearizerEnv); + MString DataDir = NuclearizerDir + "/resource/unittestdata/406-1"; + MString ConfigFile = DataDir + "/hdf5-to-tra.nuclearizer.cfg"; + MString OutputFile = MString("/tmp/UTNEndToEnd_406-1_") + (unsigned int) getpid() + ".tra"; + MString ReferenceFile = DataDir + "/hdf5-to-tra.reference.tra"; + MString TestConfigFile = MString("/tmp/UTNEndToEnd_406-1_") + (unsigned int) getpid() + ".cfg"; + + // The log file name carries the process ID so concurrent end-to-end tests + // (and repeated runs) never share or clobber the same log. + MString LogFile = MString("/tmp/UTNEndToEnd_406-1_") + (unsigned int) getpid() + ".log"; + + // Verify that the config and reference files are present before running anything + Passed = EvaluateTrue("End-to-end test 406-1", "nuclearizer config file", + "The nuclearizer config file exists", + MFile::Exists(ConfigFile)) && Passed; + Passed = EvaluateTrue("End-to-end test 406-1", ".tra reference file", + "The reference .tra file exists", + MFile::Exists(ReferenceFile)) && Passed; + if (Passed == false) return Passed; + + ifstream ConfigIn(ConfigFile.Data()); + Passed = EvaluateTrue("End-to-end test 406-1", "temporary config input", + "The nuclearizer config file can be opened for reading", + ConfigIn.is_open()) && Passed; + ofstream ConfigOut(TestConfigFile.Data()); + Passed = EvaluateTrue("End-to-end test 406-1", "temporary config output", + "The temporary nuclearizer config file can be opened for writing", + ConfigOut.is_open()) && Passed; + if (Passed == false) return Passed; + + const MString ConfigOutputFile = "$(NUCLEARIZER)/resource/unittestdata/406-1/hdf5-to-tra.tra"; + string Line; + while (getline(ConfigIn, Line)) { + MString ConfigLine(Line.c_str()); + ConfigLine.ReplaceAllInPlace(ConfigOutputFile, OutputFile); + ConfigOut << ConfigLine << endl; + } + ConfigIn.close(); + ConfigOut.close(); + + // Remove any stale output from a previous run so the checks below reflect + // strictly what this run produced. + if (MFile::Exists(OutputFile) == true) { + MFile::Remove(OutputFile); + } + + // Run nuclearizer fully automatically; stdout and stderr are captured to LogFile + MString NuclearizerArguments = MString("-c ") + TestConfigFile + " -a -n"; + int Status = RunNuclearizer(NuclearizerArguments, LogFile); + Passed = EvaluateTrue("End-to-end test 406-1", "exit status", + "nuclearizer exits with status 0 (log: " + LogFile + ")", + Status == 0) && Passed; + if (Passed == false) { + MFile::Remove(OutputFile); + MFile::Remove(TestConfigFile); + return Passed; + } + + // Verify the output file was produced by this run + Passed = EvaluateTrue("End-to-end test 406-1", "output file", + "The output .tra file was created", + MFile::Exists(OutputFile)) && Passed; + if (Passed == false) { + MFile::Remove(TestConfigFile); + return Passed; + } + + // Compare output to reference line by line + Passed = CompareOutputToReference(OutputFile, ReferenceFile) && Passed; + + MFile::Remove(OutputFile); + MFile::Remove(TestConfigFile); + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +int UTNEndToEnd_406_1::RunNuclearizer(const MString& Arguments, const MString& LogFile) +{ + pid_t Child = fork(); + if (Child == 0) { + int Log = open(LogFile.Data(), O_WRONLY | O_CREAT | O_TRUNC, 0666); + if (Log >= 0) { + dup2(Log, STDOUT_FILENO); + dup2(Log, STDERR_FILENO); + close(Log); + } + + MString Command = MString("nuclearizer ") + Arguments; + execl("/bin/sh", "sh", "-c", Command.Data(), static_cast(0)); + _exit(127); + } + + if (Child < 0) return -1; + + int Status = 0; + if (waitpid(Child, &Status, 0) < 0) return -1; + + return Status; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNEndToEnd_406_1::CompareOutputToReference(const MString& OutputFile, const MString& ReferenceFile) +{ + bool Passed = true; + + ifstream Output(OutputFile.Data()); + Passed = EvaluateTrue("End-to-end test 406-1", "open output file", + "The generated output file can be opened for comparison", + Output.is_open()) && Passed; + + ifstream Reference(ReferenceFile.Data()); + Passed = EvaluateTrue("End-to-end test 406-1", "open reference file", + "The reference output file can be opened for comparison", + Reference.is_open()) && Passed; + + if (Passed == false) return Passed; + + string OutputLine; + string ReferenceLine; + unsigned int Line = 1; + while (true) { + const bool HasOutput = static_cast(getline(Output, OutputLine)); + const bool HasReference = static_cast(getline(Reference, ReferenceLine)); + + if (HasOutput == false || HasReference == false) { + Passed = Evaluate("End-to-end test 406-1", "line count", + "The generated output and reference have the same number of lines", + HasOutput, HasReference) && Passed; + break; + } + + if (OutputLine != ReferenceLine) { + Passed = Evaluate("End-to-end test 406-1", MString("line ") + Line, + "The generated output line matches the reference line", + MString(OutputLine.c_str()), MString(ReferenceLine.c_str())) && Passed; + break; + } + + ++Line; + } + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +int main() +{ + UTNEndToEnd_406_1 Test; + return Test.Run() == true ? 0 : 1; +} diff --git a/unittests/UTNEndToEnd_542-1.cxx b/unittests/UTNEndToEnd_542-1.cxx new file mode 100644 index 00000000..dbc229e4 --- /dev/null +++ b/unittests/UTNEndToEnd_542-1.cxx @@ -0,0 +1,235 @@ +/* + * UTNEndToEnd_542-1.cxx + * + * Copyright (C) by Andreas Zoglauer. + * All rights reserved. + * + * Please see the source-file for the copyright-notice. + * + */ + + +// Standard libs: +#include +#include +#include +#include +#include +using namespace std; + +// MEGAlib: +#include "MGlobal.h" +#include "MFile.h" +#include "MString.h" +#include "MSystem.h" +#include "MUnitTest.h" + + +//! End-to-end test: run nuclearizer on 542-1 HDF5 data and verify the .tra output +class UTNEndToEnd_542_1 : public MUnitTest +{ +public: + UTNEndToEnd_542_1() : MUnitTest("UTNEndToEnd_542-1") {} + virtual ~UTNEndToEnd_542_1() {} + + virtual bool Run(); + +private: + //! Run nuclearizer on the 542-1 HDF5 input and compare the output to the reference .tra file + bool TestHDF5ToTra(); + //! Run nuclearizer with arguments and capture stdout/stderr in a log file + int RunNuclearizer(const MString& Arguments, const MString& LogFile); + //! Compare generated output with the reference file + bool CompareOutputToReference(const MString& OutputFile, const MString& ReferenceFile); +}; + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNEndToEnd_542_1::Run() +{ + bool Passed = true; + + Passed = TestHDF5ToTra() && Passed; + + Summarize(); + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNEndToEnd_542_1::TestHDF5ToTra() +{ + bool Passed = true; + + // Require $NUCLEARIZER to locate data files + const char* NuclearizerEnv = getenv("NUCLEARIZER"); + Passed = EvaluateTrue("End-to-end test 542-1", "environment variable", + "$NUCLEARIZER environment variable must be set", + NuclearizerEnv != nullptr && NuclearizerEnv[0] != '\0') && Passed; + if (Passed == false) return Passed; + + MString NuclearizerDir(NuclearizerEnv); + MString DataDir = NuclearizerDir + "/resource/unittestdata/542-1"; + MString ConfigFile = DataDir + "/hdf5-to-tra.nuclearizer.cfg"; + MString OutputFile = MString("/tmp/UTNEndToEnd_542-1_") + (unsigned int) getpid() + ".tra"; + MString ReferenceFile = DataDir + "/hdf5-to-tra.reference.tra"; + MString TestConfigFile = MString("/tmp/UTNEndToEnd_542-1_") + (unsigned int) getpid() + ".cfg"; + + // The log file name carries the process ID so concurrent end-to-end tests + // (and repeated runs) never share or clobber the same log. + MString LogFile = MString("/tmp/UTNEndToEnd_542-1_") + (unsigned int) getpid() + ".log"; + + // Verify that the config and reference files are present before running anything + Passed = EvaluateTrue("End-to-end test 542-1", "nuclearizer config file", + "The nuclearizer config file exists", + MFile::Exists(ConfigFile)) && Passed; + Passed = EvaluateTrue("End-to-end test 542-1", ".tra reference file", + "The reference .tra file exists", + MFile::Exists(ReferenceFile)) && Passed; + if (Passed == false) return Passed; + + ifstream ConfigIn(ConfigFile.Data()); + Passed = EvaluateTrue("End-to-end test 542-1", "temporary config input", + "The nuclearizer config file can be opened for reading", + ConfigIn.is_open()) && Passed; + ofstream ConfigOut(TestConfigFile.Data()); + Passed = EvaluateTrue("End-to-end test 542-1", "temporary config output", + "The temporary nuclearizer config file can be opened for writing", + ConfigOut.is_open()) && Passed; + if (Passed == false) return Passed; + + const MString ConfigOutputFile = "$(NUCLEARIZER)/resource/unittestdata/542-1/hdf5-to-tra.tra"; + string Line; + while (getline(ConfigIn, Line)) { + MString ConfigLine(Line.c_str()); + ConfigLine.ReplaceAllInPlace(ConfigOutputFile, OutputFile); + ConfigOut << ConfigLine << endl; + } + ConfigIn.close(); + ConfigOut.close(); + + // Remove any stale output from a previous run so the checks below reflect + // strictly what this run produced. + if (MFile::Exists(OutputFile) == true) { + MFile::Remove(OutputFile); + } + + // Run nuclearizer; stdout and stderr are captured to LogFile + MString NuclearizerArguments = MString("-c ") + TestConfigFile + " -a -n"; + int Status = RunNuclearizer(NuclearizerArguments, LogFile); + Passed = EvaluateTrue("End-to-end test 542-1", "exit status", + "nuclearizer exits with status 0 (log: " + LogFile + ")", + Status == 0) && Passed; + if (Passed == false) { + MFile::Remove(OutputFile); + MFile::Remove(TestConfigFile); + return Passed; + } + + // Verify the output file was produced + Passed = EvaluateTrue("End-to-end test 542-1", "output file", + "The output .tra file was created", + MFile::Exists(OutputFile)) && Passed; + if (Passed == false) { + MFile::Remove(TestConfigFile); + return Passed; + } + + // Compare output to reference line by line + Passed = CompareOutputToReference(OutputFile, ReferenceFile) && Passed; + + MFile::Remove(OutputFile); + MFile::Remove(TestConfigFile); + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +int UTNEndToEnd_542_1::RunNuclearizer(const MString& Arguments, const MString& LogFile) +{ + pid_t Child = fork(); + if (Child == 0) { + int Log = open(LogFile.Data(), O_WRONLY | O_CREAT | O_TRUNC, 0666); + if (Log >= 0) { + dup2(Log, STDOUT_FILENO); + dup2(Log, STDERR_FILENO); + close(Log); + } + + MString Command = MString("nuclearizer ") + Arguments; + execl("/bin/sh", "sh", "-c", Command.Data(), static_cast(0)); + _exit(127); + } + + if (Child < 0) return -1; + + int Status = 0; + if (waitpid(Child, &Status, 0) < 0) return -1; + + return Status; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNEndToEnd_542_1::CompareOutputToReference(const MString& OutputFile, const MString& ReferenceFile) +{ + bool Passed = true; + + ifstream Output(OutputFile.Data()); + Passed = EvaluateTrue("End-to-end test 542-1", "open output file", + "The generated output file can be opened for comparison", + Output.is_open()) && Passed; + + ifstream Reference(ReferenceFile.Data()); + Passed = EvaluateTrue("End-to-end test 542-1", "open reference file", + "The reference output file can be opened for comparison", + Reference.is_open()) && Passed; + + if (Passed == false) return Passed; + + string OutputLine; + string ReferenceLine; + unsigned int Line = 1; + while (true) { + const bool HasOutput = static_cast(getline(Output, OutputLine)); + const bool HasReference = static_cast(getline(Reference, ReferenceLine)); + + if (HasOutput == false || HasReference == false) { + Passed = Evaluate("End-to-end test 542-1", "line count", + "The generated output and reference have the same number of lines", + HasOutput, HasReference) && Passed; + break; + } + + if (OutputLine != ReferenceLine) { + Passed = Evaluate("End-to-end test 542-1", MString("line ") + Line, + "The generated output line matches the reference line", + MString(OutputLine.c_str()), MString(ReferenceLine.c_str())) && Passed; + break; + } + + ++Line; + } + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +int main() +{ + UTNEndToEnd_542_1 Test; + return Test.Run() == true ? 0 : 1; +} diff --git a/unittests/UTNHit.cxx b/unittests/UTNHit.cxx new file mode 100644 index 00000000..9e5ad0e4 --- /dev/null +++ b/unittests/UTNHit.cxx @@ -0,0 +1,757 @@ +/* + * UTNHit.cxx + * + * Copyright (C) by Andreas Zoglauer. + * All rights reserved. + * + * Please see the source-file for the copyright-notice. + * + */ + + +// Standard libs: +#include +#include +#include +using namespace std; + +// MEGAlib: +#include "MGlobal.h" +#include "MVector.h" +#include "MUnitTest.h" + +// Nuclearizer: +#include "MHit.h" +#include "MStripHit.h" + + +//! Unit test class for MHit +class UTNHit : public MUnitTest +{ +public: + UTNHit() : MUnitTest("UTNHit") {} + virtual ~UTNHit() {} + + virtual bool Run(); + +private: + //! Test default construction and Clear() + bool TestDefaultConstruction(); + //! Test individual getter/setter pairs + bool TestGettersSetters(); + //! Test strip hit list management + bool TestStripHitManagement(); + //! Test AddOrigins() deduplication and sorting + bool TestAddOrigins(); + //! Test StreamDat() versions and Parse() round-trip + bool TestStreamDatParse(); + //! Test StreamEvta() origin intersection and format + bool TestStreamEvta(); +}; + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNHit::Run() +{ + bool Passed = true; + + Passed = TestDefaultConstruction() && Passed; + Passed = TestGettersSetters() && Passed; + Passed = TestStripHitManagement() && Passed; + Passed = TestAddOrigins() && Passed; + Passed = TestStreamDatParse() && Passed; + Passed = TestStreamEvta() && Passed; + + Summarize(); + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNHit::TestDefaultConstruction() +{ + bool Passed = true; + + MHit H; + + // Construction calls Clear(), which initialises all fields: numeric fields to sentinels, + // collections to empty, bool flags to false, and HitQuality to 0.0. + + Passed = EvaluateTrue("GetPosition()", "sentinel after construction", "Position is initialised to g_VectorNotDefined after construction", + H.GetPosition() == g_VectorNotDefined) && Passed; + + Passed = EvaluateTrue("GetPositionResolution()", "sentinel after construction", "PositionResolution is initialised to g_VectorNotDefined after construction", + H.GetPositionResolution() == g_VectorNotDefined) && Passed; + + Passed = EvaluateTrue("GetEnergy()", "sentinel after construction", "Energy is initialised to g_DoubleNotDefined after construction", + H.GetEnergy() == g_DoubleNotDefined) && Passed; + + Passed = EvaluateTrue("GetLVEnergy()", "sentinel after construction", "LVEnergy is initialised to g_DoubleNotDefined after construction", + H.GetLVEnergy() == g_DoubleNotDefined) && Passed; + + Passed = EvaluateTrue("GetHVEnergy()", "sentinel after construction", "HVEnergy is initialised to g_DoubleNotDefined after construction", + H.GetHVEnergy() == g_DoubleNotDefined) && Passed; + + Passed = EvaluateTrue("GetEnergyResolution()", "sentinel after construction", "EnergyResolution is initialised to g_DoubleNotDefined after construction", + H.GetEnergyResolution() == g_DoubleNotDefined) && Passed; + + Passed = Evaluate("GetNStripHits()", "empty after construction", "Strip hit list is empty after construction", + H.GetNStripHits(), (unsigned int) 0) && Passed; + + Passed = Evaluate("GetOrigins()", "empty after construction", "Origins list is empty after construction", + (unsigned int) H.GetOrigins().size(), (unsigned int) 0) && Passed; + + Passed = EvaluateNear("GetHitQuality()", "default after construction", "HitQuality is initialised to 0.0 after construction", + H.GetHitQuality(), 0.0, 1e-9) && Passed; + + Passed = EvaluateFalse("GetStripHitMultipleTimesX()", "default after construction", "StripHitMultipleTimesX is false after construction", + H.GetStripHitMultipleTimesX()) && Passed; + Passed = EvaluateFalse("GetStripHitMultipleTimesY()", "default after construction", "StripHitMultipleTimesY is false after construction", + H.GetStripHitMultipleTimesY()) && Passed; + Passed = EvaluateFalse("GetCrossTalkFlag()", "default after construction", "CrossTalk is false after construction", + H.GetCrossTalkFlag()) && Passed; + Passed = EvaluateFalse("GetChargeLossFlag()", "default after construction", "ChargeLoss is false after construction", + H.GetChargeLossFlag()) && Passed; + Passed = EvaluateFalse("GetGuardRingHitFlag()", "default after construction", "GuardRingHit is false after construction", + H.GetGuardRingHitFlag()) && Passed; + Passed = EvaluateFalse("GetChargeSharing()", "default after construction", "ChargeSharing is false after construction", + H.GetChargeSharing()) && Passed; + Passed = EvaluateFalse("GetChargeSharingLV()", "default after construction", "ChargeSharingLV is false after construction", + H.GetChargeSharingLV()) && Passed; + Passed = EvaluateFalse("GetChargeSharingHV()", "default after construction", "ChargeSharingHV is false after construction", + H.GetChargeSharingHV()) && Passed; + Passed = EvaluateFalse("GetNoDepth()", "default after construction", "NoDepth is false after construction", + H.GetNoDepth()) && Passed; + Passed = EvaluateFalse("GetIsNondominantNeighborStrip()", "default after construction", "IsNonDominantNeighborStrip is false after construction", + H.GetIsNondominantNeighborStrip()) && Passed; + + // Verify Clear() reinstates sentinels on a populated instance + H.SetPosition(MVector(1.0, 2.0, 3.0)); + H.SetEnergy(511.0); + H.SetLVEnergy(200.0); + H.SetHVEnergy(311.0); + H.SetPositionResolution(MVector(0.1, 0.1, 0.1)); + H.SetEnergyResolution(1.5); + H.SetHitQuality(0.75); + H.AddOrigins({4, 7}); + H.SetCrossTalkFlag(true); + H.SetChargeLossFlag(true); + H.SetGuardRingHitFlag(true); + H.SetChargeSharing(true); + H.SetChargeSharingLV(true); + H.SetChargeSharingHV(true); + H.SetNoDepth(true); + H.SetIsNondominantNeighborStrip(true); + H.SetStripHitMultipleTimesX(true); + H.SetStripHitMultipleTimesY(true); + MStripHit SH; + H.AddStripHit(&SH); + + H.Clear(); + + Passed = EvaluateTrue("Clear() Position", "sentinel restored", "Clear() restores Position to g_VectorNotDefined", + H.GetPosition() == g_VectorNotDefined) && Passed; + Passed = EvaluateTrue("Clear() Energy", "sentinel restored", "Clear() restores Energy to g_DoubleNotDefined", + H.GetEnergy() == g_DoubleNotDefined) && Passed; + Passed = EvaluateTrue("Clear() LVEnergy", "sentinel restored", "Clear() restores LVEnergy to g_DoubleNotDefined", + H.GetLVEnergy() == g_DoubleNotDefined) && Passed; + Passed = EvaluateTrue("Clear() HVEnergy", "sentinel restored", "Clear() restores HVEnergy to g_DoubleNotDefined", + H.GetHVEnergy() == g_DoubleNotDefined) && Passed; + Passed = EvaluateTrue("Clear() EnergyResolution", "sentinel restored", "Clear() restores EnergyResolution to g_DoubleNotDefined", + H.GetEnergyResolution() == g_DoubleNotDefined) && Passed; + Passed = EvaluateTrue("Clear() PositionResolution", "sentinel restored", "Clear() restores PositionResolution to g_VectorNotDefined", + H.GetPositionResolution() == g_VectorNotDefined) && Passed; + Passed = Evaluate("Clear() StripHits", "empty restored", "Clear() empties the strip hit list", + H.GetNStripHits(), (unsigned int) 0) && Passed; + Passed = Evaluate("Clear() Origins", "empty restored", "Clear() empties the origins list", + (unsigned int) H.GetOrigins().size(), (unsigned int) 0) && Passed; + Passed = EvaluateNear("Clear() HitQuality", "zero restored", "Clear() restores HitQuality to 0.0", + H.GetHitQuality(), 0.0, 1e-9) && Passed; + Passed = EvaluateFalse("Clear() CrossTalk", "false restored", "Clear() restores CrossTalk to false", + H.GetCrossTalkFlag()) && Passed; + Passed = EvaluateFalse("Clear() ChargeLoss", "false restored", "Clear() restores ChargeLoss to false", + H.GetChargeLossFlag()) && Passed; + Passed = EvaluateFalse("Clear() GuardRingHit", "false restored", "Clear() restores GuardRingHit to false", + H.GetGuardRingHitFlag()) && Passed; + Passed = EvaluateFalse("Clear() ChargeSharing", "false restored", "Clear() restores ChargeSharing to false", + H.GetChargeSharing()) && Passed; + Passed = EvaluateFalse("Clear() ChargeSharingLV", "false restored", "Clear() restores ChargeSharingLV to false", + H.GetChargeSharingLV()) && Passed; + Passed = EvaluateFalse("Clear() ChargeSharingHV", "false restored", "Clear() restores ChargeSharingHV to false", + H.GetChargeSharingHV()) && Passed; + Passed = EvaluateFalse("Clear() NoDepth", "false restored", "Clear() restores NoDepth to false", + H.GetNoDepth()) && Passed; + Passed = EvaluateFalse("Clear() IsNonDominantNeighborStrip", "false restored", "Clear() restores IsNonDominantNeighborStrip to false", + H.GetIsNondominantNeighborStrip()) && Passed; + Passed = EvaluateFalse("Clear() StripHitMultipleTimesX", "false restored", "Clear() restores StripHitMultipleTimesX to false", + H.GetStripHitMultipleTimesX()) && Passed; + Passed = EvaluateFalse("Clear() StripHitMultipleTimesY", "false restored", "Clear() restores StripHitMultipleTimesY to false", + H.GetStripHitMultipleTimesY()) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNHit::TestGettersSetters() +{ + bool Passed = true; + + MHit H; + + // Position + MVector Pos(3.5, -1.2, 7.8); + H.SetPosition(Pos); + Passed = EvaluateNear("SetPosition/GetPosition X", "representative value", "GetPosition().X() returns the representative value 3.5", + H.GetPosition().GetX(), 3.5, 1e-9) && Passed; + Passed = EvaluateNear("SetPosition/GetPosition Y", "representative value", "GetPosition().Y() returns the representative value -1.2", + H.GetPosition().GetY(), -1.2, 1e-9) && Passed; + Passed = EvaluateNear("SetPosition/GetPosition Z", "representative value", "GetPosition().Z() returns the representative value 7.8", + H.GetPosition().GetZ(), 7.8, 1e-9) && Passed; + + // PositionResolution + MVector PosRes(0.1, 0.2, 0.3); + H.SetPositionResolution(PosRes); + Passed = EvaluateNear("SetPositionResolution/GetPositionResolution X", "representative value", "GetPositionResolution().X() returns the representative value 0.1", + H.GetPositionResolution().GetX(), 0.1, 1e-9) && Passed; + Passed = EvaluateNear("SetPositionResolution/GetPositionResolution Y", "representative value", "GetPositionResolution().Y() returns the representative value 0.2", + H.GetPositionResolution().GetY(), 0.2, 1e-9) && Passed; + Passed = EvaluateNear("SetPositionResolution/GetPositionResolution Z", "representative value", "GetPositionResolution().Z() returns the representative value 0.3", + H.GetPositionResolution().GetZ(), 0.3, 1e-9) && Passed; + + // Energy + H.SetEnergy(661.7); + Passed = EvaluateNear("SetEnergy/GetEnergy", "representative value", "GetEnergy returns the representative value 661.7 keV", + H.GetEnergy(), 661.7, 1e-9) && Passed; + + // LVEnergy + H.SetLVEnergy(330.0); + Passed = EvaluateNear("SetLVEnergy/GetLVEnergy", "representative value", "GetLVEnergy returns the representative value 330.0 keV", + H.GetLVEnergy(), 330.0, 1e-9) && Passed; + + // HVEnergy + H.SetHVEnergy(331.7); + Passed = EvaluateNear("SetHVEnergy/GetHVEnergy", "representative value", "GetHVEnergy returns the representative value 331.7 keV", + H.GetHVEnergy(), 331.7, 1e-9) && Passed; + + // EnergyResolution + H.SetEnergyResolution(2.5); + Passed = EvaluateNear("SetEnergyResolution/GetEnergyResolution", "representative value", "GetEnergyResolution returns the representative value 2.5 keV", + H.GetEnergyResolution(), 2.5, 1e-9) && Passed; + + // HitQuality + H.SetHitQuality(0.95); + Passed = EvaluateNear("SetHitQuality/GetHitQuality", "representative value", "GetHitQuality returns the representative value 0.95", + H.GetHitQuality(), 0.95, 1e-9) && Passed; + + // CrossTalk flag + H.SetCrossTalkFlag(true); + Passed = EvaluateTrue("SetCrossTalkFlag/GetCrossTalkFlag", "representative true", "GetCrossTalkFlag returns true after SetCrossTalkFlag(true)", + H.GetCrossTalkFlag() == true) && Passed; + H.SetCrossTalkFlag(false); + Passed = EvaluateFalse("SetCrossTalkFlag/GetCrossTalkFlag", "representative false", "GetCrossTalkFlag returns false after SetCrossTalkFlag(false)", + H.GetCrossTalkFlag()) && Passed; + + // GuardRingHit flag + H.SetGuardRingHitFlag(true); + Passed = EvaluateTrue("SetGuardRingHitFlag/GetGuardRingHitFlag", "representative true", "GetGuardRingHitFlag returns true after SetGuardRingHitFlag(true)", + H.GetGuardRingHitFlag() == true) && Passed; + H.SetGuardRingHitFlag(false); + Passed = EvaluateFalse("SetGuardRingHitFlag/GetGuardRingHitFlag", "representative false", "GetGuardRingHitFlag returns false after SetGuardRingHitFlag(false)", + H.GetGuardRingHitFlag()) && Passed; + + // ChargeLoss flag + H.SetChargeLossFlag(true); + Passed = EvaluateTrue("SetChargeLossFlag/GetChargeLossFlag", "representative true", "GetChargeLossFlag returns true after SetChargeLossFlag(true)", + H.GetChargeLossFlag() == true) && Passed; + H.SetChargeLossFlag(false); + Passed = EvaluateFalse("SetChargeLossFlag/GetChargeLossFlag", "representative false", "GetChargeLossFlag returns false after SetChargeLossFlag(false)", + H.GetChargeLossFlag()) && Passed; + + // StripHitMultipleTimesX + H.SetStripHitMultipleTimesX(true); + Passed = EvaluateTrue("SetStripHitMultipleTimesX/GetStripHitMultipleTimesX", "representative true", "GetStripHitMultipleTimesX returns true after setting true", + H.GetStripHitMultipleTimesX() == true) && Passed; + H.SetStripHitMultipleTimesX(false); + Passed = EvaluateFalse("SetStripHitMultipleTimesX/GetStripHitMultipleTimesX", "representative false", "GetStripHitMultipleTimesX returns false after setting false", + H.GetStripHitMultipleTimesX()) && Passed; + + // StripHitMultipleTimesY + H.SetStripHitMultipleTimesY(true); + Passed = EvaluateTrue("SetStripHitMultipleTimesY/GetStripHitMultipleTimesY", "representative true", "GetStripHitMultipleTimesY returns true after setting true", + H.GetStripHitMultipleTimesY() == true) && Passed; + H.SetStripHitMultipleTimesY(false); + Passed = EvaluateFalse("SetStripHitMultipleTimesY/GetStripHitMultipleTimesY", "representative false", "GetStripHitMultipleTimesY returns false after setting false", + H.GetStripHitMultipleTimesY()) && Passed; + + // ChargeSharingLV + H.SetChargeSharingLV(true); + Passed = EvaluateTrue("SetChargeSharingLV/GetChargeSharingLV", "representative true", "GetChargeSharingLV returns true after SetChargeSharingLV(true)", + H.GetChargeSharingLV() == true) && Passed; + H.SetChargeSharingLV(false); + Passed = EvaluateFalse("SetChargeSharingLV/GetChargeSharingLV", "representative false", "GetChargeSharingLV returns false after SetChargeSharingLV(false)", + H.GetChargeSharingLV()) && Passed; + + // ChargeSharingHV + H.SetChargeSharingHV(true); + Passed = EvaluateTrue("SetChargeSharingHV/GetChargeSharingHV", "representative true", "GetChargeSharingHV returns true after SetChargeSharingHV(true)", + H.GetChargeSharingHV() == true) && Passed; + H.SetChargeSharingHV(false); + Passed = EvaluateFalse("SetChargeSharingHV/GetChargeSharingHV", "representative false", "GetChargeSharingHV returns false after SetChargeSharingHV(false)", + H.GetChargeSharingHV()) && Passed; + + // ChargeSharing (general) + H.SetChargeSharing(true); + Passed = EvaluateTrue("SetChargeSharing/GetChargeSharing", "representative true", "GetChargeSharing returns true after SetChargeSharing(true)", + H.GetChargeSharing() == true) && Passed; + H.SetChargeSharing(false); + Passed = EvaluateFalse("SetChargeSharing/GetChargeSharing", "representative false", "GetChargeSharing returns false after SetChargeSharing(false)", + H.GetChargeSharing()) && Passed; + + // NoDepth + H.SetNoDepth(true); + Passed = EvaluateTrue("SetNoDepth/GetNoDepth", "representative true", "GetNoDepth returns true after SetNoDepth(true)", + H.GetNoDepth() == true) && Passed; + H.SetNoDepth(false); + Passed = EvaluateFalse("SetNoDepth/GetNoDepth", "representative false", "GetNoDepth returns false after SetNoDepth(false)", + H.GetNoDepth()) && Passed; + + // IsNondominantNeighborStrip + H.SetIsNondominantNeighborStrip(true); + Passed = EvaluateTrue("SetIsNondominantNeighborStrip/GetIsNondominantNeighborStrip", "representative true", "GetIsNondominantNeighborStrip returns true after setting true", + H.GetIsNondominantNeighborStrip() == true) && Passed; + H.SetIsNondominantNeighborStrip(false); + Passed = EvaluateFalse("SetIsNondominantNeighborStrip/GetIsNondominantNeighborStrip", "representative false", "GetIsNondominantNeighborStrip returns false after setting false", + H.GetIsNondominantNeighborStrip()) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNHit::TestStripHitManagement() +{ + bool Passed = true; + + // MHit does NOT own the strip hits — ownership and lifetime remain with the caller. + MStripHit SH0, SH1, SH2; + + MHit H; + Passed = Evaluate("GetNStripHits()", "empty", "GetNStripHits() returns 0 on a fresh MHit", + H.GetNStripHits(), (unsigned int) 0) && Passed; + + // AddStripHit + H.AddStripHit(&SH0); + Passed = Evaluate("AddStripHit()", "count after one add", "GetNStripHits() returns 1 after adding one strip hit", + H.GetNStripHits(), (unsigned int) 1) && Passed; + + H.AddStripHit(&SH1); + H.AddStripHit(&SH2); + Passed = Evaluate("AddStripHit()", "count after three adds", "GetNStripHits() returns 3 after adding three strip hits", + H.GetNStripHits(), (unsigned int) 3) && Passed; + + // GetStripHit — pointer identity + Passed = EvaluateTrue("GetStripHit()", "pointer identity 0", "GetStripHit(0) returns the pointer passed in the first AddStripHit()", + H.GetStripHit(0) == &SH0) && Passed; + Passed = EvaluateTrue("GetStripHit()", "pointer identity 1", "GetStripHit(1) returns the pointer passed in the second AddStripHit()", + H.GetStripHit(1) == &SH1) && Passed; + Passed = EvaluateTrue("GetStripHit()", "pointer identity 2", "GetStripHit(2) returns the pointer passed in the third AddStripHit()", + H.GetStripHit(2) == &SH2) && Passed; + + // GetStripHit out of bounds returns null (emits merr) + DisableDefaultStreams(); + MStripHit* OutOfBounds = H.GetStripHit(99); + EnableDefaultStreams(); + Passed = EvaluateTrue("GetStripHit()", "out of bounds returns null", "GetStripHit(99) returns nullptr when index is out of bounds", + OutOfBounds == nullptr) && Passed; + + // RemoveStripHit by index — removes SH1, leaving {SH0, SH2} + H.RemoveStripHit((unsigned int) 1); + Passed = Evaluate("RemoveStripHit(unsigned int)", "count after remove", "GetNStripHits() returns 2 after removing index 1", + H.GetNStripHits(), (unsigned int) 2) && Passed; + Passed = EvaluateTrue("RemoveStripHit(unsigned int)", "remaining pointer 0", "After removing index 1, GetStripHit(0) still returns the first strip hit", + H.GetStripHit(0) == &SH0) && Passed; + Passed = EvaluateTrue("RemoveStripHit(unsigned int)", "remaining pointer 1", "After removing index 1, GetStripHit(1) returns the third strip hit", + H.GetStripHit(1) == &SH2) && Passed; + + // RemoveStripHit by pointer — removes SH2, leaving {SH0} + H.RemoveStripHit(&SH2); + Passed = Evaluate("RemoveStripHit(MStripHit*)", "count after pointer remove", "GetNStripHits() returns 1 after removing by pointer", + H.GetNStripHits(), (unsigned int) 1) && Passed; + Passed = EvaluateTrue("RemoveStripHit(MStripHit*)", "remaining pointer", "After removing by pointer, GetStripHit(0) still returns the first strip hit", + H.GetStripHit(0) == &SH0) && Passed; + + // RemoveStripHit of a pointer not in the list is a no-op + MStripHit NotPresent; + H.RemoveStripHit(&NotPresent); + Passed = Evaluate("RemoveStripHit(MStripHit*)", "no-op for absent pointer", "Removing a pointer not in the list leaves the count unchanged", + H.GetNStripHits(), (unsigned int) 1) && Passed; + + // RemoveStripHit by index out of range is a no-op + H.RemoveStripHit((unsigned int) 99); + Passed = Evaluate("RemoveStripHit(unsigned int)", "no-op for out-of-range index", "Removing an out-of-range index leaves the count unchanged", + H.GetNStripHits(), (unsigned int) 1) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNHit::TestAddOrigins() +{ + bool Passed = true; + + MHit H; + + Passed = Evaluate("GetOrigins()", "empty default", "Origins list is empty after construction", + (unsigned int) H.GetOrigins().size(), (unsigned int) 0) && Passed; + + // Add {4, 1, 7, 2} — should be sorted to {1, 2, 4, 7} + H.AddOrigins({4, 1, 7, 2}); + vector Origins = H.GetOrigins(); + Passed = Evaluate("AddOrigins()", "count after first add", "Origins list has 4 entries after adding {4,1,7,2}", + (unsigned int) Origins.size(), (unsigned int) 4) && Passed; + if (Origins.size() == 4) { + Passed = Evaluate("AddOrigins()", "sorted element 0", "Origins are sorted: first element is 1", + Origins[0], 1) && Passed; + Passed = Evaluate("AddOrigins()", "sorted element 1", "Origins are sorted: second element is 2", + Origins[1], 2) && Passed; + Passed = Evaluate("AddOrigins()", "sorted element 2", "Origins are sorted: third element is 4", + Origins[2], 4) && Passed; + Passed = Evaluate("AddOrigins()", "sorted element 3", "Origins are sorted: fourth element is 7", + Origins[3], 7) && Passed; + } + + // Add {2, 5, 7} — 2 and 7 are duplicates; result should be {1, 2, 4, 5, 7} + H.AddOrigins({2, 5, 7}); + Origins = H.GetOrigins(); + Passed = Evaluate("AddOrigins()", "deduplicated count", "Origins list has 5 unique entries after adding {2,5,7} to {1,2,4,7}", + (unsigned int) Origins.size(), (unsigned int) 5) && Passed; + if (Origins.size() == 5) { + Passed = Evaluate("AddOrigins()", "dedup element 0", "Deduped origins: element 0 is 1", Origins[0], 1) && Passed; + Passed = Evaluate("AddOrigins()", "dedup element 1", "Deduped origins: element 1 is 2", Origins[1], 2) && Passed; + Passed = Evaluate("AddOrigins()", "dedup element 2", "Deduped origins: element 2 is 4", Origins[2], 4) && Passed; + Passed = Evaluate("AddOrigins()", "dedup element 3", "Deduped origins: element 3 is 5", Origins[3], 5) && Passed; + Passed = Evaluate("AddOrigins()", "dedup element 4", "Deduped origins: element 4 is 7", Origins[4], 7) && Passed; + } + + // Adding an empty list is a no-op + H.AddOrigins({}); + Passed = Evaluate("AddOrigins()", "empty add no-op", "Origins count is unchanged after adding an empty list", + (unsigned int) H.GetOrigins().size(), (unsigned int) 5) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNHit::TestStreamDatParse() +{ + bool Passed = true; + + // StreamDat writes with default ostream precision (6 significant digits), so use values + // that survive that round-trip exactly. + const double X = 2.0, Y = -3.0, Z = 5.0, E = 511.0; + const double LVE = 250.0, HVE = 261.0; + const double Tolerance = 1e-4; + + // --- Version 1: HT x y z energy ------------------------------------------- + { + MHit Writer; + Writer.SetPosition(MVector(X, Y, Z)); + Writer.SetEnergy(E); + + ostringstream Out; + Passed = EvaluateTrue("StreamDat() V1", "return value", "StreamDat(V1) returns true", + Writer.StreamDat(Out, 1)) && Passed; + + MString Line(Out.str().c_str()); + Passed = EvaluateTrue("StreamDat() V1", "starts with HT", "StreamDat(V1) output starts with 'HT'", + Line.BeginsWith("HT")) && Passed; + + MHit Reader; + Passed = EvaluateTrue("Parse() V1", "return value", "Parse() returns true for a V1 StreamDat line", + Reader.Parse(Line, 1)) && Passed; + + Passed = EvaluateNear("Parse() V1", "X coordinate", "Parse() restores the representative X coordinate", + Reader.GetPosition().GetX(), X, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V1", "Y coordinate", "Parse() restores the representative Y coordinate", + Reader.GetPosition().GetY(), Y, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V1", "Z coordinate", "Parse() restores the representative Z coordinate", + Reader.GetPosition().GetZ(), Z, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V1", "energy", "Parse() restores the representative energy", + Reader.GetEnergy(), E, Tolerance) && Passed; + } + + // --- Version 2: HT x y z energy + SH lines for each strip hit ------------- + { + MStripHit SH; + SH.SetDetectorID(0); + SH.SetStripID(41); + SH.IsLowVoltageStrip(true); + SH.SetADCUnits(4053.0); + SH.SetTAC(10452.0); + + MHit Writer; + Writer.SetPosition(MVector(X, Y, Z)); + Writer.SetEnergy(E); + Writer.AddStripHit(&SH); + + ostringstream Out; + Passed = EvaluateTrue("StreamDat() V2", "return value", "StreamDat(V2) returns true", + Writer.StreamDat(Out, 2)) && Passed; + + MString Output(Out.str().c_str()); + Passed = EvaluateTrue("StreamDat() V2", "starts with HT", "StreamDat(V2) output starts with 'HT'", + Output.BeginsWith("HT")) && Passed; + // V2 appends SH lines for each strip hit + Passed = EvaluateTrue("StreamDat() V2", "contains SH line", "StreamDat(V2) output contains an SH sub-line for the strip hit", + Output.Contains("SH")) && Passed; + + // Verify line structure: exactly 2 lines (HT then SH) + { + istringstream SS(Out.str()); + string L0, L1, Extra; + bool GotL0 = (bool) getline(SS, L0); + bool GotL1 = (bool) getline(SS, L1); + bool GotExtra = (bool) getline(SS, Extra); + Passed = EvaluateTrue("StreamDat() V2", "line count", "StreamDat(V2) produces exactly 2 lines for one strip hit", + GotL0 && GotL1 && !GotExtra) && Passed; + Passed = EvaluateTrue("StreamDat() V2", "SH line after HT", "StreamDat(V2) second line starts with 'SH'", + GotL1 && MString(L1.c_str()).BeginsWith("SH")) && Passed; + } + + // Round-trip: extract the HT line and verify Parse() restores the fields + string OutputStr2 = Out.str(); + size_t NL2 = OutputStr2.find('\n'); + MString HTLine2((NL2 != string::npos ? OutputStr2.substr(0, NL2) : OutputStr2).c_str()); + MHit Reader2; + Passed = EvaluateTrue("Parse() V2", "return value", "Parse() returns true for the HT line from StreamDat(V2)", + Reader2.Parse(HTLine2, 2)) && Passed; + Passed = EvaluateNear("Parse() V2", "X coordinate", "Parse() restores the representative X coordinate", + Reader2.GetPosition().GetX(), X, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V2", "Y coordinate", "Parse() restores the representative Y coordinate", + Reader2.GetPosition().GetY(), Y, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V2", "Z coordinate", "Parse() restores the representative Z coordinate", + Reader2.GetPosition().GetZ(), Z, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V2", "energy", "Parse() restores the representative energy", + Reader2.GetEnergy(), E, Tolerance) && Passed; + } + + // --- Version 3: HT x y z energy lvEnergy hvEnergy + SH lines -------------- + { + MStripHit SH; + SH.SetDetectorID(0); + SH.SetStripID(49); + SH.IsLowVoltageStrip(false); + SH.SetADCUnits(1780.0); + + MHit Writer; + Writer.SetPosition(MVector(X, Y, Z)); + Writer.SetEnergy(E); + Writer.SetLVEnergy(LVE); + Writer.SetHVEnergy(HVE); + Writer.AddStripHit(&SH); + + ostringstream Out; + Passed = EvaluateTrue("StreamDat() V3", "return value", "StreamDat(V3) returns true", + Writer.StreamDat(Out, 3)) && Passed; + + MString Output(Out.str().c_str()); + Passed = EvaluateTrue("StreamDat() V3", "starts with HT", "StreamDat(V3) output starts with 'HT'", + Output.BeginsWith("HT")) && Passed; + Passed = EvaluateTrue("StreamDat() V3", "contains LV energy", "StreamDat(V3) output contains the representative LV energy 250", + Output.Contains("250")) && Passed; + Passed = EvaluateTrue("StreamDat() V3", "contains HV energy", "StreamDat(V3) output contains the representative HV energy 261", + Output.Contains("261")) && Passed; + Passed = EvaluateTrue("StreamDat() V3", "contains SH line", "StreamDat(V3) output contains an SH sub-line for the strip hit", + Output.Contains("SH")) && Passed; + + // Verify line structure: exactly 2 lines (HT then SH) + { + istringstream SS(Out.str()); + string L0, L1, Extra; + bool GotL0 = (bool) getline(SS, L0); + bool GotL1 = (bool) getline(SS, L1); + bool GotExtra = (bool) getline(SS, Extra); + Passed = EvaluateTrue("StreamDat() V3", "line count", "StreamDat(V3) produces exactly 2 lines for one strip hit", + GotL0 && GotL1 && !GotExtra) && Passed; + Passed = EvaluateTrue("StreamDat() V3", "SH line after HT", "StreamDat(V3) second line starts with 'SH'", + GotL1 && MString(L1.c_str()).BeginsWith("SH")) && Passed; + } + + // Round-trip: extract the HT line and verify Parse() restores all six fields + string OutputStr3 = Out.str(); + size_t NL3 = OutputStr3.find('\n'); + MString HTLine3((NL3 != string::npos ? OutputStr3.substr(0, NL3) : OutputStr3).c_str()); + MHit Reader3; + Passed = EvaluateTrue("Parse() V3", "return value", "Parse() returns true for the HT line from StreamDat(V3)", + Reader3.Parse(HTLine3, 3)) && Passed; + Passed = EvaluateNear("Parse() V3", "X coordinate", "Parse() restores the representative X coordinate", + Reader3.GetPosition().GetX(), X, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V3", "Y coordinate", "Parse() restores the representative Y coordinate", + Reader3.GetPosition().GetY(), Y, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V3", "Z coordinate", "Parse() restores the representative Z coordinate", + Reader3.GetPosition().GetZ(), Z, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V3", "energy", "Parse() restores the representative energy", + Reader3.GetEnergy(), E, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V3", "LV energy", "Parse() restores the representative LV energy", + Reader3.GetLVEnergy(), LVE, Tolerance) && Passed; + Passed = EvaluateNear("Parse() V3", "HV energy", "Parse() restores the representative HV energy", + Reader3.GetHVEnergy(), HVE, Tolerance) && Passed; + } + + // --- Parse() returns false for a non-HT line ------------------------------ + { + MHit Dummy; + MString NonHTLine("UH 0 41 l 4053 10452 4"); + Passed = EvaluateFalse("Parse()", "non-HT line", "Parse() returns false for a line that does not start with 'HT'", + Dummy.Parse(NonHTLine)) && Passed; + } + + // --- Parse() returns false for an unsupported version number -------------- + { + MHit Dummy; + MString HTLine("HT 2.0 -3.0 5.0 511.0"); + Passed = EvaluateFalse("Parse()", "unsupported version 99", "Parse() returns false for an unsupported version number", + Dummy.Parse(HTLine, 99)) && Passed; + } + + // --- Parse() V1 on a reused object resets stale LV/HV energy ------------- + { + MHit H; + H.SetLVEnergy(250.0); + H.SetHVEnergy(261.0); + MString HTLine("HT 2.0 -3.0 5.0 511.0"); + Passed = EvaluateTrue("Parse() V1 clears stale LV/HV", "return value", "Parse() V1 returns true on a valid HT line", + H.Parse(HTLine, 1)) && Passed; + Passed = EvaluateTrue("Parse() V1 clears stale LV/HV", "LVEnergy reset", "Parse() V1 resets LVEnergy to g_DoubleNotDefined", + H.GetLVEnergy() == g_DoubleNotDefined) && Passed; + Passed = EvaluateTrue("Parse() V1 clears stale LV/HV", "HVEnergy reset", "Parse() V1 resets HVEnergy to g_DoubleNotDefined", + H.GetHVEnergy() == g_DoubleNotDefined) && Passed; + } + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNHit::TestStreamEvta() +{ + bool Passed = true; + + // StreamEvta format: HT 3;x;y;z;energy;posresX;posresY;posresZ;energyRes[;origin...] + // Origins are the intersection of LV-strip origins and HV-strip origins. + // If the intersection is empty but either side has origins, the union is used instead. + + // --- Case 1: LV origins {1,2} ∩ HV origins {2,3} = {2} ------------------- + // Coordinates chosen so that ";1" and ";3" do not appear as substrings of + // any serialized field value, making the Contains() checks unambiguous. + { + MStripHit LV, HV; + LV.IsLowVoltageStrip(true); + LV.AddOrigins({1, 2}); + HV.IsLowVoltageStrip(false); + HV.AddOrigins({2, 3}); + + MHit H; + H.SetPosition(MVector(5.0, 6.0, 7.0)); + H.SetEnergy(511.0); + H.SetPositionResolution(MVector(0.5, 0.5, 0.5)); + H.SetEnergyResolution(4.0); + H.AddStripHit(&LV); + H.AddStripHit(&HV); + + ostringstream Out; + H.StreamEvta(Out); + MString S(Out.str().c_str()); + + Passed = EvaluateTrue("StreamEvta()", "starts with HT 3", "StreamEvta() output starts with 'HT 3'", + S.BeginsWith("HT 3")) && Passed; + // Origin 2 is in the intersection and must appear + Passed = EvaluateTrue("StreamEvta()", "intersection origin 2", "StreamEvta() output contains the intersecting origin 2", + S.Contains(";2")) && Passed; + // Origins 1 and 3 are not in the intersection and must not appear as origins + // (They may appear as part of position/energy values, so search for ;1 and ;3 specifically) + Passed = EvaluateTrue("StreamEvta()", "non-intersection origin 1 absent", "StreamEvta() output does not contain LV-only origin ;1", + S.Contains(";1") == false) && Passed; + Passed = EvaluateTrue("StreamEvta()", "non-intersection origin 3 absent", "StreamEvta() output does not contain HV-only origin ;3", + S.Contains(";3") == false) && Passed; + } + + // --- Case 2: LV origins {1} ∩ HV origins {2} = {} → fallback to union {1,2} --- + { + MStripHit LV, HV; + LV.IsLowVoltageStrip(true); + LV.AddOrigins({1}); + HV.IsLowVoltageStrip(false); + HV.AddOrigins({2}); + + MHit H; + H.SetPosition(MVector(0.0, 0.0, 0.0)); + H.SetEnergy(300.0); + H.SetPositionResolution(MVector(0.0, 0.0, 0.0)); + H.SetEnergyResolution(0.0); + H.AddStripHit(&LV); + H.AddStripHit(&HV); + + ostringstream Out; + H.StreamEvta(Out); + MString S(Out.str().c_str()); + + // Both 1 and 2 must appear because the intersection is empty → union fallback + Passed = EvaluateTrue("StreamEvta()", "union fallback origin 1", "StreamEvta() output contains union-fallback origin ;1 when LV/HV intersection is empty", + S.Contains(";1")) && Passed; + Passed = EvaluateTrue("StreamEvta()", "union fallback origin 2", "StreamEvta() output contains union-fallback origin ;2 when LV/HV intersection is empty", + S.Contains(";2")) && Passed; + } + + // --- Case 3: No strip hits → no origins appended -------------------------- + { + MHit H; + H.SetPosition(MVector(0.0, 0.0, 0.0)); + H.SetEnergy(0.0); + H.SetPositionResolution(MVector(0.0, 0.0, 0.0)); + H.SetEnergyResolution(0.0); + + ostringstream Out; + H.StreamEvta(Out); + MString S(Out.str().c_str()); + + // With no strip hits there are no origins: output ends with energyRes + newline + // Count semicolons: HT 3;x;y;z;e;prx;pry;prz;er → exactly 8 + unsigned int Semicolons = 0; + for (size_t i = 0; i < S.Length(); ++i) { + if (S[i] == ';') ++Semicolons; + } + Passed = Evaluate("StreamEvta()", "semicolons with no origins", "StreamEvta() emits exactly 8 semicolons when there are no strip hits", + Semicolons, (unsigned int) 8) && Passed; + } + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +int main() +{ + UTNHit Test; + return Test.Run() == true ? 0 : 1; +} diff --git a/unittests/UTNModuleLoaderMeasurementsHDF.cxx b/unittests/UTNModuleLoaderMeasurementsHDF.cxx new file mode 100644 index 00000000..edc45cfe --- /dev/null +++ b/unittests/UTNModuleLoaderMeasurementsHDF.cxx @@ -0,0 +1,619 @@ +/* + * UTNModuleLoaderMeasurementsHDF.cxx + * + * Copyright (C) by Andreas Zoglauer. + * All rights reserved. + * + * Please see the source-file for the copyright-notice. + * + */ + + +// Standard libs: +#include +using namespace std; + +// MEGAlib: +#include "MGlobal.h" +#include "MFile.h" +#include "MUnitTest.h" +#include "MXmlNode.h" + +// Nuclearizer: +#include "MModuleLoaderMeasurementsHDF.h" +#include "MReadOutAssembly.h" +#include "MStripHit.h" + + +//! Unit test class for MModuleLoaderMeasurementsHDF +class UTNModuleLoaderMeasurementsHDF : public MUnitTest +{ +public: + UTNModuleLoaderMeasurementsHDF() : MUnitTest("UTNModuleLoaderMeasurementsHDF") {} + virtual ~UTNModuleLoaderMeasurementsHDF() {} + + virtual bool Run(); + +private: + //! Test getter and setter methods + bool TestGettersSetters(); + //! Test Initialize() fails when the HDF5 file does not exist + bool TestInitializeMissingHDF5(); + //! Test Initialize() fails when the strip map file does not exist + bool TestInitializeMissingStripMap(); + //! Test XML configuration round-trip + bool TestXmlRoundTrip(); + //! End-to-end test using the committed test data + bool TestEndToEnd(); + //! Test HDF v2 event boundaries using committed data + bool TestV2EventBoundaries(); + + //! Return the path to a nuclearizer test data directory, or "" if NUCLEARIZER is not set + MString GetTestDataDirectory(const MString& DataSet) const; +}; + + +//////////////////////////////////////////////////////////////////////////////// + + +MString UTNModuleLoaderMeasurementsHDF::GetTestDataDirectory(const MString& DataSet) const +{ + const char* NuclearizerEnv = getenv("NUCLEARIZER"); + if (NuclearizerEnv == nullptr || NuclearizerEnv[0] == '\0') return ""; + return MString(NuclearizerEnv) + "/resource/unittestdata/" + DataSet; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNModuleLoaderMeasurementsHDF::Run() +{ + bool Passed = true; + + Passed = TestGettersSetters() && Passed; + Passed = TestInitializeMissingHDF5() && Passed; + Passed = TestInitializeMissingStripMap() && Passed; + Passed = TestXmlRoundTrip() && Passed; + Passed = TestEndToEnd() && Passed; + Passed = TestV2EventBoundaries() && Passed; + + // ShowOptionsGUI() opens an interactive ROOT GUI; it cannot be exercised in a + // headless unit test and is intentionally left uncovered. + + Summarize(); + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNModuleLoaderMeasurementsHDF::TestGettersSetters() +{ + bool Passed = true; + + MModuleLoaderMeasurementsHDF Loader; + + Loader.SetFileName("mydata.hdf5"); + Passed = Evaluate("SetFileName/GetFileName", "representative file name", "GetFileName returns the value passed to SetFileName", + Loader.GetFileName(), MString("mydata.hdf5")) && Passed; + + Loader.SetFileNameStripMap("mymap.map"); + Passed = Evaluate("SetFileNameStripMap/GetFileNameStripMap", "representative strip map name", "GetFileNameStripMap returns the value passed to SetFileNameStripMap", + Loader.GetFileNameStripMap(), MString("mymap.map")) && Passed; + + Loader.SetLoadContinuationFiles(true); + Passed = EvaluateTrue("SetLoadContinuationFiles/GetLoadContinuationFiles", "representative true", "GetLoadContinuationFiles returns true after SetLoadContinuationFiles(true)", + Loader.GetLoadContinuationFiles() == true) && Passed; + + Loader.SetLoadContinuationFiles(false); + Passed = EvaluateTrue("SetLoadContinuationFiles/GetLoadContinuationFiles", "representative false", "GetLoadContinuationFiles returns false after SetLoadContinuationFiles(false)", + Loader.GetLoadContinuationFiles() == false) && Passed; + + Loader.SetIncludeNearestNeighbor(true); + Passed = EvaluateTrue("SetIncludeNearestNeighbor/GetIncludeNearestNeighbor", "representative true", "GetIncludeNearestNeighbor returns true after SetIncludeNearestNeighbor(true)", + Loader.GetIncludeNearestNeighbor() == true) && Passed; + + Loader.SetIncludeNearestNeighbor(false); + Passed = EvaluateTrue("SetIncludeNearestNeighbor/GetIncludeNearestNeighbor", "representative false", "GetIncludeNearestNeighbor returns false after SetIncludeNearestNeighbor(false)", + Loader.GetIncludeNearestNeighbor() == false) && Passed; + + // Clone() returns a new, distinct instance + MModuleLoaderMeasurementsHDF* Cloned = Loader.Clone(); + Passed = EvaluateTrue("Clone()", "new instance", "Clone() returns a non-null pointer", + Cloned != nullptr) && Passed; + Passed = EvaluateTrue("Clone()", "distinct instance", "Clone() returns an object distinct from the original", + Cloned != &Loader) && Passed; + delete Cloned; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNModuleLoaderMeasurementsHDF::TestInitializeMissingHDF5() +{ + bool Passed = true; + + const MString TestDataDir = GetTestDataDirectory("542-1"); + if (TestDataDir.IsEmpty()) { + mout<<"UTNModuleLoaderMeasurementsHDF::TestInitializeMissingHDF5: NUCLEARIZER environment variable is not set - skipping test"<GetID(), (unsigned long) 1) && Passed; + + Passed = Evaluate("AnalyzeEvent()", "event 1 hit count", "The first event has the representative 4 strip hits", + (unsigned int) Event1->GetNStripHits(), (unsigned int) 4) && Passed; + + if (Event1->GetNStripHits() == 4) { + // Hit 0: strip 41 low-voltage, ADC=4053, TAC=10452 + MStripHit* H0 = Event1->GetStripHit(0); + Passed = Evaluate("AnalyzeEvent()", "event 1 hit 0 detector", "Event 1 hit 0 has the representative detector ID 0", + H0->GetDetectorID(), 0u) && Passed; + Passed = Evaluate("AnalyzeEvent()", "event 1 hit 0 strip", "Event 1 hit 0 has the representative strip ID 41", + H0->GetStripID(), 41u) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "event 1 hit 0 is LV", "Event 1 hit 0 is a representative low-voltage strip", + H0->IsLowVoltageStrip() == true) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 1 hit 0 ADC", "Event 1 hit 0 has the representative ADC value 4053", + H0->GetADCUnits(), 4053.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 1 hit 0 TAC", "Event 1 hit 0 has the representative TAC value 10452", + H0->GetTAC(), 10452.0, 0.5) && Passed; + + // Hit 1: strip 42 low-voltage, ADC=1727, TAC=10539 + MStripHit* H1 = Event1->GetStripHit(1); + Passed = Evaluate("AnalyzeEvent()", "event 1 hit 1 detector", "Event 1 hit 1 has the representative detector ID 0", + H1->GetDetectorID(), 0u) && Passed; + Passed = Evaluate("AnalyzeEvent()", "event 1 hit 1 strip", "Event 1 hit 1 has the representative strip ID 42", + H1->GetStripID(), 42u) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "event 1 hit 1 is LV", "Event 1 hit 1 is a representative low-voltage strip", + H1->IsLowVoltageStrip() == true) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 1 hit 1 ADC", "Event 1 hit 1 has the representative ADC value 1727", + H1->GetADCUnits(), 1727.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 1 hit 1 TAC", "Event 1 hit 1 has the representative TAC value 10539", + H1->GetTAC(), 10539.0, 0.5) && Passed; + + // Hit 2: strip 49 high-voltage, ADC=1780, TAC=10251 + MStripHit* H2 = Event1->GetStripHit(2); + Passed = Evaluate("AnalyzeEvent()", "event 1 hit 2 detector", "Event 1 hit 2 has the representative detector ID 0", + H2->GetDetectorID(), 0u) && Passed; + Passed = Evaluate("AnalyzeEvent()", "event 1 hit 2 strip", "Event 1 hit 2 has the representative strip ID 49", + H2->GetStripID(), 49u) && Passed; + Passed = EvaluateFalse("AnalyzeEvent()", "event 1 hit 2 is HV", "Event 1 hit 2 is a representative high-voltage strip", + H2->IsLowVoltageStrip()) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 1 hit 2 ADC", "Event 1 hit 2 has the representative ADC value 1780", + H2->GetADCUnits(), 1780.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 1 hit 2 TAC", "Event 1 hit 2 has the representative TAC value 10251", + H2->GetTAC(), 10251.0, 0.5) && Passed; + + // Hit 3: strip 50 high-voltage, ADC=4203, TAC=10105 + MStripHit* H3 = Event1->GetStripHit(3); + Passed = Evaluate("AnalyzeEvent()", "event 1 hit 3 detector", "Event 1 hit 3 has the representative detector ID 0", + H3->GetDetectorID(), 0u) && Passed; + Passed = Evaluate("AnalyzeEvent()", "event 1 hit 3 strip", "Event 1 hit 3 has the representative strip ID 50", + H3->GetStripID(), 50u) && Passed; + Passed = EvaluateFalse("AnalyzeEvent()", "event 1 hit 3 is HV", "Event 1 hit 3 is a representative high-voltage strip", + H3->IsLowVoltageStrip()) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 1 hit 3 ADC", "Event 1 hit 3 has the representative ADC value 4203", + H3->GetADCUnits(), 4203.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 1 hit 3 TAC", "Event 1 hit 3 has the representative TAC value 10105", + H3->GetTAC(), 10105.0, 0.5) && Passed; + } + delete Event1; + + // ----- Event 2: 2 strip hits ----------------------------------------------- + // Reference ROA: + // UH 0 53 l 1685 4653 0 + // UH 0 12 h 1651 11605 4 + + MReadOutAssembly* Event2 = new MReadOutAssembly(); + Passed = EvaluateTrue("AnalyzeEvent()", "event 2 return value", "AnalyzeEvent() returns true for the second event", + Loader.AnalyzeEvent(Event2)) && Passed; + + Passed = Evaluate("AnalyzeEvent()", "event 2 ID", "The second event has the representative ID 2", + (unsigned long) Event2->GetID(), (unsigned long) 2) && Passed; + + Passed = Evaluate("AnalyzeEvent()", "event 2 hit count", "The second event has the representative 2 strip hits", + (unsigned int) Event2->GetNStripHits(), (unsigned int) 2) && Passed; + + if (Event2->GetNStripHits() == 2) { + // Hit 0: strip 53 low-voltage, ADC=1685, TAC=4653 + MStripHit* H0 = Event2->GetStripHit(0); + Passed = Evaluate("AnalyzeEvent()", "event 2 hit 0 strip", "Event 2 hit 0 has the representative strip ID 53", + H0->GetStripID(), 53u) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "event 2 hit 0 is LV", "Event 2 hit 0 is a representative low-voltage strip", + H0->IsLowVoltageStrip() == true) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 2 hit 0 ADC", "Event 2 hit 0 has the representative ADC value 1685", + H0->GetADCUnits(), 1685.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 2 hit 0 TAC", "Event 2 hit 0 has the representative TAC value 4653", + H0->GetTAC(), 4653.0, 0.5) && Passed; + + // Hit 1: strip 12 high-voltage, ADC=1651, TAC=11605 + MStripHit* H1 = Event2->GetStripHit(1); + Passed = Evaluate("AnalyzeEvent()", "event 2 hit 1 strip", "Event 2 hit 1 has the representative strip ID 12", + H1->GetStripID(), 12u) && Passed; + Passed = EvaluateFalse("AnalyzeEvent()", "event 2 hit 1 is HV", "Event 2 hit 1 is a representative high-voltage strip", + H1->IsLowVoltageStrip()) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 2 hit 1 ADC", "Event 2 hit 1 has the representative ADC value 1651", + H1->GetADCUnits(), 1651.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 2 hit 1 TAC", "Event 2 hit 1 has the representative TAC value 11605", + H1->GetTAC(), 11605.0, 0.5) && Passed; + } + delete Event2; + + // ----- Event 3: 2 guard-ring strip hits ------------------------------------ + // Reference ROA: + // UH 0 64 l 1646 0 5 + // UH 0 64 h 1829 0 5 + + MReadOutAssembly* Event3 = new MReadOutAssembly(); + Passed = EvaluateTrue("AnalyzeEvent()", "event 3 return value", "AnalyzeEvent() returns true for the third event", + Loader.AnalyzeEvent(Event3)) && Passed; + + Passed = Evaluate("AnalyzeEvent()", "event 3 ID", "The third AnalyzeEvent() call produces the representative event ID 3", + (unsigned long) Event3->GetID(), (unsigned long) 3) && Passed; + + Passed = Evaluate("AnalyzeEvent()", "event 3 hit count", "Event ID 3 has the representative 2 strip hits", + (unsigned int) Event3->GetNStripHits(), (unsigned int) 2) && Passed; + + if (Event3->GetNStripHits() == 2) { + // Hit 0: strip 64 low-voltage guard ring, ADC=1646, TAC=0 + MStripHit* H0 = Event3->GetStripHit(0); + Passed = Evaluate("AnalyzeEvent()", "event 3 hit 0 strip", "Event 3 hit 0 has the representative strip ID 64", + H0->GetStripID(), 64u) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "event 3 hit 0 is LV", "Event 3 hit 0 is a representative low-voltage strip", + H0->IsLowVoltageStrip() == true) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "event 3 hit 0 is guard ring", "Event 3 hit 0 is a representative guard-ring strip", + H0->IsGuardRing() == true) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 3 hit 0 ADC", "Event 3 hit 0 has the representative ADC value 1646", + H0->GetADCUnits(), 1646.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 3 hit 0 TAC", "Event 3 hit 0 has the representative TAC value 0", + H0->GetTAC(), 0.0, 0.5) && Passed; + + // Hit 1: strip 64 high-voltage guard ring, ADC=1829, TAC=0 + MStripHit* H1 = Event3->GetStripHit(1); + Passed = Evaluate("AnalyzeEvent()", "event 3 hit 1 strip", "Event 3 hit 1 has the representative strip ID 64", + H1->GetStripID(), 64u) && Passed; + Passed = EvaluateFalse("AnalyzeEvent()", "event 3 hit 1 is HV", "Event 3 hit 1 is a representative high-voltage strip", + H1->IsLowVoltageStrip()) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "event 3 hit 1 is guard ring", "Event 3 hit 1 is a representative guard-ring strip", + H1->IsGuardRing() == true) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 3 hit 1 ADC", "Event 3 hit 1 has the representative ADC value 1829", + H1->GetADCUnits(), 1829.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "event 3 hit 1 TAC", "Event 3 hit 1 has the representative TAC value 0", + H1->GetTAC(), 0.0, 0.5) && Passed; + } + delete Event3; + + Loader.Finalize(); + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNModuleLoaderMeasurementsHDF::TestV2EventBoundaries() +{ + bool Passed = true; + + const MString TestDataDir = GetTestDataDirectory("406-1"); + if (TestDataDir.IsEmpty()) { + mout<<"UTNModuleLoaderMeasurementsHDF::TestV2EventBoundaries: NUCLEARIZER environment variable is not set - skipping test"<GetID(), ExpectedIDs[e]) && Passed; + + Passed = Evaluate("AnalyzeEvent()", MString("HDF v2 event ") + (e+1) + " hit count", + "AnalyzeEvent() keeps one HDF /Events row as one MReadOutAssembly with the expected strip-hit count", + (unsigned int) Event->GetNStripHits(), ExpectedHitCountsWithNN[e]) && Passed; + + Passed = EvaluateNear("AnalyzeEvent()", MString("HDF v2 event ") + (e+1) + " UTC time", + "AnalyzeEvent() converts the HDF v2 SPW time code into the expected UTC event time", + Event->GetTimeUTC().GetAsSeconds(), ExpectedTimes[e], 1.0e-6) && Passed; + + if (e == 0 && Event->GetNStripHits() == 1) { + MStripHit* Hit = Event->GetStripHit(0); + Passed = Evaluate("AnalyzeEvent()", "HDF v2 event 1 guard detector", + "The first V2 FEE hit is decoded through the strip map into detector 0", + Hit->GetDetectorID(), 0u) && Passed; + Passed = Evaluate("AnalyzeEvent()", "HDF v2 event 1 guard strip", + "The first V2 FEE hit is decoded through the strip map into strip 64", + Hit->GetStripID(), 64u) && Passed; + Passed = EvaluateFalse("AnalyzeEvent()", "HDF v2 event 1 guard side", + "The first V2 FEE hit is decoded as a high-voltage strip", + Hit->IsLowVoltageStrip()) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "HDF v2 event 1 guard ADC", + "The first V2 FEE hit keeps the representative ADC value", + Hit->GetADCUnits(), 1738.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "HDF v2 event 1 guard TAC", + "The first V2 FEE hit keeps the representative timing value", + Hit->GetTAC(), 0.0, 0.5) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "HDF v2 event 1 guard flag", + "The V2 hit_type 2 value is decoded as a guard-ring hit", + Hit->IsGuardRing()) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "HDF v2 event 1 guard veto", + "A V2 guard-ring hit sets the read-out assembly guard-ring veto", + Event->GetGuardRingVeto()) && Passed; + Passed = EvaluateFalse("AnalyzeEvent()", "HDF v2 event 1 nearest-neighbor flag", + "A V2 guard-ring hit is not decoded as a nearest-neighbor hit", + Hit->IsNearestNeighbor()) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "HDF v2 event 1 fast timing flag", + "The V2 timing_type 1 value is decoded as fast timing", + Hit->HasFastTiming()) && Passed; + } + + if (e == 1 && Event->GetNStripHits() == 7) { + MStripHit* NearestNeighbor = Event->GetStripHit(0); + Passed = Evaluate("AnalyzeEvent()", "HDF v2 event 2 nearest-neighbor strip", + "The first event-2 V2 FEE hit is decoded through the strip map into strip 16", + NearestNeighbor->GetStripID(), 16u) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "HDF v2 event 2 nearest-neighbor side", + "The first event-2 V2 FEE hit is decoded as a low-voltage strip", + NearestNeighbor->IsLowVoltageStrip()) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "HDF v2 event 2 nearest-neighbor ADC", + "The first event-2 V2 FEE hit keeps the representative ADC value", + NearestNeighbor->GetADCUnits(), 1538.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "HDF v2 event 2 nearest-neighbor TAC", + "The first event-2 V2 FEE hit keeps the representative timing value", + NearestNeighbor->GetTAC(), 8424.0, 0.5) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "HDF v2 event 2 nearest-neighbor flag", + "The V2 hit_type 1 value is decoded as a nearest-neighbor hit", + NearestNeighbor->IsNearestNeighbor()) && Passed; + Passed = EvaluateFalse("AnalyzeEvent()", "HDF v2 event 2 nearest-neighbor fast timing", + "The V2 timing_type 0 value is decoded as non-fast timing", + NearestNeighbor->HasFastTiming()) && Passed; + + MStripHit* FastTiming = Event->GetStripHit(5); + Passed = Evaluate("AnalyzeEvent()", "HDF v2 event 2 fast strip", + "The representative event-2 fast-timing hit is decoded through the strip map into strip 60", + FastTiming->GetStripID(), 60u) && Passed; + Passed = EvaluateFalse("AnalyzeEvent()", "HDF v2 event 2 fast side", + "The representative event-2 fast-timing hit is decoded as a high-voltage strip", + FastTiming->IsLowVoltageStrip()) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "HDF v2 event 2 fast ADC", + "The representative event-2 fast-timing hit keeps the ADC value", + FastTiming->GetADCUnits(), 2132.0, 0.5) && Passed; + Passed = EvaluateNear("AnalyzeEvent()", "HDF v2 event 2 fast TAC", + "The representative event-2 fast-timing hit keeps the timing value", + FastTiming->GetTAC(), 10993.0, 0.5) && Passed; + Passed = EvaluateFalse("AnalyzeEvent()", "HDF v2 event 2 fast nearest-neighbor flag", + "The representative event-2 fast-timing hit is not a nearest-neighbor hit", + FastTiming->IsNearestNeighbor()) && Passed; + Passed = EvaluateTrue("AnalyzeEvent()", "HDF v2 event 2 fast timing flag", + "The representative event-2 timing_type 1 value is decoded as fast timing", + FastTiming->HasFastTiming()) && Passed; + } + + delete Event; + } + + Loader.Finalize(); + + MModuleLoaderMeasurementsHDF NoNearestNeighbors; + NoNearestNeighbors.SetFileName(HDF5File); + NoNearestNeighbors.SetFileNameStripMap(StripMapFile); + NoNearestNeighbors.SetLoadContinuationFiles(false); + NoNearestNeighbors.SetIncludeNearestNeighbor(false); + + Passed = EvaluateTrue("Initialize()", "HDF v2 without nearest neighbors", + "Initialize() succeeds with the representative HDF v2 file when nearest-neighbor hits are disabled", + NoNearestNeighbors.Initialize()) && Passed; + if (Passed == false) return false; + + const unsigned int ExpectedHitCountsWithoutNN[3] = { 1, 3, 2 }; + + for (unsigned int e = 0; e < 3; ++e) { + MReadOutAssembly* Event = new MReadOutAssembly(); + Passed = EvaluateTrue("AnalyzeEvent()", MString("HDF v2 no-NN event ") + (e+1), + "AnalyzeEvent() returns true for the next HDF v2 event with nearest-neighbor hits disabled", + NoNearestNeighbors.AnalyzeEvent(Event)) && Passed; + + Passed = Evaluate("AnalyzeEvent()", MString("HDF v2 no-NN event ") + (e+1) + " ID", + "Disabling nearest-neighbor hits does not merge or skip the HDF v2 event boundary", + (unsigned long) Event->GetID(), ExpectedIDs[e]) && Passed; + + Passed = Evaluate("AnalyzeEvent()", MString("HDF v2 no-NN event ") + (e+1) + " hit count", + "Disabling nearest-neighbor hits removes only the V2 hit_type 1 entries from the current event", + (unsigned int) Event->GetNStripHits(), ExpectedHitCountsWithoutNN[e]) && Passed; + + for (unsigned int h = 0; h < Event->GetNStripHits(); ++h) { + Passed = EvaluateFalse("AnalyzeEvent()", MString("HDF v2 no-NN event ") + (e+1) + " hit nearest-neighbor flag", + "No retained strip hit is marked as a nearest-neighbor hit when nearest-neighbor hits are disabled", + Event->GetStripHit(h)->IsNearestNeighbor()) && Passed; + } + + delete Event; + } + + NoNearestNeighbors.Finalize(); + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +int main(int argc, char** argv) +{ + if (MGlobal::Initialize("UTNModuleLoaderMeasurementsHDF", "Unit tests for MModuleLoaderMeasurementsHDF") == false) return 1; + + UTNModuleLoaderMeasurementsHDF Test; + return Test.Run() == true ? 0 : 1; +} diff --git a/unittests/UTNReadOutAssembly.cxx b/unittests/UTNReadOutAssembly.cxx new file mode 100644 index 00000000..986dfba6 --- /dev/null +++ b/unittests/UTNReadOutAssembly.cxx @@ -0,0 +1,1468 @@ +/* + * UTNReadOutAssembly.cxx + * + * Copyright (C) by Andreas Zoglauer. + * All rights reserved. + * + * Please see the source-file for the copyright-notice. + * + */ + + +// Standard libs: +#include +#include +#include +#include +using namespace std; + +// MEGAlib: +#include "MGlobal.h" +#include "MUnitTest.h" +#include "MTime.h" +#include "MSimEvent.h" +#include "MPhysicalEvent.h" + +// Nuclearizer: +#include "MReadOutAssembly.h" +#include "MStripHit.h" +#include "MHit.h" +#include "MDEEStripHit.h" +#include "MDEECrystalHit.h" + + +//! Unit test class for MReadOutAssembly +class UTNReadOutAssembly : public MUnitTest +{ +public: + UTNReadOutAssembly() : MUnitTest("UTNReadOutAssembly") {} + virtual ~UTNReadOutAssembly() {} + + virtual bool Run(); + +private: + //! Test default construction and Clear() state + bool TestDefaultConstruction(); + //! Test individual getter/setter pairs + bool TestGettersSetters(); + //! Test analysis-progress OR accumulation + bool TestAnalysisProgress(); + //! Test strip hit list management and InDetector tracking + bool TestStripHitManagement(); + //! Test hit list management + bool TestHitManagement(); + //! Test T-only, crystal, and guardring hit list management + bool TestOtherHitCollections(); + //! Test error/quality flags and IsGood/IsBad/IsVeto + bool TestEventFlags(); + //! Test Clear() resets collections and ownership + bool TestClearOwnership(); + //! Test Parse() of HT/SH/BD lines and version forwarding + bool TestParse(); + //! Test GetNextFromDatFile() with well-formed and malformed events + bool TestGetNextFromDatFile(); + //! Test StreamDat() V1/V2/V3 output format + bool TestStreamDat(); + //! Test StreamEvta() and StreamTra() output format + bool TestStreamEvta(); + //! Test StreamRoa() output: UH lines, BD flags, PQ terminator + bool TestStreamRoa(); + //! Test unique assembly IDs across instances and across Clear() + bool TestAssemblyIDUniqueness(); +}; + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::Run() +{ + bool Passed = true; + + Passed = TestDefaultConstruction() && Passed; + Passed = TestGettersSetters() && Passed; + Passed = TestAnalysisProgress() && Passed; + Passed = TestStripHitManagement() && Passed; + Passed = TestHitManagement() && Passed; + Passed = TestOtherHitCollections() && Passed; + Passed = TestEventFlags() && Passed; + Passed = TestClearOwnership() && Passed; + Passed = TestParse() && Passed; + Passed = TestGetNextFromDatFile() && Passed; + Passed = TestStreamDat() && Passed; + Passed = TestStreamEvta() && Passed; + Passed = TestStreamRoa() && Passed; + Passed = TestAssemblyIDUniqueness() && Passed; + + Summarize(); + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestDefaultConstruction() +{ + bool Passed = true; + + MReadOutAssembly R; + + // ID is reset by Clear() in constructor + Passed = EvaluateTrue("GetID()", "default after construction", "GetID() returns g_UnsignedIntNotDefined after construction", + R.GetID() == g_UnsignedIntNotDefined) && Passed; + + // Time fields + Passed = EvaluateTrue("GetTimeRTS()", "default after construction", "GetTimeRTS() returns 0 after construction", + R.GetTimeRTS() == MTime(0)) && Passed; + Passed = EvaluateTrue("GetTimeUTC()", "default after construction", "GetTimeUTC() returns 0 after construction", + R.GetTimeUTC() == MTime(0)) && Passed; + + // Veto / trigger flags after Clear() + // Note: Clear() explicitly sets m_Trigger = true (not false) + Passed = EvaluateTrue("GetTrigger()", "true after Clear", "GetTrigger() returns true after Clear()", + R.GetTrigger() == true) && Passed; + Passed = EvaluateFalse("GetGuardRingVeto()", "default false", "GetGuardRingVeto() returns false after construction", + R.GetGuardRingVeto()) && Passed; + Passed = EvaluateFalse("GetShieldVeto()", "default false", "GetShieldVeto() returns false after construction", + R.GetShieldVeto()) && Passed; + + // Error / quality flags + Passed = EvaluateFalse("HasEnergyCalibrationError()", "default false", "HasEnergyCalibrationError() returns false after construction", + R.HasEnergyCalibrationError()) && Passed; + Passed = EvaluateFalse("HasStripPairingError()", "default false", "HasStripPairingError() returns false after construction", + R.HasStripPairingError()) && Passed; + Passed = EvaluateFalse("HasDepthCalibrationError()", "default false", "HasDepthCalibrationError() returns false after construction", + R.HasDepthCalibrationError()) && Passed; + Passed = EvaluateFalse("HasEventReconstructionError()", "default false", "HasEventReconstructionError() returns false after construction", + R.HasEventReconstructionError()) && Passed; + Passed = EvaluateFalse("HasStripHitBelowThreshold_QualityFlag()", "default false", "HasStripHitBelowThreshold_QualityFlag() returns false after construction", + R.HasStripHitBelowThreshold_QualityFlag()) && Passed; + Passed = EvaluateFalse("HasStripPairing_QualityFlag()", "default false", "HasStripPairing_QualityFlag() returns false after construction", + R.HasStripPairing_QualityFlag()) && Passed; + Passed = EvaluateFalse("IsFilteredOut()", "default false", "IsFilteredOut() returns false after construction", + R.IsFilteredOut()) && Passed; + + // IsGood / IsBad / IsVeto + Passed = EvaluateTrue("IsGood()", "default true", "IsGood() returns true after construction", + R.IsGood() == true) && Passed; + Passed = EvaluateFalse("IsBad()", "default false", "IsBad() returns false after construction", + R.IsBad()) && Passed; + Passed = EvaluateFalse("IsVeto()", "default false", "IsVeto() returns false after construction", + R.IsVeto()) && Passed; + + // Collections empty + Passed = Evaluate("GetNStripHits()", "empty after construction", "GetNStripHits() returns 0 after construction", + R.GetNStripHits(), (unsigned int) 0) && Passed; + Passed = Evaluate("GetNHits()", "empty after construction", "GetNHits() returns 0 after construction", + R.GetNHits(), (unsigned int) 0) && Passed; + Passed = Evaluate("GetNCrystalHits()", "empty after construction", "GetNCrystalHits() returns 0 after construction", + R.GetNCrystalHits(), (unsigned int) 0) && Passed; + Passed = Evaluate("GetNGuardringHits()", "empty after construction", "GetNGuardringHits() returns 0 after construction", + R.GetNGuardringHits(), (unsigned int) 0) && Passed; + + // AssemblyID is set in the constructor (atomic counter) and is > 0 + Passed = EvaluateTrue("GetAssemblyID()", "greater than zero", "GetAssemblyID() returns a value > 0 after construction", + R.GetAssemblyID() > 0) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestGettersSetters() +{ + bool Passed = true; + + MReadOutAssembly R; + + // TimeRTS + MTime RTS(12345678); + R.SetTimeRTS(RTS); + Passed = EvaluateTrue("SetTimeRTS/GetTimeRTS", "representative value 12345678", "GetTimeRTS() returns the time set by SetTimeRTS()", + R.GetTimeRTS() == RTS) && Passed; + + // TimeUTC + MTime UTC(9876); + R.SetTimeUTC(UTC); + Passed = EvaluateTrue("SetTimeUTC/GetTimeUTC", "representative value 9876", "GetTimeUTC() returns the time set by SetTimeUTC()", + R.GetTimeUTC() == UTC) && Passed; + + // GuardRingVeto + R.SetGuardRingVeto(true); + Passed = EvaluateTrue("SetGuardRingVeto/GetGuardRingVeto", "representative true", "GetGuardRingVeto() returns true after SetGuardRingVeto(true)", + R.GetGuardRingVeto() == true) && Passed; + R.SetGuardRingVeto(false); + Passed = EvaluateFalse("SetGuardRingVeto/GetGuardRingVeto", "representative false", "GetGuardRingVeto() returns false after SetGuardRingVeto(false)", + R.GetGuardRingVeto()) && Passed; + + // ShieldVeto + R.SetShieldVeto(true); + Passed = EvaluateTrue("SetShieldVeto/GetShieldVeto", "representative true", "GetShieldVeto() returns true after SetShieldVeto(true)", + R.GetShieldVeto() == true) && Passed; + R.SetShieldVeto(false); + Passed = EvaluateFalse("SetShieldVeto/GetShieldVeto", "representative false", "GetShieldVeto() returns false after SetShieldVeto(false)", + R.GetShieldVeto()) && Passed; + + // Trigger + R.SetTrigger(false); + Passed = EvaluateFalse("SetTrigger/GetTrigger", "representative false", "GetTrigger() returns false after SetTrigger(false)", + R.GetTrigger()) && Passed; + R.SetTrigger(true); + Passed = EvaluateTrue("SetTrigger/GetTrigger", "representative true", "GetTrigger() returns true after SetTrigger(true)", + R.GetTrigger() == true) && Passed; + + // FilteredOut + R.SetFilteredOut(true); + Passed = EvaluateTrue("SetFilteredOut/IsFilteredOut", "representative true", "IsFilteredOut() returns true after SetFilteredOut(true)", + R.IsFilteredOut() == true) && Passed; + R.SetFilteredOut(false); + Passed = EvaluateFalse("SetFilteredOut/IsFilteredOut", "representative false", "IsFilteredOut() returns false after SetFilteredOut(false)", + R.IsFilteredOut()) && Passed; + + // Sim aspect info + R.SetSimAspectInfo(true); + Passed = EvaluateTrue("SetSimAspectInfo/HasSimAspectInfo", "representative true", "HasSimAspectInfo() returns true after SetSimAspectInfo(true)", + R.HasSimAspectInfo() == true) && Passed; + + // Galactic pointing getters return values only when HasSimAspectInfo == true + R.SetGalacticPointingXAxisTheta(1.1); + R.SetGalacticPointingXAxisPhi(2.2); + R.SetGalacticPointingZAxisTheta(3.3); + R.SetGalacticPointingZAxisPhi(4.4); + Passed = EvaluateNear("SetGalacticPointingXAxisTheta/GetGalacticPointingXAxisTheta", "representative value 1.1", + "GetGalacticPointingXAxisTheta() returns the representative value 1.1", + R.GetGalacticPointingXAxisTheta(), 1.1, 1e-10) && Passed; + Passed = EvaluateNear("SetGalacticPointingXAxisPhi/GetGalacticPointingXAxisPhi", "representative value 2.2", + "GetGalacticPointingXAxisPhi() returns the representative value 2.2", + R.GetGalacticPointingXAxisPhi(), 2.2, 1e-10) && Passed; + Passed = EvaluateNear("SetGalacticPointingZAxisTheta/GetGalacticPointingZAxisTheta", "representative value 3.3", + "GetGalacticPointingZAxisTheta() returns the representative value 3.3", + R.GetGalacticPointingZAxisTheta(), 3.3, 1e-10) && Passed; + Passed = EvaluateNear("SetGalacticPointingZAxisPhi/GetGalacticPointingZAxisPhi", "representative value 4.4", + "GetGalacticPointingZAxisPhi() returns the representative value 4.4", + R.GetGalacticPointingZAxisPhi(), 4.4, 1e-10) && Passed; + + // When HasSimAspectInfo == false the getters return 0 + R.SetSimAspectInfo(false); + Passed = EvaluateNear("GetGalacticPointingXAxisTheta()", "no aspect info", "GetGalacticPointingXAxisTheta() returns 0 when HasSimAspectInfo is false", + R.GetGalacticPointingXAxisTheta(), 0.0, 1e-10) && Passed; + + // SetSimulatedEvent takes ownership; a repeated call replaces (and frees) the previous event + MSimEvent* Sim1 = new MSimEvent(); + R.SetSimulatedEvent(Sim1); + Passed = EvaluateTrue("SetSimulatedEvent/GetSimulatedEvent", "first event", "GetSimulatedEvent() returns the event passed to SetSimulatedEvent()", + R.GetSimulatedEvent() == Sim1) && Passed; + MSimEvent* Sim2 = new MSimEvent(); + R.SetSimulatedEvent(Sim2); + Passed = EvaluateTrue("SetSimulatedEvent/GetSimulatedEvent", "replaced event", "A repeated SetSimulatedEvent() replaces the previous event with the new one", + R.GetSimulatedEvent() == Sim2) && Passed; + + // Self-assignment must not free the event and leave a dangling pointer + R.SetSimulatedEvent(R.GetSimulatedEvent()); + Passed = EvaluateTrue("SetSimulatedEvent/GetSimulatedEvent", "self-assignment", "SetSimulatedEvent(GetSimulatedEvent()) leaves the event pointer unchanged", + R.GetSimulatedEvent() == Sim2) && Passed; + + // RTS/UTC conversion helpers + MTime ReferenceUTC(2025, 1, 1, 0, 0, 0, 0); + MTime ReferenceRTS = R.ComputeRTSfromUTCTime(ReferenceUTC); + Passed = EvaluateNear("ComputeRTSfromUTCTime()", "UTC epoch", "The COSI RTS starts 69.184 seconds ahead of UTC on 2025-01-01", + ReferenceRTS.GetAsDouble(), 69.184, 1e-6) && Passed; + MTime RoundTripUTC = R.ComputeUTCfromRTSTime(ReferenceRTS); + Passed = EvaluateTrue("ComputeUTCfromRTSTime()", "round trip", "Converting UTC -> RTS -> UTC restores the representative UTC time", + RoundTripUTC == ReferenceUTC) && Passed; + + // StripPairingReducedChiSquare accumulates appended values into a vector + R.SetStripPairingReducedChiSquare(1.5); + R.SetStripPairingReducedChiSquare(2.5); + vector ChiSquares = R.GetStripPairingReducedChiSquare(); + Passed = Evaluate("SetStripPairingReducedChiSquare/GetStripPairingReducedChiSquare", "count after two adds", "GetStripPairingReducedChiSquare() returns both appended values", + (unsigned int) ChiSquares.size(), (unsigned int) 2) && Passed; + if (ChiSquares.size() == 2) { + Passed = EvaluateNear("SetStripPairingReducedChiSquare", "first value 1.5", "The first appended reduced chi-square is 1.5", + ChiSquares[0], 1.5, 1e-9) && Passed; + Passed = EvaluateNear("SetStripPairingReducedChiSquare", "second value 2.5", "The second appended reduced chi-square is 2.5", + ChiSquares[1], 2.5, 1e-9) && Passed; + } + + // SetPhysicalEvent stores a duplicate; the ROA owns it + MPhysicalEvent* PE = new MPhysicalEvent(); + R.SetPhysicalEvent(PE); + Passed = EvaluateTrue("SetPhysicalEvent/GetPhysicalEvent", "stores a duplicate", "GetPhysicalEvent() returns a non-null event after SetPhysicalEvent()", + R.GetPhysicalEvent() != nullptr) && Passed; + delete PE; // SetPhysicalEvent duplicated the event, so the caller still owns PE + + // Self-assignment must not free the stored event + MPhysicalEvent* Stored = R.GetPhysicalEvent(); + R.SetPhysicalEvent(Stored); + Passed = EvaluateTrue("SetPhysicalEvent/GetPhysicalEvent", "self-assignment", "SetPhysicalEvent(GetPhysicalEvent()) leaves the stored event unchanged", + R.GetPhysicalEvent() == Stored) && Passed; + + // Passing nullptr clears the stored event + R.SetPhysicalEvent(nullptr); + Passed = EvaluateTrue("SetPhysicalEvent/GetPhysicalEvent", "nullptr clears", "GetPhysicalEvent() returns nullptr after SetPhysicalEvent(nullptr)", + R.GetPhysicalEvent() == nullptr) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestAnalysisProgress() +{ + bool Passed = true; + + MReadOutAssembly R; + + // Clear() (called by the constructor) resets m_AnalysisProgress to 0 + Passed = EvaluateTrue("GetAnalysisProgress()", "zero after construction", "GetAnalysisProgress() returns 0 after construction", + R.GetAnalysisProgress() == 0) && Passed; + + R.SetAnalysisProgress(0x01ULL); + Passed = EvaluateTrue("HasAnalysisProgress()", "bit 0x01 set", "HasAnalysisProgress(0x01) returns true after SetAnalysisProgress(0x01)", + R.HasAnalysisProgress(0x01ULL) == true) && Passed; + Passed = EvaluateTrue("GetAnalysisProgress()", "bit 0x01 set", "GetAnalysisProgress() has bit 0x01 set after SetAnalysisProgress(0x01)", + (R.GetAnalysisProgress() & 0x01ULL) != 0) && Passed; + + // OR accumulation: setting a second bit must not clear the first + R.SetAnalysisProgress(0x02ULL); + Passed = EvaluateTrue("HasAnalysisProgress()", "bit 0x01 still set after OR", "HasAnalysisProgress(0x01) still returns true after SetAnalysisProgress(0x02)", + R.HasAnalysisProgress(0x01ULL) == true) && Passed; + Passed = EvaluateTrue("HasAnalysisProgress()", "bit 0x02 set", "HasAnalysisProgress(0x02) returns true after SetAnalysisProgress(0x02)", + R.HasAnalysisProgress(0x02ULL) == true) && Passed; + Passed = EvaluateTrue("HasAnalysisProgress()", "both bits 0x03", "HasAnalysisProgress(0x03) returns true when both bits are set", + R.HasAnalysisProgress(0x03ULL) == true) && Passed; + + // A bit that was never set must return false + Passed = EvaluateFalse("HasAnalysisProgress()", "bit 0x04 not set", "HasAnalysisProgress(0x04) returns false when bit was never set", + R.HasAnalysisProgress(0x04ULL)) && Passed; + + // HasAnalysisProgress returns false when not all requested bits are present + Passed = EvaluateFalse("HasAnalysisProgress()", "partial match 0x07", "HasAnalysisProgress(0x07) returns false when only 0x03 is set", + R.HasAnalysisProgress(0x07ULL)) && Passed; + + // Clear() resets the accumulated progress back to 0 + R.Clear(); + Passed = EvaluateTrue("GetAnalysisProgress()", "zero after Clear", "GetAnalysisProgress() returns 0 after Clear()", + R.GetAnalysisProgress() == 0) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestStripHitManagement() +{ + bool Passed = true; + + MReadOutAssembly R; + + // Add two strip hits with different detector IDs + MStripHit* SH0 = new MStripHit(); + SH0->SetDetectorID(3); + SH0->SetStripID(10); + R.AddStripHit(SH0); + + MStripHit* SH1 = new MStripHit(); + SH1->SetDetectorID(14); + SH1->SetStripID(20); + R.AddStripHit(SH1); + + Passed = Evaluate("GetNStripHits()", "count after two adds", "GetNStripHits() returns 2 after adding two strip hits", + R.GetNStripHits(), (unsigned int) 2) && Passed; + + // Pointer identity + Passed = EvaluateTrue("GetStripHit()", "pointer identity index 0", "GetStripHit(0) returns the pointer passed in the first AddStripHit()", + R.GetStripHit(0) == SH0) && Passed; + Passed = EvaluateTrue("GetStripHit()", "pointer identity index 1", "GetStripHit(1) returns the pointer passed in the second AddStripHit()", + R.GetStripHit(1) == SH1) && Passed; + + // InDetector tracking: AddStripHit updates m_InDetector for IDs 0-15 + Passed = EvaluateTrue("InDetector()", "detector 3 hit", "InDetector(3) returns true after adding a strip hit with DetectorID 3", + R.InDetector(3) == true) && Passed; + Passed = EvaluateTrue("InDetector()", "detector 14 hit", "InDetector(14) returns true after adding a strip hit with DetectorID 14", + R.InDetector(14) == true) && Passed; + Passed = EvaluateFalse("InDetector()", "detector 4 not hit", "InDetector(4) returns false when no strip hit has DetectorID 4", + R.InDetector(4)) && Passed; + + // Out-of-range InDetector returns false + Passed = EvaluateFalse("InDetector()", "out of range 16", "InDetector(16) returns false for an out-of-range detector ID", + R.InDetector(16)) && Passed; + Passed = EvaluateFalse("InDetector()", "out of range -1", "InDetector(-1) returns false for a negative detector ID", + R.InDetector(-1)) && Passed; + + // Out-of-bounds access emits merr and returns nullptr + DisableDefaultStreams(); + Passed = EvaluateTrue("GetStripHit()", "out of bounds returns nullptr", "GetStripHit(99) returns nullptr when index is out of bounds", + R.GetStripHit(99) == nullptr) && Passed; + EnableDefaultStreams(); + + // RemoveStripHit removes by index and shifts remaining elements + R.RemoveStripHit(0); + Passed = Evaluate("RemoveStripHit()", "count after remove", "GetNStripHits() returns 1 after removing index 0", + R.GetNStripHits(), (unsigned int) 1) && Passed; + Passed = EvaluateTrue("RemoveStripHit()", "remaining pointer after remove", "After removing index 0, GetStripHit(0) returns the second strip hit", + R.GetStripHit(0) == SH1) && Passed; + + // RemoveStripHit must clear the per-detector flag when the last hit in a detector is removed + Passed = EvaluateFalse("RemoveStripHit()", "InDetector cleared", "InDetector(3) returns false after removing the only strip hit in detector 3", + R.InDetector(3)) && Passed; + Passed = EvaluateTrue("RemoveStripHit()", "InDetector retained", "InDetector(14) still returns true since detector 14 still has a strip hit", + R.InDetector(14) == true) && Passed; + + // RemoveStripHit out-of-range is a no-op + R.RemoveStripHit(99); + Passed = Evaluate("RemoveStripHit()", "no-op for out-of-range index", "Removing an out-of-range index leaves the count unchanged", + R.GetNStripHits(), (unsigned int) 1) && Passed; + + // RemoveStripHit erased SH0 from the vector but did not free it, so delete it manually + delete SH0; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestHitManagement() +{ + bool Passed = true; + + MReadOutAssembly R; + + MHit* H0 = new MHit(); + MHit* H1 = new MHit(); + R.AddHit(H0); + R.AddHit(H1); + + Passed = Evaluate("GetNHits()", "count after two adds", "GetNHits() returns 2 after adding two hits", + R.GetNHits(), (unsigned int) 2) && Passed; + + // Pointer identity + Passed = EvaluateTrue("GetHit()", "pointer identity index 0", "GetHit(0) returns the pointer passed in the first AddHit()", + R.GetHit(0) == H0) && Passed; + Passed = EvaluateTrue("GetHit()", "pointer identity index 1", "GetHit(1) returns the pointer passed in the second AddHit()", + R.GetHit(1) == H1) && Passed; + + // Out-of-bounds returns nullptr + DisableDefaultStreams(); + Passed = EvaluateTrue("GetHit()", "out of bounds returns nullptr", "GetHit(99) returns nullptr when index is out of bounds", + R.GetHit(99) == nullptr) && Passed; + EnableDefaultStreams(); + + // RemoveHit shifts remaining elements + R.RemoveHit(0); + Passed = Evaluate("RemoveHit()", "count after remove", "GetNHits() returns 1 after removing index 0", + R.GetNHits(), (unsigned int) 1) && Passed; + Passed = EvaluateTrue("RemoveHit()", "remaining pointer after remove", "After removing index 0, GetHit(0) returns the second hit", + R.GetHit(0) == H1) && Passed; + + // RemoveHit does not delete: H0 was removed from the vector but not freed, so delete manually + delete H0; + + // DeleteHits() frees and clears the remaining hits + R.DeleteHits(); + Passed = Evaluate("DeleteHits()", "count after DeleteHits", "DeleteHits() empties the hit list", + R.GetNHits(), (unsigned int) 0) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestOtherHitCollections() +{ + bool Passed = true; + + MReadOutAssembly R; + + // --- T-only strip hits --------------------------------------------------- + MStripHit* TOnly0 = new MStripHit(); + MStripHit* TOnly1 = new MStripHit(); + R.AddStripHitTOnly(TOnly0); + R.AddStripHitTOnly(TOnly1); + Passed = Evaluate("GetNStripHitsTOnly()", "count after two adds", "GetNStripHitsTOnly() returns 2 after adding two T-only strip hits", + R.GetNStripHitsTOnly(), (unsigned int) 2) && Passed; + Passed = EvaluateTrue("GetStripHitTOnly()", "pointer identity index 0", "GetStripHitTOnly(0) returns the first T-only strip hit pointer", + R.GetStripHitTOnly(0) == TOnly0) && Passed; + Passed = EvaluateTrue("GetStripHitTOnly()", "pointer identity index 1", "GetStripHitTOnly(1) returns the second T-only strip hit pointer", + R.GetStripHitTOnly(1) == TOnly1) && Passed; + DisableDefaultStreams(); + Passed = EvaluateTrue("GetStripHitTOnly()", "out of bounds returns nullptr", "GetStripHitTOnly(99) returns nullptr when index is out of bounds", + R.GetStripHitTOnly(99) == nullptr) && Passed; + EnableDefaultStreams(); + R.RemoveStripHitTOnly(0); + Passed = Evaluate("RemoveStripHitTOnly()", "count after remove", "GetNStripHitsTOnly() returns 1 after removing index 0", + R.GetNStripHitsTOnly(), (unsigned int) 1) && Passed; + Passed = EvaluateTrue("RemoveStripHitTOnly()", "remaining pointer", "After removing index 0, GetStripHitTOnly(0) returns the second T-only strip hit", + R.GetStripHitTOnly(0) == TOnly1) && Passed; + // RemoveStripHitTOnly erased TOnly0 from the vector without freeing it + delete TOnly0; + + // --- Crystal hits -------------------------------------------------------- + MCrystalHit* CH0 = new MCrystalHit(); + MCrystalHit* CH1 = new MCrystalHit(); + R.AddCrystalHit(CH0); + R.AddCrystalHit(CH1); + Passed = Evaluate("GetNCrystalHits()", "count after two adds", "GetNCrystalHits() returns 2 after adding two crystal hits", + R.GetNCrystalHits(), (unsigned int) 2) && Passed; + Passed = EvaluateTrue("GetCrystalHit()", "pointer identity index 0", "GetCrystalHit(0) returns the first crystal hit pointer", + R.GetCrystalHit(0) == CH0) && Passed; + Passed = EvaluateTrue("GetCrystalHit()", "pointer identity index 1", "GetCrystalHit(1) returns the second crystal hit pointer", + R.GetCrystalHit(1) == CH1) && Passed; + DisableDefaultStreams(); + Passed = EvaluateTrue("GetCrystalHit()", "out of bounds returns nullptr", "GetCrystalHit(99) returns nullptr when index is out of bounds", + R.GetCrystalHit(99) == nullptr) && Passed; + EnableDefaultStreams(); + R.RemoveCrystalHit(0); + Passed = Evaluate("RemoveCrystalHit()", "count after remove", "GetNCrystalHits() returns 1 after removing index 0", + R.GetNCrystalHits(), (unsigned int) 1) && Passed; + Passed = EvaluateTrue("RemoveCrystalHit()", "remaining pointer", "After removing index 0, GetCrystalHit(0) returns the second crystal hit", + R.GetCrystalHit(0) == CH1) && Passed; + // RemoveCrystalHit erased CH0 from the vector without freeing it + delete CH0; + + // --- Guardring hits ------------------------------------------------------ + MGuardringHit* GH0 = new MGuardringHit(); + R.AddGuardringHit(GH0); + Passed = Evaluate("GetNGuardringHits()", "count after one add", "GetNGuardringHits() returns 1 after adding one guardring hit", + R.GetNGuardringHits(), (unsigned int) 1) && Passed; + Passed = EvaluateTrue("GetGuardringHit()", "pointer identity index 0", "GetGuardringHit(0) returns the guardring hit pointer", + R.GetGuardringHit(0) == GH0) && Passed; + DisableDefaultStreams(); + Passed = EvaluateTrue("GetGuardringHit()", "out of bounds returns nullptr", "GetGuardringHit(99) returns nullptr when index is out of bounds", + R.GetGuardringHit(99) == nullptr) && Passed; + EnableDefaultStreams(); + + // --- DEE strip hits (LV/HV) and DEE crystal hits ------------------------- + MDEEStripHit DEELV; + R.AddDEEStripHitLV(DEELV); + R.AddDEEStripHitLV(DEELV); + Passed = Evaluate("AddDEEStripHitLV/GetNDEEStripHitsLV", "count after two adds", "GetNDEEStripHitsLV() returns 2 after adding two LV DEE strip hits", + R.GetNDEEStripHitsLV(), (unsigned int) 2) && Passed; + + MDEEStripHit DEEHV; + R.AddDEEStripHitHV(DEEHV); + Passed = Evaluate("AddDEEStripHitHV/GetNDEEStripHitsHV", "count after one add", "GetNDEEStripHitsHV() returns 1 after adding one HV DEE strip hit", + R.GetNDEEStripHitsHV(), (unsigned int) 1) && Passed; + + MDEECrystalHit DEECrystal; + R.AddDEECrystalHit(DEECrystal); + Passed = Evaluate("AddDEECrystalHit/GetNDEECrystalHits", "count after one add", "GetNDEECrystalHits() returns 1 after adding one DEE crystal hit", + R.GetNDEECrystalHits(), (unsigned int) 1) && Passed; + + // The list-reference accessor exposes the same underlying LV list + Passed = Evaluate("GetDEEStripHitLVListReference()", "size matches", "GetDEEStripHitLVListReference() exposes the 2 LV DEE strip hits", + (unsigned int) R.GetDEEStripHitLVListReference().size(), (unsigned int) 2) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestEventFlags() +{ + bool Passed = true; + + MReadOutAssembly R; + + // Fresh state: good, not bad, not veto + Passed = EvaluateTrue("IsGood()", "initial state", "IsGood() returns true on a freshly constructed ROA", + R.IsGood() == true) && Passed; + Passed = EvaluateFalse("IsBad()", "initial state", "IsBad() returns false on a freshly constructed ROA", + R.IsBad()) && Passed; + Passed = EvaluateFalse("IsVeto()", "initial state", "IsVeto() returns false on a freshly constructed ROA", + R.IsVeto()) && Passed; + + // EnergyCalibrationError + R.SetEnergyCalibrationError(); + Passed = EvaluateTrue("HasEnergyCalibrationError()", "after set", "HasEnergyCalibrationError() returns true after SetEnergyCalibrationError()", + R.HasEnergyCalibrationError() == true) && Passed; + Passed = EvaluateFalse("IsGood()", "after EnergyCalibrationError", "IsGood() returns false when EnergyCalibrationError is set", + R.IsGood()) && Passed; + Passed = EvaluateTrue("IsBad()", "after EnergyCalibrationError", "IsBad() returns true when EnergyCalibrationError is set", + R.IsBad() == true) && Passed; + Passed = EvaluateFalse("IsVeto()", "EnergyCalibrationError is not a veto", "IsVeto() returns false when only EnergyCalibrationError is set", + R.IsVeto()) && Passed; + R.Clear(); + + // StripPairingError + R.SetStripPairingError(); + Passed = EvaluateTrue("HasStripPairingError()", "after set", "HasStripPairingError() returns true after SetStripPairingError()", + R.HasStripPairingError() == true) && Passed; + Passed = EvaluateFalse("IsGood()", "after StripPairingError", "IsGood() returns false when StripPairingError is set", + R.IsGood()) && Passed; + Passed = EvaluateTrue("IsBad()", "after StripPairingError", "IsBad() returns true when StripPairingError is set", + R.IsBad() == true) && Passed; + R.Clear(); + + // DepthCalibrationError + R.SetDepthCalibrationError(); + Passed = EvaluateTrue("HasDepthCalibrationError()", "after set", "HasDepthCalibrationError() returns true after SetDepthCalibrationError()", + R.HasDepthCalibrationError() == true) && Passed; + Passed = EvaluateFalse("IsGood()", "after DepthCalibrationError", "IsGood() returns false when DepthCalibrationError is set", + R.IsGood()) && Passed; + Passed = EvaluateTrue("IsBad()", "after DepthCalibrationError", "IsBad() returns true when DepthCalibrationError is set", + R.IsBad() == true) && Passed; + R.Clear(); + + // EventReconstructionError + R.SetEventReconstructionError(); + Passed = EvaluateTrue("HasEventReconstructionError()", "after set", "HasEventReconstructionError() returns true after SetEventReconstructionError()", + R.HasEventReconstructionError() == true) && Passed; + Passed = EvaluateFalse("IsGood()", "after EventReconstructionError", "IsGood() returns false when EventReconstructionError is set", + R.IsGood()) && Passed; + Passed = EvaluateTrue("IsBad()", "after EventReconstructionError", "IsBad() returns true when EventReconstructionError is set", + R.IsBad() == true) && Passed; + R.Clear(); + + // FilteredOut + R.SetFilteredOut(true); + Passed = EvaluateTrue("IsFilteredOut()", "after set", "IsFilteredOut() returns true after SetFilteredOut(true)", + R.IsFilteredOut() == true) && Passed; + Passed = EvaluateFalse("IsGood()", "when FilteredOut", "IsGood() returns false when FilteredOut is set", + R.IsGood()) && Passed; + Passed = EvaluateTrue("IsBad()", "when FilteredOut", "IsBad() returns true when FilteredOut is set", + R.IsBad() == true) && Passed; + R.Clear(); + + // Veto flags are separate from IsGood/IsBad + R.SetGuardRingVeto(true); + Passed = EvaluateTrue("IsVeto()", "after GuardRingVeto", "IsVeto() returns true after SetGuardRingVeto(true)", + R.IsVeto() == true) && Passed; + Passed = EvaluateTrue("IsGood()", "GuardRingVeto does not affect IsGood", "IsGood() returns true when only GuardRingVeto is set", + R.IsGood() == true) && Passed; + R.Clear(); + + R.SetShieldVeto(true); + Passed = EvaluateTrue("IsVeto()", "after ShieldVeto", "IsVeto() returns true after SetShieldVeto(true)", + R.IsVeto() == true) && Passed; + Passed = EvaluateTrue("IsGood()", "ShieldVeto does not affect IsGood", "IsGood() returns true when only ShieldVeto is set", + R.IsGood() == true) && Passed; + R.Clear(); + + // Quality flags do not affect IsGood + R.SetStripHitBelowThreshold_QualityFlag("below_thresh"); + Passed = EvaluateTrue("HasStripHitBelowThreshold_QualityFlag()", "after set", "HasStripHitBelowThreshold_QualityFlag() returns true after setting it", + R.HasStripHitBelowThreshold_QualityFlag() == true) && Passed; + Passed = EvaluateTrue("IsGood()", "quality flag does not affect IsGood", "IsGood() returns true when only a quality flag is set", + R.IsGood() == true) && Passed; + R.Clear(); + + R.SetStripPairing_QualityFlag(); + Passed = EvaluateTrue("HasStripPairing_QualityFlag()", "after set", "HasStripPairing_QualityFlag() returns true after setting it", + R.HasStripPairing_QualityFlag() == true) && Passed; + Passed = EvaluateTrue("IsGood()", "StripPairing quality flag does not affect IsGood", "IsGood() returns true when only StripPairing quality flag is set", + R.IsGood() == true) && Passed; + R.Clear(); + + // All flags cleared after Clear() + Passed = EvaluateFalse("HasEnergyCalibrationError()", "cleared by Clear", "HasEnergyCalibrationError() returns false after Clear()", + R.HasEnergyCalibrationError()) && Passed; + Passed = EvaluateTrue("IsGood()", "restored by Clear", "IsGood() returns true after Clear()", + R.IsGood() == true) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestClearOwnership() +{ + bool Passed = true; + + MReadOutAssembly R; + + // Add strip hits and MHit objects that are owned by the ROA + MStripHit* SH0 = new MStripHit(); + MStripHit* SH1 = new MStripHit(); + R.AddStripHit(SH0); + R.AddStripHit(SH1); + + MHit* H0 = new MHit(); + R.AddHit(H0); + + Passed = Evaluate("GetNStripHits()", "two strip hits before Clear", "GetNStripHits() returns 2 before Clear()", + R.GetNStripHits(), (unsigned int) 2) && Passed; + Passed = Evaluate("GetNHits()", "one hit before Clear", "GetNHits() returns 1 before Clear()", + R.GetNHits(), (unsigned int) 1) && Passed; + + // Clear() must delete and reset all owned collections + R.Clear(); + + Passed = Evaluate("GetNStripHits()", "empty after Clear", "GetNStripHits() returns 0 after Clear()", + R.GetNStripHits(), (unsigned int) 0) && Passed; + Passed = Evaluate("GetNHits()", "empty after Clear", "GetNHits() returns 0 after Clear()", + R.GetNHits(), (unsigned int) 0) && Passed; + + // AssemblyID must survive Clear() — it is assigned once in the constructor + unsigned long ID = R.GetAssemblyID(); + R.Clear(); + Passed = EvaluateTrue("GetAssemblyID()", "unchanged by Clear", "GetAssemblyID() returns the same value after Clear()", + R.GetAssemblyID() == ID) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestParse() +{ + bool Passed = true; + + // --- HT line creates a hit ----------------------------------------------- + { + MReadOutAssembly R; + MString HTLine("HT 1.0 2.0 3.0 511.0"); + Passed = EvaluateTrue("Parse()", "HT line", "Parse() returns true for an HT line", + R.Parse(HTLine)) && Passed; + Passed = Evaluate("Parse()", "hit count after HT", "Parse() of an HT line adds exactly one hit", + R.GetNHits(), (unsigned int) 1) && Passed; + } + + // --- TI line sets the read-out assembly UTC event time ------------------- + { + MReadOutAssembly R; + MString TILine("TI 123456789.123456789"); + Passed = EvaluateTrue("Parse()", "TI line", "Parse() returns true for a TI line", + R.Parse(TILine)) && Passed; + Passed = EvaluateTrue("Parse()", "TI sets UTC event time", "Parse() of a TI line updates GetTimeUTC()", + R.GetTimeUTC() == MTime(123456789, 123456789)) && Passed; + } + + // --- SH line attaches a strip hit to the last hit and is owned by the ROA - + { + MReadOutAssembly R; + MString HTLine("HT 1.0 2.0 3.0 511.0"); + R.Parse(HTLine); + MString SHLine("SH 0 l 41 1 0 100 100 50 1 0"); + Passed = EvaluateTrue("Parse()", "SH after HT", "Parse() returns true for an SH line following an HT line", + R.Parse(SHLine)) && Passed; + Passed = Evaluate("Parse()", "strip hit owned by ROA", "Parse() of an SH line adds the strip hit to the ROA so it owns it", + R.GetNStripHits(), (unsigned int) 1) && Passed; + if (R.GetNHits() == 1) { + Passed = Evaluate("Parse()", "strip hit attached to hit", "Parse() of an SH line attaches the strip hit to the last hit", + R.GetHit(0)->GetNStripHits(), (unsigned int) 1) && Passed; + } + } + + // --- SH line before any HT line is rejected (was undefined behavior) ----- + { + MReadOutAssembly R; + MString SHLine("SH 0 l 41 1 0 100 100 50 1 0"); + Passed = EvaluateFalse("Parse()", "SH before any HT", "Parse() returns false for an SH line when no hit has been parsed yet", + R.Parse(SHLine)) && Passed; + } + + // --- BD line sets the filtered-out flag ---------------------------------- + { + MReadOutAssembly R; + MString BDLine("BD some reason"); + Passed = EvaluateTrue("Parse()", "BD line", "Parse() returns true for a BD line", + R.Parse(BDLine)) && Passed; + Passed = EvaluateTrue("Parse()", "BD sets FilteredOut", "Parse() of a BD line sets the filtered-out flag", + R.IsFilteredOut()) && Passed; + } + + // --- An unrecognized line is tolerantly consumed ------------------------- + { + MReadOutAssembly R; + MString BadLine("XY 1 2 3"); + Passed = EvaluateTrue("Parse()", "unrecognized line", "Parse() returns true for an unrecognized line, which is tolerantly consumed", + R.Parse(BadLine)) && Passed; + } + + // --- Version is forwarded to MHit::Parse: V3 restores LV/HV energy ------- + { + MReadOutAssembly R; + MString HTV3("HT 1.0 2.0 3.0 511.0 250.0 261.0"); + bool ParsedV3 = R.Parse(HTV3, 3); + Passed = EvaluateTrue("Parse() V3", "HT V3 line", "Parse(V3) returns true for a six-field HT line", + ParsedV3) && Passed; + if (ParsedV3 == true && R.GetNHits() == 1) { + Passed = EvaluateNear("Parse() V3", "LV energy forwarded", "Parse(V3) forwards the version so the hit's LV energy is restored", + R.GetHit(0)->GetLVEnergy(), 250.0, 1e-4) && Passed; + Passed = EvaluateNear("Parse() V3", "HV energy forwarded", "Parse(V3) forwards the version so the hit's HV energy is restored", + R.GetHit(0)->GetHVEnergy(), 261.0, 1e-4) && Passed; + } + } + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestGetNextFromDatFile() +{ + bool Passed = true; + + // --- A well-formed event is read correctly ------------------------------- + { + MString DatFile("/tmp/UTNReadOutAssembly_valid.dat"); + ofstream Out(DatFile.Data()); + Passed = EvaluateTrue("GetNextFromDatFile()", "write valid .dat file", "The valid .dat fixture file can be created", + Out.is_open()) && Passed; + Out << "SE" << endl; + Out << "ID 1" << endl; + Out << "HT 1.0 2.0 3.0 511.0" << endl; + Out << "SH 0 l 41 1 0 100 100 50 1 0" << endl; + Out << "SE" << endl; + Out.close(); + + MReadOutAssembly R; + MFile F; + bool Opened = F.Open(DatFile); + Passed = EvaluateTrue("GetNextFromDatFile()", "open valid .dat file", "The valid .dat test file can be opened", + Opened) && Passed; + if (Opened == true) { + bool Result = R.GetNextFromDatFile(F); + F.Close(); + Passed = EvaluateTrue("GetNextFromDatFile()", "well-formed event", "GetNextFromDatFile() returns true for a well-formed event", + Result) && Passed; + Passed = Evaluate("GetNextFromDatFile()", "hit count", "GetNextFromDatFile() reads one hit from a well-formed event", + R.GetNHits(), (unsigned int) 1) && Passed; + Passed = Evaluate("GetNextFromDatFile()", "strip hit count", "GetNextFromDatFile() reads one strip hit from a well-formed event", + R.GetNStripHits(), (unsigned int) 1) && Passed; + Passed = Evaluate("GetNextFromDatFile()", "ID parsed", "GetNextFromDatFile() reads the event ID 1", + R.GetID(), (unsigned long) 1) && Passed; + } + MFile::Remove(DatFile); + } + + // --- A malformed HT line is rejected, not added as an invalid hit -------- + { + MString DatFile("/tmp/UTNReadOutAssembly_badht.dat"); + ofstream Out(DatFile.Data()); + Passed = EvaluateTrue("GetNextFromDatFile()", "write bad-HT .dat file", "The bad-HT .dat fixture file can be created", + Out.is_open()) && Passed; + Out << "SE" << endl; + Out << "HT garbage" << endl; + Out << "SE" << endl; + Out.close(); + + MReadOutAssembly R; + MFile F; + bool Opened = F.Open(DatFile); + Passed = EvaluateTrue("GetNextFromDatFile()", "open bad-HT .dat file", "The bad-HT .dat test file can be opened", + Opened) && Passed; + if (Opened == true) { + bool Result = R.GetNextFromDatFile(F); + F.Close(); + Passed = Evaluate("GetNextFromDatFile()", "malformed HT line", "GetNextFromDatFile() does not add a hit for a malformed HT line", + R.GetNHits(), (unsigned int) 0) && Passed; + Passed = EvaluateFalse("GetNextFromDatFile()", "malformed HT return value", "GetNextFromDatFile() returns false when the only HT line is malformed", + Result) && Passed; + } + MFile::Remove(DatFile); + } + + // --- A malformed SH line is rejected, the preceding hit is kept ---------- + { + MString DatFile("/tmp/UTNReadOutAssembly_badsh.dat"); + ofstream Out(DatFile.Data()); + Passed = EvaluateTrue("GetNextFromDatFile()", "write bad-SH .dat file", "The bad-SH .dat fixture file can be created", + Out.is_open()) && Passed; + Out << "SE" << endl; + Out << "HT 1.0 2.0 3.0 511.0" << endl; + Out << "SH garbage" << endl; + Out << "SE" << endl; + Out.close(); + + MReadOutAssembly R; + MFile F; + bool Opened = F.Open(DatFile); + Passed = EvaluateTrue("GetNextFromDatFile()", "open bad-SH .dat file", "The bad-SH .dat test file can be opened", + Opened) && Passed; + if (Opened == true) { + DisableDefaultStreams(); + bool Result = R.GetNextFromDatFile(F); + EnableDefaultStreams(); + F.Close(); + Passed = Evaluate("GetNextFromDatFile()", "valid HT kept", "GetNextFromDatFile() keeps the valid HT line preceding a malformed SH line", + R.GetNHits(), (unsigned int) 1) && Passed; + Passed = Evaluate("GetNextFromDatFile()", "malformed SH line", "GetNextFromDatFile() does not add a strip hit for a malformed SH line", + R.GetNStripHits(), (unsigned int) 0) && Passed; + Passed = EvaluateTrue("GetNextFromDatFile()", "malformed SH return value", "GetNextFromDatFile() returns true when a valid HT precedes a malformed SH line", + Result) && Passed; + } + MFile::Remove(DatFile); + } + + // --- A malformed ID line leaves the ID at its sentinel ------------------- + { + MString DatFile("/tmp/UTNReadOutAssembly_badid.dat"); + ofstream Out(DatFile.Data()); + Passed = EvaluateTrue("GetNextFromDatFile()", "write bad-ID .dat file", "The bad-ID .dat fixture file can be created", + Out.is_open()) && Passed; + Out << "SE" << endl; + Out << "ID garbage" << endl; + Out << "HT 1.0 2.0 3.0 511.0" << endl; + Out << "SE" << endl; + Out.close(); + + MReadOutAssembly R; + MFile F; + bool Opened = F.Open(DatFile); + Passed = EvaluateTrue("GetNextFromDatFile()", "open bad-ID .dat file", "The bad-ID .dat test file can be opened", + Opened) && Passed; + if (Opened == true) { + DisableDefaultStreams(); + R.GetNextFromDatFile(F); + EnableDefaultStreams(); + F.Close(); + Passed = EvaluateTrue("GetNextFromDatFile()", "malformed ID line", "GetNextFromDatFile() leaves the ID at g_UnsignedIntNotDefined for a malformed ID line", + R.GetID() == g_UnsignedIntNotDefined) && Passed; + } + MFile::Remove(DatFile); + } + + // --- A malformed ID with no other payload yields no event ---------------- + { + MString DatFile("/tmp/UTNReadOutAssembly_badidonly.dat"); + ofstream Out(DatFile.Data()); + Passed = EvaluateTrue("GetNextFromDatFile()", "write bad-ID-only .dat file", "The bad-ID-only .dat fixture file can be created", + Out.is_open()) && Passed; + Out << "SE" << endl; + Out << "ID garbage" << endl; + Out << "SE" << endl; + Out.close(); + + MReadOutAssembly R; + MFile F; + bool Opened = F.Open(DatFile); + Passed = EvaluateTrue("GetNextFromDatFile()", "open bad-ID-only .dat file", "The bad-ID-only .dat test file can be opened", + Opened) && Passed; + if (Opened == true) { + DisableDefaultStreams(); + bool Result = R.GetNextFromDatFile(F); + EnableDefaultStreams(); + F.Close(); + Passed = EvaluateFalse("GetNextFromDatFile()", "malformed ID only", "GetNextFromDatFile() returns false when the only content is a malformed ID line", + Result) && Passed; + Passed = Evaluate("GetNextFromDatFile()", "malformed ID only hit count", "GetNextFromDatFile() reads no hits when the only content is a malformed ID line", + R.GetNHits(), (unsigned int) 0) && Passed; + } + MFile::Remove(DatFile); + } + + // --- An event with no trailing SE is still read at end of file ----------- + { + MString DatFile("/tmp/UTNReadOutAssembly_noterm.dat"); + ofstream Out(DatFile.Data()); + Passed = EvaluateTrue("GetNextFromDatFile()", "write unterminated .dat file", "The unterminated .dat fixture file can be created", + Out.is_open()) && Passed; + Out << "SE" << endl; + Out << "ID 5" << endl; + Out << "HT 1.0 2.0 3.0 511.0" << endl; + Out.close(); // deliberately no trailing SE + + MReadOutAssembly R; + MFile F; + bool Opened = F.Open(DatFile); + Passed = EvaluateTrue("GetNextFromDatFile()", "open unterminated .dat file", "The unterminated .dat test file can be opened", + Opened) && Passed; + if (Opened == true) { + bool Result = R.GetNextFromDatFile(F); + F.Close(); + Passed = EvaluateTrue("GetNextFromDatFile()", "event without trailing SE", "GetNextFromDatFile() returns true for a final event with no trailing SE", + Result) && Passed; + Passed = Evaluate("GetNextFromDatFile()", "unterminated event hit count", "GetNextFromDatFile() reads the hit from an event with no trailing SE", + R.GetNHits(), (unsigned int) 1) && Passed; + } + MFile::Remove(DatFile); + } + + // --- An empty event (only SE markers) yields no payload ------------------ + { + MString DatFile("/tmp/UTNReadOutAssembly_empty.dat"); + ofstream Out(DatFile.Data()); + Passed = EvaluateTrue("GetNextFromDatFile()", "write empty .dat file", "The empty-event .dat fixture file can be created", + Out.is_open()) && Passed; + Out << "SE" << endl; + Out << "SE" << endl; + Out.close(); + + MReadOutAssembly R; + MFile F; + bool Opened = F.Open(DatFile); + Passed = EvaluateTrue("GetNextFromDatFile()", "open empty .dat file", "The empty-event .dat test file can be opened", + Opened) && Passed; + if (Opened == true) { + bool Result = R.GetNextFromDatFile(F); + F.Close(); + Passed = EvaluateFalse("GetNextFromDatFile()", "empty event", "GetNextFromDatFile() returns false for an event with only SE markers and no payload", + Result) && Passed; + Passed = Evaluate("GetNextFromDatFile()", "empty event hit count", "GetNextFromDatFile() reads no hits from an empty event", + R.GetNHits(), (unsigned int) 0) && Passed; + } + MFile::Remove(DatFile); + } + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestStreamDat() +{ + bool Passed = true; + + // --- V1: strip hits and hits streamed separately ------------------------- + { + MReadOutAssembly R; + R.SetID(7); + MHit* H = new MHit(); + H->SetPosition(MVector(1.0, 2.0, 3.0)); + H->SetEnergy(511.0); + R.AddHit(H); + + MStripHit* SH = new MStripHit(); + SH->SetDetectorID(2); + SH->SetStripID(8); + SH->IsLowVoltageStrip(true); + R.AddStripHit(SH); + + ostringstream SS; + Passed = EvaluateTrue("StreamDat() V1", "return value", "StreamDat(V1) returns true", + R.StreamDat(SS, 1)) && Passed; + MString S = SS.str(); + Passed = EvaluateTrue("StreamDat() V1", "SE line", "StreamDat(V1) output starts with an 'SE' line", + S.BeginsWith("SE")) && Passed; + Passed = EvaluateTrue("StreamDat() V1", "ID line", "StreamDat(V1) output contains the 'ID 7' line", + S.Contains("ID 7")) && Passed; + Passed = EvaluateTrue("StreamDat() V1", "HT line", "StreamDat(V1) output contains the 'HT' line for the hit", + S.Contains("HT ")) && Passed; + Passed = EvaluateTrue("StreamDat() V1", "SH line", "StreamDat(V1) output contains the standalone 'SH' line for the strip hit", + S.Contains("SH ")) && Passed; + Passed = EvaluateTrue("StreamDat() V1", "PQ terminator", "StreamDat(V1) output contains the 'PQ' line from StreamBDFlags()", + S.Contains("PQ")) && Passed; + } + + // --- V2: HT + SH lines, verified by parsing the output back -------------- + { + MReadOutAssembly R; + R.SetID(7); + MHit* H = new MHit(); + H->SetPosition(MVector(1.0, 2.0, 3.0)); + H->SetEnergy(511.0); + MStripHit* SH = new MStripHit(); + SH->SetDetectorID(0); + SH->SetStripID(41); + SH->IsLowVoltageStrip(true); + R.AddStripHit(SH); // the ROA owns the strip hit + H->AddStripHit(SH); // the hit references it + R.AddHit(H); + + ostringstream SS; + Passed = EvaluateTrue("StreamDat() V2", "return value", "StreamDat(V2) returns true", + R.StreamDat(SS, 2)) && Passed; + Passed = EvaluateTrue("StreamDat() V2", "SE line", "StreamDat(V2) output starts with an 'SE' line", + MString(SS.str().c_str()).BeginsWith("SE")) && Passed; + + // Round-trip: parse the StreamDat output back into a fresh ROA + MReadOutAssembly Reader; + istringstream In(SS.str()); + string RawLine; + while (getline(In, RawLine)) { + MString PLine(RawLine.c_str()); + Reader.Parse(PLine, 2); + } + Passed = Evaluate("StreamDat() V2", "round-trip hit count", "Parsing StreamDat(V2) output back reconstructs one hit", + Reader.GetNHits(), (unsigned int) 1) && Passed; + if (Reader.GetNHits() == 1) { + Passed = EvaluateNear("StreamDat() V2", "round-trip energy", "Parsing StreamDat(V2) output back restores the hit energy 511", + Reader.GetHit(0)->GetEnergy(), 511.0, 1e-4) && Passed; + Passed = Evaluate("StreamDat() V2", "round-trip strip hit", "Parsing StreamDat(V2) output back reattaches the strip hit to the hit", + Reader.GetHit(0)->GetNStripHits(), (unsigned int) 1) && Passed; + } + } + + // --- V3: HT (with LV/HV energy) + SH lines, verified by parsing back ----- + { + MReadOutAssembly R; + R.SetID(7); + MHit* H = new MHit(); + H->SetPosition(MVector(1.0, 2.0, 3.0)); + H->SetEnergy(511.0); + H->SetLVEnergy(250.0); + H->SetHVEnergy(261.0); + MStripHit* SH = new MStripHit(); + SH->SetDetectorID(0); + SH->SetStripID(41); + SH->IsLowVoltageStrip(true); + R.AddStripHit(SH); + H->AddStripHit(SH); + R.AddHit(H); + + ostringstream SS; + Passed = EvaluateTrue("StreamDat() V3", "return value", "StreamDat(V3) returns true", + R.StreamDat(SS, 3)) && Passed; + + // Round-trip: parse the StreamDat output back into a fresh ROA + MReadOutAssembly Reader; + istringstream In(SS.str()); + string RawLine; + while (getline(In, RawLine)) { + MString PLine(RawLine.c_str()); + Reader.Parse(PLine, 3); + } + Passed = Evaluate("StreamDat() V3", "round-trip hit count", "Parsing StreamDat(V3) output back reconstructs one hit", + Reader.GetNHits(), (unsigned int) 1) && Passed; + if (Reader.GetNHits() == 1) { + Passed = EvaluateNear("StreamDat() V3", "round-trip energy", "Parsing StreamDat(V3) output back restores the hit energy 511", + Reader.GetHit(0)->GetEnergy(), 511.0, 1e-4) && Passed; + Passed = EvaluateNear("StreamDat() V3", "round-trip LV energy", "Parsing StreamDat(V3) output back restores the hit LV energy 250", + Reader.GetHit(0)->GetLVEnergy(), 250.0, 1e-4) && Passed; + Passed = EvaluateNear("StreamDat() V3", "round-trip HV energy", "Parsing StreamDat(V3) output back restores the hit HV energy 261", + Reader.GetHit(0)->GetHVEnergy(), 261.0, 1e-4) && Passed; + Passed = Evaluate("StreamDat() V3", "round-trip strip hit", "Parsing StreamDat(V3) output back reattaches the strip hit to the hit", + Reader.GetHit(0)->GetNStripHits(), (unsigned int) 1) && Passed; + } + } + + // --- Unsupported versions are rejected with no output -------------------- + { + MReadOutAssembly R; + R.SetID(7); + + ostringstream SS0; + Passed = EvaluateFalse("StreamDat()", "unsupported version 0", "StreamDat(0) returns false for an unsupported version", + R.StreamDat(SS0, 0)) && Passed; + Passed = EvaluateTrue("StreamDat()", "no output for version 0", "StreamDat(0) writes nothing when the version is unsupported", + SS0.str().empty()) && Passed; + + ostringstream SS99; + Passed = EvaluateFalse("StreamDat()", "unsupported version 99", "StreamDat(99) returns false for an unsupported version", + R.StreamDat(SS99, 99)) && Passed; + } + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestStreamEvta() +{ + bool Passed = true; + + // --- StreamEvta() format ------------------------------------------------- + { + MReadOutAssembly R; + R.SetID(8); + MStripHit* SH = new MStripHit(); + SH->SetDetectorID(0); + SH->SetStripID(12); + R.AddStripHit(SH); + + ostringstream SS; + R.StreamEvta(SS); + MString S = SS.str(); + + Passed = EvaluateTrue("StreamEvta()", "SE line", "StreamEvta() output starts with an 'SE' line", + S.BeginsWith("SE")) && Passed; + Passed = EvaluateTrue("StreamEvta()", "ID line", "StreamEvta() output contains the 'ID 8' line", + S.Contains("ID 8")) && Passed; + Passed = EvaluateTrue("StreamEvta()", "CC NStripHits line", "StreamEvta() output contains 'CC NStripHits 1' with the strip hit count", + S.Contains("CC NStripHits 1")) && Passed; + Passed = EvaluateTrue("StreamEvta()", "PQ terminator", "StreamEvta() output contains the 'PQ' line from StreamBDFlags()", + S.Contains("PQ")) && Passed; + } + + // --- StreamTra() without a physical event -------------------------------- + { + MReadOutAssembly R; + R.SetID(9); + + ostringstream SS; + R.StreamTra(SS); + MString S = SS.str(); + + Passed = EvaluateTrue("StreamTra()", "SE line", "StreamTra() output starts with an 'SE' line", + S.BeginsWith("SE")) && Passed; + Passed = EvaluateTrue("StreamTra()", "ID line without physical event", "StreamTra() output contains the 'ID 9' line when there is no physical event", + S.Contains("ID 9")) && Passed; + Passed = EvaluateTrue("StreamTra()", "PQ terminator", "StreamTra() output contains the 'PQ' line from StreamBDFlags()", + S.Contains("PQ")) && Passed; + } + + // --- StreamTra() with a physical event uses the event's tra string ------- + { + MReadOutAssembly R; + R.SetID(10); + MPhysicalEvent* PE = new MPhysicalEvent(); + R.SetPhysicalEvent(PE); + delete PE; // SetPhysicalEvent duplicated it, so the caller still owns PE + + ostringstream SS; + R.StreamTra(SS); + MString S = SS.str(); + + Passed = EvaluateTrue("StreamTra()", "SE line with physical event", "StreamTra() output starts with an 'SE' line when a physical event is set", + S.BeginsWith("SE")) && Passed; + Passed = EvaluateTrue("StreamTra()", "physical-event branch taken", "StreamTra() with a physical event does not emit the no-event branch's 'PQ' line", + S.Contains("PQ") == false) && Passed; + } + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestStreamRoa() +{ + bool Passed = true; + + // --- Empty ROA: must emit "BD No hits" and end with "PQ" --- + { + MReadOutAssembly R; + R.SetID(1); + ostringstream SS; + R.StreamRoa(SS); + MString S = SS.str(); + + Passed = EvaluateTrue("StreamRoa()", "SE line present", "StreamRoa() output contains 'SE'", + S.Contains("SE")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "ID line present", "StreamRoa() output contains 'ID '", + S.Contains("ID ")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "BD No hits when empty", "StreamRoa() emits 'BD No hits' when there are no strip hits", + S.Contains("BD No hits")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "PQ terminator present", "StreamRoa() output ends with a 'PQ' line", + S.Contains("PQ")) && Passed; + } + + // --- ROA with one strip hit: UH line present, no "BD No hits" --- + { + MReadOutAssembly R; + R.SetID(2); + MStripHit* SH = new MStripHit(); + SH->SetDetectorID(0); + SH->SetStripID(10); + SH->IsXStrip(true); + SH->SetADCUnits(1000.0); + R.AddStripHit(SH); + + ostringstream SS; + R.StreamRoa(SS); + MString S = SS.str(); + + Passed = EvaluateTrue("StreamRoa()", "UH line present with strip hit", "StreamRoa() output contains 'UH' when there is a strip hit", + S.Contains("UH")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "BD No hits absent with strip hit", "StreamRoa() does not emit 'BD No hits' when there is a strip hit", + S.Contains("BD No hits") == false) && Passed; + Passed = EvaluateTrue("StreamRoa()", "PQ terminator present", "StreamRoa() output ends with a 'PQ' line", + S.Contains("PQ")) && Passed; + } + + // --- Nearest-neighbor filtering --- + // WithNearestNeighbors=false (default): NN strips skipped; non-NN strips emitted + { + MReadOutAssembly R; + R.SetID(3); + + MStripHit* SH_NN = new MStripHit(); + SH_NN->SetDetectorID(0); + SH_NN->SetStripID(5); + SH_NN->IsXStrip(true); + SH_NN->IsNearestNeighbor(true); + SH_NN->SetADCUnits(500.0); + R.AddStripHit(SH_NN); + + MStripHit* SH_Good = new MStripHit(); + SH_Good->SetDetectorID(0); + SH_Good->SetStripID(10); + SH_Good->IsXStrip(true); + SH_Good->IsNearestNeighbor(false); + SH_Good->SetADCUnits(1200.0); + R.AddStripHit(SH_Good); + + // Without nearest neighbors: only SH_Good should appear (one UH line) + ostringstream SS_noNN; + R.StreamRoa(SS_noNN, true, true, false, false, false, false, false, false); + MString S_noNN = SS_noNN.str(); + size_t count = 0; + size_t pos = 0; + while ((pos = S_noNN.Index("UH", pos)) != string::npos) { + ++count; + pos += 2; + } + Passed = Evaluate("StreamRoa()", "WithNearestNeighbors=false: one UH line", + "StreamRoa() with WithNearestNeighbors=false emits exactly one UH line", + count, (size_t) 1) && Passed; + + // With nearest neighbors: both strips should appear (two UH lines) + ostringstream SS_withNN; + R.StreamRoa(SS_withNN, true, true, false, false, false, false, false, true); + MString S_withNN = SS_withNN.str(); + count = 0; + pos = 0; + while ((pos = S_withNN.Index("UH", pos)) != string::npos) { + ++count; + pos += 2; + } + Passed = Evaluate("StreamRoa()", "WithNearestNeighbors=true: two UH lines", + "StreamRoa() with WithNearestNeighbors=true emits two UH lines", + count, (size_t) 2) && Passed; + } + + // --- WithOrigins forwarding: origins appear only when WithOrigins=true --- + { + MReadOutAssembly R; + R.SetID(5); + MStripHit* SH = new MStripHit(); + SH->SetDetectorID(0); + SH->SetStripID(7); + SH->IsXStrip(true); + SH->SetADCUnits(900.0); + SH->AddOrigins({42}); + R.AddStripHit(SH); + + // WithOrigins=false: the origin value 42 must not appear + ostringstream SS_no; + R.StreamRoa(SS_no, true, true, false, false, false, false, false, false); + MString S_no = SS_no.str(); + Passed = EvaluateTrue("StreamRoa()", "WithOrigins=false omits origins", "StreamRoa() with WithOrigins=false does not emit the origin value 42", + S_no.Contains("42") == false) && Passed; + + // WithOrigins=true: the origin value 42 must appear + ostringstream SS_yes; + R.StreamRoa(SS_yes, true, true, false, false, false, false, true, false); + MString S_yes = SS_yes.str(); + Passed = EvaluateTrue("StreamRoa()", "WithOrigins=true emits origins", "StreamRoa() with WithOrigins=true emits the origin value 42", + S_yes.Contains("42")) && Passed; + } + + // --- WithOrigins forwarding for crystal hits ----------------------------- + { + MReadOutAssembly R; + R.SetID(6); + MCrystalHit* CH = new MCrystalHit(); + CH->SetCrystalID(2); + CH->AddOrigins({77}); + R.AddCrystalHit(CH); + + // WithOrigins=false: the crystal hit origin 77 must not appear + ostringstream SS_no; + R.StreamRoa(SS_no, true, true, false, false, false, false, false, false); + MString S_no = SS_no.str(); + Passed = EvaluateTrue("StreamRoa()", "crystal WithOrigins=false omits origins", "StreamRoa() with WithOrigins=false does not emit the crystal hit origin 77", + S_no.Contains("77") == false) && Passed; + + // WithOrigins=true: the crystal hit origin 77 must appear + ostringstream SS_yes; + R.StreamRoa(SS_yes, true, true, false, false, false, false, true, false); + MString S_yes = SS_yes.str(); + Passed = EvaluateTrue("StreamRoa()", "crystal WithOrigins=true emits origins", "StreamRoa() with WithOrigins=true emits the crystal hit origin 77", + S_yes.Contains("77")) && Passed; + } + + // --- BD flag and quality flag lines in StreamBDFlags --- + { + MReadOutAssembly R; + R.SetID(4); + R.SetEnergyCalibrationError("ecal_test"); + R.SetStripPairingError(); + R.SetDepthCalibrationError(); + R.SetEventReconstructionError(); + R.SetGuardRingVeto(true); + R.SetShieldVeto(true); + R.SetStripHitBelowThreshold_QualityFlag(); + R.SetStripPairing_QualityFlag(); + + ostringstream SS; + R.StreamBDFlags(SS); + MString S = SS.str(); + + Passed = EvaluateTrue("StreamBDFlags()", "BD EnergyCalibrationError line", "StreamBDFlags() emits 'BD EnergyCalibrationError' when that flag is set", + S.Contains("BD EnergyCalibrationError")) && Passed; + Passed = EvaluateTrue("StreamBDFlags()", "error text appended", "StreamBDFlags() appends the representative error text 'ecal_test'", + S.Contains("ecal_test")) && Passed; + Passed = EvaluateTrue("StreamBDFlags()", "BD StripPairingError line", "StreamBDFlags() emits 'BD StripPairingError' when that flag is set", + S.Contains("BD StripPairingError")) && Passed; + Passed = EvaluateTrue("StreamBDFlags()", "BD DepthCalibrationError line", "StreamBDFlags() emits 'BD DepthCalibrationError' when that flag is set", + S.Contains("BD DepthCalibrationError")) && Passed; + Passed = EvaluateTrue("StreamBDFlags()", "BD EventReconstructionError line", "StreamBDFlags() emits 'BD EventReconstructionError' when that flag is set", + S.Contains("BD EventReconstructionError")) && Passed; + Passed = EvaluateTrue("StreamBDFlags()", "BD GR Veto line", "StreamBDFlags() emits 'BD GR Veto' when GuardRingVeto is set", + S.Contains("BD GR Veto")) && Passed; + Passed = EvaluateTrue("StreamBDFlags()", "BD Shield Veto line", "StreamBDFlags() emits 'BD Shield Veto' when ShieldVeto is set", + S.Contains("BD Shield Veto")) && Passed; + Passed = EvaluateTrue("StreamBDFlags()", "QA StripHitBelowThreshold line", "StreamBDFlags() emits 'QA StripHitBelowThreshold' when that flag is set", + S.Contains("QA StripHitBelowThreshold")) && Passed; + Passed = EvaluateTrue("StreamBDFlags()", "QA StripPairing line", "StreamBDFlags() emits 'QA StripPairing' when that flag is set", + S.Contains("QA StripPairing")) && Passed; + Passed = EvaluateTrue("StreamBDFlags()", "PQ terminator always present", "StreamBDFlags() always ends with a 'PQ' line", + S.Contains("PQ")) && Passed; + } + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNReadOutAssembly::TestAssemblyIDUniqueness() +{ + bool Passed = true; + + MReadOutAssembly R0; + MReadOutAssembly R1; + MReadOutAssembly R2; + + unsigned long ID0 = R0.GetAssemblyID(); + unsigned long ID1 = R1.GetAssemblyID(); + unsigned long ID2 = R2.GetAssemblyID(); + + // Each instance must have a distinct ID + Passed = EvaluateTrue("GetAssemblyID()", "R0 and R1 distinct", "Two separately constructed ROAs have different assembly IDs", + ID0 != ID1) && Passed; + Passed = EvaluateTrue("GetAssemblyID()", "R1 and R2 distinct", "Three separately constructed ROAs all have different assembly IDs", + ID1 != ID2) && Passed; + + // IDs are assigned by incrementing counter so they are strictly increasing + Passed = EvaluateTrue("GetAssemblyID()", "strictly increasing", "Assembly IDs are strictly increasing across consecutive constructions", + ID0 < ID1 && ID1 < ID2) && Passed; + + // AssemblyID must survive Clear() + R0.Clear(); + Passed = EvaluateTrue("GetAssemblyID()", "unchanged by Clear", "GetAssemblyID() returns the same value before and after Clear()", + R0.GetAssemblyID() == ID0) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +int main(int argc, char** argv) +{ + if (MGlobal::Initialize("UTNReadOutAssembly", "Unit tests for MReadOutAssembly") == false) return 1; + + UTNReadOutAssembly Test; + return Test.Run() == true ? 0 : 1; +} diff --git a/unittests/UTNRunner.cxx b/unittests/UTNRunner.cxx new file mode 100644 index 00000000..8a49a2eb --- /dev/null +++ b/unittests/UTNRunner.cxx @@ -0,0 +1,824 @@ +/* + * UTNRunner.cxx + * + * Copyright (C) by Andreas Zoglauer. + * All rights reserved. + * + * Please see the source-file for the copyright-notice. + * + */ + + +// Standard libs: +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +using namespace std; + +// MEGAlib: +#include "MFile.h" +#include "MStreams.h" +#include "MString.h" + + +//! Discover, schedule, and run UTN* unit test executables in parallel, +//! report live progress on a terminal dashboard, and persist per-test +//! runtimes so the slowest tests are always started first. +class UTNRunner +{ +public: + //! Default constructor + UTNRunner() {} + //! Default destructor + virtual ~UTNRunner() {} + + //! Run the requested tests; returns 0 if all pass, 1 if any fail or no tests are found + int Execute(int argc, char** argv); + +private: + //! Test lifecycle states + enum EStatus { + c_StatusPending = 0, //!< not yet launched + c_StatusRunning, //!< child process is running + c_StatusFailed, //!< exited non-zero or failed to launch + c_StatusPassed //!< exited with status 0 + }; + + //! Remove a known source-file extension (.cxx) so users can pass either "UTNFoo" or "UTNFoo.cxx" + MString StripExtension(const MString& Name) const; + //! Return the directory that contains argv[0], or working-directory/bin as fallback + MString GetBinDirectory(const char* Argv0) const; + //! Return the path to the timing cache file in the platform config directory + MString GetTimingFile() const; + //! Normalize a command-line test request to a bare test name (strips directory and .cxx extension) + MString NormalizeRequest(const MString& Input) const; + //! Resolve a normalized request to a discovered test name, prepending "UTN" or stripping the class prefix as needed + MString ResolveRequest(const MString& Input) const; + //! Scan the bin directory for UTN* executables and populate m_AllTests + bool DiscoverTests(); + //! Load prior runtimes from the timing cache; returns true even when the file is absent (cache is optional) + bool LoadTimings(map& Timings) const; + //! Persist runtimes to the timing cache; returns true even when writing fails (cache is optional) + bool SaveTimings(const map& Timings) const; + //! Build the ordered list of tests to run from command-line arguments, or all tests if none given + bool BuildRequestedTests(int argc, char** argv, vector& RequestedTests) const; + //! Reorder tests so the slowest prior runs come first, maximising CPU utilisation + void SortRequestedTests(vector& RequestedTests, const map& Timings) const; + //! Fork and exec the test executable; on success sets ChildPid and OutputFile (temp file capturing stdout+stderr) + bool LaunchTest(const MString& TestName, pid_t& ChildPid, MString& OutputFile) const; + //! Read and return the full contents of the captured output temp file + MString ReadOutput(const MString& OutputFile) const; + //! Extract the "Passed tests: N, Failed tests: M" summary line from captured output + MString ExtractMetric(const MString& Output) const; + //! Format a concise "X/Y failed" label from the raw metric string for the dashboard + MString FormatFailureMetric(const MString& Metric) const; + //! Format a duration as "N.Ns" for the dashboard + MString FormatRuntime(double Seconds) const; + + //! The bin directory containing the test executables + MString m_BinDirectory; + //! All discovered unit tests keyed by name, valued by full path + map m_AllTests; + //! Full path to the timing cache file + MString m_TimingFile; +}; + + +//////////////////////////////////////////////////////////////////////////////// + + +MString UTNRunner::StripExtension(const MString& Name) const +{ + if (Name.EndsWith(".cxx") == true) { + return Name.GetSubString(0, Name.Length() - 4); + } + + return Name; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +MString UTNRunner::GetBinDirectory(const char* Argv0) const +{ + // Primary: if argv[0] contains a path separator, its directory is the bin directory + MString Executable = Argv0 != nullptr ? Argv0 : ""; + if (Executable.Contains("/") == true || Executable.Contains("\\") == true) { + MString Dir = MFile::GetDirectoryName(Executable); + if (Dir.IsEmpty() == false) { + return Dir; + } + } + + // Secondary: $MEGALIB/bin is always correct in a configured MEGAlib environment + const char* MEGAlibEnv = getenv("MEGALIB"); + if (MEGAlibEnv != nullptr && MEGAlibEnv[0] != '\0') { + return MString(MEGAlibEnv) + "/bin"; + } + + // Fallback: assume the bin directory is relative to the working directory + return MFile::GetWorkingDirectory() + "/bin"; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +MString UTNRunner::GetTimingFile() const +{ + const char* Home = getenv("HOME"); + + MString BaseDir; +#ifdef __APPLE__ + if (Home != nullptr && Home[0] != '\0') { + BaseDir = MString(Home) + "/Library/Application Support"; + } else { + BaseDir = "/tmp"; + } +#else + const char* XdgConfigHome = getenv("XDG_CONFIG_HOME"); + if (XdgConfigHome != nullptr && XdgConfigHome[0] != '\0') { + BaseDir = XdgConfigHome; + } else if (Home != nullptr && Home[0] != '\0') { + BaseDir = MString(Home) + "/.config"; + } else { + BaseDir = "/tmp"; + } +#endif + + MString ConfigDir = BaseDir + "/MEGAlib"; + if (MFile::CreateDirectory(ConfigDir) == false) { + return ""; + } + + return ConfigDir + "/UTNRunner.timings"; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +MString UTNRunner::NormalizeRequest(const MString& Input) const +{ + return StripExtension(MFile::GetBaseName(Input)); +} + + +//////////////////////////////////////////////////////////////////////////////// + + +MString UTNRunner::ResolveRequest(const MString& Input) const +{ + MString Name = NormalizeRequest(Input); + vector Candidates; + + if (Name.BeginsWith("UTN") == true) { + Candidates.push_back(Name); + } else { + Candidates.push_back("UTN" + Name); + if (Name.BeginsWith("M") == true && Name.Length() > 1) { + Candidates.push_back("UTN" + Name.GetSubString(1)); + } + } + + for (const MString& Candidate : Candidates) { + if (m_AllTests.find(Candidate) != m_AllTests.end()) { + return Candidate; + } + } + + if (Candidates.empty() == false) { + return Candidates.front(); + } + + return Name; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNRunner::DiscoverTests() +{ + m_AllTests.clear(); + + DIR* Directory = opendir(m_BinDirectory.Data()); + if (Directory == nullptr) { + return false; + } + + dirent* Entry = nullptr; + while ((Entry = readdir(Directory)) != nullptr) { + MString Name = Entry->d_name; + if (Name.BeginsWith("UTN") == false) { + continue; + } + if (Name == "UTNRunner") { + continue; + } + + MString Path = m_BinDirectory + "/" + Name; + if (MFile::IsExecutable(Path) == false) { + continue; + } + + m_AllTests[Name] = Path; + } + + closedir(Directory); + return true; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNRunner::LoadTimings(map& Timings) const +{ + Timings.clear(); + + if (m_TimingFile == "") { + return true; + } + + ifstream Input(m_TimingFile.Data()); + if (Input.is_open() == false) { + return true; + } + + string Line; + while (getline(Input, Line)) { + if (Line.empty() == true || Line[0] == '#') { + continue; + } + stringstream Stream(Line); + string Name; + double Time = 0.0; + if ((Stream >> Name >> Time).fail()) { + continue; + } + if (Time < 0.0) { + continue; + } + Timings[MString(Name.c_str())] = Time; + } + + return true; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNRunner::SaveTimings(const map& Timings) const +{ + if (m_TimingFile == "") { + return true; + } + + ofstream Output(m_TimingFile.Data(), ios::trunc); + if (Output.is_open() == false) { + return true; + } + + Output << "# UTNRunner timing cache" << '\n'; + Output << "# test_name seconds" << '\n'; + for (const auto& Entry : Timings) { + Output << Entry.first.Data() << ' ' << Entry.second << '\n'; + } + + return true; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNRunner::BuildRequestedTests(int argc, char** argv, vector& RequestedTests) const +{ + RequestedTests.clear(); + + if (argc == 1) { + for (const auto& Entry : m_AllTests) { + RequestedTests.push_back(Entry.first); + } + return true; + } + + set Seen; + for (int a = 1; a < argc; ++a) { + MString Requested = ResolveRequest(argv[a]); + if (Seen.insert(Requested).second == false) { + continue; + } + + if (m_AllTests.find(Requested) == m_AllTests.end()) { + merr<<"Unknown unit test request: "< "<& RequestedTests, const map& Timings) const +{ + stable_sort(RequestedTests.begin(), RequestedTests.end(), [&](const MString& A, const MString& B) { + map::const_iterator Ta = Timings.find(A); + map::const_iterator Tb = Timings.find(B); + double TimeA = Ta != Timings.end() ? Ta->second : -1.0; + double TimeB = Tb != Timings.end() ? Tb->second : -1.0; + if (TimeA != TimeB) { + return TimeA > TimeB; + } + return A < B; + }); +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNRunner::LaunchTest(const MString& TestName, pid_t& ChildPid, MString& OutputFile) const +{ + ChildPid = -1; + OutputFile = ""; + + map::const_iterator Test = m_AllTests.find(TestName); + if (Test == m_AllTests.end()) { + return false; + } + + char Template[] = "/tmp/UTNRunner_XXXXXX"; + int FD = mkstemp(Template); + if (FD < 0) { + return false; + } + close(FD); + OutputFile = Template; + + pid_t Pid = fork(); + if (Pid < 0) { + unlink(OutputFile.Data()); + OutputFile = ""; + return false; + } + + if (Pid == 0) { + int Out = open(OutputFile.Data(), O_WRONLY | O_TRUNC); + if (Out < 0) { + _exit(127); + } + dup2(Out, STDOUT_FILENO); + dup2(Out, STDERR_FILENO); + close(Out); + + execl(Test->second.Data(), Test->second.Data(), (char*) nullptr); + _exit(127); + } + + ChildPid = Pid; + return true; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +MString UTNRunner::ReadOutput(const MString& OutputFile) const +{ + ifstream Input(OutputFile.Data()); + if (Input.is_open() == false) { + return ""; + } + + stringstream Buffer; + Buffer << Input.rdbuf(); + return Buffer.str().c_str(); +} + + +//////////////////////////////////////////////////////////////////////////////// + + +MString UTNRunner::ExtractMetric(const MString& Output) const +{ + string Text = Output.Data(); + size_t PassedPos = Text.rfind("Passed tests:"); + size_t FailedPos = Text.rfind("Failed tests:"); + if (PassedPos != string::npos && FailedPos != string::npos && FailedPos > PassedPos) { + size_t PassedEnd = Text.find('\n', PassedPos); + size_t FailedEnd = Text.find('\n', FailedPos); + MString PassedLine = Text.substr(PassedPos, PassedEnd == string::npos ? string::npos : PassedEnd - PassedPos).c_str(); + MString FailedLine = Text.substr(FailedPos, FailedEnd == string::npos ? string::npos : FailedEnd - FailedPos).c_str(); + return PassedLine + ", " + FailedLine; + } + + return "done"; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +MString UTNRunner::FormatFailureMetric(const MString& Metric) const +{ + string Text = Metric.Data(); + size_t PassedPos = Text.find("Passed tests:"); + size_t FailedPos = Text.find("Failed tests:"); + if (PassedPos == string::npos || FailedPos == string::npos || FailedPos < PassedPos) { + return Metric; + } + + auto ParseValue = [&](size_t Pos, const char* Prefix) -> long { + size_t Start = Text.find(Prefix, Pos); + if (Start == string::npos) { + return -1; + } + Start += strlen(Prefix); + while (Start < Text.size() && isspace(static_cast(Text[Start])) != 0) { + ++Start; + } + char* End = nullptr; + long Value = strtol(Text.c_str() + Start, &End, 10); + if (End == Text.c_str() + Start) { + return -1; + } + return Value; + }; + + long Passed = ParseValue(PassedPos, "Passed tests:"); + long Failed = ParseValue(FailedPos, "Failed tests:"); + if (Passed < 0 || Failed < 0) { + return Metric; + } + + return MString(Failed) + "/" + Passed + " failed"; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +MString UTNRunner::FormatRuntime(double Seconds) const +{ + ostringstream Out; + Out.setf(ios::fixed); + Out.precision(1); + Out << Seconds << "s"; + return Out.str().c_str(); +} + + +//////////////////////////////////////////////////////////////////////////////// + + +int UTNRunner::Execute(int argc, char** argv) +{ + m_BinDirectory = GetBinDirectory(argc > 0 ? argv[0] : nullptr); + m_TimingFile = GetTimingFile(); + if (DiscoverTests() == false || m_AllTests.empty() == true) { + merr<<"No unit test executables found in "< Timings; + LoadTimings(Timings); + + vector RequestedTests; + if (BuildRequestedTests(argc, argv, RequestedTests) == false) { + return 1; + } + SortRequestedTests(RequestedTests, Timings); + + vector Statuses(RequestedTests.size(), c_StatusPending); + vector Outputs(RequestedTests.size(), ""); + vector OutputFiles(RequestedTests.size(), ""); + map PidToIndex; + vector Metrics(RequestedTests.size(), ""); + vector StartTimes(RequestedTests.size()); + vector Durations(RequestedTests.size(), 0.0); + chrono::steady_clock::time_point SuiteStart = chrono::steady_clock::now(); + // Detect CPU count before the first Render() so the dashboard panel height is correct from the start + unsigned int MaxParallel = std::thread::hardware_concurrency(); + if (MaxParallel == 0) MaxParallel = 1; + + bool UseTTY = isatty(STDOUT_FILENO) != 0; + struct TerminalSession + { + bool Enabled = false; + TerminalSession(bool IsEnabled) : Enabled(IsEnabled) + { + if (Enabled == true) { + cout << "\x1b[?25l" << flush; + } + } + ~TerminalSession() + { + if (Enabled == true) { + cout << "\x1b[?25h" << flush; + } + } + } TtySession(UseTTY); + unsigned int SpinnerIndex = 0; + const char SpinnerChars[] = {'|', '/', '-', '\\'}; + + size_t TerminalWidth = 100; + if (UseTTY == true) { + winsize WinSize; + if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &WinSize) == 0 && WinSize.ws_col > 0) { + TerminalWidth = WinSize.ws_col; + } + } + if (TerminalWidth < 80) { + TerminalWidth = 80; + } + + auto Render = [&]() { + if (UseTTY == false) { + return; + } + + vector LeftLines; + vector RightLines; + unsigned int Done = 0; + unsigned int RunningCount = 0; + unsigned int FailedCount = 0; + const size_t ProgressBarWidth = 32; + + for (size_t i = 0; i < RequestedTests.size(); ++i) { + if (Statuses[i] != c_StatusPending && Statuses[i] != c_StatusRunning) { + ++Done; + } + if (Statuses[i] == c_StatusRunning) { + ++RunningCount; + } else if (Statuses[i] == c_StatusFailed) { + ++FailedCount; + } + } + + LeftLines.push_back(MString("Done: ") + Done + "/" + RequestedTests.size()); + LeftLines.push_back(MString("Running: ") + RunningCount); + LeftLines.push_back(MString("Failed: ") + FailedCount); + LeftLines.push_back(""); + LeftLines.push_back("Failed runs:"); + for (size_t i = 0; i < RequestedTests.size(); ++i) { + if (Statuses[i] == c_StatusFailed) { + MString Line = RequestedTests[i]; + if (Metrics[i].Length() > 0) { + Line += MString(" (") + FormatFailureMetric(Metrics[i]) + ")"; + } + LeftLines.push_back(Line); + } + } + if (LeftLines.size() == 5) { + LeftLines.push_back("none"); + } + + RightLines.push_back("Running tests:"); + bool AnyRunning = false; + for (size_t i = 0; i < RequestedTests.size(); ++i) { + if (Statuses[i] == c_StatusRunning) { + AnyRunning = true; + MString Line = MString(SpinnerChars[SpinnerIndex % 4]) + " " + RequestedTests[i]; + if (Metrics[i].Length() > 0) { + Line += MString(" (") + Metrics[i] + ")"; + } + RightLines.push_back(Line); + } + } + if (AnyRunning == false) { + RightLines.push_back("none"); + } + while (RightLines.size() < MaxParallel + 1) { + RightLines.push_back(""); + } + + size_t Filled = RequestedTests.empty() == true ? ProgressBarWidth : (Done * ProgressBarWidth) / RequestedTests.size(); + MString Bar = "["; + for (size_t i = 0; i < ProgressBarWidth; ++i) { + Bar += (i < Filled ? "#" : "."); + } + Bar += "]"; + chrono::steady_clock::time_point Now = chrono::steady_clock::now(); + double Elapsed = chrono::duration_cast>(Now - SuiteStart).count(); + MString Progress = MString("Progress: ") + Bar + MString(" ") + Done + "/" + RequestedTests.size() + + MString(" ") + FormatRuntime(Elapsed); + + size_t LeftRequiredWidth = 0; + for (size_t i = 0; i < LeftLines.size(); ++i) { + if (LeftLines[i].Length() > LeftRequiredWidth) { + LeftRequiredWidth = LeftLines[i].Length(); + } + } + + size_t RightRequiredWidth = 0; + for (size_t i = 0; i < RightLines.size(); ++i) { + if (RightLines[i].Length() > RightRequiredWidth) { + RightRequiredWidth = RightLines[i].Length(); + } + } + + size_t MaxInnerWidth = TerminalWidth > 2 ? TerminalWidth - 2 : TerminalWidth; + size_t PaneWidth = max(LeftRequiredWidth, RightRequiredWidth); + if (PaneWidth < 24) { + PaneWidth = 24; + } + if (PaneWidth * 2 + 5 > MaxInnerWidth) { + if (MaxInnerWidth > 3) { + PaneWidth = (MaxInnerWidth > 5) ? (MaxInnerWidth - 5) / 2 : 1; + } else { + PaneWidth = 1; + } + } + size_t MinPaneForProgress = Progress.Length() / 2; + if (MinPaneForProgress > PaneWidth) { + PaneWidth = MinPaneForProgress; + } + size_t LeftWidth = PaneWidth; + size_t RightWidth = PaneWidth; + size_t InnerWidth = LeftWidth + RightWidth + 5; + + auto Clip = [&](const MString& Text, size_t Width) -> MString { + if (Text.Length() <= Width) { + return Text; + } + if (Width <= 3) { + return Text.GetSubString(0, Width); + } + return Text.GetSubString(0, Width - 3) + "..."; + }; + + auto Center = [&](const MString& Text, size_t Width) -> MString { + MString Clipped = Clip(Text, Width); + if (Clipped.Length() >= Width) { + return Clipped; + } + size_t PadLeft = (Width - Clipped.Length()) / 2; + size_t PadRight = Width - Clipped.Length() - PadLeft; + return MString(string(PadLeft, ' ')) + Clipped + MString(string(PadRight, ' ')); + }; + + auto Border = [&]() -> MString { + return MString("+") + MString(string(InnerWidth, '-')) + "+"; + }; + + auto MakeRow = [&](const MString& Left, const MString& Right) -> MString { + MString LeftClipped = Clip(Left, LeftWidth); + MString RightClipped = Clip(Right, RightWidth); + return MString("| ") + LeftClipped + MString(string(LeftWidth - LeftClipped.Length(), ' ')) + + MString(" | ") + RightClipped + MString(string(RightWidth - RightClipped.Length(), ' ')) + + MString(" |"); + }; + + auto MakeCenteredRow = [&](const MString& Text) -> MString { + if (InnerWidth <= 2) { + return MString("|") + Text + MString("|"); + } + return MString("|") + Center(Text, InnerWidth) + MString("|"); + }; + + size_t MaxLines = max(LeftLines.size(), RightLines.size()); + cout << "\x1b[2J\x1b[H"; + cout << Border() << '\n'; + cout << MakeCenteredRow("MEGAlib unit testing dashboard") << '\n'; + cout << Border() << '\n'; + for (size_t i = 0; i < MaxLines; ++i) { + MString Left = i < LeftLines.size() ? LeftLines[i] : ""; + MString Right = i < RightLines.size() ? RightLines[i] : ""; + cout << MakeRow(Left, Right) << '\n'; + } + cout << Border() << '\n'; + cout << MakeCenteredRow(Progress) << '\n'; + cout << Border() << '\n'; + cout.flush(); + }; + + Render(); + + size_t NextParallel = 0; + size_t Running = 0; + while (NextParallel < RequestedTests.size() || Running > 0) { + while (NextParallel < RequestedTests.size() && Running < MaxParallel) { + pid_t ChildPid = -1; + MString OutputFile; + if (LaunchTest(RequestedTests[NextParallel], ChildPid, OutputFile) == false) { + Statuses[NextParallel] = c_StatusFailed; + Metrics[NextParallel] = "Failed to launch test process"; + ++NextParallel; + Render(); + continue; + } + PidToIndex[ChildPid] = NextParallel; + OutputFiles[NextParallel] = OutputFile; + StartTimes[NextParallel] = chrono::steady_clock::now(); + ++NextParallel; + ++Running; + Statuses[NextParallel - 1] = c_StatusRunning; + Render(); + } + + int ChildStatus = 0; + pid_t Child = waitpid(-1, &ChildStatus, WNOHANG); + if (Child < 0) { + if (errno == EINTR) { + continue; + } + break; + } + if (Child == 0) { + ++SpinnerIndex; + Render(); + usleep(1000000); + continue; + } + + map::iterator It = PidToIndex.find(Child); + if (It != PidToIndex.end()) { + size_t Index = It->second; + PidToIndex.erase(It); + Outputs[Index] = ReadOutput(OutputFiles[Index]); + unlink(OutputFiles[Index].Data()); + Metrics[Index] = ExtractMetric(Outputs[Index]); + chrono::steady_clock::time_point EndTime = chrono::steady_clock::now(); + double Seconds = chrono::duration_cast>(EndTime - StartTimes[Index]).count(); + if (Seconds >= 0.0) { + Durations[Index] = Seconds; + Timings[RequestedTests[Index]] = Seconds; + } + if (WIFEXITED(ChildStatus) != 0 && WEXITSTATUS(ChildStatus) == 0) { + Statuses[Index] = c_StatusPassed; + } else { + Statuses[Index] = c_StatusFailed; + } + --Running; + Render(); + } + } + + int Failed = 0; + int Total = 0; + for (size_t i = 0; i < RequestedTests.size(); ++i) { + ++Total; + if (Statuses[i] != c_StatusPassed) { + ++Failed; + } + } + + if (UseTTY == false) { + for (size_t i = 0; i < RequestedTests.size(); ++i) { + if (Statuses[i] == c_StatusPassed) { + cout << "PASS " << RequestedTests[i]; + } else { + cout << RequestedTests[i]; + } + if (Metrics[i].Length() > 0) { + if (Statuses[i] == c_StatusPassed) { + cout << " (" << Metrics[i] << ")"; + } else { + cout << " (" << FormatFailureMetric(Metrics[i]) << ")"; + } + } + cout << '\n'; + } + } else { + Render(); + cout << '\n'; + } + + SaveTimings(Timings); + + return Failed == 0 ? 0 : 1; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +int main(int argc, char** argv) +{ + UTNRunner Execute; + return Execute.Execute(argc, argv); +} diff --git a/unittests/UTNStripHit.cxx b/unittests/UTNStripHit.cxx new file mode 100644 index 00000000..17133c87 --- /dev/null +++ b/unittests/UTNStripHit.cxx @@ -0,0 +1,665 @@ +/* + * UTNStripHit.cxx + * + * Copyright (C) by Andreas Zoglauer. + * All rights reserved. + * + * Please see the source-file for the copyright-notice. + * + */ + + +// Standard libs: +#include +#include +using namespace std; + +// MEGAlib: +#include "MGlobal.h" +#include "MUnitTest.h" + +// Nuclearizer: +#include "MStripHit.h" + + +//! Unit test class for MStripHit +class UTNStripHit : public MUnitTest +{ +public: + UTNStripHit() : MUnitTest("UTNStripHit") {} + virtual ~UTNStripHit() {} + + virtual bool Run(); + +private: + //! Test default construction and Clear() + bool TestDefaultConstruction(); + //! Test individual getter/setter pairs + bool TestGettersSetters(); + //! Test MakeFlags() bit layout and ParseFlags() round-trip + bool TestMakeParseFlags(); + //! Test AddOrigins() deduplication and sorting + bool TestAddOrigins(); + //! Test StreamDat() / Parse() round-trip + bool TestStreamDatParse(); + //! Test StreamRoa() conditional field output + bool TestStreamRoa(); +}; + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNStripHit::Run() +{ + bool Passed = true; + + Passed = TestDefaultConstruction() && Passed; + Passed = TestGettersSetters() && Passed; + Passed = TestMakeParseFlags() && Passed; + Passed = TestAddOrigins() && Passed; + Passed = TestStreamDatParse() && Passed; + Passed = TestStreamRoa() && Passed; + + Summarize(); + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNStripHit::TestDefaultConstruction() +{ + bool Passed = true; + + MStripHit H; + + Passed = EvaluateTrue("GetReadOutElement()", "non-null", "GetReadOutElement() returns a non-null pointer after construction", H.GetReadOutElement() != nullptr) && Passed; + Passed = Evaluate("GetDetectorID()", "default", "Default DetectorID is undefined", H.GetDetectorID(), g_UnsignedIntNotDefined) && Passed; + Passed = Evaluate("GetStripID()", "default", "Default StripID is undefined", H.GetStripID(), g_UnsignedIntNotDefined) && Passed; + Passed = EvaluateTrue("IsLowVoltageStrip()", "default", "Default strip type is low-voltage", H.IsLowVoltageStrip()) && Passed; + Passed = EvaluateFalse("HasTriggered()", "default", "Default HasTriggered is false", H.HasTriggered()) && Passed; + Passed = EvaluateNear("GetUncorrectedADCUnits()", "default", "Default UncorrectedADCUnits is 0", H.GetUncorrectedADCUnits(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("GetADCUnits()", "default", "Default ADCUnits is 0", H.GetADCUnits(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("GetEnergy()", "default", "Default Energy is 0", H.GetEnergy(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("GetEnergyResolution()", "default", "Default EnergyResolution is 0", H.GetEnergyResolution(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("GetTAC()", "default", "Default TAC is 0", H.GetTAC(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("GetTACResolution()", "default", "Default TACResolution is 0", H.GetTACResolution(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("GetTiming()", "default", "Default Timing is 0", H.GetTiming(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("GetTimingResolution()", "default", "Default TimingResolution is 0", H.GetTimingResolution(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("GetPreampTemp()", "default", "Default PreampTemp is 0", H.GetPreampTemp(), 0.0, 1e-12) && Passed; + Passed = EvaluateFalse("IsGuardRing()", "default", "Default IsGuardRing is false", H.IsGuardRing()) && Passed; + Passed = EvaluateFalse("IsNearestNeighbor()", "default", "Default IsNearestNeighbor is false", H.IsNearestNeighbor()) && Passed; + Passed = EvaluateFalse("HasFastTiming()", "default", "Default HasFastTiming is false", H.HasFastTiming()) && Passed; + Passed = EvaluateFalse("HasCalibratedTiming()", "default", "Default HasCalibratedTiming is false", H.HasCalibratedTiming()) && Passed; + Passed = Evaluate("GetOrigins().size()", "default", "Default origins list is empty", (unsigned int) H.GetOrigins().size(), (unsigned int) 0) && Passed; + + // Verify that Clear() reinstates all defaults + H.SetDetectorID(5); + H.SetStripID(12); + H.IsLowVoltageStrip(true); + H.HasTriggered(true); + H.SetADCUnits(1234.0); + H.SetEnergy(511.0); + H.SetTAC(9999.0); + H.SetTiming(42.0); + H.IsGuardRing(true); + H.IsNearestNeighbor(true); + H.HasFastTiming(true); + H.HasCalibratedTiming(true); + H.AddOrigins({3, 7}); + + H.Clear(); + + Passed = Evaluate("Clear() DetectorID", "after clear", "Clear() resets DetectorID to undefined", H.GetDetectorID(), g_UnsignedIntNotDefined) && Passed; + Passed = Evaluate("Clear() StripID", "after clear", "Clear() resets StripID to undefined", H.GetStripID(), g_UnsignedIntNotDefined) && Passed; + Passed = EvaluateTrue("Clear() IsLowVoltageStrip", "after clear", "Clear() resets IsLowVoltageStrip to true", H.IsLowVoltageStrip()) && Passed; + Passed = EvaluateFalse("Clear() HasTriggered", "after clear", "Clear() resets HasTriggered to false", H.HasTriggered()) && Passed; + Passed = EvaluateNear("Clear() ADCUnits", "after clear", "Clear() resets ADCUnits to 0", H.GetADCUnits(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("Clear() Energy", "after clear", "Clear() resets Energy to 0", H.GetEnergy(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("Clear() TAC", "after clear", "Clear() resets TAC to 0", H.GetTAC(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("Clear() Timing", "after clear", "Clear() resets Timing to 0", H.GetTiming(), 0.0, 1e-12) && Passed; + Passed = EvaluateFalse("Clear() IsGuardRing", "after clear", "Clear() resets IsGuardRing to false", H.IsGuardRing()) && Passed; + Passed = EvaluateFalse("Clear() IsNearestNeighbor", "after clear", "Clear() resets IsNearestNeighbor to false", H.IsNearestNeighbor()) && Passed; + Passed = EvaluateFalse("Clear() HasFastTiming", "after clear", "Clear() resets HasFastTiming to false", H.HasFastTiming()) && Passed; + Passed = EvaluateFalse("Clear() HasCalibratedTiming", "after clear", "Clear() resets HasCalibratedTiming to false", H.HasCalibratedTiming()) && Passed; + Passed = Evaluate("Clear() origins", "after clear", "Clear() empties the origins list", (unsigned int) H.GetOrigins().size(), (unsigned int) 0) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNStripHit::TestGettersSetters() +{ + bool Passed = true; + + MStripHit H; + + // DetectorID + H.SetDetectorID(3); + Passed = Evaluate("SetDetectorID/GetDetectorID", "representative value 3", "GetDetectorID returns the representative value 3", H.GetDetectorID(), 3u) && Passed; + + // StripID + H.SetStripID(47); + Passed = Evaluate("SetStripID/GetStripID", "representative value 47", "GetStripID returns the representative value 47", H.GetStripID(), 47u) && Passed; + + // IsLowVoltageStrip + H.IsLowVoltageStrip(true); + Passed = EvaluateTrue("IsLowVoltageStrip(bool)/IsLowVoltageStrip()", "representative true", "IsLowVoltageStrip() returns true after IsLowVoltageStrip(true)", H.IsLowVoltageStrip()) && Passed; + H.IsLowVoltageStrip(false); + Passed = EvaluateFalse("IsLowVoltageStrip(bool)/IsLowVoltageStrip()", "representative false", "IsLowVoltageStrip() returns false after IsLowVoltageStrip(false)", H.IsLowVoltageStrip()) && Passed; + + // IsXStrip is an alias for IsLowVoltageStrip + H.IsXStrip(true); + Passed = EvaluateTrue("IsXStrip(bool)/IsXStrip()", "alias true", "IsXStrip() returns true after IsXStrip(true)", H.IsXStrip()) && Passed; + Passed = EvaluateTrue("IsXStrip(bool)/IsLowVoltageStrip()", "alias true", "IsLowVoltageStrip() returns true after IsXStrip(true)", H.IsLowVoltageStrip()) && Passed; + H.IsXStrip(false); + Passed = EvaluateFalse("IsXStrip(bool)/IsXStrip()", "alias false", "IsXStrip() returns false after IsXStrip(false)", H.IsXStrip()) && Passed; + + // HasTriggered + H.HasTriggered(true); + Passed = EvaluateTrue("HasTriggered(bool)/HasTriggered()", "representative true", "HasTriggered() returns true after HasTriggered(true)", H.HasTriggered()) && Passed; + H.HasTriggered(false); + Passed = EvaluateFalse("HasTriggered(bool)/HasTriggered()", "representative false", "HasTriggered() returns false after HasTriggered(false)", H.HasTriggered()) && Passed; + + // UncorrectedADCUnits + H.SetUncorrectedADCUnits(2048.5); + Passed = EvaluateNear("SetUncorrectedADCUnits/GetUncorrectedADCUnits", "representative value", "GetUncorrectedADCUnits returns the representative value 2048.5", H.GetUncorrectedADCUnits(), 2048.5, 1e-9) && Passed; + + // ADCUnits + H.SetADCUnits(4095.0); + Passed = EvaluateNear("SetADCUnits/GetADCUnits", "representative value", "GetADCUnits returns the representative value 4095.0", H.GetADCUnits(), 4095.0, 1e-9) && Passed; + + // Energy + H.SetEnergy(511.0); + Passed = EvaluateNear("SetEnergy/GetEnergy", "representative value", "GetEnergy returns the representative value 511.0 keV", H.GetEnergy(), 511.0, 1e-9) && Passed; + + // EnergyResolution + H.SetEnergyResolution(1.5); + Passed = EvaluateNear("SetEnergyResolution/GetEnergyResolution", "representative value", "GetEnergyResolution returns the representative value 1.5", H.GetEnergyResolution(), 1.5, 1e-9) && Passed; + + // TAC + H.SetTAC(10452.0); + Passed = EvaluateNear("SetTAC/GetTAC", "representative value", "GetTAC returns the representative value 10452.0", H.GetTAC(), 10452.0, 1e-9) && Passed; + + // TACResolution + H.SetTACResolution(3.0); + Passed = EvaluateNear("SetTACResolution/GetTACResolution", "representative value", "GetTACResolution returns the representative value 3.0", H.GetTACResolution(), 3.0, 1e-9) && Passed; + + // Timing + H.SetTiming(123.456); + Passed = EvaluateNear("SetTiming/GetTiming", "representative value", "GetTiming returns the representative value 123.456 ns", H.GetTiming(), 123.456, 1e-9) && Passed; + + // TimingResolution + H.SetTimingResolution(0.5); + Passed = EvaluateNear("SetTimingResolution/GetTimingResolution", "representative value", "GetTimingResolution returns the representative value 0.5 ns", H.GetTimingResolution(), 0.5, 1e-9) && Passed; + + // PreampTemp + H.SetPreampTemp(25.3); + Passed = EvaluateNear("SetPreampTemp/GetPreampTemp", "representative value", "GetPreampTemp returns the representative value 25.3 degrees C", H.GetPreampTemp(), 25.3, 1e-9) && Passed; + + // IsGuardRing + H.IsGuardRing(true); + Passed = EvaluateTrue("IsGuardRing(bool)/IsGuardRing()", "representative true", "IsGuardRing() returns true after IsGuardRing(true)", H.IsGuardRing()) && Passed; + H.IsGuardRing(false); + Passed = EvaluateFalse("IsGuardRing(bool)/IsGuardRing()", "representative false", "IsGuardRing() returns false after IsGuardRing(false)", H.IsGuardRing()) && Passed; + + // IsNearestNeighbor + H.IsNearestNeighbor(true); + Passed = EvaluateTrue("IsNearestNeighbor(bool)/IsNearestNeighbor()", "representative true", "IsNearestNeighbor() returns true after IsNearestNeighbor(true)", H.IsNearestNeighbor()) && Passed; + H.IsNearestNeighbor(false); + Passed = EvaluateFalse("IsNearestNeighbor(bool)/IsNearestNeighbor()", "representative false", "IsNearestNeighbor() returns false after IsNearestNeighbor(false)", H.IsNearestNeighbor()) && Passed; + + // HasFastTiming + H.HasFastTiming(true); + Passed = EvaluateTrue("HasFastTiming(bool)/HasFastTiming()", "representative true", "HasFastTiming() returns true after HasFastTiming(true)", H.HasFastTiming()) && Passed; + H.HasFastTiming(false); + Passed = EvaluateFalse("HasFastTiming(bool)/HasFastTiming()", "representative false", "HasFastTiming() returns false after HasFastTiming(false)", H.HasFastTiming()) && Passed; + + // HasCalibratedTiming + H.HasCalibratedTiming(true); + Passed = EvaluateTrue("HasCalibratedTiming(bool)/HasCalibratedTiming()", "representative true", "HasCalibratedTiming() returns true after HasCalibratedTiming(true)", H.HasCalibratedTiming()) && Passed; + H.HasCalibratedTiming(false); + Passed = EvaluateFalse("HasCalibratedTiming(bool)/HasCalibratedTiming()", "representative false", "HasCalibratedTiming() returns false after HasCalibratedTiming(false)", H.HasCalibratedTiming()) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNStripHit::TestMakeParseFlags() +{ + bool Passed = true; + + // MakeFlags() bit layout (from source): + // bit 0 (value 1) = IsGuardRing + // bit 1 (value 2) = IsNearestNeighbor + // bit 2 (value 4) = HasFastTiming + + MStripHit H; + + // All flags off → 0 + H.IsGuardRing(false); + H.IsNearestNeighbor(false); + H.HasFastTiming(false); + Passed = Evaluate("MakeFlags()", "all off", "MakeFlags() returns 0 when no flag is set", + H.MakeFlags(), (unsigned int) 0b000) && Passed; + + // Only IsGuardRing → bit 0 = 1 + H.IsGuardRing(true); + H.IsNearestNeighbor(false); + H.HasFastTiming(false); + Passed = Evaluate("MakeFlags()", "guard ring only", "MakeFlags() returns 1 when only IsGuardRing is set", + H.MakeFlags(), (unsigned int) 0b001) && Passed; + + // Only IsNearestNeighbor → bit 1 = 2 + H.IsGuardRing(false); + H.IsNearestNeighbor(true); + H.HasFastTiming(false); + Passed = Evaluate("MakeFlags()", "nearest neighbor only", "MakeFlags() returns 2 when only IsNearestNeighbor is set", + H.MakeFlags(), (unsigned int) 0b010) && Passed; + + // Only HasFastTiming → bit 2 = 4 + H.IsGuardRing(false); + H.IsNearestNeighbor(false); + H.HasFastTiming(true); + Passed = Evaluate("MakeFlags()", "fast timing only", "MakeFlags() returns 4 when only HasFastTiming is set", + H.MakeFlags(), (unsigned int) 0b100) && Passed; + + // All three flags → 7 + H.IsGuardRing(true); + H.IsNearestNeighbor(true); + H.HasFastTiming(true); + Passed = Evaluate("MakeFlags()", "all flags", "MakeFlags() returns 7 when all three flags are set", + H.MakeFlags(), (unsigned int) 0b111) && Passed; + + // ParseFlags() round-trip: flags=5 (guard ring + fast timing, no nearest neighbor) + H.Clear(); + H.ParseFlags(0b101u); + Passed = EvaluateTrue("ParseFlags()", "guard ring bit", "ParseFlags(0b101) sets IsGuardRing true", + H.IsGuardRing() == true) && Passed; + Passed = EvaluateFalse("ParseFlags()", "nearest neighbor bit", "ParseFlags(0b101) leaves IsNearestNeighbor false", + H.IsNearestNeighbor()) && Passed; + Passed = EvaluateTrue("ParseFlags()", "fast timing bit", "ParseFlags(0b101) sets HasFastTiming true", + H.HasFastTiming() == true) && Passed; + Passed = Evaluate("ParseFlags()", "round-trip", "MakeFlags() reproduces the representative flags value 5 after ParseFlags(5)", + H.MakeFlags(), (unsigned int) 0b101) && Passed; + + // ParseFlags(0) clears all flags + H.IsGuardRing(true); + H.IsNearestNeighbor(true); + H.HasFastTiming(true); + H.ParseFlags(0); + Passed = EvaluateFalse("ParseFlags(0)", "guard ring cleared", "ParseFlags(0) clears IsGuardRing", H.IsGuardRing()) && Passed; + Passed = EvaluateFalse("ParseFlags(0)", "nearest neighbor cleared", "ParseFlags(0) clears IsNearestNeighbor", H.IsNearestNeighbor()) && Passed; + Passed = EvaluateFalse("ParseFlags(0)", "fast timing cleared", "ParseFlags(0) clears HasFastTiming", H.HasFastTiming()) && Passed; + + // HasCalibratedTiming is intentionally not part of the bit mask + H.Clear(); + H.HasCalibratedTiming(false); + Passed = Evaluate("MakeFlags()", "calibrated timing false", "MakeFlags() is unchanged when HasCalibratedTiming is false", + H.MakeFlags(), (unsigned int) 0b000) && Passed; + H.HasCalibratedTiming(true); + Passed = Evaluate("MakeFlags()", "calibrated timing true", "MakeFlags() is unchanged when HasCalibratedTiming is true", + H.MakeFlags(), (unsigned int) 0b000) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNStripHit::TestAddOrigins() +{ + bool Passed = true; + + MStripHit H; + + // Empty after default construction + Passed = Evaluate("GetOrigins()", "empty default", "Origins list is empty after construction", + (unsigned int) H.GetOrigins().size(), (unsigned int) 0) && Passed; + + // Add a set of origins + H.AddOrigins({5, 3, 8, 1}); + vector Origins = H.GetOrigins(); + Passed = Evaluate("AddOrigins()", "count after first add", "Origins list has 4 entries after adding {5,3,8,1}", + (unsigned int) Origins.size(), (unsigned int) 4) && Passed; + + // Verify sorted order + if (Origins.size() == 4) { + Passed = Evaluate("AddOrigins()", "sorted element 0", "Origins are sorted: first element is 1", + Origins[0], 1) && Passed; + Passed = Evaluate("AddOrigins()", "sorted element 1", "Origins are sorted: second element is 3", + Origins[1], 3) && Passed; + Passed = Evaluate("AddOrigins()", "sorted element 2", "Origins are sorted: third element is 5", + Origins[2], 5) && Passed; + Passed = Evaluate("AddOrigins()", "sorted element 3", "Origins are sorted: fourth element is 8", + Origins[3], 8) && Passed; + } + + // Add again with duplicates: {3, 7, 8} — 3 and 8 are already present + H.AddOrigins({3, 7, 8}); + Origins = H.GetOrigins(); + Passed = Evaluate("AddOrigins()", "deduplicated count", "Origins list has 5 unique entries after adding {3,7,8} to {1,3,5,8}", + (unsigned int) Origins.size(), (unsigned int) 5) && Passed; + + if (Origins.size() == 5) { + Passed = Evaluate("AddOrigins()", "dedup element 0", "Origins after dedup: first element is 1", + Origins[0], 1) && Passed; + Passed = Evaluate("AddOrigins()", "dedup element 1", "Origins after dedup: second element is 3", + Origins[1], 3) && Passed; + Passed = Evaluate("AddOrigins()", "dedup element 2", "Origins after dedup: third element is 5", + Origins[2], 5) && Passed; + Passed = Evaluate("AddOrigins()", "dedup element 3", "Origins after dedup: fourth element is 7", + Origins[3], 7) && Passed; + Passed = Evaluate("AddOrigins()", "dedup element 4", "Origins after dedup: fifth element is 8", + Origins[4], 8) && Passed; + } + + // Add an empty list — count unchanged + H.AddOrigins({}); + Passed = Evaluate("AddOrigins()", "empty add", "Origins count is unchanged after adding an empty list", + (unsigned int) H.GetOrigins().size(), (unsigned int) 5) && Passed; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNStripHit::TestStreamDatParse() +{ + bool Passed = true; + + // Set up a representative strip hit with representative values. + MStripHit Writer; + Writer.SetDetectorID(2); + Writer.IsLowVoltageStrip(true); + Writer.SetStripID(37); + Writer.HasTriggered(true); + Writer.SetTiming(500.123); + Writer.SetUncorrectedADCUnits(3000.25); + Writer.SetADCUnits(2950.75); + Writer.SetEnergy(662.0); + Writer.SetEnergyResolution(2.5); + Writer.IsGuardRing(false); + Writer.IsNearestNeighbor(true); + Writer.HasFastTiming(true); + // Expected flags: IsNearestNeighbor(bit 1) + HasFastTiming(bit 2) = 0b110 = 6 + + // Stream to string + ostringstream Out; + Passed = EvaluateTrue("StreamDat()", "representative values", "StreamDat() returns true for a representative strip hit", + Writer.StreamDat(Out)) && Passed; + + MString Line(Out.str().c_str()); + Passed = EvaluateTrue("StreamDat()", "non-empty output", "StreamDat() produces non-empty output", + Line.IsEmpty() == false) && Passed; + + // Parse back into a fresh instance + MStripHit Reader; + Passed = EvaluateTrue("Parse()", "representative line", "Parse() returns true for a representative StreamDat() line", + Reader.Parse(Line)) && Passed; + + Passed = Evaluate("Parse()", "DetectorID", "Parse() restores the representative DetectorID 2", + Reader.GetDetectorID(), 2u) && Passed; + Passed = Evaluate("Parse()", "StripID", "Parse() restores the representative StripID 37", + Reader.GetStripID(), 37u) && Passed; + Passed = EvaluateTrue("Parse()", "IsLowVoltageStrip", "Parse() restores the representative low-voltage strip flag", + Reader.IsLowVoltageStrip() == true) && Passed; + Passed = EvaluateTrue("Parse()", "HasTriggered", "Parse() restores the representative HasTriggered flag", + Reader.HasTriggered() == true) && Passed; + Passed = EvaluateNear("Parse()", "Timing", "Parse() restores the representative Timing value 500.123", + Reader.GetTiming(), 500.123, 1e-6) && Passed; + Passed = EvaluateNear("Parse()", "UncorrectedADCUnits", "Parse() restores the representative UncorrectedADCUnits value 3000.25", + Reader.GetUncorrectedADCUnits(), 3000.25, 1e-6) && Passed; + Passed = EvaluateNear("Parse()", "ADCUnits", "Parse() restores the representative ADCUnits value 2950.75", + Reader.GetADCUnits(), 2950.75, 1e-6) && Passed; + Passed = EvaluateNear("Parse()", "Energy", "Parse() restores the representative Energy value 662.0", + Reader.GetEnergy(), 662.0, 1e-4) && Passed; + Passed = EvaluateNear("Parse()", "EnergyResolution", "Parse() restores the representative EnergyResolution value 2.5", + Reader.GetEnergyResolution(), 2.5, 1e-4) && Passed; + Passed = EvaluateNear("Parse()", "TAC", "Parse() leaves TAC at its default value because StreamDat() does not persist it", + Reader.GetTAC(), 0.0, 1e-12) && Passed; + Passed = EvaluateNear("Parse()", "PreampTemp", "Parse() leaves PreampTemp at its default value because StreamDat() does not persist it", + Reader.GetPreampTemp(), 0.0, 1e-12) && Passed; + Passed = EvaluateFalse("Parse()", "HasCalibratedTiming", "Parse() leaves HasCalibratedTiming false because StreamDat() does not persist it", + Reader.HasCalibratedTiming()) && Passed; + Passed = EvaluateFalse("Parse()", "IsGuardRing", "Parse() restores IsGuardRing false via flags", Reader.IsGuardRing()) && Passed; + Passed = EvaluateTrue("Parse()", "IsNearestNeighbor", "Parse() restores IsNearestNeighbor true via flags", Reader.IsNearestNeighbor()) && Passed; + Passed = EvaluateTrue("Parse()", "HasFastTiming", "Parse() restores HasFastTiming true via flags", Reader.HasFastTiming()) && Passed; + + // High-voltage strip round-trip: verify 'h' marker and HasTriggered(false) survive StreamDat/Parse + { + MStripHit WriterHV; + WriterHV.SetDetectorID(5); + WriterHV.IsLowVoltageStrip(false); + WriterHV.SetStripID(18); + WriterHV.HasTriggered(false); + WriterHV.SetTiming(99.5); + WriterHV.SetUncorrectedADCUnits(1024.0); + WriterHV.SetADCUnits(1000.0); + WriterHV.SetEnergy(356.0); + WriterHV.SetEnergyResolution(1.2); + ostringstream OutHV; + WriterHV.StreamDat(OutHV); + MString LineHV(OutHV.str().c_str()); + MStripHit ReaderHV; + Passed = EvaluateTrue("Parse()", "HV line", "Parse() returns true for a high-voltage strip line", + ReaderHV.Parse(LineHV)) && Passed; + Passed = EvaluateFalse("Parse()", "HV IsLowVoltageStrip", "Parse() restores IsLowVoltageStrip false for a high-voltage strip", + ReaderHV.IsLowVoltageStrip()) && Passed; + Passed = EvaluateFalse("Parse()", "HV HasTriggered false", "Parse() restores HasTriggered false for the high-voltage strip", + ReaderHV.HasTriggered()) && Passed; + Passed = EvaluateNear("Parse()", "HV Timing", "Parse() restores Timing 99.5 for the high-voltage strip", + ReaderHV.GetTiming(), 99.5, 1e-6) && Passed; + } + + // The malformed-line cases below exercise MStripHit::Parse() error paths that + // print via "if (g_Verbosity >= c_Error)". Lower g_Verbosity to c_Quiet to + // silence the expected diagnostics, and restore it afterwards. + int OldVerbosity = g_Verbosity; + g_Verbosity = c_Quiet; + + // Parse() returns false for a non-SH line + MString NonSHLine("UH 0 37 l 2950 10000 4"); + MStripHit Dummy; + Passed = EvaluateFalse("Parse()", "non-SH line", "Parse() returns false for a line that does not start with 'SH'", + Dummy.Parse(NonSHLine)) && Passed; + + // Parse() returns false for an invalid strip face marker + MString InvalidFaceLine("SH 2 x 37 1 500 3000 2950 662.0 2.5 4"); + Passed = EvaluateFalse("Parse()", "invalid face", "Parse() returns false for a line with an unknown detector face", + Dummy.Parse(InvalidFaceLine)) && Passed; + + // Parse() returns false for a line shorter than 3 characters + MString ShortLine("SH"); + Passed = EvaluateFalse("Parse()", "short line", "Parse() returns false for a line shorter than 3 characters", + Dummy.Parse(ShortLine)) && Passed; + + // Parse() returns false for a line with too few fields + MString TooFewFieldsLine("SH 2 l 37 1 500"); + Passed = EvaluateFalse("Parse()", "too few fields", "Parse() returns false for a line with fewer than 10 fields", + Dummy.Parse(TooFewFieldsLine)) && Passed; + + g_Verbosity = OldVerbosity; + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +bool UTNStripHit::TestStreamRoa() +{ + bool Passed = true; + + MStripHit H; + H.SetDetectorID(0); + H.SetStripID(41); + H.IsLowVoltageStrip(true); + H.SetADCUnits(4053.0); + H.SetTAC(10452.0); + H.SetPreampTemp(22.1); + H.SetEnergy(661.7); + H.SetTiming(123.0); + H.IsGuardRing(false); + H.IsNearestNeighbor(false); + H.HasFastTiming(true); + // MakeFlags() = 0b100 = 4 + H.AddOrigins({2, 5}); + + // Full output: ADC + TAC + temperature + energy + timing + flags + origins + { + ostringstream Out; + H.StreamRoa(Out, true, true, true, true, true, true, true); + MString S(Out.str().c_str()); + Passed = EvaluateTrue("StreamRoa()", "starts with UH", "Full StreamRoa() output starts with 'UH'", + S.BeginsWith("UH")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "contains strip 41", "Full StreamRoa() output contains strip ID 41", + S.Contains("41")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "contains lv marker", "Full StreamRoa() output contains low-voltage marker 'l'", + S.Contains(" l ")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "contains ADC", "Full StreamRoa() output contains ADC value 4053", + S.Contains("4053")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "contains TAC", "Full StreamRoa() output contains TAC value 10452", + S.Contains("10452")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "contains origins 2;5", "Full StreamRoa() output contains origin list '2;5'", + S.Contains("2;5")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "contains energy", "Full StreamRoa() output contains energy value 661.7", + S.Contains("661.7")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "contains timing", "Full StreamRoa() output contains timing value 123", + S.Contains("123")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "contains temperature", "Full StreamRoa() output contains temperature value 22.1", + S.Contains("22.1")) && Passed; + } + + // ADC only + { + ostringstream Out; + H.StreamRoa(Out, true, false, false, false, false, false, false); + MString S(Out.str().c_str()); + Passed = EvaluateTrue("StreamRoa()", "ADC only contains 4053", "ADC-only StreamRoa() output contains ADC value 4053", + S.Contains("4053")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "ADC only no TAC", "ADC-only StreamRoa() output does not contain TAC value 10452", + S.Contains("10452") == false) && Passed; + } + + // TAC only + { + ostringstream Out; + H.StreamRoa(Out, false, true, false, false, false, false, false); + MString S(Out.str().c_str()); + Passed = EvaluateTrue("StreamRoa()", "TAC only contains 10452", "TAC-only StreamRoa() output contains TAC value 10452", + S.Contains("10452")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "TAC only no ADC", "TAC-only StreamRoa() output does not contain ADC value 4053", + S.Contains("4053") == false) && Passed; + } + + // Energy only + { + ostringstream Out; + H.StreamRoa(Out, false, false, true, false, false, false, false); + MString S(Out.str().c_str()); + Passed = EvaluateTrue("StreamRoa()", "energy only contains 661.7", "Energy-only StreamRoa() output contains energy value 661.7", + S.Contains("661.7")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "energy only no ADC", "Energy-only StreamRoa() output does not contain ADC value 4053", + S.Contains("4053") == false) && Passed; + } + + // Timing only + { + ostringstream Out; + H.StreamRoa(Out, false, false, false, true, false, false, false); + MString S(Out.str().c_str()); + Passed = EvaluateTrue("StreamRoa()", "timing only contains 123", "Timing-only StreamRoa() output contains timing value 123", + S.Contains("123")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "timing only no ADC", "Timing-only StreamRoa() output does not contain ADC value 4053", + S.Contains("4053") == false) && Passed; + } + + // Temperature only + { + ostringstream Out; + H.StreamRoa(Out, false, false, false, false, true, false, false); + MString S(Out.str().c_str()); + Passed = EvaluateTrue("StreamRoa()", "temperature only contains 22.1", "Temperature-only StreamRoa() output contains temperature value 22.1", + S.Contains("22.1")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "temperature only no ADC", "Temperature-only StreamRoa() output does not contain ADC value 4053", + S.Contains("4053") == false) && Passed; + } + + // Flags only — MakeFlags() = 4 (HasFastTiming only); check as " 4 " to distinguish from strip ID 41 + { + ostringstream Out; + H.StreamRoa(Out, false, false, false, false, false, true, false); + MString S(Out.str().c_str()); + Passed = EvaluateTrue("StreamRoa()", "flags only contains 4", "Flags-only StreamRoa() output contains flags value 4", + S.Contains(" 4 ")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "flags only no ADC", "Flags-only StreamRoa() output does not contain ADC value 4053", + S.Contains("4053") == false) && Passed; + } + + // No optional fields: output contains only the fixed UH prefix fields + { + ostringstream Out; + H.StreamRoa(Out, false, false, false, false, false, false, false); + MString S(Out.str().c_str()); + Passed = EvaluateTrue("StreamRoa()", "bare prefix", "Bare StreamRoa() output starts with the UH prefix", + S.BeginsWith("UH")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "bare no ADC", "Bare StreamRoa() output does not contain ADC value 4053", + S.Contains("4053") == false) && Passed; + Passed = EvaluateTrue("StreamRoa()", "bare no TAC", "Bare StreamRoa() output does not contain TAC value 10452", + S.Contains("10452") == false) && Passed; + } + + // High-voltage strip → 'h' marker + { + MStripHit HV; + HV.SetDetectorID(1); + HV.SetStripID(12); + HV.IsLowVoltageStrip(false); + ostringstream Out; + HV.StreamRoa(Out, false, false, false, false, false, false, false); + MString S(Out.str().c_str()); + Passed = EvaluateTrue("StreamRoa()", "HV marker 'h'", "StreamRoa() emits ' h ' for a high-voltage strip", + S.Contains(" h ")) && Passed; + Passed = EvaluateTrue("StreamRoa()", "HV no LV marker", "StreamRoa() does not emit ' l ' for a high-voltage strip", + S.Contains(" l ") == false) && Passed; + } + + // Origins: no-origins path emits '-' + { + MStripHit NoOrigins; + NoOrigins.SetDetectorID(0); + NoOrigins.SetStripID(1); + NoOrigins.IsLowVoltageStrip(true); + ostringstream Out; + NoOrigins.StreamRoa(Out, false, false, false, false, false, false, true); + MString S(Out.str().c_str()); + Passed = EvaluateTrue("StreamRoa()", "no origins emits dash", "StreamRoa() emits '- ' when the origins list is empty", + S.Contains("- ")) && Passed; + } + + return Passed; +} + + +//////////////////////////////////////////////////////////////////////////////// + + +int main() +{ + UTNStripHit Test; + return Test.Run() == true ? 0 : 1; +}