ETH Price: $2,916.95 (-3.74%)
Gas: 1 Gwei

Token

SuperRareSkyPepe420 (SRSP)
 

Overview

Max Total Supply

420,690,000,000,000 SRSP

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
0xpercs.eth
Balance
0.020748046875 SRSP

Value
$0.00
0x1D67954D8D1AC3a6cff9DB96cBABBE2522067EA9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SuperRareSkyPepe420

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-21
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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 {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

    /**
     * @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 default value returned by this function, unless
     * it's 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 18;
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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 += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: contracts/SuperRareSkyPepe.sol



pragma solidity ^0.8.0;



contract SuperRareSkyPepe420 is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;

    constructor(uint256 _totalSupply) ERC20("SuperRareSkyPepe420", "SRSP") {
        _mint(msg.sender, _totalSupply);
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"value","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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620029de380380620029de833981810160405281019062000037919062000628565b6040518060400160405280601381526020017f537570657252617265536b7950657065343230000000000000000000000000008152506040518060400160405280600481526020017f5352535000000000000000000000000000000000000000000000000000000000815250620000c3620000b76200010260201b60201c565b6200010a60201b60201c565b8160049081620000d49190620008ca565b508060059081620000e69190620008ca565b505050620000fb3382620001ce60201b60201c565b5062000bb0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002379062000a12565b60405180910390fd5b62000254600083836200033c60201b60201c565b806003600082825462000268919062000a63565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031c919062000aaf565b60405180910390a362000338600083836200057160201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200045f57620003a36200057660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004175750620003e86200057660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000b1c565b60405180910390fd5b6200056c565b600660009054906101000a900460ff168015620004c95750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200056b5760075481620004e9846200059f60201b620005cb1760201c565b620004f5919062000a63565b111580156200052857506008548162000519846200059f60201b620005cb1760201c565b62000525919062000a63565b10155b6200056a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005619062000b8e565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b6200060281620005ed565b81146200060e57600080fd5b50565b6000815190506200062281620005f7565b92915050565b600060208284031215620006415762000640620005e8565b5b6000620006518482850162000611565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006dc57607f821691505b602082108103620006f257620006f162000694565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200075c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200071d565b6200076886836200071d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007ab620007a56200079f84620005ed565b62000780565b620005ed565b9050919050565b6000819050919050565b620007c7836200078a565b620007df620007d682620007b2565b8484546200072a565b825550505050565b600090565b620007f6620007e7565b62000803818484620007bc565b505050565b5b818110156200082b576200081f600082620007ec565b60018101905062000809565b5050565b601f8211156200087a576200084481620006f8565b6200084f846200070d565b810160208510156200085f578190505b620008776200086e856200070d565b83018262000808565b50505b505050565b600082821c905092915050565b60006200089f600019846008026200087f565b1980831691505092915050565b6000620008ba83836200088c565b9150826002028217905092915050565b620008d5826200065a565b67ffffffffffffffff811115620008f157620008f062000665565b5b620008fd8254620006c3565b6200090a8282856200082f565b600060209050601f8311600181146200094257600084156200092d578287015190505b620009398582620008ac565b865550620009a9565b601f1984166200095286620006f8565b60005b828110156200097c5784890151825560018201915060208501945060208101905062000955565b868310156200099c578489015162000998601f8916826200088c565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009fa601f83620009b1565b915062000a0782620009c2565b602082019050919050565b6000602082019050818103600083015262000a2d81620009eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a7082620005ed565b915062000a7d83620005ed565b925082820190508082111562000a985762000a9762000a34565b5b92915050565b62000aa981620005ed565b82525050565b600060208201905062000ac6600083018462000a9e565b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000b04601683620009b1565b915062000b118262000acc565b602082019050919050565b6000602082019050818103600083015262000b378162000af5565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000b76600683620009b1565b915062000b838262000b3e565b602082019050919050565b6000602082019050818103600083015262000ba98162000b67565b9050919050565b611e1e8062000bc06000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610323578063a457c2d714610341578063a9059cbb14610371578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b806370a082311461028f578063715018a6146102bf578063860a32ec146102c957806389f9a1d3146102e75780638da5cb5b146103055761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633aa633aa1461023957806342966c681461025557806349bd5a5e146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631ab99e121461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611317565b60405180910390f35b610169600480360381019061016491906113d2565b61047f565b604051610176919061142d565b60405180910390f35b6101876104a2565b6040516101949190611457565b60405180910390f35b6101a56104ac565b6040516101b29190611457565b60405180910390f35b6101d560048036038101906101d09190611472565b6104b2565b6040516101e2919061142d565b60405180910390f35b6101f36104e1565b60405161020091906114e1565b60405180910390f35b610223600480360381019061021e91906113d2565b6104ea565b604051610230919061142d565b60405180910390f35b610253600480360381019061024e9190611528565b610521565b005b61026f600480360381019061026a919061158f565b610598565b005b6102796105a5565b60405161028691906115cb565b60405180910390f35b6102a960048036038101906102a491906115e6565b6105cb565b6040516102b69190611457565b60405180910390f35b6102c7610614565b005b6102d1610628565b6040516102de919061142d565b60405180910390f35b6102ef61063b565b6040516102fc9190611457565b60405180910390f35b61030d610641565b60405161031a91906115cb565b60405180910390f35b61032b61066a565b6040516103389190611317565b60405180910390f35b61035b600480360381019061035691906113d2565b6106fc565b604051610368919061142d565b60405180910390f35b61038b600480360381019061038691906113d2565b610773565b604051610398919061142d565b60405180910390f35b6103bb60048036038101906103b69190611613565b610796565b6040516103c89190611457565b60405180910390f35b6103eb60048036038101906103e691906115e6565b61081d565b005b6060600480546103fc90611682565b80601f016020809104026020016040519081016040528092919081815260200182805461042890611682565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b60008061048a6108a0565b90506104978185856108a8565b600191505092915050565b6000600354905090565b60085481565b6000806104bd6108a0565b90506104ca858285610a71565b6104d5858585610afd565b60019150509392505050565b60006012905090565b6000806104f56108a0565b90506105168185856105078589610796565b61051191906116e2565b6108a8565b600191505092915050565b610529610d76565b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6105a23382610df4565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61061c610d76565b6106266000610fc3565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461067990611682565b80601f01602080910402602001604051908101604052809291908181526020018280546106a590611682565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b6000806107076108a0565b905060006107158286610796565b90508381101561075a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075190611788565b60405180910390fd5b61076782868684036108a8565b60019250505092915050565b60008061077e6108a0565b905061078b818585610afd565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610825610d76565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b9061181a565b60405180910390fd5b61089d81610fc3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e906118ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d9061193e565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a649190611457565b60405180910390a3505050565b6000610a7d8484610796565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610af75781811015610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906119aa565b60405180910390fd5b610af684848484036108a8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6390611a3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290611ace565b60405180910390fd5b610be6838383611087565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6490611b60565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5d9190611457565b60405180910390a3610d70848484611282565b50505050565b610d7e6108a0565b73ffffffffffffffffffffffffffffffffffffffff16610d9c610641565b73ffffffffffffffffffffffffffffffffffffffff1614610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990611bcc565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90611c5e565b60405180910390fd5b610e6f82600083611087565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611cf0565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610faa9190611457565b60405180910390a3610fbe83600084611282565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611194576110e5610641565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111505750611121610641565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690611d5c565b60405180910390fd5b61127d565b600660009054906101000a900460ff1680156111fd5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561127c576007548161120f846105cb565b61121991906116e2565b1115801561123c57506008548161122f846105cb565b61123991906116e2565b10155b61127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290611dc8565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c15780820151818401526020810190506112a6565b60008484015250505050565b6000601f19601f8301169050919050565b60006112e982611287565b6112f38185611292565b93506113038185602086016112a3565b61130c816112cd565b840191505092915050565b6000602082019050818103600083015261133181846112de565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113698261133e565b9050919050565b6113798161135e565b811461138457600080fd5b50565b60008135905061139681611370565b92915050565b6000819050919050565b6113af8161139c565b81146113ba57600080fd5b50565b6000813590506113cc816113a6565b92915050565b600080604083850312156113e9576113e8611339565b5b60006113f785828601611387565b9250506020611408858286016113bd565b9150509250929050565b60008115159050919050565b61142781611412565b82525050565b6000602082019050611442600083018461141e565b92915050565b6114518161139c565b82525050565b600060208201905061146c6000830184611448565b92915050565b60008060006060848603121561148b5761148a611339565b5b600061149986828701611387565b93505060206114aa86828701611387565b92505060406114bb868287016113bd565b9150509250925092565b600060ff82169050919050565b6114db816114c5565b82525050565b60006020820190506114f660008301846114d2565b92915050565b61150581611412565b811461151057600080fd5b50565b600081359050611522816114fc565b92915050565b6000806000806080858703121561154257611541611339565b5b600061155087828801611513565b945050602061156187828801611387565b9350506040611572878288016113bd565b9250506060611583878288016113bd565b91505092959194509250565b6000602082840312156115a5576115a4611339565b5b60006115b3848285016113bd565b91505092915050565b6115c58161135e565b82525050565b60006020820190506115e060008301846115bc565b92915050565b6000602082840312156115fc576115fb611339565b5b600061160a84828501611387565b91505092915050565b6000806040838503121561162a57611629611339565b5b600061163885828601611387565b925050602061164985828601611387565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061169a57607f821691505b6020821081036116ad576116ac611653565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116ed8261139c565b91506116f88361139c565b92508282019050808211156117105761170f6116b3565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611772602583611292565b915061177d82611716565b604082019050919050565b600060208201905081810360008301526117a181611765565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611804602683611292565b915061180f826117a8565b604082019050919050565b60006020820190508181036000830152611833816117f7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611896602483611292565b91506118a18261183a565b604082019050919050565b600060208201905081810360008301526118c581611889565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611928602283611292565b9150611933826118cc565b604082019050919050565b600060208201905081810360008301526119578161191b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611994601d83611292565b915061199f8261195e565b602082019050919050565b600060208201905081810360008301526119c381611987565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a26602583611292565b9150611a31826119ca565b604082019050919050565b60006020820190508181036000830152611a5581611a19565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab8602383611292565b9150611ac382611a5c565b604082019050919050565b60006020820190508181036000830152611ae781611aab565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b4a602683611292565b9150611b5582611aee565b604082019050919050565b60006020820190508181036000830152611b7981611b3d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bb6602083611292565b9150611bc182611b80565b602082019050919050565b60006020820190508181036000830152611be581611ba9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c48602183611292565b9150611c5382611bec565b604082019050919050565b60006020820190508181036000830152611c7781611c3b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cda602283611292565b9150611ce582611c7e565b604082019050919050565b60006020820190508181036000830152611d0981611ccd565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611d46601683611292565b9150611d5182611d10565b602082019050919050565b60006020820190508181036000830152611d7581611d39565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000611db2600683611292565b9150611dbd82611d7c565b602082019050919050565b60006020820190508181036000830152611de181611da5565b905091905056fea2646970667358221220ecea726da6ec74a0a42586960def9c462f1ec8e6c52fa2d9ba9136100100bbee64736f6c6343000812003300000000000000000000000000000000000014bddab3e51a57cff87a50000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610323578063a457c2d714610341578063a9059cbb14610371578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b806370a082311461028f578063715018a6146102bf578063860a32ec146102c957806389f9a1d3146102e75780638da5cb5b146103055761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633aa633aa1461023957806342966c681461025557806349bd5a5e146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631ab99e121461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611317565b60405180910390f35b610169600480360381019061016491906113d2565b61047f565b604051610176919061142d565b60405180910390f35b6101876104a2565b6040516101949190611457565b60405180910390f35b6101a56104ac565b6040516101b29190611457565b60405180910390f35b6101d560048036038101906101d09190611472565b6104b2565b6040516101e2919061142d565b60405180910390f35b6101f36104e1565b60405161020091906114e1565b60405180910390f35b610223600480360381019061021e91906113d2565b6104ea565b604051610230919061142d565b60405180910390f35b610253600480360381019061024e9190611528565b610521565b005b61026f600480360381019061026a919061158f565b610598565b005b6102796105a5565b60405161028691906115cb565b60405180910390f35b6102a960048036038101906102a491906115e6565b6105cb565b6040516102b69190611457565b60405180910390f35b6102c7610614565b005b6102d1610628565b6040516102de919061142d565b60405180910390f35b6102ef61063b565b6040516102fc9190611457565b60405180910390f35b61030d610641565b60405161031a91906115cb565b60405180910390f35b61032b61066a565b6040516103389190611317565b60405180910390f35b61035b600480360381019061035691906113d2565b6106fc565b604051610368919061142d565b60405180910390f35b61038b600480360381019061038691906113d2565b610773565b604051610398919061142d565b60405180910390f35b6103bb60048036038101906103b69190611613565b610796565b6040516103c89190611457565b60405180910390f35b6103eb60048036038101906103e691906115e6565b61081d565b005b6060600480546103fc90611682565b80601f016020809104026020016040519081016040528092919081815260200182805461042890611682565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b60008061048a6108a0565b90506104978185856108a8565b600191505092915050565b6000600354905090565b60085481565b6000806104bd6108a0565b90506104ca858285610a71565b6104d5858585610afd565b60019150509392505050565b60006012905090565b6000806104f56108a0565b90506105168185856105078589610796565b61051191906116e2565b6108a8565b600191505092915050565b610529610d76565b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6105a23382610df4565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61061c610d76565b6106266000610fc3565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461067990611682565b80601f01602080910402602001604051908101604052809291908181526020018280546106a590611682565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b6000806107076108a0565b905060006107158286610796565b90508381101561075a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075190611788565b60405180910390fd5b61076782868684036108a8565b60019250505092915050565b60008061077e6108a0565b905061078b818585610afd565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610825610d76565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b9061181a565b60405180910390fd5b61089d81610fc3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e906118ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d9061193e565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a649190611457565b60405180910390a3505050565b6000610a7d8484610796565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610af75781811015610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906119aa565b60405180910390fd5b610af684848484036108a8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6390611a3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290611ace565b60405180910390fd5b610be6838383611087565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6490611b60565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5d9190611457565b60405180910390a3610d70848484611282565b50505050565b610d7e6108a0565b73ffffffffffffffffffffffffffffffffffffffff16610d9c610641565b73ffffffffffffffffffffffffffffffffffffffff1614610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990611bcc565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90611c5e565b60405180910390fd5b610e6f82600083611087565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611cf0565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610faa9190611457565b60405180910390a3610fbe83600084611282565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611194576110e5610641565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111505750611121610641565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690611d5c565b60405180910390fd5b61127d565b600660009054906101000a900460ff1680156111fd5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561127c576007548161120f846105cb565b61121991906116e2565b1115801561123c57506008548161122f846105cb565b61123991906116e2565b10155b61127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290611dc8565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c15780820151818401526020810190506112a6565b60008484015250505050565b6000601f19601f8301169050919050565b60006112e982611287565b6112f38185611292565b93506113038185602086016112a3565b61130c816112cd565b840191505092915050565b6000602082019050818103600083015261133181846112de565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113698261133e565b9050919050565b6113798161135e565b811461138457600080fd5b50565b60008135905061139681611370565b92915050565b6000819050919050565b6113af8161139c565b81146113ba57600080fd5b50565b6000813590506113cc816113a6565b92915050565b600080604083850312156113e9576113e8611339565b5b60006113f785828601611387565b9250506020611408858286016113bd565b9150509250929050565b60008115159050919050565b61142781611412565b82525050565b6000602082019050611442600083018461141e565b92915050565b6114518161139c565b82525050565b600060208201905061146c6000830184611448565b92915050565b60008060006060848603121561148b5761148a611339565b5b600061149986828701611387565b93505060206114aa86828701611387565b92505060406114bb868287016113bd565b9150509250925092565b600060ff82169050919050565b6114db816114c5565b82525050565b60006020820190506114f660008301846114d2565b92915050565b61150581611412565b811461151057600080fd5b50565b600081359050611522816114fc565b92915050565b6000806000806080858703121561154257611541611339565b5b600061155087828801611513565b945050602061156187828801611387565b9350506040611572878288016113bd565b9250506060611583878288016113bd565b91505092959194509250565b6000602082840312156115a5576115a4611339565b5b60006115b3848285016113bd565b91505092915050565b6115c58161135e565b82525050565b60006020820190506115e060008301846115bc565b92915050565b6000602082840312156115fc576115fb611339565b5b600061160a84828501611387565b91505092915050565b6000806040838503121561162a57611629611339565b5b600061163885828601611387565b925050602061164985828601611387565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061169a57607f821691505b6020821081036116ad576116ac611653565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116ed8261139c565b91506116f88361139c565b92508282019050808211156117105761170f6116b3565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611772602583611292565b915061177d82611716565b604082019050919050565b600060208201905081810360008301526117a181611765565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611804602683611292565b915061180f826117a8565b604082019050919050565b60006020820190508181036000830152611833816117f7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611896602483611292565b91506118a18261183a565b604082019050919050565b600060208201905081810360008301526118c581611889565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611928602283611292565b9150611933826118cc565b604082019050919050565b600060208201905081810360008301526119578161191b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611994601d83611292565b915061199f8261195e565b602082019050919050565b600060208201905081810360008301526119c381611987565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a26602583611292565b9150611a31826119ca565b604082019050919050565b60006020820190508181036000830152611a5581611a19565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab8602383611292565b9150611ac382611a5c565b604082019050919050565b60006020820190508181036000830152611ae781611aab565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b4a602683611292565b9150611b5582611aee565b604082019050919050565b60006020820190508181036000830152611b7981611b3d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bb6602083611292565b9150611bc182611b80565b602082019050919050565b60006020820190508181036000830152611be581611ba9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c48602183611292565b9150611c5382611bec565b604082019050919050565b60006020820190508181036000830152611c7781611c3b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cda602283611292565b9150611ce582611c7e565b604082019050919050565b60006020820190508181036000830152611d0981611ccd565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611d46601683611292565b9150611d5182611d10565b602082019050919050565b60006020820190508181036000830152611d7581611d39565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000611db2600683611292565b9150611dbd82611d7c565b602082019050919050565b60006020820190508181036000830152611de181611da5565b905091905056fea2646970667358221220ecea726da6ec74a0a42586960def9c462f1ec8e6c52fa2d9ba9136100100bbee64736f6c63430008120033

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

00000000000000000000000000000000000014bddab3e51a57cff87a50000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000


Deployed Bytecode Sourcemap

20418:1217:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11707:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10476:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20536:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12488:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10318:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13158:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20740:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21551:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20574:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10647:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2802:103;;;:::i;:::-;;20472:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20498:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2161:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9566:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13899:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10980:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11236:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3060:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9347:100;9401:13;9434:5;9427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;:::o;11707:201::-;11790:4;11807:13;11823:12;:10;:12::i;:::-;11807:28;;11846:32;11855:5;11862:7;11871:6;11846:8;:32::i;:::-;11896:4;11889:11;;;11707:201;;;;:::o;10476:108::-;10537:7;10564:12;;10557:19;;10476:108;:::o;20536:31::-;;;;:::o;12488:261::-;12585:4;12602:15;12620:12;:10;:12::i;:::-;12602:30;;12643:38;12659:4;12665:7;12674:6;12643:15;:38::i;:::-;12692:27;12702:4;12708:2;12712:6;12692:9;:27::i;:::-;12737:4;12730:11;;;12488:261;;;;;:::o;10318:93::-;10376:5;10401:2;10394:9;;10318:93;:::o;13158:238::-;13246:4;13263:13;13279:12;:10;:12::i;:::-;13263:28;;13302:64;13311:5;13318:7;13355:10;13327:25;13337:5;13344:7;13327:9;:25::i;:::-;:38;;;;:::i;:::-;13302:8;:64::i;:::-;13384:4;13377:11;;;13158:238;;;;:::o;20740:301::-;2047:13;:11;:13::i;:::-;20890:8:::1;20880:7;;:18;;;;;;;;;;;;;;;;;;20925:14;20909:13;;:30;;;;;;;;;;;;;;;;;;20969:17;20950:16;:36;;;;21016:17;20997:16;:36;;;;20740:301:::0;;;;:::o;21551:81::-;21600:24;21606:10;21618:5;21600;:24::i;:::-;21551:81;:::o;20574:28::-;;;;;;;;;;;;;:::o;10647:127::-;10721:7;10748:9;:18;10758:7;10748:18;;;;;;;;;;;;;;;;10741:25;;10647:127;;;:::o;2802:103::-;2047:13;:11;:13::i;:::-;2867:30:::1;2894:1;2867:18;:30::i;:::-;2802:103::o:0;20472:19::-;;;;;;;;;;;;;:::o;20498:31::-;;;;:::o;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;9566:104::-;9622:13;9655:7;9648:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9566:104;:::o;13899:436::-;13992:4;14009:13;14025:12;:10;:12::i;:::-;14009:28;;14048:24;14075:25;14085:5;14092:7;14075:9;:25::i;:::-;14048:52;;14139:15;14119:16;:35;;14111:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14232:60;14241:5;14248:7;14276:15;14257:16;:34;14232:8;:60::i;:::-;14323:4;14316:11;;;;13899:436;;;;:::o;10980:193::-;11059:4;11076:13;11092:12;:10;:12::i;:::-;11076:28;;11115;11125:5;11132:2;11136:6;11115:9;:28::i;:::-;11161:4;11154:11;;;10980:193;;;;:::o;11236:151::-;11325:7;11352:11;:18;11364:5;11352:18;;;;;;;;;;;;;;;:27;11371:7;11352:27;;;;;;;;;;;;;;;;11345:34;;11236:151;;;;:::o;3060:201::-;2047:13;:11;:13::i;:::-;3169:1:::1;3149:22;;:8;:22;;::::0;3141:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3225:28;3244:8;3225:18;:28::i;:::-;3060:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;17892:346::-;18011:1;17994:19;;:5;:19;;;17986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18092:1;18073:21;;:7;:21;;;18065:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18176:6;18146:11;:18;18158:5;18146:18;;;;;;;;;;;;;;;:27;18165:7;18146:27;;;;;;;;;;;;;;;:36;;;;18214:7;18198:32;;18207:5;18198:32;;;18223:6;18198:32;;;;;;:::i;:::-;;;;;;;;17892:346;;;:::o;18529:419::-;18630:24;18657:25;18667:5;18674:7;18657:9;:25::i;:::-;18630:52;;18717:17;18697:16;:37;18693:248;;18779:6;18759:16;:26;;18751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18863:51;18872:5;18879:7;18907:6;18888:16;:25;18863:8;:51::i;:::-;18693:248;18619:329;18529:419;;;:::o;14805:806::-;14918:1;14902:18;;:4;:18;;;14894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14995:1;14981:16;;:2;:16;;;14973:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15050:38;15071:4;15077:2;15081:6;15050:20;:38::i;:::-;15101:19;15123:9;:15;15133:4;15123:15;;;;;;;;;;;;;;;;15101:37;;15172:6;15157:11;:21;;15149:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15289:6;15275:11;:20;15257:9;:15;15267:4;15257:15;;;;;;;;;;;;;;;:38;;;;15492:6;15475:9;:13;15485:2;15475:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15542:2;15527:26;;15536:4;15527:26;;;15546:6;15527:26;;;;;;:::i;:::-;;;;;;;;15566:37;15586:4;15592:2;15596:6;15566:19;:37::i;:::-;14883:728;14805:806;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;16779:675::-;16882:1;16863:21;;:7;:21;;;16855:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16935:49;16956:7;16973:1;16977:6;16935:20;:49::i;:::-;16997:22;17022:9;:18;17032:7;17022:18;;;;;;;;;;;;;;;;16997:43;;17077:6;17059:14;:24;;17051:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17196:6;17179:14;:23;17158:9;:18;17168:7;17158:18;;;;;;;;;;;;;;;:44;;;;17313:6;17297:12;;:22;;;;;;;;;;;17374:1;17348:37;;17357:7;17348:37;;;17378:6;17348:37;;;;;;:::i;:::-;;;;;;;;17398:48;17418:7;17435:1;17439:6;17398:19;:48::i;:::-;16844:610;16779:675;;:::o;3421:191::-;3495:16;3514:6;;;;;;;;;;;3495:25;;3540:8;3531:6;;:17;;;;;;;;;;;;;;;;;;3595:8;3564:40;;3585:8;3564:40;;;;;;;;;;;;3484:128;3421:191;:::o;21049:494::-;21221:1;21196:27;;:13;;;;;;;;;;;:27;;;21192:148;;21256:7;:5;:7::i;:::-;21248:15;;:4;:15;;;:32;;;;21273:7;:5;:7::i;:::-;21267:13;;:2;:13;;;21248:32;21240:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21322:7;;21192:148;21356:7;;;;;;;;;;;:32;;;;;21375:13;;;;;;;;;;;21367:21;;:4;:21;;;21356:32;21352:184;;;21445:16;;21435:6;21413:19;21429:2;21413:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;21497:16;;21487:6;21465:19;21481:2;21465:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21413:100;21405:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;21352:184;21049:494;;;;:::o;20243:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:116::-;4923:21;4938:5;4923:21;:::i;:::-;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;4903:60;4853:116;:::o;4975:133::-;5018:5;5056:6;5043:20;5034:29;;5072:30;5096:5;5072:30;:::i;:::-;4975:133;;;;:::o;5114:759::-;5197:6;5205;5213;5221;5270:3;5258:9;5249:7;5245:23;5241:33;5238:120;;;5277:79;;:::i;:::-;5238:120;5397:1;5422:50;5464:7;5455:6;5444:9;5440:22;5422:50;:::i;:::-;5412:60;;5368:114;5521:2;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5492:118;5649:2;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5620:118;5777:2;5803:53;5848:7;5839:6;5828:9;5824:22;5803:53;:::i;:::-;5793:63;;5748:118;5114:759;;;;;;;:::o;5879:329::-;5938:6;5987:2;5975:9;5966:7;5962:23;5958:32;5955:119;;;5993:79;;:::i;:::-;5955:119;6113:1;6138:53;6183:7;6174:6;6163:9;6159:22;6138:53;:::i;:::-;6128:63;;6084:117;5879:329;;;;:::o;6214:118::-;6301:24;6319:5;6301:24;:::i;:::-;6296:3;6289:37;6214:118;;:::o;6338:222::-;6431:4;6469:2;6458:9;6454:18;6446:26;;6482:71;6550:1;6539:9;6535:17;6526:6;6482:71;:::i;:::-;6338:222;;;;:::o;6566:329::-;6625:6;6674:2;6662:9;6653:7;6649:23;6645:32;6642:119;;;6680:79;;:::i;:::-;6642:119;6800:1;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6771:117;6566:329;;;;:::o;6901:474::-;6969:6;6977;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;6901:474;;;;;:::o;7381:180::-;7429:77;7426:1;7419:88;7526:4;7523:1;7516:15;7550:4;7547:1;7540:15;7567:320;7611:6;7648:1;7642:4;7638:12;7628:22;;7695:1;7689:4;7685:12;7716:18;7706:81;;7772:4;7764:6;7760:17;7750:27;;7706:81;7834:2;7826:6;7823:14;7803:18;7800:38;7797:84;;7853:18;;:::i;:::-;7797:84;7618:269;7567:320;;;:::o;7893:180::-;7941:77;7938:1;7931:88;8038:4;8035:1;8028:15;8062:4;8059:1;8052:15;8079:191;8119:3;8138:20;8156:1;8138:20;:::i;:::-;8133:25;;8172:20;8190:1;8172:20;:::i;:::-;8167:25;;8215:1;8212;8208:9;8201:16;;8236:3;8233:1;8230:10;8227:36;;;8243:18;;:::i;:::-;8227:36;8079:191;;;;:::o;8276:224::-;8416:34;8412:1;8404:6;8400:14;8393:58;8485:7;8480:2;8472:6;8468:15;8461:32;8276:224;:::o;8506:366::-;8648:3;8669:67;8733:2;8728:3;8669:67;:::i;:::-;8662:74;;8745:93;8834:3;8745:93;:::i;:::-;8863:2;8858:3;8854:12;8847:19;;8506:366;;;:::o;8878:419::-;9044:4;9082:2;9071:9;9067:18;9059:26;;9131:9;9125:4;9121:20;9117:1;9106:9;9102:17;9095:47;9159:131;9285:4;9159:131;:::i;:::-;9151:139;;8878:419;;;:::o;9303:225::-;9443:34;9439:1;9431:6;9427:14;9420:58;9512:8;9507:2;9499:6;9495:15;9488:33;9303:225;:::o;9534:366::-;9676:3;9697:67;9761:2;9756:3;9697:67;:::i;:::-;9690:74;;9773:93;9862:3;9773:93;:::i;:::-;9891:2;9886:3;9882:12;9875:19;;9534:366;;;:::o;9906:419::-;10072:4;10110:2;10099:9;10095:18;10087:26;;10159:9;10153:4;10149:20;10145:1;10134:9;10130:17;10123:47;10187:131;10313:4;10187:131;:::i;:::-;10179:139;;9906:419;;;:::o;10331:223::-;10471:34;10467:1;10459:6;10455:14;10448:58;10540:6;10535:2;10527:6;10523:15;10516:31;10331:223;:::o;10560:366::-;10702:3;10723:67;10787:2;10782:3;10723:67;:::i;:::-;10716:74;;10799:93;10888:3;10799:93;:::i;:::-;10917:2;10912:3;10908:12;10901:19;;10560:366;;;:::o;10932:419::-;11098:4;11136:2;11125:9;11121:18;11113:26;;11185:9;11179:4;11175:20;11171:1;11160:9;11156:17;11149:47;11213:131;11339:4;11213:131;:::i;:::-;11205:139;;10932:419;;;:::o;11357:221::-;11497:34;11493:1;11485:6;11481:14;11474:58;11566:4;11561:2;11553:6;11549:15;11542:29;11357:221;:::o;11584:366::-;11726:3;11747:67;11811:2;11806:3;11747:67;:::i;:::-;11740:74;;11823:93;11912:3;11823:93;:::i;:::-;11941:2;11936:3;11932:12;11925:19;;11584:366;;;:::o;11956:419::-;12122:4;12160:2;12149:9;12145:18;12137:26;;12209:9;12203:4;12199:20;12195:1;12184:9;12180:17;12173:47;12237:131;12363:4;12237:131;:::i;:::-;12229:139;;11956:419;;;:::o;12381:179::-;12521:31;12517:1;12509:6;12505:14;12498:55;12381:179;:::o;12566:366::-;12708:3;12729:67;12793:2;12788:3;12729:67;:::i;:::-;12722:74;;12805:93;12894:3;12805:93;:::i;:::-;12923:2;12918:3;12914:12;12907:19;;12566:366;;;:::o;12938:419::-;13104:4;13142:2;13131:9;13127:18;13119:26;;13191:9;13185:4;13181:20;13177:1;13166:9;13162:17;13155:47;13219:131;13345:4;13219:131;:::i;:::-;13211:139;;12938:419;;;:::o;13363:224::-;13503:34;13499:1;13491:6;13487:14;13480:58;13572:7;13567:2;13559:6;13555:15;13548:32;13363:224;:::o;13593:366::-;13735:3;13756:67;13820:2;13815:3;13756:67;:::i;:::-;13749:74;;13832:93;13921:3;13832:93;:::i;:::-;13950:2;13945:3;13941:12;13934:19;;13593:366;;;:::o;13965:419::-;14131:4;14169:2;14158:9;14154:18;14146:26;;14218:9;14212:4;14208:20;14204:1;14193:9;14189:17;14182:47;14246:131;14372:4;14246:131;:::i;:::-;14238:139;;13965:419;;;:::o;14390:222::-;14530:34;14526:1;14518:6;14514:14;14507:58;14599:5;14594:2;14586:6;14582:15;14575:30;14390:222;:::o;14618:366::-;14760:3;14781:67;14845:2;14840:3;14781:67;:::i;:::-;14774:74;;14857:93;14946:3;14857:93;:::i;:::-;14975:2;14970:3;14966:12;14959:19;;14618:366;;;:::o;14990:419::-;15156:4;15194:2;15183:9;15179:18;15171:26;;15243:9;15237:4;15233:20;15229:1;15218:9;15214:17;15207:47;15271:131;15397:4;15271:131;:::i;:::-;15263:139;;14990:419;;;:::o;15415:225::-;15555:34;15551:1;15543:6;15539:14;15532:58;15624:8;15619:2;15611:6;15607:15;15600:33;15415:225;:::o;15646:366::-;15788:3;15809:67;15873:2;15868:3;15809:67;:::i;:::-;15802:74;;15885:93;15974:3;15885:93;:::i;:::-;16003:2;15998:3;15994:12;15987:19;;15646:366;;;:::o;16018:419::-;16184:4;16222:2;16211:9;16207:18;16199:26;;16271:9;16265:4;16261:20;16257:1;16246:9;16242:17;16235:47;16299:131;16425:4;16299:131;:::i;:::-;16291:139;;16018:419;;;:::o;16443:182::-;16583:34;16579:1;16571:6;16567:14;16560:58;16443:182;:::o;16631:366::-;16773:3;16794:67;16858:2;16853:3;16794:67;:::i;:::-;16787:74;;16870:93;16959:3;16870:93;:::i;:::-;16988:2;16983:3;16979:12;16972:19;;16631:366;;;:::o;17003:419::-;17169:4;17207:2;17196:9;17192:18;17184:26;;17256:9;17250:4;17246:20;17242:1;17231:9;17227:17;17220:47;17284:131;17410:4;17284:131;:::i;:::-;17276:139;;17003:419;;;:::o;17428:220::-;17568:34;17564:1;17556:6;17552:14;17545:58;17637:3;17632:2;17624:6;17620:15;17613:28;17428:220;:::o;17654:366::-;17796:3;17817:67;17881:2;17876:3;17817:67;:::i;:::-;17810:74;;17893:93;17982:3;17893:93;:::i;:::-;18011:2;18006:3;18002:12;17995:19;;17654:366;;;:::o;18026:419::-;18192:4;18230:2;18219:9;18215:18;18207:26;;18279:9;18273:4;18269:20;18265:1;18254:9;18250:17;18243:47;18307:131;18433:4;18307:131;:::i;:::-;18299:139;;18026:419;;;:::o;18451:221::-;18591:34;18587:1;18579:6;18575:14;18568:58;18660:4;18655:2;18647:6;18643:15;18636:29;18451:221;:::o;18678:366::-;18820:3;18841:67;18905:2;18900:3;18841:67;:::i;:::-;18834:74;;18917:93;19006:3;18917:93;:::i;:::-;19035:2;19030:3;19026:12;19019:19;;18678:366;;;:::o;19050:419::-;19216:4;19254:2;19243:9;19239:18;19231:26;;19303:9;19297:4;19293:20;19289:1;19278:9;19274:17;19267:47;19331:131;19457:4;19331:131;:::i;:::-;19323:139;;19050:419;;;:::o;19475:172::-;19615:24;19611:1;19603:6;19599:14;19592:48;19475:172;:::o;19653:366::-;19795:3;19816:67;19880:2;19875:3;19816:67;:::i;:::-;19809:74;;19892:93;19981:3;19892:93;:::i;:::-;20010:2;20005:3;20001:12;19994:19;;19653:366;;;:::o;20025:419::-;20191:4;20229:2;20218:9;20214:18;20206:26;;20278:9;20272:4;20268:20;20264:1;20253:9;20249:17;20242:47;20306:131;20432:4;20306:131;:::i;:::-;20298:139;;20025:419;;;:::o;20450:156::-;20590:8;20586:1;20578:6;20574:14;20567:32;20450:156;:::o;20612:365::-;20754:3;20775:66;20839:1;20834:3;20775:66;:::i;:::-;20768:73;;20850:93;20939:3;20850:93;:::i;:::-;20968:2;20963:3;20959:12;20952:19;;20612:365;;;:::o;20983:419::-;21149:4;21187:2;21176:9;21172:18;21164:26;;21236:9;21230:4;21226:20;21222:1;21211:9;21207:17;21200:47;21264:131;21390:4;21264:131;:::i;:::-;21256:139;;20983:419;;;:::o

Swarm Source

ipfs://ecea726da6ec74a0a42586960def9c462f1ec8e6c52fa2d9ba9136100100bbee
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.