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

Annotation type Annotation details
2 @message
firebird.qa.plugin.ExecutionError: gbak execution failed

LOG DETAILS:

2025-06-26 08:40:39.744
2025-06-26 08:40:39.748 act_src = <firebird.qa.plugin.Action object at [hex]>
2025-06-26 08:40:39.753 act_res = <firebird.qa.plugin.Action object at [hex]>
2025-06-26 08:40:39.757 tmp_fbk = PosixPath('/var/tmp/qa_2024/test_1877/tmp_core_4524.encrypted.fbk')
2025-06-26 08:40:39.762 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-26 08:40:39.766
2025-06-26 08:40:39.770 @pytest.mark.encryption
2025-06-26 08:40:39.775 @pytest.mark.version('>=4.0')
2025-06-26 08:40:39.779 def test_1(act_src: Action, act_res: Action, tmp_fbk:Path, capsys):
2025-06-26 08:40:39.784
2025-06-26 08:40:39.789 init_sql = """
2025-06-26 08:40:39.793 set bail on;
2025-06-26 08:40:39.797 create sequence gen_ba0bab start with 12192683;
2025-06-26 08:40:39.802 create sequence gen_badf00d start with 195948557;
2025-06-26 08:40:39.806 create sequence gen_caca0  start with 830624;
2025-06-26 08:40:39.811 create sequence gen_c0ffee start with 12648430;
2025-06-26 08:40:39.815 create sequence gen_dec0de start with 14598366;
2025-06-26 08:40:39.820 create sequence gen_decade start with 14600926;
2025-06-26 08:40:39.825 create sequence gen_7FFFFFFF start with 2147483647;
2025-06-26 08:40:39.830 commit;
2025-06-26 08:40:39.835 """
2025-06-26 08:40:39.839
2025-06-26 08:40:39.844 act_src.expected_stdout = ''
2025-06-26 08:40:39.849 act_src.isql(switches = ['-q'], input = init_sql, combine_output = True, io_enc = locale.getpreferredencoding())
2025-06-26 08:40:39.853 assert act_src.clean_stdout == act_src.clean_expected_stdout
2025-06-26 08:40:39.858 act_src.reset()
2025-06-26 08:40:39.862
2025-06-26 08:40:39.866 check_sequence_values=[]
2025-06-26 08:40:39.871 with act_src.db.connect() as con:
2025-06-26 08:40:39.875 with con.cursor() as cur:
2025-06-26 08:40:39.880 get_current_seq_values='''
2025-06-26 08:40:39.885 execute block returns( gen_curr bigint) as
2025-06-26 08:40:39.889 declare gen_name rdb$generator_name;
2025-06-26 08:40:39.894 begin
2025-06-26 08:40:39.898 for
2025-06-26 08:40:39.903 select rdb$generator_name from rdb$generators where rdb$system_flag is distinct from 1 order by rdb$generator_id
2025-06-26 08:40:39.907 into gen_name
2025-06-26 08:40:39.912 do begin
2025-06-26 08:40:39.917 execute statement 'execute block returns(g bigint) as begin g = gen_id('|| gen_name ||', 0); suspend;  end' into gen_curr;
2025-06-26 08:40:39.921 suspend;
2025-06-26 08:40:39.926 end
2025-06-26 08:40:39.930 end
2025-06-26 08:40:39.935 '''
2025-06-26 08:40:39.940
2025-06-26 08:40:39.944 # Obtain current values of user generators:
2025-06-26 08:40:39.949 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2025-06-26 08:40:39.954 cur.execute(get_current_seq_values)
2025-06-26 08:40:39.958 for r in cur:
2025-06-26 08:40:39.963 check_sequence_values += r[0],
2025-06-26 08:40:39.967
2025-06-26 08:40:39.972
2025-06-26 08:40:39.977 # Obtain page size and ID of generators page:
2025-06-26 08:40:39.981 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2025-06-26 08:40:39.986 cur.execute('select m.mon$page_size,min(rdb$page_number) from mon$database m cross join rdb$pages p where p.rdb$page_type = 9 group by 1')
2025-06-26 08:40:39.990 pg_size, gen_page_number = -1,-1
2025-06-26 08:40:39.995 for r in cur:
2025-06-26 08:40:39.999 pg_size=r[0]
2025-06-26 08:40:40.004 gen_page_number=r[1]
2025-06-26 08:40:40.009 # print(r[0],r[1])
2025-06-26 08:40:40.013
2025-06-26 08:40:40.018
2025-06-26 08:40:40.022 # Read gen page, convert it to hex and check whether generator values can be found there or no:
2025-06-26 08:40:40.026 # Expected result: YES for all values because DB not encrypted now.
2025-06-26 08:40:40.031 # ~~~~~~~~~~~~~~~
2025-06-26 08:40:40.035 check_page_for_readable_values(act_src.db.db_path, gen_page_number, pg_size, check_sequence_values, False, 'INIT. ')
2025-06-26 08:40:40.040
2025-06-26 08:40:40.044 act_src.expected_stdout = 'INIT. ' + SUCCESS_MSG
2025-06-26 08:40:40.049 act_src.stdout = capsys.readouterr().out
2025-06-26 08:40:40.054 assert act_src.clean_stdout == act_src.clean_expected_stdout
2025-06-26 08:40:40.058 act_src.reset()
2025-06-26 08:40:40.063
2025-06-26 08:40:40.067 ######################################################
2025-06-26 08:40:40.072
2025-06-26 08:40:40.076 t1=py_dt.datetime.now()
2025-06-26 08:40:40.081 d1 = t1-t1
2025-06-26 08:40:40.086 sttm = f'alter database encrypt with "{ENCRYPTION_PLUGIN}" key "{ENCRYPTION_KEY}"'
2025-06-26 08:40:40.091 try:
2025-06-26 08:40:40.096 con.execute_immediate(sttm)
2025-06-26 08:40:40.102 con.commit()
2025-06-26 08:40:40.107 except DatabaseError as e:
2025-06-26 08:40:40.112 print( e.__str__() )
2025-06-26 08:40:40.117
2025-06-26 08:40:40.122 act_src.expected_stdout = ''
2025-06-26 08:40:40.127 act_src.stdout = capsys.readouterr().out
2025-06-26 08:40:40.132 assert act_src.clean_stdout == act_src.clean_expected_stdout
2025-06-26 08:40:40.138 act_src.reset()
2025-06-26 08:40:40.142
2025-06-26 08:40:40.148 while True:
2025-06-26 08:40:40.159 t2=py_dt.datetime.now()
2025-06-26 08:40:40.170 d1=t2-t1
2025-06-26 08:40:40.180 if d1.seconds*1000 + d1.microseconds//1000 > MAX_WAITING_ENCR_FINISH:
2025-06-26 08:40:40.188 con.execute_immediate(f"select 'TIMEOUT EXPIRATION: encryption took {d1.seconds*1000 + d1.microseconds//1000} ms which exceeds limit = {MAX_WAITING_ENCR_FINISH} ms.' as msg from rdb$database")
2025-06-26 08:40:40.194 break
2025-06-26 08:40:40.206
2025-06-26 08:40:40.219 # Possible output:
2025-06-26 08:40:40.228 #     Database not encrypted
2025-06-26 08:40:40.235 #     Database encrypted, crypt thread not complete
2025-06-26 08:40:40.242 act_src.isql(switches=['-q'], input = 'show database;', combine_output = True)
2025-06-26 08:40:40.247 if 'Database encrypted' in act_src.stdout:
2025-06-26 08:40:40.252 if 'not complete' in act_src.stdout:
2025-06-26 08:40:40.256 pass
2025-06-26 08:40:40.261 else:
2025-06-26 08:40:40.270 break
2025-06-26 08:40:40.283 act_src.reset()
2025-06-26 08:40:40.292
2025-06-26 08:40:40.300 if d1.seconds*1000 + d1.microseconds//1000 <= MAX_WAITING_ENCR_FINISH:
2025-06-26 08:40:40.307 act_src.reset()
2025-06-26 08:40:40.319 act_src.gstat(switches=['-e'])
2025-06-26 08:40:40.329
2025-06-26 08:40:40.339 # Data pages: total 884803, encrypted 884803, non-crypted 0
2025-06-26 08:40:40.349 # ...
2025-06-26 08:40:40.357 pattern = re.compile('(data|index|blob|generator)\\s+pages[:]{0,1}\\s+total[:]{0,1}\\s+\\d+[,]{0,1}\\s+encrypted[:]{0,1}\\s+\\d+.*[,]{0,1}non-crypted[:]{0,1}\\s+\\d+.*', re.IGNORECASE)
2025-06-26 08:40:40.364 for line in act_src.stdout.splitlines():
2025-06-26 08:40:40.371 if pattern.match(line.strip()):
2025-06-26 08:40:40.377 # We assume that every line finishes with number of NON-crypted pages, and this number must be 0:
2025-06-26 08:40:40.383 words = line.split()
2025-06-26 08:40:40.396 if words[-1] == '0':
2025-06-26 08:40:40.407 print(words[0] + ': expected, ' +  words[-1])
2025-06-26 08:40:40.415 else:
2025-06-26 08:40:40.423 print(words[0] + ': UNEXPECTED, ' +  words[-1])
2025-06-26 08:40:40.433
2025-06-26 08:40:40.444 expected_gstat_tail = """
2025-06-26 08:40:40.454 Data: expected, 0
2025-06-26 08:40:40.462 Index: expected, 0
2025-06-26 08:40:40.469 Blob: expected, 0
2025-06-26 08:40:40.475 Generator: expected, 0
2025-06-26 08:40:40.482 """
2025-06-26 08:40:40.489 act_src.expected_stdout = expected_gstat_tail
2025-06-26 08:40:40.496 act_src.stdout = capsys.readouterr().out
2025-06-26 08:40:40.503 assert act_src.clean_stdout == act_src.clean_expected_stdout
2025-06-26 08:40:40.508 act_src.reset()
2025-06-26 08:40:40.515
2025-06-26 08:40:40.521 else:
2025-06-26 08:40:40.533 print(f'TIMEOUT EXPIRATION: encryption took {d1.seconds*1000 + d1.microseconds//1000} ms which exceeds limit = {MAX_WAITING_ENCR_FINISH} ms.')
2025-06-26 08:40:40.543
2025-06-26 08:40:40.551 ######################################################
2025-06-26 08:40:40.558
2025-06-26 08:40:40.563 # see also core_6071_test.py:
2025-06-26 08:40:40.568 act_src.gbak(switches=['-b', '-KEYHOLDER', ENCRYPTION_HOLDER, '-crypt', ENCRYPTION_PLUGIN, act_src.db.dsn, str(tmp_fbk)])
2025-06-26 08:40:40.573 act_src.reset()
2025-06-26 08:40:40.577
2025-06-26 08:40:40.582 >           act_src.gbak(switches=['-rep', '-KEYHOLDER', ENCRYPTION_HOLDER, str(tmp_fbk), act_res.db.dsn ])
2025-06-26 08:40:40.588 E           firebird.qa.plugin.ExecutionError: gbak execution failed
2025-06-26 08:40:40.597
2025-06-26 08:40:40.609 tests/bugs/core_4524_test.py:251: ExecutionError
2025-06-26 08:40:40.618 ---------------------------- Captured stdout setup -----------------------------
2025-06-26 08:40:40.626 Creating db: localhost:/var/tmp/qa_2024/test_1877/test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
2025-06-26 08:40:40.635 Creating db: localhost:/var/tmp/qa_2024/test_1877/tmp_core_4524.restored.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
2025-06-26 08:40:40.645 -------------------------- Captured gbak stderr call ---------------------------
2025-06-26 08:40:40.654 gbak: ERROR:Problems with just created database encryption
2025-06-26 08:40:40.662 gbak:Exiting before completion due to errors
3 #text
act_src = <firebird.qa.plugin.Action pytest object at [hex]>
act_res = <firebird.qa.plugin.Action pytest object at [hex]>
tmp_fbk = PosixPath('/var/tmp/qa_2024/test_1877/tmp_core_4524.encrypted.fbk')
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.encryption
    @pytest.mark.version('>=4.0')
    def test_1(act_src: Action, act_res: Action, tmp_fbk:Path, capsys):
    
        init_sql = """
            set bail on;
            create sequence gen_ba0bab start with 12192683;
            create sequence gen_badf00d start with 195948557;
            create sequence gen_caca0  start with 830624;
            create sequence gen_c0ffee start with 12648430;
            create sequence gen_dec0de start with 14598366;
            create sequence gen_decade start with 14600926;
            create sequence gen_7FFFFFFF start with 2147483647;
            commit;
        """
    
        act_src.expected_stdout = ''
        act_src.isql(switches = ['-q'], input = init_sql, combine_output = True, io_enc = locale.getpreferredencoding())
        assert act_src.clean_stdout == act_src.clean_expected_stdout
        act_src.reset()
    
        check_sequence_values=[]
        with act_src.db.connect() as con:
            with con.cursor() as cur:
                get_current_seq_values='''
                    execute block returns( gen_curr bigint) as
                        declare gen_name rdb$generator_name;
                    begin
                        for
                            select rdb$generator_name from rdb$generators where rdb$system_flag is distinct from 1 order by rdb$generator_id
                            into gen_name
                        do begin
                            execute statement 'execute block returns(g bigint) as begin g = gen_id('|| gen_name ||', 0); suspend;  end' into gen_curr;
                            suspend;
                        end
                    end
                '''
    
                # Obtain current values of user generators:
                # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                cur.execute(get_current_seq_values)
                for r in cur:
                    check_sequence_values += r[0],
    
    
                # Obtain page size and ID of generators page:
                # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                cur.execute('select m.mon$page_size,min(rdb$page_number) from mon$database m cross join rdb$pages p where p.rdb$page_type = 9 group by 1')
                pg_size, gen_page_number = -1,-1
                for r in cur:
                    pg_size=r[0]
                    gen_page_number=r[1]
                    # print(r[0],r[1])
    
    
            # Read gen page, convert it to hex and check whether generator values can be found there or no:
            # Expected result: YES for all values because DB not encrypted now.
            # ~~~~~~~~~~~~~~~
            check_page_for_readable_values(act_src.db.db_path, gen_page_number, pg_size, check_sequence_values, False, 'INIT. ')
    
            act_src.expected_stdout = 'INIT. ' + SUCCESS_MSG
            act_src.stdout = capsys.readouterr().out
            assert act_src.clean_stdout == act_src.clean_expected_stdout
            act_src.reset()
    
            ######################################################
    
            t1=py_dt.datetime.now()
            d1 = t1-t1
            sttm = f'alter database encrypt with "{ENCRYPTION_PLUGIN}" key "{ENCRYPTION_KEY}"'
            try:
                con.execute_immediate(sttm)
                con.commit()
            except DatabaseError as e:
                print( e.__str__() )
    
            act_src.expected_stdout = ''
            act_src.stdout = capsys.readouterr().out
            assert act_src.clean_stdout == act_src.clean_expected_stdout
            act_src.reset()
    
            while True:
                t2=py_dt.datetime.now()
                d1=t2-t1
                if d1.seconds*1000 + d1.microseconds//1000 > MAX_WAITING_ENCR_FINISH:
                    con.execute_immediate(f"select 'TIMEOUT EXPIRATION: encryption took {d1.seconds*1000 + d1.microseconds//1000} ms which exceeds limit = {MAX_WAITING_ENCR_FINISH} ms.' as msg from rdb$database")
                    break
    
                # Possible output:
                #     Database not encrypted
                #     Database encrypted, crypt thread not complete
                act_src.isql(switches=['-q'], input = 'show database;', combine_output = True)
                if 'Database encrypted' in act_src.stdout:
                    if 'not complete' in act_src.stdout:
                        pass
                    else:
                        break
                act_src.reset()
    
            if d1.seconds*1000 + d1.microseconds//1000 <= MAX_WAITING_ENCR_FINISH:
                act_src.reset()
                act_src.gstat(switches=['-e'])
    
                # Data pages: total 884803, encrypted 884803, non-crypted 0
                # ...
                pattern = re.compile('(data|index|blob|generator)\\s+pages[:]{0,1}\\s+total[:]{0,1}\\s+\\d+[,]{0,1}\\s+encrypted[:]{0,1}\\s+\\d+.*[,]{0,1}non-crypted[:]{0,1}\\s+\\d+.*', re.IGNORECASE)
                for line in act_src.stdout.splitlines():
                    if pattern.match(line.strip()):
                        # We assume that every line finishes with number of NON-crypted pages, and this number must be 0:
                        words = line.split()
                        if words[-1] == '0':
                            print(words[0] + ': expected, ' +  words[-1])
                        else:
                            print(words[0] + ': UNEXPECTED, ' +  words[-1])
    
                expected_gstat_tail = """
                    Data: expected, 0
                    Index: expected, 0
                    Blob: expected, 0
                    Generator: expected, 0
                """
                act_src.expected_stdout = expected_gstat_tail
                act_src.stdout = capsys.readouterr().out
                assert act_src.clean_stdout == act_src.clean_expected_stdout
                act_src.reset()
    
            else:
                print(f'TIMEOUT EXPIRATION: encryption took {d1.seconds*1000 + d1.microseconds//1000} ms which exceeds limit = {MAX_WAITING_ENCR_FINISH} ms.')
    
            ######################################################
    
            # see also core_6071_test.py:
            act_src.gbak(switches=['-b', '-KEYHOLDER', ENCRYPTION_HOLDER, '-crypt', ENCRYPTION_PLUGIN, act_src.db.dsn, str(tmp_fbk)])
            act_src.reset()
    
>           act_src.gbak(switches=['-rep', '-KEYHOLDER', ENCRYPTION_HOLDER, str(tmp_fbk), act_res.db.dsn ])
E           firebird.qa.plugin.ExecutionError: gbak execution failed

tests/bugs/core_4524_test.py:251: ExecutionError
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 5.0.3.1675 2025.06.27 1bb2c P P 2520 1507 2025.07.01 05:14:05.420 2025.07.01 05:14:07.940 2025.07.01 04:01:09.799 2025.07.01 04:01:11.306
2 5.0.3.1674 2025.06.26 d366d P P 2396 1574 2025.06.27 04:32:22.489 2025.06.27 04:32:24.885 2025.06.27 03:20:44.363 2025.06.27 03:20:45.937
3 5.0.3.1673 2025.06.25 f0e1f F F 12039 11164 2025.06.26 04:36:48.397 2025.06.26 04:37:00.436 2025.06.26 03:24:31.180 2025.06.26 03:24:42.344
4 5.0.3.1668 2025.06.21 b8e22 P P 2344 1476 2025.06.25 04:35:48.520 2025.06.25 04:35:50.864 2025.06.25 03:23:37.002 2025.06.25 03:23:38.478
5 5.0.3.1667 2025.06.15 4374a P P 2487 1555 2025.06.21 04:17:12.791 2025.06.21 04:17:15.278 2025.06.21 03:03:43.512 2025.06.21 03:03:45.067
6 5.0.3.1666 2025.06.14 97178 P P 2455 1578 2025.06.15 04:44:05.906 2025.06.15 04:44:08.361 2025.06.15 03:31:02.960 2025.06.15 03:31:04.538
7 5.0.3.1665 2025.06.11 d8b62 P P 2514 1688 2025.06.14 05:02:55.254 2025.06.14 05:02:57.768 2025.06.14 03:46:08.494 2025.06.14 03:46:10.182
8 5.0.3.1661 2025.06.10 cfcf0 P P 2758 1705 2025.06.11 03:28:36.314 2025.06.11 03:28:39.072 2025.06.11 02:06:10.217 2025.06.11 02:06:11.922
9 5.0.3.1660 2025.06.07 db691 P P 2775 1735 2025.06.10 03:27:02.388 2025.06.10 03:27:05.163 2025.06.10 02:03:54.026 2025.06.10 02:03:55.761
10 5.0.3.1659 2025.05.28 f4c0f P P 2791 1721 2025.06.06 03:24:48.198 2025.06.06 03:24:50.989 2025.06.06 02:01:21.074 2025.06.06 02:01:22.795
11 5.0.3.1658 2025.05.27 e3aa4 P P 3032 1734 2025.05.28 03:39:25.930 2025.05.28 03:39:28.962 2025.05.28 02:15:09.768 2025.05.28 02:15:11.502
12 5.0.3.1657 2025.05.22 a6c19 P P 2968 1727 2025.05.25 03:29:39.251 2025.05.25 03:29:42.219 2025.05.25 02:06:06.857 2025.05.25 02:06:08.584
13 5.0.3.1656 2025.05.12 37a12 P P 2929 1797 2025.05.21 03:26:10.715 2025.05.21 03:26:13.644 2025.05.21 02:02:32.851 2025.05.21 02:02:34.648
14 5.0.3.1654 2025.05.11 789ca P P 2875 1708 2025.05.12 03:05:45.113 2025.05.12 03:05:47.988 2025.05.12 01:40:55.705 2025.05.12 01:40:57.413
15 5.0.3.1653 2025.05.07 8e48a P P 2843 1675 2025.05.08 03:03:16.538 2025.05.08 03:03:19.381 2025.05.08 01:40:53.045 2025.05.08 01:40:54.720
16 5.0.3.1652 2025.05.06 1de2f P P 2808 1740 2025.05.07 03:02:23.828 2025.05.07 03:02:26.636 2025.05.07 01:40:39.141 2025.05.07 01:40:40.881
17 5.0.3.1651 2025.05.05 c8191 P P 2670 1777 2025.05.06 03:00:58.286 2025.05.06 03:01:00.956 2025.05.06 01:38:51.578 2025.05.06 01:38:53.355
18 5.0.3.1650 2025.04.23 41dca P P 2703 1679 2025.05.01 02:53:37.758 2025.05.01 02:53:40.461 2025.05.01 01:30:49.479 2025.05.01 01:30:51.158
19 5.0.3.1649 2025.04.18 da7bd P P 2681 1682 2025.04.23 03:09:41.138 2025.04.23 03:09:43.819 2025.04.23 01:46:59.684 2025.04.23 01:47:01.366
20 5.0.3.1648 2025.04.17 a54ad P P 2736 1814 2025.04.18 03:02:04.125 2025.04.18 03:02:06.861 2025.04.18 01:39:09.628 2025.04.18 01:39:11.442
21 5.0.3.1647 2025.04.14 8993a P P 2809 1715 2025.04.17 02:53:56.169 2025.04.17 02:53:58.978 2025.04.17 01:32:26.883 2025.04.17 01:32:28.598
22 5.0.3.1646 2025.04.13 60c64 P P 2667 1717 2025.04.14 02:27:00.923 2025.04.14 02:27:03.590 2025.04.14 01:10:07.146 2025.04.14 01:10:08.863
23 5.0.3.1643 2025.04.11 a5179 P P 2568 1696 2025.04.13 02:20:43.930 2025.04.13 02:20:46.498 2025.04.13 01:03:58.266 2025.04.13 01:03:59.962
24 5.0.3.1642 2025.04.09 9dc39 P P 2434 1637 2025.04.11 02:23:40.388 2025.04.11 02:23:42.822 2025.04.11 01:06:29.216 2025.04.11 01:06:30.853
25 5.0.3.1641 2025.04.02 59e25 P P 2681 1648 2025.04.09 02:42:49.189 2025.04.09 02:42:51.870 2025.04.09 01:22:33.441 2025.04.09 01:22:35.089
26 5.0.3.1639 2025.03.31 67152 P P 2593 1660 2025.04.01 02:25:57.793 2025.04.01 02:26:00.386 2025.04.01 01:06:55.223 2025.04.01 01:06:56.883
27 5.0.3.1638 2025.03.28 6579c P P 2793 1622 2025.03.31 02:27:53.421 2025.03.31 02:27:56.214 2025.03.31 01:09:41.109 2025.03.31 01:09:42.731
28 5.0.3.1636 2025.03.26 725be P P 2719 1614 2025.03.28 02:51:48.251 2025.03.28 02:51:50.970 2025.03.28 01:32:14.936 2025.03.28 01:32:16.550
29 5.0.3.1635 2025.03.24 9363e P P 2578 1528 2025.03.25 02:34:13.182 2025.03.25 02:34:15.760 2025.03.25 01:19:07.203 2025.03.25 01:19:08.731
30 5.0.3.1634 2025.03.20 be406 P P 2877 1679 2025.03.24 02:57:28.843 2025.03.24 02:57:31.720 2025.03.24 01:33:26.070 2025.03.24 01:33:27.749
31 5.0.3.1632 2025.03.13 10216 P P 812 482 2025.03.19 13:28:36.177 2025.03.19 13:28:36.989 2025.03.19 12:01:04.231 2025.03.19 12:01:04.713
32 5.0.3.1631 2025.03.12 34a04 P P 812 452 2025.03.13 02:48:22.821 2025.03.13 02:48:23.633 2025.03.13 01:24:54.100 2025.03.13 01:24:54.552
33 5.0.3.1630 2025.03.07 81e0d P P 755 418 2025.03.11 02:17:02.566 2025.03.11 02:17:03.321 2025.03.11 00:58:32.767 2025.03.11 00:58:33.185
34 5.0.3.1629 2025.03.05 a6fa2 P P 751 438 2025.03.06 02:24:07.895 2025.03.06 02:24:08.646 2025.03.06 01:04:43.602 2025.03.06 01:04:44.040
35 5.0.3.1628 2025.03.04 d7ecb P P 682 415 2025.03.05 02:18:00.927 2025.03.05 02:18:01.609 2025.03.05 00:58:40.643 2025.03.05 00:58:41.058
36 5.0.3.1627 2025.02.26 5e33d P P 851 444 2025.03.03 03:07:28.381 2025.03.03 03:07:29.232 2025.03.03 01:40:34.708 2025.03.03 01:40:35.152
37 5.0.3.1626 2025.02.25 2d71d P P 707 410 2025.02.26 02:19:10.620 2025.02.26 02:19:11.327 2025.02.26 01:00:59.429 2025.02.26 01:00:59.839
38 5.0.3.1624 2025.02.24 b01e1 P P 755 389 2025.02.25 02:32:09.563 2025.02.25 02:32:10.318 2025.02.25 01:10:41.905 2025.02.25 01:10:42.294
39 5.0.3.1622 2025.02.22 c1a51 P P 874 475 2025.02.24 10:03:25.646 2025.02.24 10:03:26.520 2025.02.24 08:34:00.861 2025.02.24 08:34:01.336
40 5.0.3.1619 2025.02.21 81c5f P P 816 431 2025.02.22 02:28:07.168 2025.02.22 02:28:07.984 2025.02.22 01:08:16.045 2025.02.22 01:08:16.476
41 5.0.3.1617 2025.02.18 33201 P P 719 374 2025.02.19 02:16:35.712 2025.02.19 02:16:36.431 2025.02.19 00:56:47.901 2025.02.19 00:56:48.275
42 5.0.3.1616 2025.02.14 29b24 P P 1253 435 2025.02.14 23:09:03.039 2025.02.14 23:09:04.292 2025.02.14 21:33:08.463 2025.02.14 21:33:08.898
43 5.0.2.1615 2025.02.13 78c6a P P 764 432 2025.02.14 02:42:58.251 2025.02.14 02:42:59.015 2025.02.14 01:18:03.276 2025.02.14 01:18:03.708
44 5.0.2.1614 2025.02.12 8bc05 P P 724 469 2025.02.13 02:46:11.501 2025.02.13 02:46:12.225 2025.02.13 01:22:53.042 2025.02.13 01:22:53.511
45 5.0.2.1613 2025.02.11 f6d53 P P 700 428 2025.02.12 02:34:36.087 2025.02.12 02:34:36.787 2025.02.12 01:13:17.546 2025.02.12 01:13:17.974
46 5.0.2.1611 2025.02.05 28ae6 P P 704 424 2025.02.08 02:34:16.014 2025.02.08 02:34:16.718 2025.02.08 01:11:32.936 2025.02.08 01:11:33.360
47 5.0.2.1610 2025.02.03 5e63a P P 714 484 2025.02.05 02:41:56.225 2025.02.05 02:41:56.939 2025.02.05 01:19:13.479 2025.02.05 01:19:13.963
48 5.0.2.1606 2025.02.01 90e37 P P 768 431 2025.02.02 02:26:14.771 2025.02.02 02:26:15.539 2025.02.02 01:05:43.646 2025.02.02 01:05:44.077
49 5.0.2.1605 2025.01.31 9f60e P P 898 435 2025.01.31 23:05:53.732 2025.01.31 23:05:54.630 2025.01.31 21:33:04.783 2025.01.31 21:33:05.218
50 5.0.2.1604 2025.01.27 aca12 P P 701 414 2025.01.28 02:39:53.064 2025.01.28 02:39:53.765 2025.01.28 01:17:01.061 2025.01.28 01:17:01.475
51 5.0.2.1602 2025.01.24 7db8e P P 742 429 2025.01.25 02:37:06.896 2025.01.25 02:37:07.638 2025.01.25 01:15:50.960 2025.01.25 01:15:51.389
52 5.0.2.1601 2025.01.21 f0949 P P 729 437 2025.01.24 02:37:03.269 2025.01.24 02:37:03.998 2025.01.24 01:15:03.678 2025.01.24 01:15:04.115
53 5.0.2.1597 2025.01.20 4a631 P P 757 449 2025.01.21 02:30:35.767 2025.01.21 02:30:36.524 2025.01.21 01:10:05.143 2025.01.21 01:10:05.592
54 5.0.2.1595 2025.01.17 85d82 P P 807 428 2025.01.20 02:28:37.960 2025.01.20 02:28:38.767 2025.01.20 01:08:58.792 2025.01.20 01:08:59.220
55 5.0.2.1593 2025.01.16 03e5b P P 673 423 2025.01.17 02:26:15.453 2025.01.17 02:26:16.126 2025.01.17 01:06:04.121 2025.01.17 01:06:04.544
56 5.0.2.1592 2025.01.15 2d117 P P 803 478 2025.01.16 02:29:46.093 2025.01.16 02:29:46.896 2025.01.16 01:09:32.355 2025.01.16 01:09:32.833
57 5.0.2.1590 2025.01.14 9d7f7 P P 677 398 2025.01.15 02:31:16.726 2025.01.15 02:31:17.403 2025.01.15 01:09:56.467 2025.01.15 01:09:56.865
58 5.0.2.1589 2025.01.13 41a98 P P 792 390 2025.01.14 02:33:36.274 2025.01.14 02:33:37.066 2025.01.14 01:12:23.067 2025.01.14 01:12:23.457
59 5.0.2.1585 2025.01.11 03974 P P 1231 507 2025.01.11 23:07:20.498 2025.01.11 23:07:21.729 2025.01.11 21:33:20.560 2025.01.11 21:33:21.067
60 5.0.2.1584 2025.01.09 5d7be P P 629 432 2025.01.09 23:06:30.203 2025.01.09 23:06:30.832 2025.01.09 21:32:59.946 2025.01.09 21:33:00.378
61 5.0.2.1583 2024.12.23 89a88 P P 596 324 2025.01.01 01:39:35.946 2025.01.01 01:39:36.542 2025.01.01 00:36:49.176 2025.01.01 00:36:49.500
62 5.0.2.1582 2024.12.19 4a676 P P 588 330 2024.12.21 14:46:22.522 2024.12.21 14:46:23.110 2024.12.21 13:43:29.883 2024.12.21 13:43:30.213
63 5.0.2.1580 2024.12.13 fca2e P P 617 380 2024.12.16 01:49:10.895 2024.12.16 01:49:11.512 2024.12.16 00:36:09.885 2024.12.16 00:36:10.265
64 5.0.2.1579 2024.12.12 a7248 P P 1152 319 2024.12.12 22:44:35.743 2024.12.12 22:44:36.895 2024.12.12 21:29:27.466 2024.12.12 21:29:27.785
65 5.0.2.1577 2024.12.11 b36f2 P P 600 332 2024.12.12 10:29:58.142 2024.12.12 10:29:58.742 2024.12.12 09:26:24.439 2024.12.12 09:26:24.771
66 5.0.2.1576 2024.12.10 a93ab P P 575 341 2024.12.11 01:37:22.594 2024.12.11 01:37:23.169 2024.12.11 00:32:57.463 2024.12.11 00:32:57.804
67 5.0.2.1575 2024.12.08 59b01 P P 607 365 2024.12.09 01:27:43.745 2024.12.09 01:27:44.352 2024.12.09 00:26:30.360 2024.12.09 00:26:30.725
68 5.0.2.1571 2024.12.02 4b154 P P 578 332 2024.12.04 01:28:00.055 2024.12.04 01:28:00.633 2024.12.04 00:26:34.787 2024.12.04 00:26:35.119
69 5.0.2.1570 2024.11.28 7a891 P P 585 349 2024.11.30 01:40:44.765 2024.11.30 01:40:45.350 2024.11.30 00:38:08.375 2024.11.30 00:38:08.724
70 5.0.2.1569 2024.11.25 6e45d P P 644 340 2024.11.27 01:20:23.497 2024.11.27 01:20:24.141 2024.11.27 00:20:23.122 2024.11.27 00:20:23.462
71 5.0.2.1567 2024.11.16 9fbd5 P P 1016 328 2024.11.22 22:40:54.806 2024.11.22 22:40:55.822 2024.11.22 21:29:13.298 2024.11.22 21:29:13.626
72 5.0.2.1566 2024.11.15 6db71 P P 610 325 2024.11.16 03:17:26.757 2024.11.16 03:17:27.367 2024.11.16 02:17:56.863 2024.11.16 02:17:57.188
73 5.0.2.1565 2024.11.14 d5fa4 P P 581 348 2024.11.15 03:23:34.045 2024.11.15 03:23:34.626 2024.11.15 02:22:16.677 2024.11.15 02:22:17.025
74 5.0.2.1564 2024.11.12 6866e P P 591 348 2024.11.14 03:24:04.900 2024.11.14 03:24:05.491 2024.11.14 02:22:36.733 2024.11.14 02:22:37.081
75 5.0.2.1561 2024.11.08 ae88c P P 582 321 2024.11.10 15:55:45.943 2024.11.10 15:55:46.525 2024.11.10 14:54:40.702 2024.11.10 14:54:41.023
76 5.0.2.1560 2024.11.07 98836 P P 579 493 2024.11.08 03:19:03.866 2024.11.08 03:19:04.445 2024.11.08 02:10:04.837 2024.11.08 02:10:05.330
77 5.0.2.1555 2024.11.06 0c5eb P P 1054 359 2024.11.07 00:36:47.184 2024.11.07 00:36:48.238 2024.11.06 23:28:28.948 2024.11.06 23:28:29.307
78 5.0.2.1553 2024.11.04 1eacd P P 566 345 2024.11.05 03:12:00.637 2024.11.05 03:12:01.203 2024.11.05 02:12:15.258 2024.11.05 02:12:15.603
79 5.0.2.1551 2024.10.30 53a92 P P 578 321 2024.11.04 03:14:52.345 2024.11.04 03:14:52.923 2024.11.04 02:14:47.886 2024.11.04 02:14:48.207
80 5.0.2.1550 2024.10.29 9eecd P P 555 337 2024.10.30 03:19:47.378 2024.10.30 03:19:47.933 2024.10.30 02:17:35.811 2024.10.30 02:17:36.148
81 5.0.2.1547 2024.10.24 1e08f P P 569 301 2024.10.29 03:15:40.208 2024.10.29 03:15:40.777 2024.10.29 02:15:27.592 2024.10.29 02:15:27.893
82 5.0.2.1542 2024.10.23 7d501 P P 1002 326 2024.10.24 00:40:04.191 2024.10.24 00:40:05.193 2024.10.23 23:28:57.074 2024.10.23 23:28:57.400
83 5.0.2.1539 2024.10.22 a7912 P P 643 385 2024.10.23 03:23:50.382 2024.10.23 03:23:51.025 2024.10.23 02:21:30.922 2024.10.23 02:21:31.307
84 5.0.2.1537 2024.10.21 e5b4a P P 666 288 2024.10.22 03:31:39.630 2024.10.22 03:31:40.296 2024.10.22 02:27:58.336 2024.10.22 02:27:58.624
85 5.0.2.1535 2024.10.17 a153b P P 578 346 2024.10.18 03:21:34.610 2024.10.18 03:21:35.188 2024.10.18 02:19:38.880 2024.10.18 02:19:39.226
86 5.0.2.1532 2024.10.14 40552 P P 638 269 2024.10.15 03:15:58.124 2024.10.15 03:15:58.762 2024.10.15 02:14:55.332 2024.10.15 02:14:55.601
87 5.0.2.1530 2024.10.11 2d8e7 P P 642 497 2024.10.12 03:27:47.140 2024.10.12 03:27:47.782 2024.10.12 02:24:14.456 2024.10.12 02:24:14.953
88 5.0.2.1529 2024.10.09 57afb P P 606 408 2024.10.10 03:38:38.414 2024.10.10 03:38:39.020 2024.10.10 02:34:25.349 2024.10.10 02:34:25.757
89 5.0.2.1528 2024.10.06 ce72c P P 623 335 2024.10.07 03:37:43.819 2024.10.07 03:37:44.442 2024.10.07 02:33:23.738 2024.10.07 02:33:24.073
90 5.0.2.1526 2024.10.05 e1874 P P 1135 338 2024.10.06 00:47:10.010 2024.10.06 00:47:11.145 2024.10.05 23:30:07.487 2024.10.05 23:30:07.825
91 5.0.2.1525 2024.10.02 02d09 P P 697 396 2024.10.03 03:31:37.379 2024.10.03 03:31:38.076 2024.10.03 02:29:10.880 2024.10.03 02:29:11.276
92 5.0.2.1520 2024.09.30 fc48a P P 626 351 2024.10.01 03:21:46.456 2024.10.01 03:21:47.082 2024.10.01 02:20:43.811 2024.10.01 02:20:44.162
93 5.0.2.1519 2024.09.26 4e350 P P 564 323 2024.09.30 03:22:46.857 2024.09.30 03:22:47.421 2024.09.30 02:20:26.024 2024.09.30 02:20:26.347
94 5.0.2.1518 2024.09.25 f88f0 P P 666 344 2024.09.26 01:28:43.495 2024.09.26 01:28:44.161 2024.09.26 00:25:49.225 2024.09.26 00:25:49.569
95 5.0.2.1516 2024.09.23 fe6ba P P 594 383 2024.09.25 01:28:24.459 2024.09.25 01:28:25.053 2024.09.25 00:25:36.022 2024.09.25 00:25:36.405
96 5.0.2.1513 2024.09.21 ade6b P P 654 280 2024.09.23 01:28:20.886 2024.09.23 01:28:21.540 2024.09.23 00:24:43.214 2024.09.23 00:24:43.494
97 5.0.2.1512 2024.09.20 66b5f P P 600 284 2024.09.21 01:24:48.571 2024.09.21 01:24:49.171 2024.09.21 00:22:22.309 2024.09.21 00:22:22.593
98 5.0.2.1509 2024.09.19 f0aec P P 1101 358 2024.09.19 22:41:45.764 2024.09.19 22:41:46.865 2024.09.19 21:29:27.281 2024.09.19 21:29:27.639
99 5.0.2.1508 2024.09.18 1ea82 P P 1084 389 2024.09.18 22:42:03.344 2024.09.18 22:42:04.428 2024.09.18 21:29:59.848 2024.09.18 21:30:00.237
100 5.0.2.1502 2024.09.16 0799c P P 983 536 2024.09.17 02:38:59.420 2024.09.17 02:39:00.403 2024.09.17 01:06:20.344 2024.09.17 01:06:20.880
101 5.0.2.1500 2024.09.14 ce3a9 P P 1023 568 2024.09.16 02:38:25.354 2024.09.16 02:38:26.377 2024.09.16 01:05:23.740 2024.09.16 01:05:24.308
102 5.0.2.1499 2024.09.09 00c00 P P 996 580 2024.09.14 02:37:41.915 2024.09.14 02:37:42.911 2024.09.14 01:05:21.315 2024.09.14 01:05:21.895
103 5.0.2.1497 2024.09.06 7eaa5 P P 809 602 2024.09.06 23:10:57.272 2024.09.06 23:10:58.081 2024.09.06 21:35:38.617 2024.09.06 21:35:39.219
104 5.0.2.1496 2024.09.04 38c3f P P 944 605 2024.09.06 02:45:27.717 2024.09.06 02:45:28.661 2024.09.06 01:13:01.045 2024.09.06 01:13:01.650
105 5.0.2.1493 2024.09.02 22e33 P P 977 550 2024.09.04 04:07:24.669 2024.09.04 04:07:25.646 2024.09.04 02:26:33.969 2024.09.04 02:26:34.519
106 5.0.2.1489 2024.08.30 c185d P P 960 540 2024.09.02 03:26:47.396 2024.09.02 03:26:48.356 2024.09.02 01:49:08.480 2024.09.02 01:49:09.020
107 5.0.2.1488 2024.08.28 c395a P P 1017 572 2024.08.30 03:25:17.854 2024.08.30 03:25:18.871 2024.08.30 01:58:11.591 2024.08.30 01:58:12.163
108 5.0.2.1487 2024.08.27 8d46b P P 1192 1082 2024.08.28 06:47:11.050 2024.08.28 06:47:12.242 2024.08.28 04:21:49.210 2024.08.28 04:21:50.292
109 5.0.2.1486 2024.08.26 5af13 P P 947 593 2024.08.27 02:25:32.830 2024.08.27 02:25:33.777 2024.08.27 00:58:50.575 2024.08.27 00:58:51.168
110 5.0.2.1485 2024.08.25 6ef87 P P 1099 576 2024.08.25 23:14:13.046 2024.08.25 23:14:14.145 2024.08.25 21:35:35.129 2024.08.25 21:35:35.705
111 5.0.2.1484 2024.08.24 86dc3 P P 1317 569 2024.08.25 00:15:08.574 2024.08.25 00:15:09.891 2024.08.24 21:46:29.836 2024.08.24 21:46:30.405
112 5.0.2.1483 2024.08.23 42003 P P 1651 1145 2024.08.24 04:48:21.288 2024.08.24 04:48:22.939 2024.08.24 02:42:19.466 2024.08.24 02:42:20.611
113 5.0.2.1482 2024.08.21 e40e4 P P 1410 580 2024.08.22 04:09:35.120 2024.08.22 04:09:36.530 2024.08.22 02:29:31.548 2024.08.22 02:29:32.128
114 5.0.2.1481 2024.08.20 fc710 P P 1167 599 2024.08.21 03:00:35.245 2024.08.21 03:00:36.412 2024.08.21 01:26:07.924 2024.08.21 01:26:08.523
115 5.0.2.1479 2024.08.17 47aa3 P P 706 437 2024.08.19 01:36:52.294 2024.08.19 01:36:53.000 2024.08.19 00:28:16.247 2024.08.19 00:28:16.684
116 5.0.2.1478 2024.08.11 32ebc P P 794 519 2024.08.16 01:32:04.790 2024.08.16 01:32:05.584 2024.08.16 00:24:45.217 2024.08.16 00:24:45.736
117 5.0.2.1477 2024.08.09 57382 P P 793 489 2024.08.10 01:34:06.390 2024.08.10 01:34:07.183 2024.08.10 00:28:03.531 2024.08.10 00:28:04.020
118 5.0.1.1476 2024.08.08 ce100 P P 744 486 2024.08.09 01:30:48.115 2024.08.09 01:30:48.859 2024.08.09 00:24:25.547 2024.08.09 00:24:26.033
119 5.0.1.1475 2024.08.06 eda8d P P 829 464 2024.08.08 14:07:59.602 2024.08.08 14:08:00.431 2024.08.08 13:01:41.232 2024.08.08 13:01:41.696
120 5.0.1.1473 2024.08.05 24ee5 P P 494 313 2024.08.06 01:02:00.697 2024.08.06 01:02:01.191 2024.08.06 00:04:12.700 2024.08.06 00:04:13.013
121 5.0.1.1469 2024.08.01 1d792 P P 532 260 2024.08.05 01:05:35.397 2024.08.05 01:05:35.929 2024.08.05 00:07:28.227 2024.08.05 00:07:28.487
122 5.0.1.1464 2024.07.31 d1033 P P 455 351 2024.08.01 01:02:51.036 2024.08.01 01:02:51.491 2024.08.01 00:05:39.727 2024.08.01 00:05:40.078
123 5.0.1.1453 2024.07.27 62ee5 P P 464 213 2024.07.30 01:01:10.388 2024.07.30 01:01:10.852 2024.07.30 00:04:16.216 2024.07.30 00:04:16.429
124 5.0.1.1452 2024.07.26 b056f P P 487 201 2024.07.27 00:57:51.736 2024.07.27 00:57:52.223 2024.07.27 00:02:15.223 2024.07.27 00:02:15.424
125 5.0.1.1446 2024.07.24 50c74 P P 519 196 2024.07.25 00:58:56.769 2024.07.25 00:58:57.288 2024.07.25 00:01:37.474 2024.07.25 00:01:37.670
126 5.0.1.1445 2024.07.23 9ccd8 P P 548 233 2024.07.24 01:04:10.173 2024.07.24 01:04:10.721 2024.07.24 00:07:07.175 2024.07.24 00:07:07.408
127 5.0.1.1440 2024.07.13 5b653 P P 500 228 2024.07.23 00:57:38.458 2024.07.23 00:57:38.958 2024.07.23 00:01:26.769 2024.07.23 00:01:26.997
128 5.0.1.1439 2024.07.10 c7d55 P P 464 270 2024.07.13 00:58:35.448 2024.07.13 00:58:35.912 2024.07.13 00:03:32.119 2024.07.13 00:03:32.389
129 5.0.1.1434 2024.07.09 33085 P P 491 386 2024.07.10 00:53:45.645 2024.07.10 00:53:46.136 2024.07.09 23:59:28.801 2024.07.09 23:59:29.187
130 5.0.1.1432 2024.07.06 9d5a6 P P 546 375 2024.07.09 00:56:03.916 2024.07.09 00:56:04.462 2024.07.09 00:00:19.406 2024.07.09 00:00:19.781
131 5.0.1.1428 2024.06.27 54c00 P P 513 227 2024.06.28 00:54:06.641 2024.06.28 00:54:07.154 2024.06.27 23:59:04.644 2024.06.27 23:59:04.871
132 5.0.1.1425 2024.06.21 3dbe6 P P 504 349 2024.06.22 00:55:58.284 2024.06.22 00:55:58.788 2024.06.22 00:00:56.260 2024.06.22 00:00:56.609
133 5.0.1.1421 2024.06.18 7aa8f P P 452 230 2024.06.21 00:52:12.180 2024.06.21 00:52:12.632 2024.06.20 23:58:29.150 2024.06.20 23:58:29.380
134 5.0.1.1417 2024.06.17 9637a P P 501 344 2024.06.18 00:55:31.566 2024.06.18 00:55:32.067 2024.06.17 23:59:58.040 2024.06.17 23:59:58.384
135 5.0.1.1416 2024.06.13 ad0e5 P P 463 403 2024.06.17 00:51:15.915 2024.06.17 00:51:16.378 2024.06.16 23:56:19.691 2024.06.16 23:56:20.094
136 5.0.1.1415 2024.06.09 099ba P P 508 231 2024.06.13 07:06:48.833 2024.06.13 07:06:49.341 2024.06.13 06:15:24.299 2024.06.13 06:15:24.530
137 5.0.1.1412 2024.06.09 9de13 P P 465 216 2024.06.11 21:39:52.253 2024.06.11 21:39:52.718 2024.06.11 20:49:45.449 2024.06.11 20:49:45.665
138 5.0.1.1411 2024.05.28 81ea7 P P 789 560 2024.06.12 00:33:56.493 2024.06.12 00:33:57.282 2024.06.11 23:17:44.680 2024.06.11 23:17:45.240
139 5.0.1.1408 2024.05.24 ff412 P P 1028 238 2024.06.12 09:08:06.274 2024.06.12 09:08:07.302 2024.06.12 07:53:51.491 2024.06.12 07:53:51.729
140 5.0.1.1405 2024.05.21 c02fa P P 447 248 2024.06.12 11:34:03.549 2024.06.12 11:34:03.996 2024.06.12 10:42:52.346 2024.06.12 10:42:52.594
141 5.0.1.1404 2024.05.15 c7963 P P 539 226 2024.06.12 13:32:13.320 2024.06.12 13:32:13.859 2024.06.12 12:41:41.718 2024.06.12 12:41:41.944
142 5.0.1.1399 2024.05.14 77af7 P P 391 231 2024.06.12 16:21:26.176 2024.06.12 16:21:26.567 2024.06.12 15:30:32.706 2024.06.12 15:30:32.937
143 5.0.1.1398 2024.05.09 f339e P P 401 303 2024.06.12 18:26:54.549 2024.06.12 18:26:54.950 2024.06.12 17:32:44.698 2024.06.12 17:32:45.001
144 5.0.1.1397 2024.05.08 96967 P P 546 220 2024.06.12 20:58:16.470 2024.06.12 20:58:17.016 2024.06.12 20:07:57.590 2024.06.12 20:07:57.810
145 5.0.1.1395 2024.05.06 23887 P P 455 213 2024.06.13 05:04:00.244 2024.06.13 05:04:00.699 2024.06.13 04:13:18.732 2024.06.13 04:13:18.945

Elapsed time, ms. Chart for last 145 runs:

Last commits information (all timestamps in UTC):