ETH Price: $3,491.09 (+2.06%)
Gas: 11 Gwei

Token

JohnGaltCoin (GALT)
 

Overview

Max Total Supply

1,000,000,000 GALT

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,530,869.841004983226795241 GALT

Value
$0.00
0xc75c3ecb0b12ef0438100f1e85b936547eb7853c
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:
JohnGaltCoin

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol

// This is a simple token for those who admire the idea of free markets and capitalism. 

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/JohnGaltCoin.sol


// This is a simple token 
pragma solidity ^0.8.9;



contract JohnGaltCoin is ERC20, Ownable {
    mapping(address => uint256) public _lastPurchaseBlock;
    bool preventBots = true;

    constructor() ERC20("JohnGaltCoin", "GALT") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }

    function setPreventBotsFlag(bool _preventBotsFlagValue) public onlyOwner {
        preventBots = _preventBotsFlagValue;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        if (preventBots) {
            require(_lastPurchaseBlock[from] != block.number, "Bots are not allowed");
        }

        _lastPurchaseBlock[to] = block.number;

        super._beforeTokenTransfer(from, to, amount);
    }
}

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":"_lastPurchaseBlock","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_preventBotsFlagValue","type":"bool"}],"name":"setPreventBotsFlag","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"}]

6080604052600160075f6101000a81548160ff0219169083151502179055503480156200002a575f80fd5b506040518060400160405280600c81526020017f4a6f686e47616c74436f696e00000000000000000000000000000000000000008152506040518060400160405280600481526020017f47414c54000000000000000000000000000000000000000000000000000000008152508160039081620000a89190620006ba565b508060049081620000ba9190620006ba565b505050620000dd620000d16200012360201b60201c565b6200012a60201b60201c565b6200011d33620000f2620001ed60201b60201c565b600a62000100919062000927565b633b9aca0062000111919062000977565b620001f560201b60201c565b62000b13565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000266576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025d9062000a1f565b60405180910390fd5b620002795f83836200035a60201b60201c565b8060025f8282546200028c919062000a3f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033b919062000a8a565b60405180910390a3620003565f83836200044c60201b60201c565b5050565b60075f9054906101000a900460ff1615620003f2574360065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403620003f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e89062000af3565b60405180910390fd5b5b4360065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550620004478383836200045160201b60201c565b505050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620004d257607f821691505b602082108103620004e857620004e76200048d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200054c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200050f565b6200055886836200050f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005a26200059c620005968462000570565b62000579565b62000570565b9050919050565b5f819050919050565b620005bd8362000582565b620005d5620005cc82620005a9565b8484546200051b565b825550505050565b5f90565b620005eb620005dd565b620005f8818484620005b2565b505050565b5b818110156200061f57620006135f82620005e1565b600181019050620005fe565b5050565b601f8211156200066e576200063881620004ee565b620006438462000500565b8101602085101562000653578190505b6200066b620006628562000500565b830182620005fd565b50505b505050565b5f82821c905092915050565b5f620006905f198460080262000673565b1980831691505092915050565b5f620006aa83836200067f565b9150826002028217905092915050565b620006c58262000456565b67ffffffffffffffff811115620006e157620006e062000460565b5b620006ed8254620004ba565b620006fa82828562000623565b5f60209050601f83116001811462000730575f84156200071b578287015190505b6200072785826200069d565b86555062000796565b601f1984166200074086620004ee565b5f5b82811015620007695784890151825560018201915060208501945060208101905062000742565b8683101562000789578489015162000785601f8916826200067f565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000828578086048111156200080057620007ff6200079e565b5b6001851615620008105780820291505b80810290506200082085620007cb565b9450620007e0565b94509492505050565b5f8262000842576001905062000914565b8162000851575f905062000914565b81600181146200086a57600281146200087557620008ab565b600191505062000914565b60ff8411156200088a57620008896200079e565b5b8360020a915084821115620008a457620008a36200079e565b5b5062000914565b5060208310610133831016604e8410600b8410161715620008e55782820a905083811115620008df57620008de6200079e565b5b62000914565b620008f48484846001620007d7565b925090508184048111156200090e576200090d6200079e565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620009338262000570565b915062000940836200091b565b92506200096f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000831565b905092915050565b5f620009838262000570565b9150620009908362000570565b9250828202620009a08162000570565b91508282048414831517620009ba57620009b96200079e565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000a07601f83620009c1565b915062000a1482620009d1565b602082019050919050565b5f6020820190508181035f83015262000a3881620009f9565b9050919050565b5f62000a4b8262000570565b915062000a588362000570565b925082820190508082111562000a735762000a726200079e565b5b92915050565b62000a848162000570565b82525050565b5f60208201905062000a9f5f83018462000a79565b92915050565b7f426f747320617265206e6f7420616c6c6f7765640000000000000000000000005f82015250565b5f62000adb601483620009c1565b915062000ae88262000aa5565b602082019050919050565b5f6020820190508181035f83015262000b0c8162000acd565b9050919050565b6117a28062000b215f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c80637bdd94b411610095578063a9059cbb11610064578063a9059cbb146102c2578063ac9c42ff146102f2578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b80637bdd94b4146102265780638da5cb5b1461025657806395d89b4114610274578063a457c2d714610292576100fe565b8063313ce567116100d1578063313ce5671461019e57806339509351146101bc57806370a08231146101ec578063715018a61461021c576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a61035a565b6040516101179190610ee1565b60405180910390f35b61013a60048036038101906101359190610f92565b6103ea565b6040516101479190610fea565b60405180910390f35b61015861040c565b6040516101659190611012565b60405180910390f35b6101886004803603810190610183919061102b565b610415565b6040516101959190610fea565b60405180910390f35b6101a6610443565b6040516101b39190611096565b60405180910390f35b6101d660048036038101906101d19190610f92565b61044b565b6040516101e39190610fea565b60405180910390f35b610206600480360381019061020191906110af565b610481565b6040516102139190611012565b60405180910390f35b6102246104c6565b005b610240600480360381019061023b91906110af565b6104d9565b60405161024d9190611012565b60405180910390f35b61025e6104ee565b60405161026b91906110e9565b60405180910390f35b61027c610516565b6040516102899190610ee1565b60405180910390f35b6102ac60048036038101906102a79190610f92565b6105a6565b6040516102b99190610fea565b60405180910390f35b6102dc60048036038101906102d79190610f92565b61061b565b6040516102e99190610fea565b60405180910390f35b61030c6004803603810190610307919061112c565b61063d565b005b61032860048036038101906103239190611157565b610661565b6040516103359190611012565b60405180910390f35b610358600480360381019061035391906110af565b6106e3565b005b606060038054610369906111c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610395906111c2565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f4610765565b905061040181858561076c565b600191505092915050565b5f600254905090565b5f8061041f610765565b905061042c85828561092f565b6104378585856109ba565b60019150509392505050565b5f6012905090565b5f80610455610765565b90506104768185856104678589610661565b610471919061121f565b61076c565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104ce610c26565b6104d75f610ca4565b565b6006602052805f5260405f205f915090505481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610525906111c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610551906111c2565b801561059c5780601f106105735761010080835404028352916020019161059c565b820191905f5260205f20905b81548152906001019060200180831161057f57829003601f168201915b5050505050905090565b5f806105b0610765565b90505f6105bd8286610661565b905083811015610602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f9906112c2565b60405180910390fd5b61060f828686840361076c565b60019250505092915050565b5f80610625610765565b90506106328185856109ba565b600191505092915050565b610645610c26565b8060075f6101000a81548160ff02191690831515021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106eb610c26565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075090611350565b60405180910390fd5b61076281610ca4565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d1906113de565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083f9061146c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109229190611012565b60405180910390a3505050565b5f61093a8484610661565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109b457818110156109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d906114d4565b60405180910390fd5b6109b3848484840361076c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90611562565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d906115f0565b60405180910390fd5b610aa1838383610d67565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b9061167e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0d9190611012565b60405180910390a3610c20848484610e4d565b50505050565b610c2e610765565b73ffffffffffffffffffffffffffffffffffffffff16610c4c6104ee565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906116e6565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60075f9054906101000a900460ff1615610dfb574360065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df19061174e565b60405180910390fd5b5b4360065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610e48838383610e52565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e8e578082015181840152602081019050610e73565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610eb382610e57565b610ebd8185610e61565b9350610ecd818560208601610e71565b610ed681610e99565b840191505092915050565b5f6020820190508181035f830152610ef98184610ea9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f2e82610f05565b9050919050565b610f3e81610f24565b8114610f48575f80fd5b50565b5f81359050610f5981610f35565b92915050565b5f819050919050565b610f7181610f5f565b8114610f7b575f80fd5b50565b5f81359050610f8c81610f68565b92915050565b5f8060408385031215610fa857610fa7610f01565b5b5f610fb585828601610f4b565b9250506020610fc685828601610f7e565b9150509250929050565b5f8115159050919050565b610fe481610fd0565b82525050565b5f602082019050610ffd5f830184610fdb565b92915050565b61100c81610f5f565b82525050565b5f6020820190506110255f830184611003565b92915050565b5f805f6060848603121561104257611041610f01565b5b5f61104f86828701610f4b565b935050602061106086828701610f4b565b925050604061107186828701610f7e565b9150509250925092565b5f60ff82169050919050565b6110908161107b565b82525050565b5f6020820190506110a95f830184611087565b92915050565b5f602082840312156110c4576110c3610f01565b5b5f6110d184828501610f4b565b91505092915050565b6110e381610f24565b82525050565b5f6020820190506110fc5f8301846110da565b92915050565b61110b81610fd0565b8114611115575f80fd5b50565b5f8135905061112681611102565b92915050565b5f6020828403121561114157611140610f01565b5b5f61114e84828501611118565b91505092915050565b5f806040838503121561116d5761116c610f01565b5b5f61117a85828601610f4b565b925050602061118b85828601610f4b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111d957607f821691505b6020821081036111ec576111eb611195565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61122982610f5f565b915061123483610f5f565b925082820190508082111561124c5761124b6111f2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6112ac602583610e61565b91506112b782611252565b604082019050919050565b5f6020820190508181035f8301526112d9816112a0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61133a602683610e61565b9150611345826112e0565b604082019050919050565b5f6020820190508181035f8301526113678161132e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6113c8602483610e61565b91506113d38261136e565b604082019050919050565b5f6020820190508181035f8301526113f5816113bc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611456602283610e61565b9150611461826113fc565b604082019050919050565b5f6020820190508181035f8301526114838161144a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6114be601d83610e61565b91506114c98261148a565b602082019050919050565b5f6020820190508181035f8301526114eb816114b2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61154c602583610e61565b9150611557826114f2565b604082019050919050565b5f6020820190508181035f83015261157981611540565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115da602383610e61565b91506115e582611580565b604082019050919050565b5f6020820190508181035f830152611607816115ce565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611668602683610e61565b91506116738261160e565b604082019050919050565b5f6020820190508181035f8301526116958161165c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6116d0602083610e61565b91506116db8261169c565b602082019050919050565b5f6020820190508181035f8301526116fd816116c4565b9050919050565b7f426f747320617265206e6f7420616c6c6f7765640000000000000000000000005f82015250565b5f611738601483610e61565b915061174382611704565b602082019050919050565b5f6020820190508181035f8301526117658161172c565b905091905056fea2646970667358221220d4b10079c7d17b5a598af70ca8ab298454dae50599ecbf3b48ed3bafa76e0ba264736f6c63430008150033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c80637bdd94b411610095578063a9059cbb11610064578063a9059cbb146102c2578063ac9c42ff146102f2578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b80637bdd94b4146102265780638da5cb5b1461025657806395d89b4114610274578063a457c2d714610292576100fe565b8063313ce567116100d1578063313ce5671461019e57806339509351146101bc57806370a08231146101ec578063715018a61461021c576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a61035a565b6040516101179190610ee1565b60405180910390f35b61013a60048036038101906101359190610f92565b6103ea565b6040516101479190610fea565b60405180910390f35b61015861040c565b6040516101659190611012565b60405180910390f35b6101886004803603810190610183919061102b565b610415565b6040516101959190610fea565b60405180910390f35b6101a6610443565b6040516101b39190611096565b60405180910390f35b6101d660048036038101906101d19190610f92565b61044b565b6040516101e39190610fea565b60405180910390f35b610206600480360381019061020191906110af565b610481565b6040516102139190611012565b60405180910390f35b6102246104c6565b005b610240600480360381019061023b91906110af565b6104d9565b60405161024d9190611012565b60405180910390f35b61025e6104ee565b60405161026b91906110e9565b60405180910390f35b61027c610516565b6040516102899190610ee1565b60405180910390f35b6102ac60048036038101906102a79190610f92565b6105a6565b6040516102b99190610fea565b60405180910390f35b6102dc60048036038101906102d79190610f92565b61061b565b6040516102e99190610fea565b60405180910390f35b61030c6004803603810190610307919061112c565b61063d565b005b61032860048036038101906103239190611157565b610661565b6040516103359190611012565b60405180910390f35b610358600480360381019061035391906110af565b6106e3565b005b606060038054610369906111c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610395906111c2565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f4610765565b905061040181858561076c565b600191505092915050565b5f600254905090565b5f8061041f610765565b905061042c85828561092f565b6104378585856109ba565b60019150509392505050565b5f6012905090565b5f80610455610765565b90506104768185856104678589610661565b610471919061121f565b61076c565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104ce610c26565b6104d75f610ca4565b565b6006602052805f5260405f205f915090505481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610525906111c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610551906111c2565b801561059c5780601f106105735761010080835404028352916020019161059c565b820191905f5260205f20905b81548152906001019060200180831161057f57829003601f168201915b5050505050905090565b5f806105b0610765565b90505f6105bd8286610661565b905083811015610602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f9906112c2565b60405180910390fd5b61060f828686840361076c565b60019250505092915050565b5f80610625610765565b90506106328185856109ba565b600191505092915050565b610645610c26565b8060075f6101000a81548160ff02191690831515021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106eb610c26565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075090611350565b60405180910390fd5b61076281610ca4565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d1906113de565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083f9061146c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109229190611012565b60405180910390a3505050565b5f61093a8484610661565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109b457818110156109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d906114d4565b60405180910390fd5b6109b3848484840361076c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90611562565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d906115f0565b60405180910390fd5b610aa1838383610d67565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b9061167e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0d9190611012565b60405180910390a3610c20848484610e4d565b50505050565b610c2e610765565b73ffffffffffffffffffffffffffffffffffffffff16610c4c6104ee565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906116e6565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60075f9054906101000a900460ff1615610dfb574360065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df19061174e565b60405180910390fd5b5b4360065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610e48838383610e52565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e8e578082015181840152602081019050610e73565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610eb382610e57565b610ebd8185610e61565b9350610ecd818560208601610e71565b610ed681610e99565b840191505092915050565b5f6020820190508181035f830152610ef98184610ea9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f2e82610f05565b9050919050565b610f3e81610f24565b8114610f48575f80fd5b50565b5f81359050610f5981610f35565b92915050565b5f819050919050565b610f7181610f5f565b8114610f7b575f80fd5b50565b5f81359050610f8c81610f68565b92915050565b5f8060408385031215610fa857610fa7610f01565b5b5f610fb585828601610f4b565b9250506020610fc685828601610f7e565b9150509250929050565b5f8115159050919050565b610fe481610fd0565b82525050565b5f602082019050610ffd5f830184610fdb565b92915050565b61100c81610f5f565b82525050565b5f6020820190506110255f830184611003565b92915050565b5f805f6060848603121561104257611041610f01565b5b5f61104f86828701610f4b565b935050602061106086828701610f4b565b925050604061107186828701610f7e565b9150509250925092565b5f60ff82169050919050565b6110908161107b565b82525050565b5f6020820190506110a95f830184611087565b92915050565b5f602082840312156110c4576110c3610f01565b5b5f6110d184828501610f4b565b91505092915050565b6110e381610f24565b82525050565b5f6020820190506110fc5f8301846110da565b92915050565b61110b81610fd0565b8114611115575f80fd5b50565b5f8135905061112681611102565b92915050565b5f6020828403121561114157611140610f01565b5b5f61114e84828501611118565b91505092915050565b5f806040838503121561116d5761116c610f01565b5b5f61117a85828601610f4b565b925050602061118b85828601610f4b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111d957607f821691505b6020821081036111ec576111eb611195565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61122982610f5f565b915061123483610f5f565b925082820190508082111561124c5761124b6111f2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6112ac602583610e61565b91506112b782611252565b604082019050919050565b5f6020820190508181035f8301526112d9816112a0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61133a602683610e61565b9150611345826112e0565b604082019050919050565b5f6020820190508181035f8301526113678161132e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6113c8602483610e61565b91506113d38261136e565b604082019050919050565b5f6020820190508181035f8301526113f5816113bc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611456602283610e61565b9150611461826113fc565b604082019050919050565b5f6020820190508181035f8301526114838161144a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6114be601d83610e61565b91506114c98261148a565b602082019050919050565b5f6020820190508181035f8301526114eb816114b2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61154c602583610e61565b9150611557826114f2565b604082019050919050565b5f6020820190508181035f83015261157981611540565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115da602383610e61565b91506115e582611580565b604082019050919050565b5f6020820190508181035f830152611607816115ce565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611668602683610e61565b91506116738261160e565b604082019050919050565b5f6020820190508181035f8301526116958161165c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6116d0602083610e61565b91506116db8261169c565b602082019050919050565b5f6020820190508181035f8301526116fd816116c4565b9050919050565b7f426f747320617265206e6f7420616c6c6f7765640000000000000000000000005f82015250565b5f611738601483610e61565b915061174382611704565b602082019050919050565b5f6020820190508181035f8301526117658161172c565b905091905056fea2646970667358221220d4b10079c7d17b5a598af70ca8ab298454dae50599ecbf3b48ed3bafa76e0ba264736f6c63430008150033

Deployed Bytecode Sourcemap

20530:736:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9437:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11797:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10566:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12578:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10408:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13248:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10737:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2892:103;;;:::i;:::-;;20577:53;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2251:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9656:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13989:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11070:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20788:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11326:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3150:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9437:100;9491:13;9524:5;9517:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9437:100;:::o;11797:201::-;11880:4;11897:13;11913:12;:10;:12::i;:::-;11897:28;;11936:32;11945:5;11952:7;11961:6;11936:8;:32::i;:::-;11986:4;11979:11;;;11797:201;;;;:::o;10566:108::-;10627:7;10654:12;;10647:19;;10566:108;:::o;12578:261::-;12675:4;12692:15;12710:12;:10;:12::i;:::-;12692:30;;12733:38;12749:4;12755:7;12764:6;12733:15;:38::i;:::-;12782:27;12792:4;12798:2;12802:6;12782:9;:27::i;:::-;12827:4;12820:11;;;12578:261;;;;;:::o;10408:93::-;10466:5;10491:2;10484:9;;10408:93;:::o;13248:238::-;13336:4;13353:13;13369:12;:10;:12::i;:::-;13353:28;;13392:64;13401:5;13408:7;13445:10;13417:25;13427:5;13434:7;13417:9;:25::i;:::-;:38;;;;:::i;:::-;13392:8;:64::i;:::-;13474:4;13467:11;;;13248:238;;;;:::o;10737:127::-;10811:7;10838:9;:18;10848:7;10838:18;;;;;;;;;;;;;;;;10831:25;;10737:127;;;:::o;2892:103::-;2137:13;:11;:13::i;:::-;2957:30:::1;2984:1;2957:18;:30::i;:::-;2892:103::o:0;20577:53::-;;;;;;;;;;;;;;;;;:::o;2251:87::-;2297:7;2324:6;;;;;;;;;;;2317:13;;2251:87;:::o;9656:104::-;9712:13;9745:7;9738:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9656:104;:::o;13989:436::-;14082:4;14099:13;14115:12;:10;:12::i;:::-;14099:28;;14138:24;14165:25;14175:5;14182:7;14165:9;:25::i;:::-;14138:52;;14229:15;14209:16;:35;;14201:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14322:60;14331:5;14338:7;14366:15;14347:16;:34;14322:8;:60::i;:::-;14413:4;14406:11;;;;13989:436;;;;:::o;11070:193::-;11149:4;11166:13;11182:12;:10;:12::i;:::-;11166:28;;11205;11215:5;11222:2;11226:6;11205:9;:28::i;:::-;11251:4;11244:11;;;11070:193;;;;:::o;20788:127::-;2137:13;:11;:13::i;:::-;20886:21:::1;20872:11;;:35;;;;;;;;;;;;;;;;;;20788:127:::0;:::o;11326:151::-;11415:7;11442:11;:18;11454:5;11442:18;;;;;;;;;;;;;;;:27;11461:7;11442:27;;;;;;;;;;;;;;;;11435:34;;11326:151;;;;:::o;3150:201::-;2137:13;:11;:13::i;:::-;3259:1:::1;3239:22;;:8;:22;;::::0;3231:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3315:28;3334:8;3315:18;:28::i;:::-;3150:201:::0;:::o;802:98::-;855:7;882:10;875:17;;802:98;:::o;17982:346::-;18101:1;18084:19;;:5;:19;;;18076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18182:1;18163:21;;:7;:21;;;18155:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18266:6;18236:11;:18;18248:5;18236:18;;;;;;;;;;;;;;;:27;18255:7;18236:27;;;;;;;;;;;;;;;:36;;;;18304:7;18288:32;;18297:5;18288:32;;;18313:6;18288:32;;;;;;:::i;:::-;;;;;;;;17982:346;;;:::o;18619:419::-;18720:24;18747:25;18757:5;18764:7;18747:9;:25::i;:::-;18720:52;;18807:17;18787:16;:37;18783:248;;18869:6;18849:16;:26;;18841:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18953:51;18962:5;18969:7;18997:6;18978:16;:25;18953:8;:51::i;:::-;18783:248;18709:329;18619:419;;;:::o;14895:806::-;15008:1;14992:18;;:4;:18;;;14984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15085:1;15071:16;;:2;:16;;;15063:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15140:38;15161:4;15167:2;15171:6;15140:20;:38::i;:::-;15191:19;15213:9;:15;15223:4;15213:15;;;;;;;;;;;;;;;;15191:37;;15262:6;15247:11;:21;;15239:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15379:6;15365:11;:20;15347:9;:15;15357:4;15347:15;;;;;;;;;;;;;;;:38;;;;15582:6;15565:9;:13;15575:2;15565:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15632:2;15617:26;;15626:4;15617:26;;;15636:6;15617:26;;;;;;:::i;:::-;;;;;;;;15656:37;15676:4;15682:2;15686:6;15656:19;:37::i;:::-;14973:728;14895:806;;;:::o;2416:132::-;2491:12;:10;:12::i;:::-;2480:23;;:7;:5;:7::i;:::-;:23;;;2472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2416:132::o;3511:191::-;3585:16;3604:6;;;;;;;;;;;3585:25;;3630:8;3621:6;;:17;;;;;;;;;;;;;;;;;;3685:8;3654:40;;3675:8;3654:40;;;;;;;;;;;;3574:128;3511:191;:::o;20923:340::-;21036:11;;;;;;;;;;;21032:117;;;21100:12;21072:18;:24;21091:4;21072:24;;;;;;;;;;;;;;;;:40;21064:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21032:117;21186:12;21161:18;:22;21180:2;21161:22;;;;;;;;;;;;;;;:37;;;;21211:44;21238:4;21244:2;21248:6;21211:26;:44::i;:::-;20923:340;;;:::o;20333:90::-;;;;:::o;19638:91::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:116::-;5610:21;5625:5;5610:21;:::i;:::-;5603:5;5600:32;5590:60;;5646:1;5643;5636:12;5590:60;5540:116;:::o;5662:133::-;5705:5;5743:6;5730:20;5721:29;;5759:30;5783:5;5759:30;:::i;:::-;5662:133;;;;:::o;5801:323::-;5857:6;5906:2;5894:9;5885:7;5881:23;5877:32;5874:119;;;5912:79;;:::i;:::-;5874:119;6032:1;6057:50;6099:7;6090:6;6079:9;6075:22;6057:50;:::i;:::-;6047:60;;6003:114;5801:323;;;;:::o;6130:474::-;6198:6;6206;6255:2;6243:9;6234:7;6230:23;6226:32;6223:119;;;6261:79;;:::i;:::-;6223:119;6381:1;6406:53;6451:7;6442:6;6431:9;6427:22;6406:53;:::i;:::-;6396:63;;6352:117;6508:2;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6479:118;6130:474;;;;;:::o;6610:180::-;6658:77;6655:1;6648:88;6755:4;6752:1;6745:15;6779:4;6776:1;6769:15;6796:320;6840:6;6877:1;6871:4;6867:12;6857:22;;6924:1;6918:4;6914:12;6945:18;6935:81;;7001:4;6993:6;6989:17;6979:27;;6935:81;7063:2;7055:6;7052:14;7032:18;7029:38;7026:84;;7082:18;;:::i;:::-;7026:84;6847:269;6796:320;;;:::o;7122:180::-;7170:77;7167:1;7160:88;7267:4;7264:1;7257:15;7291:4;7288:1;7281:15;7308:191;7348:3;7367:20;7385:1;7367:20;:::i;:::-;7362:25;;7401:20;7419:1;7401:20;:::i;:::-;7396:25;;7444:1;7441;7437:9;7430:16;;7465:3;7462:1;7459:10;7456:36;;;7472:18;;:::i;:::-;7456:36;7308:191;;;;:::o;7505:224::-;7645:34;7641:1;7633:6;7629:14;7622:58;7714:7;7709:2;7701:6;7697:15;7690:32;7505:224;:::o;7735:366::-;7877:3;7898:67;7962:2;7957:3;7898:67;:::i;:::-;7891:74;;7974:93;8063:3;7974:93;:::i;:::-;8092:2;8087:3;8083:12;8076:19;;7735:366;;;:::o;8107:419::-;8273:4;8311:2;8300:9;8296:18;8288:26;;8360:9;8354:4;8350:20;8346:1;8335:9;8331:17;8324:47;8388:131;8514:4;8388:131;:::i;:::-;8380:139;;8107:419;;;:::o;8532:225::-;8672:34;8668:1;8660:6;8656:14;8649:58;8741:8;8736:2;8728:6;8724:15;8717:33;8532:225;:::o;8763:366::-;8905:3;8926:67;8990:2;8985:3;8926:67;:::i;:::-;8919:74;;9002:93;9091:3;9002:93;:::i;:::-;9120:2;9115:3;9111:12;9104:19;;8763:366;;;:::o;9135:419::-;9301:4;9339:2;9328:9;9324:18;9316:26;;9388:9;9382:4;9378:20;9374:1;9363:9;9359:17;9352:47;9416:131;9542:4;9416:131;:::i;:::-;9408:139;;9135:419;;;:::o;9560:223::-;9700:34;9696:1;9688:6;9684:14;9677:58;9769:6;9764:2;9756:6;9752:15;9745:31;9560:223;:::o;9789:366::-;9931:3;9952:67;10016:2;10011:3;9952:67;:::i;:::-;9945:74;;10028:93;10117:3;10028:93;:::i;:::-;10146:2;10141:3;10137:12;10130:19;;9789:366;;;:::o;10161:419::-;10327:4;10365:2;10354:9;10350:18;10342:26;;10414:9;10408:4;10404:20;10400:1;10389:9;10385:17;10378:47;10442:131;10568:4;10442:131;:::i;:::-;10434:139;;10161:419;;;:::o;10586:221::-;10726:34;10722:1;10714:6;10710:14;10703:58;10795:4;10790:2;10782:6;10778:15;10771:29;10586:221;:::o;10813:366::-;10955:3;10976:67;11040:2;11035:3;10976:67;:::i;:::-;10969:74;;11052:93;11141:3;11052:93;:::i;:::-;11170:2;11165:3;11161:12;11154:19;;10813:366;;;:::o;11185:419::-;11351:4;11389:2;11378:9;11374:18;11366:26;;11438:9;11432:4;11428:20;11424:1;11413:9;11409:17;11402:47;11466:131;11592:4;11466:131;:::i;:::-;11458:139;;11185:419;;;:::o;11610:179::-;11750:31;11746:1;11738:6;11734:14;11727:55;11610:179;:::o;11795:366::-;11937:3;11958:67;12022:2;12017:3;11958:67;:::i;:::-;11951:74;;12034:93;12123:3;12034:93;:::i;:::-;12152:2;12147:3;12143:12;12136:19;;11795:366;;;:::o;12167:419::-;12333:4;12371:2;12360:9;12356:18;12348:26;;12420:9;12414:4;12410:20;12406:1;12395:9;12391:17;12384:47;12448:131;12574:4;12448:131;:::i;:::-;12440:139;;12167:419;;;:::o;12592:224::-;12732:34;12728:1;12720:6;12716:14;12709:58;12801:7;12796:2;12788:6;12784:15;12777:32;12592:224;:::o;12822:366::-;12964:3;12985:67;13049:2;13044:3;12985:67;:::i;:::-;12978:74;;13061:93;13150:3;13061:93;:::i;:::-;13179:2;13174:3;13170:12;13163:19;;12822:366;;;:::o;13194:419::-;13360:4;13398:2;13387:9;13383:18;13375:26;;13447:9;13441:4;13437:20;13433:1;13422:9;13418:17;13411:47;13475:131;13601:4;13475:131;:::i;:::-;13467:139;;13194:419;;;:::o;13619:222::-;13759:34;13755:1;13747:6;13743:14;13736:58;13828:5;13823:2;13815:6;13811:15;13804:30;13619:222;:::o;13847:366::-;13989:3;14010:67;14074:2;14069:3;14010:67;:::i;:::-;14003:74;;14086:93;14175:3;14086:93;:::i;:::-;14204:2;14199:3;14195:12;14188:19;;13847:366;;;:::o;14219:419::-;14385:4;14423:2;14412:9;14408:18;14400:26;;14472:9;14466:4;14462:20;14458:1;14447:9;14443:17;14436:47;14500:131;14626:4;14500:131;:::i;:::-;14492:139;;14219:419;;;:::o;14644:225::-;14784:34;14780:1;14772:6;14768:14;14761:58;14853:8;14848:2;14840:6;14836:15;14829:33;14644:225;:::o;14875:366::-;15017:3;15038:67;15102:2;15097:3;15038:67;:::i;:::-;15031:74;;15114:93;15203:3;15114:93;:::i;:::-;15232:2;15227:3;15223:12;15216:19;;14875:366;;;:::o;15247:419::-;15413:4;15451:2;15440:9;15436:18;15428:26;;15500:9;15494:4;15490:20;15486:1;15475:9;15471:17;15464:47;15528:131;15654:4;15528:131;:::i;:::-;15520:139;;15247:419;;;:::o;15672:182::-;15812:34;15808:1;15800:6;15796:14;15789:58;15672:182;:::o;15860:366::-;16002:3;16023:67;16087:2;16082:3;16023:67;:::i;:::-;16016:74;;16099:93;16188:3;16099:93;:::i;:::-;16217:2;16212:3;16208:12;16201:19;;15860:366;;;:::o;16232:419::-;16398:4;16436:2;16425:9;16421:18;16413:26;;16485:9;16479:4;16475:20;16471:1;16460:9;16456:17;16449:47;16513:131;16639:4;16513:131;:::i;:::-;16505:139;;16232:419;;;:::o;16657:170::-;16797:22;16793:1;16785:6;16781:14;16774:46;16657:170;:::o;16833:366::-;16975:3;16996:67;17060:2;17055:3;16996:67;:::i;:::-;16989:74;;17072:93;17161:3;17072:93;:::i;:::-;17190:2;17185:3;17181:12;17174:19;;16833:366;;;:::o;17205:419::-;17371:4;17409:2;17398:9;17394:18;17386:26;;17458:9;17452:4;17448:20;17444:1;17433:9;17429:17;17422:47;17486:131;17612:4;17486:131;:::i;:::-;17478:139;;17205:419;;;:::o

Swarm Source

ipfs://d4b10079c7d17b5a598af70ca8ab298454dae50599ecbf3b48ed3bafa76e0ba2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.