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
assert   
    RES_1                                  4.641588833612778892410076350919446
    RES_2                                  5.848035476425732131013574720275845
    RES_3                                  6.694329500821695218826593246399307
    Statement failed, SQLSTATE = 28000
  - no permission for SELECT access to TABLE TEST
  + no permission for SELECT access to TABLE "PUBLIC"."TEST"
    -Effective user is TMP$7744_JUNIOR
    Statement failed, SQLSTATE = 28000
  - no permission for SELECT access to TABLE TEST
  + no permission for SELECT access to TABLE "PUBLIC"."TEST"
    -Effective user is TMP$7744_JUNIOR
    Statement failed, SQLSTATE = 28000
  - no permission for SELECT access to TABLE TEST
  + no permission for SELECT access to TABLE "PUBLIC"."TEST"
    -Effective user is TMP$7744_JUNIOR
    RES_7                                  8.879040017426007084292689552528769
    RES_8                                  9.283177667225557784820152701838891
    RES_9                                  9.654893846056297578599327844350667
    Statement failed, SQLSTATE = 28000
  - no permission for SELECT access to TABLE TEST
  + no permission for SELECT access to TABLE "PUBLIC"."TEST"
    -Effective user is TMP$7744_JUNIOR
    Statement failed, SQLSTATE = 28000
  - no permission for SELECT access to TABLE TEST
  + no permission for SELECT access to TABLE "PUBLIC"."TEST"
    -Effective user is TMP$7744_JUNIOR
    Statement failed, SQLSTATE = 28000
  - no permission for SELECT access to TABLE TEST
  + no permission for SELECT access to TABLE "PUBLIC"."TEST"
    -Effective user is TMP$7744_JUNIOR

LOG DETAILS:

2025-07-02 06:41:20.123
2025-07-02 06:41:20.123 act = <firebird.qa.plugin.Action object at [hex]>
2025-07-02 06:41:20.123 u_senior = <firebird.qa.plugin.User object at [hex]>
2025-07-02 06:41:20.123 u_junior = <firebird.qa.plugin.User object at [hex]>
2025-07-02 06:41:20.123
2025-07-02 06:41:20.123     @pytest.mark.version('>=6.0')
2025-07-02 06:41:20.123     def test_1(act: Action, u_senior: User, u_junior: User):
2025-07-02 06:41:20.123
2025-07-02 06:41:20.123         expected_stdout = f"""
2025-07-02 06:41:20.123             RES_1                                  4.641588833612778892410076350919446
2025-07-02 06:41:20.123             RES_2                                  5.848035476425732131013574720275845
2025-07-02 06:41:20.123             RES_3                                  6.694329500821695218826593246399307
2025-07-02 06:41:20.123
2025-07-02 06:41:20.123             Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.123             no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.123             -Effective user is {u_junior.name}
2025-07-02 06:41:20.123
2025-07-02 06:41:20.123             Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.124             no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.124             -Effective user is {u_junior.name}
2025-07-02 06:41:20.124
2025-07-02 06:41:20.124             Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.124             no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.124             -Effective user is {u_junior.name}
2025-07-02 06:41:20.124
2025-07-02 06:41:20.124             RES_7                                  8.879040017426007084292689552528769
2025-07-02 06:41:20.124             RES_8                                  9.283177667225557784820152701838891
2025-07-02 06:41:20.124             RES_9                                  9.654893846056297578599327844350667
2025-07-02 06:41:20.124
2025-07-02 06:41:20.124             Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.124             no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.124             -Effective user is {u_junior.name}
2025-07-02 06:41:20.124
2025-07-02 06:41:20.124             Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.124             no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.124             -Effective user is {u_junior.name}
2025-07-02 06:41:20.124
2025-07-02 06:41:20.124             Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.125             no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.125             -Effective user is {u_junior.name}
2025-07-02 06:41:20.125         """
2025-07-02 06:41:20.125
2025-07-02 06:41:20.125         act.expected_stdout = expected_stdout
2025-07-02 06:41:20.125         test_script = f"""
2025-07-02 06:41:20.125             set list on;
2025-07-02 06:41:20.125             connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}';
2025-07-02 06:41:20.125
2025-07-02 06:41:20.125             grant create table to {u_senior.name};
2025-07-02 06:41:20.125             grant create procedure to {u_senior.name};
2025-07-02 06:41:20.125             grant create function to {u_senior.name};
2025-07-02 06:41:20.125             grant create package to {u_senior.name};
2025-07-02 06:41:20.125             grant alter any table to {u_senior.name};
2025-07-02 06:41:20.125             grant alter any procedure to {u_senior.name};
2025-07-02 06:41:20.125             grant alter any function to {u_senior.name};
2025-07-02 06:41:20.126             grant alter any package to {u_senior.name};
2025-07-02 06:41:20.126             commit;
2025-07-02 06:41:20.126
2025-07-02 06:41:20.126             connect '{act.db.dsn}' user {u_senior.name} password '{u_senior.password}';
2025-07-02 06:41:20.126
2025-07-02 06:41:20.126             create table test(id int primary key, x int);
2025-07-02 06:41:20.126             insert into test(id, x) values( 1,  100);
2025-07-02 06:41:20.126             insert into test(id, x) values( 2,  200);
2025-07-02 06:41:20.126             insert into test(id, x) values( 3,  300);
2025-07-02 06:41:20.126             insert into test(id, x) values( 4,  400);
2025-07-02 06:41:20.126             insert into test(id, x) values( 5,  500);
2025-07-02 06:41:20.126             insert into test(id, x) values( 6,  600);
2025-07-02 06:41:20.126             insert into test(id, x) values( 7,  700);
2025-07-02 06:41:20.126             insert into test(id, x) values( 8,  800);
2025-07-02 06:41:20.126             insert into test(id, x) values( 9,  900);
2025-07-02 06:41:20.126             insert into test(id, x) values(10, 1000);
2025-07-02 06:41:20.126             insert into test(id, x) values(11, 1100);
2025-07-02 06:41:20.126             insert into test(id, x) values(12, 1200);
2025-07-02 06:41:20.126             commit;
2025-07-02 06:41:20.127
2025-07-02 06:41:20.127             set term ^;
2025-07-02 06:41:20.127             create function fn_cube_root(a_id int) returns decfloat SQL SECURITY DEFINER as
2025-07-02 06:41:20.127             begin
2025-07-02 06:41:20.127                 return power( (select x from test where id = :a_id), 1/cast(3. as decfloat) );
2025-07-02 06:41:20.127             end
2025-07-02 06:41:20.127             ^
2025-07-02 06:41:20.127             create procedure sp_cube_root(a_id int) returns(cube_root decfloat) SQL SECURITY DEFINER as
2025-07-02 06:41:20.127             begin
2025-07-02 06:41:20.127                 cube_root = power( (select x from test where id = :a_id), 1/cast(3. as decfloat) );
2025-07-02 06:41:20.127                 suspend;
2025-07-02 06:41:20.127             end
2025-07-02 06:41:20.127             ^
2025-07-02 06:41:20.127             commit
2025-07-02 06:41:20.127             ^
2025-07-02 06:41:20.127             create package pg_test SQL SECURITY DEFINER as
2025-07-02 06:41:20.127             begin
2025-07-02 06:41:20.127                 function fn_cube_root(a_id int) returns decfloat;
2025-07-02 06:41:20.127             end
2025-07-02 06:41:20.127             ^
2025-07-02 06:41:20.128             create package body pg_test as
2025-07-02 06:41:20.128             begin
2025-07-02 06:41:20.128                 function fn_cube_root(a_id int) returns decfloat as
2025-07-02 06:41:20.128                 begin
2025-07-02 06:41:20.128                     return power( (select x from test where id = :a_id), 1/cast(3. as decfloat) );
2025-07-02 06:41:20.128                 end
2025-07-02 06:41:20.128             end
2025-07-02 06:41:20.128             ^
2025-07-02 06:41:20.128             set term ;^
2025-07-02 06:41:20.128             commit;
2025-07-02 06:41:20.128
2025-07-02 06:41:20.128             grant execute on function fn_cube_root to {u_junior.name};
2025-07-02 06:41:20.128             grant execute on procedure sp_cube_root to {u_junior.name};
2025-07-02 06:41:20.128             grant execute on package pg_test to {u_junior.name};
2025-07-02 06:41:20.128             commit;
2025-07-02 06:41:20.128
2025-07-02 06:41:20.128             set bail off;
2025-07-02 06:41:20.128
2025-07-02 06:41:20.128             -------------------------------------------
2025-07-02 06:41:20.128
2025-07-02 06:41:20.129             connect '{act.db.dsn}' user {u_junior.name} password '{u_junior.password}';
2025-07-02 06:41:20.129
2025-07-02 06:41:20.129             -- all these calls must PASS despite that there is no permission to the table 'test'
2025-07-02 06:41:20.129             -- because sql security was initially set to 'DEFINER':
2025-07-02 06:41:20.129             select fn_cube_root(1) as res_1 from rdb$database;
2025-07-02 06:41:20.129             select cube_root as res_2 from sp_cube_root(2);
2025-07-02 06:41:20.129             select pg_test.fn_cube_root(3) as res_3 from rdb$database;
2025-07-02 06:41:20.129             rollback;
2025-07-02 06:41:20.129
2025-07-02 06:41:20.129             -------------------------------------------
2025-07-02 06:41:20.129
2025-07-02 06:41:20.129             connect '{act.db.dsn}' user {u_senior.name} password '{u_senior.password}';
2025-07-02 06:41:20.129             alter function fn_cube_root SQL SECURITY INVOKER;
2025-07-02 06:41:20.129             alter procedure sp_cube_root SQL SECURITY INVOKER;
2025-07-02 06:41:20.129             alter package pg_test SQL SECURITY INVOKER;
2025-07-02 06:41:20.129             commit;
2025-07-02 06:41:20.129
2025-07-02 06:41:20.129             -- now these calls must FAIL with 'no permission ... to TEST':
2025-07-02 06:41:20.130             connect '{act.db.dsn}' user {u_junior.name} password '{u_junior.password}';
2025-07-02 06:41:20.130             select fn_cube_root(4) as res_4 from rdb$database;
2025-07-02 06:41:20.130             select cube_root as res_5 from sp_cube_root(5);
2025-07-02 06:41:20.130             select pg_test.fn_cube_root(6) as res_6 from rdb$database;
2025-07-02 06:41:20.130             rollback;
2025-07-02 06:41:20.130
2025-07-02 06:41:20.130             -------------------------------------------
2025-07-02 06:41:20.130
2025-07-02 06:41:20.130             connect '{act.db.dsn}' user {u_senior.name} password '{u_senior.password}';
2025-07-02 06:41:20.130             alter function fn_cube_root SQL SECURITY DEFINER;
2025-07-02 06:41:20.130             alter procedure sp_cube_root SQL SECURITY DEFINER;
2025-07-02 06:41:20.130             alter package pg_test SQL SECURITY DEFINER;
2025-07-02 06:41:20.130             commit;
2025-07-02 06:41:20.130
2025-07-02 06:41:20.130             connect '{act.db.dsn}' user {u_junior.name} password '{u_junior.password}';
2025-07-02 06:41:20.130
2025-07-02 06:41:20.130             -- now these calls must again PASS:
2025-07-02 06:41:20.130             select fn_cube_root(7) as res_7 from rdb$database;
2025-07-02 06:41:20.130             select cube_root as res_8 from sp_cube_root(8);
2025-07-02 06:41:20.131             select pg_test.fn_cube_root(9) as res_9 from rdb$database;
2025-07-02 06:41:20.131             rollback;
2025-07-02 06:41:20.131
2025-07-02 06:41:20.131             -------------------------------------------
2025-07-02 06:41:20.131
2025-07-02 06:41:20.131             connect '{act.db.dsn}' user {u_senior.name} password '{u_senior.password}';
2025-07-02 06:41:20.131             alter function fn_cube_root DROP SQL SECURITY;
2025-07-02 06:41:20.131             alter procedure sp_cube_root DROP SQL SECURITY;
2025-07-02 06:41:20.131             alter package pg_test DROP SQL SECURITY;
2025-07-02 06:41:20.131             commit;
2025-07-02 06:41:20.131
2025-07-02 06:41:20.131             connect '{act.db.dsn}' user {u_junior.name} password '{u_junior.password}';
2025-07-02 06:41:20.131
2025-07-02 06:41:20.131             -- now these calls must FAIL with 'no permission ... to TEST':
2025-07-02 06:41:20.131             select fn_cube_root(10) as res_10 from rdb$database;
2025-07-02 06:41:20.131             select cube_root as res_11 from sp_cube_root(11);
2025-07-02 06:41:20.131             select pg_test.fn_cube_root(12) as res_12 from rdb$database;
2025-07-02 06:41:20.131             rollback;
2025-07-02 06:41:20.131         """
2025-07-02 06:41:20.131
2025-07-02 06:41:20.132         act.isql(switches=['-q'], input = test_script, connect_db = False, combine_output = True)
2025-07-02 06:41:20.132 >       assert act.clean_stdout == act.clean_expected_stdout
2025-07-02 06:41:20.132 E       assert
2025-07-02 06:41:20.132 E           RES_1                                  4.641588833612778892410076350919446
2025-07-02 06:41:20.132 E           RES_2                                  5.848035476425732131013574720275845
2025-07-02 06:41:20.132 E           RES_3                                  6.694329500821695218826593246399307
2025-07-02 06:41:20.132 E           Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.132 E         - no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.132 E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
2025-07-02 06:41:20.132 E           -Effective user is TMP$7744_JUNIOR
2025-07-02 06:41:20.132 E           Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.132 E         - no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.132 E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
2025-07-02 06:41:20.132 E           -Effective user is TMP$7744_JUNIOR
2025-07-02 06:41:20.132 E           Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.132 E         - no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.132 E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
2025-07-02 06:41:20.133 E           -Effective user is TMP$7744_JUNIOR
2025-07-02 06:41:20.133 E           RES_7                                  8.879040017426007084292689552528769
2025-07-02 06:41:20.133 E           RES_8                                  9.283177667225557784820152701838891
2025-07-02 06:41:20.133 E           RES_9                                  9.654893846056297578599327844350667
2025-07-02 06:41:20.133 E           Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.133 E         - no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.133 E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
2025-07-02 06:41:20.133 E           -Effective user is TMP$7744_JUNIOR
2025-07-02 06:41:20.133 E           Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.133 E         - no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.133 E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
2025-07-02 06:41:20.133 E           -Effective user is TMP$7744_JUNIOR
2025-07-02 06:41:20.133 E           Statement failed, SQLSTATE = 28000
2025-07-02 06:41:20.133 E         - no permission for SELECT access to TABLE TEST
2025-07-02 06:41:20.133 E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
2025-07-02 06:41:20.133 E           -Effective user is TMP$7744_JUNIOR
2025-07-02 06:41:20.134
2025-07-02 06:41:20.134 tests\bugs\gh_7744_test.py:198: AssertionError
2025-07-02 06:41:20.134 ---------------------------- Captured stdout setup ----------------------------
2025-07-02 06:41:20.134 Creating db: localhost:H:\QA\temp\qa2024.tmp\fbqa\test_11639\test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
2025-07-02 06:41:20.134 CREATE user: TMP$7744_SENIOR PLUGIN: Srp
2025-07-02 06:41:20.134 CREATE user: TMP$7744_JUNIOR PLUGIN: Srp
2025-07-02 06:41:20.134 -------------------------- Captured stdout teardown ---------------------------
2025-07-02 06:41:20.134 DROP user: TMP$7744_JUNIOR PLUGIN: Srp
2025-07-02 06:41:20.134 DROP user: TMP$7744_SENIOR PLUGIN: Srp
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
u_senior = <firebird.qa.plugin.User pytest object at [hex]>
u_junior = <firebird.qa.plugin.User pytest object at [hex]>

    @pytest.mark.version('>=6.0')
    def test_1(act: Action, u_senior: User, u_junior: User):
    
        expected_stdout = f"""
            RES_1                                  4.641588833612778892410076350919446
            RES_2                                  5.848035476425732131013574720275845
            RES_3                                  6.694329500821695218826593246399307
    
            Statement failed, SQLSTATE = 28000
            no permission for SELECT access to TABLE TEST
            -Effective user is {u_junior.name}
    
            Statement failed, SQLSTATE = 28000
            no permission for SELECT access to TABLE TEST
            -Effective user is {u_junior.name}
    
            Statement failed, SQLSTATE = 28000
            no permission for SELECT access to TABLE TEST
            -Effective user is {u_junior.name}
    
            RES_7                                  8.879040017426007084292689552528769
            RES_8                                  9.283177667225557784820152701838891
            RES_9                                  9.654893846056297578599327844350667
    
            Statement failed, SQLSTATE = 28000
            no permission for SELECT access to TABLE TEST
            -Effective user is {u_junior.name}
    
            Statement failed, SQLSTATE = 28000
            no permission for SELECT access to TABLE TEST
            -Effective user is {u_junior.name}
    
            Statement failed, SQLSTATE = 28000
            no permission for SELECT access to TABLE TEST
            -Effective user is {u_junior.name}
        """
    
        act.expected_stdout = expected_stdout
        test_script = f"""
            set list on;
            connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}';
    
            grant create table to {u_senior.name};
            grant create procedure to {u_senior.name};
            grant create function to {u_senior.name};
            grant create package to {u_senior.name};
            grant alter any table to {u_senior.name};
            grant alter any procedure to {u_senior.name};
            grant alter any function to {u_senior.name};
            grant alter any package to {u_senior.name};
            commit;
    
            connect '{act.db.dsn}' user {u_senior.name} password '{u_senior.password}';
    
            create table test(id int primary key, x int);
            insert into test(id, x) values( 1,  100);
            insert into test(id, x) values( 2,  200);
            insert into test(id, x) values( 3,  300);
            insert into test(id, x) values( 4,  400);
            insert into test(id, x) values( 5,  500);
            insert into test(id, x) values( 6,  600);
            insert into test(id, x) values( 7,  700);
            insert into test(id, x) values( 8,  800);
            insert into test(id, x) values( 9,  900);
            insert into test(id, x) values(10, 1000);
            insert into test(id, x) values(11, 1100);
            insert into test(id, x) values(12, 1200);
            commit;
    
            set term ^;
            create function fn_cube_root(a_id int) returns decfloat SQL SECURITY DEFINER as
            begin
                return power( (select x from test where id = :a_id), 1/cast(3. as decfloat) );
            end
            ^
            create procedure sp_cube_root(a_id int) returns(cube_root decfloat) SQL SECURITY DEFINER as
            begin
                cube_root = power( (select x from test where id = :a_id), 1/cast(3. as decfloat) );
                suspend;
            end
            ^
            commit
            ^
            create package pg_test SQL SECURITY DEFINER as
            begin
                function fn_cube_root(a_id int) returns decfloat;
            end
            ^
            create package body pg_test as
            begin
                function fn_cube_root(a_id int) returns decfloat as
                begin
                    return power( (select x from test where id = :a_id), 1/cast(3. as decfloat) );
                end
            end
            ^
            set term ;^
            commit;
    
            grant execute on function fn_cube_root to {u_junior.name};
            grant execute on procedure sp_cube_root to {u_junior.name};
            grant execute on package pg_test to {u_junior.name};
            commit;
    
            set bail off;
    
            -------------------------------------------
    
            connect '{act.db.dsn}' user {u_junior.name} password '{u_junior.password}';
    
            -- all these calls must PASS despite that there is no permission to the table 'test'
            -- because sql security was initially set to 'DEFINER':
            select fn_cube_root(1) as res_1 from rdb$database;
            select cube_root as res_2 from sp_cube_root(2);
            select pg_test.fn_cube_root(3) as res_3 from rdb$database;
            rollback;
    
            -------------------------------------------
    
            connect '{act.db.dsn}' user {u_senior.name} password '{u_senior.password}';
            alter function fn_cube_root SQL SECURITY INVOKER;
            alter procedure sp_cube_root SQL SECURITY INVOKER;
            alter package pg_test SQL SECURITY INVOKER;
            commit;
    
            -- now these calls must FAIL with 'no permission ... to TEST':
            connect '{act.db.dsn}' user {u_junior.name} password '{u_junior.password}';
            select fn_cube_root(4) as res_4 from rdb$database;
            select cube_root as res_5 from sp_cube_root(5);
            select pg_test.fn_cube_root(6) as res_6 from rdb$database;
            rollback;
    
            -------------------------------------------
    
            connect '{act.db.dsn}' user {u_senior.name} password '{u_senior.password}';
            alter function fn_cube_root SQL SECURITY DEFINER;
            alter procedure sp_cube_root SQL SECURITY DEFINER;
            alter package pg_test SQL SECURITY DEFINER;
            commit;
    
            connect '{act.db.dsn}' user {u_junior.name} password '{u_junior.password}';
    
            -- now these calls must again PASS:
            select fn_cube_root(7) as res_7 from rdb$database;
            select cube_root as res_8 from sp_cube_root(8);
            select pg_test.fn_cube_root(9) as res_9 from rdb$database;
            rollback;
    
            -------------------------------------------
    
            connect '{act.db.dsn}' user {u_senior.name} password '{u_senior.password}';
            alter function fn_cube_root DROP SQL SECURITY;
            alter procedure sp_cube_root DROP SQL SECURITY;
            alter package pg_test DROP SQL SECURITY;
            commit;
    
            connect '{act.db.dsn}' user {u_junior.name} password '{u_junior.password}';
    
            -- now these calls must FAIL with 'no permission ... to TEST':
            select fn_cube_root(10) as res_10 from rdb$database;
            select cube_root as res_11 from sp_cube_root(11);
            select pg_test.fn_cube_root(12) as res_12 from rdb$database;
            rollback;
        """
    
        act.isql(switches=['-q'], input = test_script, connect_db = False, combine_output = True)
>       assert act.clean_stdout == act.clean_expected_stdout
E       assert   
E           RES_1                                  4.641588833612778892410076350919446
E           RES_2                                  5.848035476425732131013574720275845
E           RES_3                                  6.694329500821695218826593246399307
E           Statement failed, SQLSTATE = 28000
E         - no permission for SELECT access to TABLE TEST
E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
E           -Effective user is TMP$7744_JUNIOR
E           Statement failed, SQLSTATE = 28000
E         - no permission for SELECT access to TABLE TEST
E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
E           -Effective user is TMP$7744_JUNIOR
E           Statement failed, SQLSTATE = 28000
E         - no permission for SELECT access to TABLE TEST
E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
E           -Effective user is TMP$7744_JUNIOR
E           RES_7                                  8.879040017426007084292689552528769
E           RES_8                                  9.283177667225557784820152701838891
E           RES_9                                  9.654893846056297578599327844350667
E           Statement failed, SQLSTATE = 28000
E         - no permission for SELECT access to TABLE TEST
E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
E           -Effective user is TMP$7744_JUNIOR
E           Statement failed, SQLSTATE = 28000
E         - no permission for SELECT access to TABLE TEST
E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
E           -Effective user is TMP$7744_JUNIOR
E           Statement failed, SQLSTATE = 28000
E         - no permission for SELECT access to TABLE TEST
E         + no permission for SELECT access to TABLE "PUBLIC"."TEST"
E           -Effective user is TMP$7744_JUNIOR

tests\bugs\gh_7744_test.py:198: 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.889 2025.07.01 969ac F F 2363 1399 2025.07.02 03:15:17.398 2025.07.02 03:15:19.761 2025.07.02 01:30:45.534 2025.07.02 01:30:46.933
2 6.0.0.881 2025.06.27 7035d F F 2351 1395 2025.07.01 03:09:08.423 2025.07.01 03:09:10.774 2025.07.01 01:27:37.470 2025.07.01 01:27:38.865
3 6.0.0.877 2025.06.26 8e38f F F 2391 1395 2025.06.27 03:10:29.450 2025.06.27 03:10:31.841 2025.06.27 01:28:24.034 2025.06.27 01:28:25.429
4 6.0.0.876 2025.06.25 b1bec F F 2400 1406 2025.06.26 03:15:47.320 2025.06.26 03:15:49.720 2025.06.26 01:34:00.034 2025.06.26 01:34:01.440
5 6.0.0.863 2025.06.24 c3c20 F F 2410 1411 2025.06.25 07:59:57.089 2025.06.25 07:59:59.499 2025.06.25 01:28:03.396 2025.06.25 01:28:04.807
6 6.0.0.858 2025.06.24 cbbbf F F 2369 1439 2025.06.24 17:42:29.343 2025.06.24 17:42:31.712 2025.06.24 15:59:59.995 2025.06.24 16:00:01.434
7 6.0.0.858 2025.06.23 d377c F F 2409 1437 2025.06.24 08:54:29.057 2025.06.24 08:54:31.466 2025.06.24 07:12:22.988 2025.06.24 07:12:24.425
8 6.0.0.854 2025.06.23 10b58 F F 2471 1406 2025.06.23 15:35:23.450 2025.06.23 15:35:25.921 2025.06.23 13:51:55.843 2025.06.23 13:51:57.249
9 6.0.0.849 2025.06.20 7b79c F F 2358 1429 2025.06.21 03:13:43.587 2025.06.21 03:13:45.945 2025.06.21 01:28:35.805 2025.06.21 01:28:37.234
10 6.0.0.848 2025.06.19 c483c F F 2354 1378 2025.06.20 03:13:20.535 2025.06.20 03:13:22.889 2025.06.20 01:28:20.619 2025.06.20 01:28:21.997
11 6.0.0.845 2025.06.18 20191 F F 2359 1398 2025.06.19 03:12:56.014 2025.06.19 03:12:58.373 2025.06.19 01:28:06.533 2025.06.19 01:28:07.931
12 6.0.0.843 2025.06.16 995f4 F F 2351 1383 2025.06.18 03:12:46.867 2025.06.18 03:12:49.218 2025.06.18 01:27:52.100 2025.06.18 01:27:53.483
13 6.0.0.840 2025.06.14 29bca F F 2426 1431 2025.06.15 03:21:12.250 2025.06.15 03:21:14.676 2025.06.15 01:30:52.962 2025.06.15 01:30:54.393
14 6.0.0.838 2025.06.13 0e28a F F 2372 1394 2025.06.14 03:18:57.472 2025.06.14 03:18:59.844 2025.06.14 01:29:13.290 2025.06.14 01:29:14.684
15 6.0.0.834 2025.06.11 e889f F F 2378 1444 2025.06.12 03:16:30.278 2025.06.12 03:16:32.656 2025.06.12 01:29:45.155 2025.06.12 01:29:46.599
16 6.0.0.800 2025.06.10 1f226 P P 2230 1271 2025.06.11 02:01:06.966 2025.06.11 02:01:09.196 2025.06.11 00:53:02.120 2025.06.11 00:53:03.391
17 6.0.0.799 2025.06.07 be644 P P 2203 1308 2025.06.10 02:00:42.382 2025.06.10 02:00:44.585 2025.06.10 00:52:38.812 2025.06.10 00:52:40.120
18 6.0.0.797 2025.06.06 303e8 P P 2249 1294 2025.06.07 01:59:35.854 2025.06.07 01:59:38.103 2025.06.07 00:52:27.092 2025.06.07 00:52:28.386
19 6.0.0.795 2025.05.29 7a71a P P 2207 1309 2025.06.06 01:59:27.456 2025.06.06 01:59:29.663 2025.06.06 00:52:25.405 2025.06.06 00:52:26.714
20 6.0.0.792 2025.05.28 ee5a8 P P 2193 1279 2025.05.29 01:58:32.604 2025.05.29 01:58:34.797 2025.05.29 00:52:31.900 2025.05.29 00:52:33.179
21 6.0.0.791 2025.05.27 02db8 P P 2203 1285 2025.05.28 01:59:01.000 2025.05.28 01:59:03.203 2025.05.28 00:52:14.913 2025.05.28 00:52:16.198
22 6.0.0.789 2025.05.21 64051 P P 2220 1412 2025.05.25 01:58:45.354 2025.05.25 01:58:47.574 2025.05.25 00:52:36.564 2025.05.25 00:52:37.976
23 6.0.0.787 2025.05.20 230ad P P 2202 1304 2025.05.21 01:57:40.430 2025.05.21 01:57:42.632 2025.05.21 00:51:48.012 2025.05.21 00:51:49.316
24 6.0.0.783 2025.05.12 37320 P P 2185 1264 2025.05.19 01:57:28.393 2025.05.19 01:57:30.578 2025.05.19 00:51:57.631 2025.05.19 00:51:58.895
25 6.0.0.779 2025.05.11 136fa P P 2234 1304 2025.05.12 01:59:42.323 2025.05.12 01:59:44.557 2025.05.12 00:52:41.518 2025.05.12 00:52:42.822
26 6.0.0.778 2025.05.07 d735e P P 2213 1329 2025.05.11 01:59:06.968 2025.05.11 01:59:09.181 2025.05.11 00:52:55.653 2025.05.11 00:52:56.982
27 6.0.0.776 2025.05.06 007cd P P 2216 1393 2025.05.07 01:58:22.668 2025.05.07 01:58:24.884 2025.05.07 00:52:31.645 2025.05.07 00:52:33.038
28 6.0.0.770 2025.05.05 82c4a P P 2245 1311 2025.05.06 01:58:41.191 2025.05.06 01:58:43.436 2025.05.06 00:52:38.292 2025.05.06 00:52:39.603
29 6.0.0.767 2025.05.01 cdd29 P P 2269 1325 2025.05.02 01:59:17.261 2025.05.02 01:59:19.530 2025.05.02 00:53:29.992 2025.05.02 00:53:31.317
30 6.0.0.762 2025.04.30 5cb15 P P 2244 1306 2025.05.01 01:57:44.727 2025.05.01 01:57:46.971 2025.05.01 00:52:51.903 2025.05.01 00:52:53.209
31 6.0.0.755 2025.04.29 739c6 P P 2201 1279 2025.04.30 01:57:58.281 2025.04.30 01:58:00.482 2025.04.30 00:52:34.834 2025.04.30 00:52:36.113
32 6.0.0.753 2025.04.27 29ab3 P P 2205 1289 2025.04.29 01:58:08.169 2025.04.29 01:58:10.374 2025.04.29 00:52:37.461 2025.04.29 00:52:38.750
33 6.0.0.745 2025.04.21 78ad8 P P 2240 1329 2025.04.26 01:59:29.991 2025.04.26 01:59:32.231 2025.04.26 00:52:55.563 2025.04.26 00:52:56.892
34 6.0.0.744 2025.04.19 e883a P P 2274 1359 2025.04.20 01:58:56.935 2025.04.20 01:58:59.209 2025.04.20 00:52:48.553 2025.04.20 00:52:49.912
35 6.0.0.742 2025.04.17 abc3b P P 2228 1318 2025.04.19 01:58:25.032 2025.04.19 01:58:27.260 2025.04.19 00:52:24.910 2025.04.19 00:52:26.228
36 6.0.0.737 2025.04.16 fe52b P P 2235 1305 2025.04.17 01:58:52.434 2025.04.17 01:58:54.669 2025.04.17 00:52:37.949 2025.04.17 00:52:39.254
37 6.0.0.736 2025.04.14 3e6be P P 2241 1344 2025.04.15 01:59:45.411 2025.04.15 01:59:47.652 2025.04.15 00:52:55.703 2025.04.15 00:52:57.047
38 6.0.0.735 2025.04.13 6635c P P 2262 1346 2025.04.14 01:58:58.565 2025.04.14 01:59:00.827 2025.04.14 00:53:11.243 2025.04.14 00:53:12.589
39 6.0.0.734 2025.04.12 e2fd1 P P 2203 1297 2025.04.13 01:56:50.790 2025.04.13 01:56:52.993 2025.04.13 00:52:10.349 2025.04.13 00:52:11.646
40 6.0.0.730 2025.04.11 240b8 P P 2279 1333 2025.04.12 02:03:21.638 2025.04.12 02:03:23.917 2025.04.12 00:53:37.307 2025.04.12 00:53:38.640
41 6.0.0.726 2025.04.10 d79c6 P P 2261 1343 2025.04.11 02:03:42.952 2025.04.11 02:03:45.213 2025.04.11 00:53:26.609 2025.04.11 00:53:27.952
42 6.0.0.725 2025.04.09 a2b05 P P 2285 1340 2025.04.10 02:02:55.366 2025.04.10 02:02:57.651 2025.04.10 00:53:18.896 2025.04.10 00:53:20.236
43 6.0.0.722 2025.04.08 a8b86 P P 2308 1336 2025.04.09 01:59:31.410 2025.04.09 01:59:33.718 2025.04.09 00:52:58.319 2025.04.09 00:52:59.655
44 6.0.0.719 2025.04.06 90fd9 P P 2229 1358 2025.04.08 01:59:29.846 2025.04.08 01:59:32.075 2025.04.08 00:52:51.203 2025.04.08 00:52:52.561
45 6.0.0.717 2025.04.04 53d70 P P 2251 1378 2025.04.05 01:59:34.605 2025.04.05 01:59:36.856 2025.04.05 00:53:01.671 2025.04.05 00:53:03.049
46 6.0.0.716 2025.04.03 fc636 P P 2258 1366 2025.04.04 01:59:33.186 2025.04.04 01:59:35.444 2025.04.04 00:53:06.440 2025.04.04 00:53:07.806
47 6.0.0.715 2025.04.02 907ed P P 2235 1328 2025.04.03 01:59:31.782 2025.04.03 01:59:34.017 2025.04.03 00:52:55.156 2025.04.03 00:52:56.484
48 6.0.0.710 2025.04.01 40651 P P 2256 1406 2025.04.02 01:59:46.751 2025.04.02 01:59:49.007 2025.04.02 00:53:40.022 2025.04.02 00:53:41.428
49 6.0.0.708 2025.03.31 cb069 P P 2266 1340 2025.04.01 01:59:04.899 2025.04.01 01:59:07.165 2025.04.01 00:52:56.218 2025.04.01 00:52:57.558
50 6.0.0.707 2025.03.28 4bd4f P P 2255 1331 2025.03.31 01:59:30.651 2025.03.31 01:59:32.906 2025.03.31 00:52:53.725 2025.03.31 00:52:55.056
51 6.0.0.702 2025.03.27 86f4d P P 2391 1444 2025.03.28 02:16:40.383 2025.03.28 02:16:42.774 2025.03.28 00:54:00.839 2025.03.28 00:54:02.283
52 6.0.0.698 2025.03.26 d72a7 P P 2396 1337 2025.03.27 15:42:45.619 2025.03.27 15:42:48.015 2025.03.27 14:34:19.054 2025.03.27 14:34:20.391
53 6.0.0.693 2025.03.25 8aac2 P P 2371 1503 2025.03.26 02:03:24.775 2025.03.26 02:03:27.146 2025.03.26 00:54:42.054 2025.03.26 00:54:43.557
54 6.0.0.693 2025.03.24 0b559 P P 2285 1459 2025.03.25 02:03:57.965 2025.03.25 02:04:00.250 2025.03.25 00:54:41.778 2025.03.25 00:54:43.237
55 6.0.0.687 2025.03.22 730aa P P 2282 1500 2025.03.24 02:03:46.273 2025.03.24 02:03:48.555 2025.03.24 00:55:04.976 2025.03.24 00:55:06.476
56 6.0.0.686 2025.03.20 71bf6 P P 2277 1336 2025.03.21 02:00:17.064 2025.03.21 02:00:19.341 2025.03.21 00:53:33.648 2025.03.21 00:53:34.984
57 6.0.0.685 2025.03.19 a8577 P P 2367 1386 2025.03.20 02:00:31.802 2025.03.20 02:00:34.169 2025.03.20 00:54:05.511 2025.03.20 00:54:06.897
58 6.0.0.680 2025.03.18 90d29 P P 2281 1335 2025.03.19 02:00:50.479 2025.03.19 02:00:52.760 2025.03.19 00:54:11.772 2025.03.19 00:54:13.107
59 6.0.0.677 2025.03.16 c0a60 P P 2254 1643 2025.03.18 01:59:01.983 2025.03.18 01:59:04.237 2025.03.18 00:54:02.606 2025.03.18 00:54:04.249
60 6.0.0.676 2025.03.15 11cfb P P 2271 1328 2025.03.16 01:58:25.466 2025.03.16 01:58:27.737 2025.03.16 00:53:11.004 2025.03.16 00:53:12.332
61 6.0.0.674 2025.03.14 7d82c P P 4110 2247 2025.03.15 01:56:58.509 2025.03.15 01:57:02.619 2025.03.15 00:53:40.648 2025.03.15 00:53:42.895
62 6.0.0.673 2025.03.13 40f5b P P 2235 1422 2025.03.14 14:28:06.870 2025.03.14 14:28:09.105 2025.03.14 13:23:30.059 2025.03.14 13:23:31.481
63 6.0.0.671 2025.03.12 a4fff P P 2399 1430 2025.03.13 02:02:24.415 2025.03.13 02:02:26.814 2025.03.13 00:55:13.289 2025.03.13 00:55:14.719
64 6.0.0.663 2025.03.11 65970 P P 2240 1326 2025.03.12 02:01:52.647 2025.03.12 02:01:54.887 2025.03.12 00:54:53.174 2025.03.12 00:54:54.500
65 6.0.0.661 2025.03.07 b9869 P P 2414 1446 2025.03.11 02:02:10.000 2025.03.11 02:02:12.414 2025.03.11 00:55:03.326 2025.03.11 00:55:04.772
66 6.0.0.660 2025.03.04 a6700 P P 2354 1348 2025.03.06 02:02:20.685 2025.03.06 02:02:23.039 2025.03.06 00:54:52.544 2025.03.06 00:54:53.892
67 6.0.0.658 2025.03.03 f15f8 P P 2288 1470 2025.03.04 01:59:08.096 2025.03.04 01:59:10.384 2025.03.04 00:54:05.988 2025.03.04 00:54:07.458
68 6.0.0.656 2025.02.27 25fb4 P P 2247 1454 2025.03.03 01:59:21.837 2025.03.03 01:59:24.084 2025.03.03 00:54:09.648 2025.03.03 00:54:11.102
69 6.0.0.655 2025.02.25 6e3e0 P P 2368 1484 2025.02.27 02:00:52.985 2025.02.27 02:00:55.353 2025.02.27 00:54:46.912 2025.02.27 00:54:48.396
70 6.0.0.654 2025.02.24 b7141 P P 2273 1313 2025.02.25 01:57:47.508 2025.02.25 01:57:49.781 2025.02.25 00:53:35.843 2025.02.25 00:53:37.156
71 6.0.0.652 2025.02.22 22662 P P 2344 1341 2025.02.24 01:57:07.051 2025.02.24 01:57:09.395 2025.02.24 00:53:11.293 2025.02.24 00:53:12.634
72 6.0.0.647 2025.02.21 9fccb P P 2246 1327 2025.02.22 01:56:10.398 2025.02.22 01:56:12.644 2025.02.22 00:52:50.060 2025.02.22 00:52:51.387
73 6.0.0.640 2025.02.19 9b8ac P P 2259 1339 2025.02.20 01:57:39.553 2025.02.20 01:57:41.812 2025.02.20 00:53:20.126 2025.02.20 00:53:21.465
74 6.0.0.639 2025.02.18 201a4 P P 2234 1321 2025.02.19 01:58:28.236 2025.02.19 01:58:30.470 2025.02.19 00:54:00.874 2025.02.19 00:54:02.195
75 6.0.0.637 2025.02.12 6d0f5 P P 2285 1613 2025.02.14 01:59:06.712 2025.02.14 01:59:08.997 2025.02.14 00:54:21.104 2025.02.14 00:54:22.717
76 6.0.0.636 2025.02.11 0424f P P 2350 1400 2025.02.12 01:58:35.546 2025.02.12 01:58:37.896 2025.02.12 00:53:47.511 2025.02.12 00:53:48.911
77 6.0.0.635 2025.02.10 f640f P P 2248 1358 2025.02.11 01:58:04.184 2025.02.11 01:58:06.432 2025.02.11 00:53:36.958 2025.02.11 00:53:38.316
78 6.0.0.629 2025.02.07 194f9 P P 2241 1375 2025.02.08 01:57:59.071 2025.02.08 01:58:01.312 2025.02.08 00:53:34.456 2025.02.08 00:53:35.831
79 6.0.0.628 2025.02.06 859d5 P P 2252 1349 2025.02.07 11:01:38.904 2025.02.07 11:01:41.156 2025.02.07 09:50:52.129 2025.02.07 09:50:53.478
80 6.0.0.621 2025.02.05 34fe7 P P 2236 1351 2025.02.07 02:11:40.581 2025.02.07 02:11:42.817 2025.02.07 01:00:34.721 2025.02.07 01:00:36.072
81 6.0.0.609 2025.02.04 76d57 P P 2260 1326 2025.02.05 02:11:30.142 2025.02.05 02:11:32.402 2025.02.05 01:00:40.633 2025.02.05 01:00:41.959
82 6.0.0.607 2025.02.03 1985b P P 2343 1346 2025.02.04 02:11:21.218 2025.02.04 02:11:23.561 2025.02.04 01:00:19.106 2025.02.04 01:00:20.452
83 6.0.0.601 2025.02.01 6af07 P P 2256 1349 2025.02.02 01:57:48.352 2025.02.02 01:57:50.608 2025.02.02 00:53:45.416 2025.02.02 00:53:46.765
84 6.0.0.600 2025.01.27 188de P P 2240 1372 2025.01.28 01:57:49.822 2025.01.28 01:57:52.062 2025.01.28 00:53:21.357 2025.01.28 00:53:22.729
85 6.0.0.599 2025.01.25 ba588 P P 2280 1394 2025.01.26 01:57:36.970 2025.01.26 01:57:39.250 2025.01.26 00:53:21.913 2025.01.26 00:53:23.307
86 6.0.0.598 2025.01.23 ddbc3 P P 2280 1364 2025.01.25 11:46:07.329 2025.01.25 11:46:09.609 2025.01.25 10:41:23.294 2025.01.25 10:41:24.658
87 6.0.0.595 2025.01.22 e62f3 P P 2276 1330 2025.01.23 01:58:03.219 2025.01.23 01:58:05.495 2025.01.23 00:53:22.728 2025.01.23 00:53:24.058
88 6.0.0.594 2025.01.21 47fb6 P P 2272 1343 2025.01.22 01:57:30.022 2025.01.22 01:57:32.294 2025.01.22 00:53:23.209 2025.01.22 00:53:24.552
89 6.0.0.590 2025.01.20 3d7c0 P P 2265 1415 2025.01.21 01:57:51.419 2025.01.21 01:57:53.684 2025.01.21 00:53:22.768 2025.01.21 00:53:24.183
90 6.0.0.588 2025.01.19 b1c4e P P 2247 1319 2025.01.20 01:57:12.224 2025.01.20 01:57:14.471 2025.01.20 00:53:17.108 2025.01.20 00:53:18.427
91 6.0.0.587 2025.01.18 63e6e P P 2255 1321 2025.01.19 01:56:54.987 2025.01.19 01:56:57.242 2025.01.19 00:53:12.017 2025.01.19 00:53:13.338
92 6.0.0.585 2025.01.16 2d6bb P P 2203 1328 2025.01.18 01:55:49.539 2025.01.18 01:55:51.742 2025.01.18 00:53:45.566 2025.01.18 00:53:46.894
93 6.0.0.584 2025.01.15 a0aa2 P P 2246 1461 2025.01.16 01:59:22.982 2025.01.16 01:59:25.228 2025.01.16 00:54:27.437 2025.01.16 00:54:28.898
94 6.0.0.581 2025.01.15 69690 P P 2277 1340 2025.01.15 18:09:09.639 2025.01.15 18:09:11.916 2025.01.15 17:03:09.997 2025.01.15 17:03:11.337
95 6.0.0.581 2025.01.14 21e9e P P 2250 1302 2025.01.15 01:58:34.897 2025.01.15 01:58:37.147 2025.01.15 00:54:03.356 2025.01.15 00:54:04.658
96 6.0.0.577 2025.01.14 91dce P P 2315 1348 2025.01.14 17:19:38.792 2025.01.14 17:19:41.107 2025.01.14 16:15:08.619 2025.01.14 16:15:09.967
97 6.0.0.577 2025.01.13 7e293 P P 2260 1352 2025.01.14 11:42:24.531 2025.01.14 11:42:26.791 2025.01.14 10:38:23.190 2025.01.14 10:38:24.542
98 6.0.0.576 2025.01.12 05898 P P 2254 1378 2025.01.13 01:59:48.923 2025.01.13 01:59:51.177 2025.01.13 00:54:29.169 2025.01.13 00:54:30.547
99 6.0.0.573 2025.01.10 c20f3 P P 2422 1356 2025.01.11 01:59:49.336 2025.01.11 01:59:51.758 2025.01.11 00:54:34.605 2025.01.11 00:54:35.961
100 6.0.0.571 2024.12.31 81bba P P 2406 1418 2025.01.01 01:58:46.194 2025.01.01 01:58:48.600 2025.01.01 00:54:01.433 2025.01.01 00:54:02.851
101 6.0.0.570 2024.12.30 c3c8d P P 2331 1346 2024.12.31 01:58:27.244 2024.12.31 01:58:29.575 2024.12.31 00:54:19.887 2024.12.31 00:54:21.233
102 6.0.0.565 2024.12.28 5fc59 P P 2352 1392 2024.12.29 17:53:54.512 2024.12.29 17:53:56.864 2024.12.29 16:49:27.948 2024.12.29 16:49:29.340
103 6.0.0.564 2024.12.26 12514 P P 2260 1333 2024.12.27 01:58:06.004 2024.12.27 01:58:08.264 2024.12.27 00:53:51.018 2024.12.27 00:53:52.351
104 6.0.0.560 2024.12.25 fa83e P P 2373 1337 2024.12.26 01:58:31.844 2024.12.26 01:58:34.217 2024.12.26 00:53:57.330 2024.12.26 00:53:58.667
105 6.0.0.559 2024.12.23 cc800 P P 2240 1455 2024.12.25 01:58:06.355 2024.12.25 01:58:08.595 2024.12.25 00:53:53.492 2024.12.25 00:53:54.947
106 6.0.0.556 2024.12.22 a0404 P P 2267 1342 2024.12.23 01:58:01.754 2024.12.23 01:58:04.021 2024.12.23 00:53:38.173 2024.12.23 00:53:39.515
107 6.0.0.555 2024.12.19 6990a P P 2274 1356 2024.12.21 12:52:50.464 2024.12.21 12:52:52.738 2024.12.21 11:47:54.481 2024.12.21 11:47:55.837
108 6.0.0.553 2024.12.17 d1f8a P P 2276 1353 2024.12.18 01:57:16.653 2024.12.18 01:57:18.929 2024.12.18 00:53:31.274 2024.12.18 00:53:32.627
109 6.0.0.552 2024.12.11 85e25 P P 2269 1332 2024.12.16 01:56:43.445 2024.12.16 01:56:45.714 2024.12.16 00:53:21.008 2024.12.16 00:53:22.340
110 6.0.0.550 2024.12.10 b37ac P P 2280 1350 2024.12.11 02:00:11.818 2024.12.11 02:00:14.098 2024.12.11 00:53:54.312 2024.12.11 00:53:55.662
111 6.0.0.548 2024.12.08 2cc77 P P 2405 1353 2024.12.09 02:02:59.209 2024.12.09 02:03:01.614 2024.12.09 00:57:19.332 2024.12.09 00:57:20.685
112 6.0.0.544 2024.12.05 96943 P P 2257 1333 2024.12.06 01:57:33.388 2024.12.06 01:57:35.645 2024.12.06 00:54:09.572 2024.12.06 00:54:10.905
113 6.0.0.543 2024.12.03 30b77 P P 2255 1360 2024.12.04 01:57:33.916 2024.12.04 01:57:36.171 2024.12.04 00:54:48.129 2024.12.04 00:54:49.489
114 6.0.0.540 2024.12.02 4a1f4 P P 2257 1344 2024.12.03 01:56:54.651 2024.12.03 01:56:56.908 2024.12.03 00:54:05.285 2024.12.03 00:54:06.629
115 6.0.0.539 2024.11.28 1f283 P P 2260 1354 2024.11.30 01:56:15.734 2024.11.30 01:56:17.994 2024.11.30 00:53:54.404 2024.11.30 00:53:55.758
116 6.0.0.535 2024.11.27 6551a P P 2257 1332 2024.11.28 01:54:57.881 2024.11.28 01:55:00.138 2024.11.28 00:53:14.130 2024.11.28 00:53:15.462
117 6.0.0.535 2024.11.26 77b95 P P 2267 1339 2024.11.27 01:55:17.309 2024.11.27 01:55:19.576 2024.11.27 00:53:31.752 2024.11.27 00:53:33.091
118 6.0.0.534 2024.11.25 e9584 P P 2336 1381 2024.11.26 01:55:32.132 2024.11.26 01:55:34.468 2024.11.26 00:53:17.652 2024.11.26 00:53:19.033
119 6.0.0.533 2024.11.17 933ac P P 2267 1338 2024.11.22 01:56:11.048 2024.11.22 01:56:13.315 2024.11.22 00:53:46.570 2024.11.22 00:53:47.908
120 6.0.0.532 2024.11.17 1a471 P P 2292 1346 2024.11.17 14:29:58.151 2024.11.17 14:30:00.443 2024.11.17 13:28:13.283 2024.11.17 13:28:14.629
121 6.0.0.532 2024.11.16 9e263 P P 2340 1407 2024.11.17 01:54:45.700 2024.11.17 01:54:48.040 2024.11.17 00:53:02.717 2024.11.17 00:53:04.124
122 6.0.0.530 2024.11.15 49804 P P 2235 1281 2024.11.16 01:52:57.059 2024.11.16 01:52:59.294 2024.11.16 00:52:48.130 2024.11.16 00:52:49.411
123 6.0.0.528 2024.11.14 9625b P P 2284 1478 2024.11.15 01:57:25.741 2024.11.15 01:57:28.025 2024.11.15 00:54:34.320 2024.11.15 00:54:35.798
124 6.0.0.526 2024.11.12 65b80 P P 2260 1367 2024.11.14 01:56:33.782 2024.11.14 01:56:36.042 2024.11.14 00:53:56.097 2024.11.14 00:53:57.464
125 6.0.0.523 2024.11.08 8ca23 P P 2308 1331 2024.11.11 01:54:47.868 2024.11.11 01:54:50.176 2024.11.11 00:53:10.532 2024.11.11 00:53:11.863
126 6.0.0.520 2024.11.08 52657 P P 2250 1313 2024.11.08 18:28:44.154 2024.11.08 18:28:46.404 2024.11.08 17:28:06.730 2024.11.08 17:28:08.043
127 6.0.0.520 2024.11.07 4eefa P P 2254 1324 2024.11.08 01:53:57.146 2024.11.08 01:53:59.400 2024.11.08 00:53:17.702 2024.11.08 00:53:19.026
128 6.0.0.516 2024.11.04 b0c36 P P 2293 1338 2024.11.05 01:55:04.033 2024.11.05 01:55:06.326 2024.11.05 00:53:07.387 2024.11.05 00:53:08.725
129 6.0.0.515 2024.10.30 d53f3 P P 2228 1335 2024.11.04 01:54:38.594 2024.11.04 01:54:40.822 2024.11.04 00:53:11.965 2024.11.04 00:53:13.300
130 6.0.0.512 2024.10.29 833ef P P 2296 1359 2024.10.30 01:57:04.134 2024.10.30 01:57:06.430 2024.10.30 00:54:11.460 2024.10.30 00:54:12.819
131 6.0.0.511 2024.10.26 c4bc9 P P 2263 1369 2024.10.29 01:56:48.142 2024.10.29 01:56:50.405 2024.10.29 00:53:53.798 2024.10.29 00:53:55.167
132 6.0.0.508 2024.10.24 a8f5b P P 2340 1357 2024.10.26 10:03:49.384 2024.10.26 10:03:51.724 2024.10.26 09:00:22.306 2024.10.26 09:00:23.663
133 6.0.0.502 2024.10.22 6bfd7 P P 2338 1352 2024.10.23 01:56:35.880 2024.10.23 01:56:38.218 2024.10.23 00:53:41.446 2024.10.23 00:53:42.798
134 6.0.0.500 2024.10.21 be565 P P 2298 1364 2024.10.22 01:56:55.595 2024.10.22 01:56:57.893 2024.10.22 00:53:56.373 2024.10.22 00:53:57.737
135 6.0.0.499 2024.10.19 6214b P P 2256 1354 2024.10.20 01:55:56.188 2024.10.20 01:55:58.444 2024.10.20 00:53:42.384 2024.10.20 00:53:43.738
136 6.0.0.498 2024.10.18 591a7 P P 2263 1320 2024.10.19 01:55:19.374 2024.10.19 01:55:21.637 2024.10.19 00:53:09.110 2024.10.19 00:53:10.430
137 6.0.0.494 2024.10.17 042ce P P 2305 1342 2024.10.18 01:55:58.157 2024.10.18 01:56:00.462 2024.10.18 00:53:19.661 2024.10.18 00:53:21.003
138 6.0.0.491 2024.10.14 dc5fb P P 2241 1340 2024.10.15 01:55:36.999 2024.10.15 01:55:39.240 2024.10.15 00:53:08.455 2024.10.15 00:53:09.795
139 6.0.0.489 2024.10.11 2ba59 P P 2268 1326 2024.10.12 01:55:04.833 2024.10.12 01:55:07.101 2024.10.12 00:52:55.508 2024.10.12 00:52:56.834
140 6.0.0.488 2024.10.09 1c93e P P 2217 1301 2024.10.10 01:54:54.795 2024.10.10 01:54:57.012 2024.10.10 00:53:17.700 2024.10.10 00:53:19.001
141 6.0.0.487 2024.10.06 065a3 P P 2257 1365 2024.10.07 01:56:18.634 2024.10.07 01:56:20.891 2024.10.07 00:53:53.779 2024.10.07 00:53:55.144
142 6.0.0.485 2024.10.05 9f5f7 P P 2341 1381 2024.10.06 01:55:55.251 2024.10.06 01:55:57.592 2024.10.06 00:53:34.380 2024.10.06 00:53:35.761
143 6.0.0.485 2024.10.04 e95c1 P P 2309 1324 2024.10.05 01:55:35.521 2024.10.05 01:55:37.830 2024.10.05 00:53:14.947 2024.10.05 00:53:16.271
144 6.0.0.483 2024.10.02 5e5ae P P 2267 1335 2024.10.03 01:57:01.376 2024.10.03 01:57:03.643 2024.10.03 00:53:58.359 2024.10.03 00:53:59.694
145 6.0.0.478 2024.09.30 b5010 P P 2240 1362 2024.10.01 01:55:59.804 2024.10.01 01:56:02.044 2024.10.01 00:53:27.744 2024.10.01 00:53:29.106
146 6.0.0.474 2024.09.26 e4efb P P 2283 1346 2024.09.30 01:55:37.202 2024.09.30 01:55:39.485 2024.09.30 00:53:23.025 2024.09.30 00:53:24.371
147 6.0.0.471 2024.09.25 dab71 P P 2276 1323 2024.09.26 01:55:41.039 2024.09.26 01:55:43.315 2024.09.26 00:53:37.433 2024.09.26 00:53:38.756
148 6.0.0.471 2024.09.24 01b51 P P 2264 1340 2024.09.25 01:56:31.345 2024.09.25 01:56:33.609 2024.09.25 00:54:01.628 2024.09.25 00:54:02.968
149 6.0.0.470 2024.09.23 77cc0 P P 2266 1332 2024.09.24 01:55:41.412 2024.09.24 01:55:43.678 2024.09.24 00:53:46.195 2024.09.24 00:53:47.527
150 6.0.0.467 2024.09.21 ea0b8 P P 2281 1447 2024.09.23 01:56:53.649 2024.09.23 01:56:55.930 2024.09.23 00:54:33.197 2024.09.23 00:54:34.644
151 6.0.0.466 2024.09.20 32dc6 P P 2242 1347 2024.09.21 01:55:11.002 2024.09.21 01:55:13.244 2024.09.21 00:53:23.222 2024.09.21 00:53:24.569
152 6.0.0.461 2024.09.17 2c895 P P 2259 1360 2024.09.18 01:54:31.916 2024.09.18 01:54:34.175 2024.09.18 00:52:33.904 2024.09.18 00:52:35.264
153 6.0.0.460 2024.09.11 3c253 P P 2253 1307 2024.09.17 01:54:32.870 2024.09.17 01:54:35.123 2024.09.17 00:53:00.468 2024.09.17 00:53:01.775
154 6.0.0.457 2024.09.09 fdc6f P P 2290 1339 2024.09.10 01:55:21.878 2024.09.10 01:55:24.168 2024.09.10 00:53:11.093 2024.09.10 00:53:12.432
155 6.0.0.455 2024.09.07 500d8 P P 2282 1359 2024.09.08 01:55:44.255 2024.09.08 01:55:46.537 2024.09.08 00:53:44.930 2024.09.08 00:53:46.289
156 6.0.0.454 2024.09.05 4d70f P P 2292 1330 2024.09.06 01:55:54.043 2024.09.06 01:55:56.335 2024.09.06 00:53:22.392 2024.09.06 00:53:23.722
157 6.0.0.452 2024.09.04 9ff9c P P 2278 1337 2024.09.05 01:55:27.039 2024.09.05 01:55:29.317 2024.09.05 00:53:27.211 2024.09.05 00:53:28.548
158 6.0.0.450 2024.09.02 27124 P P 2303 1348 2024.09.04 01:55:54.938 2024.09.04 01:55:57.241 2024.09.04 00:53:27.337 2024.09.04 00:53:28.685
159 6.0.0.447 2024.09.01 901b4 P P 2258 1319 2024.09.02 01:46:04.147 2024.09.02 01:46:06.405 2024.09.02 00:43:29.774 2024.09.02 00:43:31.093
160 6.0.0.446 2024.08.30 fe1b2 P P 2282 1344 2024.09.01 01:44:40.079 2024.09.01 01:44:42.361 2024.09.01 00:43:25.447 2024.09.01 00:43:26.791
161 6.0.0.444 2024.08.28 785d4 P P 2274 1338 2024.08.30 01:45:01.089 2024.08.30 01:45:03.363 2024.08.30 00:43:46.647 2024.08.30 00:43:47.985
162 6.0.0.442 2024.08.21 4a68f P P 2282 1328 2024.08.28 01:44:44.202 2024.08.28 01:44:46.484 2024.08.28 00:43:28.853 2024.08.28 00:43:30.181
163 6.0.0.441 2024.08.20 75042 P P 2246 1327 2024.08.21 01:43:33.736 2024.08.21 01:43:35.982 2024.08.21 00:42:51.163 2024.08.21 00:42:52.490
164 6.0.0.438 2024.08.16 088b5 P P 2349 1342 2024.08.19 01:46:09.833 2024.08.19 01:46:12.182 2024.08.19 00:43:40.359 2024.08.19 00:43:41.701
165 6.0.0.437 2024.08.14 3c88b P P 2334 1401 2024.08.16 01:49:15.844 2024.08.16 01:49:18.178 2024.08.16 00:44:35.800 2024.08.16 00:44:37.201
166 6.0.0.436 2024.08.13 b8e75 P P 2357 1414 2024.08.14 01:48:13.201 2024.08.14 01:48:15.558 2024.08.14 00:44:11.204 2024.08.14 00:44:12.618
167 6.0.0.432 2024.08.11 e82ac P P 2371 1382 2024.08.13 01:46:47.783 2024.08.13 01:46:50.154 2024.08.13 00:43:45.418 2024.08.13 00:43:46.800
168 6.0.0.431 2024.08.11 16bb1 P P 2405 1365 2024.08.11 17:52:18.717 2024.08.11 17:52:21.122 2024.08.11 16:48:52.996 2024.08.11 16:48:54.361
169 6.0.0.431 2024.08.09 de5a7 P P 2438 1424 2024.08.10 17:25:40.515 2024.08.10 17:25:42.953 2024.08.10 16:23:04.365 2024.08.10 16:23:05.789
170 6.0.0.428 2024.08.08 9191b P P 2346 1370 2024.08.10 01:46:11.877 2024.08.10 01:46:14.223 2024.08.10 00:43:45.025 2024.08.10 00:43:46.395
171 6.0.0.423 2024.08.07 33b41 P P 2384 1368 2024.08.08 08:45:30.164 2024.08.08 08:45:32.548 2024.08.08 07:43:02.641 2024.08.08 07:43:04.009
172 6.0.0.421 2024.08.06 ed60d P P 2261 1273 2024.08.07 01:41:58.614 2024.08.07 01:42:00.875 2024.08.07 00:42:19.343 2024.08.07 00:42:20.616
173 6.0.0.419 2024.08.05 3505a P P 2310 1263 2024.08.06 01:40:13.976 2024.08.06 01:40:16.286 2024.08.06 00:42:01.185 2024.08.06 00:42:02.448
174 6.0.0.409 2024.08.02 ec18f P P 2341 1326 2024.08.05 01:39:20.421 2024.08.05 01:39:22.762 2024.08.05 00:41:27.190 2024.08.05 00:41:28.516
175 6.0.0.406 2024.08.01 b20be P P 2277 1297 2024.08.02 01:37:48.720 2024.08.02 01:37:50.997 2024.08.02 00:40:46.233 2024.08.02 00:40:47.530
176 6.0.0.405 2024.07.31 a62ac P P 2328 1438 2024.08.01 01:45:59.050 2024.08.01 01:46:01.378 2024.08.01 00:45:48.382 2024.08.01 00:45:49.820
177 6.0.0.403 2024.07.29 30f03 P P 2353 1344 2024.07.30 01:41:13.577 2024.07.30 01:41:15.930 2024.07.30 00:42:18.202 2024.07.30 00:42:19.546
178 6.0.0.401 2024.07.26 24e41 P P 2356 1319 2024.07.27 01:40:30.327 2024.07.27 01:40:32.683 2024.07.27 00:41:52.452 2024.07.27 00:41:53.771
179 6.0.0.400 2024.07.24 5bb78 P P 2305 1309 2024.07.25 01:41:16.886 2024.07.25 01:41:19.191 2024.07.25 00:42:01.267 2024.07.25 00:42:02.576
180 6.0.0.398 2024.07.23 85b18 P E 2298 2360 2024.07.24 02:04:33.230 2024.07.24 02:04:35.528 2024.07.24 00:43:24.349 2024.07.24 00:43:26.709
181 6.0.0.397 2024.07.22 c734c P P 2351 1348 2024.07.23 01:41:03.365 2024.07.23 01:41:05.716 2024.07.23 00:42:07.448 2024.07.23 00:42:08.796
182 6.0.0.396 2024.07.13 cf952 P P 2294 1323 2024.07.22 01:41:16.302 2024.07.22 01:41:18.596 2024.07.22 00:42:13.896 2024.07.22 00:42:15.219
183 6.0.0.395 2024.07.10 845f4 P P 2234 1281 2024.07.13 01:39:03.271 2024.07.13 01:39:05.505 2024.07.13 00:41:07.208 2024.07.13 00:41:08.489
184 6.0.0.392 2024.07.09 ea301 P P 2285 1294 2024.07.10 01:47:05.361 2024.07.10 01:47:07.646 2024.07.10 00:42:24.276 2024.07.10 00:42:25.570
185 6.0.0.391 2024.07.08 7d50c P P 2296 1395 2024.07.09 01:43:32.123 2024.07.09 01:43:34.419 2024.07.09 00:42:30.419 2024.07.09 00:42:31.814
186 6.0.0.389 2024.07.05 cc71c P P 2362 1318 2024.07.06 01:44:03.218 2024.07.06 01:44:05.580 2024.07.06 00:42:53.353 2024.07.06 00:42:54.671
187 6.0.0.388 2024.06.30 e5700 P P 2315 1326 2024.07.01 01:44:08.669 2024.07.01 01:44:10.984 2024.07.01 00:42:44.854 2024.07.01 00:42:46.180
188 6.0.0.387 2024.06.27 7c28a P P 2304 1326 2024.06.28 01:43:49.639 2024.06.28 01:43:51.943 2024.06.28 00:43:02.749 2024.06.28 00:43:04.075
189 6.0.0.386 2024.06.23 7c57f P P 2341 1317 2024.06.24 01:40:58.745 2024.06.24 01:41:01.086 2024.06.24 00:42:14.547 2024.06.24 00:42:15.864
190 6.0.0.384 2024.06.21 24d99 P P 2316 1427 2024.06.22 01:37:44.291 2024.06.22 01:37:46.607 2024.06.22 00:41:08.819 2024.06.22 00:41:10.246
191 6.0.0.374 2024.06.13 0097d P P 2388 2390 2024.06.21 18:24:38.549 2024.06.21 18:24:40.937 2024.06.21 17:27:38.190 2024.06.21 17:27:40.580
192 6.0.0.373 2024.06.09 363f0 P P 2563 1000 2024.06.12 23:39:46.763 2024.06.12 23:39:49.326 2024.06.12 22:46:36.392 2024.06.12 22:46:37.392
193 6.0.0.372 2024.06.08 9e7f2 P P 2157 969 2024.06.09 19:06:01.036 2024.06.09 19:06:03.193 2024.06.09 18:15:27.002 2024.06.09 18:15:27.971
194 6.0.0.368 2024.06.03 25f3e P P 2421 1297 2024.06.15 12:00:41.509 2024.06.15 12:00:43.930 2024.06.15 11:05:02.878 2024.06.15 11:05:04.175
195 6.0.0.366 2024.05.28 8e46f P P 2141 985 2024.06.10 20:00:02.831 2024.06.10 20:00:04.972 2024.06.10 19:09:17.487 2024.06.10 19:09:18.472
196 6.0.0.363 2024.05.28 95442 P P 2141 953 2024.06.10 16:20:12.872 2024.06.10 16:20:15.013 2024.06.10 15:29:27.588 2024.06.10 15:29:28.541
197 6.0.0.363 2024.05.28 40d0b P P 2157 1047 2024.06.10 18:13:31.734 2024.06.10 18:13:33.891 2024.06.10 17:22:48.421 2024.06.10 17:22:49.468
198 6.0.0.362 2024.05.24 ecc49 P P 2547 953 2024.05.24 23:39:39.396 2024.05.24 23:39:41.943 2024.05.24 22:46:35.071 2024.05.24 22:46:36.024
199 6.0.0.359 2024.05.23 9cb11 P P 2563 954 2024.05.23 23:40:17.536 2024.05.23 23:40:20.099 2024.05.23 22:46:59.966 2024.05.23 22:47:00.920
200 6.0.0.358 2024.05.21 995dd P P 2547 953 2024.05.22 23:40:09.065 2024.05.22 23:40:11.612 2024.05.22 22:46:35.447 2024.05.22 22:46:36.400
201 6.0.0.357 2024.05.18 bf6c4 P P 2594 953 2024.05.20 23:39:20.557 2024.05.20 23:39:23.151 2024.05.20 22:46:34.036 2024.05.20 22:46:34.989
202 6.0.0.356 2024.05.17 eab06 P P 2516 969 2024.05.17 23:39:14.587 2024.05.17 23:39:17.103 2024.05.17 22:46:44.610 2024.05.17 22:46:45.579
203 6.0.0.355 2024.05.16 8dd6e P P 2531 953 2024.05.16 23:39:15.505 2024.05.16 23:39:18.036 2024.05.16 22:46:31.432 2024.05.16 22:46:32.385
204 6.0.0.354 2024.05.15 d3adc P P 2532 953 2024.05.15 23:39:23.077 2024.05.15 23:39:25.609 2024.05.15 22:46:44.835 2024.05.15 22:46:45.788
205 6.0.0.351 2024.05.14 2e3e0 P P 2516 969 2024.05.14 23:38:50.274 2024.05.14 23:38:52.790 2024.05.14 22:46:23.658 2024.05.14 22:46:24.627
206 6.0.0.348 2024.05.08 e1ec4 P P 2547 984 2024.05.13 23:39:21.200 2024.05.13 23:39:23.747 2024.05.13 22:46:44.957 2024.05.13 22:46:45.941
207 6.0.0.346 2024.05.07 9d7de P P 2547 969 2024.05.07 23:39:28.546 2024.05.07 23:39:31.093 2024.05.07 22:46:45.811 2024.05.07 22:46:46.780
208 6.0.0.345 2024.05.06 154a0 P P 2547 969 2024.05.06 23:39:04.394 2024.05.06 23:39:06.941 2024.05.06 22:46:28.438 2024.05.06 22:46:29.407
209 6.0.0.344 2024.05.02 b49d8 P P 2531 953 2024.05.02 23:38:14.046 2024.05.02 23:38:16.577 2024.05.02 22:46:04.022 2024.05.02 22:46:04.975
210 6.0.0.342 2024.04.29 e6247 P P 2516 953 2024.04.29 23:38:23.634 2024.04.29 23:38:26.150 2024.04.29 22:46:27.121 2024.04.29 22:46:28.074
211 6.0.0.339 2024.04.28 0bcba P P 2563 954 2024.04.28 23:38:14.193 2024.04.28 23:38:16.756 2024.04.28 22:46:04.014 2024.04.28 22:46:04.968
212 6.0.0.336 2024.04.24 7d2ac P P 3531 953 2024.04.26 23:38:18.705 2024.04.26 23:38:22.236 2024.04.26 22:46:08.440 2024.04.26 22:46:09.393
213 6.0.0.333 2024.04.23 85d98 P P 2532 954 2024.04.23 23:38:52.492 2024.04.23 23:38:55.024 2024.04.23 22:46:29.171 2024.04.23 22:46:30.125
214 6.0.0.328 2024.04.22 485d0 P P 2547 953 2024.04.22 23:38:32.790 2024.04.22 23:38:35.337 2024.04.22 22:46:10.640 2024.04.22 22:46:11.593
215 6.0.0.327 2024.04.19 eeed9 P P 2594 969 2024.04.21 23:38:50.352 2024.04.21 23:38:52.946 2024.04.21 22:46:31.238 2024.04.21 22:46:32.207
216 6.0.0.325 2024.04.18 f5930 P P 2547 969 2024.04.18 23:38:42.519 2024.04.18 23:38:45.066 2024.04.18 22:46:10.005 2024.04.18 22:46:10.974
217 6.0.0.324 2024.04.17 84ac9 P P 2563 969 2024.04.17 23:39:17.392 2024.04.17 23:39:19.955 2024.04.17 22:46:30.711 2024.04.17 22:46:31.680
218 6.0.0.321 2024.04.16 eba22 P P 2547 969 2024.04.16 23:38:10.129 2024.04.16 23:38:12.676 2024.04.16 22:46:08.408 2024.04.16 22:46:09.377
219 6.0.0.315 2024.04.15 4e80d P P 2532 969 2024.04.15 23:38:36.177 2024.04.15 23:38:38.709 2024.04.15 22:46:29.024 2024.04.15 22:46:29.993
220 6.0.0.313 2024.04.14 b6eab P P 2078 953 2024.04.14 23:35:34.104 2024.04.14 23:35:36.182 2024.04.14 22:46:24.608 2024.04.14 22:46:25.561
221 6.0.0.313 2024.04.12 aaf5f P P 2109 953 2024.04.12 23:35:10.745 2024.04.12 23:35:12.854 2024.04.12 22:46:02.252 2024.04.12 22:46:03.205
222 6.0.0.312 2024.04.12 ff9f0 P P 2109 953 2024.04.12 10:22:11.684 2024.04.12 10:22:13.793 2024.04.12 09:33:14.814 2024.04.12 09:33:15.767
223 6.0.0.312 2024.04.04 3496c P P 2016 891 2024.04.09 23:35:14.697 2024.04.09 23:35:16.713 2024.04.09 22:47:07.373 2024.04.09 22:47:08.264
224 6.0.0.310 2024.04.03 e93f6 P P 2016 922 2024.04.04 09:46:19.906 2024.04.04 09:46:21.922 2024.04.04 08:59:21.558 2024.04.04 08:59:22.480
225 6.0.0.308 2024.04.03 fa979 P P 2000 891 2024.04.03 17:00:01.624 2024.04.03 17:00:03.624 2024.04.03 16:13:04.220 2024.04.03 16:13:05.111
226 6.0.0.308 2024.04.02 65562 P P 2016 875 2024.04.03 00:40:01.053 2024.04.03 00:40:03.069 2024.04.02 23:53:58.924 2024.04.02 23:53:59.799
227 6.0.0.305 2024.04.01 8a4f6 P P 2016 906 2024.04.02 08:52:26.507 2024.04.02 08:52:28.523 2024.04.02 08:06:18.045 2024.04.02 08:06:18.951
228 6.0.0.303 2024.03.31 ecb39 P P 2015 890 2024.04.01 08:58:23.427 2024.04.01 08:58:25.442 2024.04.01 05:33:24.244 2024.04.01 05:33:25.134
229 6.0.0.301 2024.03.25 69d0a P P 2015 889 2024.03.28 22:56:40.743 2024.03.28 22:56:42.758 2024.03.28 22:10:43.822 2024.03.28 22:10:44.711
230 6.0.0.299 2024.03.22 b1ba8 P P 1999 890 2024.03.24 00:26:28.784 2024.03.24 00:26:30.783 2024.03.23 23:39:32.544 2024.03.23 23:39:33.434
231 6.0.0.295 2024.03.22 ef66a P P 2014 889 2024.03.22 13:17:16.617 2024.03.22 13:17:18.631 2024.03.22 12:30:27.498 2024.03.22 12:30:28.387
232 6.0.0.295 2024.03.21 bf5ab P P 1999 890 2024.03.21 22:37:17.646 2024.03.21 22:37:19.645 2024.03.21 21:50:22.950 2024.03.21 21:50:23.840
233 6.0.0.294 2024.03.20 bd00d P P 2015 890 2024.03.21 01:40:06.236 2024.03.21 01:40:08.251 2024.03.21 00:53:18.878 2024.03.21 00:53:19.768
234 6.0.0.293 2024.03.20 fb994 P P 1983 874 2024.03.20 18:12:41.803 2024.03.20 18:12:43.786 2024.03.20 17:25:44.124 2024.03.20 17:25:44.998

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):