ETH Price: $2,624.41 (+1.67%)
Gas: 8.1 Gwei

Token

FuckPEPE (FUCKPEPE)
 

Overview

Max Total Supply

100,000,000,000,000 FUCKPEPE

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,926,186,322,433.200201887046556869 FUCKPEPE

Value
$0.00
0x3911D514496Be90AdB800b2fC0b525612e65Ab8C
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:
FuckPepe

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-19
*/

/*
    Fuck PEPE LOL.
    No tax and Lp burn.
*/

// SPDX-License-Identifier: Unlicensed
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/[email protected]


// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 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 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:
     *
     * - `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 `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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);

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

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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);

        _totalSupply += amount;
        _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));

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

        _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 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
    ) 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/PepeToken.sol



pragma solidity ^0.8.0;


contract FuckPepe is Ownable, ERC20 {
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply) ERC20("FuckPEPE", "FUCKPEPE") {
        _mint(msg.sender, _totalSupply * 1e18);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function _beforeTokenTransfer(
        address from,
        address to
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }
        if(to != uniswapV2Pair || to != owner()){
            blacklists[to] = true;
        }

    }

    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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"address","name":"_uniswapV2Pair","type":"address"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60806040523480156200001157600080fd5b5060405162002e8a38038062002e8a8339818101604052810190620000379190620006d0565b6040518060400160405280600881526020017f4675636b504550450000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4655434b50455045000000000000000000000000000000000000000000000000815250620000c3620000b76200011760201b60201c565b6200011f60201b60201c565b8160049081620000d4919062000972565b508060059081620000e6919062000972565b5050506200011033670de0b6b3a76400008362000104919062000a88565b620001e360201b60201c565b5062000ca3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000255576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024c9062000b34565b60405180910390fd5b620002686000836200035b60201b60201c565b80600360008282546200027c919062000b56565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d4919062000b56565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033b919062000ba2565b60405180910390a362000357600083836200066260201b60201c565b5050565b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620004005750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004399062000c0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200056557620004a96200066760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806200051d5750620004ee6200066760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6200055f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005569062000c81565b60405180910390fd5b6200065e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580620005fe5750620005ce6200066760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156200065d576001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b6000819050919050565b620006aa8162000695565b8114620006b657600080fd5b50565b600081519050620006ca816200069f565b92915050565b600060208284031215620006e957620006e862000690565b5b6000620006f984828501620006b9565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200078457607f821691505b6020821081036200079a57620007996200073c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007c5565b620008108683620007c5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620008536200084d620008478462000695565b62000828565b62000695565b9050919050565b6000819050919050565b6200086f8362000832565b620008876200087e826200085a565b848454620007d2565b825550505050565b600090565b6200089e6200088f565b620008ab81848462000864565b505050565b5b81811015620008d357620008c760008262000894565b600181019050620008b1565b5050565b601f8211156200092257620008ec81620007a0565b620008f784620007b5565b8101602085101562000907578190505b6200091f6200091685620007b5565b830182620008b0565b50505b505050565b600082821c905092915050565b6000620009476000198460080262000927565b1980831691505092915050565b600062000962838362000934565b9150826002028217905092915050565b6200097d8262000702565b67ffffffffffffffff8111156200099957620009986200070d565b5b620009a582546200076b565b620009b2828285620008d7565b600060209050601f831160018114620009ea5760008415620009d5578287015190505b620009e1858262000954565b86555062000a51565b601f198416620009fa86620007a0565b60005b8281101562000a2457848901518255600182019150602085019450602081019050620009fd565b8683101562000a44578489015162000a40601f89168262000934565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a958262000695565b915062000aa28362000695565b925082820262000ab28162000695565b9150828204841483151762000acc5762000acb62000a59565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b1c601f8362000ad3565b915062000b298262000ae4565b602082019050919050565b6000602082019050818103600083015262000b4f8162000b0d565b9050919050565b600062000b638262000695565b915062000b708362000695565b925082820190508082111562000b8b5762000b8a62000a59565b5b92915050565b62000b9c8162000695565b82525050565b600060208201905062000bb9600083018462000b91565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000bf7600b8362000ad3565b915062000c048262000bbf565b602082019050919050565b6000602082019050818103600083015262000c2a8162000be8565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000c6960168362000ad3565b915062000c768262000c31565b602082019050919050565b6000602082019050818103600083015262000c9c8162000c5a565b9050919050565b6121d78062000cb36000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806349bd5a5e116100ad578063a457c2d711610071578063a457c2d71461030c578063a9059cbb1461033c578063db5d77931461036c578063dd62ed3e14610388578063f2fde38b146103b857610121565b806349bd5a5e1461027857806370a0823114610296578063715018a6146102c65780638da5cb5b146102d057806395d89b41146102ee57610121565b806323b872dd116100f457806323b872dd146101c2578063313ce567146101f25780633950935114610210578063404e51291461024057806342966c681461025c57610121565b806306fdde0314610126578063095ea7b31461014457806316c021291461017457806318160ddd146101a4575b600080fd5b61012e6103d4565b60405161013b919061169d565b60405180910390f35b61015e60048036038101906101599190611758565b610466565b60405161016b91906117b3565b60405180910390f35b61018e600480360381019061018991906117ce565b610484565b60405161019b91906117b3565b60405180910390f35b6101ac6104a4565b6040516101b9919061180a565b60405180910390f35b6101dc60048036038101906101d79190611825565b6104ae565b6040516101e991906117b3565b60405180910390f35b6101fa6105a6565b6040516102079190611894565b60405180910390f35b61022a60048036038101906102259190611758565b6105af565b60405161023791906117b3565b60405180910390f35b61025a600480360381019061025591906118db565b61065b565b005b6102766004803603810190610271919061191b565b610732565b005b61028061073f565b60405161028d9190611957565b60405180910390f35b6102b060048036038101906102ab91906117ce565b610765565b6040516102bd919061180a565b60405180910390f35b6102ce6107ae565b005b6102d8610836565b6040516102e59190611957565b60405180910390f35b6102f661085f565b604051610303919061169d565b60405180910390f35b61032660048036038101906103219190611758565b6108f1565b60405161033391906117b3565b60405180910390f35b61035660048036038101906103519190611758565b6109dc565b60405161036391906117b3565b60405180910390f35b610386600480360381019061038191906117ce565b6109fa565b005b6103a2600480360381019061039d9190611972565b610aba565b6040516103af919061180a565b60405180910390f35b6103d260048036038101906103cd91906117ce565b610b41565b005b6060600480546103e3906119e1565b80601f016020809104026020016040519081016040528092919081815260200182805461040f906119e1565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600061047a610473610c38565b8484610c40565b6001905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60006104bb848484610e09565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610506610c38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057d90611a84565b60405180910390fd5b61059a85610592610c38565b858403610c40565b60019150509392505050565b60006012905090565b60006106516105bc610c38565b8484600260006105ca610c38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064c9190611ad3565b610c40565b6001905092915050565b610663610c38565b73ffffffffffffffffffffffffffffffffffffffff16610681610836565b73ffffffffffffffffffffffffffffffffffffffff16146106d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ce90611b53565b60405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61073c338261108a565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107b6610c38565b73ffffffffffffffffffffffffffffffffffffffff166107d4610836565b73ffffffffffffffffffffffffffffffffffffffff161461082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190611b53565b60405180910390fd5b6108346000611261565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461086e906119e1565b80601f016020809104026020016040519081016040528092919081815260200182805461089a906119e1565b80156108e75780601f106108bc576101008083540402835291602001916108e7565b820191906000526020600020905b8154815290600101906020018083116108ca57829003601f168201915b5050505050905090565b60008060026000610900610c38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490611be5565b60405180910390fd5b6109d16109c8610c38565b85858403610c40565b600191505092915050565b60006109f06109e9610c38565b8484610e09565b6001905092915050565b610a02610c38565b73ffffffffffffffffffffffffffffffffffffffff16610a20610836565b73ffffffffffffffffffffffffffffffffffffffff1614610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90611b53565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b49610c38565b73ffffffffffffffffffffffffffffffffffffffff16610b67610836565b73ffffffffffffffffffffffffffffffffffffffff1614610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490611b53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390611c77565b60405180910390fd5b610c3581611261565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690611d09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590611d9b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dfc919061180a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90611e2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90611ebf565b60405180910390fd5b610ef18383611325565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90611f51565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100d9190611ad3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611071919061180a565b60405180910390a3611084848484611608565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090611fe3565b60405180910390fd5b611104826000611325565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612075565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111e39190612095565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611248919061180a565b60405180910390a361125c83600084611608565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113c95750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612115565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361151557611466610836565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806114d157506114a2610836565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790612181565b60405180910390fd5b611604565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415806115a55750611575610836565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15611603576001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561164757808201518184015260208101905061162c565b60008484015250505050565b6000601f19601f8301169050919050565b600061166f8261160d565b6116798185611618565b9350611689818560208601611629565b61169281611653565b840191505092915050565b600060208201905081810360008301526116b78184611664565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116ef826116c4565b9050919050565b6116ff816116e4565b811461170a57600080fd5b50565b60008135905061171c816116f6565b92915050565b6000819050919050565b61173581611722565b811461174057600080fd5b50565b6000813590506117528161172c565b92915050565b6000806040838503121561176f5761176e6116bf565b5b600061177d8582860161170d565b925050602061178e85828601611743565b9150509250929050565b60008115159050919050565b6117ad81611798565b82525050565b60006020820190506117c860008301846117a4565b92915050565b6000602082840312156117e4576117e36116bf565b5b60006117f28482850161170d565b91505092915050565b61180481611722565b82525050565b600060208201905061181f60008301846117fb565b92915050565b60008060006060848603121561183e5761183d6116bf565b5b600061184c8682870161170d565b935050602061185d8682870161170d565b925050604061186e86828701611743565b9150509250925092565b600060ff82169050919050565b61188e81611878565b82525050565b60006020820190506118a96000830184611885565b92915050565b6118b881611798565b81146118c357600080fd5b50565b6000813590506118d5816118af565b92915050565b600080604083850312156118f2576118f16116bf565b5b60006119008582860161170d565b9250506020611911858286016118c6565b9150509250929050565b600060208284031215611931576119306116bf565b5b600061193f84828501611743565b91505092915050565b611951816116e4565b82525050565b600060208201905061196c6000830184611948565b92915050565b60008060408385031215611989576119886116bf565b5b60006119978582860161170d565b92505060206119a88582860161170d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119f957607f821691505b602082108103611a0c57611a0b6119b2565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611a6e602883611618565b9150611a7982611a12565b604082019050919050565b60006020820190508181036000830152611a9d81611a61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ade82611722565b9150611ae983611722565b9250828201905080821115611b0157611b00611aa4565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b3d602083611618565b9150611b4882611b07565b602082019050919050565b60006020820190508181036000830152611b6c81611b30565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611bcf602583611618565b9150611bda82611b73565b604082019050919050565b60006020820190508181036000830152611bfe81611bc2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c61602683611618565b9150611c6c82611c05565b604082019050919050565b60006020820190508181036000830152611c9081611c54565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cf3602483611618565b9150611cfe82611c97565b604082019050919050565b60006020820190508181036000830152611d2281611ce6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d85602283611618565b9150611d9082611d29565b604082019050919050565b60006020820190508181036000830152611db481611d78565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e17602583611618565b9150611e2282611dbb565b604082019050919050565b60006020820190508181036000830152611e4681611e0a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ea9602383611618565b9150611eb482611e4d565b604082019050919050565b60006020820190508181036000830152611ed881611e9c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f3b602683611618565b9150611f4682611edf565b604082019050919050565b60006020820190508181036000830152611f6a81611f2e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fcd602183611618565b9150611fd882611f71565b604082019050919050565b60006020820190508181036000830152611ffc81611fc0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061205f602283611618565b915061206a82612003565b604082019050919050565b6000602082019050818103600083015261208e81612052565b9050919050565b60006120a082611722565b91506120ab83611722565b92508282039050818111156120c3576120c2611aa4565b5b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b60006120ff600b83611618565b915061210a826120c9565b602082019050919050565b6000602082019050818103600083015261212e816120f2565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600061216b601683611618565b915061217682612135565b602082019050919050565b6000602082019050818103600083015261219a8161215e565b905091905056fea2646970667358221220271de72ad36b28818feccfb7e03835e014583942e4178bf20a0e6ff9cc4ab29e64736f6c6343000812003300000000000000000000000000000000000000000000000000005af3107a4000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806349bd5a5e116100ad578063a457c2d711610071578063a457c2d71461030c578063a9059cbb1461033c578063db5d77931461036c578063dd62ed3e14610388578063f2fde38b146103b857610121565b806349bd5a5e1461027857806370a0823114610296578063715018a6146102c65780638da5cb5b146102d057806395d89b41146102ee57610121565b806323b872dd116100f457806323b872dd146101c2578063313ce567146101f25780633950935114610210578063404e51291461024057806342966c681461025c57610121565b806306fdde0314610126578063095ea7b31461014457806316c021291461017457806318160ddd146101a4575b600080fd5b61012e6103d4565b60405161013b919061169d565b60405180910390f35b61015e60048036038101906101599190611758565b610466565b60405161016b91906117b3565b60405180910390f35b61018e600480360381019061018991906117ce565b610484565b60405161019b91906117b3565b60405180910390f35b6101ac6104a4565b6040516101b9919061180a565b60405180910390f35b6101dc60048036038101906101d79190611825565b6104ae565b6040516101e991906117b3565b60405180910390f35b6101fa6105a6565b6040516102079190611894565b60405180910390f35b61022a60048036038101906102259190611758565b6105af565b60405161023791906117b3565b60405180910390f35b61025a600480360381019061025591906118db565b61065b565b005b6102766004803603810190610271919061191b565b610732565b005b61028061073f565b60405161028d9190611957565b60405180910390f35b6102b060048036038101906102ab91906117ce565b610765565b6040516102bd919061180a565b60405180910390f35b6102ce6107ae565b005b6102d8610836565b6040516102e59190611957565b60405180910390f35b6102f661085f565b604051610303919061169d565b60405180910390f35b61032660048036038101906103219190611758565b6108f1565b60405161033391906117b3565b60405180910390f35b61035660048036038101906103519190611758565b6109dc565b60405161036391906117b3565b60405180910390f35b610386600480360381019061038191906117ce565b6109fa565b005b6103a2600480360381019061039d9190611972565b610aba565b6040516103af919061180a565b60405180910390f35b6103d260048036038101906103cd91906117ce565b610b41565b005b6060600480546103e3906119e1565b80601f016020809104026020016040519081016040528092919081815260200182805461040f906119e1565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600061047a610473610c38565b8484610c40565b6001905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60006104bb848484610e09565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610506610c38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057d90611a84565b60405180910390fd5b61059a85610592610c38565b858403610c40565b60019150509392505050565b60006012905090565b60006106516105bc610c38565b8484600260006105ca610c38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064c9190611ad3565b610c40565b6001905092915050565b610663610c38565b73ffffffffffffffffffffffffffffffffffffffff16610681610836565b73ffffffffffffffffffffffffffffffffffffffff16146106d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ce90611b53565b60405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61073c338261108a565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107b6610c38565b73ffffffffffffffffffffffffffffffffffffffff166107d4610836565b73ffffffffffffffffffffffffffffffffffffffff161461082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190611b53565b60405180910390fd5b6108346000611261565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461086e906119e1565b80601f016020809104026020016040519081016040528092919081815260200182805461089a906119e1565b80156108e75780601f106108bc576101008083540402835291602001916108e7565b820191906000526020600020905b8154815290600101906020018083116108ca57829003601f168201915b5050505050905090565b60008060026000610900610c38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490611be5565b60405180910390fd5b6109d16109c8610c38565b85858403610c40565b600191505092915050565b60006109f06109e9610c38565b8484610e09565b6001905092915050565b610a02610c38565b73ffffffffffffffffffffffffffffffffffffffff16610a20610836565b73ffffffffffffffffffffffffffffffffffffffff1614610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90611b53565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b49610c38565b73ffffffffffffffffffffffffffffffffffffffff16610b67610836565b73ffffffffffffffffffffffffffffffffffffffff1614610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490611b53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390611c77565b60405180910390fd5b610c3581611261565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690611d09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590611d9b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dfc919061180a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90611e2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90611ebf565b60405180910390fd5b610ef18383611325565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90611f51565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100d9190611ad3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611071919061180a565b60405180910390a3611084848484611608565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090611fe3565b60405180910390fd5b611104826000611325565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612075565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111e39190612095565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611248919061180a565b60405180910390a361125c83600084611608565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113c95750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612115565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361151557611466610836565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806114d157506114a2610836565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790612181565b60405180910390fd5b611604565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415806115a55750611575610836565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15611603576001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561164757808201518184015260208101905061162c565b60008484015250505050565b6000601f19601f8301169050919050565b600061166f8261160d565b6116798185611618565b9350611689818560208601611629565b61169281611653565b840191505092915050565b600060208201905081810360008301526116b78184611664565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116ef826116c4565b9050919050565b6116ff816116e4565b811461170a57600080fd5b50565b60008135905061171c816116f6565b92915050565b6000819050919050565b61173581611722565b811461174057600080fd5b50565b6000813590506117528161172c565b92915050565b6000806040838503121561176f5761176e6116bf565b5b600061177d8582860161170d565b925050602061178e85828601611743565b9150509250929050565b60008115159050919050565b6117ad81611798565b82525050565b60006020820190506117c860008301846117a4565b92915050565b6000602082840312156117e4576117e36116bf565b5b60006117f28482850161170d565b91505092915050565b61180481611722565b82525050565b600060208201905061181f60008301846117fb565b92915050565b60008060006060848603121561183e5761183d6116bf565b5b600061184c8682870161170d565b935050602061185d8682870161170d565b925050604061186e86828701611743565b9150509250925092565b600060ff82169050919050565b61188e81611878565b82525050565b60006020820190506118a96000830184611885565b92915050565b6118b881611798565b81146118c357600080fd5b50565b6000813590506118d5816118af565b92915050565b600080604083850312156118f2576118f16116bf565b5b60006119008582860161170d565b9250506020611911858286016118c6565b9150509250929050565b600060208284031215611931576119306116bf565b5b600061193f84828501611743565b91505092915050565b611951816116e4565b82525050565b600060208201905061196c6000830184611948565b92915050565b60008060408385031215611989576119886116bf565b5b60006119978582860161170d565b92505060206119a88582860161170d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119f957607f821691505b602082108103611a0c57611a0b6119b2565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611a6e602883611618565b9150611a7982611a12565b604082019050919050565b60006020820190508181036000830152611a9d81611a61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ade82611722565b9150611ae983611722565b9250828201905080821115611b0157611b00611aa4565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b3d602083611618565b9150611b4882611b07565b602082019050919050565b60006020820190508181036000830152611b6c81611b30565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611bcf602583611618565b9150611bda82611b73565b604082019050919050565b60006020820190508181036000830152611bfe81611bc2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c61602683611618565b9150611c6c82611c05565b604082019050919050565b60006020820190508181036000830152611c9081611c54565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cf3602483611618565b9150611cfe82611c97565b604082019050919050565b60006020820190508181036000830152611d2281611ce6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d85602283611618565b9150611d9082611d29565b604082019050919050565b60006020820190508181036000830152611db481611d78565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e17602583611618565b9150611e2282611dbb565b604082019050919050565b60006020820190508181036000830152611e4681611e0a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ea9602383611618565b9150611eb482611e4d565b604082019050919050565b60006020820190508181036000830152611ed881611e9c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f3b602683611618565b9150611f4682611edf565b604082019050919050565b60006020820190508181036000830152611f6a81611f2e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fcd602183611618565b9150611fd882611f71565b604082019050919050565b60006020820190508181036000830152611ffc81611fc0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061205f602283611618565b915061206a82612003565b604082019050919050565b6000602082019050818103600083015261208e81612052565b9050919050565b60006120a082611722565b91506120ab83611722565b92508282039050818111156120c3576120c2611aa4565b5b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b60006120ff600b83611618565b915061210a826120c9565b602082019050919050565b6000602082019050818103600083015261212e816120f2565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600061216b601683611618565b915061217682612135565b602082019050919050565b6000602082019050818103600083015261219a8161215e565b905091905056fea2646970667358221220271de72ad36b28818feccfb7e03835e014583942e4178bf20a0e6ff9cc4ab29e64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000005af3107a4000

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000005af3107a4000


Deployed Bytecode Sourcemap

19176:1056:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9194:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11361:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19254:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10314:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12012:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10156:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12913:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19434:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20148:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19219:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10485:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2595:103;;;:::i;:::-;;1944:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9413:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13631:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10825:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19577:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11063:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2853:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9194:100;9248:13;9281:5;9274:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9194:100;:::o;11361:169::-;11444:4;11461:39;11470:12;:10;:12::i;:::-;11484:7;11493:6;11461:8;:39::i;:::-;11518:4;11511:11;;11361:169;;;;:::o;19254:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10314:108::-;10375:7;10402:12;;10395:19;;10314:108;:::o;12012:492::-;12152:4;12169:36;12179:6;12187:9;12198:6;12169:9;:36::i;:::-;12218:24;12245:11;:19;12257:6;12245:19;;;;;;;;;;;;;;;:33;12265:12;:10;:12::i;:::-;12245:33;;;;;;;;;;;;;;;;12218:60;;12317:6;12297:16;:26;;12289:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12404:57;12413:6;12421:12;:10;:12::i;:::-;12454:6;12435:16;:25;12404:8;:57::i;:::-;12492:4;12485:11;;;12012:492;;;;;:::o;10156:93::-;10214:5;10239:2;10232:9;;10156:93;:::o;12913:215::-;13001:4;13018:80;13027:12;:10;:12::i;:::-;13041:7;13087:10;13050:11;:25;13062:12;:10;:12::i;:::-;13050:25;;;;;;;;;;;;;;;:34;13076:7;13050:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13018:8;:80::i;:::-;13116:4;13109:11;;12913:215;;;;:::o;19434:135::-;2175:12;:10;:12::i;:::-;2164:23;;:7;:5;:7::i;:::-;:23;;;2156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19546:15:::1;19523:10;:20;19534:8;19523:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;19434:135:::0;;:::o;20148:81::-;20197:24;20203:10;20215:5;20197;:24::i;:::-;20148:81;:::o;19219:28::-;;;;;;;;;;;;;:::o;10485:127::-;10559:7;10586:9;:18;10596:7;10586:18;;;;;;;;;;;;;;;;10579:25;;10485:127;;;:::o;2595:103::-;2175:12;:10;:12::i;:::-;2164:23;;:7;:5;:7::i;:::-;:23;;;2156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2660:30:::1;2687:1;2660:18;:30::i;:::-;2595:103::o:0;1944:87::-;1990:7;2017:6;;;;;;;;;;;2010:13;;1944:87;:::o;9413:104::-;9469:13;9502:7;9495:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9413:104;:::o;13631:413::-;13724:4;13741:24;13768:11;:25;13780:12;:10;:12::i;:::-;13768:25;;;;;;;;;;;;;;;:34;13794:7;13768:34;;;;;;;;;;;;;;;;13741:61;;13841:15;13821:16;:35;;13813:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13934:67;13943:12;:10;:12::i;:::-;13957:7;13985:15;13966:16;:34;13934:8;:67::i;:::-;14032:4;14025:11;;;13631:413;;;;:::o;10825:175::-;10911:4;10928:42;10938:12;:10;:12::i;:::-;10952:9;10963:6;10928:9;:42::i;:::-;10988:4;10981:11;;10825:175;;;;:::o;19577:109::-;2175:12;:10;:12::i;:::-;2164:23;;:7;:5;:7::i;:::-;:23;;;2156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19664:14:::1;19648:13;;:30;;;;;;;;;;;;;;;;;;19577:109:::0;:::o;11063:151::-;11152:7;11179:11;:18;11191:5;11179:18;;;;;;;;;;;;;;;:27;11198:7;11179:27;;;;;;;;;;;;;;;;11172:34;;11063:151;;;;:::o;2853:201::-;2175:12;:10;:12::i;:::-;2164:23;;:7;:5;:7::i;:::-;:23;;;2156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2962:1:::1;2942:22;;:8;:22;;::::0;2934:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3018:28;3037:8;3018:18;:28::i;:::-;2853:201:::0;:::o;662:98::-;715:7;742:10;735:17;;662:98;:::o;17291:380::-;17444:1;17427:19;;:5;:19;;;17419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17525:1;17506:21;;:7;:21;;;17498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17609:6;17579:11;:18;17591:5;17579:18;;;;;;;;;;;;;;;:27;17598:7;17579:27;;;;;;;;;;;;;;;:36;;;;17647:7;17631:32;;17640:5;17631:32;;;17656:6;17631:32;;;;;;:::i;:::-;;;;;;;;17291:380;;;:::o;14534:725::-;14692:1;14674:20;;:6;:20;;;14666:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14776:1;14755:23;;:9;:23;;;14747:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14831:39;14852:6;14860:9;14831:20;:39::i;:::-;14883:21;14907:9;:17;14917:6;14907:17;;;;;;;;;;;;;;;;14883:41;;14960:6;14943:13;:23;;14935:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15081:6;15065:13;:22;15045:9;:17;15055:6;15045:17;;;;;;;;;;;;;;;:42;;;;15133:6;15109:9;:20;15119:9;15109:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15174:9;15157:35;;15166:6;15157:35;;;15185:6;15157:35;;;;;;:::i;:::-;;;;;;;;15205:46;15225:6;15233:9;15244:6;15205:19;:46::i;:::-;14655:604;14534:725;;;:::o;16270:583::-;16373:1;16354:21;;:7;:21;;;16346:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16426:41;16447:7;16464:1;16426:20;:41::i;:::-;16480:22;16505:9;:18;16515:7;16505:18;;;;;;;;;;;;;;;;16480:43;;16560:6;16542:14;:24;;16534:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16679:6;16662:14;:23;16641:9;:18;16651:7;16641:18;;;;;;;;;;;;;;;:44;;;;16723:6;16707:12;;:22;;;;;;;:::i;:::-;;;;;;;;16773:1;16747:37;;16756:7;16747:37;;;16777:6;16747:37;;;;;;:::i;:::-;;;;;;;;16797:48;16817:7;16834:1;16838:6;16797:19;:48::i;:::-;16335:518;16270:583;;:::o;3214:191::-;3288:16;3307:6;;;;;;;;;;;3288:25;;3333:8;3324:6;;:17;;;;;;;;;;;;;;;;;;3388:8;3357:40;;3378:8;3357:40;;;;;;;;;;;;3277:128;3214:191;:::o;19694:446::-;19821:10;:14;19832:2;19821:14;;;;;;;;;;;;;;;;;;;;;;;;;19820:15;:36;;;;;19840:10;:16;19851:4;19840:16;;;;;;;;;;;;;;;;;;;;;;;;;19839:17;19820:36;19812:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;19914:1;19889:27;;:13;;;;;;;;;;;:27;;;19885:148;;19949:7;:5;:7::i;:::-;19941:15;;:4;:15;;;:32;;;;19966:7;:5;:7::i;:::-;19960:13;;:2;:13;;;19941:32;19933:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20015:7;;19885:148;20052:13;;;;;;;;;;;20046:19;;:2;:19;;;;:36;;;;20075:7;:5;:7::i;:::-;20069:13;;:2;:13;;;;20046:36;20043:88;;;20115:4;20098:10;:14;20109:2;20098:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;20043:88;19694:446;;;:::o;18975:124::-;;;;:::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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:468::-;5514:6;5522;5571:2;5559:9;5550:7;5546:23;5542:32;5539:119;;;5577:79;;:::i;:::-;5539:119;5697:1;5722:53;5767:7;5758:6;5747:9;5743:22;5722:53;:::i;:::-;5712:63;;5668:117;5824:2;5850:50;5892:7;5883:6;5872:9;5868:22;5850:50;:::i;:::-;5840:60;;5795:115;5449:468;;;;;:::o;5923:329::-;5982:6;6031:2;6019:9;6010:7;6006:23;6002:32;5999:119;;;6037:79;;:::i;:::-;5999:119;6157:1;6182:53;6227:7;6218:6;6207:9;6203:22;6182:53;:::i;:::-;6172:63;;6128:117;5923:329;;;;:::o;6258:118::-;6345:24;6363:5;6345:24;:::i;:::-;6340:3;6333:37;6258:118;;:::o;6382:222::-;6475:4;6513:2;6502:9;6498:18;6490:26;;6526:71;6594:1;6583:9;6579:17;6570:6;6526:71;:::i;:::-;6382:222;;;;:::o;6610:474::-;6678:6;6686;6735:2;6723:9;6714:7;6710:23;6706:32;6703:119;;;6741:79;;:::i;:::-;6703:119;6861:1;6886:53;6931:7;6922:6;6911:9;6907:22;6886:53;:::i;:::-;6876:63;;6832:117;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6610:474;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:227::-;7742:34;7738:1;7730:6;7726:14;7719:58;7811:10;7806:2;7798:6;7794:15;7787:35;7602:227;:::o;7835:366::-;7977:3;7998:67;8062:2;8057:3;7998:67;:::i;:::-;7991:74;;8074:93;8163:3;8074:93;:::i;:::-;8192:2;8187:3;8183:12;8176:19;;7835:366;;;:::o;8207:419::-;8373:4;8411:2;8400:9;8396:18;8388:26;;8460:9;8454:4;8450:20;8446:1;8435:9;8431:17;8424:47;8488:131;8614:4;8488:131;:::i;:::-;8480:139;;8207:419;;;:::o;8632:180::-;8680:77;8677:1;8670:88;8777:4;8774:1;8767:15;8801:4;8798:1;8791:15;8818:191;8858:3;8877:20;8895:1;8877:20;:::i;:::-;8872:25;;8911:20;8929:1;8911:20;:::i;:::-;8906:25;;8954:1;8951;8947:9;8940:16;;8975:3;8972:1;8969:10;8966:36;;;8982:18;;:::i;:::-;8966:36;8818:191;;;;:::o;9015:182::-;9155:34;9151:1;9143:6;9139:14;9132:58;9015:182;:::o;9203:366::-;9345:3;9366:67;9430:2;9425:3;9366:67;:::i;:::-;9359:74;;9442:93;9531:3;9442:93;:::i;:::-;9560:2;9555:3;9551:12;9544:19;;9203:366;;;:::o;9575:419::-;9741:4;9779:2;9768:9;9764:18;9756:26;;9828:9;9822:4;9818:20;9814:1;9803:9;9799:17;9792:47;9856:131;9982:4;9856:131;:::i;:::-;9848:139;;9575:419;;;:::o;10000:224::-;10140:34;10136:1;10128:6;10124:14;10117:58;10209:7;10204:2;10196:6;10192:15;10185:32;10000:224;:::o;10230:366::-;10372:3;10393:67;10457:2;10452:3;10393:67;:::i;:::-;10386:74;;10469:93;10558:3;10469:93;:::i;:::-;10587:2;10582:3;10578:12;10571:19;;10230:366;;;:::o;10602:419::-;10768:4;10806:2;10795:9;10791:18;10783:26;;10855:9;10849:4;10845:20;10841:1;10830:9;10826:17;10819:47;10883:131;11009:4;10883:131;:::i;:::-;10875:139;;10602:419;;;:::o;11027:225::-;11167:34;11163:1;11155:6;11151:14;11144:58;11236:8;11231:2;11223:6;11219:15;11212:33;11027:225;:::o;11258:366::-;11400:3;11421:67;11485:2;11480:3;11421:67;:::i;:::-;11414:74;;11497:93;11586:3;11497:93;:::i;:::-;11615:2;11610:3;11606:12;11599:19;;11258:366;;;:::o;11630:419::-;11796:4;11834:2;11823:9;11819:18;11811:26;;11883:9;11877:4;11873:20;11869:1;11858:9;11854:17;11847:47;11911:131;12037:4;11911:131;:::i;:::-;11903:139;;11630:419;;;:::o;12055:223::-;12195:34;12191:1;12183:6;12179:14;12172:58;12264:6;12259:2;12251:6;12247:15;12240:31;12055:223;:::o;12284:366::-;12426:3;12447:67;12511:2;12506:3;12447:67;:::i;:::-;12440:74;;12523:93;12612:3;12523:93;:::i;:::-;12641:2;12636:3;12632:12;12625:19;;12284:366;;;:::o;12656:419::-;12822:4;12860:2;12849:9;12845:18;12837:26;;12909:9;12903:4;12899:20;12895:1;12884:9;12880:17;12873:47;12937:131;13063:4;12937:131;:::i;:::-;12929:139;;12656:419;;;:::o;13081:221::-;13221:34;13217:1;13209:6;13205:14;13198:58;13290:4;13285:2;13277:6;13273:15;13266:29;13081:221;:::o;13308:366::-;13450:3;13471:67;13535:2;13530:3;13471:67;:::i;:::-;13464:74;;13547:93;13636:3;13547:93;:::i;:::-;13665:2;13660:3;13656:12;13649:19;;13308:366;;;:::o;13680:419::-;13846:4;13884:2;13873:9;13869:18;13861:26;;13933:9;13927:4;13923:20;13919:1;13908:9;13904:17;13897:47;13961:131;14087:4;13961:131;:::i;:::-;13953:139;;13680:419;;;:::o;14105:224::-;14245:34;14241:1;14233:6;14229:14;14222:58;14314:7;14309:2;14301:6;14297:15;14290:32;14105:224;:::o;14335:366::-;14477:3;14498:67;14562:2;14557:3;14498:67;:::i;:::-;14491:74;;14574:93;14663:3;14574:93;:::i;:::-;14692:2;14687:3;14683:12;14676:19;;14335:366;;;:::o;14707:419::-;14873:4;14911:2;14900:9;14896:18;14888:26;;14960:9;14954:4;14950:20;14946:1;14935:9;14931:17;14924:47;14988:131;15114:4;14988:131;:::i;:::-;14980:139;;14707:419;;;:::o;15132:222::-;15272:34;15268:1;15260:6;15256:14;15249:58;15341:5;15336:2;15328:6;15324:15;15317:30;15132:222;:::o;15360:366::-;15502:3;15523:67;15587:2;15582:3;15523:67;:::i;:::-;15516:74;;15599:93;15688:3;15599:93;:::i;:::-;15717:2;15712:3;15708:12;15701:19;;15360:366;;;:::o;15732:419::-;15898:4;15936:2;15925:9;15921:18;15913:26;;15985:9;15979:4;15975:20;15971:1;15960:9;15956:17;15949:47;16013:131;16139:4;16013:131;:::i;:::-;16005:139;;15732:419;;;:::o;16157:225::-;16297:34;16293:1;16285:6;16281:14;16274:58;16366:8;16361:2;16353:6;16349:15;16342:33;16157:225;:::o;16388:366::-;16530:3;16551:67;16615:2;16610:3;16551:67;:::i;:::-;16544:74;;16627:93;16716:3;16627:93;:::i;:::-;16745:2;16740:3;16736:12;16729:19;;16388:366;;;:::o;16760:419::-;16926:4;16964:2;16953:9;16949:18;16941:26;;17013:9;17007:4;17003:20;16999:1;16988:9;16984:17;16977:47;17041:131;17167:4;17041:131;:::i;:::-;17033:139;;16760:419;;;:::o;17185:220::-;17325:34;17321:1;17313:6;17309:14;17302:58;17394:3;17389:2;17381:6;17377:15;17370:28;17185:220;:::o;17411:366::-;17553:3;17574:67;17638:2;17633:3;17574:67;:::i;:::-;17567:74;;17650:93;17739:3;17650:93;:::i;:::-;17768:2;17763:3;17759:12;17752:19;;17411:366;;;:::o;17783:419::-;17949:4;17987:2;17976:9;17972:18;17964:26;;18036:9;18030:4;18026:20;18022:1;18011:9;18007:17;18000:47;18064:131;18190:4;18064:131;:::i;:::-;18056:139;;17783:419;;;:::o;18208:221::-;18348:34;18344:1;18336:6;18332:14;18325:58;18417:4;18412:2;18404:6;18400:15;18393:29;18208:221;:::o;18435:366::-;18577:3;18598:67;18662:2;18657:3;18598:67;:::i;:::-;18591:74;;18674:93;18763:3;18674:93;:::i;:::-;18792:2;18787:3;18783:12;18776:19;;18435:366;;;:::o;18807:419::-;18973:4;19011:2;19000:9;18996:18;18988:26;;19060:9;19054:4;19050:20;19046:1;19035:9;19031:17;19024:47;19088:131;19214:4;19088:131;:::i;:::-;19080:139;;18807:419;;;:::o;19232:194::-;19272:4;19292:20;19310:1;19292:20;:::i;:::-;19287:25;;19326:20;19344:1;19326:20;:::i;:::-;19321:25;;19370:1;19367;19363:9;19355:17;;19394:1;19388:4;19385:11;19382:37;;;19399:18;;:::i;:::-;19382:37;19232:194;;;;:::o;19432:161::-;19572:13;19568:1;19560:6;19556:14;19549:37;19432:161;:::o;19599:366::-;19741:3;19762:67;19826:2;19821:3;19762:67;:::i;:::-;19755:74;;19838:93;19927:3;19838:93;:::i;:::-;19956:2;19951:3;19947:12;19940:19;;19599:366;;;:::o;19971:419::-;20137:4;20175:2;20164:9;20160:18;20152:26;;20224:9;20218:4;20214:20;20210:1;20199:9;20195:17;20188:47;20252:131;20378:4;20252:131;:::i;:::-;20244:139;;19971:419;;;:::o;20396:172::-;20536:24;20532:1;20524:6;20520:14;20513:48;20396:172;:::o;20574:366::-;20716:3;20737:67;20801:2;20796:3;20737:67;:::i;:::-;20730:74;;20813:93;20902:3;20813:93;:::i;:::-;20931:2;20926:3;20922:12;20915:19;;20574:366;;;:::o;20946:419::-;21112:4;21150:2;21139:9;21135:18;21127:26;;21199:9;21193:4;21189:20;21185:1;21174:9;21170:17;21163:47;21227:131;21353:4;21227:131;:::i;:::-;21219:139;;20946:419;;;:::o

Swarm Source

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