ETH Price: $3,490.56 (+2.35%)
Gas: 12 Gwei

Token

DONT APE (DONT)
 

Overview

Max Total Supply

1,000,000,000 DONT

Holders

168

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 DONT

Value
$0.00
0xcc444e2cf1a68255a6001fe0953a42a3c5361168
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:
DONTAPE

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-16
*/

// SPDX-License-Identifier: GPL-3.0

// Telegram: https://t.me/dont_ape
// Twitter: https://twitter.com/dont_ape


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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
 
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}
 
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
 
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
 
 
/**
 * @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/Context.sol
 
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
 

 
/**
 * @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.
 */

 
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
 
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
 
pragma solidity ^0.8.0;
 
 
 
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) public _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:
     *
     * - `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;
        }
        _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;
        _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 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 {}
}
 
contract DONTAPE is ERC20, Ownable {
    constructor() ERC20("DONT APE", "DONT"){
        _mint(msg.sender, 1000000000*10**18);
    }
 
    mapping(address => string) public DONT;

    uint256 public maxWalletSize = 30000000*10**18;
    bool public isLaunched = false;
 

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(_balances[to] + amount <=  maxWalletSize, "Max Wallet limit");

        if(from != owner()) {
            require(isLaunched == true, "Token not launched");
        }
 
        _beforeTokenTransfer(from, to, amount);
 
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;
 
        emit Transfer(from, to, amount);
 
        _afterTokenTransfer(from, to, amount);
    }

    function changeMaxWallet(uint256 newMax) public onlyOwner {
        maxWalletSize = newMax;
    }

    function launch() public onlyOwner {
        isLaunched = true;
    }
}

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":"","type":"address"}],"name":"DONT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"changeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526a18d0bf423c03d8de0000006007556000600860006101000a81548160ff0219169083151502179055503480156200003b57600080fd5b506040518060400160405280600881526020017f444f4e54204150450000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444f4e54000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000c092919062000371565b508060049080519060200190620000d992919062000371565b505050620000fc620000f06200012060201b60201c565b6200012860201b60201c565b6200011a336b033b2e3c9fd0803ce8000000620001ee60201b60201c565b620005bf565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002589062000474565b60405180910390fd5b62000275600083836200036760201b60201c565b8060026000828254620002899190620004c4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002e09190620004c4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000347919062000496565b60405180910390a362000363600083836200036c60201b60201c565b5050565b505050565b505050565b8280546200037f906200052b565b90600052602060002090601f016020900481019282620003a35760008555620003ef565b82601f10620003be57805160ff1916838001178555620003ef565b82800160010185558215620003ef579182015b82811115620003ee578251825591602001919060010190620003d1565b5b509050620003fe919062000402565b5090565b5b808211156200041d57600081600090555060010162000403565b5090565b600062000430601f83620004b3565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200046e8162000521565b82525050565b600060208201905081810360008301526200048f8162000421565b9050919050565b6000602082019050620004ad600083018462000463565b92915050565b600082825260208201905092915050565b6000620004d18262000521565b9150620004de8362000521565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000516576200051562000561565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200054457607f821691505b602082108114156200055b576200055a62000590565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6119ae80620005cf6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610323578063a9059cbb14610353578063d6257e7914610383578063dd62ed3e146103b3578063f2fde38b146103e35761012c565b806370a082311461028f578063715018a6146102bf5780638da5cb5b146102c95780638f3fa860146102e757806395d89b41146103055761012c565b806323b872dd116100f457806323b872dd146101c3578063307aebc9146101f3578063313ce56714610211578063395093511461022f5780636ebcf6071461025f5761012c565b806301339c211461013157806306fdde031461013b578063095ea7b3146101595780630b006d601461018957806318160ddd146101a5575b600080fd5b6101396103ff565b005b610143610424565b60405161015091906115f7565b60405180910390f35b610173600480360381019061016e919061111d565b6104b6565b60405161018091906115dc565b60405180910390f35b6101a3600480360381019061019e9190611159565b6104d9565b005b6101ad6104eb565b6040516101ba9190611779565b60405180910390f35b6101dd60048036038101906101d891906110ce565b6104f5565b6040516101ea91906115dc565b60405180910390f35b6101fb610524565b60405161020891906115dc565b60405180910390f35b610219610537565b6040516102269190611794565b60405180910390f35b6102496004803603810190610244919061111d565b610540565b60405161025691906115dc565b60405180910390f35b61027960048036038101906102749190611069565b610577565b6040516102869190611779565b60405180910390f35b6102a960048036038101906102a49190611069565b61058f565b6040516102b69190611779565b60405180910390f35b6102c76105d7565b005b6102d16105eb565b6040516102de91906115c1565b60405180910390f35b6102ef610615565b6040516102fc9190611779565b60405180910390f35b61030d61061b565b60405161031a91906115f7565b60405180910390f35b61033d6004803603810190610338919061111d565b6106ad565b60405161034a91906115dc565b60405180910390f35b61036d6004803603810190610368919061111d565b610724565b60405161037a91906115dc565b60405180910390f35b61039d60048036038101906103989190611069565b610747565b6040516103aa91906115f7565b60405180910390f35b6103cd60048036038101906103c89190611092565b6107e7565b6040516103da9190611779565b60405180910390f35b6103fd60048036038101906103f89190611069565b61086e565b005b6104076108f2565b6001600860006101000a81548160ff021916908315150217905550565b606060038054610433906118a9565b80601f016020809104026020016040519081016040528092919081815260200182805461045f906118a9565b80156104ac5780601f10610481576101008083540402835291602001916104ac565b820191906000526020600020905b81548152906001019060200180831161048f57829003601f168201915b5050505050905090565b6000806104c1610970565b90506104ce818585610978565b600191505092915050565b6104e16108f2565b8060078190555050565b6000600254905090565b600080610500610970565b905061050d858285610b43565b610518858585610bcf565b60019150509392505050565b600860009054906101000a900460ff1681565b60006012905090565b60008061054b610970565b905061056c81858561055d85896107e7565b61056791906117cb565b610978565b600191505092915050565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105df6108f2565b6105e96000610f6f565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b60606004805461062a906118a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610656906118a9565b80156106a35780601f10610678576101008083540402835291602001916106a3565b820191906000526020600020905b81548152906001019060200180831161068657829003601f168201915b5050505050905090565b6000806106b8610970565b905060006106c682866107e7565b90508381101561070b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070290611759565b60405180910390fd5b6107188286868403610978565b60019250505092915050565b60008061072f610970565b905061073c818585610bcf565b600191505092915050565b60066020528060005260406000206000915090508054610766906118a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610792906118a9565b80156107df5780601f106107b4576101008083540402835291602001916107df565b820191906000526020600020905b8154815290600101906020018083116107c257829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108766108f2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611659565b60405180910390fd5b6108ef81610f6f565b50565b6108fa610970565b73ffffffffffffffffffffffffffffffffffffffff166109186105eb565b73ffffffffffffffffffffffffffffffffffffffff161461096e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610965906116f9565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611739565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f90611679565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b369190611779565b60405180910390a3505050565b6000610b4f84846107e7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bc95781811015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb2906116b9565b60405180910390fd5b610bc88484848403610978565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690611719565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690611619565b60405180910390fd5b600754816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cfc91906117cb565b1115610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490611699565b60405180910390fd5b610d456105eb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610dce5760011515600860009054906101000a900460ff16151514610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490611639565b60405180910390fd5b5b610dd9838383611035565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e56906116d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ef291906117cb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f569190611779565b60405180910390a3610f6984848461103a565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061104e8161194a565b92915050565b60008135905061106381611961565b92915050565b60006020828403121561107b57600080fd5b60006110898482850161103f565b91505092915050565b600080604083850312156110a557600080fd5b60006110b38582860161103f565b92505060206110c48582860161103f565b9150509250929050565b6000806000606084860312156110e357600080fd5b60006110f18682870161103f565b93505060206111028682870161103f565b925050604061111386828701611054565b9150509250925092565b6000806040838503121561113057600080fd5b600061113e8582860161103f565b925050602061114f85828601611054565b9150509250929050565b60006020828403121561116b57600080fd5b600061117984828501611054565b91505092915050565b61118b81611821565b82525050565b61119a81611833565b82525050565b60006111ab826117af565b6111b581856117ba565b93506111c5818560208601611876565b6111ce81611939565b840191505092915050565b60006111e66023836117ba565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061124c6012836117ba565b91507f546f6b656e206e6f74206c61756e6368656400000000000000000000000000006000830152602082019050919050565b600061128c6026836117ba565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112f26022836117ba565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113586010836117ba565b91507f4d61782057616c6c6574206c696d6974000000000000000000000000000000006000830152602082019050919050565b6000611398601d836117ba565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006113d86026836117ba565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061143e6020836117ba565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061147e6025836117ba565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114e46024836117ba565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061154a6025836117ba565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6115ac8161185f565b82525050565b6115bb81611869565b82525050565b60006020820190506115d66000830184611182565b92915050565b60006020820190506115f16000830184611191565b92915050565b6000602082019050818103600083015261161181846111a0565b905092915050565b60006020820190508181036000830152611632816111d9565b9050919050565b600060208201905081810360008301526116528161123f565b9050919050565b600060208201905081810360008301526116728161127f565b9050919050565b60006020820190508181036000830152611692816112e5565b9050919050565b600060208201905081810360008301526116b28161134b565b9050919050565b600060208201905081810360008301526116d28161138b565b9050919050565b600060208201905081810360008301526116f2816113cb565b9050919050565b6000602082019050818103600083015261171281611431565b9050919050565b6000602082019050818103600083015261173281611471565b9050919050565b60006020820190508181036000830152611752816114d7565b9050919050565b600060208201905081810360008301526117728161153d565b9050919050565b600060208201905061178e60008301846115a3565b92915050565b60006020820190506117a960008301846115b2565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117d68261185f565b91506117e18361185f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611816576118156118db565b5b828201905092915050565b600061182c8261183f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611894578082015181840152602081019050611879565b838111156118a3576000848401525b50505050565b600060028204905060018216806118c157607f821691505b602082108114156118d5576118d461190a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61195381611821565b811461195e57600080fd5b50565b61196a8161185f565b811461197557600080fd5b5056fea2646970667358221220acf510d7c8f30c7c16ce67a5a6d766640f222431d3323fea694d5a429aabd32764736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610323578063a9059cbb14610353578063d6257e7914610383578063dd62ed3e146103b3578063f2fde38b146103e35761012c565b806370a082311461028f578063715018a6146102bf5780638da5cb5b146102c95780638f3fa860146102e757806395d89b41146103055761012c565b806323b872dd116100f457806323b872dd146101c3578063307aebc9146101f3578063313ce56714610211578063395093511461022f5780636ebcf6071461025f5761012c565b806301339c211461013157806306fdde031461013b578063095ea7b3146101595780630b006d601461018957806318160ddd146101a5575b600080fd5b6101396103ff565b005b610143610424565b60405161015091906115f7565b60405180910390f35b610173600480360381019061016e919061111d565b6104b6565b60405161018091906115dc565b60405180910390f35b6101a3600480360381019061019e9190611159565b6104d9565b005b6101ad6104eb565b6040516101ba9190611779565b60405180910390f35b6101dd60048036038101906101d891906110ce565b6104f5565b6040516101ea91906115dc565b60405180910390f35b6101fb610524565b60405161020891906115dc565b60405180910390f35b610219610537565b6040516102269190611794565b60405180910390f35b6102496004803603810190610244919061111d565b610540565b60405161025691906115dc565b60405180910390f35b61027960048036038101906102749190611069565b610577565b6040516102869190611779565b60405180910390f35b6102a960048036038101906102a49190611069565b61058f565b6040516102b69190611779565b60405180910390f35b6102c76105d7565b005b6102d16105eb565b6040516102de91906115c1565b60405180910390f35b6102ef610615565b6040516102fc9190611779565b60405180910390f35b61030d61061b565b60405161031a91906115f7565b60405180910390f35b61033d6004803603810190610338919061111d565b6106ad565b60405161034a91906115dc565b60405180910390f35b61036d6004803603810190610368919061111d565b610724565b60405161037a91906115dc565b60405180910390f35b61039d60048036038101906103989190611069565b610747565b6040516103aa91906115f7565b60405180910390f35b6103cd60048036038101906103c89190611092565b6107e7565b6040516103da9190611779565b60405180910390f35b6103fd60048036038101906103f89190611069565b61086e565b005b6104076108f2565b6001600860006101000a81548160ff021916908315150217905550565b606060038054610433906118a9565b80601f016020809104026020016040519081016040528092919081815260200182805461045f906118a9565b80156104ac5780601f10610481576101008083540402835291602001916104ac565b820191906000526020600020905b81548152906001019060200180831161048f57829003601f168201915b5050505050905090565b6000806104c1610970565b90506104ce818585610978565b600191505092915050565b6104e16108f2565b8060078190555050565b6000600254905090565b600080610500610970565b905061050d858285610b43565b610518858585610bcf565b60019150509392505050565b600860009054906101000a900460ff1681565b60006012905090565b60008061054b610970565b905061056c81858561055d85896107e7565b61056791906117cb565b610978565b600191505092915050565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105df6108f2565b6105e96000610f6f565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b60606004805461062a906118a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610656906118a9565b80156106a35780601f10610678576101008083540402835291602001916106a3565b820191906000526020600020905b81548152906001019060200180831161068657829003601f168201915b5050505050905090565b6000806106b8610970565b905060006106c682866107e7565b90508381101561070b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070290611759565b60405180910390fd5b6107188286868403610978565b60019250505092915050565b60008061072f610970565b905061073c818585610bcf565b600191505092915050565b60066020528060005260406000206000915090508054610766906118a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610792906118a9565b80156107df5780601f106107b4576101008083540402835291602001916107df565b820191906000526020600020905b8154815290600101906020018083116107c257829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108766108f2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611659565b60405180910390fd5b6108ef81610f6f565b50565b6108fa610970565b73ffffffffffffffffffffffffffffffffffffffff166109186105eb565b73ffffffffffffffffffffffffffffffffffffffff161461096e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610965906116f9565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611739565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f90611679565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b369190611779565b60405180910390a3505050565b6000610b4f84846107e7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bc95781811015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb2906116b9565b60405180910390fd5b610bc88484848403610978565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690611719565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690611619565b60405180910390fd5b600754816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cfc91906117cb565b1115610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490611699565b60405180910390fd5b610d456105eb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610dce5760011515600860009054906101000a900460ff16151514610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490611639565b60405180910390fd5b5b610dd9838383611035565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e56906116d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ef291906117cb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f569190611779565b60405180910390a3610f6984848461103a565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061104e8161194a565b92915050565b60008135905061106381611961565b92915050565b60006020828403121561107b57600080fd5b60006110898482850161103f565b91505092915050565b600080604083850312156110a557600080fd5b60006110b38582860161103f565b92505060206110c48582860161103f565b9150509250929050565b6000806000606084860312156110e357600080fd5b60006110f18682870161103f565b93505060206111028682870161103f565b925050604061111386828701611054565b9150509250925092565b6000806040838503121561113057600080fd5b600061113e8582860161103f565b925050602061114f85828601611054565b9150509250929050565b60006020828403121561116b57600080fd5b600061117984828501611054565b91505092915050565b61118b81611821565b82525050565b61119a81611833565b82525050565b60006111ab826117af565b6111b581856117ba565b93506111c5818560208601611876565b6111ce81611939565b840191505092915050565b60006111e66023836117ba565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061124c6012836117ba565b91507f546f6b656e206e6f74206c61756e6368656400000000000000000000000000006000830152602082019050919050565b600061128c6026836117ba565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112f26022836117ba565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113586010836117ba565b91507f4d61782057616c6c6574206c696d6974000000000000000000000000000000006000830152602082019050919050565b6000611398601d836117ba565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006113d86026836117ba565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061143e6020836117ba565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061147e6025836117ba565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114e46024836117ba565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061154a6025836117ba565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6115ac8161185f565b82525050565b6115bb81611869565b82525050565b60006020820190506115d66000830184611182565b92915050565b60006020820190506115f16000830184611191565b92915050565b6000602082019050818103600083015261161181846111a0565b905092915050565b60006020820190508181036000830152611632816111d9565b9050919050565b600060208201905081810360008301526116528161123f565b9050919050565b600060208201905081810360008301526116728161127f565b9050919050565b60006020820190508181036000830152611692816112e5565b9050919050565b600060208201905081810360008301526116b28161134b565b9050919050565b600060208201905081810360008301526116d28161138b565b9050919050565b600060208201905081810360008301526116f2816113cb565b9050919050565b6000602082019050818103600083015261171281611431565b9050919050565b6000602082019050818103600083015261173281611471565b9050919050565b60006020820190508181036000830152611752816114d7565b9050919050565b600060208201905081810360008301526117728161153d565b9050919050565b600060208201905061178e60008301846115a3565b92915050565b60006020820190506117a960008301846115b2565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117d68261185f565b91506117e18361185f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611816576118156118db565b5b828201905092915050565b600061182c8261183f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611894578082015181840152602081019050611879565b838111156118a3576000848401525b50505050565b600060028204905060018216806118c157607f821691505b602082108114156118d5576118d461190a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61195381611821565b811461195e57600080fd5b50565b61196a8161185f565b811461197557600080fd5b5056fea2646970667358221220acf510d7c8f30c7c16ce67a5a6d766640f222431d3323fea694d5a429aabd32764736f6c63430008000033

Deployed Bytecode Sourcemap

19973:1340:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21239:71;;;:::i;:::-;;9156:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11514:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21132:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10279:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12296:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20218:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10120:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13001:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8429:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10451:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2124:103;;;:::i;:::-;;1476:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20165:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9376:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13743:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10785:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20118:38;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11042:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2382:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21239:71;1362:13;:11;:13::i;:::-;21298:4:::1;21285:10;;:17;;;;;;;;;;;;;;;;;;21239:71::o:0;9156:100::-;9210:13;9243:5;9236:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9156:100;:::o;11514:201::-;11597:4;11614:13;11630:12;:10;:12::i;:::-;11614:28;;11653:32;11662:5;11669:7;11678:6;11653:8;:32::i;:::-;11703:4;11696:11;;;11514:201;;;;:::o;21132:99::-;1362:13;:11;:13::i;:::-;21217:6:::1;21201:13;:22;;;;21132:99:::0;:::o;10279:108::-;10340:7;10367:12;;10360:19;;10279:108;:::o;12296:295::-;12427:4;12444:15;12462:12;:10;:12::i;:::-;12444:30;;12485:38;12501:4;12507:7;12516:6;12485:15;:38::i;:::-;12534:27;12544:4;12550:2;12554:6;12534:9;:27::i;:::-;12579:4;12572:11;;;12296:295;;;;;:::o;20218:30::-;;;;;;;;;;;;;:::o;10120:93::-;10178:5;10203:2;10196:9;;10120:93;:::o;13001:238::-;13089:4;13106:13;13122:12;:10;:12::i;:::-;13106:28;;13145:64;13154:5;13161:7;13198:10;13170:25;13180:5;13187:7;13170:9;:25::i;:::-;:38;;;;:::i;:::-;13145:8;:64::i;:::-;13227:4;13220:11;;;13001:238;;;;:::o;8429:44::-;;;;;;;;;;;;;;;;;:::o;10451:127::-;10525:7;10552:9;:18;10562:7;10552:18;;;;;;;;;;;;;;;;10545:25;;10451:127;;;:::o;2124:103::-;1362:13;:11;:13::i;:::-;2189:30:::1;2216:1;2189:18;:30::i;:::-;2124:103::o:0;1476:87::-;1522:7;1549:6;;;;;;;;;;;1542:13;;1476:87;:::o;20165:46::-;;;;:::o;9376:104::-;9432:13;9465:7;9458:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9376:104;:::o;13743:437::-;13836:4;13853:13;13869:12;:10;:12::i;:::-;13853:28;;13892:24;13919:25;13929:5;13936:7;13919:9;:25::i;:::-;13892:52;;13983:15;13963:16;:35;;13955:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14076:60;14085:5;14092:7;14120:15;14101:16;:34;14076:8;:60::i;:::-;14168:4;14161:11;;;;13743:437;;;;:::o;10785:193::-;10864:4;10881:13;10897:12;:10;:12::i;:::-;10881:28;;10920;10930:5;10937:2;10941:6;10920:9;:28::i;:::-;10966:4;10959:11;;;10785:193;;;;:::o;20118:38::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11042:151::-;11131:7;11158:11;:18;11170:5;11158:18;;;;;;;;;;;;;;;:27;11177:7;11158:27;;;;;;;;;;;;;;;;11151:34;;11042:151;;;;:::o;2382:201::-;1362:13;:11;:13::i;:::-;2491:1:::1;2471:22;;:8;:22;;;;2463:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2547:28;2566:8;2547:18;:28::i;:::-;2382:201:::0;:::o;1641:132::-;1716:12;:10;:12::i;:::-;1705:23;;:7;:5;:7::i;:::-;:23;;;1697:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1641:132::o;692:98::-;745:7;772:10;765:17;;692:98;:::o;17384:381::-;17537:1;17520:19;;:5;:19;;;;17512:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17618:1;17599:21;;:7;:21;;;;17591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17703:6;17673:11;:18;17685:5;17673:18;;;;;;;;;;;;;;;:27;17692:7;17673:27;;;;;;;;;;;;;;;:36;;;;17741:7;17725:32;;17734:5;17725:32;;;17750:6;17725:32;;;;;;:::i;:::-;;;;;;;;17384:381;;;:::o;18057:453::-;18192:24;18219:25;18229:5;18236:7;18219:9;:25::i;:::-;18192:52;;18279:17;18259:16;:37;18255:248;;18341:6;18321:16;:26;;18313:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18425:51;18434:5;18441:7;18469:6;18450:16;:25;18425:8;:51::i;:::-;18255:248;18057:453;;;;:::o;20260:864::-;20408:1;20392:18;;:4;:18;;;;20384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20485:1;20471:16;;:2;:16;;;;20463:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20573:13;;20562:6;20546:9;:13;20556:2;20546:13;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;:40;;20538:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;20631:7;:5;:7::i;:::-;20623:15;;:4;:15;;;20620:96;;20677:4;20663:18;;:10;;;;;;;;;;;:18;;;20655:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;20620:96;20729:38;20750:4;20756:2;20760:6;20729:20;:38::i;:::-;20781:19;20803:9;:15;20813:4;20803:15;;;;;;;;;;;;;;;;20781:37;;20852:6;20837:11;:21;;20829:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;20969:6;20955:11;:20;20937:9;:15;20947:4;20937:15;;;;;;;;;;;;;;;:38;;;;21014:6;20997:9;:13;21007:2;20997:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;21054:2;21039:26;;21048:4;21039:26;;;21058:6;21039:26;;;;;;:::i;:::-;;;;;;;;21079:37;21099:4;21105:2;21109:6;21079:19;:37::i;:::-;20260:864;;;;:::o;2743:191::-;2817:16;2836:6;;;;;;;;;;;2817:25;;2862:8;2853:6;;:17;;;;;;;;;;;;;;;;;;2917:8;2886:40;;2907:8;2886:40;;;;;;;;;;;;2743:191;;:::o;19111:125::-;;;;:::o;19841:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:316::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:20;3455:1;3450:3;3446:11;3439:41;3506:2;3501:3;3497:12;3490:19;;3345:170;;;:::o;3521:370::-;;3684:67;3748:2;3743:3;3684:67;:::i;:::-;3677:74;;3781:34;3777:1;3772:3;3768:11;3761:55;3847:8;3842:2;3837:3;3833:12;3826:30;3882:2;3877:3;3873:12;3866:19;;3667:224;;;:::o;3897:366::-;;4060:67;4124:2;4119:3;4060:67;:::i;:::-;4053:74;;4157:34;4153:1;4148:3;4144:11;4137:55;4223:4;4218:2;4213:3;4209:12;4202:26;4254:2;4249:3;4245:12;4238:19;;4043:220;;;:::o;4269:314::-;;4432:67;4496:2;4491:3;4432:67;:::i;:::-;4425:74;;4529:18;4525:1;4520:3;4516:11;4509:39;4574:2;4569:3;4565:12;4558:19;;4415:168;;;:::o;4589:327::-;;4752:67;4816:2;4811:3;4752:67;:::i;:::-;4745:74;;4849:31;4845:1;4840:3;4836:11;4829:52;4907:2;4902:3;4898:12;4891:19;;4735:181;;;:::o;4922:370::-;;5085:67;5149:2;5144:3;5085:67;:::i;:::-;5078:74;;5182:34;5178:1;5173:3;5169:11;5162:55;5248:8;5243:2;5238:3;5234:12;5227:30;5283:2;5278:3;5274:12;5267:19;;5068:224;;;:::o;5298:330::-;;5461:67;5525:2;5520:3;5461:67;:::i;:::-;5454:74;;5558:34;5554:1;5549:3;5545:11;5538:55;5619:2;5614:3;5610:12;5603:19;;5444:184;;;:::o;5634:369::-;;5797:67;5861:2;5856:3;5797:67;:::i;:::-;5790:74;;5894:34;5890:1;5885:3;5881:11;5874:55;5960:7;5955:2;5950:3;5946:12;5939:29;5994:2;5989:3;5985:12;5978:19;;5780:223;;;:::o;6009:368::-;;6172:67;6236:2;6231:3;6172:67;:::i;:::-;6165:74;;6269:34;6265:1;6260:3;6256:11;6249:55;6335:6;6330:2;6325:3;6321:12;6314:28;6368:2;6363:3;6359:12;6352:19;;6155:222;;;:::o;6383:369::-;;6546:67;6610:2;6605:3;6546:67;:::i;:::-;6539:74;;6643:34;6639:1;6634:3;6630:11;6623:55;6709:7;6704:2;6699:3;6695:12;6688:29;6743:2;6738:3;6734:12;6727:19;;6529:223;;;:::o;6758:118::-;6845:24;6863:5;6845:24;:::i;:::-;6840:3;6833:37;6823:53;;:::o;6882:112::-;6965:22;6981:5;6965:22;:::i;:::-;6960:3;6953:35;6943:51;;:::o;7000:222::-;;7131:2;7120:9;7116:18;7108:26;;7144:71;7212:1;7201:9;7197:17;7188:6;7144:71;:::i;:::-;7098:124;;;;:::o;7228:210::-;;7353:2;7342:9;7338:18;7330:26;;7366:65;7428:1;7417:9;7413:17;7404:6;7366:65;:::i;:::-;7320:118;;;;:::o;7444:313::-;;7595:2;7584:9;7580:18;7572:26;;7644:9;7638:4;7634:20;7630:1;7619:9;7615:17;7608:47;7672:78;7745:4;7736:6;7672:78;:::i;:::-;7664:86;;7562:195;;;;:::o;7763:419::-;;7967:2;7956:9;7952:18;7944:26;;8016:9;8010:4;8006:20;8002:1;7991:9;7987:17;7980:47;8044:131;8170:4;8044:131;:::i;:::-;8036:139;;7934:248;;;:::o;8188:419::-;;8392:2;8381:9;8377:18;8369:26;;8441:9;8435:4;8431:20;8427:1;8416:9;8412:17;8405:47;8469:131;8595:4;8469:131;:::i;:::-;8461:139;;8359:248;;;:::o;8613:419::-;;8817:2;8806:9;8802:18;8794:26;;8866:9;8860:4;8856:20;8852:1;8841:9;8837:17;8830:47;8894:131;9020:4;8894:131;:::i;:::-;8886:139;;8784:248;;;:::o;9038:419::-;;9242:2;9231:9;9227:18;9219:26;;9291:9;9285:4;9281:20;9277:1;9266:9;9262:17;9255:47;9319:131;9445:4;9319:131;:::i;:::-;9311:139;;9209:248;;;:::o;9463:419::-;;9667:2;9656:9;9652:18;9644:26;;9716:9;9710:4;9706:20;9702:1;9691:9;9687:17;9680:47;9744:131;9870:4;9744:131;:::i;:::-;9736:139;;9634:248;;;:::o;9888:419::-;;10092:2;10081:9;10077:18;10069:26;;10141:9;10135:4;10131:20;10127:1;10116:9;10112:17;10105:47;10169:131;10295:4;10169:131;:::i;:::-;10161:139;;10059:248;;;:::o;10313:419::-;;10517:2;10506:9;10502:18;10494:26;;10566:9;10560:4;10556:20;10552:1;10541:9;10537:17;10530:47;10594:131;10720:4;10594:131;:::i;:::-;10586:139;;10484:248;;;:::o;10738:419::-;;10942:2;10931:9;10927:18;10919:26;;10991:9;10985:4;10981:20;10977:1;10966:9;10962:17;10955:47;11019:131;11145:4;11019:131;:::i;:::-;11011:139;;10909:248;;;:::o;11163:419::-;;11367:2;11356:9;11352:18;11344:26;;11416:9;11410:4;11406:20;11402:1;11391:9;11387:17;11380:47;11444:131;11570:4;11444:131;:::i;:::-;11436:139;;11334:248;;;:::o;11588:419::-;;11792:2;11781:9;11777:18;11769:26;;11841:9;11835:4;11831:20;11827:1;11816:9;11812:17;11805:47;11869:131;11995:4;11869:131;:::i;:::-;11861:139;;11759:248;;;:::o;12013:419::-;;12217:2;12206:9;12202:18;12194:26;;12266:9;12260:4;12256:20;12252:1;12241:9;12237:17;12230:47;12294:131;12420:4;12294:131;:::i;:::-;12286:139;;12184:248;;;:::o;12438:222::-;;12569:2;12558:9;12554:18;12546:26;;12582:71;12650:1;12639:9;12635:17;12626:6;12582:71;:::i;:::-;12536:124;;;;:::o;12666:214::-;;12793:2;12782:9;12778:18;12770:26;;12806:67;12870:1;12859:9;12855:17;12846:6;12806:67;:::i;:::-;12760:120;;;;:::o;12886:99::-;;12972:5;12966:12;12956:22;;12945:40;;;:::o;12991:169::-;;13109:6;13104:3;13097:19;13149:4;13144:3;13140:14;13125:29;;13087:73;;;;:::o;13166:305::-;;13225:20;13243:1;13225:20;:::i;:::-;13220:25;;13259:20;13277:1;13259:20;:::i;:::-;13254:25;;13413:1;13345:66;13341:74;13338:1;13335:81;13332:2;;;13419:18;;:::i;:::-;13332:2;13463:1;13460;13456:9;13449:16;;13210:261;;;;:::o;13477:96::-;;13543:24;13561:5;13543:24;:::i;:::-;13532:35;;13522:51;;;:::o;13579:90::-;;13656:5;13649:13;13642:21;13631:32;;13621:48;;;:::o;13675:126::-;;13752:42;13745:5;13741:54;13730:65;;13720:81;;;:::o;13807:77::-;;13873:5;13862:16;;13852:32;;;:::o;13890:86::-;;13965:4;13958:5;13954:16;13943:27;;13933:43;;;:::o;13982:307::-;14050:1;14060:113;14074:6;14071:1;14068:13;14060:113;;;14159:1;14154:3;14150:11;14144:18;14140:1;14135:3;14131:11;14124:39;14096:2;14093:1;14089:10;14084:15;;14060:113;;;14191:6;14188:1;14185:13;14182:2;;;14271:1;14262:6;14257:3;14253:16;14246:27;14182:2;14031:258;;;;:::o;14295:320::-;;14376:1;14370:4;14366:12;14356:22;;14423:1;14417:4;14413:12;14444:18;14434:2;;14500:4;14492:6;14488:17;14478:27;;14434:2;14562;14554:6;14551:14;14531:18;14528:38;14525:2;;;14581:18;;:::i;:::-;14525:2;14346:269;;;;:::o;14621:180::-;14669:77;14666:1;14659:88;14766:4;14763:1;14756:15;14790:4;14787:1;14780:15;14807:180;14855:77;14852:1;14845:88;14952:4;14949:1;14942:15;14976:4;14973:1;14966:15;14993:102;;15085:2;15081:7;15076:2;15069:5;15065:14;15061:28;15051:38;;15041:54;;;:::o;15101:122::-;15174:24;15192:5;15174:24;:::i;:::-;15167:5;15164:35;15154:2;;15213:1;15210;15203:12;15154:2;15144:79;:::o;15229:122::-;15302:24;15320:5;15302:24;:::i;:::-;15295:5;15292:35;15282:2;;15341:1;15338;15331:12;15282:2;15272:79;:::o

Swarm Source

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