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: '.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'
 Input: 'violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"\n-Foreign key reference target does not exist\n-Problematic key value is ("FKEY" = 1)'

LOG DETAILS:

2025-06-30 05:42:27.648
2025-06-30 05:42:27.655 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-30 05:42:27.662
2025-06-30 05:42:27.669 @pytest.mark.version('>=3')
2025-06-30 05:42:27.676 def test_1(act: Action):
2025-06-30 05:42:27.683 with act.db.connect() as con:
2025-06-30 05:42:27.691 cust_tpb = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
2025-06-30 05:42:27.698 con.begin(cust_tpb)
2025-06-30 05:42:27.704 with con.cursor() as c:
2025-06-30 05:42:27.712 c.execute('DELETE FROM MASTER_TABLE WHERE ID=1')
2025-06-30 05:42:27.720 con.commit()
2025-06-30 05:42:27.728 #Create second connection for change detail table
2025-06-30 05:42:27.736 with act.db.connect() as con_detail:
2025-06-30 05:42:27.745 con_detail.begin(cust_tpb)
2025-06-30 05:42:27.758 with con_detail.cursor() as cd:
2025-06-30 05:42:27.769 with pytest.raises(DatabaseError,
2025-06-30 05:42:27.776 match='.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'):
2025-06-30 05:42:27.782 >                           cd.execute("INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)")
2025-06-30 05:42:27.788
2025-06-30 05:42:27.794 tests/functional/fkey/primary/test_insert_pk_14.py:51:
2025-06-30 05:42:27.800 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-30 05:42:27.807
2025-06-30 05:42:27.814 self = <firebird.driver.core.Cursor object at [hex]>
2025-06-30 05:42:27.822 operation = 'INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)'
2025-06-30 05:42:27.830 parameters = None
2025-06-30 05:42:27.837
2025-06-30 05:42:27.843 def execute(self, operation: Union[str, Statement], parameters: Sequence[Any]=None) -> Cursor:
2025-06-30 05:42:27.854 """Executes SQL command or prepared `Statement`.
2025-06-30 05:42:27.864
2025-06-30 05:42:27.872 Starts new transaction if transaction manager associated with cursor is not active.
2025-06-30 05:42:27.879
2025-06-30 05:42:27.884 Arguments:
2025-06-30 05:42:27.890 operation: SQL command or prepared `Statement`.
2025-06-30 05:42:27.897 parameters: Sequence of parameters. Must contain one entry for each argument
2025-06-30 05:42:27.905 that the operation expects.
2025-06-30 05:42:27.915
2025-06-30 05:42:27.924 Returns:
2025-06-30 05:42:27.932 `self` so call to execute could be used as iterator over returned rows.
2025-06-30 05:42:27.938
2025-06-30 05:42:27.943 Note:
2025-06-30 05:42:27.949 If `operation` is a string with SQL command that is exactly the same as the
2025-06-30 05:42:27.956 last executed command, the internally prepared `Statement` from last execution
2025-06-30 05:42:27.963 is reused.
2025-06-30 05:42:27.976
2025-06-30 05:42:27.986 If cursor is open, it's closed before new statement is executed.
2025-06-30 05:42:27.993 """
2025-06-30 05:42:27.998 >       self._execute(operation, parameters)
2025-06-30 05:42:28.005
2025-06-30 05:42:28.012 ../lib/python3.11/site-packages/firebird/driver/core.py:3861:
2025-06-30 05:42:28.019 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-30 05:42:28.030
2025-06-30 05:42:28.041 self = <firebird.driver.core.Cursor object at [hex]>
2025-06-30 05:42:28.053 operation = 'INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)'
2025-06-30 05:42:28.066 parameters = None, flags = <CursorFlag.NONE: 0>
2025-06-30 05:42:28.077
2025-06-30 05:42:28.091 def _execute(self, operation: Union[str, Statement],
2025-06-30 05:42:28.105 parameters: Sequence=None, flags: CursorFlag=CursorFlag.NONE) -> None:
2025-06-30 05:42:28.117 if not self._transaction.is_active():
2025-06-30 05:42:28.129 self._transaction.begin()
2025-06-30 05:42:28.143 if isinstance(operation, Statement):
2025-06-30 05:42:28.153 if operation._connection() is not self._connection:
2025-06-30 05:42:28.162 raise InterfaceError('Cannot execute Statement that was created by different Connection.')
2025-06-30 05:42:28.173 self.close()
2025-06-30 05:42:28.186 self._stmt = operation
2025-06-30 05:42:28.200 self.__internal = False
2025-06-30 05:42:28.212 elif self._stmt is not None and self._stmt.sql == operation:
2025-06-30 05:42:28.226 # We should execute the same SQL string again
2025-06-30 05:42:28.238 self._clear()
2025-06-30 05:42:28.252 else:
2025-06-30 05:42:28.266 self.close()
2025-06-30 05:42:28.277 self._stmt = self._connection._prepare(operation, self._transaction)
2025-06-30 05:42:28.291 self.__internal = True
2025-06-30 05:42:28.305 self._cursor_flags = flags
2025-06-30 05:42:28.316 in_meta = None
2025-06-30 05:42:28.325 # Execute the statement
2025-06-30 05:42:28.337 try:
2025-06-30 05:42:28.346 if self._stmt._in_cnt > 0:
2025-06-30 05:42:28.354 in_meta, self._stmt._in_buffer = self._pack_input(self._stmt._in_meta,
2025-06-30 05:42:28.366 self._stmt._in_buffer,
2025-06-30 05:42:28.380 parameters)
2025-06-30 05:42:28.392 if self._stmt.has_cursor():
2025-06-30 05:42:28.401 # Statement returns multiple rows
2025-06-30 05:42:28.408 self._result = self._stmt._istmt.open_cursor(self._transaction._tra,
2025-06-30 05:42:28.415 in_meta, self._stmt._in_buffer,
2025-06-30 05:42:28.421 self._stmt._out_meta,
2025-06-30 05:42:28.426 flags)
2025-06-30 05:42:28.431 else:
2025-06-30 05:42:28.437 # Statement may return single row
2025-06-30 05:42:28.443 >               self._stmt._istmt.execute(self._transaction._tra, in_meta,
2025-06-30 05:42:28.448 self._stmt._in_buffer,
2025-06-30 05:42:28.452 self._stmt._out_meta, self._stmt._out_buffer)
2025-06-30 05:42:28.457
2025-06-30 05:42:28.463 ../lib/python3.11/site-packages/firebird/driver/core.py:3749:
2025-06-30 05:42:28.468 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-30 05:42:28.481
2025-06-30 05:42:28.492 self = <firebird.driver.interfaces.iStatement object at [hex]>
2025-06-30 05:42:28.501 transaction = <firebird.driver.interfaces.iTransaction object at [hex]>
2025-06-30 05:42:28.509 in_meta = None, in_buffer = None, out_meta = None, out_buffer = None
2025-06-30 05:42:28.517
2025-06-30 05:42:28.523 def execute(self, transaction: iTransaction, in_meta: iMessageMetadata, in_buffer: bytes,
2025-06-30 05:42:28.528 out_meta: iMessageMetadata, out_buffer: bytes) -> None:
2025-06-30 05:42:28.533 """Executes any SQL statement except returning multiple rows of data.
2025-06-30 05:42:28.539 Partial analogue of `isc_dsql_execute2()` - in and out XSLQDAs replaced with input
2025-06-30 05:42:28.545 and output messages with appropriate buffers."""
2025-06-30 05:42:28.550 result = self.vtable.execute(self, self.status, transaction, in_meta, in_buffer, out_meta, out_buffer)
2025-06-30 05:42:28.556 >           self._check()
2025-06-30 05:42:28.562
2025-06-30 05:42:28.568 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:783:
2025-06-30 05:42:28.575 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-30 05:42:28.581
2025-06-30 05:42:28.592 self = <firebird.driver.interfaces.iStatement object at [hex]>
2025-06-30 05:42:28.602
2025-06-30 05:42:28.613 def _check(self) -> None:
2025-06-30 05:42:28.623 state = self.status.get_state()
2025-06-30 05:42:28.635 if StateFlag.ERRORS in state:
2025-06-30 05:42:28.650 >           raise self.__report(DatabaseError, self.status.get_errors())
2025-06-30 05:42:28.660 E           firebird.driver.types.DatabaseError: violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"
2025-06-30 05:42:28.670 E           -Foreign key reference target does not exist
2025-06-30 05:42:28.683 E           -Problematic key value is ("FKEY" = 1)
2025-06-30 05:42:28.693
2025-06-30 05:42:28.703 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:113: DatabaseError
2025-06-30 05:42:28.716
2025-06-30 05:42:28.729 During handling of the above exception, another exception occurred:
2025-06-30 05:42:28.743
2025-06-30 05:42:28.755 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-30 05:42:28.764
2025-06-30 05:42:28.772 @pytest.mark.version('>=3')
2025-06-30 05:42:28.779 def test_1(act: Action):
2025-06-30 05:42:28.785 with act.db.connect() as con:
2025-06-30 05:42:28.796 cust_tpb = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
2025-06-30 05:42:28.807 con.begin(cust_tpb)
2025-06-30 05:42:28.819 with con.cursor() as c:
2025-06-30 05:42:28.828 c.execute('DELETE FROM MASTER_TABLE WHERE ID=1')
2025-06-30 05:42:28.835 con.commit()
2025-06-30 05:42:28.842 #Create second connection for change detail table
2025-06-30 05:42:28.851 with act.db.connect() as con_detail:
2025-06-30 05:42:28.863 con_detail.begin(cust_tpb)
2025-06-30 05:42:28.872 with con_detail.cursor() as cd:
2025-06-30 05:42:28.885 >                       with pytest.raises(DatabaseError,
2025-06-30 05:42:28.893 match='.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'):
2025-06-30 05:42:28.899 E                                          AssertionError: Regex pattern did not match.
2025-06-30 05:42:28.906 E                                           Regex: '.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'
2025-06-30 05:42:28.920 E                                           Input: 'violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"\n-Foreign key reference target does not exist\n-Problematic key value is ("FKEY" = 1)'
2025-06-30 05:42:28.931
2025-06-30 05:42:28.941 tests/functional/fkey/primary/test_insert_pk_14.py:49: AssertionError
2025-06-30 05:42:28.950 ---------------------------- Captured stdout setup -----------------------------
2025-06-30 05:42:28.965 Creating db: localhost:/var/tmp/qa_2024/test_12042/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]>

    @pytest.mark.version('>=3')
    def test_1(act: Action):
        with act.db.connect() as con:
            cust_tpb = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
            con.begin(cust_tpb)
            with con.cursor() as c:
                c.execute('DELETE FROM MASTER_TABLE WHERE ID=1')
                con.commit()
                #Create second connection for change detail table
                with act.db.connect() as con_detail:
                    con_detail.begin(cust_tpb)
                    with con_detail.cursor() as cd:
                        with pytest.raises(DatabaseError,
                                           match='.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'):
>                           cd.execute("INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)")

tests/functional/fkey/primary/test_insert_pk_14.py:51: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.core.Cursor pytest object at [hex]>
operation = 'INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)'
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 = 'INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)'
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)
            self.__internal = True
        self._cursor_flags = flags
        in_meta = None
        # Execute the statement
        try:
            if self._stmt._in_cnt > 0:
                in_meta, self._stmt._in_buffer = self._pack_input(self._stmt._in_meta,
                                                                  self._stmt._in_buffer,
                                                                  parameters)
            if self._stmt.has_cursor():
                # Statement returns multiple rows
                self._result = self._stmt._istmt.open_cursor(self._transaction._tra,
                                                            in_meta, self._stmt._in_buffer,
                                                            self._stmt._out_meta,
                                                            flags)
            else:
                # Statement may return single row
>               self._stmt._istmt.execute(self._transaction._tra, in_meta,
                                         self._stmt._in_buffer,
                                         self._stmt._out_meta, self._stmt._out_buffer)

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

self = <firebird.driver.interfaces.iStatement pytest object at [hex]>
transaction = <firebird.driver.interfaces.iTransaction pytest object at [hex]>
in_meta = None, in_buffer = None, out_meta = None, out_buffer = None

        def execute(self, transaction: iTransaction, in_meta: iMessageMetadata, in_buffer: bytes,
                    out_meta: iMessageMetadata, out_buffer: bytes) -> 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."""
            result = self.vtable.execute(self, self.status, transaction, in_meta, in_buffer, out_meta, out_buffer)
>           self._check()

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

self = <firebird.driver.interfaces.iStatement 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: violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"
E           -Foreign key reference target does not exist
E           -Problematic key value is ("FKEY" = 1)

../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]>

    @pytest.mark.version('>=3')
    def test_1(act: Action):
        with act.db.connect() as con:
            cust_tpb = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
            con.begin(cust_tpb)
            with con.cursor() as c:
                c.execute('DELETE FROM MASTER_TABLE WHERE ID=1')
                con.commit()
                #Create second connection for change detail table
                with act.db.connect() as con_detail:
                    con_detail.begin(cust_tpb)
                    with con_detail.cursor() as cd:
>                       with pytest.raises(DatabaseError,
                                           match='.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'):
E                                          AssertionError: Regex pattern did not match.
E                                           Regex: '.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'
E                                           Input: 'violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"\n-Foreign key reference target does not exist\n-Problematic key value is ("FKEY" = 1)'

tests/functional/fkey/primary/test_insert_pk_14.py:49: 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 F F 1177 1231 2025.06.30 02:15:47.346 2025.06.30 02:15:48.523 2025.06.29 23:30:54.231 2025.06.29 23:30:55.462
2 6.0.0.877 2025.06.26 8e38f F F 1147 872 2025.06.27 01:53:49.738 2025.06.27 01:53:50.885 2025.06.26 23:21:15.234 2025.06.26 23:21:16.106
3 6.0.0.876 2025.06.25 b1bec F F 1045 1428 2025.06.26 01:57:41.186 2025.06.26 01:57:42.231 2025.06.25 23:23:03.374 2025.06.25 23:23:04.802
4 6.0.0.863 2025.06.24 c3c20 F F 1235 1484 2025.06.25 01:57:57.682 2025.06.25 01:57:58.917 2025.06.24 23:22:51.514 2025.06.24 23:22:52.998
5 6.0.0.858 2025.06.23 8d6f7 F F 1152 1156 2025.06.24 01:58:16.305 2025.06.24 01:58:17.457 2025.06.23 23:22:48.524 2025.06.23 23:22:49.680
6 6.0.0.849 2025.06.20 7b79c F F 1372 1062 2025.06.21 02:09:51.006 2025.06.21 02:09:52.378 2025.06.20 23:32:44.410 2025.06.20 23:32:45.472
7 6.0.0.848 2025.06.19 c483c F F 1281 1462 2025.06.20 02:06:08.569 2025.06.20 02:06:09.850 2025.06.19 23:29:06.818 2025.06.19 23:29:08.280
8 6.0.0.845 2025.06.18 22b12 F F 1399 1253 2025.06.19 02:14:52.042 2025.06.19 02:14:53.441 2025.06.18 23:32:42.070 2025.06.18 23:32:43.323
9 6.0.0.843 2025.06.16 995f4 F F 1118 1270 2025.06.18 02:13:09.049 2025.06.18 02:13:10.167 2025.06.17 23:35:30.430 2025.06.17 23:35:31.700
10 6.0.0.840 2025.06.14 29bca F F 1361 1108 2025.06.16 02:04:54.977 2025.06.16 02:04:56.338 2025.06.15 23:26:23.622 2025.06.15 23:26:24.730
11 6.0.0.838 2025.06.13 0e28a F F 1342 964 2025.06.14 02:18:26.676 2025.06.14 02:18:28.018 2025.06.13 23:34:46.595 2025.06.13 23:34:47.559
12 6.0.0.835 2025.06.12 2cf29 F F 1147 1180 2025.06.13 02:17:45.991 2025.06.13 02:17:47.138 2025.06.12 23:39:40.922 2025.06.12 23:39:42.102
13 6.0.0.834 2025.06.11 e889f F F 1192 1129 2025.06.12 02:13:11.529 2025.06.12 02:13:12.721 2025.06.11 23:34:42.934 2025.06.11 23:34:44.063
14 6.0.0.800 2025.06.10 1f226 P P 1383 638 2025.06.11 00:42:57.043 2025.06.11 00:42:58.426 2025.06.10 22:34:31.686 2025.06.10 22:34:32.324
15 6.0.0.799 2025.06.07 be644 P P 989 651 2025.06.10 00:46:20.452 2025.06.10 00:46:21.441 2025.06.09 22:34:11.523 2025.06.09 22:34:12.174
16 6.0.0.797 2025.06.06 303e8 P P 1269 725 2025.06.07 00:49:41.537 2025.06.07 00:49:42.806 2025.06.06 22:34:02.979 2025.06.06 22:34:03.704
17 6.0.0.795 2025.05.29 7a71a P P 1407 472 2025.06.06 00:43:26.362 2025.06.06 00:43:27.769 2025.06.05 22:33:05.986 2025.06.05 22:33:06.458
18 6.0.0.792 2025.05.28 b4327 P P 1441 760 2025.05.29 00:58:50.490 2025.05.29 00:58:51.931 2025.05.28 22:36:47.031 2025.05.28 22:36:47.791
19 6.0.0.791 2025.05.27 02db8 P P 881 806 2025.05.28 00:56:07.187 2025.05.28 00:56:08.068 2025.05.27 22:35:56.554 2025.05.27 22:35:57.360
20 6.0.0.789 2025.05.21 64051 P P 761 501 2025.05.25 00:48:39.126 2025.05.25 00:48:39.887 2025.05.24 22:34:43.278 2025.05.24 22:34:43.779
21 6.0.0.787 2025.05.20 230ad P P 1284 686 2025.05.21 00:45:35.246 2025.05.21 00:45:36.530 2025.05.20 22:33:12.155 2025.05.20 22:33:12.841
22 6.0.0.783 2025.05.12 37320 P P 930 571 2025.05.19 12:17:31.917 2025.05.19 12:17:32.847 2025.05.19 10:19:30.567 2025.05.19 10:19:31.138
23 6.0.0.779 2025.05.11 136fa P P 1302 568 2025.05.12 00:41:04.596 2025.05.12 00:41:05.898 2025.05.11 22:32:07.655 2025.05.11 22:32:08.223
24 6.0.0.778 2025.05.07 d735e P P 780 730 2025.05.08 00:41:59.255 2025.05.08 00:42:00.035 2025.05.07 22:30:57.601 2025.05.07 22:30:58.331
25 6.0.0.776 2025.05.06 007cd P P 1644 758 2025.05.07 00:37:56.705 2025.05.07 00:37:58.349 2025.05.06 22:31:13.935 2025.05.06 22:31:14.693
26 6.0.0.770 2025.05.05 82c4a P P 1392 402 2025.05.06 00:37:33.150 2025.05.06 00:37:34.542 2025.05.05 22:30:18.317 2025.05.05 22:30:18.719
27 6.0.0.767 2025.05.01 cdd29 P P 789 651 2025.05.02 00:32:24.203 2025.05.02 00:32:24.992 2025.05.01 22:29:43.055 2025.05.01 22:29:43.706
28 6.0.0.762 2025.04.30 5cb15 P P 1201 353 2025.05.01 00:28:52.685 2025.05.01 00:28:53.886 2025.04.30 22:28:18.123 2025.04.30 22:28:18.476
29 6.0.0.755 2025.04.29 739c6 P P 779 659 2025.04.30 00:32:57.787 2025.04.30 00:32:58.566 2025.04.29 22:29:43.142 2025.04.29 22:29:43.801
30 6.0.0.753 2025.04.27 29ab3 P P 1436 671 2025.04.28 00:34:44.498 2025.04.28 00:34:45.934 2025.04.27 22:28:48.920 2025.04.27 22:28:49.591
31 6.0.0.745 2025.04.21 78ad8 P P 1341 423 2025.04.26 00:29:48.529 2025.04.26 00:29:49.870 2025.04.25 22:29:49.103 2025.04.25 22:29:49.526
32 6.0.0.744 2025.04.19 e883a P P 808 380 2025.04.20 00:32:52.261 2025.04.20 00:32:53.069 2025.04.19 22:30:08.690 2025.04.19 22:30:09.070
33 6.0.0.742 2025.04.17 abc3b P P 854 384 2025.04.19 00:35:17.785 2025.04.19 00:35:18.639 2025.04.18 22:30:29.318 2025.04.18 22:30:29.702
34 6.0.0.737 2025.04.16 fe52b P P 1085 354 2025.04.17 00:30:57.306 2025.04.17 00:30:58.391 2025.04.16 22:30:32.384 2025.04.16 22:30:32.738
35 6.0.0.736 2025.04.14 3e6be P P 733 511 2025.04.15 00:10:26.137 2025.04.15 00:10:26.870 2025.04.14 22:20:44.579 2025.04.14 22:20:45.090
36 6.0.0.735 2025.04.13 6635c P P 681 505 2025.04.14 00:14:27.909 2025.04.14 00:14:28.590 2025.04.13 22:22:18.094 2025.04.13 22:22:18.599
37 6.0.0.734 2025.04.12 12f3f P P 1244 627 2025.04.13 00:11:33.130 2025.04.13 00:11:34.374 2025.04.12 22:21:18.005 2025.04.12 22:21:18.632
38 6.0.0.730 2025.04.11 240b8 P P 746 503 2025.04.12 00:14:20.367 2025.04.12 00:14:21.113 2025.04.11 22:21:11.459 2025.04.11 22:21:11.962
39 6.0.0.726 2025.04.10 d79c6 P P 1292 645 2025.04.11 00:14:11.078 2025.04.11 00:14:12.370 2025.04.10 22:21:09.787 2025.04.10 22:21:10.432
40 6.0.0.725 2025.04.09 a2b05 P P 719 579 2025.04.10 00:14:45.475 2025.04.10 00:14:46.194 2025.04.09 22:22:48.979 2025.04.09 22:22:49.558
41 6.0.0.722 2025.04.08 a8b86 P P 1393 383 2025.04.09 00:31:08.018 2025.04.09 00:31:09.411 2025.04.08 22:29:47.654 2025.04.08 22:29:48.037
42 6.0.0.719 2025.04.06 90fd9 P P 845 413 2025.04.07 00:29:01.244 2025.04.07 00:29:02.089 2025.04.06 22:27:54.659 2025.04.06 22:27:55.072
43 6.0.0.717 2025.04.04 53d70 P P 833 359 2025.04.05 00:23:52.431 2025.04.05 00:23:53.264 2025.04.04 22:27:12.249 2025.04.04 22:27:12.608
44 6.0.0.716 2025.04.03 fc636 P P 798 472 2025.04.04 00:27:42.266 2025.04.04 00:27:43.064 2025.04.03 22:28:53.623 2025.04.03 22:28:54.095
45 6.0.0.715 2025.04.02 907ed P P 778 413 2025.04.03 00:27:47.056 2025.04.03 00:27:47.834 2025.04.02 22:28:55.332 2025.04.02 22:28:55.745
46 6.0.0.710 2025.04.01 40651 P P 838 434 2025.04.02 00:25:39.339 2025.04.02 00:25:40.177 2025.04.01 22:27:51.380 2025.04.01 22:27:51.814
47 6.0.0.708 2025.03.31 cb069 P P 1363 621 2025.04.01 00:17:08.508 2025.04.01 00:17:09.871 2025.03.31 22:22:41.363 2025.03.31 22:22:41.984
48 6.0.0.707 2025.03.28 4bd4f P P 1296 650 2025.03.31 00:17:41.505 2025.03.31 00:17:42.801 2025.03.30 22:23:15.168 2025.03.30 22:23:15.818
49 6.0.0.698 2025.03.26 d72a7 P P 1099 694 2025.03.28 00:38:58.586 2025.03.28 00:38:59.685 2025.03.27 22:30:16.614 2025.03.27 22:30:17.308
50 6.0.0.693 2025.03.24 0b559 P P 848 595 2025.03.25 00:27:08.487 2025.03.25 00:27:09.335 2025.03.24 22:26:18.575 2025.03.24 22:26:19.170
51 6.0.0.687 2025.03.22 730aa P P 1471 672 2025.03.24 00:37:07.042 2025.03.24 00:37:08.513 2025.03.23 22:32:35.161 2025.03.23 22:32:35.833
52 6.0.0.686 2025.03.20 71bf6 P P 1300 756 2025.03.21 00:42:39.754 2025.03.21 00:42:41.054 2025.03.20 22:35:17.755 2025.03.20 22:35:18.511
53 6.0.0.685 2025.03.19 a8577 P P 1336 686 2025.03.20 00:50:19.270 2025.03.20 00:50:20.606 2025.03.19 22:33:29.339 2025.03.19 22:33:30.025
54 6.0.0.680 2025.03.18 90d29 P P 938 529 2025.03.19 11:04:33.301 2025.03.19 11:04:34.239 2025.03.19 09:16:41.907 2025.03.19 09:16:42.436
55 6.0.0.677 2025.03.16 c0a60 P P 816 465 2025.03.17 00:31:29.443 2025.03.17 00:31:30.259 2025.03.16 22:27:57.665 2025.03.16 22:27:58.130
56 6.0.0.676 2025.03.15 3034f P P 957 607 2025.03.16 16:02:30.996 2025.03.16 16:02:31.953 2025.03.16 14:17:09.649 2025.03.16 14:17:10.256
57 6.0.0.673 2025.03.13 40f5b P P 824 700 2025.03.14 00:29:27.343 2025.03.14 00:29:28.167 2025.03.13 22:27:03.698 2025.03.13 22:27:04.398
58 6.0.0.671 2025.03.12 a4fff P P 875 467 2025.03.13 00:33:37.420 2025.03.13 00:33:38.295 2025.03.12 22:30:06.259 2025.03.12 22:30:06.726
59 6.0.0.663 2025.03.11 daad2 P P 810 576 2025.03.12 00:32:13.846 2025.03.12 00:32:14.656 2025.03.11 22:29:10.767 2025.03.11 22:29:11.343
60 6.0.0.661 2025.03.07 b9869 P P 745 530 2025.03.11 00:09:33.040 2025.03.11 00:09:33.785 2025.03.10 22:19:45.713 2025.03.10 22:19:46.243
61 6.0.0.660 2025.03.04 a6700 P P 1357 722 2025.03.07 00:19:45.549 2025.03.07 00:19:46.906 2025.03.06 22:24:05.558 2025.03.06 22:24:06.280
62 6.0.0.658 2025.03.03 f15f8 P P 1369 647 2025.03.04 00:13:58.633 2025.03.04 00:14:00.002 2025.03.03 22:20:03.852 2025.03.03 22:20:04.499
63 6.0.0.656 2025.02.27 25fb4 P P 1003 592 2025.03.03 00:44:30.072 2025.03.03 00:44:31.075 2025.03.02 22:31:17.323 2025.03.02 22:31:17.915
64 6.0.0.655 2025.02.25 6e3e0 P P 996 670 2025.02.27 00:16:21.470 2025.02.27 00:16:22.466 2025.02.26 22:21:02.421 2025.02.26 22:21:03.091
65 6.0.0.654 2025.02.24 b7141 P P 725 737 2025.02.25 00:20:45.333 2025.02.25 00:20:46.058 2025.02.24 22:22:45.439 2025.02.24 22:22:46.176
66 6.0.0.652 2025.02.22 22662 P P 981 466 2025.02.24 07:36:22.424 2025.02.24 07:36:23.405 2025.02.24 00:34:20.656 2025.02.24 00:34:21.122
67 6.0.0.647 2025.02.21 9fccb P P 1260 627 2025.02.22 00:20:33.681 2025.02.22 00:20:34.941 2025.02.21 22:26:21.080 2025.02.21 22:26:21.707
68 6.0.0.640 2025.02.19 9b8ac P P 780 661 2025.02.20 00:18:00.603 2025.02.20 00:18:01.383 2025.02.19 22:20:29.589 2025.02.19 22:20:30.250
69 6.0.0.639 2025.02.18 201a4 P P 746 724 2025.02.19 00:10:51.097 2025.02.19 00:10:51.843 2025.02.18 22:19:19.898 2025.02.18 22:19:20.622
70 6.0.0.637 2025.02.12 6d0f5 P P 1432 745 2025.02.14 00:28:57.634 2025.02.14 00:28:59.066 2025.02.13 22:26:31.305 2025.02.13 22:26:32.050
71 6.0.0.636 2025.02.11 0424f P P 844 768 2025.02.12 00:25:42.437 2025.02.12 00:25:43.281 2025.02.11 22:26:03.287 2025.02.11 22:26:04.055
72 6.0.0.635 2025.02.10 f640f P P 1159 560 2025.02.11 00:23:44.201 2025.02.11 00:23:45.360 2025.02.10 22:26:24.743 2025.02.10 22:26:25.303
73 6.0.0.629 2025.02.07 194f9 P P 1384 603 2025.02.08 00:23:47.887 2025.02.08 00:23:49.271 2025.02.07 22:24:58.231 2025.02.07 22:24:58.834
74 6.0.0.628 2025.02.06 859d5 P P 1310 639 2025.02.07 00:40:53.358 2025.02.07 00:40:54.668 2025.02.06 22:31:59.818 2025.02.06 22:32:00.457
75 6.0.0.621 2025.02.05 34fe7 P P 1389 737 2025.02.06 00:35:38.676 2025.02.06 00:35:40.065 2025.02.05 22:32:26.807 2025.02.05 22:32:27.544
76 6.0.0.609 2025.02.04 76d57 P P 1425 720 2025.02.05 00:29:12.057 2025.02.05 00:29:13.482 2025.02.04 22:29:05.123 2025.02.04 22:29:05.843
77 6.0.0.607 2025.02.03 1985b P P 1364 684 2025.02.04 00:27:45.670 2025.02.04 00:27:47.034 2025.02.03 22:29:39.727 2025.02.03 22:29:40.411
78 6.0.0.601 2025.02.01 6af07 P P 718 552 2025.02.02 00:21:10.873 2025.02.02 00:21:11.591 2025.02.01 22:24:11.023 2025.02.01 22:24:11.575
79 6.0.0.600 2025.01.27 188de P P 1411 687 2025.01.28 00:28:41.754 2025.01.28 00:28:43.165 2025.01.27 22:26:14.063 2025.01.27 22:26:14.750
80 6.0.0.599 2025.01.25 ba588 P P 1556 632 2025.01.26 00:28:00.483 2025.01.26 00:28:02.039 2025.01.25 22:26:55.383 2025.01.25 22:26:56.015
81 6.0.0.598 2025.01.23 ddbc3 P P 803 824 2025.01.25 00:29:22.883 2025.01.25 00:29:23.686 2025.01.24 22:25:27.731 2025.01.24 22:25:28.555
82 6.0.0.595 2025.01.22 e62f3 P P 1298 641 2025.01.23 00:20:54.344 2025.01.23 00:20:55.642 2025.01.22 22:21:26.422 2025.01.22 22:21:27.063
83 6.0.0.594 2025.01.21 47fb6 P P 716 714 2025.01.22 00:15:51.049 2025.01.22 00:15:51.765 2025.01.21 22:20:51.440 2025.01.21 22:20:52.154
84 6.0.0.590 2025.01.20 9dc1e P P 1337 677 2025.01.21 00:22:20.409 2025.01.21 00:22:21.746 2025.01.20 22:25:23.445 2025.01.20 22:25:24.122
85 6.0.0.588 2025.01.19 b1c4e P P 782 858 2025.01.20 00:20:21.172 2025.01.20 00:20:21.954 2025.01.19 22:23:10.107 2025.01.19 22:23:10.965
86 6.0.0.587 2025.01.18 63e6e P P 1014 790 2025.01.19 00:25:00.701 2025.01.19 00:25:01.715 2025.01.18 22:24:55.107 2025.01.18 22:24:55.897
87 6.0.0.585 2025.01.16 2d6bb P P 817 547 2025.01.18 00:17:15.895 2025.01.18 00:17:16.712 2025.01.17 22:22:02.919 2025.01.17 22:22:03.466
88 6.0.0.584 2025.01.15 a0aa2 P P 814 746 2025.01.16 00:22:22.462 2025.01.16 00:22:23.276 2025.01.15 22:24:49.096 2025.01.15 22:24:49.842
89 6.0.0.581 2025.01.14 21e9e P P 1372 767 2025.01.15 00:23:54.386 2025.01.15 00:23:55.758 2025.01.14 22:23:36.448 2025.01.14 22:23:37.215
90 6.0.0.577 2025.01.13 7e293 P P 859 731 2025.01.14 00:23:11.794 2025.01.14 00:23:12.653 2025.01.13 22:23:52.475 2025.01.13 22:23:53.206
91 6.0.0.576 2025.01.12 05898 P P 780 561 2025.01.13 00:19:47.118 2025.01.13 00:19:47.898 2025.01.12 22:22:04.486 2025.01.12 22:22:05.047
92 6.0.0.573 2025.01.10 c20f3 P P 743 625 2025.01.11 00:21:10.534 2025.01.11 00:21:11.277 2025.01.10 22:23:15.569 2025.01.10 22:23:16.194
93 6.0.0.571 2024.12.31 81bba P P 648 424 2024.12.31 23:56:10.113 2024.12.31 23:56:10.761 2024.12.31 22:04:34.556 2024.12.31 22:04:34.980
94 6.0.0.570 2024.12.30 c3c8d P P 669 413 2024.12.30 23:56:15.415 2024.12.30 23:56:16.084 2024.12.30 22:04:30.424 2024.12.30 22:04:30.837
95 6.0.0.565 2024.12.28 5fc59 P P 683 401 2024.12.30 12:31:01.197 2024.12.30 12:31:01.880 2024.12.30 11:13:24.806 2024.12.30 11:13:25.207
96 6.0.0.564 2024.12.26 12514 P P 1160 416 2024.12.26 23:57:52.718 2024.12.26 23:57:53.878 2024.12.26 22:04:39.726 2024.12.26 22:04:40.142
97 6.0.0.560 2024.12.25 fa83e P P 655 441 2024.12.25 23:50:09.713 2024.12.25 23:50:10.368 2024.12.25 22:04:35.521 2024.12.25 22:04:35.962
98 6.0.0.559 2024.12.23 cc800 P P 1167 419 2024.12.24 23:51:19.095 2024.12.24 23:51:20.262 2024.12.24 22:05:03.150 2024.12.24 22:05:03.569
99 6.0.0.556 2024.12.22 a0404 P P 666 417 2024.12.22 23:57:07.227 2024.12.22 23:57:07.893 2024.12.22 22:04:25.945 2024.12.22 22:04:26.362
100 6.0.0.555 2024.12.19 6990a P P 682 418 2024.12.21 13:06:25.024 2024.12.21 13:06:25.706 2024.12.21 11:49:06.771 2024.12.21 11:49:07.189
101 6.0.0.553 2024.12.17 d1f8a P P 795 393 2024.12.17 23:51:57.032 2024.12.17 23:51:57.827 2024.12.17 22:05:04.826 2024.12.17 22:05:05.219
102 6.0.0.552 2024.12.11 85e25 P P 672 428 2024.12.15 23:55:55.496 2024.12.15 23:55:56.168 2024.12.15 22:04:49.193 2024.12.15 22:04:49.621
103 6.0.0.550 2024.12.10 b37ac P P 650 365 2024.12.10 23:51:33.797 2024.12.10 23:51:34.447 2024.12.10 22:06:13.871 2024.12.10 22:06:14.236
104 6.0.0.548 2024.12.08 2cc77 P P 653 398 2024.12.08 23:46:46.814 2024.12.08 23:46:47.467 2024.12.08 22:03:46.622 2024.12.08 22:03:47.020
105 6.0.0.544 2024.12.05 96943 P P 637 548 2024.12.05 23:51:03.851 2024.12.05 23:51:04.488 2024.12.05 22:07:34.151 2024.12.05 22:07:34.699
106 6.0.0.543 2024.12.03 30b77 P P 743 385 2024.12.03 23:51:44.588 2024.12.03 23:51:45.331 2024.12.03 22:05:57.776 2024.12.03 22:05:58.161
107 6.0.0.540 2024.12.02 4a1f4 P P 1184 397 2024.12.02 23:47:56.783 2024.12.02 23:47:57.967 2024.12.02 22:05:02.722 2024.12.02 22:05:03.119
108 6.0.0.539 2024.11.28 1f283 P P 1252 535 2024.11.29 23:59:49.371 2024.11.29 23:59:50.623 2024.11.29 22:05:40.300 2024.11.29 22:05:40.835
109 6.0.0.535 2024.11.26 77b95 P P 1156 411 2024.11.26 23:43:01.695 2024.11.26 23:43:02.851 2024.11.26 22:03:02.825 2024.11.26 22:03:03.236
110 6.0.0.534 2024.11.25 e9584 P P 1124 394 2024.11.25 23:44:16.031 2024.11.25 23:44:17.155 2024.11.25 22:03:52.573 2024.11.25 22:03:52.967
111 6.0.0.533 2024.11.17 933ac P P 699 429 2024.11.22 09:48:22.450 2024.11.22 09:48:23.149 2024.11.22 08:33:22.464 2024.11.22 08:33:22.893
112 6.0.0.532 2024.11.16 9e263 P P 1204 405 2024.11.16 23:33:55.447 2024.11.16 23:33:56.651 2024.11.16 22:03:50.702 2024.11.16 22:03:51.107
113 6.0.0.530 2024.11.15 49804 P P 1223 439 2024.11.16 01:41:45.849 2024.11.16 01:41:47.072 2024.11.16 00:03:19.339 2024.11.16 00:03:19.778
114 6.0.0.528 2024.11.14 9625b P P 1213 429 2024.11.15 01:45:41.927 2024.11.15 01:45:43.140 2024.11.15 00:04:38.771 2024.11.15 00:04:39.200
115 6.0.0.526 2024.11.12 65b80 P P 680 438 2024.11.14 01:45:02.703 2024.11.14 01:45:03.383 2024.11.14 00:04:08.197 2024.11.14 00:04:08.635
116 6.0.0.523 2024.11.08 8ca23 P P 1255 428 2024.11.11 01:41:02.029 2024.11.11 01:41:03.284 2024.11.11 00:02:59.233 2024.11.11 00:02:59.661
117 6.0.0.520 2024.11.07 4eefa P P 682 434 2024.11.08 01:38:54.910 2024.11.08 01:38:55.592 2024.11.08 00:02:33.928 2024.11.08 00:02:34.362
118 6.0.0.516 2024.11.04 b0c36 P P 636 419 2024.11.05 01:37:41.889 2024.11.05 01:37:42.525 2024.11.05 00:02:13.245 2024.11.05 00:02:13.664
119 6.0.0.515 2024.10.30 d53f3 P P 946 433 2024.11.04 01:39:36.652 2024.11.04 01:39:37.598 2024.11.04 00:02:46.968 2024.11.04 00:02:47.401
120 6.0.0.512 2024.10.29 833ef P P 1327 439 2024.10.30 01:42:19.991 2024.10.30 01:42:21.318 2024.10.30 00:04:16.184 2024.10.30 00:04:16.623
121 6.0.0.511 2024.10.26 c4bc9 P P 1278 445 2024.10.29 01:42:36.277 2024.10.29 01:42:37.555 2024.10.29 00:03:52.519 2024.10.29 00:03:52.964
122 6.0.0.509 2024.10.25 3aedb P P 1434 657 2024.10.26 01:53:04.462 2024.10.26 01:53:05.896 2024.10.26 00:07:07.360 2024.10.26 00:07:08.017
123 6.0.0.508 2024.10.24 a8f5b P P 906 405 2024.10.25 01:46:41.357 2024.10.25 01:46:42.263 2024.10.25 00:05:02.244 2024.10.25 00:05:02.649
124 6.0.0.502 2024.10.22 6bfd7 P P 1211 458 2024.10.23 01:46:14.512 2024.10.23 01:46:15.723 2024.10.23 00:04:40.036 2024.10.23 00:04:40.494
125 6.0.0.500 2024.10.21 be565 P P 748 428 2024.10.22 17:51:22.265 2024.10.22 17:51:23.013 2024.10.22 16:34:20.813 2024.10.22 16:34:21.241
126 6.0.0.499 2024.10.19 6214b P P 736 430 2024.10.20 01:47:23.509 2024.10.20 01:47:24.245 2024.10.20 00:05:50.657 2024.10.20 00:05:51.087
127 6.0.0.498 2024.10.18 591a7 P P 1161 448 2024.10.19 01:44:43.094 2024.10.19 01:44:44.255 2024.10.19 00:04:02.516 2024.10.19 00:04:02.964
128 6.0.0.494 2024.10.17 cf5a4 P P 1211 584 2024.10.18 01:45:36.570 2024.10.18 01:45:37.781 2024.10.18 00:05:32.437 2024.10.18 00:05:33.021
129 6.0.0.491 2024.10.14 dc5fb P P 680 409 2024.10.15 01:42:13.009 2024.10.15 01:42:13.689 2024.10.15 00:03:11.563 2024.10.15 00:03:11.972
130 6.0.0.489 2024.10.11 2ba59 P P 771 577 2024.10.12 01:49:00.854 2024.10.12 01:49:01.625 2024.10.12 00:05:21.057 2024.10.12 00:05:21.634
131 6.0.0.488 2024.10.09 1c93e P P 1033 643 2024.10.10 01:57:16.333 2024.10.10 01:57:17.366 2024.10.10 00:08:50.565 2024.10.10 00:08:51.208
132 6.0.0.487 2024.10.06 065a3 P P 1280 636 2024.10.07 01:56:49.141 2024.10.07 01:56:50.421 2024.10.07 00:08:39.977 2024.10.07 00:08:40.613
133 6.0.0.485 2024.10.04 e95c1 P P 664 643 2024.10.05 01:58:41.529 2024.10.05 01:58:42.193 2024.10.05 00:08:45.267 2024.10.05 00:08:45.910
134 6.0.0.483 2024.10.02 5e5ae P P 1160 621 2024.10.03 01:53:47.413 2024.10.03 01:53:48.573 2024.10.03 00:07:53.281 2024.10.03 00:07:53.902
135 6.0.0.478 2024.09.30 b5010 P P 680 638 2024.10.01 01:48:24.209 2024.10.01 01:48:24.889 2024.10.01 00:06:59.488 2024.10.01 00:07:00.126
136 6.0.0.474 2024.09.26 e4efb P P 671 529 2024.09.30 01:48:42.229 2024.09.30 01:48:42.900 2024.09.30 00:05:41.261 2024.09.30 00:05:41.790
137 6.0.0.471 2024.09.24 01b51 P P 787 443 2024.09.25 23:52:39.915 2024.09.25 23:52:40.702 2024.09.25 22:06:21.502 2024.09.25 22:06:21.945
138 6.0.0.470 2024.09.23 77cc0 P P 685 402 2024.09.23 23:51:05.935 2024.09.23 23:51:06.620 2024.09.23 22:06:27.496 2024.09.23 22:06:27.898
139 6.0.0.467 2024.09.21 ea0b8 P P 745 626 2024.09.22 23:49:32.549 2024.09.22 23:49:33.294 2024.09.22 22:05:43.343 2024.09.22 22:05:43.969
140 6.0.0.466 2024.09.20 32dc6 P P 646 550 2024.09.20 23:48:17.974 2024.09.20 23:48:18.620 2024.09.20 22:05:17.905 2024.09.20 22:05:18.455
141 6.0.0.461 2024.09.17 2c895 P P 1753 524 2024.09.18 00:23:41.728 2024.09.18 00:23:43.481 2024.09.17 22:27:43.153 2024.09.17 22:27:43.677
142 6.0.0.460 2024.09.11 3c253 P P 1296 696 2024.09.17 00:24:16.633 2024.09.17 00:24:17.929 2024.09.16 22:28:44.241 2024.09.16 22:28:44.937
143 6.0.0.457 2024.09.09 fdc6f P P 1436 791 2024.09.10 00:48:05.353 2024.09.10 00:48:06.789 2024.09.09 22:38:06.142 2024.09.09 22:38:06.933
144 6.0.0.455 2024.09.07 500d8 P P 1405 770 2024.09.08 00:43:53.524 2024.09.08 00:43:54.929 2024.09.07 22:36:12.346 2024.09.07 22:36:13.116
145 6.0.0.454 2024.09.05 4d70f P P 941 582 2024.09.06 00:27:42.787 2024.09.06 00:27:43.728 2024.09.05 22:30:44.571 2024.09.05 22:30:45.153
146 6.0.0.452 2024.09.04 9ff9c P P 1421 603 2024.09.05 00:24:44.664 2024.09.05 00:24:46.085 2024.09.04 22:28:58.062 2024.09.04 22:28:58.665
147 6.0.0.450 2024.09.02 27124 P P 1784 795 2024.09.04 01:36:58.636 2024.09.04 01:37:00.420 2024.09.03 22:59:01.412 2024.09.03 22:59:02.207
148 6.0.0.447 2024.09.01 056ec P P 2267 786 2024.09.02 00:51:18.737 2024.09.02 00:51:21.004 2024.09.01 22:34:59.891 2024.09.01 22:35:00.677
149 6.0.0.446 2024.08.30 fe1b2 P P 878 637 2024.09.01 00:55:07.966 2024.09.01 00:55:08.844 2024.08.31 22:47:00.639 2024.08.31 22:47:01.276
150 6.0.0.444 2024.08.28 785d4 P P 1074 760 2024.08.30 01:07:59.875 2024.08.30 01:08:00.949 2024.08.29 22:58:11.366 2024.08.29 22:58:12.126
151 6.0.0.442 2024.08.21 4a68f P P 1337 900 2024.08.28 02:49:08.693 2024.08.28 02:49:10.030 2024.08.27 23:50:34.986 2024.08.27 23:50:35.886
152 6.0.0.441 2024.08.20 75042 P P 1063 551 2024.08.21 00:39:32.967 2024.08.21 00:39:34.030 2024.08.20 22:35:53.521 2024.08.20 22:35:54.072
153 6.0.0.438 2024.08.16 088b5 P P 784 768 2024.08.18 23:52:12.465 2024.08.18 23:52:13.249 2024.08.18 22:13:47.329 2024.08.18 22:13:48.097
154 6.0.0.437 2024.08.14 3c88b P P 753 444 2024.08.15 23:49:52.031 2024.08.15 23:49:52.784 2024.08.15 22:12:45.145 2024.08.15 22:12:45.589
155 6.0.0.432 2024.08.11 e82ac P P 1311 756 2024.08.12 23:47:48.766 2024.08.12 23:47:50.077 2024.08.12 22:11:10.208 2024.08.12 22:11:10.964
156 6.0.0.431 2024.08.09 de5a7 P P 824 613 2024.08.09 23:49:02.340 2024.08.09 23:49:03.164 2024.08.09 22:11:29.117 2024.08.09 22:11:29.730
157 6.0.0.428 2024.08.08 9191b P P 1244 670 2024.08.08 23:48:11.680 2024.08.08 23:48:12.924 2024.08.08 22:10:54.349 2024.08.08 22:10:55.019
158 6.0.0.423 2024.08.07 33b41 P P 942 611 2024.08.08 09:36:52.314 2024.08.08 09:36:53.256 2024.08.08 08:17:50.316 2024.08.08 08:17:50.927
159 6.0.0.421 2024.08.06 ed60d P P 979 511 2024.08.06 23:31:23.865 2024.08.06 23:31:24.844 2024.08.06 22:05:09.620 2024.08.06 22:05:10.131
160 6.0.0.419 2024.08.05 3505a P P 990 335 2024.08.05 23:33:32.955 2024.08.05 23:33:33.945 2024.08.05 22:05:06.109 2024.08.05 22:05:06.444
161 6.0.0.409 2024.08.02 ec18f P P 940 325 2024.08.04 23:37:47.585 2024.08.04 23:37:48.525 2024.08.04 22:05:55.765 2024.08.04 22:05:56.090
162 6.0.0.406 2024.08.01 b20be P P 916 419 2024.08.01 23:36:34.617 2024.08.01 23:36:35.533 2024.08.01 22:05:15.509 2024.08.01 22:05:15.928
163 6.0.0.405 2024.07.31 a62ac P P 984 435 2024.07.31 23:34:58.957 2024.07.31 23:34:59.941 2024.07.31 22:04:59.943 2024.07.31 22:05:00.378
164 6.0.0.403 2024.07.29 30f03 P P 999 402 2024.07.29 23:34:36.078 2024.07.29 23:34:37.077 2024.07.29 22:04:46.111 2024.07.29 22:04:46.513
165 6.0.0.401 2024.07.26 24e41 P P 992 424 2024.07.26 23:31:13.757 2024.07.26 23:31:14.749 2024.07.26 22:04:39.500 2024.07.26 22:04:39.924
166 6.0.0.400 2024.07.24 5bb78 P P 963 400 2024.07.24 23:30:58.338 2024.07.24 23:30:59.301 2024.07.24 22:04:56.764 2024.07.24 22:04:57.164
167 6.0.0.398 2024.07.23 85b18 P P 607 484 2024.07.23 23:38:02.717 2024.07.23 23:38:03.324 2024.07.23 22:10:27.525 2024.07.23 22:10:28.009
168 6.0.0.397 2024.07.22 c734c P P 991 443 2024.07.22 23:30:55.565 2024.07.22 23:30:56.556 2024.07.22 22:04:52.979 2024.07.22 22:04:53.422
169 6.0.0.396 2024.07.13 cf952 P P 1003 408 2024.07.21 23:31:58.326 2024.07.21 23:31:59.329 2024.07.21 22:04:38.776 2024.07.21 22:04:39.184
170 6.0.0.395 2024.07.10 845f4 P P 1020 424 2024.07.12 23:32:20.717 2024.07.12 23:32:21.737 2024.07.12 22:03:45.562 2024.07.12 22:03:45.986
171 6.0.0.392 2024.07.09 ea301 P P 1046 420 2024.07.09 23:28:09.023 2024.07.09 23:28:10.069 2024.07.09 22:03:14.713 2024.07.09 22:03:15.133
172 6.0.0.391 2024.07.08 7d50c P P 1063 419 2024.07.08 23:29:26.641 2024.07.08 23:29:27.704 2024.07.08 22:04:11.600 2024.07.08 22:04:12.019
173 6.0.0.389 2024.07.05 cc71c P P 1147 416 2024.07.05 23:33:19.562 2024.07.05 23:33:20.709 2024.07.05 22:03:58.463 2024.07.05 22:03:58.879
174 6.0.0.388 2024.06.30 e5700 P P 988 410 2024.06.30 23:29:44.825 2024.06.30 23:29:45.813 2024.06.30 22:04:35.119 2024.06.30 22:04:35.529
175 6.0.0.387 2024.06.27 7c28a P P 1002 431 2024.06.27 23:28:40.937 2024.06.27 23:28:41.939 2024.06.27 22:04:13.324 2024.06.27 22:04:13.755
176 6.0.0.386 2024.06.23 7c57f P P 987 404 2024.06.23 23:26:03.553 2024.06.23 23:26:04.540 2024.06.23 22:03:01.169 2024.06.23 22:03:01.573
177 6.0.0.384 2024.06.21 24d99 P P 1083 421 2024.06.21 23:30:30.986 2024.06.21 23:30:32.069 2024.06.21 22:04:09.866 2024.06.21 22:04:10.287
178 6.0.0.374 2024.06.13 0097d P P 986 397 2024.06.20 23:28:26.915 2024.06.20 23:28:27.901 2024.06.20 22:03:28.075 2024.06.20 22:03:28.472
179 6.0.0.373 2024.06.09 363f0 P P 674 404 2024.06.13 13:38:00.074 2024.06.13 13:38:00.748 2024.06.13 12:27:10.745 2024.06.13 12:27:11.149
180 6.0.0.371 2024.06.08 f7130 P P 650 333 2024.06.11 22:24:40.612 2024.06.11 22:24:41.262 2024.06.11 21:21:03.740 2024.06.11 21:21:04.073
181 6.0.0.366 2024.05.30 ab2c9 P P 881 314 2024.06.12 09:35:41.463 2024.06.12 09:35:42.344 2024.06.12 07:55:29.413 2024.06.12 07:55:29.727
182 6.0.0.363 2024.05.27 06703 P P 631 301 2024.06.12 14:31:17.835 2024.06.12 14:31:18.466 2024.06.12 13:24:20.884 2024.06.12 13:24:21.185
183 6.0.0.359 2024.05.23 9cb11 P P 712 336 2024.06.12 12:23:27.728 2024.06.12 12:23:28.440 2024.06.12 11:16:56.234 2024.06.12 11:16:56.570
184 6.0.0.358 2024.05.21 995dd P P 604 339 2024.06.12 17:06:13.700 2024.06.12 17:06:14.304 2024.06.12 16:01:26.077 2024.06.12 16:01:26.416
185 6.0.0.357 2024.05.18 bf6c4 P P 677 337 2024.06.12 21:42:41.618 2024.06.12 21:42:42.295 2024.06.12 20:37:36.392 2024.06.12 20:37:36.729
186 6.0.0.356 2024.05.17 eab06 P P 679 432 2024.06.13 05:49:03.652 2024.06.13 05:49:04.331 2024.06.13 04:44:07.766 2024.06.13 04:44:08.198
187 6.0.0.355 2024.05.16 8dd6e P P 668 322 2024.06.13 07:56:44.983 2024.06.13 07:56:45.651 2024.06.13 06:51:52.148 2024.06.13 06:51:52.470
188 6.0.0.354 2024.05.15 d3adc P P 647 447 2024.06.13 11:02:38.885 2024.06.13 11:02:39.532 2024.06.13 09:52:33.804 2024.06.13 09:52:34.251
189 6.0.0.351 2024.05.14 2e3e0 P P 681 418 2024.06.13 16:16:26.528 2024.06.13 16:16:27.209 2024.06.13 15:05:42.561 2024.06.13 15:05:42.979

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):