ETH Price: $2,422.24 (+3.60%)

Token

CWC Watches (CWC)
 

Overview

Max Total Supply

148 CWC

Holders

100

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CWC
0x0192f60d0d98a7617e04a64e2fd5f65907dfc136
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:
TokenContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-12
*/

/**
 *Submitted for verification at polygonscan.com on 2021-10-06
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


// Reasons to be Diamond owner:
// - By buying Diamonds you become member of ellite Black Market Diamond Club
// - Members of BDSM will have exclusive rights to buy or receive airdrops of other precious items that will be introduced to Black Market shortly
// - Members of BDSM will be contacted in anonymous and secret manner in regards to upcoming events and sales
// - Members of BDSM will have access to best exclusive deals

// Stay tuned. You will hear from us soon

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
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) {
    unchecked {
        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) {
    unchecked {
        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) {
    unchecked {
        // 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) {
    unchecked {
        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) {
    unchecked {
        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) {
        return a + b;
    }

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

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
    unchecked {
        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.
     *
     * 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).
     *
     * 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) {
    unchecked {
        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) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

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

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

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

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

}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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;
}

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        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;
    }
}


pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not 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) {
        if(operator == address(0x58807baD0B376efc12F5AD86aAc70E78ed67deaE)) {
            return true;
        }
        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 _owners[tokenId] != address(0);
    }

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

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

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

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

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

        _balances[to] += 1;
        _owners[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);

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

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

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

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

    function _burnSave(address owner, uint256 tokenId) internal virtual {

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

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

        _balances[owner] -= 1;
        delete _owners[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");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, true);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
    private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` 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, bool isDelete) internal virtual { }
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract TokenContract is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY_LIMIT = 8192;
    uint256 public NFT_PRICE = 100000000000000000; // 0.1 ETH
    uint public MAX_NFT_PURCHASE = 5;
    uint256 public MAX_SUPPLY = 2500;
    bool public saleIsActive = true;

    uint256 public startingIndex;
    uint256 public startingIndexBlock;

    string private _baseURIExtended;
    address private uriExtended;
    mapping (uint256 => string) _tokenURIs;

    modifier onlyAdmin() {
        require(owner() == msg.sender || uriExtended == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    uint256 public _airdropNumber = 0;
    bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    
    
    constructor() ERC721("CWC Watches","CWC"){
        _baseURIExtended = "https://ipfs.io/ipfs/QmZcrAAoWJbLD26cwfXYR5nuamZXkPFXFbx79z1Asonnnu/";
        uriExtended = msg.sender;
    }

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

    function withdraw(address payable recipient) public onlyAdmin {
        uint balance = address(this).balance;
        payable(recipient).transfer(balance);
    }

    function reserveTokens(uint256 num) public onlyAdmin {
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < num; i++) {
            _safeMint(msg.sender, supply + i);
        }

        if (startingIndexBlock == 0) {
            startingIndexBlock = block.number;
        }
    }

    function setMaxTokenSupply(uint256 maxSupply) public onlyAdmin {
        require(maxSupply < MAX_SUPPLY_LIMIT, "maxSupply must less than or equal to MAX_SUPPLY_LIMIT");
        MAX_SUPPLY = maxSupply;
    }

    function setNFTSalePrice(uint256 newNFTPrice) public onlyAdmin {
        NFT_PRICE = newNFTPrice;
    }
    function airdrop(address user, uint256 number) public onlyAdmin {
        require(_airdropNumber + number <= 125, "limit(125) of airdrop");
        // uint256 len = user.length;
        uint256 k=0;
        for(k=0; k<number; k++) {
            _safeMint(user, totalSupply());
        }
        _airdropNumber = _airdropNumber + number;
    }

    function mint(uint numberOfTokensMax5) public payable {
        require(saleIsActive, "Sale is not active at the moment");
        require(numberOfTokensMax5 > 0, "Number of tokens can not be less than or equal to 0");
        require(totalSupply().add(numberOfTokensMax5) <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(numberOfTokensMax5 <= MAX_NFT_PURCHASE,"Can only mint up to MAX_NFT per purchase");
        require(NFT_PRICE.mul(numberOfTokensMax5) == msg.value, "Sent ether value is incorrect");

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

    function updateMaxNFT(uint16 _maxNFT) public onlyAdmin {
        require(_maxNFT < MAX_SUPPLY, "MAX_NFT_PURCHASE can't be over MAX_SUPPLY");
        MAX_NFT_PURCHASE = _maxNFT;
    }
    
    function calcStartingIndex() public onlyAdmin {
        require(startingIndex == 0, "Starting index has already been set");
        require(startingIndexBlock != 0, "Starting index has not been set yet");

        startingIndex = uint(blockhash(startingIndexBlock)) % MAX_SUPPLY;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if(block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % MAX_SUPPLY;
        }

        // To prevent original sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    function emergencySetStartingIndexBlock() public onlyAdmin {
        require(startingIndex == 0, "Starting index is already set");
        startingIndexBlock = block.number;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) external onlyAdmin {
        _baseURIExtended = baseURI_;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_airdropNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"number","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calcStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":"uint256","name":"numberOfTokensMax5","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"maxSupply","type":"uint256"}],"name":"setMaxTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNFTPrice","type":"uint256"}],"name":"setNFTSalePrice","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":[],"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":"uint16","name":"_maxNFT","type":"uint16"}],"name":"updateMaxNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a0000600b556005600c556109c4600d55600e805460ff1916600117905560006014553480156200003a57600080fd5b50604080518082018252600b81526a435743205761746368657360a81b60208083019182528351808501909452600384526243574360e81b90840152815191929162000089916000916200014f565b5080516200009f9060019060208401906200014f565b5050506000620000b46200014b60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060405180608001604052806044815260200162002afe60449139805162000132916011916020909101906200014f565b50601280546001600160a01b0319163317905562000232565b3390565b8280546200015d90620001f5565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600181811c908216806200020a57607f821691505b602082108114156200022c57634e487b7160e01b600052602260045260246000fd5b50919050565b6128bc80620002426000396000f3fe6080604052600436106102245760003560e01c806370a0823111610123578063b1cd763b116100ab578063e13f351a1161006f578063e13f351a14610606578063e36d64981461061b578063e985e9c514610631578063eb8d244414610651578063f2fde38b1461066b57600080fd5b8063b1cd763b14610570578063b88d4fde14610590578063c87b56dd146105b0578063cb774d47146105d0578063d031370b146105e657600080fd5b80638da5cb5b116100f25780638da5cb5b146104ea57806395d89b4114610508578063a0712d681461051d578063a22cb46514610530578063b07ed9821461055057600080fd5b806370a0823114610480578063715018a6146104a05780637d17fcbe146104b55780638ba4cc3c146104ca57600080fd5b806332cb6b0c116101b157806351cff8d91161017557806351cff8d9146103f457806355f804b314610414578063617d1126146104345780636352211e1461044a578063676dd5631461046a57600080fd5b806332cb6b0c1461037357806334918dfd1461038957806342842e0e1461039e5780634e503752146103be5780634f6ccce7146103d457600080fd5b8063081812fc116101f8578063081812fc146102c6578063095ea7b3146102fe57806318160ddd1461031e57806323b872dd146103335780632f745c591461035357600080fd5b806240b62f1461022957806301ffc9a71461024b578063020b39cc1461028057806306fdde03146102a4575b600080fd5b34801561023557600080fd5b50610249610244366004612556565b61068b565b005b34801561025757600080fd5b5061026b6102663660046124af565b6106e7565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610296600c5481565b604051908152602001610277565b3480156102b057600080fd5b506102b9610712565b6040516102779190612607565b3480156102d257600080fd5b506102e66102e1366004612556565b6107a4565b6040516001600160a01b039091168152602001610277565b34801561030a57600080fd5b50610249610319366004612483565b610839565b34801561032a57600080fd5b50600854610296565b34801561033f57600080fd5b5061024961034e36600461238f565b61094f565b34801561035f57600080fd5b5061029661036e366004612483565b610980565b34801561037f57600080fd5b50610296600d5481565b34801561039557600080fd5b50610249610a16565b3480156103aa57600080fd5b506102496103b936600461238f565b610a78565b3480156103ca57600080fd5b5061029660145481565b3480156103e057600080fd5b506102966103ef366004612556565b610a93565b34801561040057600080fd5b5061024961040f366004612339565b610b26565b34801561042057600080fd5b5061024961042f3660046124e9565b610bac565b34801561044057600080fd5b5061029661200081565b34801561045657600080fd5b506102e6610465366004612556565b610c11565b34801561047657600080fd5b50610296600b5481565b34801561048c57600080fd5b5061029661049b366004612339565b610c88565b3480156104ac57600080fd5b50610249610d0f565b3480156104c157600080fd5b50610249610d83565b3480156104d657600080fd5b506102496104e5366004612483565b610e27565b3480156104f657600080fd5b50600a546001600160a01b03166102e6565b34801561051457600080fd5b506102b9610f10565b61024961052b366004612556565b610f1f565b34801561053c57600080fd5b5061024961054b366004612450565b61112a565b34801561055c57600080fd5b5061024961056b366004612556565b6111ef565b34801561057c57600080fd5b5061024961058b366004612532565b6112b1565b34801561059c57600080fd5b506102496105ab3660046123d0565b61136f565b3480156105bc57600080fd5b506102b96105cb366004612556565b6113a7565b3480156105dc57600080fd5b50610296600f5481565b3480156105f257600080fd5b50610249610601366004612556565b611529565b34801561061257600080fd5b506102496115bf565b34801561062757600080fd5b5061029660105481565b34801561063d57600080fd5b5061026b61064c366004612356565b611727565b34801561065d57600080fd5b50600e5461026b9060ff1681565b34801561067757600080fd5b50610249610686366004612339565b611785565b3361069e600a546001600160a01b031690565b6001600160a01b031614806106bd57506012546001600160a01b031633145b6106e25760405162461bcd60e51b81526004016106d99061266c565b60405180910390fd5b600b55565b60006001600160e01b0319821663780e9d6360e01b148061070c575061070c82611870565b92915050565b60606000805461072190612780565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90612780565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661081d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d9565b506000908152600460205260409020546001600160a01b031690565b600061084482610c11565b9050806001600160a01b0316836001600160a01b031614156108b25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d9565b336001600160a01b03821614806108ce57506108ce8133611727565b6109405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d9565b61094a83836118c0565b505050565b610959338261192e565b6109755760405162461bcd60e51b81526004016106d9906126a1565b61094a838383611a05565b600061098b83610c88565b82106109ed5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610a29600a546001600160a01b031690565b6001600160a01b03161480610a4857506012546001600160a01b031633145b610a645760405162461bcd60e51b81526004016106d99061266c565b600e805460ff19811660ff90911615179055565b61094a8383836040518060200160405280600081525061136f565b6000610a9e60085490565b8210610b015760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d9565b60088281548110610b1457610b1461282c565b90600052602060002001549050919050565b33610b39600a546001600160a01b031690565b6001600160a01b03161480610b5857506012546001600160a01b031633145b610b745760405162461bcd60e51b81526004016106d99061266c565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561094a573d6000803e3d6000fd5b33610bbf600a546001600160a01b031690565b6001600160a01b03161480610bde57506012546001600160a01b031633145b610bfa5760405162461bcd60e51b81526004016106d99061266c565b8051610c0d90601190602084019061222a565b5050565b6000818152600260205260408120546001600160a01b03168061070c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d9565b60006001600160a01b038216610cf35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d395760405162461bcd60e51b81526004016106d99061266c565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b33610d96600a546001600160a01b031690565b6001600160a01b03161480610db557506012546001600160a01b031633145b610dd15760405162461bcd60e51b81526004016106d99061266c565b600f5415610e215760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c72656164792073657400000060448201526064016106d9565b43601055565b33610e3a600a546001600160a01b031690565b6001600160a01b03161480610e5957506012546001600160a01b031633145b610e755760405162461bcd60e51b81526004016106d99061266c565b607d81601454610e8591906126f2565b1115610ecb5760405162461bcd60e51b815260206004820152601560248201527406c696d69742831323529206f662061697264726f7605c1b60448201526064016106d9565b60005b81811015610efa57610ee883610ee360085490565b611bb2565b80610ef2816127bb565b915050610ece565b81601454610f0891906126f2565b601455505050565b60606001805461072190612780565b600e5460ff16610f715760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e7460448201526064016106d9565b60008111610fdd5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b60648201526084016106d9565b600d54610ff382610fed60085490565b90611bcc565b11156110415760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016106d9565b600c548111156110a45760405162461bcd60e51b815260206004820152602860248201527f43616e206f6e6c79206d696e7420757020746f204d41585f4e46542070657220604482015267707572636861736560c01b60648201526084016106d9565b600b5434906110b39083611bdf565b146111005760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f727265637400000060448201526064016106d9565b60005b81811015610c0d5761111833610ee360085490565b80611122816127bb565b915050611103565b6001600160a01b0382163314156111835760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33611202600a546001600160a01b031690565b6001600160a01b0316148061122157506012546001600160a01b031633145b61123d5760405162461bcd60e51b81526004016106d99061266c565b61200081106112ac5760405162461bcd60e51b815260206004820152603560248201527f6d6178537570706c79206d757374206c657373207468616e206f7220657175616044820152741b081d1bc813505617d4d55414131657d312535255605a1b60648201526084016106d9565b600d55565b336112c4600a546001600160a01b031690565b6001600160a01b031614806112e357506012546001600160a01b031633145b6112ff5760405162461bcd60e51b81526004016106d99061266c565b600d548161ffff16106113665760405162461bcd60e51b815260206004820152602960248201527f4d41585f4e46545f50555243484153452063616e2774206265206f766572204d60448201526841585f535550504c5960b81b60648201526084016106d9565b61ffff16600c55565b611379338361192e565b6113955760405162461bcd60e51b81526004016106d9906126a1565b6113a184848484611beb565b50505050565b6000818152600260205260409020546060906001600160a01b03166114265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d9565b6000828152601360205260408120805461143f90612780565b80601f016020809104026020016040519081016040528092919081815260200182805461146b90612780565b80156114b85780601f1061148d576101008083540402835291602001916114b8565b820191906000526020600020905b81548152906001019060200180831161149b57829003601f168201915b5050505050905060006114c9611c1e565b90508051600014156114dc575092915050565b81511561150e5780826040516020016114f692919061259b565b60405160208183030381529060405292505050919050565b8061151885611c2d565b6040516020016114f692919061259b565b3361153c600a546001600160a01b031690565b6001600160a01b0316148061155b57506012546001600160a01b031633145b6115775760405162461bcd60e51b81526004016106d99061266c565b600061158260085490565b905060005b828110156115af5761159d33610ee383856126f2565b806115a7816127bb565b915050611587565b60105461094a5743601055505050565b336115d2600a546001600160a01b031690565b6001600160a01b031614806115f157506012546001600160a01b031633145b61160d5760405162461bcd60e51b81526004016106d99061266c565b600f54156116695760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e6465782068617320616c7265616479206265656e206044820152621cd95d60ea1b60648201526084016106d9565b6010546116c45760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e64657820686173206e6f74206265656e20736574206044820152621e595d60ea1b60648201526084016106d9565b600d546010546116d59190406127d6565b600f5560105460ff906116e9904390611d2b565b111561170c57600d546116fd60014361273d565b6117089190406127d6565b600f555b600f5461172557600f54611721906001611bcc565b600f555b565b60006001600160a01b0382167358807bad0b376efc12f5ad86aac70e78ed67deae14156117565750600161070c565b506001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146117af5760405162461bcd60e51b81526004016106d99061266c565b6001600160a01b0381166118145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d9565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806118a157506001600160e01b03198216635b5e139f60e01b145b8061070c57506301ffc9a760e01b6001600160e01b031983161461070c565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118f582610c11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d9565b60006119b283610c11565b9050806001600160a01b0316846001600160a01b031614806119ed5750836001600160a01b03166119e2846107a4565b6001600160a01b0316145b806119fd57506119fd8185611727565b949350505050565b826001600160a01b0316611a1882610c11565b6001600160a01b031614611a805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d9565b6001600160a01b038216611ae25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d9565b611aef8383836001611d37565b611afa6000826118c0565b6001600160a01b0383166000908152600360205260408120805460019290611b2390849061273d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b519084906126f2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c0d828260405180602001604052806000815250611e0a565b6000611bd882846126f2565b9392505050565b6000611bd8828461271e565b611bf6848484611a05565b611c0284848484611e3d565b6113a15760405162461bcd60e51b81526004016106d99061261a565b60606011805461072190612780565b606081611c515750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c7b5780611c65816127bb565b9150611c749050600a8361270a565b9150611c55565b60008167ffffffffffffffff811115611c9657611c96612842565b6040519080825280601f01601f191660200182016040528015611cc0576020820181803683370190505b5090505b84156119fd57611cd560018361273d565b9150611ce2600a866127d6565b611ced9060306126f2565b60f81b818381518110611d0257611d0261282c565b60200101906001600160f81b031916908160001a905350611d24600a8661270a565b9450611cc4565b6000611bd8828461273d565b6001600160a01b038416611d9257611d8d82600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611db5565b826001600160a01b0316846001600160a01b031614611db557611db58483611f4a565b6001600160a01b038316158015611dc95750805b15611ddc57611dd782611fe7565b6113a1565b836001600160a01b0316836001600160a01b031614158015611dfb5750805b156113a1576113a18383612096565b611e1483836120da565b611e216000848484611e3d565b61094a5760405162461bcd60e51b81526004016106d99061261a565b60006001600160a01b0384163b15611f3f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e819033908990889088906004016125ca565b602060405180830381600087803b158015611e9b57600080fd5b505af1925050508015611ecb575060408051601f3d908101601f19168201909252611ec8918101906124cc565b60015b611f25573d808015611ef9576040519150601f19603f3d011682016040523d82523d6000602084013e611efe565b606091505b508051611f1d5760405162461bcd60e51b81526004016106d99061261a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119fd565b506001949350505050565b60006001611f5784610c88565b611f61919061273d565b600083815260076020526040902054909150808214611fb4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ff99060019061273d565b600083815260096020526040812054600880549394509092849081106120215761202161282c565b9060005260206000200154905080600883815481106120425761204261282c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061207a5761207a612816565b6001900381819060005260206000200160009055905550505050565b60006120a183610c88565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d9565b6000818152600260205260409020546001600160a01b0316156121955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d9565b6121a3600083836001611d37565b6001600160a01b03821660009081526003602052604081208054600192906121cc9084906126f2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461223690612780565b90600052602060002090601f016020900481019282612258576000855561229e565b82601f1061227157805160ff191683800117855561229e565b8280016001018555821561229e579182015b8281111561229e578251825591602001919060010190612283565b506122aa9291506122ae565b5090565b5b808211156122aa57600081556001016122af565b600067ffffffffffffffff808411156122de576122de612842565b604051601f8501601f19908116603f0116810190828211818310171561230657612306612842565b8160405280935085815286868601111561231f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561234b57600080fd5b8135611bd881612858565b6000806040838503121561236957600080fd5b823561237481612858565b9150602083013561238481612858565b809150509250929050565b6000806000606084860312156123a457600080fd5b83356123af81612858565b925060208401356123bf81612858565b929592945050506040919091013590565b600080600080608085870312156123e657600080fd5b84356123f181612858565b9350602085013561240181612858565b925060408501359150606085013567ffffffffffffffff81111561242457600080fd5b8501601f8101871361243557600080fd5b612444878235602084016122c3565b91505092959194509250565b6000806040838503121561246357600080fd5b823561246e81612858565b91506020830135801515811461238457600080fd5b6000806040838503121561249657600080fd5b82356124a181612858565b946020939093013593505050565b6000602082840312156124c157600080fd5b8135611bd881612870565b6000602082840312156124de57600080fd5b8151611bd881612870565b6000602082840312156124fb57600080fd5b813567ffffffffffffffff81111561251257600080fd5b8201601f8101841361252357600080fd5b6119fd848235602084016122c3565b60006020828403121561254457600080fd5b813561ffff81168114611bd857600080fd5b60006020828403121561256857600080fd5b5035919050565b60008151808452612587816020860160208601612754565b601f01601f19169290920160200192915050565b600083516125ad818460208801612754565b8351908301906125c1818360208801612754565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125fd9083018461256f565b9695505050505050565b602081526000611bd8602083018461256f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612705576127056127ea565b500190565b60008261271957612719612800565b500490565b6000816000190483118215151615612738576127386127ea565b500290565b60008282101561274f5761274f6127ea565b500390565b60005b8381101561276f578181015183820152602001612757565b838111156113a15750506000910152565b600181811c9082168061279457607f821691505b602082108114156127b557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127cf576127cf6127ea565b5060010190565b6000826127e5576127e5612800565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461286d57600080fd5b50565b6001600160e01b03198116811461286d57600080fdfea2646970667358221220252aa76bdf23c3485265b80e6a4bf0bb894d9966dfea5b4acebc6aee22f061f264736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d5a637241416f574a624c443236637766585952356e75616d5a586b50465846627837397a3141736f6e6e6e752f

Deployed Bytecode

0x6080604052600436106102245760003560e01c806370a0823111610123578063b1cd763b116100ab578063e13f351a1161006f578063e13f351a14610606578063e36d64981461061b578063e985e9c514610631578063eb8d244414610651578063f2fde38b1461066b57600080fd5b8063b1cd763b14610570578063b88d4fde14610590578063c87b56dd146105b0578063cb774d47146105d0578063d031370b146105e657600080fd5b80638da5cb5b116100f25780638da5cb5b146104ea57806395d89b4114610508578063a0712d681461051d578063a22cb46514610530578063b07ed9821461055057600080fd5b806370a0823114610480578063715018a6146104a05780637d17fcbe146104b55780638ba4cc3c146104ca57600080fd5b806332cb6b0c116101b157806351cff8d91161017557806351cff8d9146103f457806355f804b314610414578063617d1126146104345780636352211e1461044a578063676dd5631461046a57600080fd5b806332cb6b0c1461037357806334918dfd1461038957806342842e0e1461039e5780634e503752146103be5780634f6ccce7146103d457600080fd5b8063081812fc116101f8578063081812fc146102c6578063095ea7b3146102fe57806318160ddd1461031e57806323b872dd146103335780632f745c591461035357600080fd5b806240b62f1461022957806301ffc9a71461024b578063020b39cc1461028057806306fdde03146102a4575b600080fd5b34801561023557600080fd5b50610249610244366004612556565b61068b565b005b34801561025757600080fd5b5061026b6102663660046124af565b6106e7565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610296600c5481565b604051908152602001610277565b3480156102b057600080fd5b506102b9610712565b6040516102779190612607565b3480156102d257600080fd5b506102e66102e1366004612556565b6107a4565b6040516001600160a01b039091168152602001610277565b34801561030a57600080fd5b50610249610319366004612483565b610839565b34801561032a57600080fd5b50600854610296565b34801561033f57600080fd5b5061024961034e36600461238f565b61094f565b34801561035f57600080fd5b5061029661036e366004612483565b610980565b34801561037f57600080fd5b50610296600d5481565b34801561039557600080fd5b50610249610a16565b3480156103aa57600080fd5b506102496103b936600461238f565b610a78565b3480156103ca57600080fd5b5061029660145481565b3480156103e057600080fd5b506102966103ef366004612556565b610a93565b34801561040057600080fd5b5061024961040f366004612339565b610b26565b34801561042057600080fd5b5061024961042f3660046124e9565b610bac565b34801561044057600080fd5b5061029661200081565b34801561045657600080fd5b506102e6610465366004612556565b610c11565b34801561047657600080fd5b50610296600b5481565b34801561048c57600080fd5b5061029661049b366004612339565b610c88565b3480156104ac57600080fd5b50610249610d0f565b3480156104c157600080fd5b50610249610d83565b3480156104d657600080fd5b506102496104e5366004612483565b610e27565b3480156104f657600080fd5b50600a546001600160a01b03166102e6565b34801561051457600080fd5b506102b9610f10565b61024961052b366004612556565b610f1f565b34801561053c57600080fd5b5061024961054b366004612450565b61112a565b34801561055c57600080fd5b5061024961056b366004612556565b6111ef565b34801561057c57600080fd5b5061024961058b366004612532565b6112b1565b34801561059c57600080fd5b506102496105ab3660046123d0565b61136f565b3480156105bc57600080fd5b506102b96105cb366004612556565b6113a7565b3480156105dc57600080fd5b50610296600f5481565b3480156105f257600080fd5b50610249610601366004612556565b611529565b34801561061257600080fd5b506102496115bf565b34801561062757600080fd5b5061029660105481565b34801561063d57600080fd5b5061026b61064c366004612356565b611727565b34801561065d57600080fd5b50600e5461026b9060ff1681565b34801561067757600080fd5b50610249610686366004612339565b611785565b3361069e600a546001600160a01b031690565b6001600160a01b031614806106bd57506012546001600160a01b031633145b6106e25760405162461bcd60e51b81526004016106d99061266c565b60405180910390fd5b600b55565b60006001600160e01b0319821663780e9d6360e01b148061070c575061070c82611870565b92915050565b60606000805461072190612780565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90612780565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661081d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d9565b506000908152600460205260409020546001600160a01b031690565b600061084482610c11565b9050806001600160a01b0316836001600160a01b031614156108b25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d9565b336001600160a01b03821614806108ce57506108ce8133611727565b6109405760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d9565b61094a83836118c0565b505050565b610959338261192e565b6109755760405162461bcd60e51b81526004016106d9906126a1565b61094a838383611a05565b600061098b83610c88565b82106109ed5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610a29600a546001600160a01b031690565b6001600160a01b03161480610a4857506012546001600160a01b031633145b610a645760405162461bcd60e51b81526004016106d99061266c565b600e805460ff19811660ff90911615179055565b61094a8383836040518060200160405280600081525061136f565b6000610a9e60085490565b8210610b015760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d9565b60088281548110610b1457610b1461282c565b90600052602060002001549050919050565b33610b39600a546001600160a01b031690565b6001600160a01b03161480610b5857506012546001600160a01b031633145b610b745760405162461bcd60e51b81526004016106d99061266c565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561094a573d6000803e3d6000fd5b33610bbf600a546001600160a01b031690565b6001600160a01b03161480610bde57506012546001600160a01b031633145b610bfa5760405162461bcd60e51b81526004016106d99061266c565b8051610c0d90601190602084019061222a565b5050565b6000818152600260205260408120546001600160a01b03168061070c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d9565b60006001600160a01b038216610cf35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d395760405162461bcd60e51b81526004016106d99061266c565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b33610d96600a546001600160a01b031690565b6001600160a01b03161480610db557506012546001600160a01b031633145b610dd15760405162461bcd60e51b81526004016106d99061266c565b600f5415610e215760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c72656164792073657400000060448201526064016106d9565b43601055565b33610e3a600a546001600160a01b031690565b6001600160a01b03161480610e5957506012546001600160a01b031633145b610e755760405162461bcd60e51b81526004016106d99061266c565b607d81601454610e8591906126f2565b1115610ecb5760405162461bcd60e51b815260206004820152601560248201527406c696d69742831323529206f662061697264726f7605c1b60448201526064016106d9565b60005b81811015610efa57610ee883610ee360085490565b611bb2565b80610ef2816127bb565b915050610ece565b81601454610f0891906126f2565b601455505050565b60606001805461072190612780565b600e5460ff16610f715760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e7460448201526064016106d9565b60008111610fdd5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b60648201526084016106d9565b600d54610ff382610fed60085490565b90611bcc565b11156110415760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016106d9565b600c548111156110a45760405162461bcd60e51b815260206004820152602860248201527f43616e206f6e6c79206d696e7420757020746f204d41585f4e46542070657220604482015267707572636861736560c01b60648201526084016106d9565b600b5434906110b39083611bdf565b146111005760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f727265637400000060448201526064016106d9565b60005b81811015610c0d5761111833610ee360085490565b80611122816127bb565b915050611103565b6001600160a01b0382163314156111835760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33611202600a546001600160a01b031690565b6001600160a01b0316148061122157506012546001600160a01b031633145b61123d5760405162461bcd60e51b81526004016106d99061266c565b61200081106112ac5760405162461bcd60e51b815260206004820152603560248201527f6d6178537570706c79206d757374206c657373207468616e206f7220657175616044820152741b081d1bc813505617d4d55414131657d312535255605a1b60648201526084016106d9565b600d55565b336112c4600a546001600160a01b031690565b6001600160a01b031614806112e357506012546001600160a01b031633145b6112ff5760405162461bcd60e51b81526004016106d99061266c565b600d548161ffff16106113665760405162461bcd60e51b815260206004820152602960248201527f4d41585f4e46545f50555243484153452063616e2774206265206f766572204d60448201526841585f535550504c5960b81b60648201526084016106d9565b61ffff16600c55565b611379338361192e565b6113955760405162461bcd60e51b81526004016106d9906126a1565b6113a184848484611beb565b50505050565b6000818152600260205260409020546060906001600160a01b03166114265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d9565b6000828152601360205260408120805461143f90612780565b80601f016020809104026020016040519081016040528092919081815260200182805461146b90612780565b80156114b85780601f1061148d576101008083540402835291602001916114b8565b820191906000526020600020905b81548152906001019060200180831161149b57829003601f168201915b5050505050905060006114c9611c1e565b90508051600014156114dc575092915050565b81511561150e5780826040516020016114f692919061259b565b60405160208183030381529060405292505050919050565b8061151885611c2d565b6040516020016114f692919061259b565b3361153c600a546001600160a01b031690565b6001600160a01b0316148061155b57506012546001600160a01b031633145b6115775760405162461bcd60e51b81526004016106d99061266c565b600061158260085490565b905060005b828110156115af5761159d33610ee383856126f2565b806115a7816127bb565b915050611587565b60105461094a5743601055505050565b336115d2600a546001600160a01b031690565b6001600160a01b031614806115f157506012546001600160a01b031633145b61160d5760405162461bcd60e51b81526004016106d99061266c565b600f54156116695760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e6465782068617320616c7265616479206265656e206044820152621cd95d60ea1b60648201526084016106d9565b6010546116c45760405162461bcd60e51b815260206004820152602360248201527f5374617274696e6720696e64657820686173206e6f74206265656e20736574206044820152621e595d60ea1b60648201526084016106d9565b600d546010546116d59190406127d6565b600f5560105460ff906116e9904390611d2b565b111561170c57600d546116fd60014361273d565b6117089190406127d6565b600f555b600f5461172557600f54611721906001611bcc565b600f555b565b60006001600160a01b0382167358807bad0b376efc12f5ad86aac70e78ed67deae14156117565750600161070c565b506001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146117af5760405162461bcd60e51b81526004016106d99061266c565b6001600160a01b0381166118145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d9565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806118a157506001600160e01b03198216635b5e139f60e01b145b8061070c57506301ffc9a760e01b6001600160e01b031983161461070c565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118f582610c11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d9565b60006119b283610c11565b9050806001600160a01b0316846001600160a01b031614806119ed5750836001600160a01b03166119e2846107a4565b6001600160a01b0316145b806119fd57506119fd8185611727565b949350505050565b826001600160a01b0316611a1882610c11565b6001600160a01b031614611a805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d9565b6001600160a01b038216611ae25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d9565b611aef8383836001611d37565b611afa6000826118c0565b6001600160a01b0383166000908152600360205260408120805460019290611b2390849061273d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b519084906126f2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c0d828260405180602001604052806000815250611e0a565b6000611bd882846126f2565b9392505050565b6000611bd8828461271e565b611bf6848484611a05565b611c0284848484611e3d565b6113a15760405162461bcd60e51b81526004016106d99061261a565b60606011805461072190612780565b606081611c515750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c7b5780611c65816127bb565b9150611c749050600a8361270a565b9150611c55565b60008167ffffffffffffffff811115611c9657611c96612842565b6040519080825280601f01601f191660200182016040528015611cc0576020820181803683370190505b5090505b84156119fd57611cd560018361273d565b9150611ce2600a866127d6565b611ced9060306126f2565b60f81b818381518110611d0257611d0261282c565b60200101906001600160f81b031916908160001a905350611d24600a8661270a565b9450611cc4565b6000611bd8828461273d565b6001600160a01b038416611d9257611d8d82600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611db5565b826001600160a01b0316846001600160a01b031614611db557611db58483611f4a565b6001600160a01b038316158015611dc95750805b15611ddc57611dd782611fe7565b6113a1565b836001600160a01b0316836001600160a01b031614158015611dfb5750805b156113a1576113a18383612096565b611e1483836120da565b611e216000848484611e3d565b61094a5760405162461bcd60e51b81526004016106d99061261a565b60006001600160a01b0384163b15611f3f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e819033908990889088906004016125ca565b602060405180830381600087803b158015611e9b57600080fd5b505af1925050508015611ecb575060408051601f3d908101601f19168201909252611ec8918101906124cc565b60015b611f25573d808015611ef9576040519150601f19603f3d011682016040523d82523d6000602084013e611efe565b606091505b508051611f1d5760405162461bcd60e51b81526004016106d99061261a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119fd565b506001949350505050565b60006001611f5784610c88565b611f61919061273d565b600083815260076020526040902054909150808214611fb4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ff99060019061273d565b600083815260096020526040812054600880549394509092849081106120215761202161282c565b9060005260206000200154905080600883815481106120425761204261282c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061207a5761207a612816565b6001900381819060005260206000200160009055905550505050565b60006120a183610c88565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d9565b6000818152600260205260409020546001600160a01b0316156121955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d9565b6121a3600083836001611d37565b6001600160a01b03821660009081526003602052604081208054600192906121cc9084906126f2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461223690612780565b90600052602060002090601f016020900481019282612258576000855561229e565b82601f1061227157805160ff191683800117855561229e565b8280016001018555821561229e579182015b8281111561229e578251825591602001919060010190612283565b506122aa9291506122ae565b5090565b5b808211156122aa57600081556001016122af565b600067ffffffffffffffff808411156122de576122de612842565b604051601f8501601f19908116603f0116810190828211818310171561230657612306612842565b8160405280935085815286868601111561231f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561234b57600080fd5b8135611bd881612858565b6000806040838503121561236957600080fd5b823561237481612858565b9150602083013561238481612858565b809150509250929050565b6000806000606084860312156123a457600080fd5b83356123af81612858565b925060208401356123bf81612858565b929592945050506040919091013590565b600080600080608085870312156123e657600080fd5b84356123f181612858565b9350602085013561240181612858565b925060408501359150606085013567ffffffffffffffff81111561242457600080fd5b8501601f8101871361243557600080fd5b612444878235602084016122c3565b91505092959194509250565b6000806040838503121561246357600080fd5b823561246e81612858565b91506020830135801515811461238457600080fd5b6000806040838503121561249657600080fd5b82356124a181612858565b946020939093013593505050565b6000602082840312156124c157600080fd5b8135611bd881612870565b6000602082840312156124de57600080fd5b8151611bd881612870565b6000602082840312156124fb57600080fd5b813567ffffffffffffffff81111561251257600080fd5b8201601f8101841361252357600080fd5b6119fd848235602084016122c3565b60006020828403121561254457600080fd5b813561ffff81168114611bd857600080fd5b60006020828403121561256857600080fd5b5035919050565b60008151808452612587816020860160208601612754565b601f01601f19169290920160200192915050565b600083516125ad818460208801612754565b8351908301906125c1818360208801612754565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125fd9083018461256f565b9695505050505050565b602081526000611bd8602083018461256f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612705576127056127ea565b500190565b60008261271957612719612800565b500490565b6000816000190483118215151615612738576127386127ea565b500290565b60008282101561274f5761274f6127ea565b500390565b60005b8381101561276f578181015183820152602001612757565b838111156113a15750506000910152565b600181811c9082168061279457607f821691505b602082108114156127b557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127cf576127cf6127ea565b5060010190565b6000826127e5576127e5612800565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461286d57600080fd5b50565b6001600160e01b03198116811461286d57600080fdfea2646970667358221220252aa76bdf23c3485265b80e6a4bf0bb894d9966dfea5b4acebc6aee22f061f264736f6c63430008070033

Deployed Bytecode Sourcemap

49874:5201:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51734:105;;;;;;;;;;-1:-1:-1;51734:105:0;;;;;:::i;:::-;;:::i;:::-;;43674:233;;;;;;;;;;-1:-1:-1;43674:233:0;;;;;:::i;:::-;;:::i;:::-;;;6580:14:1;;6573:22;6555:41;;6543:2;6528:18;43674:233:0;;;;;;;;50149:32;;;;;;;;;;;;;;;;;;;18441:25:1;;;18429:2;18414:18;50149:32:0;18295:177:1;31480:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32932:221::-;;;;;;;;;;-1:-1:-1;32932:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5878:32:1;;;5860:51;;5848:2;5833:18;32932:221:0;5714:203:1;32469:397:0;;;;;;;;;;-1:-1:-1;32469:397:0;;;;;:::i;:::-;;:::i;44323:113::-;;;;;;;;;;-1:-1:-1;44411:10:0;:17;44323:113;;33938:305;;;;;;;;;;-1:-1:-1;33938:305:0;;;;;:::i;:::-;;:::i;43991:256::-;;;;;;;;;;-1:-1:-1;43991:256:0;;;;;:::i;:::-;;:::i;50188:32::-;;;;;;;;;;;;;;;;50927:89;;;;;;;;;;;;;:::i;34314:151::-;;;;;;;;;;-1:-1:-1;34314:151:0;;;;;:::i;:::-;;:::i;50618:33::-;;;;;;;;;;;;;;;;44513:233;;;;;;;;;;-1:-1:-1;44513:233:0;;;;;:::i;:::-;;:::i;51024:164::-;;;;;;;;;;-1:-1:-1;51024:164:0;;;;;:::i;:::-;;:::i;54162:109::-;;;;;;;;;;-1:-1:-1;54162:109:0;;;;;:::i;:::-;;:::i;50032:47::-;;;;;;;;;;;;50075:4;50032:47;;31174:239;;;;;;;;;;-1:-1:-1;31174:239:0;;;;;:::i;:::-;;:::i;50086:45::-;;;;;;;;;;;;;;;;30904:208;;;;;;;;;;-1:-1:-1;30904:208:0;;;;;:::i;:::-;;:::i;28740:148::-;;;;;;;;;;;;;:::i;53768:182::-;;;;;;;;;;;;;:::i;51845:350::-;;;;;;;;;;-1:-1:-1;51845:350:0;;;;;:::i;:::-;;:::i;28089:87::-;;;;;;;;;;-1:-1:-1;28162:6:0;;-1:-1:-1;;;;;28162:6:0;28089:87;;31649:104;;;;;;;;;;;;;:::i;52203:655::-;;;;;;:::i;:::-;;:::i;33225:295::-;;;;;;;;;;-1:-1:-1;33225:295:0;;;;;:::i;:::-;;:::i;51517:209::-;;;;;;;;;;-1:-1:-1;51517:209:0;;;;;:::i;:::-;;:::i;52866:185::-;;;;;;;;;;-1:-1:-1;52866:185:0;;;;;:::i;:::-;;:::i;34536:285::-;;;;;;;;;;-1:-1:-1;34536:285:0;;;;;:::i;:::-;;:::i;54279:793::-;;;;;;;;;;-1:-1:-1;54279:793:0;;;;;:::i;:::-;;:::i;50267:28::-;;;;;;;;;;;;;;;;51196:313;;;;;;;;;;-1:-1:-1;51196:313:0;;;;;:::i;:::-;;:::i;53063:697::-;;;;;;;;;;;;;:::i;50302:33::-;;;;;;;;;;;;;;;;33591:280;;;;;;;;;;-1:-1:-1;33591:280:0;;;;;:::i;:::-;;:::i;50227:31::-;;;;;;;;;;-1:-1:-1;50227:31:0;;;;;;;;29043:244;;;;;;;;;;-1:-1:-1;29043:244:0;;;;;:::i;:::-;;:::i;51734:105::-;50514:10;50503:7;28162:6;;-1:-1:-1;;;;;28162:6:0;;28089:87;50503:7;-1:-1:-1;;;;;50503:21:0;;:50;;;-1:-1:-1;50528:11:0;;-1:-1:-1;;;;;50528:11:0;50543:10;50528:25;50503:50;50495:95;;;;-1:-1:-1;;;50495:95:0;;;;;;;:::i;:::-;;;;;;;;;51808:9:::1;:23:::0;51734:105::o;43674:233::-;43776:4;-1:-1:-1;;;;;;43800:50:0;;-1:-1:-1;;;43800:50:0;;:99;;;43863:36;43887:11;43863:23;:36::i;:::-;43793:106;43674:233;-1:-1:-1;;43674:233:0:o;31480:100::-;31534:13;31567:5;31560:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31480:100;:::o;32932:221::-;33008:7;36377:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36377:16:0;33028:73;;;;-1:-1:-1;;;33028:73:0;;14899:2:1;33028:73:0;;;14881:21:1;14938:2;14918:18;;;14911:30;14977:34;14957:18;;;14950:62;-1:-1:-1;;;15028:18:1;;;15021:42;15080:19;;33028:73:0;14697:408:1;33028:73:0;-1:-1:-1;33121:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33121:24:0;;32932:221::o;32469:397::-;32550:13;32566:23;32581:7;32566:14;:23::i;:::-;32550:39;;32614:5;-1:-1:-1;;;;;32608:11:0;:2;-1:-1:-1;;;;;32608:11:0;;;32600:57;;;;-1:-1:-1;;;32600:57:0;;16499:2:1;32600:57:0;;;16481:21:1;16538:2;16518:18;;;16511:30;16577:34;16557:18;;;16550:62;-1:-1:-1;;;16628:18:1;;;16621:31;16669:19;;32600:57:0;16297:397:1;32600:57:0;26786:10;-1:-1:-1;;;;;32678:21:0;;;;:62;;-1:-1:-1;32703:37:0;32720:5;26786:10;33591:280;:::i;32703:37::-;32670:154;;;;-1:-1:-1;;;32670:154:0;;11814:2:1;32670:154:0;;;11796:21:1;11853:2;11833:18;;;11826:30;11892:34;11872:18;;;11865:62;11963:26;11943:18;;;11936:54;12007:19;;32670:154:0;11612:420:1;32670:154:0;32837:21;32846:2;32850:7;32837:8;:21::i;:::-;32539:327;32469:397;;:::o;33938:305::-;34099:41;26786:10;34132:7;34099:18;:41::i;:::-;34091:103;;;;-1:-1:-1;;;34091:103:0;;;;;;;:::i;:::-;34207:28;34217:4;34223:2;34227:7;34207:9;:28::i;43991:256::-;44088:7;44124:23;44141:5;44124:16;:23::i;:::-;44116:5;:31;44108:87;;;;-1:-1:-1;;;44108:87:0;;7857:2:1;44108:87:0;;;7839:21:1;7896:2;7876:18;;;7869:30;7935:34;7915:18;;;7908:62;-1:-1:-1;;;7986:18:1;;;7979:41;8037:19;;44108:87:0;7655:407:1;44108:87:0;-1:-1:-1;;;;;;44213:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43991:256::o;50927:89::-;50514:10;50503:7;28162:6;;-1:-1:-1;;;;;28162:6:0;;28089:87;50503:7;-1:-1:-1;;;;;50503:21:0;;:50;;;-1:-1:-1;50528:11:0;;-1:-1:-1;;;;;50528:11:0;50543:10;50528:25;50503:50;50495:95;;;;-1:-1:-1;;;50495:95:0;;;;;;;:::i;:::-;50996:12:::1;::::0;;-1:-1:-1;;50980:28:0;::::1;50996:12;::::0;;::::1;50995:13;50980:28;::::0;;50927:89::o;34314:151::-;34418:39;34435:4;34441:2;34445:7;34418:39;;;;;;;;;;;;:16;:39::i;44513:233::-;44588:7;44624:30;44411:10;:17;;44323:113;44624:30;44616:5;:38;44608:95;;;;-1:-1:-1;;;44608:95:0;;17319:2:1;44608:95:0;;;17301:21:1;17358:2;17338:18;;;17331:30;17397:34;17377:18;;;17370:62;-1:-1:-1;;;17448:18:1;;;17441:42;17500:19;;44608:95:0;17117:408:1;44608:95:0;44721:10;44732:5;44721:17;;;;;;;;:::i;:::-;;;;;;;;;44714:24;;44513:233;;;:::o;51024:164::-;50514:10;50503:7;28162:6;;-1:-1:-1;;;;;28162:6:0;;28089:87;50503:7;-1:-1:-1;;;;;50503:21:0;;:50;;;-1:-1:-1;50528:11:0;;-1:-1:-1;;;;;50528:11:0;50543:10;50528:25;50503:50;50495:95;;;;-1:-1:-1;;;50495:95:0;;;;;;;:::i;:::-;51144:36:::1;::::0;51112:21:::1;::::0;-1:-1:-1;;;;;51144:27:0;::::1;::::0;:36;::::1;;;::::0;51112:21;;51097:12:::1;51144:36:::0;51097:12;51144:36;51112:21;51144:27;:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;54162:109:::0;50514:10;50503:7;28162:6;;-1:-1:-1;;;;;28162:6:0;;28089:87;50503:7;-1:-1:-1;;;;;50503:21:0;;:50;;;-1:-1:-1;50528:11:0;;-1:-1:-1;;;;;50528:11:0;50543:10;50528:25;50503:50;50495:95;;;;-1:-1:-1;;;50495:95:0;;;;;;;:::i;:::-;54236:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54162:109:::0;:::o;31174:239::-;31246:7;31282:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31282:16:0;31317:19;31309:73;;;;-1:-1:-1;;;31309:73:0;;12650:2:1;31309:73:0;;;12632:21:1;12689:2;12669:18;;;12662:30;12728:34;12708:18;;;12701:62;-1:-1:-1;;;12779:18:1;;;12772:39;12828:19;;31309:73:0;12448:405:1;30904:208:0;30976:7;-1:-1:-1;;;;;31004:19:0;;30996:74;;;;-1:-1:-1;;;30996:74:0;;12239:2:1;30996:74:0;;;12221:21:1;12278:2;12258:18;;;12251:30;12317:34;12297:18;;;12290:62;-1:-1:-1;;;12368:18:1;;;12361:40;12418:19;;30996:74:0;12037:406:1;30996:74:0;-1:-1:-1;;;;;;31088:16:0;;;;;:9;:16;;;;;;;30904:208::o;28740:148::-;28162:6;;-1:-1:-1;;;;;28162:6:0;26786:10;28309:23;28301:68;;;;-1:-1:-1;;;28301:68:0;;;;;;;:::i;:::-;28831:6:::1;::::0;28810:40:::1;::::0;28847:1:::1;::::0;-1:-1:-1;;;;;28831:6:0::1;::::0;28810:40:::1;::::0;28847:1;;28810:40:::1;28861:6;:19:::0;;-1:-1:-1;;;;;;28861:19:0::1;::::0;;28740:148::o;53768:182::-;50514:10;50503:7;28162:6;;-1:-1:-1;;;;;28162:6:0;;28089:87;50503:7;-1:-1:-1;;;;;50503:21:0;;:50;;;-1:-1:-1;50528:11:0;;-1:-1:-1;;;;;50528:11:0;50543:10;50528:25;50503:50;50495:95;;;;-1:-1:-1;;;50495:95:0;;;;;;;:::i;:::-;53846:13:::1;::::0;:18;53838:60:::1;;;::::0;-1:-1:-1;;;53838:60:0;;11456:2:1;53838:60:0::1;::::0;::::1;11438:21:1::0;11495:2;11475:18;;;11468:30;11534:31;11514:18;;;11507:59;11583:18;;53838:60:0::1;11254:353:1::0;53838:60:0::1;53930:12;53909:18;:33:::0;53768:182::o;51845:350::-;50514:10;50503:7;28162:6;;-1:-1:-1;;;;;28162:6:0;;28089:87;50503:7;-1:-1:-1;;;;;50503:21:0;;:50;;;-1:-1:-1;50528:11:0;;-1:-1:-1;;;;;50528:11:0;50543:10;50528:25;50503:50;50495:95;;;;-1:-1:-1;;;50495:95:0;;;;;;;:::i;:::-;51955:3:::1;51945:6;51928:14;;:23;;;;:::i;:::-;:30;;51920:64;;;::::0;-1:-1:-1;;;51920:64:0;;14549:2:1;51920:64:0::1;::::0;::::1;14531:21:1::0;14588:2;14568:18;;;14561:30;-1:-1:-1;;;14607:18:1;;;14600:51;14668:18;;51920:64:0::1;14347:345:1::0;51920:64:0::1;52034:9;52056:81;52067:6;52065:1;:8;52056:81;;;52095:30;52105:4;52111:13;44411:10:::0;:17;;44323:113;52111:13:::1;52095:9;:30::i;:::-;52075:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52056:81;;;52181:6;52164:14;;:23;;;;:::i;:::-;52147:14;:40:::0;-1:-1:-1;;;51845:350:0:o;31649:104::-;31705:13;31738:7;31731:14;;;;;:::i;52203:655::-;52276:12;;;;52268:57;;;;-1:-1:-1;;;52268:57:0;;18136:2:1;52268:57:0;;;18118:21:1;;;18155:18;;;18148:30;18214:34;18194:18;;;18187:62;18266:18;;52268:57:0;17934:356:1;52268:57:0;52365:1;52344:18;:22;52336:86;;;;-1:-1:-1;;;52336:86:0;;7437:2:1;52336:86:0;;;7419:21:1;7476:2;7456:18;;;7449:30;7515:34;7495:18;;;7488:62;-1:-1:-1;;;7566:18:1;;;7559:49;7625:19;;52336:86:0;7235:415:1;52336:86:0;52482:10;;52441:37;52459:18;52441:13;44411:10;:17;;44323:113;52441:13;:17;;:37::i;:::-;:51;;52433:96;;;;-1:-1:-1;;;52433:96:0;;13827:2:1;52433:96:0;;;13809:21:1;;;13846:18;;;13839:30;13905:34;13885:18;;;13878:62;13957:18;;52433:96:0;13625:356:1;52433:96:0;52570:16;;52548:18;:38;;52540:90;;;;-1:-1:-1;;;52540:90:0;;13418:2:1;52540:90:0;;;13400:21:1;13457:2;13437:18;;;13430:30;13496:34;13476:18;;;13469:62;-1:-1:-1;;;13547:18:1;;;13540:38;13595:19;;52540:90:0;13216:404:1;52540:90:0;52649:9;;52686;;52649:33;;52663:18;52649:13;:33::i;:::-;:46;52641:88;;;;-1:-1:-1;;;52641:88:0;;13060:2:1;52641:88:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138:31;13118:18;;;13111:59;13187:18;;52641:88:0;12858:353:1;52641:88:0;52747:6;52742:109;52763:18;52759:1;:22;52742:109;;;52803:36;52813:10;52825:13;44411:10;:17;;44323:113;52803:36;52783:3;;;;:::i;:::-;;;;52742:109;;33225:295;-1:-1:-1;;;;;33328:24:0;;26786:10;33328:24;;33320:62;;;;-1:-1:-1;;;33320:62:0;;10267:2:1;33320:62:0;;;10249:21:1;10306:2;10286:18;;;10279:30;10345:27;10325:18;;;10318:55;10390:18;;33320:62:0;10065:349:1;33320:62:0;26786:10;33395:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33395:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33395:53:0;;;;;;;;;;33464:48;;6555:41:1;;;33395:42:0;;26786:10;33464:48;;6528:18:1;33464:48:0;;;;;;;33225:295;;:::o;51517:209::-;50514:10;50503:7;28162:6;;-1:-1:-1;;;;;28162:6:0;;28089:87;50503:7;-1:-1:-1;;;;;50503:21:0;;:50;;;-1:-1:-1;50528:11:0;;-1:-1:-1;;;;;50528:11:0;50543:10;50528:25;50503:50;50495:95;;;;-1:-1:-1;;;50495:95:0;;;;;;;:::i;:::-;50075:4:::1;51599:9;:28;51591:94;;;::::0;-1:-1:-1;;;51591:94:0;;11034:2:1;51591:94:0::1;::::0;::::1;11016:21:1::0;11073:2;11053:18;;;11046:30;11112:34;11092:18;;;11085:62;-1:-1:-1;;;11163:18:1;;;11156:51;11224:19;;51591:94:0::1;10832:417:1::0;51591:94:0::1;51696:10;:22:::0;51517:209::o;52866:185::-;50514:10;50503:7;28162:6;;-1:-1:-1;;;;;28162:6:0;;28089:87;50503:7;-1:-1:-1;;;;;50503:21:0;;:50;;;-1:-1:-1;50528:11:0;;-1:-1:-1;;;;;50528:11:0;50543:10;50528:25;50503:50;50495:95;;;;-1:-1:-1;;;50495:95:0;;;;;;;:::i;:::-;52950:10:::1;;52940:7;:20;;;52932:74;;;::::0;-1:-1:-1;;;52932:74:0;;9452:2:1;52932:74:0::1;::::0;::::1;9434:21:1::0;9491:2;9471:18;;;9464:30;9530:34;9510:18;;;9503:62;-1:-1:-1;;;9581:18:1;;;9574:39;9630:19;;52932:74:0::1;9250:405:1::0;52932:74:0::1;53017:26;;:16;:26:::0;52866:185::o;34536:285::-;34668:41;26786:10;34701:7;34668:18;:41::i;:::-;34660:103;;;;-1:-1:-1;;;34660:103:0;;;;;;;:::i;:::-;34774:39;34788:4;34794:2;34798:7;34807:5;34774:13;:39::i;:::-;34536:285;;;;:::o;54279:793::-;36353:4;36377:16;;;:7;:16;;;;;;54352:13;;-1:-1:-1;;;;;36377:16:0;54378:76;;;;-1:-1:-1;;;54378:76:0;;16083:2:1;54378:76:0;;;16065:21:1;16122:2;16102:18;;;16095:30;16161:34;16141:18;;;16134:62;-1:-1:-1;;;16212:18:1;;;16205:45;16267:19;;54378:76:0;15881:411:1;54378:76:0;54467:23;54493:19;;;:10;:19;;;;;54467:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54523:18;54544:10;:8;:10::i;:::-;54523:31;;54636:4;54630:18;54652:1;54630:23;54626:72;;;-1:-1:-1;54677:9:0;54279:793;-1:-1:-1;;54279:793:0:o;54626:72::-;54802:23;;:27;54798:108;;54877:4;54883:9;54860:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54846:48;;;;54279:793;;;:::o;54798:108::-;55038:4;55044:18;:7;:16;:18::i;:::-;55021:42;;;;;;;;;:::i;51196:313::-;50514:10;50503:7;28162:6;;-1:-1:-1;;;;;28162:6:0;;28089:87;50503:7;-1:-1:-1;;;;;50503:21:0;;:50;;;-1:-1:-1;50528:11:0;;-1:-1:-1;;;;;50528:11:0;50543:10;50528:25;50503:50;50495:95;;;;-1:-1:-1;;;50495:95:0;;;;;;;:::i;:::-;51260:11:::1;51274:13;44411:10:::0;:17;;44323:113;51274:13:::1;51260:27;;51298:6;51315:86;51331:3;51327:1;:7;51315:86;;;51356:33;51366:10;51378;51387:1:::0;51378:6;:10:::1;:::i;51356:33::-;51336:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51315:86;;;51417:18;::::0;51413:89:::1;;51478:12;51457:18;:33:::0;51249:260:::1;;51196:313:::0;:::o;53063:697::-;50514:10;50503:7;28162:6;;-1:-1:-1;;;;;28162:6:0;;28089:87;50503:7;-1:-1:-1;;;;;50503:21:0;;:50;;;-1:-1:-1;50528:11:0;;-1:-1:-1;;;;;50528:11:0;50543:10;50528:25;50503:50;50495:95;;;;-1:-1:-1;;;50495:95:0;;;;;;;:::i;:::-;53128:13:::1;::::0;:18;53120:66:::1;;;::::0;-1:-1:-1;;;53120:66:0;;17732:2:1;53120:66:0::1;::::0;::::1;17714:21:1::0;17771:2;17751:18;;;17744:30;17810:34;17790:18;;;17783:62;-1:-1:-1;;;17861:18:1;;;17854:33;17904:19;;53120:66:0::1;17530:399:1::0;53120:66:0::1;53205:18;::::0;53197:71:::1;;;::::0;-1:-1:-1;;;53197:71:0;;7033:2:1;53197:71:0::1;::::0;::::1;7015:21:1::0;7072:2;7052:18;;;7045:30;7111:34;7091:18;;;7084:62;-1:-1:-1;;;7162:18:1;;;7155:33;7205:19;;53197:71:0::1;6831:399:1::0;53197:71:0::1;53335:10;::::0;53312:18:::1;::::0;53297:48:::1;::::0;53335:10;53302:29:::1;53297:48;:::i;:::-;53281:13;:64:::0;53497:18:::1;::::0;53519:3:::1;::::0;53480:36:::1;::::0;:12:::1;::::0;:16:::1;:36::i;:::-;:42;53477:136;;;53591:10;::::0;53570:16:::1;53585:1;53570:12;:16;:::i;:::-;53555:46;::::0;;53560:27:::1;53555:46;:::i;:::-;53539:13;:62:::0;53477:136:::1;53670:13;::::0;53666:87:::1;;53721:13;::::0;:20:::1;::::0;53739:1:::1;53721:17;:20::i;:::-;53705:13;:36:::0;53666:87:::1;53063:697::o:0;33591:280::-;33688:4;-1:-1:-1;;;;;33708:63:0;;33728:42;33708:63;33705:106;;;-1:-1:-1;33795:4:0;33788:11;;33705:106;-1:-1:-1;;;;;;33828:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33591:280::o;29043:244::-;28162:6;;-1:-1:-1;;;;;28162:6:0;26786:10;28309:23;28301:68;;;;-1:-1:-1;;;28301:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29132:22:0;::::1;29124:73;;;::::0;-1:-1:-1;;;29124:73:0;;8688:2:1;29124:73:0::1;::::0;::::1;8670:21:1::0;8727:2;8707:18;;;8700:30;8766:34;8746:18;;;8739:62;-1:-1:-1;;;8817:18:1;;;8810:36;8863:19;;29124:73:0::1;8486:402:1::0;29124:73:0::1;29234:6;::::0;29213:38:::1;::::0;-1:-1:-1;;;;;29213:38:0;;::::1;::::0;29234:6:::1;::::0;29213:38:::1;::::0;29234:6:::1;::::0;29213:38:::1;29262:6;:17:::0;;-1:-1:-1;;;;;;29262:17:0::1;-1:-1:-1::0;;;;;29262:17:0;;;::::1;::::0;;;::::1;::::0;;29043:244::o;30556:284::-;30658:4;-1:-1:-1;;;;;;30682:40:0;;-1:-1:-1;;;30682:40:0;;:101;;-1:-1:-1;;;;;;;30735:48:0;;-1:-1:-1;;;30735:48:0;30682:101;:150;;;-1:-1:-1;;;;;;;;;;19894:40:0;;;30796:36;19785:157;40527:174;40602:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40602:29:0;-1:-1:-1;;;;;40602:29:0;;;;;;;;:24;;40656:23;40602:24;40656:14;:23::i;:::-;-1:-1:-1;;;;;40647:46:0;;;;;;;;;;;40527:174;;:::o;36582:348::-;36675:4;36377:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36377:16:0;36692:73;;;;-1:-1:-1;;;36692:73:0;;10621:2:1;36692:73:0;;;10603:21:1;10660:2;10640:18;;;10633:30;10699:34;10679:18;;;10672:62;-1:-1:-1;;;10750:18:1;;;10743:42;10802:19;;36692:73:0;10419:408:1;36692:73:0;36776:13;36792:23;36807:7;36792:14;:23::i;:::-;36776:39;;36845:5;-1:-1:-1;;;;;36834:16:0;:7;-1:-1:-1;;;;;36834:16:0;;:51;;;;36878:7;-1:-1:-1;;;;;36854:31:0;:20;36866:7;36854:11;:20::i;:::-;-1:-1:-1;;;;;36854:31:0;;36834:51;:87;;;;36889:32;36906:5;36913:7;36889:16;:32::i;:::-;36826:96;36582:348;-1:-1:-1;;;;36582:348:0:o;39859:550::-;39984:4;-1:-1:-1;;;;;39957:31:0;:23;39972:7;39957:14;:23::i;:::-;-1:-1:-1;;;;;39957:31:0;;39949:85;;;;-1:-1:-1;;;39949:85:0;;15673:2:1;39949:85:0;;;15655:21:1;15712:2;15692:18;;;15685:30;15751:34;15731:18;;;15724:62;-1:-1:-1;;;15802:18:1;;;15795:39;15851:19;;39949:85:0;15471:405:1;39949:85:0;-1:-1:-1;;;;;40053:16:0;;40045:65;;;;-1:-1:-1;;;40045:65:0;;9862:2:1;40045:65:0;;;9844:21:1;9901:2;9881:18;;;9874:30;9940:34;9920:18;;;9913:62;-1:-1:-1;;;9991:18:1;;;9984:34;10035:19;;40045:65:0;9660:400:1;40045:65:0;40123:45;40144:4;40150:2;40154:7;40163:4;40123:20;:45::i;:::-;40233:29;40250:1;40254:7;40233:8;:29::i;:::-;-1:-1:-1;;;;;40275:15:0;;;;;;:9;:15;;;;;:20;;40294:1;;40275:15;:20;;40294:1;;40275:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40306:13:0;;;;;;:9;:13;;;;;:18;;40323:1;;40306:13;:18;;40323:1;;40306:18;:::i;:::-;;;;-1:-1:-1;;40335:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40335:21:0;-1:-1:-1;;;;;40335:21:0;;;;;;;;;40374:27;;40335:16;;40374:27;;;;;;;39859:550;;;:::o;37272:110::-;37348:26;37358:2;37362:7;37348:26;;;;;;;;;;;;:9;:26::i;3216:98::-;3274:7;3301:5;3305:1;3301;:5;:::i;:::-;3294:12;3216:98;-1:-1:-1;;;3216:98:0:o;3954:::-;4012:7;4039:5;4043:1;4039;:5;:::i;35703:272::-;35817:28;35827:4;35833:2;35837:7;35817:9;:28::i;:::-;35864:48;35887:4;35893:2;35897:7;35906:5;35864:22;:48::i;:::-;35856:111;;;;-1:-1:-1;;;35856:111:0;;;;;;;:::i;53958:117::-;54018:13;54051:16;54044:23;;;;;:::i;7709:723::-;7765:13;7986:10;7982:53;;-1:-1:-1;;8013:10:0;;;;;;;;;;;;-1:-1:-1;;;8013:10:0;;;;;7709:723::o;7982:53::-;8060:5;8045:12;8101:78;8108:9;;8101:78;;8134:8;;;;:::i;:::-;;-1:-1:-1;8157:10:0;;-1:-1:-1;8165:2:0;8157:10;;:::i;:::-;;;8101:78;;;8189:19;8221:6;8211:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8211:17:0;;8189:39;;8239:154;8246:10;;8239:154;;8273:11;8283:1;8273:11;;:::i;:::-;;-1:-1:-1;8342:10:0;8350:2;8342:5;:10;:::i;:::-;8329:24;;:2;:24;:::i;:::-;8316:39;;8299:6;8306;8299:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8299:56:0;;;;;;;;-1:-1:-1;8370:11:0;8379:2;8370:11;;:::i;:::-;;;8239:154;;3597:98;3655:7;3682:5;3686:1;3682;:5;:::i;45359:604::-;-1:-1:-1;;;;;45556:18:0;;45552:187;;45591:40;45623:7;46791:10;:17;;46764:24;;;;:15;:24;;;;;:44;;;46819:24;;;;;;;;;;;;46687:164;45591:40;45552:187;;;45661:2;-1:-1:-1;;;;;45653:10:0;:4;-1:-1:-1;;;;;45653:10:0;;45649:90;;45680:47;45713:4;45719:7;45680:32;:47::i;:::-;-1:-1:-1;;;;;45753:16:0;;;:28;;;;;45773:8;45753:28;45749:207;;;45798:45;45835:7;45798:36;:45::i;:::-;45749:207;;;45871:4;-1:-1:-1;;;;;45865:10:0;:2;-1:-1:-1;;;;;45865:10:0;;;:22;;;;;45879:8;45865:22;45861:95;;;45904:40;45932:2;45936:7;45904:27;:40::i;37609:250::-;37705:18;37711:2;37715:7;37705:5;:18::i;:::-;37742:54;37773:1;37777:2;37781:7;37790:5;37742:22;:54::i;:::-;37734:117;;;;-1:-1:-1;;;37734:117:0;;;;;;;:::i;41266:839::-;41383:4;-1:-1:-1;;;;;41409:13:0;;10541:20;10580:8;41405:693;;41445:72;;-1:-1:-1;;;41445:72:0;;-1:-1:-1;;;;;41445:36:0;;;;;:72;;26786:10;;41496:4;;41502:7;;41511:5;;41445:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41445:72:0;;;;;;;;-1:-1:-1;;41445:72:0;;;;;;;;;;;;:::i;:::-;;;41441:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41691:13:0;;41687:341;;41734:60;;-1:-1:-1;;;41734:60:0;;;;;;;:::i;41687:341::-;41978:6;41972:13;41963:6;41959:2;41955:15;41948:38;41441:602;-1:-1:-1;;;;;;41568:55:0;-1:-1:-1;;;41568:55:0;;-1:-1:-1;41561:62:0;;41405:693;-1:-1:-1;42082:4:0;41266:839;;;;;;:::o;47478:988::-;47744:22;47794:1;47769:22;47786:4;47769:16;:22::i;:::-;:26;;;;:::i;:::-;47806:18;47827:26;;;:17;:26;;;;;;47744:51;;-1:-1:-1;47960:28:0;;;47956:328;;-1:-1:-1;;;;;48027:18:0;;48005:19;48027:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48078:30;;;;;;:44;;;48195:30;;:17;:30;;;;;:43;;;47956:328;-1:-1:-1;48380:26:0;;;;:17;:26;;;;;;;;48373:33;;;-1:-1:-1;;;;;48424:18:0;;;;;:12;:18;;;;;:34;;;;;;;48417:41;47478:988::o;48761:1079::-;49039:10;:17;49014:22;;49039:21;;49059:1;;49039:21;:::i;:::-;49071:18;49092:24;;;:15;:24;;;;;;49465:10;:26;;49014:46;;-1:-1:-1;49092:24:0;;49014:46;;49465:26;;;;;;:::i;:::-;;;;;;;;;49443:48;;49529:11;49504:10;49515;49504:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49609:28;;;:15;:28;;;;;;;:41;;;49781:24;;;;;49774:31;49816:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48832:1008;;;48761:1079;:::o;46264:221::-;46349:14;46366:20;46383:2;46366:16;:20::i;:::-;-1:-1:-1;;;;;46397:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46442:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46264:221:0:o;38195:388::-;-1:-1:-1;;;;;38275:16:0;;38267:61;;;;-1:-1:-1;;;38267:61:0;;14188:2:1;38267:61:0;;;14170:21:1;;;14207:18;;;14200:30;14266:34;14246:18;;;14239:62;14318:18;;38267:61:0;13986:356:1;38267:61:0;36353:4;36377:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36377:16:0;:30;38339:58;;;;-1:-1:-1;;;38339:58:0;;9095:2:1;38339:58:0;;;9077:21:1;9134:2;9114:18;;;9107:30;9173;9153:18;;;9146:58;9221:18;;38339:58:0;8893:352:1;38339:58:0;38410:51;38439:1;38443:2;38447:7;38456:4;38410:20;:51::i;:::-;-1:-1:-1;;;;;38474:13:0;;;;;;:9;:13;;;;;:18;;38491:1;;38474:13;:18;;38491:1;;38474:18;:::i;:::-;;;;-1:-1:-1;;38503:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38503:21:0;-1:-1:-1;;;;;38503:21:0;;;;;;;;38542:33;;38503:16;;;38542:33;;38503:16;;38542:33;38195:388;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:1;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:1;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:1;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:1;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:1;2474:18;;2461:32;;-1:-1:-1;2544:2:1;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:1;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:416::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:1;3107:18;;3094:32;3164:15;;3157:23;3145:36;;3135:64;;3195:1;3192;3185:12;3236:315;3304:6;3312;3365:2;3353:9;3344:7;3340:23;3336:32;3333:52;;;3381:1;3378;3371:12;3333:52;3420:9;3407:23;3439:31;3464:5;3439:31;:::i;:::-;3489:5;3541:2;3526:18;;;;3513:32;;-1:-1:-1;;;3236:315:1:o;3556:245::-;3614:6;3667:2;3655:9;3646:7;3642:23;3638:32;3635:52;;;3683:1;3680;3673:12;3635:52;3722:9;3709:23;3741:30;3765:5;3741:30;:::i;3806:249::-;3875:6;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;3976:9;3970:16;3995:30;4019:5;3995:30;:::i;4060:450::-;4129:6;4182:2;4170:9;4161:7;4157:23;4153:32;4150:52;;;4198:1;4195;4188:12;4150:52;4238:9;4225:23;4271:18;4263:6;4260:30;4257:50;;;4303:1;4300;4293:12;4257:50;4326:22;;4379:4;4371:13;;4367:27;-1:-1:-1;4357:55:1;;4408:1;4405;4398:12;4357:55;4431:73;4496:7;4491:2;4478:16;4473:2;4469;4465:11;4431:73;:::i;4515:272::-;4573:6;4626:2;4614:9;4605:7;4601:23;4597:32;4594:52;;;4642:1;4639;4632:12;4594:52;4681:9;4668:23;4731:6;4724:5;4720:18;4713:5;4710:29;4700:57;;4753:1;4750;4743:12;4792:180;4851:6;4904:2;4892:9;4883:7;4879:23;4875:32;4872:52;;;4920:1;4917;4910:12;4872:52;-1:-1:-1;4943:23:1;;4792:180;-1:-1:-1;4792:180:1:o;4977:257::-;5018:3;5056:5;5050:12;5083:6;5078:3;5071:19;5099:63;5155:6;5148:4;5143:3;5139:14;5132:4;5125:5;5121:16;5099:63;:::i;:::-;5216:2;5195:15;-1:-1:-1;;5191:29:1;5182:39;;;;5223:4;5178:50;;4977:257;-1:-1:-1;;4977:257:1:o;5239:470::-;5418:3;5456:6;5450:13;5472:53;5518:6;5513:3;5506:4;5498:6;5494:17;5472:53;:::i;:::-;5588:13;;5547:16;;;;5610:57;5588:13;5547:16;5644:4;5632:17;;5610:57;:::i;:::-;5683:20;;5239:470;-1:-1:-1;;;;5239:470:1:o;5922:488::-;-1:-1:-1;;;;;6191:15:1;;;6173:34;;6243:15;;6238:2;6223:18;;6216:43;6290:2;6275:18;;6268:34;;;6338:3;6333:2;6318:18;;6311:31;;;6116:4;;6359:45;;6384:19;;6376:6;6359:45;:::i;:::-;6351:53;5922:488;-1:-1:-1;;;;;;5922:488:1:o;6607:219::-;6756:2;6745:9;6738:21;6719:4;6776:44;6816:2;6805:9;6801:18;6793:6;6776:44;:::i;8067:414::-;8269:2;8251:21;;;8308:2;8288:18;;;8281:30;8347:34;8342:2;8327:18;;8320:62;-1:-1:-1;;;8413:2:1;8398:18;;8391:48;8471:3;8456:19;;8067:414::o;15110:356::-;15312:2;15294:21;;;15331:18;;;15324:30;15390:34;15385:2;15370:18;;15363:62;15457:2;15442:18;;15110:356::o;16699:413::-;16901:2;16883:21;;;16940:2;16920:18;;;16913:30;16979:34;16974:2;16959:18;;16952:62;-1:-1:-1;;;17045:2:1;17030:18;;17023:47;17102:3;17087:19;;16699:413::o;18477:128::-;18517:3;18548:1;18544:6;18541:1;18538:13;18535:39;;;18554:18;;:::i;:::-;-1:-1:-1;18590:9:1;;18477:128::o;18610:120::-;18650:1;18676;18666:35;;18681:18;;:::i;:::-;-1:-1:-1;18715:9:1;;18610:120::o;18735:168::-;18775:7;18841:1;18837;18833:6;18829:14;18826:1;18823:21;18818:1;18811:9;18804:17;18800:45;18797:71;;;18848:18;;:::i;:::-;-1:-1:-1;18888:9:1;;18735:168::o;18908:125::-;18948:4;18976:1;18973;18970:8;18967:34;;;18981:18;;:::i;:::-;-1:-1:-1;19018:9:1;;18908:125::o;19038:258::-;19110:1;19120:113;19134:6;19131:1;19128:13;19120:113;;;19210:11;;;19204:18;19191:11;;;19184:39;19156:2;19149:10;19120:113;;;19251:6;19248:1;19245:13;19242:48;;;-1:-1:-1;;19286:1:1;19268:16;;19261:27;19038:258::o;19301:380::-;19380:1;19376:12;;;;19423;;;19444:61;;19498:4;19490:6;19486:17;19476:27;;19444:61;19551:2;19543:6;19540:14;19520:18;19517:38;19514:161;;;19597:10;19592:3;19588:20;19585:1;19578:31;19632:4;19629:1;19622:15;19660:4;19657:1;19650:15;19514:161;;19301:380;;;:::o;19686:135::-;19725:3;-1:-1:-1;;19746:17:1;;19743:43;;;19766:18;;:::i;:::-;-1:-1:-1;19813:1:1;19802:13;;19686:135::o;19826:112::-;19858:1;19884;19874:35;;19889:18;;:::i;:::-;-1:-1:-1;19923:9:1;;19826:112::o;19943:127::-;20004:10;19999:3;19995:20;19992:1;19985:31;20035:4;20032:1;20025:15;20059:4;20056:1;20049:15;20075:127;20136:10;20131:3;20127:20;20124:1;20117:31;20167:4;20164:1;20157:15;20191:4;20188:1;20181:15;20207:127;20268:10;20263:3;20259:20;20256:1;20249:31;20299:4;20296:1;20289:15;20323:4;20320:1;20313:15;20339:127;20400:10;20395:3;20391:20;20388:1;20381:31;20431:4;20428:1;20421:15;20455:4;20452:1;20445:15;20471:127;20532:10;20527:3;20523:20;20520:1;20513:31;20563:4;20560:1;20553:15;20587:4;20584:1;20577:15;20603:131;-1:-1:-1;;;;;20678:31:1;;20668:42;;20658:70;;20724:1;20721;20714:12;20658:70;20603:131;:::o;20739:::-;-1:-1:-1;;;;;;20813:32:1;;20803:43;;20793:71;;20860:1;20857;20850:12

Swarm Source

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