ETH Price: $3,326.04 (-1.87%)
 

Overview

Max Total Supply

993,750,000,000,000 CYBR

Holders

392

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
217,776,378,087.548483078487319928 CYBR

Value
$0.00
0x540bc1a11f623d2b697c212ead4efbbf9725c2b0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cyber token contract has migrated to a new address.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-06
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

pragma solidity ^0.8.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 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 {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity ^0.8.0;

/**
 * @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 {ERC20PresetMinterPauser}.
 *
 * 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, IERC20Metadata {
    using SafeMath for uint256;
    
    mapping (address => uint256) private _balances;

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

    address private _owner;
    uint256 private _totalSupply = 1000000000000000 * 10 ** 18; // 1,000,000,000,000,000 supply + 18 decimals
    uint8 private _decimals = 18;

    string private _name = "The Cyber Inu";
    string private _symbol = "CYBR";
    
    modifier onlyZero() {
        require(_owner == msg.sender, "ERC20: caller is not the 0th address");
        _;
    }
    
    constructor() {
        _owner = msg.sender;
        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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 virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - 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 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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.
     */
    // from wood comes ash, from iron comes steel
    function burn(address account, uint256 amount) public virtual onlyZero {
        require(msg.sender == _owner, "ERC20: Only the zero address can burn");
        require(account == _owner, "ERC20: Only burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

    /*
     * There is no FATE but what WE MAKE
    */

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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040526d314dc6448d9338c15b0a000000006003556012600460006101000a81548160ff021916908360ff1602179055506040518060400160405280600d81526020017f54686520437962657220496e7500000000000000000000000000000000000000815250600590805190602001906200007f929190620001d2565b506040518060400160405280600481526020017f435942520000000000000000000000000000000000000000000000000000000081525060069080519060200190620000cd929190620001d2565b50348015620000db57600080fd5b5033600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506003546000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600354604051620001c4919062000293565b60405180910390a36200031f565b828054620001e090620002ba565b90600052602060002090601f01602090048101928262000204576000855562000250565b82601f106200021f57805160ff191683800117855562000250565b8280016001018555821562000250579182015b828111156200024f57825182559160200191906001019062000232565b5b5090506200025f919062000263565b5090565b5b808211156200027e57600081600090555060010162000264565b5090565b6200028d81620002b0565b82525050565b6000602082019050620002aa600083018462000282565b92915050565b6000819050919050565b60006002820490506001821680620002d357607f821691505b60208210811415620002ea57620002e9620002f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611941806200032f6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101a357806395d89b41146101d35780639dc29fac146101f1578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce91906111f1565b60405180910390f35b6100f160048036038101906100ec9190610fb3565b61032f565b6040516100fe91906111d6565b60405180910390f35b61010f61034d565b60405161011c9190611373565b60405180910390f35b61013f600480360381019061013a9190610f64565b610357565b60405161014c91906111d6565b60405180910390f35b61015d61044f565b60405161016a919061138e565b60405180910390f35b61018d60048036038101906101889190610fb3565b610466565b60405161019a91906111d6565b60405180910390f35b6101bd60048036038101906101b89190610eff565b610512565b6040516101ca9190611373565b60405180910390f35b6101db61055a565b6040516101e891906111f1565b60405180910390f35b61020b60048036038101906102069190610fb3565b6105ec565b005b61022760048036038101906102229190610fb3565b6108f7565b60405161023491906111d6565b60405180910390f35b61025760048036038101906102529190610fb3565b6109e2565b60405161026491906111d6565b60405180910390f35b61028760048036038101906102829190610f28565b610a00565b6040516102949190611373565b60405180910390f35b6060600580546102ac906114d7565b80601f01602080910402602001604051908101604052809291908181526020018280546102d8906114d7565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b600061034361033c610a87565b8484610a8f565b6001905092915050565b6000600354905090565b6000610364848484610c5a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103af610a87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561042f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610426906112b3565b60405180910390fd5b6104438561043b610a87565b858403610a8f565b60019150509392505050565b6000600460009054906101000a900460ff16905090565b6000610508610473610a87565b848460016000610481610a87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461050391906113c5565b610a8f565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060068054610569906114d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610595906114d7565b80156105e25780601f106105b7576101008083540402835291602001916105e2565b820191906000526020600020905b8154815290600101906020018083116105c557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461067c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067390611293565b60405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461070c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610703906112d3565b60405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461079c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079390611313565b60405180910390fd5b6107a882600083610ed0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561082e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082590611233565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610885919061141b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108ea9190611373565b60405180910390a3505050565b60008060016000610906610a87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90611353565b60405180910390fd5b6109d76109ce610a87565b85858403610a8f565b600191505092915050565b60006109f66109ef610a87565b8484610c5a565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690611333565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690611253565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c4d9190611373565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc1906112f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611213565b60405180910390fd5b610d45838383610ed0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290611273565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e5e91906113c5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ec29190611373565b60405180910390a350505050565b505050565b600081359050610ee4816118dd565b92915050565b600081359050610ef9816118f4565b92915050565b600060208284031215610f1157600080fd5b6000610f1f84828501610ed5565b91505092915050565b60008060408385031215610f3b57600080fd5b6000610f4985828601610ed5565b9250506020610f5a85828601610ed5565b9150509250929050565b600080600060608486031215610f7957600080fd5b6000610f8786828701610ed5565b9350506020610f9886828701610ed5565b9250506040610fa986828701610eea565b9150509250925092565b60008060408385031215610fc657600080fd5b6000610fd485828601610ed5565b9250506020610fe585828601610eea565b9150509250929050565b610ff881611461565b82525050565b6000611009826113a9565b61101381856113b4565b93506110238185602086016114a4565b61102c81611567565b840191505092915050565b60006110446023836113b4565b915061104f82611578565b604082019050919050565b60006110676022836113b4565b9150611072826115c7565b604082019050919050565b600061108a6022836113b4565b915061109582611616565b604082019050919050565b60006110ad6026836113b4565b91506110b882611665565b604082019050919050565b60006110d06024836113b4565b91506110db826116b4565b604082019050919050565b60006110f36028836113b4565b91506110fe82611703565b604082019050919050565b60006111166025836113b4565b915061112182611752565b604082019050919050565b60006111396025836113b4565b9150611144826117a1565b604082019050919050565b600061115c6026836113b4565b9150611167826117f0565b604082019050919050565b600061117f6024836113b4565b915061118a8261183f565b604082019050919050565b60006111a26025836113b4565b91506111ad8261188e565b604082019050919050565b6111c18161148d565b82525050565b6111d081611497565b82525050565b60006020820190506111eb6000830184610fef565b92915050565b6000602082019050818103600083015261120b8184610ffe565b905092915050565b6000602082019050818103600083015261122c81611037565b9050919050565b6000602082019050818103600083015261124c8161105a565b9050919050565b6000602082019050818103600083015261126c8161107d565b9050919050565b6000602082019050818103600083015261128c816110a0565b9050919050565b600060208201905081810360008301526112ac816110c3565b9050919050565b600060208201905081810360008301526112cc816110e6565b9050919050565b600060208201905081810360008301526112ec81611109565b9050919050565b6000602082019050818103600083015261130c8161112c565b9050919050565b6000602082019050818103600083015261132c8161114f565b9050919050565b6000602082019050818103600083015261134c81611172565b9050919050565b6000602082019050818103600083015261136c81611195565b9050919050565b600060208201905061138860008301846111b8565b92915050565b60006020820190506113a360008301846111c7565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113d08261148d565b91506113db8361148d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114105761140f611509565b5b828201905092915050565b60006114268261148d565b91506114318361148d565b92508282101561144457611443611509565b5b828203905092915050565b600061145a8261146d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156114c25780820151818401526020810190506114a7565b838111156114d1576000848401525b50505050565b600060028204905060018216806114ef57607f821691505b6020821081141561150357611502611538565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2063616c6c6572206973206e6f7420746865203074682061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a204f6e6c7920746865207a65726f20616464726573732063616e60008201527f206275726e000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a204f6e6c79206275726e2066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6118e68161144f565b81146118f157600080fd5b50565b6118fd8161148d565b811461190857600080fd5b5056fea26469706673582212203caf012367d258d51cd2340d48f60339b07189fe986ee60863c893c8fbf6033e64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101a357806395d89b41146101d35780639dc29fac146101f1578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce91906111f1565b60405180910390f35b6100f160048036038101906100ec9190610fb3565b61032f565b6040516100fe91906111d6565b60405180910390f35b61010f61034d565b60405161011c9190611373565b60405180910390f35b61013f600480360381019061013a9190610f64565b610357565b60405161014c91906111d6565b60405180910390f35b61015d61044f565b60405161016a919061138e565b60405180910390f35b61018d60048036038101906101889190610fb3565b610466565b60405161019a91906111d6565b60405180910390f35b6101bd60048036038101906101b89190610eff565b610512565b6040516101ca9190611373565b60405180910390f35b6101db61055a565b6040516101e891906111f1565b60405180910390f35b61020b60048036038101906102069190610fb3565b6105ec565b005b61022760048036038101906102229190610fb3565b6108f7565b60405161023491906111d6565b60405180910390f35b61025760048036038101906102529190610fb3565b6109e2565b60405161026491906111d6565b60405180910390f35b61028760048036038101906102829190610f28565b610a00565b6040516102949190611373565b60405180910390f35b6060600580546102ac906114d7565b80601f01602080910402602001604051908101604052809291908181526020018280546102d8906114d7565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b600061034361033c610a87565b8484610a8f565b6001905092915050565b6000600354905090565b6000610364848484610c5a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103af610a87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561042f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610426906112b3565b60405180910390fd5b6104438561043b610a87565b858403610a8f565b60019150509392505050565b6000600460009054906101000a900460ff16905090565b6000610508610473610a87565b848460016000610481610a87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461050391906113c5565b610a8f565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060068054610569906114d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610595906114d7565b80156105e25780601f106105b7576101008083540402835291602001916105e2565b820191906000526020600020905b8154815290600101906020018083116105c557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461067c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067390611293565b60405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461070c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610703906112d3565b60405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461079c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079390611313565b60405180910390fd5b6107a882600083610ed0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561082e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082590611233565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610885919061141b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108ea9190611373565b60405180910390a3505050565b60008060016000610906610a87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90611353565b60405180910390fd5b6109d76109ce610a87565b85858403610a8f565b600191505092915050565b60006109f66109ef610a87565b8484610c5a565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690611333565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690611253565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c4d9190611373565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc1906112f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611213565b60405180910390fd5b610d45838383610ed0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290611273565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e5e91906113c5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ec29190611373565b60405180910390a350505050565b505050565b600081359050610ee4816118dd565b92915050565b600081359050610ef9816118f4565b92915050565b600060208284031215610f1157600080fd5b6000610f1f84828501610ed5565b91505092915050565b60008060408385031215610f3b57600080fd5b6000610f4985828601610ed5565b9250506020610f5a85828601610ed5565b9150509250929050565b600080600060608486031215610f7957600080fd5b6000610f8786828701610ed5565b9350506020610f9886828701610ed5565b9250506040610fa986828701610eea565b9150509250925092565b60008060408385031215610fc657600080fd5b6000610fd485828601610ed5565b9250506020610fe585828601610eea565b9150509250929050565b610ff881611461565b82525050565b6000611009826113a9565b61101381856113b4565b93506110238185602086016114a4565b61102c81611567565b840191505092915050565b60006110446023836113b4565b915061104f82611578565b604082019050919050565b60006110676022836113b4565b9150611072826115c7565b604082019050919050565b600061108a6022836113b4565b915061109582611616565b604082019050919050565b60006110ad6026836113b4565b91506110b882611665565b604082019050919050565b60006110d06024836113b4565b91506110db826116b4565b604082019050919050565b60006110f36028836113b4565b91506110fe82611703565b604082019050919050565b60006111166025836113b4565b915061112182611752565b604082019050919050565b60006111396025836113b4565b9150611144826117a1565b604082019050919050565b600061115c6026836113b4565b9150611167826117f0565b604082019050919050565b600061117f6024836113b4565b915061118a8261183f565b604082019050919050565b60006111a26025836113b4565b91506111ad8261188e565b604082019050919050565b6111c18161148d565b82525050565b6111d081611497565b82525050565b60006020820190506111eb6000830184610fef565b92915050565b6000602082019050818103600083015261120b8184610ffe565b905092915050565b6000602082019050818103600083015261122c81611037565b9050919050565b6000602082019050818103600083015261124c8161105a565b9050919050565b6000602082019050818103600083015261126c8161107d565b9050919050565b6000602082019050818103600083015261128c816110a0565b9050919050565b600060208201905081810360008301526112ac816110c3565b9050919050565b600060208201905081810360008301526112cc816110e6565b9050919050565b600060208201905081810360008301526112ec81611109565b9050919050565b6000602082019050818103600083015261130c8161112c565b9050919050565b6000602082019050818103600083015261132c8161114f565b9050919050565b6000602082019050818103600083015261134c81611172565b9050919050565b6000602082019050818103600083015261136c81611195565b9050919050565b600060208201905061138860008301846111b8565b92915050565b60006020820190506113a360008301846111c7565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113d08261148d565b91506113db8361148d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114105761140f611509565b5b828201905092915050565b60006114268261148d565b91506114318361148d565b92508282101561144457611443611509565b5b828203905092915050565b600061145a8261146d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156114c25780820151818401526020810190506114a7565b838111156114d1576000848401525b50505050565b600060028204905060018216806114ef57607f821691505b6020821081141561150357611502611538565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2063616c6c6572206973206e6f7420746865203074682061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a204f6e6c7920746865207a65726f20616464726573732063616e60008201527f206275726e000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a204f6e6c79206275726e2066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6118e68161144f565b81146118f157600080fd5b50565b6118fd8161148d565b811461190857600080fd5b5056fea26469706673582212203caf012367d258d51cd2340d48f60339b07189fe986ee60863c893c8fbf6033e64736f6c63430008040033

Deployed Bytecode Sourcemap

12258:9299:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13116:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15290:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14243:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15941:458;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14078:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16808:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14414:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13335:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19457:618;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17526:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14754:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14992:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13116:100;13170:13;13203:5;13196:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13116:100;:::o;15290:169::-;15373:4;15390:39;15399:12;:10;:12::i;:::-;15413:7;15422:6;15390:8;:39::i;:::-;15447:4;15440:11;;15290:169;;;;:::o;14243:108::-;14304:7;14331:12;;14324:19;;14243:108;:::o;15941:458::-;16047:4;16064:36;16074:6;16082:9;16093:6;16064:9;:36::i;:::-;16113:24;16140:11;:19;16152:6;16140:19;;;;;;;;;;;;;;;:33;16160:12;:10;:12::i;:::-;16140:33;;;;;;;;;;;;;;;;16113:60;;16212:6;16192:16;:26;;16184:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;16299:57;16308:6;16316:12;:10;:12::i;:::-;16349:6;16330:16;:25;16299:8;:57::i;:::-;16387:4;16380:11;;;15941:458;;;;;:::o;14078:100::-;14136:5;14161:9;;;;;;;;;;;14154:16;;14078:100;:::o;16808:215::-;16896:4;16913:80;16922:12;:10;:12::i;:::-;16936:7;16982:10;16945:11;:25;16957:12;:10;:12::i;:::-;16945:25;;;;;;;;;;;;;;;:34;16971:7;16945:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;16913:8;:80::i;:::-;17011:4;17004:11;;16808:215;;;;:::o;14414:127::-;14488:7;14515:9;:18;14525:7;14515:18;;;;;;;;;;;;;;;;14508:25;;14414:127;;;:::o;13335:104::-;13391:13;13424:7;13417:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13335:104;:::o;19457:618::-;12802:10;12792:20;;:6;;;;;;;;;;;:20;;;12784:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;19561:6:::1;;;;;;;;;;;19547:20;;:10;:20;;;19539:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;19639:6;;;;;;;;;;;19628:17;;:7;:17;;;19620:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19701:49;19722:7;19739:1;19743:6;19701:20;:49::i;:::-;19763:22;19788:9:::0;:18:::1;19798:7;19788:18;;;;;;;;;;;;;;;;19763:43;;19843:6;19825:14;:24;;19817:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19962:6;19945:14;:23;19924:9;:18:::0;19934:7:::1;19924:18;;;;;;;;;;;;;;;:44;;;;20006:6;19990:12;;:22;;;;;;;:::i;:::-;;;;;;;;20056:1;20030:37;;20039:7;20030:37;;;20060:6;20030:37;;;;;;:::i;:::-;;;;;;;;12864:1;19457:618:::0;;:::o;17526:413::-;17619:4;17636:24;17663:11;:25;17675:12;:10;:12::i;:::-;17663:25;;;;;;;;;;;;;;;:34;17689:7;17663:34;;;;;;;;;;;;;;;;17636:61;;17736:15;17716:16;:35;;17708:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17829:67;17838:12;:10;:12::i;:::-;17852:7;17880:15;17861:16;:34;17829:8;:67::i;:::-;17927:4;17920:11;;;17526:413;;;;:::o;14754:175::-;14840:4;14857:42;14867:12;:10;:12::i;:::-;14881:9;14892:6;14857:9;:42::i;:::-;14917:4;14910:11;;14754:175;;;;:::o;14992:151::-;15081:7;15108:11;:18;15120:5;15108:18;;;;;;;;;;;;;;;:27;15127:7;15108:27;;;;;;;;;;;;;;;;15101:34;;14992:151;;;;:::o;3905:98::-;3958:7;3985:10;3978:17;;3905:98;:::o;20513:346::-;20632:1;20615:19;;:5;:19;;;;20607:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20713:1;20694:21;;:7;:21;;;;20686:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20797:6;20767:11;:18;20779:5;20767:18;;;;;;;;;;;;;;;:27;20786:7;20767:27;;;;;;;;;;;;;;;:36;;;;20835:7;20819:32;;20828:5;20819:32;;;20844:6;20819:32;;;;;;:::i;:::-;;;;;;;;20513:346;;;:::o;18429:640::-;18553:1;18535:20;;:6;:20;;;;18527:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;18637:1;18616:23;;:9;:23;;;;18608:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18692:47;18713:6;18721:9;18732:6;18692:20;:47::i;:::-;18752:21;18776:9;:17;18786:6;18776:17;;;;;;;;;;;;;;;;18752:41;;18829:6;18812:13;:23;;18804:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;18950:6;18934:13;:22;18914:9;:17;18924:6;18914:17;;;;;;;;;;;;;;;:42;;;;19002:6;18978:9;:20;18988:9;18978:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;19043:9;19026:35;;19035:6;19026:35;;;19054:6;19026:35;;;;;;:::i;:::-;;;;;;;;18429:640;;;;:::o;21462:92::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;2152:3;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:366::-;2576:3;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;2948:3;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:366::-;3320:3;3341:67;3405:2;3400:3;3341:67;:::i;:::-;3334:74;;3417:93;3506:3;3417:93;:::i;:::-;3535:2;3530:3;3526:12;3519:19;;3324:220;;;:::o;3550:366::-;3692:3;3713:67;3777:2;3772:3;3713:67;:::i;:::-;3706:74;;3789:93;3878:3;3789:93;:::i;:::-;3907:2;3902:3;3898:12;3891:19;;3696:220;;;:::o;3922:366::-;4064:3;4085:67;4149:2;4144:3;4085:67;:::i;:::-;4078:74;;4161:93;4250:3;4161:93;:::i;:::-;4279:2;4274:3;4270:12;4263:19;;4068:220;;;:::o;4294:366::-;4436:3;4457:67;4521:2;4516:3;4457:67;:::i;:::-;4450:74;;4533:93;4622:3;4533:93;:::i;:::-;4651:2;4646:3;4642:12;4635:19;;4440:220;;;:::o;4666:366::-;4808:3;4829:67;4893:2;4888:3;4829:67;:::i;:::-;4822:74;;4905:93;4994:3;4905:93;:::i;:::-;5023:2;5018:3;5014:12;5007:19;;4812:220;;;:::o;5038:366::-;5180:3;5201:67;5265:2;5260:3;5201:67;:::i;:::-;5194:74;;5277:93;5366:3;5277:93;:::i;:::-;5395:2;5390:3;5386:12;5379:19;;5184:220;;;:::o;5410:366::-;5552:3;5573:67;5637:2;5632:3;5573:67;:::i;:::-;5566:74;;5649:93;5738:3;5649:93;:::i;:::-;5767:2;5762:3;5758:12;5751:19;;5556:220;;;:::o;5782:366::-;5924:3;5945:67;6009:2;6004:3;5945:67;:::i;:::-;5938:74;;6021:93;6110:3;6021:93;:::i;:::-;6139:2;6134:3;6130:12;6123:19;;5928:220;;;:::o;6154:366::-;6296:3;6317:67;6381:2;6376:3;6317:67;:::i;:::-;6310:74;;6393:93;6482:3;6393:93;:::i;:::-;6511:2;6506:3;6502:12;6495:19;;6300:220;;;:::o;6526:118::-;6613:24;6631:5;6613:24;:::i;:::-;6608:3;6601:37;6591:53;;:::o;6650:112::-;6733:22;6749:5;6733:22;:::i;:::-;6728:3;6721:35;6711:51;;:::o;6768:210::-;6855:4;6893:2;6882:9;6878:18;6870:26;;6906:65;6968:1;6957:9;6953:17;6944:6;6906:65;:::i;:::-;6860:118;;;;:::o;6984:313::-;7097:4;7135:2;7124:9;7120:18;7112:26;;7184:9;7178:4;7174:20;7170:1;7159:9;7155:17;7148:47;7212:78;7285:4;7276:6;7212:78;:::i;:::-;7204:86;;7102:195;;;;:::o;7303:419::-;7469:4;7507:2;7496:9;7492:18;7484:26;;7556:9;7550:4;7546:20;7542:1;7531:9;7527:17;7520:47;7584:131;7710:4;7584:131;:::i;:::-;7576:139;;7474:248;;;:::o;7728:419::-;7894:4;7932:2;7921:9;7917:18;7909:26;;7981:9;7975:4;7971:20;7967:1;7956:9;7952:17;7945:47;8009:131;8135:4;8009:131;:::i;:::-;8001:139;;7899:248;;;:::o;8153:419::-;8319:4;8357:2;8346:9;8342:18;8334:26;;8406:9;8400:4;8396:20;8392:1;8381:9;8377:17;8370:47;8434:131;8560:4;8434:131;:::i;:::-;8426:139;;8324:248;;;:::o;8578:419::-;8744:4;8782:2;8771:9;8767:18;8759:26;;8831:9;8825:4;8821:20;8817:1;8806:9;8802:17;8795:47;8859:131;8985:4;8859:131;:::i;:::-;8851:139;;8749:248;;;:::o;9003:419::-;9169:4;9207:2;9196:9;9192:18;9184:26;;9256:9;9250:4;9246:20;9242:1;9231:9;9227:17;9220:47;9284:131;9410:4;9284:131;:::i;:::-;9276:139;;9174:248;;;:::o;9428:419::-;9594:4;9632:2;9621:9;9617:18;9609:26;;9681:9;9675:4;9671:20;9667:1;9656:9;9652:17;9645:47;9709:131;9835:4;9709:131;:::i;:::-;9701:139;;9599:248;;;:::o;9853:419::-;10019:4;10057:2;10046:9;10042:18;10034:26;;10106:9;10100:4;10096:20;10092:1;10081:9;10077:17;10070:47;10134:131;10260:4;10134:131;:::i;:::-;10126:139;;10024:248;;;:::o;10278:419::-;10444:4;10482:2;10471:9;10467:18;10459:26;;10531:9;10525:4;10521:20;10517:1;10506:9;10502:17;10495:47;10559:131;10685:4;10559:131;:::i;:::-;10551:139;;10449:248;;;:::o;10703:419::-;10869:4;10907:2;10896:9;10892:18;10884:26;;10956:9;10950:4;10946:20;10942:1;10931:9;10927:17;10920:47;10984:131;11110:4;10984:131;:::i;:::-;10976:139;;10874:248;;;:::o;11128:419::-;11294:4;11332:2;11321:9;11317:18;11309:26;;11381:9;11375:4;11371:20;11367:1;11356:9;11352:17;11345:47;11409:131;11535:4;11409:131;:::i;:::-;11401:139;;11299:248;;;:::o;11553:419::-;11719:4;11757:2;11746:9;11742:18;11734:26;;11806:9;11800:4;11796:20;11792:1;11781:9;11777:17;11770:47;11834:131;11960:4;11834:131;:::i;:::-;11826:139;;11724:248;;;:::o;11978:222::-;12071:4;12109:2;12098:9;12094:18;12086:26;;12122:71;12190:1;12179:9;12175:17;12166:6;12122:71;:::i;:::-;12076:124;;;;:::o;12206:214::-;12295:4;12333:2;12322:9;12318:18;12310:26;;12346:67;12410:1;12399:9;12395:17;12386:6;12346:67;:::i;:::-;12300:120;;;;:::o;12426:99::-;12478:6;12512:5;12506:12;12496:22;;12485:40;;;:::o;12531:169::-;12615:11;12649:6;12644:3;12637:19;12689:4;12684:3;12680:14;12665:29;;12627:73;;;;:::o;12706:305::-;12746:3;12765:20;12783:1;12765:20;:::i;:::-;12760:25;;12799:20;12817:1;12799:20;:::i;:::-;12794:25;;12953:1;12885:66;12881:74;12878:1;12875:81;12872:2;;;12959:18;;:::i;:::-;12872:2;13003:1;13000;12996:9;12989:16;;12750:261;;;;:::o;13017:191::-;13057:4;13077:20;13095:1;13077:20;:::i;:::-;13072:25;;13111:20;13129:1;13111:20;:::i;:::-;13106:25;;13150:1;13147;13144:8;13141:2;;;13155:18;;:::i;:::-;13141:2;13200:1;13197;13193:9;13185:17;;13062:146;;;;:::o;13214:96::-;13251:7;13280:24;13298:5;13280:24;:::i;:::-;13269:35;;13259:51;;;:::o;13316:90::-;13350:7;13393:5;13386:13;13379:21;13368:32;;13358:48;;;:::o;13412:126::-;13449:7;13489:42;13482:5;13478:54;13467:65;;13457:81;;;:::o;13544:77::-;13581:7;13610:5;13599:16;;13589:32;;;:::o;13627:86::-;13662:7;13702:4;13695:5;13691:16;13680:27;;13670:43;;;:::o;13719:307::-;13787:1;13797:113;13811:6;13808:1;13805:13;13797:113;;;13896:1;13891:3;13887:11;13881:18;13877:1;13872:3;13868:11;13861:39;13833:2;13830:1;13826:10;13821:15;;13797:113;;;13928:6;13925:1;13922:13;13919:2;;;14008:1;13999:6;13994:3;13990:16;13983:27;13919:2;13768:258;;;;:::o;14032:320::-;14076:6;14113:1;14107:4;14103:12;14093:22;;14160:1;14154:4;14150:12;14181:18;14171:2;;14237:4;14229:6;14225:17;14215:27;;14171:2;14299;14291:6;14288:14;14268:18;14265:38;14262:2;;;14318:18;;:::i;:::-;14262:2;14083:269;;;;:::o;14358:180::-;14406:77;14403:1;14396:88;14503:4;14500:1;14493:15;14527:4;14524:1;14517:15;14544:180;14592:77;14589:1;14582:88;14689:4;14686:1;14679:15;14713:4;14710:1;14703:15;14730:102;14771:6;14822:2;14818:7;14813:2;14806:5;14802:14;14798:28;14788:38;;14778:54;;;:::o;14838:222::-;14978:34;14974:1;14966:6;14962:14;14955:58;15047:5;15042:2;15034:6;15030:15;15023:30;14944:116;:::o;15066:221::-;15206:34;15202:1;15194:6;15190:14;15183:58;15275:4;15270:2;15262:6;15258:15;15251:29;15172:115;:::o;15293:221::-;15433:34;15429:1;15421:6;15417:14;15410:58;15502:4;15497:2;15489:6;15485:15;15478:29;15399:115;:::o;15520:225::-;15660:34;15656:1;15648:6;15644:14;15637:58;15729:8;15724:2;15716:6;15712:15;15705:33;15626:119;:::o;15751:223::-;15891:34;15887:1;15879:6;15875:14;15868:58;15960:6;15955:2;15947:6;15943:15;15936:31;15857:117;:::o;15980:227::-;16120:34;16116:1;16108:6;16104:14;16097:58;16189:10;16184:2;16176:6;16172:15;16165:35;16086:121;:::o;16213:224::-;16353:34;16349:1;16341:6;16337:14;16330:58;16422:7;16417:2;16409:6;16405:15;16398:32;16319:118;:::o;16443:224::-;16583:34;16579:1;16571:6;16567:14;16560:58;16652:7;16647:2;16639:6;16635:15;16628:32;16549:118;:::o;16673:225::-;16813:34;16809:1;16801:6;16797:14;16790:58;16882:8;16877:2;16869:6;16865:15;16858:33;16779:119;:::o;16904:223::-;17044:34;17040:1;17032:6;17028:14;17021:58;17113:6;17108:2;17100:6;17096:15;17089:31;17010:117;:::o;17133:224::-;17273:34;17269:1;17261:6;17257:14;17250:58;17342:7;17337:2;17329:6;17325:15;17318:32;17239:118;:::o;17363:122::-;17436:24;17454:5;17436:24;:::i;:::-;17429:5;17426:35;17416:2;;17475:1;17472;17465:12;17416:2;17406:79;:::o;17491:122::-;17564:24;17582:5;17564:24;:::i;:::-;17557:5;17554:35;17544:2;;17603:1;17600;17593:12;17544:2;17534:79;:::o

Swarm Source

ipfs://3caf012367d258d51cd2340d48f60339b07189fe986ee60863c893c8fbf6033e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.