2019-05-06 16:55:10 +00:00
|
|
|
contract Medium {
|
|
|
|
uint public a;
|
|
|
|
uint[] public b;
|
|
|
|
function f1(uint x) public returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
|
|
|
|
function f2(uint x) public returns (uint) { b[uint8(msg.data[1])] = x; }
|
|
|
|
function f3(uint x) public returns (uint) { b[uint8(msg.data[2])] = x; }
|
|
|
|
function g7(uint x) public payable returns (uint) { b[uint8(msg.data[6])] = x; }
|
|
|
|
function g8(uint x) public payable returns (uint) { b[uint8(msg.data[7])] = x; }
|
|
|
|
function g9(uint x) public payable returns (uint) { b[uint8(msg.data[8])] = x; }
|
|
|
|
function g0(uint x) public payable returns (uint) { require(x > 10); }
|
|
|
|
}
|
|
|
|
// ====
|
|
|
|
// optimize: true
|
|
|
|
// optimize-runs: 2
|
|
|
|
// ----
|
2019-05-06 12:31:49 +00:00
|
|
|
// creation:
|
2020-10-13 16:14:08 +00:00
|
|
|
// codeDepositCost: 141600
|
2019-09-06 17:11:07 +00:00
|
|
|
// executionCost: 190
|
2020-10-13 16:14:08 +00:00
|
|
|
// totalCost: 141790
|
2019-05-06 16:55:10 +00:00
|
|
|
// external:
|
2019-12-04 10:41:42 +00:00
|
|
|
// a(): 998
|
|
|
|
// b(uint256): 2063
|
|
|
|
// f1(uint256): 41254
|
|
|
|
// f2(uint256): 21298
|
|
|
|
// f3(uint256): 21342
|
2019-05-06 16:55:10 +00:00
|
|
|
// g0(uint256): 332
|
2019-12-04 10:41:42 +00:00
|
|
|
// g7(uint256): 21208
|
|
|
|
// g8(uint256): 21186
|
|
|
|
// g9(uint256): 21142
|