Moonbase Alpha Testnet

Token

ERC-20: Saloka (SAKA)
ERC-20

Overview

Max Total Supply

10,000,000,000 SAKA

Holders

390

Market

Price

$0.00 @ 0.000000 DEV

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,000 SAKA
0xa7b0f111c176d38de683f3f2adb6e3d87944a605
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Saloka

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at moonbase.moonscan.io on 2022-08-28
*/

// SPDX-License-Identifier: MIXED

// Sources flattened with hardhat v2.9.2 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/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 Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

    /**
     * @dev See {IERC20-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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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


// File @openzeppelin/contracts/utils/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/token/ERC20/utils/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;


/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


// File @openzeppelin/contracts/access/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 contracts/Saloka.sol

// Copyright (C) 2020-2022 SubQuery Pte Ltd authors & contributors
// License-Identifier: GPL-3.0-or-later

pragma solidity 0.8.15;


contract Saloka is ERC20, Ownable, ERC20Burnable {
    using SafeERC20 for IERC20;
    address public minter;

    modifier isMinter() {
        require(minter == msg.sender, 'Not minter');
        _;
    }

    constructor(address _minter) ERC20('Saloka', 'SAKA') Ownable() {
        minter = _minter;
        _mint(msg.sender, 10**28); // Initial Supply: 10,000,000,000 (10 billion)
    }

    function mint(address destination, uint256 amount) external isMinter {
        _mint(destination, amount);
    }

    /// #if_succeeds {:msg "minter should be set"} minter == _minter;
    /// #if_succeeds {:msg "owner functionality"} old(msg.sender == address(owner));
    function setMinter(address _minter) external onlyOwner {
        minter = _minter;
    }

    function getMinter() external view returns (address) {
        return minter;
    }
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_minter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620028b0380380620028b0833981810160405281019062000037919062000409565b6040518060400160405280600681526020017f53616c6f6b6100000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53414b41000000000000000000000000000000000000000000000000000000008152508160039081620000b49190620006b5565b508060049081620000c69190620006b5565b505050620000e9620000dd6200014f60201b60201c565b6200015760201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000148336b204fce5e3e250261100000006200021d60201b60201c565b50620008d9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200028f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028690620007fd565b60405180910390fd5b620002a3600083836200039560201b60201c565b8060026000828254620002b791906200084e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200030e91906200084e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003759190620008bc565b60405180910390a362000391600083836200039a60201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003d182620003a4565b9050919050565b620003e381620003c4565b8114620003ef57600080fd5b50565b6000815190506200040381620003d8565b92915050565b6000602082840312156200042257620004216200039f565b5b60006200043284828501620003f2565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004bd57607f821691505b602082108103620004d357620004d262000475565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200053d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004fe565b620005498683620004fe565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000596620005906200058a8462000561565b6200056b565b62000561565b9050919050565b6000819050919050565b620005b28362000575565b620005ca620005c1826200059d565b8484546200050b565b825550505050565b600090565b620005e1620005d2565b620005ee818484620005a7565b505050565b5b8181101562000616576200060a600082620005d7565b600181019050620005f4565b5050565b601f82111562000665576200062f81620004d9565b6200063a84620004ee565b810160208510156200064a578190505b620006626200065985620004ee565b830182620005f3565b50505b505050565b600082821c905092915050565b60006200068a600019846008026200066a565b1980831691505092915050565b6000620006a5838362000677565b9150826002028217905092915050565b620006c0826200043b565b67ffffffffffffffff811115620006dc57620006db62000446565b5b620006e88254620004a4565b620006f58282856200061a565b600060209050601f8311600181146200072d576000841562000718578287015190505b62000724858262000697565b86555062000794565b601f1984166200073d86620004d9565b60005b82811015620007675784890151825560018201915060208501945060208101905062000740565b8683101562000787578489015162000783601f89168262000677565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007e5601f836200079c565b9150620007f282620007ad565b602082019050919050565b600060208201905081810360008301526200081881620007d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200085b8262000561565b9150620008688362000561565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008a0576200089f6200081f565b5b828201905092915050565b620008b68162000561565b82525050565b6000602082019050620008d36000830184620008ab565b92915050565b611fc780620008e96000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610333578063dd62ed3e14610363578063f2fde38b14610393578063f3667517146103af578063fca3b5aa146103cd5761012c565b8063715018a6146102a157806379cc6790146102ab5780638da5cb5b146102c757806395d89b41146102e5578063a457c2d7146103035761012c565b8063313ce567116100f4578063313ce567146101eb578063395093511461020957806340c10f191461023957806342966c681461025557806370a08231146102715761012c565b806306fdde0314610131578063075461721461014f578063095ea7b31461016d57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103e9565b60405161014691906114fd565b60405180910390f35b61015761047b565b6040516101649190611560565b60405180910390f35b610187600480360381019061018291906115e2565b6104a1565b604051610194919061163d565b60405180910390f35b6101a56104c4565b6040516101b29190611667565b60405180910390f35b6101d560048036038101906101d09190611682565b6104ce565b6040516101e2919061163d565b60405180910390f35b6101f36104fd565b60405161020091906116f1565b60405180910390f35b610223600480360381019061021e91906115e2565b610506565b604051610230919061163d565b60405180910390f35b610253600480360381019061024e91906115e2565b6105b0565b005b61026f600480360381019061026a919061170c565b61064e565b005b61028b60048036038101906102869190611739565b610662565b6040516102989190611667565b60405180910390f35b6102a96106aa565b005b6102c560048036038101906102c091906115e2565b610732565b005b6102cf610752565b6040516102dc9190611560565b60405180910390f35b6102ed61077c565b6040516102fa91906114fd565b60405180910390f35b61031d600480360381019061031891906115e2565b61080e565b60405161032a919061163d565b60405180910390f35b61034d600480360381019061034891906115e2565b6108f8565b60405161035a919061163d565b60405180910390f35b61037d60048036038101906103789190611766565b61091b565b60405161038a9190611667565b60405180910390f35b6103ad60048036038101906103a89190611739565b6109a2565b005b6103b7610a99565b6040516103c49190611560565b60405180910390f35b6103e760048036038101906103e29190611739565b610ac3565b005b6060600380546103f8906117d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610424906117d5565b80156104715780601f1061044657610100808354040283529160200191610471565b820191906000526020600020905b81548152906001019060200180831161045457829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806104ac610b83565b90506104b9818585610b8b565b600191505092915050565b6000600254905090565b6000806104d9610b83565b90506104e6858285610d54565b6104f1858585610de0565b60019150509392505050565b60006012905090565b600080610511610b83565b90506105a5818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a09190611835565b610b8b565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610637906118d7565b60405180910390fd5b61064a828261105f565b5050565b61065f610659610b83565b826111be565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b2610b83565b73ffffffffffffffffffffffffffffffffffffffff166106d0610752565b73ffffffffffffffffffffffffffffffffffffffff1614610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d90611943565b60405180910390fd5b6107306000611394565b565b6107448261073e610b83565b83610d54565b61074e82826111be565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461078b906117d5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906117d5565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600080610819610b83565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906119d5565b60405180910390fd5b6108ec8286868403610b8b565b60019250505092915050565b600080610903610b83565b9050610910818585610de0565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109aa610b83565b73ffffffffffffffffffffffffffffffffffffffff166109c8610752565b73ffffffffffffffffffffffffffffffffffffffff1614610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590611943565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490611a67565b60405180910390fd5b610a9681611394565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610acb610b83565b73ffffffffffffffffffffffffffffffffffffffff16610ae9610752565b73ffffffffffffffffffffffffffffffffffffffff1614610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690611943565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611af9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090611b8b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d479190611667565b60405180910390a3505050565b6000610d60848461091b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dda5781811015610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390611bf7565b60405180910390fd5b610dd98484848403610b8b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690611c89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590611d1b565b60405180910390fd5b610ec983838361145a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690611dad565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fe29190611835565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110469190611667565b60405180910390a361105984848461145f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c590611e19565b60405180910390fd5b6110da6000838361145a565b80600260008282546110ec9190611835565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111419190611835565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111a69190611667565b60405180910390a36111ba6000838361145f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490611eab565b60405180910390fd5b6112398260008361145a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690611f3d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113169190611f5d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161137b9190611667565b60405180910390a361138f8360008461145f565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561149e578082015181840152602081019050611483565b838111156114ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006114cf82611464565b6114d9818561146f565b93506114e9818560208601611480565b6114f2816114b3565b840191505092915050565b6000602082019050818103600083015261151781846114c4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061154a8261151f565b9050919050565b61155a8161153f565b82525050565b60006020820190506115756000830184611551565b92915050565b600080fd5b6115898161153f565b811461159457600080fd5b50565b6000813590506115a681611580565b92915050565b6000819050919050565b6115bf816115ac565b81146115ca57600080fd5b50565b6000813590506115dc816115b6565b92915050565b600080604083850312156115f9576115f861157b565b5b600061160785828601611597565b9250506020611618858286016115cd565b9150509250929050565b60008115159050919050565b61163781611622565b82525050565b6000602082019050611652600083018461162e565b92915050565b611661816115ac565b82525050565b600060208201905061167c6000830184611658565b92915050565b60008060006060848603121561169b5761169a61157b565b5b60006116a986828701611597565b93505060206116ba86828701611597565b92505060406116cb868287016115cd565b9150509250925092565b600060ff82169050919050565b6116eb816116d5565b82525050565b600060208201905061170660008301846116e2565b92915050565b6000602082840312156117225761172161157b565b5b6000611730848285016115cd565b91505092915050565b60006020828403121561174f5761174e61157b565b5b600061175d84828501611597565b91505092915050565b6000806040838503121561177d5761177c61157b565b5b600061178b85828601611597565b925050602061179c85828601611597565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117ed57607f821691505b602082108103611800576117ff6117a6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611840826115ac565b915061184b836115ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118805761187f611806565b5b828201905092915050565b7f4e6f74206d696e74657200000000000000000000000000000000000000000000600082015250565b60006118c1600a8361146f565b91506118cc8261188b565b602082019050919050565b600060208201905081810360008301526118f0816118b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061192d60208361146f565b9150611938826118f7565b602082019050919050565b6000602082019050818103600083015261195c81611920565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119bf60258361146f565b91506119ca82611963565b604082019050919050565b600060208201905081810360008301526119ee816119b2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a5160268361146f565b9150611a5c826119f5565b604082019050919050565b60006020820190508181036000830152611a8081611a44565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae360248361146f565b9150611aee82611a87565b604082019050919050565b60006020820190508181036000830152611b1281611ad6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b7560228361146f565b9150611b8082611b19565b604082019050919050565b60006020820190508181036000830152611ba481611b68565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611be1601d8361146f565b9150611bec82611bab565b602082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c7360258361146f565b9150611c7e82611c17565b604082019050919050565b60006020820190508181036000830152611ca281611c66565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d0560238361146f565b9150611d1082611ca9565b604082019050919050565b60006020820190508181036000830152611d3481611cf8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d9760268361146f565b9150611da282611d3b565b604082019050919050565b60006020820190508181036000830152611dc681611d8a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e03601f8361146f565b9150611e0e82611dcd565b602082019050919050565b60006020820190508181036000830152611e3281611df6565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9560218361146f565b9150611ea082611e39565b604082019050919050565b60006020820190508181036000830152611ec481611e88565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2760228361146f565b9150611f3282611ecb565b604082019050919050565b60006020820190508181036000830152611f5681611f1a565b9050919050565b6000611f68826115ac565b9150611f73836115ac565b925082821015611f8657611f85611806565b5b82820390509291505056fea26469706673582212200a2266510cf7679cc95d48024d4224fc8612ed5c63d940a9e3b3ed43c62bde0e64736f6c634300080f003300000000000000000000000052f778a1e1c12c5520be9a31511a8a256f0b1065

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610333578063dd62ed3e14610363578063f2fde38b14610393578063f3667517146103af578063fca3b5aa146103cd5761012c565b8063715018a6146102a157806379cc6790146102ab5780638da5cb5b146102c757806395d89b41146102e5578063a457c2d7146103035761012c565b8063313ce567116100f4578063313ce567146101eb578063395093511461020957806340c10f191461023957806342966c681461025557806370a08231146102715761012c565b806306fdde0314610131578063075461721461014f578063095ea7b31461016d57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103e9565b60405161014691906114fd565b60405180910390f35b61015761047b565b6040516101649190611560565b60405180910390f35b610187600480360381019061018291906115e2565b6104a1565b604051610194919061163d565b60405180910390f35b6101a56104c4565b6040516101b29190611667565b60405180910390f35b6101d560048036038101906101d09190611682565b6104ce565b6040516101e2919061163d565b60405180910390f35b6101f36104fd565b60405161020091906116f1565b60405180910390f35b610223600480360381019061021e91906115e2565b610506565b604051610230919061163d565b60405180910390f35b610253600480360381019061024e91906115e2565b6105b0565b005b61026f600480360381019061026a919061170c565b61064e565b005b61028b60048036038101906102869190611739565b610662565b6040516102989190611667565b60405180910390f35b6102a96106aa565b005b6102c560048036038101906102c091906115e2565b610732565b005b6102cf610752565b6040516102dc9190611560565b60405180910390f35b6102ed61077c565b6040516102fa91906114fd565b60405180910390f35b61031d600480360381019061031891906115e2565b61080e565b60405161032a919061163d565b60405180910390f35b61034d600480360381019061034891906115e2565b6108f8565b60405161035a919061163d565b60405180910390f35b61037d60048036038101906103789190611766565b61091b565b60405161038a9190611667565b60405180910390f35b6103ad60048036038101906103a89190611739565b6109a2565b005b6103b7610a99565b6040516103c49190611560565b60405180910390f35b6103e760048036038101906103e29190611739565b610ac3565b005b6060600380546103f8906117d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610424906117d5565b80156104715780601f1061044657610100808354040283529160200191610471565b820191906000526020600020905b81548152906001019060200180831161045457829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806104ac610b83565b90506104b9818585610b8b565b600191505092915050565b6000600254905090565b6000806104d9610b83565b90506104e6858285610d54565b6104f1858585610de0565b60019150509392505050565b60006012905090565b600080610511610b83565b90506105a5818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a09190611835565b610b8b565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610637906118d7565b60405180910390fd5b61064a828261105f565b5050565b61065f610659610b83565b826111be565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b2610b83565b73ffffffffffffffffffffffffffffffffffffffff166106d0610752565b73ffffffffffffffffffffffffffffffffffffffff1614610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d90611943565b60405180910390fd5b6107306000611394565b565b6107448261073e610b83565b83610d54565b61074e82826111be565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461078b906117d5565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906117d5565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600080610819610b83565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906119d5565b60405180910390fd5b6108ec8286868403610b8b565b60019250505092915050565b600080610903610b83565b9050610910818585610de0565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109aa610b83565b73ffffffffffffffffffffffffffffffffffffffff166109c8610752565b73ffffffffffffffffffffffffffffffffffffffff1614610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590611943565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490611a67565b60405180910390fd5b610a9681611394565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610acb610b83565b73ffffffffffffffffffffffffffffffffffffffff16610ae9610752565b73ffffffffffffffffffffffffffffffffffffffff1614610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690611943565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611af9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090611b8b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d479190611667565b60405180910390a3505050565b6000610d60848461091b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dda5781811015610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390611bf7565b60405180910390fd5b610dd98484848403610b8b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690611c89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590611d1b565b60405180910390fd5b610ec983838361145a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690611dad565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fe29190611835565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110469190611667565b60405180910390a361105984848461145f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c590611e19565b60405180910390fd5b6110da6000838361145a565b80600260008282546110ec9190611835565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111419190611835565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111a69190611667565b60405180910390a36111ba6000838361145f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490611eab565b60405180910390fd5b6112398260008361145a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b690611f3d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113169190611f5d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161137b9190611667565b60405180910390a361138f8360008461145f565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561149e578082015181840152602081019050611483565b838111156114ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006114cf82611464565b6114d9818561146f565b93506114e9818560208601611480565b6114f2816114b3565b840191505092915050565b6000602082019050818103600083015261151781846114c4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061154a8261151f565b9050919050565b61155a8161153f565b82525050565b60006020820190506115756000830184611551565b92915050565b600080fd5b6115898161153f565b811461159457600080fd5b50565b6000813590506115a681611580565b92915050565b6000819050919050565b6115bf816115ac565b81146115ca57600080fd5b50565b6000813590506115dc816115b6565b92915050565b600080604083850312156115f9576115f861157b565b5b600061160785828601611597565b9250506020611618858286016115cd565b9150509250929050565b60008115159050919050565b61163781611622565b82525050565b6000602082019050611652600083018461162e565b92915050565b611661816115ac565b82525050565b600060208201905061167c6000830184611658565b92915050565b60008060006060848603121561169b5761169a61157b565b5b60006116a986828701611597565b93505060206116ba86828701611597565b92505060406116cb868287016115cd565b9150509250925092565b600060ff82169050919050565b6116eb816116d5565b82525050565b600060208201905061170660008301846116e2565b92915050565b6000602082840312156117225761172161157b565b5b6000611730848285016115cd565b91505092915050565b60006020828403121561174f5761174e61157b565b5b600061175d84828501611597565b91505092915050565b6000806040838503121561177d5761177c61157b565b5b600061178b85828601611597565b925050602061179c85828601611597565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117ed57607f821691505b602082108103611800576117ff6117a6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611840826115ac565b915061184b836115ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118805761187f611806565b5b828201905092915050565b7f4e6f74206d696e74657200000000000000000000000000000000000000000000600082015250565b60006118c1600a8361146f565b91506118cc8261188b565b602082019050919050565b600060208201905081810360008301526118f0816118b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061192d60208361146f565b9150611938826118f7565b602082019050919050565b6000602082019050818103600083015261195c81611920565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119bf60258361146f565b91506119ca82611963565b604082019050919050565b600060208201905081810360008301526119ee816119b2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a5160268361146f565b9150611a5c826119f5565b604082019050919050565b60006020820190508181036000830152611a8081611a44565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae360248361146f565b9150611aee82611a87565b604082019050919050565b60006020820190508181036000830152611b1281611ad6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b7560228361146f565b9150611b8082611b19565b604082019050919050565b60006020820190508181036000830152611ba481611b68565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611be1601d8361146f565b9150611bec82611bab565b602082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c7360258361146f565b9150611c7e82611c17565b604082019050919050565b60006020820190508181036000830152611ca281611c66565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d0560238361146f565b9150611d1082611ca9565b604082019050919050565b60006020820190508181036000830152611d3481611cf8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d9760268361146f565b9150611da282611d3b565b604082019050919050565b60006020820190508181036000830152611dc681611d8a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e03601f8361146f565b9150611e0e82611dcd565b602082019050919050565b60006020820190508181036000830152611e3281611df6565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9560218361146f565b9150611ea082611e39565b604082019050919050565b60006020820190508181036000830152611ec481611e88565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2760228361146f565b9150611f3282611ecb565b604082019050919050565b60006020820190508181036000830152611f5681611f1a565b9050919050565b6000611f68826115ac565b9150611f73836115ac565b925082821015611f8657611f85611806565b5b82820390509291505056fea26469706673582212200a2266510cf7679cc95d48024d4224fc8612ed5c63d940a9e3b3ed43c62bde0e64736f6c634300080f0033

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

00000000000000000000000052f778a1e1c12c5520be9a31511a8a256f0b1065

-----Decoded View---------------
Arg [0] : _minter (address): 0x52F778A1E1c12C5520Be9a31511a8A256F0b1065

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000052f778a1e1c12c5520be9a31511a8a256f0b1065


Deployed Bytecode Sourcemap

34173:875:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6884:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34262:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9235:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8004:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10016:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7846:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10720:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34583:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30856:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8175:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33182:103;;;:::i;:::-;;31266:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32531:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7103:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11463:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8508:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8764:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33440:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34960:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34862:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6884:100;6938:13;6971:5;6964:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6884:100;:::o;34262:21::-;;;;;;;;;;;;;:::o;9235:201::-;9318:4;9335:13;9351:12;:10;:12::i;:::-;9335:28;;9374:32;9383:5;9390:7;9399:6;9374:8;:32::i;:::-;9424:4;9417:11;;;9235:201;;;;:::o;8004:108::-;8065:7;8092:12;;8085:19;;8004:108;:::o;10016:295::-;10147:4;10164:15;10182:12;:10;:12::i;:::-;10164:30;;10205:38;10221:4;10227:7;10236:6;10205:15;:38::i;:::-;10254:27;10264:4;10270:2;10274:6;10254:9;:27::i;:::-;10299:4;10292:11;;;10016:295;;;;;:::o;7846:93::-;7904:5;7929:2;7922:9;;7846:93;:::o;10720:240::-;10808:4;10825:13;10841:12;:10;:12::i;:::-;10825:28;;10864:66;10873:5;10880:7;10919:10;10889:11;:18;10901:5;10889:18;;;;;;;;;;;;;;;:27;10908:7;10889:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;10864:8;:66::i;:::-;10948:4;10941:11;;;10720:240;;;;:::o;34583:114::-;34341:10;34331:20;;:6;;;;;;;;;;;:20;;;34323:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;34663:26:::1;34669:11;34682:6;34663:5;:26::i;:::-;34583:114:::0;;:::o;30856:91::-;30912:27;30918:12;:10;:12::i;:::-;30932:6;30912:5;:27::i;:::-;30856:91;:::o;8175:127::-;8249:7;8276:9;:18;8286:7;8276:18;;;;;;;;;;;;;;;;8269:25;;8175:127;;;:::o;33182:103::-;32762:12;:10;:12::i;:::-;32751:23;;:7;:5;:7::i;:::-;:23;;;32743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33247:30:::1;33274:1;33247:18;:30::i;:::-;33182:103::o:0;31266:164::-;31343:46;31359:7;31368:12;:10;:12::i;:::-;31382:6;31343:15;:46::i;:::-;31400:22;31406:7;31415:6;31400:5;:22::i;:::-;31266:164;;:::o;32531:87::-;32577:7;32604:6;;;;;;;;;;;32597:13;;32531:87;:::o;7103:104::-;7159:13;7192:7;7185:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7103:104;:::o;11463:438::-;11556:4;11573:13;11589:12;:10;:12::i;:::-;11573:28;;11612:24;11639:11;:18;11651:5;11639:18;;;;;;;;;;;;;;;:27;11658:7;11639:27;;;;;;;;;;;;;;;;11612:54;;11705:15;11685:16;:35;;11677:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11798:60;11807:5;11814:7;11842:15;11823:16;:34;11798:8;:60::i;:::-;11889:4;11882:11;;;;11463:438;;;;:::o;8508:193::-;8587:4;8604:13;8620:12;:10;:12::i;:::-;8604:28;;8643;8653:5;8660:2;8664:6;8643:9;:28::i;:::-;8689:4;8682:11;;;8508:193;;;;:::o;8764:151::-;8853:7;8880:11;:18;8892:5;8880:18;;;;;;;;;;;;;;;:27;8899:7;8880:27;;;;;;;;;;;;;;;;8873:34;;8764:151;;;;:::o;33440:201::-;32762:12;:10;:12::i;:::-;32751:23;;:7;:5;:7::i;:::-;:23;;;32743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33549:1:::1;33529:22;;:8;:22;;::::0;33521:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;33605:28;33624:8;33605:18;:28::i;:::-;33440:201:::0;:::o;34960:85::-;35004:7;35031:6;;;;;;;;;;;35024:13;;34960:85;:::o;34862:90::-;32762:12;:10;:12::i;:::-;32751:23;;:7;:5;:7::i;:::-;:23;;;32743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34937:7:::1;34928:6;;:16;;;;;;;;;;;;;;;;;;34862:90:::0;:::o;4492:98::-;4545:7;4572:10;4565:17;;4492:98;:::o;15099:380::-;15252:1;15235:19;;:5;:19;;;15227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15333:1;15314:21;;:7;:21;;;15306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15417:6;15387:11;:18;15399:5;15387:18;;;;;;;;;;;;;;;:27;15406:7;15387:27;;;;;;;;;;;;;;;:36;;;;15455:7;15439:32;;15448:5;15439:32;;;15464:6;15439:32;;;;;;:::i;:::-;;;;;;;;15099:380;;;:::o;15766:453::-;15901:24;15928:25;15938:5;15945:7;15928:9;:25::i;:::-;15901:52;;15988:17;15968:16;:37;15964:248;;16050:6;16030:16;:26;;16022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16134:51;16143:5;16150:7;16178:6;16159:16;:25;16134:8;:51::i;:::-;15964:248;15890:329;15766:453;;;:::o;12380:671::-;12527:1;12511:18;;:4;:18;;;12503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12604:1;12590:16;;:2;:16;;;12582:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12659:38;12680:4;12686:2;12690:6;12659:20;:38::i;:::-;12710:19;12732:9;:15;12742:4;12732:15;;;;;;;;;;;;;;;;12710:37;;12781:6;12766:11;:21;;12758:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12898:6;12884:11;:20;12866:9;:15;12876:4;12866:15;;;;;;;;;;;;;;;:38;;;;12943:6;12926:9;:13;12936:2;12926:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12982:2;12967:26;;12976:4;12967:26;;;12986:6;12967:26;;;;;;:::i;:::-;;;;;;;;13006:37;13026:4;13032:2;13036:6;13006:19;:37::i;:::-;12492:559;12380:671;;;:::o;13338:399::-;13441:1;13422:21;;:7;:21;;;13414:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13492:49;13521:1;13525:7;13534:6;13492:20;:49::i;:::-;13570:6;13554:12;;:22;;;;;;;:::i;:::-;;;;;;;;13609:6;13587:9;:18;13597:7;13587:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13652:7;13631:37;;13648:1;13631:37;;;13661:6;13631:37;;;;;;:::i;:::-;;;;;;;;13681:48;13709:1;13713:7;13722:6;13681:19;:48::i;:::-;13338:399;;:::o;14070:591::-;14173:1;14154:21;;:7;:21;;;14146:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14226:49;14247:7;14264:1;14268:6;14226:20;:49::i;:::-;14288:22;14313:9;:18;14323:7;14313:18;;;;;;;;;;;;;;;;14288:43;;14368:6;14350:14;:24;;14342:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14487:6;14470:14;:23;14449:9;:18;14459:7;14449:18;;;;;;;;;;;;;;;:44;;;;14531:6;14515:12;;:22;;;;;;;:::i;:::-;;;;;;;;14581:1;14555:37;;14564:7;14555:37;;;14585:6;14555:37;;;;;;:::i;:::-;;;;;;;;14605:48;14625:7;14642:1;14646:6;14605:19;:48::i;:::-;14135:526;14070:591;;:::o;33801:191::-;33875:16;33894:6;;;;;;;;;;;33875:25;;33920:8;33911:6;;:17;;;;;;;;;;;;;;;;;;33975:8;33944:40;;33965:8;33944:40;;;;;;;;;;;;33864:128;33801:191;:::o;16819:125::-;;;;:::o;17548:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1397:126::-;1434:7;1474:42;1467:5;1463:54;1452:65;;1397:126;;;:::o;1529:96::-;1566:7;1595:24;1613:5;1595:24;:::i;:::-;1584:35;;1529:96;;;:::o;1631:118::-;1718:24;1736:5;1718:24;:::i;:::-;1713:3;1706:37;1631:118;;:::o;1755:222::-;1848:4;1886:2;1875:9;1871:18;1863:26;;1899:71;1967:1;1956:9;1952:17;1943:6;1899:71;:::i;:::-;1755:222;;;;:::o;2064:117::-;2173:1;2170;2163:12;2310:122;2383:24;2401:5;2383:24;:::i;:::-;2376:5;2373:35;2363:63;;2422:1;2419;2412:12;2363:63;2310:122;:::o;2438:139::-;2484:5;2522:6;2509:20;2500:29;;2538:33;2565:5;2538:33;:::i;:::-;2438:139;;;;:::o;2583:77::-;2620:7;2649:5;2638:16;;2583:77;;;:::o;2666:122::-;2739:24;2757:5;2739:24;:::i;:::-;2732:5;2729:35;2719:63;;2778:1;2775;2768:12;2719:63;2666:122;:::o;2794:139::-;2840:5;2878:6;2865:20;2856:29;;2894:33;2921:5;2894:33;:::i;:::-;2794:139;;;;:::o;2939:474::-;3007:6;3015;3064:2;3052:9;3043:7;3039:23;3035:32;3032:119;;;3070:79;;:::i;:::-;3032:119;3190:1;3215:53;3260:7;3251:6;3240:9;3236:22;3215:53;:::i;:::-;3205:63;;3161:117;3317:2;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3288:118;2939:474;;;;;:::o;3419:90::-;3453:7;3496:5;3489:13;3482:21;3471:32;;3419:90;;;:::o;3515:109::-;3596:21;3611:5;3596:21;:::i;:::-;3591:3;3584:34;3515:109;;:::o;3630:210::-;3717:4;3755:2;3744:9;3740:18;3732:26;;3768:65;3830:1;3819:9;3815:17;3806:6;3768:65;:::i;:::-;3630:210;;;;:::o;3846:118::-;3933:24;3951:5;3933:24;:::i;:::-;3928:3;3921:37;3846:118;;:::o;3970:222::-;4063:4;4101:2;4090:9;4086:18;4078:26;;4114:71;4182:1;4171:9;4167:17;4158:6;4114:71;:::i;:::-;3970:222;;;;:::o;4198:619::-;4275:6;4283;4291;4340:2;4328:9;4319:7;4315:23;4311:32;4308:119;;;4346:79;;:::i;:::-;4308:119;4466:1;4491:53;4536:7;4527:6;4516:9;4512:22;4491:53;:::i;:::-;4481:63;;4437:117;4593:2;4619:53;4664:7;4655:6;4644:9;4640:22;4619:53;:::i;:::-;4609:63;;4564:118;4721:2;4747:53;4792:7;4783:6;4772:9;4768:22;4747:53;:::i;:::-;4737:63;;4692:118;4198:619;;;;;:::o;4823:86::-;4858:7;4898:4;4891:5;4887:16;4876:27;;4823:86;;;:::o;4915:112::-;4998:22;5014:5;4998:22;:::i;:::-;4993:3;4986:35;4915:112;;:::o;5033:214::-;5122:4;5160:2;5149:9;5145:18;5137:26;;5173:67;5237:1;5226:9;5222:17;5213:6;5173:67;:::i;:::-;5033:214;;;;:::o;5253:329::-;5312:6;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5253:329;;;;:::o;5588:::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:160::-;7552:12;7548:1;7540:6;7536:14;7529:36;7412:160;:::o;7578:366::-;7720:3;7741:67;7805:2;7800:3;7741:67;:::i;:::-;7734:74;;7817:93;7906:3;7817:93;:::i;:::-;7935:2;7930:3;7926:12;7919:19;;7578:366;;;:::o;7950:419::-;8116:4;8154:2;8143:9;8139:18;8131:26;;8203:9;8197:4;8193:20;8189:1;8178:9;8174:17;8167:47;8231:131;8357:4;8231:131;:::i;:::-;8223:139;;7950:419;;;:::o;8375:182::-;8515:34;8511:1;8503:6;8499:14;8492:58;8375:182;:::o;8563:366::-;8705:3;8726:67;8790:2;8785:3;8726:67;:::i;:::-;8719:74;;8802:93;8891:3;8802:93;:::i;:::-;8920:2;8915:3;8911:12;8904:19;;8563:366;;;:::o;8935:419::-;9101:4;9139:2;9128:9;9124:18;9116:26;;9188:9;9182:4;9178:20;9174:1;9163:9;9159:17;9152:47;9216:131;9342:4;9216:131;:::i;:::-;9208:139;;8935:419;;;:::o;9360:224::-;9500:34;9496:1;9488:6;9484:14;9477:58;9569:7;9564:2;9556:6;9552:15;9545:32;9360:224;:::o;9590:366::-;9732:3;9753:67;9817:2;9812:3;9753:67;:::i;:::-;9746:74;;9829:93;9918:3;9829:93;:::i;:::-;9947:2;9942:3;9938:12;9931:19;;9590:366;;;:::o;9962:419::-;10128:4;10166:2;10155:9;10151:18;10143:26;;10215:9;10209:4;10205:20;10201:1;10190:9;10186:17;10179:47;10243:131;10369:4;10243:131;:::i;:::-;10235:139;;9962:419;;;:::o;10387:225::-;10527:34;10523:1;10515:6;10511:14;10504:58;10596:8;10591:2;10583:6;10579:15;10572:33;10387:225;:::o;10618:366::-;10760:3;10781:67;10845:2;10840:3;10781:67;:::i;:::-;10774:74;;10857:93;10946:3;10857:93;:::i;:::-;10975:2;10970:3;10966:12;10959:19;;10618:366;;;:::o;10990:419::-;11156:4;11194:2;11183:9;11179:18;11171:26;;11243:9;11237:4;11233:20;11229:1;11218:9;11214:17;11207:47;11271:131;11397:4;11271:131;:::i;:::-;11263:139;;10990:419;;;:::o;11415:223::-;11555:34;11551:1;11543:6;11539:14;11532:58;11624:6;11619:2;11611:6;11607:15;11600:31;11415:223;:::o;11644:366::-;11786:3;11807:67;11871:2;11866:3;11807:67;:::i;:::-;11800:74;;11883:93;11972:3;11883:93;:::i;:::-;12001:2;11996:3;11992:12;11985:19;;11644:366;;;:::o;12016:419::-;12182:4;12220:2;12209:9;12205:18;12197:26;;12269:9;12263:4;12259:20;12255:1;12244:9;12240:17;12233:47;12297:131;12423:4;12297:131;:::i;:::-;12289:139;;12016:419;;;:::o;12441:221::-;12581:34;12577:1;12569:6;12565:14;12558:58;12650:4;12645:2;12637:6;12633:15;12626:29;12441:221;:::o;12668:366::-;12810:3;12831:67;12895:2;12890:3;12831:67;:::i;:::-;12824:74;;12907:93;12996:3;12907:93;:::i;:::-;13025:2;13020:3;13016:12;13009:19;;12668:366;;;:::o;13040:419::-;13206:4;13244:2;13233:9;13229:18;13221:26;;13293:9;13287:4;13283:20;13279:1;13268:9;13264:17;13257:47;13321:131;13447:4;13321:131;:::i;:::-;13313:139;;13040:419;;;:::o;13465:179::-;13605:31;13601:1;13593:6;13589:14;13582:55;13465:179;:::o;13650:366::-;13792:3;13813:67;13877:2;13872:3;13813:67;:::i;:::-;13806:74;;13889:93;13978:3;13889:93;:::i;:::-;14007:2;14002:3;13998:12;13991:19;;13650:366;;;:::o;14022:419::-;14188:4;14226:2;14215:9;14211:18;14203:26;;14275:9;14269:4;14265:20;14261:1;14250:9;14246:17;14239:47;14303:131;14429:4;14303:131;:::i;:::-;14295:139;;14022:419;;;:::o;14447:224::-;14587:34;14583:1;14575:6;14571:14;14564:58;14656:7;14651:2;14643:6;14639:15;14632:32;14447:224;:::o;14677:366::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:419::-;15215:4;15253:2;15242:9;15238:18;15230:26;;15302:9;15296:4;15292:20;15288:1;15277:9;15273:17;15266:47;15330:131;15456:4;15330:131;:::i;:::-;15322:139;;15049:419;;;:::o;15474:222::-;15614:34;15610:1;15602:6;15598:14;15591:58;15683:5;15678:2;15670:6;15666:15;15659:30;15474:222;:::o;15702:366::-;15844:3;15865:67;15929:2;15924:3;15865:67;:::i;:::-;15858:74;;15941:93;16030:3;15941:93;:::i;:::-;16059:2;16054:3;16050:12;16043:19;;15702:366;;;:::o;16074:419::-;16240:4;16278:2;16267:9;16263:18;16255:26;;16327:9;16321:4;16317:20;16313:1;16302:9;16298:17;16291:47;16355:131;16481:4;16355:131;:::i;:::-;16347:139;;16074:419;;;:::o;16499:225::-;16639:34;16635:1;16627:6;16623:14;16616:58;16708:8;16703:2;16695:6;16691:15;16684:33;16499:225;:::o;16730:366::-;16872:3;16893:67;16957:2;16952:3;16893:67;:::i;:::-;16886:74;;16969:93;17058:3;16969:93;:::i;:::-;17087:2;17082:3;17078:12;17071:19;;16730:366;;;:::o;17102:419::-;17268:4;17306:2;17295:9;17291:18;17283:26;;17355:9;17349:4;17345:20;17341:1;17330:9;17326:17;17319:47;17383:131;17509:4;17383:131;:::i;:::-;17375:139;;17102:419;;;:::o;17527:181::-;17667:33;17663:1;17655:6;17651:14;17644:57;17527:181;:::o;17714:366::-;17856:3;17877:67;17941:2;17936:3;17877:67;:::i;:::-;17870:74;;17953:93;18042:3;17953:93;:::i;:::-;18071:2;18066:3;18062:12;18055:19;;17714:366;;;:::o;18086:419::-;18252:4;18290:2;18279:9;18275:18;18267:26;;18339:9;18333:4;18329:20;18325:1;18314:9;18310:17;18303:47;18367:131;18493:4;18367:131;:::i;:::-;18359:139;;18086:419;;;:::o;18511:220::-;18651:34;18647:1;18639:6;18635:14;18628:58;18720:3;18715:2;18707:6;18703:15;18696:28;18511:220;:::o;18737:366::-;18879:3;18900:67;18964:2;18959:3;18900:67;:::i;:::-;18893:74;;18976:93;19065:3;18976:93;:::i;:::-;19094:2;19089:3;19085:12;19078:19;;18737:366;;;:::o;19109:419::-;19275:4;19313:2;19302:9;19298:18;19290:26;;19362:9;19356:4;19352:20;19348:1;19337:9;19333:17;19326:47;19390:131;19516:4;19390:131;:::i;:::-;19382:139;;19109:419;;;:::o;19534:221::-;19674:34;19670:1;19662:6;19658:14;19651:58;19743:4;19738:2;19730:6;19726:15;19719:29;19534:221;:::o;19761:366::-;19903:3;19924:67;19988:2;19983:3;19924:67;:::i;:::-;19917:74;;20000:93;20089:3;20000:93;:::i;:::-;20118:2;20113:3;20109:12;20102:19;;19761:366;;;:::o;20133:419::-;20299:4;20337:2;20326:9;20322:18;20314:26;;20386:9;20380:4;20376:20;20372:1;20361:9;20357:17;20350:47;20414:131;20540:4;20414:131;:::i;:::-;20406:139;;20133:419;;;:::o;20558:191::-;20598:4;20618:20;20636:1;20618:20;:::i;:::-;20613:25;;20652:20;20670:1;20652:20;:::i;:::-;20647:25;;20691:1;20688;20685:8;20682:34;;;20696:18;;:::i;:::-;20682:34;20741:1;20738;20734:9;20726:17;;20558:191;;;;:::o

Swarm Source

ipfs://0a2266510cf7679cc95d48024d4224fc8612ed5c63d940a9e3b3ed43c62bde0e
[ 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.