ETH Price: $2,789.15 (+4.36%)

Contract

0x05f3e2cF6B786A7F32a81A494B2B191501Ae5285
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Confirm Transact...119403682021-02-27 16:18:501456 days ago1614442730IN
0x05f3e2cF...501Ae5285
0 ETH0.016287153
Confirm Transact...119257112021-02-25 10:09:081458 days ago1614247748IN
0x05f3e2cF...501Ae5285
0 ETH0.0102128133
Submit Transacti...119255612021-02-25 9:35:141458 days ago1614245714IN
0x05f3e2cF...501Ae5285
0 ETH0.02714734159
Execute Transact...109202912020-09-23 17:45:421612 days ago1600883142IN
0x05f3e2cF...501Ae5285
0 ETH0.03383697144
Execute Transact...109195052020-09-23 14:46:221613 days ago1600872382IN
0x05f3e2cF...501Ae5285
0 ETH0.03505432179.39869281
Confirm Transact...109194932020-09-23 14:45:071613 days ago1600872307IN
0x05f3e2cF...501Ae5285
0 ETH0.04100145185.87179487
Execute Transact...109194742020-09-23 14:41:511613 days ago1600872111IN
0x05f3e2cF...501Ae5285
0 ETH0.04797203181.0408805
Confirm Transact...109194572020-09-23 14:37:321613 days ago1600871852IN
0x05f3e2cF...501Ae5285
0 ETH0.049931200
Confirm Transact...109010122020-09-20 18:56:301615 days ago1600628190IN
0x05f3e2cF...501Ae5285
0 ETH0.005759175
Confirm Transact...109010092020-09-20 18:55:471615 days ago1600628147IN
0x05f3e2cF...501Ae5285
0 ETH0.0061430480
Revoke Confirmat...109009962020-09-20 18:53:121615 days ago1600627992IN
0x05f3e2cF...501Ae5285
0 ETH0.0014651188
Revoke Confirmat...109009962020-09-20 18:53:121615 days ago1600627992IN
0x05f3e2cF...501Ae5285
0 ETH0.0014651188
Revoke Confirmat...109009962020-09-20 18:53:121615 days ago1600627992IN
0x05f3e2cF...501Ae5285
0 ETH0.0014817689
Submit Transacti...109009962020-09-20 18:53:121615 days ago1600627992IN
0x05f3e2cF...501Ae5285
0 ETH0.0158750783
Submit Transacti...109009942020-09-20 18:52:521615 days ago1600627972IN
0x05f3e2cF...501Ae5285
0 ETH0.0158730883
Submit Transacti...108325642020-09-10 7:13:471626 days ago1599722027IN
0x05f3e2cF...501Ae5285
0 ETH0.03404534178
Submit Transacti...108325502020-09-10 7:10:501626 days ago1599721850IN
0x05f3e2cF...501Ae5285
0 ETH0.03404107178
Confirm Transact...94616922020-02-11 12:34:591838 days ago1581424499IN
0x05f3e2cF...501Ae5285
0 ETH0.000500936.5236462
Confirm Transact...94616842020-02-11 12:33:451838 days ago1581424425IN
0x05f3e2cF...501Ae5285
0 ETH0.000477316.21606498
Submit Transacti...94557672020-02-10 14:52:451839 days ago1581346365IN
0x05f3e2cF...501Ae5285
0 ETH0.000958685.01263537
Submit Transacti...94556842020-02-10 14:36:371839 days ago1581345397IN
0x05f3e2cF...501Ae5285
0 ETH0.000191231
Revoke Confirmat...94277632020-02-06 7:28:441843 days ago1580974124IN
0x05f3e2cF...501Ae5285
0 ETH0.000133198
Confirm Transact...94277492020-02-06 7:26:301843 days ago1580973990IN
0x05f3e2cF...501Ae5285
0 ETH0.000691099
Confirm Transact...94277492020-02-06 7:26:301843 days ago1580973990IN
0x05f3e2cF...501Ae5285
0 ETH0.000343724.47633136
Submit Transacti...94277192020-02-06 7:19:141843 days ago1580973554IN
0x05f3e2cF...501Ae5285
0 ETH0.001912310
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x2A4dE6Bf...1657187E7
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MultiSigWallet

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 6000 runs

Other Settings:
default evmVersion, GNU LGPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2019-09-03
*/

pragma solidity ^0.4.15;


/// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution.
/// @author Stefan George - <[email protected]>
contract MultiSigWallet {

    /*
     *  Events
     */
    event Confirmation(address indexed sender, uint indexed transactionId);
    event Revocation(address indexed sender, uint indexed transactionId);
    event Submission(uint indexed transactionId);
    event Execution(uint indexed transactionId);
    event ExecutionFailure(uint indexed transactionId);
    event Deposit(address indexed sender, uint value);
    event OwnerAddition(address indexed owner);
    event OwnerRemoval(address indexed owner);
    event RequirementChange(uint required);

    /*
     *  Constants
     */
    uint constant public MAX_OWNER_COUNT = 50;

    /*
     *  Storage
     */
    mapping (uint => Transaction) public transactions;
    mapping (uint => mapping (address => bool)) public confirmations;
    mapping (address => bool) public isOwner;
    address[] public owners;
    uint public required;
    uint public transactionCount;

    struct Transaction {
        address destination;
        uint value;
        bytes data;
        bool executed;
    }

    /*
     *  Modifiers
     */
    modifier onlyWallet() {
        require(msg.sender == address(this));
        _;
    }

    modifier ownerDoesNotExist(address owner) {
        require(!isOwner[owner]);
        _;
    }

    modifier ownerExists(address owner) {
        require(isOwner[owner]);
        _;
    }

    modifier transactionExists(uint transactionId) {
        require(transactions[transactionId].destination != 0);
        _;
    }

    modifier confirmed(uint transactionId, address owner) {
        require(confirmations[transactionId][owner]);
        _;
    }

    modifier notConfirmed(uint transactionId, address owner) {
        require(!confirmations[transactionId][owner]);
        _;
    }

    modifier notExecuted(uint transactionId) {
        require(!transactions[transactionId].executed);
        _;
    }

    modifier notNull(address _address) {
        require(_address != 0);
        _;
    }

    modifier validRequirement(uint ownerCount, uint _required) {
        require(ownerCount <= MAX_OWNER_COUNT
        && _required <= ownerCount
        && _required != 0
        && ownerCount != 0);
        _;
    }

    /// @dev Fallback function allows to deposit ether.
    function()
    payable
    {
        if (msg.value > 0)
            Deposit(msg.sender, msg.value);
    }

    /*
     * Public functions
     */
    /// @dev Contract constructor sets initial owners and required number of confirmations.
    /// @param _owners List of initial owners.
    /// @param _required Number of required confirmations.
    function MultiSigWallet(address[] _owners, uint _required)
    public
    validRequirement(_owners.length, _required)
    {
        for (uint i=0; i<_owners.length; i++) {
            require(!isOwner[_owners[i]] && _owners[i] != 0);
            isOwner[_owners[i]] = true;
        }
        owners = _owners;
        required = _required;
    }

    /// @dev Allows to add a new owner. Transaction has to be sent by wallet.
    /// @param owner Address of new owner.
    function addOwner(address owner)
    public
    onlyWallet
    ownerDoesNotExist(owner)
    notNull(owner)
    validRequirement(owners.length + 1, required)
    {
        isOwner[owner] = true;
        owners.push(owner);
        OwnerAddition(owner);
    }

    /// @dev Allows to remove an owner. Transaction has to be sent by wallet.
    /// @param owner Address of owner.
    function removeOwner(address owner)
    public
    onlyWallet
    ownerExists(owner)
    {
        isOwner[owner] = false;
        for (uint i=0; i<owners.length - 1; i++)
            if (owners[i] == owner) {
                owners[i] = owners[owners.length - 1];
                break;
            }
        owners.length -= 1;
        if (required > owners.length)
            changeRequirement(owners.length);
        OwnerRemoval(owner);
    }

    /// @dev Allows to replace an owner with a new owner. Transaction has to be sent by wallet.
    /// @param owner Address of owner to be replaced.
    /// @param newOwner Address of new owner.
    function replaceOwner(address owner, address newOwner)
    public
    onlyWallet
    ownerExists(owner)
    ownerDoesNotExist(newOwner)
    {
        for (uint i=0; i<owners.length; i++)
            if (owners[i] == owner) {
                owners[i] = newOwner;
                break;
            }
        isOwner[owner] = false;
        isOwner[newOwner] = true;
        OwnerRemoval(owner);
        OwnerAddition(newOwner);
    }

    /// @dev Allows to change the number of required confirmations. Transaction has to be sent by wallet.
    /// @param _required Number of required confirmations.
    function changeRequirement(uint _required)
    public
    onlyWallet
    validRequirement(owners.length, _required)
    {
        required = _required;
        RequirementChange(_required);
    }

    /// @dev Allows an owner to submit and confirm a transaction.
    /// @param destination Transaction target address.
    /// @param value Transaction ether value.
    /// @param data Transaction data payload.
    /// @return Returns transaction ID.
    function submitTransaction(address destination, uint value, bytes data)
    public
    returns (uint transactionId)
    {
        transactionId = addTransaction(destination, value, data);
        confirmTransaction(transactionId);
    }

    /// @dev Allows an owner to confirm a transaction.
    /// @param transactionId Transaction ID.
    function confirmTransaction(uint transactionId)
    public
    ownerExists(msg.sender)
    transactionExists(transactionId)
    notConfirmed(transactionId, msg.sender)
    {
        confirmations[transactionId][msg.sender] = true;
        Confirmation(msg.sender, transactionId);
        executeTransaction(transactionId);
    }

    /// @dev Allows an owner to revoke a confirmation for a transaction.
    /// @param transactionId Transaction ID.
    function revokeConfirmation(uint transactionId)
    public
    ownerExists(msg.sender)
    confirmed(transactionId, msg.sender)
    notExecuted(transactionId)
    {
        confirmations[transactionId][msg.sender] = false;
        Revocation(msg.sender, transactionId);
    }

    /// @dev Allows anyone to execute a confirmed transaction.
    /// @param transactionId Transaction ID.
    function executeTransaction(uint transactionId)
    public
    ownerExists(msg.sender)
    confirmed(transactionId, msg.sender)
    notExecuted(transactionId)
    {
        if (isConfirmed(transactionId)) {
            Transaction storage txn = transactions[transactionId];
            txn.executed = true;
            if (external_call(txn.destination, txn.value, txn.data.length, txn.data))
                Execution(transactionId);
            else {
                ExecutionFailure(transactionId);
                txn.executed = false;
            }
        }
    }

    // call has been separated into its own function in order to take advantage
    // of the Solidity's code generator to produce a loop that copies tx.data into memory.
    function external_call(address destination, uint value, uint dataLength, bytes data) internal returns (bool) {
        bool result;
        assembly {
            let x := mload(0x40)   // "Allocate" memory for output (0x40 is where "free memory" pointer is stored by convention)
            let d := add(data, 32) // First 32 bytes are the padded length of data, so exclude that
            result := call(
            sub(gas, 34710),   // 34710 is the value that solidity is currently emitting
            // It includes callGas (700) + callVeryLow (3, to pay for SUB) + callValueTransferGas (9000) +
            // callNewAccountGas (25000, in case the destination address does not exist and needs creating)
            destination,
            value,
            d,
            dataLength,        // Size of the input (in bytes) - this is what fixes the padding problem
            x,
            0                  // Output is ignored, therefore the output size is zero
            )
        }
        return result;
    }

    /// @dev Returns the confirmation status of a transaction.
    /// @param transactionId Transaction ID.
    /// @return Confirmation status.
    function isConfirmed(uint transactionId)
    public
    constant
    returns (bool)
    {
        uint count = 0;
        for (uint i=0; i<owners.length; i++) {
            if (confirmations[transactionId][owners[i]])
                count += 1;
            if (count == required)
                return true;
        }
    }

    /*
     * Internal functions
     */
    /// @dev Adds a new transaction to the transaction mapping, if transaction does not exist yet.
    /// @param destination Transaction target address.
    /// @param value Transaction ether value.
    /// @param data Transaction data payload.
    /// @return Returns transaction ID.
    function addTransaction(address destination, uint value, bytes data)
    internal
    notNull(destination)
    returns (uint transactionId)
    {
        transactionId = transactionCount;
        transactions[transactionId] = Transaction({
            destination: destination,
            value: value,
            data: data,
            executed: false
            });
        transactionCount += 1;
        Submission(transactionId);
    }

    /*
     * Web3 call functions
     */
    /// @dev Returns number of confirmations of a transaction.
    /// @param transactionId Transaction ID.
    /// @return Number of confirmations.
    function getConfirmationCount(uint transactionId)
    public
    constant
    returns (uint count)
    {
        for (uint i=0; i<owners.length; i++)
            if (confirmations[transactionId][owners[i]])
                count += 1;
    }

    /// @dev Returns total number of transactions after filers are applied.
    /// @param pending Include pending transactions.
    /// @param executed Include executed transactions.
    /// @return Total number of transactions after filters are applied.
    function getTransactionCount(bool pending, bool executed)
    public
    constant
    returns (uint count)
    {
        for (uint i=0; i<transactionCount; i++)
            if (   pending && !transactions[i].executed
            || executed && transactions[i].executed)
                count += 1;
    }

    /// @dev Returns list of owners.
    /// @return List of owner addresses.
    function getOwners()
    public
    constant
    returns (address[])
    {
        return owners;
    }

    /// @dev Returns array with owner addresses, which confirmed transaction.
    /// @param transactionId Transaction ID.
    /// @return Returns array of owner addresses.
    function getConfirmations(uint transactionId)
    public
    constant
    returns (address[] _confirmations)
    {
        address[] memory confirmationsTemp = new address[](owners.length);
        uint count = 0;
        uint i;
        for (i=0; i<owners.length; i++)
            if (confirmations[transactionId][owners[i]]) {
                confirmationsTemp[count] = owners[i];
                count += 1;
            }
        _confirmations = new address[](count);
        for (i=0; i<count; i++)
            _confirmations[i] = confirmationsTemp[i];
    }

    /// @dev Returns list of transaction IDs in defined range.
    /// @param from Index start position of transaction array.
    /// @param to Index end position of transaction array.
    /// @param pending Include pending transactions.
    /// @param executed Include executed transactions.
    /// @return Returns array of transaction IDs.
    function getTransactionIds(uint from, uint to, bool pending, bool executed)
    public
    constant
    returns (uint[] _transactionIds)
    {
        uint[] memory transactionIdsTemp = new uint[](transactionCount);
        uint count = 0;
        uint i;
        for (i=0; i<transactionCount; i++)
            if (   pending && !transactions[i].executed
            || executed && transactions[i].executed)
            {
                transactionIdsTemp[count] = i;
                count += 1;
            }
        _transactionIds = new uint[](to - from);
        for (i=from; i<to; i++)
            _transactionIds[i - from] = transactionIdsTemp[i];
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"owners","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"revokeConfirmation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"confirmations","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"addOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"isConfirmed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmationCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"transactions","outputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"},{"name":"executed","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOwners","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"from","type":"uint256"},{"name":"to","type":"uint256"},{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionIds","outputs":[{"name":"_transactionIds","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmations","outputs":[{"name":"_confirmations","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transactionCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_required","type":"uint256"}],"name":"changeRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"confirmTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"}],"name":"submitTransaction","outputs":[{"name":"transactionId","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_OWNER_COUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"required","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"newOwner","type":"address"}],"name":"replaceOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"executeTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Revocation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Submission","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Execution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"ExecutionFailure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"OwnerAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"OwnerRemoval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"required","type":"uint256"}],"name":"RequirementChange","type":"event"}]

Deployed Bytecode

0x60806040526004361061011c5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663025e7c27811461015e578063173825d91461019f57806320ea8d86146101cd5780632f54bf6e146101e55780633411c81c1461022757806354741525146102585780637065cb4814610289578063784547a7146102b75780638b51d13f146102cf5780639ace38c2146102e7578063a0e67e2b146103bc578063a8abe69a14610421578063b5dc40c314610446578063b77bf6001461045e578063ba51a6df14610473578063c01a8c841461048b578063c6427474146104a3578063d74f8edd14610519578063dc8452cd1461052e578063e20056e614610543578063ee22610b14610577575b600034111561015c5760408051348152905133917fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c919081900360200190a25b005b34801561016a57600080fd5b5061017660043561058f565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156101ab57600080fd5b5061015c73ffffffffffffffffffffffffffffffffffffffff600435166105c4565b3480156101d957600080fd5b5061015c6004356107a3565b3480156101f157600080fd5b5061021373ffffffffffffffffffffffffffffffffffffffff6004351661085d565b604080519115158252519081900360200190f35b34801561023357600080fd5b5061021360043573ffffffffffffffffffffffffffffffffffffffff60243516610872565b34801561026457600080fd5b5061027760043515156024351515610892565b60408051918252519081900360200190f35b34801561029557600080fd5b5061015c73ffffffffffffffffffffffffffffffffffffffff600435166108fe565b3480156102c357600080fd5b50610213600435610a55565b3480156102db57600080fd5b50610277600435610ae6565b3480156102f357600080fd5b506102ff600435610b62565b604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200183151515158152602001828103825284818151815260200191508051906020019080838360005b8381101561037e578181015183820152602001610366565b50505050905090810190601f1680156103ab5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b3480156103c857600080fd5b506103d1610c2d565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561040d5781810151838201526020016103f5565b505050509050019250505060405180910390f35b34801561042d57600080fd5b506103d160043560243560443515156064351515610c9d565b34801561045257600080fd5b506103d1600435610dd6565b34801561046a57600080fd5b50610277610f83565b34801561047f57600080fd5b5061015c600435610f89565b34801561049757600080fd5b5061015c600435611008565b3480156104af57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261027794823573ffffffffffffffffffffffffffffffffffffffff169460248035953695946064949201919081908401838280828437509497506110e09650505050505050565b34801561052557600080fd5b506102776110ff565b34801561053a57600080fd5b50610277611104565b34801561054f57600080fd5b5061015c73ffffffffffffffffffffffffffffffffffffffff6004358116906024351661110a565b34801561058357600080fd5b5061015c6004356112fc565b600380548290811061059d57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60003330146105d257600080fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260026020526040902054829060ff16151561060857600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152600260205260408120805460ff1916905591505b60035460001901821015610731578273ffffffffffffffffffffffffffffffffffffffff1660038381548110151561066c57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff161415610726576003805460001981019081106106a657fe5b6000918252602090912001546003805473ffffffffffffffffffffffffffffffffffffffff90921691849081106106d957fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610731565b600190910190610638565b6003805460001901906107449082611601565b50600354600454111561075d5760035461075d90610f89565b60405173ffffffffffffffffffffffffffffffffffffffff8416907f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9090600090a2505050565b3360008181526002602052604090205460ff1615156107c157600080fd5b60008281526001602090815260408083203380855292529091205483919060ff1615156107ed57600080fd5b600084815260208190526040902060030154849060ff161561080e57600080fd5b6000858152600160209081526040808320338085529252808320805460ff191690555187927ff6a317157440607f36269043eb55f1287a5a19ba2216afeab88cd46cbcfb88e991a35050505050565b60026020526000908152604090205460ff1681565b600160209081526000928352604080842090915290825290205460ff1681565b6000805b6005548110156108f7578380156108bf575060008181526020819052604090206003015460ff16155b806108e357508280156108e3575060008181526020819052604090206003015460ff165b156108ef576001820191505b600101610896565b5092915050565b33301461090a57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8116600090815260026020526040902054819060ff161561093f57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff8116151561096257600080fd5b6003805490506001016004546032821115801561097f5750818111155b801561098a57508015155b801561099557508115155b15156109a057600080fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260026020526040808220805460ff1916600190811790915560038054918201815583527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001684179055517ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d9190a25050505050565b600080805b600354811015610adf5760008481526001602052604081206003805491929184908110610a8357fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205460ff1615610ac4576001820191505b600454821415610ad75760019250610adf565b600101610a5a565b5050919050565b6000805b600354811015610b5c5760008381526001602052604081206003805491929184908110610b1357fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205460ff1615610b54576001820191505b600101610aea565b50919050565b6000602081815291815260409081902080546001808301546002808501805487516101009582161595909502600019011691909104601f810188900488028401880190965285835273ffffffffffffffffffffffffffffffffffffffff90931695909491929190830182828015610c1a5780601f10610bef57610100808354040283529160200191610c1a565b820191906000526020600020905b815481529060010190602001808311610bfd57829003601f168201915b5050506003909301549192505060ff1684565b60606003805480602002602001604051908101604052809291908181526020018280548015610c9257602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311610c67575b505050505090505b90565b606080600080600554604051908082528060200260200182016040528015610ccf578160200160208202803883390190505b50925060009150600090505b600554811015610d5657858015610d04575060008181526020819052604090206003015460ff16155b80610d285750848015610d28575060008181526020819052604090206003015460ff165b15610d4e57808383815181101515610d3c57fe5b60209081029091010152600191909101905b600101610cdb565b878703604051908082528060200260200182016040528015610d82578160200160208202803883390190505b5093508790505b86811015610dcb578281815181101515610d9f57fe5b9060200190602002015184898303815181101515610db957fe5b60209081029091010152600101610d89565b505050949350505050565b606080600080600380549050604051908082528060200260200182016040528015610e0b578160200160208202803883390190505b50925060009150600090505b600354811015610eef5760008581526001602052604081206003805491929184908110610e4057fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205460ff1615610ee7576003805482908110610e8857fe5b600091825260209091200154835173ffffffffffffffffffffffffffffffffffffffff90911690849084908110610ebb57fe5b73ffffffffffffffffffffffffffffffffffffffff909216602092830290910190910152600191909101905b600101610e17565b81604051908082528060200260200182016040528015610f19578160200160208202803883390190505b509350600090505b81811015610f7b578281815181101515610f3757fe5b906020019060200201518482815181101515610f4f57fe5b73ffffffffffffffffffffffffffffffffffffffff909216602092830290910190910152600101610f21565b505050919050565b60055481565b333014610f9557600080fd5b6003548160328211801590610faa5750818111155b8015610fb557508015155b8015610fc057508115155b1515610fcb57600080fd5b60048390556040805184815290517fa3f1ee9126a074d9326c682f561767f710e927faa811f7a99829d49dc421797a9181900360200190a1505050565b3360008181526002602052604090205460ff16151561102657600080fd5b600082815260208190526040902054829073ffffffffffffffffffffffffffffffffffffffff16151561105857600080fd5b60008381526001602090815260408083203380855292529091205484919060ff161561108357600080fd5b6000858152600160208181526040808420338086529252808420805460ff1916909317909255905187927f4a504a94899432a9846e1aa406dceb1bcfd538bb839071d49d1e5e23f5be30ef91a36110d9856112fc565b5050505050565b60006110ed8484846114c9565b90506110f881611008565b9392505050565b603281565b60045481565b600033301461111857600080fd5b73ffffffffffffffffffffffffffffffffffffffff8316600090815260026020526040902054839060ff16151561114e57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8316600090815260026020526040902054839060ff161561118357600080fd5b600092505b600354831015611248578473ffffffffffffffffffffffffffffffffffffffff166003848154811015156111b857fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561123d57836003848154811015156111f057fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611248565b600190920191611188565b73ffffffffffffffffffffffffffffffffffffffff808616600081815260026020526040808220805460ff1990811690915593881682528082208054909416600117909355915190917f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9091a260405173ffffffffffffffffffffffffffffffffffffffff8516907ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d90600090a25050505050565b3360008181526002602052604081205490919060ff16151561131d57600080fd5b60008381526001602090815260408083203380855292529091205484919060ff16151561134957600080fd5b600085815260208190526040902060030154859060ff161561136a57600080fd5b61137386610a55565b156114c1576000868152602081815260409182902060038101805460ff19166001908117909155815481830154600280850180548851601f60001997831615610100029790970190911692909204948501879004870282018701909752838152939a506114549573ffffffffffffffffffffffffffffffffffffffff9092169490939190839083018282801561144a5780601f1061141f5761010080835404028352916020019161144a565b820191906000526020600020905b81548152906001019060200180831161142d57829003601f168201915b50505050506115de565b156114895760405186907f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7590600090a26114c1565b60405186907f526441bb6c1aba3c9a4a6ca1d6545da9c2333c8c48343ef398eb858d72b7923690600090a260038501805460ff191690555b505050505050565b60008373ffffffffffffffffffffffffffffffffffffffff811615156114ee57600080fd5b6005546040805160808101825273ffffffffffffffffffffffffffffffffffffffff8881168252602080830189815283850189815260006060860181905287815280845295909520845181547fffffffffffffffffffffffff0000000000000000000000000000000000000000169416939093178355516001830155925180519496509193909261158692600285019291019061162a565b50606091909101516003909101805460ff191691151591909117905560058054600101905560405182907fc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e5190600090a2509392505050565b6000806040516020840160008287838a8c6187965a03f198975050505050505050565b815481835581811115611625576000838152602090206116259181019083016116a8565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061166b57805160ff1916838001178555611698565b82800160010185558215611698579182015b8281111561169857825182559160200191906001019061167d565b506116a49291506116a8565b5090565b610c9a91905b808211156116a457600081556001016116ae5600a165627a7a72305820b6a76580bf0b27c3432d474bae5b7a4edbe269d154983d3dd1be522d23650c090029

Deployed Bytecode Sourcemap

192:12712:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2602:1;2590:9;:13;2586:62;;;2618:30;;;2638:9;2618:30;;;;2626:10;;2618:30;;;;;;;;;;2586:62;192:12712;1062:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1062:23:0;;;;;;;;;;;;;;;;;;;;;;;;3787:463;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3787:463:0;;;;;;;6365:283;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6365:283:0;;;;;1015:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1015:40:0;;;;;;;;;;;;;;;;;;;;;;;;;944:64;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;944:64:0;;;;;;;;;10594:312;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10594:312:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3393:267;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3393:267:0;;;;;;;8736:337;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8736:337:0;;;;;10078:248;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10078:248:0;;;;;888:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;888:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;888:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10994:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10994:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10994:109:0;;;;;;;;;;;;;;;;;12223:678;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12223:678:0;;;;;;;;;;;;;;;11287:579;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11287:579:0;;;;;1119:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1119:28:0;;;;5080:202;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5080:202:0;;;;;5900:337;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5900:337:0;;;;;5548:242;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5548:242:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5548:242:0;;-1:-1:-1;5548:242:0;;-1:-1:-1;;;;;;;5548:242:0;804:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;804:41:0;;;;1092:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1092:20:0;;;;4457:448;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4457:448:0;;;;;;;;;;;;6766:586;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6766:586:0;;;;;1062:23;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1062:23:0;:::o;3787:463::-;3929:6;1364:10;1386:4;1364:27;1356:36;;;;;;1580:14;;;;;;;:7;:14;;;;;;3868:5;;1580:14;;1572:23;;;;;;;;3891:14;;;3908:5;3891:14;;;:7;:14;;;;;:22;;-1:-1:-1;;3891:22:0;;;3908:5;-1:-1:-1;3924:174:0;3941:6;:13;-1:-1:-1;;3941:17:0;3939:19;;3924:174;;;3995:5;3982:18;;:6;3989:1;3982:9;;;;;;;;;;;;;;;;;;;;;;:18;3978:120;;;4033:6;4040:13;;-1:-1:-1;;4040:17:0;;;4033:25;;;;;;;;;;;;;;;;4021:6;:9;;4033:25;;;;;4028:1;;4021:9;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;4077:5;;3978:120;3960:3;;;;;3924:174;;;4108:6;:18;;-1:-1:-1;;4108:18:0;;;;;;:::i;:::-;-1:-1:-1;4152:6:0;:13;4141:8;;:24;4137:75;;;4198:6;:13;4180:32;;:17;:32::i;:::-;4223:19;;;;;;;;;;;1403:1;3787:463;;:::o;6365:283::-;6442:10;1580:14;;;;:7;:14;;;;;;;;1572:23;;;;;;;;1835:28;;;;:13;:28;;;;;;;;6484:10;1835:35;;;;;;;;;6469:13;;6484:10;1835:35;;1827:44;;;;;;;;2101:12;:27;;;;;;;;;;:36;;;6513:13;;2101:36;;2100:37;2092:46;;;;;;6587:5;6544:28;;;:13;:28;;;;;;;;6573:10;6544:40;;;;;;;;:48;;-1:-1:-1;;6544:48:0;;;6603:37;6558:13;;6603:37;;;1882:1;1606;;6365:283;;:::o;1015:40::-;;;;;;;;;;;;;;;:::o;944:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10594:312::-;10692:10;;10720:178;10737:16;;10735:1;:18;10720:178;;;10780:7;:36;;;;-1:-1:-1;10792:12:0;:15;;;;;;;;;;:24;;;;;10791:25;10780:36;:89;;;;10833:8;:36;;;;-1:-1:-1;10845:12:0;:15;;;;;;;;;;:24;;;;;10833:36;10773:125;;;10897:1;10888:10;;;;10773:125;10755:3;;10720:178;;;10594:312;;;;;:::o;3393:267::-;1364:10;1386:4;1364:27;1356:36;;;;;;1482:14;;;;;;;:7;:14;;;;;;3477:5;;1482:14;;1481:15;1473:24;;;;;;3497:5;2220:13;;;;;2212:22;;;;;;3526:6;:13;;;;3542:1;3526:17;3545:8;;843:2;2340:10;:29;;:65;;;;;2395:10;2382:9;:23;;2340:65;:92;;;;-1:-1:-1;2418:14:0;;;2340:92;:120;;;;-1:-1:-1;2445:15:0;;;2340:120;2332:129;;;;;;;;3571:14;;;;;;;:7;:14;;;;;;:21;;-1:-1:-1;;3571:21:0;3588:4;3571:21;;;;;;3603:6;27:10:-1;;23:18;;;45:23;;3603:18:0;;;;;;;;;;;;3632:20;;;3571:14;3632:20;2245:1;;1508;1403;3393:267;:::o;8736:337::-;8817:4;;;8864:202;8881:6;:13;8879:15;;8864:202;;;8920:28;;;;:13;:28;;;;;8949:6;:9;;8920:28;;;8956:1;;8949:9;;;;;;;;;;;;;;;;;;;;8920:39;;;;;;;;;;;;;;;8916:72;;;8987:1;8978:10;;;;8916:72;9016:8;;9007:5;:17;9003:51;;;9050:4;9043:11;;;;9003:51;8896:3;;8864:202;;;8736:337;;;;;:::o;10078:248::-;10168:10;;10196:122;10213:6;:13;10211:15;;10196:122;;;10250:28;;;;:13;:28;;;;;10279:6;:9;;10250:28;;;10286:1;;10279:9;;;;;;;;;;;;;;;;;;;;10250:39;;;;;;;;;;;;;;;10246:72;;;10317:1;10308:10;;;;10246:72;10228:3;;10196:122;;;10078:248;;;;:::o;888:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;888:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;888:49:0;;;;;;;-1:-1:-1;;888:49:0;;;:::o;10994:109::-;11055:9;11089:6;11082:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10994:109;;:::o;12223:678::-;12339:22;12379:32;12453:10;12478:6;12425:16;;12414:28;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;12414:28:0;;12379:63;;12466:1;12453:14;;12502:1;12500:3;;12495:252;12507:16;;12505:1;:18;12495:252;;;12550:7;:36;;;;-1:-1:-1;12562:12:0;:15;;;;;;;;;;:24;;;;;12561:25;12550:36;:89;;;;12603:8;:36;;;;-1:-1:-1;12615:12:0;:15;;;;;;;;;;:24;;;;;12603:36;12543:204;;;12701:1;12673:18;12692:5;12673:25;;;;;;;;;;;;;;;;;;:29;12730:1;12721:10;;;;;12543:204;12525:3;;12495:252;;;12791:4;12786:2;:9;12775:21;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;12775:21:0;;12757:39;;12814:4;12812:6;;12807:86;12822:2;12820:1;:4;12807:86;;;12872:18;12891:1;12872:21;;;;;;;;;;;;;;;;;;12844:15;12864:4;12860:1;:8;12844:25;;;;;;;;;;;;;;;;;;:49;12826:3;;12807:86;;;12223:678;;;;;;;;;:::o;11287:579::-;11373:24;11415:34;11491:10;11516:6;11466;:13;;;;11452:28;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;11452:28:0;;11415:65;;11504:1;11491:14;;11540:1;11538:3;;11533:190;11545:6;:13;11543:15;;11533:190;;;11582:28;;;;:13;:28;;;;;11611:6;:9;;11582:28;;;11618:1;;11611:9;;;;;;;;;;;;;;;;;;;;11582:39;;;;;;;;;;;;;;;11578:145;;;11669:6;:9;;11676:1;;11669:9;;;;;;;;;;;;;;;;11642:24;;11669:9;;;;;11642:17;;11660:5;;11642:24;;;;;;:36;;;;:24;;;;;;;;;;:36;11706:1;11697:10;;;;;11578:145;11560:3;;11533:190;;;11764:5;11750:20;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;11750:20:0;;11733:37;;11788:1;11786:3;;11781:77;11793:5;11791:1;:7;11781:77;;;11838:17;11856:1;11838:20;;;;;;;;;;;;;;;;;;11818:14;11833:1;11818:17;;;;;;;;;;:40;;;;:17;;;;;;;;;;:40;11800:3;;11781:77;;;11287:579;;;;;;:::o;1119:28::-;;;;:::o;5080:202::-;1364:10;1386:4;1364:27;1356:36;;;;;;5173:6;:13;5188:9;843:2;2340:29;;;;;:65;;;2395:10;2382:9;:23;;2340:65;:92;;;;-1:-1:-1;2418:14:0;;;2340:92;:120;;;;-1:-1:-1;2445:15:0;;;2340:120;2332:129;;;;;;;;5215:8;:20;;;5246:28;;;;;;;;;;;;;;;;;1403:1;;5080:202;:::o;5900:337::-;5977:10;1580:14;;;;:7;:14;;;;;;;;1572:23;;;;;;;;1689:12;:27;;;;;;;;;;:39;6012:13;;1689:39;;:44;;1681:53;;;;;;1976:28;;;;:13;:28;;;;;;;;6060:10;1976:35;;;;;;;;;6045:13;;6060:10;1976:35;;1975:36;1967:45;;;;;;6088:28;;;;6131:4;6088:28;;;;;;;;6117:10;6088:40;;;;;;;;:47;;-1:-1:-1;;6088:47:0;;;;;;;6146:39;;6102:13;;6146:39;;;6196:33;6215:13;6196:18;:33::i;:::-;1745:1;;1606;5900:337;;:::o;5548:242::-;5646:18;5698:40;5713:11;5726:5;5733:4;5698:14;:40::i;:::-;5682:56;;5749:33;5768:13;5749:18;:33::i;:::-;5548:242;;;;;:::o;804:41::-;843:2;804:41;:::o;1092:20::-;;;;:::o;4457:448::-;4618:6;1364:10;1386:4;1364:27;1356:36;;;;;;1580:14;;;;;;;:7;:14;;;;;;4557:5;;1580:14;;1572:23;;;;;;;;1482:14;;;;;;;:7;:14;;;;;;4587:8;;1482:14;;1481:15;1473:24;;;;;;4625:1;4618:8;;4613:153;4630:6;:13;4628:15;;4613:153;;;4680:5;4667:18;;:6;4674:1;4667:9;;;;;;;;;;;;;;;;;;;;;;:18;4663:103;;;4718:8;4706:6;4713:1;4706:9;;;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;4745:5;;4663:103;4645:3;;;;;4613:153;;;4776:14;;;;4793:5;4776:14;;;:7;:14;;;;;;:22;;-1:-1:-1;;4776:22:0;;;;;;4809:17;;;;;;;;:24;;;;;4776:22;4809:24;;;;4844:19;;4776:14;;4844:19;;;4874:23;;;;;;;;;;;1606:1;1403;4457:448;;;:::o;6766:586::-;6843:10;6992:23;1580:14;;;:7;:14;;;;;;6992:23;;6843:10;1580:14;;1572:23;;;;;;;;1835:28;;;;:13;:28;;;;;;;;6885:10;1835:35;;;;;;;;;6870:13;;6885:10;1835:35;;1827:44;;;;;;;;2101:12;:27;;;;;;;;;;:36;;;6914:13;;2101:36;;2100:37;2092:46;;;;;;6949:26;6961:13;6949:11;:26::i;:::-;6945:400;;;7018:12;:27;;;;;;;;;;;;7060:12;;;:19;;-1:-1:-1;;7060:19:0;7075:4;7060:19;;;;;;7112:15;;7129:9;;;;7140:8;;;;:15;;7098:68;;;-1:-1:-1;;7140:15:0;;;;7060:19;7140:15;;;;;;;;;;;;7098:68;;;;;;;;;;;;;;;;;;7018:27;;-1:-1:-1;7098:68:0;;7112:15;;;;;7129:9;;7098:68;7140:8;:15;;7098:68;;7140:8;:15;7098:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;:68::i;:::-;7094:240;;;7185:24;;7195:13;;7185:24;;;;;7094:240;;;7248:31;;7265:13;;7248:31;;;;;7298:12;;;:20;;-1:-1:-1;;7298:20:0;;;7094:240;1882:1;1606;;6766:586;;;:::o;9416:457::-;9539:18;9512:11;2220:13;;;;;2212:22;;;;;;9591:16;;9648:149;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9648:149:0;;;;;;9618:27;;;;;;;;;;:179;;;;;;;;;;;;;;;-1:-1:-1;9618:179:0;;;;;;;9591:16;;-1:-1:-1;9648:149:0;;9618:27;;:179;;;;;;;;;;:::i;:::-;-1:-1:-1;9618:179:0;;;;;;;;;;;;-1:-1:-1;;9618:179:0;;;;;;;;;;9808:16;:21;;-1:-1:-1;9808:21:0;;;9840:25;;9851:13;;9840:25;;-1:-1:-1;;9840:25:0;9416:457;;;;;;:::o;7533:1047::-;7636:4;7653:11;7714:4;7708:11;7848:2;7842:4;7838:13;8449:1;8433;8328:10;8312:1;8292:5;8266:11;7968:5;7963:3;7959:15;7940:598;7930:608;7533:1047;-1:-1:-1;;;;;;;;7533:1047:0:o;192:12712::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;192:12712:0;;;-1:-1:-1;192:12712:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://b6a76580bf0b27c3432d474bae5b7a4edbe269d154983d3dd1be522d23650c09

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.