ETH Price: $1,461.20 (-7.28%)
 

Overview

Max Total Supply

31 FFV3Test1

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FFV3Test1
0x940c561fda4c24529c45485b0be9a25edccf94cf
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:
FeralfileExhibitionV3

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 10 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-07
*/

// File: @openzeppelin/[email protected]/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/Authorizable.sol


pragma solidity >=0.4.22 <0.9.0;


contract Authorizable is Ownable {
    mapping(address => bool) public trustees;

    constructor() {}

    modifier onlyAuthorized() {
        require(trustees[msg.sender] || msg.sender == owner());
        _;
    }

    function addTrustee(address _trustee) public onlyOwner {
        trustees[_trustee] = true;
    }

    function removeTrustee(address _trustee) public onlyOwner {
        delete trustees[_trustee];
    }
}

// File: @openzeppelin/[email protected]/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/[email protected]/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal 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);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual 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: caller is not token 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: caller is not token 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 virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `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);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

        _afterTokenTransfer(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 = ERC721.ownerOf(tokenId);

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

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

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

        _afterTokenTransfer(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(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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` 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 tokenId
    ) internal virtual {}

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/[email protected]/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/FeralfileArtworkV3.sol


pragma solidity ^0.8.0;






contract FeralfileExhibitionV3 is ERC721Enumerable, Authorizable, IERC2981 {
    using Strings for uint256;

    // royalty payout address
    address public royaltyPayoutAddress;

    // the basis points of royalty payments for each secondary sales
    uint256 public immutable secondarySaleRoyaltyBPS;

    // the maximum basis points of royalty payments
    uint256 public constant MAX_ROYALITY_BPS = 100_00;

    // version code of contract
    string public constant codeVersion = "FeralfileExhibitionV3";

    // burnable
    bool public isBurnable;

    // bridgeable
    bool public isBridgeable;

    // token base URI
    string private _tokenBaseURI;

    // contract URI
    string private _contractURI;

    /// @notice A structure for Feral File artwork
    struct Artwork {
        string title;
        string artistName;
        string fingerprint;
        uint256 editionSize;
        uint256 AEAmount;
        uint256 PPAmount;
    }

    struct ArtworkEdition {
        uint256 editionID;
        string ipfsCID;
    }

    struct TransferArtworkParam {
        address from;
        address to;
        uint256 tokenID;
        uint256 timestamp;
        bytes32 r_;
        bytes32 s_;
        uint8 v_;
    }

    struct MintArtworkParam {
        uint256 artworkID;
        uint256 edition;
        address artist;
        address owner;
        string ipfsCID;
    }

    uint256[] private _allArtworks;
    mapping(uint256 => Artwork) public artworks; // artworkID => Artwork
    mapping(uint256 => ArtworkEdition) public artworkEditions; // artworkEditionID => ArtworkEdition
    mapping(uint256 => uint256[]) internal allArtworkEditions; // artworkID => []ArtworkEditionID
    mapping(string => bool) internal registeredIPFSCIDs; // ipfsCID => bool

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 secondarySaleRoyaltyBPS_,
        address royaltyPayoutAddress_,
        string memory contractURI_,
        string memory tokenBaseURI_,
        bool isBurnable_,
        bool isBridgeable_
    ) ERC721(name_, symbol_) {
        require(
            secondarySaleRoyaltyBPS_ <= MAX_ROYALITY_BPS,
            "royalty BPS for secondary sales can not be greater than the maximum royalty BPS"
        );
        require(
            royaltyPayoutAddress_ != address(0),
            "invalid royalty payout address"
        );

        secondarySaleRoyaltyBPS = secondarySaleRoyaltyBPS_;
        royaltyPayoutAddress = royaltyPayoutAddress_;
        _contractURI = contractURI_;
        _tokenBaseURI = tokenBaseURI_;
        isBurnable = isBurnable_;
        isBridgeable = isBridgeable_;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Enumerable, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /// @notice Call to create an artwork in the exhibition
    /// @param fingerprint - the fingerprint of an artwork
    /// @param title - the title of an artwork
    /// @param artistName - the artist of an artwork
    /// @param editionSize - the maximum edition size of an artwork
    function _createArtwork(
        string memory fingerprint,
        string memory title,
        string memory artistName,
        uint256 editionSize,
        uint256 aeAmount,
        uint256 ppAmount
    ) private {
        require(bytes(title).length != 0, "title can not be empty");
        require(bytes(artistName).length != 0, "artist can not be empty");
        require(bytes(fingerprint).length != 0, "fingerprint can not be empty");
        require(editionSize > 0, "edition size needs to be at least 1");

        uint256 artworkID = uint256(keccak256(abi.encode(fingerprint)));

        /// @notice make sure the artwork have not been registered
        require(
            bytes(artworks[artworkID].fingerprint).length == 0,
            "an artwork with the same fingerprint has already registered"
        );

        Artwork memory artwork = Artwork(
            title = title,
            artistName = artistName,
            fingerprint = fingerprint,
            editionSize = editionSize,
            aeAmount = aeAmount,
            ppAmount = ppAmount
        );

        _allArtworks.push(artworkID);
        artworks[artworkID] = artwork;

        emit NewArtwork(artworkID);
    }

    /// @notice createArtworks use for create list of artworks in a transaction
    /// @param artworks_ - the array of artwork
    function createArtworks(Artwork[] memory artworks_)
        external
        onlyAuthorized
    {
        for (uint256 i = 0; i < artworks_.length; i++) {
            _createArtwork(
                artworks_[i].fingerprint,
                artworks_[i].title,
                artworks_[i].artistName,
                artworks_[i].editionSize,
                artworks_[i].AEAmount,
                artworks_[i].PPAmount
            );
        }
    }

    /// @notice Return a count of artworks registered in this exhibition
    function totalArtworks() public view virtual returns (uint256) {
        return _allArtworks.length;
    }

    /// @notice Return the token identifier for the `index`th artwork
    function getArtworkByIndex(uint256 index)
        public
        view
        virtual
        returns (uint256)
    {
        require(
            index < totalArtworks(),
            "artworks: global index out of bounds"
        );
        return _allArtworks[index];
    }

    /// @notice Update the IPFS cid of an edition to a new value
    function updateArtworkEditionIPFSCid(uint256 tokenId, string memory ipfsCID)
        external
        onlyAuthorized
    {
        require(_exists(tokenId), "artwork edition is not found");
        require(!registeredIPFSCIDs[ipfsCID], "ipfs id has registered");

        ArtworkEdition storage edition = artworkEditions[tokenId];
        delete registeredIPFSCIDs[edition.ipfsCID];
        registeredIPFSCIDs[ipfsCID] = true;
        edition.ipfsCID = ipfsCID;
    }

    /// @notice setRoyaltyPayoutAddress assigns a payout address so
    //          that we can split the royalty.
    /// @param royaltyPayoutAddress_ - the new royalty payout address
    function setRoyaltyPayoutAddress(address royaltyPayoutAddress_)
        external
        onlyAuthorized
    {
        require(
            royaltyPayoutAddress_ != address(0),
            "invalid royalty payout address"
        );
        royaltyPayoutAddress = royaltyPayoutAddress_;
    }

    /// @notice Return the edition counts for an artwork
    function totalEditionOfArtwork(uint256 artworkID)
        public
        view
        returns (uint256)
    {
        return allArtworkEditions[artworkID].length;
    }

    /// @notice Return the edition id of an artwork by index
    function getArtworkEditionByIndex(uint256 artworkID, uint256 index)
        public
        view
        returns (uint256)
    {
        require(index < totalEditionOfArtwork(artworkID));
        return allArtworkEditions[artworkID][index];
    }

    /// @notice A distinct Uniform Resource Identifier (URI) for a given asset.
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _tokenBaseURI;
        if (bytes(baseURI).length == 0) {
            baseURI = "ipfs://";
        }

        return
            string(abi.encodePacked(baseURI, artworkEditions[tokenId].ipfsCID));
    }

    /// @notice Update the base URI for all tokens
    function setTokenBaseURI(string memory baseURI_) external onlyAuthorized {
        _tokenBaseURI = baseURI_;
    }

    /// @notice A URL for the opensea storefront-level metadata
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param tokenId - the NFT asset queried for royalty information
    /// @param salePrice - the sale price of the NFT asset specified by tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for salePrice
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(
            _exists(tokenId),
            "ERC2981: query royalty info for nonexistent token"
        );

        receiver = royaltyPayoutAddress;

        royaltyAmount =
            (salePrice * secondarySaleRoyaltyBPS) /
            MAX_ROYALITY_BPS;
    }

    /// @notice isValidRequest validates a message by ecrecover to ensure
    //          it is signed by owner of token.
    /// @param message_ - the raw message for signing
    /// @param owner_ - owner address of token
    /// @param r_ - part of signature for validating parameters integrity
    /// @param s_ - part of signature for validating parameters integrity
    /// @param v_ - part of signature for validating parameters integrity
    function isValidRequest(
        bytes32 message_,
        address owner_,
        bytes32 r_,
        bytes32 s_,
        uint8 v_
    ) internal pure returns (bool) {
        address signer = ECDSA.recover(
            ECDSA.toEthSignedMessageHash(message_),
            v_,
            r_,
            s_
        );
        return signer == owner_;
    }

    /// @notice authorizedTransfer use for transfer list of items in a transaction
    /// @param transferParams_ - the array of transfer parameters
    function authorizedTransfer(TransferArtworkParam[] memory transferParams_)
        external
        onlyAuthorized
    {
        for (uint256 i = 0; i < transferParams_.length; i++) {
            _authorizedTransfer(transferParams_[i]);
        }
    }

    function _authorizedTransfer(TransferArtworkParam memory transferParam_)
        private
    {
        require(
            _exists(transferParam_.tokenID),
            "ERC721: artwork edition is not found"
        );

        require(
            _isApprovedOrOwner(transferParam_.from, transferParam_.tokenID),
            "ERC721: caller is not token owner nor approved"
        );

        require(
            transferParam_.timestamp + 5 minutes >= block.timestamp,
            "FeralfileExhibitionV3: timestamp is over recv window"
        );

        bytes32 requestHash = keccak256(
            abi.encode(
                transferParam_.from,
                transferParam_.to,
                transferParam_.tokenID,
                transferParam_.timestamp
            )
        );

        require(
            isValidRequest(
                requestHash,
                transferParam_.from,
                transferParam_.r_,
                transferParam_.s_,
                transferParam_.v_
            ),
            "FeralfileExhibitionV3: the transfer request is not authorized"
        );

        _safeTransfer(
            transferParam_.from,
            transferParam_.to,
            transferParam_.tokenID,
            ""
        );
    }

    /// @notice batchMint is function mint array of tokens
    /// @param mintParams_ - the array of transfer parameters
    function batchMint(MintArtworkParam[] memory mintParams_)
        external
        onlyAuthorized
    {
        for (uint256 i = 0; i < mintParams_.length; i++) {
            _mintArtwork(
                mintParams_[i].artworkID,
                mintParams_[i].edition,
                mintParams_[i].artist,
                mintParams_[i].owner,
                mintParams_[i].ipfsCID
            );
        }
    }

    /// @notice mint artwork to ERC721
    /// @param artworkID_ - the artwork id where the new edition is referenced to
    /// @param editionNumber_ - the edition number of the artwork edition
    /// @param artist_ - the artist address of the new minted token
    /// @param owner_ - the owner address of the new minted token
    /// @param ipfsCID_ - the IPFS cid for the new token
    function _mintArtwork(
        uint256 artworkID_,
        uint256 editionNumber_,
        address artist_,
        address owner_,
        string memory ipfsCID_
    ) private {
        /// @notice the edition size is not set implies the artwork is not created
        require(
            artworks[artworkID_].editionSize > 0,
            "FeralfileExhibitionV3: artwork is not found"
        );
        /// @notice The range of editionNumber should be between 0 to artwork.editionSize + artwork.AEAmount + artwork.PPAmount - 1
        require(
            editionNumber_ <
                artworks[artworkID_].editionSize +
                    artworks[artworkID_].AEAmount +
                    artworks[artworkID_].PPAmount,
            "FeralfileExhibitionV3: edition number exceed the edition size of the artwork"
        );
        require(artist_ != address(0), "invalid artist address");
        require(owner_ != address(0), "invalid owner address");
        require(!registeredIPFSCIDs[ipfsCID_], "ipfs id has registered");

        uint256 editionID = artworkID_ + editionNumber_;
        require(
            artworkEditions[editionID].editionID == 0,
            "FeralfileExhibitionV3: the edition is existent"
        );

        ArtworkEdition memory edition = ArtworkEdition(editionID, ipfsCID_);

        artworkEditions[editionID] = edition;
        allArtworkEditions[artworkID_].push(editionID);

        registeredIPFSCIDs[ipfsCID_] = true;

        _safeMint(artist_, editionID);

        if (artist_ != owner_) {
            _safeTransfer(artist_, owner_, editionID, "");
        }

        emit NewArtworkEdition(owner_, artworkID_, editionID);
    }

    /// @notice burn editions
    /// @param editionIDs_ - the list of edition id will be burned
    function burnEditions(uint256[] memory editionIDs_) public {
        require(isBurnable, "FeralfileExhibitionV3: not allow burn edition");

        for (uint256 i = 0; i < editionIDs_.length; i++) {
            require(
                _exists(editionIDs_[i]),
                "ERC721: artwork edition is not found"
            );
            require(
                _isApprovedOrOwner(_msgSender(), editionIDs_[i]),
                "ERC721: caller is not token owner nor approved"
            );
            ArtworkEdition memory edition = artworkEditions[editionIDs_[i]];

            delete registeredIPFSCIDs[edition.ipfsCID];
            delete artworkEditions[editionIDs_[i]];

            _burn(editionIDs_[i]);

            emit BurnArtworkEdition(editionIDs_[i]);
        }
    }

    event NewArtwork(uint256 indexed artworkID);
    event NewArtworkEdition(
        address indexed owner,
        uint256 indexed artworkID,
        uint256 indexed editionID
    );
    event BurnArtworkEdition(uint256 indexed editionID);
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"secondarySaleRoyaltyBPS_","type":"uint256"},{"internalType":"address","name":"royaltyPayoutAddress_","type":"address"},{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"string","name":"tokenBaseURI_","type":"string"},{"internalType":"bool","name":"isBurnable_","type":"bool"},{"internalType":"bool","name":"isBridgeable_","type":"bool"}],"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":"editionID","type":"uint256"}],"name":"BurnArtworkEdition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"artworkID","type":"uint256"}],"name":"NewArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"artworkID","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"editionID","type":"uint256"}],"name":"NewArtworkEdition","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":"MAX_ROYALITY_BPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"addTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artworkEditions","outputs":[{"internalType":"uint256","name":"editionID","type":"uint256"},{"internalType":"string","name":"ipfsCID","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artworks","outputs":[{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"string","name":"fingerprint","type":"string"},{"internalType":"uint256","name":"editionSize","type":"uint256"},{"internalType":"uint256","name":"AEAmount","type":"uint256"},{"internalType":"uint256","name":"PPAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes32","name":"r_","type":"bytes32"},{"internalType":"bytes32","name":"s_","type":"bytes32"},{"internalType":"uint8","name":"v_","type":"uint8"}],"internalType":"struct FeralfileExhibitionV3.TransferArtworkParam[]","name":"transferParams_","type":"tuple[]"}],"name":"authorizedTransfer","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":[{"components":[{"internalType":"uint256","name":"artworkID","type":"uint256"},{"internalType":"uint256","name":"edition","type":"uint256"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"ipfsCID","type":"string"}],"internalType":"struct FeralfileExhibitionV3.MintArtworkParam[]","name":"mintParams_","type":"tuple[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"editionIDs_","type":"uint256[]"}],"name":"burnEditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"codeVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"string","name":"fingerprint","type":"string"},{"internalType":"uint256","name":"editionSize","type":"uint256"},{"internalType":"uint256","name":"AEAmount","type":"uint256"},{"internalType":"uint256","name":"PPAmount","type":"uint256"}],"internalType":"struct FeralfileExhibitionV3.Artwork[]","name":"artworks_","type":"tuple[]"}],"name":"createArtworks","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":"uint256","name":"index","type":"uint256"}],"name":"getArtworkByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"artworkID","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getArtworkEditionByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"isBridgeable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"removeTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPayoutAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"secondarySaleRoyaltyBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyPayoutAddress_","type":"address"}],"name":"setRoyaltyPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setTokenBaseURI","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":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalArtworks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"artworkID","type":"uint256"}],"name":"totalEditionOfArtwork","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":"address","name":"","type":"address"}],"name":"trustees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"ipfsCID","type":"string"}],"name":"updateArtworkEditionIPFSCid","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b506040516200418b3803806200418b833981016040819052620000349162000324565b87876000620000448382620004ae565b506001620000538282620004ae565b505050620000706200006a620001db60201b60201c565b620001df565b612710861115620001065760405162461bcd60e51b815260206004820152604f60248201527f726f79616c74792042505320666f72207365636f6e646172792073616c65732060448201527f63616e206e6f742062652067726561746572207468616e20746865206d61786960648201526e6d756d20726f79616c74792042505360881b608482015260a4015b60405180910390fd5b6001600160a01b0385166200015e5760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401620000fd565b6080869052600c80546001600160a01b0319166001600160a01b038716179055600e6200018c8582620004ae565b50600d6200019b8482620004ae565b50600c805461ffff60a01b1916600160a01b9315159390930260ff60a81b191692909217600160a81b91151591909102179055506200057a945050505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200025957600080fd5b81516001600160401b038082111562000276576200027662000231565b604051601f8301601f19908116603f01168101908282118183101715620002a157620002a162000231565b81604052838152602092508683858801011115620002be57600080fd5b600091505b83821015620002e25785820183015181830184015290820190620002c3565b600093810190920192909252949350505050565b80516001600160a01b03811681146200030e57600080fd5b919050565b805180151581146200030e57600080fd5b600080600080600080600080610100898b0312156200034257600080fd5b88516001600160401b03808211156200035a57600080fd5b620003688c838d0162000247565b995060208b01519150808211156200037f57600080fd5b6200038d8c838d0162000247565b985060408b01519750620003a460608c01620002f6565b965060808b0151915080821115620003bb57600080fd5b620003c98c838d0162000247565b955060a08b0151915080821115620003e057600080fd5b50620003ef8b828c0162000247565b9350506200040060c08a0162000313565b91506200041060e08a0162000313565b90509295985092959890939650565b600181811c908216806200043457607f821691505b6020821081036200045557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004a957600081815260208120601f850160051c81016020861015620004845750805b601f850160051c820191505b81811015620004a55782815560010162000490565b5050505b505050565b81516001600160401b03811115620004ca57620004ca62000231565b620004e281620004db84546200041f565b846200045b565b602080601f8311600181146200051a5760008415620005015750858301515b600019600386901b1c1916600185901b178555620004a5565b600085815260208120601f198616915b828110156200054b578886015182559484019460019091019084016200052a565b50858210156200056a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051613bee6200059d6000396000818161051d0152610ae20152613bee6000f3fe608060405234801561001057600080fd5b50600436106101f95760003560e01c806301ffc9a7146101fe578063031205061461022657806306fdde031461023b578063081812fc14610250578063095ea7b31461027b5780630cfcb5f11461028e57806312d907b9146102a157806318160ddd146102b457806323b872dd146102c65780632a55205a146102d95780632f745c591461030b5780633f6805ba1461031e57806342842e0e1461033157806343deaf761461034457806345aeefde146103575780634b6026731461036a5780634f6ccce71461038f57806362fe2131146103a25780636352211e146103c357806363e60230146103d6578063641b18e91461040a57806370a082311461041d578063715018a6146104305780637ca5ea8914610438578063883356d91461044c5780638da5cb5b146104605780638ef79e911461046857806395d89b411461047b5780639fbf39cd14610483578063a22cb46514610496578063b4883703146104a9578063b88d4fde146104bc578063c87b56dd146104cf578063dc78ac1c146104e2578063e4a233e1146104f5578063e8a3d485146104fd578063e985e9c514610505578063ea211d7c14610518578063ec9cbb441461053f578063eee608a414610548578063f2fde38b1461056b578063fc05ea681461057e578063fe2a3bf314610591575b600080fd5b61021161020c366004612ea8565b6105b1565b60405190151581526020015b60405180910390f35b610239610234366004612ee8565b6105dc565b005b610243610605565b60405161021d9190612f53565b61026361025e366004612f66565b610697565b6040516001600160a01b03909116815260200161021d565b610239610289366004612f7f565b6106be565b61023961029c3660046130d2565b6107d8565b6102396102af36600461313b565b61092a565b6008545b60405190815260200161021d565b6102396102d436600461325c565b610a29565b6102ec6102e7366004613298565b610a5a565b604080516001600160a01b03909316835260208301919091520161021d565b6102b8610319366004612f7f565b610b1a565b600c54610263906001600160a01b031681565b61023961033f36600461325c565b610bb0565b6102396103523660046132ba565b610bcb565b610239610365366004612ee8565b610ce4565b61037d610378366004612f66565b610d9b565b60405161021d96959493929190613406565b6102b861039d366004612f66565b610f67565b6103b56103b0366004612f66565b610ffa565b60405161021d92919061345e565b6102636103d1366004612f66565b61109f565b61024360405180604001604052806015815260200174466572616c66696c6545786869626974696f6e563360581b81525081565b6102b8610418366004613298565b6110d4565b6102b861042b366004612ee8565b611121565b6102396111a7565b600c5461021190600160a81b900460ff1681565b600c5461021190600160a01b900460ff1681565b6102636111bb565b610239610476366004613477565b6111ca565b610243611215565b6102396104913660046134ab565b611224565b6102396104a43660046135ae565b6112a3565b6102b86104b7366004612f66565b6112ae565b6102396104ca3660046135ea565b611326565b6102436104dd366004612f66565b611358565b6102396104f0366004612ee8565b6114be565b600f546102b8565b6102436114ea565b610211610513366004613665565b6114f9565b6102b87f000000000000000000000000000000000000000000000000000000000000000081565b6102b861271081565b610211610556366004612ee8565b600b6020526000908152604090205460ff1681565b610239610579366004612ee8565b611527565b61023961058c36600461368f565b6115a0565b6102b861059f366004612f66565b60009081526012602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d682611860565b92915050565b6105e4611885565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b6060600080546106149061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546106409061371f565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a2826118e4565b506000908152600460205260409020546001600160a01b031690565b60006106c98261109f565b9050806001600160a01b0316836001600160a01b03160361073b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610757575061075781336114f9565b6107c95760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610732565b6107d38383611909565b505050565b336000908152600b602052604090205460ff168061080e57506107f96111bb565b6001600160a01b0316336001600160a01b0316145b61081757600080fd5b61082082611977565b61086b5760405162461bcd60e51b815260206004820152601c60248201527b185c9d1ddbdc9ac819591a5d1a5bdb881a5cc81b9bdd08199bdd5b9960221b6044820152606401610732565b60138160405161087b9190613759565b9081526040519081900360200190205460ff16156108ab5760405162461bcd60e51b815260040161073290613775565b6000828152601160205260409081902090516013906108ce906001840190613818565b908152604051908190036020018120805460ff191690556001906013906108f6908590613759565b908152604051908190036020019020805491151560ff19909216919091179055600181016109248382613872565b50505050565b336000908152600b602052604090205460ff1680610960575061094b6111bb565b6001600160a01b0316336001600160a01b0316145b61096957600080fd5b60005b8151811015610a2557610a1382828151811061098a5761098a613931565b6020026020010151600001518383815181106109a8576109a8613931565b6020026020010151602001518484815181106109c6576109c6613931565b6020026020010151604001518585815181106109e4576109e4613931565b602002602001015160600151868681518110610a0257610a02613931565b602002602001015160800151611994565b80610a1d8161395d565b91505061096c565b5050565b610a333382611d33565b610a4f5760405162461bcd60e51b815260040161073290613976565b6107d3838383611d92565b600080610a6684611977565b610acc5760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20717565727920726f79616c747920696e666f20666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610732565b600c546001600160a01b03169150612710610b077f0000000000000000000000000000000000000000000000000000000000000000856139c4565b610b1191906139db565b90509250929050565b6000610b2583611121565b8210610b875760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610732565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107d383838360405180602001604052806000815250611326565b336000908152600b602052604090205460ff1680610c015750610bec6111bb565b6001600160a01b0316336001600160a01b0316145b610c0a57600080fd5b60005b8151811015610a2557610cd2828281518110610c2b57610c2b613931565b602002602001015160400151838381518110610c4957610c49613931565b602002602001015160000151848481518110610c6757610c67613931565b602002602001015160200151858581518110610c8557610c85613931565b602002602001015160600151868681518110610ca357610ca3613931565b602002602001015160800151878781518110610cc157610cc1613931565b602002602001015160a00151611f27565b80610cdc8161395d565b915050610c0d565b336000908152600b602052604090205460ff1680610d1a5750610d056111bb565b6001600160a01b0316336001600160a01b0316145b610d2357600080fd5b6001600160a01b038116610d795760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401610732565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601060205260009081526040902080548190610db69061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610de29061371f565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505090806001018054610e449061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e709061371f565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b505050505090806002018054610ed29061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe9061371f565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b5050505050908060030154908060040154908060050154905086565b6000610f7260085490565b8210610fd55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610732565b60088281548110610fe857610fe8613931565b90600052602060002001549050919050565b6011602052600090815260409020805460018201805491929161101c9061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546110489061371f565b80156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b5050505050905082565b6000818152600260205260408120546001600160a01b0316806105d65760405162461bcd60e51b8152600401610732906139fd565b60008281526012602052604081205482106110ee57600080fd5b600083815260126020526040902080548390811061110e5761110e613931565b9060005260206000200154905092915050565b60006001600160a01b03821661118b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610732565b506001600160a01b031660009081526003602052604090205490565b6111af611885565b6111b96000612223565b565b600a546001600160a01b031690565b336000908152600b602052604090205460ff168061120057506111eb6111bb565b6001600160a01b0316336001600160a01b0316145b61120957600080fd5b600d610a258282613872565b6060600180546106149061371f565b336000908152600b602052604090205460ff168061125a57506112456111bb565b6001600160a01b0316336001600160a01b0316145b61126357600080fd5b60005b8151811015610a255761129182828151811061128457611284613931565b6020026020010151612275565b8061129b8161395d565b915050611266565b610a25338383612465565b60006112b9600f5490565b82106113135760405162461bcd60e51b8152602060048201526024808201527f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b6064820152608401610732565b600f8281548110610fe857610fe8613931565b6113303383611d33565b61134c5760405162461bcd60e51b815260040161073290613976565b6109248484848461252f565b606061136382611977565b6113c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610732565b6000600d80546113d69061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546114029061371f565b801561144f5780601f106114245761010080835404028352916020019161144f565b820191906000526020600020905b81548152906001019060200180831161143257829003601f168201915b50505050509050805160000361147f5750604080518082019091526007815266697066733a2f2f60c81b60208201525b80601160008581526020019081526020016000206001016040516020016114a7929190613a2f565b604051602081830303815290604052915050919050565b6114c6611885565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6060600e80546106149061371f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61152f611885565b6001600160a01b0381166115945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610732565b61159d81612223565b50565b600c54600160a01b900460ff1661160f5760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56333a206e6f7420616c6c6f7760448201526c10313ab9371032b234ba34b7b760991b6064820152608401610732565b60005b8151811015610a255761163d82828151811061163057611630613931565b6020026020010151611977565b6116595760405162461bcd60e51b815260040161073290613a56565b61167c3383838151811061166f5761166f613931565b6020026020010151611d33565b6116985760405162461bcd60e51b815260040161073290613976565b6000601160008484815181106116b0576116b0613931565b60200260200101518152602001908152602001600020604051806040016040529081600082015481526020016001820180546116eb9061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546117179061371f565b80156117645780601f1061173957610100808354040283529160200191611764565b820191906000526020600020905b81548152906001019060200180831161174757829003601f168201915b5050505050815250509050601381602001516040516117839190613759565b908152604051908190036020019020805460ff1916905582516011906000908590859081106117b4576117b4613931565b602002602001015181526020019081526020016000206000808201600090556001820160006117e39190612e44565b50506118078383815181106117fa576117fa613931565b6020026020010151612562565b82828151811061181957611819613931565b60200260200101517fa5a44c7ed36966786612323ee2cb0cb453d4a9282b90c6befe72cde41d83f48860405160405180910390a250806118588161395d565b915050611612565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d6826125f7565b3361188e6111bb565b6001600160a01b0316146111b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610732565b6118ed81611977565b61159d5760405162461bcd60e51b8152600401610732906139fd565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061193e8261109f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000908152600260205260409020546001600160a01b0316151590565b600085815260106020526040902060030154611a065760405162461bcd60e51b815260206004820152602b60248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b206960448201526a1cc81b9bdd08199bdd5b9960aa1b6064820152608401610732565b6000858152601060205260409020600581015460048201546003909201549091611a2f91613a9a565b611a399190613a9a565b8410611ac25760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56333a2065646974696f6e206e60448201527f756d62657220657863656564207468652065646974696f6e2073697a65206f6660648201526b2074686520617274776f726b60a01b608482015260a401610732565b6001600160a01b038316611b115760405162461bcd60e51b8152602060048201526016602482015275696e76616c696420617274697374206164647265737360501b6044820152606401610732565b6001600160a01b038216611b5f5760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206f776e6572206164647265737360581b6044820152606401610732565b601381604051611b6f9190613759565b9081526040519081900360200190205460ff1615611b9f5760405162461bcd60e51b815260040161073290613775565b6000611bab8587613a9a565b60008181526011602052604090205490915015611c215760405162461bcd60e51b815260206004820152602e60248201527f466572616c66696c6545786869626974696f6e56333a2074686520656469746960448201526d1bdb881a5cc8195e1a5cdd195b9d60921b6064820152608401610732565b604080518082018252828152602080820185815260008581526011909252929020815181559151909182916001820190611c5b9082613872565b50505060008781526012602090815260408083208054600181810183559185529290932090910184905551601390611c94908690613759565b908152604051908190036020019020805491151560ff19909216919091179055611cbe8583612647565b836001600160a01b0316856001600160a01b031614611cf257611cf28585846040518060200160405280600081525061252f565b8187856001600160a01b03167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b600080611d3f8361109f565b9050806001600160a01b0316846001600160a01b03161480611d665750611d6681856114f9565b80611d8a5750836001600160a01b0316611d7f84610697565b6001600160a01b0316145b949350505050565b826001600160a01b0316611da58261109f565b6001600160a01b031614611e095760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610732565b6001600160a01b038216611e6b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610732565b611e76838383612661565b611e81600082611909565b6001600160a01b0383166000908152600360205260408120805460019290611eaa908490613aad565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ed8908490613a9a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020613b9983398151915291a4505050565b8451600003611f715760405162461bcd60e51b81526020600482015260166024820152757469746c652063616e206e6f7420626520656d70747960501b6044820152606401610732565b8351600003611fbc5760405162461bcd60e51b81526020600482015260176024820152766172746973742063616e206e6f7420626520656d70747960481b6044820152606401610732565b855160000361200c5760405162461bcd60e51b815260206004820152601c60248201527b66696e6765727072696e742063616e206e6f7420626520656d70747960201b6044820152606401610732565b600083116120685760405162461bcd60e51b815260206004820152602360248201527f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360448201526274203160e81b6064820152608401610732565b60008660405160200161207b9190612f53565b60408051601f1981840301815291815281516020928301206000818152601090935291206002018054919250906120b19061371f565b1590506121245760405162461bcd60e51b815260206004820152603b60248201527f616e20617274776f726b2077697468207468652073616d652066696e6765727060448201527a1c9a5b9d081a185cc8185b1c9958591e481c9959da5cdd195c9959602a1b6064820152608401610732565b6040805160c08101825287815260208082018890528183018a9052606082018790526080820186905260a08201859052600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802018490556000848152601090915291909120815182919081906121a39082613872565b50602082015160018201906121b89082613872565b50604082015160028201906121cd9082613872565b50606082015160038201556080820151600482015560a09091015160059091015560405182907f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089190600090a25050505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122828160400151611977565b61229e5760405162461bcd60e51b815260040161073290613a56565b6122b081600001518260400151611d33565b6122cc5760405162461bcd60e51b815260040161073290613976565b42816060015161012c6122df9190613a9a565b101561234a5760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56333a2074696d657374616d70604482015273206973206f76657220726563762077696e646f7760601b6064820152608401610732565b6000816000015182602001518360400151846060015160405160200161239794939291906001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b6040516020818303038152906040528051906020012090506123cc81836000015184608001518560a001518660c00151612719565b61243e5760405162461bcd60e51b815260206004820152603d60248201527f466572616c66696c6545786869626974696f6e56333a20746865207472616e7360448201527f6665722072657175657374206973206e6f7420617574686f72697a65640000006064820152608401610732565b610a258260000151836020015184604001516040518060200160405280600081525061252f565b816001600160a01b0316836001600160a01b0316036124c25760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610732565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61253a848484611d92565b61254684848484612798565b6109245760405162461bcd60e51b815260040161073290613ac0565b600061256d8261109f565b905061257b81600084612661565b612586600083611909565b6001600160a01b03811660009081526003602052604081208054600192906125af908490613aad565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020613b99833981519152908390a45050565b60006001600160e01b031982166380ac58cd60e01b148061262857506001600160e01b03198216635b5e139f60e01b145b806105d657506301ffc9a760e01b6001600160e01b03198316146105d6565b610a25828260405180602001604052806000815250612899565b6001600160a01b0383166126bc576126b781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126df565b816001600160a01b0316836001600160a01b0316146126df576126df83826128cc565b6001600160a01b0382166126f6576107d381612969565b826001600160a01b0316826001600160a01b0316146107d3576107d38282612a18565b60008061277d612775886040517b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b6020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b848787612a5c565b6001600160a01b039081169087161491505095945050505050565b60006001600160a01b0384163b1561288e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127dc903390899088908890600401613b12565b6020604051808303816000875af1925050508015612817575060408051601f3d908101601f1916820190925261281491810190613b4f565b60015b612874573d808015612845576040519150601f19603f3d011682016040523d82523d6000602084013e61284a565b606091505b50805160000361286c5760405162461bcd60e51b815260040161073290613ac0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d8a565b506001949350505050565b6128a38383612a84565b6128b06000848484612798565b6107d35760405162461bcd60e51b815260040161073290613ac0565b600060016128d984611121565b6128e39190613aad565b600083815260076020526040902054909150808214612936576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061297b90600190613aad565b600083815260096020526040812054600880549394509092849081106129a3576129a3613931565b9060005260206000200154905080600883815481106129c4576129c4613931565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129fc576129fc613b6c565b6001900381819060005260206000200160009055905550505050565b6000612a2383611121565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000806000612a6d87878787612bb0565b91509150612a7a81612c93565b5095945050505050565b6001600160a01b038216612ada5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610732565b612ae381611977565b15612b2f5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610732565b612b3b60008383612661565b6001600160a01b0382166000908152600360205260408120805460019290612b64908490613a9a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020613b99833981519152908290a45050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b03831115612bdd5750600090506003612c8a565b8460ff16601b14158015612bf557508460ff16601c14155b15612c065750600090506004612c8a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612c5a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612c8357600060019250925050612c8a565b9150600090505b94509492505050565b6000816004811115612ca757612ca7613b82565b03612caf5750565b6001816004811115612cc357612cc3613b82565b03612d0b5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610732565b6002816004811115612d1f57612d1f613b82565b03612d6c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610732565b6003816004811115612d8057612d80613b82565b03612dd85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610732565b6004816004811115612dec57612dec613b82565b0361159d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610732565b508054612e509061371f565b6000825580601f10612e60575050565b601f01602090049060005260206000209081019061159d91905b80821115612e8e5760008155600101612e7a565b5090565b6001600160e01b03198116811461159d57600080fd5b600060208284031215612eba57600080fd5b8135612ec581612e92565b9392505050565b80356001600160a01b0381168114612ee357600080fd5b919050565b600060208284031215612efa57600080fd5b612ec582612ecc565b60005b83811015612f1e578181015183820152602001612f06565b50506000910152565b60008151808452612f3f816020860160208601612f03565b601f01601f19169290920160200192915050565b602081526000612ec56020830184612f27565b600060208284031215612f7857600080fd5b5035919050565b60008060408385031215612f9257600080fd5b612f9b83612ecc565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b0381118282101715612fe157612fe1612fa9565b60405290565b60405160c081016001600160401b0381118282101715612fe157612fe1612fa9565b60405160e081016001600160401b0381118282101715612fe157612fe1612fa9565b604051601f8201601f191681016001600160401b038111828210171561305357613053612fa9565b604052919050565b60006001600160401b0383111561307457613074612fa9565b613087601f8401601f191660200161302b565b905082815283838301111561309b57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126130c357600080fd5b612ec58383356020850161305b565b600080604083850312156130e557600080fd5b8235915060208301356001600160401b0381111561310257600080fd5b61310e858286016130b2565b9150509250929050565b60006001600160401b0382111561313157613131612fa9565b5060051b60200190565b6000602080838503121561314e57600080fd5b82356001600160401b038082111561316557600080fd5b818501915085601f83011261317957600080fd5b813561318c61318782613118565b61302b565b81815260059190911b830184019084810190888311156131ab57600080fd5b8585015b8381101561324f578035858111156131c75760008081fd5b860160a0818c03601f19018113156131df5760008081fd5b6131e7612fbf565b8983013581526040808401358b8301526060613204818601612ecc565b8284015260809150613217828601612ecc565b9083015291830135918883111561322e5760008081fd5b61323c8e8c858701016130b2565b90820152855250509186019186016131af565b5098975050505050505050565b60008060006060848603121561327157600080fd5b61327a84612ecc565b925061328860208501612ecc565b9150604084013590509250925092565b600080604083850312156132ab57600080fd5b50508035926020909101359150565b600060208083850312156132cd57600080fd5b82356001600160401b03808211156132e457600080fd5b818501915085601f8301126132f857600080fd5b813561330661318782613118565b81815260059190911b8301840190848101908883111561332557600080fd5b8585015b8381101561324f5780358581111561334057600080fd5b860160c0818c03601f190112156133575760008081fd5b61335f612fe7565b88820135878111156133715760008081fd5b61337f8d8b838601016130b2565b825250604080830135888111156133965760008081fd5b6133a48e8c838701016130b2565b8b84015250606080840135898111156133bd5760008081fd5b6133cb8f8d838801016130b2565b83850152506080915081840135818401525060a0808401358284015260c0840135818401525050808552505086830192508681019050613329565b60c08152600061341960c0830189612f27565b828103602084015261342b8189612f27565b9050828103604084015261343f8188612f27565b60608401969096525050608081019290925260a0909101529392505050565b828152604060208201526000611d8a6040830184612f27565b60006020828403121561348957600080fd5b81356001600160401b0381111561349f57600080fd5b611d8a848285016130b2565b600060208083850312156134be57600080fd5b82356001600160401b038111156134d457600080fd5b8301601f810185136134e557600080fd5b80356134f361318782613118565b81815260e0918202830184019184820191908884111561351257600080fd5b938501935b838510156135a25780858a03121561352f5760008081fd5b613537613009565b61354086612ecc565b815261354d878701612ecc565b8188015260408681013590820152606080870135908201526080808701359082015260a0808701359082015260c08087013560ff8116811461358f5760008081fd5b9082015283529384019391850191613517565b50979650505050505050565b600080604083850312156135c157600080fd5b6135ca83612ecc565b9150602083013580151581146135df57600080fd5b809150509250929050565b6000806000806080858703121561360057600080fd5b61360985612ecc565b935061361760208601612ecc565b92506040850135915060608501356001600160401b0381111561363957600080fd5b8501601f8101871361364a57600080fd5b6136598782356020840161305b565b91505092959194509250565b6000806040838503121561367857600080fd5b61368183612ecc565b9150610b1160208401612ecc565b600060208083850312156136a257600080fd5b82356001600160401b038111156136b857600080fd5b8301601f810185136136c957600080fd5b80356136d761318782613118565b81815260059190911b820183019083810190878311156136f657600080fd5b928401925b82841015613714578335825292840192908401906136fb565b979650505050505050565b600181811c9082168061373357607f821691505b60208210810361375357634e487b7160e01b600052602260045260246000fd5b50919050565b6000825161376b818460208701612f03565b9190910192915050565b6020808252601690820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b604082015260600190565b600081546137b28161371f565b600182811680156137ca57600181146137df5761380e565b60ff198416875282151583028701945061380e565b8560005260208060002060005b858110156138055781548a8201529084019082016137ec565b50505082870194505b5050505092915050565b6000612ec582846137a5565b601f8211156107d357600081815260208120601f850160051c8101602086101561384b5750805b601f850160051c820191505b8181101561386a57828155600101613857565b505050505050565b81516001600160401b0381111561388b5761388b612fa9565b61389f81613899845461371f565b84613824565b602080601f8311600181146138d457600084156138bc5750858301515b600019600386901b1c1916600185901b17855561386a565b600085815260208120601f198616915b82811015613903578886015182559484019460019091019084016138e4565b50858210156139215787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161396f5761396f613947565b5060010190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b80820281158282048414176105d6576105d6613947565b6000826139f857634e487b7160e01b600052601260045260246000fd5b500490565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b60008351613a41818460208801612f03565b613a4d818401856137a5565b95945050505050565b60208082526024908201527f4552433732313a20617274776f726b2065646974696f6e206973206e6f7420666040820152631bdd5b9960e21b606082015260800190565b808201808211156105d6576105d6613947565b818103818111156105d6576105d6613947565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b4590830184612f27565b9695505050505050565b600060208284031215613b6157600080fd5b8151612ec581612e92565b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122074d64a3179d968b3f0ad8d43fe8334ab7b18be8e7ed3f3b74510326c7f7b522164736f6c634300081100330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000002033606be146405870f92ea3144ef5057b9dea48000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000d46465633202d2054657374203100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000946465633546573743100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5743346245435554424d774e4c7345475346745442704344716a4e6b6f416f786372734a6b4648646643723600000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f95760003560e01c806301ffc9a7146101fe578063031205061461022657806306fdde031461023b578063081812fc14610250578063095ea7b31461027b5780630cfcb5f11461028e57806312d907b9146102a157806318160ddd146102b457806323b872dd146102c65780632a55205a146102d95780632f745c591461030b5780633f6805ba1461031e57806342842e0e1461033157806343deaf761461034457806345aeefde146103575780634b6026731461036a5780634f6ccce71461038f57806362fe2131146103a25780636352211e146103c357806363e60230146103d6578063641b18e91461040a57806370a082311461041d578063715018a6146104305780637ca5ea8914610438578063883356d91461044c5780638da5cb5b146104605780638ef79e911461046857806395d89b411461047b5780639fbf39cd14610483578063a22cb46514610496578063b4883703146104a9578063b88d4fde146104bc578063c87b56dd146104cf578063dc78ac1c146104e2578063e4a233e1146104f5578063e8a3d485146104fd578063e985e9c514610505578063ea211d7c14610518578063ec9cbb441461053f578063eee608a414610548578063f2fde38b1461056b578063fc05ea681461057e578063fe2a3bf314610591575b600080fd5b61021161020c366004612ea8565b6105b1565b60405190151581526020015b60405180910390f35b610239610234366004612ee8565b6105dc565b005b610243610605565b60405161021d9190612f53565b61026361025e366004612f66565b610697565b6040516001600160a01b03909116815260200161021d565b610239610289366004612f7f565b6106be565b61023961029c3660046130d2565b6107d8565b6102396102af36600461313b565b61092a565b6008545b60405190815260200161021d565b6102396102d436600461325c565b610a29565b6102ec6102e7366004613298565b610a5a565b604080516001600160a01b03909316835260208301919091520161021d565b6102b8610319366004612f7f565b610b1a565b600c54610263906001600160a01b031681565b61023961033f36600461325c565b610bb0565b6102396103523660046132ba565b610bcb565b610239610365366004612ee8565b610ce4565b61037d610378366004612f66565b610d9b565b60405161021d96959493929190613406565b6102b861039d366004612f66565b610f67565b6103b56103b0366004612f66565b610ffa565b60405161021d92919061345e565b6102636103d1366004612f66565b61109f565b61024360405180604001604052806015815260200174466572616c66696c6545786869626974696f6e563360581b81525081565b6102b8610418366004613298565b6110d4565b6102b861042b366004612ee8565b611121565b6102396111a7565b600c5461021190600160a81b900460ff1681565b600c5461021190600160a01b900460ff1681565b6102636111bb565b610239610476366004613477565b6111ca565b610243611215565b6102396104913660046134ab565b611224565b6102396104a43660046135ae565b6112a3565b6102b86104b7366004612f66565b6112ae565b6102396104ca3660046135ea565b611326565b6102436104dd366004612f66565b611358565b6102396104f0366004612ee8565b6114be565b600f546102b8565b6102436114ea565b610211610513366004613665565b6114f9565b6102b87f00000000000000000000000000000000000000000000000000000000000003e881565b6102b861271081565b610211610556366004612ee8565b600b6020526000908152604090205460ff1681565b610239610579366004612ee8565b611527565b61023961058c36600461368f565b6115a0565b6102b861059f366004612f66565b60009081526012602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d682611860565b92915050565b6105e4611885565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b6060600080546106149061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546106409061371f565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a2826118e4565b506000908152600460205260409020546001600160a01b031690565b60006106c98261109f565b9050806001600160a01b0316836001600160a01b03160361073b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610757575061075781336114f9565b6107c95760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610732565b6107d38383611909565b505050565b336000908152600b602052604090205460ff168061080e57506107f96111bb565b6001600160a01b0316336001600160a01b0316145b61081757600080fd5b61082082611977565b61086b5760405162461bcd60e51b815260206004820152601c60248201527b185c9d1ddbdc9ac819591a5d1a5bdb881a5cc81b9bdd08199bdd5b9960221b6044820152606401610732565b60138160405161087b9190613759565b9081526040519081900360200190205460ff16156108ab5760405162461bcd60e51b815260040161073290613775565b6000828152601160205260409081902090516013906108ce906001840190613818565b908152604051908190036020018120805460ff191690556001906013906108f6908590613759565b908152604051908190036020019020805491151560ff19909216919091179055600181016109248382613872565b50505050565b336000908152600b602052604090205460ff1680610960575061094b6111bb565b6001600160a01b0316336001600160a01b0316145b61096957600080fd5b60005b8151811015610a2557610a1382828151811061098a5761098a613931565b6020026020010151600001518383815181106109a8576109a8613931565b6020026020010151602001518484815181106109c6576109c6613931565b6020026020010151604001518585815181106109e4576109e4613931565b602002602001015160600151868681518110610a0257610a02613931565b602002602001015160800151611994565b80610a1d8161395d565b91505061096c565b5050565b610a333382611d33565b610a4f5760405162461bcd60e51b815260040161073290613976565b6107d3838383611d92565b600080610a6684611977565b610acc5760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20717565727920726f79616c747920696e666f20666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610732565b600c546001600160a01b03169150612710610b077f00000000000000000000000000000000000000000000000000000000000003e8856139c4565b610b1191906139db565b90509250929050565b6000610b2583611121565b8210610b875760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610732565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107d383838360405180602001604052806000815250611326565b336000908152600b602052604090205460ff1680610c015750610bec6111bb565b6001600160a01b0316336001600160a01b0316145b610c0a57600080fd5b60005b8151811015610a2557610cd2828281518110610c2b57610c2b613931565b602002602001015160400151838381518110610c4957610c49613931565b602002602001015160000151848481518110610c6757610c67613931565b602002602001015160200151858581518110610c8557610c85613931565b602002602001015160600151868681518110610ca357610ca3613931565b602002602001015160800151878781518110610cc157610cc1613931565b602002602001015160a00151611f27565b80610cdc8161395d565b915050610c0d565b336000908152600b602052604090205460ff1680610d1a5750610d056111bb565b6001600160a01b0316336001600160a01b0316145b610d2357600080fd5b6001600160a01b038116610d795760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401610732565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601060205260009081526040902080548190610db69061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610de29061371f565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505090806001018054610e449061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e709061371f565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b505050505090806002018054610ed29061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe9061371f565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b5050505050908060030154908060040154908060050154905086565b6000610f7260085490565b8210610fd55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610732565b60088281548110610fe857610fe8613931565b90600052602060002001549050919050565b6011602052600090815260409020805460018201805491929161101c9061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546110489061371f565b80156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b5050505050905082565b6000818152600260205260408120546001600160a01b0316806105d65760405162461bcd60e51b8152600401610732906139fd565b60008281526012602052604081205482106110ee57600080fd5b600083815260126020526040902080548390811061110e5761110e613931565b9060005260206000200154905092915050565b60006001600160a01b03821661118b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610732565b506001600160a01b031660009081526003602052604090205490565b6111af611885565b6111b96000612223565b565b600a546001600160a01b031690565b336000908152600b602052604090205460ff168061120057506111eb6111bb565b6001600160a01b0316336001600160a01b0316145b61120957600080fd5b600d610a258282613872565b6060600180546106149061371f565b336000908152600b602052604090205460ff168061125a57506112456111bb565b6001600160a01b0316336001600160a01b0316145b61126357600080fd5b60005b8151811015610a255761129182828151811061128457611284613931565b6020026020010151612275565b8061129b8161395d565b915050611266565b610a25338383612465565b60006112b9600f5490565b82106113135760405162461bcd60e51b8152602060048201526024808201527f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b6064820152608401610732565b600f8281548110610fe857610fe8613931565b6113303383611d33565b61134c5760405162461bcd60e51b815260040161073290613976565b6109248484848461252f565b606061136382611977565b6113c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610732565b6000600d80546113d69061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546114029061371f565b801561144f5780601f106114245761010080835404028352916020019161144f565b820191906000526020600020905b81548152906001019060200180831161143257829003601f168201915b50505050509050805160000361147f5750604080518082019091526007815266697066733a2f2f60c81b60208201525b80601160008581526020019081526020016000206001016040516020016114a7929190613a2f565b604051602081830303815290604052915050919050565b6114c6611885565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6060600e80546106149061371f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61152f611885565b6001600160a01b0381166115945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610732565b61159d81612223565b50565b600c54600160a01b900460ff1661160f5760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56333a206e6f7420616c6c6f7760448201526c10313ab9371032b234ba34b7b760991b6064820152608401610732565b60005b8151811015610a255761163d82828151811061163057611630613931565b6020026020010151611977565b6116595760405162461bcd60e51b815260040161073290613a56565b61167c3383838151811061166f5761166f613931565b6020026020010151611d33565b6116985760405162461bcd60e51b815260040161073290613976565b6000601160008484815181106116b0576116b0613931565b60200260200101518152602001908152602001600020604051806040016040529081600082015481526020016001820180546116eb9061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546117179061371f565b80156117645780601f1061173957610100808354040283529160200191611764565b820191906000526020600020905b81548152906001019060200180831161174757829003601f168201915b5050505050815250509050601381602001516040516117839190613759565b908152604051908190036020019020805460ff1916905582516011906000908590859081106117b4576117b4613931565b602002602001015181526020019081526020016000206000808201600090556001820160006117e39190612e44565b50506118078383815181106117fa576117fa613931565b6020026020010151612562565b82828151811061181957611819613931565b60200260200101517fa5a44c7ed36966786612323ee2cb0cb453d4a9282b90c6befe72cde41d83f48860405160405180910390a250806118588161395d565b915050611612565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d6826125f7565b3361188e6111bb565b6001600160a01b0316146111b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610732565b6118ed81611977565b61159d5760405162461bcd60e51b8152600401610732906139fd565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061193e8261109f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000908152600260205260409020546001600160a01b0316151590565b600085815260106020526040902060030154611a065760405162461bcd60e51b815260206004820152602b60248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b206960448201526a1cc81b9bdd08199bdd5b9960aa1b6064820152608401610732565b6000858152601060205260409020600581015460048201546003909201549091611a2f91613a9a565b611a399190613a9a565b8410611ac25760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56333a2065646974696f6e206e60448201527f756d62657220657863656564207468652065646974696f6e2073697a65206f6660648201526b2074686520617274776f726b60a01b608482015260a401610732565b6001600160a01b038316611b115760405162461bcd60e51b8152602060048201526016602482015275696e76616c696420617274697374206164647265737360501b6044820152606401610732565b6001600160a01b038216611b5f5760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206f776e6572206164647265737360581b6044820152606401610732565b601381604051611b6f9190613759565b9081526040519081900360200190205460ff1615611b9f5760405162461bcd60e51b815260040161073290613775565b6000611bab8587613a9a565b60008181526011602052604090205490915015611c215760405162461bcd60e51b815260206004820152602e60248201527f466572616c66696c6545786869626974696f6e56333a2074686520656469746960448201526d1bdb881a5cc8195e1a5cdd195b9d60921b6064820152608401610732565b604080518082018252828152602080820185815260008581526011909252929020815181559151909182916001820190611c5b9082613872565b50505060008781526012602090815260408083208054600181810183559185529290932090910184905551601390611c94908690613759565b908152604051908190036020019020805491151560ff19909216919091179055611cbe8583612647565b836001600160a01b0316856001600160a01b031614611cf257611cf28585846040518060200160405280600081525061252f565b8187856001600160a01b03167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b600080611d3f8361109f565b9050806001600160a01b0316846001600160a01b03161480611d665750611d6681856114f9565b80611d8a5750836001600160a01b0316611d7f84610697565b6001600160a01b0316145b949350505050565b826001600160a01b0316611da58261109f565b6001600160a01b031614611e095760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610732565b6001600160a01b038216611e6b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610732565b611e76838383612661565b611e81600082611909565b6001600160a01b0383166000908152600360205260408120805460019290611eaa908490613aad565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ed8908490613a9a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020613b9983398151915291a4505050565b8451600003611f715760405162461bcd60e51b81526020600482015260166024820152757469746c652063616e206e6f7420626520656d70747960501b6044820152606401610732565b8351600003611fbc5760405162461bcd60e51b81526020600482015260176024820152766172746973742063616e206e6f7420626520656d70747960481b6044820152606401610732565b855160000361200c5760405162461bcd60e51b815260206004820152601c60248201527b66696e6765727072696e742063616e206e6f7420626520656d70747960201b6044820152606401610732565b600083116120685760405162461bcd60e51b815260206004820152602360248201527f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360448201526274203160e81b6064820152608401610732565b60008660405160200161207b9190612f53565b60408051601f1981840301815291815281516020928301206000818152601090935291206002018054919250906120b19061371f565b1590506121245760405162461bcd60e51b815260206004820152603b60248201527f616e20617274776f726b2077697468207468652073616d652066696e6765727060448201527a1c9a5b9d081a185cc8185b1c9958591e481c9959da5cdd195c9959602a1b6064820152608401610732565b6040805160c08101825287815260208082018890528183018a9052606082018790526080820186905260a08201859052600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802018490556000848152601090915291909120815182919081906121a39082613872565b50602082015160018201906121b89082613872565b50604082015160028201906121cd9082613872565b50606082015160038201556080820151600482015560a09091015160059091015560405182907f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089190600090a25050505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122828160400151611977565b61229e5760405162461bcd60e51b815260040161073290613a56565b6122b081600001518260400151611d33565b6122cc5760405162461bcd60e51b815260040161073290613976565b42816060015161012c6122df9190613a9a565b101561234a5760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56333a2074696d657374616d70604482015273206973206f76657220726563762077696e646f7760601b6064820152608401610732565b6000816000015182602001518360400151846060015160405160200161239794939291906001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b6040516020818303038152906040528051906020012090506123cc81836000015184608001518560a001518660c00151612719565b61243e5760405162461bcd60e51b815260206004820152603d60248201527f466572616c66696c6545786869626974696f6e56333a20746865207472616e7360448201527f6665722072657175657374206973206e6f7420617574686f72697a65640000006064820152608401610732565b610a258260000151836020015184604001516040518060200160405280600081525061252f565b816001600160a01b0316836001600160a01b0316036124c25760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610732565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61253a848484611d92565b61254684848484612798565b6109245760405162461bcd60e51b815260040161073290613ac0565b600061256d8261109f565b905061257b81600084612661565b612586600083611909565b6001600160a01b03811660009081526003602052604081208054600192906125af908490613aad565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020613b99833981519152908390a45050565b60006001600160e01b031982166380ac58cd60e01b148061262857506001600160e01b03198216635b5e139f60e01b145b806105d657506301ffc9a760e01b6001600160e01b03198316146105d6565b610a25828260405180602001604052806000815250612899565b6001600160a01b0383166126bc576126b781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126df565b816001600160a01b0316836001600160a01b0316146126df576126df83826128cc565b6001600160a01b0382166126f6576107d381612969565b826001600160a01b0316826001600160a01b0316146107d3576107d38282612a18565b60008061277d612775886040517b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b6020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b848787612a5c565b6001600160a01b039081169087161491505095945050505050565b60006001600160a01b0384163b1561288e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127dc903390899088908890600401613b12565b6020604051808303816000875af1925050508015612817575060408051601f3d908101601f1916820190925261281491810190613b4f565b60015b612874573d808015612845576040519150601f19603f3d011682016040523d82523d6000602084013e61284a565b606091505b50805160000361286c5760405162461bcd60e51b815260040161073290613ac0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d8a565b506001949350505050565b6128a38383612a84565b6128b06000848484612798565b6107d35760405162461bcd60e51b815260040161073290613ac0565b600060016128d984611121565b6128e39190613aad565b600083815260076020526040902054909150808214612936576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061297b90600190613aad565b600083815260096020526040812054600880549394509092849081106129a3576129a3613931565b9060005260206000200154905080600883815481106129c4576129c4613931565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129fc576129fc613b6c565b6001900381819060005260206000200160009055905550505050565b6000612a2383611121565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000806000612a6d87878787612bb0565b91509150612a7a81612c93565b5095945050505050565b6001600160a01b038216612ada5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610732565b612ae381611977565b15612b2f5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610732565b612b3b60008383612661565b6001600160a01b0382166000908152600360205260408120805460019290612b64908490613a9a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020613b99833981519152908290a45050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b03831115612bdd5750600090506003612c8a565b8460ff16601b14158015612bf557508460ff16601c14155b15612c065750600090506004612c8a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612c5a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612c8357600060019250925050612c8a565b9150600090505b94509492505050565b6000816004811115612ca757612ca7613b82565b03612caf5750565b6001816004811115612cc357612cc3613b82565b03612d0b5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610732565b6002816004811115612d1f57612d1f613b82565b03612d6c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610732565b6003816004811115612d8057612d80613b82565b03612dd85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610732565b6004816004811115612dec57612dec613b82565b0361159d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610732565b508054612e509061371f565b6000825580601f10612e60575050565b601f01602090049060005260206000209081019061159d91905b80821115612e8e5760008155600101612e7a565b5090565b6001600160e01b03198116811461159d57600080fd5b600060208284031215612eba57600080fd5b8135612ec581612e92565b9392505050565b80356001600160a01b0381168114612ee357600080fd5b919050565b600060208284031215612efa57600080fd5b612ec582612ecc565b60005b83811015612f1e578181015183820152602001612f06565b50506000910152565b60008151808452612f3f816020860160208601612f03565b601f01601f19169290920160200192915050565b602081526000612ec56020830184612f27565b600060208284031215612f7857600080fd5b5035919050565b60008060408385031215612f9257600080fd5b612f9b83612ecc565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b0381118282101715612fe157612fe1612fa9565b60405290565b60405160c081016001600160401b0381118282101715612fe157612fe1612fa9565b60405160e081016001600160401b0381118282101715612fe157612fe1612fa9565b604051601f8201601f191681016001600160401b038111828210171561305357613053612fa9565b604052919050565b60006001600160401b0383111561307457613074612fa9565b613087601f8401601f191660200161302b565b905082815283838301111561309b57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126130c357600080fd5b612ec58383356020850161305b565b600080604083850312156130e557600080fd5b8235915060208301356001600160401b0381111561310257600080fd5b61310e858286016130b2565b9150509250929050565b60006001600160401b0382111561313157613131612fa9565b5060051b60200190565b6000602080838503121561314e57600080fd5b82356001600160401b038082111561316557600080fd5b818501915085601f83011261317957600080fd5b813561318c61318782613118565b61302b565b81815260059190911b830184019084810190888311156131ab57600080fd5b8585015b8381101561324f578035858111156131c75760008081fd5b860160a0818c03601f19018113156131df5760008081fd5b6131e7612fbf565b8983013581526040808401358b8301526060613204818601612ecc565b8284015260809150613217828601612ecc565b9083015291830135918883111561322e5760008081fd5b61323c8e8c858701016130b2565b90820152855250509186019186016131af565b5098975050505050505050565b60008060006060848603121561327157600080fd5b61327a84612ecc565b925061328860208501612ecc565b9150604084013590509250925092565b600080604083850312156132ab57600080fd5b50508035926020909101359150565b600060208083850312156132cd57600080fd5b82356001600160401b03808211156132e457600080fd5b818501915085601f8301126132f857600080fd5b813561330661318782613118565b81815260059190911b8301840190848101908883111561332557600080fd5b8585015b8381101561324f5780358581111561334057600080fd5b860160c0818c03601f190112156133575760008081fd5b61335f612fe7565b88820135878111156133715760008081fd5b61337f8d8b838601016130b2565b825250604080830135888111156133965760008081fd5b6133a48e8c838701016130b2565b8b84015250606080840135898111156133bd5760008081fd5b6133cb8f8d838801016130b2565b83850152506080915081840135818401525060a0808401358284015260c0840135818401525050808552505086830192508681019050613329565b60c08152600061341960c0830189612f27565b828103602084015261342b8189612f27565b9050828103604084015261343f8188612f27565b60608401969096525050608081019290925260a0909101529392505050565b828152604060208201526000611d8a6040830184612f27565b60006020828403121561348957600080fd5b81356001600160401b0381111561349f57600080fd5b611d8a848285016130b2565b600060208083850312156134be57600080fd5b82356001600160401b038111156134d457600080fd5b8301601f810185136134e557600080fd5b80356134f361318782613118565b81815260e0918202830184019184820191908884111561351257600080fd5b938501935b838510156135a25780858a03121561352f5760008081fd5b613537613009565b61354086612ecc565b815261354d878701612ecc565b8188015260408681013590820152606080870135908201526080808701359082015260a0808701359082015260c08087013560ff8116811461358f5760008081fd5b9082015283529384019391850191613517565b50979650505050505050565b600080604083850312156135c157600080fd5b6135ca83612ecc565b9150602083013580151581146135df57600080fd5b809150509250929050565b6000806000806080858703121561360057600080fd5b61360985612ecc565b935061361760208601612ecc565b92506040850135915060608501356001600160401b0381111561363957600080fd5b8501601f8101871361364a57600080fd5b6136598782356020840161305b565b91505092959194509250565b6000806040838503121561367857600080fd5b61368183612ecc565b9150610b1160208401612ecc565b600060208083850312156136a257600080fd5b82356001600160401b038111156136b857600080fd5b8301601f810185136136c957600080fd5b80356136d761318782613118565b81815260059190911b820183019083810190878311156136f657600080fd5b928401925b82841015613714578335825292840192908401906136fb565b979650505050505050565b600181811c9082168061373357607f821691505b60208210810361375357634e487b7160e01b600052602260045260246000fd5b50919050565b6000825161376b818460208701612f03565b9190910192915050565b6020808252601690820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b604082015260600190565b600081546137b28161371f565b600182811680156137ca57600181146137df5761380e565b60ff198416875282151583028701945061380e565b8560005260208060002060005b858110156138055781548a8201529084019082016137ec565b50505082870194505b5050505092915050565b6000612ec582846137a5565b601f8211156107d357600081815260208120601f850160051c8101602086101561384b5750805b601f850160051c820191505b8181101561386a57828155600101613857565b505050505050565b81516001600160401b0381111561388b5761388b612fa9565b61389f81613899845461371f565b84613824565b602080601f8311600181146138d457600084156138bc5750858301515b600019600386901b1c1916600185901b17855561386a565b600085815260208120601f198616915b82811015613903578886015182559484019460019091019084016138e4565b50858210156139215787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161396f5761396f613947565b5060010190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b80820281158282048414176105d6576105d6613947565b6000826139f857634e487b7160e01b600052601260045260246000fd5b500490565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b60008351613a41818460208801612f03565b613a4d818401856137a5565b95945050505050565b60208082526024908201527f4552433732313a20617274776f726b2065646974696f6e206973206e6f7420666040820152631bdd5b9960e21b606082015260800190565b808201808211156105d6576105d6613947565b818103818111156105d6576105d6613947565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b4590830184612f27565b9695505050505050565b600060208284031215613b6157600080fd5b8151612ec581612e92565b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052602160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122074d64a3179d968b3f0ad8d43fe8334ab7b18be8e7ed3f3b74510326c7f7b522164736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000002033606be146405870f92ea3144ef5057b9dea48000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000d46465633202d2054657374203100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000946465633546573743100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5743346245435554424d774e4c7345475346745442704344716a4e6b6f416f786372734a6b4648646643723600000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): FFV3 - Test 1
Arg [1] : symbol_ (string): FFV3Test1
Arg [2] : secondarySaleRoyaltyBPS_ (uint256): 1000
Arg [3] : royaltyPayoutAddress_ (address): 0x2033606bE146405870F92Ea3144ef5057b9DEA48
Arg [4] : contractURI_ (string): ipfs://QmWC4bECUTBMwNLsEGSFtTBpCDqjNkoAoxcrsJkFHdfCr6
Arg [5] : tokenBaseURI_ (string):
Arg [6] : isBurnable_ (bool): True
Arg [7] : isBridgeable_ (bool): True

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 0000000000000000000000002033606be146405870f92ea3144ef5057b9dea48
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [9] : 46465633202d2054657374203100000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [11] : 4646563354657374310000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [13] : 697066733a2f2f516d5743346245435554424d774e4c73454753467454427043
Arg [14] : 44716a4e6b6f416f786372734a6b464864664372360000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56834:15630:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59596:310;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;59596:310:0;;;;;;;;4078:102;;;;;;:::i;:::-;;:::i;:::-;;28296:100;;;:::i;:::-;;;;;;;:::i;29809:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;29809:171:0;1902:203:1;29326:417:0;;;;;;:::i;:::-;;:::i;62678:478::-;;;;;;:::i;:::-;;:::i;68742:430::-;;;;;;:::i;:::-;;:::i;42208:113::-;42296:10;:17;42208:113;;;6925:25:1;;;6913:2;6898:18;42208:113:0;6779:177:1;30509:336:0;;;;;;:::i;:::-;;:::i;65582:460::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7739:32:1;;;7721:51;;7803:2;7788:18;;7781:34;;;;7694:18;65582:460:0;7547:274:1;41876:256:0;;;;;;:::i;:::-;;:::i;56981:35::-;;;;;-1:-1:-1;;;;;56981:35:0;;;30916:185;;;;;;:::i;:::-;;:::i;61584:465::-;;;;;;:::i;:::-;;:::i;63352:300::-;;;;;;:::i;:::-;;:::i;58328:43::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;42398:233::-;;;;;;:::i;:::-;;:::i;58402:57::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;28007:222::-;;;;;;:::i;:::-;;:::i;57296:60::-;;;;;;;;;;;;;;;-1:-1:-1;;;57296:60:0;;;;;63962:252;;;;;;:::i;:::-;;:::i;27738:207::-;;;;;;:::i;:::-;;:::i;2788:103::-;;;:::i;57432:24::-;;;;;-1:-1:-1;;;57432:24:0;;;;;;57382:22;;;;;-1:-1:-1;;;57382:22:0;;;;;;2140:87;;;:::i;64871:116::-;;;;;;:::i;:::-;;:::i;28465:104::-;;;:::i;67032:259::-;;;;;;:::i;:::-;;:::i;30052:155::-;;;;;;:::i;:::-;;:::i;62318:286::-;;;;;;:::i;:::-;;:::i;31172:323::-;;;;;;:::i;:::-;;:::i;64303:508::-;;;;;;:::i;:::-;;:::i;3971:99::-;;;;;;:::i;:::-;;:::i;62131:108::-;62212:12;:19;62131:108;;65060:97;;;:::i;30278:164::-;;;;;;:::i;:::-;;:::i;57095:48::-;;;;;57205:49;;57248:6;57205:49;;3779:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3046:201;;;;;;:::i;:::-;;:::i;71400:810::-;;;;;;:::i;:::-;;:::i;63718:174::-;;;;;;:::i;:::-;63816:7;63848:29;;;:18;:29;;;;;:36;;63718:174;59596:310;59753:4;-1:-1:-1;;;;;;59795:50:0;;-1:-1:-1;;;59795:50:0;;:103;;;59862:36;59886:11;59862:23;:36::i;:::-;59775:123;59596:310;-1:-1:-1;;59596:310:0:o;4078:102::-;2026:13;:11;:13::i;:::-;-1:-1:-1;;;;;4154:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;4147:25;;-1:-1:-1;;4147:25:0::1;::::0;;4078:102::o;28296:100::-;28350:13;28383:5;28376:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28296:100;:::o;29809:171::-;29885:7;29905:23;29920:7;29905:14;:23::i;:::-;-1:-1:-1;29948:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29948:24:0;;29809:171::o;29326:417::-;29407:13;29423:23;29438:7;29423:14;:23::i;:::-;29407:39;;29471:5;-1:-1:-1;;;;;29465:11:0;:2;-1:-1:-1;;;;;29465:11:0;;29457:57;;;;-1:-1:-1;;;29457:57:0;;16257:2:1;29457:57:0;;;16239:21:1;16296:2;16276:18;;;16269:30;16335:34;16315:18;;;16308:62;-1:-1:-1;;;16386:18:1;;;16379:31;16427:19;;29457:57:0;;;;;;;;;765:10;-1:-1:-1;;;;;29549:21:0;;;;:62;;-1:-1:-1;29574:37:0;29591:5;765:10;30278:164;:::i;29574:37::-;29527:174;;;;-1:-1:-1;;;29527:174:0;;16659:2:1;29527:174:0;;;16641:21:1;16698:2;16678:18;;;16671:30;16737:34;16717:18;;;16710:62;16808:32;16788:18;;;16781:60;16858:19;;29527:174:0;16457:426:1;29527:174:0;29714:21;29723:2;29727:7;29714:8;:21::i;:::-;29396:347;29326:417;;:::o;62678:478::-;3906:10;3897:20;;;;:8;:20;;;;;;;;;:45;;;3935:7;:5;:7::i;:::-;-1:-1:-1;;;;;3921:21:0;:10;-1:-1:-1;;;;;3921:21:0;;3897:45;3889:54;;;;;;62821:16:::1;62829:7;62821;:16::i;:::-;62813:57;;;::::0;-1:-1:-1;;;62813:57:0;;17090:2:1;62813:57:0::1;::::0;::::1;17072:21:1::0;17129:2;17109:18;;;17102:30;-1:-1:-1;;;17148:18:1;;;17141:58;17216:18;;62813:57:0::1;16888:352:1::0;62813:57:0::1;62890:18;62909:7;62890:27;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;62889:28;62881:63;;;;-1:-1:-1::0;;;62881:63:0::1;;;;;;;:::i;:::-;62957:30;62990:24:::0;;;:15:::1;:24;::::0;;;;;;63032:35;;:18:::1;::::0;:35:::1;::::0;63051:15:::1;::::0;::::1;::::0;63032:35:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;63025:42;;-1:-1:-1;;63025:42:0::1;::::0;;;;63078:18:::1;::::0;:27:::1;::::0;63097:7;;63078:27:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:34;;;::::1;;-1:-1:-1::0;;63078:34:0;;::::1;::::0;;;::::1;::::0;;;63123:15;::::1;:25;63141:7:::0;63123:15;:25:::1;:::i;:::-;;62802:354;62678:478:::0;;:::o;68742:430::-;3906:10;3897:20;;;;:8;:20;;;;;;;;;:45;;;3935:7;:5;:7::i;:::-;-1:-1:-1;;;;;3921:21:0;:10;-1:-1:-1;;;;;3921:21:0;;3897:45;3889:54;;;;;;68863:9:::1;68858:307;68882:11;:18;68878:1;:22;68858:307;;;68922:231;68953:11;68965:1;68953:14;;;;;;;;:::i;:::-;;;;;;;:24;;;68996:11;69008:1;68996:14;;;;;;;;:::i;:::-;;;;;;;:22;;;69037:11;69049:1;69037:14;;;;;;;;:::i;:::-;;;;;;;:21;;;69077:11;69089:1;69077:14;;;;;;;;:::i;:::-;;;;;;;:20;;;69116:11;69128:1;69116:14;;;;;;;;:::i;:::-;;;;;;;:22;;;68922:12;:231::i;:::-;68902:3:::0;::::1;::::0;::::1;:::i;:::-;;;;68858:307;;;;68742:430:::0;:::o;30509:336::-;30704:41;765:10;30737:7;30704:18;:41::i;:::-;30696:100;;;;-1:-1:-1;;;30696:100:0;;;;;;;:::i;:::-;30809:28;30819:4;30825:2;30829:7;30809:9;:28::i;65582:460::-;65707:16;65725:21;65786:16;65794:7;65786;:16::i;:::-;65764:115;;;;-1:-1:-1;;;65764:115:0;;22044:2:1;65764:115:0;;;22026:21:1;22083:2;22063:18;;;22056:30;22122:34;22102:18;;;22095:62;-1:-1:-1;;;22173:18:1;;;22166:47;22230:19;;65764:115:0;21842:413:1;65764:115:0;65903:20;;-1:-1:-1;;;;;65903:20:0;;-1:-1:-1;57248:6:0;65966:35;65978:23;65966:9;:35;:::i;:::-;65965:69;;;;:::i;:::-;65936:98;;65582:460;;;;;:::o;41876:256::-;41973:7;42009:23;42026:5;42009:16;:23::i;:::-;42001:5;:31;41993:87;;;;-1:-1:-1;;;41993:87:0;;22857:2:1;41993:87:0;;;22839:21:1;22896:2;22876:18;;;22869:30;22935:34;22915:18;;;22908:62;-1:-1:-1;;;22986:18:1;;;22979:41;23037:19;;41993:87:0;22655:407:1;41993:87:0;-1:-1:-1;;;;;;42098:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41876:256::o;30916:185::-;31054:39;31071:4;31077:2;31081:7;31054:39;;;;;;;;;;;;:16;:39::i;61584:465::-;3906:10;3897:20;;;;:8;:20;;;;;;;;;:45;;;3935:7;:5;:7::i;:::-;-1:-1:-1;;;;;3921:21:0;:10;-1:-1:-1;;;;;3921:21:0;;3897:45;3889:54;;;;;;61699:9:::1;61694:348;61718:9;:16;61714:1;:20;61694:348;;;61756:274;61789:9;61799:1;61789:12;;;;;;;;:::i;:::-;;;;;;;:24;;;61832:9;61842:1;61832:12;;;;;;;;:::i;:::-;;;;;;;:18;;;61869:9;61879:1;61869:12;;;;;;;;:::i;:::-;;;;;;;:23;;;61911:9;61921:1;61911:12;;;;;;;;:::i;:::-;;;;;;;:24;;;61954:9;61964:1;61954:12;;;;;;;;:::i;:::-;;;;;;;:21;;;61994:9;62004:1;61994:12;;;;;;;;:::i;:::-;;;;;;;:21;;;61756:14;:274::i;:::-;61736:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61694:348;;63352:300:::0;3906:10;3897:20;;;;:8;:20;;;;;;;;;:45;;;3935:7;:5;:7::i;:::-;-1:-1:-1;;;;;3921:21:0;:10;-1:-1:-1;;;;;3921:21:0;;3897:45;3889:54;;;;;;-1:-1:-1;;;;;63496:35:0;::::1;63474:115;;;::::0;-1:-1:-1;;;63474:115:0;;23269:2:1;63474:115:0::1;::::0;::::1;23251:21:1::0;23308:2;23288:18;;;23281:30;23347:32;23327:18;;;23320:60;23397:18;;63474:115:0::1;23067:354:1::0;63474:115:0::1;63600:20;:44:::0;;-1:-1:-1;;;;;;63600:44:0::1;-1:-1:-1::0;;;;;63600:44:0;;;::::1;::::0;;;::::1;::::0;;63352:300::o;58328:43::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42398:233::-;42473:7;42509:30;42296:10;:17;;42208:113;42509:30;42501:5;:38;42493:95;;;;-1:-1:-1;;;42493:95:0;;23628:2:1;42493:95:0;;;23610:21:1;23667:2;23647:18;;;23640:30;23706:34;23686:18;;;23679:62;-1:-1:-1;;;23757:18:1;;;23750:42;23809:19;;42493:95:0;23426:408:1;42493:95:0;42606:10;42617:5;42606:17;;;;;;;;:::i;:::-;;;;;;;;;42599:24;;42398:233;;;:::o;58402:57::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28007:222::-;28079:7;28115:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28115:16:0;;28142:56;;;;-1:-1:-1;;;28142:56:0;;;;;;;:::i;63962:252::-;64078:7;63848:29;;;:18;:29;;;;;:36;64111:5;:40;64103:49;;;;;;64170:29;;;;:18;:29;;;;;:36;;64200:5;;64170:36;;;;;;:::i;:::-;;;;;;;;;64163:43;;63962:252;;;;:::o;27738:207::-;27810:7;-1:-1:-1;;;;;27838:19:0;;27830:73;;;;-1:-1:-1;;;27830:73:0;;24394:2:1;27830:73:0;;;24376:21:1;24433:2;24413:18;;;24406:30;24472:34;24452:18;;;24445:62;-1:-1:-1;;;24523:18:1;;;24516:39;24572:19;;27830:73:0;24192:405:1;27830:73:0;-1:-1:-1;;;;;;27921:16:0;;;;;:9;:16;;;;;;;27738:207::o;2788:103::-;2026:13;:11;:13::i;:::-;2853:30:::1;2880:1;2853:18;:30::i;:::-;2788:103::o:0;2140:87::-;2213:6;;-1:-1:-1;;;;;2213:6:0;;2140:87::o;64871:116::-;3906:10;3897:20;;;;:8;:20;;;;;;;;;:45;;;3935:7;:5;:7::i;:::-;-1:-1:-1;;;;;3921:21:0;:10;-1:-1:-1;;;;;3921:21:0;;3897:45;3889:54;;;;;;64955:13:::1;:24;64971:8:::0;64955:13;:24:::1;:::i;28465:104::-:0;28521:13;28554:7;28547:14;;;;;:::i;67032:259::-;3906:10;3897:20;;;;:8;:20;;;;;;;;;:45;;;3935:7;:5;:7::i;:::-;-1:-1:-1;;;;;3921:21:0;:10;-1:-1:-1;;;;;3921:21:0;;3897:45;3889:54;;;;;;67170:9:::1;67165:119;67189:15;:22;67185:1;:26;67165:119;;;67233:39;67253:15;67269:1;67253:18;;;;;;;;:::i;:::-;;;;;;;67233:19;:39::i;:::-;67213:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67165:119;;30052:155:::0;30147:52;765:10;30180:8;30190;30147:18;:52::i;62318:286::-;62425:7;62480:15;62212:12;:19;;62131:108;62480:15;62472:5;:23;62450:109;;;;-1:-1:-1;;;62450:109:0;;24804:2:1;62450:109:0;;;24786:21:1;24843:2;24823:18;;;24816:30;24882:34;24862:18;;;24855:62;-1:-1:-1;;;24933:18:1;;;24926:34;24977:19;;62450:109:0;24602:400:1;62450:109:0;62577:12;62590:5;62577:19;;;;;;;;:::i;31172:323::-;31346:41;765:10;31379:7;31346:18;:41::i;:::-;31338:100;;;;-1:-1:-1;;;31338:100:0;;;;;;;:::i;:::-;31449:38;31463:4;31469:2;31473:7;31482:4;31449:13;:38::i;64303:508::-;64421:13;64474:16;64482:7;64474;:16::i;:::-;64452:113;;;;-1:-1:-1;;;64452:113:0;;25209:2:1;64452:113:0;;;25191:21:1;25248:2;25228:18;;;25221:30;25287:34;25267:18;;;25260:62;-1:-1:-1;;;25338:18:1;;;25331:45;25393:19;;64452:113:0;25007:411:1;64452:113:0;64578:21;64602:13;64578:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64636:7;64630:21;64655:1;64630:26;64626:78;;-1:-1:-1;64673:19:0;;;;;;;;;;;;-1:-1:-1;;;64673:19:0;;;;64626:78;64760:7;64769:15;:24;64785:7;64769:24;;;;;;;;;;;:32;;64743:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64716:87;;;64303:508;;;:::o;3971:99::-;2026:13;:11;:13::i;:::-;-1:-1:-1;;;;;4037:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;4037:25:0::1;4058:4;4037:25;::::0;;3971:99::o;65060:97::-;65104:13;65137:12;65130:19;;;;;:::i;30278:164::-;-1:-1:-1;;;;;30399:25:0;;;30375:4;30399:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30278:164::o;3046:201::-;2026:13;:11;:13::i;:::-;-1:-1:-1;;;;;3135:22:0;::::1;3127:73;;;::::0;-1:-1:-1;;;3127:73:0;;25999:2:1;3127:73:0::1;::::0;::::1;25981:21:1::0;26038:2;26018:18;;;26011:30;26077:34;26057:18;;;26050:62;-1:-1:-1;;;26128:18:1;;;26121:36;26174:19;;3127:73:0::1;25797:402:1::0;3127:73:0::1;3211:28;3230:8;3211:18;:28::i;:::-;3046:201:::0;:::o;71400:810::-;71478:10;;-1:-1:-1;;;71478:10:0;;;;71470:68;;;;-1:-1:-1;;;71470:68:0;;26406:2:1;71470:68:0;;;26388:21:1;26445:2;26425:18;;;26418:30;26484:34;26464:18;;;26457:62;-1:-1:-1;;;26535:18:1;;;26528:43;26588:19;;71470:68:0;26204:409:1;71470:68:0;71556:9;71551:652;71575:11;:18;71571:1;:22;71551:652;;;71641:23;71649:11;71661:1;71649:14;;;;;;;;:::i;:::-;;;;;;;71641:7;:23::i;:::-;71615:121;;;;-1:-1:-1;;;71615:121:0;;;;;;;:::i;:::-;71777:48;765:10;71810:11;71822:1;71810:14;;;;;;;;:::i;:::-;;;;;;;71777:18;:48::i;:::-;71751:156;;;;-1:-1:-1;;;71751:156:0;;;;;;;:::i;:::-;71922:29;71954:15;:31;71970:11;71982:1;71970:14;;;;;;;;:::i;:::-;;;;;;;71954:31;;;;;;;;;;;71922:63;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72009:18;72028:7;:15;;;72009:35;;;;;;:::i;:::-;;;;;;;;;;;;;;72002:42;;-1:-1:-1;;72002:42:0;;;72082:14;;72066:15;;72009:35;;72082:11;;72094:1;;72082:14;;;;;;:::i;:::-;;;;;;;72066:31;;;;;;;;;;;;72059:38;;;;;;;;;;;;;;:::i;:::-;;;72114:21;72120:11;72132:1;72120:14;;;;;;;;:::i;:::-;;;;;;;72114:5;:21::i;:::-;72176:11;72188:1;72176:14;;;;;;;;:::i;:::-;;;;;;;72157:34;;;;;;;;;;-1:-1:-1;71595:3:0;;;;:::i;:::-;;;;71551:652;;41568:224;41670:4;-1:-1:-1;;;;;;41694:50:0;;-1:-1:-1;;;41694:50:0;;:90;;;41748:36;41772:11;41748:23;:36::i;2305:132::-;765:10;2369:7;:5;:7::i;:::-;-1:-1:-1;;;;;2369:23:0;;2361:68;;;;-1:-1:-1;;;2361:68:0;;27225:2:1;2361:68:0;;;27207:21:1;;;27244:18;;;27237:30;27303:34;27283:18;;;27276:62;27355:18;;2361:68:0;27023:356:1;37784:135:0;37866:16;37874:7;37866;:16::i;:::-;37858:53;;;;-1:-1:-1;;;37858:53:0;;;;;;;:::i;37063:174::-;37138:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37138:29:0;-1:-1:-1;;;;;37138:29:0;;;;;;;;:24;;37192:23;37138:24;37192:14;:23::i;:::-;-1:-1:-1;;;;;37183:46:0;;;;;;;;;;;37063:174;;:::o;33002:127::-;33067:4;33091:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33091:16:0;:30;;;33002:127::o;69572:1721::-;69907:1;69872:20;;;:8;:20;;;;;:32;;;69850:129;;;;-1:-1:-1;;;69850:129:0;;27586:2:1;69850:129:0;;;27568:21:1;27625:2;27605:18;;;27598:30;27664:34;27644:18;;;27637:62;-1:-1:-1;;;27715:18:1;;;27708:41;27766:19;;69850:129:0;27384:407:1;69850:129:0;70288:20;;;;:8;:20;;;;;:29;;;;70235;;;;70179:32;;;;;70288:29;;70179:85;;;:::i;:::-;:138;;;;:::i;:::-;70145:14;:172;70123:298;;;;-1:-1:-1;;;70123:298:0;;28128:2:1;70123:298:0;;;28110:21:1;28167:2;28147:18;;;28140:30;28206:34;28186:18;;;28179:62;28277:34;28257:18;;;28250:62;-1:-1:-1;;;28328:19:1;;;28321:43;28381:19;;70123:298:0;27926:480:1;70123:298:0;-1:-1:-1;;;;;70440:21:0;;70432:56;;;;-1:-1:-1;;;70432:56:0;;28613:2:1;70432:56:0;;;28595:21:1;28652:2;28632:18;;;28625:30;-1:-1:-1;;;28671:18:1;;;28664:52;28733:18;;70432:56:0;28411:346:1;70432:56:0;-1:-1:-1;;;;;70507:20:0;;70499:54;;;;-1:-1:-1;;;70499:54:0;;28964:2:1;70499:54:0;;;28946:21:1;29003:2;28983:18;;;28976:30;-1:-1:-1;;;29022:18:1;;;29015:51;29083:18;;70499:54:0;28762:345:1;70499:54:0;70573:18;70592:8;70573:28;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;70572:29;70564:64;;;;-1:-1:-1;;;70564:64:0;;;;;;;:::i;:::-;70641:17;70661:27;70674:14;70661:10;:27;:::i;:::-;70721:26;;;;:15;:26;;;;;:36;70641:47;;-1:-1:-1;70721:41:0;70699:137;;;;-1:-1:-1;;;70699:137:0;;29314:2:1;70699:137:0;;;29296:21:1;29353:2;29333:18;;;29326:30;29392:34;29372:18;;;29365:62;-1:-1:-1;;;29443:18:1;;;29436:44;29497:19;;70699:137:0;29112:410:1;70699:137:0;70881:35;;;;;;;;;;;;;;;;;;70849:29;70929:26;;;:15;:26;;;;;;:36;;;;;;70881:35;;;;70929:36;;;;;;;;:::i;:::-;-1:-1:-1;;;70976:30:0;;;;:18;:30;;;;;;;;:46;;;;;;;;;;;;;;;;;;;;;71035:28;:18;;:28;;71054:8;;71035:28;:::i;:::-;;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;71035:35:0;;;;;;;;;71083:29;71093:7;71102:9;71083;:29::i;:::-;71140:6;-1:-1:-1;;;;;71129:17:0;:7;-1:-1:-1;;;;;71129:17:0;;71125:95;;71163:45;71177:7;71186:6;71194:9;71163:45;;;;;;;;;;;;:13;:45::i;:::-;71275:9;71263:10;71255:6;-1:-1:-1;;;;;71237:48:0;;;;;;;;;;;69755:1538;;69572:1721;;;;;:::o;33296:264::-;33389:4;33406:13;33422:23;33437:7;33422:14;:23::i;:::-;33406:39;;33475:5;-1:-1:-1;;;;;33464:16:0;:7;-1:-1:-1;;;;;33464:16:0;;:52;;;;33484:32;33501:5;33508:7;33484:16;:32::i;:::-;33464:87;;;;33544:7;-1:-1:-1;;;;;33520:31:0;:20;33532:7;33520:11;:20::i;:::-;-1:-1:-1;;;;;33520:31:0;;33464:87;33456:96;33296:264;-1:-1:-1;;;;33296:264:0:o;36319:625::-;36478:4;-1:-1:-1;;;;;36451:31:0;:23;36466:7;36451:14;:23::i;:::-;-1:-1:-1;;;;;36451:31:0;;36443:81;;;;-1:-1:-1;;;36443:81:0;;29729:2:1;36443:81:0;;;29711:21:1;29768:2;29748:18;;;29741:30;29807:34;29787:18;;;29780:62;-1:-1:-1;;;29858:18:1;;;29851:35;29903:19;;36443:81:0;29527:401:1;36443:81:0;-1:-1:-1;;;;;36543:16:0;;36535:65;;;;-1:-1:-1;;;36535:65:0;;30135:2:1;36535:65:0;;;30117:21:1;30174:2;30154:18;;;30147:30;30213:34;30193:18;;;30186:62;-1:-1:-1;;;30264:18:1;;;30257:34;30308:19;;36535:65:0;29933:400:1;36535:65:0;36613:39;36634:4;36640:2;36644:7;36613:20;:39::i;:::-;36717:29;36734:1;36738:7;36717:8;:29::i;:::-;-1:-1:-1;;;;;36759:15:0;;;;;;:9;:15;;;;;:20;;36778:1;;36759:15;:20;;36778:1;;36759:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36790:13:0;;;;;;:9;:13;;;;;:18;;36807:1;;36790:13;:18;;36807:1;;36790:18;:::i;:::-;;;;-1:-1:-1;;36819:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36819:21:0;-1:-1:-1;;;;;36819:21:0;;;;;;;;;36858:27;;36819:16;;36858:27;;;;-1:-1:-1;;;;;;;;;;;36858:27:0;;29396:347;29326:417;;:::o;60206:1240::-;60455:5;60449:19;60472:1;60449:24;60441:59;;;;-1:-1:-1;;;60441:59:0;;30673:2:1;60441:59:0;;;30655:21:1;30712:2;30692:18;;;30685:30;-1:-1:-1;;;30731:18:1;;;30724:52;30793:18;;60441:59:0;30471:346:1;60441:59:0;60525:10;60519:24;60547:1;60519:29;60511:65;;;;-1:-1:-1;;;60511:65:0;;31024:2:1;60511:65:0;;;31006:21:1;31063:2;31043:18;;;31036:30;-1:-1:-1;;;31082:18:1;;;31075:53;31145:18;;60511:65:0;30822:347:1;60511:65:0;60601:11;60595:25;60624:1;60595:30;60587:71;;;;-1:-1:-1;;;60587:71:0;;31376:2:1;60587:71:0;;;31358:21:1;31415:2;31395:18;;;31388:30;-1:-1:-1;;;31434:18:1;;;31427:58;31502:18;;60587:71:0;31174:352:1;60587:71:0;60691:1;60677:11;:15;60669:63;;;;-1:-1:-1;;;60669:63:0;;31733:2:1;60669:63:0;;;31715:21:1;31772:2;31752:18;;;31745:30;31811:34;31791:18;;;31784:62;-1:-1:-1;;;31862:18:1;;;31855:33;31905:19;;60669:63:0;31531:399:1;60669:63:0;60745:17;60794:11;60783:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;60783:23:0;;;;;;;;;60773:34;;60783:23;60773:34;;;;60765:43;60917:19;;;:8;:19;;;;;:31;;60911:45;;60773:34;;-1:-1:-1;60917:31:0;60911:45;;;:::i;:::-;:50;;-1:-1:-1;60889:159:0;;;;-1:-1:-1;;;60889:159:0;;32137:2:1;60889:159:0;;;32119:21:1;32176:2;32156:18;;;32149:30;32215:34;32195:18;;;32188:62;-1:-1:-1;;;32266:18:1;;;32259:57;32333:19;;60889:159:0;31935:423:1;60889:159:0;61086:232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61331:12;:28;;;;;;;;;;;;;61061:22;61370:19;;;:8;:19;;;;;;;:29;;61086:232;;61370:19;;;:29;;:19;:29;:::i;:::-;-1:-1:-1;61370:29:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;61370:29:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;61370:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;61417:21;;61428:9;;61417:21;;-1:-1:-1;;61417:21:0;60430:1016;;60206:1240;;;;;;:::o;3407:191::-;3500:6;;;-1:-1:-1;;;;;3517:17:0;;;-1:-1:-1;;;;;;3517:17:0;;;;;;;3550:40;;3500:6;;;3517:17;3500:6;;3550:40;;3481:16;;3550:40;3470:128;3407:191;:::o;67299:1312::-;67427:31;67435:14;:22;;;67427:7;:31::i;:::-;67405:117;;;;-1:-1:-1;;;67405:117:0;;;;;;;:::i;:::-;67557:63;67576:14;:19;;;67597:14;:22;;;67557:18;:63::i;:::-;67535:159;;;;-1:-1:-1;;;67535:159:0;;;;;;;:::i;:::-;67769:15;67729:14;:24;;;67756:9;67729:36;;;;:::i;:::-;:55;;67707:157;;;;-1:-1:-1;;;67707:157:0;;32565:2:1;67707:157:0;;;32547:21:1;32604:2;32584:18;;;32577:30;32643:34;32623:18;;;32616:62;-1:-1:-1;;;32694:18:1;;;32687:50;32754:19;;67707:157:0;32363:416:1;67707:157:0;67877:19;67952:14;:19;;;67990:14;:17;;;68026:14;:22;;;68067:14;:24;;;67923:183;;;;;;;;;;-1:-1:-1;;;;;33071:15:1;;;33053:34;;33123:15;;;;33118:2;33103:18;;33096:43;33170:2;33155:18;;33148:34;33213:2;33198:18;;33191:34;;;;33002:3;32987:19;;32784:447;67923:183:0;;;;;;;;;;;;;67899:218;;;;;;67877:240;;68152:205;68185:11;68215:14;:19;;;68253:14;:17;;;68289:14;:17;;;68325:14;:17;;;68152:14;:205::i;:::-;68130:316;;;;-1:-1:-1;;;68130:316:0;;33438:2:1;68130:316:0;;;33420:21:1;33477:2;33457:18;;;33450:30;33516:34;33496:18;;;33489:62;33587:31;33567:18;;;33560:59;33636:19;;68130:316:0;33236:425:1;68130:316:0;68459:144;68487:14;:19;;;68521:14;:17;;;68553:14;:22;;;68459:144;;;;;;;;;;;;:13;:144::i;37380:315::-;37535:8;-1:-1:-1;;;;;37526:17:0;:5;-1:-1:-1;;;;;37526:17:0;;37518:55;;;;-1:-1:-1;;;37518:55:0;;33868:2:1;37518:55:0;;;33850:21:1;33907:2;33887:18;;;33880:30;-1:-1:-1;;;33926:18:1;;;33919:55;33991:18;;37518:55:0;33666:349:1;37518:55:0;-1:-1:-1;;;;;37584:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37584:46:0;;;;;;;;;;37646:41;;540::1;;;37646::0;;513:18:1;37646:41:0;;;;;;;37380:315;;;:::o;32376:313::-;32532:28;32542:4;32548:2;32552:7;32532:9;:28::i;:::-;32579:47;32602:4;32608:2;32612:7;32621:4;32579:22;:47::i;:::-;32571:110;;;;-1:-1:-1;;;32571:110:0;;;;;;;:::i;35562:420::-;35622:13;35638:23;35653:7;35638:14;:23::i;:::-;35622:39;;35674:48;35695:5;35710:1;35714:7;35674:20;:48::i;:::-;35763:29;35780:1;35784:7;35763:8;:29::i;:::-;-1:-1:-1;;;;;35805:16:0;;;;;;:9;:16;;;;;:21;;35825:1;;35805:16;:21;;35825:1;;35805:21;:::i;:::-;;;;-1:-1:-1;;35844:16:0;;;;:7;:16;;;;;;35837:23;;-1:-1:-1;;;;;;35837:23:0;;;35878:36;35852:7;;35844:16;-1:-1:-1;;;;;35878:36:0;;;-1:-1:-1;;;;;;;;;;;35878:36:0;35844:16;;35878:36;68858:307:::1;68742:430:::0;:::o;27369:305::-;27471:4;-1:-1:-1;;;;;;27508:40:0;;-1:-1:-1;;;27508:40:0;;:105;;-1:-1:-1;;;;;;;27565:48:0;;-1:-1:-1;;;27565:48:0;27508:105;:158;;;-1:-1:-1;;;;;;;;;;16613:40:0;;;27630:36;16504:157;33902:110;33978:26;33988:2;33992:7;33978:26;;;;;;;;;;;;:9;:26::i;43244:589::-;-1:-1:-1;;;;;43450:18:0;;43446:187;;43485:40;43517:7;44660:10;:17;;44633:24;;;;:15;:24;;;;;:44;;;44688:24;;;;;;;;;;;;44556:164;43485:40;43446:187;;;43555:2;-1:-1:-1;;;;;43547:10:0;:4;-1:-1:-1;;;;;43547:10:0;;43543:90;;43574:47;43607:4;43613:7;43574:32;:47::i;:::-;-1:-1:-1;;;;;43647:16:0;;43643:183;;43680:45;43717:7;43680:36;:45::i;43643:183::-;43753:4;-1:-1:-1;;;;;43747:10:0;:2;-1:-1:-1;;;;;43747:10:0;;43743:83;;43774:40;43802:2;43806:7;43774:27;:40::i;66502:371::-;66669:4;66686:14;66703:128;66731:38;66760:8;55582:58;;-1:-1:-1;;;55582:58:0;;;35549:80:1;35645:12;;;35638:28;;;55449:7:0;;35682:12:1;;55582:58:0;;;;;;;;;;;;55572:69;;;;;;55565:76;;55380:269;;;;66731:38;66784:2;66801;66818;66703:13;:128::i;:::-;-1:-1:-1;;;;;66849:16:0;;;;;;;;-1:-1:-1;;66502:371:0;;;;;;;:::o;38483:853::-;38637:4;-1:-1:-1;;;;;38658:13:0;;5721:19;:23;38654:675;;38694:71;;-1:-1:-1;;;38694:71:0;;-1:-1:-1;;;;;38694:36:0;;;;;:71;;765:10;;38745:4;;38751:7;;38760:4;;38694:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38694:71:0;;;;;;;;-1:-1:-1;;38694:71:0;;;;;;;;;;;;:::i;:::-;;;38690:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38935:6;:13;38952:1;38935:18;38931:328;;38978:60;;-1:-1:-1;;;38978:60:0;;;;;;;:::i;38931:328::-;39209:6;39203:13;39194:6;39190:2;39186:15;39179:38;38690:584;-1:-1:-1;;;;;;38816:51:0;-1:-1:-1;;;38816:51:0;;-1:-1:-1;38809:58:0;;38654:675;-1:-1:-1;39313:4:0;38483:853;;;;;;:::o;34239:319::-;34368:18;34374:2;34378:7;34368:5;:18::i;:::-;34419:53;34450:1;34454:2;34458:7;34467:4;34419:22;:53::i;:::-;34397:153;;;;-1:-1:-1;;;34397:153:0;;;;;;;:::i;45347:988::-;45613:22;45663:1;45638:22;45655:4;45638:16;:22::i;:::-;:26;;;;:::i;:::-;45675:18;45696:26;;;:17;:26;;;;;;45613:51;;-1:-1:-1;45829:28:0;;;45825:328;;-1:-1:-1;;;;;45896:18:0;;45874:19;45896:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45947:30;;;;;;:44;;;46064:30;;:17;:30;;;;;:43;;;45825:328;-1:-1:-1;46249:26:0;;;;:17;:26;;;;;;;;46242:33;;;-1:-1:-1;;;;;46293:18:0;;;;;:12;:18;;;;;:34;;;;;;;46286:41;45347:988::o;46630:1079::-;46908:10;:17;46883:22;;46908:21;;46928:1;;46908:21;:::i;:::-;46940:18;46961:24;;;:15;:24;;;;;;47334:10;:26;;46883:46;;-1:-1:-1;46961:24:0;;46883:46;;47334:26;;;;;;:::i;:::-;;;;;;;;;47312:48;;47398:11;47373:10;47384;47373:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47478:28;;;:15;:28;;;;;;;:41;;;47650:24;;;;;47643:31;47685:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46701:1008;;;46630:1079;:::o;44134:221::-;44219:14;44236:20;44253:2;44236:16;:20::i;:::-;-1:-1:-1;;;;;44267:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44312:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44134:221:0:o;54801:279::-;54929:7;54950:17;54969:18;54991:25;55002:4;55008:1;55011;55014;54991:10;:25::i;:::-;54949:67;;;;55027:18;55039:5;55027:11;:18::i;:::-;-1:-1:-1;55063:9:0;54801:279;-1:-1:-1;;;;;54801:279:0:o;34894:439::-;-1:-1:-1;;;;;34974:16:0;;34966:61;;;;-1:-1:-1;;;34966:61:0;;35907:2:1;34966:61:0;;;35889:21:1;;;35926:18;;;35919:30;35985:34;35965:18;;;35958:62;36037:18;;34966:61:0;35705:356:1;34966:61:0;35047:16;35055:7;35047;:16::i;:::-;35046:17;35038:58;;;;-1:-1:-1;;;35038:58:0;;36268:2:1;35038:58:0;;;36250:21:1;36307:2;36287:18;;;36280:30;-1:-1:-1;;;36326:18:1;;;36319:58;36394:18;;35038:58:0;36066:352:1;35038:58:0;35109:45;35138:1;35142:2;35146:7;35109:20;:45::i;:::-;-1:-1:-1;;;;;35167:13:0;;;;;;:9;:13;;;;;:18;;35184:1;;35167:13;:18;;35184:1;;35167:18;:::i;:::-;;;;-1:-1:-1;;35196:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35196:21:0;-1:-1:-1;;;;;35196:21:0;;;;;;;;35235:33;;35196:16;;;-1:-1:-1;;;;;;;;;;;35235:33:0;35196:16;;35235:33;68858:307:::1;68742:430:::0;:::o;53030:1632::-;53161:7;;-1:-1:-1;;;;;54082:79:0;;54078:163;;;-1:-1:-1;54194:1:0;;-1:-1:-1;54198:30:0;54178:51;;54078:163;54255:1;:7;;54260:2;54255:7;;:18;;;;;54266:1;:7;;54271:2;54266:7;;54255:18;54251:102;;;-1:-1:-1;54306:1:0;;-1:-1:-1;54310:30:0;54290:51;;54251:102;54467:24;;;54450:14;54467:24;;;;;;;;;36650:25:1;;;36723:4;36711:17;;36691:18;;;36684:45;;;;36745:18;;;36738:34;;;36788:18;;;36781:34;;;54467:24:0;;36622:19:1;;54467:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54467:24:0;;-1:-1:-1;;54467:24:0;;;-1:-1:-1;;;;;;;54506:20:0;;54502:103;;54559:1;54563:29;54543:50;;;;;;;54502:103;54625:6;-1:-1:-1;54633:20:0;;-1:-1:-1;53030:1632:0;;;;;;;;:::o;48300:643::-;48378:20;48369:5;:29;;;;;;;;:::i;:::-;;48365:571;;48300:643;:::o;48365:571::-;48476:29;48467:5;:38;;;;;;;;:::i;:::-;;48463:473;;48522:34;;-1:-1:-1;;;48522:34:0;;37160:2:1;48522:34:0;;;37142:21:1;37199:2;37179:18;;;37172:30;-1:-1:-1;;;37218:18:1;;;37211:54;37282:18;;48522:34:0;36958:348:1;48463:473:0;48587:35;48578:5;:44;;;;;;;;:::i;:::-;;48574:362;;48639:41;;-1:-1:-1;;;48639:41:0;;37513:2:1;48639:41:0;;;37495:21:1;37552:2;37532:18;;;37525:30;37591:33;37571:18;;;37564:61;37642:18;;48639:41:0;37311:355:1;48574:362:0;48711:30;48702:5;:39;;;;;;;;:::i;:::-;;48698:238;;48758:44;;-1:-1:-1;;;48758:44:0;;37873:2:1;48758:44:0;;;37855:21:1;37912:2;37892:18;;;37885:30;37951:34;37931:18;;;37924:62;-1:-1:-1;;;38002:18:1;;;37995:32;38044:19;;48758:44:0;37671:398:1;48698:238:0;48833:30;48824:5;:39;;;;;;;;:::i;:::-;;48820:116;;48880:44;;-1:-1:-1;;;48880:44:0;;38276:2:1;48880:44:0;;;38258:21:1;38315:2;38295:18;;;38288:30;38354:34;38334:18;;;38327:62;-1:-1:-1;;;38405:18:1;;;38398:32;38447:19;;48880:44:0;38074:398:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;961:250::-;1046:1;1056:113;1070:6;1067:1;1064:13;1056:113;;;1146:11;;;1140:18;1127:11;;;1120:39;1092:2;1085:10;1056:113;;;-1:-1:-1;;1203:1:1;1185:16;;1178:27;961:250::o;1216:271::-;1258:3;1296:5;1290:12;1323:6;1318:3;1311:19;1339:76;1408:6;1401:4;1396:3;1392:14;1385:4;1378:5;1374:16;1339:76;:::i;:::-;1469:2;1448:15;-1:-1:-1;;1444:29:1;1435:39;;;;1476:4;1431:50;;1216:271;-1:-1:-1;;1216:271:1:o;1492:220::-;1641:2;1630:9;1623:21;1604:4;1661:45;1702:2;1691:9;1687:18;1679:6;1661:45;:::i;1717:180::-;1776:6;1829:2;1817:9;1808:7;1804:23;1800:32;1797:52;;;1845:1;1842;1835:12;1797:52;-1:-1:-1;1868:23:1;;1717:180;-1:-1:-1;1717:180:1:o;2110:254::-;2178:6;2186;2239:2;2227:9;2218:7;2214:23;2210:32;2207:52;;;2255:1;2252;2245:12;2207:52;2278:29;2297:9;2278:29;:::i;:::-;2268:39;2354:2;2339:18;;;;2326:32;;-1:-1:-1;;;2110:254:1:o;2369:127::-;2430:10;2425:3;2421:20;2418:1;2411:31;2461:4;2458:1;2451:15;2485:4;2482:1;2475:15;2501:253;2573:2;2567:9;2615:4;2603:17;;-1:-1:-1;;;;;2635:34:1;;2671:22;;;2632:62;2629:88;;;2697:18;;:::i;:::-;2733:2;2726:22;2501:253;:::o;2759:::-;2831:2;2825:9;2873:4;2861:17;;-1:-1:-1;;;;;2893:34:1;;2929:22;;;2890:62;2887:88;;;2955:18;;:::i;3017:253::-;3089:2;3083:9;3131:4;3119:17;;-1:-1:-1;;;;;3151:34:1;;3187:22;;;3148:62;3145:88;;;3213:18;;:::i;3275:275::-;3346:2;3340:9;3411:2;3392:13;;-1:-1:-1;;3388:27:1;3376:40;;-1:-1:-1;;;;;3431:34:1;;3467:22;;;3428:62;3425:88;;;3493:18;;:::i;:::-;3529:2;3522:22;3275:275;;-1:-1:-1;3275:275:1:o;3555:407::-;3620:5;-1:-1:-1;;;;;3643:30:1;;3640:56;;;3676:18;;:::i;:::-;3714:57;3759:2;3738:15;;-1:-1:-1;;3734:29:1;3765:4;3730:40;3714:57;:::i;:::-;3705:66;;3794:6;3787:5;3780:21;3834:3;3825:6;3820:3;3816:16;3813:25;3810:45;;;3851:1;3848;3841:12;3810:45;3900:6;3895:3;3888:4;3881:5;3877:16;3864:43;3954:1;3947:4;3938:6;3931:5;3927:18;3923:29;3916:40;3555:407;;;;;:::o;3967:222::-;4010:5;4063:3;4056:4;4048:6;4044:17;4040:27;4030:55;;4081:1;4078;4071:12;4030:55;4103:80;4179:3;4170:6;4157:20;4150:4;4142:6;4138:17;4103:80;:::i;4194:390::-;4272:6;4280;4333:2;4321:9;4312:7;4308:23;4304:32;4301:52;;;4349:1;4346;4339:12;4301:52;4372:23;;;-1:-1:-1;4446:2:1;4431:18;;4418:32;-1:-1:-1;;;;;4462:30:1;;4459:50;;;4505:1;4502;4495:12;4459:50;4528;4570:7;4561:6;4550:9;4546:22;4528:50;:::i;:::-;4518:60;;;4194:390;;;;;:::o;4589:199::-;4665:4;-1:-1:-1;;;;;4687:30:1;;4684:56;;;4720:18;;:::i;:::-;-1:-1:-1;4765:1:1;4761:14;4777:4;4757:25;;4589:199::o;4793:1981::-;4911:6;4942:2;4985;4973:9;4964:7;4960:23;4956:32;4953:52;;;5001:1;4998;4991:12;4953:52;5028:23;;-1:-1:-1;;;;;5100:14:1;;;5097:34;;;5127:1;5124;5117:12;5097:34;5165:6;5154:9;5150:22;5140:32;;5210:7;5203:4;5199:2;5195:13;5191:27;5181:55;;5232:1;5229;5222:12;5181:55;5268:2;5255:16;5291:76;5307:59;5363:2;5307:59;:::i;:::-;5291:76;:::i;:::-;5401:15;;;5483:1;5479:10;;;;5471:19;;5467:28;;;5432:12;;;;5507:19;;;5504:39;;;5539:1;5536;5529:12;5504:39;5571:2;5567;5563:11;5583:1161;5599:6;5594:3;5591:15;5583:1161;;;5685:3;5672:17;5721:2;5708:11;5705:19;5702:109;;;5765:1;5794:2;5790;5783:14;5702:109;5834:20;;5877:4;5905:16;;;-1:-1:-1;;5901:30:1;5897:39;-1:-1:-1;5894:129:1;;;5977:1;6006:2;6002;5995:14;5894:129;6049:22;;:::i;:::-;6119:2;6115;6111:11;6098:25;6091:5;6084:40;6147:2;6206;6202;6198:11;6185:25;6180:2;6173:5;6169:14;6162:49;6235:2;6273:32;6300:3;6296:2;6292:12;6273:32;:::i;:::-;6268:2;6261:5;6257:14;6250:56;6330:3;6319:14;;6370:32;6397:3;6393:2;6389:12;6370:32;:::i;:::-;6353:15;;;6346:57;6445:11;;;6432:25;;6473:16;;;6470:109;;;6531:1;6561:3;6556;6549:16;6470:109;6616:54;6662:7;6657:2;6646:8;6642:2;6638:17;6634:26;6616:54;:::i;:::-;6599:15;;;6592:79;6684:18;;-1:-1:-1;;6722:12:1;;;;5616;;5583:1161;;;-1:-1:-1;6763:5:1;4793:1981;-1:-1:-1;;;;;;;;4793:1981:1:o;6961:328::-;7038:6;7046;7054;7107:2;7095:9;7086:7;7082:23;7078:32;7075:52;;;7123:1;7120;7113:12;7075:52;7146:29;7165:9;7146:29;:::i;:::-;7136:39;;7194:38;7228:2;7217:9;7213:18;7194:38;:::i;:::-;7184:48;;7279:2;7268:9;7264:18;7251:32;7241:42;;6961:328;;;;;:::o;7294:248::-;7362:6;7370;7423:2;7411:9;7402:7;7398:23;7394:32;7391:52;;;7439:1;7436;7429:12;7391:52;-1:-1:-1;;7462:23:1;;;7532:2;7517:18;;;7504:32;;-1:-1:-1;7294:248:1:o;7826:2362::-;7935:6;7966:2;8009;7997:9;7988:7;7984:23;7980:32;7977:52;;;8025:1;8022;8015:12;7977:52;8052:23;;-1:-1:-1;;;;;8124:14:1;;;8121:34;;;8151:1;8148;8141:12;8121:34;8189:6;8178:9;8174:22;8164:32;;8234:7;8227:4;8223:2;8219:13;8215:27;8205:55;;8256:1;8253;8246:12;8205:55;8292:2;8279:16;8315:76;8331:59;8387:2;8331:59;:::i;8315:76::-;8425:15;;;8507:1;8503:10;;;;8495:19;;8491:28;;;8456:12;;;;8531:19;;;8528:39;;;8563:1;8560;8553:12;8528:39;8595:2;8591;8587:11;8607:1551;8623:6;8618:3;8615:15;8607:1551;;;8709:3;8696:17;8745:2;8732:11;8729:19;8726:39;;;8761:1;8758;8751:12;8726:39;8788:20;;8860:4;8832:16;;;-1:-1:-1;;8828:30:1;8824:41;8821:131;;;8906:1;8935:2;8931;8924:14;8821:131;8978:22;;:::i;:::-;9050:2;9046;9042:11;9029:25;9083:2;9073:8;9070:16;9067:106;;;9127:1;9156:2;9152;9145:14;9067:106;9200:54;9246:7;9241:2;9230:8;9226:2;9222:17;9218:26;9200:54;:::i;:::-;9193:5;9186:69;;9278:2;9330;9326;9322:11;9309:25;9363:2;9353:8;9350:16;9347:106;;;9407:1;9436:2;9432;9425:14;9347:106;9489:54;9535:7;9530:2;9519:8;9515:2;9511:17;9507:26;9489:54;:::i;:::-;9484:2;9477:5;9473:14;9466:78;;9568:2;9620:3;9616:2;9612:12;9599:26;9654:2;9644:8;9641:16;9638:109;;;9699:1;9729:3;9724;9717:16;9638:109;9783:54;9829:7;9824:2;9813:8;9809:2;9805:17;9801:26;9783:54;:::i;:::-;9778:2;9771:5;9767:14;9760:78;;9862:3;9851:14;;9923:3;9919:2;9915:12;9902:26;9896:3;9889:5;9885:15;9878:51;;9953:3;10014;10010:2;10006:12;9993:26;9987:3;9980:5;9976:15;9969:51;10078:4;10074:2;10070:13;10057:27;10051:3;10044:5;10040:15;10033:52;;;10110:5;10105:3;10098:18;;;10145:2;10140:3;10136:12;10129:19;;8649:2;8644:3;8640:12;8633:19;;8607:1551;;10193:763;10522:3;10511:9;10504:22;10485:4;10549:46;10590:3;10579:9;10575:19;10567:6;10549:46;:::i;:::-;10643:9;10635:6;10631:22;10626:2;10615:9;10611:18;10604:50;10677:33;10703:6;10695;10677:33;:::i;:::-;10663:47;;10758:9;10750:6;10746:22;10741:2;10730:9;10726:18;10719:50;10786:33;10812:6;10804;10786:33;:::i;:::-;10850:2;10835:18;;10828:34;;;;-1:-1:-1;;10893:3:1;10878:19;;10871:35;;;;10937:3;10922:19;;;10915:35;10778:41;10193:763;-1:-1:-1;;;10193:763:1:o;10961:291::-;11138:6;11127:9;11120:25;11181:2;11176;11165:9;11161:18;11154:30;11101:4;11201:45;11242:2;11231:9;11227:18;11219:6;11201:45;:::i;11257:322::-;11326:6;11379:2;11367:9;11358:7;11354:23;11350:32;11347:52;;;11395:1;11392;11385:12;11347:52;11422:23;;-1:-1:-1;;;;;11457:30:1;;11454:50;;;11500:1;11497;11490:12;11454:50;11523;11565:7;11556:6;11545:9;11541:22;11523:50;:::i;11584:1880::-;11706:6;11737:2;11780;11768:9;11759:7;11755:23;11751:32;11748:52;;;11796:1;11793;11786:12;11748:52;11823:23;;-1:-1:-1;;;;;11858:30:1;;11855:50;;;11901:1;11898;11891:12;11855:50;11924:22;;11977:4;11969:13;;11965:27;-1:-1:-1;11955:55:1;;12006:1;12003;11996:12;11955:55;12042:2;12029:16;12065:76;12081:59;12137:2;12081:59;:::i;12065:76::-;12175:15;;;12237:4;12276:11;;;12268:20;;12264:29;;;12206:12;;;;12163:3;12305:19;;;12302:39;;;12337:1;12334;12327:12;12302:39;12361:11;;;;12381:1053;12397:6;12392:3;12389:15;12381:1053;;;12477:2;12471:3;12462:7;12458:17;12454:26;12451:116;;;12521:1;12550:2;12546;12539:14;12451:116;12593:22;;:::i;:::-;12642:23;12661:3;12642:23;:::i;:::-;12635:5;12628:38;12702:32;12730:2;12725:3;12721:12;12702:32;:::i;:::-;12686:14;;;12679:56;12758:2;12809:12;;;12796:26;12780:14;;;12773:50;12846:2;12897:12;;;12884:26;12868:14;;;12861:50;12934:3;12986:12;;;12973:26;12957:14;;;12950:50;13023:3;13075:12;;;13062:26;13046:14;;;13039:50;13113:3;13157:13;;;13144:27;13219:4;13206:18;;13194:31;;13184:132;;13268:1;13298:3;13293;13286:16;13184:132;13336:15;;;13329:32;13374:18;;12414:12;;;;13412;;;;12381:1053;;;-1:-1:-1;13453:5:1;11584:1880;-1:-1:-1;;;;;;;11584:1880:1:o;13469:347::-;13534:6;13542;13595:2;13583:9;13574:7;13570:23;13566:32;13563:52;;;13611:1;13608;13601:12;13563:52;13634:29;13653:9;13634:29;:::i;:::-;13624:39;;13713:2;13702:9;13698:18;13685:32;13760:5;13753:13;13746:21;13739:5;13736:32;13726:60;;13782:1;13779;13772:12;13726:60;13805:5;13795:15;;;13469:347;;;;;:::o;13821:667::-;13916:6;13924;13932;13940;13993:3;13981:9;13972:7;13968:23;13964:33;13961:53;;;14010:1;14007;14000:12;13961:53;14033:29;14052:9;14033:29;:::i;:::-;14023:39;;14081:38;14115:2;14104:9;14100:18;14081:38;:::i;:::-;14071:48;-1:-1:-1;14166:2:1;14151:18;;14138:32;;-1:-1:-1;14221:2:1;14206:18;;14193:32;-1:-1:-1;;;;;14237:30:1;;14234:50;;;14280:1;14277;14270:12;14234:50;14303:22;;14356:4;14348:13;;14344:27;-1:-1:-1;14334:55:1;;14385:1;14382;14375:12;14334:55;14408:74;14474:7;14469:2;14456:16;14451:2;14447;14443:11;14408:74;:::i;:::-;14398:84;;;13821:667;;;;;;;:::o;14493:260::-;14561:6;14569;14622:2;14610:9;14601:7;14597:23;14593:32;14590:52;;;14638:1;14635;14628:12;14590:52;14661:29;14680:9;14661:29;:::i;:::-;14651:39;;14709:38;14743:2;14732:9;14728:18;14709:38;:::i;14758:907::-;14842:6;14873:2;14916;14904:9;14895:7;14891:23;14887:32;14884:52;;;14932:1;14929;14922:12;14884:52;14959:23;;-1:-1:-1;;;;;14994:30:1;;14991:50;;;15037:1;15034;15027:12;14991:50;15060:22;;15113:4;15105:13;;15101:27;-1:-1:-1;15091:55:1;;15142:1;15139;15132:12;15091:55;15178:2;15165:16;15201:76;15217:59;15273:2;15217:59;:::i;15201:76::-;15311:15;;;15393:1;15389:10;;;;15381:19;;15377:28;;;15342:12;;;;15417:19;;;15414:39;;;15449:1;15446;15439:12;15414:39;15473:11;;;;15493:142;15509:6;15504:3;15501:15;15493:142;;;15575:17;;15563:30;;15526:12;;;;15613;;;;15493:142;;;15654:5;14758:907;-1:-1:-1;;;;;;;14758:907:1:o;15670:380::-;15749:1;15745:12;;;;15792;;;15813:61;;15867:4;15859:6;15855:17;15845:27;;15813:61;15920:2;15912:6;15909:14;15889:18;15886:38;15883:161;;15966:10;15961:3;15957:20;15954:1;15947:31;16001:4;15998:1;15991:15;16029:4;16026:1;16019:15;15883:161;;15670:380;;;:::o;17245:289::-;17376:3;17414:6;17408:13;17430:66;17489:6;17484:3;17477:4;17469:6;17465:17;17430:66;:::i;:::-;17512:16;;;;;17245:289;-1:-1:-1;;17245:289:1:o;17539:346::-;17741:2;17723:21;;;17780:2;17760:18;;;17753:30;-1:-1:-1;;;17814:2:1;17799:18;;17792:52;17876:2;17861:18;;17539:346::o;18016:722::-;18066:3;18107:5;18101:12;18136:36;18162:9;18136:36;:::i;:::-;18191:1;18208:18;;;18235:133;;;;18382:1;18377:355;;;;18201:531;;18235:133;-1:-1:-1;;18268:24:1;;18256:37;;18341:14;;18334:22;18322:35;;18313:45;;;-1:-1:-1;18235:133:1;;18377:355;18408:5;18405:1;18398:16;18437:4;18482:2;18479:1;18469:16;18507:1;18521:165;18535:6;18532:1;18529:13;18521:165;;;18613:14;;18600:11;;;18593:35;18656:16;;;;18550:10;;18521:165;;;18525:3;;;18715:6;18710:3;18706:16;18699:23;;18201:531;;;;;18016:722;;;;:::o;18743:197::-;18871:3;18896:38;18930:3;18922:6;18896:38;:::i;18945:545::-;19047:2;19042:3;19039:11;19036:448;;;19083:1;19108:5;19104:2;19097:17;19153:4;19149:2;19139:19;19223:2;19211:10;19207:19;19204:1;19200:27;19194:4;19190:38;19259:4;19247:10;19244:20;19241:47;;;-1:-1:-1;19282:4:1;19241:47;19337:2;19332:3;19328:12;19325:1;19321:20;19315:4;19311:31;19301:41;;19392:82;19410:2;19403:5;19400:13;19392:82;;;19455:17;;;19436:1;19425:13;19392:82;;;19396:3;;;18945:545;;;:::o;19666:1352::-;19786:10;;-1:-1:-1;;;;;19808:30:1;;19805:56;;;19841:18;;:::i;:::-;19870:97;19960:6;19920:38;19952:4;19946:11;19920:38;:::i;:::-;19914:4;19870:97;:::i;:::-;20022:4;;20086:2;20075:14;;20103:1;20098:663;;;;20805:1;20822:6;20819:89;;;-1:-1:-1;20874:19:1;;;20868:26;20819:89;-1:-1:-1;;19623:1:1;19619:11;;;19615:24;19611:29;19601:40;19647:1;19643:11;;;19598:57;20921:81;;20068:944;;20098:663;17963:1;17956:14;;;18000:4;17987:18;;-1:-1:-1;;20134:20:1;;;20252:236;20266:7;20263:1;20260:14;20252:236;;;20355:19;;;20349:26;20334:42;;20447:27;;;;20415:1;20403:14;;;;20282:19;;20252:236;;;20256:3;20516:6;20507:7;20504:19;20501:201;;;20577:19;;;20571:26;-1:-1:-1;;20660:1:1;20656:14;;;20672:3;20652:24;20648:37;20644:42;20629:58;20614:74;;20501:201;-1:-1:-1;;;;;20748:1:1;20732:14;;;20728:22;20715:36;;-1:-1:-1;19666:1352:1:o;21023:127::-;21084:10;21079:3;21075:20;21072:1;21065:31;21115:4;21112:1;21105:15;21139:4;21136:1;21129:15;21155:127;21216:10;21211:3;21207:20;21204:1;21197:31;21247:4;21244:1;21237:15;21271:4;21268:1;21261:15;21287:135;21326:3;21347:17;;;21344:43;;21367:18;;:::i;:::-;-1:-1:-1;21414:1:1;21403:13;;21287:135::o;21427:410::-;21629:2;21611:21;;;21668:2;21648:18;;;21641:30;21707:34;21702:2;21687:18;;21680:62;-1:-1:-1;;;21773:2:1;21758:18;;21751:44;21827:3;21812:19;;21427:410::o;22260:168::-;22333:9;;;22364;;22381:15;;;22375:22;;22361:37;22351:71;;22402:18;;:::i;22433:217::-;22473:1;22499;22489:132;;22543:10;22538:3;22534:20;22531:1;22524:31;22578:4;22575:1;22568:15;22606:4;22603:1;22596:15;22489:132;-1:-1:-1;22635:9:1;;22433:217::o;23839:348::-;24041:2;24023:21;;;24080:2;24060:18;;;24053:30;-1:-1:-1;;;24114:2:1;24099:18;;24092:54;24178:2;24163:18;;23839:348::o;25423:369::-;25599:3;25637:6;25631:13;25653:66;25712:6;25707:3;25700:4;25692:6;25688:17;25653:66;:::i;:::-;25735:51;25778:6;25773:3;25769:16;25761:6;25735:51;:::i;:::-;25728:58;25423:369;-1:-1:-1;;;;;25423:369:1:o;26618:400::-;26820:2;26802:21;;;26859:2;26839:18;;;26832:30;26898:34;26893:2;26878:18;;26871:62;-1:-1:-1;;;26964:2:1;26949:18;;26942:34;27008:3;26993:19;;26618:400::o;27796:125::-;27861:9;;;27882:10;;;27879:36;;;27895:18;;:::i;30338:128::-;30405:9;;;30426:11;;;30423:37;;;30440:18;;:::i;34020:414::-;34222:2;34204:21;;;34261:2;34241:18;;;34234:30;34300:34;34295:2;34280:18;;34273:62;-1:-1:-1;;;34366:2:1;34351:18;;34344:48;34424:3;34409:19;;34020:414::o;34439:489::-;-1:-1:-1;;;;;34708:15:1;;;34690:34;;34760:15;;34755:2;34740:18;;34733:43;34807:2;34792:18;;34785:34;;;34855:3;34850:2;34835:18;;34828:31;;;34633:4;;34876:46;;34902:19;;34894:6;34876:46;:::i;:::-;34868:54;34439:489;-1:-1:-1;;;;;;34439:489:1:o;34933:249::-;35002:6;35055:2;35043:9;35034:7;35030:23;35026:32;35023:52;;;35071:1;35068;35061:12;35023:52;35103:9;35097:16;35122:30;35146:5;35122:30;:::i;35187:127::-;35248:10;35243:3;35239:20;35236:1;35229:31;35279:4;35276:1;35269:15;35303:4;35300:1;35293:15;36826:127;36887:10;36882:3;36878:20;36875:1;36868:31;36918:4;36915:1;36908:15;36942:4;36939:1;36932:15

Swarm Source

ipfs://74d64a3179d968b3f0ad8d43fe8334ab7b18be8e7ed3f3b74510326c7f7b5221
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.