ETH Price: $2,648.12 (-0.13%)

Contract

0xa353bcd07b7c8Ec5E457248a414E5f0269439320
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer218211922025-02-11 5:28:358 hrs ago1739251715IN
0xa353bcd0...269439320
0 ETH0.000031791.06165418
Transfer216214212025-01-14 8:06:5928 days ago1736842019IN
0xa353bcd0...269439320
0 ETH0.000104693.01023439
Transfer212770502024-11-27 5:38:4776 days ago1732685927IN
0xa353bcd0...269439320
0 ETH0.000208576.95968011
Transfer212761852024-11-27 2:44:4776 days ago1732675487IN
0xa353bcd0...269439320
0 ETH0.000238897.97473267
Transfer212761132024-11-27 2:30:2376 days ago1732674623IN
0xa353bcd0...269439320
0 ETH0.000271959.07810256
Transfer211698592024-11-12 6:37:4791 days ago1731393467IN
0xa353bcd0...269439320
0 ETH0.0011718824.8907343
Transfer210978912024-11-02 5:32:23101 days ago1730525543IN
0xa353bcd0...269439320
0 ETH0.000193283.72813133
Transfer202609122024-07-08 9:30:59218 days ago1720431059IN
0xa353bcd0...269439320
0 ETH0.000293015.6464448
Transfer200668912024-06-11 6:47:35245 days ago1718088455IN
0xa353bcd0...269439320
0 ETH0.00020185.80405844
Transfer197878772024-05-03 6:44:11284 days ago1714718651IN
0xa353bcd0...269439320
0 ETH0.000189085.44019935
Transfer197878212024-05-03 6:32:59284 days ago1714717979IN
0xa353bcd0...269439320
0 ETH0.000288325.56133138
Transfer197454512024-04-27 8:21:59290 days ago1714206119IN
0xa353bcd0...269439320
0 ETH0.000284715.49032131
Transfer197454482024-04-27 8:21:23290 days ago1714206083IN
0xa353bcd0...269439320
0 ETH0.000207375.96654118
Transfer183902802023-10-20 8:14:59480 days ago1697789699IN
0xa353bcd0...269439320
0 ETH0.000408578.6826164
Transfer183898372023-10-20 6:45:35480 days ago1697784335IN
0xa353bcd0...269439320
0 ETH0.000361136.96399062
Approve165838502023-02-08 11:45:23734 days ago1675856723IN
0xa353bcd0...269439320
0 ETH0.0011399424.45766989
Transfer160899092022-12-01 12:18:47803 days ago1669897127IN
0xa353bcd0...269439320
0 ETH0.0003295211
Transfer160898342022-12-01 12:03:47803 days ago1669896227IN
0xa353bcd0...269439320
0 ETH0.0006242712.03837404
Transfer152241412022-07-27 10:57:50930 days ago1658919470IN
0xa353bcd0...269439320
0 ETH0.000149845
Transfer152232702022-07-27 7:55:03930 days ago1658908503IN
0xa353bcd0...269439320
0 ETH0.000239848
Transfer152231952022-07-27 7:39:39930 days ago1658907579IN
0xa353bcd0...269439320
0 ETH0.000337876.51249683
Transfer152231862022-07-27 7:38:33930 days ago1658907513IN
0xa353bcd0...269439320
0 ETH0.000487929.4068552
Transfer152218472022-07-27 2:25:37930 days ago1658888737IN
0xa353bcd0...269439320
0 ETH0.0004195614
Transfer152217902022-07-27 2:12:12930 days ago1658887932IN
0xa353bcd0...269439320
0 ETH0.0007297714.06955736
Transfer152173902022-07-26 9:39:32931 days ago1658828372IN
0xa353bcd0...269439320
0 ETH0.0002996910
View all transactions

Advanced mode:
Parent Transaction Hash Block
From
To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GlueOS

Compiler Version
v0.6.1+commit.e6f7d5a4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-03-30
*/

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }

    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        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-contracts/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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        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) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @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.
     *
     * IMPORTANT: 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 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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 Context, 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 override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override 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 virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        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 `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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 virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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 virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _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 virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

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

    /**
     * @dev Destroys `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 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @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 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of `from`'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of `from`'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:using-hooks.adoc[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

/**
 * @dev Optional functions from the ERC20 standard.
 */
abstract 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: 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;
    }
}

contract GlueOS is Context, ERC20, ERC20Detailed {
    address public owner;
    
    mapping(uint256 => bool) public unlockCheck;
    
    uint256[] public unlockAmount = [
        150000000, //team
        2500000, //operation per month
        30000000, //operation per year 
        5000000, //development and marketing per month
        60000000, //development and marketing per year
        5000000, //bounty per month
        20000000, //sales per month
        100000000 //sales in last round
    ];
    
    uint256 public initialSupply = 1000000000;
    
    uint256[] public unlockTime = [
        //unlock time per month
        1585494000, // 2020.03.30. 12am gmt+9
        1588345200, // 2020.05.02. 12am gmt+9
        1591023600, // 2020.06.02. 12am gmt+9
        1593615600, // 2020.07.02. 12am gmt+9
        1596294000, // 2020.08.02. 12am gmt+9
        1598972400, // 2020.09.02. 12am gmt+9
        1601564400, // 2020.10.02. 12am gmt+9
        1604242800, // 2020.11.02. 12am gmt+9
        1606834800, // 2020.12.02. 12am gmt+9
        1609513200, // 2021.01.02. 12am gmt+9
        1612191600, // 2021.02.02. 12am gmt+9
        1614610800, // 2021.03.02. 12am gmt+9
        //unlock time per year
        1617289200, // 2021.04.02. 12am gmt+9
        1648825200, // 2022.04.02. 12am gmt+9
        1680361200, // 2023.04.02. 12am gmt+9
        1711983600, // 2024.04.02. 12am gmt+9
        1743519600, // 2025.04.02. 12am gmt+9
        1775055600, // 2026.04.02. 12am gmt+9
        1806591600, // 2027.04.02. 12am gmt+9
        1838214000, // 2028.04.02. 12am gmt+9
        1869750000  // 2029.04.02. 12am gmt+9
    ]; 

    constructor () public ERC20Detailed("GlueOS", "GLU", 18) {
        owner=msg.sender;
        _mint(address(this), initialSupply * (10 ** uint256(decimals())));
    }
    
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }
    
    function unlock(uint8 mode, uint8 round) public {
        require(msg.sender==owner);
        require(mode<8);
        if(mode==0) require(round==1);
        else if(mode==1) require(round<12);
        else if(mode==2) require(round<9);
        else if(mode==3) require(round<12);
        else if(mode==4) require(round<4);
        else if(mode==5) require(round<10);
        else if(mode==6) require(round<5);
        else if(mode==7) require(round==5);
        
        require(now >= unlockTime[round + ((mode==0 || mode==2 || mode==4) ? 12 : 0)]);
        require(!unlockCheck[mode*12+round]);
        unlockCheck[mode*12+round] = true;
        _burn(address(this), unlockAmount[mode] * (10 ** uint256(decimals())));
        _mint(msg.sender, unlockAmount[mode] * (10 ** uint256(decimals())));
    }
    
    function changeOwner(address _owner) public {
        require(msg.sender==owner);
        owner = _owner;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"mode","type":"uint8"},{"internalType":"uint8","name":"round","type":"uint8"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"unlockAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"unlockCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"unlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526040518061010001604052806308f0d18063ffffffff168152602001622625a063ffffffff1681526020016301c9c38063ffffffff168152602001624c4b4063ffffffff168152602001630393870063ffffffff168152602001624c4b4063ffffffff1681526020016301312d0063ffffffff1681526020016305f5e10063ffffffff1681525060079060086200009d929190620005d4565b50633b9aca00600855604051806102a00160405280635e80b7f063ffffffff168152602001635eac397063ffffffff168152602001635ed517f063ffffffff168152602001635efca4f063ffffffff168152602001635f25837063ffffffff168152602001635f4e61f063ffffffff168152602001635f75eef063ffffffff168152602001635f9ecd7063ffffffff168152602001635fc65a7063ffffffff168152602001635fef38f063ffffffff168152602001636018177063ffffffff16815260200163603d017063ffffffff168152602001636065dff063ffffffff168152602001636247137063ffffffff16815260200163642846f063ffffffff16815260200163660acbf063ffffffff1681526020016367ebff7063ffffffff1681526020016369cd32f063ffffffff168152602001636bae667063ffffffff168152602001636d90eb7063ffffffff168152602001636f721ef063ffffffff168152506009906015620002129291906200062e565b503480156200022057600080fd5b506040518060400160405280600681526020017f476c75654f5300000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f474c55000000000000000000000000000000000000000000000000000000000081525060128260039080519060200190620002a792919062000688565b508160049080519060200190620002c092919062000688565b5080600560006101000a81548160ff021916908360ff16021790555050505033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200034b30620003356200035160201b60201c565b60ff16600a0a600854026200036860201b60201c565b62000737565b6000600560009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200040c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000420600083836200054660201b60201c565b6200043c816002546200054b60201b620018f11790919060201c565b6002819055506200049a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200054b60201b620018f11790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600080828401905083811015620005ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b8280548282559060005260206000209081019282156200061b579160200282015b828111156200061a578251829063ffffffff16905591602001919060010190620005f5565b5b5090506200062a91906200070f565b5090565b82805482825590600052602060002090810192821562000675579160200282015b8281111562000674578251829063ffffffff169055916020019190600101906200064f565b5b5090506200068491906200070f565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006cb57805160ff1916838001178555620006fc565b82800160010185558215620006fc579182015b82811115620006fb578251825591602001919060010190620006de565b5b5090506200070b91906200070f565b5090565b6200073491905b808211156200073057600081600090555060010162000716565b5090565b90565b611b4280620007476000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806342966c68116100ad578063a457c2d711610071578063a457c2d714610570578063a6f9dae1146105d6578063a9059cbb1461061a578063d018aae614610680578063dd62ed3e146106c657610121565b806342966c68146103db5780634cd2c09a1461040957806370a082311461044b5780638da5cb5b146104a357806395d89b41146104ed57610121565b806323b872dd116100f457806323b872dd1461026f578063313ce567146102f5578063378dc3dc1461031957806338b4f21b14610337578063395093511461037557610121565b806306fdde0314610126578063095ea7b3146101a95780631797c84c1461020f57806318160ddd14610251575b600080fd5b61012e61073e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561016e578082015181840152602081019050610153565b50505050905090810190601f16801561019b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f5600480360360408110156101bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107e0565b604051808215151515815260200191505060405180910390f35b61023b6004803603602081101561022557600080fd5b81019080803590602001909291905050506107fe565b6040518082815260200191505060405180910390f35b61025961081f565b6040518082815260200191505060405180910390f35b6102db6004803603606081101561028557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610829565b604051808215151515815260200191505060405180910390f35b6102fd610902565b604051808260ff1660ff16815260200191505060405180910390f35b610321610919565b6040518082815260200191505060405180910390f35b6103736004803603604081101561034d57600080fd5b81019080803560ff169060200190929190803560ff16906020019092919050505061091f565b005b6103c16004803603604081101561038b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bbe565b604051808215151515815260200191505060405180910390f35b610407600480360360208110156103f157600080fd5b8101908080359060200190929190505050610c71565b005b6104356004803603602081101561041f57600080fd5b8101908080359060200190929190505050610c85565b6040518082815260200191505060405180910390f35b61048d6004803603602081101561046157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca6565b6040518082815260200191505060405180910390f35b6104ab610cee565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104f5610d14565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561053557808201518184015260208101905061051a565b50505050905090810190601f1680156105625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105bc6004803603604081101561058657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610db6565b604051808215151515815260200191505060405180910390f35b610618600480360360208110156105ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e83565b005b6106666004803603604081101561063057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f21565b604051808215151515815260200191505060405180910390f35b6106ac6004803603602081101561069657600080fd5b8101908080359060200190929190505050610f3f565b604051808215151515815260200191505060405180910390f35b610728600480360360408110156106dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f5f565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107d65780601f106107ab576101008083540402835291602001916107d6565b820191906000526020600020905b8154815290600101906020018083116107b957829003601f168201915b5050505050905090565b60006107f46107ed610fe6565b8484610fee565b6001905092915050565b6009818154811061080b57fe5b906000526020600020016000915090505481565b6000600254905090565b60006108368484846111e5565b6108f784610842610fe6565b6108f285604051806060016040528060288152602001611a5660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108a8610fe6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69092919063ffffffff16565b610fee565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60085481565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461097957600080fd5b60088260ff161061098957600080fd5b60008260ff1614156109aa5760018160ff16146109a557600080fd5b610a94565b60018260ff1614156109cb57600c8160ff16106109c657600080fd5b610a93565b60028260ff1614156109ec5760098160ff16106109e757600080fd5b610a92565b60038260ff161415610a0d57600c8160ff1610610a0857600080fd5b610a91565b60048260ff161415610a2e5760048160ff1610610a2957600080fd5b610a90565b60058260ff161415610a4f57600a8160ff1610610a4a57600080fd5b610a8f565b60068260ff161415610a705760058160ff1610610a6b57600080fd5b610a8e565b60078260ff161415610a8d5760058160ff1614610a8c57600080fd5b5b5b5b5b5b5b5b5b600960008360ff161480610aab575060028360ff16145b80610ab9575060048360ff16145b610ac4576000610ac7565b600c5b820160ff1681548110610ad657fe5b9060005260206000200154421015610aed57600080fd5b6006600082600c85020160ff16815260200190815260200160002060009054906101000a900460ff1615610b2057600080fd5b60016006600083600c86020160ff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610b8730610b60610902565b60ff16600a0a60078560ff1681548110610b7657fe5b906000526020600020015402611566565b610bba33610b93610902565b60ff16600a0a60078560ff1681548110610ba957fe5b90600052602060002001540261172a565b5050565b6000610c67610bcb610fe6565b84610c628560016000610bdc610fe6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f190919063ffffffff16565b610fee565b6001905092915050565b610c82610c7c610fe6565b82611566565b50565b60078181548110610c9257fe5b906000526020600020016000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610dac5780601f10610d8157610100808354040283529160200191610dac565b820191906000526020600020905b815481529060010190602001808311610d8f57829003601f168201915b5050505050905090565b6000610e79610dc3610fe6565b84610e7485604051806060016040528060258152602001611ae86025913960016000610ded610fe6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69092919063ffffffff16565b610fee565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610edd57600080fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f35610f2e610fe6565b84846111e5565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611ac46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611a0e6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561126b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611a9f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806119c96023913960400191505060405180910390fd5b6112fc838383611979565b61136781604051806060016040528060268152602001611a30602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113fa816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611553576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115185780820151818401526020810190506114fd565b50505050905090810190601f1680156115455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611a7e6021913960400191505060405180910390fd5b6115f882600083611979565b611663816040518060600160405280602281526020016119ec602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116ba8160025461197e90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6117d960008383611979565b6117ee816002546118f190919063ffffffff16565b600281905550611845816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008082840190508381101561196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b505050565b60006119c083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506114a6565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201295dcb5f8bc2b1dab69a2358a2333aee094d934db929f778d3503dff660406364736f6c63430006010033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806342966c68116100ad578063a457c2d711610071578063a457c2d714610570578063a6f9dae1146105d6578063a9059cbb1461061a578063d018aae614610680578063dd62ed3e146106c657610121565b806342966c68146103db5780634cd2c09a1461040957806370a082311461044b5780638da5cb5b146104a357806395d89b41146104ed57610121565b806323b872dd116100f457806323b872dd1461026f578063313ce567146102f5578063378dc3dc1461031957806338b4f21b14610337578063395093511461037557610121565b806306fdde0314610126578063095ea7b3146101a95780631797c84c1461020f57806318160ddd14610251575b600080fd5b61012e61073e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561016e578082015181840152602081019050610153565b50505050905090810190601f16801561019b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f5600480360360408110156101bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107e0565b604051808215151515815260200191505060405180910390f35b61023b6004803603602081101561022557600080fd5b81019080803590602001909291905050506107fe565b6040518082815260200191505060405180910390f35b61025961081f565b6040518082815260200191505060405180910390f35b6102db6004803603606081101561028557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610829565b604051808215151515815260200191505060405180910390f35b6102fd610902565b604051808260ff1660ff16815260200191505060405180910390f35b610321610919565b6040518082815260200191505060405180910390f35b6103736004803603604081101561034d57600080fd5b81019080803560ff169060200190929190803560ff16906020019092919050505061091f565b005b6103c16004803603604081101561038b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bbe565b604051808215151515815260200191505060405180910390f35b610407600480360360208110156103f157600080fd5b8101908080359060200190929190505050610c71565b005b6104356004803603602081101561041f57600080fd5b8101908080359060200190929190505050610c85565b6040518082815260200191505060405180910390f35b61048d6004803603602081101561046157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca6565b6040518082815260200191505060405180910390f35b6104ab610cee565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104f5610d14565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561053557808201518184015260208101905061051a565b50505050905090810190601f1680156105625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105bc6004803603604081101561058657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610db6565b604051808215151515815260200191505060405180910390f35b610618600480360360208110156105ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e83565b005b6106666004803603604081101561063057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f21565b604051808215151515815260200191505060405180910390f35b6106ac6004803603602081101561069657600080fd5b8101908080359060200190929190505050610f3f565b604051808215151515815260200191505060405180910390f35b610728600480360360408110156106dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f5f565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107d65780601f106107ab576101008083540402835291602001916107d6565b820191906000526020600020905b8154815290600101906020018083116107b957829003601f168201915b5050505050905090565b60006107f46107ed610fe6565b8484610fee565b6001905092915050565b6009818154811061080b57fe5b906000526020600020016000915090505481565b6000600254905090565b60006108368484846111e5565b6108f784610842610fe6565b6108f285604051806060016040528060288152602001611a5660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108a8610fe6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69092919063ffffffff16565b610fee565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60085481565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461097957600080fd5b60088260ff161061098957600080fd5b60008260ff1614156109aa5760018160ff16146109a557600080fd5b610a94565b60018260ff1614156109cb57600c8160ff16106109c657600080fd5b610a93565b60028260ff1614156109ec5760098160ff16106109e757600080fd5b610a92565b60038260ff161415610a0d57600c8160ff1610610a0857600080fd5b610a91565b60048260ff161415610a2e5760048160ff1610610a2957600080fd5b610a90565b60058260ff161415610a4f57600a8160ff1610610a4a57600080fd5b610a8f565b60068260ff161415610a705760058160ff1610610a6b57600080fd5b610a8e565b60078260ff161415610a8d5760058160ff1614610a8c57600080fd5b5b5b5b5b5b5b5b5b600960008360ff161480610aab575060028360ff16145b80610ab9575060048360ff16145b610ac4576000610ac7565b600c5b820160ff1681548110610ad657fe5b9060005260206000200154421015610aed57600080fd5b6006600082600c85020160ff16815260200190815260200160002060009054906101000a900460ff1615610b2057600080fd5b60016006600083600c86020160ff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610b8730610b60610902565b60ff16600a0a60078560ff1681548110610b7657fe5b906000526020600020015402611566565b610bba33610b93610902565b60ff16600a0a60078560ff1681548110610ba957fe5b90600052602060002001540261172a565b5050565b6000610c67610bcb610fe6565b84610c628560016000610bdc610fe6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f190919063ffffffff16565b610fee565b6001905092915050565b610c82610c7c610fe6565b82611566565b50565b60078181548110610c9257fe5b906000526020600020016000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610dac5780601f10610d8157610100808354040283529160200191610dac565b820191906000526020600020905b815481529060010190602001808311610d8f57829003601f168201915b5050505050905090565b6000610e79610dc3610fe6565b84610e7485604051806060016040528060258152602001611ae86025913960016000610ded610fe6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69092919063ffffffff16565b610fee565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610edd57600080fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f35610f2e610fe6565b84846111e5565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611ac46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611a0e6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561126b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611a9f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806119c96023913960400191505060405180910390fd5b6112fc838383611979565b61136781604051806060016040528060268152602001611a30602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113fa816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611553576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115185780820151818401526020810190506114fd565b50505050905090810190601f1680156115455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611a7e6021913960400191505060405180910390fd5b6115f882600083611979565b611663816040518060600160405280602281526020016119ec602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114a69092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116ba8160025461197e90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6117d960008383611979565b6117ee816002546118f190919063ffffffff16565b600281905550611845816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008082840190508381101561196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b505050565b60006119c083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506114a6565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201295dcb5f8bc2b1dab69a2358a2333aee094d934db929f778d3503dff660406364736f6c63430006010033

Deployed Bytecode Sourcemap

19545:2911:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19545:2911:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18603:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18603:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11714:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11714:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20132:1090;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20132:1090:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10683:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12355:321;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12355:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19455:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20078:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21507:820;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21507:820:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13085:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13085:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21412:83;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21412:83:0;;;;;;;;;;;;;;;;;:::i;:::-;;19690:375;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19690:375:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10846:119;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10846:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19601:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18805:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18805:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13806:269;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13806:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22339:114;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22339:114:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11178:175;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11178:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19634:43;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19634:43:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11416:151;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11416:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18603:83;18640:13;18673:5;18666:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18603:83;:::o;11714:169::-;11797:4;11814:39;11823:12;:10;:12::i;:::-;11837:7;11846:6;11814:8;:39::i;:::-;11871:4;11864:11;;11714:169;;;;:::o;20132:1090::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10683:100::-;10736:7;10763:12;;10756:19;;10683:100;:::o;12355:321::-;12461:4;12478:36;12488:6;12496:9;12507:6;12478:9;:36::i;:::-;12525:121;12534:6;12542:12;:10;:12::i;:::-;12556:89;12594:6;12556:89;;;;;;;;;;;;;;;;;:11;:19;12568:6;12556:19;;;;;;;;;;;;;;;:33;12576:12;:10;:12::i;:::-;12556:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;12525:8;:121::i;:::-;12664:4;12657:11;;12355:321;;;;;:::o;19455:83::-;19496:5;19521:9;;;;;;;;;;;19514:16;;19455:83;:::o;20078:41::-;;;;:::o;21507:820::-;21586:5;;;;;;;;;;;21574:17;;:10;:17;;;21566:26;;;;;;21616:1;21611:4;:6;;;21603:15;;;;;;21638:1;21632:4;:7;;;21629:341;;;21656:1;21649:5;:8;;;21641:17;;;;;;21629:341;;;21683:1;21677:4;:7;;;21674:296;;;21700:2;21694:5;:8;;;21686:17;;;;;;21674:296;;;21728:1;21722:4;:7;;;21719:251;;;21745:1;21739:5;:7;;;21731:16;;;;;;21719:251;;;21772:1;21766:4;:7;;;21763:207;;;21789:2;21783:5;:8;;;21775:17;;;;;;21763:207;;;21817:1;21811:4;:7;;;21808:162;;;21834:1;21828:5;:7;;;21820:16;;;;;;21808:162;;;21861:1;21855:4;:7;;;21852:118;;;21878:2;21872:5;:8;;;21864:17;;;;;;21852:118;;;21906:1;21900:4;:7;;;21897:73;;;21923:1;21917:5;:7;;;21909:16;;;;;;21897:73;;;21950:1;21944:4;:7;;;21941:29;;;21968:1;21961:5;:8;;;21953:17;;;;;;21941:29;21897:73;21852:118;21808:162;21763:207;21719:251;21674:296;21629:341;22006:10;22033:1;22027:4;:7;;;:18;;;;22044:1;22038:4;:7;;;22027:18;:29;;;;22055:1;22049:4;:7;;;22027:29;22026:40;;22065:1;22026:40;;;22060:2;22026:40;22017:5;:50;22006:62;;;;;;;;;;;;;;;;;;21999:3;:69;;21991:78;;;;;;22089:11;:26;22109:5;22106:2;22101:4;:7;:13;22089:26;;;;;;;;;;;;;;;;;;;;;;;22088:27;22080:36;;;;;;22156:4;22127:11;:26;22147:5;22144:2;22139:4;:7;:13;22127:26;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;22171:70;22185:4;22228:10;:8;:10::i;:::-;22220:19;;22214:2;:25;22192:12;22205:4;22192:18;;;;;;;;;;;;;;;;;;:48;22171:5;:70::i;:::-;22252:67;22258:10;22306;:8;:10::i;:::-;22298:19;;22292:2;:25;22270:12;22283:4;22270:18;;;;;;;;;;;;;;;;;;:48;22252:5;:67::i;:::-;21507:820;;:::o;13085:218::-;13173:4;13190:83;13199:12;:10;:12::i;:::-;13213:7;13222:50;13261:10;13222:11;:25;13234:12;:10;:12::i;:::-;13222:25;;;;;;;;;;;;;;;:34;13248:7;13222:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13190:8;:83::i;:::-;13291:4;13284:11;;13085:218;;;;:::o;21412:83::-;21460:27;21466:12;:10;:12::i;:::-;21480:6;21460:5;:27::i;:::-;21412:83;:::o;19690:375::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10846:119::-;10912:7;10939:9;:18;10949:7;10939:18;;;;;;;;;;;;;;;;10932:25;;10846:119;;;:::o;19601:20::-;;;;;;;;;;;;;:::o;18805:87::-;18844:13;18877:7;18870:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18805:87;:::o;13806:269::-;13899:4;13916:129;13925:12;:10;:12::i;:::-;13939:7;13948:96;13987:15;13948:96;;;;;;;;;;;;;;;;;:11;:25;13960:12;:10;:12::i;:::-;13948:25;;;;;;;;;;;;;;;:34;13974:7;13948:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;13916:8;:129::i;:::-;14063:4;14056:11;;13806:269;;;;:::o;22339:114::-;22414:5;;;;;;;;;;;22402:17;;:10;:17;;;22394:26;;;;;;22439:6;22431:5;;:14;;;;;;;;;;;;;;;;;;22339:114;:::o;11178:175::-;11264:4;11281:42;11291:12;:10;:12::i;:::-;11305:9;11316:6;11281:9;:42::i;:::-;11341:4;11334:11;;11178:175;;;;:::o;19634:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;11416:151::-;11505:7;11532:11;:18;11544:5;11532:18;;;;;;;;;;;;;;;:27;11551:7;11532:27;;;;;;;;;;;;;;;;11525:34;;11416:151;;;;:::o;752:106::-;805:15;840:10;833:17;;752:106;:::o;16953:346::-;17072:1;17055:19;;:5;:19;;;;17047:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17153:1;17134:21;;:7;:21;;;;17126:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17237:6;17207:11;:18;17219:5;17207:18;;;;;;;;;;;;;;;:27;17226:7;17207:27;;;;;;;;;;;;;;;:36;;;;17275:7;17259:32;;17268:5;17259:32;;;17284:6;17259:32;;;;;;;;;;;;;;;;;;16953:346;;;:::o;14565:539::-;14689:1;14671:20;;:6;:20;;;;14663:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14773:1;14752:23;;:9;:23;;;;14744:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14828:47;14849:6;14857:9;14868:6;14828:20;:47::i;:::-;14908:71;14930:6;14908:71;;;;;;;;;;;;;;;;;:9;:17;14918:6;14908:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;14888:9;:17;14898:6;14888:17;;;;;;;;;;;;;;;:91;;;;15013:32;15038:6;15013:9;:20;15023:9;15013:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14990:9;:20;15000:9;14990:20;;;;;;;;;;;;;;;:55;;;;15078:9;15061:35;;15070:6;15061:35;;;15089:6;15061:35;;;;;;;;;;;;;;;;;;14565:539;;;:::o;2825:192::-;2911:7;2944:1;2939;:6;;2947:12;2931:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2931:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2971:9;2987:1;2983;:5;2971:17;;3008:1;3001:8;;;2825:192;;;;;:::o;16095:418::-;16198:1;16179:21;;:7;:21;;;;16171:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16251:49;16272:7;16289:1;16293:6;16251:20;:49::i;:::-;16334:68;16357:6;16334:68;;;;;;;;;;;;;;;;;:9;:18;16344:7;16334:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;16313:9;:18;16323:7;16313:18;;;;;;;;;;;;;;;:89;;;;16428:24;16445:6;16428:12;;:16;;:24;;;;:::i;:::-;16413:12;:39;;;;16494:1;16468:37;;16477:7;16468:37;;;16498:6;16468:37;;;;;;;;;;;;;;;;;;16095:418;;:::o;15385:378::-;15488:1;15469:21;;:7;:21;;;;15461:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15539:49;15568:1;15572:7;15581:6;15539:20;:49::i;:::-;15616:24;15633:6;15616:12;;:16;;:24;;;;:::i;:::-;15601:12;:39;;;;15672:30;15695:6;15672:9;:18;15682:7;15672:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;15651:9;:18;15661:7;15651:18;;;;;;;;;;;;;;;:51;;;;15739:7;15718:37;;15735:1;15718:37;;;15748:6;15718:37;;;;;;;;;;;;;;;;;;15385:378;;:::o;1938:181::-;1996:7;2016:9;2032:1;2028;:5;2016:17;;2057:1;2052;:6;;2044:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2110:1;2103:8;;;1938:181;;;;:::o;17878:92::-;;;;:::o;2394:136::-;2452:7;2479:43;2483:1;2486;2479:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2472:50;;2394:136;;;;:::o

Swarm Source

ipfs://1295dcb5f8bc2b1dab69a2358a2333aee094d934db929f778d3503dff6604063

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.