ETH Price: $3,019.61 (+0.70%)
Gas: 7 Gwei

Contract

0x048Fe49BE32adfC9ED68C37D32B5ec9Df17b3603
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve198620302024-05-13 15:36:113 days ago1715614571IN
0x048Fe49B...Df17b3603
0 ETH0.0012575125.73964793
Approve198321582024-05-09 11:22:357 days ago1715253755IN
0x048Fe49B...Df17b3603
0 ETH0.000259585.34611824
Transfer198123802024-05-06 16:58:2310 days ago1715014703IN
0x048Fe49B...Df17b3603
0 ETH0.000452588.30791669
Approve198002782024-05-05 0:19:5912 days ago1714868399IN
0x048Fe49B...Df17b3603
0 ETH0.000265685.47053374
Approve197776412024-05-01 20:22:2315 days ago1714594943IN
0x048Fe49B...Df17b3603
0 ETH0.000386517.92120481
Transfer197770912024-05-01 18:31:5915 days ago1714588319IN
0x048Fe49B...Df17b3603
0 ETH0.0007430114.94277714
Approve197539242024-04-28 12:50:1118 days ago1714308611IN
0x048Fe49B...Df17b3603
0 ETH0.000286175.86489531
Transfer197537642024-04-28 12:17:4718 days ago1714306667IN
0x048Fe49B...Df17b3603
0 ETH0.000497029.11773562
Approve197383662024-04-26 8:32:3521 days ago1714120355IN
0x048Fe49B...Df17b3603
0 ETH0.000448659.24014444
Transfer197313012024-04-25 8:50:5922 days ago1714035059IN
0x048Fe49B...Df17b3603
0 ETH0.000567911.42393744
Approve197303882024-04-25 5:47:1122 days ago1714024031IN
0x048Fe49B...Df17b3603
0 ETH0.000291245.96138461
Transfer197138152024-04-22 22:07:3524 days ago1713823655IN
0x048Fe49B...Df17b3603
0 ETH0.000497469.12587202
Transfer197085422024-04-22 4:25:5925 days ago1713759959IN
0x048Fe49B...Df17b3603
0 ETH0.000232936.2281653
Transfer197084592024-04-22 4:08:5925 days ago1713758939IN
0x048Fe49B...Df17b3603
0 ETH0.00027255
Approve196657952024-04-16 4:54:5931 days ago1713243299IN
0x048Fe49B...Df17b3603
0 ETH0.0006027712.40507282
Transfer196649012024-04-16 1:54:1131 days ago1713232451IN
0x048Fe49B...Df17b3603
0 ETH0.000481878.83987063
Transfer195853812024-04-04 22:29:5942 days ago1712269799IN
0x048Fe49B...Df17b3603
0 ETH0.0009805617.98409113
Transfer195817262024-04-04 10:11:4743 days ago1712225507IN
0x048Fe49B...Df17b3603
0 ETH0.0008828917.76020005
Transfer195654962024-04-02 3:39:4745 days ago1712029187IN
0x048Fe49B...Df17b3603
0 ETH0.0008820727.05753725
Approve195490672024-03-30 20:14:1147 days ago1711829651IN
0x048Fe49B...Df17b3603
0 ETH0.0013128926.87324679
Transfer195329352024-03-28 13:34:2349 days ago1711632863IN
0x048Fe49B...Df17b3603
0 ETH0.0019680336.11077541
Transfer195300922024-03-28 4:00:2350 days ago1711598423IN
0x048Fe49B...Df17b3603
0 ETH0.0014613826.80259812
Transfer195300922024-03-28 4:00:2350 days ago1711598423IN
0x048Fe49B...Df17b3603
0 ETH0.0010030626.80259812
Transfer195248242024-03-27 9:37:5951 days ago1711532279IN
0x048Fe49B...Df17b3603
0 ETH0.0012246122.46511816
Transfer195050102024-03-24 14:31:4753 days ago1711290707IN
0x048Fe49B...Df17b3603
0 ETH0.0011736821.52601359
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SkrumbleToken

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-06-05
*/

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through `transferFrom`. This is
     * zero by default.
     *
     * This value changes when `approve` or `transferFrom` are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @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;
    }
}

/**
 * @dev Implementation of the `IERC20` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 * For a generic mechanism see `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an `Approval` event is emitted on calls to `transferFrom`.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See `IERC20.approve`.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    /**
     * @dev See `IERC20.totalSupply`.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See `IERC20.allowance`.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev See `IERC20.transferFrom`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to `transfer`, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a `Transfer` event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a `Transfer` event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

     /**
     * @dev Destoys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a `Transfer` event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an `Approval` event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * > Note that this information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * `IERC20.balanceOf` and `IERC20.transfer`.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is PauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by a pauser (`account`).
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

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

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

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

contract MinterRole {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(msg.sender);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(msg.sender);
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`,
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See `ERC20._mint`.
     *
     * Requirements:
     *
     * - the caller must have the `MinterRole`.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

/**
 * @dev Extension of `ERC20Mintable` that adds a cap to the supply of tokens.
 */
contract ERC20Capped is ERC20Mintable {
    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap) public {
        require(cap > 0, "ERC20Capped: cap is 0");
        _cap = cap;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See `ERC20Mintable.mint`.
     *
     * Requirements:
     *
     * - `value` must not cause the total supply to go over the cap.
     */
    function _mint(address account, uint256 value) internal {
        require(totalSupply().add(value) <= _cap, "ERC20Capped: cap exceeded");
        super._mint(account, value);
    }
}

/**
 * @dev Extension of `ERC20` that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is ERC20, MinterRole {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See `ERC20._burn`.
     */
    function burn(uint256 amount) public onlyMinter {
        _burn(msg.sender, amount);
    }

    /**
     * @dev See `ERC20._burnFrom`.
     */
    function burnFrom(address account, uint256 amount) public  onlyMinter {
        _burnFrom(account, amount);
    }
}

/**
 * @title SKM Protocol ERC20 Token Contract
 * @author 
 *
 * @dev Implementation of the New SKM Token.
 */
contract SkrumbleToken is ERC20Detailed, ERC20Capped, ERC20Burnable, ERC20Pausable {
    string  private constant  TOKEN_NAME     = "Skrumble Network V2";
    string  private constant TOKEN_SYMBOL   = "SKM";
    uint private constant INITIAL_TOKENS = 1500000000;
    uint8 private constant DECIMALS = 18;
    uint256 public constant INITIAL_SUPPLY = INITIAL_TOKENS * (10 ** uint256(DECIMALS));

    constructor()  public
        ERC20Detailed(TOKEN_NAME,TOKEN_SYMBOL,DECIMALS)
        ERC20Capped(INITIAL_SUPPLY)
    {
        _mint(msg.sender, INITIAL_SUPPLY);
    }
}

Contract Security Audit

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":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b50604080518082018252601381527f536b72756d626c65204e6574776f726b2056320000000000000000000000000060208083019182528351808501909452600384527f534b4d00000000000000000000000000000000000000000000000000000000009084015281516b04d8c55aefb8c05b5c00000093916012916200009b9160009162000602565b508151620000b190600190602085019062000602565b506002805460ff191660ff9290921691909117905550620000dd90503364010000000062000195810204565b600081116200014d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b6007556200016433640100000000620001e7810204565b6009805460ff191690556200018f336b04d8c55aefb8c05b5c00000064010000000062000239810204565b620006a4565b620001b0600682640100000000620017e3620002f582021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b62000202600882640100000000620017e3620002f582021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6007546200026982620002546401000000006200039c810204565b90640100000000620015e7620003a382021704565b1115620002d757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b620002f18282640100000000620016446200041f82021704565b5050565b6200030a828264010000000062000542810204565b156200037757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6005545b90565b6000828201838110156200041857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a03821615156200049757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554620004b49082640100000000620015e7620003a382021704565b600555600160a060020a038216600090815260036020526040902054620004ea9082640100000000620015e7620003a382021704565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000600160a060020a0382161515620005e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200064557805160ff191683800117855562000675565b8280016001018555821562000675579182015b828111156200067557825182559160200191906001019062000658565b506200068392915062000687565b5090565b620003a091905b808211156200068357600081556001016200068e565b6118f380620006b46000396000f3fe6080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014d578063095ea7b3146101d757806318160ddd1461022457806323b872dd1461024b5780632ff2e9dc1461028e578063313ce567146102a3578063355274ea146102ce57806339509351146102e35780633f4ba83a1461031c57806340c10f191461033357806342966c681461036c57806346fbf68e146103965780635c975abb146103c95780636ef8d66d146103de57806370a08231146103f357806379cc67901461042657806382dc1ec41461045f5780638456cb591461049257806395d89b41146104a7578063983b2d56146104bc57806398650275146104ef578063a457c2d714610504578063a9059cbb1461053d578063aa271e1a14610576578063dd62ed3e146105a9575b600080fd5b34801561015957600080fd5b506101626105e4565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019c578181015183820152602001610184565b50505050905090810190601f1680156101c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101e357600080fd5b50610210600480360360408110156101fa57600080fd5b50600160a060020a03813516906020013561067a565b604080519115158252519081900360200190f35b34801561023057600080fd5b506102396106d7565b60408051918252519081900360200190f35b34801561025757600080fd5b506102106004803603606081101561026e57600080fd5b50600160a060020a038135811691602081013590911690604001356106dd565b34801561029a57600080fd5b5061023961073c565b3480156102af57600080fd5b506102b861074c565b6040805160ff9092168252519081900360200190f35b3480156102da57600080fd5b50610239610755565b3480156102ef57600080fd5b506102106004803603604081101561030657600080fd5b50600160a060020a03813516906020013561075b565b34801561032857600080fd5b506103316107b1565b005b34801561033f57600080fd5b506102106004803603604081101561035657600080fd5b50600160a060020a0381351690602001356108d1565b34801561037857600080fd5b506103316004803603602081101561038f57600080fd5b5035610947565b3480156103a257600080fd5b50610210600480360360208110156103b957600080fd5b5035600160a060020a03166109b5565b3480156103d557600080fd5b506102106109ce565b3480156103ea57600080fd5b506103316109d7565b3480156103ff57600080fd5b506102396004803603602081101561041657600080fd5b5035600160a060020a03166109e2565b34801561043257600080fd5b506103316004803603604081101561044957600080fd5b50600160a060020a0381351690602001356109fd565b34801561046b57600080fd5b506103316004803603602081101561048257600080fd5b5035600160a060020a0316610a6c565b34801561049e57600080fd5b50610331610afa565b3480156104b357600080fd5b50610162610c0a565b3480156104c857600080fd5b50610331600480360360208110156104df57600080fd5b5035600160a060020a0316610c6a565b3480156104fb57600080fd5b50610331610cd4565b34801561051057600080fd5b506102106004803603604081101561052757600080fd5b50600160a060020a038135169060200135610cdd565b34801561054957600080fd5b506102106004803603604081101561056057600080fd5b50600160a060020a038135169060200135610d33565b34801561058257600080fd5b506102106004803603602081101561059957600080fd5b5035600160a060020a0316610d89565b3480156105b557600080fd5b50610239600480360360408110156105cc57600080fd5b50600160a060020a0381358116916020013516610d9c565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b60095460009060ff16156106c6576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b6106d08383610dc7565b9392505050565b60055490565b60095460009060ff1615610729576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b610734848484610dd4565b949350505050565b6b04d8c55aefb8c05b5c00000081565b60025460ff1690565b60075490565b60095460009060ff16156107a7576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b6106d08383610e2b565b6107ba336109b5565b1515610836576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60095460ff161515610892576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006108dc33610d89565b1515610934576040805160e560020a62461bcd02815260206004820152603060248201526000805160206118a88339815191526044820152600080516020611868833981519152606482015290519081900360840190fd5b61093e8383610e67565b50600192915050565b61095033610d89565b15156109a8576040805160e560020a62461bcd02815260206004820152603060248201526000805160206118a88339815191526044820152600080516020611868833981519152606482015290519081900360840190fd5b6109b23382610ee2565b50565b60006109c860088363ffffffff610ffe16565b92915050565b60095460ff1690565b6109e0336110a6565b565b600160a060020a031660009081526003602052604090205490565b610a0633610d89565b1515610a5e576040805160e560020a62461bcd02815260206004820152603060248201526000805160206118a88339815191526044820152600080516020611868833981519152606482015290519081900360840190fd5b610a6882826110ee565b5050565b610a75336109b5565b1515610af1576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6109b281611133565b610b03336109b5565b1515610b7f576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60095460ff1615610bc8576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106705780601f1061064557610100808354040283529160200191610670565b610c7333610d89565b1515610ccb576040805160e560020a62461bcd02815260206004820152603060248201526000805160206118a88339815191526044820152600080516020611868833981519152606482015290519081900360840190fd5b6109b28161117b565b6109e0336111c3565b60095460009060ff1615610d29576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b6106d0838361120b565b60095460009060ff1615610d7f576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b6106d08383611247565b60006109c860068363ffffffff610ffe16565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600061093e338484611254565b6000610de18484846113c1565b600160a060020a038416600090815260046020908152604080832033808552925290912054610e21918691610e1c908663ffffffff61158716565b611254565b5060019392505050565b336000818152600460209081526040808320600160a060020a0387168452909152812054909161093e918590610e1c908663ffffffff6115e716565b600754610e8282610e766106d7565b9063ffffffff6115e716565b1115610ed8576040805160e560020a62461bcd02815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b610a688282611644565b600160a060020a0382161515610f68576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600554610f7b908263ffffffff61158716565b600555600160a060020a038216600090815260036020526040902054610fa7908263ffffffff61158716565b600160a060020a0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a0382161515611086576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6110b760088263ffffffff61173b16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6110f88282610ee2565b600160a060020a038216600090815260046020908152604080832033808552925290912054610a68918491610e1c908563ffffffff61158716565b61114460088263ffffffff6117e316565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b61118c60068263ffffffff6117e316565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6111d460068263ffffffff61173b16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600460209081526040808320600160a060020a0387168452909152812054909161093e918590610e1c908663ffffffff61158716565b600061093e3384846113c1565b600160a060020a03831615156112d9576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038216151561135f576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515611447576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156114cd576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0383166000908152600360205260409020546114f6908263ffffffff61158716565b600160a060020a03808516600090815260036020526040808220939093559084168152205461152b908263ffffffff6115e716565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156115e1576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156106d0576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600160a060020a03821615156116a4576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546116b7908263ffffffff6115e716565b600555600160a060020a0382166000908152600360205260409020546116e3908263ffffffff6115e716565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6117458282610ffe565b15156117c1576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b6117ed8282610ffe565b15611842576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe20746865204d696e74657220726f6c65000000000000000000000000000000005061757361626c653a20706175736564000000000000000000000000000000004d696e746572526f6c653a2063616c6c657220646f6573206e6f742068617665a165627a7a72305820563af05c24bc69766f1991334500a3ecf633f8f31c08a63e245bf9b127d10a070029

Deployed Bytecode

0x6080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014d578063095ea7b3146101d757806318160ddd1461022457806323b872dd1461024b5780632ff2e9dc1461028e578063313ce567146102a3578063355274ea146102ce57806339509351146102e35780633f4ba83a1461031c57806340c10f191461033357806342966c681461036c57806346fbf68e146103965780635c975abb146103c95780636ef8d66d146103de57806370a08231146103f357806379cc67901461042657806382dc1ec41461045f5780638456cb591461049257806395d89b41146104a7578063983b2d56146104bc57806398650275146104ef578063a457c2d714610504578063a9059cbb1461053d578063aa271e1a14610576578063dd62ed3e146105a9575b600080fd5b34801561015957600080fd5b506101626105e4565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019c578181015183820152602001610184565b50505050905090810190601f1680156101c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101e357600080fd5b50610210600480360360408110156101fa57600080fd5b50600160a060020a03813516906020013561067a565b604080519115158252519081900360200190f35b34801561023057600080fd5b506102396106d7565b60408051918252519081900360200190f35b34801561025757600080fd5b506102106004803603606081101561026e57600080fd5b50600160a060020a038135811691602081013590911690604001356106dd565b34801561029a57600080fd5b5061023961073c565b3480156102af57600080fd5b506102b861074c565b6040805160ff9092168252519081900360200190f35b3480156102da57600080fd5b50610239610755565b3480156102ef57600080fd5b506102106004803603604081101561030657600080fd5b50600160a060020a03813516906020013561075b565b34801561032857600080fd5b506103316107b1565b005b34801561033f57600080fd5b506102106004803603604081101561035657600080fd5b50600160a060020a0381351690602001356108d1565b34801561037857600080fd5b506103316004803603602081101561038f57600080fd5b5035610947565b3480156103a257600080fd5b50610210600480360360208110156103b957600080fd5b5035600160a060020a03166109b5565b3480156103d557600080fd5b506102106109ce565b3480156103ea57600080fd5b506103316109d7565b3480156103ff57600080fd5b506102396004803603602081101561041657600080fd5b5035600160a060020a03166109e2565b34801561043257600080fd5b506103316004803603604081101561044957600080fd5b50600160a060020a0381351690602001356109fd565b34801561046b57600080fd5b506103316004803603602081101561048257600080fd5b5035600160a060020a0316610a6c565b34801561049e57600080fd5b50610331610afa565b3480156104b357600080fd5b50610162610c0a565b3480156104c857600080fd5b50610331600480360360208110156104df57600080fd5b5035600160a060020a0316610c6a565b3480156104fb57600080fd5b50610331610cd4565b34801561051057600080fd5b506102106004803603604081101561052757600080fd5b50600160a060020a038135169060200135610cdd565b34801561054957600080fd5b506102106004803603604081101561056057600080fd5b50600160a060020a038135169060200135610d33565b34801561058257600080fd5b506102106004803603602081101561059957600080fd5b5035600160a060020a0316610d89565b3480156105b557600080fd5b50610239600480360360408110156105cc57600080fd5b50600160a060020a0381358116916020013516610d9c565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b60095460009060ff16156106c6576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b6106d08383610dc7565b9392505050565b60055490565b60095460009060ff1615610729576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b610734848484610dd4565b949350505050565b6b04d8c55aefb8c05b5c00000081565b60025460ff1690565b60075490565b60095460009060ff16156107a7576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b6106d08383610e2b565b6107ba336109b5565b1515610836576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60095460ff161515610892576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006108dc33610d89565b1515610934576040805160e560020a62461bcd02815260206004820152603060248201526000805160206118a88339815191526044820152600080516020611868833981519152606482015290519081900360840190fd5b61093e8383610e67565b50600192915050565b61095033610d89565b15156109a8576040805160e560020a62461bcd02815260206004820152603060248201526000805160206118a88339815191526044820152600080516020611868833981519152606482015290519081900360840190fd5b6109b23382610ee2565b50565b60006109c860088363ffffffff610ffe16565b92915050565b60095460ff1690565b6109e0336110a6565b565b600160a060020a031660009081526003602052604090205490565b610a0633610d89565b1515610a5e576040805160e560020a62461bcd02815260206004820152603060248201526000805160206118a88339815191526044820152600080516020611868833981519152606482015290519081900360840190fd5b610a6882826110ee565b5050565b610a75336109b5565b1515610af1576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6109b281611133565b610b03336109b5565b1515610b7f576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60095460ff1615610bc8576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106705780601f1061064557610100808354040283529160200191610670565b610c7333610d89565b1515610ccb576040805160e560020a62461bcd02815260206004820152603060248201526000805160206118a88339815191526044820152600080516020611868833981519152606482015290519081900360840190fd5b6109b28161117b565b6109e0336111c3565b60095460009060ff1615610d29576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b6106d0838361120b565b60095460009060ff1615610d7f576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611888833981519152604482015290519081900360640190fd5b6106d08383611247565b60006109c860068363ffffffff610ffe16565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600061093e338484611254565b6000610de18484846113c1565b600160a060020a038416600090815260046020908152604080832033808552925290912054610e21918691610e1c908663ffffffff61158716565b611254565b5060019392505050565b336000818152600460209081526040808320600160a060020a0387168452909152812054909161093e918590610e1c908663ffffffff6115e716565b600754610e8282610e766106d7565b9063ffffffff6115e716565b1115610ed8576040805160e560020a62461bcd02815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b610a688282611644565b600160a060020a0382161515610f68576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600554610f7b908263ffffffff61158716565b600555600160a060020a038216600090815260036020526040902054610fa7908263ffffffff61158716565b600160a060020a0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a0382161515611086576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6110b760088263ffffffff61173b16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6110f88282610ee2565b600160a060020a038216600090815260046020908152604080832033808552925290912054610a68918491610e1c908563ffffffff61158716565b61114460088263ffffffff6117e316565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b61118c60068263ffffffff6117e316565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6111d460068263ffffffff61173b16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600460209081526040808320600160a060020a0387168452909152812054909161093e918590610e1c908663ffffffff61158716565b600061093e3384846113c1565b600160a060020a03831615156112d9576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038216151561135f576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515611447576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156114cd576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0383166000908152600360205260409020546114f6908263ffffffff61158716565b600160a060020a03808516600090815260036020526040808220939093559084168152205461152b908263ffffffff6115e716565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156115e1576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156106d0576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600160a060020a03821615156116a4576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546116b7908263ffffffff6115e716565b600555600160a060020a0382166000908152600360205260409020546116e3908263ffffffff6115e716565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6117458282610ffe565b15156117c1576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b6117ed8282610ffe565b15611842576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe20746865204d696e74657220726f6c65000000000000000000000000000000005061757361626c653a20706175736564000000000000000000000000000000004d696e746572526f6c653a2063616c6c657220646f6573206e6f742068617665a165627a7a72305820563af05c24bc69766f1991334500a3ecf633f8f31c08a63e245bf9b127d10a070029

Deployed Bytecode Sourcemap

24104:582:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14994:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14994:83: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;14994:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20335:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20335:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20335:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;7890:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7890:91:0;;;;;;;;;;;;;;;;;;;;20167:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20167:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20167:160:0;;;;;;;;;;;;;;;;;;24418:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24418:83:0;;;;15852;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15852:83:0;;;;;;;;;;;;;;;;;;;;;;;22899:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22899:75:0;;;;20483:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20483:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20483:167:0;;;;;;;;;19768:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19768:118:0;;;;;;22250:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22250:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22250:143:0;;;;;;;;;23710:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23710:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23710:92:0;;;17350:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17350:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17350:109:0;-1:-1:-1;;;;;17350:109:0;;;18977:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18977:78:0;;;;17567:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17567:77:0;;;;8044:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8044:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8044:110:0;-1:-1:-1;;;;;8044:110:0;;;23864:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23864:115:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23864:115:0;;;;;;;;;17467:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17467:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17467:92:0;-1:-1:-1;;;;;17467:92:0;;;19557:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19557:116:0;;;;15196:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15196:87:0;;;;21374:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21374:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21374:92:0;-1:-1:-1;;;;;21374:92:0;;;21474:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21474:77:0;;;;20658:177;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20658:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20658:177:0;;;;;;;;;20027:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20027:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20027:132:0;;;;;;;;;21257:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21257:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21257:109:0;-1:-1:-1;;;;;21257:109:0;;;8586:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8586:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8586:134:0;;;;;;;;;;;14994:83;15064:5;15057:12;;;;;;;;-1:-1:-1;;15057:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15031:13;;15057:12;;15064:5;;15057:12;;15064:5;15057:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14994:83;:::o;20335:140::-;19214:7;;20414:4;;19214:7;;19213:8;19205:37;;;;;-1:-1:-1;;;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19205:37:0;;;;;;;;;;;;;;;20438:29;20452:7;20461:5;20438:13;:29::i;:::-;20431:36;20335:140;-1:-1:-1;;;20335:140:0:o;7890:91::-;7961:12;;7890:91;:::o;20167:160::-;19214:7;;20260:4;;19214:7;;19213:8;19205:37;;;;;-1:-1:-1;;;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19205:37:0;;;;;;;;;;;;;;;20284:35;20303:4;20309:2;20313:5;20284:18;:35::i;:::-;20277:42;20167:160;-1:-1:-1;;;;20167:160:0:o;24418:83::-;24459:42;24418:83;:::o;15852:::-;15918:9;;;;15852:83;:::o;22899:75::-;22962:4;;22899:75;:::o;20483:167::-;19214:7;;20574:4;;19214:7;;19213:8;19205:37;;;;;-1:-1:-1;;;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19205:37:0;;;;;;;;;;;;;;;20598:44;20622:7;20631:10;20598:23;:44::i;19768:118::-;17249:20;17258:10;17249:8;:20::i;:::-;17241:81;;;;;;;-1:-1:-1;;;;;17241:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19413:7;;;;19405:40;;;;;;;-1:-1:-1;;;;;19405:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19827:7;:15;;-1:-1:-1;;19827:15:0;;;19858:20;;;19867:10;19858:20;;;;;;;;;;;;;19768:118::o;22250:143::-;22324:4;21156:20;21165:10;21156:8;:20::i;:::-;21148:81;;;;;;;-1:-1:-1;;;;;21148:81:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21148:81:0;;;;-1:-1:-1;;;;;;;;;;;21148:81:0;;;;;;;;;;;;;;;22341:22;22347:7;22356:6;22341:5;:22::i;:::-;-1:-1:-1;22381:4:0;22250:143;;;;:::o;23710:92::-;21156:20;21165:10;21156:8;:20::i;:::-;21148:81;;;;;;;-1:-1:-1;;;;;21148:81:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21148:81:0;;;;-1:-1:-1;;;;;;;;;;;21148:81:0;;;;;;;;;;;;;;;23769:25;23775:10;23787:6;23769:5;:25::i;:::-;23710:92;:::o;17350:109::-;17406:4;17430:21;:8;17443:7;17430:21;:12;:21;:::i;:::-;17423:28;17350:109;-1:-1:-1;;17350:109:0:o;18977:78::-;19040:7;;;;18977:78;:::o;17567:77::-;17611:25;17625:10;17611:13;:25::i;:::-;17567:77::o;8044:110::-;-1:-1:-1;;;;;8128:18:0;8101:7;8128:18;;;:9;:18;;;;;;;8044:110::o;23864:115::-;21156:20;21165:10;21156:8;:20::i;:::-;21148:81;;;;;;;-1:-1:-1;;;;;21148:81:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21148:81:0;;;;-1:-1:-1;;;;;;;;;;;21148:81:0;;;;;;;;;;;;;;;23945:26;23955:7;23964:6;23945:9;:26::i;:::-;23864:115;;:::o;17467:92::-;17249:20;17258:10;17249:8;:20::i;:::-;17241:81;;;;;;;-1:-1:-1;;;;;17241:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17532:19;17543:7;17532:10;:19::i;19557:116::-;17249:20;17258:10;17249:8;:20::i;:::-;17241:81;;;;;;;-1:-1:-1;;;;;17241:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19214:7;;;;19213:8;19205:37;;;;;-1:-1:-1;;;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19205:37:0;;;;;;;;;;;;;;;19617:7;:14;;-1:-1:-1;;19617:14:0;19627:4;19617:14;;;19647:18;;;19654:10;19647:18;;;;;;;;;;;;;19557:116::o;15196:87::-;15268:7;15261:14;;;;;;;;-1:-1:-1;;15261:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15235:13;;15261:14;;15268:7;;15261:14;;15268:7;15261:14;;;;;;;;;;;;;;;;;;;;;;;;21374:92;21156:20;21165:10;21156:8;:20::i;:::-;21148:81;;;;;;;-1:-1:-1;;;;;21148:81:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21148:81:0;;;;-1:-1:-1;;;;;;;;;;;21148:81:0;;;;;;;;;;;;;;;21439:19;21450:7;21439:10;:19::i;21474:77::-;21518:25;21532:10;21518:13;:25::i;20658:177::-;19214:7;;20754:4;;19214:7;;19213:8;19205:37;;;;;-1:-1:-1;;;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19205:37:0;;;;;;;;;;;;;;;20778:49;20802:7;20811:15;20778:23;:49::i;20027:132::-;19214:7;;20102:4;;19214:7;;19213:8;19205:37;;;;;-1:-1:-1;;;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19205:37:0;;;;;;;;;;;;;;;20126:25;20141:2;20145:5;20126:14;:25::i;21257:109::-;21313:4;21337:21;:8;21350:7;21337:21;:12;:21;:::i;8586:134::-;-1:-1:-1;;;;;8685:18:0;;;8658:7;8685:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8586:134::o;8867:148::-;8932:4;8949:36;8958:10;8970:7;8979:5;8949:8;:36::i;9486:256::-;9575:4;9592:36;9602:6;9610:9;9621:6;9592:9;:36::i;:::-;-1:-1:-1;;;;;9668:19:0;;;;;;:11;:19;;;;;;;;9656:10;9668:31;;;;;;;;;9639:73;;9648:6;;9668:43;;9704:6;9668:43;:35;:43;:::i;:::-;9639:8;:73::i;:::-;-1:-1:-1;9730:4:0;9486:256;;;;;:::o;10151:206::-;10257:10;10231:4;10278:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10278:32:0;;;;;;;;;;10231:4;;10248:79;;10269:7;;10278:48;;10315:10;10278:48;:36;:48;:::i;23147:183::-;23250:4;;23222:24;23240:5;23222:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:32;;23214:70;;;;;-1:-1:-1;;;;;23214:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23295:27;23307:7;23316:5;23295:11;:27::i;12916:306::-;-1:-1:-1;;;;;12991:21:0;;;;12983:67;;;;;-1:-1:-1;;;;;12983:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13078:12;;:23;;13095:5;13078:23;:16;:23;:::i;:::-;13063:12;:38;-1:-1:-1;;;;;13133:18:0;;;;;;:9;:18;;;;;;:29;;13156:5;13133:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13112:18:0;;;;;;:9;:18;;;;;;;;:50;;;;13178:36;;;;;;;13112:18;;13178:36;;;;;;;;;;;12916:306;;:::o;16725:203::-;16797:4;-1:-1:-1;;;;;16822:21:0;;;;16814:68;;;;;-1:-1:-1;;;;;16814:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16900:20:0;:11;:20;;;;;;;;;;;;;;;16725:203::o;17782:130::-;17842:24;:8;17858:7;17842:24;:15;:24;:::i;:::-;17882:22;;-1:-1:-1;;;;;17882:22:0;;;;;;;;17782:130;:::o;14182:188::-;14254:22;14260:7;14269:6;14254:5;:22::i;:::-;-1:-1:-1;;;;;14317:20:0;;;;;;:11;:20;;;;;;;;14305:10;14317:32;;;;;;;;;14287:75;;14296:7;;14317:44;;14354:6;14317:44;:36;:44;:::i;17652:122::-;17709:21;:8;17722:7;17709:21;:12;:21;:::i;:::-;17746:20;;-1:-1:-1;;;;;17746:20:0;;;;;;;;17652:122;:::o;21559:::-;21616:21;:8;21629:7;21616:21;:12;:21;:::i;:::-;21653:20;;-1:-1:-1;;;;;21653:20:0;;;;;;;;21559:122;:::o;21689:130::-;21749:24;:8;21765:7;21749:24;:15;:24;:::i;:::-;21789:22;;-1:-1:-1;;;;;21789:22:0;;;;;;;;21689:130;:::o;10860:216::-;10971:10;10945:4;10992:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10992:32:0;;;;;;;;;;10945:4;;10962:84;;10983:7;;10992:53;;11029:15;10992:53;:36;:53;:::i;8367:156::-;8436:4;8453:40;8463:10;8475:9;8486:6;8453:9;:40::i;13662:335::-;-1:-1:-1;;;;;13755:19:0;;;;13747:68;;;;;-1:-1:-1;;;;;13747:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13834:21:0;;;;13826:68;;;;;-1:-1:-1;;;;;13826:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13907:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;13958:31;;;;;;;;;;;;;;;;;13662:335;;;:::o;11566:429::-;-1:-1:-1;;;;;11664:20:0;;;;11656:70;;;;;-1:-1:-1;;;;;11656:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11745:23:0;;;;11737:71;;;;;-1:-1:-1;;;;;11737:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11841:17:0;;;;;;:9;:17;;;;;;:29;;11863:6;11841:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;11821:17:0;;;;;;;:9;:17;;;;;;:49;;;;11904:20;;;;;;;:32;;11929:6;11904:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;11881:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;11952:35;;;;;;;11881:20;;11952:35;;;;;;;;;;;;;11566:429;;;:::o;4102:184::-;4160:7;4188:6;;;;4180:49;;;;;-1:-1:-1;;;;;4180:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4252:5:0;;;4102:184::o;3646:181::-;3704:7;3736:5;;;3760:6;;;;3752:46;;;;;-1:-1:-1;;;;;3752:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;12276:308;-1:-1:-1;;;;;12352:21:0;;;;12344:65;;;;;-1:-1:-1;;;;;12344:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12437:12;;:24;;12454:6;12437:24;:16;:24;:::i;:::-;12422:12;:39;-1:-1:-1;;;;;12493:18:0;;;;;;:9;:18;;;;;;:30;;12516:6;12493:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;12472:18:0;;;;;;:9;:18;;;;;;;;:51;;;;12539:37;;;;;;;12472:18;;;;12539:37;;;;;;;;;;12276:308;;:::o;16447:183::-;16527:18;16531:4;16537:7;16527:3;:18::i;:::-;16519:64;;;;;;;-1:-1:-1;;;;;16519:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16594:20:0;16617:5;16594:20;;;;;;;;;;;:28;;-1:-1:-1;;16594:28:0;;;16447:183::o;16189:178::-;16267:18;16271:4;16277:7;16267:3;:18::i;:::-;16266:19;16258:63;;;;;-1:-1:-1;;;;;16258:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16332:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16332:27:0;16355:4;16332:27;;;16189:178::o

Swarm Source

bzzr://563af05c24bc69766f1991334500a3ecf633f8f31c08a63e245bf9b127d10a07

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.