ETH Price: $3,891.27 (-0.63%)

Token

Blackfisk-NFT-GENESIS (bNFT-GEN)
 

Overview

Max Total Supply

1,000 bNFT-GEN

Holders

61

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 bNFT-GEN
0xEA8EdAbdbA21f16Db0F49EA3183e4c1B173b6fDc
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BlackFiskNFT

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-19
*/

/**
 *
 * Market has owned you?
 * Now you will own the market
 *
 * Loading blackfisk.ai
 *
 *           .ooooooooooooooooooooooooooo+
                .ooooooooooooooooooooooooooo+
                .ooooooooooooooooooooooooooo+
                .ooooooooooooooooooooooooooo+
       :+++++++++oooooooooooooooooooooooooooo+++++++++`
       /oooooooooooooooooooooooooooooooooooooooooooooo`
       /oooooooooooooooooooooooooooooooooooooooooooooo`
       /oooooooooooooooooooooooooooooooooooooooooooooo`
       /oooooooooooooooooooooooooooooooooooooooooooooo.````````
       /oooooooooooooooooooooooooooooooooooooooooooooooooooooo-
       /oooooooooooooooooooooooooooooooooooooooooooooooooooooo-
       /oooooooooooooooooooooooooooooooooooooooooooooooooooooo-
       /oooooooooooooooooooooooooooooooooooooooooooooooooooooo-
       .--------/ooooooooooooooooooooooooooooooooooooooooooooo-
                .ooooooooooooooooooooooooo++++ooooooooo++++ooo-
                .oooooooooooooooooooooooo+---:oooooooo+:--:+oo-
                .oooooooooooooooooooooooo+----oooooooo+---:+oo-
                .oooooooooooooooooooooooo+----oooooooo+---:+oo-
                 `````````````````/oooooo+::::oooooooo+:::/+oo-
                                  :ooooooooooooooooooooooooooo-
                                  :ooooooooooooooooooooooooooo-
                                  :ooooooooooooooooooooooooooo-
        ``````````````````````````/ooooooooooooooooooooooooooo:`````````````````````````````
        /oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo/
        /oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo/
        /oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo/
        /oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo/
        /ooooooooo+::::::::ooooooooooooooooooooooooooo:::::::::/ooooooooo::::::::+ooooooooo/
        /ooooooooo/        +oooooooooooooooooooooooooo`        -oooooooo+        /ooooooooo/
        /ooooooooo/        +oooooooooooooooooooooooooo`        -oooooooo+        /ooooooooo/
        /ooooooooo/        +oooooooooooooooooooooooooo`        -oooooooo+        /ooooooooo/
......../ooooooooo+........ooooooooooooooooooooooooooo`        -ooooooooo........+ooooooooo/........
ooooooooo-```````-ooooooooo.```````/oooooooooooooooooo`        `````````.ooooooooo-```````-ooooooooo
ooooooooo-       .ooooooooo`       :oooooooooooooooooo`                 `ooooooooo.       -ooooooooo
ooooooooo-       .ooooooooo`       :oooooooooooooooooo`                 `ooooooooo.       -ooooooooo
ooooooooo-       .ooooooooo`       :oooooooooooooooooo`                 `ooooooooo.       -ooooooooo
ooooooooo-       .ooooooooo`       :ooooooooo+.......+/////////-        `ooooooooo.       -ooooooooo
ooooooooo-       .ooooooooo`       :ooooooooo+       +ooooooooo:        `ooooooooo.       -ooooooooo
ooooooooo-       .ooooooooo`       :ooooooooo+       +ooooooooo:        `ooooooooo.       -ooooooooo
ooooooooo-       .ooooooooo`       :ooooooooo+       +ooooooooo:        `ooooooooo.       -ooooooooo
ooooooooo-       .ooooooooo`       :ooooooooo+       +ooooooooo:        `ooooooooo.       -ooooooooo

 */

// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this;
        // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = byte(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}


/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {size := extcodesize(account)}
        return size > 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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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.3._
     */
    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.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) {// Equivalent to !contains(map, key)
            map._entries.push(MapEntry({_key : key, _value : value}));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) {// Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1;
            // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        return _get(map, key, "EnumerableMap: nonexistent key");
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage);
        // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value;
        // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint256(value)));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key), errorMessage)));
    }
}

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {// Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1;
            // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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);
}


contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 {}
}


contract BlackFisk is ERC20("BlackFisk", "BLFI"), Ownable {

    using SafeMath for uint256;
    uint256 public total = 140000;

    constructor () public {
        // mint tokens
        _mint(msg.sender, total.mul(10 ** 18));
    }

    function burn(uint256 _amount) public {
        _burn(msg.sender, _amount);
    }
}

/**
 * @title BlackFisk contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract BlackFiskNFT is Context, Ownable, ERC165, IERC721Enumerable, IERC721Metadata {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Public variables
    uint256 public constant MAX_NFT_SUPPLY = 1000;
    uint256 public  NAME_CHANGE_PRICE = 1 * (10 ** 18);

    string public BLFI_PROVENANCE = "Will be released";


    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping(address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from token ID to name
    mapping(uint256 => string) private _tokenName;

    // Mapping if certain name string has already been reserved
    mapping(string => bool) private _nameReserved;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // BlackFisk Token address
    BlackFisk public _blfiAddress;

    // INK token address;
    BlackFisk public _inkAddress;



    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *
     *     => 0x06fdde03 ^ 0x95d89b41 == 0x93254542
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x93254542;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    // Events
    event NameChange (uint256 indexed maskIndex, string newName);

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (
        string memory name,
        string memory symbol,
        BlackFisk blfiAddress,
        BlackFisk inkAddress) {

        _name = name;
        _symbol = symbol;
        _blfiAddress = blfiAddress;
        _inkAddress = inkAddress;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        return _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        (uint256 tokenId,) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev Returns name of the NFT at index.
     */
    function tokenNameByIndex(uint256 index) public view returns (string memory) {
        return _tokenName[index];
    }

    /**
     * @dev Returns if the name has been reserved.
     */
    function isNameReserved(string memory nameString) public view returns (bool) {
        return _nameReserved[toLower(nameString)];
    }


    /**
     * @dev Gets current BlackFisk Price
     */
    function changePriceForChangingName(uint256 _price) public onlyOwner {
        NAME_CHANGE_PRICE = _price;
    }

    function setProvnance(string memory _prov) public onlyOwner {
        BLFI_PROVENANCE = _prov;
    }

    /**
    * @dev Mints BlackFisk
    */
    function mintNFT(uint256 numberOfNfts) public {
        require(totalSupply() < MAX_NFT_SUPPLY, "Reached MAX_NFT_SUPPLY");
        require(numberOfNfts > 0, "numberOfNfts must be bigger equal 1");
        require(numberOfNfts <= 10, "numberOfNfts must be smaller equal 10");
        require(totalSupply().add(numberOfNfts) <= MAX_NFT_SUPPLY, "Exceeds MAX_NFT_SUPPLY");

        _inkAddress.transferFrom(msg.sender, address(this),numberOfNfts.mul(10**18));
        _inkAddress.burn(numberOfNfts.mul(10**18));

        for(uint i = 0; i<numberOfNfts;i++){
            uint mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
    }


    /**
     * @dev Changes the name for BlackFisk tokenId
     */
    function changeName(uint256 tokenId, string memory newName) public {
        address owner = ownerOf(tokenId);

        require(_msgSender() == owner, "ERC721: caller is not the owner");
        require(validateName(newName) == true, "Not a valid new name");
        require(sha256(bytes(newName)) != sha256(bytes(_tokenName[tokenId])), "New name is same as the current one");
        require(isNameReserved(newName) == false, "Name already reserved");

        _blfiAddress.transferFrom(msg.sender, address(this), NAME_CHANGE_PRICE);
        // If already named, dereserve old name
        if (bytes(_tokenName[tokenId]).length > 0) {
            toggleReserveName(_tokenName[tokenId], false);
        }
        toggleReserveName(newName, true);
        _tokenName[tokenId] = newName;
        _blfiAddress.burn(NAME_CHANGE_PRICE);
        emit NameChange(tokenId, newName);
    }


    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _tokenOwners.contains(tokenId);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");

    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }


    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
    private returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
                IERC721Receiver(to).onERC721Received.selector,
                _msgSender(),
                from,
                tokenId,
                _data
            ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

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

    /**
     * @dev Reserves the name if isReserve is set to true, de-reserves if set to false
     */
    function toggleReserveName(string memory str, bool isReserve) internal {
        _nameReserved[toLower(str)] = isReserve;
    }

    /**
     * @dev Check if the name string is valid (Alphanumeric and spaces without leading or trailing space)
     */
    function validateName(string memory str) public pure returns (bool){
        bytes memory b = bytes(str);
        if (b.length < 1) return false;
        if (b.length > 25) return false;
        // Cannot be longer than 25 characters
        if (b[0] == 0x20) return false;
        // Leading space
        if (b[b.length - 1] == 0x20) return false;
        // Trailing space

        bytes1 lastChar = b[0];

        for (uint i; i < b.length; i++) {
            bytes1 char = b[i];

            if (char == 0x20 && lastChar == 0x20) return false;
            // Cannot contain continous spaces

            if (
                !(char >= 0x30 && char <= 0x39) && //9-0
            !(char >= 0x41 && char <= 0x5A) && //A-Z
            !(char >= 0x61 && char <= 0x7A) && //a-z
            !(char == 0x20) //space
            )
                return false;

            lastChar = char;
        }

        return true;
    }

    /**
     * @dev Converts the string to lowercase
     */
    function toLower(string memory str) public pure returns (string memory){
        bytes memory bStr = bytes(str);
        bytes memory bLower = new bytes(bStr.length);
        for (uint i = 0; i < bStr.length; i++) {
            // Uppercase character
            if ((uint8(bStr[i]) >= 65) && (uint8(bStr[i]) <= 90)) {
                bLower[i] = bytes1(uint8(bStr[i]) + 32);
            } else {
                bLower[i] = bStr[i];
            }
        }
        return string(bLower);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"contract BlackFisk","name":"blfiAddress","type":"address"},{"internalType":"contract BlackFisk","name":"inkAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"maskIndex","type":"uint256"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"NameChange","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BLFI_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NAME_CHANGE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_blfiAddress","outputs":[{"internalType":"contract BlackFisk","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_inkAddress","outputs":[{"internalType":"contract BlackFisk","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"changeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePriceForChangingName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"nameString","type":"string"}],"name":"isNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_prov","type":"string"}],"name":"setProvnance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"toLower","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenNameByIndex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"validateName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"}]

6080604052670de0b6b3a76400006002556040518060400160405280601081526020017f57696c6c2062652072656c656173656400000000000000000000000000000000815250600390805190602001906200005d92919062000505565b503480156200006b57600080fd5b5060405162004a9c38038062004a9c833981810160405260808110156200009157600080fd5b8101908080516040519392919084640100000000821115620000b257600080fd5b83820191506020820185811115620000c957600080fd5b8251866001820283011164010000000082111715620000e757600080fd5b8083526020830192505050908051906020019080838360005b838110156200011d57808201518184015260208101905062000100565b50505050905090810190601f1680156200014b5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200016f57600080fd5b838201915060208201858111156200018657600080fd5b8251866001820283011164010000000082111715620001a457600080fd5b8083526020830192505050908051906020019080838360005b83811015620001da578082015181840152602081019050620001bd565b50505050905090810190601f168015620002085780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080519060200190929190505050600062000238620003f460201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002ee6301ffc9a760e01b620003fc60201b60201c565b83600b90805190602001906200030692919062000505565b5082600c90805190602001906200031f92919062000505565b5081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ba6380ac58cd60e01b620003fc60201b60201c565b620003d2639325454260e01b620003fc60201b60201c565b620003ea63780e9d6360e01b620003fc60201b60201c565b50505050620005bb565b600033905090565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200053d576000855562000589565b82601f106200055857805160ff191683800117855562000589565b8280016001018555821562000589579182015b82811115620005885782518255916020019190600101906200056b565b5b5090506200059891906200059c565b5090565b5b80821115620005b75760008160009055506001016200059d565b5090565b6144d180620005cb6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063b2d8ef39116100a2578063c39cbef111610071578063c39cbef114610d67578063e048507a14610e2c578063e985e9c514610e5a578063f2fde38b14610ed4576101e5565b8063b2d8ef3914610bdc578063b5077f4414610c10578063b7b6b74f14610c2e578063b88d4fde14610c62576101e5565b80639416b423116100de5780639416b4231461090457806395d89b4114610a385780639ffdb65a14610abb578063a22cb46514610b8c576101e5565b806370a0823114610840578063715018a6146108985780638da5cb5b146108a257806392642744146108d6576101e5565b806318160ddd116101875780634f6ccce7116101565780634f6ccce7146106e157806354b6f161146107235780636352211e146107415780636d52241814610799576101e5565b806318160ddd1461058557806323b872dd146105a35780632f745c591461061157806342842e0e14610673576101e5565b8063081812fc116101c3578063081812fc14610353578063095ea7b3146103ab578063141806a5146103f957806315b56d10146104b4576101e5565b8063018e38b7146101ea57806301ffc9a71461026d57806306fdde03146102d0575b600080fd5b6101f2610f18565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610232578082015181840152602081019050610217565b50505050905090810190601f16801561025f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102b86004803603602081101561028357600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610fb6565b60405180821515815260200191505060405180910390f35b6102d861101e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103185780820151818401526020810190506102fd565b50505050905090810190601f1680156103455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61037f6004803603602081101561036957600080fd5b81019080803590602001909291905050506110c0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103f7600480360360408110156103c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061115b565b005b6104b26004803603602081101561040f57600080fd5b810190808035906020019064010000000081111561042c57600080fd5b82018360208201111561043e57600080fd5b8035906020019184600183028401116401000000008311171561046057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061129f565b005b61056d600480360360208110156104ca57600080fd5b81019080803590602001906401000000008111156104e757600080fd5b8201836020820111156104f957600080fd5b8035906020019184600183028401116401000000008311171561051b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611381565b60405180821515815260200191505060405180910390f35b61058d611409565b6040518082815260200191505060405180910390f35b61060f600480360360608110156105b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061141a565b005b61065d6004803603604081101561062757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611490565b6040518082815260200191505060405180910390f35b6106df6004803603606081101561068957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114eb565b005b61070d600480360360208110156106f757600080fd5b810190808035906020019092919050505061150b565b6040518082815260200191505060405180910390f35b61072b61152e565b6040518082815260200191505060405180910390f35b61076d6004803603602081101561075757600080fd5b8101908080359060200190929190505050611534565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107c5600480360360208110156107af57600080fd5b810190808035906020019092919050505061156b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108055780820151818401526020810190506107ea565b50505050905090810190601f1680156108325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108826004803603602081101561085657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611620565b6040518082815260200191505060405180910390f35b6108a06116f5565b005b6108aa61187b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610902600480360360208110156108ec57600080fd5b81019080803590602001909291905050506118a4565b005b6109bd6004803603602081101561091a57600080fd5b810190808035906020019064010000000081111561093757600080fd5b82018360208201111561094957600080fd5b8035906020019184600183028401116401000000008311171561096b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611c47565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109fd5780820151818401526020810190506109e2565b50505050905090810190601f168015610a2a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a40611dc4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a80578082015181840152602081019050610a65565b50505050905090810190601f168015610aad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b7460048036036020811015610ad157600080fd5b8101908080359060200190640100000000811115610aee57600080fd5b820183602082011115610b0057600080fd5b80359060200191846001830284011164010000000083111715610b2257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e66565b60405180821515815260200191505060405180910390f35b610bda60048036036040811015610ba257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061216d565b005b610be4612323565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c18612349565b6040518082815260200191505060405180910390f35b610c3661234f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610d6560048036036080811015610c7857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610cdf57600080fd5b820183602082011115610cf157600080fd5b80359060200191846001830284011164010000000083111715610d1357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612375565b005b610e2a60048036036040811015610d7d57600080fd5b810190808035906020019092919080359060200190640100000000811115610da457600080fd5b820183602082011115610db657600080fd5b80359060200191846001830284011164010000000083111715610dd857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506123ed565b005b610e5860048036036020811015610e4257600080fd5b8101908080359060200190929190505050612a8d565b005b610ebc60048036036040811015610e7057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b5f565b60405180821515815260200191505060405180910390f35b610f1660048036036020811015610eea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bf3565b005b60038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fae5780601f10610f8357610100808354040283529160200191610fae565b820191906000526020600020905b815481529060010190602001808311610f9157829003601f168201915b505050505081565b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110b65780601f1061108b576101008083540402835291602001916110b6565b820191906000526020600020905b81548152906001019060200180831161109957829003601f168201915b5050505050905090565b60006110cb82612dfe565b611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806143d2602c913960400191505060405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061116682611534565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061444a6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661120c612e1b565b73ffffffffffffffffffffffffffffffffffffffff16148061123b575061123a81611235612e1b565b612b5f565b5b611290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806142e16038913960400191505060405180910390fd5b61129a8383612e23565b505050565b6112a7612e1b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806003908051906020019061137d929190614120565b5050565b6000600961138e83611c47565b6040518082805190602001908083835b602083106113c1578051825260208201915060208101905060208303925061139e565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060009054906101000a900460ff169050919050565b60006114156005612edc565b905090565b61142b611425612e1b565b82612ef1565b611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061446b6031913960400191505060405180910390fd5b61148b838383612fe5565b505050565b60006114e382600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061322890919063ffffffff16565b905092915050565b61150683838360405180602001604052806000815250612375565b505050565b60008061152283600561324290919063ffffffff16565b50905080915050919050565b60025481565b60006115648260405180606001604052806029815260200161434360299139600561326e9092919063ffffffff16565b9050919050565b6060600860008381526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116145780601f106115e957610100808354040283529160200191611614565b820191906000526020600020905b8154815290600101906020018083116115f757829003601f168201915b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614319602a913960400191505060405180910390fd5b6116ee600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061328d565b9050919050565b6116fd612e1b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6103e86118af611409565b10611922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f52656163686564204d41585f4e46545f535550504c590000000000000000000081525060200191505060405180910390fd5b6000811161197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061436c6023913960400191505060405180910390fd5b600a8111156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806142bc6025913960400191505060405180910390fd5b6103e86119f2826119e4611409565b6132a290919063ffffffff16565b1115611a66576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f45786365656473204d41585f4e46545f535550504c590000000000000000000081525060200191505060405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330611ac1670de0b6b3a76400008661332a90919063ffffffff16565b6040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015611b3157600080fd5b505af1158015611b45573d6000803e3d6000fd5b505050506040513d6020811015611b5b57600080fd5b810190808051906020019092919050505050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68611bc6670de0b6b3a76400008461332a90919063ffffffff16565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611bfc57600080fd5b505af1158015611c10573d6000803e3d6000fd5b5050505060005b81811015611c43576000611c29611409565b9050611c3533826133b0565b508080600101915050611c17565b5050565b606060008290506000815167ffffffffffffffff81118015611c6857600080fd5b506040519080825280601f01601f191660200182016040528015611c9b5781602001600182028036833780820191505090505b50905060005b8251811015611db9576041838281518110611cb857fe5b602001015160f81c60f81b60f81c60ff1610158015611cf45750605a838281518110611ce057fe5b602001015160f81c60f81b60f81c60ff1611155b15611d59576020838281518110611d0757fe5b602001015160f81c60f81b60f81c0160f81b828281518110611d2557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611dac565b828181518110611d6557fe5b602001015160f81c60f81b828281518110611d7c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b8080600101915050611ca1565b508092505050919050565b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e5c5780601f10611e3157610100808354040283529160200191611e5c565b820191906000526020600020905b815481529060010190602001808311611e3f57829003601f168201915b5050505050905090565b600080829050600181511015611e80576000915050612168565b601981511115611e94576000915050612168565b602060f81b81600081518110611ea657fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611ee3576000915050612168565b602060f81b81600183510381518110611ef857fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611f35576000915050612168565b600081600081518110611f4457fe5b602001015160f81c60f81b905060005b8251811015612160576000838281518110611f6b57fe5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148015611fd25750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15611fe4576000945050505050612168565b603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156120405750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b1580156120a65750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156120a45750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b801561210b5750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156121095750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b801561213d5750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561214f576000945050505050612168565b809250508080600101915050611f54565b506001925050505b919050565b612175612e1b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612216576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600a6000612223612e1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122d0612e1b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6103e881565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612386612380612e1b565b83612ef1565b6123db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061446b6031913960400191505060405180910390fd5b6123e7848484846133ce565b50505050565b60006123f883611534565b90508073ffffffffffffffffffffffffffffffffffffffff16612419612e1b565b73ffffffffffffffffffffffffffffffffffffffff16146124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4552433732313a2063616c6c6572206973206e6f7420746865206f776e65720081525060200191505060405180910390fd5b600115156124af83611e66565b151514612524576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f7420612076616c6964206e6577206e616d6500000000000000000000000081525060200191505060405180910390fd5b60026008600085815260200190815260200160002060405180828054600181600116156101000203166002900480156125945780601f10612572576101008083540402835291820191612594565b820191906000526020600020905b815481529060010190602001808311612580575b5050915050602060405180830381855afa1580156125b6573d6000803e3d6000fd5b5050506040513d60208110156125cb57600080fd5b81019080805190602001909291905050506002836040518082805190602001908083835b6020831061261257805182526020820191506020810190506020830392506125ef565b6001836020036101000a038019825116818451168082178552505050505050905001915050602060405180830381855afa158015612654573d6000803e3d6000fd5b5050506040513d602081101561266957600080fd5b810190808051906020019092919050505014156126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806144276023913960400191505060405180910390fd5b600015156126de83611381565b151514612753576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e616d6520616c7265616479207265736572766564000000000000000000000081525060200191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33306002546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561280657600080fd5b505af115801561281a573d6000803e3d6000fd5b505050506040513d602081101561283057600080fd5b810190808051906020019092919050505050600060086000858152602001908152602001600020805460018160011615610100020316600290049050111561292957612928600860008581526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561291c5780601f106128f15761010080835404028352916020019161291c565b820191906000526020600020905b8154815290600101906020018083116128ff57829003601f168201915b50505050506000613440565b5b612934826001613440565b8160086000858152602001908152602001600020908051906020019061295b929190614120565b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c686002546040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156129d357600080fd5b505af11580156129e7573d6000803e3d6000fd5b50505050827f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b836040518080602001828103825283818151815260200191508051906020019080838360005b83811015612a4e578082015181840152602081019050612a33565b50505050905090810190601f168015612a7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b612a95612e1b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060028190555050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bfb612e1b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cbb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d41576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142206026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612e148260056134cd90919063ffffffff16565b9050919050565b600033905090565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e9683611534565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612eea826000016134e7565b9050919050565b6000612efc82612dfe565b612f51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614290602c913960400191505060405180910390fd5b6000612f5c83611534565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fcb57508373ffffffffffffffffffffffffffffffffffffffff16612fb3846110c0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fdc5750612fdb8185612b5f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661300582611534565b73ffffffffffffffffffffffffffffffffffffffff1614613071576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806143fe6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806142466024913960400191505060405180910390fd5b6131028383836134f8565b61310d600082612e23565b61315e81600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206134fd90919063ffffffff16565b506131b081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061351790919063ffffffff16565b506131c7818360056135319092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006132378360000183613566565b60001c905092915050565b60008060008061325586600001866135e9565b915091508160001c8160001c9350935050509250929050565b6000613281846000018460001b84613682565b60001c90509392505050565b600061329b82600001613778565b9050919050565b600080828401905083811015613320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561333d57600090506133aa565b600082840290508284828161334e57fe5b04146133a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143b16021913960400191505060405180910390fd5b809150505b92915050565b6133ca828260405180602001604052806000815250613789565b5050565b6133d9848484612fe5565b6133e5848484846137fa565b61343a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806141ee6032913960400191505060405180910390fd5b50505050565b80600961344c84611c47565b6040518082805190602001908083835b6020831061347f578051825260208201915060208101905060208303925061345c565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060006101000a81548160ff0219169083151502179055505050565b60006134df836000018360001b613a13565b905092915050565b600081600001805490509050919050565b505050565b600061350f836000018360001b613a36565b905092915050565b6000613529836000018360001b613b1e565b905092915050565b600061355d846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613b8e565b90509392505050565b6000818360000180549050116135c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806141cc6022913960400191505060405180910390fd5b8260000182815481106135d657fe5b9060005260206000200154905092915050565b6000808284600001805490501161364b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061438f6022913960400191505060405180910390fd5b600084600001848154811061365c57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561370e5780820151818401526020810190506136f3565b50505050905090810190601f16801561373b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061375c57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6137938383613c6a565b6137a060008484846137fa565b6137f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806141ee6032913960400191505060405180910390fd5b505050565b600061381b8473ffffffffffffffffffffffffffffffffffffffff16613e5e565b6138285760019050613a0b565b600061399263150b7a0260e01b61383d612e1b565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156138c15780820151818401526020810190506138a6565b50505050905090810190601f1680156138ee5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016141ee603291398773ffffffffffffffffffffffffffffffffffffffff16613e719092919063ffffffff16565b905060008180602001905160208110156139ab57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114613b125760006001820390506000600186600001805490500390506000866000018281548110613a8157fe5b9060005260206000200154905080876000018481548110613a9e57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480613ad657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613b18565b60009150505b92915050565b6000613b2a8383613e89565b613b83578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613b88565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613c3557846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613c63565b82856000016001830381548110613c4857fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613d1681612dfe565b15613d89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613d95600083836134f8565b613de681600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061351790919063ffffffff16565b50613dfd818360056135319092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060613e808484600085613eac565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613f07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061426a6026913960400191505060405180910390fd5b613f1085613e5e565b613f82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613fd15780518252602082019150602081019050602083039250613fae565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614033576040519150601f19603f3d011682016040523d82523d6000602084013e614038565b606091505b5091509150614048828286614054565b92505050949350505050565b6060831561406457829050614119565b6000835111156140775782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156140de5780820151818401526020810190506140c3565b50505050905090810190601f16801561410b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282614156576000855561419d565b82601f1061416f57805160ff191683800117855561419d565b8280016001018555821561419d579182015b8281111561419c578251825591602001919060010190614181565b5b5090506141aa91906141ae565b5090565b5b808211156141c75760008160009055506001016141af565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e6e756d6265724f664e667473206d75737420626520736d616c6c657220657175616c2031304552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e6e756d6265724f664e667473206d7573742062652062696767657220657175616c2031456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4e6577206e616d652069732073616d65206173207468652063757272656e74206f6e654552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220e044103e29821008ba9b88c6f9f5c0338026340688c92e15f21cea68638b527b64736f6c63430007060033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000417ffdbc285dd2c4dc00937798ab901634137caa000000000000000000000000e971653c68c58cbbd2fabddce439312daa074aa80000000000000000000000000000000000000000000000000000000000000015426c61636b6669736b2d4e46542d47454e4553495300000000000000000000000000000000000000000000000000000000000000000000000000000000000008624e46542d47454e000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063b2d8ef39116100a2578063c39cbef111610071578063c39cbef114610d67578063e048507a14610e2c578063e985e9c514610e5a578063f2fde38b14610ed4576101e5565b8063b2d8ef3914610bdc578063b5077f4414610c10578063b7b6b74f14610c2e578063b88d4fde14610c62576101e5565b80639416b423116100de5780639416b4231461090457806395d89b4114610a385780639ffdb65a14610abb578063a22cb46514610b8c576101e5565b806370a0823114610840578063715018a6146108985780638da5cb5b146108a257806392642744146108d6576101e5565b806318160ddd116101875780634f6ccce7116101565780634f6ccce7146106e157806354b6f161146107235780636352211e146107415780636d52241814610799576101e5565b806318160ddd1461058557806323b872dd146105a35780632f745c591461061157806342842e0e14610673576101e5565b8063081812fc116101c3578063081812fc14610353578063095ea7b3146103ab578063141806a5146103f957806315b56d10146104b4576101e5565b8063018e38b7146101ea57806301ffc9a71461026d57806306fdde03146102d0575b600080fd5b6101f2610f18565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610232578082015181840152602081019050610217565b50505050905090810190601f16801561025f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102b86004803603602081101561028357600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610fb6565b60405180821515815260200191505060405180910390f35b6102d861101e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103185780820151818401526020810190506102fd565b50505050905090810190601f1680156103455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61037f6004803603602081101561036957600080fd5b81019080803590602001909291905050506110c0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103f7600480360360408110156103c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061115b565b005b6104b26004803603602081101561040f57600080fd5b810190808035906020019064010000000081111561042c57600080fd5b82018360208201111561043e57600080fd5b8035906020019184600183028401116401000000008311171561046057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061129f565b005b61056d600480360360208110156104ca57600080fd5b81019080803590602001906401000000008111156104e757600080fd5b8201836020820111156104f957600080fd5b8035906020019184600183028401116401000000008311171561051b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611381565b60405180821515815260200191505060405180910390f35b61058d611409565b6040518082815260200191505060405180910390f35b61060f600480360360608110156105b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061141a565b005b61065d6004803603604081101561062757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611490565b6040518082815260200191505060405180910390f35b6106df6004803603606081101561068957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114eb565b005b61070d600480360360208110156106f757600080fd5b810190808035906020019092919050505061150b565b6040518082815260200191505060405180910390f35b61072b61152e565b6040518082815260200191505060405180910390f35b61076d6004803603602081101561075757600080fd5b8101908080359060200190929190505050611534565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107c5600480360360208110156107af57600080fd5b810190808035906020019092919050505061156b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108055780820151818401526020810190506107ea565b50505050905090810190601f1680156108325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108826004803603602081101561085657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611620565b6040518082815260200191505060405180910390f35b6108a06116f5565b005b6108aa61187b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610902600480360360208110156108ec57600080fd5b81019080803590602001909291905050506118a4565b005b6109bd6004803603602081101561091a57600080fd5b810190808035906020019064010000000081111561093757600080fd5b82018360208201111561094957600080fd5b8035906020019184600183028401116401000000008311171561096b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611c47565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109fd5780820151818401526020810190506109e2565b50505050905090810190601f168015610a2a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a40611dc4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a80578082015181840152602081019050610a65565b50505050905090810190601f168015610aad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b7460048036036020811015610ad157600080fd5b8101908080359060200190640100000000811115610aee57600080fd5b820183602082011115610b0057600080fd5b80359060200191846001830284011164010000000083111715610b2257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e66565b60405180821515815260200191505060405180910390f35b610bda60048036036040811015610ba257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061216d565b005b610be4612323565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c18612349565b6040518082815260200191505060405180910390f35b610c3661234f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610d6560048036036080811015610c7857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610cdf57600080fd5b820183602082011115610cf157600080fd5b80359060200191846001830284011164010000000083111715610d1357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612375565b005b610e2a60048036036040811015610d7d57600080fd5b810190808035906020019092919080359060200190640100000000811115610da457600080fd5b820183602082011115610db657600080fd5b80359060200191846001830284011164010000000083111715610dd857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506123ed565b005b610e5860048036036020811015610e4257600080fd5b8101908080359060200190929190505050612a8d565b005b610ebc60048036036040811015610e7057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b5f565b60405180821515815260200191505060405180910390f35b610f1660048036036020811015610eea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bf3565b005b60038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fae5780601f10610f8357610100808354040283529160200191610fae565b820191906000526020600020905b815481529060010190602001808311610f9157829003601f168201915b505050505081565b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110b65780601f1061108b576101008083540402835291602001916110b6565b820191906000526020600020905b81548152906001019060200180831161109957829003601f168201915b5050505050905090565b60006110cb82612dfe565b611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806143d2602c913960400191505060405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061116682611534565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061444a6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661120c612e1b565b73ffffffffffffffffffffffffffffffffffffffff16148061123b575061123a81611235612e1b565b612b5f565b5b611290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806142e16038913960400191505060405180910390fd5b61129a8383612e23565b505050565b6112a7612e1b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806003908051906020019061137d929190614120565b5050565b6000600961138e83611c47565b6040518082805190602001908083835b602083106113c1578051825260208201915060208101905060208303925061139e565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060009054906101000a900460ff169050919050565b60006114156005612edc565b905090565b61142b611425612e1b565b82612ef1565b611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061446b6031913960400191505060405180910390fd5b61148b838383612fe5565b505050565b60006114e382600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061322890919063ffffffff16565b905092915050565b61150683838360405180602001604052806000815250612375565b505050565b60008061152283600561324290919063ffffffff16565b50905080915050919050565b60025481565b60006115648260405180606001604052806029815260200161434360299139600561326e9092919063ffffffff16565b9050919050565b6060600860008381526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116145780601f106115e957610100808354040283529160200191611614565b820191906000526020600020905b8154815290600101906020018083116115f757829003601f168201915b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614319602a913960400191505060405180910390fd5b6116ee600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061328d565b9050919050565b6116fd612e1b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6103e86118af611409565b10611922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f52656163686564204d41585f4e46545f535550504c590000000000000000000081525060200191505060405180910390fd5b6000811161197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061436c6023913960400191505060405180910390fd5b600a8111156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806142bc6025913960400191505060405180910390fd5b6103e86119f2826119e4611409565b6132a290919063ffffffff16565b1115611a66576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f45786365656473204d41585f4e46545f535550504c590000000000000000000081525060200191505060405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330611ac1670de0b6b3a76400008661332a90919063ffffffff16565b6040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015611b3157600080fd5b505af1158015611b45573d6000803e3d6000fd5b505050506040513d6020811015611b5b57600080fd5b810190808051906020019092919050505050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68611bc6670de0b6b3a76400008461332a90919063ffffffff16565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611bfc57600080fd5b505af1158015611c10573d6000803e3d6000fd5b5050505060005b81811015611c43576000611c29611409565b9050611c3533826133b0565b508080600101915050611c17565b5050565b606060008290506000815167ffffffffffffffff81118015611c6857600080fd5b506040519080825280601f01601f191660200182016040528015611c9b5781602001600182028036833780820191505090505b50905060005b8251811015611db9576041838281518110611cb857fe5b602001015160f81c60f81b60f81c60ff1610158015611cf45750605a838281518110611ce057fe5b602001015160f81c60f81b60f81c60ff1611155b15611d59576020838281518110611d0757fe5b602001015160f81c60f81b60f81c0160f81b828281518110611d2557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611dac565b828181518110611d6557fe5b602001015160f81c60f81b828281518110611d7c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b8080600101915050611ca1565b508092505050919050565b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e5c5780601f10611e3157610100808354040283529160200191611e5c565b820191906000526020600020905b815481529060010190602001808311611e3f57829003601f168201915b5050505050905090565b600080829050600181511015611e80576000915050612168565b601981511115611e94576000915050612168565b602060f81b81600081518110611ea657fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611ee3576000915050612168565b602060f81b81600183510381518110611ef857fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611f35576000915050612168565b600081600081518110611f4457fe5b602001015160f81c60f81b905060005b8251811015612160576000838281518110611f6b57fe5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148015611fd25750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15611fe4576000945050505050612168565b603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156120405750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b1580156120a65750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156120a45750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b801561210b5750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156121095750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b801561213d5750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561214f576000945050505050612168565b809250508080600101915050611f54565b506001925050505b919050565b612175612e1b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612216576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600a6000612223612e1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122d0612e1b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6103e881565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612386612380612e1b565b83612ef1565b6123db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061446b6031913960400191505060405180910390fd5b6123e7848484846133ce565b50505050565b60006123f883611534565b90508073ffffffffffffffffffffffffffffffffffffffff16612419612e1b565b73ffffffffffffffffffffffffffffffffffffffff16146124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4552433732313a2063616c6c6572206973206e6f7420746865206f776e65720081525060200191505060405180910390fd5b600115156124af83611e66565b151514612524576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f7420612076616c6964206e6577206e616d6500000000000000000000000081525060200191505060405180910390fd5b60026008600085815260200190815260200160002060405180828054600181600116156101000203166002900480156125945780601f10612572576101008083540402835291820191612594565b820191906000526020600020905b815481529060010190602001808311612580575b5050915050602060405180830381855afa1580156125b6573d6000803e3d6000fd5b5050506040513d60208110156125cb57600080fd5b81019080805190602001909291905050506002836040518082805190602001908083835b6020831061261257805182526020820191506020810190506020830392506125ef565b6001836020036101000a038019825116818451168082178552505050505050905001915050602060405180830381855afa158015612654573d6000803e3d6000fd5b5050506040513d602081101561266957600080fd5b810190808051906020019092919050505014156126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806144276023913960400191505060405180910390fd5b600015156126de83611381565b151514612753576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e616d6520616c7265616479207265736572766564000000000000000000000081525060200191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33306002546040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561280657600080fd5b505af115801561281a573d6000803e3d6000fd5b505050506040513d602081101561283057600080fd5b810190808051906020019092919050505050600060086000858152602001908152602001600020805460018160011615610100020316600290049050111561292957612928600860008581526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561291c5780601f106128f15761010080835404028352916020019161291c565b820191906000526020600020905b8154815290600101906020018083116128ff57829003601f168201915b50505050506000613440565b5b612934826001613440565b8160086000858152602001908152602001600020908051906020019061295b929190614120565b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c686002546040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156129d357600080fd5b505af11580156129e7573d6000803e3d6000fd5b50505050827f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b836040518080602001828103825283818151815260200191508051906020019080838360005b83811015612a4e578082015181840152602081019050612a33565b50505050905090810190601f168015612a7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b612a95612e1b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060028190555050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bfb612e1b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cbb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d41576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806142206026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612e148260056134cd90919063ffffffff16565b9050919050565b600033905090565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e9683611534565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612eea826000016134e7565b9050919050565b6000612efc82612dfe565b612f51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614290602c913960400191505060405180910390fd5b6000612f5c83611534565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fcb57508373ffffffffffffffffffffffffffffffffffffffff16612fb3846110c0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fdc5750612fdb8185612b5f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661300582611534565b73ffffffffffffffffffffffffffffffffffffffff1614613071576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806143fe6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806142466024913960400191505060405180910390fd5b6131028383836134f8565b61310d600082612e23565b61315e81600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206134fd90919063ffffffff16565b506131b081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061351790919063ffffffff16565b506131c7818360056135319092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006132378360000183613566565b60001c905092915050565b60008060008061325586600001866135e9565b915091508160001c8160001c9350935050509250929050565b6000613281846000018460001b84613682565b60001c90509392505050565b600061329b82600001613778565b9050919050565b600080828401905083811015613320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561333d57600090506133aa565b600082840290508284828161334e57fe5b04146133a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143b16021913960400191505060405180910390fd5b809150505b92915050565b6133ca828260405180602001604052806000815250613789565b5050565b6133d9848484612fe5565b6133e5848484846137fa565b61343a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806141ee6032913960400191505060405180910390fd5b50505050565b80600961344c84611c47565b6040518082805190602001908083835b6020831061347f578051825260208201915060208101905060208303925061345c565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060006101000a81548160ff0219169083151502179055505050565b60006134df836000018360001b613a13565b905092915050565b600081600001805490509050919050565b505050565b600061350f836000018360001b613a36565b905092915050565b6000613529836000018360001b613b1e565b905092915050565b600061355d846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613b8e565b90509392505050565b6000818360000180549050116135c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806141cc6022913960400191505060405180910390fd5b8260000182815481106135d657fe5b9060005260206000200154905092915050565b6000808284600001805490501161364b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061438f6022913960400191505060405180910390fd5b600084600001848154811061365c57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561370e5780820151818401526020810190506136f3565b50505050905090810190601f16801561373b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061375c57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6137938383613c6a565b6137a060008484846137fa565b6137f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806141ee6032913960400191505060405180910390fd5b505050565b600061381b8473ffffffffffffffffffffffffffffffffffffffff16613e5e565b6138285760019050613a0b565b600061399263150b7a0260e01b61383d612e1b565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156138c15780820151818401526020810190506138a6565b50505050905090810190601f1680156138ee5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016141ee603291398773ffffffffffffffffffffffffffffffffffffffff16613e719092919063ffffffff16565b905060008180602001905160208110156139ab57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114613b125760006001820390506000600186600001805490500390506000866000018281548110613a8157fe5b9060005260206000200154905080876000018481548110613a9e57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480613ad657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613b18565b60009150505b92915050565b6000613b2a8383613e89565b613b83578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613b88565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613c3557846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613c63565b82856000016001830381548110613c4857fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613d1681612dfe565b15613d89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613d95600083836134f8565b613de681600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061351790919063ffffffff16565b50613dfd818360056135319092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060613e808484600085613eac565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613f07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061426a6026913960400191505060405180910390fd5b613f1085613e5e565b613f82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613fd15780518252602082019150602081019050602083039250613fae565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614033576040519150601f19603f3d011682016040523d82523d6000602084013e614038565b606091505b5091509150614048828286614054565b92505050949350505050565b6060831561406457829050614119565b6000835111156140775782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156140de5780820151818401526020810190506140c3565b50505050905090810190601f16801561410b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282614156576000855561419d565b82601f1061416f57805160ff191683800117855561419d565b8280016001018555821561419d579182015b8281111561419c578251825591602001919060010190614181565b5b5090506141aa91906141ae565b5090565b5b808211156141c75760008160009055506001016141af565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e6e756d6265724f664e667473206d75737420626520736d616c6c657220657175616c2031304552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e6e756d6265724f664e667473206d7573742062652062696767657220657175616c2031456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4e6577206e616d652069732073616d65206173207468652063757272656e74206f6e654552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220e044103e29821008ba9b88c6f9f5c0338026340688c92e15f21cea68638b527b64736f6c63430007060033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000417ffdbc285dd2c4dc00937798ab901634137caa000000000000000000000000e971653c68c58cbbd2fabddce439312daa074aa80000000000000000000000000000000000000000000000000000000000000015426c61636b6669736b2d4e46542d47454e4553495300000000000000000000000000000000000000000000000000000000000000000000000000000000000008624e46542d47454e000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Blackfisk-NFT-GENESIS
Arg [1] : symbol (string): bNFT-GEN
Arg [2] : blfiAddress (address): 0x417fFdBc285dd2C4dC00937798ab901634137caA
Arg [3] : inkAddress (address): 0xe971653c68c58CbBD2FAbddCE439312DAA074Aa8

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000417ffdbc285dd2c4dc00937798ab901634137caa
Arg [3] : 000000000000000000000000e971653c68c58cbbd2fabddce439312daa074aa8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [5] : 426c61636b6669736b2d4e46542d47454e455349530000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 624e46542d47454e000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

58602:19528:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59043:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20042:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;63189:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67127:213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;66671:390;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64803:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64474:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;63760:203;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68001:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;63530:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68377:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64040:163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;58984:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62953:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;64276:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62676:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43972:148;;;:::i;:::-;;43330:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;64958:672;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;77621:506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63350:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76595:954;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;67412:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;60255:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;58932:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60190:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;68599:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65710:897;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64681:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67778:156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44275:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59043:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20042:142::-;20119:4;20143:20;:33;20164:11;20143:33;;;;;;;;;;;;;;;;;;;;;;;;;;;20136:40;;20042:142;;;:::o;63189:92::-;63235:13;63268:5;63261:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63189:92;:::o;67127:213::-;67195:7;67223:16;67231:7;67223;:16::i;:::-;67215:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67308:15;:24;67324:7;67308:24;;;;;;;;;;;;;;;;;;;;;67301:31;;67127:213;;;:::o;66671:390::-;66752:13;66768:16;66776:7;66768;:16::i;:::-;66752:32;;66809:5;66803:11;;:2;:11;;;;66795:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66889:5;66873:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;66898:37;66915:5;66922:12;:10;:12::i;:::-;66898:16;:37::i;:::-;66873:62;66865:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67032:21;67041:2;67045:7;67032:8;:21::i;:::-;66671:390;;;:::o;64803:102::-;43552:12;:10;:12::i;:::-;43542:22;;:6;;;;;;;;;;:22;;;43534:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64892:5:::1;64874:15;:23;;;;;;;;;;;;:::i;:::-;;64803:102:::0;:::o;64474:137::-;64545:4;64569:13;64583:19;64591:10;64583:7;:19::i;:::-;64569:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64562:41;;64474:137;;;:::o;63760:203::-;63813:7;63934:21;:12;:19;:21::i;:::-;63927:28;;63760:203;:::o;68001:305::-;68162:41;68181:12;:10;:12::i;:::-;68195:7;68162:18;:41::i;:::-;68154:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68270:28;68280:4;68286:2;68290:7;68270:9;:28::i;:::-;68001:305;;;:::o;63530:154::-;63619:7;63646:30;63670:5;63646:13;:20;63660:5;63646:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;63639:37;;63530:154;;;;:::o;68377:151::-;68481:39;68498:4;68504:2;68508:7;68481:39;;;;;;;;;;;;:16;:39::i;:::-;68377:151;;;:::o;64040:163::-;64107:7;64128:15;64148:22;64164:5;64148:12;:15;;:22;;;;:::i;:::-;64127:43;;;64188:7;64181:14;;;64040:163;;;:::o;58984:50::-;;;;:::o;62953:169::-;63017:7;63044:70;63061:7;63044:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;63037:77;;62953:169;;;:::o;64276:120::-;64338:13;64371:10;:17;64382:5;64371:17;;;;;;;;;;;64364:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64276:120;;;:::o;62676:215::-;62740:7;62785:1;62768:19;;:5;:19;;;;62760:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62854:29;:13;:20;62868:5;62854:20;;;;;;;;;;;;;;;:27;:29::i;:::-;62847:36;;62676:215;;;:::o;43972:148::-;43552:12;:10;:12::i;:::-;43542:22;;:6;;;;;;;;;;:22;;;43534:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44079:1:::1;44042:40;;44063:6;::::0;::::1;;;;;;;;44042:40;;;;;;;;;;;;44110:1;44093:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;43972:148::o:0;43330:79::-;43368:7;43395:6;;;;;;;;;;;43388:13;;43330:79;:::o;64958:672::-;58973:4;65023:13;:11;:13::i;:::-;:30;65015:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65114:1;65099:12;:16;65091:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65190:2;65174:12;:18;;65166:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58973:4;65253:31;65271:12;65253:13;:11;:13::i;:::-;:17;;:31;;;;:::i;:::-;:49;;65245:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65342:11;;;;;;;;;;;:24;;;65367:10;65387:4;65393:24;65410:6;65393:12;:16;;:24;;;;:::i;:::-;65342:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65429:11;;;;;;;;;;;:16;;;65446:24;65463:6;65446:12;:16;;:24;;;;:::i;:::-;65429:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65488:6;65484:139;65502:12;65500:1;:14;65484:139;;;65534:14;65551:13;:11;:13::i;:::-;65534:30;;65579:32;65589:10;65601:9;65579;:32::i;:::-;65484:139;65515:3;;;;;;;65484:139;;;;64958:672;:::o;77621:506::-;77678:13;77703:17;77729:3;77703:30;;77744:19;77776:4;:11;77766:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77744:44;;77804:6;77799:289;77820:4;:11;77816:1;:15;77799:289;;;77912:2;77900:4;77905:1;77900:7;;;;;;;;;;;;;;;;77894:14;;:20;;;;77893:48;;;;;77938:2;77926:4;77931:1;77926:7;;;;;;;;;;;;;;;;77920:14;;:20;;;;77893:48;77889:188;;;77998:2;77987:4;77992:1;77987:7;;;;;;;;;;;;;;;;77981:14;;:19;77974:27;;77962:6;77969:1;77962:9;;;;;;;;;;;:39;;;;;;;;;;;77889:188;;;78054:4;78059:1;78054:7;;;;;;;;;;;;;;;;78042:6;78049:1;78042:9;;;;;;;;;;;:19;;;;;;;;;;;77889:188;77833:3;;;;;;;77799:289;;;;78112:6;78098:21;;;;77621:506;;;:::o;63350:96::-;63398:13;63431:7;63424:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63350:96;:::o;76595:954::-;76657:4;76673:14;76696:3;76673:27;;76726:1;76715;:8;:12;76711:30;;;76736:5;76729:12;;;;;76711:30;76767:2;76756:1;:8;:13;76752:31;;;76778:5;76771:12;;;;;76752:31;76854:4;76846:12;;:1;76848;76846:4;;;;;;;;;;;;;;;;:12;;;;76842:30;;;76867:5;76860:12;;;;;76842:30;76932:4;76913:23;;:1;76926;76915;:8;:12;76913:15;;;;;;;;;;;;;;;;:23;;;;76909:41;;;76945:5;76938:12;;;;;76909:41;76990:15;77008:1;77010;77008:4;;;;;;;;;;;;;;;;76990:22;;77030:6;77025:493;77042:1;:8;77038:1;:12;77025:493;;;77072:11;77086:1;77088;77086:4;;;;;;;;;;;;;;;;77072:18;;77119:4;77111:12;;:4;:12;;;;:32;;;;;77139:4;77127:16;;:8;:16;;;;77111:32;77107:50;;;77152:5;77145:12;;;;;;;;77107:50;77254:4;77246:12;;:4;:12;;;;;:28;;;;;77270:4;77262:12;;:4;:12;;;;;77246:28;77244:31;:85;;;;;77308:4;77300:12;;:4;:12;;;;;:28;;;;;77324:4;77316:12;;:4;:12;;;;;77300:28;77298:31;77244:85;:139;;;;;77362:4;77354:12;;:4;:12;;;;;:28;;;;;77378:4;77370:12;;:4;:12;;;;;77354:28;77352:31;77244:139;:177;;;;;77416:4;77408:12;;:4;:12;;;;77406:15;77244:177;77222:252;;;77469:5;77462:12;;;;;;;;77222:252;77502:4;77491:15;;77025:493;77052:3;;;;;;;77025:493;;;;77537:4;77530:11;;;;76595:954;;;;:::o;67412:295::-;67527:12;:10;:12::i;:::-;67515:24;;:8;:24;;;;67507:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67627:8;67582:18;:32;67601:12;:10;:12::i;:::-;67582:32;;;;;;;;;;;;;;;:42;67615:8;67582:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;67680:8;67651:48;;67666:12;:10;:12::i;:::-;67651:48;;;67690:8;67651:48;;;;;;;;;;;;;;;;;;;;67412:295;;:::o;60255:28::-;;;;;;;;;;;;;:::o;58932:45::-;58973:4;58932:45;:::o;60190:29::-;;;;;;;;;;;;;:::o;68599:285::-;68731:41;68750:12;:10;:12::i;:::-;68764:7;68731:18;:41::i;:::-;68723:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68837:39;68851:4;68857:2;68861:7;68870:5;68837:13;:39::i;:::-;68599:285;;;;:::o;65710:897::-;65788:13;65804:16;65812:7;65804;:16::i;:::-;65788:32;;65857:5;65841:21;;:12;:10;:12::i;:::-;:21;;;65833:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65942:4;65917:29;;:21;65930:7;65917:12;:21::i;:::-;:29;;;65909:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66016:34;66029:10;:19;66040:7;66029:19;;;;;;;;;;;66016:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65990:22;66003:7;65990:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:60;;65982:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66136:5;66109:32;;:23;66124:7;66109:14;:23::i;:::-;:32;;;66101:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66180:12;;;;;;;;;;;:25;;;66206:10;66226:4;66233:17;;66180:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66351:1;66321:10;:19;66332:7;66321:19;;;;;;;;;;;66315:33;;;;;;;;;;;;;;;;:37;66311:115;;;66369:45;66387:10;:19;66398:7;66387:19;;;;;;;;;;;66369:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66408:5;66369:17;:45::i;:::-;66311:115;66436:32;66454:7;66463:4;66436:17;:32::i;:::-;66501:7;66479:10;:19;66490:7;66479:19;;;;;;;;;;;:29;;;;;;;;;;;;:::i;:::-;;66519:12;;;;;;;;;;;:17;;;66537;;66519:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66582:7;66571:28;66591:7;66571:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65710:897;;;:::o;64681:114::-;43552:12;:10;:12::i;:::-;43542:22;;:6;;;;;;;;;;:22;;;43534:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64781:6:::1;64761:17;:26;;;;64681:114:::0;:::o;67778:156::-;67867:4;67891:18;:25;67910:5;67891:25;;;;;;;;;;;;;;;:35;67917:8;67891:35;;;;;;;;;;;;;;;;;;;;;;;;;67884:42;;67778:156;;;;:::o;44275:244::-;43552:12;:10;:12::i;:::-;43542:22;;:6;;;;;;;;;;:22;;;43534:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44384:1:::1;44364:22;;:8;:22;;;;44356:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44474:8;44445:38;;44466:6;::::0;::::1;;;;;;;;44445:38;;;;;;;;;;;;44503:8;44494:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;44275:244:::0;:::o;70351:119::-;70408:4;70432:30;70454:7;70432:12;:21;;:30;;;;:::i;:::-;70425:37;;70351:119;;;:::o;9203:106::-;9256:15;9291:10;9284:17;;9203:106;:::o;75356:158::-;75449:2;75422:15;:24;75438:7;75422:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;75498:7;75494:2;75467:39;;75476:16;75484:7;75476;:16::i;:::-;75467:39;;;;;;;;;;;;75356:158;;:::o;33483:123::-;33552:7;33579:19;33587:3;:10;;33579:7;:19::i;:::-;33572:26;;33483:123;;;:::o;70637:333::-;70722:4;70747:16;70755:7;70747;:16::i;:::-;70739:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70823:13;70839:16;70847:7;70839;:16::i;:::-;70823:32;;70885:5;70874:16;;:7;:16;;;:51;;;;70918:7;70894:31;;:20;70906:7;70894:11;:20::i;:::-;:31;;;70874:51;:87;;;;70929:32;70946:5;70953:7;70929:16;:32::i;:::-;70874:87;70866:96;;;70637:333;;;;:::o;73583:574::-;73701:4;73681:24;;:16;73689:7;73681;:16::i;:::-;:24;;;73673:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73784:1;73770:16;;:2;:16;;;;73762:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73840:39;73861:4;73867:2;73871:7;73840:20;:39::i;:::-;73944:29;73961:1;73965:7;73944:8;:29::i;:::-;73986:35;74013:7;73986:13;:19;74000:4;73986:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;74032:30;74054:7;74032:13;:17;74046:2;74032:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;74075:29;74092:7;74101:2;74075:12;:16;;:29;;;;;:::i;:::-;;74141:7;74137:2;74122:27;;74131:4;74122:27;;;;;;;;;;;;73583:574;;;:::o;42694:137::-;42765:7;42800:22;42804:3;:10;;42816:5;42800:3;:22::i;:::-;42792:31;;42785:38;;42694:137;;;;:::o;33954:227::-;34034:7;34043;34064:11;34077:13;34094:22;34098:3;:10;;34110:5;34094:3;:22::i;:::-;34063:53;;;;34143:3;34135:12;;34165:5;34157:14;;34127:46;;;;;;33954:227;;;;;:::o;34616:204::-;34723:7;34766:44;34771:3;:10;;34791:3;34783:12;;34797;34766:4;:44::i;:::-;34758:53;;34743:69;;34616:204;;;;;:::o;42226:114::-;42286:7;42313:19;42321:3;:10;;42313:7;:19::i;:::-;42306:26;;42226:114;;;:::o;4200:181::-;4258:7;4278:9;4294:1;4290;:5;4278:17;;4319:1;4314;:6;;4306:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4372:1;4365:8;;;4200:181;;;;:::o;5554:471::-;5612:7;5862:1;5857;:6;5853:47;;;5887:1;5880:8;;;;5853:47;5912:9;5928:1;5924;:5;5912:17;;5957:1;5952;5948;:5;;;;;;:10;5940:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6016:1;6009:8;;;5554:471;;;;;:::o;71313:112::-;71389:26;71399:2;71403:7;71389:26;;;;;;;;;;;;:9;:26::i;:::-;71313:112;;:::o;69766:272::-;69880:28;69890:4;69896:2;69900:7;69880:9;:28::i;:::-;69927:48;69950:4;69956:2;69960:7;69969:5;69927:22;:48::i;:::-;69919:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69766:272;;;;:::o;76333:129::-;76445:9;76415:13;76429:12;76437:3;76429:7;:12::i;:::-;76415:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;76333:129;;:::o;33244:151::-;33328:4;33352:35;33362:3;:10;;33382:3;33374:12;;33352:9;:35::i;:::-;33345:42;;33244:151;;;;:::o;30838:110::-;30894:7;30921:3;:12;;:19;;;;30914:26;;30838:110;;;:::o;76127:92::-;;;;:::o;41771:137::-;41841:4;41865:35;41873:3;:10;;41893:5;41885:14;;41865:7;:35::i;:::-;41858:42;;41771:137;;;;:::o;41464:131::-;41531:4;41555:32;41560:3;:10;;41580:5;41572:14;;41555:4;:32::i;:::-;41548:39;;41464:131;;;;:::o;32676:176::-;32765:4;32789:55;32794:3;:10;;32814:3;32806:12;;32836:5;32828:14;;32820:23;;32789:4;:55::i;:::-;32782:62;;32676:176;;;;;:::o;39338:204::-;39405:7;39454:5;39433:3;:11;;:18;;;;:26;39425:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39516:3;:11;;39528:5;39516:18;;;;;;;;;;;;;;;;39509:25;;39338:204;;;;:::o;31313:279::-;31380:7;31389;31439:5;31417:3;:12;;:19;;;;:27;31409:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31496:22;31521:3;:12;;31534:5;31521:19;;;;;;;;;;;;;;;;;;31496:44;;31559:5;:10;;;31571:5;:12;;;31551:33;;;;;31313:279;;;;;:::o;32015:337::-;32109:7;32129:16;32148:3;:12;;:17;32161:3;32148:17;;;;;;;;;;;;32129:36;;32196:1;32184:8;:13;;32199:12;32176:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32275:3;:12;;32299:1;32288:8;:12;32275:26;;;;;;;;;;;;;;;;;;:33;;;32268:40;;;32015:337;;;;;:::o;38875:109::-;38931:7;38958:3;:11;;:18;;;;38951:25;;38875:109;;;:::o;71652:250::-;71748:18;71754:2;71758:7;71748:5;:18::i;:::-;71785:54;71816:1;71820:2;71824:7;71833:5;71785:22;:54::i;:::-;71777:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71652:250;;;:::o;74724:624::-;74841:4;74868:15;:2;:13;;;:15::i;:::-;74863:60;;74907:4;74900:11;;;;74863:60;74933:23;74959:276;75016:45;;;75080:12;:10;:12::i;:::-;75111:4;75134:7;75160:5;74975:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74959:276;;;;;;;;;;;;;;;;;:2;:15;;;;:276;;;;;:::i;:::-;74933:302;;75246:13;75273:10;75262:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75246:48;;59321:10;75323:16;;75313:26;;;:6;:26;;;;75305:35;;;;74724:624;;;;;;;:::o;30618:125::-;30689:4;30734:1;30713:3;:12;;:17;30726:3;30713:17;;;;;;;;;;;;:22;;30706:29;;30618:125;;;;:::o;37018:1556::-;37084:4;37202:18;37223:3;:12;;:19;37236:5;37223:19;;;;;;;;;;;;37202:40;;37273:1;37259:10;:15;37255:1312;;37620:21;37657:1;37644:10;:14;37620:38;;37673:17;37714:1;37693:3;:11;;:18;;;;:22;37673:42;;37960:17;37980:3;:11;;37992:9;37980:22;;;;;;;;;;;;;;;;37960:42;;38126:9;38097:3;:11;;38109:13;38097:26;;;;;;;;;;;;;;;:38;;;;38245:1;38229:13;:17;38203:3;:12;;:23;38216:9;38203:23;;;;;;;;;;;:43;;;;38368:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;38463:3;:12;;:19;38476:5;38463:19;;;;;;;;;;;38456:26;;;38506:4;38499:11;;;;;;;;37255:1312;38550:5;38543:12;;;37018:1556;;;;;:::o;36428:414::-;36491:4;36513:21;36523:3;36528:5;36513:9;:21::i;:::-;36508:327;;36551:3;:11;;36568:5;36551:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36734:3;:11;;:18;;;;36712:3;:12;;:19;36725:5;36712:19;;;;;;;;;;;:40;;;;36774:4;36767:11;;;;36508:327;36818:5;36811:12;;36428:414;;;;;:::o;28107:691::-;28183:4;28299:16;28318:3;:12;;:17;28331:3;28318:17;;;;;;;;;;;;28299:36;;28364:1;28352:8;:13;28348:443;;;28418:3;:12;;28436:38;;;;;;;;28453:3;28436:38;;;;28467:5;28436:38;;;28418:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28633:3;:12;;:19;;;;28613:3;:12;;:17;28626:3;28613:17;;;;;;;;;;;:39;;;;28674:4;28667:11;;;;;28348:443;28747:5;28711:3;:12;;28735:1;28724:8;:12;28711:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;28774:5;28767:12;;;28107:691;;;;;;:::o;72238:404::-;72332:1;72318:16;;:2;:16;;;;72310:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72391:16;72399:7;72391;:16::i;:::-;72390:17;72382:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72453:45;72482:1;72486:2;72490:7;72453:20;:45::i;:::-;72511:30;72533:7;72511:13;:17;72525:2;72511:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;72554:29;72571:7;72580:2;72554:12;:16;;:29;;;;;:::i;:::-;;72626:7;72622:2;72601:33;;72618:1;72601:33;;;;;;;;;;;;72238:404;;:::o;11151:420::-;11211:4;11419:12;11529:7;11517:20;11509:28;;11562:1;11555:4;:8;11548:15;;;11151:420;;;:::o;14067:195::-;14170:12;14202:52;14224:6;14232:4;14238:1;14241:12;14202:21;:52::i;:::-;14195:59;;14067:195;;;;;:::o;38660:129::-;38733:4;38780:1;38757:3;:12;;:19;38770:5;38757:19;;;;;;;;;;;;:24;;38750:31;;38660:129;;;;:::o;15119:529::-;15246:12;15304:5;15279:21;:30;;15271:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15371:18;15382:6;15371:10;:18::i;:::-;15363:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15497:12;15511:23;15538:6;:11;;15558:5;15565:4;15538:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15496:74;;;;15588:52;15606:7;15615:10;15627:12;15588:17;:52::i;:::-;15581:59;;;;15119:529;;;;;;:::o;17658:743::-;17774:12;17803:7;17799:595;;;17834:10;17827:17;;;;17799:595;17968:1;17948:10;:17;:21;17944:439;;;18211:10;18205:17;18272:15;18259:10;18255:2;18251:19;18244:44;18159:148;18354:12;18347:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17658:743;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://e044103e29821008ba9b88c6f9f5c0338026340688c92e15f21cea68638b527b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.