ETH Price: $3,314.43 (+1.99%)
Gas: 2 Gwei

Token

Opening Celebration — Refik Anadol: Unsupervised ()
 

Overview

Max Total Supply

1,002 Opening Celebration — Refik Anadol: Unsupervised

Holders

596

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
pressedfor.eth
Balance
1 Opening Celebration — Refik Anadol: Unsupervised
0x072F8fd27b97cCa4e6AA26Dda2EB2636CDC54fDa
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-17
*/

// File: @openzeppelin/contracts/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/contracts/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/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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/contracts/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/contracts/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/contracts/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/contracts/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/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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/contracts/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/contracts/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/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _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/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.8.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 = _ownerOf(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 or 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 or 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 or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

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

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @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. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.8.0) (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 See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        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/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.8.0) (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 // Deprecated in v4.8
    }

    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");
        }
    }

    /**
     * @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 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 expireTime;
        bytes32 r_;
        bytes32 s_;
        uint8 v_;
    }

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

    struct ArtworkEditionIndex {
        uint256 artworkID;
        uint256 index;
    }

    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
    mapping(uint256 => ArtworkEditionIndex) internal allArtworkEditionsIndex; // editionID => ArtworkEditionIndex

    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(
            block.timestamp <= transferParam_.expireTime,
            "FeralfileExhibitionV3: the transfer request is expired"
        );

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

        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);
        allArtworkEditionsIndex[editionID] = ArtworkEditionIndex(
            artworkID_,
            allArtworkEditions[artworkID_].length - 1
        );

        registeredIPFSCIDs[ipfsCID_] = true;

        _safeMint(artist_, editionID);

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

        emit NewArtworkEdition(owner_, artworkID_, editionID);
    }

    /// @notice remove an edition from allArtworkEditions
    /// @param editionID - the edition id where we are going to remove from allArtworkEditions
    function _removeEditionFromAllArtworkEditions(uint256 editionID) private {
        ArtworkEditionIndex
            memory artworkEditionIndex = allArtworkEditionsIndex[editionID];

        require(
            artworkEditionIndex.artworkID > 0,
            "FeralfileExhibitionV3: artworkID is no found for the artworkEditionIndex"
        );

        uint256[] storage artworkEditions_ = allArtworkEditions[
            artworkEditionIndex.artworkID
        ];

        require(
            artworkEditions_.length > 0,
            "FeralfileExhibitionV3: no editions in this artwork of allArtworkEditions"
        );

        uint256 lastEditionIndex = artworkEditions_.length - 1;
        uint256 lastEditionID = artworkEditions_[artworkEditions_.length - 1];

        // Swap between the last token and the to-delete token and pop up the last token
        artworkEditions_[artworkEditionIndex.index] = lastEditionID;
        artworkEditions_[lastEditionIndex] = artworkEditionIndex.index;
        artworkEditions_.pop();

        delete allArtworkEditionsIndex[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]];

            _removeEditionFromAllArtworkEditions(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

[{"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":"expireTime","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"}]

60a06040523480156200001157600080fd5b50604051620044f7380380620044f7833981016040819052620000349162000324565b87876000620000448382620004ae565b506001620000538282620004ae565b505050620000706200006a620001db60201b60201c565b620001df565b612710861115620001065760405162461bcd60e51b815260206004820152604f60248201527f726f79616c74792042505320666f72207365636f6e646172792073616c65732060448201527f63616e206e6f742062652067726561746572207468616e20746865206d61786960648201526e6d756d20726f79616c74792042505360881b608482015260a4015b60405180910390fd5b6001600160a01b0385166200015e5760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401620000fd565b6080869052600c80546001600160a01b0319166001600160a01b038716179055600e6200018c8582620004ae565b50600d6200019b8482620004ae565b50600c805461ffff60a01b1916600160a01b9315159390930260ff60a81b191692909217600160a81b91151591909102179055506200057a945050505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200025957600080fd5b81516001600160401b038082111562000276576200027662000231565b604051601f8301601f19908116603f01168101908282118183101715620002a157620002a162000231565b81604052838152602092508683858801011115620002be57600080fd5b600091505b83821015620002e25785820183015181830184015290820190620002c3565b600093810190920192909252949350505050565b80516001600160a01b03811681146200030e57600080fd5b919050565b805180151581146200030e57600080fd5b600080600080600080600080610100898b0312156200034257600080fd5b88516001600160401b03808211156200035a57600080fd5b620003688c838d0162000247565b995060208b01519150808211156200037f57600080fd5b6200038d8c838d0162000247565b985060408b01519750620003a460608c01620002f6565b965060808b0151915080821115620003bb57600080fd5b620003c98c838d0162000247565b955060a08b0151915080821115620003e057600080fd5b50620003ef8b828c0162000247565b9350506200040060c08a0162000313565b91506200041060e08a0162000313565b90509295985092959890939650565b600181811c908216806200043457607f821691505b6020821081036200045557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004a957600081815260208120601f850160051c81016020861015620004845750805b601f850160051c820191505b81811015620004a55782815560010162000490565b5050505b505050565b81516001600160401b03811115620004ca57620004ca62000231565b620004e281620004db84546200041f565b846200045b565b602080601f8311600181146200051a5760008415620005015750858301515b600019600386901b1c1916600185901b178555620004a5565b600085815260208120601f198616915b828110156200054b578886015182559484019460019091019084016200052a565b50858210156200056a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051613f5a6200059d6000396000818161051d0152610ae20152613f5a6000f3fe608060405234801561001057600080fd5b50600436106101f95760003560e01c806301ffc9a7146101fe578063031205061461022657806306fdde031461023b578063081812fc14610250578063095ea7b31461027b5780630cfcb5f11461028e57806312d907b9146102a157806318160ddd146102b457806323b872dd146102c65780632a55205a146102d95780632f745c591461030b5780633f6805ba1461031e57806342842e0e1461033157806343deaf761461034457806345aeefde146103575780634b6026731461036a5780634f6ccce71461038f57806362fe2131146103a25780636352211e146103c357806363e60230146103d6578063641b18e91461040a57806370a082311461041d578063715018a6146104305780637ca5ea8914610438578063883356d91461044c5780638da5cb5b146104605780638ef79e911461046857806395d89b411461047b5780639fbf39cd14610483578063a22cb46514610496578063b4883703146104a9578063b88d4fde146104bc578063c87b56dd146104cf578063dc78ac1c146104e2578063e4a233e1146104f5578063e8a3d485146104fd578063e985e9c514610505578063ea211d7c14610518578063ec9cbb441461053f578063eee608a414610548578063f2fde38b1461056b578063fc05ea681461057e578063fe2a3bf314610591575b600080fd5b61021161020c366004613130565b6105b1565b60405190151581526020015b60405180910390f35b610239610234366004613170565b6105dc565b005b610243610605565b60405161021d91906131db565b61026361025e3660046131ee565b610697565b6040516001600160a01b03909116815260200161021d565b610239610289366004613207565b6106be565b61023961029c36600461335a565b6107d8565b6102396102af3660046133c3565b61092a565b6008545b60405190815260200161021d565b6102396102d43660046134e4565b610a29565b6102ec6102e7366004613520565b610a5a565b604080516001600160a01b03909316835260208301919091520161021d565b6102b8610319366004613207565b610b1a565b600c54610263906001600160a01b031681565b61023961033f3660046134e4565b610bb0565b610239610352366004613542565b610bcb565b610239610365366004613170565b610ce4565b61037d6103783660046131ee565b610d9b565b60405161021d9695949392919061368e565b6102b861039d3660046131ee565b610f67565b6103b56103b03660046131ee565b610ffa565b60405161021d9291906136e6565b6102636103d13660046131ee565b61109f565b61024360405180604001604052806015815260200174466572616c66696c6545786869626974696f6e563360581b81525081565b6102b8610418366004613520565b6110d3565b6102b861042b366004613170565b611120565b6102396111a6565b600c5461021190600160a81b900460ff1681565b600c5461021190600160a01b900460ff1681565b6102636111ba565b6102396104763660046136ff565b6111c9565b610243611214565b610239610491366004613733565b611223565b6102396104a4366004613836565b6112a2565b6102b86104b73660046131ee565b6112ad565b6102396104ca366004613872565b611325565b6102436104dd3660046131ee565b611357565b6102396104f0366004613170565b6114bd565b600f546102b8565b6102436114e9565b6102116105133660046138ed565b6114f8565b6102b87f000000000000000000000000000000000000000000000000000000000000000081565b6102b861271081565b610211610556366004613170565b600b6020526000908152604090205460ff1681565b610239610579366004613170565b611526565b61023961058c366004613917565b61159f565b6102b861059f3660046131ee565b60009081526012602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d682611881565b92915050565b6105e46118a6565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b606060008054610614906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610640906139a7565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a282611905565b506000908152600460205260409020546001600160a01b031690565b60006106c98261109f565b9050806001600160a01b0316836001600160a01b03160361073b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610757575061075781336114f8565b6107c95760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610732565b6107d3838361192a565b505050565b336000908152600b602052604090205460ff168061080e57506107f96111ba565b6001600160a01b0316336001600160a01b0316145b61081757600080fd5b61082082611998565b61086b5760405162461bcd60e51b815260206004820152601c60248201527b185c9d1ddbdc9ac819591a5d1a5bdb881a5cc81b9bdd08199bdd5b9960221b6044820152606401610732565b60138160405161087b91906139e1565b9081526040519081900360200190205460ff16156108ab5760405162461bcd60e51b8152600401610732906139fd565b6000828152601160205260409081902090516013906108ce906001840190613aa0565b908152604051908190036020018120805460ff191690556001906013906108f69085906139e1565b908152604051908190036020019020805491151560ff19909216919091179055600181016109248382613afa565b50505050565b336000908152600b602052604090205460ff1680610960575061094b6111ba565b6001600160a01b0316336001600160a01b0316145b61096957600080fd5b60005b8151811015610a2557610a1382828151811061098a5761098a613bb9565b6020026020010151600001518383815181106109a8576109a8613bb9565b6020026020010151602001518484815181106109c6576109c6613bb9565b6020026020010151604001518585815181106109e4576109e4613bb9565b602002602001015160600151868681518110610a0257610a02613bb9565b6020026020010151608001516119b5565b80610a1d81613be5565b91505061096c565b5050565b610a333382611d98565b610a4f5760405162461bcd60e51b815260040161073290613bfe565b6107d3838383611df7565b600080610a6684611998565b610acc5760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20717565727920726f79616c747920696e666f20666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610732565b600c546001600160a01b03169150612710610b077f000000000000000000000000000000000000000000000000000000000000000085613c39565b610b119190613c50565b90509250929050565b6000610b2583611120565b8210610b875760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610732565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107d383838360405180602001604052806000815250611325565b336000908152600b602052604090205460ff1680610c015750610bec6111ba565b6001600160a01b0316336001600160a01b0316145b610c0a57600080fd5b60005b8151811015610a2557610cd2828281518110610c2b57610c2b613bb9565b602002602001015160400151838381518110610c4957610c49613bb9565b602002602001015160000151848481518110610c6757610c67613bb9565b602002602001015160200151858581518110610c8557610c85613bb9565b602002602001015160600151868681518110610ca357610ca3613bb9565b602002602001015160800151878781518110610cc157610cc1613bb9565b602002602001015160a00151611f56565b80610cdc81613be5565b915050610c0d565b336000908152600b602052604090205460ff1680610d1a5750610d056111ba565b6001600160a01b0316336001600160a01b0316145b610d2357600080fd5b6001600160a01b038116610d795760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401610732565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601060205260009081526040902080548190610db6906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610de2906139a7565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505090806001018054610e44906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e70906139a7565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b505050505090806002018054610ed2906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe906139a7565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b5050505050908060030154908060040154908060050154905086565b6000610f7260085490565b8210610fd55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610732565b60088281548110610fe857610fe8613bb9565b90600052602060002001549050919050565b6011602052600090815260409020805460018201805491929161101c906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611048906139a7565b80156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b5050505050905082565b6000806110ab83612252565b90506001600160a01b0381166105d65760405162461bcd60e51b815260040161073290613c72565b60008281526012602052604081205482106110ed57600080fd5b600083815260126020526040902080548390811061110d5761110d613bb9565b9060005260206000200154905092915050565b60006001600160a01b03821661118a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610732565b506001600160a01b031660009081526003602052604090205490565b6111ae6118a6565b6111b8600061226d565b565b600a546001600160a01b031690565b336000908152600b602052604090205460ff16806111ff57506111ea6111ba565b6001600160a01b0316336001600160a01b0316145b61120857600080fd5b600d610a258282613afa565b606060018054610614906139a7565b336000908152600b602052604090205460ff168061125957506112446111ba565b6001600160a01b0316336001600160a01b0316145b61126257600080fd5b60005b8151811015610a255761129082828151811061128357611283613bb9565b60200260200101516122bf565b8061129a81613be5565b915050611265565b610a25338383612480565b60006112b8600f5490565b82106113125760405162461bcd60e51b8152602060048201526024808201527f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b6064820152608401610732565b600f8281548110610fe857610fe8613bb9565b61132f3383611d98565b61134b5760405162461bcd60e51b815260040161073290613bfe565b6109248484848461254a565b606061136282611998565b6113c65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610732565b6000600d80546113d5906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611401906139a7565b801561144e5780601f106114235761010080835404028352916020019161144e565b820191906000526020600020905b81548152906001019060200180831161143157829003601f168201915b50505050509050805160000361147e5750604080518082019091526007815266697066733a2f2f60c81b60208201525b80601160008581526020019081526020016000206001016040516020016114a6929190613ca4565b604051602081830303815290604052915050919050565b6114c56118a6565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6060600e8054610614906139a7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61152e6118a6565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610732565b61159c8161226d565b50565b600c54600160a01b900460ff1661160e5760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56333a206e6f7420616c6c6f7760448201526c10313ab9371032b234ba34b7b760991b6064820152608401610732565b60005b8151811015610a255761163c82828151811061162f5761162f613bb9565b6020026020010151611998565b6116585760405162461bcd60e51b815260040161073290613ccb565b61167b3383838151811061166e5761166e613bb9565b6020026020010151611d98565b6116975760405162461bcd60e51b815260040161073290613d0f565b6000601160008484815181106116af576116af613bb9565b60200260200101518152602001908152602001600020604051806040016040529081600082015481526020016001820180546116ea906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611716906139a7565b80156117635780601f1061173857610100808354040283529160200191611763565b820191906000526020600020905b81548152906001019060200180831161174657829003601f168201915b50505050508152505090506013816020015160405161178291906139e1565b908152604051908190036020019020805460ff1916905582516011906000908590859081106117b3576117b3613bb9565b602002602001015181526020019081526020016000206000808201600090556001820160006117e291906130cc565b50506118068383815181106117f9576117f9613bb9565b602002602001015161257d565b61182883838151811061181b5761181b613bb9565b6020026020010151612796565b82828151811061183a5761183a613bb9565b60200260200101517fa5a44c7ed36966786612323ee2cb0cb453d4a9282b90c6befe72cde41d83f48860405160405180910390a2508061187981613be5565b915050611611565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d682612827565b336118af6111ba565b6001600160a01b0316146111b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610732565b61190e81611998565b61159c5760405162461bcd60e51b815260040161073290613c72565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061195f8261109f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119a483612252565b6001600160a01b0316141592915050565b600085815260106020526040902060030154611a275760405162461bcd60e51b815260206004820152602b60248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b206960448201526a1cc81b9bdd08199bdd5b9960aa1b6064820152608401610732565b6000858152601060205260409020600581015460048201546003909201549091611a5091613d4b565b611a5a9190613d4b565b8410611ae35760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56333a2065646974696f6e206e60448201527f756d62657220657863656564207468652065646974696f6e2073697a65206f6660648201526b2074686520617274776f726b60a01b608482015260a401610732565b6001600160a01b038316611b325760405162461bcd60e51b8152602060048201526016602482015275696e76616c696420617274697374206164647265737360501b6044820152606401610732565b6001600160a01b038216611b805760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206f776e6572206164647265737360581b6044820152606401610732565b601381604051611b9091906139e1565b9081526040519081900360200190205460ff1615611bc05760405162461bcd60e51b8152600401610732906139fd565b6000611bcc8587613d4b565b60008181526011602052604090205490915015611c425760405162461bcd60e51b815260206004820152602e60248201527f466572616c66696c6545786869626974696f6e56333a2074686520656469746960448201526d1bdb881a5cc8195e1a5cdd195b9d60921b6064820152608401610732565b604080518082018252828152602080820185815260008581526011909252929020815181559151909182916001820190611c7c9082613afa565b505050600087815260126020818152604080842080546001818101835582875284872090910188905582518084019093528c8352948c90529282529154919290830191611cc99190613d5e565b90526000838152601460209081526040918290208351815592015160019283015551601390611cf99086906139e1565b908152604051908190036020019020805491151560ff19909216919091179055611d238583612877565b836001600160a01b0316856001600160a01b031614611d5757611d578585846040518060200160405280600081525061254a565b8187856001600160a01b03167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b600080611da48361109f565b9050806001600160a01b0316846001600160a01b03161480611dcb5750611dcb81856114f8565b80611def5750836001600160a01b0316611de484610697565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e0a8261109f565b6001600160a01b031614611e305760405162461bcd60e51b815260040161073290613d71565b6001600160a01b038216611e925760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610732565b611e9f8383836001612891565b826001600160a01b0316611eb28261109f565b6001600160a01b031614611ed85760405162461bcd60e51b815260040161073290613d71565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526003855283862080546000190190559087168086528386208054600101905586865260029094528285208054909216841790915590518493600080516020613ee583398151915291a4505050565b8451600003611fa05760405162461bcd60e51b81526020600482015260166024820152757469746c652063616e206e6f7420626520656d70747960501b6044820152606401610732565b8351600003611feb5760405162461bcd60e51b81526020600482015260176024820152766172746973742063616e206e6f7420626520656d70747960481b6044820152606401610732565b855160000361203b5760405162461bcd60e51b815260206004820152601c60248201527b66696e6765727072696e742063616e206e6f7420626520656d70747960201b6044820152606401610732565b600083116120975760405162461bcd60e51b815260206004820152602360248201527f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360448201526274203160e81b6064820152608401610732565b6000866040516020016120aa91906131db565b60408051601f1981840301815291815281516020928301206000818152601090935291206002018054919250906120e0906139a7565b1590506121535760405162461bcd60e51b815260206004820152603b60248201527f616e20617274776f726b2077697468207468652073616d652066696e6765727060448201527a1c9a5b9d081a185cc8185b1c9958591e481c9959da5cdd195c9959602a1b6064820152608401610732565b6040805160c08101825287815260208082018890528183018a9052606082018790526080820186905260a08201859052600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802018490556000848152601090915291909120815182919081906121d29082613afa565b50602082015160018201906121e79082613afa565b50604082015160028201906121fc9082613afa565b50606082015160038201556080820151600482015560a09091015160059091015560405182907f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089190600090a25050505050505050565b6000908152600260205260409020546001600160a01b031690565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122cc8160400151611998565b6122e85760405162461bcd60e51b815260040161073290613ccb565b6122fa81600001518260400151611d98565b6123165760405162461bcd60e51b815260040161073290613d0f565b80606001514211156123775760405162461bcd60e51b81526020600482015260366024820152600080516020613f0583398151915260448201527519995c881c995c5d595cdd081a5cc8195e1c1a5c995960521b6064820152608401610732565b600081600001518260200151836040015184606001516040516020016123c494939291906001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b6040516020818303038152906040528051906020012090506123f981836000015184608001518560a001518660c001516129d1565b6124595760405162461bcd60e51b815260206004820152603d6024820152600080516020613f0583398151915260448201527f6665722072657175657374206973206e6f7420617574686f72697a65640000006064820152608401610732565b610a258260000151836020015184604001516040518060200160405280600081525061254a565b816001600160a01b0316836001600160a01b0316036124dd5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610732565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612555848484611df7565b61256184848484612a50565b6109245760405162461bcd60e51b815260040161073290613db6565b600081815260146020908152604091829020825180840190935280548084526001909101549183019190915261262c5760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b494460448201527f206973206e6f20666f756e6420666f722074686520617274776f726b456469746064820152670d2dedc92dcc8caf60c31b608482015260a401610732565b8051600090815260126020526040902080546126c15760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a206e6f2065646974696f60448201527f6e7320696e207468697320617274776f726b206f6620616c6c417274776f726b60648201526745646974696f6e7360c01b608482015260a401610732565b80546000906126d290600190613d5e565b9050600082600184805490506126e89190613d5e565b815481106126f8576126f8613bb9565b90600052602060002001549050808385602001518154811061271c5761271c613bb9565b9060005260206000200181905550836020015183838154811061274157612741613bb9565b90600052602060002001819055508280548061275f5761275f613e08565b6000828152602080822083016000199081018390559092019092559581526014909552505060408320838155600101929092555050565b60006127a18261109f565b90506127b1816000846001612891565b6127ba8261109f565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b038516808552600384528285208054600019019055878552600290935281842080549091169055519293508492600080516020613ee5833981519152908390a45050565b60006001600160e01b031982166380ac58cd60e01b148061285857506001600160e01b03198216635b5e139f60e01b145b806105d657506301ffc9a760e01b6001600160e01b03198316146105d6565b610a25828260405180602001604052806000815250612b51565b61289d84848484612b84565b600181111561290c5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610732565b816001600160a01b0385166129685761296381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61298b565b836001600160a01b0316856001600160a01b03161461298b5761298b8582612c0c565b6001600160a01b0384166129a7576129a281612ca9565b6129ca565b846001600160a01b0316846001600160a01b0316146129ca576129ca8482612d58565b5050505050565b600080612a35612a2d886040517b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b6020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b848787612d9c565b6001600160a01b039081169087161491505095945050505050565b60006001600160a01b0384163b15612b4657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a94903390899088908890600401613e1e565b6020604051808303816000875af1925050508015612acf575060408051601f3d908101601f19168201909252612acc91810190613e5b565b60015b612b2c573d808015612afd576040519150601f19603f3d011682016040523d82523d6000602084013e612b02565b606091505b508051600003612b245760405162461bcd60e51b815260040161073290613db6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611def565b506001949350505050565b612b5b8383612dc4565b612b686000848484612a50565b6107d35760405162461bcd60e51b815260040161073290613db6565b6001811115610924576001600160a01b03841615612bca576001600160a01b03841660009081526003602052604081208054839290612bc4908490613d5e565b90915550505b6001600160a01b03831615610924576001600160a01b03831660009081526003602052604081208054839290612c01908490613d4b565b909155505050505050565b60006001612c1984611120565b612c239190613d5e565b600083815260076020526040902054909150808214612c76576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612cbb90600190613d5e565b60008381526009602052604081205460088054939450909284908110612ce357612ce3613bb9565b906000526020600020015490508060088381548110612d0457612d04613bb9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612d3c57612d3c613e08565b6001900381819060005260206000200160009055905550505050565b6000612d6383611120565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000806000612dad87878787612ecd565b91509150612dba81612f87565b5095945050505050565b6001600160a01b038216612e1a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610732565b612e2381611998565b15612e405760405162461bcd60e51b815260040161073290613e78565b612e4e600083836001612891565b612e5781611998565b15612e745760405162461bcd60e51b815260040161073290613e78565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b031916841790555183929190600080516020613ee5833981519152908290a45050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b03831115612efa5750600090506003612f7e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612f4e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612f7757600060019250925050612f7e565b9150600090505b94509492505050565b6000816004811115612f9b57612f9b613eae565b03612fa35750565b6001816004811115612fb757612fb7613eae565b03612fff5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610732565b600281600481111561301357613013613eae565b036130605760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610732565b600381600481111561307457613074613eae565b0361159c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610732565b5080546130d8906139a7565b6000825580601f106130e8575050565b601f01602090049060005260206000209081019061159c91905b808211156131165760008155600101613102565b5090565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561314257600080fd5b813561314d8161311a565b9392505050565b80356001600160a01b038116811461316b57600080fd5b919050565b60006020828403121561318257600080fd5b61314d82613154565b60005b838110156131a657818101518382015260200161318e565b50506000910152565b600081518084526131c781602086016020860161318b565b601f01601f19169290920160200192915050565b60208152600061314d60208301846131af565b60006020828403121561320057600080fd5b5035919050565b6000806040838503121561321a57600080fd5b61322383613154565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b038111828210171561326957613269613231565b60405290565b60405160c081016001600160401b038111828210171561326957613269613231565b60405160e081016001600160401b038111828210171561326957613269613231565b604051601f8201601f191681016001600160401b03811182821017156132db576132db613231565b604052919050565b60006001600160401b038311156132fc576132fc613231565b61330f601f8401601f19166020016132b3565b905082815283838301111561332357600080fd5b828260208301376000602084830101529392505050565b600082601f83011261334b57600080fd5b61314d838335602085016132e3565b6000806040838503121561336d57600080fd5b8235915060208301356001600160401b0381111561338a57600080fd5b6133968582860161333a565b9150509250929050565b60006001600160401b038211156133b9576133b9613231565b5060051b60200190565b600060208083850312156133d657600080fd5b82356001600160401b03808211156133ed57600080fd5b818501915085601f83011261340157600080fd5b813561341461340f826133a0565b6132b3565b81815260059190911b8301840190848101908883111561343357600080fd5b8585015b838110156134d75780358581111561344f5760008081fd5b860160a0818c03601f19018113156134675760008081fd5b61346f613247565b8983013581526040808401358b830152606061348c818601613154565b828401526080915061349f828601613154565b908301529183013591888311156134b65760008081fd5b6134c48e8c8587010161333a565b9082015285525050918601918601613437565b5098975050505050505050565b6000806000606084860312156134f957600080fd5b61350284613154565b925061351060208501613154565b9150604084013590509250925092565b6000806040838503121561353357600080fd5b50508035926020909101359150565b6000602080838503121561355557600080fd5b82356001600160401b038082111561356c57600080fd5b818501915085601f83011261358057600080fd5b813561358e61340f826133a0565b81815260059190911b830184019084810190888311156135ad57600080fd5b8585015b838110156134d7578035858111156135c857600080fd5b860160c0818c03601f190112156135df5760008081fd5b6135e761326f565b88820135878111156135f95760008081fd5b6136078d8b8386010161333a565b8252506040808301358881111561361e5760008081fd5b61362c8e8c8387010161333a565b8b84015250606080840135898111156136455760008081fd5b6136538f8d8388010161333a565b83850152506080915081840135818401525060a0808401358284015260c08401358184015250508085525050868301925086810190506135b1565b60c0815260006136a160c08301896131af565b82810360208401526136b381896131af565b905082810360408401526136c781886131af565b60608401969096525050608081019290925260a0909101529392505050565b828152604060208201526000611def60408301846131af565b60006020828403121561371157600080fd5b81356001600160401b0381111561372757600080fd5b611def8482850161333a565b6000602080838503121561374657600080fd5b82356001600160401b0381111561375c57600080fd5b8301601f8101851361376d57600080fd5b803561377b61340f826133a0565b81815260e0918202830184019184820191908884111561379a57600080fd5b938501935b8385101561382a5780858a0312156137b75760008081fd5b6137bf613291565b6137c886613154565b81526137d5878701613154565b8188015260408681013590820152606080870135908201526080808701359082015260a0808701359082015260c08087013560ff811681146138175760008081fd5b908201528352938401939185019161379f565b50979650505050505050565b6000806040838503121561384957600080fd5b61385283613154565b91506020830135801515811461386757600080fd5b809150509250929050565b6000806000806080858703121561388857600080fd5b61389185613154565b935061389f60208601613154565b92506040850135915060608501356001600160401b038111156138c157600080fd5b8501601f810187136138d257600080fd5b6138e1878235602084016132e3565b91505092959194509250565b6000806040838503121561390057600080fd5b61390983613154565b9150610b1160208401613154565b6000602080838503121561392a57600080fd5b82356001600160401b0381111561394057600080fd5b8301601f8101851361395157600080fd5b803561395f61340f826133a0565b81815260059190911b8201830190838101908783111561397e57600080fd5b928401925b8284101561399c57833582529284019290840190613983565b979650505050505050565b600181811c908216806139bb57607f821691505b6020821081036139db57634e487b7160e01b600052602260045260246000fd5b50919050565b600082516139f381846020870161318b565b9190910192915050565b6020808252601690820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b604082015260600190565b60008154613a3a816139a7565b60018281168015613a525760018114613a6757613a96565b60ff1984168752821515830287019450613a96565b8560005260208060002060005b85811015613a8d5781548a820152908401908201613a74565b50505082870194505b5050505092915050565b600061314d8284613a2d565b601f8211156107d357600081815260208120601f850160051c81016020861015613ad35750805b601f850160051c820191505b81811015613af257828155600101613adf565b505050505050565b81516001600160401b03811115613b1357613b13613231565b613b2781613b2184546139a7565b84613aac565b602080601f831160018114613b5c5760008415613b445750858301515b600019600386901b1c1916600185901b178555613af2565b600085815260208120601f198616915b82811015613b8b57888601518255948401946001909101908401613b6c565b5085821015613ba95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201613bf757613bf7613bcf565b5060010190565b6020808252602d90820152600080516020613ec583398151915260408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b80820281158282048414176105d6576105d6613bcf565b600082613c6d57634e487b7160e01b600052601260045260246000fd5b500490565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b60008351613cb681846020880161318b565b613cc281840185613a2d565b95945050505050565b60208082526024908201527f4552433732313a20617274776f726b2065646974696f6e206973206e6f7420666040820152631bdd5b9960e21b606082015260800190565b6020808252602e90820152600080516020613ec583398151915260408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b808201808211156105d6576105d6613bcf565b818103818111156105d6576105d6613bcf565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613e51908301846131af565b9695505050505050565b600060208284031215613e6d57600080fd5b815161314d8161311a565b6020808252601c908201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b604082015260600190565b634e487b7160e01b600052602160045260246000fdfe4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef466572616c66696c6545786869626974696f6e56333a20746865207472616e73a2646970667358221220d1d2017e507163af033d34325dbf1989ffc0cf32e28d72be500859766025421064736f6c634300081100330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000005dc000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000324f70656e696e672043656c6562726174696f6e20e2809420526566696b20416e61646f6c3a20556e7375706572766973656400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d4e706e536a524c4b59416f70385744566d535a586d694b783269394c6268566a316b336a50324d47643867420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f95760003560e01c806301ffc9a7146101fe578063031205061461022657806306fdde031461023b578063081812fc14610250578063095ea7b31461027b5780630cfcb5f11461028e57806312d907b9146102a157806318160ddd146102b457806323b872dd146102c65780632a55205a146102d95780632f745c591461030b5780633f6805ba1461031e57806342842e0e1461033157806343deaf761461034457806345aeefde146103575780634b6026731461036a5780634f6ccce71461038f57806362fe2131146103a25780636352211e146103c357806363e60230146103d6578063641b18e91461040a57806370a082311461041d578063715018a6146104305780637ca5ea8914610438578063883356d91461044c5780638da5cb5b146104605780638ef79e911461046857806395d89b411461047b5780639fbf39cd14610483578063a22cb46514610496578063b4883703146104a9578063b88d4fde146104bc578063c87b56dd146104cf578063dc78ac1c146104e2578063e4a233e1146104f5578063e8a3d485146104fd578063e985e9c514610505578063ea211d7c14610518578063ec9cbb441461053f578063eee608a414610548578063f2fde38b1461056b578063fc05ea681461057e578063fe2a3bf314610591575b600080fd5b61021161020c366004613130565b6105b1565b60405190151581526020015b60405180910390f35b610239610234366004613170565b6105dc565b005b610243610605565b60405161021d91906131db565b61026361025e3660046131ee565b610697565b6040516001600160a01b03909116815260200161021d565b610239610289366004613207565b6106be565b61023961029c36600461335a565b6107d8565b6102396102af3660046133c3565b61092a565b6008545b60405190815260200161021d565b6102396102d43660046134e4565b610a29565b6102ec6102e7366004613520565b610a5a565b604080516001600160a01b03909316835260208301919091520161021d565b6102b8610319366004613207565b610b1a565b600c54610263906001600160a01b031681565b61023961033f3660046134e4565b610bb0565b610239610352366004613542565b610bcb565b610239610365366004613170565b610ce4565b61037d6103783660046131ee565b610d9b565b60405161021d9695949392919061368e565b6102b861039d3660046131ee565b610f67565b6103b56103b03660046131ee565b610ffa565b60405161021d9291906136e6565b6102636103d13660046131ee565b61109f565b61024360405180604001604052806015815260200174466572616c66696c6545786869626974696f6e563360581b81525081565b6102b8610418366004613520565b6110d3565b6102b861042b366004613170565b611120565b6102396111a6565b600c5461021190600160a81b900460ff1681565b600c5461021190600160a01b900460ff1681565b6102636111ba565b6102396104763660046136ff565b6111c9565b610243611214565b610239610491366004613733565b611223565b6102396104a4366004613836565b6112a2565b6102b86104b73660046131ee565b6112ad565b6102396104ca366004613872565b611325565b6102436104dd3660046131ee565b611357565b6102396104f0366004613170565b6114bd565b600f546102b8565b6102436114e9565b6102116105133660046138ed565b6114f8565b6102b87f00000000000000000000000000000000000000000000000000000000000005dc81565b6102b861271081565b610211610556366004613170565b600b6020526000908152604090205460ff1681565b610239610579366004613170565b611526565b61023961058c366004613917565b61159f565b6102b861059f3660046131ee565b60009081526012602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d682611881565b92915050565b6105e46118a6565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b606060008054610614906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610640906139a7565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a282611905565b506000908152600460205260409020546001600160a01b031690565b60006106c98261109f565b9050806001600160a01b0316836001600160a01b03160361073b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610757575061075781336114f8565b6107c95760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610732565b6107d3838361192a565b505050565b336000908152600b602052604090205460ff168061080e57506107f96111ba565b6001600160a01b0316336001600160a01b0316145b61081757600080fd5b61082082611998565b61086b5760405162461bcd60e51b815260206004820152601c60248201527b185c9d1ddbdc9ac819591a5d1a5bdb881a5cc81b9bdd08199bdd5b9960221b6044820152606401610732565b60138160405161087b91906139e1565b9081526040519081900360200190205460ff16156108ab5760405162461bcd60e51b8152600401610732906139fd565b6000828152601160205260409081902090516013906108ce906001840190613aa0565b908152604051908190036020018120805460ff191690556001906013906108f69085906139e1565b908152604051908190036020019020805491151560ff19909216919091179055600181016109248382613afa565b50505050565b336000908152600b602052604090205460ff1680610960575061094b6111ba565b6001600160a01b0316336001600160a01b0316145b61096957600080fd5b60005b8151811015610a2557610a1382828151811061098a5761098a613bb9565b6020026020010151600001518383815181106109a8576109a8613bb9565b6020026020010151602001518484815181106109c6576109c6613bb9565b6020026020010151604001518585815181106109e4576109e4613bb9565b602002602001015160600151868681518110610a0257610a02613bb9565b6020026020010151608001516119b5565b80610a1d81613be5565b91505061096c565b5050565b610a333382611d98565b610a4f5760405162461bcd60e51b815260040161073290613bfe565b6107d3838383611df7565b600080610a6684611998565b610acc5760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20717565727920726f79616c747920696e666f20666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610732565b600c546001600160a01b03169150612710610b077f00000000000000000000000000000000000000000000000000000000000005dc85613c39565b610b119190613c50565b90509250929050565b6000610b2583611120565b8210610b875760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610732565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107d383838360405180602001604052806000815250611325565b336000908152600b602052604090205460ff1680610c015750610bec6111ba565b6001600160a01b0316336001600160a01b0316145b610c0a57600080fd5b60005b8151811015610a2557610cd2828281518110610c2b57610c2b613bb9565b602002602001015160400151838381518110610c4957610c49613bb9565b602002602001015160000151848481518110610c6757610c67613bb9565b602002602001015160200151858581518110610c8557610c85613bb9565b602002602001015160600151868681518110610ca357610ca3613bb9565b602002602001015160800151878781518110610cc157610cc1613bb9565b602002602001015160a00151611f56565b80610cdc81613be5565b915050610c0d565b336000908152600b602052604090205460ff1680610d1a5750610d056111ba565b6001600160a01b0316336001600160a01b0316145b610d2357600080fd5b6001600160a01b038116610d795760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401610732565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601060205260009081526040902080548190610db6906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610de2906139a7565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505090806001018054610e44906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e70906139a7565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b505050505090806002018054610ed2906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe906139a7565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b5050505050908060030154908060040154908060050154905086565b6000610f7260085490565b8210610fd55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610732565b60088281548110610fe857610fe8613bb9565b90600052602060002001549050919050565b6011602052600090815260409020805460018201805491929161101c906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611048906139a7565b80156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b5050505050905082565b6000806110ab83612252565b90506001600160a01b0381166105d65760405162461bcd60e51b815260040161073290613c72565b60008281526012602052604081205482106110ed57600080fd5b600083815260126020526040902080548390811061110d5761110d613bb9565b9060005260206000200154905092915050565b60006001600160a01b03821661118a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610732565b506001600160a01b031660009081526003602052604090205490565b6111ae6118a6565b6111b8600061226d565b565b600a546001600160a01b031690565b336000908152600b602052604090205460ff16806111ff57506111ea6111ba565b6001600160a01b0316336001600160a01b0316145b61120857600080fd5b600d610a258282613afa565b606060018054610614906139a7565b336000908152600b602052604090205460ff168061125957506112446111ba565b6001600160a01b0316336001600160a01b0316145b61126257600080fd5b60005b8151811015610a255761129082828151811061128357611283613bb9565b60200260200101516122bf565b8061129a81613be5565b915050611265565b610a25338383612480565b60006112b8600f5490565b82106113125760405162461bcd60e51b8152602060048201526024808201527f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b6064820152608401610732565b600f8281548110610fe857610fe8613bb9565b61132f3383611d98565b61134b5760405162461bcd60e51b815260040161073290613bfe565b6109248484848461254a565b606061136282611998565b6113c65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610732565b6000600d80546113d5906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611401906139a7565b801561144e5780601f106114235761010080835404028352916020019161144e565b820191906000526020600020905b81548152906001019060200180831161143157829003601f168201915b50505050509050805160000361147e5750604080518082019091526007815266697066733a2f2f60c81b60208201525b80601160008581526020019081526020016000206001016040516020016114a6929190613ca4565b604051602081830303815290604052915050919050565b6114c56118a6565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6060600e8054610614906139a7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61152e6118a6565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610732565b61159c8161226d565b50565b600c54600160a01b900460ff1661160e5760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56333a206e6f7420616c6c6f7760448201526c10313ab9371032b234ba34b7b760991b6064820152608401610732565b60005b8151811015610a255761163c82828151811061162f5761162f613bb9565b6020026020010151611998565b6116585760405162461bcd60e51b815260040161073290613ccb565b61167b3383838151811061166e5761166e613bb9565b6020026020010151611d98565b6116975760405162461bcd60e51b815260040161073290613d0f565b6000601160008484815181106116af576116af613bb9565b60200260200101518152602001908152602001600020604051806040016040529081600082015481526020016001820180546116ea906139a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611716906139a7565b80156117635780601f1061173857610100808354040283529160200191611763565b820191906000526020600020905b81548152906001019060200180831161174657829003601f168201915b50505050508152505090506013816020015160405161178291906139e1565b908152604051908190036020019020805460ff1916905582516011906000908590859081106117b3576117b3613bb9565b602002602001015181526020019081526020016000206000808201600090556001820160006117e291906130cc565b50506118068383815181106117f9576117f9613bb9565b602002602001015161257d565b61182883838151811061181b5761181b613bb9565b6020026020010151612796565b82828151811061183a5761183a613bb9565b60200260200101517fa5a44c7ed36966786612323ee2cb0cb453d4a9282b90c6befe72cde41d83f48860405160405180910390a2508061187981613be5565b915050611611565b60006001600160e01b0319821663780e9d6360e01b14806105d657506105d682612827565b336118af6111ba565b6001600160a01b0316146111b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610732565b61190e81611998565b61159c5760405162461bcd60e51b815260040161073290613c72565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061195f8261109f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119a483612252565b6001600160a01b0316141592915050565b600085815260106020526040902060030154611a275760405162461bcd60e51b815260206004820152602b60248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b206960448201526a1cc81b9bdd08199bdd5b9960aa1b6064820152608401610732565b6000858152601060205260409020600581015460048201546003909201549091611a5091613d4b565b611a5a9190613d4b565b8410611ae35760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56333a2065646974696f6e206e60448201527f756d62657220657863656564207468652065646974696f6e2073697a65206f6660648201526b2074686520617274776f726b60a01b608482015260a401610732565b6001600160a01b038316611b325760405162461bcd60e51b8152602060048201526016602482015275696e76616c696420617274697374206164647265737360501b6044820152606401610732565b6001600160a01b038216611b805760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206f776e6572206164647265737360581b6044820152606401610732565b601381604051611b9091906139e1565b9081526040519081900360200190205460ff1615611bc05760405162461bcd60e51b8152600401610732906139fd565b6000611bcc8587613d4b565b60008181526011602052604090205490915015611c425760405162461bcd60e51b815260206004820152602e60248201527f466572616c66696c6545786869626974696f6e56333a2074686520656469746960448201526d1bdb881a5cc8195e1a5cdd195b9d60921b6064820152608401610732565b604080518082018252828152602080820185815260008581526011909252929020815181559151909182916001820190611c7c9082613afa565b505050600087815260126020818152604080842080546001818101835582875284872090910188905582518084019093528c8352948c90529282529154919290830191611cc99190613d5e565b90526000838152601460209081526040918290208351815592015160019283015551601390611cf99086906139e1565b908152604051908190036020019020805491151560ff19909216919091179055611d238583612877565b836001600160a01b0316856001600160a01b031614611d5757611d578585846040518060200160405280600081525061254a565b8187856001600160a01b03167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b600080611da48361109f565b9050806001600160a01b0316846001600160a01b03161480611dcb5750611dcb81856114f8565b80611def5750836001600160a01b0316611de484610697565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e0a8261109f565b6001600160a01b031614611e305760405162461bcd60e51b815260040161073290613d71565b6001600160a01b038216611e925760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610732565b611e9f8383836001612891565b826001600160a01b0316611eb28261109f565b6001600160a01b031614611ed85760405162461bcd60e51b815260040161073290613d71565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526003855283862080546000190190559087168086528386208054600101905586865260029094528285208054909216841790915590518493600080516020613ee583398151915291a4505050565b8451600003611fa05760405162461bcd60e51b81526020600482015260166024820152757469746c652063616e206e6f7420626520656d70747960501b6044820152606401610732565b8351600003611feb5760405162461bcd60e51b81526020600482015260176024820152766172746973742063616e206e6f7420626520656d70747960481b6044820152606401610732565b855160000361203b5760405162461bcd60e51b815260206004820152601c60248201527b66696e6765727072696e742063616e206e6f7420626520656d70747960201b6044820152606401610732565b600083116120975760405162461bcd60e51b815260206004820152602360248201527f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360448201526274203160e81b6064820152608401610732565b6000866040516020016120aa91906131db565b60408051601f1981840301815291815281516020928301206000818152601090935291206002018054919250906120e0906139a7565b1590506121535760405162461bcd60e51b815260206004820152603b60248201527f616e20617274776f726b2077697468207468652073616d652066696e6765727060448201527a1c9a5b9d081a185cc8185b1c9958591e481c9959da5cdd195c9959602a1b6064820152608401610732565b6040805160c08101825287815260208082018890528183018a9052606082018790526080820186905260a08201859052600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802018490556000848152601090915291909120815182919081906121d29082613afa565b50602082015160018201906121e79082613afa565b50604082015160028201906121fc9082613afa565b50606082015160038201556080820151600482015560a09091015160059091015560405182907f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089190600090a25050505050505050565b6000908152600260205260409020546001600160a01b031690565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122cc8160400151611998565b6122e85760405162461bcd60e51b815260040161073290613ccb565b6122fa81600001518260400151611d98565b6123165760405162461bcd60e51b815260040161073290613d0f565b80606001514211156123775760405162461bcd60e51b81526020600482015260366024820152600080516020613f0583398151915260448201527519995c881c995c5d595cdd081a5cc8195e1c1a5c995960521b6064820152608401610732565b600081600001518260200151836040015184606001516040516020016123c494939291906001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b6040516020818303038152906040528051906020012090506123f981836000015184608001518560a001518660c001516129d1565b6124595760405162461bcd60e51b815260206004820152603d6024820152600080516020613f0583398151915260448201527f6665722072657175657374206973206e6f7420617574686f72697a65640000006064820152608401610732565b610a258260000151836020015184604001516040518060200160405280600081525061254a565b816001600160a01b0316836001600160a01b0316036124dd5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610732565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612555848484611df7565b61256184848484612a50565b6109245760405162461bcd60e51b815260040161073290613db6565b600081815260146020908152604091829020825180840190935280548084526001909101549183019190915261262c5760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b494460448201527f206973206e6f20666f756e6420666f722074686520617274776f726b456469746064820152670d2dedc92dcc8caf60c31b608482015260a401610732565b8051600090815260126020526040902080546126c15760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a206e6f2065646974696f60448201527f6e7320696e207468697320617274776f726b206f6620616c6c417274776f726b60648201526745646974696f6e7360c01b608482015260a401610732565b80546000906126d290600190613d5e565b9050600082600184805490506126e89190613d5e565b815481106126f8576126f8613bb9565b90600052602060002001549050808385602001518154811061271c5761271c613bb9565b9060005260206000200181905550836020015183838154811061274157612741613bb9565b90600052602060002001819055508280548061275f5761275f613e08565b6000828152602080822083016000199081018390559092019092559581526014909552505060408320838155600101929092555050565b60006127a18261109f565b90506127b1816000846001612891565b6127ba8261109f565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b038516808552600384528285208054600019019055878552600290935281842080549091169055519293508492600080516020613ee5833981519152908390a45050565b60006001600160e01b031982166380ac58cd60e01b148061285857506001600160e01b03198216635b5e139f60e01b145b806105d657506301ffc9a760e01b6001600160e01b03198316146105d6565b610a25828260405180602001604052806000815250612b51565b61289d84848484612b84565b600181111561290c5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b6064820152608401610732565b816001600160a01b0385166129685761296381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61298b565b836001600160a01b0316856001600160a01b03161461298b5761298b8582612c0c565b6001600160a01b0384166129a7576129a281612ca9565b6129ca565b846001600160a01b0316846001600160a01b0316146129ca576129ca8482612d58565b5050505050565b600080612a35612a2d886040517b0ca2ba3432b932bab69029b4b3b732b21026b2b9b9b0b3b29d05199960211b6020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b848787612d9c565b6001600160a01b039081169087161491505095945050505050565b60006001600160a01b0384163b15612b4657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a94903390899088908890600401613e1e565b6020604051808303816000875af1925050508015612acf575060408051601f3d908101601f19168201909252612acc91810190613e5b565b60015b612b2c573d808015612afd576040519150601f19603f3d011682016040523d82523d6000602084013e612b02565b606091505b508051600003612b245760405162461bcd60e51b815260040161073290613db6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611def565b506001949350505050565b612b5b8383612dc4565b612b686000848484612a50565b6107d35760405162461bcd60e51b815260040161073290613db6565b6001811115610924576001600160a01b03841615612bca576001600160a01b03841660009081526003602052604081208054839290612bc4908490613d5e565b90915550505b6001600160a01b03831615610924576001600160a01b03831660009081526003602052604081208054839290612c01908490613d4b565b909155505050505050565b60006001612c1984611120565b612c239190613d5e565b600083815260076020526040902054909150808214612c76576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612cbb90600190613d5e565b60008381526009602052604081205460088054939450909284908110612ce357612ce3613bb9565b906000526020600020015490508060088381548110612d0457612d04613bb9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612d3c57612d3c613e08565b6001900381819060005260206000200160009055905550505050565b6000612d6383611120565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000806000612dad87878787612ecd565b91509150612dba81612f87565b5095945050505050565b6001600160a01b038216612e1a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610732565b612e2381611998565b15612e405760405162461bcd60e51b815260040161073290613e78565b612e4e600083836001612891565b612e5781611998565b15612e745760405162461bcd60e51b815260040161073290613e78565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b031916841790555183929190600080516020613ee5833981519152908290a45050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b03831115612efa5750600090506003612f7e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612f4e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612f7757600060019250925050612f7e565b9150600090505b94509492505050565b6000816004811115612f9b57612f9b613eae565b03612fa35750565b6001816004811115612fb757612fb7613eae565b03612fff5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610732565b600281600481111561301357613013613eae565b036130605760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610732565b600381600481111561307457613074613eae565b0361159c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610732565b5080546130d8906139a7565b6000825580601f106130e8575050565b601f01602090049060005260206000209081019061159c91905b808211156131165760008155600101613102565b5090565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561314257600080fd5b813561314d8161311a565b9392505050565b80356001600160a01b038116811461316b57600080fd5b919050565b60006020828403121561318257600080fd5b61314d82613154565b60005b838110156131a657818101518382015260200161318e565b50506000910152565b600081518084526131c781602086016020860161318b565b601f01601f19169290920160200192915050565b60208152600061314d60208301846131af565b60006020828403121561320057600080fd5b5035919050565b6000806040838503121561321a57600080fd5b61322383613154565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b038111828210171561326957613269613231565b60405290565b60405160c081016001600160401b038111828210171561326957613269613231565b60405160e081016001600160401b038111828210171561326957613269613231565b604051601f8201601f191681016001600160401b03811182821017156132db576132db613231565b604052919050565b60006001600160401b038311156132fc576132fc613231565b61330f601f8401601f19166020016132b3565b905082815283838301111561332357600080fd5b828260208301376000602084830101529392505050565b600082601f83011261334b57600080fd5b61314d838335602085016132e3565b6000806040838503121561336d57600080fd5b8235915060208301356001600160401b0381111561338a57600080fd5b6133968582860161333a565b9150509250929050565b60006001600160401b038211156133b9576133b9613231565b5060051b60200190565b600060208083850312156133d657600080fd5b82356001600160401b03808211156133ed57600080fd5b818501915085601f83011261340157600080fd5b813561341461340f826133a0565b6132b3565b81815260059190911b8301840190848101908883111561343357600080fd5b8585015b838110156134d75780358581111561344f5760008081fd5b860160a0818c03601f19018113156134675760008081fd5b61346f613247565b8983013581526040808401358b830152606061348c818601613154565b828401526080915061349f828601613154565b908301529183013591888311156134b65760008081fd5b6134c48e8c8587010161333a565b9082015285525050918601918601613437565b5098975050505050505050565b6000806000606084860312156134f957600080fd5b61350284613154565b925061351060208501613154565b9150604084013590509250925092565b6000806040838503121561353357600080fd5b50508035926020909101359150565b6000602080838503121561355557600080fd5b82356001600160401b038082111561356c57600080fd5b818501915085601f83011261358057600080fd5b813561358e61340f826133a0565b81815260059190911b830184019084810190888311156135ad57600080fd5b8585015b838110156134d7578035858111156135c857600080fd5b860160c0818c03601f190112156135df5760008081fd5b6135e761326f565b88820135878111156135f95760008081fd5b6136078d8b8386010161333a565b8252506040808301358881111561361e5760008081fd5b61362c8e8c8387010161333a565b8b84015250606080840135898111156136455760008081fd5b6136538f8d8388010161333a565b83850152506080915081840135818401525060a0808401358284015260c08401358184015250508085525050868301925086810190506135b1565b60c0815260006136a160c08301896131af565b82810360208401526136b381896131af565b905082810360408401526136c781886131af565b60608401969096525050608081019290925260a0909101529392505050565b828152604060208201526000611def60408301846131af565b60006020828403121561371157600080fd5b81356001600160401b0381111561372757600080fd5b611def8482850161333a565b6000602080838503121561374657600080fd5b82356001600160401b0381111561375c57600080fd5b8301601f8101851361376d57600080fd5b803561377b61340f826133a0565b81815260e0918202830184019184820191908884111561379a57600080fd5b938501935b8385101561382a5780858a0312156137b75760008081fd5b6137bf613291565b6137c886613154565b81526137d5878701613154565b8188015260408681013590820152606080870135908201526080808701359082015260a0808701359082015260c08087013560ff811681146138175760008081fd5b908201528352938401939185019161379f565b50979650505050505050565b6000806040838503121561384957600080fd5b61385283613154565b91506020830135801515811461386757600080fd5b809150509250929050565b6000806000806080858703121561388857600080fd5b61389185613154565b935061389f60208601613154565b92506040850135915060608501356001600160401b038111156138c157600080fd5b8501601f810187136138d257600080fd5b6138e1878235602084016132e3565b91505092959194509250565b6000806040838503121561390057600080fd5b61390983613154565b9150610b1160208401613154565b6000602080838503121561392a57600080fd5b82356001600160401b0381111561394057600080fd5b8301601f8101851361395157600080fd5b803561395f61340f826133a0565b81815260059190911b8201830190838101908783111561397e57600080fd5b928401925b8284101561399c57833582529284019290840190613983565b979650505050505050565b600181811c908216806139bb57607f821691505b6020821081036139db57634e487b7160e01b600052602260045260246000fd5b50919050565b600082516139f381846020870161318b565b9190910192915050565b6020808252601690820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b604082015260600190565b60008154613a3a816139a7565b60018281168015613a525760018114613a6757613a96565b60ff1984168752821515830287019450613a96565b8560005260208060002060005b85811015613a8d5781548a820152908401908201613a74565b50505082870194505b5050505092915050565b600061314d8284613a2d565b601f8211156107d357600081815260208120601f850160051c81016020861015613ad35750805b601f850160051c820191505b81811015613af257828155600101613adf565b505050505050565b81516001600160401b03811115613b1357613b13613231565b613b2781613b2184546139a7565b84613aac565b602080601f831160018114613b5c5760008415613b445750858301515b600019600386901b1c1916600185901b178555613af2565b600085815260208120601f198616915b82811015613b8b57888601518255948401946001909101908401613b6c565b5085821015613ba95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201613bf757613bf7613bcf565b5060010190565b6020808252602d90820152600080516020613ec583398151915260408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b80820281158282048414176105d6576105d6613bcf565b600082613c6d57634e487b7160e01b600052601260045260246000fd5b500490565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b60008351613cb681846020880161318b565b613cc281840185613a2d565b95945050505050565b60208082526024908201527f4552433732313a20617274776f726b2065646974696f6e206973206e6f7420666040820152631bdd5b9960e21b606082015260800190565b6020808252602e90820152600080516020613ec583398151915260408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b808201808211156105d6576105d6613bcf565b818103818111156105d6576105d6613bcf565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613e51908301846131af565b9695505050505050565b600060208284031215613e6d57600080fd5b815161314d8161311a565b6020808252601c908201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b604082015260600190565b634e487b7160e01b600052602160045260246000fdfe4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef466572616c66696c6545786869626974696f6e56333a20746865207472616e73a2646970667358221220d1d2017e507163af033d34325dbf1989ffc0cf32e28d72be500859766025421064736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000005dc000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000324f70656e696e672043656c6562726174696f6e20e2809420526566696b20416e61646f6c3a20556e7375706572766973656400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d4e706e536a524c4b59416f70385744566d535a586d694b783269394c6268566a316b336a50324d47643867420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000

-----Decoded View---------------
Arg [0] : name_ (string): Opening Celebration — Refik Anadol: Unsupervised
Arg [1] : symbol_ (string):
Arg [2] : secondarySaleRoyaltyBPS_ (uint256): 1500
Arg [3] : royaltyPayoutAddress_ (address): 0x080FEB125bA730D6D12789B6AAAB01f4E31D8Bd1
Arg [4] : contractURI_ (string): https://ipfs.bitmark.com/ipfs/QmNpnSjRLKYAop8WDVmSZXmiKx2i9LbhVj1k3jP2MGd8gB
Arg [5] : tokenBaseURI_ (string): https://ipfs.bitmark.com/ipfs/
Arg [6] : isBurnable_ (bool): True
Arg [7] : isBridgeable_ (bool): True

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [3] : 000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [9] : 4f70656e696e672043656c6562726174696f6e20e2809420526566696b20416e
Arg [10] : 61646f6c3a20556e737570657276697365640000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000004c
Arg [13] : 68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d
Arg [14] : 4e706e536a524c4b59416f70385744566d535a586d694b783269394c6268566a
Arg [15] : 316b336a50324d47643867420000000000000000000000000000000000000000
Arg [16] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [17] : 68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000


Deployed Bytecode Sourcemap

72805:17334:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75778:310;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;75778:310:0;;;;;;;;4066:102;;;;;;:::i;:::-;;:::i;:::-;;42032:100;;;:::i;:::-;;;;;;;:::i;43544:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;43544:171:0;1902:203:1;43062:416:0;;;;;;:::i;:::-;;:::i;78860:478::-;;;;;;:::i;:::-;;:::i;84916:430::-;;;;;;:::i;:::-;;:::i;58610:113::-;58698:10;:17;58610:113;;;6925:25:1;;;6913:2;6898:18;58610:113:0;6779:177:1;44244:335:0;;;;;;:::i;:::-;;:::i;81764:460::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7739:32:1;;;7721:51;;7803:2;7788:18;;7781:34;;;;7694:18;81764:460:0;7547:274:1;58278:256:0;;;;;;:::i;:::-;;:::i;72952:35::-;;;;;-1:-1:-1;;;;;72952:35:0;;;44650:185;;;;;;:::i;:::-;;:::i;77766:465::-;;;;;;:::i;:::-;;:::i;79534:300::-;;;;;;:::i;:::-;;:::i;74395:43::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;58800:233::-;;;;;;:::i;:::-;;:::i;74469:57::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;41742:223::-;;;;;;:::i;:::-;;:::i;73267:60::-;;;;;;;;;;;;;;;-1:-1:-1;;;73267:60:0;;;;;80144:252;;;;;;:::i;:::-;;:::i;41473:207::-;;;;;;:::i;:::-;;:::i;2776:103::-;;;:::i;73403:24::-;;;;;-1:-1:-1;;;73403:24:0;;;;;;73353:22;;;;;-1:-1:-1;;;73353:22:0;;;;;;2128:87;;;:::i;81053:116::-;;;;;;:::i;:::-;;:::i;42201:104::-;;;:::i;83214:259::-;;;;;;:::i;:::-;;:::i;43787:155::-;;;;;;:::i;:::-;;:::i;78500:286::-;;;;;;:::i;:::-;;:::i;44906:322::-;;;;;;:::i;:::-;;:::i;80485:508::-;;;;;;:::i;:::-;;:::i;3959:99::-;;;;;;:::i;:::-;;:::i;78313:108::-;78394:12;:19;78313:108;;81242:97;;;:::i;44013:164::-;;;;;;:::i;:::-;;:::i;73066:48::-;;;;;73176:49;;73219:6;73176:49;;3767:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3034:201;;;;;;:::i;:::-;;:::i;89006:879::-;;;;;;:::i;:::-;;:::i;79900:174::-;;;;;;:::i;:::-;79998:7;80030:29;;;:18;:29;;;;;:36;;79900:174;75778:310;75935:4;-1:-1:-1;;;;;;75977:50:0;;-1:-1:-1;;;75977:50:0;;:103;;;76044:36;76068:11;76044:23;:36::i;:::-;75957:123;75778:310;-1:-1:-1;;75778:310:0:o;4066:102::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;4142:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;4135:25;;-1:-1:-1;;4135:25:0::1;::::0;;4066:102::o;42032:100::-;42086:13;42119:5;42112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42032:100;:::o;43544:171::-;43620:7;43640:23;43655:7;43640:14;:23::i;:::-;-1:-1:-1;43683:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43683:24:0;;43544:171::o;43062:416::-;43143:13;43159:23;43174:7;43159:14;:23::i;:::-;43143:39;;43207:5;-1:-1:-1;;;;;43201:11:0;:2;-1:-1:-1;;;;;43201:11:0;;43193:57;;;;-1:-1:-1;;;43193:57:0;;16257:2:1;43193: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;;43193:57:0;;;;;;;;;759:10;-1:-1:-1;;;;;43285:21:0;;;;:62;;-1:-1:-1;43310:37:0;43327:5;759:10;44013:164;:::i;43310:37::-;43263:173;;;;-1:-1:-1;;;43263:173:0;;16659:2:1;43263:173:0;;;16641:21:1;16698:2;16678:18;;;16671:30;16737:34;16717:18;;;16710:62;16808:31;16788:18;;;16781:59;16857:19;;43263:173:0;16457:425:1;43263:173:0;43449:21;43458:2;43462:7;43449:8;:21::i;:::-;43132:346;43062:416;;:::o;78860:478::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;79003:16:::1;79011:7;79003;:16::i;:::-;78995:57;;;::::0;-1:-1:-1;;;78995:57:0;;17089:2:1;78995:57:0::1;::::0;::::1;17071:21:1::0;17128:2;17108:18;;;17101:30;-1:-1:-1;;;17147:18:1;;;17140:58;17215:18;;78995:57:0::1;16887:352:1::0;78995:57:0::1;79072:18;79091:7;79072:27;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;79071:28;79063:63;;;;-1:-1:-1::0;;;79063:63:0::1;;;;;;;:::i;:::-;79139:30;79172:24:::0;;;:15:::1;:24;::::0;;;;;;79214:35;;:18:::1;::::0;:35:::1;::::0;79233:15:::1;::::0;::::1;::::0;79214:35:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;79207:42;;-1:-1:-1;;79207:42:0::1;::::0;;;;79260:18:::1;::::0;:27:::1;::::0;79279:7;;79260:27:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:34;;;::::1;;-1:-1:-1::0;;79260:34:0;;::::1;::::0;;;::::1;::::0;;;79305:15;::::1;:25;79323:7:::0;79305:15;:25:::1;:::i;:::-;;78984:354;78860:478:::0;;:::o;84916:430::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;85037:9:::1;85032:307;85056:11;:18;85052:1;:22;85032:307;;;85096:231;85127:11;85139:1;85127:14;;;;;;;;:::i;:::-;;;;;;;:24;;;85170:11;85182:1;85170:14;;;;;;;;:::i;:::-;;;;;;;:22;;;85211:11;85223:1;85211:14;;;;;;;;:::i;:::-;;;;;;;:21;;;85251:11;85263:1;85251:14;;;;;;;;:::i;:::-;;;;;;;:20;;;85290:11;85302:1;85290:14;;;;;;;;:::i;:::-;;;;;;;:22;;;85096:12;:231::i;:::-;85076:3:::0;::::1;::::0;::::1;:::i;:::-;;;;85032:307;;;;84916:430:::0;:::o;44244:335::-;44439:41;759:10;44472:7;44439:18;:41::i;:::-;44431:99;;;;-1:-1:-1;;;44431:99:0;;;;;;;:::i;:::-;44543:28;44553:4;44559:2;44563:7;44543:9;:28::i;81764:460::-;81889:16;81907:21;81968:16;81976:7;81968;:16::i;:::-;81946:115;;;;-1:-1:-1;;;81946:115:0;;22042:2:1;81946:115:0;;;22024:21:1;22081:2;22061:18;;;22054:30;22120:34;22100:18;;;22093:62;-1:-1:-1;;;22171:18:1;;;22164:47;22228:19;;81946:115:0;21840:413:1;81946:115:0;82085:20;;-1:-1:-1;;;;;82085:20:0;;-1:-1:-1;73219:6:0;82148:35;82160:23;82148:9;:35;:::i;:::-;82147:69;;;;:::i;:::-;82118:98;;81764:460;;;;;:::o;58278:256::-;58375:7;58411:23;58428:5;58411:16;:23::i;:::-;58403:5;:31;58395:87;;;;-1:-1:-1;;;58395:87:0;;22855:2:1;58395:87:0;;;22837:21:1;22894:2;22874:18;;;22867:30;22933:34;22913:18;;;22906:62;-1:-1:-1;;;22984:18:1;;;22977:41;23035:19;;58395:87:0;22653:407:1;58395:87:0;-1:-1:-1;;;;;;58500:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;58278:256::o;44650:185::-;44788:39;44805:4;44811:2;44815:7;44788:39;;;;;;;;;;;;:16;:39::i;77766:465::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;77881:9:::1;77876:348;77900:9;:16;77896:1;:20;77876:348;;;77938:274;77971:9;77981:1;77971:12;;;;;;;;:::i;:::-;;;;;;;:24;;;78014:9;78024:1;78014:12;;;;;;;;:::i;:::-;;;;;;;:18;;;78051:9;78061:1;78051:12;;;;;;;;:::i;:::-;;;;;;;:23;;;78093:9;78103:1;78093:12;;;;;;;;:::i;:::-;;;;;;;:24;;;78136:9;78146:1;78136:12;;;;;;;;:::i;:::-;;;;;;;:21;;;78176:9;78186:1;78176:12;;;;;;;;:::i;:::-;;;;;;;:21;;;77938:14;:274::i;:::-;77918:3:::0;::::1;::::0;::::1;:::i;:::-;;;;77876:348;;79534:300:::0;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;-1:-1:-1;;;;;79678:35:0;::::1;79656:115;;;::::0;-1:-1:-1;;;79656:115:0;;23267:2:1;79656:115:0::1;::::0;::::1;23249:21:1::0;23306:2;23286:18;;;23279:30;23345:32;23325:18;;;23318:60;23395:18;;79656:115:0::1;23065:354:1::0;79656:115:0::1;79782:20;:44:::0;;-1:-1:-1;;;;;;79782:44:0::1;-1:-1:-1::0;;;;;79782:44:0;;;::::1;::::0;;;::::1;::::0;;79534:300::o;74395:43::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58800:233::-;58875:7;58911:30;58698:10;:17;;58610:113;58911:30;58903:5;:38;58895:95;;;;-1:-1:-1;;;58895:95:0;;23626:2:1;58895:95:0;;;23608:21:1;23665:2;23645:18;;;23638:30;23704:34;23684:18;;;23677:62;-1:-1:-1;;;23755:18:1;;;23748:42;23807:19;;58895:95:0;23424:408:1;58895:95:0;59008:10;59019:5;59008:17;;;;;;;;:::i;:::-;;;;;;;;;59001:24;;58800:233;;;:::o;74469:57::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41742:223::-;41814:7;41834:13;41850:17;41859:7;41850:8;:17::i;:::-;41834:33;-1:-1:-1;;;;;;41886:19:0;;41878:56;;;;-1:-1:-1;;;41878:56:0;;;;;;;:::i;80144:252::-;80260:7;80030:29;;;:18;:29;;;;;:36;80293:5;:40;80285:49;;;;;;80352:29;;;;:18;:29;;;;;:36;;80382:5;;80352:36;;;;;;:::i;:::-;;;;;;;;;80345:43;;80144:252;;;;:::o;41473:207::-;41545:7;-1:-1:-1;;;;;41573:19:0;;41565:73;;;;-1:-1:-1;;;41565:73:0;;24392:2:1;41565:73:0;;;24374:21:1;24431:2;24411:18;;;24404:30;24470:34;24450:18;;;24443:62;-1:-1:-1;;;24521:18:1;;;24514:39;24570:19;;41565:73:0;24190:405:1;41565:73:0;-1:-1:-1;;;;;;41656:16:0;;;;;:9;:16;;;;;;;41473:207::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2201:6;;-1:-1:-1;;;;;2201:6:0;;2128:87::o;81053:116::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;81137:13:::1;:24;81153:8:::0;81137:13;:24:::1;:::i;42201:104::-:0;42257:13;42290:7;42283:14;;;;;:::i;83214:259::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;;3923:7;:5;:7::i;:::-;-1:-1:-1;;;;;3909:21:0;:10;-1:-1:-1;;;;;3909:21:0;;3885:45;3877:54;;;;;;83352:9:::1;83347:119;83371:15;:22;83367:1;:26;83347:119;;;83415:39;83435:15;83451:1;83435:18;;;;;;;;:::i;:::-;;;;;;;83415:19;:39::i;:::-;83395:3:::0;::::1;::::0;::::1;:::i;:::-;;;;83347:119;;43787:155:::0;43882:52;759:10;43915:8;43925;43882:18;:52::i;78500:286::-;78607:7;78662:15;78394:12;:19;;78313:108;78662:15;78654:5;:23;78632:109;;;;-1:-1:-1;;;78632:109:0;;24802:2:1;78632:109:0;;;24784:21:1;24841:2;24821:18;;;24814:30;24880:34;24860:18;;;24853:62;-1:-1:-1;;;24931:18:1;;;24924:34;24975:19;;78632:109:0;24600:400:1;78632:109:0;78759:12;78772:5;78759:19;;;;;;;;:::i;44906:322::-;45080:41;759:10;45113:7;45080:18;:41::i;:::-;45072:99;;;;-1:-1:-1;;;45072:99:0;;;;;;;:::i;:::-;45182:38;45196:4;45202:2;45206:7;45215:4;45182:13;:38::i;80485:508::-;80603:13;80656:16;80664:7;80656;:16::i;:::-;80634:113;;;;-1:-1:-1;;;80634:113:0;;25207:2:1;80634:113:0;;;25189:21:1;25246:2;25226:18;;;25219:30;25285:34;25265:18;;;25258:62;-1:-1:-1;;;25336:18:1;;;25329:45;25391:19;;80634:113:0;25005:411:1;80634:113:0;80760:21;80784:13;80760:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80818:7;80812:21;80837:1;80812:26;80808:78;;-1:-1:-1;80855:19:0;;;;;;;;;;;;-1:-1:-1;;;80855:19:0;;;;80808:78;80942:7;80951:15;:24;80967:7;80951:24;;;;;;;;;;;:32;;80925:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80898:87;;;80485:508;;;:::o;3959:99::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;4025:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;4025:25:0::1;4046:4;4025:25;::::0;;3959:99::o;81242:97::-;81286:13;81319:12;81312:19;;;;;:::i;44013:164::-;-1:-1:-1;;;;;44134:25:0;;;44110:4;44134:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44013:164::o;3034:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;25997:2:1;3115:73:0::1;::::0;::::1;25979:21:1::0;26036:2;26016:18;;;26009:30;26075:34;26055:18;;;26048:62;-1:-1:-1;;;26126:18:1;;;26119:36;26172:19;;3115:73:0::1;25795:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;89006:879::-;89084:10;;-1:-1:-1;;;89084:10:0;;;;89076:68;;;;-1:-1:-1;;;89076:68:0;;26404:2:1;89076:68:0;;;26386:21:1;26443:2;26423:18;;;26416:30;26482:34;26462:18;;;26455:62;-1:-1:-1;;;26533:18:1;;;26526:43;26586:19;;89076:68:0;26202:409:1;89076:68:0;89162:9;89157:721;89181:11;:18;89177:1;:22;89157:721;;;89247:23;89255:11;89267:1;89255:14;;;;;;;;:::i;:::-;;;;;;;89247:7;:23::i;:::-;89221:121;;;;-1:-1:-1;;;89221:121:0;;;;;;;:::i;:::-;89383:48;759:10;89416:11;89428:1;89416:14;;;;;;;;:::i;:::-;;;;;;;89383:18;:48::i;:::-;89357:156;;;;-1:-1:-1;;;89357:156:0;;;;;;;:::i;:::-;89528:29;89560:15;:31;89576:11;89588:1;89576:14;;;;;;;;:::i;:::-;;;;;;;89560:31;;;;;;;;;;;89528:63;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89615:18;89634:7;:15;;;89615:35;;;;;;:::i;:::-;;;;;;;;;;;;;;89608:42;;-1:-1:-1;;89608:42:0;;;89688:14;;89672:15;;89615:35;;89688:11;;89700:1;;89688:14;;;;;;:::i;:::-;;;;;;;89672:31;;;;;;;;;;;;89665:38;;;;;;;;;;;;;;:::i;:::-;;;89720:52;89757:11;89769:1;89757:14;;;;;;;;:::i;:::-;;;;;;;89720:36;:52::i;:::-;89789:21;89795:11;89807:1;89795:14;;;;;;;;:::i;:::-;;;;;;;89789:5;:21::i;:::-;89851:11;89863:1;89851:14;;;;;;;;:::i;:::-;;;;;;;89832:34;;;;;;;;;;-1:-1:-1;89201:3:0;;;;:::i;:::-;;;;89157:721;;57970:224;58072:4;-1:-1:-1;;;;;;58096:50:0;;-1:-1:-1;;;58096:50:0;;:90;;;58150:36;58174:11;58150:23;:36::i;2293:132::-;759:10;2357:7;:5;:7::i;:::-;-1:-1:-1;;;;;2357:23:0;;2349:68;;;;-1:-1:-1;;;2349:68:0;;27638:2:1;2349:68:0;;;27620:21:1;;;27657:18;;;27650:30;27716:34;27696:18;;;27689:62;27768:18;;2349:68:0;27436:356:1;53363:135:0;53445:16;53453:7;53445;:16::i;:::-;53437:53;;;;-1:-1:-1;;;53437:53:0;;;;;;;:::i;52642:174::-;52717:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;52717:29:0;-1:-1:-1;;;;;52717:29:0;;;;;;;;:24;;52771:23;52717:24;52771:14;:23::i;:::-;-1:-1:-1;;;;;52762:46:0;;;;;;;;;;;52642:174;;:::o;46966:128::-;47031:4;;47055:17;47064:7;47055:8;:17::i;:::-;-1:-1:-1;;;;;47055:31:0;;;;46966:128;-1:-1:-1;;46966:128:0:o;85746:1880::-;86081:1;86046:20;;;:8;:20;;;;;:32;;;86024:129;;;;-1:-1:-1;;;86024:129:0;;27999:2:1;86024:129:0;;;27981:21:1;28038:2;28018:18;;;28011:30;28077:34;28057:18;;;28050:62;-1:-1:-1;;;28128:18:1;;;28121:41;28179:19;;86024:129:0;27797:407:1;86024:129:0;86462:20;;;;:8;:20;;;;;:29;;;;86409;;;;86353:32;;;;;86462:29;;86353:85;;;:::i;:::-;:138;;;;:::i;:::-;86319:14;:172;86297:298;;;;-1:-1:-1;;;86297:298:0;;28541:2:1;86297:298:0;;;28523:21:1;28580:2;28560:18;;;28553:30;28619:34;28599:18;;;28592:62;28690:34;28670:18;;;28663:62;-1:-1:-1;;;28741:19:1;;;28734:43;28794:19;;86297:298:0;28339:480:1;86297:298:0;-1:-1:-1;;;;;86614:21:0;;86606:56;;;;-1:-1:-1;;;86606:56:0;;29026:2:1;86606:56:0;;;29008:21:1;29065:2;29045:18;;;29038:30;-1:-1:-1;;;29084:18:1;;;29077:52;29146:18;;86606:56:0;28824:346:1;86606:56:0;-1:-1:-1;;;;;86681:20:0;;86673:54;;;;-1:-1:-1;;;86673:54:0;;29377:2:1;86673:54:0;;;29359:21:1;29416:2;29396:18;;;29389:30;-1:-1:-1;;;29435:18:1;;;29428:51;29496:18;;86673:54:0;29175:345:1;86673:54:0;86747:18;86766:8;86747:28;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;86746:29;86738:64;;;;-1:-1:-1;;;86738:64:0;;;;;;;:::i;:::-;86815:17;86835:27;86848:14;86835:10;:27;:::i;:::-;86895:26;;;;:15;:26;;;;;:36;86815:47;;-1:-1:-1;86895:41:0;86873:137;;;;-1:-1:-1;;;86873:137:0;;29727:2:1;86873:137:0;;;29709:21:1;29766:2;29746:18;;;29739:30;29805:34;29785:18;;;29778:62;-1:-1:-1;;;29856:18:1;;;29849:44;29910:19;;86873:137:0;29525:410:1;86873:137:0;87055:35;;;;;;;;;;;;;;;;;;87023:29;87103:26;;;:15;:26;;;;;;:36;;;;;;87055:35;;;;87103:36;;;;;;;;:::i;:::-;-1:-1:-1;;;87150:30:0;;;;:18;:30;;;;;;;;:46;;;;;;;;;;;;;;;;;;;;87244:111;;;;;;;;;;;87303:30;;;;;;;:37;;87244:111;;;;;;87303:41;;87150:46;87303:41;:::i;:::-;87244:111;;87207:34;;;;:23;:34;;;;;;;;;:148;;;;;;;;;;;;87368:28;:18;;:28;;87387:8;;87368:28;:::i;:::-;;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;87368:35:0;;;;;;;;;87416:29;87426:7;87435:9;87416;:29::i;:::-;87473:6;-1:-1:-1;;;;;87462:17:0;:7;-1:-1:-1;;;;;87462:17:0;;87458:95;;87496:45;87510:7;87519:6;87527:9;87496:45;;;;;;;;;;;;:13;:45::i;:::-;87608:9;87596:10;87588:6;-1:-1:-1;;;;;87570:48:0;;;;;;;;;;;85929:1697;;85746:1880;;;;;:::o;47261:264::-;47354:4;47371:13;47387:23;47402:7;47387:14;:23::i;:::-;47371:39;;47440:5;-1:-1:-1;;;;;47429:16:0;:7;-1:-1:-1;;;;;47429:16:0;;:52;;;;47449:32;47466:5;47473:7;47449:16;:32::i;:::-;47429:87;;;;47509:7;-1:-1:-1;;;;;47485:31:0;:20;47497:7;47485:11;:20::i;:::-;-1:-1:-1;;;;;47485:31:0;;47429:87;47421:96;47261:264;-1:-1:-1;;;;47261:264:0:o;51260:1263::-;51419:4;-1:-1:-1;;;;;51392:31:0;:23;51407:7;51392:14;:23::i;:::-;-1:-1:-1;;;;;51392:31:0;;51384:81;;;;-1:-1:-1;;;51384:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51484:16:0;;51476:65;;;;-1:-1:-1;;;51476:65:0;;30681:2:1;51476:65:0;;;30663:21:1;30720:2;30700:18;;;30693:30;30759:34;30739:18;;;30732:62;-1:-1:-1;;;30810:18:1;;;30803:34;30854:19;;51476:65:0;30479:400:1;51476:65:0;51554:42;51575:4;51581:2;51585:7;51594:1;51554:20;:42::i;:::-;51726:4;-1:-1:-1;;;;;51699:31:0;:23;51714:7;51699:14;:23::i;:::-;-1:-1:-1;;;;;51699:31:0;;51691:81;;;;-1:-1:-1;;;51691:81:0;;;;;;;:::i;:::-;51844:24;;;;:15;:24;;;;;;;;51837:31;;-1:-1:-1;;;;;;51837:31:0;;;;;;-1:-1:-1;;;;;52320:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;52320:20:0;;;52355:13;;;;;;;;;:18;;51837:31;52355:18;;;52395:16;;;:7;:16;;;;;;:21;;;;;;;;;;52434:27;;51860:7;;-1:-1:-1;;;;;;;;;;;52434:27:0;;43132:346;43062:416;;:::o;76388:1240::-;76637:5;76631:19;76654:1;76631:24;76623:59;;;;-1:-1:-1;;;76623:59:0;;31086:2:1;76623:59:0;;;31068:21:1;31125:2;31105:18;;;31098:30;-1:-1:-1;;;31144:18:1;;;31137:52;31206:18;;76623:59:0;30884:346:1;76623:59:0;76707:10;76701:24;76729:1;76701:29;76693:65;;;;-1:-1:-1;;;76693:65:0;;31437:2:1;76693:65:0;;;31419:21:1;31476:2;31456:18;;;31449:30;-1:-1:-1;;;31495:18:1;;;31488:53;31558:18;;76693:65:0;31235:347:1;76693:65:0;76783:11;76777:25;76806:1;76777:30;76769:71;;;;-1:-1:-1;;;76769:71:0;;31789:2:1;76769:71:0;;;31771:21:1;31828:2;31808:18;;;31801:30;-1:-1:-1;;;31847:18:1;;;31840:58;31915:18;;76769:71:0;31587:352:1;76769:71:0;76873:1;76859:11;:15;76851:63;;;;-1:-1:-1;;;76851:63:0;;32146:2:1;76851:63:0;;;32128:21:1;32185:2;32165:18;;;32158:30;32224:34;32204:18;;;32197:62;-1:-1:-1;;;32275:18:1;;;32268:33;32318:19;;76851:63:0;31944:399:1;76851:63:0;76927:17;76976:11;76965:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;76965:23:0;;;;;;;;;76955:34;;76965:23;76955:34;;;;76947:43;77099:19;;;:8;:19;;;;;:31;;77093:45;;76955:34;;-1:-1:-1;77099:31:0;77093:45;;;:::i;:::-;:50;;-1:-1:-1;77071:159:0;;;;-1:-1:-1;;;77071:159:0;;32550:2:1;77071:159:0;;;32532:21:1;32589:2;32569:18;;;32562:30;32628:34;32608:18;;;32601:62;-1:-1:-1;;;32679:18:1;;;32672:57;32746:19;;77071:159:0;32348:423:1;77071:159:0;77268:232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77513:12;:28;;;;;;;;;;;;;77243:22;77552:19;;;:8;:19;;;;;;;:29;;77268:232;;77552:19;;;:29;;:19;:29;:::i;:::-;-1:-1:-1;77552:29:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;77552:29:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;77552:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;77599:21;;77610:9;;77599:21;;-1:-1:-1;;77599:21:0;76612:1016;;76388:1240;;;;;;:::o;46536:117::-;46602:7;46629:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46629:16:0;;46536:117::o;3395:191::-;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3458:128;3395:191;:::o;83481:1304::-;83609:31;83617:14;:22;;;83609:7;:31::i;:::-;83587:117;;;;-1:-1:-1;;;83587:117:0;;;;;;;:::i;:::-;83739:63;83758:14;:19;;;83779:14;:22;;;83739:18;:63::i;:::-;83717:159;;;;-1:-1:-1;;;83717:159:0;;;;;;;:::i;:::-;83930:14;:25;;;83911:15;:44;;83889:148;;;;-1:-1:-1;;;83889:148:0;;32978:2:1;83889:148:0;;;32960:21:1;33017:2;32997:18;;;32990:30;-1:-1:-1;;;;;;;;;;;33036:18:1;;;33029:62;-1:-1:-1;;;33107:18:1;;;33100:52;33169:19;;83889:148:0;32776:418:1;83889:148:0;84050:19;84125:14;:19;;;84163:14;:17;;;84199:14;:22;;;84240:14;:25;;;84096:184;;;;;;;;;;-1:-1:-1;;;;;33486:15:1;;;33468:34;;33538:15;;;;33533:2;33518:18;;33511:43;33585:2;33570:18;;33563:34;33628:2;33613:18;;33606:34;;;;33417:3;33402:19;;33199:447;84096:184:0;;;;;;;;;;;;;84072:219;;;;;;84050:241;;84326:205;84359:11;84389:14;:19;;;84427:14;:17;;;84463:14;:17;;;84499:14;:17;;;84326:14;:205::i;:::-;84304:316;;;;-1:-1:-1;;;84304:316:0;;33853:2:1;84304:316:0;;;33835:21:1;33892:2;33872:18;;;33865:30;-1:-1:-1;;;;;;;;;;;33911:18:1;;;33904:62;34002:31;33982:18;;;33975:59;34051:19;;84304:316:0;33651:425:1;84304:316:0;84633:144;84661:14;:19;;;84695:14;:17;;;84727:14;:22;;;84633:144;;;;;;;;;;;;:13;:144::i;52959:315::-;53114:8;-1:-1:-1;;;;;53105:17:0;:5;-1:-1:-1;;;;;53105:17:0;;53097:55;;;;-1:-1:-1;;;53097:55:0;;34283:2:1;53097:55:0;;;34265:21:1;34322:2;34302:18;;;34295:30;-1:-1:-1;;;34341:18:1;;;34334:55;34406:18;;53097:55:0;34081:349:1;53097:55:0;-1:-1:-1;;;;;53163:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;53163:46:0;;;;;;;;;;53225:41;;540::1;;;53225::0;;513:18:1;53225:41:0;;;;;;;52959:315;;;:::o;46109:313::-;46265:28;46275:4;46281:2;46285:7;46265:9;:28::i;:::-;46312:47;46335:4;46341:2;46345:7;46354:4;46312:22;:47::i;:::-;46304:110;;;;-1:-1:-1;;;46304:110:0;;;;;;;:::i;87789:1110::-;87873:59;87935:34;;;:23;:34;;;;;;;;;87873:96;;;;;;;;;;;;;;;;;;;;;;;;;87982:155;;;;-1:-1:-1;;;87982:155:0;;35056:2:1;87982:155:0;;;35038:21:1;35095:2;35075:18;;;35068:30;35134:34;35114:18;;;35107:62;35205:34;35185:18;;;35178:62;-1:-1:-1;;;35256:19:1;;;35249:39;35305:19;;87982:155:0;34854:476:1;87982:155:0;88220:29;;88150:34;88187:73;;;:18;:73;;;;;88295:23;;88273:149;;;;-1:-1:-1;;;88273:149:0;;35537:2:1;88273:149:0;;;35519:21:1;35576:2;35556:18;;;35549:30;35615:34;35595:18;;;35588:62;35686:34;35666:18;;;35659:62;-1:-1:-1;;;35737:19:1;;;35730:39;35786:19;;88273:149:0;35335:476:1;88273:149:0;88462:23;;88435:24;;88462:27;;88488:1;;88462:27;:::i;:::-;88435:54;;88500:21;88524:16;88567:1;88541:16;:23;;;;:27;;;;:::i;:::-;88524:45;;;;;;;;:::i;:::-;;;;;;;;;88500:69;;88718:13;88672:16;88689:19;:25;;;88672:43;;;;;;;;:::i;:::-;;;;;;;;:59;;;;88779:19;:25;;;88742:16;88759;88742:34;;;;;;;;:::i;:::-;;;;;;;;:62;;;;88815:16;:22;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;88815:22:0;;;;;;;;;;;;88857:34;;;:23;:34;;;-1:-1:-1;;88857:34:0;;;88850:41;;;88815:22;88850:41;;;;;-1:-1:-1;;87789:1110:0:o;50140:783::-;50200:13;50216:23;50231:7;50216:14;:23::i;:::-;50200:39;;50252:51;50273:5;50288:1;50292:7;50301:1;50252:20;:51::i;:::-;50416:23;50431:7;50416:14;:23::i;:::-;50487:24;;;;:15;:24;;;;;;;;50480:31;;-1:-1:-1;;;;;;50480:31:0;;;;;;-1:-1:-1;;;;;50732:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;50732:21:0;;;50782:16;;;:7;:16;;;;;;50775:23;;;;;;;50816:36;50408:31;;-1:-1:-1;50503:7:0;;-1:-1:-1;;;;;;;;;;;50816:36:0;50487:24;;50816:36;85032:307:::1;84916:430:::0;:::o;41104:305::-;41206:4;-1:-1:-1;;;;;;41243:40:0;;-1:-1:-1;;;41243:40:0;;:105;;-1:-1:-1;;;;;;;41300:48:0;;-1:-1:-1;;;41300:48:0;41243:105;:158;;;-1:-1:-1;;;;;;;;;;17446:40:0;;;41365:36;17337:157;47867:110;47943:26;47953:2;47957:7;47943:26;;;;;;;;;;;;:9;:26::i;59107:915::-;59284:61;59311:4;59317:2;59321:12;59335:9;59284:26;:61::i;:::-;59374:1;59362:9;:13;59358:222;;;59505:63;;-1:-1:-1;;;59505:63:0;;36150:2:1;59505:63:0;;;36132:21:1;36189:2;36169:18;;;36162:30;36228:34;36208:18;;;36201:62;-1:-1:-1;;;36279:18:1;;;36272:51;36340:19;;59505:63:0;35948:417:1;59358:222:0;59610:12;-1:-1:-1;;;;;59639:18:0;;59635:187;;59674:40;59706:7;60849:10;:17;;60822:24;;;;:15;:24;;;;;:44;;;60877:24;;;;;;;;;;;;60745:164;59674:40;59635:187;;;59744:2;-1:-1:-1;;;;;59736:10:0;:4;-1:-1:-1;;;;;59736:10:0;;59732:90;;59763:47;59796:4;59802:7;59763:32;:47::i;:::-;-1:-1:-1;;;;;59836:16:0;;59832:183;;59869:45;59906:7;59869:36;:45::i;:::-;59832:183;;;59942:4;-1:-1:-1;;;;;59936:10:0;:2;-1:-1:-1;;;;;59936:10:0;;59932:83;;59963:40;59991:2;59995:7;59963:27;:40::i;:::-;59273:749;59107:915;;;;:::o;82684:371::-;82851:4;82868:14;82885:128;82913:38;82942:8;71553:58;;-1:-1:-1;;;71553:58:0;;;37348:80:1;37444:12;;;37437:28;;;71420:7:0;;37481:12:1;;71553:58:0;;;;;;;;;;;;71543:69;;;;;;71536:76;;71351:269;;;;82913:38;82966:2;82983;83000;82885:13;:128::i;:::-;-1:-1:-1;;;;;83031:16:0;;;;;;;;-1:-1:-1;;82684:371:0;;;;;;;:::o;54062:853::-;54216:4;-1:-1:-1;;;;;54237:13:0;;5703:19;:23;54233:675;;54273:71;;-1:-1:-1;;;54273:71:0;;-1:-1:-1;;;;;54273:36:0;;;;;:71;;759:10;;54324:4;;54330:7;;54339:4;;54273:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54273:71:0;;;;;;;;-1:-1:-1;;54273:71:0;;;;;;;;;;;;:::i;:::-;;;54269:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54514:6;:13;54531:1;54514:18;54510:328;;54557:60;;-1:-1:-1;;;54557:60:0;;;;;;;:::i;54510:328::-;54788:6;54782:13;54773:6;54769:2;54765:15;54758:38;54269:584;-1:-1:-1;;;;;;54395:51:0;-1:-1:-1;;;54395:51:0;;-1:-1:-1;54388:58:0;;54233:675;-1:-1:-1;54892:4:0;54062:853;;;;;;:::o;48204:319::-;48333:18;48339:2;48343:7;48333:5;:18::i;:::-;48384:53;48415:1;48419:2;48423:7;48432:4;48384:22;:53::i;:::-;48362:153;;;;-1:-1:-1;;;48362:153:0;;;;;;;:::i;55647:410::-;55837:1;55825:9;:13;55821:229;;;-1:-1:-1;;;;;55859:18:0;;;55855:87;;-1:-1:-1;;;;;55898:15:0;;;;;;:9;:15;;;;;:28;;55917:9;;55898:15;:28;;55917:9;;55898:28;:::i;:::-;;;;-1:-1:-1;;55855:87:0;-1:-1:-1;;;;;55960:16:0;;;55956:83;;-1:-1:-1;;;;;55997:13:0;;;;;;:9;:13;;;;;:26;;56014:9;;55997:13;:26;;56014:9;;55997:26;:::i;:::-;;;;-1:-1:-1;;55647:410:0;;;;:::o;61536:988::-;61802:22;61852:1;61827:22;61844:4;61827:16;:22::i;:::-;:26;;;;:::i;:::-;61864:18;61885:26;;;:17;:26;;;;;;61802:51;;-1:-1:-1;62018:28:0;;;62014:328;;-1:-1:-1;;;;;62085:18:0;;62063:19;62085:18;;;:12;:18;;;;;;;;:34;;;;;;;;;62136:30;;;;;;:44;;;62253:30;;:17;:30;;;;;:43;;;62014:328;-1:-1:-1;62438:26:0;;;;:17;:26;;;;;;;;62431:33;;;-1:-1:-1;;;;;62482:18:0;;;;;:12;:18;;;;;:34;;;;;;;62475:41;61536:988::o;62819:1079::-;63097:10;:17;63072:22;;63097:21;;63117:1;;63097:21;:::i;:::-;63129:18;63150:24;;;:15;:24;;;;;;63523:10;:26;;63072:46;;-1:-1:-1;63150:24:0;;63072:46;;63523:26;;;;;;:::i;:::-;;;;;;;;;63501:48;;63587:11;63562:10;63573;63562:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;63667:28;;;:15;:28;;;;;;;:41;;;63839:24;;;;;63832:31;63874:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;62890:1008;;;62819:1079;:::o;60323:221::-;60408:14;60425:20;60442:2;60425:16;:20::i;:::-;-1:-1:-1;;;;;60456:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;60501:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;60323:221:0:o;70772:279::-;70900:7;70921:17;70940:18;70962:25;70973:4;70979:1;70982;70985;70962:10;:25::i;:::-;70920:67;;;;70998:18;71010:5;70998:11;:18::i;:::-;-1:-1:-1;71034:9:0;70772:279;-1:-1:-1;;;;;70772:279:0:o;48859:942::-;-1:-1:-1;;;;;48939:16:0;;48931:61;;;;-1:-1:-1;;;48931:61:0;;37706:2:1;48931:61:0;;;37688:21:1;;;37725:18;;;37718:30;37784:34;37764:18;;;37757:62;37836:18;;48931:61:0;37504:356:1;48931:61:0;49012:16;49020:7;49012;:16::i;:::-;49011:17;49003:58;;;;-1:-1:-1;;;49003:58:0;;;;;;;:::i;:::-;49074:48;49103:1;49107:2;49111:7;49120:1;49074:20;:48::i;:::-;49221:16;49229:7;49221;:16::i;:::-;49220:17;49212:58;;;;-1:-1:-1;;;49212:58:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49619:13:0;;;;;;:9;:13;;;;;;;;:18;;49636:1;49619:18;;;49661:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;49661:21:0;;;;;49700:33;49669:7;;49619:13;;-1:-1:-1;;;;;;;;;;;49700:33:0;49619:13;;49700:33;85032:307:::1;84916:430:::0;:::o;69113:1520::-;69244:7;;-1:-1:-1;;;;;70165:79:0;;70161:163;;;-1:-1:-1;70277:1:0;;-1:-1:-1;70281:30:0;70261:51;;70161:163;70438:24;;;70421:14;70438:24;;;;;;;;;38449:25:1;;;38522:4;38510:17;;38490:18;;;38483:45;;;;38544:18;;;38537:34;;;38587:18;;;38580:34;;;70438:24:0;;38421:19:1;;70438:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;70438:24:0;;-1:-1:-1;;70438:24:0;;;-1:-1:-1;;;;;;;70477:20:0;;70473:103;;70530:1;70534:29;70514:50;;;;;;;70473:103;70596:6;-1:-1:-1;70604:20:0;;-1:-1:-1;69113:1520:0;;;;;;;;:::o;64505:521::-;64583:20;64574:5;:29;;;;;;;;:::i;:::-;;64570:449;;64505:521;:::o;64570:449::-;64681:29;64672:5;:38;;;;;;;;:::i;:::-;;64668:351;;64727:34;;-1:-1:-1;;;64727:34:0;;38959:2:1;64727:34:0;;;38941:21:1;38998:2;38978:18;;;38971:30;-1:-1:-1;;;39017:18:1;;;39010:54;39081:18;;64727:34:0;38757:348:1;64668:351:0;64792:35;64783:5;:44;;;;;;;;:::i;:::-;;64779:240;;64844:41;;-1:-1:-1;;;64844:41:0;;39312:2:1;64844:41:0;;;39294:21:1;39351:2;39331:18;;;39324:30;39390:33;39370:18;;;39363:61;39441:18;;64844:41:0;39110:355:1;64779:240:0;64916:30;64907:5;:39;;;;;;;;:::i;:::-;;64903:116;;64963:44;;-1:-1:-1;;;64963:44:0;;39672:2:1;64963:44:0;;;39654:21:1;39711:2;39691:18;;;39684:30;39750:34;39730:18;;;39723:62;-1:-1:-1;;;39801:18:1;;;39794:32;39843:19;;64963:44:0;39470: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;17244:289::-;17375:3;17413:6;17407:13;17429:66;17488:6;17483:3;17476:4;17468:6;17464:17;17429:66;:::i;:::-;17511:16;;;;;17244:289;-1:-1:-1;;17244:289:1:o;17538:346::-;17740:2;17722:21;;;17779:2;17759:18;;;17752:30;-1:-1:-1;;;17813:2:1;17798:18;;17791:52;17875:2;17860:18;;17538:346::o;18015:722::-;18065:3;18106:5;18100:12;18135:36;18161:9;18135:36;:::i;:::-;18190:1;18207:18;;;18234:133;;;;18381:1;18376:355;;;;18200:531;;18234:133;-1:-1:-1;;18267:24:1;;18255:37;;18340:14;;18333:22;18321:35;;18312:45;;;-1:-1:-1;18234:133:1;;18376:355;18407:5;18404:1;18397:16;18436:4;18481:2;18478:1;18468:16;18506:1;18520:165;18534:6;18531:1;18528:13;18520:165;;;18612:14;;18599:11;;;18592:35;18655:16;;;;18549:10;;18520:165;;;18524:3;;;18714:6;18709:3;18705:16;18698:23;;18200:531;;;;;18015:722;;;;:::o;18742:197::-;18870:3;18895:38;18929:3;18921:6;18895:38;:::i;18944:545::-;19046:2;19041:3;19038:11;19035:448;;;19082:1;19107:5;19103:2;19096:17;19152:4;19148:2;19138:19;19222:2;19210:10;19206:19;19203:1;19199:27;19193:4;19189:38;19258:4;19246:10;19243:20;19240:47;;;-1:-1:-1;19281:4:1;19240:47;19336:2;19331:3;19327:12;19324:1;19320:20;19314:4;19310:31;19300:41;;19391:82;19409:2;19402:5;19399:13;19391:82;;;19454:17;;;19435:1;19424:13;19391:82;;;19395:3;;;18944:545;;;:::o;19665:1352::-;19785:10;;-1:-1:-1;;;;;19807:30:1;;19804:56;;;19840:18;;:::i;:::-;19869:97;19959:6;19919:38;19951:4;19945:11;19919:38;:::i;:::-;19913:4;19869:97;:::i;:::-;20021:4;;20085:2;20074:14;;20102:1;20097:663;;;;20804:1;20821:6;20818:89;;;-1:-1:-1;20873:19:1;;;20867:26;20818:89;-1:-1:-1;;19622:1:1;19618:11;;;19614:24;19610:29;19600:40;19646:1;19642:11;;;19597:57;20920:81;;20067:944;;20097:663;17962:1;17955:14;;;17999:4;17986:18;;-1:-1:-1;;20133:20:1;;;20251:236;20265:7;20262:1;20259:14;20251:236;;;20354:19;;;20348:26;20333:42;;20446:27;;;;20414:1;20402:14;;;;20281:19;;20251:236;;;20255:3;20515:6;20506:7;20503:19;20500:201;;;20576:19;;;20570:26;-1:-1:-1;;20659:1:1;20655:14;;;20671:3;20651:24;20647:37;20643:42;20628:58;20613:74;;20500:201;-1:-1:-1;;;;;20747:1:1;20731:14;;;20727:22;20714:36;;-1:-1:-1;19665:1352:1:o;21022:127::-;21083:10;21078:3;21074:20;21071:1;21064:31;21114:4;21111:1;21104:15;21138:4;21135:1;21128:15;21154:127;21215:10;21210:3;21206:20;21203:1;21196:31;21246:4;21243:1;21236:15;21270:4;21267:1;21260:15;21286:135;21325:3;21346:17;;;21343:43;;21366:18;;:::i;:::-;-1:-1:-1;21413:1:1;21402:13;;21286:135::o;21426:409::-;21628:2;21610:21;;;21667:2;21647:18;;;21640:30;-1:-1:-1;;;;;;;;;;;21701:2:1;21686:18;;21679:62;-1:-1:-1;;;21772:2:1;21757:18;;21750:43;21825:3;21810:19;;21426:409::o;22258:168::-;22331:9;;;22362;;22379:15;;;22373:22;;22359:37;22349:71;;22400:18;;:::i;22431:217::-;22471:1;22497;22487:132;;22541:10;22536:3;22532:20;22529:1;22522:31;22576:4;22573:1;22566:15;22604:4;22601:1;22594:15;22487:132;-1:-1:-1;22633:9:1;;22431:217::o;23837:348::-;24039:2;24021:21;;;24078:2;24058:18;;;24051:30;-1:-1:-1;;;24112:2:1;24097:18;;24090:54;24176:2;24161:18;;23837:348::o;25421:369::-;25597:3;25635:6;25629:13;25651:66;25710:6;25705:3;25698:4;25690:6;25686:17;25651:66;:::i;:::-;25733:51;25776:6;25771:3;25767:16;25759:6;25733:51;:::i;:::-;25726:58;25421:369;-1:-1:-1;;;;;25421:369:1:o;26616:400::-;26818:2;26800:21;;;26857:2;26837:18;;;26830:30;26896:34;26891:2;26876:18;;26869:62;-1:-1:-1;;;26962:2:1;26947:18;;26940:34;27006:3;26991:19;;26616:400::o;27021:410::-;27223:2;27205:21;;;27262:2;27242:18;;;27235:30;-1:-1:-1;;;;;;;;;;;27296:2:1;27281:18;;27274:62;-1:-1:-1;;;27367:2:1;27352:18;;27345:44;27421:3;27406:19;;27021:410::o;28209:125::-;28274:9;;;28295:10;;;28292:36;;;28308:18;;:::i;29940:128::-;30007:9;;;30028:11;;;30025:37;;;30042:18;;:::i;30073:401::-;30275:2;30257:21;;;30314:2;30294:18;;;30287:30;30353:34;30348:2;30333:18;;30326:62;-1:-1:-1;;;30419:2:1;30404:18;;30397:35;30464:3;30449:19;;30073:401::o;34435:414::-;34637:2;34619:21;;;34676:2;34656:18;;;34649:30;34715:34;34710:2;34695:18;;34688:62;-1:-1:-1;;;34781:2:1;34766:18;;34759:48;34839:3;34824:19;;34435:414::o;35816:127::-;35877:10;35872:3;35868:20;35865:1;35858:31;35908:4;35905:1;35898:15;35932:4;35929:1;35922:15;36370:489;-1:-1:-1;;;;;36639:15:1;;;36621:34;;36691:15;;36686:2;36671:18;;36664:43;36738:2;36723:18;;36716:34;;;36786:3;36781:2;36766:18;;36759:31;;;36564:4;;36807:46;;36833:19;;36825:6;36807:46;:::i;:::-;36799:54;36370:489;-1:-1:-1;;;;;;36370:489:1:o;36864:249::-;36933:6;36986:2;36974:9;36965:7;36961:23;36957:32;36954:52;;;37002:1;36999;36992:12;36954:52;37034:9;37028:16;37053:30;37077:5;37053:30;:::i;37865:352::-;38067:2;38049:21;;;38106:2;38086:18;;;38079:30;-1:-1:-1;;;38140:2:1;38125:18;;38118:58;38208:2;38193:18;;37865:352::o;38625:127::-;38686:10;38681:3;38677:20;38674:1;38667:31;38717:4;38714:1;38707:15;38741:4;38738:1;38731:15

Swarm Source

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