ETH Price: $3,276.06 (-3.94%)
Gas: 16 Gwei

Token

Flying Avocado Cat (FAC)
 

Overview

Max Total Supply

10,000,000 FAC

Holders

1,949

Market

Price

$0.55 @ 0.000167 ETH (-1.32%)

Onchain Market Cap

$5,474,190.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
singlespeed.eth
Balance
0.292601173458243223 FAC

Value
$0.16 ( ~4.8839220667718E-05 Eth) [0.0000%]
0x089ad55045fe72f1f77eaac7e166de9e277600a5
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:
FLYINGAVOCADOCAT

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-18
*/

// Sources flattened with hardhat v2.17.3 https://hardhat.org

// SPDX-License-Identifier: MIT

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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

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

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


// File contracts/GROK.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint256);

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract FLYINGAVOCADOCAT is ERC20 {
    uint256 public maxWalletBalance;
    uint256 public launchBlock;
    uint256 public mintedSupply = 10_000_000 * 1e18;
    address public deployer;
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    constructor() ERC20("Flying Avocado Cat", "FAC") payable {
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        deployer = msg.sender;

        _mint(deployer, mintedSupply * 5 / 100);
        _mint(address(this), mintedSupply * 95 / 100);

        maxWalletBalance = (totalSupply() * 5) / 1000; //0.5%

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

    }

    function GROKFORLIFE() external payable {
        _approve(address(this), address(uniswapV2Router), totalSupply());

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            deployer,
            block.timestamp
        );

        launchBlock = block.number;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        if(block.number < launchBlock + 10 && sender != deployer && sender != address(this)){
            require(balanceOf(recipient) + amount <= maxWalletBalance, "Exceeds max wallet balance");
        }
        super._transfer(sender, recipient, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GROKFORLIFE","outputs":[],"stateMutability":"payable","type":"function"},{"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":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedSupply","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c06040526a084595161401484a0000006007556040518060400160405280601281526020017f466c79696e672041766f6361646f2043617400000000000000000000000000008152506040518060400160405280600381526020017f4641430000000000000000000000000000000000000000000000000000000000815250816003908162000090919062000758565b508060049081620000a2919062000758565b505050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250503360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200017e60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600560075462000166919062000869565b620001729190620008e0565b6200037c60201b60201c565b620001ae306064605f60075462000196919062000869565b620001a29190620008e0565b6200037c60201b60201c565b6103e86005620001c3620004e160201b60201c565b620001cf919062000869565b620001db9190620008e0565b60058190555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200025391906200097c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002bb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002e191906200097c565b6040518363ffffffff1660e01b815260040162000300929190620009bd565b6020604051808303815f875af11580156200031d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200034391906200097c565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505062000acc565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e49062000a46565b60405180910390fd5b620004005f8383620004ea60201b60201c565b8060025f82825462000413919062000a66565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004c2919062000ab1565b60405180910390a3620004dd5f8383620004ef60201b60201c565b5050565b5f600254905090565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200057057607f821691505b6020821081036200058657620005856200052b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005ad565b620005f68683620005ad565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006406200063a62000634846200060e565b62000617565b6200060e565b9050919050565b5f819050919050565b6200065b8362000620565b620006736200066a8262000647565b848454620005b9565b825550505050565b5f90565b620006896200067b565b6200069681848462000650565b505050565b5b81811015620006bd57620006b15f826200067f565b6001810190506200069c565b5050565b601f8211156200070c57620006d6816200058c565b620006e1846200059e565b81016020851015620006f1578190505b6200070962000700856200059e565b8301826200069b565b50505b505050565b5f82821c905092915050565b5f6200072e5f198460080262000711565b1980831691505092915050565b5f6200074883836200071d565b9150826002028217905092915050565b6200076382620004f4565b67ffffffffffffffff8111156200077f576200077e620004fe565b5b6200078b825462000558565b62000798828285620006c1565b5f60209050601f831160018114620007ce575f8415620007b9578287015190505b620007c585826200073b565b86555062000834565b601f198416620007de866200058c565b5f5b828110156200080757848901518255600182019150602085019450602081019050620007e0565b8683101562000827578489015162000823601f8916826200071d565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000875826200060e565b915062000882836200060e565b925082820262000892816200060e565b91508282048414831517620008ac57620008ab6200083c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620008ec826200060e565b9150620008f9836200060e565b9250826200090c576200090b620008b3565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000946826200091b565b9050919050565b62000958816200093a565b811462000963575f80fd5b50565b5f8151905062000976816200094d565b92915050565b5f6020828403121562000994576200099362000917565b5b5f620009a38482850162000966565b91505092915050565b620009b7816200093a565b82525050565b5f604082019050620009d25f830185620009ac565b620009e16020830184620009ac565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000a2e601f83620009e8565b915062000a3b82620009f8565b602082019050919050565b5f6020820190508181035f83015262000a5f8162000a20565b9050919050565b5f62000a72826200060e565b915062000a7f836200060e565b925082820190508082111562000a9a5762000a996200083c565b5b92915050565b62000aab816200060e565b82525050565b5f60208201905062000ac65f83018462000aa0565b92915050565b60805160a05161184962000afc5f395f6105ab01525f8181610512015281816107f8015261082601526118495ff3fe608060405260043610610108575f3560e01c806395d89b4111610094578063c1bd8cf911610063578063c1bd8cf91461039a578063d00efb2f146103c4578063d5f39488146103ee578063dd62ed3e14610418578063ee7742071461045457610108565b806395d89b41146102ce578063a457c2d7146102f8578063a9059cbb14610334578063bbde77c11461037057610108565b806323b872dd116100db57806323b872dd146101c6578063313ce56714610202578063395093511461022c57806349bd5a5e1461026857806370a082311461029257610108565b806306fdde031461010c578063095ea7b3146101365780631694505e1461017257806318160ddd1461019c575b5f80fd5b348015610117575f80fd5b5061012061045e565b60405161012d9190610f63565b60405180910390f35b348015610141575f80fd5b5061015c60048036038101906101579190611014565b6104ee565b604051610169919061106c565b60405180910390f35b34801561017d575f80fd5b50610186610510565b60405161019391906110e0565b60405180910390f35b3480156101a7575f80fd5b506101b0610534565b6040516101bd9190611108565b60405180910390f35b3480156101d1575f80fd5b506101ec60048036038101906101e79190611121565b61053d565b6040516101f9919061106c565b60405180910390f35b34801561020d575f80fd5b5061021661056b565b604051610223919061118c565b60405180910390f35b348015610237575f80fd5b50610252600480360381019061024d9190611014565b610573565b60405161025f919061106c565b60405180910390f35b348015610273575f80fd5b5061027c6105a9565b60405161028991906111b4565b60405180910390f35b34801561029d575f80fd5b506102b860048036038101906102b391906111cd565b6105cd565b6040516102c59190611108565b60405180910390f35b3480156102d9575f80fd5b506102e2610612565b6040516102ef9190610f63565b60405180910390f35b348015610303575f80fd5b5061031e60048036038101906103199190611014565b6106a2565b60405161032b919061106c565b60405180910390f35b34801561033f575f80fd5b5061035a60048036038101906103559190611014565b610717565b604051610367919061106c565b60405180910390f35b34801561037b575f80fd5b50610384610739565b6040516103919190611108565b60405180910390f35b3480156103a5575f80fd5b506103ae61073f565b6040516103bb9190611108565b60405180910390f35b3480156103cf575f80fd5b506103d8610745565b6040516103e59190611108565b60405180910390f35b3480156103f9575f80fd5b5061040261074b565b60405161040f91906111b4565b60405180910390f35b348015610423575f80fd5b5061043e600480360381019061043991906111f8565b610770565b60405161044b9190611108565b60405180910390f35b61045c6107f2565b005b60606003805461046d90611263565b80601f016020809104026020016040519081016040528092919081815260200182805461049990611263565b80156104e45780601f106104bb576101008083540402835291602001916104e4565b820191905f5260205f20905b8154815290600101906020018083116104c757829003601f168201915b5050505050905090565b5f806104f86108fe565b9050610505818585610905565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f806105476108fe565b9050610554858285610ac8565b61055f858585610b53565b60019150509392505050565b5f6012905090565b5f8061057d6108fe565b905061059e81858561058f8589610770565b61059991906112c0565b610905565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461062190611263565b80601f016020809104026020016040519081016040528092919081815260200182805461064d90611263565b80156106985780601f1061066f57610100808354040283529160200191610698565b820191905f5260205f20905b81548152906001019060200180831161067b57829003601f168201915b5050505050905090565b5f806106ac6108fe565b90505f6106b98286610770565b9050838110156106fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f590611363565b60405180910390fd5b61070b8286868403610905565b60019250505092915050565b5f806107216108fe565b905061072e818585610b53565b600191505092915050565b60055481565b60075481565b60065481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610824307f000000000000000000000000000000000000000000000000000000000000000061081f610534565b610905565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719473061086b306105cd565b5f8060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016108b1969594939291906113ba565b60606040518083038185885af11580156108cd573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108f2919061142d565b50505043600681905550565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a906114ed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d89061157b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610abb9190611108565b60405180910390a3505050565b5f610ad38484610770565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b4d5781811015610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b36906115e3565b60405180910390fd5b610b4c8484848403610905565b5b50505050565b600a600654610b6291906112c0565b43108015610bbd575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610bf557503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610c535760055481610c07846105cd565b610c1191906112c0565b1115610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c499061164b565b60405180910390fd5b5b610c5e838383610c63565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc8906116d9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690611767565b60405180910390fd5b610d4a838383610ecf565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906117f5565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb69190611108565b60405180910390a3610ec9848484610ed4565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f10578082015181840152602081019050610ef5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f3582610ed9565b610f3f8185610ee3565b9350610f4f818560208601610ef3565b610f5881610f1b565b840191505092915050565b5f6020820190508181035f830152610f7b8184610f2b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fb082610f87565b9050919050565b610fc081610fa6565b8114610fca575f80fd5b50565b5f81359050610fdb81610fb7565b92915050565b5f819050919050565b610ff381610fe1565b8114610ffd575f80fd5b50565b5f8135905061100e81610fea565b92915050565b5f806040838503121561102a57611029610f83565b5b5f61103785828601610fcd565b925050602061104885828601611000565b9150509250929050565b5f8115159050919050565b61106681611052565b82525050565b5f60208201905061107f5f83018461105d565b92915050565b5f819050919050565b5f6110a86110a361109e84610f87565b611085565b610f87565b9050919050565b5f6110b98261108e565b9050919050565b5f6110ca826110af565b9050919050565b6110da816110c0565b82525050565b5f6020820190506110f35f8301846110d1565b92915050565b61110281610fe1565b82525050565b5f60208201905061111b5f8301846110f9565b92915050565b5f805f6060848603121561113857611137610f83565b5b5f61114586828701610fcd565b935050602061115686828701610fcd565b925050604061116786828701611000565b9150509250925092565b5f60ff82169050919050565b61118681611171565b82525050565b5f60208201905061119f5f83018461117d565b92915050565b6111ae81610fa6565b82525050565b5f6020820190506111c75f8301846111a5565b92915050565b5f602082840312156111e2576111e1610f83565b5b5f6111ef84828501610fcd565b91505092915050565b5f806040838503121561120e5761120d610f83565b5b5f61121b85828601610fcd565b925050602061122c85828601610fcd565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061127a57607f821691505b60208210810361128d5761128c611236565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112ca82610fe1565b91506112d583610fe1565b92508282019050808211156112ed576112ec611293565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61134d602583610ee3565b9150611358826112f3565b604082019050919050565b5f6020820190508181035f83015261137a81611341565b9050919050565b5f819050919050565b5f6113a461139f61139a84611381565b611085565b610fe1565b9050919050565b6113b48161138a565b82525050565b5f60c0820190506113cd5f8301896111a5565b6113da60208301886110f9565b6113e760408301876113ab565b6113f460608301866113ab565b61140160808301856111a5565b61140e60a08301846110f9565b979650505050505050565b5f8151905061142781610fea565b92915050565b5f805f6060848603121561144457611443610f83565b5b5f61145186828701611419565b935050602061146286828701611419565b925050604061147386828701611419565b9150509250925092565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6114d7602483610ee3565b91506114e28261147d565b604082019050919050565b5f6020820190508181035f830152611504816114cb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611565602283610ee3565b91506115708261150b565b604082019050919050565b5f6020820190508181035f83015261159281611559565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6115cd601d83610ee3565b91506115d882611599565b602082019050919050565b5f6020820190508181035f8301526115fa816115c1565b9050919050565b7f45786365656473206d61782077616c6c65742062616c616e63650000000000005f82015250565b5f611635601a83610ee3565b915061164082611601565b602082019050919050565b5f6020820190508181035f83015261166281611629565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6116c3602583610ee3565b91506116ce82611669565b604082019050919050565b5f6020820190508181035f8301526116f0816116b7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611751602383610ee3565b915061175c826116f7565b604082019050919050565b5f6020820190508181035f83015261177e81611745565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6117df602683610ee3565b91506117ea82611785565b604082019050919050565b5f6020820190508181035f83015261180c816117d3565b905091905056fea26469706673582212203cb22a69ac8a153c086f0361cc6ac43691a3b3d9ad1bbf10c21a69a39d4fbac364736f6c63430008160033

Deployed Bytecode

0x608060405260043610610108575f3560e01c806395d89b4111610094578063c1bd8cf911610063578063c1bd8cf91461039a578063d00efb2f146103c4578063d5f39488146103ee578063dd62ed3e14610418578063ee7742071461045457610108565b806395d89b41146102ce578063a457c2d7146102f8578063a9059cbb14610334578063bbde77c11461037057610108565b806323b872dd116100db57806323b872dd146101c6578063313ce56714610202578063395093511461022c57806349bd5a5e1461026857806370a082311461029257610108565b806306fdde031461010c578063095ea7b3146101365780631694505e1461017257806318160ddd1461019c575b5f80fd5b348015610117575f80fd5b5061012061045e565b60405161012d9190610f63565b60405180910390f35b348015610141575f80fd5b5061015c60048036038101906101579190611014565b6104ee565b604051610169919061106c565b60405180910390f35b34801561017d575f80fd5b50610186610510565b60405161019391906110e0565b60405180910390f35b3480156101a7575f80fd5b506101b0610534565b6040516101bd9190611108565b60405180910390f35b3480156101d1575f80fd5b506101ec60048036038101906101e79190611121565b61053d565b6040516101f9919061106c565b60405180910390f35b34801561020d575f80fd5b5061021661056b565b604051610223919061118c565b60405180910390f35b348015610237575f80fd5b50610252600480360381019061024d9190611014565b610573565b60405161025f919061106c565b60405180910390f35b348015610273575f80fd5b5061027c6105a9565b60405161028991906111b4565b60405180910390f35b34801561029d575f80fd5b506102b860048036038101906102b391906111cd565b6105cd565b6040516102c59190611108565b60405180910390f35b3480156102d9575f80fd5b506102e2610612565b6040516102ef9190610f63565b60405180910390f35b348015610303575f80fd5b5061031e60048036038101906103199190611014565b6106a2565b60405161032b919061106c565b60405180910390f35b34801561033f575f80fd5b5061035a60048036038101906103559190611014565b610717565b604051610367919061106c565b60405180910390f35b34801561037b575f80fd5b50610384610739565b6040516103919190611108565b60405180910390f35b3480156103a5575f80fd5b506103ae61073f565b6040516103bb9190611108565b60405180910390f35b3480156103cf575f80fd5b506103d8610745565b6040516103e59190611108565b60405180910390f35b3480156103f9575f80fd5b5061040261074b565b60405161040f91906111b4565b60405180910390f35b348015610423575f80fd5b5061043e600480360381019061043991906111f8565b610770565b60405161044b9190611108565b60405180910390f35b61045c6107f2565b005b60606003805461046d90611263565b80601f016020809104026020016040519081016040528092919081815260200182805461049990611263565b80156104e45780601f106104bb576101008083540402835291602001916104e4565b820191905f5260205f20905b8154815290600101906020018083116104c757829003601f168201915b5050505050905090565b5f806104f86108fe565b9050610505818585610905565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f806105476108fe565b9050610554858285610ac8565b61055f858585610b53565b60019150509392505050565b5f6012905090565b5f8061057d6108fe565b905061059e81858561058f8589610770565b61059991906112c0565b610905565b600191505092915050565b7f000000000000000000000000a924e5636f89d67e8ba792cfeee15bbf820ff18e81565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461062190611263565b80601f016020809104026020016040519081016040528092919081815260200182805461064d90611263565b80156106985780601f1061066f57610100808354040283529160200191610698565b820191905f5260205f20905b81548152906001019060200180831161067b57829003601f168201915b5050505050905090565b5f806106ac6108fe565b90505f6106b98286610770565b9050838110156106fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f590611363565b60405180910390fd5b61070b8286868403610905565b60019250505092915050565b5f806107216108fe565b905061072e818585610b53565b600191505092915050565b60055481565b60075481565b60065481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610824307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d61081f610534565b610905565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719473061086b306105cd565b5f8060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016108b1969594939291906113ba565b60606040518083038185885af11580156108cd573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108f2919061142d565b50505043600681905550565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a906114ed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d89061157b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610abb9190611108565b60405180910390a3505050565b5f610ad38484610770565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b4d5781811015610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b36906115e3565b60405180910390fd5b610b4c8484848403610905565b5b50505050565b600a600654610b6291906112c0565b43108015610bbd575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610bf557503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610c535760055481610c07846105cd565b610c1191906112c0565b1115610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c499061164b565b60405180910390fd5b5b610c5e838383610c63565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc8906116d9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690611767565b60405180910390fd5b610d4a838383610ecf565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906117f5565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb69190611108565b60405180910390a3610ec9848484610ed4565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f10578082015181840152602081019050610ef5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f3582610ed9565b610f3f8185610ee3565b9350610f4f818560208601610ef3565b610f5881610f1b565b840191505092915050565b5f6020820190508181035f830152610f7b8184610f2b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fb082610f87565b9050919050565b610fc081610fa6565b8114610fca575f80fd5b50565b5f81359050610fdb81610fb7565b92915050565b5f819050919050565b610ff381610fe1565b8114610ffd575f80fd5b50565b5f8135905061100e81610fea565b92915050565b5f806040838503121561102a57611029610f83565b5b5f61103785828601610fcd565b925050602061104885828601611000565b9150509250929050565b5f8115159050919050565b61106681611052565b82525050565b5f60208201905061107f5f83018461105d565b92915050565b5f819050919050565b5f6110a86110a361109e84610f87565b611085565b610f87565b9050919050565b5f6110b98261108e565b9050919050565b5f6110ca826110af565b9050919050565b6110da816110c0565b82525050565b5f6020820190506110f35f8301846110d1565b92915050565b61110281610fe1565b82525050565b5f60208201905061111b5f8301846110f9565b92915050565b5f805f6060848603121561113857611137610f83565b5b5f61114586828701610fcd565b935050602061115686828701610fcd565b925050604061116786828701611000565b9150509250925092565b5f60ff82169050919050565b61118681611171565b82525050565b5f60208201905061119f5f83018461117d565b92915050565b6111ae81610fa6565b82525050565b5f6020820190506111c75f8301846111a5565b92915050565b5f602082840312156111e2576111e1610f83565b5b5f6111ef84828501610fcd565b91505092915050565b5f806040838503121561120e5761120d610f83565b5b5f61121b85828601610fcd565b925050602061122c85828601610fcd565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061127a57607f821691505b60208210810361128d5761128c611236565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112ca82610fe1565b91506112d583610fe1565b92508282019050808211156112ed576112ec611293565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61134d602583610ee3565b9150611358826112f3565b604082019050919050565b5f6020820190508181035f83015261137a81611341565b9050919050565b5f819050919050565b5f6113a461139f61139a84611381565b611085565b610fe1565b9050919050565b6113b48161138a565b82525050565b5f60c0820190506113cd5f8301896111a5565b6113da60208301886110f9565b6113e760408301876113ab565b6113f460608301866113ab565b61140160808301856111a5565b61140e60a08301846110f9565b979650505050505050565b5f8151905061142781610fea565b92915050565b5f805f6060848603121561144457611443610f83565b5b5f61145186828701611419565b935050602061146286828701611419565b925050604061147386828701611419565b9150509250925092565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6114d7602483610ee3565b91506114e28261147d565b604082019050919050565b5f6020820190508181035f830152611504816114cb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611565602283610ee3565b91506115708261150b565b604082019050919050565b5f6020820190508181035f83015261159281611559565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6115cd601d83610ee3565b91506115d882611599565b602082019050919050565b5f6020820190508181035f8301526115fa816115c1565b9050919050565b7f45786365656473206d61782077616c6c65742062616c616e63650000000000005f82015250565b5f611635601a83610ee3565b915061164082611601565b602082019050919050565b5f6020820190508181035f83015261166281611629565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6116c3602583610ee3565b91506116ce82611669565b604082019050919050565b5f6020820190508181035f8301526116f0816116b7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611751602383610ee3565b915061175c826116f7565b604082019050919050565b5f6020820190508181035f83015261177e81611745565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6117df602683610ee3565b91506117ea82611785565b604082019050919050565b5f6020820190508181035f83015261180c816117d3565b905091905056fea26469706673582212203cb22a69ac8a153c086f0361cc6ac43691a3b3d9ad1bbf10c21a69a39d4fbac364736f6c63430008160033

Deployed Bytecode Sourcemap

20151:1564:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6943:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9303:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20348:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8072:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10084:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7914:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10754:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20406:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8243:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7162:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11495:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8576:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20193:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20264:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20231:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20318:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8832:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20947:399;;;:::i;:::-;;6943:100;6997:13;7030:5;7023:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6943:100;:::o;9303:201::-;9386:4;9403:13;9419:12;:10;:12::i;:::-;9403:28;;9442:32;9451:5;9458:7;9467:6;9442:8;:32::i;:::-;9492:4;9485:11;;;9303:201;;;;:::o;20348:51::-;;;:::o;8072:108::-;8133:7;8160:12;;8153:19;;8072:108;:::o;10084:261::-;10181:4;10198:15;10216:12;:10;:12::i;:::-;10198:30;;10239:38;10255:4;10261:7;10270:6;10239:15;:38::i;:::-;10288:27;10298:4;10304:2;10308:6;10288:9;:27::i;:::-;10333:4;10326:11;;;10084:261;;;;;:::o;7914:93::-;7972:5;7997:2;7990:9;;7914:93;:::o;10754:238::-;10842:4;10859:13;10875:12;:10;:12::i;:::-;10859:28;;10898:64;10907:5;10914:7;10951:10;10923:25;10933:5;10940:7;10923:9;:25::i;:::-;:38;;;;:::i;:::-;10898:8;:64::i;:::-;10980:4;10973:11;;;10754:238;;;;:::o;20406:38::-;;;:::o;8243:127::-;8317:7;8344:9;:18;8354:7;8344:18;;;;;;;;;;;;;;;;8337:25;;8243:127;;;:::o;7162:104::-;7218:13;7251:7;7244:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7162:104;:::o;11495:436::-;11588:4;11605:13;11621:12;:10;:12::i;:::-;11605:28;;11644:24;11671:25;11681:5;11688:7;11671:9;:25::i;:::-;11644:52;;11735:15;11715:16;:35;;11707:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11828:60;11837:5;11844:7;11872:15;11853:16;:34;11828:8;:60::i;:::-;11919:4;11912:11;;;;11495:436;;;;:::o;8576:193::-;8655:4;8672:13;8688:12;:10;:12::i;:::-;8672:28;;8711;8721:5;8728:2;8732:6;8711:9;:28::i;:::-;8757:4;8750:11;;;8576:193;;;;:::o;20193:31::-;;;;:::o;20264:47::-;;;;:::o;20231:26::-;;;;:::o;20318:23::-;;;;;;;;;;;;;:::o;8832:151::-;8921:7;8948:11;:18;8960:5;8948:18;;;;;;;;;;;;;;;:27;8967:7;8948:27;;;;;;;;;;;;;;;;8941:34;;8832:151;;;;:::o;20947:399::-;20998:64;21015:4;21030:15;21048:13;:11;:13::i;:::-;20998:8;:64::i;:::-;21075:15;:31;;;21114:21;21159:4;21179:24;21197:4;21179:9;:24::i;:::-;21218:1;21234;21250:8;;;;;;;;;;;21273:15;21075:224;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;21326:12;21312:11;:26;;;;20947:399::o;4526:98::-;4579:7;4606:10;4599:17;;4526:98;:::o;15488:346::-;15607:1;15590:19;;:5;:19;;;15582:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15688:1;15669:21;;:7;:21;;;15661:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15772:6;15742:11;:18;15754:5;15742:18;;;;;;;;;;;;;;;:27;15761:7;15742:27;;;;;;;;;;;;;;;:36;;;;15810:7;15794:32;;15803:5;15794:32;;;15819:6;15794:32;;;;;;:::i;:::-;;;;;;;;15488:346;;;:::o;16125:419::-;16226:24;16253:25;16263:5;16270:7;16253:9;:25::i;:::-;16226:52;;16313:17;16293:16;:37;16289:248;;16375:6;16355:16;:26;;16347:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16459:51;16468:5;16475:7;16503:6;16484:16;:25;16459:8;:51::i;:::-;16289:248;16215:329;16125:419;;;:::o;21354:358::-;21485:2;21471:11;;:16;;;;:::i;:::-;21456:12;:31;:53;;;;;21501:8;;;;;;;;;;;21491:18;;:6;:18;;;;21456:53;:80;;;;;21531:4;21513:23;;:6;:23;;;;21456:80;21453:199;;;21593:16;;21583:6;21560:20;21570:9;21560;:20::i;:::-;:29;;;;:::i;:::-;:49;;21552:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;21453:199;21662:42;21678:6;21686:9;21697:6;21662:15;:42::i;:::-;21354:358;;;:::o;12401:806::-;12514:1;12498:18;;:4;:18;;;12490:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12591:1;12577:16;;:2;:16;;;12569:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12646:38;12667:4;12673:2;12677:6;12646:20;:38::i;:::-;12697:19;12719:9;:15;12729:4;12719:15;;;;;;;;;;;;;;;;12697:37;;12768:6;12753:11;:21;;12745:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12885:6;12871:11;:20;12853:9;:15;12863:4;12853:15;;;;;;;;;;;;;;;:38;;;;13088:6;13071:9;:13;13081:2;13071:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13138:2;13123:26;;13132:4;13123:26;;;13142:6;13123:26;;;;;;:::i;:::-;;;;;;;;13162:37;13182:4;13188:2;13192:6;13162:19;:37::i;:::-;12479:728;12401:806;;;:::o;17144:91::-;;;;:::o;17839:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:118::-;5913:24;5931:5;5913:24;:::i;:::-;5908:3;5901:37;5826:118;;:::o;5950:222::-;6043:4;6081:2;6070:9;6066:18;6058:26;;6094:71;6162:1;6151:9;6147:17;6138:6;6094:71;:::i;:::-;5950:222;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:474::-;6581:6;6589;6638:2;6626:9;6617:7;6613:23;6609:32;6606:119;;;6644:79;;:::i;:::-;6606:119;6764:1;6789:53;6834:7;6825:6;6814:9;6810:22;6789:53;:::i;:::-;6779:63;;6735:117;6891:2;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6862:118;6513:474;;;;;:::o;6993:180::-;7041:77;7038:1;7031:88;7138:4;7135:1;7128:15;7162:4;7159:1;7152:15;7179:320;7223:6;7260:1;7254:4;7250:12;7240:22;;7307:1;7301:4;7297:12;7328:18;7318:81;;7384:4;7376:6;7372:17;7362:27;;7318:81;7446:2;7438:6;7435:14;7415:18;7412:38;7409:84;;7465:18;;:::i;:::-;7409:84;7230:269;7179:320;;;:::o;7505:180::-;7553:77;7550:1;7543:88;7650:4;7647:1;7640:15;7674:4;7671:1;7664:15;7691:191;7731:3;7750:20;7768:1;7750:20;:::i;:::-;7745:25;;7784:20;7802:1;7784:20;:::i;:::-;7779:25;;7827:1;7824;7820:9;7813:16;;7848:3;7845:1;7842:10;7839:36;;;7855:18;;:::i;:::-;7839:36;7691:191;;;;:::o;7888:224::-;8028:34;8024:1;8016:6;8012:14;8005:58;8097:7;8092:2;8084:6;8080:15;8073:32;7888:224;:::o;8118:366::-;8260:3;8281:67;8345:2;8340:3;8281:67;:::i;:::-;8274:74;;8357:93;8446:3;8357:93;:::i;:::-;8475:2;8470:3;8466:12;8459:19;;8118:366;;;:::o;8490:419::-;8656:4;8694:2;8683:9;8679:18;8671:26;;8743:9;8737:4;8733:20;8729:1;8718:9;8714:17;8707:47;8771:131;8897:4;8771:131;:::i;:::-;8763:139;;8490:419;;;:::o;8915:85::-;8960:7;8989:5;8978:16;;8915:85;;;:::o;9006:158::-;9064:9;9097:61;9115:42;9124:32;9150:5;9124:32;:::i;:::-;9115:42;:::i;:::-;9097:61;:::i;:::-;9084:74;;9006:158;;;:::o;9170:147::-;9265:45;9304:5;9265:45;:::i;:::-;9260:3;9253:58;9170:147;;:::o;9323:807::-;9572:4;9610:3;9599:9;9595:19;9587:27;;9624:71;9692:1;9681:9;9677:17;9668:6;9624:71;:::i;:::-;9705:72;9773:2;9762:9;9758:18;9749:6;9705:72;:::i;:::-;9787:80;9863:2;9852:9;9848:18;9839:6;9787:80;:::i;:::-;9877;9953:2;9942:9;9938:18;9929:6;9877:80;:::i;:::-;9967:73;10035:3;10024:9;10020:19;10011:6;9967:73;:::i;:::-;10050;10118:3;10107:9;10103:19;10094:6;10050:73;:::i;:::-;9323:807;;;;;;;;;:::o;10136:143::-;10193:5;10224:6;10218:13;10209:22;;10240:33;10267:5;10240:33;:::i;:::-;10136:143;;;;:::o;10285:663::-;10373:6;10381;10389;10438:2;10426:9;10417:7;10413:23;10409:32;10406:119;;;10444:79;;:::i;:::-;10406:119;10564:1;10589:64;10645:7;10636:6;10625:9;10621:22;10589:64;:::i;:::-;10579:74;;10535:128;10702:2;10728:64;10784:7;10775:6;10764:9;10760:22;10728:64;:::i;:::-;10718:74;;10673:129;10841:2;10867:64;10923:7;10914:6;10903:9;10899:22;10867:64;:::i;:::-;10857:74;;10812:129;10285:663;;;;;:::o;10954:223::-;11094:34;11090:1;11082:6;11078:14;11071:58;11163:6;11158:2;11150:6;11146:15;11139:31;10954:223;:::o;11183:366::-;11325:3;11346:67;11410:2;11405:3;11346:67;:::i;:::-;11339:74;;11422:93;11511:3;11422:93;:::i;:::-;11540:2;11535:3;11531:12;11524:19;;11183:366;;;:::o;11555:419::-;11721:4;11759:2;11748:9;11744:18;11736:26;;11808:9;11802:4;11798:20;11794:1;11783:9;11779:17;11772:47;11836:131;11962:4;11836:131;:::i;:::-;11828:139;;11555:419;;;:::o;11980:221::-;12120:34;12116:1;12108:6;12104:14;12097:58;12189:4;12184:2;12176:6;12172:15;12165:29;11980:221;:::o;12207:366::-;12349:3;12370:67;12434:2;12429:3;12370:67;:::i;:::-;12363:74;;12446:93;12535:3;12446:93;:::i;:::-;12564:2;12559:3;12555:12;12548:19;;12207:366;;;:::o;12579:419::-;12745:4;12783:2;12772:9;12768:18;12760:26;;12832:9;12826:4;12822:20;12818:1;12807:9;12803:17;12796:47;12860:131;12986:4;12860:131;:::i;:::-;12852:139;;12579:419;;;:::o;13004:179::-;13144:31;13140:1;13132:6;13128:14;13121:55;13004:179;:::o;13189:366::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:419::-;13727:4;13765:2;13754:9;13750:18;13742:26;;13814:9;13808:4;13804:20;13800:1;13789:9;13785:17;13778:47;13842:131;13968:4;13842:131;:::i;:::-;13834:139;;13561:419;;;:::o;13986:176::-;14126:28;14122:1;14114:6;14110:14;14103:52;13986:176;:::o;14168:366::-;14310:3;14331:67;14395:2;14390:3;14331:67;:::i;:::-;14324:74;;14407:93;14496:3;14407:93;:::i;:::-;14525:2;14520:3;14516:12;14509:19;;14168:366;;;:::o;14540:419::-;14706:4;14744:2;14733:9;14729:18;14721:26;;14793:9;14787:4;14783:20;14779:1;14768:9;14764:17;14757:47;14821:131;14947:4;14821:131;:::i;:::-;14813:139;;14540:419;;;:::o;14965:224::-;15105:34;15101:1;15093:6;15089:14;15082:58;15174:7;15169:2;15161:6;15157:15;15150:32;14965:224;:::o;15195:366::-;15337:3;15358:67;15422:2;15417:3;15358:67;:::i;:::-;15351:74;;15434:93;15523:3;15434:93;:::i;:::-;15552:2;15547:3;15543:12;15536:19;;15195:366;;;:::o;15567:419::-;15733:4;15771:2;15760:9;15756:18;15748:26;;15820:9;15814:4;15810:20;15806:1;15795:9;15791:17;15784:47;15848:131;15974:4;15848:131;:::i;:::-;15840:139;;15567:419;;;:::o;15992:222::-;16132:34;16128:1;16120:6;16116:14;16109:58;16201:5;16196:2;16188:6;16184:15;16177:30;15992:222;:::o;16220:366::-;16362:3;16383:67;16447:2;16442:3;16383:67;:::i;:::-;16376:74;;16459:93;16548:3;16459:93;:::i;:::-;16577:2;16572:3;16568:12;16561:19;;16220:366;;;:::o;16592:419::-;16758:4;16796:2;16785:9;16781:18;16773:26;;16845:9;16839:4;16835:20;16831:1;16820:9;16816:17;16809:47;16873:131;16999:4;16873:131;:::i;:::-;16865:139;;16592:419;;;:::o;17017:225::-;17157:34;17153:1;17145:6;17141:14;17134:58;17226:8;17221:2;17213:6;17209:15;17202:33;17017:225;:::o;17248:366::-;17390:3;17411:67;17475:2;17470:3;17411:67;:::i;:::-;17404:74;;17487:93;17576:3;17487:93;:::i;:::-;17605:2;17600:3;17596:12;17589:19;;17248:366;;;:::o;17620:419::-;17786:4;17824:2;17813:9;17809:18;17801:26;;17873:9;17867:4;17863:20;17859:1;17848:9;17844:17;17837:47;17901:131;18027:4;17901:131;:::i;:::-;17893:139;;17620:419;;;:::o

Swarm Source

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