ETH Price: $3,199.43 (+0.68%)

Contract

0x857d4Bf18a80f03D3d11f438825CD3D0Aa0D9d68
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
RoundsManager

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-01-13
*/

// File: contracts/IManager.sol

pragma solidity ^0.5.11;


contract IManager {
    event SetController(address controller);
    event ParameterUpdate(string param);

    function setController(address _controller) external;
}

// File: contracts/zeppelin/Ownable.sol

pragma solidity ^0.5.11;


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address public owner;


    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


    /**
    * @dev The Ownable constructor sets the original `owner` of the contract to the sender
    * account.
    */
    constructor() public {
        owner = msg.sender;
    }

  /**
   * @dev Throws if called by any account other than the owner.
   */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }


    /**
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }
}

// File: contracts/zeppelin/Pausable.sol

pragma solidity ^0.5.11;



/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();

    bool public paused = false;


    /**
    * @dev Modifier to make a function callable only when the contract is not paused.
    */
    modifier whenNotPaused() {
        require(!paused);
        _;
    }

    /**
    * @dev Modifier to make a function callable only when the contract is paused.
    */
    modifier whenPaused() {
        require(paused);
        _;
    }

    /**
    * @dev called by the owner to pause, triggers stopped state
    */
    function pause() public onlyOwner whenNotPaused {
        paused = true;
        emit Pause();
    }

    /**
    * @dev called by the owner to unpause, returns to normal state
    */
    function unpause() public onlyOwner whenPaused {
        paused = false;
        emit Unpause();
    }
}

// File: contracts/IController.sol

pragma solidity ^0.5.11;



contract IController is Pausable {
    event SetContractInfo(bytes32 id, address contractAddress, bytes20 gitCommitHash);

    function setContractInfo(bytes32 _id, address _contractAddress, bytes20 _gitCommitHash) external;
    function updateController(bytes32 _id, address _controller) external;
    function getContract(bytes32 _id) public view returns (address);
}

// File: contracts/Manager.sol

pragma solidity ^0.5.11;




contract Manager is IManager {
    // Controller that contract is registered with
    IController public controller;

    // Check if sender is controller
    modifier onlyController() {
        require(msg.sender == address(controller), "caller must be Controller");
        _;
    }

    // Check if sender is controller owner
    modifier onlyControllerOwner() {
        require(msg.sender == controller.owner(), "caller must be Controller owner");
        _;
    }

    // Check if controller is not paused
    modifier whenSystemNotPaused() {
        require(!controller.paused(), "system is paused");
        _;
    }

    // Check if controller is paused
    modifier whenSystemPaused() {
        require(controller.paused(), "system is not paused");
        _;
    }

    constructor(address _controller) public {
        controller = IController(_controller);
    }

    /**
     * @notice Set controller. Only callable by current controller
     * @param _controller Controller contract address
     */
    function setController(address _controller) external onlyController {
        controller = IController(_controller);

        emit SetController(_controller);
    }
}

// File: contracts/ManagerProxyTarget.sol

pragma solidity ^0.5.11;



/**
 * @title ManagerProxyTarget
 * @notice The base contract that target contracts used by a proxy contract should inherit from
 * @dev Both the target contract and the proxy contract (implemented as ManagerProxy) MUST inherit from ManagerProxyTarget in order to guarantee
 that both contracts have the same storage layout. Differing storage layouts in a proxy contract and target contract can
 potentially break the delegate proxy upgradeability mechanism
 */
contract ManagerProxyTarget is Manager {
    // Used to look up target contract address in controller's registry
    bytes32 public targetContractId;
}

// File: contracts/rounds/IRoundsManager.sol

pragma solidity ^0.5.11;


/**
 * @title RoundsManager interface
 */
contract IRoundsManager {
    // Events
    event NewRound(uint256 indexed round, bytes32 blockHash);

    // Deprecated events
    // These event signatures can be used to construct the appropriate topic hashes to filter for past logs corresponding
    // to these deprecated events.
    // event NewRound(uint256 round)

    // External functions
    function initializeRound() external;

    // Public functions
    function blockNum() public view returns (uint256);
    function blockHash(uint256 _block) public view returns (bytes32);
    function blockHashForRound(uint256 _round) public view returns (bytes32);
    function currentRound() public view returns (uint256);
    function currentRoundStartBlock() public view returns (uint256);
    function currentRoundInitialized() public view returns (bool);
    function currentRoundLocked() public view returns (bool);
}

// File: contracts/bonding/IBondingManager.sol

pragma solidity ^0.5.11;


/**
 * @title Interface for BondingManager
 * TODO: switch to interface type
 */
contract IBondingManager {
    event TranscoderUpdate(address indexed transcoder, uint256 rewardCut, uint256 feeShare);
    event TranscoderActivated(address indexed transcoder, uint256 activationRound);
    event TranscoderDeactivated(address indexed transcoder, uint256 deactivationRound);
    event TranscoderSlashed(address indexed transcoder, address finder, uint256 penalty, uint256 finderReward);
    event Reward(address indexed transcoder, uint256 amount);
    event Bond(address indexed newDelegate, address indexed oldDelegate, address indexed delegator, uint256 additionalAmount, uint256 bondedAmount);
    event Unbond(address indexed delegate, address indexed delegator, uint256 unbondingLockId, uint256 amount, uint256 withdrawRound);
    event Rebond(address indexed delegate, address indexed delegator, uint256 unbondingLockId, uint256 amount);
    event WithdrawStake(address indexed delegator, uint256 unbondingLockId, uint256 amount, uint256 withdrawRound);
    event WithdrawFees(address indexed delegator);
    event EarningsClaimed(address indexed delegate, address indexed delegator, uint256 rewards, uint256 fees, uint256 startRound, uint256 endRound);

    // Deprecated events
    // These event signatures can be used to construct the appropriate topic hashes to filter for past logs corresponding
    // to these deprecated events.
    // event Bond(address indexed delegate, address indexed delegator);
    // event Unbond(address indexed delegate, address indexed delegator);
    // event WithdrawStake(address indexed delegator);
    // event TranscoderUpdate(address indexed transcoder, uint256 pendingRewardCut, uint256 pendingFeeShare, uint256 pendingPricePerSegment, bool registered);
    // event TranscoderEvicted(address indexed transcoder);
    // event TranscoderResigned(address indexed transcoder);

    // External functions
    function updateTranscoderWithFees(address _transcoder, uint256 _fees, uint256 _round) external;
    function slashTranscoder(address _transcoder, address _finder, uint256 _slashAmount, uint256 _finderFee) external;
    function setCurrentRoundTotalActiveStake() external;

    // Public functions
    function getTranscoderPoolSize() public view returns (uint256);
    function transcoderTotalStake(address _transcoder) public view returns (uint256);
    function isActiveTranscoder(address _transcoder) public view returns (bool);
    function getTotalBonded() public view returns (uint256);
}

// File: contracts/token/IMinter.sol

pragma solidity ^0.5.11;



/**
 * @title Minter interface
 */
contract IMinter {
    // Events
    event SetCurrentRewardTokens(uint256 currentMintableTokens, uint256 currentInflation);

    // External functions
    function createReward(uint256 _fracNum, uint256 _fracDenom) external returns (uint256);
    function trustedTransferTokens(address _to, uint256 _amount) external;
    function trustedBurnTokens(uint256 _amount) external;
    function trustedWithdrawETH(address payable _to, uint256 _amount) external;
    function depositETH() external payable returns (bool);
    function setCurrentRewardTokens() external;

    // Public functions
    function getController() public view returns (IController);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

// File: contracts/libraries/MathUtils.sol

pragma solidity ^0.5.11;



library MathUtils {
    using SafeMath for uint256;

    // Divisor used for representing percentages
    uint256 public constant PERC_DIVISOR = 1000000;

    /**
     * @dev Returns whether an amount is a valid percentage out of PERC_DIVISOR
     * @param _amount Amount that is supposed to be a percentage
     */
    function validPerc(uint256 _amount) internal pure returns (bool) {
        return _amount <= PERC_DIVISOR;
    }

    /**
     * @dev Compute percentage of a value with the percentage represented by a fraction
     * @param _amount Amount to take the percentage of
     * @param _fracNum Numerator of fraction representing the percentage
     * @param _fracDenom Denominator of fraction representing the percentage
     */
    function percOf(uint256 _amount, uint256 _fracNum, uint256 _fracDenom) internal pure returns (uint256) {
        return _amount.mul(percPoints(_fracNum, _fracDenom)).div(PERC_DIVISOR);
    }

    /**
     * @dev Compute percentage of a value with the percentage represented by a fraction over PERC_DIVISOR
     * @param _amount Amount to take the percentage of
     * @param _fracNum Numerator of fraction representing the percentage with PERC_DIVISOR as the denominator
     */
    function percOf(uint256 _amount, uint256 _fracNum) internal pure returns (uint256) {
        return _amount.mul(_fracNum).div(PERC_DIVISOR);
    }

    /**
     * @dev Compute percentage representation of a fraction
     * @param _fracNum Numerator of fraction represeting the percentage
     * @param _fracDenom Denominator of fraction represeting the percentage
     */
    function percPoints(uint256 _fracNum, uint256 _fracDenom) internal pure returns (uint256) {
        return _fracNum.mul(PERC_DIVISOR).div(_fracDenom);
    }
}

// File: contracts/rounds/RoundsManager.sol

pragma solidity ^0.5.11;








/**
 * @title RoundsManager
 * @notice Manages round progression and other blockchain time related operations of the Livepeer protocol
 */
contract RoundsManager is ManagerProxyTarget, IRoundsManager {
    using SafeMath for uint256;

    // Round length in blocks
    uint256 public roundLength;
    // Lock period of a round as a % of round length
    // Transcoders cannot join the transcoder pool or change their rates during the lock period at the end of a round
    // The lock period provides delegators time to review transcoder information without changes
    // # of blocks in the lock period = (roundLength * roundLockAmount) / PERC_DIVISOR
    uint256 public roundLockAmount;
    // Last initialized round. After first round, this is the last round during which initializeRound() was called
    uint256 public lastInitializedRound;
    // Round in which roundLength was last updated
    uint256 public lastRoundLengthUpdateRound;
    // Start block of the round in which roundLength was last updated
    uint256 public lastRoundLengthUpdateStartBlock;

    // Mapping round number => block hash for the round
    mapping (uint256 => bytes32) internal _blockHashForRound;

    /**
     * @notice RoundsManager constructor. Only invokes constructor of base Manager contract with provided Controller address
     * @dev This constructor will not initialize any state variables besides `controller`. The following setter functions
     * should be used to initialize state variables post-deployment:
     * - setRoundLength()
     * - setRoundLockAmount()
     * @param _controller Address of Controller that this contract will be registered with
     */
    constructor(address _controller) public Manager(_controller) {}

    /**
     * @notice Set round length. Only callable by the controller owner
     * @param _roundLength Round length in blocks
     */
    function setRoundLength(uint256 _roundLength) external onlyControllerOwner {
        require(_roundLength > 0, "round length cannot be 0");

        if (roundLength == 0) {
            // If first time initializing roundLength, set roundLength before
            // lastRoundLengthUpdateRound and lastRoundLengthUpdateStartBlock
            roundLength = _roundLength;
            lastRoundLengthUpdateRound = currentRound();
            lastRoundLengthUpdateStartBlock = currentRoundStartBlock();
        } else {
            // If updating roundLength, set roundLength after
            // lastRoundLengthUpdateRound and lastRoundLengthUpdateStartBlock
            lastRoundLengthUpdateRound = currentRound();
            lastRoundLengthUpdateStartBlock = currentRoundStartBlock();
            roundLength = _roundLength;
        }

        emit ParameterUpdate("roundLength");
    }

    /**
     * @notice Set round lock amount. Only callable by the controller owner
     * @param _roundLockAmount Round lock amount as a % of the number of blocks in a round
     */
    function setRoundLockAmount(uint256 _roundLockAmount) external onlyControllerOwner {
        require(MathUtils.validPerc(_roundLockAmount), "round lock amount must be a valid percentage");

        roundLockAmount = _roundLockAmount;

        emit ParameterUpdate("roundLockAmount");
    }

    /**
     * @notice Initialize the current round. Called once at the start of any round
     */
    function initializeRound() external whenSystemNotPaused {
        uint256 currRound = currentRound();

        // Check if already called for the current round
        require(lastInitializedRound < currRound, "round already initialized");

        // Set current round as initialized
        lastInitializedRound = currRound;
        // Store block hash for round
        bytes32 roundBlockHash = blockHash(blockNum().sub(1));
        _blockHashForRound[currRound] = roundBlockHash;
        // Set total active stake for the round
        bondingManager().setCurrentRoundTotalActiveStake();
        // Set mintable rewards for the round
        minter().setCurrentRewardTokens();

        emit NewRound(currRound, roundBlockHash);
    }

    /**
     * @notice Return current block number
     */
    function blockNum() public view returns (uint256) {
        return block.number;
    }

    /**
     * @notice Return blockhash for a block
     */
    function blockHash(uint256 _block) public view returns (bytes32) {
        uint256 currentBlock = blockNum();
        require(_block < currentBlock, "can only retrieve past block hashes");
        require(currentBlock < 256 || _block >= currentBlock - 256, "can only retrieve hashes for last 256 blocks");

        return blockhash(_block);
    }

    /**
     * @notice Return blockhash for a round
     * @param _round Round number
     * @return Blockhash for `_round`
     */
    function blockHashForRound(uint256 _round) public view returns (bytes32) {
        return _blockHashForRound[_round];
    }

    /**
     * @notice Return current round
     */
    function currentRound() public view returns (uint256) {
        // Compute # of rounds since roundLength was last updated
        uint256 roundsSinceUpdate = blockNum().sub(lastRoundLengthUpdateStartBlock).div(roundLength);
        // Current round = round that roundLength was last updated + # of rounds since roundLength was last updated
        return lastRoundLengthUpdateRound.add(roundsSinceUpdate);
    }

    /**
     * @notice Return start block of current round
     */
    function currentRoundStartBlock() public view returns (uint256) {
        // Compute # of rounds since roundLength was last updated
        uint256 roundsSinceUpdate = blockNum().sub(lastRoundLengthUpdateStartBlock).div(roundLength);
        // Current round start block = start block of round that roundLength was last updated + (# of rounds since roundLenght was last updated * roundLength)
        return lastRoundLengthUpdateStartBlock.add(roundsSinceUpdate.mul(roundLength));
    }

    /**
     * @notice Check if current round is initialized
     */
    function currentRoundInitialized() public view returns (bool) {
        return lastInitializedRound == currentRound();
    }

    /**
     * @notice Check if we are in the lock period of the current round
     */
    function currentRoundLocked() public view returns (bool) {
        uint256 lockedBlocks = MathUtils.percOf(roundLength, roundLockAmount);
        return blockNum().sub(currentRoundStartBlock()) >= roundLength.sub(lockedBlocks);
    }

    /**
     * @dev Return BondingManager interface
     */
    function bondingManager() internal view returns (IBondingManager) {
        return IBondingManager(controller.getContract(keccak256("BondingManager")));
    }

    /**
     * @dev Return Minter interface
     */
    function minter() internal view returns (IMinter) {
        return IMinter(controller.getContract(keccak256("Minter")));
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":false,"inputs":[{"internalType":"uint256","name":"_roundLockAmount","type":"uint256"}],"name":"setRoundLockAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lastRoundLengthUpdateRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentRoundInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_round","type":"uint256"}],"name":"blockHashForRound","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"targetContractId","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastRoundLengthUpdateStartBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_roundLength","type":"uint256"}],"name":"setRoundLength","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"currentRoundLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_block","type":"uint256"}],"name":"blockHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastInitializedRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"blockNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"roundLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentRoundStartBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"initializeRound","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"roundLockAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"contract IController","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"round","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"blockHash","type":"bytes32"}],"name":"NewRound","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"controller","type":"address"}],"name":"SetController","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"param","type":"string"}],"name":"ParameterUpdate","type":"event"}]

608060405234801561001057600080fd5b50604051610e23380380610e238339818101604052602081101561003357600080fd5b5051600080546001600160a01b039092166001600160a01b0319909216919091179055610dbe806100656000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638807f36e116100a25780638fa148f2116100715780638fa148f2146101ff57806392eefe9b14610207578063d4807fb21461022d578063f5b490d514610235578063f77c47911461023d57610116565b80638807f36e146101df5780638a19c8bc146101e75780638ae63d6d146101ef5780638b649b94146101f757610116565b806351720b41116100e957806351720b411461018d578063668abff714610195578063681312f51461019d5780636841f253146101ba57806385df51fd146101c257610116565b80630b1573b81461011b5780630fe1dfa81461013a578063219bc76c146101545780633aa4add414610170575b600080fd5b6101386004803603602081101561013157600080fd5b5035610261565b005b6101426103d4565b60408051918252519081900360200190f35b61015c6103da565b604080519115158252519081900360200190f35b6101426004803603602081101561018657600080fd5b50356103ed565b6101426103ff565b610142610405565b610138600480360360208110156101b357600080fd5b503561040b565b61015c6105c9565b610142600480360360208110156101d857600080fd5b5035610617565b6101426106b7565b6101426106bd565b6101426106fc565b610142610700565b610142610706565b6101386004803603602081101561021d57600080fd5b50356001600160a01b0316610746565b6101386107f9565b610142610a36565b610245610a3c565b604080516001600160a01b039092168252519081900360200190f35b6000809054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156102ae57600080fd5b505afa1580156102c2573d6000803e3d6000fd5b505050506040513d60208110156102d857600080fd5b50516001600160a01b03163314610336576040805162461bcd60e51b815260206004820152601f60248201527f63616c6c6572206d75737420626520436f6e74726f6c6c6572206f776e657200604482015290519081900360640190fd5b61033f81610a4b565b61037a5760405162461bcd60e51b815260040180806020018281038252602c815260200180610d32602c913960400191505060405180910390fd5b6003819055604080516020808252600f908201526e1c9bdd5b99131bd8dad05b5bdd5b9d608a1b8183015290517f9f5033568d78ae30f29f01e944f97b2216493bd19d1b46d429673acff3dcd6749181900360600190a150565b60055481565b60006103e46106bd565b60045414905090565b60009081526007602052604090205490565b60015481565b60065481565b6000809054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561045857600080fd5b505afa15801561046c573d6000803e3d6000fd5b505050506040513d602081101561048257600080fd5b50516001600160a01b031633146104e0576040805162461bcd60e51b815260206004820152601f60248201527f63616c6c6572206d75737420626520436f6e74726f6c6c6572206f776e657200604482015290519081900360640190fd5b60008111610535576040805162461bcd60e51b815260206004820152601860248201527f726f756e64206c656e6774682063616e6e6f7420626520300000000000000000604482015290519081900360640190fd5b60025461055c5760028190556105496106bd565b600555610554610706565b600655610578565b6105646106bd565b60055561056f610706565b60065560028190555b604080516020808252600b908201526a0e4deeadcc898cadccee8d60ab1b8183015290517f9f5033568d78ae30f29f01e944f97b2216493bd19d1b46d429673acff3dcd6749181900360600190a150565b6000806105da600254600354610a54565b6002549091506105f0908263ffffffff610a7616565b61060f6105fb610706565b6106036106fc565b9063ffffffff610a7616565b101591505090565b6000806106226106fc565b90508083106106625760405162461bcd60e51b8152600401808060200182810382526023815260200180610d0f6023913960400191505060405180910390fd5b610100811080610676575061010081038310155b6106b15760405162461bcd60e51b815260040180806020018281038252602c815260200180610d5e602c913960400191505060405180910390fd5b50504090565b60045481565b6000806106e06002546106d46006546106036106fc565b9063ffffffff610ad316565b6005549091506106f6908263ffffffff610b3d16565b91505090565b4390565b60025481565b60008061071d6002546106d46006546106036106fc565b90506106f661073760025483610b9790919063ffffffff16565b6006549063ffffffff610b3d16565b6000546001600160a01b031633146107a5576040805162461bcd60e51b815260206004820152601960248201527f63616c6c6572206d75737420626520436f6e74726f6c6c657200000000000000604482015290519081900360640190fd5b600080546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f4ff638452bbf33c012645d18ae6f05515ff5f2d1dfb0cece8cbf018c60903f709181900360200190a150565b6000809054906101000a90046001600160a01b03166001600160a01b0316635c975abb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561084657600080fd5b505afa15801561085a573d6000803e3d6000fd5b505050506040513d602081101561087057600080fd5b5051156108b7576040805162461bcd60e51b815260206004820152601060248201526f1cde5cdd195b481a5cc81c185d5cd95960821b604482015290519081900360640190fd5b60006108c16106bd565b90508060045410610919576040805162461bcd60e51b815260206004820152601960248201527f726f756e6420616c726561647920696e697469616c697a656400000000000000604482015290519081900360640190fd5b6004819055600061093561093060016106036106fc565b610617565b60008381526007602052604090208190559050610950610bf0565b6001600160a01b031663713f22166040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561098a57600080fd5b505af115801561099e573d6000803e3d6000fd5b505050506109aa610c8b565b6001600160a01b031663ece2064c6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156109e457600080fd5b505af11580156109f8573d6000803e3d6000fd5b50506040805184815290518593507f22f2fc17c5daf07db2379b3a03a8ef20a183f761097a58fce219c8a14619e78692509081900360200190a25050565b60035481565b6000546001600160a01b031681565b620f4240101590565b6000610a6d620f42406106d4858563ffffffff610b9716565b90505b92915050565b600082821115610acd576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000808211610b29576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481610b3457fe5b04949350505050565b600082820183811015610a6d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082610ba657506000610a70565b82820282848281610bb357fe5b0414610a6d5760405162461bcd60e51b8152600401808060200182810382526021815260200180610cee6021913960400191505060405180910390fd5b60008054604080516d2137b73234b733a6b0b730b3b2b960911b8152815190819003600e018120631c2d8fb360e31b8252600482015290516001600160a01b039092169163e16c7d9891602480820192602092909190829003018186803b158015610c5a57600080fd5b505afa158015610c6e573d6000803e3d6000fd5b505050506040513d6020811015610c8457600080fd5b5051905090565b60008054604080516526b4b73a32b960d11b81528151908190036006018120631c2d8fb360e31b8252600482015290516001600160a01b039092169163e16c7d9891602480820192602092909190829003018186803b158015610c5a57600080fdfe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7763616e206f6e6c79207265747269657665207061737420626c6f636b20686173686573726f756e64206c6f636b20616d6f756e74206d75737420626520612076616c69642070657263656e7461676563616e206f6e6c792072657472696576652068617368657320666f72206c6173742032353620626c6f636b73a265627a7a72315820b01fb08062e1021c895dd41e82e13e906f3789d34d46b9036c6d2fd506d403aa64736f6c634300050b0032000000000000000000000000f96d54e490317c557a967abfa5d6e33006be69b3

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638807f36e116100a25780638fa148f2116100715780638fa148f2146101ff57806392eefe9b14610207578063d4807fb21461022d578063f5b490d514610235578063f77c47911461023d57610116565b80638807f36e146101df5780638a19c8bc146101e75780638ae63d6d146101ef5780638b649b94146101f757610116565b806351720b41116100e957806351720b411461018d578063668abff714610195578063681312f51461019d5780636841f253146101ba57806385df51fd146101c257610116565b80630b1573b81461011b5780630fe1dfa81461013a578063219bc76c146101545780633aa4add414610170575b600080fd5b6101386004803603602081101561013157600080fd5b5035610261565b005b6101426103d4565b60408051918252519081900360200190f35b61015c6103da565b604080519115158252519081900360200190f35b6101426004803603602081101561018657600080fd5b50356103ed565b6101426103ff565b610142610405565b610138600480360360208110156101b357600080fd5b503561040b565b61015c6105c9565b610142600480360360208110156101d857600080fd5b5035610617565b6101426106b7565b6101426106bd565b6101426106fc565b610142610700565b610142610706565b6101386004803603602081101561021d57600080fd5b50356001600160a01b0316610746565b6101386107f9565b610142610a36565b610245610a3c565b604080516001600160a01b039092168252519081900360200190f35b6000809054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156102ae57600080fd5b505afa1580156102c2573d6000803e3d6000fd5b505050506040513d60208110156102d857600080fd5b50516001600160a01b03163314610336576040805162461bcd60e51b815260206004820152601f60248201527f63616c6c6572206d75737420626520436f6e74726f6c6c6572206f776e657200604482015290519081900360640190fd5b61033f81610a4b565b61037a5760405162461bcd60e51b815260040180806020018281038252602c815260200180610d32602c913960400191505060405180910390fd5b6003819055604080516020808252600f908201526e1c9bdd5b99131bd8dad05b5bdd5b9d608a1b8183015290517f9f5033568d78ae30f29f01e944f97b2216493bd19d1b46d429673acff3dcd6749181900360600190a150565b60055481565b60006103e46106bd565b60045414905090565b60009081526007602052604090205490565b60015481565b60065481565b6000809054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561045857600080fd5b505afa15801561046c573d6000803e3d6000fd5b505050506040513d602081101561048257600080fd5b50516001600160a01b031633146104e0576040805162461bcd60e51b815260206004820152601f60248201527f63616c6c6572206d75737420626520436f6e74726f6c6c6572206f776e657200604482015290519081900360640190fd5b60008111610535576040805162461bcd60e51b815260206004820152601860248201527f726f756e64206c656e6774682063616e6e6f7420626520300000000000000000604482015290519081900360640190fd5b60025461055c5760028190556105496106bd565b600555610554610706565b600655610578565b6105646106bd565b60055561056f610706565b60065560028190555b604080516020808252600b908201526a0e4deeadcc898cadccee8d60ab1b8183015290517f9f5033568d78ae30f29f01e944f97b2216493bd19d1b46d429673acff3dcd6749181900360600190a150565b6000806105da600254600354610a54565b6002549091506105f0908263ffffffff610a7616565b61060f6105fb610706565b6106036106fc565b9063ffffffff610a7616565b101591505090565b6000806106226106fc565b90508083106106625760405162461bcd60e51b8152600401808060200182810382526023815260200180610d0f6023913960400191505060405180910390fd5b610100811080610676575061010081038310155b6106b15760405162461bcd60e51b815260040180806020018281038252602c815260200180610d5e602c913960400191505060405180910390fd5b50504090565b60045481565b6000806106e06002546106d46006546106036106fc565b9063ffffffff610ad316565b6005549091506106f6908263ffffffff610b3d16565b91505090565b4390565b60025481565b60008061071d6002546106d46006546106036106fc565b90506106f661073760025483610b9790919063ffffffff16565b6006549063ffffffff610b3d16565b6000546001600160a01b031633146107a5576040805162461bcd60e51b815260206004820152601960248201527f63616c6c6572206d75737420626520436f6e74726f6c6c657200000000000000604482015290519081900360640190fd5b600080546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f4ff638452bbf33c012645d18ae6f05515ff5f2d1dfb0cece8cbf018c60903f709181900360200190a150565b6000809054906101000a90046001600160a01b03166001600160a01b0316635c975abb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561084657600080fd5b505afa15801561085a573d6000803e3d6000fd5b505050506040513d602081101561087057600080fd5b5051156108b7576040805162461bcd60e51b815260206004820152601060248201526f1cde5cdd195b481a5cc81c185d5cd95960821b604482015290519081900360640190fd5b60006108c16106bd565b90508060045410610919576040805162461bcd60e51b815260206004820152601960248201527f726f756e6420616c726561647920696e697469616c697a656400000000000000604482015290519081900360640190fd5b6004819055600061093561093060016106036106fc565b610617565b60008381526007602052604090208190559050610950610bf0565b6001600160a01b031663713f22166040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561098a57600080fd5b505af115801561099e573d6000803e3d6000fd5b505050506109aa610c8b565b6001600160a01b031663ece2064c6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156109e457600080fd5b505af11580156109f8573d6000803e3d6000fd5b50506040805184815290518593507f22f2fc17c5daf07db2379b3a03a8ef20a183f761097a58fce219c8a14619e78692509081900360200190a25050565b60035481565b6000546001600160a01b031681565b620f4240101590565b6000610a6d620f42406106d4858563ffffffff610b9716565b90505b92915050565b600082821115610acd576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000808211610b29576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481610b3457fe5b04949350505050565b600082820183811015610a6d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082610ba657506000610a70565b82820282848281610bb357fe5b0414610a6d5760405162461bcd60e51b8152600401808060200182810382526021815260200180610cee6021913960400191505060405180910390fd5b60008054604080516d2137b73234b733a6b0b730b3b2b960911b8152815190819003600e018120631c2d8fb360e31b8252600482015290516001600160a01b039092169163e16c7d9891602480820192602092909190829003018186803b158015610c5a57600080fd5b505afa158015610c6e573d6000803e3d6000fd5b505050506040513d6020811015610c8457600080fd5b5051905090565b60008054604080516526b4b73a32b960d11b81528151908190036006018120631c2d8fb360e31b8252600482015290516001600160a01b039092169163e16c7d9891602480820192602092909190829003018186803b158015610c5a57600080fdfe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7763616e206f6e6c79207265747269657665207061737420626c6f636b20686173686573726f756e64206c6f636b20616d6f756e74206d75737420626520612076616c69642070657263656e7461676563616e206f6e6c792072657472696576652068617368657320666f72206c6173742032353620626c6f636b73a265627a7a72315820b01fb08062e1021c895dd41e82e13e906f3789d34d46b9036c6d2fd506d403aa64736f6c634300050b0032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000f96d54e490317c557a967abfa5d6e33006be69b3

-----Decoded View---------------
Arg [0] : _controller (address): 0xF96D54E490317c557A967ABfA5d6e33006BE69b3

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f96d54e490317c557a967abfa5d6e33006be69b3


Deployed Bytecode Sourcemap

15182:6889:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15182:6889:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18048:295;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18048:295:0;;:::i;:::-;;15955:41;;;:::i;:::-;;;;;;;;;;;;;;;;21186:126;;;:::i;:::-;;;;;;;;;;;;;;;;;;19933:125;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19933:125:0;;:::i;4852:31::-;;;:::i;16074:46::-;;;:::i;16950:903::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16950:903:0;;:::i;21410:236::-;;;:::i;19436:352::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19436:352:0;;:::i;15861:35::-;;;:::i;20121:416::-;;;:::i;19277:88::-;;;:::i;15316:26::-;;;:::i;20615:491::-;;;:::i;4012:168::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4012:168:0;-1:-1:-1;;;;;4012:168:0;;:::i;18453:754::-;;;:::i;15708:30::-;;;:::i;3047:29::-;;;:::i;:::-;;;;-1:-1:-1;;;;;3047:29:0;;;;;;;;;;;;;;18048:295;3367:10;;;;;;;;;-1:-1:-1;;;;;3367:10:0;-1:-1:-1;;;;;3367:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3367:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3367:18:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3367:18:0;-1:-1:-1;;;;;3353:32:0;:10;:32;3345:76;;;;;-1:-1:-1;;;3345:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18150:37;18170:16;18150:19;:37::i;:::-;18142:94;;;;-1:-1:-1;;;18142:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18249:15;:34;;;18301;;;;;;;;;;;;-1:-1:-1;;;18301:34:0;;;;;;;;;;;;;;;18048:295;:::o;15955:41::-;;;;:::o;21186:126::-;21242:4;21290:14;:12;:14::i;:::-;21266:20;;:38;21259:45;;21186:126;:::o;19933:125::-;19997:7;20024:26;;;:18;:26;;;;;;;19933:125::o;4852:31::-;;;;:::o;16074:46::-;;;;:::o;16950:903::-;3367:10;;;;;;;;;-1:-1:-1;;;;;3367:10:0;-1:-1:-1;;;;;3367:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3367:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3367:18:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3367:18:0;-1:-1:-1;;;;;3353:32:0;:10;:32;3345:76;;;;;-1:-1:-1;;;3345:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17059:1;17044:12;:16;17036:53;;;;;-1:-1:-1;;;17036:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17106:11;;17102:696;;17297:11;:26;;;17367:14;:12;:14::i;:::-;17338:26;:43;17430:24;:22;:24::i;:::-;17396:31;:58;17102:696;;;17658:14;:12;:14::i;:::-;17629:26;:43;17721:24;:22;:24::i;:::-;17687:31;:58;17760:11;:26;;;17102:696;17815:30;;;;;;;;;;;;-1:-1:-1;;;17815:30:0;;;;;;;;;;;;;;;16950:903;:::o;21410:236::-;21461:4;21478:20;21501:46;21518:11;;21531:15;;21501:16;:46::i;:::-;21609:11;;21478:69;;-1:-1:-1;21609:29:0;;21478:69;21609:29;:15;:29;:::i;:::-;21565:40;21580:24;:22;:24::i;:::-;21565:10;:8;:10::i;:::-;:14;:40;:14;:40;:::i;:::-;:73;;21558:80;;;21410:236;:::o;19436:352::-;19492:7;19512:20;19535:10;:8;:10::i;:::-;19512:33;;19573:12;19564:6;:21;19556:69;;;;-1:-1:-1;;;19556:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19659:3;19644:12;:18;:50;;;;19691:3;19676:12;:18;19666:6;:28;;19644:50;19636:107;;;;-1:-1:-1;;;19636:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19763:17:0;;19436:352::o;15861:35::-;;;;:::o;20121:416::-;20166:7;20253:25;20281:64;20333:11;;20281:47;20296:31;;20281:10;:8;:10::i;:47::-;:51;:64;:51;:64;:::i;:::-;20480:26;;20253:92;;-1:-1:-1;20480:49:0;;20253:92;20480:49;:30;:49;:::i;:::-;20473:56;;;20121:416;:::o;19277:88::-;19345:12;19277:88;:::o;15316:26::-;;;;:::o;20615:491::-;20670:7;20757:25;20785:64;20837:11;;20785:47;20800:31;;20785:10;:8;:10::i;:64::-;20757:92;;21027:71;21063:34;21085:11;;21063:17;:21;;:34;;;;:::i;:::-;21027:31;;;:71;:35;:71;:::i;4012:168::-;3190:10;;-1:-1:-1;;;;;3190:10:0;3168;:33;3160:71;;;;;-1:-1:-1;;;3160:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4091:10;:37;;-1:-1:-1;;;;;4091:37:0;;-1:-1:-1;;;;;;4091:37:0;;;;;;;;4146:26;;;;;;;;;;;;;;;;4012:168;:::o;18453:754::-;3542:10;;;;;;;;;-1:-1:-1;;;;;3542:10:0;-1:-1:-1;;;;;3542:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3542:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3542:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3542:19:0;3541:20;3533:49;;;;;-1:-1:-1;;;3533:49:0;;;;;;;;;;;;-1:-1:-1;;;3533:49:0;;;;;;;;;;;;;;;18520:17;18540:14;:12;:14::i;:::-;18520:34;;18656:9;18633:20;;:32;18625:70;;;;;-1:-1:-1;;;18625:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18753:20;:32;;;18835:22;18860:28;18870:17;18885:1;18870:10;:8;:10::i;:17::-;18860:9;:28::i;:::-;18899:29;;;;:18;:29;;;;;:46;;;18835:53;-1:-1:-1;19005:16:0;:14;:16::i;:::-;-1:-1:-1;;;;;19005:48:0;;:50;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19005:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19005:50:0;;;;19113:8;:6;:8::i;:::-;-1:-1:-1;;;;;19113:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19113:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;19164:35:0;;;;;;;;19173:9;;-1:-1:-1;19164:35:0;;-1:-1:-1;19164:35:0;;;;;;;;3593:1;;18453:754::o;15708:30::-;;;;:::o;3047:29::-;;;-1:-1:-1;;;;;3047:29:0;;:::o;13471:114::-;13290:7;-1:-1:-1;13554:23:0;;13471:114::o;14400:148::-;14474:7;14501:39;13290:7;14501:21;:7;14513:8;14501:21;:11;:21;:::i;:39::-;14494:46;;14400:148;;;;;:::o;10741:184::-;10799:7;10832:1;10827;:6;;10819:49;;;;;-1:-1:-1;;;10819:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10891:5:0;;;10741:184::o;12114:333::-;12172:7;12271:1;12267;:5;12259:44;;;;;-1:-1:-1;;;12259:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12314:9;12330:1;12326;:5;;;;;;;12114:333;-1:-1:-1;;;;12114:333:0:o;10285:181::-;10343:7;10375:5;;;10399:6;;;;10391:46;;;;;-1:-1:-1;;;10391:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;11176:470;11234:7;11478:6;11474:47;;-1:-1:-1;11508:1:0;11501:8;;11474:47;11545:5;;;11549:1;11545;:5;:1;11569:5;;;;;:10;11561:56;;;;-1:-1:-1;;;11561:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21717:160;21766:15;21817:10;;21840:27;;;-1:-1:-1;;;21840:27:0;;;;;;;;;;;;-1:-1:-1;;;21817:51:0;;;;;;;;-1:-1:-1;;;;;21817:10:0;;;;:22;;:51;;;;;;;;;;;;;;;:10;:51;;;5:2:-1;;;;30:1;27;20:12;5:2;21817:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21817:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21817:51:0;;-1:-1:-1;21717:160:0;:::o;21940:128::-;21981:7;22016:10;;22039:19;;;-1:-1:-1;;;22039:19:0;;;;;;;;;;;;-1:-1:-1;;;22016:43:0;;;;;;;;-1:-1:-1;;;;;22016:10:0;;;;:22;;:43;;;;;;;;;;;;;;;:10;:43;;;5:2:-1;;;;30:1;27;20:12

Swarm Source

bzzr://b01fb08062e1021c895dd41e82e13e906f3789d34d46b9036c6d2fd506d403aa

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

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.