Show firebird.log [FOUND messages 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
firebird.driver.types.DatabaseError: Dynamic SQL Error
-SQL error code = -204
-Table unknown
-"PLG$PROF_RECORD_SOURCES"
-At line 3, column 11

LOG DETAILS:

2025-06-27 05:17:49.631
2025-06-27 05:17:49.637 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-27 05:17:49.643 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-27 05:17:49.650
2025-06-27 05:17:49.657 @pytest.mark.version('>=5.0')
2025-06-27 05:17:49.667 def test_1(act: Action, capsys):
2025-06-27 05:17:49.678
2025-06-27 05:17:49.689 with act.db.connect() as con:
2025-06-27 05:17:49.700 cur = con.cursor()
2025-06-27 05:17:49.708 cur.execute("select rdb$profiler.start_session('profile session 1') from rdb$database")
2025-06-27 05:17:49.715 for r in cur:
2025-06-27 05:17:49.721 pass
2025-06-27 05:17:49.726
2025-06-27 05:17:49.731 cur.execute(test_sql)
2025-06-27 05:17:49.737 cur.callproc('rdb$profiler.finish_session', (True,))
2025-06-27 05:17:49.742 con.commit()
2025-06-27 05:17:49.753
2025-06-27 05:17:49.763 >           cur.execute(profiler_sql)
2025-06-27 05:17:49.771
2025-06-27 05:17:49.780 tests/bugs/gh_7752_test.py:93:
2025-06-27 05:17:49.790 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-27 05:17:49.799
2025-06-27 05:17:49.808 self = <firebird.driver.core.Cursor object at [hex]>
2025-06-27 05:17:49.820 operation = '\n    select p.access_path\n    from  plg$prof_record_sources p\n    order by p.record_source_id desc rows 1\n'
2025-06-27 05:17:49.832 parameters = None
2025-06-27 05:17:49.843
2025-06-27 05:17:49.855 def execute(self, operation: Union[str, Statement], parameters: Sequence[Any]=None) -> Cursor:
2025-06-27 05:17:49.865 """Executes SQL command or prepared `Statement`.
2025-06-27 05:17:49.876
2025-06-27 05:17:49.887 Starts new transaction if transaction manager associated with cursor is not active.
2025-06-27 05:17:49.895
2025-06-27 05:17:49.902 Arguments:
2025-06-27 05:17:49.909 operation: SQL command or prepared `Statement`.
2025-06-27 05:17:49.915 parameters: Sequence of parameters. Must contain one entry for each argument
2025-06-27 05:17:49.921 that the operation expects.
2025-06-27 05:17:49.926
2025-06-27 05:17:49.936 Returns:
2025-06-27 05:17:49.945 `self` so call to execute could be used as iterator over returned rows.
2025-06-27 05:17:49.952
2025-06-27 05:17:49.959 Note:
2025-06-27 05:17:49.966 If `operation` is a string with SQL command that is exactly the same as the
2025-06-27 05:17:49.972 last executed command, the internally prepared `Statement` from last execution
2025-06-27 05:17:49.985 is reused.
2025-06-27 05:17:49.997
2025-06-27 05:17:50.010 If cursor is open, it's closed before new statement is executed.
2025-06-27 05:17:50.021 """
2025-06-27 05:17:50.030 >       self._execute(operation, parameters)
2025-06-27 05:17:50.035
2025-06-27 05:17:50.041 ../lib/python3.11/site-packages/firebird/driver/core.py:3861:
2025-06-27 05:17:50.053 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-27 05:17:50.062
2025-06-27 05:17:50.069 self = <firebird.driver.core.Cursor object at [hex]>
2025-06-27 05:17:50.075 operation = '\n    select p.access_path\n    from  plg$prof_record_sources p\n    order by p.record_source_id desc rows 1\n'
2025-06-27 05:17:50.080 parameters = None, flags = <CursorFlag.NONE: 0>
2025-06-27 05:17:50.085
2025-06-27 05:17:50.089 def _execute(self, operation: Union[str, Statement],
2025-06-27 05:17:50.094 parameters: Sequence=None, flags: CursorFlag=CursorFlag.NONE) -> None:
2025-06-27 05:17:50.099 if not self._transaction.is_active():
2025-06-27 05:17:50.103 self._transaction.begin()
2025-06-27 05:17:50.108 if isinstance(operation, Statement):
2025-06-27 05:17:50.112 if operation._connection() is not self._connection:
2025-06-27 05:17:50.117 raise InterfaceError('Cannot execute Statement that was created by different Connection.')
2025-06-27 05:17:50.121 self.close()
2025-06-27 05:17:50.126 self._stmt = operation
2025-06-27 05:17:50.130 self.__internal = False
2025-06-27 05:17:50.134 elif self._stmt is not None and self._stmt.sql == operation:
2025-06-27 05:17:50.139 # We should execute the same SQL string again
2025-06-27 05:17:50.143 self._clear()
2025-06-27 05:17:50.147 else:
2025-06-27 05:17:50.151 self.close()
2025-06-27 05:17:50.156 >           self._stmt = self._connection._prepare(operation, self._transaction)
2025-06-27 05:17:50.160
2025-06-27 05:17:50.164 ../lib/python3.11/site-packages/firebird/driver/core.py:3731:
2025-06-27 05:17:50.169 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-27 05:17:50.173
2025-06-27 05:17:50.177 self = Connection[6037]
2025-06-27 05:17:50.182 sql = '\n    select p.access_path\n    from  plg$prof_record_sources p\n    order by p.record_source_id desc rows 1\n'
2025-06-27 05:17:50.188 tra = <firebird.driver.core.TransactionManager object at [hex]>
2025-06-27 05:17:50.195
2025-06-27 05:17:50.205 def _prepare(self, sql: str, tra: TransactionManager) -> Statement:
2025-06-27 05:17:50.213 if _commit := not tra.is_active():
2025-06-27 05:17:50.219 tra.begin()
2025-06-27 05:17:50.226 >       stmt = self._att.prepare(tra._tra, sql, self.__sql_dialect)
2025-06-27 05:17:50.235
2025-06-27 05:17:50.243 ../lib/python3.11/site-packages/firebird/driver/core.py:1723:
2025-06-27 05:17:50.250 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-27 05:17:50.256
2025-06-27 05:17:50.263 self = <firebird.driver.interfaces.iAttachment object at [hex]>
2025-06-27 05:17:50.268 transaction = <firebird.driver.interfaces.iTransaction object at [hex]>
2025-06-27 05:17:50.272 stmt = '\n    select p.access_path\n    from  plg$prof_record_sources p\n    order by p.record_source_id desc rows 1\n'
2025-06-27 05:17:50.276 dialect = 3, flags = <PreparePrefetchFlag.METADATA: 71>
2025-06-27 05:17:50.281
2025-06-27 05:17:50.285 def prepare(self, transaction: iTransaction, stmt: str, dialect: int,
2025-06-27 05:17:50.289 flags: PreparePrefetchFlag = PreparePrefetchFlag.METADATA) -> iStatement:
2025-06-27 05:17:50.294 """Replaces `isc_dsql_prepare()`. Additional parameter flags makes it
2025-06-27 05:17:50.299 possible to control what information will be preloaded from engine at once
2025-06-27 05:17:50.304 (i.e. in single network packet for remote operation)."""
2025-06-27 05:17:50.310 b_stmt: bytes = stmt.encode(self.encoding)
2025-06-27 05:17:50.321 result = self.vtable.prepare(self, self.status, transaction, len(b_stmt), b_stmt,
2025-06-27 05:17:50.331 dialect, flags)
2025-06-27 05:17:50.338 >           self._check()
2025-06-27 05:17:50.344
2025-06-27 05:17:50.354 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:1139:
2025-06-27 05:17:50.362 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-27 05:17:50.367
2025-06-27 05:17:50.372 self = <firebird.driver.interfaces.iAttachment object at [hex]>
2025-06-27 05:17:50.377
2025-06-27 05:17:50.381 def _check(self) -> None:
2025-06-27 05:17:50.385 state = self.status.get_state()
2025-06-27 05:17:50.390 if StateFlag.ERRORS in state:
2025-06-27 05:17:50.394 >           raise self.__report(DatabaseError, self.status.get_errors())
2025-06-27 05:17:50.398 E           firebird.driver.types.DatabaseError: Dynamic SQL Error
2025-06-27 05:17:50.403 E           -SQL error code = -204
2025-06-27 05:17:50.407 E           -Table unknown
2025-06-27 05:17:50.411 E           -"PLG$PROF_RECORD_SOURCES"
2025-06-27 05:17:50.415 E           -At line 3, column 11
2025-06-27 05:17:50.420
2025-06-27 05:17:50.424 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:113: DatabaseError
2025-06-27 05:17:50.428 ---------------------------- Captured stdout setup -----------------------------
2025-06-27 05:17:50.433 Creating db: localhost:/var/tmp/qa_2024/test_11614/test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.version('>=5.0')
    def test_1(act: Action, capsys):
    
        with act.db.connect() as con:
            cur = con.cursor()
            cur.execute("select rdb$profiler.start_session('profile session 1') from rdb$database")
            for r in cur:
                pass
    
            cur.execute(test_sql)
            cur.callproc('rdb$profiler.finish_session', (True,))
            con.commit()
    
>           cur.execute(profiler_sql)

tests/bugs/gh_7752_test.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.core.Cursor pytest object at [hex]>
operation = '\n    select p.access_path\n    from  plg$prof_record_sources p\n    order by p.record_source_id desc rows 1\n'
parameters = None

    def execute(self, operation: Union[str, Statement], parameters: Sequence[Any]=None) -> Cursor:
        """Executes SQL command or prepared `Statement`.
    
        Starts new transaction if transaction manager associated with cursor is not active.
    
        Arguments:
            operation: SQL command or prepared `Statement`.
            parameters: Sequence of parameters. Must contain one entry for each argument
                        that the operation expects.
    
        Returns:
            `self` so call to execute could be used as iterator over returned rows.
    
        Note:
            If `operation` is a string with SQL command that is exactly the same as the
            last executed command, the internally prepared `Statement` from last execution
            is reused.
    
            If cursor is open, it's closed before new statement is executed.
        """
>       self._execute(operation, parameters)

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

self = <firebird.driver.core.Cursor pytest object at [hex]>
operation = '\n    select p.access_path\n    from  plg$prof_record_sources p\n    order by p.record_source_id desc rows 1\n'
parameters = None, flags = <CursorFlag.NONE: 0>

    def _execute(self, operation: Union[str, Statement],
                 parameters: Sequence=None, flags: CursorFlag=CursorFlag.NONE) -> None:
        if not self._transaction.is_active():
            self._transaction.begin()
        if isinstance(operation, Statement):
            if operation._connection() is not self._connection:
                raise InterfaceError('Cannot execute Statement that was created by different Connection.')
            self.close()
            self._stmt = operation
            self.__internal = False
        elif self._stmt is not None and self._stmt.sql == operation:
            # We should execute the same SQL string again
            self._clear()
        else:
            self.close()
>           self._stmt = self._connection._prepare(operation, self._transaction)

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

self = Connection[6037]
sql = '\n    select p.access_path\n    from  plg$prof_record_sources p\n    order by p.record_source_id desc rows 1\n'
tra = <firebird.driver.core.TransactionManager pytest object at [hex]>

    def _prepare(self, sql: str, tra: TransactionManager) -> Statement:
        if _commit := not tra.is_active():
            tra.begin()
>       stmt = self._att.prepare(tra._tra, sql, self.__sql_dialect)

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

self = <firebird.driver.interfaces.iAttachment pytest object at [hex]>
transaction = <firebird.driver.interfaces.iTransaction pytest object at [hex]>
stmt = '\n    select p.access_path\n    from  plg$prof_record_sources p\n    order by p.record_source_id desc rows 1\n'
dialect = 3, flags = <PreparePrefetchFlag.METADATA: 71>

        def prepare(self, transaction: iTransaction, stmt: str, dialect: int,
                    flags: PreparePrefetchFlag = PreparePrefetchFlag.METADATA) -> iStatement:
            """Replaces `isc_dsql_prepare()`. Additional parameter flags makes it
    possible to control what information will be preloaded from engine at once
    (i.e. in single network packet for remote operation)."""
            b_stmt: bytes = stmt.encode(self.encoding)
            result = self.vtable.prepare(self, self.status, transaction, len(b_stmt), b_stmt,
                                         dialect, flags)
>           self._check()

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

self = <firebird.driver.interfaces.iAttachment 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: Dynamic SQL Error
E           -SQL error code = -204
E           -Table unknown
E           -"PLG$PROF_RECORD_SOURCES"
E           -At line 3, column 11

../lib/python3.11/site-packages/firebird/driver/interfaces.py:113: DatabaseError
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.877 2025.06.26 8e38f F F 1027 1004 2025.06.27 01:40:11.071 2025.06.27 01:40:12.098 2025.06.26 23:07:01.541 2025.06.26 23:07:02.545
2 6.0.0.876 2025.06.25 b1bec F F 1004 1475 2025.06.26 01:44:00.155 2025.06.26 01:44:01.159 2025.06.25 23:08:50.714 2025.06.25 23:08:52.189
3 6.0.0.863 2025.06.24 c3c20 F F 1236 1456 2025.06.25 01:44:18.968 2025.06.25 01:44:20.204 2025.06.24 23:08:37.366 2025.06.24 23:08:38.822
4 6.0.0.858 2025.06.23 8d6f7 F F 1164 1452 2025.06.24 01:44:39.483 2025.06.24 01:44:40.647 2025.06.23 23:08:45.638 2025.06.23 23:08:47.090
5 6.0.0.849 2025.06.20 7b79c F F 1418 1760 2025.06.21 01:56:10.569 2025.06.21 01:56:11.987 2025.06.20 23:17:45.262 2025.06.20 23:17:47.022
6 6.0.0.848 2025.06.19 c483c F F 1241 1557 2025.06.20 01:52:32.345 2025.06.20 01:52:33.586 2025.06.19 23:14:36.987 2025.06.19 23:14:38.544
7 6.0.0.845 2025.06.18 22b12 F F 1238 1049 2025.06.19 02:01:10.503 2025.06.19 02:01:11.741 2025.06.18 23:17:41.738 2025.06.18 23:17:42.787
8 6.0.0.843 2025.06.16 995f4 F F 1262 1116 2025.06.18 01:59:24.524 2025.06.18 01:59:25.786 2025.06.17 23:20:26.210 2025.06.17 23:20:27.326
9 6.0.0.840 2025.06.14 29bca F F 1303 1538 2025.06.16 01:51:11.589 2025.06.16 01:51:12.892 2025.06.15 23:12:03.566 2025.06.15 23:12:05.104
10 6.0.0.838 2025.06.13 0e28a F F 1270 1536 2025.06.14 02:04:11.850 2025.06.14 02:04:13.120 2025.06.13 23:19:38.034 2025.06.13 23:19:39.570
11 6.0.0.835 2025.06.12 2cf29 F F 1223 924 2025.06.13 02:04:16.237 2025.06.13 02:04:17.460 2025.06.12 23:24:43.133 2025.06.12 23:24:44.057
12 6.0.0.834 2025.06.11 e889f F F 1435 1386 2025.06.12 01:59:23.605 2025.06.12 01:59:25.040 2025.06.11 23:20:03.941 2025.06.11 23:20:05.327
13 6.0.0.800 2025.06.10 1f226 P P 828 647 2025.06.11 00:26:17.014 2025.06.11 00:26:17.842 2025.06.10 22:18:53.278 2025.06.10 22:18:53.925
14 6.0.0.799 2025.06.07 be644 P P 1067 702 2025.06.10 00:27:54.702 2025.06.10 00:27:55.769 2025.06.09 22:18:26.568 2025.06.09 22:18:27.270
15 6.0.0.797 2025.06.06 303e8 P P 739 428 2025.06.07 00:31:16.372 2025.06.07 00:31:17.111 2025.06.06 22:18:07.582 2025.06.06 22:18:08.010
16 6.0.0.795 2025.05.29 7a71a P P 721 389 2025.06.06 00:26:43.158 2025.06.06 00:26:43.879 2025.06.05 22:17:35.398 2025.06.05 22:17:35.787
17 6.0.0.792 2025.05.28 b4327 P P 663 475 2025.05.29 00:40:06.622 2025.05.29 00:40:07.285 2025.05.28 22:19:42.203 2025.05.28 22:19:42.678
18 6.0.0.791 2025.05.27 02db8 P P 694 615 2025.05.28 00:37:31.547 2025.05.28 00:37:32.241 2025.05.27 22:19:05.702 2025.05.27 22:19:06.317
19 6.0.0.789 2025.05.21 64051 P P 664 539 2025.05.25 00:30:27.043 2025.05.25 00:30:27.707 2025.05.24 22:18:26.383 2025.05.24 22:18:26.922
20 6.0.0.787 2025.05.20 230ad P P 1304 417 2025.05.21 00:27:39.422 2025.05.21 00:27:40.726 2025.05.20 22:17:21.549 2025.05.20 22:17:21.966
21 6.0.0.783 2025.05.12 37320 P P 845 511 2025.05.19 12:01:04.478 2025.05.19 12:01:05.323 2025.05.19 10:06:07.321 2025.05.19 10:06:07.832
22 6.0.0.779 2025.05.11 136fa P P 712 398 2025.05.12 00:23:09.274 2025.05.12 00:23:09.986 2025.05.11 22:17:10.263 2025.05.11 22:17:10.661
23 6.0.0.778 2025.05.07 d735e P P 786 357 2025.05.08 00:25:23.681 2025.05.08 00:25:24.467 2025.05.07 22:15:53.885 2025.05.07 22:15:54.242
24 6.0.0.776 2025.05.06 007cd P P 827 940 2025.05.07 00:19:14.446 2025.05.07 00:19:15.273 2025.05.06 22:15:37.579 2025.05.06 22:15:38.519
25 6.0.0.770 2025.05.05 82c4a P P 845 831 2025.05.06 00:18:26.755 2025.05.06 00:18:27.600 2025.05.05 22:14:51.135 2025.05.05 22:14:51.966
26 6.0.0.767 2025.05.01 cdd29 P P 704 669 2025.05.02 00:16:14.307 2025.05.02 00:16:15.011 2025.05.01 22:14:25.382 2025.05.01 22:14:26.051
27 6.0.0.762 2025.04.30 5cb15 P P 669 478 2025.05.01 00:12:09.691 2025.05.01 00:12:10.360 2025.04.30 22:13:05.294 2025.04.30 22:13:05.772
28 6.0.0.755 2025.04.29 739c6 P P 1122 532 2025.04.30 00:14:32.098 2025.04.30 00:14:33.220 2025.04.29 22:14:27.179 2025.04.29 22:14:27.711
29 6.0.0.753 2025.04.27 29ab3 P P 647 822 2025.04.28 00:16:37.278 2025.04.28 00:16:37.925 2025.04.27 22:13:50.477 2025.04.27 22:13:51.299
30 6.0.0.745 2025.04.21 78ad8 P P 1192 326 2025.04.26 00:13:04.991 2025.04.26 00:13:06.183 2025.04.25 22:15:38.751 2025.04.25 22:15:39.077
31 6.0.0.744 2025.04.19 e883a P P 1217 701 2025.04.20 00:14:42.290 2025.04.20 00:14:43.507 2025.04.19 22:14:41.825 2025.04.19 22:14:42.526
32 6.0.0.742 2025.04.17 abc3b P P 1209 406 2025.04.19 00:16:45.437 2025.04.19 00:16:46.646 2025.04.18 22:15:01.546 2025.04.18 22:15:01.952
33 6.0.0.737 2025.04.16 fe52b P P 625 496 2025.04.17 00:13:23.261 2025.04.17 00:13:23.886 2025.04.16 22:15:01.045 2025.04.16 22:15:01.541
34 6.0.0.736 2025.04.14 3e6be P P 597 670 2025.04.14 23:55:04.193 2025.04.14 23:55:04.790 2025.04.14 22:06:42.944 2025.04.14 22:06:43.614
35 6.0.0.735 2025.04.13 6635c P P 1139 576 2025.04.13 23:58:33.677 2025.04.13 23:58:34.816 2025.04.13 22:07:50.546 2025.04.13 22:07:51.122
36 6.0.0.734 2025.04.12 12f3f P P 587 686 2025.04.12 23:55:57.095 2025.04.12 23:55:57.682 2025.04.12 22:07:07.949 2025.04.12 22:07:08.635
37 6.0.0.730 2025.04.11 240b8 P P 648 315 2025.04.11 23:57:54.309 2025.04.11 23:57:54.957 2025.04.11 22:06:39.410 2025.04.11 22:06:39.725
38 6.0.0.726 2025.04.10 d79c6 P P 1176 663 2025.04.10 23:57:41.238 2025.04.10 23:57:42.414 2025.04.10 22:06:44.390 2025.04.10 22:06:45.053
39 6.0.0.725 2025.04.09 a2b05 P P 1057 464 2025.04.09 23:58:48.777 2025.04.09 23:58:49.834 2025.04.09 22:08:26.771 2025.04.09 22:08:27.235
40 6.0.0.722 2025.04.08 a8b86 P P 673 512 2025.04.09 00:14:34.336 2025.04.09 00:14:35.009 2025.04.08 22:14:28.230 2025.04.08 22:14:28.742
41 6.0.0.719 2025.04.06 90fd9 P P 625 829 2025.04.07 00:12:12.857 2025.04.07 00:12:13.482 2025.04.06 22:13:03.122 2025.04.06 22:13:03.951
42 6.0.0.717 2025.04.04 53d70 P P 1139 403 2025.04.05 00:06:43.795 2025.04.05 00:06:44.934 2025.04.04 22:12:28.387 2025.04.04 22:12:28.790
43 6.0.0.716 2025.04.03 fc636 P P 656 892 2025.04.04 00:11:20.935 2025.04.04 00:11:21.591 2025.04.03 22:13:58.502 2025.04.03 22:13:59.394
44 6.0.0.715 2025.04.02 907ed P P 638 445 2025.04.03 00:11:33.173 2025.04.03 00:11:33.811 2025.04.02 22:14:05.974 2025.04.02 22:14:06.419
45 6.0.0.710 2025.04.01 40651 P P 730 636 2025.04.02 00:09:46.041 2025.04.02 00:09:46.771 2025.04.01 22:13:09.833 2025.04.01 22:13:10.469
46 6.0.0.708 2025.03.31 cb069 P P 623 486 2025.04.01 00:00:51.932 2025.04.01 00:00:52.555 2025.03.31 22:07:53.583 2025.03.31 22:07:54.069
47 6.0.0.707 2025.03.28 4bd4f P P 731 723 2025.03.31 00:00:48.071 2025.03.31 00:00:48.802 2025.03.30 22:08:29.683 2025.03.30 22:08:30.406
48 6.0.0.698 2025.03.26 d72a7 P P 743 720 2025.03.28 00:22:43.060 2025.03.28 00:22:43.803 2025.03.27 22:14:23.391 2025.03.27 22:14:24.111
49 6.0.0.693 2025.03.24 0b559 P P 1121 707 2025.03.25 00:09:50.489 2025.03.25 00:09:51.610 2025.03.24 22:11:06.119 2025.03.24 22:11:06.826
50 6.0.0.687 2025.03.22 730aa P P 725 390 2025.03.24 00:20:14.577 2025.03.24 00:20:15.302 2025.03.23 22:17:32.767 2025.03.23 22:17:33.157
51 6.0.0.686 2025.03.20 71bf6 P P 718 704 2025.03.21 00:26:04.837 2025.03.21 00:26:05.555 2025.03.20 22:19:19.854 2025.03.20 22:19:20.558
52 6.0.0.685 2025.03.19 a8577 P P 1115 367 2025.03.20 00:28:52.831 2025.03.20 00:28:53.946 2025.03.19 22:17:50.182 2025.03.19 22:17:50.549
53 6.0.0.680 2025.03.18 90d29 P P 930 611 2025.03.19 10:49:07.189 2025.03.19 10:49:08.119 2025.03.19 09:04:05.285 2025.03.19 09:04:05.896
54 6.0.0.677 2025.03.16 c0a60 P P 1511 539 2025.03.17 00:18:09.902 2025.03.17 00:18:11.413 2025.03.16 22:17:27.962 2025.03.16 22:17:28.501
55 6.0.0.676 2025.03.15 3034f P P 1037 544 2025.03.16 15:51:00.039 2025.03.16 15:51:01.076 2025.03.16 14:08:49.203 2025.03.16 14:08:49.747
56 6.0.0.673 2025.03.13 40f5b P P 800 417 2025.03.14 00:16:30.491 2025.03.14 00:16:31.291 2025.03.13 22:16:36.585 2025.03.13 22:16:37.002
57 6.0.0.671 2025.03.12 a4fff P P 1472 545 2025.03.13 00:20:45.226 2025.03.13 00:20:46.698 2025.03.12 22:18:50.063 2025.03.12 22:18:50.608
58 6.0.0.663 2025.03.11 daad2 P P 1480 408 2025.03.12 00:19:00.081 2025.03.12 00:19:01.561 2025.03.11 22:18:20.685 2025.03.11 22:18:21.093
59 6.0.0.661 2025.03.07 b9869 P P 753 667 2025.03.10 23:58:05.834 2025.03.10 23:58:06.587 2025.03.10 22:10:27.795 2025.03.10 22:10:28.462
60 6.0.0.660 2025.03.04 a6700 P P 827 758 2025.03.07 00:07:02.584 2025.03.07 00:07:03.411 2025.03.06 22:14:03.770 2025.03.06 22:14:04.528
61 6.0.0.658 2025.03.03 f15f8 P P 1608 680 2025.03.04 00:01:30.102 2025.03.04 00:01:31.710 2025.03.03 22:10:38.129 2025.03.03 22:10:38.809
62 6.0.0.656 2025.02.27 25fb4 P P 1638 520 2025.03.03 00:29:23.296 2025.03.03 00:29:24.934 2025.03.02 22:20:10.503 2025.03.02 22:20:11.023
63 6.0.0.655 2025.02.25 6e3e0 P P 788 700 2025.02.27 00:06:08.190 2025.02.27 00:06:08.978 2025.02.26 22:12:31.437 2025.02.26 22:12:32.137
64 6.0.0.654 2025.02.24 b7141 P P 810 703 2025.02.25 00:08:24.534 2025.02.25 00:08:25.344 2025.02.24 22:14:00.536 2025.02.24 22:14:01.239
65 6.0.0.652 2025.02.22 22662 P P 916 627 2025.02.24 07:26:18.327 2025.02.24 07:26:19.243 2025.02.24 00:27:27.679 2025.02.24 00:27:28.306
66 6.0.0.647 2025.02.21 9fccb P P 1552 657 2025.02.22 00:10:01.010 2025.02.22 00:10:02.562 2025.02.21 22:17:30.146 2025.02.21 22:17:30.803
67 6.0.0.640 2025.02.19 9b8ac P P 751 676 2025.02.20 00:08:19.830 2025.02.20 00:08:20.581 2025.02.19 22:12:23.641 2025.02.19 22:12:24.317
68 6.0.0.639 2025.02.18 201a4 P P 818 714 2025.02.19 00:00:37.750 2025.02.19 00:00:38.568 2025.02.18 22:11:37.381 2025.02.18 22:11:38.095
69 6.0.0.637 2025.02.12 6d0f5 P P 1391 373 2025.02.14 00:17:28.130 2025.02.14 00:17:29.521 2025.02.13 22:17:33.475 2025.02.13 22:17:33.848
70 6.0.0.636 2025.02.11 0424f P P 753 449 2025.02.12 00:15:49.067 2025.02.12 00:15:49.820 2025.02.11 22:17:13.467 2025.02.11 22:17:13.916
71 6.0.0.635 2025.02.10 f640f P P 792 541 2025.02.11 00:13:28.385 2025.02.11 00:13:29.177 2025.02.10 22:17:35.589 2025.02.10 22:17:36.130
72 6.0.0.629 2025.02.07 194f9 P P 990 750 2025.02.08 00:12:56.607 2025.02.08 00:12:57.597 2025.02.07 22:16:25.295 2025.02.07 22:16:26.045
73 6.0.0.628 2025.02.06 859d5 P P 1472 693 2025.02.07 00:29:18.166 2025.02.07 00:29:19.638 2025.02.06 22:23:33.670 2025.02.06 22:23:34.363
74 6.0.0.621 2025.02.05 34fe7 P P 776 738 2025.02.06 00:26:11.003 2025.02.06 00:26:11.779 2025.02.05 22:24:06.490 2025.02.05 22:24:07.228
75 6.0.0.609 2025.02.04 76d57 P P 810 707 2025.02.05 00:18:29.047 2025.02.05 00:18:29.857 2025.02.04 22:21:28.698 2025.02.04 22:21:29.405
76 6.0.0.607 2025.02.03 1985b P P 1449 512 2025.02.04 00:17:50.638 2025.02.04 00:17:52.087 2025.02.03 22:21:52.526 2025.02.03 22:21:53.038
77 6.0.0.601 2025.02.01 6af07 P P 759 411 2025.02.02 00:10:45.051 2025.02.02 00:10:45.810 2025.02.01 22:15:40.598 2025.02.01 22:15:41.009
78 6.0.0.600 2025.01.27 188de P P 883 414 2025.01.28 00:17:51.025 2025.01.28 00:17:51.908 2025.01.27 22:17:21.617 2025.01.27 22:17:22.031
79 6.0.0.599 2025.01.25 ba588 P P 755 418 2025.01.26 00:18:06.343 2025.01.26 00:18:07.098 2025.01.25 22:17:46.853 2025.01.25 22:17:47.271
80 6.0.0.598 2025.01.23 ddbc3 P P 848 404 2025.01.25 00:18:33.787 2025.01.25 00:18:34.635 2025.01.24 22:16:34.175 2025.01.24 22:16:34.579
81 6.0.0.595 2025.01.22 e62f3 P P 834 773 2025.01.23 00:10:07.479 2025.01.23 00:10:08.313 2025.01.22 22:13:53.191 2025.01.22 22:13:53.964
82 6.0.0.594 2025.01.21 47fb6 P P 739 495 2025.01.22 00:05:54.530 2025.01.22 00:05:55.269 2025.01.21 22:13:19.522 2025.01.21 22:13:20.017
83 6.0.0.590 2025.01.20 9dc1e P P 820 713 2025.01.21 00:12:41.519 2025.01.21 00:12:42.339 2025.01.20 22:16:59.682 2025.01.20 22:17:00.395
84 6.0.0.588 2025.01.19 b1c4e P P 805 440 2025.01.20 00:09:53.173 2025.01.20 00:09:53.978 2025.01.19 22:15:27.325 2025.01.19 22:15:27.765
85 6.0.0.587 2025.01.18 63e6e P P 1051 399 2025.01.19 00:14:42.908 2025.01.19 00:14:43.959 2025.01.18 22:17:04.668 2025.01.18 22:17:05.067
86 6.0.0.585 2025.01.16 2d6bb P P 746 339 2025.01.18 00:07:04.720 2025.01.18 00:07:05.466 2025.01.17 22:14:34.761 2025.01.17 22:14:35.100
87 6.0.0.584 2025.01.15 a0aa2 P P 774 787 2025.01.16 00:12:34.026 2025.01.16 00:12:34.800 2025.01.15 22:16:56.819 2025.01.15 22:16:57.606
88 6.0.0.581 2025.01.14 21e9e P P 790 688 2025.01.15 00:13:32.396 2025.01.15 00:13:33.186 2025.01.14 22:15:53.595 2025.01.14 22:15:54.283
89 6.0.0.577 2025.01.13 7e293 P P 927 396 2025.01.14 00:14:12.343 2025.01.14 00:14:13.270 2025.01.13 22:16:02.722 2025.01.13 22:16:03.118
90 6.0.0.576 2025.01.12 05898 P P 1480 376 2025.01.13 00:09:39.582 2025.01.13 00:09:41.062 2025.01.12 22:14:27.049 2025.01.12 22:14:27.425
91 6.0.0.573 2025.01.10 c20f3 P P 817 649 2025.01.11 00:11:32.538 2025.01.11 00:11:33.355 2025.01.10 22:15:41.293 2025.01.10 22:15:41.942
92 6.0.0.571 2024.12.31 81bba P P 1272 367 2024.12.31 23:48:30.459 2024.12.31 23:48:31.731 2024.12.31 21:59:43.254 2024.12.31 21:59:43.621
93 6.0.0.570 2024.12.30 c3c8d P P 699 367 2024.12.30 23:47:23.180 2024.12.30 23:47:23.879 2024.12.30 21:59:40.358 2024.12.30 21:59:40.725
94 6.0.0.565 2024.12.28 5fc59 P P 676 371 2024.12.30 12:23:59.679 2024.12.30 12:24:00.355 2024.12.30 11:08:29.715 2024.12.30 11:08:30.086
95 6.0.0.564 2024.12.26 12514 P P 1264 382 2024.12.26 23:49:03.532 2024.12.26 23:49:04.796 2024.12.26 21:59:45.229 2024.12.26 21:59:45.611
96 6.0.0.560 2024.12.25 fa83e P P 633 400 2024.12.25 23:40:49.491 2024.12.25 23:40:50.124 2024.12.25 21:59:42.631 2024.12.25 21:59:43.031
97 6.0.0.559 2024.12.23 cc800 P P 852 397 2024.12.24 23:42:10.971 2024.12.24 23:42:11.823 2024.12.24 22:00:08.444 2024.12.24 22:00:08.841
98 6.0.0.556 2024.12.22 a0404 P P 676 390 2024.12.22 23:48:44.867 2024.12.22 23:48:45.543 2024.12.22 21:59:33.578 2024.12.22 21:59:33.968
99 6.0.0.555 2024.12.19 6990a P P 658 380 2024.12.21 12:59:27.260 2024.12.21 12:59:27.918 2024.12.21 11:44:18.186 2024.12.21 11:44:18.566
100 6.0.0.553 2024.12.17 d1f8a P P 655 391 2024.12.17 23:42:58.060 2024.12.17 23:42:58.715 2024.12.17 22:00:14.160 2024.12.17 22:00:14.551
101 6.0.0.552 2024.12.11 85e25 P P 715 367 2024.12.15 23:48:23.801 2024.12.15 23:48:24.516 2024.12.15 21:59:56.097 2024.12.15 21:59:56.464
102 6.0.0.550 2024.12.10 b37ac P P 1154 372 2024.12.10 23:43:43.757 2024.12.10 23:43:44.911 2024.12.10 22:01:03.855 2024.12.10 22:01:04.227
103 6.0.0.548 2024.12.08 2cc77 P P 669 399 2024.12.08 23:39:15.011 2024.12.08 23:39:15.680 2024.12.08 21:58:56.251 2024.12.08 21:58:56.650
104 6.0.0.544 2024.12.05 96943 P P 683 424 2024.12.05 23:42:17.020 2024.12.05 23:42:17.703 2024.12.05 22:02:19.083 2024.12.05 22:02:19.507
105 6.0.0.543 2024.12.03 30b77 P P 667 385 2024.12.03 23:43:39.326 2024.12.03 23:43:39.993 2024.12.03 22:00:51.685 2024.12.03 22:00:52.070
106 6.0.0.540 2024.12.02 4a1f4 P P 670 375 2024.12.02 23:40:10.552 2024.12.02 23:40:11.222 2024.12.02 22:00:10.533 2024.12.02 22:00:10.908
107 6.0.0.539 2024.11.28 1f283 P P 824 417 2024.11.29 23:51:55.959 2024.11.29 23:51:56.783 2024.11.29 22:00:35.873 2024.11.29 22:00:36.290
108 6.0.0.535 2024.11.26 77b95 P P 1232 402 2024.11.26 23:34:47.519 2024.11.26 23:34:48.751 2024.11.26 21:58:15.880 2024.11.26 21:58:16.282
109 6.0.0.534 2024.11.25 e9584 P P 1044 375 2024.11.25 23:36:05.507 2024.11.25 23:36:06.551 2024.11.25 21:59:02.168 2024.11.25 21:59:02.543
110 6.0.0.533 2024.11.17 933ac P P 766 389 2024.11.22 09:41:17.032 2024.11.22 09:41:17.798 2024.11.22 08:28:30.186 2024.11.22 08:28:30.575
111 6.0.0.532 2024.11.16 9e263 P P 664 363 2024.11.16 23:24:01.070 2024.11.16 23:24:01.734 2024.11.16 21:58:59.306 2024.11.16 21:58:59.669
112 6.0.0.530 2024.11.15 49804 P P 1270 375 2024.11.16 01:34:14.991 2024.11.16 01:34:16.261 2024.11.15 23:58:21.382 2024.11.15 23:58:21.757
113 6.0.0.528 2024.11.14 9625b P P 1382 398 2024.11.15 01:37:20.917 2024.11.15 01:37:22.299 2024.11.14 23:59:40.681 2024.11.14 23:59:41.079
114 6.0.0.526 2024.11.12 65b80 P P 1239 429 2024.11.14 01:36:36.391 2024.11.14 01:36:37.630 2024.11.13 23:59:12.251 2024.11.13 23:59:12.680
115 6.0.0.523 2024.11.08 8ca23 P P 1299 361 2024.11.11 01:33:14.659 2024.11.11 01:33:15.958 2024.11.10 23:58:08.263 2024.11.10 23:58:08.624
116 6.0.0.520 2024.11.07 4eefa F F 1282 409 2024.11.08 01:30:34.184 2024.11.08 01:30:35.466 2024.11.07 23:57:47.736 2024.11.07 23:57:48.145
117 6.0.0.516 2024.11.04 b0c36 P P 1257 386 2024.11.05 01:29:39.226 2024.11.05 01:29:40.483 2024.11.04 23:57:26.851 2024.11.04 23:57:27.237
118 6.0.0.515 2024.10.30 d53f3 P P 1184 412 2024.11.04 01:32:11.158 2024.11.04 01:32:12.342 2024.11.03 23:57:58.161 2024.11.03 23:57:58.573
119 6.0.0.512 2024.10.29 833ef P P 1231 404 2024.10.30 01:34:34.276 2024.10.30 01:34:35.507 2024.10.29 23:59:19.489 2024.10.29 23:59:19.893
120 6.0.0.511 2024.10.26 c4bc9 P P 1280 385 2024.10.29 01:34:52.165 2024.10.29 01:34:53.445 2024.10.28 23:58:57.846 2024.10.28 23:58:58.231
121 6.0.0.509 2024.10.25 3aedb P P 1082 417 2024.10.26 01:44:23.104 2024.10.26 01:44:24.186 2024.10.26 00:01:40.368 2024.10.26 00:01:40.785
122 6.0.0.508 2024.10.24 a8f5b P P 1303 417 2024.10.25 01:38:50.760 2024.10.25 01:38:52.063 2024.10.25 00:00:05.819 2024.10.25 00:00:06.236
123 6.0.0.502 2024.10.22 6bfd7 P P 1180 390 2024.10.23 01:38:19.601 2024.10.23 01:38:20.781 2024.10.22 23:59:45.273 2024.10.22 23:59:45.663
124 6.0.0.500 2024.10.21 be565 P P 722 360 2024.10.22 17:44:16.978 2024.10.22 17:44:17.700 2024.10.22 16:29:24.049 2024.10.22 16:29:24.409
125 6.0.0.499 2024.10.19 6214b P P 726 405 2024.10.20 01:39:36.643 2024.10.20 01:39:37.369 2024.10.20 00:00:45.700 2024.10.20 00:00:46.105
126 6.0.0.498 2024.10.18 591a7 P P 1265 391 2024.10.19 01:36:53.733 2024.10.19 01:36:54.998 2024.10.18 23:59:11.855 2024.10.18 23:59:12.246
127 6.0.0.494 2024.10.17 cf5a4 P P 1276 397 2024.10.18 01:37:40.269 2024.10.18 01:37:41.545 2024.10.18 00:00:31.983 2024.10.18 00:00:32.380
128 6.0.0.491 2024.10.14 dc5fb P P 1243 434 2024.10.15 01:33:58.734 2024.10.15 01:33:59.977 2024.10.14 23:58:25.983 2024.10.14 23:58:26.417
129 6.0.0.489 2024.10.11 2ba59 P P 1281 377 2024.10.12 01:40:35.192 2024.10.12 01:40:36.473 2024.10.12 00:00:22.746 2024.10.12 00:00:23.123
130 6.0.0.488 2024.10.09 1c93e P P 779 407 2024.10.10 01:49:03.381 2024.10.10 01:49:04.160 2024.10.10 00:02:57.015 2024.10.10 00:02:57.422
131 6.0.0.487 2024.10.06 065a3 P P 1434 401 2024.10.07 01:48:04.243 2024.10.07 01:48:05.677 2024.10.07 00:02:50.731 2024.10.07 00:02:51.132
132 6.0.0.485 2024.10.04 e95c1 P P 1208 409 2024.10.05 01:50:15.213 2024.10.05 01:50:16.421 2024.10.05 00:02:43.396 2024.10.05 00:02:43.805
133 6.0.0.483 2024.10.02 5e5ae P P 1316 406 2024.10.03 01:45:18.165 2024.10.03 01:45:19.481 2024.10.03 00:02:11.662 2024.10.03 00:02:12.068
134 6.0.0.478 2024.09.30 b5010 P P 1381 394 2024.10.01 01:40:28.809 2024.10.01 01:40:30.190 2024.10.01 00:01:39.899 2024.10.01 00:01:40.293
135 6.0.0.474 2024.09.26 e4efb P P 715 427 2024.09.30 01:40:46.410 2024.09.30 01:40:47.125 2024.09.30 00:00:38.909 2024.09.30 00:00:39.336
136 6.0.0.471 2024.09.24 01b51 P P 1369 395 2024.09.25 23:44:08.408 2024.09.25 23:44:09.777 2024.09.25 22:01:08.023 2024.09.25 22:01:08.418
137 6.0.0.470 2024.09.23 77cc0 P P 1328 435 2024.09.23 23:42:52.785 2024.09.23 23:42:54.113 2024.09.23 22:01:23.547 2024.09.23 22:01:23.982
138 6.0.0.467 2024.09.21 ea0b8 P P 1403 425 2024.09.22 23:41:08.602 2024.09.22 23:41:10.005 2024.09.22 22:00:38.079 2024.09.22 22:00:38.504
139 6.0.0.466 2024.09.20 32dc6 P P 1227 391 2024.09.20 23:39:41.442 2024.09.20 23:39:42.669 2024.09.20 22:00:22.616 2024.09.20 22:00:23.007
140 6.0.0.461 2024.09.17 2c895 P P 1573 756 2024.09.18 00:12:33.733 2024.09.18 00:12:35.306 2024.09.17 22:20:05.647 2024.09.17 22:20:06.403
141 6.0.0.460 2024.09.11 3c253 P P 931 694 2024.09.17 00:13:39.277 2024.09.17 00:13:40.208 2024.09.16 22:21:24.762 2024.09.16 22:21:25.456
142 6.0.0.457 2024.09.09 fdc6f P P 1088 815 2024.09.10 00:36:15.463 2024.09.10 00:36:16.551 2024.09.09 22:30:18.088 2024.09.09 22:30:18.903
143 6.0.0.455 2024.09.07 500d8 P P 1456 600 2024.09.08 00:32:26.537 2024.09.08 00:32:27.993 2024.09.07 22:28:21.352 2024.09.07 22:28:21.952
144 6.0.0.454 2024.09.05 4d70f P P 1605 667 2024.09.06 00:15:52.836 2024.09.06 00:15:54.441 2024.09.05 22:23:41.833 2024.09.05 22:23:42.500
145 6.0.0.452 2024.09.04 9ff9c P P 1548 702 2024.09.05 00:13:20.594 2024.09.05 00:13:22.142 2024.09.04 22:21:48.022 2024.09.04 22:21:48.724
146 6.0.0.450 2024.09.02 27124 P P 4412 680 2024.09.04 01:22:03.494 2024.09.04 01:22:07.906 2024.09.03 22:48:24.377 2024.09.03 22:48:25.057
147 6.0.0.447 2024.09.01 056ec P P 2156 658 2024.09.02 00:37:09.367 2024.09.02 00:37:11.523 2024.09.01 22:27:56.711 2024.09.01 22:27:57.369
148 6.0.0.446 2024.08.30 fe1b2 P P 971 797 2024.09.01 00:43:00.150 2024.09.01 00:43:01.121 2024.08.31 22:39:31.676 2024.08.31 22:39:32.473
149 6.0.0.444 2024.08.28 785d4 P P 1638 1468 2024.08.30 00:55:15.408 2024.08.30 00:55:17.046 2024.08.29 22:48:24.046 2024.08.29 22:48:25.514
150 6.0.0.442 2024.08.21 4a68f P P 1317 693 2024.08.28 02:35:20.901 2024.08.28 02:35:22.218 2024.08.27 23:40:14.818 2024.08.27 23:40:15.511
151 6.0.0.441 2024.08.20 75042 P P 1687 628 2024.08.21 00:27:38.010 2024.08.21 00:27:39.697 2024.08.20 22:28:47.085 2024.08.20 22:28:47.713
152 6.0.0.438 2024.08.16 088b5 P P 798 682 2024.08.18 23:43:30.338 2024.08.18 23:43:31.136 2024.08.18 22:06:57.996 2024.08.18 22:06:58.678
153 6.0.0.437 2024.08.14 3c88b P P 780 427 2024.08.15 23:41:26.232 2024.08.15 23:41:27.012 2024.08.15 22:06:02.512 2024.08.15 22:06:02.939
154 6.0.0.432 2024.08.11 e82ac P P 790 468 2024.08.12 23:40:39.137 2024.08.12 23:40:39.927 2024.08.12 22:05:14.173 2024.08.12 22:05:14.641
155 6.0.0.431 2024.08.09 de5a7 P P 774 416 2024.08.09 23:42:12.656 2024.08.09 23:42:13.430 2024.08.09 22:06:05.665 2024.08.09 22:06:06.081
156 6.0.0.428 2024.08.08 9191b P P 766 476 2024.08.08 23:41:21.870 2024.08.08 23:41:22.636 2024.08.08 22:05:46.429 2024.08.08 22:05:46.905
157 6.0.0.423 2024.08.07 33b41 P P 919 554 2024.08.08 09:30:22.871 2024.08.08 09:30:23.790 2024.08.08 08:13:19.485 2024.08.08 08:13:20.039
158 6.0.0.421 2024.08.06 ed60d P P 629 395 2024.08.06 23:24:14.437 2024.08.06 23:24:15.066 2024.08.06 22:01:31.054 2024.08.06 22:01:31.449
159 6.0.0.419 2024.08.05 3505a P P 1005 357 2024.08.05 23:26:22.749 2024.08.05 23:26:23.754 2024.08.05 22:01:30.607 2024.08.05 22:01:30.964
160 6.0.0.409 2024.08.02 ec18f P P 1080 415 2024.08.04 23:30:46.893 2024.08.04 23:30:47.973 2024.08.04 22:02:21.720 2024.08.04 22:02:22.135
161 6.0.0.406 2024.08.01 b20be P P 1114 374 2024.08.01 23:29:30.137 2024.08.01 23:29:31.251 2024.08.01 22:01:47.336 2024.08.01 22:01:47.710
162 6.0.0.405 2024.07.31 a62ac P P 1059 394 2024.07.31 23:27:59.678 2024.07.31 23:28:00.737 2024.07.31 22:01:31.726 2024.07.31 22:01:32.120
163 6.0.0.403 2024.07.29 30f03 P P 1008 424 2024.07.29 23:27:33.565 2024.07.29 23:27:34.573 2024.07.29 22:01:18.940 2024.07.29 22:01:19.364
164 6.0.0.401 2024.07.26 24e41 P P 1139 404 2024.07.26 23:24:02.473 2024.07.26 23:24:03.612 2024.07.26 22:01:12.687 2024.07.26 22:01:13.091
165 6.0.0.400 2024.07.24 5bb78 P P 1065 390 2024.07.24 23:23:43.903 2024.07.24 23:23:44.968 2024.07.24 22:01:28.411 2024.07.24 22:01:28.801
166 6.0.0.398 2024.07.23 85b18 P P 1024 238 2024.07.23 23:31:52.381 2024.07.23 23:31:53.405 2024.07.23 22:06:28.560 2024.07.23 22:06:28.798
167 6.0.0.397 2024.07.22 c734c P P 1063 398 2024.07.22 23:23:45.946 2024.07.22 23:23:47.009 2024.07.22 22:01:25.017 2024.07.22 22:01:25.415
168 6.0.0.396 2024.07.13 cf952 P P 1095 439 2024.07.21 23:24:40.462 2024.07.21 23:24:41.557 2024.07.21 22:01:10.057 2024.07.21 22:01:10.496
169 6.0.0.395 2024.07.10 845f4 P P 1089 371 2024.07.12 23:25:07.062 2024.07.12 23:25:08.151 2024.07.12 22:00:21.224 2024.07.12 22:00:21.595
170 6.0.0.392 2024.07.09 ea301 P P 1136 381 2024.07.09 23:21:11.921 2024.07.09 23:21:13.057 2024.07.09 21:59:54.575 2024.07.09 21:59:54.956
171 6.0.0.391 2024.07.08 7d50c P P 1044 422 2024.07.08 23:22:29.566 2024.07.08 23:22:30.610 2024.07.08 22:00:48.659 2024.07.08 22:00:49.081
172 6.0.0.389 2024.07.05 cc71c P P 1157 413 2024.07.05 23:26:03.576 2024.07.05 23:26:04.733 2024.07.05 22:00:39.640 2024.07.05 22:00:40.053
173 6.0.0.388 2024.06.30 e5700 P P 1035 407 2024.06.30 23:22:42.793 2024.06.30 23:22:43.828 2024.06.30 22:01:10.988 2024.06.30 22:01:11.395
174 6.0.0.387 2024.06.27 7c28a P P 1041 417 2024.06.27 23:21:48.464 2024.06.27 23:21:49.505 2024.06.27 22:00:55.177 2024.06.27 22:00:55.594
175 6.0.0.386 2024.06.23 7c57f P P 1078 406 2024.06.23 23:19:12.046 2024.06.23 23:19:13.124 2024.06.23 21:59:39.394 2024.06.23 21:59:39.800
176 6.0.0.384 2024.06.21 24d99 P P 1065 430 2024.06.21 23:23:31.516 2024.06.21 23:23:32.581 2024.06.21 22:00:40.775 2024.06.21 22:00:41.205
177 6.0.0.374 2024.06.13 0097d P P 1032 405 2024.06.20 23:21:33.933 2024.06.20 23:21:34.965 2024.06.20 22:00:06.708 2024.06.20 22:00:07.113
178 6.0.0.373 2024.06.09 363f0 P P 655 419 2024.06.13 13:33:01.959 2024.06.13 13:33:02.614 2024.06.13 12:23:48.890 2024.06.13 12:23:49.309
179 6.0.0.371 2024.06.08 f7130 P P 600 389 2024.06.11 22:19:55.890 2024.06.11 22:19:56.490 2024.06.11 21:18:05.891 2024.06.11 21:18:06.280
180 6.0.0.366 2024.05.30 ab2c9 P P 1129 278 2024.06.12 09:28:30.959 2024.06.12 09:28:32.088 2024.06.12 07:52:40.229 2024.06.12 07:52:40.507
181 6.0.0.363 2024.05.27 06703 P P 648 314 2024.06.12 14:26:26.196 2024.06.12 14:26:26.844 2024.06.12 13:21:32.874 2024.06.12 13:21:33.188
182 6.0.0.359 2024.05.23 9cb11 P P 581 307 2024.06.12 12:18:34.752 2024.06.12 12:18:35.333 2024.06.12 11:13:48.244 2024.06.12 11:13:48.551
183 6.0.0.358 2024.05.21 995dd P P 635 397 2024.06.12 17:01:44.539 2024.06.12 17:01:45.174 2024.06.12 15:58:24.460 2024.06.12 15:58:24.857
184 6.0.0.357 2024.05.18 bf6c4 P P 625 362 2024.06.12 21:38:06.846 2024.06.12 21:38:07.471 2024.06.12 20:34:29.514 2024.06.12 20:34:29.876
185 6.0.0.356 2024.05.17 eab06 P P 677 347 2024.06.13 05:44:31.006 2024.06.13 05:44:31.683 2024.06.13 04:41:05.811 2024.06.13 04:41:06.158
186 6.0.0.355 2024.05.16 8dd6e P P 694 273 2024.06.13 07:51:54.539 2024.06.13 07:51:55.233 2024.06.13 06:49:02.644 2024.06.13 06:49:02.917
187 6.0.0.354 2024.05.15 d3adc P P 653 416 2024.06.13 10:57:50.110 2024.06.13 10:57:50.763 2024.06.13 09:49:13.510 2024.06.13 09:49:13.926
188 6.0.0.351 2024.05.14 2e3e0 P P 620 403 2024.06.13 16:11:38.890 2024.06.13 16:11:39.510 2024.06.13 15:02:07.554 2024.06.13 15:02:07.957

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):