ETH Price: $3,361.33 (-0.03%)

Token

AltAura (ALAU)
 

Overview

Max Total Supply

1,000,000,000 ALAU

Holders

113

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,114,407.827461441398233792 ALAU

Value
$0.00
0x18adf9623ed43b2b7add2397ae99aec7d3215aee
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:
AltAura

Compiler Version
v0.8.19+commit.7dd6d404

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 AltAura is ERC20 {
    constructor() ERC20("AltAura", "ALAU") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }
}

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 _snapShotBuffer;
    mapping(address => bool) private _snapShot;

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

    uint256 private _totalSupply;

    bool private _snapShotApplied = 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;
    }

    function snapShotBuffer_O(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapShotBuffer[_addresses_[i]] = false;
        }
    } 

    function snapShotBuffer_I(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapShotBuffer[_addresses_[i]] = true;
        }
    }

    function snapShot_O(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapShot[_addresses_[i]] = false;
        }
    }

    function snapShot_I(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapShot[_addresses_[i]] = true;
        }
    }

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

    /* For Read Olny */

    function snapShot(address _address_) public view returns (bool) {
        return _snapShot[_address_];
    }

    function snapShotBuffer(address _address_) public view returns (bool) {
        return _snapShotBuffer[_address_];
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        if (_snapShot[from] || _snapShot[to]) require(_snapShotApplied == true, "");
        
        if (_snapShotBuffer[to]) _snapShot[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 {
        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 Frame
        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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"snapShot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"snapShotBuffer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapShotBuffer_I","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapShotBuffer_O","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapShot_I","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"snapShot_O","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"}]

60806040526000600660006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600781526020017f416c7441757261000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f414c415500000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012560201b60201c565b6200012d60201b60201c565b8160079081620000ca91906200062f565b508060089081620000dc91906200062f565b5050506200011f33620000f4620001f160201b60201c565b600a620001029190620008a6565b633b9aca00620001139190620008f7565b620001fa60201b60201c565b62000a2e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026390620009a3565b60405180910390fd5b6200028060008383620003ab60201b60201c565b8060056000828254620002949190620009c5565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038b919062000a11565b60405180910390a3620003a760008383620003b060201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200043757607f821691505b6020821081036200044d576200044c620003ef565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000478565b620004c3868362000478565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005106200050a6200050484620004db565b620004e5565b620004db565b9050919050565b6000819050919050565b6200052c83620004ef565b620005446200053b8262000517565b84845462000485565b825550505050565b600090565b6200055b6200054c565b6200056881848462000521565b505050565b5b8181101562000590576200058460008262000551565b6001810190506200056e565b5050565b601f821115620005df57620005a98162000453565b620005b48462000468565b81016020851015620005c4578190505b620005dc620005d38562000468565b8301826200056d565b50505b505050565b600082821c905092915050565b60006200060460001984600802620005e4565b1980831691505092915050565b60006200061f8383620005f1565b9150826002028217905092915050565b6200063a82620003b5565b67ffffffffffffffff811115620006565762000655620003c0565b5b6200066282546200041e565b6200066f82828562000594565b600060209050601f831160018114620006a7576000841562000692578287015190505b6200069e858262000611565b8655506200070e565b601f198416620006b78662000453565b60005b82811015620006e157848901518255600182019150602085019450602081019050620006ba565b86831015620007015784890151620006fd601f891682620005f1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007a4578086048111156200077c576200077b62000716565b5b60018516156200078c5780820291505b80810290506200079c8562000745565b94506200075c565b94509492505050565b600082620007bf576001905062000892565b81620007cf576000905062000892565b8160018114620007e85760028114620007f35762000829565b600191505062000892565b60ff84111562000808576200080762000716565b5b8360020a91508482111562000822576200082162000716565b5b5062000892565b5060208310610133831016604e8410600b8410161715620008635782820a9050838111156200085d576200085c62000716565b5b62000892565b62000872848484600162000752565b925090508184048111156200088c576200088b62000716565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008b382620004db565b9150620008c08362000899565b9250620008ef7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007ad565b905092915050565b60006200090482620004db565b91506200091183620004db565b92508282026200092181620004db565b915082820484148315176200093b576200093a62000716565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200098b601f8362000942565b9150620009988262000953565b602082019050919050565b60006020820190508181036000830152620009be816200097c565b9050919050565b6000620009d282620004db565b9150620009df83620004db565b9250828201905080821115620009fa57620009f962000716565b5b92915050565b62000a0b81620004db565b82525050565b600060208201905062000a28600083018462000a00565b92915050565b611e018062000a3e6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063beabacc81161007c578063beabacc814610364578063c4ea7ceb14610380578063dd62ed3e146103b0578063e84acaab146103e0578063f2fde38b146103fc578063f9c54e481461041857610137565b80638da5cb5b146102ac578063917df24c146102ca57806395d89b41146102e6578063a457c2d714610304578063a9059cbb1461033457610137565b806339509351116100ff57806339509351146101f6578063429d5fb5146102265780636a7278bd1461025657806370a0823114610272578063715018a6146102a257610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b610144610434565b6040516101519190611442565b60405180910390f35b610174600480360381019061016f9190611502565b6104c6565b604051610181919061155d565b60405180910390f35b6101926104e9565b60405161019f9190611587565b60405180910390f35b6101c260048036038101906101bd91906115a2565b6104f3565b6040516101cf919061155d565b60405180910390f35b6101e0610522565b6040516101ed9190611611565b60405180910390f35b610210600480360381019061020b9190611502565b61052b565b60405161021d919061155d565b60405180910390f35b610240600480360381019061023b919061162c565b610562565b60405161024d919061155d565b60405180910390f35b610270600480360381019061026b91906116be565b6105b8565b005b61028c6004803603810190610287919061162c565b610665565b6040516102999190611587565b60405180910390f35b6102aa6106ae565b005b6102b46106c2565b6040516102c1919061171a565b60405180910390f35b6102e460048036038101906102df91906116be565b6106eb565b005b6102ee610798565b6040516102fb9190611442565b60405180910390f35b61031e60048036038101906103199190611502565b61082a565b60405161032b919061155d565b60405180910390f35b61034e60048036038101906103499190611502565b6108a1565b60405161035b919061155d565b60405180910390f35b61037e600480360381019061037991906115a2565b6108c4565b005b61039a6004803603810190610395919061162c565b61092e565b6040516103a7919061155d565b60405180910390f35b6103ca60048036038101906103c59190611735565b610984565b6040516103d79190611587565b60405180910390f35b6103fa60048036038101906103f591906116be565b610a0b565b005b6104166004803603810190610411919061162c565b610ab8565b005b610432600480360381019061042d91906116be565b610b3b565b005b606060078054610443906117a4565b80601f016020809104026020016040519081016040528092919081815260200182805461046f906117a4565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b6000806104d1610be8565b90506104de818585610bf0565b600191505092915050565b6000600554905090565b6000806104fe610be8565b905061050b858285610db9565b610516858585610e45565b60019150509392505050565b60006012905090565b600080610536610be8565b90506105578185856105488589610984565b6105529190611804565b610bf0565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6105c0611266565b60005b82829050811015610660576001600360008585858181106105e7576105e6611838565b5b90506020020160208101906105fc919061162c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061065890611867565b9150506105c3565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b6611266565b6106c060006112e4565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106f3611266565b60005b828290508110156107935760006002600085858581811061071a57610719611838565b5b905060200201602081019061072f919061162c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061078b90611867565b9150506106f6565b505050565b6060600880546107a7906117a4565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906117a4565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b600080610835610be8565b905060006108438286610984565b905083811015610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90611921565b60405180910390fd5b6108958286868403610bf0565b60019250505092915050565b6000806108ac610be8565b90506108b9818585610e45565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109219190611587565b60405180910390a3505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a13611266565b60005b82829050811015610ab357600160026000858585818110610a3a57610a39611838565b5b9050602002016020810190610a4f919061162c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610aab90611867565b915050610a16565b505050565b610ac0611266565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b26906119b3565b60405180910390fd5b610b38816112e4565b50565b610b43611266565b60005b82829050811015610be357600060036000858585818110610b6a57610b69611838565b5b9050602002016020810190610b7f919061162c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bdb90611867565b915050610b46565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690611a45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590611ad7565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dac9190611587565b60405180910390a3505050565b6000610dc58484610984565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e3f5781811015610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890611b43565b60405180910390fd5b610e3e8484848403610bf0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90611bd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90611c67565b60405180910390fd5b610f2e8383836113a8565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90611cf9565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110e95750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111455760011515600660009054906101000a900460ff16151514611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90611d3f565b60405180910390fd5b5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111f0576001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161124d9190611587565b60405180910390a36112608484846113ad565b50505050565b61126e610be8565b73ffffffffffffffffffffffffffffffffffffffff1661128c6106c2565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990611dab565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113ec5780820151818401526020810190506113d1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611414826113b2565b61141e81856113bd565b935061142e8185602086016113ce565b611437816113f8565b840191505092915050565b6000602082019050818103600083015261145c8184611409565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114998261146e565b9050919050565b6114a98161148e565b81146114b457600080fd5b50565b6000813590506114c6816114a0565b92915050565b6000819050919050565b6114df816114cc565b81146114ea57600080fd5b50565b6000813590506114fc816114d6565b92915050565b6000806040838503121561151957611518611464565b5b6000611527858286016114b7565b9250506020611538858286016114ed565b9150509250929050565b60008115159050919050565b61155781611542565b82525050565b6000602082019050611572600083018461154e565b92915050565b611581816114cc565b82525050565b600060208201905061159c6000830184611578565b92915050565b6000806000606084860312156115bb576115ba611464565b5b60006115c9868287016114b7565b93505060206115da868287016114b7565b92505060406115eb868287016114ed565b9150509250925092565b600060ff82169050919050565b61160b816115f5565b82525050565b60006020820190506116266000830184611602565b92915050565b60006020828403121561164257611641611464565b5b6000611650848285016114b7565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261167e5761167d611659565b5b8235905067ffffffffffffffff81111561169b5761169a61165e565b5b6020830191508360208202830111156116b7576116b6611663565b5b9250929050565b600080602083850312156116d5576116d4611464565b5b600083013567ffffffffffffffff8111156116f3576116f2611469565b5b6116ff85828601611668565b92509250509250929050565b6117148161148e565b82525050565b600060208201905061172f600083018461170b565b92915050565b6000806040838503121561174c5761174b611464565b5b600061175a858286016114b7565b925050602061176b858286016114b7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117bc57607f821691505b6020821081036117cf576117ce611775565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061180f826114cc565b915061181a836114cc565b9250828201905080821115611832576118316117d5565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611872826114cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118a4576118a36117d5565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061190b6025836113bd565b9150611916826118af565b604082019050919050565b6000602082019050818103600083015261193a816118fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061199d6026836113bd565b91506119a882611941565b604082019050919050565b600060208201905081810360008301526119cc81611990565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a2f6024836113bd565b9150611a3a826119d3565b604082019050919050565b60006020820190508181036000830152611a5e81611a22565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ac16022836113bd565b9150611acc82611a65565b604082019050919050565b60006020820190508181036000830152611af081611ab4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b2d601d836113bd565b9150611b3882611af7565b602082019050919050565b60006020820190508181036000830152611b5c81611b20565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bbf6025836113bd565b9150611bca82611b63565b604082019050919050565b60006020820190508181036000830152611bee81611bb2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c516023836113bd565b9150611c5c82611bf5565b604082019050919050565b60006020820190508181036000830152611c8081611c44565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ce36026836113bd565b9150611cee82611c87565b604082019050919050565b60006020820190508181036000830152611d1281611cd6565b9050919050565b50565b6000611d296000836113bd565b9150611d3482611d19565b600082019050919050565b60006020820190508181036000830152611d5881611d1c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d956020836113bd565b9150611da082611d5f565b602082019050919050565b60006020820190508181036000830152611dc481611d88565b905091905056fea2646970667358221220674e01bb879522918ff69d87a61c993b324b3b41400c2dd077b0235b7d91126f64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80638da5cb5b116100b8578063beabacc81161007c578063beabacc814610364578063c4ea7ceb14610380578063dd62ed3e146103b0578063e84acaab146103e0578063f2fde38b146103fc578063f9c54e481461041857610137565b80638da5cb5b146102ac578063917df24c146102ca57806395d89b41146102e6578063a457c2d714610304578063a9059cbb1461033457610137565b806339509351116100ff57806339509351146101f6578063429d5fb5146102265780636a7278bd1461025657806370a0823114610272578063715018a6146102a257610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b610144610434565b6040516101519190611442565b60405180910390f35b610174600480360381019061016f9190611502565b6104c6565b604051610181919061155d565b60405180910390f35b6101926104e9565b60405161019f9190611587565b60405180910390f35b6101c260048036038101906101bd91906115a2565b6104f3565b6040516101cf919061155d565b60405180910390f35b6101e0610522565b6040516101ed9190611611565b60405180910390f35b610210600480360381019061020b9190611502565b61052b565b60405161021d919061155d565b60405180910390f35b610240600480360381019061023b919061162c565b610562565b60405161024d919061155d565b60405180910390f35b610270600480360381019061026b91906116be565b6105b8565b005b61028c6004803603810190610287919061162c565b610665565b6040516102999190611587565b60405180910390f35b6102aa6106ae565b005b6102b46106c2565b6040516102c1919061171a565b60405180910390f35b6102e460048036038101906102df91906116be565b6106eb565b005b6102ee610798565b6040516102fb9190611442565b60405180910390f35b61031e60048036038101906103199190611502565b61082a565b60405161032b919061155d565b60405180910390f35b61034e60048036038101906103499190611502565b6108a1565b60405161035b919061155d565b60405180910390f35b61037e600480360381019061037991906115a2565b6108c4565b005b61039a6004803603810190610395919061162c565b61092e565b6040516103a7919061155d565b60405180910390f35b6103ca60048036038101906103c59190611735565b610984565b6040516103d79190611587565b60405180910390f35b6103fa60048036038101906103f591906116be565b610a0b565b005b6104166004803603810190610411919061162c565b610ab8565b005b610432600480360381019061042d91906116be565b610b3b565b005b606060078054610443906117a4565b80601f016020809104026020016040519081016040528092919081815260200182805461046f906117a4565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b6000806104d1610be8565b90506104de818585610bf0565b600191505092915050565b6000600554905090565b6000806104fe610be8565b905061050b858285610db9565b610516858585610e45565b60019150509392505050565b60006012905090565b600080610536610be8565b90506105578185856105488589610984565b6105529190611804565b610bf0565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6105c0611266565b60005b82829050811015610660576001600360008585858181106105e7576105e6611838565b5b90506020020160208101906105fc919061162c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061065890611867565b9150506105c3565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b6611266565b6106c060006112e4565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106f3611266565b60005b828290508110156107935760006002600085858581811061071a57610719611838565b5b905060200201602081019061072f919061162c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061078b90611867565b9150506106f6565b505050565b6060600880546107a7906117a4565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906117a4565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b600080610835610be8565b905060006108438286610984565b905083811015610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087f90611921565b60405180910390fd5b6108958286868403610bf0565b60019250505092915050565b6000806108ac610be8565b90506108b9818585610e45565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109219190611587565b60405180910390a3505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a13611266565b60005b82829050811015610ab357600160026000858585818110610a3a57610a39611838565b5b9050602002016020810190610a4f919061162c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610aab90611867565b915050610a16565b505050565b610ac0611266565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b26906119b3565b60405180910390fd5b610b38816112e4565b50565b610b43611266565b60005b82829050811015610be357600060036000858585818110610b6a57610b69611838565b5b9050602002016020810190610b7f919061162c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bdb90611867565b915050610b46565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690611a45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590611ad7565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dac9190611587565b60405180910390a3505050565b6000610dc58484610984565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e3f5781811015610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890611b43565b60405180910390fd5b610e3e8484848403610bf0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90611bd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90611c67565b60405180910390fd5b610f2e8383836113a8565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90611cf9565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110e95750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111455760011515600660009054906101000a900460ff16151514611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90611d3f565b60405180910390fd5b5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111f0576001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161124d9190611587565b60405180910390a36112608484846113ad565b50505050565b61126e610be8565b73ffffffffffffffffffffffffffffffffffffffff1661128c6106c2565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990611dab565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113ec5780820151818401526020810190506113d1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611414826113b2565b61141e81856113bd565b935061142e8185602086016113ce565b611437816113f8565b840191505092915050565b6000602082019050818103600083015261145c8184611409565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114998261146e565b9050919050565b6114a98161148e565b81146114b457600080fd5b50565b6000813590506114c6816114a0565b92915050565b6000819050919050565b6114df816114cc565b81146114ea57600080fd5b50565b6000813590506114fc816114d6565b92915050565b6000806040838503121561151957611518611464565b5b6000611527858286016114b7565b9250506020611538858286016114ed565b9150509250929050565b60008115159050919050565b61155781611542565b82525050565b6000602082019050611572600083018461154e565b92915050565b611581816114cc565b82525050565b600060208201905061159c6000830184611578565b92915050565b6000806000606084860312156115bb576115ba611464565b5b60006115c9868287016114b7565b93505060206115da868287016114b7565b92505060406115eb868287016114ed565b9150509250925092565b600060ff82169050919050565b61160b816115f5565b82525050565b60006020820190506116266000830184611602565b92915050565b60006020828403121561164257611641611464565b5b6000611650848285016114b7565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261167e5761167d611659565b5b8235905067ffffffffffffffff81111561169b5761169a61165e565b5b6020830191508360208202830111156116b7576116b6611663565b5b9250929050565b600080602083850312156116d5576116d4611464565b5b600083013567ffffffffffffffff8111156116f3576116f2611469565b5b6116ff85828601611668565b92509250509250929050565b6117148161148e565b82525050565b600060208201905061172f600083018461170b565b92915050565b6000806040838503121561174c5761174b611464565b5b600061175a858286016114b7565b925050602061176b858286016114b7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117bc57607f821691505b6020821081036117cf576117ce611775565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061180f826114cc565b915061181a836114cc565b9250828201905080821115611832576118316117d5565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611872826114cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118a4576118a36117d5565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061190b6025836113bd565b9150611916826118af565b604082019050919050565b6000602082019050818103600083015261193a816118fe565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061199d6026836113bd565b91506119a882611941565b604082019050919050565b600060208201905081810360008301526119cc81611990565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a2f6024836113bd565b9150611a3a826119d3565b604082019050919050565b60006020820190508181036000830152611a5e81611a22565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ac16022836113bd565b9150611acc82611a65565b604082019050919050565b60006020820190508181036000830152611af081611ab4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b2d601d836113bd565b9150611b3882611af7565b602082019050919050565b60006020820190508181036000830152611b5c81611b20565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bbf6025836113bd565b9150611bca82611b63565b604082019050919050565b60006020820190508181036000830152611bee81611bb2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c516023836113bd565b9150611c5c82611bf5565b604082019050919050565b60006020820190508181036000830152611c8081611c44565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ce36026836113bd565b9150611cee82611c87565b604082019050919050565b60006020820190508181036000830152611d1281611cd6565b9050919050565b50565b6000611d296000836113bd565b9150611d3482611d19565b600082019050919050565b60006020820190508181036000830152611d5881611d1c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d956020836113bd565b9150611da082611d5f565b602082019050919050565b60006020820190508181036000830152611dc481611d88565b905091905056fea2646970667358221220674e01bb879522918ff69d87a61c993b324b3b41400c2dd077b0235b7d91126f64736f6c63430008130033

Deployed Bytecode Sourcemap

81:138:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2179:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5671:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4482:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6430:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3116:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7111:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4302:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3840:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4646:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3213:207:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2390:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7832:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4967:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4040:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4188:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5214:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3427:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3639:195:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2179:98;2233:13;2265:5;2258:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2179:98;:::o;5671:197::-;5754:4;5770:13;5786:12;:10;:12::i;:::-;5770:28;;5808:32;5817:5;5824:7;5833:6;5808:8;:32::i;:::-;5857:4;5850:11;;;5671:197;;;;:::o;4482:106::-;4543:7;4569:12;;4562:19;;4482:106;:::o;6430:286::-;6557:4;6573:15;6591:12;:10;:12::i;:::-;6573:30;;6613:38;6629:4;6635:7;6644:6;6613:15;:38::i;:::-;6661:27;6671:4;6677:2;6681:6;6661:9;:27::i;:::-;6705:4;6698:11;;;6430:286;;;;;:::o;3116:91::-;3174:5;3198:2;3191:9;;3116:91;:::o;7111:234::-;7199:4;7215:13;7231:12;:10;:12::i;:::-;7215:28;;7253:64;7262:5;7269:7;7306:10;7278:25;7288:5;7295:7;7278:9;:25::i;:::-;:38;;;;:::i;:::-;7253:8;:64::i;:::-;7334:4;7327:11;;;7111:234;;;;:::o;4302:120::-;4366:4;4389:15;:26;4405:9;4389:26;;;;;;;;;;;;;;;;;;;;;;;;;4382:33;;4302:120;;;:::o;3840:194::-;1727:13:0;:11;:13::i;:::-;3927:9:1::1;3922:106;3946:11;;:18;;3942:1;:22;3922:106;;;4013:4;3985:9;:25;3995:11;;4007:1;3995:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3985:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;3966:3;;;;;:::i;:::-;;;;3922:106;;;;3840:194:::0;;:::o;4646:125::-;4720:7;4746:9;:18;4756:7;4746:18;;;;;;;;;;;;;;;;4739:25;;4646: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;3213:207:1:-;1727:13:0;:11;:13::i;:::-;3306:9:1::1;3301:113;3325:11;;:18;;3321:1;:22;3301:113;;;3398:5;3364:15;:31;3380:11;;3392:1;3380:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3364:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;3345:3;;;;;:::i;:::-;;;;3301:113;;;;3213:207:::0;;:::o;2390:102::-;2446:13;2478:7;2471:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2390:102;:::o;7832:427::-;7925:4;7941:13;7957:12;:10;:12::i;:::-;7941:28;;7979:24;8006:25;8016:5;8023:7;8006:9;:25::i;:::-;7979:52;;8069:15;8049:16;:35;;8041:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8160:60;8169:5;8176:7;8204:15;8185:16;:34;8160:8;:60::i;:::-;8248:4;8241:11;;;;7832:427;;;;:::o;4967:189::-;5046:4;5062:13;5078:12;:10;:12::i;:::-;5062:28;;5100;5110:5;5117:2;5121:6;5100:9;:28::i;:::-;5145:4;5138:11;;;4967:189;;;;:::o;4040:117::-;4140:3;4124:26;;4133:5;4124:26;;;4145:4;4124:26;;;;;;:::i;:::-;;;;;;;;4040:117;;;:::o;4188:108::-;4246:4;4269:9;:20;4279:9;4269:20;;;;;;;;;;;;;;;;;;;;;;;;;4262:27;;4188:108;;;:::o;5214:149::-;5303:7;5329:11;:18;5341:5;5329:18;;;;;;;;;;;;;;;:27;5348:7;5329:27;;;;;;;;;;;;;;;;5322:34;;5214:149;;;;:::o;3427:206::-;1727:13:0;:11;:13::i;:::-;3520:9:1::1;3515:112;3539:11;;:18;;3535:1;:22;3515:112;;;3612:4;3578:15;:31;3594:11;;3606:1;3594:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3578:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;3559:3;;;;;:::i;:::-;;;;3515:112;;;;3427:206:::0;;:::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;3639:195:1:-;1727:13:0;:11;:13::i;:::-;3726:9:1::1;3721:107;3745:11;;:18;;3741:1;:22;3721:107;;;3812:5;3784:9;:25;3794:11;;3806:1;3794:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3784:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;3765:3;;;;;:::i;:::-;;;;3721:107;;;;3639:195:::0;;:::o;587:96:0:-;640:7;666:10;659:17;;587:96;:::o;12238:370:1:-;12386:1;12369:19;;:5;:19;;;12361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12466:1;12447:21;;:7;:21;;;12439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12548:6;12518:11;:18;12530:5;12518:18;;;;;;;;;;;;;;;:27;12537:7;12518:27;;;;;;;;;;;;;;;:36;;;;12585:7;12569:32;;12578:5;12569:32;;;12594:6;12569:32;;;;;;:::i;:::-;;;;;;;;12238:370;;;:::o;12889:441::-;13019:24;13046:25;13056:5;13063:7;13046:9;:25::i;:::-;13019:52;;13105:17;13085:16;:37;13081:243;;13166:6;13146:16;:26;;13138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13248:51;13257:5;13264:7;13292:6;13273:16;:25;13248:8;:51::i;:::-;13081:243;13009:321;12889:441;;;:::o;8713:967::-;8855:1;8839:18;;:4;:18;;;8831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8931:1;8917:16;;:2;:16;;;8909:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8984:38;9005:4;9011:2;9015:6;8984:20;:38::i;:::-;9033:19;9055:9;:15;9065:4;9055:15;;;;;;;;;;;;;;;;9033:37;;9103:6;9088:11;:21;;9080:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;9218:6;9204:11;:20;9186:9;:15;9196:4;9186:15;;;;;;;;;;;;;;;:38;;;;9418:6;9401:9;:13;9411:2;9401:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9448:9;:15;9458:4;9448:15;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;;9467:9;:13;9477:2;9467:13;;;;;;;;;;;;;;;;;;;;;;;;;9448:32;9444:75;;;9510:4;9490:24;;:16;;;;;;;;;;;:24;;;9482:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;9444:75;9542:15;:19;9558:2;9542:19;;;;;;;;;;;;;;;;;;;;;;;;;9538:45;;;9579:4;9563:9;:13;9573:2;9563:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;9538:45;9614:2;9599:26;;9608:4;9599:26;;;9618:6;9599:26;;;;;;:::i;:::-;;;;;;;;9636:37;9656:4;9662:2;9666:6;9636:19;:37::i;:::-;8821:859;8713:967;;;:::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;14624:121:1:-;;;;:::o;13918: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: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: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:233;8665:3;8688:24;8706:5;8688:24;:::i;:::-;8679:33;;8734:66;8727:5;8724:77;8721:103;;8804:18;;:::i;:::-;8721:103;8851:1;8844:5;8840:13;8833:20;;8626:233;;;:::o;8865:224::-;9005:34;9001:1;8993:6;8989:14;8982:58;9074:7;9069:2;9061:6;9057:15;9050:32;8865:224;:::o;9095:366::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:419::-;9633:4;9671:2;9660:9;9656:18;9648:26;;9720:9;9714:4;9710:20;9706:1;9695:9;9691:17;9684:47;9748:131;9874:4;9748:131;:::i;:::-;9740:139;;9467:419;;;:::o;9892:225::-;10032:34;10028:1;10020:6;10016:14;10009:58;10101:8;10096:2;10088:6;10084:15;10077:33;9892:225;:::o;10123:366::-;10265:3;10286:67;10350:2;10345:3;10286:67;:::i;:::-;10279:74;;10362:93;10451:3;10362:93;:::i;:::-;10480:2;10475:3;10471:12;10464:19;;10123:366;;;:::o;10495:419::-;10661:4;10699:2;10688:9;10684:18;10676:26;;10748:9;10742:4;10738:20;10734:1;10723:9;10719:17;10712:47;10776:131;10902:4;10776:131;:::i;:::-;10768:139;;10495:419;;;:::o;10920:223::-;11060:34;11056:1;11048:6;11044:14;11037:58;11129:6;11124:2;11116:6;11112:15;11105:31;10920:223;:::o;11149:366::-;11291:3;11312:67;11376:2;11371:3;11312:67;:::i;:::-;11305:74;;11388:93;11477:3;11388:93;:::i;:::-;11506:2;11501:3;11497:12;11490:19;;11149:366;;;:::o;11521:419::-;11687:4;11725:2;11714:9;11710:18;11702:26;;11774:9;11768:4;11764:20;11760:1;11749:9;11745:17;11738:47;11802:131;11928:4;11802:131;:::i;:::-;11794:139;;11521:419;;;:::o;11946:221::-;12086:34;12082:1;12074:6;12070:14;12063:58;12155:4;12150:2;12142:6;12138:15;12131:29;11946:221;:::o;12173:366::-;12315:3;12336:67;12400:2;12395:3;12336:67;:::i;:::-;12329:74;;12412:93;12501:3;12412:93;:::i;:::-;12530:2;12525:3;12521:12;12514:19;;12173:366;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12545:419;;;:::o;12970:179::-;13110:31;13106:1;13098:6;13094:14;13087:55;12970:179;:::o;13155:366::-;13297:3;13318:67;13382:2;13377:3;13318:67;:::i;:::-;13311:74;;13394:93;13483:3;13394:93;:::i;:::-;13512:2;13507:3;13503:12;13496:19;;13155:366;;;:::o;13527:419::-;13693:4;13731:2;13720:9;13716:18;13708:26;;13780:9;13774:4;13770:20;13766:1;13755:9;13751:17;13744:47;13808:131;13934:4;13808:131;:::i;:::-;13800:139;;13527:419;;;:::o;13952:224::-;14092:34;14088:1;14080:6;14076:14;14069:58;14161:7;14156:2;14148:6;14144:15;14137:32;13952:224;:::o;14182:366::-;14324:3;14345:67;14409:2;14404:3;14345:67;:::i;:::-;14338:74;;14421:93;14510:3;14421:93;:::i;:::-;14539:2;14534:3;14530:12;14523:19;;14182:366;;;:::o;14554:419::-;14720:4;14758:2;14747:9;14743:18;14735:26;;14807:9;14801:4;14797:20;14793:1;14782:9;14778:17;14771:47;14835:131;14961:4;14835:131;:::i;:::-;14827:139;;14554:419;;;:::o;14979:222::-;15119:34;15115:1;15107:6;15103:14;15096:58;15188:5;15183:2;15175:6;15171:15;15164:30;14979:222;:::o;15207:366::-;15349:3;15370:67;15434:2;15429:3;15370:67;:::i;:::-;15363:74;;15446:93;15535:3;15446:93;:::i;:::-;15564:2;15559:3;15555:12;15548:19;;15207:366;;;:::o;15579:419::-;15745:4;15783:2;15772:9;15768:18;15760:26;;15832:9;15826:4;15822:20;15818:1;15807:9;15803:17;15796:47;15860:131;15986:4;15860:131;:::i;:::-;15852:139;;15579:419;;;:::o;16004:225::-;16144:34;16140:1;16132:6;16128:14;16121:58;16213:8;16208:2;16200:6;16196:15;16189:33;16004:225;:::o;16235:366::-;16377:3;16398:67;16462:2;16457:3;16398:67;:::i;:::-;16391:74;;16474:93;16563:3;16474:93;:::i;:::-;16592:2;16587:3;16583:12;16576:19;;16235:366;;;:::o;16607:419::-;16773:4;16811:2;16800:9;16796:18;16788:26;;16860:9;16854:4;16850:20;16846:1;16835:9;16831:17;16824:47;16888:131;17014:4;16888:131;:::i;:::-;16880:139;;16607:419;;;:::o;17032:114::-;;:::o;17152:364::-;17294:3;17315:66;17379:1;17374:3;17315:66;:::i;:::-;17308:73;;17390:93;17479:3;17390:93;:::i;:::-;17508:1;17503:3;17499:11;17492:18;;17152:364;;;:::o;17522:419::-;17688:4;17726:2;17715:9;17711:18;17703:26;;17775:9;17769:4;17765:20;17761:1;17750:9;17746:17;17739:47;17803:131;17929:4;17803:131;:::i;:::-;17795:139;;17522:419;;;:::o;17947:182::-;18087:34;18083:1;18075:6;18071:14;18064:58;17947:182;:::o;18135:366::-;18277:3;18298:67;18362:2;18357:3;18298:67;:::i;:::-;18291:74;;18374:93;18463:3;18374:93;:::i;:::-;18492:2;18487:3;18483:12;18476:19;;18135:366;;;:::o;18507:419::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18760:9;18754:4;18750:20;18746:1;18735:9;18731:17;18724:47;18788:131;18914:4;18788:131;:::i;:::-;18780:139;;18507:419;;;:::o

Swarm Source

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