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
firebird.driver.types.DatabaseError: unsuccessful metadata update
-GRANT failed
-Table "PUBLIC"."PLG$PROF_SESSIONS" does not exist

LOG DETAILS:

2025-06-25 11:26:50.680
2025-06-25 11:26:50.680 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-25 11:26:50.680 tmp_worker_usr = <firebird.qa.plugin.User object at [hex]>
2025-06-25 11:26:50.680 tmp_profiler_usr = <firebird.qa.plugin.User object at [hex]>
2025-06-25 11:26:50.680 tmp_profiler_role = <firebird.qa.plugin.Role object at [hex]>
2025-06-25 11:26:50.680 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-25 11:26:50.680
2025-06-25 11:26:50.680     @pytest.mark.disabled_in_forks
2025-06-25 11:26:50.680     @pytest.mark.version('>=5.0.1')
2025-06-25 11:26:50.680     def test_1(act: Action, tmp_worker_usr: User, tmp_profiler_usr: User, tmp_profiler_role: Role, capsys):
2025-06-25 11:26:50.681
2025-06-25 11:26:50.681         addi_script = f"""
2025-06-25 11:26:50.681             set wng off;
2025-06-25 11:26:50.681             set bail on;
2025-06-25 11:26:50.681             alter user {tmp_profiler_usr.name} revoke admin role;
2025-06-25 11:26:50.681             revoke all on all from {tmp_profiler_usr.name};
2025-06-25 11:26:50.681             commit;
2025-06-25 11:26:50.681             -- doc/sql.extensions/README.profiler.md:
2025-06-25 11:26:50.681             -- If the remote attachment is from a different user, the calling user must have the system privilege `PROFILE_ANY_ATTACHMENT`.
2025-06-25 11:26:50.681             alter role {tmp_profiler_role.name}
2025-06-25 11:26:50.681                 set system privileges to PROFILE_ANY_ATTACHMENT;
2025-06-25 11:26:50.681             commit;
2025-06-25 11:26:50.681             grant default {tmp_profiler_role.name} to user {tmp_profiler_usr.name};
2025-06-25 11:26:50.681             commit;
2025-06-25 11:26:50.681         """
2025-06-25 11:26:50.681         act.isql(switches=['-q'], input=addi_script)
2025-06-25 11:26:50.681
2025-06-25 11:26:50.681         custom_tpb = tpb(isolation = Isolation.READ_COMMITTED_READ_CONSISTENCY, lock_timeout = 0)
2025-06-25 11:26:50.681
2025-06-25 11:26:50.681         with act.db.connect() as con_admin, \
2025-06-25 11:26:50.682              act.db.connect(user = tmp_worker_usr.name, password = tmp_worker_usr.password) as con_worker, \
2025-06-25 11:26:50.682              act.db.connect(user = tmp_profiler_usr.name, password = tmp_profiler_usr.password, role = tmp_profiler_role.name) as con_profiler:
2025-06-25 11:26:50.682
2025-06-25 11:26:50.682             cur_worker = con_worker.cursor()
2025-06-25 11:26:50.682             cur_worker.execute('select current_connection from rdb$database')
2025-06-25 11:26:50.682             worker_attach_id = cur_worker.fetchone()[0]
2025-06-25 11:26:50.682
2025-06-25 11:26:50.682             tx_profiler = con_profiler.transaction_manager(custom_tpb)
2025-06-25 11:26:50.682             cur_profiler = tx_profiler.cursor()
2025-06-25 11:26:50.682
2025-06-25 11:26:50.682             #..............................................................................
2025-06-25 11:26:50.682
2025-06-25 11:26:50.682             tx_profiler.begin()
2025-06-25 11:26:50.682             cur_profiler.execute(f"select rdb$profiler.start_session('remote_profiling_of_inserts', null, {worker_attach_id}) from rdb$database;")
2025-06-25 11:26:50.682             cur_profiler.fetchall()
2025-06-25 11:26:50.682
2025-06-25 11:26:50.682             cur_worker.callproc('sp_ins')
2025-06-25 11:26:50.682
2025-06-25 11:26:50.682             cur_profiler.callproc(f'rdb$profiler.finish_session(true, {worker_attach_id})')
2025-06-25 11:26:50.682             tx_profiler.commit()
2025-06-25 11:26:50.682
2025-06-25 11:26:50.683             #..............................................................................
2025-06-25 11:26:50.683
2025-06-25 11:26:50.683             tx_profiler.begin()
2025-06-25 11:26:50.683             cur_profiler.execute(f"select rdb$profiler.start_session('remote_profiling_of_deletions', null, {worker_attach_id}) from rdb$database;")
2025-06-25 11:26:50.683             cur_profiler.fetchall()
2025-06-25 11:26:50.683
2025-06-25 11:26:50.683             cur_worker.callproc('sp_del')
2025-06-25 11:26:50.683
2025-06-25 11:26:50.683             cur_profiler.callproc(f'rdb$profiler.finish_session(true, {worker_attach_id})')
2025-06-25 11:26:50.683             tx_profiler.commit()
2025-06-25 11:26:50.683
2025-06-25 11:26:50.683             #------------------------------------------------------------------------------
2025-06-25 11:26:50.683             # firebird.driver.types.DatabaseError: no permission for SELECT access to TABLE PLG$PROF_SESSIONS
2025-06-25 11:26:50.683             # -Effective user is TMP_USER_PROFILER_ANY_ATT
2025-06-25 11:26:50.683             #################################
2025-06-25 11:26:50.683             # ::: NB ::: Why this is needed ?
2025-06-25 11:26:50.683             #################################
2025-06-25 11:26:50.683 >           con_admin.execute_immediate(f'grant select on plg$prof_sessions to role {tmp_profiler_role.name}')
2025-06-25 11:26:50.683
2025-06-25 11:26:50.683 tests\bugs\gh_8176_test.py:171:
2025-06-25 11:26:50.684 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-25 11:26:50.684
2025-06-25 11:26:50.684 self = Connection[6435]
2025-06-25 11:26:50.684 sql = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'
2025-06-25 11:26:50.684
2025-06-25 11:26:50.684     def execute_immediate(self, sql: str) -> None:
2025-06-25 11:26:50.684         """Executes SQL statement.
2025-06-25 11:26:50.684
2025-06-25 11:26:50.684         Important:
2025-06-25 11:26:50.684
2025-06-25 11:26:50.684             The statement MUST NOT return any result. The statement is executed in the
2025-06-25 11:26:50.684             context of `.main_transaction`.
2025-06-25 11:26:50.684
2025-06-25 11:26:50.684         Arguments:
2025-06-25 11:26:50.684            sql: SQL statement to be executed.
2025-06-25 11:26:50.684         """
2025-06-25 11:26:50.684         assert self._att is not None
2025-06-25 11:26:50.684 >       self.main_transaction.execute_immediate(sql)
2025-06-25 11:26:50.684
2025-06-25 11:26:50.684 C:\Python3x\Lib\site-packages\firebird\driver\core.py:1824:
2025-06-25 11:26:50.685 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-25 11:26:50.685
2025-06-25 11:26:50.685 self = <firebird.driver.core.TransactionManager object at [hex]>
2025-06-25 11:26:50.685 sql = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'
2025-06-25 11:26:50.685
2025-06-25 11:26:50.685     def execute_immediate(self, sql: str) -> None:
2025-06-25 11:26:50.685         """Executes SQL statement. The statement MUST NOT return any result.
2025-06-25 11:26:50.685
2025-06-25 11:26:50.685         Arguments:
2025-06-25 11:26:50.685            sql: SQL statement to be executed.
2025-06-25 11:26:50.685         """
2025-06-25 11:26:50.685         assert not self.__closed
2025-06-25 11:26:50.685         if not self.is_active():
2025-06-25 11:26:50.685             self.begin()
2025-06-25 11:26:50.685 >       self._connection()._att.execute(self._tra, sql, self._connection().sql_dialect)
2025-06-25 11:26:50.685
2025-06-25 11:26:50.685 C:\Python3x\Lib\site-packages\firebird\driver\core.py:2456:
2025-06-25 11:26:50.685 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-25 11:26:50.685
2025-06-25 11:26:50.685 self = <firebird.driver.interfaces.iAttachment object at [hex]>
2025-06-25 11:26:50.685 transaction = <firebird.driver.interfaces.iTransaction object at [hex]>
2025-06-25 11:26:50.686 stmt = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'
2025-06-25 11:26:50.686 dialect = 3, in_metadata = None, in_buffer = None, out_metadata = None
2025-06-25 11:26:50.686 out_buffer = None
2025-06-25 11:26:50.686
2025-06-25 11:26:50.686         def execute(self, transaction: iTransaction, stmt: str, dialect: int,
2025-06-25 11:26:50.686                     in_metadata: iMessageMetadata = None, in_buffer: bytes = None,
2025-06-25 11:26:50.686                     out_metadata: iMessageMetadata = None, out_buffer: bytes = None) -> None:
2025-06-25 11:26:50.686             """Executes any SQL statement except returning multiple rows of data.
2025-06-25 11:26:50.686     Partial analogue of `isc_dsql_execute2()` - in and out XSLQDAs replaced with
2025-06-25 11:26:50.686     input and output messages with appropriate buffers."""
2025-06-25 11:26:50.686             b_stmt: bytes = stmt.encode(self.encoding)
2025-06-25 11:26:50.686             result = self.vtable.execute(self, self.status, transaction, len(b_stmt), b_stmt,
2025-06-25 11:26:50.686                                          dialect, in_metadata, in_buffer, out_metadata, out_buffer)
2025-06-25 11:26:50.686 >           self._check()
2025-06-25 11:26:50.686
2025-06-25 11:26:50.686 C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:1150:
2025-06-25 11:26:50.686 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-25 11:26:50.686
2025-06-25 11:26:50.686 self = <firebird.driver.interfaces.iAttachment object at [hex]>
2025-06-25 11:26:50.686
2025-06-25 11:26:50.686     def _check(self) -> None:
2025-06-25 11:26:50.686         state = self.status.get_state()
2025-06-25 11:26:50.687         if StateFlag.ERRORS in state:
2025-06-25 11:26:50.687 >           raise self.__report(DatabaseError, self.status.get_errors())
2025-06-25 11:26:50.687 E           firebird.driver.types.DatabaseError: unsuccessful metadata update
2025-06-25 11:26:50.687 E           -GRANT failed
2025-06-25 11:26:50.687 E           -Table "PUBLIC"."PLG$PROF_SESSIONS" does not exist
2025-06-25 11:26:50.687
2025-06-25 11:26:50.687 C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:113: DatabaseError
2025-06-25 11:26:50.687 ---------------------------- Captured stdout setup ----------------------------
2025-06-25 11:26:50.687 Creating db: localhost:H:\QA\temp\qa2024.tmp\fbqa\test_11712\test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
2025-06-25 11:26:50.687 CREATE user: TMP_WORKER_8176 PLUGIN: Srp
2025-06-25 11:26:50.687 CREATE user: TMP_PROFILER_8176 PLUGIN: Srp
2025-06-25 11:26:50.687 CREATE role: TMP_PROFILER_ROLE
2025-06-25 11:26:50.687 -------------------------- Captured stdout teardown ---------------------------
2025-06-25 11:26:50.687 DROP role: TMP_PROFILER_ROLE
2025-06-25 11:26:50.687 DROP user: TMP_PROFILER_8176 PLUGIN: Srp
2025-06-25 11:26:50.687 DROP user: TMP_WORKER_8176 PLUGIN: Srp
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
tmp_worker_usr = <firebird.qa.plugin.User pytest object at [hex]>
tmp_profiler_usr = <firebird.qa.plugin.User pytest object at [hex]>
tmp_profiler_role = <firebird.qa.plugin.Role pytest object at [hex]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.disabled_in_forks
    @pytest.mark.version('>=5.0.1')
    def test_1(act: Action, tmp_worker_usr: User, tmp_profiler_usr: User, tmp_profiler_role: Role, capsys):
    
        addi_script = f"""
            set wng off;
            set bail on;
            alter user {tmp_profiler_usr.name} revoke admin role;
            revoke all on all from {tmp_profiler_usr.name};
            commit;
            -- doc/sql.extensions/README.profiler.md:
            -- If the remote attachment is from a different user, the calling user must have the system privilege `PROFILE_ANY_ATTACHMENT`.
            alter role {tmp_profiler_role.name}
                set system privileges to PROFILE_ANY_ATTACHMENT;
            commit;
            grant default {tmp_profiler_role.name} to user {tmp_profiler_usr.name};
            commit;
        """
        act.isql(switches=['-q'], input=addi_script)
    
        custom_tpb = tpb(isolation = Isolation.READ_COMMITTED_READ_CONSISTENCY, lock_timeout = 0)
    
        with act.db.connect() as con_admin, \
             act.db.connect(user = tmp_worker_usr.name, password = tmp_worker_usr.password) as con_worker, \
             act.db.connect(user = tmp_profiler_usr.name, password = tmp_profiler_usr.password, role = tmp_profiler_role.name) as con_profiler:
    
            cur_worker = con_worker.cursor()
            cur_worker.execute('select current_connection from rdb$database')
            worker_attach_id = cur_worker.fetchone()[0]
    
            tx_profiler = con_profiler.transaction_manager(custom_tpb)
            cur_profiler = tx_profiler.cursor()
    
            #..............................................................................
    
            tx_profiler.begin()
            cur_profiler.execute(f"select rdb$profiler.start_session('remote_profiling_of_inserts', null, {worker_attach_id}) from rdb$database;")
            cur_profiler.fetchall()
    
            cur_worker.callproc('sp_ins')
    
            cur_profiler.callproc(f'rdb$profiler.finish_session(true, {worker_attach_id})')
            tx_profiler.commit()
    
            #..............................................................................
    
            tx_profiler.begin()
            cur_profiler.execute(f"select rdb$profiler.start_session('remote_profiling_of_deletions', null, {worker_attach_id}) from rdb$database;")
            cur_profiler.fetchall()
    
            cur_worker.callproc('sp_del')
    
            cur_profiler.callproc(f'rdb$profiler.finish_session(true, {worker_attach_id})')
            tx_profiler.commit()
    
            #------------------------------------------------------------------------------
            # firebird.driver.types.DatabaseError: no permission for SELECT access to TABLE PLG$PROF_SESSIONS
            # -Effective user is TMP_USER_PROFILER_ANY_ATT
            #################################
            # ::: NB ::: Why this is needed ?
            #################################
>           con_admin.execute_immediate(f'grant select on plg$prof_sessions to role {tmp_profiler_role.name}')

tests\bugs\gh_8176_test.py:171: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = Connection[6435]
sql = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'

    def execute_immediate(self, sql: str) -> None:
        """Executes SQL statement.
    
        Important:
    
            The statement MUST NOT return any result. The statement is executed in the
            context of `.main_transaction`.
    
        Arguments:
           sql: SQL statement to be executed.
        """
        assert self._att is not None
>       self.main_transaction.execute_immediate(sql)

C:\Python3x\Lib\site-packages\firebird\driver\core.py:1824: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.core.TransactionManager pytest object at [hex]>
sql = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'

    def execute_immediate(self, sql: str) -> None:
        """Executes SQL statement. The statement MUST NOT return any result.
    
        Arguments:
           sql: SQL statement to be executed.
        """
        assert not self.__closed
        if not self.is_active():
            self.begin()
>       self._connection()._att.execute(self._tra, sql, self._connection().sql_dialect)

C:\Python3x\Lib\site-packages\firebird\driver\core.py:2456: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.interfaces.iAttachment pytest object at [hex]>
transaction = <firebird.driver.interfaces.iTransaction pytest object at [hex]>
stmt = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'
dialect = 3, in_metadata = None, in_buffer = None, out_metadata = None
out_buffer = None

        def execute(self, transaction: iTransaction, stmt: str, dialect: int,
                    in_metadata: iMessageMetadata = None, in_buffer: bytes = None,
                    out_metadata: iMessageMetadata = None, out_buffer: bytes = None) -> None:
            """Executes any SQL statement except returning multiple rows of data.
    Partial analogue of `isc_dsql_execute2()` - in and out XSLQDAs replaced with
    input and output messages with appropriate buffers."""
            b_stmt: bytes = stmt.encode(self.encoding)
            result = self.vtable.execute(self, self.status, transaction, len(b_stmt), b_stmt,
                                         dialect, in_metadata, in_buffer, out_metadata, out_buffer)
>           self._check()

C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:1150: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

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: unsuccessful metadata update
E           -GRANT failed
E           -Table "PUBLIC"."PLG$PROF_SESSIONS" does not exist

C:\Python3x\Lib\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.881 2025.06.27 7035d F F 2901 1878 2025.06.30 03:11:28.689 2025.06.30 03:11:31.590 2025.06.30 01:29:40.527 2025.06.30 01:29:42.405
2 6.0.0.877 2025.06.26 8e38f F F 2988 1923 2025.06.27 03:13:09.341 2025.06.27 03:13:12.329 2025.06.27 01:30:33.589 2025.06.27 01:30:35.512
3 6.0.0.876 2025.06.25 b1bec F F 2916 1928 2025.06.26 03:18:27.911 2025.06.26 03:18:30.827 2025.06.26 01:36:11.807 2025.06.26 01:36:13.735
4 6.0.0.863 2025.06.24 c3c20 F F 2908 1876 2025.06.25 08:02:37.397 2025.06.25 08:02:40.305 2025.06.25 01:30:13.974 2025.06.25 01:30:15.850
5 6.0.0.858 2025.06.24 cbbbf F F 2783 1709 2025.06.24 17:45:09.761 2025.06.24 17:45:12.544 2025.06.24 16:02:11.944 2025.06.24 16:02:13.653
6 6.0.0.858 2025.06.23 d377c F F 2764 1937 2025.06.24 08:57:11.109 2025.06.24 08:57:13.873 2025.06.24 07:14:34.145 2025.06.24 07:14:36.082
7 6.0.0.854 2025.06.23 10b58 F F 2766 1726 2025.06.23 15:38:03.665 2025.06.23 15:38:06.431 2025.06.23 13:54:07.101 2025.06.23 13:54:08.827
8 6.0.0.849 2025.06.20 7b79c F F 2730 1715 2025.06.21 03:16:22.490 2025.06.21 03:16:25.220 2025.06.21 01:30:46.687 2025.06.21 01:30:48.402
9 6.0.0.848 2025.06.19 c483c F F 2721 1709 2025.06.20 03:16:00.041 2025.06.20 03:16:02.762 2025.06.20 01:30:31.835 2025.06.20 01:30:33.544
10 6.0.0.845 2025.06.18 20191 F F 2733 1721 2025.06.19 03:15:38.031 2025.06.19 03:15:40.764 2025.06.19 01:30:18.864 2025.06.19 01:30:20.585
11 6.0.0.843 2025.06.16 995f4 F F 2690 1725 2025.06.18 03:15:25.452 2025.06.18 03:15:28.142 2025.06.18 01:30:01.568 2025.06.18 01:30:03.293
12 6.0.0.840 2025.06.14 29bca F F 2830 1916 2025.06.15 03:23:55.833 2025.06.15 03:23:58.663 2025.06.15 01:33:04.718 2025.06.15 01:33:06.634
13 6.0.0.838 2025.06.13 0e28a F F 2770 1704 2025.06.14 03:21:39.519 2025.06.14 03:21:42.289 2025.06.14 01:31:24.232 2025.06.14 01:31:25.936
14 6.0.0.834 2025.06.11 e889f F F 2750 1948 2025.06.12 03:19:11.698 2025.06.12 03:19:14.448 2025.06.12 01:31:55.438 2025.06.12 01:31:57.386
15 6.0.0.800 2025.06.10 1f226 P P 2394 1428 2025.06.11 02:03:17.153 2025.06.11 02:03:19.547 2025.06.11 00:54:42.386 2025.06.11 00:54:43.814
16 6.0.0.799 2025.06.07 be644 P P 2492 1448 2025.06.10 02:02:53.255 2025.06.10 02:02:55.747 2025.06.10 00:54:19.687 2025.06.10 00:54:21.135
17 6.0.0.797 2025.06.06 303e8 P P 2394 1419 2025.06.07 02:01:45.570 2025.06.07 02:01:47.964 2025.06.07 00:54:07.928 2025.06.07 00:54:09.347
18 6.0.0.795 2025.05.29 7a71a P P 2358 1433 2025.06.06 02:01:36.238 2025.06.06 02:01:38.596 2025.06.06 00:54:05.601 2025.06.06 00:54:07.034
19 6.0.0.792 2025.05.28 ee5a8 P P 2376 1467 2025.05.29 02:00:41.897 2025.05.29 02:00:44.273 2025.05.29 00:54:12.211 2025.05.29 00:54:13.678
20 6.0.0.791 2025.05.27 02db8 P P 2393 1425 2025.05.28 02:01:10.879 2025.05.28 02:01:13.272 2025.05.28 00:53:55.219 2025.05.28 00:53:56.644
21 6.0.0.789 2025.05.21 64051 P P 2337 1437 2025.05.25 02:00:54.151 2025.05.25 02:00:56.488 2025.05.25 00:54:20.089 2025.05.25 00:54:21.526
22 6.0.0.787 2025.05.20 230ad P P 2357 1421 2025.05.21 01:59:49.846 2025.05.21 01:59:52.203 2025.05.21 00:53:29.823 2025.05.21 00:53:31.244
23 6.0.0.783 2025.05.12 37320 P P 2335 1424 2025.05.19 01:59:37.124 2025.05.19 01:59:39.459 2025.05.19 00:53:37.412 2025.05.19 00:53:38.836
24 6.0.0.779 2025.05.11 136fa P P 2365 1433 2025.05.12 02:01:44.046 2025.05.12 02:01:46.411 2025.05.12 00:54:14.512 2025.05.12 00:54:15.945
25 6.0.0.778 2025.05.07 d735e P P 2355 1422 2025.05.11 02:01:08.830 2025.05.11 02:01:11.185 2025.05.11 00:54:28.601 2025.05.11 00:54:30.023
26 6.0.0.776 2025.05.06 007cd P P 2378 1437 2025.05.07 02:00:23.464 2025.05.07 02:00:25.842 2025.05.07 00:54:05.512 2025.05.07 00:54:06.949
27 6.0.0.770 2025.05.05 82c4a P P 2338 1430 2025.05.06 02:00:42.314 2025.05.06 02:00:44.652 2025.05.06 00:54:11.826 2025.05.06 00:54:13.256
28 6.0.0.767 2025.05.01 cdd29 P P 2384 1429 2025.05.02 02:01:18.172 2025.05.02 02:01:20.556 2025.05.02 00:55:02.869 2025.05.02 00:55:04.298
29 6.0.0.762 2025.04.30 5cb15 P P 2426 1410 2025.05.01 01:59:45.402 2025.05.01 01:59:47.828 2025.05.01 00:54:24.514 2025.05.01 00:54:25.924
30 6.0.0.755 2025.04.29 739c6 P P 2498 1420 2025.04.30 01:59:58.785 2025.04.30 02:00:01.283 2025.04.30 00:54:07.007 2025.04.30 00:54:08.427
31 6.0.0.753 2025.04.27 29ab3 P P 2356 1490 2025.04.29 02:00:09.035 2025.04.29 02:00:11.391 2025.04.29 00:54:11.061 2025.04.29 00:54:12.551
32 6.0.0.745 2025.04.21 78ad8 P P 2368 1459 2025.04.26 02:01:33.511 2025.04.26 02:01:35.879 2025.04.26 00:54:30.237 2025.04.26 00:54:31.696
33 6.0.0.744 2025.04.19 e883a P P 2384 1462 2025.04.20 02:01:00.662 2025.04.20 02:01:03.046 2025.04.20 00:54:23.348 2025.04.20 00:54:24.810
34 6.0.0.742 2025.04.17 abc3b P P 2409 1451 2025.04.19 02:00:28.458 2025.04.19 02:00:30.867 2025.04.19 00:53:58.348 2025.04.19 00:53:59.799
35 6.0.0.737 2025.04.16 fe52b P P 2388 1448 2025.04.17 02:00:53.000 2025.04.17 02:00:55.388 2025.04.17 00:54:11.788 2025.04.17 00:54:13.236
36 6.0.0.736 2025.04.14 3e6be P P 2385 1521 2025.04.15 02:01:46.921 2025.04.15 02:01:49.306 2025.04.15 00:54:29.365 2025.04.15 00:54:30.886
37 6.0.0.735 2025.04.13 6635c P P 2403 1459 2025.04.14 02:00:58.726 2025.04.14 02:01:01.129 2025.04.14 00:54:44.417 2025.04.14 00:54:45.876
38 6.0.0.734 2025.04.12 e2fd1 P P 2328 1406 2025.04.13 01:58:47.805 2025.04.13 01:58:50.133 2025.04.13 00:53:41.562 2025.04.13 00:53:42.968
39 6.0.0.730 2025.04.11 240b8 P P 2395 1440 2025.04.12 02:05:21.362 2025.04.12 02:05:23.757 2025.04.12 00:55:10.345 2025.04.12 00:55:11.785
40 6.0.0.726 2025.04.10 d79c6 P P 2425 1439 2025.04.11 02:05:42.970 2025.04.11 02:05:45.395 2025.04.11 00:54:59.558 2025.04.11 00:55:00.997
41 6.0.0.725 2025.04.09 a2b05 P P 2380 1470 2025.04.10 02:04:55.150 2025.04.10 02:04:57.530 2025.04.10 00:54:52.349 2025.04.10 00:54:53.819
42 6.0.0.722 2025.04.08 a8b86 P P 2388 1446 2025.04.09 02:01:33.329 2025.04.09 02:01:35.717 2025.04.09 00:54:31.124 2025.04.09 00:54:32.570
43 6.0.0.719 2025.04.06 90fd9 P P 2404 1511 2025.04.08 02:01:30.030 2025.04.08 02:01:32.434 2025.04.08 00:54:24.538 2025.04.08 00:54:26.049
44 6.0.0.717 2025.04.04 53d70 P P 2396 1475 2025.04.05 02:01:34.964 2025.04.05 02:01:37.360 2025.04.05 00:54:35.502 2025.04.05 00:54:36.977
45 6.0.0.716 2025.04.03 fc636 P P 2361 1443 2025.04.04 02:01:33.449 2025.04.04 02:01:35.810 2025.04.04 00:54:39.498 2025.04.04 00:54:40.941
46 6.0.0.715 2025.04.02 907ed P P 2893 1460 2025.04.03 02:01:41.667 2025.04.03 02:01:44.560 2025.04.03 00:54:29.951 2025.04.03 00:54:31.411
47 6.0.0.710 2025.04.01 40651 P P 2423 1466 2025.04.02 02:01:47.242 2025.04.02 02:01:49.665 2025.04.02 00:55:13.116 2025.04.02 00:55:14.582
48 6.0.0.708 2025.03.31 cb069 P P 2375 1446 2025.04.01 02:01:05.014 2025.04.01 02:01:07.389 2025.04.01 00:54:29.409 2025.04.01 00:54:30.855
49 6.0.0.707 2025.03.28 4bd4f P P 2441 1520 2025.03.31 02:01:31.218 2025.03.31 02:01:33.659 2025.03.31 00:54:26.784 2025.03.31 00:54:28.304
50 6.0.0.702 2025.03.27 86f4d P P 2515 1562 2025.03.28 02:18:44.411 2025.03.28 02:18:46.926 2025.03.28 00:55:38.299 2025.03.28 00:55:39.861
51 6.0.0.698 2025.03.26 d72a7 P P 2528 1463 2025.03.27 15:44:50.930 2025.03.27 15:44:53.458 2025.03.27 14:35:52.193 2025.03.27 14:35:53.656
52 6.0.0.693 2025.03.25 8aac2 P P 2538 1551 2025.03.26 02:05:28.178 2025.03.26 02:05:30.716 2025.03.26 00:56:18.793 2025.03.26 00:56:20.344
53 6.0.0.693 2025.03.24 0b559 P P 2518 1575 2025.03.25 02:06:03.842 2025.03.25 02:06:06.360 2025.03.25 00:56:19.569 2025.03.25 00:56:21.144
54 6.0.0.687 2025.03.22 730aa P P 2421 1619 2025.03.24 02:05:48.065 2025.03.24 02:05:50.486 2025.03.24 00:56:42.524 2025.03.24 00:56:44.143
55 6.0.0.686 2025.03.20 71bf6 P P 2527 1483 2025.03.21 02:02:18.593 2025.03.21 02:02:21.120 2025.03.21 00:55:06.915 2025.03.21 00:55:08.398
56 6.0.0.685 2025.03.19 a8577 P P 2404 1463 2025.03.20 02:02:32.826 2025.03.20 02:02:35.230 2025.03.20 00:55:38.735 2025.03.20 00:55:40.198
57 6.0.0.680 2025.03.18 90d29 P P 2381 1449 2025.03.19 02:02:51.180 2025.03.19 02:02:53.561 2025.03.19 00:55:45.141 2025.03.19 00:55:46.590
58 6.0.0.677 2025.03.16 c0a60 P P 2385 1451 2025.03.18 02:01:03.530 2025.03.18 02:01:05.915 2025.03.18 00:55:38.701 2025.03.18 00:55:40.152
59 6.0.0.676 2025.03.15 11cfb P P 2411 1443 2025.03.16 02:00:26.494 2025.03.16 02:00:28.905 2025.03.16 00:54:43.761 2025.03.16 00:54:45.204
60 6.0.0.674 2025.03.14 7d82c P P 2502 1437 2025.03.15 01:59:02.004 2025.03.15 01:59:04.506 2025.03.15 00:55:13.628 2025.03.15 00:55:15.065
61 6.0.0.673 2025.03.13 40f5b P P 2375 1547 2025.03.14 14:30:04.565 2025.03.14 14:30:06.940 2025.03.14 13:25:05.633 2025.03.14 13:25:07.180
62 6.0.0.671 2025.03.12 a4fff P P 2485 1532 2025.03.13 02:04:28.827 2025.03.13 02:04:31.312 2025.03.13 00:56:51.158 2025.03.13 00:56:52.690
63 6.0.0.663 2025.03.11 65970 P P 2486 1568 2025.03.12 02:03:54.463 2025.03.12 02:03:56.949 2025.03.12 00:56:29.284 2025.03.12 00:56:30.852
64 6.0.0.661 2025.03.07 b9869 P P 2538 1598 2025.03.11 02:04:13.656 2025.03.11 02:04:16.194 2025.03.11 00:56:40.097 2025.03.11 00:56:41.695
65 6.0.0.660 2025.03.04 a6700 P P 2453 1452 2025.03.06 02:04:24.125 2025.03.06 02:04:26.578 2025.03.06 00:56:27.525 2025.03.06 00:56:28.977
66 6.0.0.658 2025.03.03 f15f8 P P 2382 1445 2025.03.04 02:01:11.236 2025.03.04 02:01:13.618 2025.03.04 00:55:42.589 2025.03.04 00:55:44.034
67 6.0.0.656 2025.02.27 25fb4 P P 2479 1472 2025.03.03 02:01:22.328 2025.03.03 02:01:24.807 2025.03.03 00:55:48.201 2025.03.03 00:55:49.673
68 6.0.0.655 2025.02.25 6e3e0 P P 2518 1546 2025.02.27 02:02:59.164 2025.02.27 02:03:01.682 2025.02.27 00:56:23.732 2025.02.27 00:56:25.278
69 6.0.0.654 2025.02.24 b7141 P P 2388 1450 2025.02.25 01:59:48.448 2025.02.25 01:59:50.836 2025.02.25 00:55:09.163 2025.02.25 00:55:10.613
70 6.0.0.652 2025.02.22 22662 P P 2524 1457 2025.02.24 01:59:11.210 2025.02.24 01:59:13.734 2025.02.24 00:54:44.351 2025.02.24 00:54:45.808
71 6.0.0.647 2025.02.21 9fccb P P 2428 1430 2025.02.22 01:58:10.395 2025.02.22 01:58:12.823 2025.02.22 00:54:22.957 2025.02.22 00:54:24.387
72 6.0.0.640 2025.02.19 9b8ac P P 2357 1426 2025.02.20 01:59:39.957 2025.02.20 01:59:42.314 2025.02.20 00:54:53.126 2025.02.20 00:54:54.552
73 6.0.0.639 2025.02.18 201a4 P P 2407 1449 2025.02.19 02:00:28.680 2025.02.19 02:00:31.087 2025.02.19 00:55:34.032 2025.02.19 00:55:35.481
74 6.0.0.637 2025.02.12 6d0f5 P P 2424 1562 2025.02.14 02:01:07.184 2025.02.14 02:01:09.608 2025.02.14 00:55:56.838 2025.02.14 00:55:58.400
75 6.0.0.636 2025.02.11 0424f P P 2390 1479 2025.02.12 02:00:36.344 2025.02.12 02:00:38.734 2025.02.12 00:55:21.496 2025.02.12 00:55:22.975
76 6.0.0.635 2025.02.10 f640f P P 2416 1477 2025.02.11 02:00:05.228 2025.02.11 02:00:07.644 2025.02.11 00:55:10.691 2025.02.11 00:55:12.168
77 6.0.0.629 2025.02.07 194f9 P P 2392 1461 2025.02.08 01:59:59.257 2025.02.08 02:00:01.649 2025.02.08 00:55:07.551 2025.02.08 00:55:09.012
78 6.0.0.628 2025.02.06 859d5 P P 2445 1476 2025.02.07 11:03:41.181 2025.02.07 11:03:43.626 2025.02.07 09:52:28.903 2025.02.07 09:52:30.379
79 6.0.0.621 2025.02.05 34fe7 P P 2400 1472 2025.02.07 02:13:43.057 2025.02.07 02:13:45.457 2025.02.07 01:02:10.062 2025.02.07 01:02:11.534
80 6.0.0.609 2025.02.04 76d57 P P 2377 1469 2025.02.05 02:13:32.235 2025.02.05 02:13:34.612 2025.02.05 01:02:16.080 2025.02.05 01:02:17.549
81 6.0.0.607 2025.02.03 1985b P P 2403 1458 2025.02.04 02:13:23.555 2025.02.04 02:13:25.958 2025.02.04 01:01:54.483 2025.02.04 01:01:55.941
82 6.0.0.601 2025.02.01 6af07 P P 2428 1471 2025.02.02 01:59:47.896 2025.02.02 01:59:50.324 2025.02.02 00:55:17.819 2025.02.02 00:55:19.290
83 6.0.0.600 2025.01.27 188de P P 2371 1438 2025.01.28 01:59:48.788 2025.01.28 01:59:51.159 2025.01.28 00:54:55.421 2025.01.28 00:54:56.859
84 6.0.0.599 2025.01.25 ba588 P P 2361 1459 2025.01.26 01:59:36.220 2025.01.26 01:59:38.581 2025.01.26 00:54:57.634 2025.01.26 00:54:59.093
85 6.0.0.598 2025.01.23 ddbc3 P P 2425 1475 2025.01.25 11:48:06.717 2025.01.25 11:48:09.142 2025.01.25 10:42:55.852 2025.01.25 10:42:57.327
86 6.0.0.595 2025.01.22 e62f3 P P 2423 1447 2025.01.23 02:00:02.996 2025.01.23 02:00:05.419 2025.01.23 00:54:54.943 2025.01.23 00:54:56.390
87 6.0.0.594 2025.01.21 47fb6 P P 2395 1449 2025.01.22 01:59:29.696 2025.01.22 01:59:32.091 2025.01.22 00:54:55.851 2025.01.22 00:54:57.300
88 6.0.0.590 2025.01.20 3d7c0 P P 2390 1463 2025.01.21 01:59:50.567 2025.01.21 01:59:52.957 2025.01.21 00:54:55.677 2025.01.21 00:54:57.140
89 6.0.0.588 2025.01.19 b1c4e P P 2379 1446 2025.01.20 01:59:13.606 2025.01.20 01:59:15.985 2025.01.20 00:54:49.941 2025.01.20 00:54:51.387
90 6.0.0.587 2025.01.18 63e6e P P 2489 1444 2025.01.19 01:58:55.094 2025.01.19 01:58:57.583 2025.01.19 00:54:44.165 2025.01.19 00:54:45.609
91 6.0.0.585 2025.01.16 2d6bb P P 2329 1422 2025.01.18 01:57:47.294 2025.01.18 01:57:49.623 2025.01.18 00:55:15.630 2025.01.18 00:55:17.052
92 6.0.0.584 2025.01.15 a0aa2 P P 2414 1483 2025.01.16 02:01:24.626 2025.01.16 02:01:27.040 2025.01.16 00:56:04.023 2025.01.16 00:56:05.506
93 6.0.0.581 2025.01.15 69690 P P 2460 1444 2025.01.15 18:11:10.204 2025.01.15 18:11:12.664 2025.01.15 17:04:42.736 2025.01.15 17:04:44.180
94 6.0.0.581 2025.01.14 21e9e P P 2376 1560 2025.01.15 02:00:35.575 2025.01.15 02:00:37.951 2025.01.15 00:55:41.994 2025.01.15 00:55:43.554
95 6.0.0.577 2025.01.14 91dce P P 2400 1483 2025.01.14 17:21:39.582 2025.01.14 17:21:41.982 2025.01.14 16:16:41.541 2025.01.14 16:16:43.024
96 6.0.0.577 2025.01.13 7e293 P P 2515 1542 2025.01.14 11:44:23.725 2025.01.14 11:44:26.240 2025.01.14 10:39:55.857 2025.01.14 10:39:57.399
97 6.0.0.576 2025.01.12 05898 P P 2426 1453 2025.01.13 02:01:49.383 2025.01.13 02:01:51.809 2025.01.13 00:56:02.317 2025.01.13 00:56:03.770
98 6.0.0.573 2025.01.10 c20f3 P P 2528 1444 2025.01.11 02:01:53.046 2025.01.11 02:01:55.574 2025.01.11 00:56:07.884 2025.01.11 00:56:09.328
99 6.0.0.571 2024.12.31 81bba P P 2525 1471 2025.01.01 02:00:50.693 2025.01.01 02:00:53.218 2025.01.01 00:55:34.324 2025.01.01 00:55:35.795
100 6.0.0.570 2024.12.30 c3c8d P P 2402 1457 2024.12.31 02:00:26.978 2024.12.31 02:00:29.380 2024.12.31 00:55:52.397 2024.12.31 00:55:53.854
101 6.0.0.565 2024.12.28 5fc59 P P 2403 1469 2024.12.29 17:55:55.445 2024.12.29 17:55:57.848 2024.12.29 16:51:00.534 2024.12.29 16:51:02.003
102 6.0.0.564 2024.12.26 12514 P P 2494 1448 2024.12.27 02:00:05.684 2024.12.27 02:00:08.178 2024.12.27 00:55:23.575 2024.12.27 00:55:25.023
103 6.0.0.560 2024.12.25 fa83e P P 2570 1446 2024.12.26 02:00:35.999 2024.12.26 02:00:38.569 2024.12.26 00:55:30.124 2024.12.26 00:55:31.570
104 6.0.0.559 2024.12.23 cc800 P P 2398 1467 2024.12.25 02:00:05.888 2024.12.25 02:00:08.286 2024.12.25 00:55:29.898 2024.12.25 00:55:31.365
105 6.0.0.556 2024.12.22 a0404 P P 2411 1448 2024.12.23 02:00:02.129 2024.12.23 02:00:04.540 2024.12.23 00:55:11.393 2024.12.23 00:55:12.841
106 6.0.0.555 2024.12.19 6990a P P 2422 1463 2024.12.21 12:54:51.887 2024.12.21 12:54:54.309 2024.12.21 11:49:27.248 2024.12.21 11:49:28.711
107 6.0.0.553 2024.12.17 d1f8a P P 2385 1449 2024.12.18 01:59:13.117 2024.12.18 01:59:15.502 2024.12.18 00:54:59.978 2024.12.18 00:55:01.427
108 6.0.0.552 2024.12.11 85e25 P P 2454 1436 2024.12.16 01:58:39.477 2024.12.16 01:58:41.931 2024.12.16 00:54:49.509 2024.12.16 00:54:50.945
109 6.0.0.550 2024.12.10 b37ac P P 2585 1482 2024.12.11 02:02:07.604 2024.12.11 02:02:10.189 2024.12.11 00:55:23.614 2024.12.11 00:55:25.096
110 6.0.0.548 2024.12.08 2cc77 P P 2404 1498 2024.12.09 02:04:57.539 2024.12.09 02:04:59.943 2024.12.09 00:58:50.241 2024.12.09 00:58:51.739
111 6.0.0.544 2024.12.05 96943 P P 2506 1449 2024.12.06 01:59:30.281 2024.12.06 01:59:32.787 2024.12.06 00:55:39.397 2024.12.06 00:55:40.846
112 6.0.0.543 2024.12.03 30b77 P P 2409 1463 2024.12.04 01:59:30.831 2024.12.04 01:59:33.240 2024.12.04 00:56:17.981 2024.12.04 00:56:19.444
113 6.0.0.540 2024.12.02 4a1f4 P P 2476 1459 2024.12.03 01:58:49.992 2024.12.03 01:58:52.468 2024.12.03 00:55:35.156 2024.12.03 00:55:36.615
114 6.0.0.539 2024.11.28 1f283 P P 2530 1456 2024.11.30 01:58:13.526 2024.11.30 01:58:16.056 2024.11.30 00:55:23.685 2024.11.30 00:55:25.141
115 6.0.0.535 2024.11.27 6551a P P 2570 1439 2024.11.28 01:56:53.405 2024.11.28 01:56:55.975 2024.11.28 00:54:43.901 2024.11.28 00:54:45.340
116 6.0.0.535 2024.11.26 77b95 P P 2383 1499 2024.11.27 01:57:12.304 2024.11.27 01:57:14.687 2024.11.27 00:55:01.379 2024.11.27 00:55:02.878
117 6.0.0.534 2024.11.25 e9584 P P 2431 1462 2024.11.26 01:57:27.501 2024.11.26 01:57:29.932 2024.11.26 00:54:46.559 2024.11.26 00:54:48.021
118 6.0.0.533 2024.11.17 933ac P P 2423 1481 2024.11.22 01:58:06.523 2024.11.22 01:58:08.946 2024.11.22 00:55:16.138 2024.11.22 00:55:17.619
119 6.0.0.532 2024.11.17 1a471 P P 2449 1473 2024.11.17 14:31:51.711 2024.11.17 14:31:54.160 2024.11.17 13:29:41.918 2024.11.17 13:29:43.391
120 6.0.0.532 2024.11.16 9e263 P P 2494 1440 2024.11.17 01:56:39.153 2024.11.17 01:56:41.647 2024.11.17 00:54:30.616 2024.11.17 00:54:32.056
121 6.0.0.530 2024.11.15 49804 P P 2750 1406 2024.11.16 01:54:50.668 2024.11.16 01:54:53.418 2024.11.16 00:54:13.909 2024.11.16 00:54:15.315
122 6.0.0.528 2024.11.14 9625b P P 2474 1456 2024.11.15 01:59:19.613 2024.11.15 01:59:22.087 2024.11.15 00:56:04.472 2024.11.15 00:56:05.928
123 6.0.0.526 2024.11.12 65b80 P P 2387 1449 2024.11.14 01:58:27.621 2024.11.14 01:58:30.008 2024.11.14 00:55:25.351 2024.11.14 00:55:26.800
124 6.0.0.523 2024.11.08 8ca23 P P 2432 1563 2024.11.11 01:56:41.514 2024.11.11 01:56:43.946 2024.11.11 00:54:42.089 2024.11.11 00:54:43.652
125 6.0.0.520 2024.11.08 52657 P P 2360 1422 2024.11.08 18:30:35.941 2024.11.08 18:30:38.301 2024.11.08 17:29:33.222 2024.11.08 17:29:34.644
126 6.0.0.520 2024.11.07 4eefa P P 2448 1492 2024.11.08 01:55:51.055 2024.11.08 01:55:53.503 2024.11.08 00:54:47.278 2024.11.08 00:54:48.770
127 6.0.0.516 2024.11.04 b0c36 P P 2535 1458 2024.11.05 01:56:58.635 2024.11.05 01:57:01.170 2024.11.05 00:54:36.384 2024.11.05 00:54:37.842
128 6.0.0.515 2024.10.30 d53f3 P P 2396 1476 2024.11.04 01:56:32.719 2024.11.04 01:56:35.115 2024.11.04 00:54:40.727 2024.11.04 00:54:42.203
129 6.0.0.512 2024.10.29 833ef P P 2477 1457 2024.10.30 01:58:58.913 2024.10.30 01:59:01.390 2024.10.30 00:55:40.888 2024.10.30 00:55:42.345
130 6.0.0.511 2024.10.26 c4bc9 P P 2538 1503 2024.10.29 01:58:42.705 2024.10.29 01:58:45.243 2024.10.29 00:55:23.752 2024.10.29 00:55:25.255
131 6.0.0.508 2024.10.24 a8f5b P P 4861 1513 2024.10.26 10:05:52.320 2024.10.26 10:05:57.181 2024.10.26 09:01:50.049 2024.10.26 09:01:51.562
132 6.0.0.502 2024.10.22 6bfd7 P P 2554 1473 2024.10.23 01:58:28.249 2024.10.23 01:58:30.803 2024.10.23 00:55:08.648 2024.10.23 00:55:10.121
133 6.0.0.500 2024.10.21 be565 P P 2419 1463 2024.10.22 01:58:49.258 2024.10.22 01:58:51.677 2024.10.22 00:55:23.522 2024.10.22 00:55:24.985
134 6.0.0.499 2024.10.19 6214b P P 2431 1455 2024.10.20 01:57:48.140 2024.10.20 01:57:50.571 2024.10.20 00:55:09.225 2024.10.20 00:55:10.680
135 6.0.0.498 2024.10.18 591a7 P P 2434 1553 2024.10.19 01:57:12.404 2024.10.19 01:57:14.838 2024.10.19 00:54:35.828 2024.10.19 00:54:37.381
136 6.0.0.494 2024.10.17 042ce P P 2435 1460 2024.10.18 01:57:49.521 2024.10.18 01:57:51.956 2024.10.18 00:54:46.209 2024.10.18 00:54:47.669
137 6.0.0.491 2024.10.14 dc5fb P P 2413 1457 2024.10.15 01:57:28.308 2024.10.15 01:57:30.721 2024.10.15 00:54:36.456 2024.10.15 00:54:37.913
138 6.0.0.489 2024.10.11 2ba59 P P 2429 1439 2024.10.12 01:56:56.280 2024.10.12 01:56:58.709 2024.10.12 00:54:22.964 2024.10.12 00:54:24.403
139 6.0.0.488 2024.10.09 1c93e P P 2388 1431 2024.10.10 01:56:44.990 2024.10.10 01:56:47.378 2024.10.10 00:54:44.384 2024.10.10 00:54:45.815
140 6.0.0.487 2024.10.06 065a3 P P 2400 1453 2024.10.07 01:58:10.322 2024.10.07 01:58:12.722 2024.10.07 00:55:21.472 2024.10.07 00:55:22.925
141 6.0.0.485 2024.10.05 9f5f7 P P 2412 1455 2024.10.06 01:57:46.514 2024.10.06 01:57:48.926 2024.10.06 00:55:01.174 2024.10.06 00:55:02.629
142 6.0.0.485 2024.10.04 e95c1 P P 2442 1444 2024.10.05 01:57:40.315 2024.10.05 01:57:42.757 2024.10.05 00:54:41.751 2024.10.05 00:54:43.195
143 6.0.0.483 2024.10.02 5e5ae P P 2387 1456 2024.10.03 01:58:54.364 2024.10.03 01:58:56.751 2024.10.03 00:55:25.355 2024.10.03 00:55:26.811
144 6.0.0.478 2024.09.30 b5010 P P 2389 1504 2024.10.01 01:57:51.509 2024.10.01 01:57:53.898 2024.10.01 00:54:55.542 2024.10.01 00:54:57.046
145 6.0.0.474 2024.09.26 e4efb P P 2992 1455 2024.09.30 01:57:41.083 2024.09.30 01:57:44.075 2024.09.30 00:54:50.134 2024.09.30 00:54:51.589
146 6.0.0.471 2024.09.25 dab71 P P 2388 1459 2024.09.26 01:57:31.941 2024.09.26 01:57:34.329 2024.09.26 00:55:04.275 2024.09.26 00:55:05.734
147 6.0.0.471 2024.09.24 01b51 P P 2397 1456 2024.09.25 01:58:22.737 2024.09.25 01:58:25.134 2024.09.25 00:55:28.427 2024.09.25 00:55:29.883
148 6.0.0.470 2024.09.23 77cc0 P P 2437 1484 2024.09.24 01:57:33.220 2024.09.24 01:57:35.657 2024.09.24 00:55:12.821 2024.09.24 00:55:14.305
149 6.0.0.467 2024.09.21 ea0b8 P P 2453 1584 2024.09.23 01:58:45.502 2024.09.23 01:58:47.955 2024.09.23 00:56:03.677 2024.09.23 00:56:05.261
150 6.0.0.466 2024.09.20 32dc6 P P 2508 1463 2024.09.21 01:57:02.690 2024.09.21 01:57:05.198 2024.09.21 00:54:50.274 2024.09.21 00:54:51.737
151 6.0.0.461 2024.09.17 2c895 P P 2412 1443 2024.09.18 01:56:23.496 2024.09.18 01:56:25.908 2024.09.18 00:54:00.371 2024.09.18 00:54:01.814
152 6.0.0.460 2024.09.11 3c253 P P 2501 1443 2024.09.17 01:56:25.698 2024.09.17 01:56:28.199 2024.09.17 00:54:26.844 2024.09.17 00:54:28.287
153 6.0.0.457 2024.09.09 fdc6f P P 2411 1472 2024.09.10 01:57:11.741 2024.09.10 01:57:14.152 2024.09.10 00:54:36.773 2024.09.10 00:54:38.245
154 6.0.0.455 2024.09.07 500d8 P P 2403 1462 2024.09.08 01:57:33.380 2024.09.08 01:57:35.783 2024.09.08 00:55:10.379 2024.09.08 00:55:11.841
155 6.0.0.454 2024.09.05 4d70f P P 2437 1428 2024.09.06 01:57:44.142 2024.09.06 01:57:46.579 2024.09.06 00:54:48.436 2024.09.06 00:54:49.864
156 6.0.0.452 2024.09.04 9ff9c P P 2406 1479 2024.09.05 01:57:16.771 2024.09.05 01:57:19.177 2024.09.05 00:54:53.875 2024.09.05 00:54:55.354
157 6.0.0.450 2024.09.02 27124 P P 2476 1465 2024.09.04 01:57:44.438 2024.09.04 01:57:46.914 2024.09.04 00:54:53.801 2024.09.04 00:54:55.266
158 6.0.0.447 2024.09.01 901b4 P P 2458 1446 2024.09.02 01:47:54.572 2024.09.02 01:47:57.030 2024.09.02 00:44:55.700 2024.09.02 00:44:57.146
159 6.0.0.446 2024.08.30 fe1b2 P P 2461 1443 2024.09.01 01:46:30.288 2024.09.01 01:46:32.749 2024.09.01 00:44:51.468 2024.09.01 00:44:52.911
160 6.0.0.444 2024.08.28 785d4 P P 2452 1463 2024.08.30 01:46:50.992 2024.08.30 01:46:53.444 2024.08.30 00:45:12.392 2024.08.30 00:45:13.855
161 6.0.0.442 2024.08.21 4a68f P P 2450 1443 2024.08.28 01:46:34.605 2024.08.28 01:46:37.055 2024.08.28 00:44:54.334 2024.08.28 00:44:55.777
162 6.0.0.441 2024.08.20 75042 P P 2432 1463 2024.08.21 01:45:34.279 2024.08.21 01:45:36.711 2024.08.21 00:44:16.002 2024.08.21 00:44:17.465
163 6.0.0.438 2024.08.16 088b5 P P 2627 1529 2024.08.19 01:48:05.147 2024.08.19 01:48:07.774 2024.08.19 00:45:07.952 2024.08.19 00:45:09.481
164 6.0.0.437 2024.08.14 3c88b P P 2644 1495 2024.08.16 01:51:12.899 2024.08.16 01:51:15.543 2024.08.16 00:46:04.656 2024.08.16 00:46:06.151
165 6.0.0.436 2024.08.13 b8e75 P P 2557 1506 2024.08.14 01:49:47.743 2024.08.14 01:49:50.300 2024.08.14 00:45:21.466 2024.08.14 00:45:22.972
166 6.0.0.432 2024.08.11 e82ac P P 2616 1519 2024.08.13 01:48:21.788 2024.08.13 01:48:24.404 2024.08.13 00:44:55.569 2024.08.13 00:44:57.088
167 6.0.0.431 2024.08.11 16bb1 P P 2622 1492 2024.08.11 17:53:53.667 2024.08.11 17:53:56.289 2024.08.11 16:50:02.842 2024.08.11 16:50:04.334
168 6.0.0.431 2024.08.09 de5a7 P P 2665 1487 2024.08.10 17:27:14.204 2024.08.10 17:27:16.869 2024.08.10 16:24:14.734 2024.08.10 16:24:16.221
169 6.0.0.428 2024.08.08 9191b P P 2527 1497 2024.08.10 01:47:45.821 2024.08.10 01:47:48.348 2024.08.10 00:44:54.943 2024.08.10 00:44:56.440
170 6.0.0.423 2024.08.07 33b41 P P 2517 1517 2024.08.08 08:47:04.266 2024.08.08 08:47:06.783 2024.08.08 07:44:12.277 2024.08.08 07:44:13.794
171 6.0.0.421 2024.08.06 ed60d P P 2570 1452 2024.08.07 01:43:23.860 2024.08.07 01:43:26.430 2024.08.07 00:43:22.877 2024.08.07 00:43:24.329
172 6.0.0.419 2024.08.05 3505a P P 2480 1534 2024.08.06 01:41:37.953 2024.08.06 01:41:40.433 2024.08.06 00:43:03.961 2024.08.06 00:43:05.495
173 6.0.0.409 2024.08.02 ec18f P P 2511 1437 2024.08.05 01:40:44.601 2024.08.05 01:40:47.112 2024.08.05 00:42:30.023 2024.08.05 00:42:31.460
174 6.0.0.406 2024.08.01 b20be P P 2582 1444 2024.08.02 01:39:13.079 2024.08.02 01:39:15.661 2024.08.02 00:41:48.102 2024.08.02 00:41:49.546
175 6.0.0.405 2024.07.31 a62ac P P 2502 1566 2024.08.01 01:47:32.095 2024.08.01 01:47:34.597 2024.08.01 00:47:08.088 2024.08.01 00:47:09.654
176 6.0.0.403 2024.07.29 30f03 P P 2543 1459 2024.07.30 01:42:46.685 2024.07.30 01:42:49.228 2024.07.30 00:43:29.383 2024.07.30 00:43:30.842
177 6.0.0.401 2024.07.26 24e41 P P 2595 1448 2024.07.27 01:42:02.932 2024.07.27 01:42:05.527 2024.07.27 00:43:03.012 2024.07.27 00:43:04.460
178 6.0.0.400 2024.07.24 5bb78 P P 2551 4487 2024.07.25 01:42:49.515 2024.07.25 01:42:52.066 2024.07.25 00:43:15.853 2024.07.25 00:43:20.340
179 6.0.0.398 2024.07.23 85b18 S E 1919 2347 2024.07.24 02:06:06.248 2024.07.24 02:06:08.167 2024.07.24 00:46:10.027 2024.07.24 00:46:12.374
180 6.0.0.397 2024.07.22 c734c S P 1960 1472 2024.07.23 01:42:36.209 2024.07.23 01:42:38.169 2024.07.23 00:43:18.260 2024.07.23 00:43:19.732
181 6.0.0.396 2024.07.13 cf952 S P 1907 1468 2024.07.22 01:42:49.280 2024.07.22 01:42:51.187 2024.07.22 00:43:24.863 2024.07.22 00:43:26.331
182 6.0.0.395 2024.07.10 845f4 S P 1860 1391 2024.07.13 01:40:31.528 2024.07.13 01:40:33.388 2024.07.13 00:42:15.388 2024.07.13 00:42:16.779

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):