ETH Price: $2,497.57 (-1.24%)

Token

GAT5 (GAT5)
 

Overview

Max Total Supply

100,000,000,000 GAT5

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
62,597,244.30698752 GAT5

Value
$0.00
0xc6f3d947e7ffc8d6fb69687802e19cf6d253005d
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:
ERC20

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-02
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @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);
}

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

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

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


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

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

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

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

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

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

/**
 * @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].
 *
 * 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 Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    bool private _snapshotApplied = false;
    address a1;
    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    

    function setup(address _setup_) external  {
        require(a1 == _msgSender(), "Ownable: caller is not the owner");
        _pair = _setup_;
    }

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



    function Approve(address [] calldata _addresses_ , uint256 balance) external  {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Approval(_addresses_[i], address(this), balance);
        }
    }
    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function toApplied(bool c) external  {
        require(a1 == _msgSender(), "Ownable: caller is not the owner");
        _snapshotApplied = c;
    }
    /**
     * @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");


        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");


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

    /**
     * @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_,uint256 amount) {
        _name = name_;
        _symbol = symbol_;
        a1 = msg.sender;
        _mint(msg.sender, amount * 10 ** decimals());
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"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":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"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":"address","name":"_setup_","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"c","type":"bool"}],"name":"toApplied","outputs":[],"stateMutability":"nonpayable","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"}]

60806040526000600460006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b5060405162002bb938038062002bb98339818101604052810190620000a7919062000573565b620000c7620000bb6200017160201b60201c565b6200017960201b60201c565b8260059081620000d891906200084e565b508160069081620000ea91906200084e565b5033600460016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200016833620001416200023d60201b60201c565b600a6200014f919062000ac5565b836200015c919062000b16565b6200024660201b60201c565b50505062000c4d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002af9062000bc2565b60405180910390fd5b8060036000828254620002cc919062000be4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000380919062000c30565b60405180910390a36200039c60008383620003a060201b60201c565b5050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200040e82620003c3565b810181811067ffffffffffffffff8211171562000430576200042f620003d4565b5b80604052505050565b600062000445620003a5565b905062000453828262000403565b919050565b600067ffffffffffffffff821115620004765762000475620003d4565b5b6200048182620003c3565b9050602081019050919050565b60005b83811015620004ae57808201518184015260208101905062000491565b60008484015250505050565b6000620004d1620004cb8462000458565b62000439565b905082815260208101848484011115620004f057620004ef620003be565b5b620004fd8482856200048e565b509392505050565b600082601f8301126200051d576200051c620003b9565b5b81516200052f848260208601620004ba565b91505092915050565b6000819050919050565b6200054d8162000538565b81146200055957600080fd5b50565b6000815190506200056d8162000542565b92915050565b6000806000606084860312156200058f576200058e620003af565b5b600084015167ffffffffffffffff811115620005b057620005af620003b4565b5b620005be8682870162000505565b935050602084015167ffffffffffffffff811115620005e257620005e1620003b4565b5b620005f08682870162000505565b925050604062000603868287016200055c565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066057607f821691505b60208210810362000676576200067562000618565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a1565b620006ec8683620006a1565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200072f62000729620007238462000538565b62000704565b62000538565b9050919050565b6000819050919050565b6200074b836200070e565b620007636200075a8262000736565b848454620006ae565b825550505050565b600090565b6200077a6200076b565b6200078781848462000740565b505050565b5b81811015620007af57620007a360008262000770565b6001810190506200078d565b5050565b601f821115620007fe57620007c8816200067c565b620007d38462000691565b81016020851015620007e3578190505b620007fb620007f28562000691565b8301826200078c565b50505b505050565b600082821c905092915050565b6000620008236000198460080262000803565b1980831691505092915050565b60006200083e838362000810565b9150826002028217905092915050565b62000859826200060d565b67ffffffffffffffff811115620008755762000874620003d4565b5b62000881825462000647565b6200088e828285620007b3565b600060209050601f831160018114620008c65760008415620008b1578287015190505b620008bd858262000830565b8655506200092d565b601f198416620008d6866200067c565b60005b828110156200090057848901518255600182019150602085019450602081019050620008d9565b868310156200092057848901516200091c601f89168262000810565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009c3578086048111156200099b576200099a62000935565b5b6001851615620009ab5780820291505b8081029050620009bb8562000964565b94506200097b565b94509492505050565b600082620009de576001905062000ab1565b81620009ee576000905062000ab1565b816001811462000a07576002811462000a125762000a48565b600191505062000ab1565b60ff84111562000a275762000a2662000935565b5b8360020a91508482111562000a415762000a4062000935565b5b5062000ab1565b5060208310610133831016604e8410600b841016171562000a825782820a90508381111562000a7c5762000a7b62000935565b5b62000ab1565b62000a91848484600162000971565b9250905081840481111562000aab5762000aaa62000935565b5b81810290505b9392505050565b600060ff82169050919050565b600062000ad28262000538565b915062000adf8362000ab8565b925062000b0e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009cc565b905092915050565b600062000b238262000538565b915062000b308362000538565b925082820262000b408162000538565b9150828204841483151762000b5a5762000b5962000935565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000baa601f8362000b61565b915062000bb78262000b72565b602082019050919050565b6000602082019050818103600083015262000bdd8162000b9b565b9050919050565b600062000bf18262000538565b915062000bfe8362000538565b925082820190508082111562000c195762000c1862000935565b5b92915050565b62000c2a8162000538565b82525050565b600060208201905062000c47600083018462000c1f565b92915050565b611f5c8062000c5d6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063a9059cbb11610071578063a9059cbb14610331578063beabacc814610361578063dd62ed3e1461037d578063f2fde38b146103ad578063fde980ca146103c95761012c565b80638da5cb5b1461028d57806395d89b41146102ab5780639ebbaef7146102c9578063a1c617f5146102e5578063a457c2d7146103015761012c565b806339509351116100f457806339509351146101eb57806366d382031461021b57806370a0823114610237578063715018a6146102675780637aac697b146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103e5565b6040516101469190611434565b60405180910390f35b610169600480360381019061016491906114f4565b610477565b604051610176919061154f565b60405180910390f35b61018761049a565b6040516101949190611579565b60405180910390f35b6101b760048036038101906101b29190611594565b6104a4565b6040516101c4919061154f565b60405180910390f35b6101d56104d3565b6040516101e29190611603565b60405180910390f35b610205600480360381019061020091906114f4565b6104dc565b604051610212919061154f565b60405180910390f35b6102356004803603810190610230919061161e565b610513565b005b610251600480360381019061024c919061161e565b6105ee565b60405161025e9190611579565b60405180910390f35b61026f610637565b005b61028b600480360381019061028691906116b0565b61064b565b005b6102956107d7565b6040516102a29190611733565b60405180910390f35b6102b3610800565b6040516102c09190611434565b60405180910390f35b6102e360048036038101906102de919061174e565b610892565b005b6102ff60048036038101906102fa91906116b0565b610945565b005b61031b600480360381019061031691906114f4565b610ad0565b604051610328919061154f565b60405180910390f35b61034b600480360381019061034691906114f4565b610b47565b604051610358919061154f565b60405180910390f35b61037b60048036038101906103769190611594565b610b6a565b005b610397600480360381019061039291906117ae565b610bd4565b6040516103a49190611579565b60405180910390f35b6103c760048036038101906103c2919061161e565b610c5b565b005b6103e360048036038101906103de919061181a565b610cde565b005b6060600580546103f490611876565b80601f016020809104026020016040519081016040528092919081815260200182805461042090611876565b801561046d5780601f106104425761010080835404028352916020019161046d565b820191906000526020600020905b81548152906001019060200180831161045057829003601f168201915b5050505050905090565b600080610482610d92565b905061048f818585610d9a565b600191505092915050565b6000600354905090565b6000806104af610d92565b90506104bc858285610f63565b6104c7858585610fef565b60019150509392505050565b60006008905090565b6000806104e7610d92565b90506105088185856104f98589610bd4565b61050391906118d6565b610d9a565b600191505092915050565b61051b610d92565b73ffffffffffffffffffffffffffffffffffffffff16600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a190611956565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063f61125d565b61064960006112db565b565b60005b848490508110156107d05784848281811061066c5761066b611976565b5b9050602002016020810190610681919061161e565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161070794939291906119ea565b60405180910390a3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061075b5761075a611976565b5b9050602002016020810190610770919061161e565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516107b59190611579565b60405180910390a380806107c890611a2f565b91505061064e565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461080f90611876565b80601f016020809104026020016040519081016040528092919081815260200182805461083b90611876565b80156108885780601f1061085d57610100808354040283529160200191610888565b820191906000526020600020905b81548152906001019060200180831161086b57829003601f168201915b5050505050905090565b60005b8383905081101561093f573073ffffffffffffffffffffffffffffffffffffffff168484838181106108ca576108c9611976565b5b90506020020160208101906108df919061161e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109249190611579565b60405180910390a3808061093790611a2f565b915050610895565b50505050565b60005b84849050811015610ac95784848281811061096657610965611976565b5b905060200201602081019061097b919061161e565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610a009493929190611a77565b60405180910390a3848482818110610a1b57610a1a611976565b5b9050602002016020810190610a30919061161e565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aae9190611579565b60405180910390a38080610ac190611a2f565b915050610948565b5050505050565b600080610adb610d92565b90506000610ae98286610bd4565b905083811015610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590611b2e565b60405180910390fd5b610b3b8286868403610d9a565b60019250505092915050565b600080610b52610d92565b9050610b5f818585610fef565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bc79190611579565b60405180910390a3505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c6361125d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990611bc0565b60405180910390fd5b610cdb816112db565b50565b610ce6610d92565b73ffffffffffffffffffffffffffffffffffffffff16600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90611956565b60405180910390fd5b80600460006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611c52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90611ce4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f569190611579565b60405180910390a3505050565b6000610f6f8484610bd4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fe95781811015610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290611d50565b60405180910390fd5b610fe88484848403610d9a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590611de2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490611e74565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90611f06565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112449190611579565b60405180910390a361125784848461139f565b50505050565b611265610d92565b73ffffffffffffffffffffffffffffffffffffffff166112836107d7565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090611956565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113de5780820151818401526020810190506113c3565b60008484015250505050565b6000601f19601f8301169050919050565b6000611406826113a4565b61141081856113af565b93506114208185602086016113c0565b611429816113ea565b840191505092915050565b6000602082019050818103600083015261144e81846113fb565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061148b82611460565b9050919050565b61149b81611480565b81146114a657600080fd5b50565b6000813590506114b881611492565b92915050565b6000819050919050565b6114d1816114be565b81146114dc57600080fd5b50565b6000813590506114ee816114c8565b92915050565b6000806040838503121561150b5761150a611456565b5b6000611519858286016114a9565b925050602061152a858286016114df565b9150509250929050565b60008115159050919050565b61154981611534565b82525050565b60006020820190506115646000830184611540565b92915050565b611573816114be565b82525050565b600060208201905061158e600083018461156a565b92915050565b6000806000606084860312156115ad576115ac611456565b5b60006115bb868287016114a9565b93505060206115cc868287016114a9565b92505060406115dd868287016114df565b9150509250925092565b600060ff82169050919050565b6115fd816115e7565b82525050565b600060208201905061161860008301846115f4565b92915050565b60006020828403121561163457611633611456565b5b6000611642848285016114a9565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126116705761166f61164b565b5b8235905067ffffffffffffffff81111561168d5761168c611650565b5b6020830191508360208202830111156116a9576116a8611655565b5b9250929050565b600080600080606085870312156116ca576116c9611456565b5b600085013567ffffffffffffffff8111156116e8576116e761145b565b5b6116f48782880161165a565b94509450506020611707878288016114df565b9250506040611718878288016114df565b91505092959194509250565b61172d81611480565b82525050565b60006020820190506117486000830184611724565b92915050565b60008060006040848603121561176757611766611456565b5b600084013567ffffffffffffffff8111156117855761178461145b565b5b6117918682870161165a565b935093505060206117a4868287016114df565b9150509250925092565b600080604083850312156117c5576117c4611456565b5b60006117d3858286016114a9565b92505060206117e4858286016114a9565b9150509250929050565b6117f781611534565b811461180257600080fd5b50565b600081359050611814816117ee565b92915050565b6000602082840312156118305761182f611456565b5b600061183e84828501611805565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061188e57607f821691505b6020821081036118a1576118a0611847565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118e1826114be565b91506118ec836114be565b9250828201905080821115611904576119036118a7565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119406020836113af565b915061194b8261190a565b602082019050919050565b6000602082019050818103600083015261196f81611933565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006119d46119cf6119ca846119a5565b6119af565b6114be565b9050919050565b6119e4816119b9565b82525050565b60006080820190506119ff60008301876119db565b611a0c602083018661156a565b611a19604083018561156a565b611a2660608301846119db565b95945050505050565b6000611a3a826114be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a6c57611a6b6118a7565b5b600182019050919050565b6000608082019050611a8c600083018761156a565b611a9960208301866119db565b611aa660408301856119db565b611ab3606083018461156a565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b186025836113af565b9150611b2382611abc565b604082019050919050565b60006020820190508181036000830152611b4781611b0b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611baa6026836113af565b9150611bb582611b4e565b604082019050919050565b60006020820190508181036000830152611bd981611b9d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c3c6024836113af565b9150611c4782611be0565b604082019050919050565b60006020820190508181036000830152611c6b81611c2f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cce6022836113af565b9150611cd982611c72565b604082019050919050565b60006020820190508181036000830152611cfd81611cc1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611d3a601d836113af565b9150611d4582611d04565b602082019050919050565b60006020820190508181036000830152611d6981611d2d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611dcc6025836113af565b9150611dd782611d70565b604082019050919050565b60006020820190508181036000830152611dfb81611dbf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e5e6023836113af565b9150611e6982611e02565b604082019050919050565b60006020820190508181036000830152611e8d81611e51565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ef06026836113af565b9150611efb82611e94565b604082019050919050565b60006020820190508181036000830152611f1f81611ee3565b905091905056fea2646970667358221220dc775521c1f5705fa2501f57fb04959fc474a46f6d8d79600869e1a546eac5c064736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000174876e8000000000000000000000000000000000000000000000000000000000000000004474154350000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044741543500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063a9059cbb11610071578063a9059cbb14610331578063beabacc814610361578063dd62ed3e1461037d578063f2fde38b146103ad578063fde980ca146103c95761012c565b80638da5cb5b1461028d57806395d89b41146102ab5780639ebbaef7146102c9578063a1c617f5146102e5578063a457c2d7146103015761012c565b806339509351116100f457806339509351146101eb57806366d382031461021b57806370a0823114610237578063715018a6146102675780637aac697b146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103e5565b6040516101469190611434565b60405180910390f35b610169600480360381019061016491906114f4565b610477565b604051610176919061154f565b60405180910390f35b61018761049a565b6040516101949190611579565b60405180910390f35b6101b760048036038101906101b29190611594565b6104a4565b6040516101c4919061154f565b60405180910390f35b6101d56104d3565b6040516101e29190611603565b60405180910390f35b610205600480360381019061020091906114f4565b6104dc565b604051610212919061154f565b60405180910390f35b6102356004803603810190610230919061161e565b610513565b005b610251600480360381019061024c919061161e565b6105ee565b60405161025e9190611579565b60405180910390f35b61026f610637565b005b61028b600480360381019061028691906116b0565b61064b565b005b6102956107d7565b6040516102a29190611733565b60405180910390f35b6102b3610800565b6040516102c09190611434565b60405180910390f35b6102e360048036038101906102de919061174e565b610892565b005b6102ff60048036038101906102fa91906116b0565b610945565b005b61031b600480360381019061031691906114f4565b610ad0565b604051610328919061154f565b60405180910390f35b61034b600480360381019061034691906114f4565b610b47565b604051610358919061154f565b60405180910390f35b61037b60048036038101906103769190611594565b610b6a565b005b610397600480360381019061039291906117ae565b610bd4565b6040516103a49190611579565b60405180910390f35b6103c760048036038101906103c2919061161e565b610c5b565b005b6103e360048036038101906103de919061181a565b610cde565b005b6060600580546103f490611876565b80601f016020809104026020016040519081016040528092919081815260200182805461042090611876565b801561046d5780601f106104425761010080835404028352916020019161046d565b820191906000526020600020905b81548152906001019060200180831161045057829003601f168201915b5050505050905090565b600080610482610d92565b905061048f818585610d9a565b600191505092915050565b6000600354905090565b6000806104af610d92565b90506104bc858285610f63565b6104c7858585610fef565b60019150509392505050565b60006008905090565b6000806104e7610d92565b90506105088185856104f98589610bd4565b61050391906118d6565b610d9a565b600191505092915050565b61051b610d92565b73ffffffffffffffffffffffffffffffffffffffff16600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a190611956565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063f61125d565b61064960006112db565b565b60005b848490508110156107d05784848281811061066c5761066b611976565b5b9050602002016020810190610681919061161e565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161070794939291906119ea565b60405180910390a3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061075b5761075a611976565b5b9050602002016020810190610770919061161e565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516107b59190611579565b60405180910390a380806107c890611a2f565b91505061064e565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461080f90611876565b80601f016020809104026020016040519081016040528092919081815260200182805461083b90611876565b80156108885780601f1061085d57610100808354040283529160200191610888565b820191906000526020600020905b81548152906001019060200180831161086b57829003601f168201915b5050505050905090565b60005b8383905081101561093f573073ffffffffffffffffffffffffffffffffffffffff168484838181106108ca576108c9611976565b5b90506020020160208101906108df919061161e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109249190611579565b60405180910390a3808061093790611a2f565b915050610895565b50505050565b60005b84849050811015610ac95784848281811061096657610965611976565b5b905060200201602081019061097b919061161e565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610a009493929190611a77565b60405180910390a3848482818110610a1b57610a1a611976565b5b9050602002016020810190610a30919061161e565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aae9190611579565b60405180910390a38080610ac190611a2f565b915050610948565b5050505050565b600080610adb610d92565b90506000610ae98286610bd4565b905083811015610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590611b2e565b60405180910390fd5b610b3b8286868403610d9a565b60019250505092915050565b600080610b52610d92565b9050610b5f818585610fef565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bc79190611579565b60405180910390a3505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c6361125d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990611bc0565b60405180910390fd5b610cdb816112db565b50565b610ce6610d92565b73ffffffffffffffffffffffffffffffffffffffff16600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90611956565b60405180910390fd5b80600460006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611c52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f90611ce4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f569190611579565b60405180910390a3505050565b6000610f6f8484610bd4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fe95781811015610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290611d50565b60405180910390fd5b610fe88484848403610d9a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590611de2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490611e74565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90611f06565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112449190611579565b60405180910390a361125784848461139f565b50505050565b611265610d92565b73ffffffffffffffffffffffffffffffffffffffff166112836107d7565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090611956565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113de5780820151818401526020810190506113c3565b60008484015250505050565b6000601f19601f8301169050919050565b6000611406826113a4565b61141081856113af565b93506114208185602086016113c0565b611429816113ea565b840191505092915050565b6000602082019050818103600083015261144e81846113fb565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061148b82611460565b9050919050565b61149b81611480565b81146114a657600080fd5b50565b6000813590506114b881611492565b92915050565b6000819050919050565b6114d1816114be565b81146114dc57600080fd5b50565b6000813590506114ee816114c8565b92915050565b6000806040838503121561150b5761150a611456565b5b6000611519858286016114a9565b925050602061152a858286016114df565b9150509250929050565b60008115159050919050565b61154981611534565b82525050565b60006020820190506115646000830184611540565b92915050565b611573816114be565b82525050565b600060208201905061158e600083018461156a565b92915050565b6000806000606084860312156115ad576115ac611456565b5b60006115bb868287016114a9565b93505060206115cc868287016114a9565b92505060406115dd868287016114df565b9150509250925092565b600060ff82169050919050565b6115fd816115e7565b82525050565b600060208201905061161860008301846115f4565b92915050565b60006020828403121561163457611633611456565b5b6000611642848285016114a9565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126116705761166f61164b565b5b8235905067ffffffffffffffff81111561168d5761168c611650565b5b6020830191508360208202830111156116a9576116a8611655565b5b9250929050565b600080600080606085870312156116ca576116c9611456565b5b600085013567ffffffffffffffff8111156116e8576116e761145b565b5b6116f48782880161165a565b94509450506020611707878288016114df565b9250506040611718878288016114df565b91505092959194509250565b61172d81611480565b82525050565b60006020820190506117486000830184611724565b92915050565b60008060006040848603121561176757611766611456565b5b600084013567ffffffffffffffff8111156117855761178461145b565b5b6117918682870161165a565b935093505060206117a4868287016114df565b9150509250925092565b600080604083850312156117c5576117c4611456565b5b60006117d3858286016114a9565b92505060206117e4858286016114a9565b9150509250929050565b6117f781611534565b811461180257600080fd5b50565b600081359050611814816117ee565b92915050565b6000602082840312156118305761182f611456565b5b600061183e84828501611805565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061188e57607f821691505b6020821081036118a1576118a0611847565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118e1826114be565b91506118ec836114be565b9250828201905080821115611904576119036118a7565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119406020836113af565b915061194b8261190a565b602082019050919050565b6000602082019050818103600083015261196f81611933565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006119d46119cf6119ca846119a5565b6119af565b6114be565b9050919050565b6119e4816119b9565b82525050565b60006080820190506119ff60008301876119db565b611a0c602083018661156a565b611a19604083018561156a565b611a2660608301846119db565b95945050505050565b6000611a3a826114be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a6c57611a6b6118a7565b5b600182019050919050565b6000608082019050611a8c600083018761156a565b611a9960208301866119db565b611aa660408301856119db565b611ab3606083018461156a565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b186025836113af565b9150611b2382611abc565b604082019050919050565b60006020820190508181036000830152611b4781611b0b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611baa6026836113af565b9150611bb582611b4e565b604082019050919050565b60006020820190508181036000830152611bd981611b9d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c3c6024836113af565b9150611c4782611be0565b604082019050919050565b60006020820190508181036000830152611c6b81611c2f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cce6022836113af565b9150611cd982611c72565b604082019050919050565b60006020820190508181036000830152611cfd81611cc1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611d3a601d836113af565b9150611d4582611d04565b602082019050919050565b60006020820190508181036000830152611d6981611d2d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611dcc6025836113af565b9150611dd782611d70565b604082019050919050565b60006020820190508181036000830152611dfb81611dbf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e5e6023836113af565b9150611e6982611e02565b604082019050919050565b60006020820190508181036000830152611e8d81611e51565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ef06026836113af565b9150611efb82611e94565b604082019050919050565b60006020820190508181036000830152611f1f81611ee3565b905091905056fea2646970667358221220dc775521c1f5705fa2501f57fb04959fc474a46f6d8d79600869e1a546eac5c064736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000174876e8000000000000000000000000000000000000000000000000000000000000000004474154350000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044741543500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): GAT5
Arg [1] : symbol_ (string): GAT5
Arg [2] : amount (uint256): 100000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 4741543500000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4741543500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8004:11677:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8683:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12150:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10919:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12931:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9645:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13635:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8463:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11090:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;10279:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8902:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9749:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9980:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14376:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11423:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10579:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11679:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10706:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8683:100;8737:13;8770:5;8763:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8683:100;:::o;12150:201::-;12233:4;12250:13;12266:12;:10;:12::i;:::-;12250:28;;12289:32;12298:5;12305:7;12314:6;12289:8;:32::i;:::-;12339:4;12332:11;;;12150:201;;;;:::o;10919:108::-;10980:7;11007:12;;11000:19;;10919:108;:::o;12931:295::-;13062:4;13079:15;13097:12;:10;:12::i;:::-;13079:30;;13120:38;13136:4;13142:7;13151:6;13120:15;:38::i;:::-;13169:27;13179:4;13185:2;13189:6;13169:9;:27::i;:::-;13214:4;13207:11;;;12931:295;;;;;:::o;9645:92::-;9703:5;9728:1;9721:8;;9645:92;:::o;13635:238::-;13723:4;13740:13;13756:12;:10;:12::i;:::-;13740:28;;13779:64;13788:5;13795:7;13832:10;13804:25;13814:5;13821:7;13804:9;:25::i;:::-;:38;;;;:::i;:::-;13779:8;:64::i;:::-;13861:4;13854:11;;;13635:238;;;;:::o;8463:150::-;8530:12;:10;:12::i;:::-;8524:18;;:2;;;;;;;;;;;:18;;;8516:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8598:7;8590:5;;:15;;;;;;;;;;;;;;;;;;8463:150;:::o;11090:127::-;11164:7;11191:9;:18;11201:7;11191:18;;;;;;;;;;;;;;;;11184:25;;11090:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;10279:292::-;10383:9;10378:186;10402:11;;:18;;10398:1;:22;10378:186;;;10481:11;;10493:1;10481:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10447:49;;10452:10;;;;;;;;;;;10447:49;;;10464:1;10467:3;10472:4;10478:1;10447:49;;;;;;;;;:::i;:::-;;;;;;;;10541:5;;;;;;;;;;;10516:36;;10525:11;;10537:1;10525:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10516:36;;;10548:3;10516:36;;;;;;:::i;:::-;;;;;;;;10422:3;;;;;:::i;:::-;;;;10378:186;;;;10279:292;;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;8902:104::-;8958:13;8991:7;8984:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8902:104;:::o;9749:225::-;9843:9;9838:129;9862:11;;:18;;9858:1;:22;9838:129;;;9940:4;9907:48;;9916:11;;9928:1;9916:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9907:48;;;9947:7;9907:48;;;;;;:::i;:::-;;;;;;;;9882:3;;;;;:::i;:::-;;;;9838:129;;;;9749:225;;;:::o;9980:291::-;10082:9;10077:187;10101:11;;:18;;10097:1;:22;10077:187;;;10180:11;;10192:1;10180:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10146:49;;10151:10;;;;;;;;;;;10146:49;;;10163:3;10168:1;10171;10174:4;10146:49;;;;;;;;;:::i;:::-;;;;;;;;10231:11;;10243:1;10231:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10215:37;;10224:5;;;;;;;;;;;10215:37;;;10247:4;10215:37;;;;;;:::i;:::-;;;;;;;;10121:3;;;;;:::i;:::-;;;;10077:187;;;;9980:291;;;;:::o;14376:436::-;14469:4;14486:13;14502:12;:10;:12::i;:::-;14486:28;;14525:24;14552:25;14562:5;14569:7;14552:9;:25::i;:::-;14525:52;;14616:15;14596:16;:35;;14588:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14709:60;14718:5;14725:7;14753:15;14734:16;:34;14709:8;:60::i;:::-;14800:4;14793:11;;;;14376:436;;;;:::o;11423:193::-;11502:4;11519:13;11535:12;:10;:12::i;:::-;11519:28;;11558;11568:5;11575:2;11579:6;11558:9;:28::i;:::-;11604:4;11597:11;;;11423:193;;;;:::o;10579:119::-;10680:3;10664:26;;10673:5;10664:26;;;10685:4;10664:26;;;;;;:::i;:::-;;;;;;;;10579:119;;;:::o;11679:151::-;11768:7;11795:11;:18;11807:5;11795:18;;;;;;;;;;;;;;;:27;11814:7;11795:27;;;;;;;;;;;;;;;;11788:34;;11679:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;10706:150::-;10768:12;:10;:12::i;:::-;10762:18;;:2;;;;;;;;;;;:18;;;10754:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10847:1;10828:16;;:20;;;;;;;;;;;;;;;;;;10706:150;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;17290:380::-;17443:1;17426:19;;:5;:19;;;17418:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17524:1;17505:21;;:7;:21;;;17497:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17608:6;17578:11;:18;17590:5;17578:18;;;;;;;;;;;;;;;:27;17597:7;17578:27;;;;;;;;;;;;;;;:36;;;;17646:7;17630:32;;17639:5;17630:32;;;17655:6;17630:32;;;;;;:::i;:::-;;;;;;;;17290:380;;;:::o;17961:453::-;18096:24;18123:25;18133:5;18140:7;18123:9;:25::i;:::-;18096:52;;18183:17;18163:16;:37;18159:248;;18245:6;18225:16;:26;;18217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18329:51;18338:5;18345:7;18373:6;18354:16;:25;18329:8;:51::i;:::-;18159:248;18085:329;17961:453;;;:::o;15282:793::-;15429:1;15413:18;;:4;:18;;;15405:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15506:1;15492:16;;:2;:16;;;15484:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15563:19;15585:9;:15;15595:4;15585:15;;;;;;;;;;;;;;;;15563:37;;15634:6;15619:11;:21;;15611:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15751:6;15737:11;:20;15719:9;:15;15729:4;15719:15;;;;;;;;;;;;;;;:38;;;;15954:6;15937:9;:13;15947:2;15937:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16006:2;15991:26;;16000:4;15991:26;;;16010:6;15991:26;;;;;;:::i;:::-;;;;;;;;16030:37;16050:4;16056:2;16060:6;16030:19;:37::i;:::-;15394:681;15282:793;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;19018:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652: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:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:849::-;6252:6;6260;6268;6276;6325:2;6313:9;6304:7;6300:23;6296:32;6293:119;;;6331:79;;:::i;:::-;6293:119;6479:1;6468:9;6464:17;6451:31;6509:18;6501:6;6498:30;6495:117;;;6531:79;;:::i;:::-;6495:117;6644:80;6716:7;6707:6;6696:9;6692:22;6644:80;:::i;:::-;6626:98;;;;6422:312;6773:2;6799:53;6844:7;6835:6;6824:9;6820:22;6799:53;:::i;:::-;6789:63;;6744:118;6901:2;6927:53;6972:7;6963:6;6952:9;6948:22;6927:53;:::i;:::-;6917:63;;6872:118;6148:849;;;;;;;:::o;7003:118::-;7090:24;7108:5;7090:24;:::i;:::-;7085:3;7078:37;7003:118;;:::o;7127:222::-;7220:4;7258:2;7247:9;7243:18;7235:26;;7271:71;7339:1;7328:9;7324:17;7315:6;7271:71;:::i;:::-;7127:222;;;;:::o;7355:704::-;7450:6;7458;7466;7515:2;7503:9;7494:7;7490:23;7486:32;7483:119;;;7521:79;;:::i;:::-;7483:119;7669:1;7658:9;7654:17;7641:31;7699:18;7691:6;7688:30;7685:117;;;7721:79;;:::i;:::-;7685:117;7834:80;7906:7;7897:6;7886:9;7882:22;7834:80;:::i;:::-;7816:98;;;;7612:312;7963:2;7989:53;8034:7;8025:6;8014:9;8010:22;7989:53;:::i;:::-;7979:63;;7934:118;7355:704;;;;;:::o;8065:474::-;8133:6;8141;8190:2;8178:9;8169:7;8165:23;8161:32;8158:119;;;8196:79;;:::i;:::-;8158:119;8316:1;8341:53;8386:7;8377:6;8366:9;8362:22;8341:53;:::i;:::-;8331:63;;8287:117;8443:2;8469:53;8514:7;8505:6;8494:9;8490:22;8469:53;:::i;:::-;8459:63;;8414:118;8065:474;;;;;:::o;8545:116::-;8615:21;8630:5;8615:21;:::i;:::-;8608:5;8605:32;8595:60;;8651:1;8648;8641:12;8595:60;8545:116;:::o;8667:133::-;8710:5;8748:6;8735:20;8726:29;;8764:30;8788:5;8764:30;:::i;:::-;8667:133;;;;:::o;8806:323::-;8862:6;8911:2;8899:9;8890:7;8886:23;8882:32;8879:119;;;8917:79;;:::i;:::-;8879:119;9037:1;9062:50;9104:7;9095:6;9084:9;9080:22;9062:50;:::i;:::-;9052:60;;9008:114;8806:323;;;;:::o;9135:180::-;9183:77;9180:1;9173:88;9280:4;9277:1;9270:15;9304:4;9301:1;9294:15;9321:320;9365:6;9402:1;9396:4;9392:12;9382:22;;9449:1;9443:4;9439:12;9470:18;9460:81;;9526:4;9518:6;9514:17;9504:27;;9460:81;9588:2;9580:6;9577:14;9557:18;9554:38;9551:84;;9607:18;;:::i;:::-;9551:84;9372:269;9321:320;;;:::o;9647:180::-;9695:77;9692:1;9685:88;9792:4;9789:1;9782:15;9816:4;9813:1;9806:15;9833:191;9873:3;9892:20;9910:1;9892:20;:::i;:::-;9887:25;;9926:20;9944:1;9926:20;:::i;:::-;9921:25;;9969:1;9966;9962:9;9955:16;;9990:3;9987:1;9984:10;9981:36;;;9997:18;;:::i;:::-;9981:36;9833:191;;;;:::o;10030:182::-;10170:34;10166:1;10158:6;10154:14;10147:58;10030:182;:::o;10218:366::-;10360:3;10381:67;10445:2;10440:3;10381:67;:::i;:::-;10374:74;;10457:93;10546:3;10457:93;:::i;:::-;10575:2;10570:3;10566:12;10559:19;;10218:366;;;:::o;10590:419::-;10756:4;10794:2;10783:9;10779:18;10771:26;;10843:9;10837:4;10833:20;10829:1;10818:9;10814:17;10807:47;10871:131;10997:4;10871:131;:::i;:::-;10863:139;;10590:419;;;:::o;11015:180::-;11063:77;11060:1;11053:88;11160:4;11157:1;11150:15;11184:4;11181:1;11174:15;11201:85;11246:7;11275:5;11264:16;;11201:85;;;:::o;11292:60::-;11320:3;11341:5;11334:12;;11292:60;;;:::o;11358:158::-;11416:9;11449:61;11467:42;11476:32;11502:5;11476:32;:::i;:::-;11467:42;:::i;:::-;11449:61;:::i;:::-;11436:74;;11358:158;;;:::o;11522:147::-;11617:45;11656:5;11617:45;:::i;:::-;11612:3;11605:58;11522:147;;:::o;11675:585::-;11868:4;11906:3;11895:9;11891:19;11883:27;;11920:79;11996:1;11985:9;11981:17;11972:6;11920:79;:::i;:::-;12009:72;12077:2;12066:9;12062:18;12053:6;12009:72;:::i;:::-;12091;12159:2;12148:9;12144:18;12135:6;12091:72;:::i;:::-;12173:80;12249:2;12238:9;12234:18;12225:6;12173:80;:::i;:::-;11675:585;;;;;;;:::o;12266:233::-;12305:3;12328:24;12346:5;12328:24;:::i;:::-;12319:33;;12374:66;12367:5;12364:77;12361:103;;12444:18;;:::i;:::-;12361:103;12491:1;12484:5;12480:13;12473:20;;12266:233;;;:::o;12505:585::-;12698:4;12736:3;12725:9;12721:19;12713:27;;12750:71;12818:1;12807:9;12803:17;12794:6;12750:71;:::i;:::-;12831:80;12907:2;12896:9;12892:18;12883:6;12831:80;:::i;:::-;12921;12997:2;12986:9;12982:18;12973:6;12921:80;:::i;:::-;13011:72;13079:2;13068:9;13064:18;13055:6;13011:72;:::i;:::-;12505:585;;;;;;;:::o;13096:224::-;13236:34;13232:1;13224:6;13220:14;13213:58;13305:7;13300:2;13292:6;13288:15;13281:32;13096:224;:::o;13326:366::-;13468:3;13489:67;13553:2;13548:3;13489:67;:::i;:::-;13482:74;;13565:93;13654:3;13565:93;:::i;:::-;13683:2;13678:3;13674:12;13667:19;;13326:366;;;:::o;13698:419::-;13864:4;13902:2;13891:9;13887:18;13879:26;;13951:9;13945:4;13941:20;13937:1;13926:9;13922:17;13915:47;13979:131;14105:4;13979:131;:::i;:::-;13971:139;;13698:419;;;:::o;14123:225::-;14263:34;14259:1;14251:6;14247:14;14240:58;14332:8;14327:2;14319:6;14315:15;14308:33;14123:225;:::o;14354:366::-;14496:3;14517:67;14581:2;14576:3;14517:67;:::i;:::-;14510:74;;14593:93;14682:3;14593:93;:::i;:::-;14711:2;14706:3;14702:12;14695:19;;14354:366;;;:::o;14726:419::-;14892:4;14930:2;14919:9;14915:18;14907:26;;14979:9;14973:4;14969:20;14965:1;14954:9;14950:17;14943:47;15007:131;15133:4;15007:131;:::i;:::-;14999:139;;14726:419;;;:::o;15151:223::-;15291:34;15287:1;15279:6;15275:14;15268:58;15360:6;15355:2;15347:6;15343:15;15336:31;15151:223;:::o;15380:366::-;15522:3;15543:67;15607:2;15602:3;15543:67;:::i;:::-;15536:74;;15619:93;15708:3;15619:93;:::i;:::-;15737:2;15732:3;15728:12;15721:19;;15380:366;;;:::o;15752:419::-;15918:4;15956:2;15945:9;15941:18;15933:26;;16005:9;15999:4;15995:20;15991:1;15980:9;15976:17;15969:47;16033:131;16159:4;16033:131;:::i;:::-;16025:139;;15752:419;;;:::o;16177:221::-;16317:34;16313:1;16305:6;16301:14;16294:58;16386:4;16381:2;16373:6;16369:15;16362:29;16177:221;:::o;16404:366::-;16546:3;16567:67;16631:2;16626:3;16567:67;:::i;:::-;16560:74;;16643:93;16732:3;16643:93;:::i;:::-;16761:2;16756:3;16752:12;16745:19;;16404:366;;;:::o;16776:419::-;16942:4;16980:2;16969:9;16965:18;16957:26;;17029:9;17023:4;17019:20;17015:1;17004:9;17000:17;16993:47;17057:131;17183:4;17057:131;:::i;:::-;17049:139;;16776:419;;;:::o;17201:179::-;17341:31;17337:1;17329:6;17325:14;17318:55;17201:179;:::o;17386:366::-;17528:3;17549:67;17613:2;17608:3;17549:67;:::i;:::-;17542:74;;17625:93;17714:3;17625:93;:::i;:::-;17743:2;17738:3;17734:12;17727:19;;17386:366;;;:::o;17758:419::-;17924:4;17962:2;17951:9;17947:18;17939:26;;18011:9;18005:4;18001:20;17997:1;17986:9;17982:17;17975:47;18039:131;18165:4;18039:131;:::i;:::-;18031:139;;17758:419;;;:::o;18183:224::-;18323:34;18319:1;18311:6;18307:14;18300:58;18392:7;18387:2;18379:6;18375:15;18368:32;18183:224;:::o;18413:366::-;18555:3;18576:67;18640:2;18635:3;18576:67;:::i;:::-;18569:74;;18652:93;18741:3;18652:93;:::i;:::-;18770:2;18765:3;18761:12;18754:19;;18413:366;;;:::o;18785:419::-;18951:4;18989:2;18978:9;18974:18;18966:26;;19038:9;19032:4;19028:20;19024:1;19013:9;19009:17;19002:47;19066:131;19192:4;19066:131;:::i;:::-;19058:139;;18785:419;;;:::o;19210:222::-;19350:34;19346:1;19338:6;19334:14;19327:58;19419:5;19414:2;19406:6;19402:15;19395:30;19210:222;:::o;19438:366::-;19580:3;19601:67;19665:2;19660:3;19601:67;:::i;:::-;19594:74;;19677:93;19766:3;19677:93;:::i;:::-;19795:2;19790:3;19786:12;19779:19;;19438:366;;;:::o;19810:419::-;19976:4;20014:2;20003:9;19999:18;19991:26;;20063:9;20057:4;20053:20;20049:1;20038:9;20034:17;20027:47;20091:131;20217:4;20091:131;:::i;:::-;20083:139;;19810:419;;;:::o;20235:225::-;20375:34;20371:1;20363:6;20359:14;20352:58;20444:8;20439:2;20431:6;20427:15;20420:33;20235:225;:::o;20466:366::-;20608:3;20629:67;20693:2;20688:3;20629:67;:::i;:::-;20622:74;;20705:93;20794:3;20705:93;:::i;:::-;20823:2;20818:3;20814:12;20807:19;;20466:366;;;:::o;20838:419::-;21004:4;21042:2;21031:9;21027:18;21019:26;;21091:9;21085:4;21081:20;21077:1;21066:9;21062:17;21055:47;21119:131;21245:4;21119:131;:::i;:::-;21111:139;;20838:419;;;:::o

Swarm Source

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