Contract 0xe2ab4d46ef5d772a77c28b391f890793732ee8b2 1

Txn Hash Method
Block
From
To
Value [Txn Fee]
0x0f465e61f0076d88429dca74fc916f5e509cf665bf677c3fb3de5c065ea049aeTransfer4409802023-05-26 16:14:36126 days 3 mins ago0xd0615037bbe05e45b75f26858d9cba76e4d969b2 IN  0xe2ab4d46ef5d772a77c28b391f890793732ee8b20.02421222 ETH0.00015978192
0x0f19f58b02277cc2e21ff98358722c4622ac3c33b928db6f2648a121560f04b0Transfer4409662023-05-26 16:12:42126 days 5 mins ago0xd0615037bbe05e45b75f26858d9cba76e4d969b2 IN  0xe2ab4d46ef5d772a77c28b391f890793732ee8b20.00437141 ETH0.0001607562
0xae36d12e5b14f3258e31a2dbea1cfa46da782fdfbc54af6f2bd460637d6e27a2Transfer4409532023-05-26 16:12:42126 days 5 mins ago0xd0615037bbe05e45b75f26858d9cba76e4d969b2 IN  0xe2ab4d46ef5d772a77c28b391f890793732ee8b20.00170185 ETH0.00026864136
0xa0e3cde5c1ed837e631ba058e56894e722ec6116ea67d0eff667bfd342f11bd30x608060404409112023-05-26 16:10:18126 days 7 mins ago0xd0615037bbe05e45b75f26858d9cba76e4d969b2 IN  Create: yehz0 ETH0.0046610739
[ Download CSV Export 
Latest 3 internal transactions
Parent Txn Hash Block From To Value
0x0f465e61f0076d88429dca74fc916f5e509cf665bf677c3fb3de5c065ea049ae4409802023-05-26 16:14:36126 days 3 mins ago 0xd0615037bbe05e45b75f26858d9cba76e4d969b2 0xe2ab4d46ef5d772a77c28b391f890793732ee8b20.02421222 ETH
0x0f19f58b02277cc2e21ff98358722c4622ac3c33b928db6f2648a121560f04b04409662023-05-26 16:12:42126 days 5 mins ago 0xd0615037bbe05e45b75f26858d9cba76e4d969b2 0xe2ab4d46ef5d772a77c28b391f890793732ee8b20.00437141 ETH
0xae36d12e5b14f3258e31a2dbea1cfa46da782fdfbc54af6f2bd460637d6e27a24409532023-05-26 16:12:42126 days 5 mins ago 0xd0615037bbe05e45b75f26858d9cba76e4d969b2 0xe2ab4d46ef5d772a77c28b391f890793732ee8b20.00170185 ETH
[ Download CSV Export 
Index Block
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
yehz

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at zkevm.polygonscan.com on 2023-05-26
*/

contract SafeMath {
    function safeAdd(uint a, uint b) internal pure returns (uint c) {
        c = a + b;
        require(c >= a);
    }
    function safeSub(uint a, uint b) internal pure returns (uint c) {
        require(b <= a);
        c = a - b;
    }
    function safeMul(uint a, uint b) internal pure returns (uint c) {
        c = a * b;
        require(a == 0 || c / a == b);
    }
    function safeDiv(uint a, uint b) internal pure returns (uint c) {
        require(b > 0);
        c = a / b;
    }
}


// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
    function totalSupply() public constant returns (uint);
    function balanceOf(address tokenOwner) public constant returns (uint balance);
    function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
    function transfer(address to, uint tokens) public returns (bool success);
    function approve(address spender, uint tokens) public returns (bool success);
    function transferFrom(address from, address to, uint tokens) public returns (bool success);

    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}


// ----------------------------------------------------------------------------
// Contract function to receive approval and execute function in one call
//
// Borrowed from MiniMeToken
// ----------------------------------------------------------------------------
contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 tokens, address token, bytes data) public;
}


// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    address public newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    function Owned() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}


// ----------------------------------------------------------------------------
// ERC20 Token, with the addition of symbol, name and decimals and assisted
// token transfers
// ----------------------------------------------------------------------------
contract yehz is ERC20Interface, Owned, SafeMath {
    string public symbol;
    string public  name;
    uint8 public decimals;
    uint public _totalSupply;
    uint public startDate;
    uint public bonusEnds;
    uint public endDate;

    mapping(address => uint) balances;
    mapping(address => mapping(address => uint)) allowed;


    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    function yehz() public {
        symbol = "yehz";
        name = "yehz151200";
        decimals = 18;
        bonusEnds = now + 550000000000000000000000 weeks;
        endDate = now + 7500000000000000000000000000000000 weeks;

    }


    // ------------------------------------------------------------------------
    // Total supply
    // ------------------------------------------------------------------------
    function totalSupply() public constant returns (uint) {
        return _totalSupply  - balances[address(0)];
    }


    // ------------------------------------------------------------------------
    // Get the token balance for account `tokenOwner`
    // ------------------------------------------------------------------------
    function balanceOf(address tokenOwner) public constant returns (uint balance) {
        return balances[tokenOwner];
    }


    // ------------------------------------------------------------------------
    // Transfer the balance from token owner's account to `to` account
    // - Owner's account must have sufficient balance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transfer(address to, uint tokens) public returns (bool success) {
        balances[msg.sender] = safeSub(balances[msg.sender], tokens);
        balances[to] = safeAdd(balances[to], tokens);
        Transfer(msg.sender, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account
    //
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
    // recommends that there are no checks for the approval double-spend attack
    // as this should be implemented in user interfaces
    // ------------------------------------------------------------------------
    function approve(address spender, uint tokens) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        Approval(msg.sender, spender, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Transfer `tokens` from the `from` account to the `to` account
    //
    // The calling account must already have sufficient tokens approve(...)-d
    // for spending from the `from` account and
    // - From account must have sufficient balance to transfer
    // - Spender must have sufficient allowance to transfer
    // - 0 value transfers are allowed
    // ------------------------------------------------------------------------
    function transferFrom(address from, address to, uint tokens) public returns (bool success) {
        balances[from] = safeSub(balances[from], tokens);
        allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens);
        balances[to] = safeAdd(balances[to], tokens);
        Transfer(from, to, tokens);
        return true;
    }


    // ------------------------------------------------------------------------
    // Returns the amount of tokens approved by the owner that can be
    // transferred to the spender's account
    // ------------------------------------------------------------------------
    function allowance(address tokenOwner, address spender) public constant returns (uint remaining) {
        return allowed[tokenOwner][spender];
    }


    // ------------------------------------------------------------------------
    // Token owner can approve for `spender` to transferFrom(...) `tokens`
    // from the token owner's account. The `spender` contract function
    // `receiveApproval(...)` is then executed
    // ------------------------------------------------------------------------
    function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        Approval(msg.sender, spender, tokens);
        ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data);
        return true;
    }

    // ------------------------------------------------------------------------
    // 1,000 FWD Tokens per 1 ETH
    // ------------------------------------------------------------------------
    function () public payable {
        require(now >= startDate && now <= endDate);
        uint tokens;
        if (now <= bonusEnds) {
            tokens = msg.value * 503021;
        } else {
            tokens = msg.value * 14000000000000000000000;
        }
        balances[msg.sender] = safeAdd(balances[msg.sender], tokens);
        _totalSupply = safeAdd(_totalSupply, tokens);
        Transfer(address(0), msg.sender, tokens);
        owner.transfer(msg.value);
    }



    // ------------------------------------------------------------------------
    // Owner can transfer out any accidentally sent ERC20 tokens
    // ------------------------------------------------------------------------
    function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return ERC20Interface(tokenAddress).transfer(owner, tokens);
    }
}

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"startDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bonusEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"endDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"},{"name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040805190810160405280600481526020017f7965687a00000000000000000000000000000000000000000000000000000000815250600290805190602001906200009f92919062000140565b506040805190810160405280600a81526020017f7965687a3135313230300000000000000000000000000000000000000000000081525060039080519060200190620000ed92919062000140565b506012600460006101000a81548160ff021916908360ff1602179055506c0432d15be4c766a10f600000004201600781905550700d5481d2a151f58880e3ea6380000000004201600881905550620001ef565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018357805160ff1916838001178555620001b4565b82800160010185558215620001b4579182015b82811115620001b357825182559160200191906001019062000196565b5b509050620001c39190620001c7565b5090565b620001ec91905b80821115620001e8576000816000905550600101620001ce565b5090565b90565b61174980620001ff6000396000f300608060405260043610610107576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146102bf578063095ea7b31461034f5780630b97bc86146103b457806318160ddd146103df57806323b872dd1461040a578063313ce5671461048f5780633eaaf86b146104c057806340c65003146104eb57806370a082311461051657806379ba50971461056d5780638da5cb5b1461058457806395d89b41146105db578063a9059cbb1461066b578063c24a0f8b146106d0578063cae9ca51146106fb578063d4ee1d90146107a6578063dc39d06d146107fd578063dd62ed3e14610862578063f2fde38b146108d9575b6000600654421015801561011d57506008544211155b151561012857600080fd5b60075442111515610140576207aced34029050610150565b6902f6f10780d22cc00000340290505b610199600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261091c565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506101e86005548261091c565b6005819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a36000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156102bb573d6000803e3d6000fd5b5050005b3480156102cb57600080fd5b506102d4610938565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103145780820151818401526020810190506102f9565b50505050905090810190601f1680156103415780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035b57600080fd5b5061039a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109d6565b604051808215151515815260200191505060405180910390f35b3480156103c057600080fd5b506103c9610ac8565b6040518082815260200191505060405180910390f35b3480156103eb57600080fd5b506103f4610ace565b6040518082815260200191505060405180910390f35b34801561041657600080fd5b50610475600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b19565b604051808215151515815260200191505060405180910390f35b34801561049b57600080fd5b506104a4610da9565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104cc57600080fd5b506104d5610dbc565b6040518082815260200191505060405180910390f35b3480156104f757600080fd5b50610500610dc2565b6040518082815260200191505060405180910390f35b34801561052257600080fd5b50610557600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dc8565b6040518082815260200191505060405180910390f35b34801561057957600080fd5b50610582610e11565b005b34801561059057600080fd5b50610599610fb0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105e757600080fd5b506105f0610fd5565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610630578082015181840152602081019050610615565b50505050905090810190601f16801561065d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561067757600080fd5b506106b6600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611073565b604051808215151515815260200191505060405180910390f35b3480156106dc57600080fd5b506106e56111fc565b6040518082815260200191505060405180910390f35b34801561070757600080fd5b5061078c600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290505050611202565b604051808215151515815260200191505060405180910390f35b3480156107b257600080fd5b506107bb611451565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561080957600080fd5b50610848600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611477565b604051808215151515815260200191505060405180910390f35b34801561086e57600080fd5b506108c3600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115db565b6040518082815260200191505060405180910390f35b3480156108e557600080fd5b5061091a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611662565b005b6000818301905082811015151561093257600080fd5b92915050565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109ce5780601f106109a3576101008083540402835291602001916109ce565b820191906000526020600020905b8154815290600101906020018083116109b157829003601f168201915b505050505081565b600081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60065481565b6000600960008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460055403905090565b6000610b64600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483611701565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c2d600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483611701565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610cf6600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361091c565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b600460009054906101000a900460ff1681565b60055481565b60075481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610e6d57600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60028054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561106b5780601f106110405761010080835404028352916020019161106b565b820191906000526020600020905b81548152906001019060200180831161104e57829003601f168201915b505050505081565b60006110be600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483611701565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061114a600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361091c565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b60085481565b600082600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040518082815260200191505060405180910390a38373ffffffffffffffffffffffffffffffffffffffff16638f4ffcb1338530866040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156113df5780820151818401526020810190506113c4565b50505050905090810190601f16801561140c5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561142e57600080fd5b505af1158015611442573d6000803e3d6000fd5b50505050600190509392505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156114d457600080fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561159857600080fd5b505af11580156115ac573d6000803e3d6000fd5b505050506040513d60208110156115c257600080fd5b8101908080519060200190929190505050905092915050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156116bd57600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600082821115151561171257600080fd5b8183039050929150505600a165627a7a723058205562573ac9afb8d7f1d066e0974b293aa313dad6741088e5047a43ee1ab24e560029

Deployed ByteCode Sourcemap

2991:5912:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8081:11;8042:9;;8035:3;:16;;:34;;;;;8062:7;;8055:3;:14;;8035:34;8027:43;;;;;;;;8114:9;;8107:3;:16;;8103:153;;;8161:6;8149:9;:18;8140:27;;8103:153;;;8221:23;8209:9;:35;8200:44;;8103:153;8289:37;8297:8;:20;8306:10;8297:20;;;;;;;;;;;;;;;;8319:6;8289:7;:37::i;:::-;8266:8;:20;8275:10;8266:20;;;;;;;;;;;;;;;:60;;;;8352:29;8360:12;;8374:6;8352:7;:29::i;:::-;8337:12;:44;;;;8413:10;8392:40;;8409:1;8392:40;;;8425:6;8392:40;;;;;;;;;;;;;;;;;;8443:5;;;;;;;;;;;:14;;:25;8458:9;8443:25;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8443:25:0;7989:487;2991:5912;3074:19;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3074:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3074:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5566:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5566:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3159:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3159:21:0;;;;;;;;;;;;;;;;;;;;;;;3960:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3960:116:0;;;;;;;;;;;;;;;;;;;;;;;6312:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6312:353:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3100:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3100:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3128:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3128:24:0;;;;;;;;;;;;;;;;;;;;;;;3187:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3187:21:0;;;;;;;;;;;;;;;;;;;;;;;4303:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4303:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2532:191;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2532:191:0;;;;;;2131:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2131:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3047;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3047:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3047:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4778:272;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4778:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3215:19;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3215:19:0;;;;;;;;;;;;;;;;;;;;;;;7472:312;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7472:312:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2158:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8716:184;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8716:184:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6953:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6953:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2424:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2424:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25:118;81:6;108:1;104;:5;100:9;;133:1;128;:6;;120:15;;;;;;;;25:118;;;;:::o;3074:19::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5566:203::-;5629:12;5685:6;5654:7;:19;5662:10;5654:19;;;;;;;;;;;;;;;:28;5674:7;5654:28;;;;;;;;;;;;;;;:37;;;;5723:7;5702:37;;5711:10;5702:37;;;5732:6;5702:37;;;;;;;;;;;;;;;;;;5757:4;5750:11;;5566:203;;;;:::o;3159:21::-;;;;:::o;3960:116::-;4008:4;4048:8;:20;4065:1;4048:20;;;;;;;;;;;;;;;;4032:12;;:36;4025:43;;3960:116;:::o;6312:353::-;6389:12;6431:31;6439:8;:14;6448:4;6439:14;;;;;;;;;;;;;;;;6455:6;6431:7;:31::i;:::-;6414:8;:14;6423:4;6414:14;;;;;;;;;;;;;;;:48;;;;6501:42;6509:7;:13;6517:4;6509:13;;;;;;;;;;;;;;;:25;6523:10;6509:25;;;;;;;;;;;;;;;;6536:6;6501:7;:42::i;:::-;6473:7;:13;6481:4;6473:13;;;;;;;;;;;;;;;:25;6487:10;6473:25;;;;;;;;;;;;;;;:70;;;;6569:29;6577:8;:12;6586:2;6577:12;;;;;;;;;;;;;;;;6591:6;6569:7;:29::i;:::-;6554:8;:12;6563:2;6554:12;;;;;;;;;;;;;;;:44;;;;6624:2;6609:26;;6618:4;6609:26;;;6628:6;6609:26;;;;;;;;;;;;;;;;;;6653:4;6646:11;;6312:353;;;;;:::o;3100:21::-;;;;;;;;;;;;;:::o;3128:24::-;;;;:::o;3187:21::-;;;;:::o;4303:124::-;4367:12;4399:8;:20;4408:10;4399:20;;;;;;;;;;;;;;;;4392:27;;4303:124;;;:::o;2532:191::-;2599:8;;;;;;;;;;;2585:22;;:10;:22;;;2577:31;;;;;;;;2647:8;;;;;;;;;;;2619:37;;2640:5;;;;;;;;;;;2619:37;;;;;;;;;;;;2675:8;;;;;;;;;;;2667:5;;:16;;;;;;;;;;;;;;;;;;2713:1;2694:8;;:21;;;;;;;;;;;;;;;;;;2532:191::o;2131:20::-;;;;;;;;;;;;;:::o;3047:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4778:272::-;4837:12;4885:37;4893:8;:20;4902:10;4893:20;;;;;;;;;;;;;;;;4915:6;4885:7;:37::i;:::-;4862:8;:20;4871:10;4862:20;;;;;;;;;;;;;;;:60;;;;4948:29;4956:8;:12;4965:2;4956:12;;;;;;;;;;;;;;;;4970:6;4948:7;:29::i;:::-;4933:8;:12;4942:2;4933:12;;;;;;;;;;;;;;;:44;;;;5009:2;4988:32;;4997:10;4988:32;;;5013:6;4988:32;;;;;;;;;;;;;;;;;;5038:4;5031:11;;4778:272;;;;:::o;3215:19::-;;;;:::o;7472:312::-;7554:12;7610:6;7579:7;:19;7587:10;7579:19;;;;;;;;;;;;;;;:28;7599:7;7579:28;;;;;;;;;;;;;;;:37;;;;7648:7;7627:37;;7636:10;7627:37;;;7657:6;7627:37;;;;;;;;;;;;;;;;;;7698:7;7675:47;;;7723:10;7735:6;7743:4;7749;7675:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7675:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7675:79:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7675:79:0;;;;7772:4;7765:11;;7472:312;;;;;:::o;2158:23::-;;;;;;;;;;;;;:::o;8716:184::-;8808:12;2390:5;;;;;;;;;;;2376:19;;:10;:19;;;2368:28;;;;;;;;8855:12;8840:37;;;8878:5;;;;;;;;;;;8885:6;8840:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8840:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8840:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8840:52:0;;;;;;;;;;;;;;;;8833:59;;8716:184;;;;:::o;6953:151::-;7034:14;7068:7;:19;7076:10;7068:19;;;;;;;;;;;;;;;:28;7088:7;7068:28;;;;;;;;;;;;;;;;7061:35;;6953:151;;;;:::o;2424:102::-;2390:5;;;;;;;;;;;2376:19;;:10;:19;;;2368:28;;;;;;;;2509:9;2498:8;;:20;;;;;;;;;;;;;;;;;;2424:102;:::o;149:118::-;205:6;237:1;232;:6;;224:15;;;;;;;;258:1;254;:5;250:9;;149:118;;;;:::o

Swarm Source

bzzr://5562573ac9afb8d7f1d066e0974b293aa313dad6741088e5047a43ee1ab24e56
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Block Uncle Number Difficulty Gas Used Reward
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.