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-07-03 05:20:26.843
2025-07-03 05:20:26.849 act = <firebird.qa.plugin.Action object at [hex]>
2025-07-03 05:20:26.855
2025-07-03 05:20:26.861 @pytest.mark.version('>=3')
2025-07-03 05:20:26.866 def test_1(act: Action):
2025-07-03 05:20:26.876 with act.db.connect() as con:
2025-07-03 05:20:26.888 cust_tpb = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
2025-07-03 05:20:26.897 con.begin(cust_tpb)
2025-07-03 05:20:26.904 with con.cursor() as c:
2025-07-03 05:20:26.916 c.execute('UPDATE MASTER_TABLE SET ID=2 WHERE ID=1')
2025-07-03 05:20:26.924 con.savepoint('A')
2025-07-03 05:20:26.932 c.execute('UPDATE MASTER_TABLE SET INT_F=2')
2025-07-03 05:20:26.942 con.rollback(savepoint='A')
2025-07-03 05:20:26.954 #Create second connection for change detail table
2025-07-03 05:20:26.966 with act.db.connect() as con_detail:
2025-07-03 05:20:26.976 con_detail.begin(cust_tpb)
2025-07-03 05:20:26.984 with con_detail.cursor() as cd:
2025-07-03 05:20:26.991 with pytest.raises(DatabaseError,
2025-07-03 05:20:27.007 match='.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'):
2025-07-03 05:20:27.015 >                           cd.execute("INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)")
2025-07-03 05:20:27.022
2025-07-03 05:20:27.031 tests/functional/fkey/primary/test_insert_pk_04.py:57:
2025-07-03 05:20:27.040 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-03 05:20:27.048
2025-07-03 05:20:27.059 self = <firebird.driver.core.Cursor object at [hex]>
2025-07-03 05:20:27.071 operation = 'INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)'
2025-07-03 05:20:27.082 parameters = None
2025-07-03 05:20:27.092
2025-07-03 05:20:27.100 def execute(self, operation: Union[str, Statement], parameters: Sequence[Any]=None) -> Cursor:
2025-07-03 05:20:27.108 """Executes SQL command or prepared `Statement`.
2025-07-03 05:20:27.115
2025-07-03 05:20:27.122 Starts new transaction if transaction manager associated with cursor is not active.
2025-07-03 05:20:27.133
2025-07-03 05:20:27.144 Arguments:
2025-07-03 05:20:27.151 operation: SQL command or prepared `Statement`.
2025-07-03 05:20:27.158 parameters: Sequence of parameters. Must contain one entry for each argument
2025-07-03 05:20:27.163 that the operation expects.
2025-07-03 05:20:27.167
2025-07-03 05:20:27.174 Returns:
2025-07-03 05:20:27.180 `self` so call to execute could be used as iterator over returned rows.
2025-07-03 05:20:27.186
2025-07-03 05:20:27.192 Note:
2025-07-03 05:20:27.198 If `operation` is a string with SQL command that is exactly the same as the
2025-07-03 05:20:27.204 last executed command, the internally prepared `Statement` from last execution
2025-07-03 05:20:27.210 is reused.
2025-07-03 05:20:27.216
2025-07-03 05:20:27.223 If cursor is open, it's closed before new statement is executed.
2025-07-03 05:20:27.231 """
2025-07-03 05:20:27.242 >       self._execute(operation, parameters)
2025-07-03 05:20:27.250
2025-07-03 05:20:27.255 ../lib/python3.11/site-packages/firebird/driver/core.py:3861:
2025-07-03 05:20:27.262 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-03 05:20:27.267
2025-07-03 05:20:27.272 self = <firebird.driver.core.Cursor object at [hex]>
2025-07-03 05:20:27.278 operation = 'INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)'
2025-07-03 05:20:27.282 parameters = None, flags = <CursorFlag.NONE: 0>
2025-07-03 05:20:27.288
2025-07-03 05:20:27.293 def _execute(self, operation: Union[str, Statement],
2025-07-03 05:20:27.299 parameters: Sequence=None, flags: CursorFlag=CursorFlag.NONE) -> None:
2025-07-03 05:20:27.305 if not self._transaction.is_active():
2025-07-03 05:20:27.311 self._transaction.begin()
2025-07-03 05:20:27.318 if isinstance(operation, Statement):
2025-07-03 05:20:27.324 if operation._connection() is not self._connection:
2025-07-03 05:20:27.331 raise InterfaceError('Cannot execute Statement that was created by different Connection.')
2025-07-03 05:20:27.338 self.close()
2025-07-03 05:20:27.345 self._stmt = operation
2025-07-03 05:20:27.351 self.__internal = False
2025-07-03 05:20:27.358 elif self._stmt is not None and self._stmt.sql == operation:
2025-07-03 05:20:27.365 # We should execute the same SQL string again
2025-07-03 05:20:27.372 self._clear()
2025-07-03 05:20:27.379 else:
2025-07-03 05:20:27.386 self.close()
2025-07-03 05:20:27.399 self._stmt = self._connection._prepare(operation, self._transaction)
2025-07-03 05:20:27.410 self.__internal = True
2025-07-03 05:20:27.422 self._cursor_flags = flags
2025-07-03 05:20:27.433 in_meta = None
2025-07-03 05:20:27.444 # Execute the statement
2025-07-03 05:20:27.453 try:
2025-07-03 05:20:27.460 if self._stmt._in_cnt > 0:
2025-07-03 05:20:27.466 in_meta, self._stmt._in_buffer = self._pack_input(self._stmt._in_meta,
2025-07-03 05:20:27.474 self._stmt._in_buffer,
2025-07-03 05:20:27.481 parameters)
2025-07-03 05:20:27.488 if self._stmt.has_cursor():
2025-07-03 05:20:27.494 # Statement returns multiple rows
2025-07-03 05:20:27.499 self._result = self._stmt._istmt.open_cursor(self._transaction._tra,
2025-07-03 05:20:27.505 in_meta, self._stmt._in_buffer,
2025-07-03 05:20:27.511 self._stmt._out_meta,
2025-07-03 05:20:27.517 flags)
2025-07-03 05:20:27.522 else:
2025-07-03 05:20:27.529 # Statement may return single row
2025-07-03 05:20:27.535 >               self._stmt._istmt.execute(self._transaction._tra, in_meta,
2025-07-03 05:20:27.541 self._stmt._in_buffer,
2025-07-03 05:20:27.547 self._stmt._out_meta, self._stmt._out_buffer)
2025-07-03 05:20:27.552
2025-07-03 05:20:27.558 ../lib/python3.11/site-packages/firebird/driver/core.py:3749:
2025-07-03 05:20:27.568 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-03 05:20:27.581
2025-07-03 05:20:27.594 self = <firebird.driver.interfaces.iStatement object at [hex]>
2025-07-03 05:20:27.602 transaction = <firebird.driver.interfaces.iTransaction object at [hex]>
2025-07-03 05:20:27.615 in_meta = None, in_buffer = None, out_meta = None, out_buffer = None
2025-07-03 05:20:27.624
2025-07-03 05:20:27.633 def execute(self, transaction: iTransaction, in_meta: iMessageMetadata, in_buffer: bytes,
2025-07-03 05:20:27.640 out_meta: iMessageMetadata, out_buffer: bytes) -> None:
2025-07-03 05:20:27.645 """Executes any SQL statement except returning multiple rows of data.
2025-07-03 05:20:27.650 Partial analogue of `isc_dsql_execute2()` - in and out XSLQDAs replaced with input
2025-07-03 05:20:27.655 and output messages with appropriate buffers."""
2025-07-03 05:20:27.659 result = self.vtable.execute(self, self.status, transaction, in_meta, in_buffer, out_meta, out_buffer)
2025-07-03 05:20:27.664 >           self._check()
2025-07-03 05:20:27.668
2025-07-03 05:20:27.674 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:783:
2025-07-03 05:20:27.680 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-03 05:20:27.686
2025-07-03 05:20:27.691 self = <firebird.driver.interfaces.iStatement object at [hex]>
2025-07-03 05:20:27.697
2025-07-03 05:20:27.702 def _check(self) -> None:
2025-07-03 05:20:27.708 state = self.status.get_state()
2025-07-03 05:20:27.714 if StateFlag.ERRORS in state:
2025-07-03 05:20:27.720 >           raise self.__report(DatabaseError, self.status.get_errors())
2025-07-03 05:20:27.727 E           firebird.driver.types.DatabaseError: violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"
2025-07-03 05:20:27.733 E           -Foreign key reference target does not exist
2025-07-03 05:20:27.739 E           -Problematic key value is ("FKEY" = 1)
2025-07-03 05:20:27.744
2025-07-03 05:20:27.750 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:113: DatabaseError
2025-07-03 05:20:27.760
2025-07-03 05:20:27.770 During handling of the above exception, another exception occurred:
2025-07-03 05:20:27.778
2025-07-03 05:20:27.787 act = <firebird.qa.plugin.Action object at [hex]>
2025-07-03 05:20:27.795
2025-07-03 05:20:27.802 @pytest.mark.version('>=3')
2025-07-03 05:20:27.808 def test_1(act: Action):
2025-07-03 05:20:27.814 with act.db.connect() as con:
2025-07-03 05:20:27.820 cust_tpb = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
2025-07-03 05:20:27.826 con.begin(cust_tpb)
2025-07-03 05:20:27.836 with con.cursor() as c:
2025-07-03 05:20:27.845 c.execute('UPDATE MASTER_TABLE SET ID=2 WHERE ID=1')
2025-07-03 05:20:27.857 con.savepoint('A')
2025-07-03 05:20:27.869 c.execute('UPDATE MASTER_TABLE SET INT_F=2')
2025-07-03 05:20:27.878 con.rollback(savepoint='A')
2025-07-03 05:20:27.886 #Create second connection for change detail table
2025-07-03 05:20:27.896 with act.db.connect() as con_detail:
2025-07-03 05:20:27.904 con_detail.begin(cust_tpb)
2025-07-03 05:20:27.911 with con_detail.cursor() as cd:
2025-07-03 05:20:27.917 >                       with pytest.raises(DatabaseError,
2025-07-03 05:20:27.924 match='.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'):
2025-07-03 05:20:27.930 E                                          AssertionError: Regex pattern did not match.
2025-07-03 05:20:27.937 E                                           Regex: '.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'
2025-07-03 05:20:27.945 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-07-03 05:20:27.950
2025-07-03 05:20:27.956 tests/functional/fkey/primary/test_insert_pk_04.py:55: AssertionError
2025-07-03 05:20:27.962 ---------------------------- Captured stdout setup -----------------------------
2025-07-03 05:20:27.969 Creating db: localhost:/var/tmp/qa_2024/test_12033/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('UPDATE MASTER_TABLE SET ID=2 WHERE ID=1')
                con.savepoint('A')
                c.execute('UPDATE MASTER_TABLE SET INT_F=2')
                con.rollback(savepoint='A')
                #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_04.py:57: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

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('UPDATE MASTER_TABLE SET ID=2 WHERE ID=1')
                con.savepoint('A')
                c.execute('UPDATE MASTER_TABLE SET INT_F=2')
                con.rollback(savepoint='A')
                #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_04.py:55: 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.892 2025.07.02 10f7d F F 1296 875 2025.07.03 01:56:10.123 2025.07.03 01:56:11.419 2025.07.02 23:21:33.896 2025.07.02 23:21:34.771
2 6.0.0.889 2025.07.01 969ac F F 1689 1228 2025.07.02 02:24:48.861 2025.07.02 02:24:50.550 2025.07.01 23:35:19.127 2025.07.01 23:35:20.355
3 6.0.0.884 2025.06.30 f7e5f F F 1304 1061 2025.07.01 02:24:28.472 2025.07.01 02:24:29.776 2025.06.30 23:44:58.877 2025.06.30 23:44:59.938
4 6.0.0.881 2025.06.27 7035d F F 1376 1276 2025.06.30 02:15:36.903 2025.06.30 02:15:38.279 2025.06.29 23:30:47.602 2025.06.29 23:30:48.878
5 6.0.0.877 2025.06.26 8e38f F F 1254 1278 2025.06.27 01:53:39.965 2025.06.27 01:53:41.219 2025.06.26 23:21:07.498 2025.06.26 23:21:08.776
6 6.0.0.876 2025.06.25 b1bec F F 1296 798 2025.06.26 01:57:31.231 2025.06.26 01:57:32.527 2025.06.25 23:22:55.961 2025.06.25 23:22:56.759
7 6.0.0.863 2025.06.24 c3c20 F F 1567 1023 2025.06.25 01:57:47.487 2025.06.25 01:57:49.054 2025.06.24 23:22:42.899 2025.06.24 23:22:43.922
8 6.0.0.858 2025.06.23 8d6f7 F F 1093 988 2025.06.24 01:58:06.872 2025.06.24 01:58:07.965 2025.06.23 23:22:40.680 2025.06.23 23:22:41.668
9 6.0.0.849 2025.06.20 7b79c F F 1263 927 2025.06.21 02:09:41.215 2025.06.21 02:09:42.478 2025.06.20 23:32:36.337 2025.06.20 23:32:37.264
10 6.0.0.848 2025.06.19 c483c F F 1181 1437 2025.06.20 02:05:58.322 2025.06.20 02:05:59.503 2025.06.19 23:28:57.751 2025.06.19 23:28:59.188
11 6.0.0.845 2025.06.18 22b12 F F 1153 1334 2025.06.19 02:14:41.999 2025.06.19 02:14:43.152 2025.06.18 23:32:33.769 2025.06.18 23:32:35.103
12 6.0.0.843 2025.06.16 995f4 F F 1089 1392 2025.06.18 02:12:58.844 2025.06.18 02:12:59.933 2025.06.17 23:35:21.620 2025.06.17 23:35:23.012
13 6.0.0.840 2025.06.14 29bca F F 1267 1192 2025.06.16 02:04:45.413 2025.06.16 02:04:46.680 2025.06.15 23:26:15.238 2025.06.15 23:26:16.430
14 6.0.0.838 2025.06.13 0e28a F F 1249 1240 2025.06.14 02:18:16.446 2025.06.14 02:18:17.695 2025.06.13 23:34:37.934 2025.06.13 23:34:39.174
15 6.0.0.835 2025.06.12 2cf29 F F 1132 1048 2025.06.13 02:17:35.537 2025.06.13 02:17:36.669 2025.06.12 23:39:32.466 2025.06.12 23:39:33.514
16 6.0.0.834 2025.06.11 e889f F F 1207 1213 2025.06.12 02:13:01.105 2025.06.12 02:13:02.312 2025.06.11 23:34:34.367 2025.06.11 23:34:35.580
17 6.0.0.800 2025.06.10 1f226 P P 1346 692 2025.06.11 00:42:43.469 2025.06.11 00:42:44.815 2025.06.10 22:34:25.543 2025.06.10 22:34:26.235
18 6.0.0.799 2025.06.07 be644 P P 902 655 2025.06.10 00:46:11.026 2025.06.10 00:46:11.928 2025.06.09 22:34:05.123 2025.06.09 22:34:05.778
19 6.0.0.797 2025.06.06 303e8 P P 1204 822 2025.06.07 00:49:29.330 2025.06.07 00:49:30.534 2025.06.06 22:33:55.908 2025.06.06 22:33:56.730
20 6.0.0.795 2025.05.29 7a71a P P 1526 787 2025.06.06 00:43:12.045 2025.06.06 00:43:13.571 2025.06.05 22:32:58.979 2025.06.05 22:32:59.766
21 6.0.0.792 2025.05.28 b4327 P P 1373 474 2025.05.29 00:58:36.089 2025.05.29 00:58:37.462 2025.05.28 22:36:42.305 2025.05.28 22:36:42.779
22 6.0.0.791 2025.05.27 02db8 P P 820 656 2025.05.28 00:55:58.846 2025.05.28 00:55:59.666 2025.05.27 22:35:49.263 2025.05.27 22:35:49.919
23 6.0.0.789 2025.05.21 64051 P P 786 708 2025.05.25 00:48:31.261 2025.05.25 00:48:32.047 2025.05.24 22:34:36.403 2025.05.24 22:34:37.111
24 6.0.0.787 2025.05.20 230ad P P 828 691 2025.05.21 00:45:26.359 2025.05.21 00:45:27.187 2025.05.20 22:33:05.764 2025.05.20 22:33:06.455
25 6.0.0.783 2025.05.12 37320 P P 993 548 2025.05.19 12:17:22.208 2025.05.19 12:17:23.201 2025.05.19 10:19:25.140 2025.05.19 10:19:25.688
26 6.0.0.779 2025.05.11 136fa P P 1346 692 2025.05.12 00:40:50.423 2025.05.12 00:40:51.769 2025.05.11 22:32:00.449 2025.05.11 22:32:01.141
27 6.0.0.778 2025.05.07 d735e P P 869 619 2025.05.08 00:41:50.585 2025.05.08 00:41:51.454 2025.05.07 22:30:51.223 2025.05.07 22:30:51.842
28 6.0.0.776 2025.05.06 007cd P P 1374 326 2025.05.07 00:37:41.611 2025.05.07 00:37:42.985 2025.05.06 22:31:09.662 2025.05.06 22:31:09.988
29 6.0.0.770 2025.05.05 82c4a P P 1399 411 2025.05.06 00:37:18.859 2025.05.06 00:37:20.258 2025.05.05 22:30:14.246 2025.05.05 22:30:14.657
30 6.0.0.767 2025.05.01 cdd29 P P 788 552 2025.05.02 00:32:16.099 2025.05.02 00:32:16.887 2025.05.01 22:29:37.278 2025.05.01 22:29:37.830
31 6.0.0.762 2025.04.30 5cb15 P P 834 543 2025.05.01 00:28:41.607 2025.05.01 00:28:42.441 2025.04.30 22:28:13.348 2025.04.30 22:28:13.891
32 6.0.0.755 2025.04.29 739c6 P P 778 384 2025.04.30 00:32:49.894 2025.04.30 00:32:50.672 2025.04.29 22:29:37.619 2025.04.29 22:29:38.003
33 6.0.0.753 2025.04.27 29ab3 P P 1384 628 2025.04.28 00:34:30.802 2025.04.28 00:34:32.186 2025.04.27 22:28:42.602 2025.04.27 22:28:43.230
34 6.0.0.745 2025.04.21 78ad8 P P 1460 422 2025.04.26 00:29:35.222 2025.04.26 00:29:36.682 2025.04.25 22:29:44.069 2025.04.25 22:29:44.491
35 6.0.0.744 2025.04.19 e883a P P 756 417 2025.04.20 00:32:44.143 2025.04.20 00:32:44.899 2025.04.19 22:30:04.561 2025.04.19 22:30:04.978
36 6.0.0.742 2025.04.17 abc3b P P 946 496 2025.04.19 00:35:09.514 2025.04.19 00:35:10.460 2025.04.18 22:30:25.122 2025.04.18 22:30:25.618
37 6.0.0.737 2025.04.16 fe52b P P 1326 389 2025.04.17 00:30:48.570 2025.04.17 00:30:49.896 2025.04.16 22:30:28.234 2025.04.16 22:30:28.623
38 6.0.0.736 2025.04.14 3e6be P P 714 676 2025.04.15 00:10:18.748 2025.04.15 00:10:19.462 2025.04.14 22:20:38.715 2025.04.14 22:20:39.391
39 6.0.0.735 2025.04.13 6635c P P 747 559 2025.04.14 00:14:20.294 2025.04.14 00:14:21.041 2025.04.13 22:22:12.132 2025.04.13 22:22:12.691
40 6.0.0.734 2025.04.12 12f3f P P 1304 643 2025.04.13 00:11:19.762 2025.04.13 00:11:21.066 2025.04.12 22:21:12.222 2025.04.12 22:21:12.865
41 6.0.0.730 2025.04.11 240b8 P P 795 659 2025.04.12 00:14:12.487 2025.04.12 00:14:13.282 2025.04.11 22:21:05.031 2025.04.11 22:21:05.690
42 6.0.0.726 2025.04.10 d79c6 P P 711 489 2025.04.11 00:13:58.945 2025.04.11 00:13:59.656 2025.04.10 22:21:04.390 2025.04.10 22:21:04.879
43 6.0.0.725 2025.04.09 a2b05 P P 677 627 2025.04.10 00:14:37.954 2025.04.10 00:14:38.631 2025.04.09 22:22:42.894 2025.04.09 22:22:43.521
44 6.0.0.722 2025.04.08 a8b86 P P 826 354 2025.04.09 00:30:57.453 2025.04.09 00:30:58.279 2025.04.08 22:29:43.593 2025.04.08 22:29:43.947
45 6.0.0.719 2025.04.06 90fd9 P P 802 397 2025.04.07 00:28:53.349 2025.04.07 00:28:54.151 2025.04.06 22:27:50.428 2025.04.06 22:27:50.825
46 6.0.0.717 2025.04.04 53d70 P P 794 383 2025.04.05 00:23:44.477 2025.04.05 00:23:45.271 2025.04.04 22:27:08.437 2025.04.04 22:27:08.820
47 6.0.0.716 2025.04.03 fc636 P P 734 430 2025.04.04 00:27:34.318 2025.04.04 00:27:35.052 2025.04.03 22:28:47.863 2025.04.03 22:28:48.293
48 6.0.0.715 2025.04.02 907ed P P 1439 397 2025.04.03 00:27:36.395 2025.04.03 00:27:37.834 2025.04.02 22:28:51.351 2025.04.02 22:28:51.748
49 6.0.0.710 2025.04.01 40651 P P 1505 417 2025.04.02 00:25:29.750 2025.04.02 00:25:31.255 2025.04.01 22:27:46.686 2025.04.01 22:27:47.103
50 6.0.0.708 2025.03.31 cb069 P P 1445 601 2025.04.01 00:16:55.137 2025.04.01 00:16:56.582 2025.03.31 22:22:35.338 2025.03.31 22:22:35.939
51 6.0.0.707 2025.03.28 4bd4f P P 1384 507 2025.03.31 00:17:28.010 2025.03.31 00:17:29.394 2025.03.30 22:23:09.270 2025.03.30 22:23:09.777
52 6.0.0.698 2025.03.26 d72a7 P P 768 690 2025.03.28 00:38:50.339 2025.03.28 00:38:51.107 2025.03.27 22:30:10.599 2025.03.27 22:30:11.289
53 6.0.0.693 2025.03.24 0b559 P P 767 627 2025.03.25 00:27:00.387 2025.03.25 00:27:01.154 2025.03.24 22:26:13.925 2025.03.24 22:26:14.552
54 6.0.0.687 2025.03.22 730aa P P 1157 590 2025.03.24 00:36:54.362 2025.03.24 00:36:55.519 2025.03.23 22:32:28.840 2025.03.23 22:32:29.430
55 6.0.0.686 2025.03.20 71bf6 P P 1339 829 2025.03.21 00:42:26.591 2025.03.21 00:42:27.930 2025.03.20 22:35:10.414 2025.03.20 22:35:11.243
56 6.0.0.685 2025.03.19 a8577 P P 1412 691 2025.03.20 00:50:05.266 2025.03.20 00:50:06.678 2025.03.19 22:33:22.331 2025.03.19 22:33:23.022
57 6.0.0.680 2025.03.18 90d29 P P 1006 528 2025.03.19 11:04:23.540 2025.03.19 11:04:24.546 2025.03.19 09:16:36.624 2025.03.19 09:16:37.152
58 6.0.0.677 2025.03.16 c0a60 P P 823 387 2025.03.17 00:31:21.196 2025.03.17 00:31:22.019 2025.03.16 22:27:53.586 2025.03.16 22:27:53.973
59 6.0.0.676 2025.03.15 3034f P P 1037 560 2025.03.16 16:02:20.958 2025.03.16 16:02:21.995 2025.03.16 14:17:04.147 2025.03.16 14:17:04.707
60 6.0.0.673 2025.03.13 40f5b P P 830 576 2025.03.14 00:29:18.998 2025.03.14 00:29:19.828 2025.03.13 22:26:57.454 2025.03.13 22:26:58.030
61 6.0.0.671 2025.03.12 a4fff P P 815 669 2025.03.13 00:33:29.414 2025.03.13 00:33:30.229 2025.03.12 22:29:59.799 2025.03.12 22:30:00.468
62 6.0.0.663 2025.03.11 daad2 P P 779 761 2025.03.12 00:32:03.514 2025.03.12 00:32:04.293 2025.03.11 22:29:04.251 2025.03.11 22:29:05.012
63 6.0.0.661 2025.03.07 b9869 P P 731 612 2025.03.11 00:09:25.612 2025.03.11 00:09:26.343 2025.03.10 22:19:39.674 2025.03.10 22:19:40.286
64 6.0.0.660 2025.03.04 a6700 P P 1256 679 2025.03.07 00:19:32.046 2025.03.07 00:19:33.302 2025.03.06 22:23:59.110 2025.03.06 22:23:59.789
65 6.0.0.658 2025.03.03 f15f8 P P 1300 634 2025.03.04 00:13:45.026 2025.03.04 00:13:46.326 2025.03.03 22:19:57.808 2025.03.03 22:19:58.442
66 6.0.0.656 2025.02.27 25fb4 P P 910 719 2025.03.03 00:44:20.671 2025.03.03 00:44:21.581 2025.03.02 22:31:10.499 2025.03.02 22:31:11.218
67 6.0.0.655 2025.02.25 6e3e0 P P 1008 655 2025.02.27 00:16:08.278 2025.02.27 00:16:09.286 2025.02.26 22:20:56.014 2025.02.26 22:20:56.669
68 6.0.0.654 2025.02.24 b7141 P P 771 710 2025.02.25 00:20:37.450 2025.02.25 00:20:38.221 2025.02.24 22:22:39.237 2025.02.24 22:22:39.947
69 6.0.0.652 2025.02.22 22662 P P 968 536 2025.02.24 07:36:12.459 2025.02.24 07:36:13.427 2025.02.24 00:34:15.358 2025.02.24 00:34:15.894
70 6.0.0.647 2025.02.21 9fccb P P 1408 735 2025.02.22 00:20:19.866 2025.02.22 00:20:21.274 2025.02.21 22:26:14.669 2025.02.21 22:26:15.404
71 6.0.0.640 2025.02.19 9b8ac P P 795 473 2025.02.20 00:17:52.789 2025.02.20 00:17:53.584 2025.02.19 22:20:23.150 2025.02.19 22:20:23.623
72 6.0.0.639 2025.02.18 201a4 P P 764 541 2025.02.19 00:10:43.583 2025.02.19 00:10:44.347 2025.02.18 22:19:13.499 2025.02.18 22:19:14.040
73 6.0.0.637 2025.02.12 6d0f5 P P 1461 571 2025.02.14 00:28:42.969 2025.02.14 00:28:44.430 2025.02.13 22:26:24.560 2025.02.13 22:26:25.131
74 6.0.0.636 2025.02.11 0424f P P 743 691 2025.02.12 00:25:34.403 2025.02.12 00:25:35.146 2025.02.11 22:25:56.107 2025.02.11 22:25:56.798
75 6.0.0.635 2025.02.10 f640f P P 1357 361 2025.02.11 00:23:30.658 2025.02.11 00:23:32.015 2025.02.10 22:26:18.641 2025.02.10 22:26:19.002
76 6.0.0.629 2025.02.07 194f9 P P 1467 551 2025.02.08 00:23:33.539 2025.02.08 00:23:35.006 2025.02.07 22:24:51.686 2025.02.07 22:24:52.237
77 6.0.0.628 2025.02.06 859d5 P P 1527 607 2025.02.07 00:40:38.916 2025.02.07 00:40:40.443 2025.02.06 22:31:54.537 2025.02.06 22:31:55.144
78 6.0.0.621 2025.02.05 34fe7 P P 1354 699 2025.02.06 00:35:24.965 2025.02.06 00:35:26.319 2025.02.05 22:32:20.371 2025.02.05 22:32:21.070
79 6.0.0.609 2025.02.04 76d57 P P 816 328 2025.02.05 00:29:00.947 2025.02.05 00:29:01.763 2025.02.04 22:28:59.938 2025.02.04 22:29:00.266
80 6.0.0.607 2025.02.03 1985b P P 1358 453 2025.02.04 00:27:32.072 2025.02.04 00:27:33.430 2025.02.03 22:29:33.666 2025.02.03 22:29:34.119
81 6.0.0.601 2025.02.01 6af07 P P 713 708 2025.02.02 00:21:03.422 2025.02.02 00:21:04.135 2025.02.01 22:24:04.726 2025.02.01 22:24:05.434
82 6.0.0.600 2025.01.27 188de P P 1342 751 2025.01.28 00:28:27.202 2025.01.28 00:28:28.544 2025.01.27 22:26:07.455 2025.01.27 22:26:08.206
83 6.0.0.599 2025.01.25 ba588 P P 1403 699 2025.01.26 00:27:46.759 2025.01.26 00:27:48.162 2025.01.25 22:26:48.559 2025.01.25 22:26:49.258
84 6.0.0.598 2025.01.23 ddbc3 P P 778 743 2025.01.25 00:29:14.127 2025.01.25 00:29:14.905 2025.01.24 22:25:20.813 2025.01.24 22:25:21.556
85 6.0.0.595 2025.01.22 e62f3 P P 1479 593 2025.01.23 00:20:40.022 2025.01.23 00:20:41.501 2025.01.22 22:21:19.961 2025.01.22 22:21:20.554
86 6.0.0.594 2025.01.21 47fb6 P P 740 705 2025.01.22 00:15:43.369 2025.01.22 00:15:44.109 2025.01.21 22:20:44.806 2025.01.21 22:20:45.511
87 6.0.0.590 2025.01.20 9dc1e P P 1300 838 2025.01.21 00:22:06.642 2025.01.21 00:22:07.942 2025.01.20 22:25:16.226 2025.01.20 22:25:17.064
88 6.0.0.588 2025.01.19 b1c4e P P 720 759 2025.01.20 00:20:13.455 2025.01.20 00:20:14.175 2025.01.19 22:23:03.391 2025.01.19 22:23:04.150
89 6.0.0.587 2025.01.18 63e6e P P 830 712 2025.01.19 00:24:49.057 2025.01.19 00:24:49.887 2025.01.18 22:24:48.654 2025.01.18 22:24:49.366
90 6.0.0.585 2025.01.16 2d6bb P P 863 495 2025.01.18 00:17:07.912 2025.01.18 00:17:08.775 2025.01.17 22:21:57.103 2025.01.17 22:21:57.598
91 6.0.0.584 2025.01.15 a0aa2 P P 747 566 2025.01.16 00:22:14.823 2025.01.16 00:22:15.570 2025.01.15 22:24:42.341 2025.01.15 22:24:42.907
92 6.0.0.581 2025.01.14 21e9e P P 1071 676 2025.01.15 00:23:40.787 2025.01.15 00:23:41.858 2025.01.14 22:23:29.467 2025.01.14 22:23:30.143
93 6.0.0.577 2025.01.13 7e293 P P 925 576 2025.01.14 00:23:02.430 2025.01.14 00:23:03.355 2025.01.13 22:23:45.814 2025.01.13 22:23:46.390
94 6.0.0.576 2025.01.12 05898 P P 722 520 2025.01.13 00:19:39.063 2025.01.13 00:19:39.785 2025.01.12 22:21:58.199 2025.01.12 22:21:58.719
95 6.0.0.573 2025.01.10 c20f3 P P 771 523 2025.01.11 00:21:02.794 2025.01.11 00:21:03.565 2025.01.10 22:23:09.056 2025.01.10 22:23:09.579
96 6.0.0.571 2024.12.31 81bba P P 712 322 2024.12.31 23:56:02.400 2024.12.31 23:56:03.112 2024.12.31 22:04:30.919 2024.12.31 22:04:31.241
97 6.0.0.570 2024.12.30 c3c8d P P 672 353 2024.12.30 23:56:08.717 2024.12.30 23:56:09.389 2024.12.30 22:04:26.754 2024.12.30 22:04:27.107
98 6.0.0.565 2024.12.28 5fc59 P P 743 376 2024.12.30 12:30:53.891 2024.12.30 12:30:54.634 2024.12.30 11:13:21.083 2024.12.30 11:13:21.459
99 6.0.0.564 2024.12.26 12514 P P 1185 346 2024.12.26 23:57:40.442 2024.12.26 23:57:41.627 2024.12.26 22:04:35.993 2024.12.26 22:04:36.339
100 6.0.0.560 2024.12.25 fa83e P P 651 358 2024.12.25 23:50:03.061 2024.12.25 23:50:03.712 2024.12.25 22:04:31.808 2024.12.25 22:04:32.166
101 6.0.0.559 2024.12.23 cc800 P P 1186 373 2024.12.24 23:51:06.585 2024.12.24 23:51:07.771 2024.12.24 22:04:59.467 2024.12.24 22:04:59.840
102 6.0.0.556 2024.12.22 a0404 P P 813 381 2024.12.22 23:57:00.223 2024.12.22 23:57:01.036 2024.12.22 22:04:22.232 2024.12.22 22:04:22.613
103 6.0.0.555 2024.12.19 6990a P P 707 385 2024.12.21 13:06:17.837 2024.12.21 13:06:18.544 2024.12.21 11:49:03.075 2024.12.21 11:49:03.460
104 6.0.0.553 2024.12.17 d1f8a P P 757 353 2024.12.17 23:51:49.937 2024.12.17 23:51:50.694 2024.12.17 22:05:01.271 2024.12.17 22:05:01.624
105 6.0.0.552 2024.12.11 85e25 P P 661 375 2024.12.15 23:55:48.659 2024.12.15 23:55:49.320 2024.12.15 22:04:45.450 2024.12.15 22:04:45.825
106 6.0.0.550 2024.12.10 b37ac P P 624 318 2024.12.10 23:51:27.259 2024.12.10 23:51:27.883 2024.12.10 22:06:10.504 2024.12.10 22:06:10.822
107 6.0.0.548 2024.12.08 2cc77 P P 842 331 2024.12.08 23:46:38.889 2024.12.08 23:46:39.731 2024.12.08 22:03:42.961 2024.12.08 22:03:43.292
108 6.0.0.544 2024.12.05 96943 P P 654 468 2024.12.05 23:50:57.315 2024.12.05 23:50:57.969 2024.12.05 22:07:28.399 2024.12.05 22:07:28.867
109 6.0.0.543 2024.12.03 30b77 P P 728 380 2024.12.03 23:51:37.567 2024.12.03 23:51:38.295 2024.12.03 22:05:54.039 2024.12.03 22:05:54.419
110 6.0.0.540 2024.12.02 4a1f4 P P 1344 378 2024.12.02 23:47:43.983 2024.12.02 23:47:45.327 2024.12.02 22:04:59.007 2024.12.02 22:04:59.385
111 6.0.0.539 2024.11.28 1f283 P P 1421 636 2024.11.29 23:59:36.790 2024.11.29 23:59:38.211 2024.11.29 22:05:34.672 2024.11.29 22:05:35.308
112 6.0.0.535 2024.11.26 77b95 P P 1101 361 2024.11.26 23:42:49.530 2024.11.26 23:42:50.631 2024.11.26 22:02:59.079 2024.11.26 22:02:59.440
113 6.0.0.534 2024.11.25 e9584 P P 1274 344 2024.11.25 23:44:03.622 2024.11.25 23:44:04.896 2024.11.25 22:03:48.862 2024.11.25 22:03:49.206
114 6.0.0.533 2024.11.17 933ac P P 739 378 2024.11.22 09:48:15.042 2024.11.22 09:48:15.781 2024.11.22 08:33:18.592 2024.11.22 08:33:18.970
115 6.0.0.532 2024.11.16 9e263 P P 1210 376 2024.11.16 23:33:43.291 2024.11.16 23:33:44.501 2024.11.16 22:03:46.919 2024.11.16 22:03:47.295
116 6.0.0.530 2024.11.15 49804 P P 664 377 2024.11.16 01:41:36.561 2024.11.16 01:41:37.225 2024.11.16 00:03:15.446 2024.11.16 00:03:15.823
117 6.0.0.528 2024.11.14 9625b P P 1224 402 2024.11.15 01:45:28.829 2024.11.15 01:45:30.053 2024.11.15 00:04:34.950 2024.11.15 00:04:35.352
118 6.0.0.526 2024.11.12 65b80 P P 643 380 2024.11.14 01:44:56.014 2024.11.14 01:44:56.657 2024.11.14 00:04:04.142 2024.11.14 00:04:04.522
119 6.0.0.523 2024.11.08 8ca23 P P 657 381 2024.11.11 01:40:52.434 2024.11.11 01:40:53.091 2024.11.11 00:02:55.415 2024.11.11 00:02:55.796
120 6.0.0.520 2024.11.07 4eefa P P 621 365 2024.11.08 01:38:48.456 2024.11.08 01:38:49.077 2024.11.08 00:02:30.173 2024.11.08 00:02:30.538
121 6.0.0.516 2024.11.04 b0c36 P P 637 353 2024.11.05 01:37:35.566 2024.11.05 01:37:36.203 2024.11.05 00:02:09.555 2024.11.05 00:02:09.908
122 6.0.0.515 2024.10.30 d53f3 P P 632 347 2024.11.04 01:39:29.852 2024.11.04 01:39:30.484 2024.11.04 00:02:43.177 2024.11.04 00:02:43.524
123 6.0.0.512 2024.10.29 833ef P P 724 428 2024.10.30 01:42:11.729 2024.10.30 01:42:12.453 2024.10.30 00:04:12.236 2024.10.30 00:04:12.664
124 6.0.0.511 2024.10.26 c4bc9 P P 1207 381 2024.10.29 01:42:23.794 2024.10.29 01:42:25.001 2024.10.29 00:03:48.663 2024.10.29 00:03:49.044
125 6.0.0.509 2024.10.25 3aedb P P 1328 552 2024.10.26 01:52:51.522 2024.10.26 01:52:52.850 2024.10.26 00:07:01.333 2024.10.26 00:07:01.885
126 6.0.0.508 2024.10.24 a8f5b P P 713 381 2024.10.25 01:46:34.454 2024.10.25 01:46:35.167 2024.10.25 00:04:58.238 2024.10.25 00:04:58.619
127 6.0.0.502 2024.10.22 6bfd7 P P 738 387 2024.10.23 01:46:06.193 2024.10.23 01:46:06.931 2024.10.23 00:04:36.192 2024.10.23 00:04:36.579
128 6.0.0.500 2024.10.21 be565 P P 700 386 2024.10.22 17:51:14.721 2024.10.22 17:51:15.421 2024.10.22 16:34:16.829 2024.10.22 16:34:17.215
129 6.0.0.499 2024.10.19 6214b P P 748 641 2024.10.20 01:47:16.401 2024.10.20 01:47:17.149 2024.10.20 00:05:45.524 2024.10.20 00:05:46.165
130 6.0.0.498 2024.10.18 591a7 P P 1279 373 2024.10.19 01:44:30.457 2024.10.19 01:44:31.736 2024.10.19 00:03:58.645 2024.10.19 00:03:59.018
131 6.0.0.494 2024.10.17 cf5a4 P P 1228 635 2024.10.18 01:45:24.273 2024.10.18 01:45:25.501 2024.10.18 00:05:26.614 2024.10.18 00:05:27.249
132 6.0.0.491 2024.10.14 dc5fb P P 651 378 2024.10.15 01:42:06.467 2024.10.15 01:42:07.118 2024.10.15 00:03:07.839 2024.10.15 00:03:08.217
133 6.0.0.489 2024.10.11 2ba59 P P 792 440 2024.10.12 01:48:53.464 2024.10.12 01:48:54.256 2024.10.12 00:05:16.193 2024.10.12 00:05:16.633
134 6.0.0.488 2024.10.09 1c93e P P 1114 630 2024.10.10 01:57:04.085 2024.10.10 01:57:05.199 2024.10.10 00:08:44.101 2024.10.10 00:08:44.731
135 6.0.0.487 2024.10.06 065a3 P P 1316 632 2024.10.07 01:56:35.472 2024.10.07 01:56:36.788 2024.10.07 00:08:33.501 2024.10.07 00:08:34.133
136 6.0.0.485 2024.10.04 e95c1 P P 814 704 2024.10.05 01:58:34.020 2024.10.05 01:58:34.834 2024.10.05 00:08:38.725 2024.10.05 00:08:39.429
137 6.0.0.483 2024.10.02 5e5ae P P 1392 544 2024.10.03 01:53:34.053 2024.10.03 01:53:35.445 2024.10.03 00:07:47.419 2024.10.03 00:07:47.963
138 6.0.0.478 2024.09.30 b5010 P P 694 642 2024.10.01 01:48:17.218 2024.10.01 01:48:17.912 2024.10.01 00:06:53.353 2024.10.01 00:06:53.995
139 6.0.0.474 2024.09.26 e4efb P P 689 492 2024.09.30 01:48:35.356 2024.09.30 01:48:36.045 2024.09.30 00:05:35.657 2024.09.30 00:05:36.149
140 6.0.0.471 2024.09.24 01b51 P P 667 320 2024.09.25 23:52:32.789 2024.09.25 23:52:33.456 2024.09.25 22:06:17.973 2024.09.25 22:06:18.293
141 6.0.0.470 2024.09.23 77cc0 P P 705 599 2024.09.23 23:50:58.579 2024.09.23 23:50:59.284 2024.09.23 22:06:23.454 2024.09.23 22:06:24.053
142 6.0.0.467 2024.09.21 ea0b8 P P 757 558 2024.09.22 23:49:25.020 2024.09.22 23:49:25.777 2024.09.22 22:05:37.939 2024.09.22 22:05:38.497
143 6.0.0.466 2024.09.20 32dc6 P P 634 379 2024.09.20 23:48:10.779 2024.09.20 23:48:11.413 2024.09.20 22:05:13.299 2024.09.20 22:05:13.678
144 6.0.0.461 2024.09.17 2c895 P P 1415 477 2024.09.18 00:23:28.688 2024.09.18 00:23:30.103 2024.09.17 22:27:38.235 2024.09.17 22:27:38.712
145 6.0.0.460 2024.09.11 3c253 P P 1660 577 2024.09.17 00:24:01.665 2024.09.17 00:24:03.325 2024.09.16 22:28:38.239 2024.09.16 22:28:38.816
146 6.0.0.457 2024.09.09 fdc6f P P 1599 800 2024.09.10 00:47:49.341 2024.09.10 00:47:50.940 2024.09.09 22:37:58.601 2024.09.09 22:37:59.401
147 6.0.0.455 2024.09.07 500d8 P P 1536 808 2024.09.08 00:43:36.969 2024.09.08 00:43:38.505 2024.09.07 22:36:04.477 2024.09.07 22:36:05.285
148 6.0.0.454 2024.09.05 4d70f P P 1114 478 2024.09.06 00:27:32.729 2024.09.06 00:27:33.843 2024.09.05 22:30:39.324 2024.09.05 22:30:39.802
149 6.0.0.452 2024.09.04 9ff9c P P 1583 551 2024.09.05 00:24:29.815 2024.09.05 00:24:31.398 2024.09.04 22:28:52.298 2024.09.04 22:28:52.849
150 6.0.0.450 2024.09.02 27124 P P 1632 502 2024.09.04 01:36:42.577 2024.09.04 01:36:44.209 2024.09.03 22:58:52.761 2024.09.03 22:58:53.263
151 6.0.0.447 2024.09.01 056ec P P 2220 546 2024.09.02 00:50:55.913 2024.09.02 00:50:58.133 2024.09.01 22:34:52.862 2024.09.01 22:34:53.408
152 6.0.0.446 2024.08.30 fe1b2 P P 1052 487 2024.09.01 00:54:54.655 2024.09.01 00:54:55.707 2024.08.31 22:46:55.583 2024.08.31 22:46:56.070
153 6.0.0.444 2024.08.28 785d4 P P 807 872 2024.08.30 01:07:45.226 2024.08.30 01:07:46.033 2024.08.29 22:58:04.648 2024.08.29 22:58:05.520
154 6.0.0.442 2024.08.21 4a68f P P 1628 688 2024.08.28 02:48:52.650 2024.08.28 02:48:54.278 2024.08.27 23:50:24.081 2024.08.27 23:50:24.769
155 6.0.0.441 2024.08.20 75042 P P 1228 701 2024.08.21 00:39:21.573 2024.08.21 00:39:22.801 2024.08.20 22:35:46.987 2024.08.20 22:35:47.688
156 6.0.0.438 2024.08.16 088b5 P P 866 616 2024.08.18 23:52:04.495 2024.08.18 23:52:05.361 2024.08.18 22:13:40.523 2024.08.18 22:13:41.139
157 6.0.0.437 2024.08.14 3c88b P P 716 399 2024.08.15 23:49:44.409 2024.08.15 23:49:45.125 2024.08.15 22:12:40.953 2024.08.15 22:12:41.352
158 6.0.0.432 2024.08.11 e82ac P P 1239 764 2024.08.12 23:47:40.173 2024.08.12 23:47:41.412 2024.08.12 22:11:03.585 2024.08.12 22:11:04.349
159 6.0.0.431 2024.08.09 de5a7 P P 781 1002 2024.08.09 23:48:53.804 2024.08.09 23:48:54.585 2024.08.09 22:11:22.335 2024.08.09 22:11:23.337
160 6.0.0.428 2024.08.08 9191b P P 1396 699 2024.08.08 23:47:57.529 2024.08.08 23:47:58.925 2024.08.08 22:10:47.925 2024.08.08 22:10:48.624
161 6.0.0.423 2024.08.07 33b41 P P 894 410 2024.08.08 09:36:43.205 2024.08.08 09:36:44.099 2024.08.08 08:17:45.008 2024.08.08 08:17:45.418
162 6.0.0.421 2024.08.06 ed60d P P 1057 283 2024.08.06 23:31:13.617 2024.08.06 23:31:14.674 2024.08.06 22:05:06.537 2024.08.06 22:05:06.820
163 6.0.0.419 2024.08.05 3505a P P 1052 306 2024.08.05 23:33:22.593 2024.08.05 23:33:23.645 2024.08.05 22:05:03.256 2024.08.05 22:05:03.562
164 6.0.0.409 2024.08.02 ec18f P P 1079 295 2024.08.04 23:37:36.946 2024.08.04 23:37:38.025 2024.08.04 22:05:52.706 2024.08.04 22:05:53.001
165 6.0.0.406 2024.08.01 b20be P P 1291 372 2024.08.01 23:36:23.774 2024.08.01 23:36:25.065 2024.08.01 22:05:11.881 2024.08.01 22:05:12.253
166 6.0.0.405 2024.07.31 a62ac P P 945 420 2024.07.31 23:34:48.836 2024.07.31 23:34:49.781 2024.07.31 22:04:56.094 2024.07.31 22:04:56.514
167 6.0.0.403 2024.07.29 30f03 P P 1088 411 2024.07.29 23:34:25.445 2024.07.29 23:34:26.533 2024.07.29 22:04:42.194 2024.07.29 22:04:42.605
168 6.0.0.401 2024.07.26 24e41 P P 1045 394 2024.07.26 23:31:03.061 2024.07.26 23:31:04.106 2024.07.26 22:04:35.684 2024.07.26 22:04:36.078
169 6.0.0.400 2024.07.24 5bb78 P P 1016 389 2024.07.24 23:30:47.725 2024.07.24 23:30:48.741 2024.07.24 22:04:52.811 2024.07.24 22:04:53.200
170 6.0.0.398 2024.07.23 85b18 P P 540 408 2024.07.23 23:37:57.038 2024.07.23 23:37:57.578 2024.07.23 22:10:23.147 2024.07.23 22:10:23.555
171 6.0.0.397 2024.07.22 c734c P P 1099 409 2024.07.22 23:30:45.222 2024.07.22 23:30:46.321 2024.07.22 22:04:49.125 2024.07.22 22:04:49.534
172 6.0.0.396 2024.07.13 cf952 P P 1080 402 2024.07.21 23:31:47.549 2024.07.21 23:31:48.629 2024.07.21 22:04:34.854 2024.07.21 22:04:35.256
173 6.0.0.395 2024.07.10 845f4 P P 1116 364 2024.07.12 23:32:09.581 2024.07.12 23:32:10.697 2024.07.12 22:03:41.782 2024.07.12 22:03:42.146
174 6.0.0.392 2024.07.09 ea301 P P 1080 378 2024.07.09 23:27:58.369 2024.07.09 23:27:59.449 2024.07.09 22:03:10.888 2024.07.09 22:03:11.266
175 6.0.0.391 2024.07.08 7d50c P P 1094 382 2024.07.08 23:29:16.001 2024.07.08 23:29:17.095 2024.07.08 22:04:07.875 2024.07.08 22:04:08.257
176 6.0.0.389 2024.07.05 cc71c P P 1173 332 2024.07.05 23:33:08.412 2024.07.05 23:33:09.585 2024.07.05 22:03:54.788 2024.07.05 22:03:55.120
177 6.0.0.388 2024.06.30 e5700 P P 1067 401 2024.06.30 23:29:34.358 2024.06.30 23:29:35.425 2024.06.30 22:04:31.271 2024.06.30 22:04:31.672
178 6.0.0.387 2024.06.27 7c28a P P 1028 400 2024.06.27 23:28:30.613 2024.06.27 23:28:31.641 2024.06.27 22:04:09.571 2024.06.27 22:04:09.971
179 6.0.0.386 2024.06.23 7c57f P P 1053 369 2024.06.23 23:25:53.204 2024.06.23 23:25:54.257 2024.06.23 22:02:57.340 2024.06.23 22:02:57.709
180 6.0.0.384 2024.06.21 24d99 P P 1068 381 2024.06.21 23:30:20.041 2024.06.21 23:30:21.109 2024.06.21 22:04:06.132 2024.06.21 22:04:06.513
181 6.0.0.374 2024.06.13 0097d P P 1015 372 2024.06.20 23:28:16.709 2024.06.20 23:28:17.724 2024.06.20 22:03:24.300 2024.06.20 22:03:24.672
182 6.0.0.373 2024.06.09 363f0 P P 754 409 2024.06.13 13:37:52.894 2024.06.13 13:37:53.648 2024.06.13 12:27:06.932 2024.06.13 12:27:07.341
183 6.0.0.371 2024.06.08 f7130 P P 638 363 2024.06.11 22:24:33.876 2024.06.11 22:24:34.514 2024.06.11 21:21:00.305 2024.06.11 21:21:00.668
184 6.0.0.366 2024.05.30 ab2c9 P P 890 255 2024.06.12 09:35:32.767 2024.06.12 09:35:33.657 2024.06.12 07:55:26.668 2024.06.12 07:55:26.923
185 6.0.0.363 2024.05.27 06703 P P 666 259 2024.06.12 14:31:11.256 2024.06.12 14:31:11.922 2024.06.12 13:24:17.570 2024.06.12 13:24:17.829
186 6.0.0.359 2024.05.23 9cb11 P P 675 340 2024.06.12 12:23:20.747 2024.06.12 12:23:21.422 2024.06.12 11:16:53.065 2024.06.12 11:16:53.405
187 6.0.0.358 2024.05.21 995dd P P 680 353 2024.06.12 17:06:07.081 2024.06.12 17:06:07.761 2024.06.12 16:01:22.699 2024.06.12 16:01:23.052
188 6.0.0.357 2024.05.18 bf6c4 P P 736 256 2024.06.12 21:42:34.731 2024.06.12 21:42:35.467 2024.06.12 20:37:33.601 2024.06.12 20:37:33.857
189 6.0.0.356 2024.05.17 eab06 P P 636 317 2024.06.13 05:48:56.857 2024.06.13 05:48:57.493 2024.06.13 04:44:04.312 2024.06.13 04:44:04.629
190 6.0.0.355 2024.05.16 8dd6e P P 667 267 2024.06.13 07:56:38.071 2024.06.13 07:56:38.738 2024.06.13 06:51:49.403 2024.06.13 06:51:49.670
191 6.0.0.354 2024.05.15 d3adc P P 675 385 2024.06.13 11:02:32.180 2024.06.13 11:02:32.855 2024.06.13 09:52:30.084 2024.06.13 09:52:30.469
192 6.0.0.351 2024.05.14 2e3e0 P P 695 391 2024.06.13 16:16:19.678 2024.06.13 16:16:20.373 2024.06.13 15:05:38.788 2024.06.13 15:05:39.179

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):