ETH Price: $3,353.57 (-0.63%)
Gas: 10 Gwei

Token

RambowCloud (RAMBOW)
 

Overview

Max Total Supply

1,000 RAMBOW

Holders

366

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 RAMBOW
0x37C5cC285D2Ce2EFA1eea597cd5163ca2D6B7e95
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:
RambowCloud

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-12
*/

// SPDX-License-Identifier: MIT


//┏━━━┳━━━┳━┓┏━┳━━┓┏━━━┳┓┏┓┏┳━━━┳┓╋╋┏━━━┳┓╋┏┳━━━┓
//┃┏━┓┃┏━┓┃┃┗┛┃┃┏┓┃┃┏━┓┃┃┃┃┃┃┏━┓┃┃╋╋┃┏━┓┃┃╋┃┣┓┏┓┃
//┃┗━┛┃┃╋┃┃┏┓┏┓┃┗┛┗┫┃╋┃┃┃┃┃┃┃┃╋┗┫┃╋╋┃┃╋┃┃┃╋┃┃┃┃┃┃
//┃┏┓┏┫┗━┛┃┃┃┃┃┃┏━┓┃┃╋┃┃┗┛┗┛┃┃╋┏┫┃╋┏┫┃╋┃┃┃╋┃┃┃┃┃┃
//┃┃┃┗┫┏━┓┃┃┃┃┃┃┗━┛┃┗━┛┣┓┏┓┏┫┗━┛┃┗━┛┃┗━┛┃┗━┛┣┛┗┛┃
//┗┛┗━┻┛╋┗┻┛┗┛┗┻━━━┻━━━┛┗┛┗┛┗━━━┻━━━┻━━━┻━━━┻━━━┛
// RAMBOWcloud NFTs
//Compiled with 0.8.7
pragma solidity ^0.8.0;

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

/*
 * @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) {
        this;
        // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/introspection/IERC165.sol

/**
 * @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/token/ERC721/IERC721.sol

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol

/**
 * @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/token/ERC721/IERC721Enumerable.sol

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

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

// File: @openzeppelin/contracts/introspection/ERC165.sol

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

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

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

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

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

// File: @openzeppelin/contracts/math/SafeMath.sol

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key)
        private
        view
        returns (bool, bytes32)
    {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0);
        // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value);
        // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key");
        // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value;
        // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage);
        // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value;
        // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool, address)
    {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

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

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return
            address(
                uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))
            );
    }
}

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

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

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

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

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

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

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

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

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

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

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

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

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a prefix in {tokenURI} to each token's URI, or
     * to the token ID if no specific URI is set for that token ID.
     */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

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

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

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

    /**
     * @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 ||
                ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        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: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

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

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

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

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

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


/**
 * @title RambowCloud contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract RambowCloud is ERC721, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public startingIndexBlock;
    uint256 public startingIndex;
    uint256 public privateMintPrice = 0.14 ether;
    uint256 public publicMintPrice = 0.15 ether;
    uint256 public maxToMint = 3;
    uint256 public MAX_MINT_WHITELIST = 3;
    uint256 public MAX_ELEMENTS = 1000;
    uint256 public REVEAL_TIMESTAMP;

    bool public revealed = false;

    string public notRevealedUri = "";

    string public PROVENANCE_HASH = "";
    bool public saleIsActive = false;
    bool public privateSaleIsActive = true;

    struct Whitelist {
        address addr;
        uint256 claimAmount;
        uint256 hasMinted;
    }

    mapping(address => Whitelist) public whitelist;
    mapping(address => Whitelist) public winnerlist;

    address[] whitelistAddr;
    address[] winnerlistAddr;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721(_name, _symbol) {
        REVEAL_TIMESTAMP = block.timestamp;
        _setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

    /**
     * Get the array of token for owner.
     */
    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            for (uint256 index; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    /**
     * Check if certain token id is exists.
     */
    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

    /**
     * Set presell price to mint
     */
    function setPrivateMintPrice(uint256 _price) external onlyOwner {
        privateMintPrice = _price;
    }

    /**
     * Set publicsell price to mint
     */
    function setPublicMintPrice(uint256 _price) external onlyOwner {
        publicMintPrice = _price;
    }

    /**
     * Set maximum count to mint per once.
     */
    function setMaxToMint(uint256 _maxValue) external onlyOwner {
        maxToMint = _maxValue;
    }

    /**
     * reserve by owner
     */

    function reserve(uint256 _count) public onlyOwner {
        uint256 total = totalSupply();
        require(total + _count <= MAX_ELEMENTS, "Exceeded");
        for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, total + i);
        }
    }

    /**
     * Set reveal timestamp when finished the sale.
     */
    function setRevealTimestamp(uint256 _revealTimeStamp) external onlyOwner {
        REVEAL_TIMESTAMP = _revealTimeStamp;
    }

    /*
     * Set provenance once it's calculated
     */
    function setProvenanceHash(string memory _provenanceHash)
        external
        onlyOwner
    {
        PROVENANCE_HASH = _provenanceHash;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _setBaseURI(baseURI);
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        require(tokenId <= totalSupply(), "URI query for nonexistent token");
        if (revealed == false) {
            return notRevealedUri;
        }
        string memory base = baseURI();
        return string(abi.encodePacked(base, "/", tokenId.toString(), ".json"));
    }

    /*
     * Pause sale if active, make active if paused
     */

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipPrivateSaleState() public onlyOwner {
        privateSaleIsActive = !privateSaleIsActive;
    }

    /**
     * Mints tokens
     */
    function mint(uint256 _count) public payable {
        uint256 total = totalSupply();
        require(saleIsActive, "Sale must be active to mint");
        require((total + _count) <= MAX_ELEMENTS, "Max limit");

        if (privateSaleIsActive) {
            require(
                (privateMintPrice * _count) <= msg.value,
                "Value below price"
            );
            require(_count <= MAX_MINT_WHITELIST, "Above max tx count");
            require(isWhitelisted(msg.sender), "Is not whitelisted");
            require(
                whitelist[msg.sender].hasMinted.add(_count) <=
                    MAX_MINT_WHITELIST,
                "Can only mint 2 while whitelisted"
            );
            whitelist[msg.sender].hasMinted = whitelist[msg.sender]
                .hasMinted
                .add(_count);
        } else {
            if (isWhitelisted(msg.sender)) {
                require((balanceOf(msg.sender) - whitelist[msg.sender].hasMinted + _count) <= maxToMint, "Can only mint 2 tokens");
            } else {
                require((balanceOf(msg.sender) + _count) <= maxToMint, "Can only mint 2 tokens");
            }
            require(
                (publicMintPrice * _count) <= msg.value,
                "Value below price"
            );
        }

        for (uint256 i = 0; i < _count; i++) {
            uint256 mintIndex = totalSupply() + 1;
            if (totalSupply() < MAX_ELEMENTS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

        // If we haven't set the starting index and this is either
        // 1) the last saleable token or
        // 2) the first token to be sold after the end of pre-sale, set the starting index block
        if (
            startingIndexBlock == 0 &&
            (totalSupply() == MAX_ELEMENTS ||
                block.timestamp >= REVEAL_TIMESTAMP)
        ) {
            startingIndexBlock = block.number;
        }
    }

    function freeMint(uint256 _count) public {
        uint256 total = totalSupply();
        require(isWinnerlisted(msg.sender), "Is not winnerlisted");
        require(saleIsActive, "Sale must be active to mint");
        require((total + _count) <= MAX_ELEMENTS, "Exceeds max supply");
        require(
            winnerlist[msg.sender].claimAmount > 0,
            "You have no amount to claim"
        );
        require(
            _count <= winnerlist[msg.sender].claimAmount,
            "You claim amount exceeded"
        );

        for (uint256 i = 0; i < _count; i++) {
            uint256 mintIndex = totalSupply() + 1;
            if (totalSupply() < MAX_ELEMENTS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

        winnerlist[msg.sender].claimAmount =
            winnerlist[msg.sender].claimAmount -
            _count;

        // If we haven't set the starting index and this is either
        // 1) the last saleable token or
        // 2) the first token to be sold after the end of pre-sale, set the starting index block
        if (
            startingIndexBlock == 0 &&
            (totalSupply() == MAX_ELEMENTS ||
                block.timestamp >= REVEAL_TIMESTAMP)
        ) {
            startingIndexBlock = block.number;
        }
    }

    /**
     * Set the starting index for the collection
     */
    function setStartingIndex() external onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");

        startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_ELEMENTS;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if ((block.number - startingIndexBlock) > 255) {
            startingIndex = uint256(blockhash(block.number - 1)) % MAX_ELEMENTS;
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex + 1;
        }
    }

    function setWhitelistAddr(address[] memory addrs) public onlyOwner {
        whitelistAddr = addrs;
        for (uint256 i = 0; i < whitelistAddr.length; i++) {
            addAddressToWhitelist(whitelistAddr[i]);
        }
    }

    /**
     * Set the starting index block for the collection, essentially unblocking
     * setting starting index
     */
    function emergencySetStartingIndexBlock() external onlyOwner {
        require(startingIndex == 0, "Starting index is already set");

        startingIndexBlock = block.number;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = msg.sender.call{value: balance}("");
        require(success);
    }

    function partialWithdraw(uint256 _amount, address payable _to)
        external
        onlyOwner
    {
        require(_amount > 0, "Withdraw must be greater than 0");
        require(_amount <= address(this).balance, "Amount too high");
        (bool success, ) = _to.call{value: _amount}("");
        require(success);
    }

    function addAddressToWhitelist(address addr)
        public
        onlyOwner
        returns (bool success)
    {
        require(!isWhitelisted(addr), "Already whitelisted");
        whitelist[addr].addr = addr;
        success = true;
    }

    function isWhitelisted(address addr)
        public
        view
        returns (bool isWhiteListed)
    {
        return whitelist[addr].addr == addr;
    }

    function addAddressToWinnerlist(address addr, uint256 claimAmount)
        public
        onlyOwner
        returns (bool success)
    {
        require(!isWinnerlisted(addr), "Already winnerlisted");
        winnerlist[addr].addr = addr;
        winnerlist[addr].claimAmount = claimAmount;
        winnerlist[addr].hasMinted = 0;
        success = true;
    }

    function isWinnerlisted(address addr)
        public
        view
        returns (bool isWinnerListed)
    {
        return winnerlist[addr].addr == addr;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"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_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"}],"name":"addAddressToWinnerlist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"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":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPrivateSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"isWhiteListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWinnerlisted","outputs":[{"internalType":"bool","name":"isWinnerListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_to","type":"address"}],"name":"partialWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"privateMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxValue","type":"uint256"}],"name":"setMaxToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrivateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"setWhitelistAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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":"whitelist","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"winnerlist","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6701f161421c8e0000600d55670214e8348c4f0000600e556003600f8190556010556103e86011556013805460ff1916905560a06040819052600060808190526200004d9160149162000297565b506040805160208101918290526000908190526200006e9160159162000297565b506016805461ffff19166101001790553480156200008b57600080fd5b5060405162003c2f38038062003c2f833981016040819052620000ae91620003f4565b8383620000c26301ffc9a760e01b6200018d565b8151620000d790600690602085019062000297565b508051620000ed90600790602084019062000297565b50620001006380ac58cd60e01b6200018d565b62000112635b5e139f60e01b6200018d565b6200012463780e9d6360e01b6200018d565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35042601255620001788262000212565b62000183816200022b565b5050505062000500565b6001600160e01b03198082161415620001ed5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e746572666163652069640000000060448201526064015b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b80516200022790600990602084019062000297565b5050565b600a546001600160a01b03163314620002875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001e4565b8051620002279060149060208401905b828054620002a590620004ad565b90600052602060002090601f016020900481019282620002c9576000855562000314565b82601f10620002e457805160ff191683800117855562000314565b8280016001018555821562000314579182015b8281111562000314578251825591602001919060010190620002f7565b506200032292915062000326565b5090565b5b8082111562000322576000815560010162000327565b600082601f8301126200034f57600080fd5b81516001600160401b03808211156200036c576200036c620004ea565b604051601f8301601f19908116603f01168101908282118183101715620003975762000397620004ea565b81604052838152602092508683858801011115620003b457600080fd5b600091505b83821015620003d85785820183015181830184015290820190620003b9565b83821115620003ea5760008385830101525b9695505050505050565b600080600080608085870312156200040b57600080fd5b84516001600160401b03808211156200042357600080fd5b62000431888389016200033d565b955060208701519150808211156200044857600080fd5b62000456888389016200033d565b945060408701519150808211156200046d57600080fd5b6200047b888389016200033d565b935060608701519150808211156200049257600080fd5b50620004a1878288016200033d565b91505092959194509250565b600181811c90821680620004c257607f821691505b60208210811415620004e457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61371f80620005106000396000f3fe60806040526004361061038b5760003560e01c80636352211e116101dc578063a22cb46511610102578063e36d6498116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a8b578063f2fde38b14610aab578063f571d67c14610acb578063ff1b655614610b0757600080fd5b8063e36d6498146109fd578063e985e9c514610a13578063e986655014610a5c578063eb8d244414610a7157600080fd5b8063c87b56dd116100dc578063c87b56dd14610991578063cb774d47146109b1578063cd7d508f146109c7578063dc53fd92146109e757600080fd5b8063a22cb4651461093c578063a475b5dd1461095c578063b88d4fde1461097157600080fd5b80637c928fe91161017a5780638da5cb5b116101495780638da5cb5b146108b057806395d89b41146108ce5780639b19251a146108e3578063a0712d681461092957600080fd5b80637c928fe91461082e5780637d17fcbe1461084e578063819b25ba146108635780638462151c1461088357600080fd5b806370a08231116101b657806370a082311461076e578063715018a61461078e578063738c69a6146107a35780637b9417c81461080e57600080fd5b80636352211e146107195780636c0360eb146107395780637084b2b71461074e57600080fd5b80631d97f38e116102c15780633ccfd60b1161025f578063518302271161022e57806351830227146106a957806355f804b3146106c357806358941a4d146106e35780635d82cf6e146106f957600080fd5b80633ccfd60b1461063457806342842e0e146106495780634f558e79146106695780634f6ccce71461068957600080fd5b806334918dfd1161029b57806334918dfd146105d45780633502a716146105e95780633719e3b0146105ff5780633af32abf1461061457600080fd5b80631d97f38e1461057457806323b872dd146105945780632f745c59146105b457600080fd5b8063095ea7b31161032e5780631496783711610308578063149678371461050957806318160ddd1461052957806318e20a381461053e5780631970d1fb1461055457600080fd5b8063095ea7b3146104b35780630ba133c5146104d357806310969523146104e957600080fd5b806304737a011161036a57806304737a011461042557806306fdde0314610444578063081812fc14610466578063081c8c441461049e57600080fd5b806204348e14610390578063018a2c37146103b957806301ffc9a7146103db575b600080fd5b34801561039c57600080fd5b506103a6600d5481565b6040519081526020015b60405180910390f35b3480156103c557600080fd5b506103d96103d4366004613292565b610b1c565b005b3480156103e757600080fd5b506104156103f636600461320f565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020016103b0565b34801561043157600080fd5b5060165461041590610100900460ff1681565b34801561045057600080fd5b50610459610b54565b6040516103b091906133e7565b34801561047257600080fd5b50610486610481366004613292565b610be6565b6040516001600160a01b0390911681526020016103b0565b3480156104aa57600080fd5b50610459610c6e565b3480156104bf57600080fd5b506103d96104ce36600461312a565b610cfc565b3480156104df57600080fd5b506103a6600f5481565b3480156104f557600080fd5b506103d9610504366004613249565b610e12565b34801561051557600080fd5b5061041561052436600461312a565b610e53565b34801561053557600080fd5b506103a6610f1f565b34801561054a57600080fd5b506103a660125481565b34801561056057600080fd5b506103d961056f366004613292565b610f30565b34801561058057600080fd5b506103d961058f3660046132ab565b610f5f565b3480156105a057600080fd5b506103d96105af366004613036565b61107b565b3480156105c057600080fd5b506103a66105cf36600461312a565b6110ac565b3480156105e057600080fd5b506103d96110d7565b3480156105f557600080fd5b506103a660115481565b34801561060b57600080fd5b506103d9611115565b34801561062057600080fd5b5061041561062f366004612fe0565b61115c565b34801561064057600080fd5b506103d961117d565b34801561065557600080fd5b506103d9610664366004613036565b6111fe565b34801561067557600080fd5b50610415610684366004613292565b611219565b34801561069557600080fd5b506103a66106a4366004613292565b611224565b3480156106b557600080fd5b506013546104159060ff1681565b3480156106cf57600080fd5b506103d96106de366004613249565b61123a565b3480156106ef57600080fd5b506103a660105481565b34801561070557600080fd5b506103d9610714366004613292565b611270565b34801561072557600080fd5b50610486610734366004613292565b61129f565b34801561074557600080fd5b506104596112c7565b34801561075a57600080fd5b506103d9610769366004613292565b6112d6565b34801561077a57600080fd5b506103a6610789366004612fe0565b611305565b34801561079a57600080fd5b506103d9611391565b3480156107af57600080fd5b506107e96107be366004612fe0565b6018602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b0390941684526020840192909252908201526060016103b0565b34801561081a57600080fd5b50610415610829366004612fe0565b611405565b34801561083a57600080fd5b506103d9610849366004613292565b6114ac565b34801561085a57600080fd5b506103d961172d565b34801561086f57600080fd5b506103d961087e366004613292565b6117ad565b34801561088f57600080fd5b506108a361089e366004612fe0565b61185a565b6040516103b091906133a3565b3480156108bc57600080fd5b50600a546001600160a01b0316610486565b3480156108da57600080fd5b50610459611915565b3480156108ef57600080fd5b506107e96108fe366004612fe0565b6017602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b6103d9610937366004613292565b611924565b34801561094857600080fd5b506103d96109573660046130f7565b611d0e565b34801561096857600080fd5b506103d9611dd3565b34801561097d57600080fd5b506103d961098c366004613077565b611e0c565b34801561099d57600080fd5b506104596109ac366004613292565b611e44565b3480156109bd57600080fd5b506103a6600c5481565b3480156109d357600080fd5b506103d96109e2366004613156565b611fe4565b3480156109f357600080fd5b506103a6600e5481565b348015610a0957600080fd5b506103a6600b5481565b348015610a1f57600080fd5b50610415610a2e366004612ffd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6857600080fd5b506103d9612072565b348015610a7d57600080fd5b506016546104159060ff1681565b348015610a9757600080fd5b506103d9610aa6366004613249565b61219d565b348015610ab757600080fd5b506103d9610ac6366004612fe0565b6121da565b348015610ad757600080fd5b50610415610ae6366004612fe0565b6001600160a01b039081166000818152601860205260409020549091161490565b348015610b1357600080fd5b506104596122c5565b600a546001600160a01b03163314610b4f5760405162461bcd60e51b8152600401610b469061344c565b60405180910390fd5b601255565b606060068054610b6390613591565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f90613591565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b5050505050905090565b6000610bf1826122d2565b610c525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b506000908152600460205260409020546001600160a01b031690565b60148054610c7b90613591565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca790613591565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b505050505081565b6000610d078261129f565b9050806001600160a01b0316836001600160a01b03161415610d755760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b46565b336001600160a01b0382161480610d915750610d918133610a2e565b610e035760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b46565b610e0d83836122df565b505050565b600a546001600160a01b03163314610e3c5760405162461bcd60e51b8152600401610b469061344c565b8051610e4f906015906020840190612e9a565b5050565b600a546000906001600160a01b03163314610e805760405162461bcd60e51b8152600401610b469061344c565b6001600160a01b038084166000818152601860205260409020549091161415610ee25760405162461bcd60e51b8152602060048201526014602482015273105b1c9958591e481dda5b9b995c9b1a5cdd195960621b6044820152606401610b46565b506001600160a01b03909116600081815260186020526040812080546001600160a01b031916909217825560018083019390935560029091015590565b6000610f2b600261234d565b905090565b600a546001600160a01b03163314610f5a5760405162461bcd60e51b8152600401610b469061344c565b600d55565b600a546001600160a01b03163314610f895760405162461bcd60e51b8152600401610b469061344c565b60008211610fd95760405162461bcd60e51b815260206004820152601f60248201527f5769746864726177206d7573742062652067726561746572207468616e2030006044820152606401610b46565b4782111561101b5760405162461bcd60e51b815260206004820152600f60248201526e082dadeeadce840e8dede40d0d2ced608b1b6044820152606401610b46565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114611068576040519150601f19603f3d011682016040523d82523d6000602084013e61106d565b606091505b5050905080610e0d57600080fd5b6110853382612357565b6110a15760405162461bcd60e51b8152600401610b4690613481565b610e0d838383612441565b6001600160a01b03821660009081526001602052604081206110ce90836125c2565b90505b92915050565b600a546001600160a01b031633146111015760405162461bcd60e51b8152600401610b469061344c565b6016805460ff19811660ff90911615179055565b600a546001600160a01b0316331461113f5760405162461bcd60e51b8152600401610b469061344c565b6016805461ff001981166101009182900460ff1615909102179055565b6001600160a01b039081166000818152601760205260409020549091161490565b600a546001600160a01b031633146111a75760405162461bcd60e51b8152600401610b469061344c565b6040514790600090339083908381818185875af1925050503d80600081146111eb576040519150601f19603f3d011682016040523d82523d6000602084013e6111f0565b606091505b5050905080610e4f57600080fd5b610e0d83838360405180602001604052806000815250611e0c565b60006110d1826122d2565b6000806112326002846125ce565b509392505050565b600a546001600160a01b031633146112645760405162461bcd60e51b8152600401610b469061344c565b61126d816125ea565b50565b600a546001600160a01b0316331461129a5760405162461bcd60e51b8152600401610b469061344c565b600e55565b60006110d1826040518060600160405280602981526020016136c160299139600291906125fd565b606060098054610b6390613591565b600a546001600160a01b031633146113005760405162461bcd60e51b8152600401610b469061344c565b600f55565b60006001600160a01b0382166113705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b46565b6001600160a01b03821660009081526001602052604090206110d19061234d565b600a546001600160a01b031633146113bb5760405162461bcd60e51b8152600401610b469061344c565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546000906001600160a01b031633146114325760405162461bcd60e51b8152600401610b469061344c565b61143b8261115c565b1561147e5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b6044820152606401610b46565b506001600160a01b0316600081815260176020526040902080546001600160a01b0319169091179055600190565b60006114b6610f1f565b336000818152601860205260409020549192506001600160a01b03909116146115175760405162461bcd60e51b8152602060048201526013602482015272125cc81b9bdd081dda5b9b995c9b1a5cdd1959606a1b6044820152606401610b46565b60165460ff166115695760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546115768383613503565b11156115b95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610b46565b336000908152601860205260409020600101546116185760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f20616d6f756e7420746f20636c61696d00000000006044820152606401610b46565b3360009081526018602052604090206001015482111561167a5760405162461bcd60e51b815260206004820152601960248201527f596f7520636c61696d20616d6f756e74206578636565646564000000000000006044820152606401610b46565b60005b828110156116ca57600061168f610f1f565b61169a906001613503565b90506011546116a7610f1f565b10156116b7576116b73382612614565b50806116c2816135c6565b91505061167d565b50336000908152601860205260409020600101546116e990839061354e565b33600090815260186020526040902060010155600b541580156117205750601154611712610f1f565b148061172057506012544210155b15610e4f5743600b555050565b600a546001600160a01b031633146117575760405162461bcd60e51b8152600401610b469061344c565b600c54156117a75760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b43600b55565b600a546001600160a01b031633146117d75760405162461bcd60e51b8152600401610b469061344c565b60006117e1610f1f565b6011549091506117f18383613503565b111561182a5760405162461bcd60e51b8152602060048201526008602482015267115e18d95959195960c21b6044820152606401610b46565b60005b82811015610e0d57611848336118438385613503565b612614565b80611852816135c6565b91505061182d565b6060600061186783611305565b905080611884576040805160008082526020820190925290611232565b60008167ffffffffffffffff81111561189f5761189f61364d565b6040519080825280602002602001820160405280156118c8578160200160208202803683370190505b50905060005b82811015611232576118e085826110ac565b8282815181106118f2576118f2613637565b602090810291909101015280611907816135c6565b9150506118ce565b50919050565b606060078054610b6390613591565b600061192e610f1f565b60165490915060ff166119835760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546119908383613503565b11156119ca5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610b46565b601654610100900460ff1615611b69573482600d546119e9919061352f565b1115611a2b5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b601054821115611a725760405162461bcd60e51b815260206004820152601260248201527110589bdd99481b585e081d1e0818dbdd5b9d60721b6044820152606401610b46565b611a7b3361115c565b611abc5760405162461bcd60e51b8152602060048201526012602482015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b6044820152606401610b46565b60105433600090815260176020526040902060020154611adc908461262e565b1115611b345760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e742032207768696c652077686974656c697374656044820152601960fa1b6064820152608401610b46565b33600090815260176020526040902060020154611b51908361262e565b33600090815260176020526040902060020155611ca7565b611b723361115c565b15611bf857600f54336000818152601760205260409020600201548491611b9890611305565b611ba2919061354e565b611bac9190613503565b1115611bf35760405162461bcd60e51b815260206004820152601660248201527543616e206f6e6c79206d696e74203220746f6b656e7360501b6044820152606401610b46565b611c56565b600f5482611c0533611305565b611c0f9190613503565b1115611c565760405162461bcd60e51b815260206004820152601660248201527543616e206f6e6c79206d696e74203220746f6b656e7360501b6044820152606401610b46565b3482600e54611c65919061352f565b1115611ca75760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b60005b82811015611cf7576000611cbc610f1f565b611cc7906001613503565b9050601154611cd4610f1f565b1015611ce457611ce43382612614565b5080611cef816135c6565b915050611caa565b50600b541580156117205750601154611712610f1f565b6001600160a01b038216331415611d675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b46565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611dfd5760405162461bcd60e51b8152600401610b469061344c565b6013805460ff19166001179055565b611e163383612357565b611e325760405162461bcd60e51b8152600401610b4690613481565b611e3e8484848461268d565b50505050565b6060611e4f826122d2565b611eb35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b46565b611ebb610f1f565b821115611f0a5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b46565b60135460ff16611fa65760148054611f2190613591565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4d90613591565b8015611f9a5780601f10611f6f57610100808354040283529160200191611f9a565b820191906000526020600020905b815481529060010190602001808311611f7d57829003601f168201915b50505050509050919050565b6000611fb06112c7565b905080611fbc846126c0565b604051602001611fcd929190613318565b604051602081830303815290604052915050919050565b600a546001600160a01b0316331461200e5760405162461bcd60e51b8152600401610b469061344c565b8051612021906019906020840190612f1e565b5060005b601954811015610e4f5761205f6019828154811061204557612045613637565b6000918252602090912001546001600160a01b0316611405565b508061206a816135c6565b915050612025565b600a546001600160a01b0316331461209c5760405162461bcd60e51b8152600401610b469061344c565b600c54156120ec5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b600b5461213b5760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610b46565b601154600b5461214c9190406135e1565b600c55600b5460ff9061215f904361354e565b11156121825760115461217360014361354e565b61217e9190406135e1565b600c555b600c5461219b57600c54612197906001613503565b600c555b565b600a546001600160a01b031633146121c75760405162461bcd60e51b8152600401610b469061344c565b8051610e4f906014906020840190612e9a565b600a546001600160a01b031633146122045760405162461bcd60e51b8152600401610b469061344c565b6001600160a01b0381166122695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b46565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60158054610c7b90613591565b60006110d16002836127be565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123148261129f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006110d1825490565b6000612362826122d2565b6123c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b60006123ce8361129f565b9050806001600160a01b0316846001600160a01b031614806124095750836001600160a01b03166123fe84610be6565b6001600160a01b0316145b8061243957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124548261129f565b6001600160a01b0316146124bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b46565b6001600160a01b03821661251e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b46565b6125296000826122df565b6001600160a01b038316600090815260016020526040902061254b90826127d6565b506001600160a01b038216600090815260016020526040902061256e90826127e2565b5061257b600282846127ee565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006110ce8383612804565b60008080806125dd868661288a565b9097909650945050505050565b8051610e4f906009906020840190612e9a565b600061260a848484612927565b90505b9392505050565b610e4f828260405180602001604052806000815250612990565b60008061263b8385613503565b9050838110156110ce5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b46565b612698848484612441565b6126a4848484846129c3565b611e3e5760405162461bcd60e51b8152600401610b46906133fa565b6060816126e45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561270e57806126f8816135c6565b91506127079050600a8361351b565b91506126e8565b60008167ffffffffffffffff8111156127295761272961364d565b6040519080825280601f01601f191660200182016040528015612753576020820181803683370190505b5090505b84156124395761276860018361354e565b9150612775600a866135e1565b612780906030613503565b60f81b81838151811061279557612795613637565b60200101906001600160f81b031916908160001a9053506127b7600a8661351b565b9450612757565b600081815260018301602052604081205415156110ce565b60006110ce8383612a94565b60006110ce8383612b87565b600061260a84846001600160a01b038516612bd6565b815460009082106128625760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b82600001828154811061287757612877613637565b9060005260206000200154905092915050565b8154600090819083106128ea5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b600084600001848154811061290157612901613637565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816129575760405162461bcd60e51b8152600401610b4691906133e7565b508461296460018361354e565b8154811061297457612974613637565b9060005260206000209060020201600101549150509392505050565b61299a8383612c77565b6129a760008484846129c3565b610e0d5760405162461bcd60e51b8152600401610b46906133fa565b60006001600160a01b0384163b6129dc57506001612439565b6000612a5d630a85bd0160e11b33888787604051602401612a009493929190613366565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161368f603291396001600160a01b0388169190612d8f565b9050600081806020019051810190612a75919061322c565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015612b7d576000612ab860018361354e565b8554909150600090612acc9060019061354e565b90506000866000018281548110612ae557612ae5613637565b9060005260206000200154905080876000018481548110612b0857612b08613637565b600091825260209091200155612b1f836001613503565b60008281526001890160205260409020558654879080612b4157612b41613621565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110d1565b60009150506110d1565b6000818152600183016020526040812054612bce575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110d1565b5060006110d1565b600082815260018401602052604081205480612c3b57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561260d565b8285612c4860018461354e565b81548110612c5857612c58613637565b906000526020600020906002020160010181905550600091505061260d565b6001600160a01b038216612ccd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b46565b612cd6816122d2565b15612d235760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b46565b6001600160a01b0382166000908152600160205260409020612d4590826127e2565b50612d52600282846127ee565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606061260a848460008585843b612de85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b46565b600080866001600160a01b03168587604051612e0491906132fc565b60006040518083038185875af1925050503d8060008114612e41576040519150601f19603f3d011682016040523d82523d6000602084013e612e46565b606091505b5091509150612e56828286612e61565b979650505050505050565b60608315612e7057508161260d565b825115612e805782518084602001fd5b8160405162461bcd60e51b8152600401610b4691906133e7565b828054612ea690613591565b90600052602060002090601f016020900481019282612ec85760008555612f0e565b82601f10612ee157805160ff1916838001178555612f0e565b82800160010185558215612f0e579182015b82811115612f0e578251825591602001919060010190612ef3565b50612f1a929150612f73565b5090565b828054828255906000526020600020908101928215612f0e579160200282015b82811115612f0e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612f3e565b5b80821115612f1a5760008155600101612f74565b600067ffffffffffffffff831115612fa257612fa261364d565b612fb5601f8401601f19166020016134d2565b9050828152838383011115612fc957600080fd5b828260208301376000602084830101529392505050565b600060208284031215612ff257600080fd5b81356110ce81613663565b6000806040838503121561301057600080fd5b823561301b81613663565b9150602083013561302b81613663565b809150509250929050565b60008060006060848603121561304b57600080fd5b833561305681613663565b9250602084013561306681613663565b929592945050506040919091013590565b6000806000806080858703121561308d57600080fd5b843561309881613663565b935060208501356130a881613663565b925060408501359150606085013567ffffffffffffffff8111156130cb57600080fd5b8501601f810187136130dc57600080fd5b6130eb87823560208401612f88565b91505092959194509250565b6000806040838503121561310a57600080fd5b823561311581613663565b91506020830135801515811461302b57600080fd5b6000806040838503121561313d57600080fd5b823561314881613663565b946020939093013593505050565b6000602080838503121561316957600080fd5b823567ffffffffffffffff8082111561318157600080fd5b818501915085601f83011261319557600080fd5b8135818111156131a7576131a761364d565b8060051b91506131b88483016134d2565b8181528481019084860184860187018a10156131d357600080fd5b600095505b8386101561320257803594506131ed85613663565b848352600195909501949186019186016131d8565b5098975050505050505050565b60006020828403121561322157600080fd5b81356110ce81613678565b60006020828403121561323e57600080fd5b81516110ce81613678565b60006020828403121561325b57600080fd5b813567ffffffffffffffff81111561327257600080fd5b8201601f8101841361328357600080fd5b61243984823560208401612f88565b6000602082840312156132a457600080fd5b5035919050565b600080604083850312156132be57600080fd5b82359150602083013561302b81613663565b600081518084526132e8816020860160208601613565565b601f01601f19169290920160200192915050565b6000825161330e818460208701613565565b9190910192915050565b6000835161332a818460208801613565565b602f60f81b9083019081528351613348816001840160208801613565565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613399908301846132d0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133db578351835292840192918401916001016133bf565b50909695505050505050565b6020815260006110ce60208301846132d0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156134fb576134fb61364d565b604052919050565b60008219821115613516576135166135f5565b500190565b60008261352a5761352a61360b565b500490565b6000816000190483118215151615613549576135496135f5565b500290565b600082821015613560576135606135f5565b500390565b60005b83811015613580578181015183820152602001613568565b83811115611e3e5750506000910152565b600181811c908216806135a557607f821691505b6020821081141561190f57634e487b7160e01b600052602260045260246000fd5b60006000198214156135da576135da6135f5565b5060010190565b6000826135f0576135f061360b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461126d57600080fd5b6001600160e01b03198116811461126d57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212202b109f34bb12b7a3c680b0c201a69c22a10224127927d758738834a80996172764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000b52616d626f77436c6f7564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000652414d424f570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d536d744d3331594c764a6f75355231516b66576167596d7059387475577879683862577971655170504331370000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d536f4647624536565458464641773848354e3262664e6368655879485a384c7352345a434e627747484c4e4c0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061038b5760003560e01c80636352211e116101dc578063a22cb46511610102578063e36d6498116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a8b578063f2fde38b14610aab578063f571d67c14610acb578063ff1b655614610b0757600080fd5b8063e36d6498146109fd578063e985e9c514610a13578063e986655014610a5c578063eb8d244414610a7157600080fd5b8063c87b56dd116100dc578063c87b56dd14610991578063cb774d47146109b1578063cd7d508f146109c7578063dc53fd92146109e757600080fd5b8063a22cb4651461093c578063a475b5dd1461095c578063b88d4fde1461097157600080fd5b80637c928fe91161017a5780638da5cb5b116101495780638da5cb5b146108b057806395d89b41146108ce5780639b19251a146108e3578063a0712d681461092957600080fd5b80637c928fe91461082e5780637d17fcbe1461084e578063819b25ba146108635780638462151c1461088357600080fd5b806370a08231116101b657806370a082311461076e578063715018a61461078e578063738c69a6146107a35780637b9417c81461080e57600080fd5b80636352211e146107195780636c0360eb146107395780637084b2b71461074e57600080fd5b80631d97f38e116102c15780633ccfd60b1161025f578063518302271161022e57806351830227146106a957806355f804b3146106c357806358941a4d146106e35780635d82cf6e146106f957600080fd5b80633ccfd60b1461063457806342842e0e146106495780634f558e79146106695780634f6ccce71461068957600080fd5b806334918dfd1161029b57806334918dfd146105d45780633502a716146105e95780633719e3b0146105ff5780633af32abf1461061457600080fd5b80631d97f38e1461057457806323b872dd146105945780632f745c59146105b457600080fd5b8063095ea7b31161032e5780631496783711610308578063149678371461050957806318160ddd1461052957806318e20a381461053e5780631970d1fb1461055457600080fd5b8063095ea7b3146104b35780630ba133c5146104d357806310969523146104e957600080fd5b806304737a011161036a57806304737a011461042557806306fdde0314610444578063081812fc14610466578063081c8c441461049e57600080fd5b806204348e14610390578063018a2c37146103b957806301ffc9a7146103db575b600080fd5b34801561039c57600080fd5b506103a6600d5481565b6040519081526020015b60405180910390f35b3480156103c557600080fd5b506103d96103d4366004613292565b610b1c565b005b3480156103e757600080fd5b506104156103f636600461320f565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020016103b0565b34801561043157600080fd5b5060165461041590610100900460ff1681565b34801561045057600080fd5b50610459610b54565b6040516103b091906133e7565b34801561047257600080fd5b50610486610481366004613292565b610be6565b6040516001600160a01b0390911681526020016103b0565b3480156104aa57600080fd5b50610459610c6e565b3480156104bf57600080fd5b506103d96104ce36600461312a565b610cfc565b3480156104df57600080fd5b506103a6600f5481565b3480156104f557600080fd5b506103d9610504366004613249565b610e12565b34801561051557600080fd5b5061041561052436600461312a565b610e53565b34801561053557600080fd5b506103a6610f1f565b34801561054a57600080fd5b506103a660125481565b34801561056057600080fd5b506103d961056f366004613292565b610f30565b34801561058057600080fd5b506103d961058f3660046132ab565b610f5f565b3480156105a057600080fd5b506103d96105af366004613036565b61107b565b3480156105c057600080fd5b506103a66105cf36600461312a565b6110ac565b3480156105e057600080fd5b506103d96110d7565b3480156105f557600080fd5b506103a660115481565b34801561060b57600080fd5b506103d9611115565b34801561062057600080fd5b5061041561062f366004612fe0565b61115c565b34801561064057600080fd5b506103d961117d565b34801561065557600080fd5b506103d9610664366004613036565b6111fe565b34801561067557600080fd5b50610415610684366004613292565b611219565b34801561069557600080fd5b506103a66106a4366004613292565b611224565b3480156106b557600080fd5b506013546104159060ff1681565b3480156106cf57600080fd5b506103d96106de366004613249565b61123a565b3480156106ef57600080fd5b506103a660105481565b34801561070557600080fd5b506103d9610714366004613292565b611270565b34801561072557600080fd5b50610486610734366004613292565b61129f565b34801561074557600080fd5b506104596112c7565b34801561075a57600080fd5b506103d9610769366004613292565b6112d6565b34801561077a57600080fd5b506103a6610789366004612fe0565b611305565b34801561079a57600080fd5b506103d9611391565b3480156107af57600080fd5b506107e96107be366004612fe0565b6018602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b0390941684526020840192909252908201526060016103b0565b34801561081a57600080fd5b50610415610829366004612fe0565b611405565b34801561083a57600080fd5b506103d9610849366004613292565b6114ac565b34801561085a57600080fd5b506103d961172d565b34801561086f57600080fd5b506103d961087e366004613292565b6117ad565b34801561088f57600080fd5b506108a361089e366004612fe0565b61185a565b6040516103b091906133a3565b3480156108bc57600080fd5b50600a546001600160a01b0316610486565b3480156108da57600080fd5b50610459611915565b3480156108ef57600080fd5b506107e96108fe366004612fe0565b6017602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b6103d9610937366004613292565b611924565b34801561094857600080fd5b506103d96109573660046130f7565b611d0e565b34801561096857600080fd5b506103d9611dd3565b34801561097d57600080fd5b506103d961098c366004613077565b611e0c565b34801561099d57600080fd5b506104596109ac366004613292565b611e44565b3480156109bd57600080fd5b506103a6600c5481565b3480156109d357600080fd5b506103d96109e2366004613156565b611fe4565b3480156109f357600080fd5b506103a6600e5481565b348015610a0957600080fd5b506103a6600b5481565b348015610a1f57600080fd5b50610415610a2e366004612ffd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6857600080fd5b506103d9612072565b348015610a7d57600080fd5b506016546104159060ff1681565b348015610a9757600080fd5b506103d9610aa6366004613249565b61219d565b348015610ab757600080fd5b506103d9610ac6366004612fe0565b6121da565b348015610ad757600080fd5b50610415610ae6366004612fe0565b6001600160a01b039081166000818152601860205260409020549091161490565b348015610b1357600080fd5b506104596122c5565b600a546001600160a01b03163314610b4f5760405162461bcd60e51b8152600401610b469061344c565b60405180910390fd5b601255565b606060068054610b6390613591565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f90613591565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b5050505050905090565b6000610bf1826122d2565b610c525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b506000908152600460205260409020546001600160a01b031690565b60148054610c7b90613591565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca790613591565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b505050505081565b6000610d078261129f565b9050806001600160a01b0316836001600160a01b03161415610d755760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b46565b336001600160a01b0382161480610d915750610d918133610a2e565b610e035760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b46565b610e0d83836122df565b505050565b600a546001600160a01b03163314610e3c5760405162461bcd60e51b8152600401610b469061344c565b8051610e4f906015906020840190612e9a565b5050565b600a546000906001600160a01b03163314610e805760405162461bcd60e51b8152600401610b469061344c565b6001600160a01b038084166000818152601860205260409020549091161415610ee25760405162461bcd60e51b8152602060048201526014602482015273105b1c9958591e481dda5b9b995c9b1a5cdd195960621b6044820152606401610b46565b506001600160a01b03909116600081815260186020526040812080546001600160a01b031916909217825560018083019390935560029091015590565b6000610f2b600261234d565b905090565b600a546001600160a01b03163314610f5a5760405162461bcd60e51b8152600401610b469061344c565b600d55565b600a546001600160a01b03163314610f895760405162461bcd60e51b8152600401610b469061344c565b60008211610fd95760405162461bcd60e51b815260206004820152601f60248201527f5769746864726177206d7573742062652067726561746572207468616e2030006044820152606401610b46565b4782111561101b5760405162461bcd60e51b815260206004820152600f60248201526e082dadeeadce840e8dede40d0d2ced608b1b6044820152606401610b46565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114611068576040519150601f19603f3d011682016040523d82523d6000602084013e61106d565b606091505b5050905080610e0d57600080fd5b6110853382612357565b6110a15760405162461bcd60e51b8152600401610b4690613481565b610e0d838383612441565b6001600160a01b03821660009081526001602052604081206110ce90836125c2565b90505b92915050565b600a546001600160a01b031633146111015760405162461bcd60e51b8152600401610b469061344c565b6016805460ff19811660ff90911615179055565b600a546001600160a01b0316331461113f5760405162461bcd60e51b8152600401610b469061344c565b6016805461ff001981166101009182900460ff1615909102179055565b6001600160a01b039081166000818152601760205260409020549091161490565b600a546001600160a01b031633146111a75760405162461bcd60e51b8152600401610b469061344c565b6040514790600090339083908381818185875af1925050503d80600081146111eb576040519150601f19603f3d011682016040523d82523d6000602084013e6111f0565b606091505b5050905080610e4f57600080fd5b610e0d83838360405180602001604052806000815250611e0c565b60006110d1826122d2565b6000806112326002846125ce565b509392505050565b600a546001600160a01b031633146112645760405162461bcd60e51b8152600401610b469061344c565b61126d816125ea565b50565b600a546001600160a01b0316331461129a5760405162461bcd60e51b8152600401610b469061344c565b600e55565b60006110d1826040518060600160405280602981526020016136c160299139600291906125fd565b606060098054610b6390613591565b600a546001600160a01b031633146113005760405162461bcd60e51b8152600401610b469061344c565b600f55565b60006001600160a01b0382166113705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b46565b6001600160a01b03821660009081526001602052604090206110d19061234d565b600a546001600160a01b031633146113bb5760405162461bcd60e51b8152600401610b469061344c565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546000906001600160a01b031633146114325760405162461bcd60e51b8152600401610b469061344c565b61143b8261115c565b1561147e5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b6044820152606401610b46565b506001600160a01b0316600081815260176020526040902080546001600160a01b0319169091179055600190565b60006114b6610f1f565b336000818152601860205260409020549192506001600160a01b03909116146115175760405162461bcd60e51b8152602060048201526013602482015272125cc81b9bdd081dda5b9b995c9b1a5cdd1959606a1b6044820152606401610b46565b60165460ff166115695760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546115768383613503565b11156115b95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610b46565b336000908152601860205260409020600101546116185760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f20616d6f756e7420746f20636c61696d00000000006044820152606401610b46565b3360009081526018602052604090206001015482111561167a5760405162461bcd60e51b815260206004820152601960248201527f596f7520636c61696d20616d6f756e74206578636565646564000000000000006044820152606401610b46565b60005b828110156116ca57600061168f610f1f565b61169a906001613503565b90506011546116a7610f1f565b10156116b7576116b73382612614565b50806116c2816135c6565b91505061167d565b50336000908152601860205260409020600101546116e990839061354e565b33600090815260186020526040902060010155600b541580156117205750601154611712610f1f565b148061172057506012544210155b15610e4f5743600b555050565b600a546001600160a01b031633146117575760405162461bcd60e51b8152600401610b469061344c565b600c54156117a75760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b43600b55565b600a546001600160a01b031633146117d75760405162461bcd60e51b8152600401610b469061344c565b60006117e1610f1f565b6011549091506117f18383613503565b111561182a5760405162461bcd60e51b8152602060048201526008602482015267115e18d95959195960c21b6044820152606401610b46565b60005b82811015610e0d57611848336118438385613503565b612614565b80611852816135c6565b91505061182d565b6060600061186783611305565b905080611884576040805160008082526020820190925290611232565b60008167ffffffffffffffff81111561189f5761189f61364d565b6040519080825280602002602001820160405280156118c8578160200160208202803683370190505b50905060005b82811015611232576118e085826110ac565b8282815181106118f2576118f2613637565b602090810291909101015280611907816135c6565b9150506118ce565b50919050565b606060078054610b6390613591565b600061192e610f1f565b60165490915060ff166119835760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546119908383613503565b11156119ca5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610b46565b601654610100900460ff1615611b69573482600d546119e9919061352f565b1115611a2b5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b601054821115611a725760405162461bcd60e51b815260206004820152601260248201527110589bdd99481b585e081d1e0818dbdd5b9d60721b6044820152606401610b46565b611a7b3361115c565b611abc5760405162461bcd60e51b8152602060048201526012602482015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b6044820152606401610b46565b60105433600090815260176020526040902060020154611adc908461262e565b1115611b345760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e742032207768696c652077686974656c697374656044820152601960fa1b6064820152608401610b46565b33600090815260176020526040902060020154611b51908361262e565b33600090815260176020526040902060020155611ca7565b611b723361115c565b15611bf857600f54336000818152601760205260409020600201548491611b9890611305565b611ba2919061354e565b611bac9190613503565b1115611bf35760405162461bcd60e51b815260206004820152601660248201527543616e206f6e6c79206d696e74203220746f6b656e7360501b6044820152606401610b46565b611c56565b600f5482611c0533611305565b611c0f9190613503565b1115611c565760405162461bcd60e51b815260206004820152601660248201527543616e206f6e6c79206d696e74203220746f6b656e7360501b6044820152606401610b46565b3482600e54611c65919061352f565b1115611ca75760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b60005b82811015611cf7576000611cbc610f1f565b611cc7906001613503565b9050601154611cd4610f1f565b1015611ce457611ce43382612614565b5080611cef816135c6565b915050611caa565b50600b541580156117205750601154611712610f1f565b6001600160a01b038216331415611d675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b46565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611dfd5760405162461bcd60e51b8152600401610b469061344c565b6013805460ff19166001179055565b611e163383612357565b611e325760405162461bcd60e51b8152600401610b4690613481565b611e3e8484848461268d565b50505050565b6060611e4f826122d2565b611eb35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b46565b611ebb610f1f565b821115611f0a5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b46565b60135460ff16611fa65760148054611f2190613591565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4d90613591565b8015611f9a5780601f10611f6f57610100808354040283529160200191611f9a565b820191906000526020600020905b815481529060010190602001808311611f7d57829003601f168201915b50505050509050919050565b6000611fb06112c7565b905080611fbc846126c0565b604051602001611fcd929190613318565b604051602081830303815290604052915050919050565b600a546001600160a01b0316331461200e5760405162461bcd60e51b8152600401610b469061344c565b8051612021906019906020840190612f1e565b5060005b601954811015610e4f5761205f6019828154811061204557612045613637565b6000918252602090912001546001600160a01b0316611405565b508061206a816135c6565b915050612025565b600a546001600160a01b0316331461209c5760405162461bcd60e51b8152600401610b469061344c565b600c54156120ec5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b600b5461213b5760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610b46565b601154600b5461214c9190406135e1565b600c55600b5460ff9061215f904361354e565b11156121825760115461217360014361354e565b61217e9190406135e1565b600c555b600c5461219b57600c54612197906001613503565b600c555b565b600a546001600160a01b031633146121c75760405162461bcd60e51b8152600401610b469061344c565b8051610e4f906014906020840190612e9a565b600a546001600160a01b031633146122045760405162461bcd60e51b8152600401610b469061344c565b6001600160a01b0381166122695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b46565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60158054610c7b90613591565b60006110d16002836127be565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123148261129f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006110d1825490565b6000612362826122d2565b6123c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b60006123ce8361129f565b9050806001600160a01b0316846001600160a01b031614806124095750836001600160a01b03166123fe84610be6565b6001600160a01b0316145b8061243957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124548261129f565b6001600160a01b0316146124bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b46565b6001600160a01b03821661251e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b46565b6125296000826122df565b6001600160a01b038316600090815260016020526040902061254b90826127d6565b506001600160a01b038216600090815260016020526040902061256e90826127e2565b5061257b600282846127ee565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006110ce8383612804565b60008080806125dd868661288a565b9097909650945050505050565b8051610e4f906009906020840190612e9a565b600061260a848484612927565b90505b9392505050565b610e4f828260405180602001604052806000815250612990565b60008061263b8385613503565b9050838110156110ce5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b46565b612698848484612441565b6126a4848484846129c3565b611e3e5760405162461bcd60e51b8152600401610b46906133fa565b6060816126e45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561270e57806126f8816135c6565b91506127079050600a8361351b565b91506126e8565b60008167ffffffffffffffff8111156127295761272961364d565b6040519080825280601f01601f191660200182016040528015612753576020820181803683370190505b5090505b84156124395761276860018361354e565b9150612775600a866135e1565b612780906030613503565b60f81b81838151811061279557612795613637565b60200101906001600160f81b031916908160001a9053506127b7600a8661351b565b9450612757565b600081815260018301602052604081205415156110ce565b60006110ce8383612a94565b60006110ce8383612b87565b600061260a84846001600160a01b038516612bd6565b815460009082106128625760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b82600001828154811061287757612877613637565b9060005260206000200154905092915050565b8154600090819083106128ea5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b600084600001848154811061290157612901613637565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816129575760405162461bcd60e51b8152600401610b4691906133e7565b508461296460018361354e565b8154811061297457612974613637565b9060005260206000209060020201600101549150509392505050565b61299a8383612c77565b6129a760008484846129c3565b610e0d5760405162461bcd60e51b8152600401610b46906133fa565b60006001600160a01b0384163b6129dc57506001612439565b6000612a5d630a85bd0160e11b33888787604051602401612a009493929190613366565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161368f603291396001600160a01b0388169190612d8f565b9050600081806020019051810190612a75919061322c565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015612b7d576000612ab860018361354e565b8554909150600090612acc9060019061354e565b90506000866000018281548110612ae557612ae5613637565b9060005260206000200154905080876000018481548110612b0857612b08613637565b600091825260209091200155612b1f836001613503565b60008281526001890160205260409020558654879080612b4157612b41613621565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110d1565b60009150506110d1565b6000818152600183016020526040812054612bce575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110d1565b5060006110d1565b600082815260018401602052604081205480612c3b57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561260d565b8285612c4860018461354e565b81548110612c5857612c58613637565b906000526020600020906002020160010181905550600091505061260d565b6001600160a01b038216612ccd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b46565b612cd6816122d2565b15612d235760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b46565b6001600160a01b0382166000908152600160205260409020612d4590826127e2565b50612d52600282846127ee565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606061260a848460008585843b612de85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b46565b600080866001600160a01b03168587604051612e0491906132fc565b60006040518083038185875af1925050503d8060008114612e41576040519150601f19603f3d011682016040523d82523d6000602084013e612e46565b606091505b5091509150612e56828286612e61565b979650505050505050565b60608315612e7057508161260d565b825115612e805782518084602001fd5b8160405162461bcd60e51b8152600401610b4691906133e7565b828054612ea690613591565b90600052602060002090601f016020900481019282612ec85760008555612f0e565b82601f10612ee157805160ff1916838001178555612f0e565b82800160010185558215612f0e579182015b82811115612f0e578251825591602001919060010190612ef3565b50612f1a929150612f73565b5090565b828054828255906000526020600020908101928215612f0e579160200282015b82811115612f0e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612f3e565b5b80821115612f1a5760008155600101612f74565b600067ffffffffffffffff831115612fa257612fa261364d565b612fb5601f8401601f19166020016134d2565b9050828152838383011115612fc957600080fd5b828260208301376000602084830101529392505050565b600060208284031215612ff257600080fd5b81356110ce81613663565b6000806040838503121561301057600080fd5b823561301b81613663565b9150602083013561302b81613663565b809150509250929050565b60008060006060848603121561304b57600080fd5b833561305681613663565b9250602084013561306681613663565b929592945050506040919091013590565b6000806000806080858703121561308d57600080fd5b843561309881613663565b935060208501356130a881613663565b925060408501359150606085013567ffffffffffffffff8111156130cb57600080fd5b8501601f810187136130dc57600080fd5b6130eb87823560208401612f88565b91505092959194509250565b6000806040838503121561310a57600080fd5b823561311581613663565b91506020830135801515811461302b57600080fd5b6000806040838503121561313d57600080fd5b823561314881613663565b946020939093013593505050565b6000602080838503121561316957600080fd5b823567ffffffffffffffff8082111561318157600080fd5b818501915085601f83011261319557600080fd5b8135818111156131a7576131a761364d565b8060051b91506131b88483016134d2565b8181528481019084860184860187018a10156131d357600080fd5b600095505b8386101561320257803594506131ed85613663565b848352600195909501949186019186016131d8565b5098975050505050505050565b60006020828403121561322157600080fd5b81356110ce81613678565b60006020828403121561323e57600080fd5b81516110ce81613678565b60006020828403121561325b57600080fd5b813567ffffffffffffffff81111561327257600080fd5b8201601f8101841361328357600080fd5b61243984823560208401612f88565b6000602082840312156132a457600080fd5b5035919050565b600080604083850312156132be57600080fd5b82359150602083013561302b81613663565b600081518084526132e8816020860160208601613565565b601f01601f19169290920160200192915050565b6000825161330e818460208701613565565b9190910192915050565b6000835161332a818460208801613565565b602f60f81b9083019081528351613348816001840160208801613565565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613399908301846132d0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133db578351835292840192918401916001016133bf565b50909695505050505050565b6020815260006110ce60208301846132d0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156134fb576134fb61364d565b604052919050565b60008219821115613516576135166135f5565b500190565b60008261352a5761352a61360b565b500490565b6000816000190483118215151615613549576135496135f5565b500290565b600082821015613560576135606135f5565b500390565b60005b83811015613580578181015183820152602001613568565b83811115611e3e5750506000910152565b600181811c908216806135a557607f821691505b6020821081141561190f57634e487b7160e01b600052602260045260246000fd5b60006000198214156135da576135da6135f5565b5060010190565b6000826135f0576135f061360b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461126d57600080fd5b6001600160e01b03198116811461126d57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212202b109f34bb12b7a3c680b0c201a69c22a10224127927d758738834a80996172764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000b52616d626f77436c6f7564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000652414d424f570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d536d744d3331594c764a6f75355231516b66576167596d7059387475577879683862577971655170504331370000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d536f4647624536565458464641773848354e3262664e6368655879485a384c7352345a434e627747484c4e4c0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RambowCloud
Arg [1] : _symbol (string): RAMBOW
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmSmtM31YLvJou5R1QkfWagYmpY8tuWxyh8bWyqeQpPC17
Arg [3] : _initNotRevealedUri (string): https://ipfs.io/ipfs/QmSoFGbE6VTXFFAw8H5N2bfNcheXyHZ8LsR4ZCNbwGHLNL

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 52616d626f77436c6f7564000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 52414d424f570000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [9] : 68747470733a2f2f697066732e696f2f697066732f516d536d744d3331594c76
Arg [10] : 4a6f75355231516b66576167596d705938747557787968386257797165517050
Arg [11] : 4331370000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [13] : 68747470733a2f2f697066732e696f2f697066732f516d536f46476245365654
Arg [14] : 58464641773848354e3262664e6368655879485a384c7352345a434e62774748
Arg [15] : 4c4e4c0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

71041:10706:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71230:44;;;;;;;;;;;;;;;;;;;23964:25:1;;;23952:2;23937:18;71230:44:0;;;;;;;;73964:127;;;;;;;;;;-1:-1:-1;73964:127:0;;;;;:::i;:::-;;:::i;:::-;;11211:200;;;;;;;;;;-1:-1:-1;11211:200:0;;;;;:::i;:::-;-1:-1:-1;;;;;;11370:33:0;11341:4;11370:33;;;;;;;;;;;;;;11211:200;;;;8961:14:1;;8954:22;8936:41;;8924:2;8909:18;11211:200:0;8796:187:1;71650:38:0;;;;;;;;;;-1:-1:-1;71650:38:0;;;;;;;;;;;54534:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57542:308::-;;;;;;;;;;-1:-1:-1;57542:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7272:32:1;;;7254:51;;7242:2;7227:18;57542:308:0;7108:203:1;71528:33:0;;;;;;;;;;;;;:::i;57041:435::-;;;;;;;;;;-1:-1:-1;57041:435:0;;;;;:::i;:::-;;:::i;71331:28::-;;;;;;;;;;;;;;;;74160:152;;;;;;;;;;-1:-1:-1;74160:152:0;;;;;:::i;:::-;;:::i;81199:370::-;;;;;;;;;;-1:-1:-1;81199:370:0;;;;;:::i;:::-;;:::i;56469:211::-;;;;;;;;;;;;;:::i;71451:31::-;;;;;;;;;;;;;;;;73119:108;;;;;;;;;;-1:-1:-1;73119:108:0;;;;;:::i;:::-;;:::i;80425:335::-;;;;;;;;;;-1:-1:-1;80425:335:0;;;;;:::i;:::-;;:::i;58601:376::-;;;;;;;;;;-1:-1:-1;58601:376:0;;;;;:::i;:::-;;:::i;56181:212::-;;;;;;;;;;-1:-1:-1;56181:212:0;;;;;:::i;:::-;;:::i;75290:89::-;;;;;;;;;;;;;:::i;71410:34::-;;;;;;;;;;;;;;;;75387:110;;;;;;;;;;;;;:::i;81027:164::-;;;;;;;;;;-1:-1:-1;81027:164:0;;;;;:::i;:::-;;:::i;80230:187::-;;;;;;;;;;;;;:::i;59048:185::-;;;;;;;;;;-1:-1:-1;59048:185:0;;;;;:::i;:::-;;:::i;72955:104::-;;;;;;;;;;-1:-1:-1;72955:104:0;;;;;:::i;:::-;;:::i;56757:222::-;;;;;;;;;;-1:-1:-1;56757:222:0;;;;;:::i;:::-;;:::i;71491:28::-;;;;;;;;;;-1:-1:-1;71491:28:0;;;;;;;;74320:101;;;;;;;;;;-1:-1:-1;74320:101:0;;;;;:::i;:::-;;:::i;71366:37::-;;;;;;;;;;;;;;;;73290:106;;;;;;;;;;-1:-1:-1;73290:106:0;;;;;:::i;:::-;;:::i;54178:289::-;;;;;;;;;;-1:-1:-1;54178:289:0;;;;;:::i;:::-;;:::i;56000:97::-;;;;;;;;;;;;;:::i;73466:100::-;;;;;;;;;;-1:-1:-1;73466:100:0;;;;;:::i;:::-;;:::i;53808:308::-;;;;;;;;;;-1:-1:-1;53808:308:0;;;;;:::i;:::-;;:::i;70333:148::-;;;;;;;;;;;;;:::i;71864:47::-;;;;;;;;;;-1:-1:-1;71864:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;71864:47:0;;;;;;;;;;;-1:-1:-1;;;;;8029:32:1;;;8011:51;;8093:2;8078:18;;8071:34;;;;8121:18;;;8114:34;7999:2;7984:18;71864:47:0;7809:345:1;80768:251:0;;;;;;;;;;-1:-1:-1;80768:251:0;;;;;:::i;:::-;;:::i;77556:1335::-;;;;;;;;;;-1:-1:-1;77556:1335:0;;;;;:::i;:::-;;:::i;80036:186::-;;;;;;;;;;;;;:::i;73619:266::-;;;;;;;;;;-1:-1:-1;73619:266:0;;;;;:::i;:::-;;:::i;72374:510::-;;;;;;;;;;-1:-1:-1;72374:510:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;69682:87::-;;;;;;;;;;-1:-1:-1;69755:6:0;;-1:-1:-1;;;;;69755:6:0;69682:87;;54703:104;;;;;;;;;;;;;:::i;71811:46::-;;;;;;;;;;-1:-1:-1;71811:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;71811:46:0;;;;;;;75544:2004;;;;;;:::i;:::-;;:::i;57922:327::-;;;;;;;;;;-1:-1:-1;57922:327:0;;;;;:::i;:::-;;:::i;74581:69::-;;;;;;;;;;;;;:::i;59304:365::-;;;;;;;;;;-1:-1:-1;59304:365:0;;;;;:::i;:::-;;:::i;74658:553::-;;;;;;;;;;-1:-1:-1;74658:553:0;;;;;:::i;:::-;;:::i;71195:28::-;;;;;;;;;;;;;;;;79665:234;;;;;;;;;;-1:-1:-1;79665:234:0;;;;;:::i;:::-;;:::i;71281:43::-;;;;;;;;;;;;;;;;71155:33;;;;;;;;;;;;;;;;58320:214;;;;;;;;;;-1:-1:-1;58320:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;58491:25:0;;;58462:4;58491:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;58320:214;78967:690;;;;;;;;;;;;;:::i;71611:32::-;;;;;;;;;;-1:-1:-1;71611:32:0;;;;;;;;74429:126;;;;;;;;;;-1:-1:-1;74429:126:0;;;;;:::i;:::-;;:::i;70636:281::-;;;;;;;;;;-1:-1:-1;70636:281:0;;;;;:::i;:::-;;:::i;81577:167::-;;;;;;;;;;-1:-1:-1;81577:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;81707:29:0;;;81663:19;81707:16;;;:10;:16;;;;;:21;;;;:29;;81577:167;71570:34;;;;;;;;;;;;;:::i;73964:127::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;;;;;;;;;74048:16:::1;:35:::0;73964:127::o;54534:100::-;54588:13;54621:5;54614:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54534:100;:::o;57542:308::-;57663:7;57710:16;57718:7;57710;:16::i;:::-;57688:110;;;;-1:-1:-1;;;57688:110:0;;17698:2:1;57688:110:0;;;17680:21:1;17737:2;17717:18;;;17710:30;17776:34;17756:18;;;17749:62;-1:-1:-1;;;17827:18:1;;;17820:42;17879:19;;57688:110:0;17496:408:1;57688:110:0;-1:-1:-1;57818:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57818:24:0;;57542:308::o;71528:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57041:435::-;57122:13;57138:23;57153:7;57138:14;:23::i;:::-;57122:39;;57186:5;-1:-1:-1;;;;;57180:11:0;:2;-1:-1:-1;;;;;57180:11:0;;;57172:57;;;;-1:-1:-1;;;57172:57:0;;20743:2:1;57172:57:0;;;20725:21:1;20782:2;20762:18;;;20755:30;20821:34;20801:18;;;20794:62;-1:-1:-1;;;20872:18:1;;;20865:31;20913:19;;57172:57:0;20541:397:1;57172:57:0;1651:10;-1:-1:-1;;;;;57264:21:0;;;;:86;;-1:-1:-1;57306:44:0;57330:5;1651:10;58320:214;:::i;57306:44::-;57242:192;;;;-1:-1:-1;;;57242:192:0;;15407:2:1;57242:192:0;;;15389:21:1;15446:2;15426:18;;;15419:30;15485:34;15465:18;;;15458:62;15556:26;15536:18;;;15529:54;15600:19;;57242:192:0;15205:420:1;57242:192:0;57447:21;57456:2;57460:7;57447:8;:21::i;:::-;57111:365;57041:435;;:::o;74160:152::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;74271:33;;::::1;::::0;:15:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;74160:152:::0;:::o;81199:370::-;69755:6;;81319:12;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;81707:29:0;;;81663:19;81707:16;;;:10;:16;;;;;:21;;;;:29;81357:21:::1;81349:54;;;::::0;-1:-1:-1;;;81349:54:0;;20394:2:1;81349:54:0::1;::::0;::::1;20376:21:1::0;20433:2;20413:18;;;20406:30;-1:-1:-1;;;20452:18:1;;;20445:50;20512:18;;81349:54:0::1;20192:344:1::0;81349:54:0::1;-1:-1:-1::0;;;;;;81414:16:0;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:28;;-1:-1:-1;;;;;;81414:28:0::1;::::0;;::::1;::::0;;;81453;;::::1;:42:::0;;;;81506:26:::1;::::0;;::::1;:30:::0;81414:28;81199:370::o;56469:211::-;56530:7;56651:21;:12;:19;:21::i;:::-;56644:28;;56469:211;:::o;73119:108::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;73194:16:::1;:25:::0;73119:108::o;80425:335::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;80559:1:::1;80549:7;:11;80541:55;;;::::0;-1:-1:-1;;;80541:55:0;;14689:2:1;80541:55:0::1;::::0;::::1;14671:21:1::0;14728:2;14708:18;;;14701:30;14767:33;14747:18;;;14740:61;14818:18;;80541:55:0::1;14487:355:1::0;80541:55:0::1;80626:21;80615:7;:32;;80607:60;;;::::0;-1:-1:-1;;;80607:60:0;;15832:2:1;80607:60:0::1;::::0;::::1;15814:21:1::0;15871:2;15851:18;;;15844:30;-1:-1:-1;;;15890:18:1;;;15883:45;15945:18;;80607:60:0::1;15630:339:1::0;80607:60:0::1;80679:12;80697:3;-1:-1:-1::0;;;;;80697:8:0::1;80713:7;80697:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80678:47;;;80744:7;80736:16;;;::::0;::::1;58601:376:::0;58810:41;1651:10;58843:7;58810:18;:41::i;:::-;58788:140;;;;-1:-1:-1;;;58788:140:0;;;;;;;:::i;:::-;58941:28;58951:4;58957:2;58961:7;58941:9;:28::i;56181:212::-;-1:-1:-1;;;;;56355:20:0;;56323:7;56355:20;;;:13;:20;;;;;:30;;56379:5;56355:23;:30::i;:::-;56348:37;;56181:212;;;;;:::o;75290:89::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;75359:12:::1;::::0;;-1:-1:-1;;75343:28:0;::::1;75359:12;::::0;;::::1;75358:13;75343:28;::::0;;75290:89::o;75387:110::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;75470:19:::1;::::0;;-1:-1:-1;;75447:42:0;::::1;75470:19;::::0;;;::::1;;;75469:20;75447:42:::0;;::::1;;::::0;;75387:110::o;81027:164::-;-1:-1:-1;;;;;81155:28:0;;;81112:18;81155:15;;;:9;:15;;;;;:20;;;;:28;;81027:164::o;80230:187::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;80347:35:::1;::::0;80296:21:::1;::::0;80278:15:::1;::::0;80347:10:::1;::::0;80296:21;;80278:15;80347:35;80278:15;80347:35;80296:21;80347:10;:35:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80328:54;;;80401:7;80393:16;;;::::0;::::1;59048:185:::0;59186:39;59203:4;59209:2;59213:7;59186:39;;;;;;;;;;;;:16;:39::i;72955:104::-;73010:4;73034:17;73042:8;73034:7;:17::i;56757:222::-;56877:7;;56924:22;:12;56940:5;56924:15;:22::i;:::-;-1:-1:-1;56902:44:0;56757:222;-1:-1:-1;;;56757:222:0:o;74320:101::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;74393:20:::1;74405:7;74393:11;:20::i;:::-;74320:101:::0;:::o;73290:106::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;73364:15:::1;:24:::0;73290:106::o;54178:289::-;54295:7;54340:119;54375:7;54340:119;;;;;;;;;;;;;;;;;:12;;:119;:16;:119::i;56000:97::-;56048:13;56081:8;56074:15;;;;;:::i;73466:100::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;73537:9:::1;:21:::0;73466:100::o;53808:308::-;53925:7;-1:-1:-1;;;;;53972:19:0;;53950:111;;;;-1:-1:-1;;;53950:111:0;;16176:2:1;53950:111:0;;;16158:21:1;16215:2;16195:18;;;16188:30;16254:34;16234:18;;;16227:62;-1:-1:-1;;;16305:18:1;;;16298:40;16355:19;;53950:111:0;15974:406:1;53950:111:0;-1:-1:-1;;;;;54079:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;70333:148::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;70424:6:::1;::::0;70403:40:::1;::::0;70440:1:::1;::::0;-1:-1:-1;;;;;70424:6:0::1;::::0;70403:40:::1;::::0;70440:1;;70403:40:::1;70454:6;:19:::0;;-1:-1:-1;;;;;;70454:19:0::1;::::0;;70333:148::o;80768:251::-;69755:6;;80866:12;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;80905:19:::1;80919:4;80905:13;:19::i;:::-;80904:20;80896:52;;;::::0;-1:-1:-1;;;80896:52:0;;19298:2:1;80896:52:0::1;::::0;::::1;19280:21:1::0;19337:2;19317:18;;;19310:30;-1:-1:-1;;;19356:18:1;;;19349:49;19415:18;;80896:52:0::1;19096:343:1::0;80896:52:0::1;-1:-1:-1::0;;;;;;80959:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:27;;-1:-1:-1;;;;;;80959:27:0::1;::::0;;::::1;::::0;;;;80768:251::o;77556:1335::-;77608:13;77624;:11;:13::i;:::-;77671:10;81663:19;81707:16;;;:10;:16;;;;;:21;77608:29;;-1:-1:-1;;;;;;81707:21:0;;;:29;77648:58;;;;-1:-1:-1;;;77648:58:0;;23321:2:1;77648:58:0;;;23303:21:1;23360:2;23340:18;;;23333:30;-1:-1:-1;;;23379:18:1;;;23372:49;23438:18;;77648:58:0;23119:343:1;77648:58:0;77725:12;;;;77717:52;;;;-1:-1:-1;;;77717:52:0;;13176:2:1;77717:52:0;;;13158:21:1;13215:2;13195:18;;;13188:30;13254:29;13234:18;;;13227:57;13301:18;;77717:52:0;12974:351:1;77717:52:0;77808:12;;77789:14;77797:6;77789:5;:14;:::i;:::-;77788:32;;77780:63;;;;-1:-1:-1;;;77780:63:0;;16587:2:1;77780:63:0;;;16569:21:1;16626:2;16606:18;;;16599:30;-1:-1:-1;;;16645:18:1;;;16638:48;16703:18;;77780:63:0;16385:342:1;77780:63:0;77887:10;77913:1;77876:22;;;:10;:22;;;;;:34;;;77854:115;;;;-1:-1:-1;;;77854:115:0;;22965:2:1;77854:115:0;;;22947:21:1;23004:2;22984:18;;;22977:30;23043:29;23023:18;;;23016:57;23090:18;;77854:115:0;22763:351:1;77854:115:0;78023:10;78012:22;;;;:10;:22;;;;;:34;;;78002:44;;;77980:119;;;;-1:-1:-1;;;77980:119:0;;11360:2:1;77980:119:0;;;11342:21:1;11399:2;11379:18;;;11372:30;11438:27;11418:18;;;11411:55;11483:18;;77980:119:0;11158:349:1;77980:119:0;78117:9;78112:216;78136:6;78132:1;:10;78112:216;;;78164:17;78184:13;:11;:13::i;:::-;:17;;78200:1;78184:17;:::i;:::-;78164:37;;78236:12;;78220:13;:11;:13::i;:::-;:28;78216:101;;;78269:32;78279:10;78291:9;78269;:32::i;:::-;-1:-1:-1;78144:3:0;;;;:::i;:::-;;;;78112:216;;;-1:-1:-1;78401:10:0;78390:22;;;;:10;:22;;;;;:34;;;:56;;78440:6;;78390:56;:::i;:::-;78351:10;78340:22;;;;:10;:22;;;;;:34;;:106;78685:18;;:23;:127;;;;;78743:12;;78726:13;:11;:13::i;:::-;:29;:85;;;;78795:16;;78776:15;:35;;78726:85;78667:217;;;78860:12;78839:18;:33;77597:1294;77556:1335;:::o;80036:186::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;80116:13:::1;::::0;:18;80108:60:::1;;;::::0;-1:-1:-1;;;80108:60:0;;15049:2:1;80108:60:0::1;::::0;::::1;15031:21:1::0;15088:2;15068:18;;;15061:30;15127:31;15107:18;;;15100:59;15176:18;;80108:60:0::1;14847:353:1::0;80108:60:0::1;80202:12;80181:18;:33:::0;80036:186::o;73619:266::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;73680:13:::1;73696;:11;:13::i;:::-;73746:12;::::0;73680:29;;-1:-1:-1;73728:14:0::1;73736:6:::0;73680:29;73728:14:::1;:::i;:::-;:30;;73720:51;;;::::0;-1:-1:-1;;;73720:51:0;;22629:2:1;73720:51:0::1;::::0;::::1;22611:21:1::0;22668:1;22648:18;;;22641:29;-1:-1:-1;;;22686:18:1;;;22679:38;22734:18;;73720:51:0::1;22427:331:1::0;73720:51:0::1;73787:9;73782:96;73806:6;73802:1;:10;73782:96;;;73834:32;73844:10;73856:9;73864:1:::0;73856:5;:9:::1;:::i;:::-;73834;:32::i;:::-;73814:3:::0;::::1;::::0;::::1;:::i;:::-;;;;73782:96;;72374:510:::0;72463:16;72497:18;72518:17;72528:6;72518:9;:17::i;:::-;72497:38;-1:-1:-1;72550:15:0;72546:331;;72589:16;;;72603:1;72589:16;;;;;;;;;;;;72546:331;72638:23;72678:10;72664:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72664:25:0;;72638:51;;72709:13;72704:134;72732:10;72724:5;:18;72704:134;;;72788:34;72808:6;72816:5;72788:19;:34::i;:::-;72772:6;72779:5;72772:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;72744:7;;;;:::i;:::-;;;;72704:134;;72546:331;72486:398;72374:510;;;:::o;54703:104::-;54759:13;54792:7;54785:14;;;;;:::i;75544:2004::-;75600:13;75616;:11;:13::i;:::-;75648:12;;75600:29;;-1:-1:-1;75648:12:0;;75640:52;;;;-1:-1:-1;;;75640:52:0;;13176:2:1;75640:52:0;;;13158:21:1;13215:2;13195:18;;;13188:30;13254:29;13234:18;;;13227:57;13301:18;;75640:52:0;12974:351:1;75640:52:0;75731:12;;75712:14;75720:6;75712:5;:14;:::i;:::-;75711:32;;75703:54;;;;-1:-1:-1;;;75703:54:0;;13532:2:1;75703:54:0;;;13514:21:1;13571:1;13551:18;;;13544:29;-1:-1:-1;;;13589:18:1;;;13582:39;13638:18;;75703:54:0;13330:332:1;75703:54:0;75774:19;;;;;;;75770:1106;;;75867:9;75856:6;75837:16;;:25;;;;:::i;:::-;75836:40;;75810:119;;;;-1:-1:-1;;;75810:119:0;;20048:2:1;75810:119:0;;;20030:21:1;20087:2;20067:18;;;20060:30;-1:-1:-1;;;20106:18:1;;;20099:47;20163:18;;75810:119:0;19846:341:1;75810:119:0;75962:18;;75952:6;:28;;75944:59;;;;-1:-1:-1;;;75944:59:0;;12829:2:1;75944:59:0;;;12811:21:1;12868:2;12848:18;;;12841:30;-1:-1:-1;;;12887:18:1;;;12880:48;12945:18;;75944:59:0;12627:342:1;75944:59:0;76026:25;76040:10;76026:13;:25::i;:::-;76018:56;;;;-1:-1:-1;;;76018:56:0;;22282:2:1;76018:56:0;;;22264:21:1;22321:2;22301:18;;;22294:30;-1:-1:-1;;;22340:18:1;;;22333:48;22398:18;;76018:56:0;22080:342:1;76018:56:0;76183:18;;76125:10;76115:21;;;;:9;:21;;;;;:31;;;:43;;76151:6;76115:35;:43::i;:::-;:86;;76089:181;;;;-1:-1:-1;;;76089:181:0;;19646:2:1;76089:181:0;;;19628:21:1;19685:2;19665:18;;;19658:30;19724:34;19704:18;;;19697:62;-1:-1:-1;;;19775:18:1;;;19768:31;19816:19;;76089:181:0;19444:397:1;76089:181:0;76329:10;76319:21;;;;:9;:21;;;;;:49;;;:79;;76391:6;76319:71;:79::i;:::-;76295:10;76285:21;;;;:9;:21;;;;;:31;;:113;75770:1106;;;76435:25;76449:10;76435:13;:25::i;:::-;76431:301;;;76559:9;;76524:10;76514:21;;;;:9;:21;;;;;:31;;;76548:6;;76490:21;;:9;:21::i;:::-;:55;;;;:::i;:::-;:64;;;;:::i;:::-;76489:79;;76481:114;;;;-1:-1:-1;;;76481:114:0;;23669:2:1;76481:114:0;;;23651:21:1;23708:2;23688:18;;;23681:30;-1:-1:-1;;;23727:18:1;;;23720:52;23789:18;;76481:114:0;23467:346:1;76481:114:0;76431:301;;;76680:9;;76669:6;76645:21;76655:10;76645:9;:21::i;:::-;:30;;;;:::i;:::-;76644:45;;76636:80;;;;-1:-1:-1;;;76636:80:0;;23669:2:1;76636:80:0;;;23651:21:1;23708:2;23688:18;;;23681:30;-1:-1:-1;;;23727:18:1;;;23720:52;23789:18;;76636:80:0;23467:346:1;76636:80:0;76802:9;76791:6;76773:15;;:24;;;;:::i;:::-;76772:39;;76746:118;;;;-1:-1:-1;;;76746:118:0;;20048:2:1;76746:118:0;;;20030:21:1;20087:2;20067:18;;;20060:30;-1:-1:-1;;;20106:18:1;;;20099:47;20163:18;;76746:118:0;19846:341:1;76746:118:0;76893:9;76888:216;76912:6;76908:1;:10;76888:216;;;76940:17;76960:13;:11;:13::i;:::-;:17;;76976:1;76960:17;:::i;:::-;76940:37;;77012:12;;76996:13;:11;:13::i;:::-;:28;76992:101;;;77045:32;77055:10;77067:9;77045;:32::i;:::-;-1:-1:-1;76920:3:0;;;;:::i;:::-;;;;76888:216;;;-1:-1:-1;77342:18:0;;:23;:127;;;;;77400:12;;77383:13;:11;:13::i;57922:327::-;-1:-1:-1;;;;;58057:24:0;;1651:10;58057:24;;58049:62;;;;-1:-1:-1;;;58049:62:0;;12475:2:1;58049:62:0;;;12457:21:1;12514:2;12494:18;;;12487:30;12553:27;12533:18;;;12526:55;12598:18;;58049:62:0;12273:349:1;58049:62:0;1651:10;58124:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;58124:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;58124:53:0;;;;;;;;;;58193:48;;8936:41:1;;;58124:42:0;;1651:10;58193:48;;8909:18:1;58193:48:0;;;;;;;57922:327;;:::o;74581:69::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;74627:8:::1;:15:::0;;-1:-1:-1;;74627:15:0::1;74638:4;74627:15;::::0;;74581:69::o;59304:365::-;59493:41;1651:10;59526:7;59493:18;:41::i;:::-;59471:140;;;;-1:-1:-1;;;59471:140:0;;;;;;;:::i;:::-;59622:39;59636:4;59642:2;59646:7;59655:5;59622:13;:39::i;:::-;59304:365;;;;:::o;74658:553::-;74776:13;74829:16;74837:7;74829;:16::i;:::-;74807:113;;;;-1:-1:-1;;;74807:113:0;;18882:2:1;74807:113:0;;;18864:21:1;18921:2;18901:18;;;18894:30;18960:34;18940:18;;;18933:62;-1:-1:-1;;;19011:18:1;;;19004:45;19066:19;;74807:113:0;18680:411:1;74807:113:0;74950:13;:11;:13::i;:::-;74939:7;:24;;74931:68;;;;-1:-1:-1;;;74931:68:0;;9817:2:1;74931:68:0;;;9799:21:1;9856:2;9836:18;;;9829:30;9895:33;9875:18;;;9868:61;9946:18;;74931:68:0;9615:355:1;74931:68:0;75014:8;;;;75010:71;;75055:14;75048:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74658:553;;;:::o;75010:71::-;75091:18;75112:9;:7;:9::i;:::-;75091:30;;75163:4;75174:18;:7;:16;:18::i;:::-;75146:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75132:71;;;74658:553;;;:::o;79665:234::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;79743:21;;::::1;::::0;:13:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;79780:9;79775:117;79799:13;:20:::0;79795:24;::::1;79775:117;;;79841:39;79863:13;79877:1;79863:16;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;79863:16:0::1;79841:21;:39::i;:::-;-1:-1:-1::0;79821:3:0;::::1;::::0;::::1;:::i;:::-;;;;79775:117;;78967:690:::0;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;79033:13:::1;::::0;:18;79025:60:::1;;;::::0;-1:-1:-1;;;79025:60:0;;15049:2:1;79025:60:0::1;::::0;::::1;15031:21:1::0;15088:2;15068:18;;;15061:30;15127:31;15107:18;;;15100:59;15176:18;;79025:60:0::1;14847:353:1::0;79025:60:0::1;79104:18;::::0;79096:68:::1;;;::::0;-1:-1:-1;;;79096:68:0;;21145:2:1;79096:68:0::1;::::0;::::1;21127:21:1::0;;;21164:18;;;21157:30;21223:34;21203:18;;;21196:62;21275:18;;79096:68:0::1;20943:356:1::0;79096:68:0::1;79234:12;::::0;79211:18:::1;::::0;79193:53:::1;::::0;79234:12;79201:29:::1;79193:53;:::i;:::-;79177:13;:69:::0;79398:18:::1;::::0;79420:3:::1;::::0;79383:33:::1;::::0;:12:::1;:33;:::i;:::-;79382:41;79378:141;;;79495:12;::::0;79474:16:::1;79489:1;79474:12;:16;:::i;:::-;79456:51;::::0;;79464:27:::1;79456:51;:::i;:::-;79440:13;:67:::0;79378:141:::1;79570:13;::::0;79566:84:::1;;79621:13;::::0;:17:::1;::::0;79637:1:::1;79621:17;:::i;:::-;79605:13;:33:::0;79566:84:::1;78967:690::o:0;74429:126::-;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;74515:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;70636:281::-:0;69755:6;;-1:-1:-1;;;;;69755:6:0;1651:10;69902:23;69894:68;;;;-1:-1:-1;;;69894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;70739:22:0;::::1;70717:110;;;::::0;-1:-1:-1;;;70717:110:0;;10596:2:1;70717:110:0::1;::::0;::::1;10578:21:1::0;10635:2;10615:18;;;10608:30;10674:34;10654:18;;;10647:62;-1:-1:-1;;;10725:18:1;;;10718:36;10771:19;;70717:110:0::1;10394:402:1::0;70717:110:0::1;70864:6;::::0;70843:38:::1;::::0;-1:-1:-1;;;;;70843:38:0;;::::1;::::0;70864:6:::1;::::0;70843:38:::1;::::0;70864:6:::1;::::0;70843:38:::1;70892:6;:17:::0;;-1:-1:-1;;;;;;70892:17:0::1;-1:-1:-1::0;;;;;70892:17:0;;;::::1;::::0;;;::::1;::::0;;70636:281::o;71570:34::-;;;;;;;:::i;61216:127::-;61281:4;61305:30;:12;61327:7;61305:21;:30::i;67648:201::-;67723:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;67723:29:0;-1:-1:-1;;;;;67723:29:0;;;;;;;;:24;;67777:23;67723:24;67777:14;:23::i;:::-;-1:-1:-1;;;;;67768:46:0;;;;;;;;;;;67648:201;;:::o;46968:155::-;47064:7;47096:19;47104:3;43342:19;;43259:110;61510:459;61639:4;61683:16;61691:7;61683;:16::i;:::-;61661:110;;;;-1:-1:-1;;;61661:110:0;;14276:2:1;61661:110:0;;;14258:21:1;14315:2;14295:18;;;14288:30;14354:34;14334:18;;;14327:62;-1:-1:-1;;;14405:18:1;;;14398:42;14457:19;;61661:110:0;14074:408:1;61661:110:0;61782:13;61798:23;61813:7;61798:14;:23::i;:::-;61782:39;;61851:5;-1:-1:-1;;;;;61840:16:0;:7;-1:-1:-1;;;;;61840:16:0;;:64;;;;61897:7;-1:-1:-1;;;;;61873:31:0;:20;61885:7;61873:11;:20::i;:::-;-1:-1:-1;;;;;61873:31:0;;61840:64;:120;;;-1:-1:-1;;;;;;58491:25:0;;;58462:4;58491:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;61921:39;61832:129;61510:459;-1:-1:-1;;;;61510:459:0:o;64830:679::-;65003:4;-1:-1:-1;;;;;64976:31:0;:23;64991:7;64976:14;:23::i;:::-;-1:-1:-1;;;;;64976:31:0;;64954:122;;;;-1:-1:-1;;;64954:122:0;;18472:2:1;64954:122:0;;;18454:21:1;18511:2;18491:18;;;18484:30;18550:34;18530:18;;;18523:62;-1:-1:-1;;;18601:18:1;;;18594:39;18650:19;;64954:122:0;18270:405:1;64954:122:0;-1:-1:-1;;;;;65122:16:0;;65114:65;;;;-1:-1:-1;;;65114:65:0;;12070:2:1;65114:65:0;;;12052:21:1;12109:2;12089:18;;;12082:30;12148:34;12128:18;;;12121:62;-1:-1:-1;;;12199:18:1;;;12192:34;12243:19;;65114:65:0;11868:400:1;65114:65:0;65296:29;65313:1;65317:7;65296:8;:29::i;:::-;-1:-1:-1;;;;;65338:19:0;;;;;;:13;:19;;;;;:35;;65365:7;65338:26;:35::i;:::-;-1:-1:-1;;;;;;65384:17:0;;;;;;:13;:17;;;;;:30;;65406:7;65384:21;:30::i;:::-;-1:-1:-1;65427:29:0;:12;65444:7;65453:2;65427:16;:29::i;:::-;;65493:7;65489:2;-1:-1:-1;;;;;65474:27:0;65483:4;-1:-1:-1;;;;;65474:27:0;;;;;;;;;;;64830:679;;;:::o;38378:169::-;38476:7;38516:22;38520:3;38532:5;38516:3;:22::i;47471:268::-;47578:7;;;;47643:22;47647:3;47659:5;47643:3;:22::i;:::-;47612:53;;;;-1:-1:-1;47471:268:0;-1:-1:-1;;;;;47471:268:0:o;66170:100::-;66243:19;;;;:8;;:19;;;;;:::i;48853:292::-;48994:7;49076:44;49081:3;49101;49107:12;49076:4;:44::i;:::-;49068:53;-1:-1:-1;48853:292:0;;;;;;:::o;62312:110::-;62388:26;62398:2;62402:7;62388:26;;;;;;;;;;;;:9;:26::i;14944:179::-;15002:7;;15034:5;15038:1;15034;:5;:::i;:::-;15022:17;;15063:1;15058;:6;;15050:46;;;;-1:-1:-1;;;15050:46:0;;11714:2:1;15050:46:0;;;11696:21:1;11753:2;11733:18;;;11726:30;11792:29;11772:18;;;11765:57;11839:18;;15050:46:0;11512:351:1;60551:352:0;60708:28;60718:4;60724:2;60728:7;60708:9;:28::i;:::-;60769:48;60792:4;60798:2;60802:7;60811:5;60769:22;:48::i;:::-;60747:148;;;;-1:-1:-1;;;60747:148:0;;;;;;;:::i;49357:723::-;49413:13;49634:10;49630:53;;-1:-1:-1;;49661:10:0;;;;;;;;;;;;-1:-1:-1;;;49661:10:0;;;;;49357:723::o;49630:53::-;49708:5;49693:12;49749:78;49756:9;;49749:78;;49782:8;;;;:::i;:::-;;-1:-1:-1;49805:10:0;;-1:-1:-1;49813:2:0;49805:10;;:::i;:::-;;;49749:78;;;49837:19;49869:6;49859:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49859:17:0;;49837:39;;49887:154;49894:10;;49887:154;;49921:11;49931:1;49921:11;;:::i;:::-;;-1:-1:-1;49990:10:0;49998:2;49990:5;:10;:::i;:::-;49977:24;;:2;:24;:::i;:::-;49964:39;;49947:6;49954;49947:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;49947:56:0;;;;;;;;-1:-1:-1;50018:11:0;50027:2;50018:11;;:::i;:::-;;;49887:154;;46697:183;46808:4;43134:17;;;:12;;;:17;;;;;;:22;;46837:35;43007:157;37400:160;37488:4;37517:35;37525:3;37545:5;37517:7;:35::i;37093:131::-;37160:4;37184:32;37189:3;37209:5;37184:4;:32::i;46063:219::-;46186:4;46210:64;46215:3;46235;-1:-1:-1;;;;;46249:23:0;;46210:4;:64::i;33044:273::-;33185:18;;33138:7;;33185:26;-1:-1:-1;33163:110:0;;;;-1:-1:-1;;;33163:110:0;;9414:2:1;33163:110:0;;;9396:21:1;9453:2;9433:18;;;9426:30;9492:34;9472:18;;;9465:62;-1:-1:-1;;;9543:18:1;;;9536:32;9585:19;;33163:110:0;9212:398:1;33163:110:0;33291:3;:11;;33303:5;33291:18;;;;;;;;:::i;:::-;;;;;;;;;33284:25;;33044:273;;;;:::o;43734:348::-;43884:19;;43828:7;;;;43884:27;-1:-1:-1;43862:111:0;;;;-1:-1:-1;;;43862:111:0;;16934:2:1;43862:111:0;;;16916:21:1;16973:2;16953:18;;;16946:30;17012:34;16992:18;;;16985:62;-1:-1:-1;;;17063:18:1;;;17056:32;17105:19;;43862:111:0;16732:398:1;43862:111:0;43986:22;44011:3;:12;;44024:5;44011:19;;;;;;;;:::i;:::-;;;;;;;;;;;43986:44;;44049:5;:10;;;44061:5;:12;;;44041:33;;;;;43734:348;;;;;:::o;45368:371::-;45496:7;45535:17;;;:12;;;:17;;;;;;45586:12;45571:13;45563:36;;;;-1:-1:-1;;;45563:36:0;;;;;;;;:::i;:::-;-1:-1:-1;45662:3:0;45675:12;45686:1;45675:8;:12;:::i;:::-;45662:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;45655:40;;;45368:371;;;;;:::o;62649:321::-;62779:18;62785:2;62789:7;62779:5;:18::i;:::-;62830:54;62861:1;62865:2;62869:7;62878:5;62830:22;:54::i;:::-;62808:154;;;;-1:-1:-1;;;62808:154:0;;;;;;;:::i;66835:694::-;66990:4;-1:-1:-1;;;;;67012:13:0;;20828:20;67007:60;;-1:-1:-1;67051:4:0;67044:11;;67007:60;67077:23;67103:313;-1:-1:-1;;;1651:10:0;67269:4;67292:7;67318:5;67133:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;67133:205:0;;;;;;;-1:-1:-1;;;;;67133:205:0;;;;;;;;;;;67103:313;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;67103:15:0;;;:313;:15;:313::i;:::-;67077:339;;67427:13;67454:10;67443:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;67494:26:0;-1:-1:-1;;;67494:26:0;;-1:-1:-1;;;66835:694:0;;;;;;:::o;30678:1570::-;30744:4;30883:19;;;:12;;;:19;;;;;;30919:15;;30915:1326;;31294:21;31318:14;31331:1;31318:10;:14;:::i;:::-;31367:18;;31294:38;;-1:-1:-1;31347:17:0;;31367:22;;31388:1;;31367:22;:::i;:::-;31347:42;;31634:17;31654:3;:11;;31666:9;31654:22;;;;;;;;:::i;:::-;;;;;;;;;31634:42;;31800:9;31771:3;:11;;31783:13;31771:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;31903:17;:13;31919:1;31903:17;:::i;:::-;31877:23;;;;:12;;;:23;;;;;:43;32042:17;;31877:3;;32042:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32137:3;:12;;:19;32150:5;32137:19;;;;;;;;;;;32130:26;;;32180:4;32173:11;;;;;;;;30915:1326;32224:5;32217:12;;;;;30088:414;30151:4;43134:17;;;:12;;;:17;;;;;;30168:327;;-1:-1:-1;30211:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;30394:18;;30372:19;;;:12;;;:19;;;;;;:40;;;;30427:11;;30168:327;-1:-1:-1;30478:5:0;30471:12;;40436:737;40546:4;40681:17;;;:12;;;:17;;;;;;40715:13;40711:455;;-1:-1:-1;;40813:36:0;;;;;;;;;;;;;;;;;;40795:55;;;;;;;;:12;:55;;;;;;;;;;;;;;;;;;;;;;;;41008:19;;40988:17;;;:12;;;:17;;;;;;;:39;41042:11;;40711:455;41122:5;41086:3;41099:12;41110:1;41099:8;:12;:::i;:::-;41086:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;41149:5;41142:12;;;;;63306:404;-1:-1:-1;;;;;63386:16:0;;63378:61;;;;-1:-1:-1;;;63378:61:0;;17337:2:1;63378:61:0;;;17319:21:1;;;17356:18;;;17349:30;17415:34;17395:18;;;17388:62;17467:18;;63378:61:0;17135:356:1;63378:61:0;63459:16;63467:7;63459;:16::i;:::-;63458:17;63450:58;;;;-1:-1:-1;;;63450:58:0;;11003:2:1;63450:58:0;;;10985:21:1;11042:2;11022:18;;;11015:30;11081;11061:18;;;11054:58;11129:18;;63450:58:0;10801:352:1;63450:58:0;-1:-1:-1;;;;;63579:17:0;;;;;;:13;:17;;;;;:30;;63601:7;63579:21;:30::i;:::-;-1:-1:-1;63622:29:0;:12;63639:7;63648:2;63622:16;:29::i;:::-;-1:-1:-1;63669:33:0;;63694:7;;-1:-1:-1;;;;;63669:33:0;;;63686:1;;63669:33;;63686:1;;63669:33;63306:404;;:::o;23485:229::-;23622:12;23654:52;23676:6;23684:4;23690:1;23693:12;23622;20828:20;;25025:60;;;;-1:-1:-1;;;25025:60:0;;21924:2:1;25025:60:0;;;21906:21:1;21963:2;21943:18;;;21936:30;22002:31;21982:18;;;21975:59;22051:18;;25025:60:0;21722:353:1;25025:60:0;25159:12;25173:23;25200:6;-1:-1:-1;;;;;25200:11:0;25219:5;25240:4;25200:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25158:97;;;;25273:52;25291:7;25300:10;25312:12;25273:17;:52::i;:::-;25266:59;24701:632;-1:-1:-1;;;;;;;24701:632:0:o;27624:777::-;27774:12;27803:7;27799:595;;;-1:-1:-1;27834:10:0;27827:17;;27799:595;27948:17;;:21;27944:439;;28211:10;28205:17;28272:15;28259:10;28255:2;28251:19;28244:44;27944:439;28354:12;28347:20;;-1:-1:-1;;;28347:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;592:9;579:23;611:31;636:5;611:31;:::i;677:388::-;745:6;753;806:2;794:9;785:7;781:23;777:32;774:52;;;822:1;819;812:12;774:52;861:9;848:23;880:31;905:5;880:31;:::i;:::-;930:5;-1:-1:-1;987:2:1;972:18;;959:32;1000:33;959:32;1000:33;:::i;:::-;1052:7;1042:17;;;677:388;;;;;:::o;1070:456::-;1147:6;1155;1163;1216:2;1204:9;1195:7;1191:23;1187:32;1184:52;;;1232:1;1229;1222:12;1184:52;1271:9;1258:23;1290:31;1315:5;1290:31;:::i;:::-;1340:5;-1:-1:-1;1397:2:1;1382:18;;1369:32;1410:33;1369:32;1410:33;:::i;:::-;1070:456;;1462:7;;-1:-1:-1;;;1516:2:1;1501:18;;;;1488:32;;1070:456::o;1531:794::-;1626:6;1634;1642;1650;1703:3;1691:9;1682:7;1678:23;1674:33;1671:53;;;1720:1;1717;1710:12;1671:53;1759:9;1746:23;1778:31;1803:5;1778:31;:::i;:::-;1828:5;-1:-1:-1;1885:2:1;1870:18;;1857:32;1898:33;1857:32;1898:33;:::i;:::-;1950:7;-1:-1:-1;2004:2:1;1989:18;;1976:32;;-1:-1:-1;2059:2:1;2044:18;;2031:32;2086:18;2075:30;;2072:50;;;2118:1;2115;2108:12;2072:50;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:55:1;;2223:1;2220;2213:12;2172:55;2246:73;2311:7;2306:2;2293:16;2288:2;2284;2280:11;2246:73;:::i;:::-;2236:83;;;1531:794;;;;;;;:::o;2330:416::-;2395:6;2403;2456:2;2444:9;2435:7;2431:23;2427:32;2424:52;;;2472:1;2469;2462:12;2424:52;2511:9;2498:23;2530:31;2555:5;2530:31;:::i;:::-;2580:5;-1:-1:-1;2637:2:1;2622:18;;2609:32;2679:15;;2672:23;2660:36;;2650:64;;2710:1;2707;2700:12;2751:315;2819:6;2827;2880:2;2868:9;2859:7;2855:23;2851:32;2848:52;;;2896:1;2893;2886:12;2848:52;2935:9;2922:23;2954:31;2979:5;2954:31;:::i;:::-;3004:5;3056:2;3041:18;;;;3028:32;;-1:-1:-1;;;2751:315:1:o;3071:1032::-;3155:6;3186:2;3229;3217:9;3208:7;3204:23;3200:32;3197:52;;;3245:1;3242;3235:12;3197:52;3285:9;3272:23;3314:18;3355:2;3347:6;3344:14;3341:34;;;3371:1;3368;3361:12;3341:34;3409:6;3398:9;3394:22;3384:32;;3454:7;3447:4;3443:2;3439:13;3435:27;3425:55;;3476:1;3473;3466:12;3425:55;3512:2;3499:16;3534:2;3530;3527:10;3524:36;;;3540:18;;:::i;:::-;3586:2;3583:1;3579:10;3569:20;;3609:28;3633:2;3629;3625:11;3609:28;:::i;:::-;3671:15;;;3702:12;;;;3734:11;;;3764;;;3760:20;;3757:33;-1:-1:-1;3754:53:1;;;3803:1;3800;3793:12;3754:53;3825:1;3816:10;;3835:238;3849:2;3846:1;3843:9;3835:238;;;3920:3;3907:17;3894:30;;3937:31;3962:5;3937:31;:::i;:::-;3981:18;;;3867:1;3860:9;;;;;4019:12;;;;4051;;3835:238;;;-1:-1:-1;4092:5:1;3071:1032;-1:-1:-1;;;;;;;;3071:1032:1:o;4108:245::-;4166:6;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4274:9;4261:23;4293:30;4317:5;4293:30;:::i;4358:249::-;4427:6;4480:2;4468:9;4459:7;4455:23;4451:32;4448:52;;;4496:1;4493;4486:12;4448:52;4528:9;4522:16;4547:30;4571:5;4547:30;:::i;4612:450::-;4681:6;4734:2;4722:9;4713:7;4709:23;4705:32;4702:52;;;4750:1;4747;4740:12;4702:52;4790:9;4777:23;4823:18;4815:6;4812:30;4809:50;;;4855:1;4852;4845:12;4809:50;4878:22;;4931:4;4923:13;;4919:27;-1:-1:-1;4909:55:1;;4960:1;4957;4950:12;4909:55;4983:73;5048:7;5043:2;5030:16;5025:2;5021;5017:11;4983:73;:::i;5067:180::-;5126:6;5179:2;5167:9;5158:7;5154:23;5150:32;5147:52;;;5195:1;5192;5185:12;5147:52;-1:-1:-1;5218:23:1;;5067:180;-1:-1:-1;5067:180:1:o;5252:323::-;5328:6;5336;5389:2;5377:9;5368:7;5364:23;5360:32;5357:52;;;5405:1;5402;5395:12;5357:52;5441:9;5428:23;5418:33;;5501:2;5490:9;5486:18;5473:32;5514:31;5539:5;5514:31;:::i;5580:257::-;5621:3;5659:5;5653:12;5686:6;5681:3;5674:19;5702:63;5758:6;5751:4;5746:3;5742:14;5735:4;5728:5;5724:16;5702:63;:::i;:::-;5819:2;5798:15;-1:-1:-1;;5794:29:1;5785:39;;;;5826:4;5781:50;;5580:257;-1:-1:-1;;5580:257:1:o;5842:274::-;5971:3;6009:6;6003:13;6025:53;6071:6;6066:3;6059:4;6051:6;6047:17;6025:53;:::i;:::-;6094:16;;;;;5842:274;-1:-1:-1;;5842:274:1:o;6121:772::-;6502:3;6540:6;6534:13;6556:53;6602:6;6597:3;6590:4;6582:6;6578:17;6556:53;:::i;:::-;-1:-1:-1;;;6631:16:1;;;6656:18;;;6699:13;;6721:65;6699:13;6773:1;6762:13;;6755:4;6743:17;;6721:65;:::i;:::-;-1:-1:-1;;;6849:1:1;6805:20;;;;6841:10;;;6834:27;6885:1;6877:10;;6121:772;-1:-1:-1;;;;6121:772:1:o;7316:488::-;-1:-1:-1;;;;;7585:15:1;;;7567:34;;7637:15;;7632:2;7617:18;;7610:43;7684:2;7669:18;;7662:34;;;7732:3;7727:2;7712:18;;7705:31;;;7510:4;;7753:45;;7778:19;;7770:6;7753:45;:::i;:::-;7745:53;7316:488;-1:-1:-1;;;;;;7316:488:1:o;8159:632::-;8330:2;8382:21;;;8452:13;;8355:18;;;8474:22;;;8301:4;;8330:2;8553:15;;;;8527:2;8512:18;;;8301:4;8596:169;8610:6;8607:1;8604:13;8596:169;;;8671:13;;8659:26;;8740:15;;;;8705:12;;;;8632:1;8625:9;8596:169;;;-1:-1:-1;8782:3:1;;8159:632;-1:-1:-1;;;;;;8159:632:1:o;8988:219::-;9137:2;9126:9;9119:21;9100:4;9157:44;9197:2;9186:9;9182:18;9174:6;9157:44;:::i;9975:414::-;10177:2;10159:21;;;10216:2;10196:18;;;10189:30;10255:34;10250:2;10235:18;;10228:62;-1:-1:-1;;;10321:2:1;10306:18;;10299:48;10379:3;10364:19;;9975:414::o;17909:356::-;18111:2;18093:21;;;18130:18;;;18123:30;18189:34;18184:2;18169:18;;18162:62;18256:2;18241:18;;17909:356::o;21304:413::-;21506:2;21488:21;;;21545:2;21525:18;;;21518:30;21584:34;21579:2;21564:18;;21557:62;-1:-1:-1;;;21650:2:1;21635:18;;21628:47;21707:3;21692:19;;21304:413::o;24000:275::-;24071:2;24065:9;24136:2;24117:13;;-1:-1:-1;;24113:27:1;24101:40;;24171:18;24156:34;;24192:22;;;24153:62;24150:88;;;24218:18;;:::i;:::-;24254:2;24247:22;24000:275;;-1:-1:-1;24000:275:1:o;24280:128::-;24320:3;24351:1;24347:6;24344:1;24341:13;24338:39;;;24357:18;;:::i;:::-;-1:-1:-1;24393:9:1;;24280:128::o;24413:120::-;24453:1;24479;24469:35;;24484:18;;:::i;:::-;-1:-1:-1;24518:9:1;;24413:120::o;24538:168::-;24578:7;24644:1;24640;24636:6;24632:14;24629:1;24626:21;24621:1;24614:9;24607:17;24603:45;24600:71;;;24651:18;;:::i;:::-;-1:-1:-1;24691:9:1;;24538:168::o;24711:125::-;24751:4;24779:1;24776;24773:8;24770:34;;;24784:18;;:::i;:::-;-1:-1:-1;24821:9:1;;24711:125::o;24841:258::-;24913:1;24923:113;24937:6;24934:1;24931:13;24923:113;;;25013:11;;;25007:18;24994:11;;;24987:39;24959:2;24952:10;24923:113;;;25054:6;25051:1;25048:13;25045:48;;;-1:-1:-1;;25089:1:1;25071:16;;25064:27;24841:258::o;25104:380::-;25183:1;25179:12;;;;25226;;;25247:61;;25301:4;25293:6;25289:17;25279:27;;25247:61;25354:2;25346:6;25343:14;25323:18;25320:38;25317:161;;;25400:10;25395:3;25391:20;25388:1;25381:31;25435:4;25432:1;25425:15;25463:4;25460:1;25453:15;25489:135;25528:3;-1:-1:-1;;25549:17:1;;25546:43;;;25569:18;;:::i;:::-;-1:-1:-1;25616:1:1;25605:13;;25489:135::o;25629:112::-;25661:1;25687;25677:35;;25692:18;;:::i;:::-;-1:-1:-1;25726:9:1;;25629:112::o;25746:127::-;25807:10;25802:3;25798:20;25795:1;25788:31;25838:4;25835:1;25828:15;25862:4;25859:1;25852:15;25878:127;25939:10;25934:3;25930:20;25927:1;25920:31;25970:4;25967:1;25960:15;25994:4;25991:1;25984:15;26010:127;26071:10;26066:3;26062:20;26059:1;26052:31;26102:4;26099:1;26092:15;26126:4;26123:1;26116:15;26142:127;26203:10;26198:3;26194:20;26191:1;26184:31;26234:4;26231:1;26224:15;26258:4;26255:1;26248:15;26274:127;26335:10;26330:3;26326:20;26323:1;26316:31;26366:4;26363:1;26356:15;26390:4;26387:1;26380:15;26406:131;-1:-1:-1;;;;;26481:31:1;;26471:42;;26461:70;;26527:1;26524;26517:12;26542:131;-1:-1:-1;;;;;;26616:32:1;;26606:43;;26596:71;;26663:1;26660;26653:12

Swarm Source

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