Check firebird.log [no messages found for interval when this test was running]
Jump to: output_first_mismatch    outcomes_full_history    elapsed_time_chart
Show cross-report outcomes.

Annotation type Annotation details
2 @message
AssertionError: Regex pattern did not match.
 Regex: '.*validation error for variable X, value "10"'
 Input: 'validation error for variable "X", value "10"'

LOG DETAILS:

2025-06-26 05:18:36.713
2025-06-26 05:18:36.720 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-26 05:18:36.727 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-26 05:18:36.735
2025-06-26 05:18:36.742 @pytest.mark.version('>=3.0')
2025-06-26 05:18:36.756 def test_1(act: Action, capsys):
2025-06-26 05:18:36.766 with act.db.connect() as con:
2025-06-26 05:18:36.778 c = con.cursor()
2025-06-26 05:18:36.789 cmd = c.prepare('execute block (x DOM1 = ?) returns (y integer) as begin y = x; suspend; end')
2025-06-26 05:18:36.805 c.execute(cmd, [1])
2025-06-26 05:18:36.817 act.print_data(c)
2025-06-26 05:18:36.827 act.expected_stdout = expected_stdout
2025-06-26 05:18:36.835 act.stdout = capsys.readouterr().out
2025-06-26 05:18:36.849 assert act.clean_stdout == act.clean_expected_stdout
2025-06-26 05:18:36.860 with pytest.raises(Exception, match='.*validation error for variable X, value "10"'):
2025-06-26 05:18:36.871 c.execute(cmd, [10])
2025-06-26 05:18:36.880 >               act.print_data(c)
2025-06-26 05:18:36.888
2025-06-26 05:18:36.895 tests/bugs/core_2230_test.py:40:
2025-06-26 05:18:36.902 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-26 05:18:36.913
2025-06-26 05:18:36.924 self = <firebird.qa.plugin.Action object at [hex]>
2025-06-26 05:18:36.936 cursor = <firebird.driver.core.Cursor object at [hex]>
2025-06-26 05:18:36.943
2025-06-26 05:18:36.949 def print_data(self, cursor: Cursor) -> None:
2025-06-26 05:18:36.959 """Print data from cursor in tabular format, like standard printout in ISQL.
2025-06-26 05:18:36.973 """
2025-06-26 05:18:36.981 # Print a header.
2025-06-26 05:18:36.988 for fieldDesc in cursor.description:
2025-06-26 05:18:36.998 print (fieldDesc[DESCRIPTION_NAME].ljust(fieldDesc[DESCRIPTION_DISPLAY_SIZE]),end=' ')
2025-06-26 05:18:37.004 print('')
2025-06-26 05:18:37.010 for fieldDesc in cursor.description:
2025-06-26 05:18:37.015 print ("-" * max((len(fieldDesc[DESCRIPTION_NAME]),fieldDesc[DESCRIPTION_DISPLAY_SIZE])),end=' ')
2025-06-26 05:18:37.020 print('')
2025-06-26 05:18:37.025 # For each row, print the value of each field left-justified within
2025-06-26 05:18:37.030 # the maximum possible width of that field.
2025-06-26 05:18:37.036 fieldIndices = range(len(cursor.description))
2025-06-26 05:18:37.042 >       for row in cursor:
2025-06-26 05:18:37.049
2025-06-26 05:18:37.055 src/firebird/qa/plugin.py:2435:
2025-06-26 05:18:37.062 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-26 05:18:37.069
2025-06-26 05:18:37.084 self = <firebird.driver.core.Cursor object at [hex]>
2025-06-26 05:18:37.092
2025-06-26 05:18:37.099 def __next__(self):
2025-06-26 05:18:37.105 >       if (row := self.fetchone()) is not None:
2025-06-26 05:18:37.111
2025-06-26 05:18:37.116 ../lib/python3.11/site-packages/firebird/driver/core.py:3154:
2025-06-26 05:18:37.122 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-26 05:18:37.128
2025-06-26 05:18:37.135 self = <firebird.driver.core.Cursor object at [hex]>
2025-06-26 05:18:37.142
2025-06-26 05:18:37.148 def fetchone(self) -> Tuple:
2025-06-26 05:18:37.155 """Fetch the next row of a query result set.
2025-06-26 05:18:37.162 """
2025-06-26 05:18:37.173 if self._stmt:
2025-06-26 05:18:37.184 >           return self._fetchone()
2025-06-26 05:18:37.196
2025-06-26 05:18:37.205 ../lib/python3.11/site-packages/firebird/driver/core.py:3903:
2025-06-26 05:18:37.211 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-26 05:18:37.217
2025-06-26 05:18:37.225 self = <firebird.driver.core.Cursor object at [hex]>
2025-06-26 05:18:37.232
2025-06-26 05:18:37.239 def _fetchone(self) -> Optional[Tuple]:
2025-06-26 05:18:37.247 if self._executed:
2025-06-26 05:18:37.258 if self._stmt._out_cnt == 0:
2025-06-26 05:18:37.267 return None
2025-06-26 05:18:37.273 if self._last_fetch_status == StateResult.NO_DATA:
2025-06-26 05:18:37.278 return None
2025-06-26 05:18:37.283 if self.__output_cache is not None:
2025-06-26 05:18:37.289 result = self.__output_cache
2025-06-26 05:18:37.296 self._last_fetch_status = StateResult.NO_DATA
2025-06-26 05:18:37.303 self.__output_cache = None
2025-06-26 05:18:37.309 return result
2025-06-26 05:18:37.315 >           self._last_fetch_status = self._result.fetch_next(self._stmt._out_buffer)
2025-06-26 05:18:37.323
2025-06-26 05:18:37.334 ../lib/python3.11/site-packages/firebird/driver/core.py:3711:
2025-06-26 05:18:37.345 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-26 05:18:37.352
2025-06-26 05:18:37.358 self = <firebird.driver.interfaces.iResultSet object at [hex]>
2025-06-26 05:18:37.364 message = <ctypes.c_char_Array_6 object at [hex]>
2025-06-26 05:18:37.369
2025-06-26 05:18:37.375 def fetch_next(self, message: bytes) -> StateResult:
2025-06-26 05:18:37.382 """Fetch next record, replaces isc_dsql_fetch(). This method (and other
2025-06-26 05:18:37.391 fetch methods) returns completion code Status::RESULT_NO_DATA when EOF is reached,
2025-06-26 05:18:37.401 Status::RESULT_OK on success."""
2025-06-26 05:18:37.409 result = self.vtable.fetchNext(self, self.status, message)
2025-06-26 05:18:37.415 >           self._check()
2025-06-26 05:18:37.422
2025-06-26 05:18:37.428 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:663:
2025-06-26 05:18:37.434 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-26 05:18:37.440
2025-06-26 05:18:37.446 self = <firebird.driver.interfaces.iResultSet object at [hex]>
2025-06-26 05:18:37.459
2025-06-26 05:18:37.468 def _check(self) -> None:
2025-06-26 05:18:37.474 state = self.status.get_state()
2025-06-26 05:18:37.481 if StateFlag.ERRORS in state:
2025-06-26 05:18:37.486 >           raise self.__report(DatabaseError, self.status.get_errors())
2025-06-26 05:18:37.492 E           firebird.driver.types.DatabaseError: validation error for variable "X", value "10"
2025-06-26 05:18:37.497
2025-06-26 05:18:37.503 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:113: DatabaseError
2025-06-26 05:18:37.509
2025-06-26 05:18:37.515 During handling of the above exception, another exception occurred:
2025-06-26 05:18:37.521
2025-06-26 05:18:37.527 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-26 05:18:37.533 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-26 05:18:37.539
2025-06-26 05:18:37.545 @pytest.mark.version('>=3.0')
2025-06-26 05:18:37.551 def test_1(act: Action, capsys):
2025-06-26 05:18:37.556 with act.db.connect() as con:
2025-06-26 05:18:37.562 c = con.cursor()
2025-06-26 05:18:37.568 cmd = c.prepare('execute block (x DOM1 = ?) returns (y integer) as begin y = x; suspend; end')
2025-06-26 05:18:37.573 c.execute(cmd, [1])
2025-06-26 05:18:37.579 act.print_data(c)
2025-06-26 05:18:37.584 act.expected_stdout = expected_stdout
2025-06-26 05:18:37.590 act.stdout = capsys.readouterr().out
2025-06-26 05:18:37.596 assert act.clean_stdout == act.clean_expected_stdout
2025-06-26 05:18:37.601 >           with pytest.raises(Exception, match='.*validation error for variable X, value "10"'):
2025-06-26 05:18:37.607 E           AssertionError: Regex pattern did not match.
2025-06-26 05:18:37.613 E            Regex: '.*validation error for variable X, value "10"'
2025-06-26 05:18:37.619 E            Input: 'validation error for variable "X", value "10"'
2025-06-26 05:18:37.624
2025-06-26 05:18:37.629 tests/bugs/core_2230_test.py:38: AssertionError
2025-06-26 05:18:37.633 ---------------------------- Captured stdout setup -----------------------------
2025-06-26 05:18:37.638 Creating db: localhost:/var/tmp/qa_2024/test_1371/test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
2025-06-26 05:18:37.643 ----------------------------- Captured stdout call -----------------------------
2025-06-26 05:18:37.647 Y
2025-06-26 05:18:37.652 -----------
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.version('>=3.0')
    def test_1(act: Action, capsys):
        with act.db.connect() as con:
            c = con.cursor()
            cmd = c.prepare('execute block (x DOM1 = ?) returns (y integer) as begin y = x; suspend; end')
            c.execute(cmd, [1])
            act.print_data(c)
            act.expected_stdout = expected_stdout
            act.stdout = capsys.readouterr().out
            assert act.clean_stdout == act.clean_expected_stdout
            with pytest.raises(Exception, match='.*validation error for variable X, value "10"'):
                c.execute(cmd, [10])
>               act.print_data(c)

tests/bugs/core_2230_test.py:40: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.qa.plugin.Action pytest object at [hex]>
cursor = <firebird.driver.core.Cursor pytest object at [hex]>

    def print_data(self, cursor: Cursor) -> None:
        """Print data from cursor in tabular format, like standard printout in ISQL.
        """
        # Print a header.
        for fieldDesc in cursor.description:
            print (fieldDesc[DESCRIPTION_NAME].ljust(fieldDesc[DESCRIPTION_DISPLAY_SIZE]),end=' ')
        print('')
        for fieldDesc in cursor.description:
            print ("-" * max((len(fieldDesc[DESCRIPTION_NAME]),fieldDesc[DESCRIPTION_DISPLAY_SIZE])),end=' ')
        print('')
        # For each row, print the value of each field left-justified within
        # the maximum possible width of that field.
        fieldIndices = range(len(cursor.description))
>       for row in cursor:

src/firebird/qa/plugin.py:2435: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.core.Cursor pytest object at [hex]>

    def __next__(self):
>       if (row := self.fetchone()) is not None:

../lib/python3.11/site-packages/firebird/driver/core.py:3154: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.core.Cursor pytest object at [hex]>

    def fetchone(self) -> Tuple:
        """Fetch the next row of a query result set.
        """
        if self._stmt:
>           return self._fetchone()

../lib/python3.11/site-packages/firebird/driver/core.py:3903: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.core.Cursor pytest object at [hex]>

    def _fetchone(self) -> Optional[Tuple]:
        if self._executed:
            if self._stmt._out_cnt == 0:
                return None
            if self._last_fetch_status == StateResult.NO_DATA:
                return None
            if self.__output_cache is not None:
                result = self.__output_cache
                self._last_fetch_status = StateResult.NO_DATA
                self.__output_cache = None
                return result
>           self._last_fetch_status = self._result.fetch_next(self._stmt._out_buffer)

../lib/python3.11/site-packages/firebird/driver/core.py:3711: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.interfaces.iResultSet pytest object at [hex]>
message = <ctypes.c_char_Array_6 pytest object at [hex]>

        def fetch_next(self, message: bytes) -> StateResult:
            """Fetch next record, replaces isc_dsql_fetch(). This method (and other
    fetch methods) returns completion code Status::RESULT_NO_DATA when EOF is reached,
    Status::RESULT_OK on success."""
            result = self.vtable.fetchNext(self, self.status, message)
>           self._check()

../lib/python3.11/site-packages/firebird/driver/interfaces.py:663: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.interfaces.iResultSet pytest object at [hex]>

    def _check(self) -> None:
        state = self.status.get_state()
        if StateFlag.ERRORS in state:
>           raise self.__report(DatabaseError, self.status.get_errors())
E           firebird.driver.types.DatabaseError: validation error for variable "X", value "10"

../lib/python3.11/site-packages/firebird/driver/interfaces.py:113: DatabaseError

During handling of the above exception, another exception occurred:

act = <firebird.qa.plugin.Action pytest object at [hex]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.version('>=3.0')
    def test_1(act: Action, capsys):
        with act.db.connect() as con:
            c = con.cursor()
            cmd = c.prepare('execute block (x DOM1 = ?) returns (y integer) as begin y = x; suspend; end')
            c.execute(cmd, [1])
            act.print_data(c)
            act.expected_stdout = expected_stdout
            act.stdout = capsys.readouterr().out
            assert act.clean_stdout == act.clean_expected_stdout
>           with pytest.raises(Exception, match='.*validation error for variable X, value "10"'):
E           AssertionError: Regex pattern did not match.
E            Regex: '.*validation error for variable X, value "10"'
E            Input: 'validation error for variable "X", value "10"'

tests/bugs/core_2230_test.py:38: AssertionError
Full history of outcomes and elapsed time, ms:
NN SNAP_INFO CS_outcome SS_outcome CS_run_time SS_run_time CS_run_beg CS_run_end SS_run_beg SS_run_end
1 6.0.0.881 2025.06.27 7035d P P 1246 505 2025.06.29 00:15:19.704 2025.06.29 00:15:20.950 2025.06.28 21:26:25.133 2025.06.28 21:26:25.638
2 6.0.0.877 2025.06.26 8e38f P P 742 392 2025.06.27 00:03:17.934 2025.06.27 00:03:18.676 2025.06.26 21:25:34.162 2025.06.26 21:25:34.554
3 6.0.0.876 2025.06.25 b1bec F F 2155 1235 2025.06.26 00:06:21.459 2025.06.26 00:06:23.614 2025.06.25 21:26:11.714 2025.06.25 21:26:12.949
4 6.0.0.863 2025.06.24 c3c20 F F 1411 1181 2025.06.25 00:07:36.555 2025.06.25 00:07:37.966 2025.06.24 21:25:37.017 2025.06.24 21:25:38.198
5 6.0.0.858 2025.06.23 8d6f7 F F 1372 1077 2025.06.24 00:06:50.386 2025.06.24 00:06:51.758 2025.06.23 21:26:03.185 2025.06.23 21:26:04.262
6 6.0.0.849 2025.06.20 7b79c F F 1412 964 2025.06.21 00:16:53.409 2025.06.21 00:16:54.821 2025.06.20 21:28:26.788 2025.06.20 21:28:27.752
7 6.0.0.848 2025.06.19 c483c F F 1140 1181 2025.06.20 00:12:19.156 2025.06.20 00:12:20.296 2025.06.19 21:27:36.885 2025.06.19 21:27:38.066
8 6.0.0.845 2025.06.18 22b12 F F 2020 1255 2025.06.19 00:18:51.881 2025.06.19 00:18:53.901 2025.06.18 21:26:40.484 2025.06.18 21:26:41.739
9 6.0.0.843 2025.06.16 995f4 F F 1190 1266 2025.06.18 00:21:26.217 2025.06.18 00:21:27.407 2025.06.17 21:28:49.412 2025.06.17 21:28:50.678
10 6.0.0.840 2025.06.14 29bca F F 2603 1197 2025.06.16 00:11:41.910 2025.06.16 00:11:44.513 2025.06.15 21:25:42.507 2025.06.15 21:25:43.704
11 6.0.0.838 2025.06.13 0e28a F F 2358 1395 2025.06.14 00:21:34.478 2025.06.14 00:21:36.836 2025.06.13 21:26:49.028 2025.06.13 21:26:50.423
12 6.0.0.835 2025.06.12 2cf29 F F 1259 1155 2025.06.13 00:23:58.582 2025.06.13 00:23:59.841 2025.06.12 21:32:31.305 2025.06.12 21:32:32.460
13 6.0.0.834 2025.06.11 e889f F F 1314 1030 2025.06.12 00:20:22.280 2025.06.12 00:20:23.594 2025.06.11 21:28:25.654 2025.06.11 21:28:26.684
14 6.0.0.800 2025.06.10 1f226 P P 1146 440 2025.06.10 23:17:23.119 2025.06.10 23:17:24.265 2025.06.10 21:27:28.364 2025.06.10 21:27:28.804
15 6.0.0.799 2025.06.07 be644 P P 1240 457 2025.06.09 23:16:54.415 2025.06.09 23:16:55.655 2025.06.09 21:27:26.248 2025.06.09 21:27:26.705
16 6.0.0.797 2025.06.06 303e8 P P 692 458 2025.06.06 23:18:11.385 2025.06.06 23:18:12.077 2025.06.06 21:24:15.228 2025.06.06 21:24:15.686
17 6.0.0.795 2025.05.29 7a71a P P 734 491 2025.06.05 23:15:26.789 2025.06.05 23:15:27.523 2025.06.05 21:23:59.152 2025.06.05 21:23:59.643
18 6.0.0.792 2025.05.28 b4327 P P 691 449 2025.05.28 23:22:39.867 2025.05.28 23:22:40.558 2025.05.28 21:24:39.859 2025.05.28 21:24:40.308
19 6.0.0.791 2025.05.27 02db8 P P 773 475 2025.05.27 23:21:21.192 2025.05.27 23:21:21.965 2025.05.27 21:24:24.820 2025.05.27 21:24:25.295
20 6.0.0.789 2025.05.21 64051 P P 762 448 2025.05.24 23:18:26.970 2025.05.24 23:18:27.732 2025.05.24 21:24:12.890 2025.05.24 21:24:13.338
21 6.0.0.787 2025.05.20 230ad P P 672 444 2025.05.20 23:16:23.218 2025.05.20 23:16:23.890 2025.05.20 21:24:05.615 2025.05.20 21:24:06.059
22 6.0.0.783 2025.05.12 37320 P P 752 403 2025.05.19 10:59:57.965 2025.05.19 10:59:58.717 2025.05.19 09:15:53.365 2025.05.19 09:15:53.768
23 6.0.0.779 2025.05.11 136fa P P 698 460 2025.05.11 23:13:55.357 2025.05.11 23:13:56.055 2025.05.11 21:23:45.527 2025.05.11 21:23:45.987
24 6.0.0.778 2025.05.07 d735e P P 1161 470 2025.05.07 23:12:55.453 2025.05.07 23:12:56.614 2025.05.07 21:23:53.805 2025.05.07 21:23:54.275
25 6.0.0.776 2025.05.06 007cd P P 1214 442 2025.05.06 23:05:11.666 2025.05.06 23:05:12.880 2025.05.06 21:23:51.551 2025.05.06 21:23:51.993
26 6.0.0.770 2025.05.05 82c4a P P 1150 478 2025.05.05 23:04:26.573 2025.05.05 23:04:27.723 2025.05.05 21:23:48.530 2025.05.05 21:23:49.008
27 6.0.0.767 2025.05.01 cdd29 P P 1241 492 2025.05.01 23:02:54.580 2025.05.01 23:02:55.821 2025.05.01 21:23:42.754 2025.05.01 21:23:43.246
28 6.0.0.762 2025.04.30 5cb15 P P 1216 434 2025.04.30 23:00:44.362 2025.04.30 23:00:45.578 2025.04.30 21:23:39.792 2025.04.30 21:23:40.226
29 6.0.0.755 2025.04.29 739c6 P P 1287 430 2025.04.29 23:02:43.874 2025.04.29 23:02:45.161 2025.04.29 21:23:47.937 2025.04.29 21:23:48.367
30 6.0.0.753 2025.04.27 29ab3 P P 1246 457 2025.04.27 23:02:09.032 2025.04.27 23:02:10.278 2025.04.27 21:23:43.054 2025.04.27 21:23:43.511
31 6.0.0.745 2025.04.21 78ad8 P P 1207 453 2025.04.25 23:02:45.940 2025.04.25 23:02:47.147 2025.04.25 21:24:55.211 2025.04.25 21:24:55.664
32 6.0.0.744 2025.04.19 e883a P P 1308 455 2025.04.19 23:04:01.059 2025.04.19 23:04:02.367 2025.04.19 21:23:56.417 2025.04.19 21:23:56.872
33 6.0.0.742 2025.04.17 abc3b P P 1371 416 2025.04.18 23:04:06.098 2025.04.18 23:04:07.469 2025.04.18 21:23:45.764 2025.04.18 21:23:46.180
34 6.0.0.737 2025.04.16 fe52b P P 1110 472 2025.04.16 23:03:53.538 2025.04.16 23:03:54.648 2025.04.16 21:23:40.265 2025.04.16 21:23:40.737
35 6.0.0.736 2025.04.14 3e6be P P 1004 336 2025.04.14 22:51:10.686 2025.04.14 22:51:11.690 2025.04.14 21:22:48.794 2025.04.14 21:22:49.130
36 6.0.0.735 2025.04.13 6635c P P 1109 405 2025.04.13 22:52:32.573 2025.04.13 22:52:33.682 2025.04.13 21:23:14.974 2025.04.13 21:23:15.379
37 6.0.0.734 2025.04.12 12f3f P P 1163 412 2025.04.12 22:51:19.556 2025.04.12 22:51:20.719 2025.04.12 21:22:56.354 2025.04.12 21:22:56.766
38 6.0.0.730 2025.04.11 240b8 P P 1167 418 2025.04.11 22:52:18.070 2025.04.11 22:52:19.237 2025.04.11 21:22:53.751 2025.04.11 21:22:54.169
39 6.0.0.726 2025.04.10 d79c6 P P 1135 413 2025.04.10 22:51:57.254 2025.04.10 22:51:58.389 2025.04.10 21:22:59.003 2025.04.10 21:22:59.416
40 6.0.0.725 2025.04.09 a2b05 P P 1130 419 2025.04.09 22:52:07.077 2025.04.09 22:52:08.207 2025.04.09 21:23:09.709 2025.04.09 21:23:10.128
41 6.0.0.722 2025.04.08 a8b86 P P 1215 411 2025.04.08 23:01:37.870 2025.04.08 23:01:39.085 2025.04.08 21:23:48.462 2025.04.08 21:23:48.873
42 6.0.0.719 2025.04.06 90fd9 P P 1248 452 2025.04.06 22:59:29.002 2025.04.06 22:59:30.250 2025.04.06 21:23:49.472 2025.04.06 21:23:49.924
43 6.0.0.717 2025.04.04 53d70 P P 1183 419 2025.04.04 22:57:45.907 2025.04.04 22:57:47.090 2025.04.04 21:23:35.812 2025.04.04 21:23:36.231
44 6.0.0.716 2025.04.03 fc636 P P 1210 451 2025.04.03 23:00:38.951 2025.04.03 23:00:40.161 2025.04.03 21:23:45.443 2025.04.03 21:23:45.894
45 6.0.0.715 2025.04.02 907ed P P 1173 433 2025.04.02 23:00:25.233 2025.04.02 23:00:26.406 2025.04.02 21:23:58.039 2025.04.02 21:23:58.472
46 6.0.0.710 2025.04.01 40651 P P 1227 330 2025.04.01 22:59:19.590 2025.04.01 22:59:20.817 2025.04.01 21:23:43.148 2025.04.01 21:23:43.478
47 6.0.0.708 2025.03.31 cb069 P P 1088 377 2025.03.31 22:53:03.437 2025.03.31 22:53:04.525 2025.03.31 21:23:19.205 2025.03.31 21:23:19.582
48 6.0.0.707 2025.03.28 4bd4f P P 1269 322 2025.03.30 22:53:08.245 2025.03.30 22:53:09.514 2025.03.30 21:23:15.404 2025.03.30 21:23:15.726
49 6.0.0.698 2025.03.26 d72a7 P P 1356 357 2025.03.27 23:03:22.213 2025.03.27 23:03:23.569 2025.03.27 21:24:15.918 2025.03.27 21:24:16.275
50 6.0.0.693 2025.03.24 0b559 P P 1265 515 2025.03.24 22:57:10.929 2025.03.24 22:57:12.194 2025.03.24 21:24:10.376 2025.03.24 21:24:10.891
51 6.0.0.687 2025.03.22 730aa P P 1248 476 2025.03.23 23:06:20.606 2025.03.23 23:06:21.854 2025.03.23 21:23:56.737 2025.03.23 21:23:57.213
52 6.0.0.686 2025.03.20 71bf6 P P 1246 473 2025.03.20 23:09:47.685 2025.03.20 23:09:48.931 2025.03.20 21:24:14.303 2025.03.20 21:24:14.776
53 6.0.0.685 2025.03.19 a8577 P P 1397 452 2025.03.19 23:07:38.374 2025.03.19 23:07:39.771 2025.03.19 21:24:04.518 2025.03.19 21:24:04.970
54 6.0.0.680 2025.03.18 90d29 P P 3376 1497 2025.03.19 09:46:53.357 2025.03.19 09:46:56.733 2025.03.19 08:13:43.322 2025.03.19 08:13:44.819
55 6.0.0.677 2025.03.16 c0a60 P P 5414 1716 2025.03.16 23:01:11.795 2025.03.16 23:01:17.209 2025.03.16 21:24:02.380 2025.03.16 21:24:04.096
56 6.0.0.676 2025.03.15 3034f P P 3465 1608 2025.03.16 14:48:41.099 2025.03.16 14:48:44.564 2025.03.16 13:19:28.248 2025.03.16 13:19:29.856
57 6.0.0.673 2025.03.13 40f5b P P 5425 1674 2025.03.13 23:00:29.545 2025.03.13 23:00:34.970 2025.03.13 21:23:51.151 2025.03.13 21:23:52.825
58 6.0.0.671 2025.03.12 a4fff P P 5016 1571 2025.03.12 23:04:16.118 2025.03.12 23:04:21.134 2025.03.12 21:24:26.401 2025.03.12 21:24:27.972
59 6.0.0.663 2025.03.11 daad2 P P 5520 1662 2025.03.11 23:02:28.454 2025.03.11 23:02:33.974 2025.03.11 21:24:39.691 2025.03.11 21:24:41.353
60 6.0.0.661 2025.03.07 b9869 P P 4215 1711 2025.03.10 22:50:32.772 2025.03.10 22:50:36.987 2025.03.10 21:23:06.863 2025.03.10 21:23:08.574
61 6.0.0.660 2025.03.04 a6700 P P 5029 1674 2025.03.06 22:55:59.816 2025.03.06 22:56:04.845 2025.03.06 21:23:32.501 2025.03.06 21:23:34.175
62 6.0.0.658 2025.03.03 f15f8 P P 4253 1577 2025.03.03 22:52:06.998 2025.03.03 22:52:11.251 2025.03.03 21:23:33.421 2025.03.03 21:23:34.998
63 6.0.0.656 2025.02.27 25fb4 P P 5977 1599 2025.03.02 23:06:24.525 2025.03.02 23:06:30.502 2025.03.02 21:24:34.975 2025.03.02 21:24:36.574
64 6.0.0.655 2025.02.25 6e3e0 P P 5104 1604 2025.02.26 22:53:38.053 2025.02.26 22:53:43.157 2025.02.26 21:23:31.377 2025.02.26 21:23:32.981
65 6.0.0.654 2025.02.24 b7141 P P 2692 1618 2025.02.24 22:55:36.959 2025.02.24 22:55:39.651 2025.02.24 21:23:45.327 2025.02.24 21:23:46.945
66 6.0.0.652 2025.02.22 22662 P P 3621 1299 2025.02.24 01:04:59.424 2025.02.24 01:05:03.045 2025.02.23 23:40:19.747 2025.02.23 23:40:21.046
67 6.0.0.647 2025.02.21 9fccb P P 5094 1592 2025.02.21 22:58:05.082 2025.02.21 22:58:10.176 2025.02.21 21:27:01.214 2025.02.21 21:27:02.806
68 6.0.0.640 2025.02.19 9b8ac P P 4885 1588 2025.02.19 22:54:19.033 2025.02.19 22:54:23.918 2025.02.19 21:23:52.964 2025.02.19 21:23:54.552
69 6.0.0.639 2025.02.18 201a4 P P 3907 1718 2025.02.18 22:51:03.994 2025.02.18 22:51:07.901 2025.02.18 21:23:32.108 2025.02.18 21:23:33.826
70 6.0.0.637 2025.02.12 6d0f5 P P 4548 1616 2025.02.13 23:00:55.602 2025.02.13 23:01:00.150 2025.02.13 21:24:03.252 2025.02.13 21:24:04.868
71 6.0.0.636 2025.02.11 0424f P P 4679 1545 2025.02.11 22:59:40.623 2025.02.11 22:59:45.302 2025.02.11 21:23:34.241 2025.02.11 21:23:35.786
72 6.0.0.635 2025.02.10 f640f P P 5272 1569 2025.02.10 22:59:12.029 2025.02.10 22:59:17.301 2025.02.10 21:24:03.565 2025.02.10 21:24:05.134
73 6.0.0.629 2025.02.07 194f9 P P 4496 1684 2025.02.07 22:58:11.055 2025.02.07 22:58:15.551 2025.02.07 21:23:52.593 2025.02.07 21:23:54.277
74 6.0.0.628 2025.02.06 859d5 P P 5188 1656 2025.02.06 23:04:55.027 2025.02.06 23:05:00.215 2025.02.06 21:23:39.365 2025.02.06 21:23:41.021
75 6.0.0.621 2025.02.05 34fe7 P P 4958 1752 2025.02.05 23:05:29.038 2025.02.05 23:05:33.996 2025.02.05 21:23:37.813 2025.02.05 21:23:39.565
76 6.0.0.609 2025.02.04 76d57 P P 4973 1697 2025.02.04 23:00:32.571 2025.02.04 23:00:37.544 2025.02.04 21:23:34.669 2025.02.04 21:23:36.366
77 6.0.0.607 2025.02.03 1985b P P 5317 1659 2025.02.03 23:01:17.753 2025.02.03 23:01:23.070 2025.02.03 21:23:56.551 2025.02.03 21:23:58.210
78 6.0.0.601 2025.02.01 6af07 P P 4595 1588 2025.02.01 22:57:19.972 2025.02.01 22:57:24.567 2025.02.01 21:23:30.000 2025.02.01 21:23:31.588
79 6.0.0.600 2025.01.27 188de P P 4503 1651 2025.01.27 23:00:39.662 2025.01.27 23:00:44.165 2025.01.27 21:23:46.504 2025.01.27 21:23:48.155
80 6.0.0.599 2025.01.25 ba588 P P 4156 1543 2025.01.25 23:01:14.706 2025.01.25 23:01:18.862 2025.01.25 21:24:02.624 2025.01.25 21:24:04.167
81 6.0.0.598 2025.01.23 ddbc3 P P 4780 1539 2025.01.24 23:00:29.543 2025.01.24 23:00:34.323 2025.01.24 21:23:41.933 2025.01.24 21:23:43.472
82 6.0.0.595 2025.01.22 e62f3 P P 2900 1586 2025.01.22 22:54:46.478 2025.01.22 22:54:49.378 2025.01.22 21:23:37.366 2025.01.22 21:23:38.952
83 6.0.0.594 2025.01.21 47fb6 P P 5078 1678 2025.01.21 22:54:30.038 2025.01.21 22:54:35.116 2025.01.21 21:23:22.578 2025.01.21 21:23:24.256
84 6.0.0.590 2025.01.20 9dc1e P P 5259 1631 2025.01.20 22:59:47.071 2025.01.20 22:59:52.330 2025.01.20 21:23:31.124 2025.01.20 21:23:32.755
85 6.0.0.588 2025.01.19 b1c4e P P 5020 1663 2025.01.19 22:56:39.674 2025.01.19 22:56:44.694 2025.01.19 21:23:35.712 2025.01.19 21:23:37.375
86 6.0.0.587 2025.01.18 63e6e P P 4801 1559 2025.01.18 22:58:55.622 2025.01.18 22:59:00.423 2025.01.18 21:24:03.622 2025.01.18 21:24:05.181
87 6.0.0.585 2025.01.16 2d6bb P P 5271 1673 2025.01.17 22:54:24.218 2025.01.17 22:54:29.489 2025.01.17 21:23:27.708 2025.01.17 21:23:29.381
88 6.0.0.584 2025.01.15 a0aa2 P P 4624 1566 2025.01.15 22:58:04.238 2025.01.15 22:58:08.862 2025.01.15 21:23:35.552 2025.01.15 21:23:37.118
89 6.0.0.581 2025.01.14 21e9e P P 3929 1476 2025.01.14 22:58:42.447 2025.01.14 22:58:46.376 2025.01.14 21:23:43.723 2025.01.14 21:23:45.199
90 6.0.0.577 2025.01.13 7e293 P P 4702 1493 2025.01.13 22:59:34.335 2025.01.13 22:59:39.037 2025.01.13 21:23:42.350 2025.01.13 21:23:43.843
91 6.0.0.576 2025.01.12 05898 P P 4545 1648 2025.01.12 22:56:58.441 2025.01.12 22:57:02.986 2025.01.12 21:23:25.672 2025.01.12 21:23:27.320
92 6.0.0.573 2025.01.10 c20f3 P P 3957 1788 2025.01.10 22:57:35.911 2025.01.10 22:57:39.868 2025.01.10 21:23:37.870 2025.01.10 21:23:39.658
93 6.0.0.571 2024.12.31 81bba P P 4212 985 2024.12.31 22:35:02.339 2024.12.31 22:35:06.551 2024.12.31 21:21:51.244 2024.12.31 21:21:52.229
94 6.0.0.570 2024.12.30 c3c8d P P 2395 1051 2024.12.30 22:34:21.779 2024.12.30 22:34:24.174 2024.12.30 21:21:56.167 2024.12.30 21:21:57.218
95 6.0.0.565 2024.12.28 5fc59 P P 2445 1038 2024.12.30 11:36:55.113 2024.12.30 11:36:57.558 2024.12.30 10:30:19.674 2024.12.30 10:30:20.712
96 6.0.0.564 2024.12.26 12514 P P 4336 1110 2024.12.26 22:35:45.717 2024.12.26 22:35:50.053 2024.12.26 21:21:52.372 2024.12.26 21:21:53.482
97 6.0.0.560 2024.12.25 fa83e P P 3830 1016 2024.12.25 22:35:12.480 2024.12.25 22:35:16.310 2024.12.25 21:21:50.408 2024.12.25 21:21:51.424
98 6.0.0.559 2024.12.23 cc800 P P 4414 1063 2024.12.24 22:37:40.339 2024.12.24 22:37:44.753 2024.12.24 21:21:48.252 2024.12.24 21:21:49.315
99 6.0.0.556 2024.12.22 a0404 P P 4228 1055 2024.12.22 22:35:35.035 2024.12.22 22:35:39.263 2024.12.22 21:21:46.957 2024.12.22 21:21:48.012
100 6.0.0.555 2024.12.19 6990a P P 2451 1058 2024.12.21 12:13:25.415 2024.12.21 12:13:27.866 2024.12.21 10:57:16.729 2024.12.21 10:57:17.787
101 6.0.0.553 2024.12.17 d1f8a P P 4568 1037 2024.12.17 22:36:47.820 2024.12.17 22:36:52.388 2024.12.17 21:22:08.582 2024.12.17 21:22:09.619
102 6.0.0.552 2024.12.11 85e25 P P 3698 1177 2024.12.15 22:36:02.355 2024.12.15 22:36:06.053 2024.12.15 21:21:46.232 2024.12.15 21:21:47.409
103 6.0.0.550 2024.12.10 b37ac P P 4784 1089 2024.12.10 22:38:54.237 2024.12.10 22:38:59.021 2024.12.10 21:21:57.261 2024.12.10 21:21:58.350
104 6.0.0.548 2024.12.08 2cc77 P P 4464 1159 2024.12.08 22:33:47.803 2024.12.08 22:33:52.267 2024.12.08 21:21:45.877 2024.12.08 21:21:47.036
105 6.0.0.544 2024.12.05 96943 P P 4362 1002 2024.12.05 22:37:50.550 2024.12.05 22:37:54.912 2024.12.05 21:22:15.099 2024.12.05 21:22:16.101
106 6.0.0.543 2024.12.03 30b77 P P 4220 1017 2024.12.03 22:37:38.687 2024.12.03 22:37:42.907 2024.12.03 21:22:05.101 2024.12.03 21:22:06.118
107 6.0.0.540 2024.12.02 4a1f4 P P 4911 1098 2024.12.02 22:32:15.855 2024.12.02 22:32:20.766 2024.12.02 21:21:52.856 2024.12.02 21:21:53.954
108 6.0.0.539 2024.11.28 1f283 P P 2420 1041 2024.11.29 22:36:45.790 2024.11.29 22:36:48.210 2024.11.29 21:22:00.505 2024.11.29 21:22:01.546
109 6.0.0.535 2024.11.26 77b95 P P 4414 1096 2024.11.26 22:29:19.936 2024.11.26 22:29:24.350 2024.11.26 21:21:14.958 2024.11.26 21:21:16.054
110 6.0.0.534 2024.11.25 e9584 P P 4941 1028 2024.11.25 22:30:16.358 2024.11.25 22:30:21.299 2024.11.25 21:21:19.015 2024.11.25 21:21:20.043
111 6.0.0.533 2024.11.17 933ac P P 2468 1043 2024.11.22 08:53:47.201 2024.11.22 08:53:49.669 2024.11.22 07:50:33.517 2024.11.22 07:50:34.560
112 6.0.0.532 2024.11.16 9e263 P P 3283 1018 2024.11.16 22:26:53.925 2024.11.16 22:26:57.208 2024.11.16 21:21:26.012 2024.11.16 21:21:27.030
113 6.0.0.530 2024.11.15 49804 P P 4331 1090 2024.11.16 00:30:08.972 2024.11.16 00:30:13.303 2024.11.15 23:21:13.261 2024.11.15 23:21:14.351
114 6.0.0.528 2024.11.14 9625b P P 4562 1119 2024.11.15 00:31:38.907 2024.11.15 00:31:43.469 2024.11.14 23:21:24.696 2024.11.14 23:21:25.815
115 6.0.0.526 2024.11.12 65b80 P P 4528 1146 2024.11.14 00:31:01.927 2024.11.14 00:31:06.455 2024.11.13 23:21:17.626 2024.11.13 23:21:18.772
116 6.0.0.523 2024.11.08 8ca23 P P 4212 1089 2024.11.11 00:29:16.134 2024.11.11 00:29:20.346 2024.11.10 23:21:03.664 2024.11.10 23:21:04.753
117 6.0.0.520 2024.11.07 4eefa P P 4254 1075 2024.11.08 00:27:49.122 2024.11.08 00:27:53.376 2024.11.07 23:21:09.463 2024.11.07 23:21:10.538
118 6.0.0.516 2024.11.04 b0c36 P P 4204 1066 2024.11.05 00:27:38.832 2024.11.05 00:27:43.036 2024.11.04 23:21:07.697 2024.11.04 23:21:08.763
119 6.0.0.515 2024.10.30 d53f3 P P 4401 1028 2024.11.04 00:28:33.806 2024.11.04 00:28:38.207 2024.11.03 23:21:01.234 2024.11.03 23:21:02.262
120 6.0.0.512 2024.10.29 833ef P P 4217 1100 2024.10.30 00:30:32.030 2024.10.30 00:30:36.247 2024.10.29 23:21:28.093 2024.10.29 23:21:29.193
121 6.0.0.511 2024.10.26 c4bc9 P P 4501 1089 2024.10.29 00:30:29.263 2024.10.29 00:30:33.764 2024.10.28 23:21:04.857 2024.10.28 23:21:05.946
122 6.0.0.509 2024.10.25 3aedb P P 4526 1156 2024.10.26 00:35:45.575 2024.10.26 00:35:50.101 2024.10.25 23:21:48.979 2024.10.25 23:21:50.135
123 6.0.0.508 2024.10.24 a8f5b P P 4524 1121 2024.10.25 00:32:23.573 2024.10.25 00:32:28.097 2024.10.24 23:21:44.421 2024.10.24 23:21:45.542
124 6.0.0.502 2024.10.22 6bfd7 P P 4464 1127 2024.10.23 00:31:46.466 2024.10.23 00:31:50.930 2024.10.22 23:21:28.275 2024.10.22 23:21:29.402
125 6.0.0.500 2024.10.21 be565 P P 2667 1106 2024.10.22 16:55:54.346 2024.10.22 16:55:57.013 2024.10.22 15:50:39.340 2024.10.22 15:50:40.446
126 6.0.0.499 2024.10.19 6214b P P 3837 1157 2024.10.20 00:32:44.186 2024.10.20 00:32:48.023 2024.10.19 23:21:54.297 2024.10.19 23:21:55.454
127 6.0.0.498 2024.10.18 591a7 P P 4411 1056 2024.10.19 00:31:02.966 2024.10.19 00:31:07.377 2024.10.18 23:21:22.648 2024.10.18 23:21:23.704
128 6.0.0.494 2024.10.17 cf5a4 P P 3808 1064 2024.10.18 00:32:08.509 2024.10.18 00:32:12.317 2024.10.17 23:21:51.360 2024.10.17 23:21:52.424
129 6.0.0.491 2024.10.14 dc5fb P P 4409 1070 2024.10.15 00:29:17.119 2024.10.15 00:29:21.528 2024.10.14 23:21:09.395 2024.10.14 23:21:10.465
130 6.0.0.489 2024.10.11 2ba59 P P 4715 1094 2024.10.12 00:33:05.385 2024.10.12 00:33:10.100 2024.10.11 23:21:27.456 2024.10.11 23:21:28.550
131 6.0.0.488 2024.10.09 1c93e P P 2648 1111 2024.10.10 00:38:26.938 2024.10.10 00:38:29.586 2024.10.09 23:22:04.597 2024.10.09 23:22:05.708
132 6.0.0.487 2024.10.06 065a3 P P 2994 1241 2024.10.07 00:37:35.752 2024.10.07 00:37:38.746 2024.10.06 23:22:02.457 2024.10.06 23:22:03.698
133 6.0.0.485 2024.10.04 e95c1 P P 3577 1235 2024.10.05 00:39:27.361 2024.10.05 00:39:30.938 2024.10.04 23:21:57.849 2024.10.04 23:21:59.084
134 6.0.0.483 2024.10.02 5e5ae P P 2770 1095 2024.10.03 00:37:08.831 2024.10.03 00:37:11.601 2024.10.02 23:21:51.456 2024.10.02 23:21:52.551
135 6.0.0.478 2024.09.30 b5010 P P 4424 1101 2024.10.01 00:35:11.676 2024.10.01 00:35:16.100 2024.09.30 23:21:47.456 2024.09.30 23:21:48.557
136 6.0.0.474 2024.09.26 e4efb P P 4624 1167 2024.09.30 00:32:57.521 2024.09.30 00:33:02.145 2024.09.29 23:21:34.503 2024.09.29 23:21:35.670
137 6.0.0.471 2024.09.24 01b51 P P 4670 1101 2024.09.25 22:35:00.977 2024.09.25 22:35:05.647 2024.09.25 21:21:35.391 2024.09.25 21:21:36.492
138 6.0.0.470 2024.09.23 77cc0 P P 4950 1147 2024.09.23 22:34:39.271 2024.09.23 22:34:44.221 2024.09.23 21:21:51.160 2024.09.23 21:21:52.307
139 6.0.0.467 2024.09.21 ea0b8 P P 4450 1074 2024.09.22 22:33:41.682 2024.09.22 22:33:46.132 2024.09.22 21:21:26.973 2024.09.22 21:21:28.047
140 6.0.0.466 2024.09.20 32dc6 P P 4470 1115 2024.09.20 22:32:45.959 2024.09.20 22:32:50.429 2024.09.20 21:21:27.580 2024.09.20 21:21:28.695
141 6.0.0.461 2024.09.17 2c895 P P 4008 1892 2024.09.17 22:57:49.238 2024.09.17 22:57:53.246 2024.09.17 21:24:29.378 2024.09.17 21:24:31.270
142 6.0.0.460 2024.09.11 3c253 P P 5141 2037 2024.09.16 22:59:11.769 2024.09.16 22:59:16.910 2024.09.16 21:24:23.568 2024.09.16 21:24:25.605
143 6.0.0.457 2024.09.09 fdc6f P P 6163 2036 2024.09.09 23:12:41.538 2024.09.09 23:12:47.701 2024.09.09 21:25:19.249 2024.09.09 21:25:21.285
144 6.0.0.455 2024.09.07 500d8 P P 5432 2026 2024.09.07 23:10:27.937 2024.09.07 23:10:33.369 2024.09.07 21:25:33.173 2024.09.07 21:25:35.199
145 6.0.0.454 2024.09.05 4d70f P P 5123 2146 2024.09.05 22:59:26.414 2024.09.05 22:59:31.537 2024.09.05 21:24:58.375 2024.09.05 21:25:00.521
146 6.0.0.452 2024.09.04 9ff9c P P 4433 2005 2024.09.04 22:58:36.120 2024.09.04 22:58:40.553 2024.09.04 21:24:35.124 2024.09.04 21:24:37.129
147 6.0.0.450 2024.09.02 27124 P P 3411 3691 2024.09.03 23:37:49.581 2024.09.03 23:37:52.992 2024.09.03 21:33:19.486 2024.09.03 21:33:23.177
148 6.0.0.447 2024.09.01 056ec P P 8199 2121 2024.09.01 23:08:58.263 2024.09.01 23:09:06.462 2024.09.01 21:24:28.368 2024.09.01 21:24:30.489
149 6.0.0.446 2024.08.30 fe1b2 P P 5155 3635 2024.08.31 23:15:20.548 2024.08.31 23:15:25.703 2024.08.31 21:31:54.834 2024.08.31 21:31:58.469
150 6.0.0.444 2024.08.28 785d4 P P 5258 4339 2024.08.29 23:29:19.865 2024.08.29 23:29:25.123 2024.08.29 21:31:18.863 2024.08.29 21:31:23.202
151 6.0.0.442 2024.08.21 4a68f P P 5590 2723 2024.08.28 00:27:36.255 2024.08.28 00:27:41.845 2024.08.27 21:37:51.911 2024.08.27 21:37:54.634
152 6.0.0.441 2024.08.20 75042 P P 4248 2106 2024.08.20 23:03:59.754 2024.08.20 23:04:04.002 2024.08.20 21:25:19.734 2024.08.20 21:25:21.840
153 6.0.0.438 2024.08.16 088b5 P P 4437 1645 2024.08.18 22:37:32.336 2024.08.18 22:37:36.773 2024.08.18 21:22:32.394 2024.08.18 21:22:34.039
154 6.0.0.437 2024.08.14 3c88b P P 4119 1604 2024.08.15 22:36:12.553 2024.08.15 22:36:16.672 2024.08.15 21:22:36.128 2024.08.15 21:22:37.732
155 6.0.0.432 2024.08.11 e82ac P P 3449 1597 2024.08.12 22:34:45.181 2024.08.12 22:34:48.630 2024.08.12 21:22:18.057 2024.08.12 21:22:19.654
156 6.0.0.431 2024.08.09 de5a7 P P 4267 1639 2024.08.09 22:35:29.409 2024.08.09 22:35:33.676 2024.08.09 21:22:41.322 2024.08.09 21:22:42.961
157 6.0.0.428 2024.08.08 9191b P P 2587 1561 2024.08.08 22:34:48.944 2024.08.08 22:34:51.531 2024.08.08 21:22:37.436 2024.08.08 21:22:38.997
158 6.0.0.423 2024.08.07 33b41 P P 3197 1619 2024.08.08 08:37:56.881 2024.08.08 08:38:00.078 2024.08.08 07:30:07.814 2024.08.08 07:30:09.433
159 6.0.0.421 2024.08.06 ed60d P P 4263 1217 2024.08.06 22:25:42.674 2024.08.06 22:25:46.937 2024.08.06 21:21:33.850 2024.08.06 21:21:35.067
160 6.0.0.419 2024.08.05 3505a P P 4256 1400 2024.08.05 22:27:46.589 2024.08.05 22:27:50.845 2024.08.05 21:21:41.892 2024.08.05 21:21:43.292
161 6.0.0.409 2024.08.02 ec18f P P 4672 1452 2024.08.04 22:29:37.913 2024.08.04 22:29:42.585 2024.08.04 21:21:49.504 2024.08.04 21:21:50.956
162 6.0.0.406 2024.08.01 b20be P P 4786 1534 2024.08.01 22:28:42.010 2024.08.01 22:28:46.796 2024.08.01 21:21:39.323 2024.08.01 21:21:40.857
163 6.0.0.405 2024.07.31 a62ac P P 4510 1667 2024.07.31 22:28:19.413 2024.07.31 22:28:23.923 2024.07.31 21:21:42.388 2024.07.31 21:21:44.055
164 6.0.0.403 2024.07.29 30f03 P P 4568 1513 2024.07.29 22:28:01.125 2024.07.29 22:28:05.693 2024.07.29 21:21:29.397 2024.07.29 21:21:30.910
165 6.0.0.401 2024.07.26 24e41 P P 4392 1539 2024.07.26 22:25:15.913 2024.07.26 22:25:20.305 2024.07.26 21:21:28.104 2024.07.26 21:21:29.643
166 6.0.0.400 2024.07.24 5bb78 P P 4414 1497 2024.07.24 22:25:22.341 2024.07.24 22:25:26.755 2024.07.24 21:21:29.795 2024.07.24 21:21:31.292
167 6.0.0.398 2024.07.23 85b18 P P 2384 1446 2024.07.23 22:31:12.655 2024.07.23 22:31:15.039 2024.07.23 21:21:29.321 2024.07.23 21:21:30.767
168 6.0.0.397 2024.07.22 c734c P P 4396 1569 2024.07.22 22:25:11.184 2024.07.22 22:25:15.580 2024.07.22 21:21:28.123 2024.07.22 21:21:29.692
169 6.0.0.396 2024.07.13 cf952 P P 4526 1478 2024.07.21 22:25:07.228 2024.07.21 22:25:11.754 2024.07.21 21:21:20.698 2024.07.21 21:21:22.176
170 6.0.0.395 2024.07.10 845f4 P P 2546 1336 2024.07.12 22:24:48.781 2024.07.12 22:24:51.327 2024.07.12 21:21:17.411 2024.07.12 21:21:18.747
171 6.0.0.392 2024.07.09 ea301 P P 4036 1355 2024.07.09 22:23:12.541 2024.07.09 22:23:16.577 2024.07.09 21:21:16.423 2024.07.09 21:21:17.778
172 6.0.0.391 2024.07.08 7d50c P P 4269 1522 2024.07.08 22:24:14.829 2024.07.08 22:24:19.098 2024.07.08 21:21:27.689 2024.07.08 21:21:29.211
173 6.0.0.389 2024.07.05 cc71c P P 2733 1339 2024.07.05 22:24:40.265 2024.07.05 22:24:42.998 2024.07.05 21:21:26.261 2024.07.05 21:21:27.600
174 6.0.0.388 2024.06.30 e5700 P P 4030 1542 2024.06.30 22:24:14.124 2024.06.30 22:24:18.154 2024.06.30 21:21:24.668 2024.06.30 21:21:26.210
175 6.0.0.387 2024.06.27 7c28a P P 3900 1526 2024.06.27 22:24:00.821 2024.06.27 22:24:04.721 2024.06.27 21:21:23.420 2024.06.27 21:21:24.946
176 6.0.0.386 2024.06.23 7c57f P P 4464 1451 2024.06.23 22:22:25.044 2024.06.23 22:22:29.508 2024.06.23 21:21:11.440 2024.06.23 21:21:12.891
177 6.0.0.384 2024.06.21 24d99 P P 3991 1455 2024.06.21 22:24:16.664 2024.06.21 22:24:20.655 2024.06.21 21:21:11.284 2024.06.21 21:21:12.739
178 6.0.0.374 2024.06.13 0097d P P 4285 1551 2024.06.20 22:24:18.192 2024.06.20 22:24:22.477 2024.06.20 21:21:07.742 2024.06.20 21:21:09.293
179 6.0.0.373 2024.06.09 363f0 P P 3317 1548 2024.06.13 12:44:25.085 2024.06.13 12:44:28.402 2024.06.13 11:44:19.053 2024.06.13 11:44:20.601
180 6.0.0.371 2024.06.08 f7130 P P 2487 1108 2024.06.11 21:36:49.619 2024.06.11 21:36:52.106 2024.06.11 20:42:56.907 2024.06.11 20:42:58.015
181 6.0.0.366 2024.05.30 ab2c9 P P 5707 1527 2024.06.12 08:17:57.950 2024.06.12 08:18:03.657 2024.06.12 07:14:40.753 2024.06.12 07:14:42.280
182 6.0.0.363 2024.05.27 06703 P P 3216 913 2024.06.12 13:42:09.582 2024.06.12 13:42:12.798 2024.06.12 12:46:29.175 2024.06.12 12:46:30.088
183 6.0.0.359 2024.05.23 9cb11 P P 2509 1092 2024.06.12 11:34:39.329 2024.06.12 11:34:41.838 2024.06.12 10:38:31.045 2024.06.12 10:38:32.137
184 6.0.0.358 2024.05.21 995dd P P 2543 1008 2024.06.12 16:18:55.158 2024.06.12 16:18:57.701 2024.06.12 15:23:37.157 2024.06.12 15:23:38.165
185 6.0.0.357 2024.05.18 bf6c4 P P 2801 873 2024.06.12 20:54:59.896 2024.06.12 20:55:02.697 2024.06.12 20:00:10.754 2024.06.12 20:00:11.627
186 6.0.0.356 2024.05.17 eab06 P P 3027 1031 2024.06.13 05:01:29.687 2024.06.13 05:01:32.714 2024.06.13 04:06:12.716 2024.06.13 04:06:13.747
187 6.0.0.355 2024.05.16 8dd6e P P 2573 997 2024.06.13 07:08:50.205 2024.06.13 07:08:52.778 2024.06.13 06:13:38.524 2024.06.13 06:13:39.521
188 6.0.0.354 2024.05.15 d3adc P P 2850 1542 2024.06.13 10:10:16.556 2024.06.13 10:10:19.406 2024.06.13 09:09:35.023 2024.06.13 09:09:36.565
189 6.0.0.351 2024.05.14 2e3e0 P P 2845 1545 2024.06.13 15:23:37.756 2024.06.13 15:23:40.601 2024.06.13 14:22:18.333 2024.06.13 14:22:19.878

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):