ETH Price: $3,119.23 (+0.83%)
Gas: 2 Gwei

Token

JARED (JARED)
 

Overview

Max Total Supply

1,000,000,000 JARED

Holders

324

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
43,183.809392399 JARED

Value
$0.00
0xc2082f3fce73d71e8d69139fd1c75eb8ee9a20b5
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:
JARED

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-08
*/

// SPDX-License-Identifier: MIT


// twiiter: https://twitter.com/jaredfr0msubeth









pragma solidity ^0.8.19;


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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

/**
 * @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 JARED is ERC20, Ownable {
    uint256 constant maxWalletStart = 2e16;
    uint256 constant addMaxWalletPerMinute = 1e16;
    uint256 public constant totalSupplyOnStart = 1e18;
    uint256 tradingStartTime;
    address public pool;

    constructor() ERC20("JARED", "JARED") {
        _mint(msg.sender, totalSupplyOnStart);
    }

    function decimals() public pure override returns (uint8) {
        return 9;
    }

    function maxWallet() public view returns (uint256) {
        if (tradingStartTime == 0) return totalSupply();
        uint256 res = maxWalletStart +
            ((block.timestamp - tradingStartTime) * addMaxWalletPerMinute) /
            (1 minutes);
        if (res > totalSupply()) return totalSupply();
        return res;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        // before start trading only owner can manipulate the token
        if (pool == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        // check max wallet
        if (to != pool)
            require(balanceOf(to) + amount <= maxWallet(), "wallet maximum");
    }

    function startTrade(address poolAddress) public onlyOwner {
        tradingStartTime = block.timestamp;
        pool = poolAddress;
    }
}

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":"pure","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":"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":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"startTrade","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":[],"name":"totalSupplyOnStart","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f4a415245440000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4a4152454400000000000000000000000000000000000000000000000000000081525081600390816200008f9190620008be565b508060049081620000a19190620008be565b505050620000c4620000b8620000e460201b60201c565b620000ec60201b60201c565b620000de33670de0b6b3a7640000620001b260201b60201c565b62000c91565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000224576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021b9062000a06565b60405180910390fd5b62000238600083836200032a60201b60201c565b80600260008282546200024c919062000a57565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002a3919062000a57565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030a919062000aa3565b60405180910390a362000326600083836200051c60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200044d57620003916200052160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004055750620003d66200052160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000447576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043e9062000b10565b60405180910390fd5b62000517565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200051657620004b36200054b60201b60201c565b81620004c584620005f260201b60201c565b620004d1919062000a57565b111562000515576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050c9062000b82565b60405180910390fd5b5b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600654036200056f57620005676200063a60201b60201c565b9050620005ef565b6000603c662386f26fc10000600654426200058b919062000ba4565b62000597919062000bdf565b620005a3919062000c59565b66470de4df820000620005b7919062000a57565b9050620005c96200063a60201b60201c565b811115620005ea57620005e16200063a60201b60201c565b915050620005ef565b809150505b90565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600254905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006c657607f821691505b602082108103620006dc57620006db6200067e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007467fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000707565b62000752868362000707565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200079f6200079962000793846200076a565b62000774565b6200076a565b9050919050565b6000819050919050565b620007bb836200077e565b620007d3620007ca82620007a6565b84845462000714565b825550505050565b600090565b620007ea620007db565b620007f7818484620007b0565b505050565b5b818110156200081f5762000813600082620007e0565b600181019050620007fd565b5050565b601f8211156200086e576200083881620006e2565b6200084384620006f7565b8101602085101562000853578190505b6200086b6200086285620006f7565b830182620007fc565b50505b505050565b600082821c905092915050565b6000620008936000198460080262000873565b1980831691505092915050565b6000620008ae838362000880565b9150826002028217905092915050565b620008c98262000644565b67ffffffffffffffff811115620008e557620008e46200064f565b5b620008f18254620006ad565b620008fe82828562000823565b600060209050601f83116001811462000936576000841562000921578287015190505b6200092d8582620008a0565b8655506200099d565b601f1984166200094686620006e2565b60005b82811015620009705784890151825560018201915060208501945060208101905062000949565b868310156200099057848901516200098c601f89168262000880565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009ee601f83620009a5565b9150620009fb82620009b6565b602082019050919050565b6000602082019050818103600083015262000a2181620009df565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a64826200076a565b915062000a71836200076a565b925082820190508082111562000a8c5762000a8b62000a28565b5b92915050565b62000a9d816200076a565b82525050565b600060208201905062000aba600083018462000a92565b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000af8601683620009a5565b915062000b058262000ac0565b602082019050919050565b6000602082019050818103600083015262000b2b8162000ae9565b9050919050565b7f77616c6c6574206d6178696d756d000000000000000000000000000000000000600082015250565b600062000b6a600e83620009a5565b915062000b778262000b32565b602082019050919050565b6000602082019050818103600083015262000b9d8162000b5b565b9050919050565b600062000bb1826200076a565b915062000bbe836200076a565b925082820390508181111562000bd95762000bd862000a28565b5b92915050565b600062000bec826200076a565b915062000bf9836200076a565b925082820262000c09816200076a565b9150828204841483151762000c235762000c2262000a28565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c66826200076a565b915062000c73836200076a565b92508262000c865762000c8562000c2a565b5b828204905092915050565b611d238062000ca16000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102d3578063a9059cbb14610303578063dd62ed3e14610333578063f2fde38b14610363578063f8b45b051461037f57610116565b8063715018a61461026f57806375a50dae146102795780638da5cb5b1461029757806395d89b41146102b557610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d557806339509351146101f35780636b0ec5b61461022357806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806316f0115b1461016957806318160ddd14610187575b600080fd5b61012361039d565b6040516101309190611304565b60405180910390f35b610153600480360381019061014e91906113bf565b61042f565b604051610160919061141a565b60405180910390f35b61017161044d565b60405161017e9190611444565b60405180910390f35b61018f610473565b60405161019c919061146e565b60405180910390f35b6101bf60048036038101906101ba9190611489565b61047d565b6040516101cc919061141a565b60405180910390f35b6101dd610575565b6040516101ea91906114f8565b60405180910390f35b61020d600480360381019061020891906113bf565b61057e565b60405161021a919061141a565b60405180910390f35b61023d60048036038101906102389190611513565b61062a565b005b61025960048036038101906102549190611513565b6106f1565b604051610266919061146e565b60405180910390f35b610277610739565b005b6102816107c1565b60405161028e919061146e565b60405180910390f35b61029f6107cd565b6040516102ac9190611444565b60405180910390f35b6102bd6107f7565b6040516102ca9190611304565b60405180910390f35b6102ed60048036038101906102e891906113bf565b610889565b6040516102fa919061141a565b60405180910390f35b61031d600480360381019061031891906113bf565b610974565b60405161032a919061141a565b60405180910390f35b61034d60048036038101906103489190611540565b610992565b60405161035a919061146e565b60405180910390f35b61037d60048036038101906103789190611513565b610a19565b005b610387610b10565b604051610394919061146e565b60405180910390f35b6060600380546103ac906115af565b80601f01602080910402602001604051908101604052809291908181526020018280546103d8906115af565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b600061044361043c610b93565b8484610b9b565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600061048a848484610d64565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d5610b93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c90611652565b60405180910390fd5b61056985610561610b93565b858403610b9b565b60019150509392505050565b60006009905090565b600061062061058b610b93565b848460016000610599610b93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061b91906116a1565b610b9b565b6001905092915050565b610632610b93565b73ffffffffffffffffffffffffffffffffffffffff166106506107cd565b73ffffffffffffffffffffffffffffffffffffffff16146106a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069d90611721565b60405180910390fd5b4260068190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610741610b93565b73ffffffffffffffffffffffffffffffffffffffff1661075f6107cd565b73ffffffffffffffffffffffffffffffffffffffff16146107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90611721565b60405180910390fd5b6107bf6000610fe3565b565b670de0b6b3a764000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610806906115af565b80601f0160208091040260200160405190810160405280929190818152602001828054610832906115af565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b60008060016000610898610b93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c906117b3565b60405180910390fd5b610969610960610b93565b85858403610b9b565b600191505092915050565b6000610988610981610b93565b8484610d64565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a21610b93565b73ffffffffffffffffffffffffffffffffffffffff16610a3f6107cd565b73ffffffffffffffffffffffffffffffffffffffff1614610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90611721565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90611845565b60405180910390fd5b610b0d81610fe3565b50565b60008060065403610b2a57610b23610473565b9050610b90565b6000603c662386f26fc1000060065442610b449190611865565b610b4e9190611899565b610b58919061190a565b66470de4df820000610b6a91906116a1565b9050610b74610473565b811115610b8b57610b83610473565b915050610b90565b809150505b90565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c01906119ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090611a3f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d57919061146e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca90611ad1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990611b63565b60405180910390fd5b610e4d8383836110a9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90611bf5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f6691906116a1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fca919061146e565b60405180910390a3610fdd84848461126f565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036111b6576111076107cd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061117257506111436107cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890611c61565b60405180910390fd5b61126a565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461126957611213610b10565b8161121d846106f1565b61122791906116a1565b1115611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90611ccd565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112ae578082015181840152602081019050611293565b60008484015250505050565b6000601f19601f8301169050919050565b60006112d682611274565b6112e0818561127f565b93506112f0818560208601611290565b6112f9816112ba565b840191505092915050565b6000602082019050818103600083015261131e81846112cb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113568261132b565b9050919050565b6113668161134b565b811461137157600080fd5b50565b6000813590506113838161135d565b92915050565b6000819050919050565b61139c81611389565b81146113a757600080fd5b50565b6000813590506113b981611393565b92915050565b600080604083850312156113d6576113d5611326565b5b60006113e485828601611374565b92505060206113f5858286016113aa565b9150509250929050565b60008115159050919050565b611414816113ff565b82525050565b600060208201905061142f600083018461140b565b92915050565b61143e8161134b565b82525050565b60006020820190506114596000830184611435565b92915050565b61146881611389565b82525050565b6000602082019050611483600083018461145f565b92915050565b6000806000606084860312156114a2576114a1611326565b5b60006114b086828701611374565b93505060206114c186828701611374565b92505060406114d2868287016113aa565b9150509250925092565b600060ff82169050919050565b6114f2816114dc565b82525050565b600060208201905061150d60008301846114e9565b92915050565b60006020828403121561152957611528611326565b5b600061153784828501611374565b91505092915050565b6000806040838503121561155757611556611326565b5b600061156585828601611374565b925050602061157685828601611374565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115c757607f821691505b6020821081036115da576115d9611580565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061163c60288361127f565b9150611647826115e0565b604082019050919050565b6000602082019050818103600083015261166b8161162f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116ac82611389565b91506116b783611389565b92508282019050808211156116cf576116ce611672565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061170b60208361127f565b9150611716826116d5565b602082019050919050565b6000602082019050818103600083015261173a816116fe565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061179d60258361127f565b91506117a882611741565b604082019050919050565b600060208201905081810360008301526117cc81611790565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061182f60268361127f565b915061183a826117d3565b604082019050919050565b6000602082019050818103600083015261185e81611822565b9050919050565b600061187082611389565b915061187b83611389565b925082820390508181111561189357611892611672565b5b92915050565b60006118a482611389565b91506118af83611389565b92508282026118bd81611389565b915082820484148315176118d4576118d3611672565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061191582611389565b915061192083611389565b9250826119305761192f6118db565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061199760248361127f565b91506119a28261193b565b604082019050919050565b600060208201905081810360008301526119c68161198a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a2960228361127f565b9150611a34826119cd565b604082019050919050565b60006020820190508181036000830152611a5881611a1c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611abb60258361127f565b9150611ac682611a5f565b604082019050919050565b60006020820190508181036000830152611aea81611aae565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b4d60238361127f565b9150611b5882611af1565b604082019050919050565b60006020820190508181036000830152611b7c81611b40565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611bdf60268361127f565b9150611bea82611b83565b604082019050919050565b60006020820190508181036000830152611c0e81611bd2565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611c4b60168361127f565b9150611c5682611c15565b602082019050919050565b60006020820190508181036000830152611c7a81611c3e565b9050919050565b7f77616c6c6574206d6178696d756d000000000000000000000000000000000000600082015250565b6000611cb7600e8361127f565b9150611cc282611c81565b602082019050919050565b60006020820190508181036000830152611ce681611caa565b905091905056fea2646970667358221220d19ee6e635e8c6daaf3c4b4b8adcdccf0be60ad1c2c2658ba0849d609b6eb44f64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102d3578063a9059cbb14610303578063dd62ed3e14610333578063f2fde38b14610363578063f8b45b051461037f57610116565b8063715018a61461026f57806375a50dae146102795780638da5cb5b1461029757806395d89b41146102b557610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d557806339509351146101f35780636b0ec5b61461022357806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806316f0115b1461016957806318160ddd14610187575b600080fd5b61012361039d565b6040516101309190611304565b60405180910390f35b610153600480360381019061014e91906113bf565b61042f565b604051610160919061141a565b60405180910390f35b61017161044d565b60405161017e9190611444565b60405180910390f35b61018f610473565b60405161019c919061146e565b60405180910390f35b6101bf60048036038101906101ba9190611489565b61047d565b6040516101cc919061141a565b60405180910390f35b6101dd610575565b6040516101ea91906114f8565b60405180910390f35b61020d600480360381019061020891906113bf565b61057e565b60405161021a919061141a565b60405180910390f35b61023d60048036038101906102389190611513565b61062a565b005b61025960048036038101906102549190611513565b6106f1565b604051610266919061146e565b60405180910390f35b610277610739565b005b6102816107c1565b60405161028e919061146e565b60405180910390f35b61029f6107cd565b6040516102ac9190611444565b60405180910390f35b6102bd6107f7565b6040516102ca9190611304565b60405180910390f35b6102ed60048036038101906102e891906113bf565b610889565b6040516102fa919061141a565b60405180910390f35b61031d600480360381019061031891906113bf565b610974565b60405161032a919061141a565b60405180910390f35b61034d60048036038101906103489190611540565b610992565b60405161035a919061146e565b60405180910390f35b61037d60048036038101906103789190611513565b610a19565b005b610387610b10565b604051610394919061146e565b60405180910390f35b6060600380546103ac906115af565b80601f01602080910402602001604051908101604052809291908181526020018280546103d8906115af565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b600061044361043c610b93565b8484610b9b565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600061048a848484610d64565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d5610b93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c90611652565b60405180910390fd5b61056985610561610b93565b858403610b9b565b60019150509392505050565b60006009905090565b600061062061058b610b93565b848460016000610599610b93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061b91906116a1565b610b9b565b6001905092915050565b610632610b93565b73ffffffffffffffffffffffffffffffffffffffff166106506107cd565b73ffffffffffffffffffffffffffffffffffffffff16146106a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069d90611721565b60405180910390fd5b4260068190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610741610b93565b73ffffffffffffffffffffffffffffffffffffffff1661075f6107cd565b73ffffffffffffffffffffffffffffffffffffffff16146107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90611721565b60405180910390fd5b6107bf6000610fe3565b565b670de0b6b3a764000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610806906115af565b80601f0160208091040260200160405190810160405280929190818152602001828054610832906115af565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b60008060016000610898610b93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c906117b3565b60405180910390fd5b610969610960610b93565b85858403610b9b565b600191505092915050565b6000610988610981610b93565b8484610d64565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a21610b93565b73ffffffffffffffffffffffffffffffffffffffff16610a3f6107cd565b73ffffffffffffffffffffffffffffffffffffffff1614610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90611721565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90611845565b60405180910390fd5b610b0d81610fe3565b50565b60008060065403610b2a57610b23610473565b9050610b90565b6000603c662386f26fc1000060065442610b449190611865565b610b4e9190611899565b610b58919061190a565b66470de4df820000610b6a91906116a1565b9050610b74610473565b811115610b8b57610b83610473565b915050610b90565b809150505b90565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c01906119ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090611a3f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d57919061146e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca90611ad1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990611b63565b60405180910390fd5b610e4d8383836110a9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90611bf5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f6691906116a1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fca919061146e565b60405180910390a3610fdd84848461126f565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036111b6576111076107cd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061117257506111436107cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890611c61565b60405180910390fd5b61126a565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461126957611213610b10565b8161121d846106f1565b61122791906116a1565b1115611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90611ccd565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112ae578082015181840152602081019050611293565b60008484015250505050565b6000601f19601f8301169050919050565b60006112d682611274565b6112e0818561127f565b93506112f0818560208601611290565b6112f9816112ba565b840191505092915050565b6000602082019050818103600083015261131e81846112cb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113568261132b565b9050919050565b6113668161134b565b811461137157600080fd5b50565b6000813590506113838161135d565b92915050565b6000819050919050565b61139c81611389565b81146113a757600080fd5b50565b6000813590506113b981611393565b92915050565b600080604083850312156113d6576113d5611326565b5b60006113e485828601611374565b92505060206113f5858286016113aa565b9150509250929050565b60008115159050919050565b611414816113ff565b82525050565b600060208201905061142f600083018461140b565b92915050565b61143e8161134b565b82525050565b60006020820190506114596000830184611435565b92915050565b61146881611389565b82525050565b6000602082019050611483600083018461145f565b92915050565b6000806000606084860312156114a2576114a1611326565b5b60006114b086828701611374565b93505060206114c186828701611374565b92505060406114d2868287016113aa565b9150509250925092565b600060ff82169050919050565b6114f2816114dc565b82525050565b600060208201905061150d60008301846114e9565b92915050565b60006020828403121561152957611528611326565b5b600061153784828501611374565b91505092915050565b6000806040838503121561155757611556611326565b5b600061156585828601611374565b925050602061157685828601611374565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115c757607f821691505b6020821081036115da576115d9611580565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061163c60288361127f565b9150611647826115e0565b604082019050919050565b6000602082019050818103600083015261166b8161162f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116ac82611389565b91506116b783611389565b92508282019050808211156116cf576116ce611672565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061170b60208361127f565b9150611716826116d5565b602082019050919050565b6000602082019050818103600083015261173a816116fe565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061179d60258361127f565b91506117a882611741565b604082019050919050565b600060208201905081810360008301526117cc81611790565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061182f60268361127f565b915061183a826117d3565b604082019050919050565b6000602082019050818103600083015261185e81611822565b9050919050565b600061187082611389565b915061187b83611389565b925082820390508181111561189357611892611672565b5b92915050565b60006118a482611389565b91506118af83611389565b92508282026118bd81611389565b915082820484148315176118d4576118d3611672565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061191582611389565b915061192083611389565b9250826119305761192f6118db565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061199760248361127f565b91506119a28261193b565b604082019050919050565b600060208201905081810360008301526119c68161198a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a2960228361127f565b9150611a34826119cd565b604082019050919050565b60006020820190508181036000830152611a5881611a1c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611abb60258361127f565b9150611ac682611a5f565b604082019050919050565b60006020820190508181036000830152611aea81611aae565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b4d60238361127f565b9150611b5882611af1565b604082019050919050565b60006020820190508181036000830152611b7c81611b40565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611bdf60268361127f565b9150611bea82611b83565b604082019050919050565b60006020820190508181036000830152611c0e81611bd2565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611c4b60168361127f565b9150611c5682611c15565b602082019050919050565b60006020820190508181036000830152611c7a81611c3e565b9050919050565b7f77616c6c6574206d6178696d756d000000000000000000000000000000000000600082015250565b6000611cb7600e8361127f565b9150611cc282611c81565b602082019050919050565b60006020820190508181036000830152611ce681611caa565b905091905056fea2646970667358221220d19ee6e635e8c6daaf3c4b4b8adcdccf0be60ad1c2c2658ba0849d609b6eb44f64736f6c63430008130033

Deployed Bytecode Sourcemap

18572:1436:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8603:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10770:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18796:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9723:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11421:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18926:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12322:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19865:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9894:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2515:103;;;:::i;:::-;;18709:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1864:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8822:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13040:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10234:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10472:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2773:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19018:338;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8603:100;8657:13;8690:5;8683:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8603:100;:::o;10770:169::-;10853:4;10870:39;10879:12;:10;:12::i;:::-;10893:7;10902:6;10870:8;:39::i;:::-;10927:4;10920:11;;10770:169;;;;:::o;18796:19::-;;;;;;;;;;;;;:::o;9723:108::-;9784:7;9811:12;;9804:19;;9723:108;:::o;11421:492::-;11561:4;11578:36;11588:6;11596:9;11607:6;11578:9;:36::i;:::-;11627:24;11654:11;:19;11666:6;11654:19;;;;;;;;;;;;;;;:33;11674:12;:10;:12::i;:::-;11654:33;;;;;;;;;;;;;;;;11627:60;;11726:6;11706:16;:26;;11698:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11813:57;11822:6;11830:12;:10;:12::i;:::-;11863:6;11844:16;:25;11813:8;:57::i;:::-;11901:4;11894:11;;;11421:492;;;;;:::o;18926:84::-;18976:5;19001:1;18994:8;;18926:84;:::o;12322:215::-;12410:4;12427:80;12436:12;:10;:12::i;:::-;12450:7;12496:10;12459:11;:25;12471:12;:10;:12::i;:::-;12459:25;;;;;;;;;;;;;;;:34;12485:7;12459:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12427:8;:80::i;:::-;12525:4;12518:11;;12322:215;;;;:::o;19865:140::-;2095:12;:10;:12::i;:::-;2084:23;;:7;:5;:7::i;:::-;:23;;;2076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19953:15:::1;19934:16;:34;;;;19986:11;19979:4;;:18;;;;;;;;;;;;;;;;;;19865:140:::0;:::o;9894:127::-;9968:7;9995:9;:18;10005:7;9995:18;;;;;;;;;;;;;;;;9988:25;;9894:127;;;:::o;2515:103::-;2095:12;:10;:12::i;:::-;2084:23;;:7;:5;:7::i;:::-;:23;;;2076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2580:30:::1;2607:1;2580:18;:30::i;:::-;2515:103::o:0;18709:49::-;18754:4;18709:49;:::o;1864:87::-;1910:7;1937:6;;;;;;;;;;;1930:13;;1864:87;:::o;8822:104::-;8878:13;8911:7;8904:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8822:104;:::o;13040:413::-;13133:4;13150:24;13177:11;:25;13189:12;:10;:12::i;:::-;13177:25;;;;;;;;;;;;;;;:34;13203:7;13177:34;;;;;;;;;;;;;;;;13150:61;;13250:15;13230:16;:35;;13222:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13343:67;13352:12;:10;:12::i;:::-;13366:7;13394:15;13375:16;:34;13343:8;:67::i;:::-;13441:4;13434:11;;;13040:413;;;;:::o;10234:175::-;10320:4;10337:42;10347:12;:10;:12::i;:::-;10361:9;10372:6;10337:9;:42::i;:::-;10397:4;10390:11;;10234:175;;;;:::o;10472:151::-;10561:7;10588:11;:18;10600:5;10588:18;;;;;;;;;;;;;;;:27;10607:7;10588:27;;;;;;;;;;;;;;;;10581:34;;10472:151;;;;:::o;2773:201::-;2095:12;:10;:12::i;:::-;2084:23;;:7;:5;:7::i;:::-;:23;;;2076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2882:1:::1;2862:22;;:8;:22;;::::0;2854:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2938:28;2957:8;2938:18;:28::i;:::-;2773:201:::0;:::o;19018:338::-;19060:7;19104:1;19084:16;;:21;19080:47;;19114:13;:11;:13::i;:::-;19107:20;;;;19080:47;19138:11;19261:9;18698:4;19202:16;;19184:15;:34;;;;:::i;:::-;19183:60;;;;:::i;:::-;19182:89;;;;:::i;:::-;18646:4;19152:119;;;;:::i;:::-;19138:133;;19292:13;:11;:13::i;:::-;19286:3;:19;19282:45;;;19314:13;:11;:13::i;:::-;19307:20;;;;;19282:45;19345:3;19338:10;;;19018:338;;:::o;674:98::-;727:7;754:10;747:17;;674:98;:::o;16724:380::-;16877:1;16860:19;;:5;:19;;;16852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16958:1;16939:21;;:7;:21;;;16931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17042:6;17012:11;:18;17024:5;17012:18;;;;;;;;;;;;;;;:27;17031:7;17012:27;;;;;;;;;;;;;;;:36;;;;17080:7;17064:32;;17073:5;17064:32;;;17089:6;17064:32;;;;;;:::i;:::-;;;;;;;;16724:380;;;:::o;13943:733::-;14101:1;14083:20;;:6;:20;;;14075:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14185:1;14164:23;;:9;:23;;;14156:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14240:47;14261:6;14269:9;14280:6;14240:20;:47::i;:::-;14300:21;14324:9;:17;14334:6;14324:17;;;;;;;;;;;;;;;;14300:41;;14377:6;14360:13;:23;;14352:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14498:6;14482:13;:22;14462:9;:17;14472:6;14462:17;;;;;;;;;;;;;;;:42;;;;14550:6;14526:9;:20;14536:9;14526:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14591:9;14574:35;;14583:6;14574:35;;;14602:6;14574:35;;;;;;:::i;:::-;;;;;;;;14622:46;14642:6;14650:9;14661:6;14622:19;:46::i;:::-;14064:612;13943:733;;;:::o;3134:191::-;3208:16;3227:6;;;;;;;;;;;3208:25;;3253:8;3244:6;;:17;;;;;;;;;;;;;;;;;;3308:8;3277:40;;3298:8;3277:40;;;;;;;;;;;;3197:128;3134:191;:::o;19364:493::-;19596:1;19580:18;;:4;;;;;;;;;;;:18;;;19576:139;;19631:7;:5;:7::i;:::-;19623:15;;:4;:15;;;:32;;;;19648:7;:5;:7::i;:::-;19642:13;;:2;:13;;;19623:32;19615:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19697:7;;19576:139;19766:4;;;;;;;;;;;19760:10;;:2;:10;;;19756:93;;19819:11;:9;:11::i;:::-;19809:6;19793:13;19803:2;19793:9;:13::i;:::-;:22;;;;:::i;:::-;:37;;19785:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19756:93;19364:493;;;;:::o;18433: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:118::-;3885:24;3903:5;3885:24;:::i;:::-;3880:3;3873:37;3798:118;;:::o;3922:222::-;4015:4;4053:2;4042:9;4038:18;4030:26;;4066:71;4134:1;4123:9;4119:17;4110:6;4066:71;:::i;:::-;3922:222;;;;:::o;4150:619::-;4227:6;4235;4243;4292:2;4280:9;4271:7;4267:23;4263:32;4260:119;;;4298:79;;:::i;:::-;4260:119;4418:1;4443:53;4488:7;4479:6;4468:9;4464:22;4443:53;:::i;:::-;4433:63;;4389:117;4545:2;4571:53;4616:7;4607:6;4596:9;4592:22;4571:53;:::i;:::-;4561:63;;4516:118;4673:2;4699:53;4744:7;4735:6;4724:9;4720:22;4699:53;:::i;:::-;4689:63;;4644:118;4150:619;;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::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:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:227::-;6672:34;6668:1;6660:6;6656:14;6649:58;6741:10;6736:2;6728:6;6724:15;6717:35;6532:227;:::o;6765:366::-;6907:3;6928:67;6992:2;6987:3;6928:67;:::i;:::-;6921:74;;7004:93;7093:3;7004:93;:::i;:::-;7122:2;7117:3;7113:12;7106:19;;6765:366;;;:::o;7137:419::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7390:9;7384:4;7380:20;7376:1;7365:9;7361:17;7354:47;7418:131;7544:4;7418:131;:::i;:::-;7410:139;;7137:419;;;:::o;7562:180::-;7610:77;7607:1;7600:88;7707:4;7704:1;7697:15;7731:4;7728:1;7721:15;7748:191;7788:3;7807:20;7825:1;7807:20;:::i;:::-;7802:25;;7841:20;7859:1;7841:20;:::i;:::-;7836:25;;7884:1;7881;7877:9;7870:16;;7905:3;7902:1;7899:10;7896:36;;;7912:18;;:::i;:::-;7896:36;7748:191;;;;:::o;7945:182::-;8085:34;8081:1;8073:6;8069:14;8062:58;7945:182;:::o;8133:366::-;8275:3;8296:67;8360:2;8355:3;8296:67;:::i;:::-;8289:74;;8372:93;8461:3;8372:93;:::i;:::-;8490:2;8485:3;8481:12;8474:19;;8133:366;;;:::o;8505:419::-;8671:4;8709:2;8698:9;8694:18;8686:26;;8758:9;8752:4;8748:20;8744:1;8733:9;8729:17;8722:47;8786:131;8912:4;8786:131;:::i;:::-;8778:139;;8505:419;;;:::o;8930:224::-;9070:34;9066:1;9058:6;9054:14;9047:58;9139:7;9134:2;9126:6;9122:15;9115:32;8930:224;:::o;9160:366::-;9302:3;9323:67;9387:2;9382:3;9323:67;:::i;:::-;9316:74;;9399:93;9488:3;9399:93;:::i;:::-;9517:2;9512:3;9508:12;9501:19;;9160:366;;;:::o;9532:419::-;9698:4;9736:2;9725:9;9721:18;9713:26;;9785:9;9779:4;9775:20;9771:1;9760:9;9756:17;9749:47;9813:131;9939:4;9813:131;:::i;:::-;9805:139;;9532:419;;;:::o;9957:225::-;10097:34;10093:1;10085:6;10081:14;10074:58;10166:8;10161:2;10153:6;10149:15;10142:33;9957:225;:::o;10188:366::-;10330:3;10351:67;10415:2;10410:3;10351:67;:::i;:::-;10344:74;;10427:93;10516:3;10427:93;:::i;:::-;10545:2;10540:3;10536:12;10529:19;;10188:366;;;:::o;10560:419::-;10726:4;10764:2;10753:9;10749:18;10741:26;;10813:9;10807:4;10803:20;10799:1;10788:9;10784:17;10777:47;10841:131;10967:4;10841:131;:::i;:::-;10833:139;;10560:419;;;:::o;10985:194::-;11025:4;11045:20;11063:1;11045:20;:::i;:::-;11040:25;;11079:20;11097:1;11079:20;:::i;:::-;11074:25;;11123:1;11120;11116:9;11108:17;;11147:1;11141:4;11138:11;11135:37;;;11152:18;;:::i;:::-;11135:37;10985:194;;;;:::o;11185:410::-;11225:7;11248:20;11266:1;11248:20;:::i;:::-;11243:25;;11282:20;11300:1;11282:20;:::i;:::-;11277:25;;11337:1;11334;11330:9;11359:30;11377:11;11359:30;:::i;:::-;11348:41;;11538:1;11529:7;11525:15;11522:1;11519:22;11499:1;11492:9;11472:83;11449:139;;11568:18;;:::i;:::-;11449:139;11233:362;11185:410;;;;:::o;11601:180::-;11649:77;11646:1;11639:88;11746:4;11743:1;11736:15;11770:4;11767:1;11760:15;11787:185;11827:1;11844:20;11862:1;11844:20;:::i;:::-;11839:25;;11878:20;11896:1;11878:20;:::i;:::-;11873:25;;11917:1;11907:35;;11922:18;;:::i;:::-;11907:35;11964:1;11961;11957:9;11952:14;;11787:185;;;;:::o;11978:223::-;12118:34;12114:1;12106:6;12102:14;12095:58;12187:6;12182:2;12174:6;12170:15;12163:31;11978:223;:::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:221::-;13144:34;13140:1;13132:6;13128:14;13121:58;13213:4;13208:2;13200:6;13196:15;13189:29;13004:221;:::o;13231:366::-;13373:3;13394:67;13458:2;13453:3;13394:67;:::i;:::-;13387:74;;13470:93;13559:3;13470:93;:::i;:::-;13588:2;13583:3;13579:12;13572:19;;13231:366;;;:::o;13603:419::-;13769:4;13807:2;13796:9;13792:18;13784:26;;13856:9;13850:4;13846:20;13842:1;13831:9;13827:17;13820:47;13884:131;14010:4;13884:131;:::i;:::-;13876:139;;13603:419;;;:::o;14028:224::-;14168:34;14164:1;14156:6;14152:14;14145:58;14237:7;14232:2;14224:6;14220:15;14213:32;14028:224;:::o;14258:366::-;14400:3;14421:67;14485:2;14480:3;14421:67;:::i;:::-;14414:74;;14497:93;14586:3;14497:93;:::i;:::-;14615:2;14610:3;14606:12;14599:19;;14258:366;;;:::o;14630:419::-;14796:4;14834:2;14823:9;14819:18;14811:26;;14883:9;14877:4;14873:20;14869:1;14858:9;14854:17;14847:47;14911:131;15037:4;14911:131;:::i;:::-;14903:139;;14630:419;;;:::o;15055:222::-;15195:34;15191:1;15183:6;15179:14;15172:58;15264:5;15259:2;15251:6;15247:15;15240:30;15055:222;:::o;15283:366::-;15425:3;15446:67;15510:2;15505:3;15446:67;:::i;:::-;15439:74;;15522:93;15611:3;15522:93;:::i;:::-;15640:2;15635:3;15631:12;15624:19;;15283:366;;;:::o;15655:419::-;15821:4;15859:2;15848:9;15844:18;15836:26;;15908:9;15902:4;15898:20;15894:1;15883:9;15879:17;15872:47;15936:131;16062:4;15936:131;:::i;:::-;15928:139;;15655:419;;;:::o;16080:225::-;16220:34;16216:1;16208:6;16204:14;16197:58;16289:8;16284:2;16276:6;16272:15;16265:33;16080:225;:::o;16311:366::-;16453:3;16474:67;16538:2;16533:3;16474:67;:::i;:::-;16467:74;;16550:93;16639:3;16550:93;:::i;:::-;16668:2;16663:3;16659:12;16652:19;;16311:366;;;:::o;16683:419::-;16849:4;16887:2;16876:9;16872:18;16864:26;;16936:9;16930:4;16926:20;16922:1;16911:9;16907:17;16900:47;16964:131;17090:4;16964:131;:::i;:::-;16956:139;;16683:419;;;:::o;17108:172::-;17248:24;17244:1;17236:6;17232:14;17225:48;17108:172;:::o;17286:366::-;17428:3;17449:67;17513:2;17508:3;17449:67;:::i;:::-;17442:74;;17525:93;17614:3;17525:93;:::i;:::-;17643:2;17638:3;17634:12;17627:19;;17286:366;;;:::o;17658:419::-;17824:4;17862:2;17851:9;17847:18;17839:26;;17911:9;17905:4;17901:20;17897:1;17886:9;17882:17;17875:47;17939:131;18065:4;17939:131;:::i;:::-;17931:139;;17658:419;;;:::o;18083:164::-;18223:16;18219:1;18211:6;18207:14;18200:40;18083:164;:::o;18253:366::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:419::-;18791:4;18829:2;18818:9;18814:18;18806:26;;18878:9;18872:4;18868:20;18864:1;18853:9;18849:17;18842:47;18906:131;19032:4;18906:131;:::i;:::-;18898:139;;18625:419;;;:::o

Swarm Source

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