ETH Price: $3,303.79 (-3.56%)
Gas: 7 Gwei

Token

Grogu Cash (GROGU)
 

Overview

Max Total Supply

1,000,000,000,000 GROGU

Holders

275

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
614,760,597.485752828156478335 GROGU

Value
$0.00
0x191d34b1de1a136a6298f45ac7c2bbd891d2ea6a
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:
GroguCash

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-25
*/

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

// SPDX-License-Identifier: MIT
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;
    }
}

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

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

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

/**
 * @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, amount);

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

        emit Transfer(sender, recipient, amount);

        _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, amount);

        _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), amount);

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

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

        _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,
        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 {}
}

contract GroguCash is Ownable, ERC20 {
    bool public limited;
    uint256 public maxWallet;
    address public uniswapV2Pair;

    constructor() ERC20("Grogu Cash", "GROGU") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }

    function setWalletRule(bool _limited, address _uniswapV2Pair, uint256 _maxWallet) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxWallet = _maxWallet;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading not open yet");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(balanceOf(to) + amount <= maxWallet, "max wallet breached");
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"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":"maxWallet","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":"_maxWallet","type":"uint256"}],"name":"setWalletRule","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f47726f67752043617368000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47524f47550000000000000000000000000000000000000000000000000000008152506200009e620000926200010b60201b60201c565b6200011360201b60201c565b8160049081620000af919062000849565b508060059081620000c1919062000849565b5050506200010533620000d9620001d760201b60201c565b600a620000e7919062000ac0565b64e8d4a51000620000f9919062000b11565b620001e060201b60201c565b62000d2c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002499062000bbd565b60405180910390fd5b62000266600083836200035960201b60201c565b80600360008282546200027a919062000bdf565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d2919062000bdf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000339919062000c2b565b60405180910390a362000355600083836200055860201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200047c57620003c06200055d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004345750620004056200055d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000476576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046d9062000c98565b60405180910390fd5b62000553565b600660009054906101000a900460ff168015620004e65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1562000552576007548162000501846200058660201b60201c565b6200050d919062000bdf565b111562000551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005489062000d0a565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065157607f821691505b60208210810362000667576200066662000609565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000692565b620006dd868362000692565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200072a620007246200071e84620006f5565b620006ff565b620006f5565b9050919050565b6000819050919050565b620007468362000709565b6200075e620007558262000731565b8484546200069f565b825550505050565b600090565b6200077562000766565b620007828184846200073b565b505050565b5b81811015620007aa576200079e6000826200076b565b60018101905062000788565b5050565b601f821115620007f957620007c3816200066d565b620007ce8462000682565b81016020851015620007de578190505b620007f6620007ed8562000682565b83018262000787565b50505b505050565b600082821c905092915050565b60006200081e60001984600802620007fe565b1980831691505092915050565b60006200083983836200080b565b9150826002028217905092915050565b6200085482620005cf565b67ffffffffffffffff81111562000870576200086f620005da565b5b6200087c825462000638565b62000889828285620007ae565b600060209050601f831160018114620008c15760008415620008ac578287015190505b620008b885826200082b565b86555062000928565b601f198416620008d1866200066d565b60005b82811015620008fb57848901518255600182019150602085019450602081019050620008d4565b868310156200091b578489015162000917601f8916826200080b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009be5780860481111562000996576200099562000930565b5b6001851615620009a65780820291505b8081029050620009b6856200095f565b945062000976565b94509492505050565b600082620009d9576001905062000aac565b81620009e9576000905062000aac565b816001811462000a02576002811462000a0d5762000a43565b600191505062000aac565b60ff84111562000a225762000a2162000930565b5b8360020a91508482111562000a3c5762000a3b62000930565b5b5062000aac565b5060208310610133831016604e8410600b841016171562000a7d5782820a90508381111562000a775762000a7662000930565b5b62000aac565b62000a8c84848460016200096c565b9250905081840481111562000aa65762000aa562000930565b5b81810290505b9392505050565b600060ff82169050919050565b600062000acd82620006f5565b915062000ada8362000ab3565b925062000b097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009c7565b905092915050565b600062000b1e82620006f5565b915062000b2b83620006f5565b925082820262000b3b81620006f5565b9150828204841483151762000b555762000b5462000930565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ba5601f8362000b5c565b915062000bb28262000b6d565b602082019050919050565b6000602082019050818103600083015262000bd88162000b96565b9050919050565b600062000bec82620006f5565b915062000bf983620006f5565b925082820190508082111562000c145762000c1362000930565b5b92915050565b62000c2581620006f5565b82525050565b600060208201905062000c42600083018462000c1a565b92915050565b7f74726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b600062000c8060148362000b5c565b915062000c8d8262000c48565b602082019050919050565b6000602082019050818103600083015262000cb38162000c71565b9050919050565b7f6d61782077616c6c657420627265616368656400000000000000000000000000600082015250565b600062000cf260138362000b5c565b915062000cff8262000cba565b602082019050919050565b6000602082019050818103600083015262000d258162000ce3565b9050919050565b611c878062000d3c6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063860a32ec116100a2578063a457c2d711610071578063a457c2d7146102d3578063a9059cbb14610303578063dd62ed3e14610333578063f2fde38b14610363578063f8b45b051461037f57610116565b8063860a32ec1461025d5780638d99ff211461027b5780638da5cb5b1461029757806395d89b41146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806349bd5a5e1461020557806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039d565b60405161013091906112bf565b60405180910390f35b610153600480360381019061014e919061137a565b61042f565b60405161016091906113d5565b60405180910390f35b61017161044d565b60405161017e91906113ff565b60405180910390f35b6101a1600480360381019061019c919061141a565b610457565b6040516101ae91906113d5565b60405180910390f35b6101bf61054f565b6040516101cc9190611489565b60405180910390f35b6101ef60048036038101906101ea919061137a565b610558565b6040516101fc91906113d5565b60405180910390f35b61020d610604565b60405161021a91906114b3565b60405180910390f35b61023d600480360381019061023891906114ce565b61062a565b60405161024a91906113ff565b60405180910390f35b61025b610673565b005b6102656106fb565b60405161027291906113d5565b60405180910390f35b61029560048036038101906102909190611527565b61070e565b005b61029f6107f1565b6040516102ac91906114b3565b60405180910390f35b6102bd61081a565b6040516102ca91906112bf565b60405180910390f35b6102ed60048036038101906102e8919061137a565b6108ac565b6040516102fa91906113d5565b60405180910390f35b61031d6004803603810190610318919061137a565b610997565b60405161032a91906113d5565b60405180910390f35b61034d6004803603810190610348919061157a565b6109b5565b60405161035a91906113ff565b60405180910390f35b61037d600480360381019061037891906114ce565b610a3c565b005b610387610b33565b60405161039491906113ff565b60405180910390f35b6060600480546103ac906115e9565b80601f01602080910402602001604051908101604052809291908181526020018280546103d8906115e9565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b600061044361043c610b39565b8484610b41565b6001905092915050565b6000600354905090565b6000610464848484610d0a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104af610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105269061168c565b60405180910390fd5b6105438561053b610b39565b858403610b41565b60019150509392505050565b60006012905090565b60006105fa610565610b39565b848460026000610573610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105f591906116db565b610b41565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61067b610b39565b73ffffffffffffffffffffffffffffffffffffffff166106996107f1565b73ffffffffffffffffffffffffffffffffffffffff16146106ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e69061175b565b60405180910390fd5b6106f96000610f8c565b565b600660009054906101000a900460ff1681565b610716610b39565b73ffffffffffffffffffffffffffffffffffffffff166107346107f1565b73ffffffffffffffffffffffffffffffffffffffff161461078a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107819061175b565b60405180910390fd5b82600660006101000a81548160ff02191690831515021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610829906115e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610855906115e9565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b600080600260006108bb610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f906117ed565b60405180910390fd5b61098c610983610b39565b85858403610b41565b600191505092915050565b60006109ab6109a4610b39565b8484610d0a565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a44610b39565b73ffffffffffffffffffffffffffffffffffffffff16610a626107f1565b73ffffffffffffffffffffffffffffffffffffffff1614610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf9061175b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e9061187f565b60405180910390fd5b610b3081610f8c565b50565b60075481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790611911565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906119a3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cfd91906113ff565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090611a35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90611ac7565b60405180910390fd5b610df3838383611050565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190611b59565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f0f91906116db565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7391906113ff565b60405180910390a3610f8684848461122a565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361115d576110ae6107f1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061111957506110ea6107f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90611bc5565b60405180910390fd5b611225565b600660009054906101000a900460ff1680156111c65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561122457600754816111d88461062a565b6111e291906116db565b1115611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90611c31565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561126957808201518184015260208101905061124e565b60008484015250505050565b6000601f19601f8301169050919050565b60006112918261122f565b61129b818561123a565b93506112ab81856020860161124b565b6112b481611275565b840191505092915050565b600060208201905081810360008301526112d98184611286565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611311826112e6565b9050919050565b61132181611306565b811461132c57600080fd5b50565b60008135905061133e81611318565b92915050565b6000819050919050565b61135781611344565b811461136257600080fd5b50565b6000813590506113748161134e565b92915050565b60008060408385031215611391576113906112e1565b5b600061139f8582860161132f565b92505060206113b085828601611365565b9150509250929050565b60008115159050919050565b6113cf816113ba565b82525050565b60006020820190506113ea60008301846113c6565b92915050565b6113f981611344565b82525050565b600060208201905061141460008301846113f0565b92915050565b600080600060608486031215611433576114326112e1565b5b60006114418682870161132f565b93505060206114528682870161132f565b925050604061146386828701611365565b9150509250925092565b600060ff82169050919050565b6114838161146d565b82525050565b600060208201905061149e600083018461147a565b92915050565b6114ad81611306565b82525050565b60006020820190506114c860008301846114a4565b92915050565b6000602082840312156114e4576114e36112e1565b5b60006114f28482850161132f565b91505092915050565b611504816113ba565b811461150f57600080fd5b50565b600081359050611521816114fb565b92915050565b6000806000606084860312156115405761153f6112e1565b5b600061154e86828701611512565b935050602061155f8682870161132f565b925050604061157086828701611365565b9150509250925092565b60008060408385031215611591576115906112e1565b5b600061159f8582860161132f565b92505060206115b08582860161132f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061160157607f821691505b602082108103611614576116136115ba565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061167660288361123a565b91506116818261161a565b604082019050919050565b600060208201905081810360008301526116a581611669565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116e682611344565b91506116f183611344565b9250828201905080821115611709576117086116ac565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061174560208361123a565b91506117508261170f565b602082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117d760258361123a565b91506117e28261177b565b604082019050919050565b60006020820190508181036000830152611806816117ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061186960268361123a565b91506118748261180d565b604082019050919050565b600060208201905081810360008301526118988161185c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118fb60248361123a565b91506119068261189f565b604082019050919050565b6000602082019050818103600083015261192a816118ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061198d60228361123a565b915061199882611931565b604082019050919050565b600060208201905081810360008301526119bc81611980565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a1f60258361123a565b9150611a2a826119c3565b604082019050919050565b60006020820190508181036000830152611a4e81611a12565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab160238361123a565b9150611abc82611a55565b604082019050919050565b60006020820190508181036000830152611ae081611aa4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b4360268361123a565b9150611b4e82611ae7565b604082019050919050565b60006020820190508181036000830152611b7281611b36565b9050919050565b7f74726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b6000611baf60148361123a565b9150611bba82611b79565b602082019050919050565b60006020820190508181036000830152611bde81611ba2565b9050919050565b7f6d61782077616c6c657420627265616368656400000000000000000000000000600082015250565b6000611c1b60138361123a565b9150611c2682611be5565b602082019050919050565b60006020820190508181036000830152611c4a81611c0e565b905091905056fea26469706673582212201f9fbdae350c08f74f8eb8e8b05af6549809fc38cca5b6e3279a1ad407bf25fa64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063860a32ec116100a2578063a457c2d711610071578063a457c2d7146102d3578063a9059cbb14610303578063dd62ed3e14610333578063f2fde38b14610363578063f8b45b051461037f57610116565b8063860a32ec1461025d5780638d99ff211461027b5780638da5cb5b1461029757806395d89b41146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806349bd5a5e1461020557806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039d565b60405161013091906112bf565b60405180910390f35b610153600480360381019061014e919061137a565b61042f565b60405161016091906113d5565b60405180910390f35b61017161044d565b60405161017e91906113ff565b60405180910390f35b6101a1600480360381019061019c919061141a565b610457565b6040516101ae91906113d5565b60405180910390f35b6101bf61054f565b6040516101cc9190611489565b60405180910390f35b6101ef60048036038101906101ea919061137a565b610558565b6040516101fc91906113d5565b60405180910390f35b61020d610604565b60405161021a91906114b3565b60405180910390f35b61023d600480360381019061023891906114ce565b61062a565b60405161024a91906113ff565b60405180910390f35b61025b610673565b005b6102656106fb565b60405161027291906113d5565b60405180910390f35b61029560048036038101906102909190611527565b61070e565b005b61029f6107f1565b6040516102ac91906114b3565b60405180910390f35b6102bd61081a565b6040516102ca91906112bf565b60405180910390f35b6102ed60048036038101906102e8919061137a565b6108ac565b6040516102fa91906113d5565b60405180910390f35b61031d6004803603810190610318919061137a565b610997565b60405161032a91906113d5565b60405180910390f35b61034d6004803603810190610348919061157a565b6109b5565b60405161035a91906113ff565b60405180910390f35b61037d600480360381019061037891906114ce565b610a3c565b005b610387610b33565b60405161039491906113ff565b60405180910390f35b6060600480546103ac906115e9565b80601f01602080910402602001604051908101604052809291908181526020018280546103d8906115e9565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b600061044361043c610b39565b8484610b41565b6001905092915050565b6000600354905090565b6000610464848484610d0a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104af610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561052f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105269061168c565b60405180910390fd5b6105438561053b610b39565b858403610b41565b60019150509392505050565b60006012905090565b60006105fa610565610b39565b848460026000610573610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105f591906116db565b610b41565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61067b610b39565b73ffffffffffffffffffffffffffffffffffffffff166106996107f1565b73ffffffffffffffffffffffffffffffffffffffff16146106ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e69061175b565b60405180910390fd5b6106f96000610f8c565b565b600660009054906101000a900460ff1681565b610716610b39565b73ffffffffffffffffffffffffffffffffffffffff166107346107f1565b73ffffffffffffffffffffffffffffffffffffffff161461078a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107819061175b565b60405180910390fd5b82600660006101000a81548160ff02191690831515021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610829906115e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610855906115e9565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b600080600260006108bb610b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f906117ed565b60405180910390fd5b61098c610983610b39565b85858403610b41565b600191505092915050565b60006109ab6109a4610b39565b8484610d0a565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a44610b39565b73ffffffffffffffffffffffffffffffffffffffff16610a626107f1565b73ffffffffffffffffffffffffffffffffffffffff1614610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf9061175b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e9061187f565b60405180910390fd5b610b3081610f8c565b50565b60075481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790611911565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906119a3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cfd91906113ff565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090611a35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90611ac7565b60405180910390fd5b610df3838383611050565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190611b59565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f0f91906116db565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7391906113ff565b60405180910390a3610f8684848461122a565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361115d576110ae6107f1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061111957506110ea6107f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90611bc5565b60405180910390fd5b611225565b600660009054906101000a900460ff1680156111c65750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561122457600754816111d88461062a565b6111e291906116db565b1115611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90611c31565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561126957808201518184015260208101905061124e565b60008484015250505050565b6000601f19601f8301169050919050565b60006112918261122f565b61129b818561123a565b93506112ab81856020860161124b565b6112b481611275565b840191505092915050565b600060208201905081810360008301526112d98184611286565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611311826112e6565b9050919050565b61132181611306565b811461132c57600080fd5b50565b60008135905061133e81611318565b92915050565b6000819050919050565b61135781611344565b811461136257600080fd5b50565b6000813590506113748161134e565b92915050565b60008060408385031215611391576113906112e1565b5b600061139f8582860161132f565b92505060206113b085828601611365565b9150509250929050565b60008115159050919050565b6113cf816113ba565b82525050565b60006020820190506113ea60008301846113c6565b92915050565b6113f981611344565b82525050565b600060208201905061141460008301846113f0565b92915050565b600080600060608486031215611433576114326112e1565b5b60006114418682870161132f565b93505060206114528682870161132f565b925050604061146386828701611365565b9150509250925092565b600060ff82169050919050565b6114838161146d565b82525050565b600060208201905061149e600083018461147a565b92915050565b6114ad81611306565b82525050565b60006020820190506114c860008301846114a4565b92915050565b6000602082840312156114e4576114e36112e1565b5b60006114f28482850161132f565b91505092915050565b611504816113ba565b811461150f57600080fd5b50565b600081359050611521816114fb565b92915050565b6000806000606084860312156115405761153f6112e1565b5b600061154e86828701611512565b935050602061155f8682870161132f565b925050604061157086828701611365565b9150509250925092565b60008060408385031215611591576115906112e1565b5b600061159f8582860161132f565b92505060206115b08582860161132f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061160157607f821691505b602082108103611614576116136115ba565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061167660288361123a565b91506116818261161a565b604082019050919050565b600060208201905081810360008301526116a581611669565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116e682611344565b91506116f183611344565b9250828201905080821115611709576117086116ac565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061174560208361123a565b91506117508261170f565b602082019050919050565b6000602082019050818103600083015261177481611738565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117d760258361123a565b91506117e28261177b565b604082019050919050565b60006020820190508181036000830152611806816117ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061186960268361123a565b91506118748261180d565b604082019050919050565b600060208201905081810360008301526118988161185c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118fb60248361123a565b91506119068261189f565b604082019050919050565b6000602082019050818103600083015261192a816118ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061198d60228361123a565b915061199882611931565b604082019050919050565b600060208201905081810360008301526119bc81611980565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a1f60258361123a565b9150611a2a826119c3565b604082019050919050565b60006020820190508181036000830152611a4e81611a12565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab160238361123a565b9150611abc82611a55565b604082019050919050565b60006020820190508181036000830152611ae081611aa4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b4360268361123a565b9150611b4e82611ae7565b604082019050919050565b60006020820190508181036000830152611b7281611b36565b9050919050565b7f74726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b6000611baf60148361123a565b9150611bba82611b79565b602082019050919050565b60006020820190508181036000830152611bde81611ba2565b9050919050565b7f6d61782077616c6c657420627265616368656400000000000000000000000000600082015250565b6000611c1b60138361123a565b9150611c2682611be5565b602082019050919050565b60006020820190508181036000830152611c4a81611c0e565b905091905056fea26469706673582212201f9fbdae350c08f74f8eb8e8b05af6549809fc38cca5b6e3279a1ad407bf25fa64736f6c63430008120033

Deployed Bytecode Sourcemap

18504:926:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8543:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10710:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9663:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11361:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9505:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12262:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18605:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9834:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2455:103;;;:::i;:::-;;18548:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18763:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1804:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8762:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12980:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10174:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10412:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2713:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18574:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8543:100;8597:13;8630:5;8623:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8543:100;:::o;10710:169::-;10793:4;10810:39;10819:12;:10;:12::i;:::-;10833:7;10842:6;10810:8;:39::i;:::-;10867:4;10860:11;;10710:169;;;;:::o;9663:108::-;9724:7;9751:12;;9744:19;;9663:108;:::o;11361:492::-;11501:4;11518:36;11528:6;11536:9;11547:6;11518:9;:36::i;:::-;11567:24;11594:11;:19;11606:6;11594:19;;;;;;;;;;;;;;;:33;11614:12;:10;:12::i;:::-;11594:33;;;;;;;;;;;;;;;;11567:60;;11666:6;11646:16;:26;;11638:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11753:57;11762:6;11770:12;:10;:12::i;:::-;11803:6;11784:16;:25;11753:8;:57::i;:::-;11841:4;11834:11;;;11361:492;;;;;:::o;9505:93::-;9563:5;9588:2;9581:9;;9505:93;:::o;12262:215::-;12350:4;12367:80;12376:12;:10;:12::i;:::-;12390:7;12436:10;12399:11;:25;12411:12;:10;:12::i;:::-;12399:25;;;;;;;;;;;;;;;:34;12425:7;12399:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12367:8;:80::i;:::-;12465:4;12458:11;;12262:215;;;;:::o;18605:28::-;;;;;;;;;;;;;:::o;9834:127::-;9908:7;9935:9;:18;9945:7;9935:18;;;;;;;;;;;;;;;;9928:25;;9834:127;;;:::o;2455:103::-;2035:12;:10;:12::i;:::-;2024:23;;:7;:5;:7::i;:::-;:23;;;2016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2520:30:::1;2547:1;2520:18;:30::i;:::-;2455:103::o:0;18548:19::-;;;;;;;;;;;;;:::o;18763:212::-;2035:12;:10;:12::i;:::-;2024:23;;:7;:5;:7::i;:::-;:23;;;2016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18885:8:::1;18875:7;;:18;;;;;;;;;;;;;;;;;;18920:14;18904:13;;:30;;;;;;;;;;;;;;;;;;18957:10;18945:9;:22;;;;18763:212:::0;;;:::o;1804:87::-;1850:7;1877:6;;;;;;;;;;;1870:13;;1804:87;:::o;8762:104::-;8818:13;8851:7;8844:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8762:104;:::o;12980:413::-;13073:4;13090:24;13117:11;:25;13129:12;:10;:12::i;:::-;13117:25;;;;;;;;;;;;;;;:34;13143:7;13117:34;;;;;;;;;;;;;;;;13090:61;;13190:15;13170:16;:35;;13162:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13283:67;13292:12;:10;:12::i;:::-;13306:7;13334:15;13315:16;:34;13283:8;:67::i;:::-;13381:4;13374:11;;;12980:413;;;;:::o;10174:175::-;10260:4;10277:42;10287:12;:10;:12::i;:::-;10301:9;10312:6;10277:9;:42::i;:::-;10337:4;10330:11;;10174:175;;;;:::o;10412:151::-;10501:7;10528:11;:18;10540:5;10528:18;;;;;;;;;;;;;;;:27;10547:7;10528:27;;;;;;;;;;;;;;;;10521:34;;10412:151;;;;:::o;2713:201::-;2035:12;:10;:12::i;:::-;2024:23;;:7;:5;:7::i;:::-;:23;;;2016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2822:1:::1;2802:22;;:8;:22;;::::0;2794:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2878:28;2897:8;2878:18;:28::i;:::-;2713:201:::0;:::o;18574:24::-;;;;:::o;671:98::-;724:7;751:10;744:17;;671:98;:::o;16664:380::-;16817:1;16800:19;;:5;:19;;;16792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16898:1;16879:21;;:7;:21;;;16871:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16982:6;16952:11;:18;16964:5;16952:18;;;;;;;;;;;;;;;:27;16971:7;16952:27;;;;;;;;;;;;;;;:36;;;;17020:7;17004:32;;17013:5;17004:32;;;17029:6;17004:32;;;;;;:::i;:::-;;;;;;;;16664:380;;;:::o;13883:733::-;14041:1;14023:20;;:6;:20;;;14015:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14125:1;14104:23;;:9;:23;;;14096:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14180:47;14201:6;14209:9;14220:6;14180:20;:47::i;:::-;14240:21;14264:9;:17;14274:6;14264:17;;;;;;;;;;;;;;;;14240:41;;14317:6;14300:13;:23;;14292:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14438:6;14422:13;:22;14402:9;:17;14412:6;14402:17;;;;;;;;;;;;;;;:42;;;;14490:6;14466:9;:20;14476:9;14466:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14531:9;14514:35;;14523:6;14514:35;;;14542:6;14514:35;;;;;;:::i;:::-;;;;;;;;14562:46;14582:6;14590:9;14601:6;14562:19;:46::i;:::-;14004:612;13883:733;;;:::o;3074:191::-;3148:16;3167:6;;;;;;;;;;;3148:25;;3193:8;3184:6;;:17;;;;;;;;;;;;;;;;;;3248:8;3217:40;;3238:8;3217:40;;;;;;;;;;;;3137:128;3074:191;:::o;18983:442::-;19157:1;19132:27;;:13;;;;;;;;;;;:27;;;19128:146;;19192:7;:5;:7::i;:::-;19184:15;;:4;:15;;;:32;;;;19209:7;:5;:7::i;:::-;19203:13;;:2;:13;;;19184:32;19176:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;19256:7;;19128:146;19290:7;;;;;;;;;;;:32;;;;;19309:13;;;;;;;;;;;19301:21;;:4;:21;;;19290:32;19286:132;;;19373:9;;19363:6;19347:13;19357:2;19347:9;:13::i;:::-;:22;;;;:::i;:::-;:35;;19339:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19286:132;18983:442;;;;:::o;18373: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: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:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:116::-;5610:21;5625:5;5610:21;:::i;:::-;5603:5;5600:32;5590:60;;5646:1;5643;5636:12;5590:60;5540:116;:::o;5662:133::-;5705:5;5743:6;5730:20;5721:29;;5759:30;5783:5;5759:30;:::i;:::-;5662:133;;;;:::o;5801:613::-;5875:6;5883;5891;5940:2;5928:9;5919:7;5915:23;5911:32;5908:119;;;5946:79;;:::i;:::-;5908:119;6066:1;6091:50;6133:7;6124:6;6113:9;6109:22;6091:50;:::i;:::-;6081:60;;6037:114;6190:2;6216:53;6261:7;6252:6;6241:9;6237:22;6216:53;:::i;:::-;6206:63;;6161:118;6318:2;6344:53;6389:7;6380:6;6369:9;6365:22;6344:53;:::i;:::-;6334:63;;6289:118;5801:613;;;;;:::o;6420:474::-;6488:6;6496;6545:2;6533:9;6524:7;6520:23;6516:32;6513:119;;;6551:79;;:::i;:::-;6513:119;6671:1;6696:53;6741:7;6732:6;6721:9;6717:22;6696:53;:::i;:::-;6686:63;;6642:117;6798:2;6824:53;6869:7;6860:6;6849:9;6845:22;6824:53;:::i;:::-;6814:63;;6769:118;6420:474;;;;;:::o;6900:180::-;6948:77;6945:1;6938:88;7045:4;7042:1;7035:15;7069:4;7066:1;7059:15;7086:320;7130:6;7167:1;7161:4;7157:12;7147:22;;7214:1;7208:4;7204:12;7235:18;7225:81;;7291:4;7283:6;7279:17;7269:27;;7225:81;7353:2;7345:6;7342:14;7322:18;7319:38;7316:84;;7372:18;;:::i;:::-;7316:84;7137:269;7086:320;;;:::o;7412:227::-;7552:34;7548:1;7540:6;7536:14;7529:58;7621:10;7616:2;7608:6;7604:15;7597:35;7412:227;:::o;7645:366::-;7787:3;7808:67;7872:2;7867:3;7808:67;:::i;:::-;7801:74;;7884:93;7973:3;7884:93;:::i;:::-;8002:2;7997:3;7993:12;7986:19;;7645:366;;;:::o;8017:419::-;8183:4;8221:2;8210:9;8206:18;8198:26;;8270:9;8264:4;8260:20;8256:1;8245:9;8241:17;8234:47;8298:131;8424:4;8298:131;:::i;:::-;8290:139;;8017:419;;;:::o;8442:180::-;8490:77;8487:1;8480:88;8587:4;8584:1;8577:15;8611:4;8608:1;8601:15;8628:191;8668:3;8687:20;8705:1;8687:20;:::i;:::-;8682:25;;8721:20;8739:1;8721:20;:::i;:::-;8716:25;;8764:1;8761;8757:9;8750:16;;8785:3;8782:1;8779:10;8776:36;;;8792:18;;:::i;:::-;8776:36;8628:191;;;;:::o;8825:182::-;8965:34;8961:1;8953:6;8949:14;8942:58;8825:182;:::o;9013:366::-;9155:3;9176:67;9240:2;9235:3;9176:67;:::i;:::-;9169:74;;9252:93;9341:3;9252:93;:::i;:::-;9370:2;9365:3;9361:12;9354:19;;9013:366;;;:::o;9385:419::-;9551:4;9589:2;9578:9;9574:18;9566:26;;9638:9;9632:4;9628:20;9624:1;9613:9;9609:17;9602:47;9666:131;9792:4;9666:131;:::i;:::-;9658:139;;9385:419;;;:::o;9810:224::-;9950:34;9946:1;9938:6;9934:14;9927:58;10019:7;10014:2;10006:6;10002:15;9995:32;9810:224;:::o;10040:366::-;10182:3;10203:67;10267:2;10262:3;10203:67;:::i;:::-;10196:74;;10279:93;10368:3;10279:93;:::i;:::-;10397:2;10392:3;10388:12;10381:19;;10040:366;;;:::o;10412:419::-;10578:4;10616:2;10605:9;10601:18;10593:26;;10665:9;10659:4;10655:20;10651:1;10640:9;10636:17;10629:47;10693:131;10819:4;10693:131;:::i;:::-;10685:139;;10412:419;;;:::o;10837:225::-;10977:34;10973:1;10965:6;10961:14;10954:58;11046:8;11041:2;11033:6;11029:15;11022:33;10837:225;:::o;11068:366::-;11210:3;11231:67;11295:2;11290:3;11231:67;:::i;:::-;11224:74;;11307:93;11396:3;11307:93;:::i;:::-;11425:2;11420:3;11416:12;11409:19;;11068:366;;;:::o;11440:419::-;11606:4;11644:2;11633:9;11629:18;11621:26;;11693:9;11687:4;11683:20;11679:1;11668:9;11664:17;11657:47;11721:131;11847:4;11721:131;:::i;:::-;11713:139;;11440:419;;;:::o;11865:223::-;12005:34;12001:1;11993:6;11989:14;11982:58;12074:6;12069:2;12061:6;12057:15;12050:31;11865:223;:::o;12094:366::-;12236:3;12257:67;12321:2;12316:3;12257:67;:::i;:::-;12250:74;;12333:93;12422:3;12333:93;:::i;:::-;12451:2;12446:3;12442:12;12435:19;;12094:366;;;:::o;12466:419::-;12632:4;12670:2;12659:9;12655:18;12647:26;;12719:9;12713:4;12709:20;12705:1;12694:9;12690:17;12683:47;12747:131;12873:4;12747:131;:::i;:::-;12739:139;;12466:419;;;:::o;12891:221::-;13031:34;13027:1;13019:6;13015:14;13008:58;13100:4;13095:2;13087:6;13083:15;13076:29;12891:221;:::o;13118:366::-;13260:3;13281:67;13345:2;13340:3;13281:67;:::i;:::-;13274:74;;13357:93;13446:3;13357:93;:::i;:::-;13475:2;13470:3;13466:12;13459:19;;13118:366;;;:::o;13490:419::-;13656:4;13694:2;13683:9;13679:18;13671:26;;13743:9;13737:4;13733:20;13729:1;13718:9;13714:17;13707:47;13771:131;13897:4;13771:131;:::i;:::-;13763:139;;13490:419;;;:::o;13915:224::-;14055:34;14051:1;14043:6;14039:14;14032:58;14124:7;14119:2;14111:6;14107:15;14100:32;13915:224;:::o;14145:366::-;14287:3;14308:67;14372:2;14367:3;14308:67;:::i;:::-;14301:74;;14384:93;14473:3;14384:93;:::i;:::-;14502:2;14497:3;14493:12;14486:19;;14145:366;;;:::o;14517:419::-;14683:4;14721:2;14710:9;14706:18;14698:26;;14770:9;14764:4;14760:20;14756:1;14745:9;14741:17;14734:47;14798:131;14924:4;14798:131;:::i;:::-;14790:139;;14517:419;;;:::o;14942:222::-;15082:34;15078:1;15070:6;15066:14;15059:58;15151:5;15146:2;15138:6;15134:15;15127:30;14942:222;:::o;15170:366::-;15312:3;15333:67;15397:2;15392:3;15333:67;:::i;:::-;15326:74;;15409:93;15498:3;15409:93;:::i;:::-;15527:2;15522:3;15518:12;15511:19;;15170:366;;;:::o;15542:419::-;15708:4;15746:2;15735:9;15731:18;15723:26;;15795:9;15789:4;15785:20;15781:1;15770:9;15766:17;15759:47;15823:131;15949:4;15823:131;:::i;:::-;15815:139;;15542:419;;;:::o;15967:225::-;16107:34;16103:1;16095:6;16091:14;16084:58;16176:8;16171:2;16163:6;16159:15;16152:33;15967:225;:::o;16198:366::-;16340:3;16361:67;16425:2;16420:3;16361:67;:::i;:::-;16354:74;;16437:93;16526:3;16437:93;:::i;:::-;16555:2;16550:3;16546:12;16539:19;;16198:366;;;:::o;16570:419::-;16736:4;16774:2;16763:9;16759:18;16751:26;;16823:9;16817:4;16813:20;16809:1;16798:9;16794:17;16787:47;16851:131;16977:4;16851:131;:::i;:::-;16843:139;;16570:419;;;:::o;16995:170::-;17135:22;17131:1;17123:6;17119:14;17112:46;16995:170;:::o;17171:366::-;17313:3;17334:67;17398:2;17393:3;17334:67;:::i;:::-;17327:74;;17410:93;17499:3;17410:93;:::i;:::-;17528:2;17523:3;17519:12;17512:19;;17171:366;;;:::o;17543:419::-;17709:4;17747:2;17736:9;17732:18;17724:26;;17796:9;17790:4;17786:20;17782:1;17771:9;17767:17;17760:47;17824:131;17950:4;17824:131;:::i;:::-;17816:139;;17543:419;;;:::o;17968:169::-;18108:21;18104:1;18096:6;18092:14;18085:45;17968:169;:::o;18143:366::-;18285:3;18306:67;18370:2;18365:3;18306:67;:::i;:::-;18299:74;;18382:93;18471:3;18382:93;:::i;:::-;18500:2;18495:3;18491:12;18484:19;;18143:366;;;:::o;18515:419::-;18681:4;18719:2;18708:9;18704:18;18696:26;;18768:9;18762:4;18758:20;18754:1;18743:9;18739:17;18732:47;18796:131;18922:4;18796:131;:::i;:::-;18788:139;;18515:419;;;:::o

Swarm Source

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