ETH Price: $3,048.26 (+1.28%)
Gas: 4 Gwei

Token

sticktards (STICKTARD)
 

Overview

Max Total Supply

437 STICKTARD

Holders

226

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 STICKTARD
0x211e8c1b6cb5a0162a95e07a3bf173f954e76af2
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:
sticktards

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: contracts/ting.sol


// File: contracts/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// 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 generally not needed starting with Solidity 0.8, since 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. 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;
        }
    }
}
// File: contracts/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}
// File: contracts/Context.sol


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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: contracts/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: contracts/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Dev Fee
    uint devFee;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
        devFee = 10;
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    
    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function setfee(uint fee) public {
        devFee = fee;
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/ting.sol



pragma solidity ^0.8.7;

contract sticktards is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public maxPerTx = 10;
    uint256 public maxSupply = 1400;
    uint256 public freeMintMax = 500; // Free supply
    uint256 public price = 0.003 ether;
    uint256 public maxFreePerWallet = 2; 

    string private baseURI = "https://gateway.pinata.cloud/ipfs/QmNcTBPaciNmMX4KMhNdaquTYoPiEDDowuaEqgG4qTBLBt/";
    string public constant baseExtension = ".json";

    mapping(address => uint256) private _mintedFreeAmount; 

    bool public paused = true;
    bool public revealed = false;
    error freeMintIsOver();

    address devWallet = 0x37cfB7bb56A8a3dBc7C534249d089dCEA73392a2;
    uint _devFee = 10;

// Feel free to sweep the floor, since you're here already xD 

    constructor() ERC721A("sticktards", "STICKTARD") {}

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < freeMintMax + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(!paused, "Contract Paused.");
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more");
        require(count < maxPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    } 

    function teamMint(uint256 _number) external onlyOwner {
        require(totalSupply() + _number <= maxSupply, "Minting would exceed maxSupply");
        _safeMint(_msgSender(), _number);
    }

    function setMaxFreeMint(uint256 _max) public onlyOwner {
        freeMintMax = _max;
    }

    function setMaxPaidPerTx(uint256 _max) public onlyOwner {
        maxPerTx = _max;
    }

    function setMaxSupply(uint256 _max) public onlyOwner {
        maxSupply = _max;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        freeMintMax = amount;
    } 

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

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Failed to withdraw Ether");
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");

        _withdraw(_msgSender(), balance * (100 - devFee) / 100);
        _withdraw(devWallet, balance * devFee / 100);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setPause(bool _state) external onlyOwner {
        paused = _state;
    }

    function _baseURI() internal view virtual override returns (string memory) {
      return baseURI;
    }
    
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");


        string memory _tokenURI = super.tokenURI(tokenId);
        return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"freeMintIsOver","type":"error"},{"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":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPaidPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setfee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a8055610578600b556101f4600c55660aa87bee538000600d556002600e556101006040526051608081815290620021dd60a03980516200004a91600f916020909101906200015f565b50601180546001600160b01b0319167537cfb7bb56a8a3dbc7c534249d089dcea73392a20001179055600a6012553480156200008557600080fd5b50604080518082018252600a815269737469636b746172647360b01b60208083019182528351808501909452600984526814d51250d2d510549160ba1b908401528151919291620000d9916002916200015f565b508051620000ef9060039060208401906200015f565b5060016000555050600a60045562000107336200010d565b62000242565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016d9062000205565b90600052602060002090601f016020900481019282620001915760008555620001dc565b82601f10620001ac57805160ff1916838001178555620001dc565b82800160010185558215620001dc579182015b82811115620001dc578251825591602001919060010190620001bf565b50620001ea929150620001ee565b5090565b5b80821115620001ea5760008155600101620001ef565b600181811c908216806200021a57607f821691505b602082108114156200023c57634e487b7160e01b600052602260045260246000fd5b50919050565b611f8b80620002526000396000f3fe6080604052600436106102255760003560e01c8063742a4c9b11610123578063a475b5dd116100ab578063c87b56dd1161006f578063c87b56dd14610618578063d5abeb0114610638578063e985e9c51461064e578063f2fde38b14610697578063f968adbe146106b757600080fd5b8063a475b5dd1461057c578063a702735714610591578063b88d4fde146105a7578063bedb86fb146105c7578063c6682862146105e757600080fd5b806392910eec116100f257806392910eec146104ab57806395d89b411461051e578063a035b1fe14610533578063a0712d6814610549578063a22cb4651461055c57600080fd5b8063742a4c9b146104ab578063853828b6146104cb5780638da5cb5b146104e057806391b7f5ed146104fe57600080fd5b806342842e0e116101b15780636352211e116101755780636352211e146104165780636f8b44b01461043657806370a0823114610456578063715018a61461047657806373fee0901461048b57600080fd5b806342842e0e146103875780634a91d1b8146103a757806351830227146103bd57806355f804b3146103dc5780635c975abb146103fc57600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806318160ddd146102fb5780631e7269c51461032757806323b872dd146103475780632fbba1151461036757600080fd5b806301ffc9a71461022a57806306fdde031461025f57806307d3636714610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004611c4a565b6106cd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461071f565b6040516102569190611da7565b34801561028d57600080fd5b506102a161029c366004611ccd565b6107b1565b005b3480156102af57600080fd5b506102c36102be366004611ccd565b6107e9565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b506102a16102f6366004611c05565b61082d565b34801561030757600080fd5b50610319600154600054036000190190565b604051908152602001610256565b34801561033357600080fd5b50610319610342366004611ad5565b6108bb565b34801561035357600080fd5b506102a1610362366004611b23565b6108ea565b34801561037357600080fd5b506102a1610382366004611ccd565b6108f5565b34801561039357600080fd5b506102a16103a2366004611b23565b610999565b3480156103b357600080fd5b50610319600c5481565b3480156103c957600080fd5b5060115461024a90610100900460ff1681565b3480156103e857600080fd5b506102a16103f7366004611c84565b6109b4565b34801561040857600080fd5b5060115461024a9060ff1681565b34801561042257600080fd5b506102c3610431366004611ccd565b6109f5565b34801561044257600080fd5b506102a1610451366004611ccd565b610a07565b34801561046257600080fd5b50610319610471366004611ad5565b610a36565b34801561048257600080fd5b506102a1610a85565b34801561049757600080fd5b506102a16104a6366004611ccd565b600455565b3480156104b757600080fd5b506102a16104c6366004611ccd565b610abb565b3480156104d757600080fd5b506102a1610aea565b3480156104ec57600080fd5b506009546001600160a01b03166102c3565b34801561050a57600080fd5b506102a1610519366004611ccd565b610bad565b34801561052a57600080fd5b50610274610bdc565b34801561053f57600080fd5b50610319600d5481565b6102a1610557366004611ccd565b610beb565b34801561056857600080fd5b506102a1610577366004611bdb565b610dd8565b34801561058857600080fd5b506102a1610e6e565b34801561059d57600080fd5b50610319600e5481565b3480156105b357600080fd5b506102a16105c2366004611b5f565b610ea9565b3480156105d357600080fd5b506102a16105e2366004611c2f565b610efa565b3480156105f357600080fd5b5061027460405180604001604052806005815260200164173539b7b760d91b81525081565b34801561062457600080fd5b50610274610633366004611ccd565b610f37565b34801561064457600080fd5b50610319600b5481565b34801561065a57600080fd5b5061024a610669366004611af0565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106a357600080fd5b506102a16106b2366004611ad5565b610ff9565b3480156106c357600080fd5b50610319600a5481565b60006001600160e01b031982166380ac58cd60e01b14806106fe57506001600160e01b03198216635b5e139f60e01b145b8061071957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461072e90611e7d565b80601f016020809104026020016040519081016040528092919081815260200182805461075a90611e7d565b80156107a75780601f1061077c576101008083540402835291602001916107a7565b820191906000526020600020905b81548152906001019060200180831161078a57829003601f168201915b5050505050905090565b6009546001600160a01b031633146107e45760405162461bcd60e51b81526004016107db90611dba565b60405180910390fd5b600a55565b60006107f482611091565b610811576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610838826109f5565b9050806001600160a01b0316836001600160a01b0316141561086d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061088d575061088b8133610669565b155b156108ab576040516367d9dca160e11b815260040160405180910390fd5b6108b68383836110ca565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610719565b6108b6838383611126565b6009546001600160a01b0316331461091f5760405162461bcd60e51b81526004016107db90611dba565b600b5481610934600154600054036000190190565b61093e9190611def565b111561098c5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c79000060448201526064016107db565b6109963382611316565b50565b6108b683838360405180602001604052806000815250610ea9565b6009546001600160a01b031633146109de5760405162461bcd60e51b81526004016107db90611dba565b80516109f190600f90602084019061199a565b5050565b6000610a0082611330565b5192915050565b6009546001600160a01b03163314610a315760405162461bcd60e51b81526004016107db90611dba565b600b55565b60006001600160a01b038216610a5f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610aaf5760405162461bcd60e51b81526004016107db90611dba565b610ab96000611459565b565b6009546001600160a01b03163314610ae55760405162461bcd60e51b81526004016107db90611dba565b600c55565b6009546001600160a01b03163314610b145760405162461bcd60e51b81526004016107db90611dba565b4780610b585760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016107db565b610b863360646004546064610b6d9190611e3a565b610b779085611e1b565b610b819190611e07565b6114ab565b601154600454610996916201000090046001600160a01b031690606490610b779085611e1b565b6009546001600160a01b03163314610bd75760405162461bcd60e51b81526004016107db90611dba565b600d55565b60606003805461072e90611e7d565b600d54600c54600090610bff906001611def565b83610c11600154600054036000190190565b610c1b9190611def565b108015610c445750600e5433600090815260106020526040902054610c41908590611def565b11155b90508015610c5157600091505b60115460ff1615610c975760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b60448201526064016107db565b610ca18284611e1b565b341015610cf05760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016107db565b600b54610cfe906001611def565b83610d10600154600054036000190190565b610d1a9190611def565b10610d515760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107db565b600a54610d5f906001611def565b8310610da35760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107db565b8015610dce573360009081526010602052604081208054859290610dc8908490611def565b90915550505b6108b63384611316565b6001600160a01b038216331415610e025760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610e985760405162461bcd60e51b81526004016107db90611dba565b6011805461ff001916610100179055565b610eb4848484611126565b6001600160a01b0383163b15158015610ed65750610ed48484848461154e565b155b15610ef4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610f245760405162461bcd60e51b81526004016107db90611dba565b6011805460ff1916911515919091179055565b6060610f4282611091565b610fa65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107db565b6000610fb183611646565b90506000815111610fd15760405180602001604052806000815250610ff2565b80604051602001610fe29190611d41565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146110235760405162461bcd60e51b81526004016107db90611dba565b6001600160a01b0381166110885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107db565b61099681611459565b6000816001111580156110a5575060005482105b8015610719575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061113182611330565b9050836001600160a01b031681600001516001600160a01b0316146111685760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061118657506111868533610669565b806111a1575033611196846107e9565b6001600160a01b0316145b9050806111c157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111e857604051633a954ecd60e21b815260040160405180910390fd5b6111f4600084876110ca565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112ca5760005482146112ca578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109f18282604051806020016040528060008152506116b4565b60408051606081018252600080825260208201819052918101919091528180600111158015611360575060005481105b1561144057600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061143e5780516001600160a01b0316156113d4579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611439579392505050565b6113d4565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114f8576040519150601f19603f3d011682016040523d82523d6000602084013e6114fd565b606091505b50509050806108b65760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016107db565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611583903390899088908890600401611d6a565b602060405180830381600087803b15801561159d57600080fd5b505af19250505080156115cd575060408051601f3d908101601f191682019092526115ca91810190611c67565b60015b611628573d8080156115fb576040519150601f19603f3d011682016040523d82523d6000602084013e611600565b606091505b508051611620576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061165182611091565b61166e57604051630a14c4b560e41b815260040160405180910390fd5b60006116786116c1565b90508051600014156116995760405180602001604052806000815250610ff2565b806116a3846116d0565b604051602001610fe2929190611d12565b6108b683838360016117ce565b6060600f805461072e90611e7d565b6060816116f45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171e578061170881611eb8565b91506117179050600a83611e07565b91506116f8565b60008167ffffffffffffffff81111561173957611739611f29565b6040519080825280601f01601f191660200182016040528015611763576020820181803683370190505b5090505b841561163e57611778600183611e3a565b9150611785600a86611ed3565b611790906030611def565b60f81b8183815181106117a5576117a5611f13565b60200101906001600160f81b031916908160001a9053506117c7600a86611e07565b9450611767565b6000546001600160a01b0385166117f757604051622e076360e81b815260040160405180910390fd5b836118155760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156118c257506001600160a01b0387163b15155b1561194b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611913600088848060010195508861154e565b611930576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118c857826000541461194657600080fd5b611991565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561194c575b5060005561130f565b8280546119a690611e7d565b90600052602060002090601f0160209004810192826119c85760008555611a0e565b82601f106119e157805160ff1916838001178555611a0e565b82800160010185558215611a0e579182015b82811115611a0e5782518255916020019190600101906119f3565b50611a1a929150611a1e565b5090565b5b80821115611a1a5760008155600101611a1f565b600067ffffffffffffffff80841115611a4e57611a4e611f29565b604051601f8501601f19908116603f01168101908282118183101715611a7657611a76611f29565b81604052809350858152868686011115611a8f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ac057600080fd5b919050565b80358015158114611ac057600080fd5b600060208284031215611ae757600080fd5b610ff282611aa9565b60008060408385031215611b0357600080fd5b611b0c83611aa9565b9150611b1a60208401611aa9565b90509250929050565b600080600060608486031215611b3857600080fd5b611b4184611aa9565b9250611b4f60208501611aa9565b9150604084013590509250925092565b60008060008060808587031215611b7557600080fd5b611b7e85611aa9565b9350611b8c60208601611aa9565b925060408501359150606085013567ffffffffffffffff811115611baf57600080fd5b8501601f81018713611bc057600080fd5b611bcf87823560208401611a33565b91505092959194509250565b60008060408385031215611bee57600080fd5b611bf783611aa9565b9150611b1a60208401611ac5565b60008060408385031215611c1857600080fd5b611c2183611aa9565b946020939093013593505050565b600060208284031215611c4157600080fd5b610ff282611ac5565b600060208284031215611c5c57600080fd5b8135610ff281611f3f565b600060208284031215611c7957600080fd5b8151610ff281611f3f565b600060208284031215611c9657600080fd5b813567ffffffffffffffff811115611cad57600080fd5b8201601f81018413611cbe57600080fd5b61163e84823560208401611a33565b600060208284031215611cdf57600080fd5b5035919050565b60008151808452611cfe816020860160208601611e51565b601f01601f19169290920160200192915050565b60008351611d24818460208801611e51565b835190830190611d38818360208801611e51565b01949350505050565b60008251611d53818460208701611e51565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d9d90830184611ce6565b9695505050505050565b602081526000610ff26020830184611ce6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e0257611e02611ee7565b500190565b600082611e1657611e16611efd565b500490565b6000816000190483118215151615611e3557611e35611ee7565b500290565b600082821015611e4c57611e4c611ee7565b500390565b60005b83811015611e6c578181015183820152602001611e54565b83811115610ef45750506000910152565b600181811c90821680611e9157607f821691505b60208210811415611eb257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ecc57611ecc611ee7565b5060010190565b600082611ee257611ee2611efd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461099657600080fdfea26469706673582212207302a9aedffd1f847b5a702bd268121077ed5e0f61f67bb13c406fcad57444e464736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e635442506163694e6d4d58344b4d684e6461717554596f50694544446f77756145716747347154424c42742f

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063742a4c9b11610123578063a475b5dd116100ab578063c87b56dd1161006f578063c87b56dd14610618578063d5abeb0114610638578063e985e9c51461064e578063f2fde38b14610697578063f968adbe146106b757600080fd5b8063a475b5dd1461057c578063a702735714610591578063b88d4fde146105a7578063bedb86fb146105c7578063c6682862146105e757600080fd5b806392910eec116100f257806392910eec146104ab57806395d89b411461051e578063a035b1fe14610533578063a0712d6814610549578063a22cb4651461055c57600080fd5b8063742a4c9b146104ab578063853828b6146104cb5780638da5cb5b146104e057806391b7f5ed146104fe57600080fd5b806342842e0e116101b15780636352211e116101755780636352211e146104165780636f8b44b01461043657806370a0823114610456578063715018a61461047657806373fee0901461048b57600080fd5b806342842e0e146103875780634a91d1b8146103a757806351830227146103bd57806355f804b3146103dc5780635c975abb146103fc57600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806318160ddd146102fb5780631e7269c51461032757806323b872dd146103475780632fbba1151461036757600080fd5b806301ffc9a71461022a57806306fdde031461025f57806307d3636714610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004611c4a565b6106cd565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461071f565b6040516102569190611da7565b34801561028d57600080fd5b506102a161029c366004611ccd565b6107b1565b005b3480156102af57600080fd5b506102c36102be366004611ccd565b6107e9565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b506102a16102f6366004611c05565b61082d565b34801561030757600080fd5b50610319600154600054036000190190565b604051908152602001610256565b34801561033357600080fd5b50610319610342366004611ad5565b6108bb565b34801561035357600080fd5b506102a1610362366004611b23565b6108ea565b34801561037357600080fd5b506102a1610382366004611ccd565b6108f5565b34801561039357600080fd5b506102a16103a2366004611b23565b610999565b3480156103b357600080fd5b50610319600c5481565b3480156103c957600080fd5b5060115461024a90610100900460ff1681565b3480156103e857600080fd5b506102a16103f7366004611c84565b6109b4565b34801561040857600080fd5b5060115461024a9060ff1681565b34801561042257600080fd5b506102c3610431366004611ccd565b6109f5565b34801561044257600080fd5b506102a1610451366004611ccd565b610a07565b34801561046257600080fd5b50610319610471366004611ad5565b610a36565b34801561048257600080fd5b506102a1610a85565b34801561049757600080fd5b506102a16104a6366004611ccd565b600455565b3480156104b757600080fd5b506102a16104c6366004611ccd565b610abb565b3480156104d757600080fd5b506102a1610aea565b3480156104ec57600080fd5b506009546001600160a01b03166102c3565b34801561050a57600080fd5b506102a1610519366004611ccd565b610bad565b34801561052a57600080fd5b50610274610bdc565b34801561053f57600080fd5b50610319600d5481565b6102a1610557366004611ccd565b610beb565b34801561056857600080fd5b506102a1610577366004611bdb565b610dd8565b34801561058857600080fd5b506102a1610e6e565b34801561059d57600080fd5b50610319600e5481565b3480156105b357600080fd5b506102a16105c2366004611b5f565b610ea9565b3480156105d357600080fd5b506102a16105e2366004611c2f565b610efa565b3480156105f357600080fd5b5061027460405180604001604052806005815260200164173539b7b760d91b81525081565b34801561062457600080fd5b50610274610633366004611ccd565b610f37565b34801561064457600080fd5b50610319600b5481565b34801561065a57600080fd5b5061024a610669366004611af0565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106a357600080fd5b506102a16106b2366004611ad5565b610ff9565b3480156106c357600080fd5b50610319600a5481565b60006001600160e01b031982166380ac58cd60e01b14806106fe57506001600160e01b03198216635b5e139f60e01b145b8061071957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461072e90611e7d565b80601f016020809104026020016040519081016040528092919081815260200182805461075a90611e7d565b80156107a75780601f1061077c576101008083540402835291602001916107a7565b820191906000526020600020905b81548152906001019060200180831161078a57829003601f168201915b5050505050905090565b6009546001600160a01b031633146107e45760405162461bcd60e51b81526004016107db90611dba565b60405180910390fd5b600a55565b60006107f482611091565b610811576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610838826109f5565b9050806001600160a01b0316836001600160a01b0316141561086d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061088d575061088b8133610669565b155b156108ab576040516367d9dca160e11b815260040160405180910390fd5b6108b68383836110ca565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610719565b6108b6838383611126565b6009546001600160a01b0316331461091f5760405162461bcd60e51b81526004016107db90611dba565b600b5481610934600154600054036000190190565b61093e9190611def565b111561098c5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c79000060448201526064016107db565b6109963382611316565b50565b6108b683838360405180602001604052806000815250610ea9565b6009546001600160a01b031633146109de5760405162461bcd60e51b81526004016107db90611dba565b80516109f190600f90602084019061199a565b5050565b6000610a0082611330565b5192915050565b6009546001600160a01b03163314610a315760405162461bcd60e51b81526004016107db90611dba565b600b55565b60006001600160a01b038216610a5f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610aaf5760405162461bcd60e51b81526004016107db90611dba565b610ab96000611459565b565b6009546001600160a01b03163314610ae55760405162461bcd60e51b81526004016107db90611dba565b600c55565b6009546001600160a01b03163314610b145760405162461bcd60e51b81526004016107db90611dba565b4780610b585760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016107db565b610b863360646004546064610b6d9190611e3a565b610b779085611e1b565b610b819190611e07565b6114ab565b601154600454610996916201000090046001600160a01b031690606490610b779085611e1b565b6009546001600160a01b03163314610bd75760405162461bcd60e51b81526004016107db90611dba565b600d55565b60606003805461072e90611e7d565b600d54600c54600090610bff906001611def565b83610c11600154600054036000190190565b610c1b9190611def565b108015610c445750600e5433600090815260106020526040902054610c41908590611def565b11155b90508015610c5157600091505b60115460ff1615610c975760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b60448201526064016107db565b610ca18284611e1b565b341015610cf05760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016107db565b600b54610cfe906001611def565b83610d10600154600054036000190190565b610d1a9190611def565b10610d515760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107db565b600a54610d5f906001611def565b8310610da35760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016107db565b8015610dce573360009081526010602052604081208054859290610dc8908490611def565b90915550505b6108b63384611316565b6001600160a01b038216331415610e025760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610e985760405162461bcd60e51b81526004016107db90611dba565b6011805461ff001916610100179055565b610eb4848484611126565b6001600160a01b0383163b15158015610ed65750610ed48484848461154e565b155b15610ef4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610f245760405162461bcd60e51b81526004016107db90611dba565b6011805460ff1916911515919091179055565b6060610f4282611091565b610fa65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107db565b6000610fb183611646565b90506000815111610fd15760405180602001604052806000815250610ff2565b80604051602001610fe29190611d41565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146110235760405162461bcd60e51b81526004016107db90611dba565b6001600160a01b0381166110885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107db565b61099681611459565b6000816001111580156110a5575060005482105b8015610719575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061113182611330565b9050836001600160a01b031681600001516001600160a01b0316146111685760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061118657506111868533610669565b806111a1575033611196846107e9565b6001600160a01b0316145b9050806111c157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111e857604051633a954ecd60e21b815260040160405180910390fd5b6111f4600084876110ca565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112ca5760005482146112ca578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109f18282604051806020016040528060008152506116b4565b60408051606081018252600080825260208201819052918101919091528180600111158015611360575060005481105b1561144057600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061143e5780516001600160a01b0316156113d4579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611439579392505050565b6113d4565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114f8576040519150601f19603f3d011682016040523d82523d6000602084013e6114fd565b606091505b50509050806108b65760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016107db565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611583903390899088908890600401611d6a565b602060405180830381600087803b15801561159d57600080fd5b505af19250505080156115cd575060408051601f3d908101601f191682019092526115ca91810190611c67565b60015b611628573d8080156115fb576040519150601f19603f3d011682016040523d82523d6000602084013e611600565b606091505b508051611620576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061165182611091565b61166e57604051630a14c4b560e41b815260040160405180910390fd5b60006116786116c1565b90508051600014156116995760405180602001604052806000815250610ff2565b806116a3846116d0565b604051602001610fe2929190611d12565b6108b683838360016117ce565b6060600f805461072e90611e7d565b6060816116f45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171e578061170881611eb8565b91506117179050600a83611e07565b91506116f8565b60008167ffffffffffffffff81111561173957611739611f29565b6040519080825280601f01601f191660200182016040528015611763576020820181803683370190505b5090505b841561163e57611778600183611e3a565b9150611785600a86611ed3565b611790906030611def565b60f81b8183815181106117a5576117a5611f13565b60200101906001600160f81b031916908160001a9053506117c7600a86611e07565b9450611767565b6000546001600160a01b0385166117f757604051622e076360e81b815260040160405180910390fd5b836118155760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156118c257506001600160a01b0387163b15155b1561194b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611913600088848060010195508861154e565b611930576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118c857826000541461194657600080fd5b611991565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561194c575b5060005561130f565b8280546119a690611e7d565b90600052602060002090601f0160209004810192826119c85760008555611a0e565b82601f106119e157805160ff1916838001178555611a0e565b82800160010185558215611a0e579182015b82811115611a0e5782518255916020019190600101906119f3565b50611a1a929150611a1e565b5090565b5b80821115611a1a5760008155600101611a1f565b600067ffffffffffffffff80841115611a4e57611a4e611f29565b604051601f8501601f19908116603f01168101908282118183101715611a7657611a76611f29565b81604052809350858152868686011115611a8f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ac057600080fd5b919050565b80358015158114611ac057600080fd5b600060208284031215611ae757600080fd5b610ff282611aa9565b60008060408385031215611b0357600080fd5b611b0c83611aa9565b9150611b1a60208401611aa9565b90509250929050565b600080600060608486031215611b3857600080fd5b611b4184611aa9565b9250611b4f60208501611aa9565b9150604084013590509250925092565b60008060008060808587031215611b7557600080fd5b611b7e85611aa9565b9350611b8c60208601611aa9565b925060408501359150606085013567ffffffffffffffff811115611baf57600080fd5b8501601f81018713611bc057600080fd5b611bcf87823560208401611a33565b91505092959194509250565b60008060408385031215611bee57600080fd5b611bf783611aa9565b9150611b1a60208401611ac5565b60008060408385031215611c1857600080fd5b611c2183611aa9565b946020939093013593505050565b600060208284031215611c4157600080fd5b610ff282611ac5565b600060208284031215611c5c57600080fd5b8135610ff281611f3f565b600060208284031215611c7957600080fd5b8151610ff281611f3f565b600060208284031215611c9657600080fd5b813567ffffffffffffffff811115611cad57600080fd5b8201601f81018413611cbe57600080fd5b61163e84823560208401611a33565b600060208284031215611cdf57600080fd5b5035919050565b60008151808452611cfe816020860160208601611e51565b601f01601f19169290920160200192915050565b60008351611d24818460208801611e51565b835190830190611d38818360208801611e51565b01949350505050565b60008251611d53818460208701611e51565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d9d90830184611ce6565b9695505050505050565b602081526000610ff26020830184611ce6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e0257611e02611ee7565b500190565b600082611e1657611e16611efd565b500490565b6000816000190483118215151615611e3557611e35611ee7565b500290565b600082821015611e4c57611e4c611ee7565b500390565b60005b83811015611e6c578181015183820152602001611e54565b83811115610ef45750506000910152565b600181811c90821680611e9157607f821691505b60208210811415611eb257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ecc57611ecc611ee7565b5060010190565b600082611ee257611ee2611efd565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461099657600080fdfea26469706673582212207302a9aedffd1f847b5a702bd268121077ed5e0f61f67bb13c406fcad57444e464736f6c63430008070033

Deployed Bytecode Sourcemap

52993:3714:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34921:305;;;;;;;;;;-1:-1:-1;34921:305:0;;;;;:::i;:::-;;:::i;:::-;;;6561:14:1;;6554:22;6536:41;;6524:2;6509:18;34921:305:0;;;;;;;;38034:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54859:90::-;;;;;;;;;;-1:-1:-1;54859:90:0;;;;;:::i;:::-;;:::i;:::-;;39537:204;;;;;;;;;;-1:-1:-1;39537:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5859:32:1;;;5841:51;;5829:2;5814:18;39537:204:0;5695:203:1;39100:371:0;;;;;;;;;;-1:-1:-1;39100:371:0;;;;;:::i;:::-;;:::i;34170:303::-;;;;;;;;;;;;55330:1;34424:12;34214:7;34408:13;:28;-1:-1:-1;;34408:46:0;;34170:303;;;;10588:25:1;;;10576:2;10561:18;34170:303:0;10442:177:1;55347:109:0;;;;;;;;;;-1:-1:-1;55347:109:0;;;;;:::i;:::-;;:::i;40402:170::-;;;;;;;;;;-1:-1:-1;40402:170:0;;;;;:::i;:::-;;:::i;54556:195::-;;;;;;;;;;-1:-1:-1;54556:195:0;;;;;:::i;:::-;;:::i;40643:185::-;;;;;;;;;;-1:-1:-1;40643:185:0;;;;;:::i;:::-;;:::i;53180:32::-;;;;;;;;;;;;;;;;53585:28;;;;;;;;;;-1:-1:-1;53585:28:0;;;;;;;;;;;56247:100;;;;;;;;;;-1:-1:-1;56247:100:0;;;;;:::i;:::-;;:::i;53553:25::-;;;;;;;;;;-1:-1:-1;53553:25:0;;;;;;;;37842:125;;;;;;;;;;-1:-1:-1;37842:125:0;;;;;:::i;:::-;;:::i;54957:88::-;;;;;;;;;;-1:-1:-1;54957:88:0;;;;;:::i;:::-;;:::i;35290:206::-;;;;;;;;;;-1:-1:-1;35290:206:0;;;;;:::i;:::-;;:::i;11731:103::-;;;;;;;;;;;;;:::i;41458:64::-;;;;;;;;;;-1:-1:-1;41458:64:0;;;;;:::i;:::-;41502:6;:12;41458:64;54759:92;;;;;;;;;;-1:-1:-1;54759:92:0;;;;;:::i;:::-;;:::i;55660:275::-;;;;;;;;;;;;;:::i;11080:87::-;;;;;;;;;;-1:-1:-1;11153:6:0;;-1:-1:-1;;;;;11153:6:0;11080:87;;55943:86;;;;;;;;;;-1:-1:-1;55943:86:0;;;;;:::i;:::-;;:::i;38203:104::-;;;;;;;;;;;;;:::i;53234:34::-;;;;;;;;;;;;;;;;53871:676;;;;;;:::i;:::-;;:::i;39813:287::-;;;;;;;;;;-1:-1:-1;39813:287:0;;;;;:::i;:::-;;:::i;55159:69::-;;;;;;;;;;;;;:::i;53275:35::-;;;;;;;;;;;;;;;;40899:369;;;;;;;;;;-1:-1:-1;40899:369:0;;;;;:::i;:::-;;:::i;56037:84::-;;;;;;;;;;-1:-1:-1;56037:84:0;;;;;:::i;:::-;;:::i;53435:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53435:46:0;;;;;56355:349;;;;;;;;;;-1:-1:-1;56355:349:0;;;;;:::i;:::-;;:::i;53142:31::-;;;;;;;;;;;;;;;;40171:164;;;;;;;;;;-1:-1:-1;40171:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40292:25:0;;;40268:4;40292:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40171:164;11989:201;;;;;;;;;;-1:-1:-1;11989:201:0;;;;;:::i;:::-;;:::i;53107:28::-;;;;;;;;;;;;;;;;34921:305;35023:4;-1:-1:-1;;;;;;35060:40:0;;-1:-1:-1;;;35060:40:0;;:105;;-1:-1:-1;;;;;;;35117:48:0;;-1:-1:-1;;;35117:48:0;35060:105;:158;;;-1:-1:-1;;;;;;;;;;23850:40:0;;;35182:36;35040:178;34921:305;-1:-1:-1;;34921:305:0:o;38034:100::-;38088:13;38121:5;38114:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38034:100;:::o;54859:90::-;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;;;;;;;;;54926:8:::1;:15:::0;54859:90::o;39537:204::-;39605:7;39630:16;39638:7;39630;:16::i;:::-;39625:64;;39655:34;;-1:-1:-1;;;39655:34:0;;;;;;;;;;;39625:64;-1:-1:-1;39709:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39709:24:0;;39537:204::o;39100:371::-;39173:13;39189:24;39205:7;39189:15;:24::i;:::-;39173:40;;39234:5;-1:-1:-1;;;;;39228:11:0;:2;-1:-1:-1;;;;;39228:11:0;;39224:48;;;39248:24;;-1:-1:-1;;;39248:24:0;;;;;;;;;;;39224:48;9907:10;-1:-1:-1;;;;;39289:21:0;;;;;;:63;;-1:-1:-1;39315:37:0;39332:5;9907:10;40171:164;:::i;39315:37::-;39314:38;39289:63;39285:138;;;39376:35;;-1:-1:-1;;;39376:35:0;;;;;;;;;;;39285:138;39435:28;39444:2;39448:7;39457:5;39435:8;:28::i;:::-;39162:309;39100:371;;:::o;55347:109::-;-1:-1:-1;;;;;35674:19:0;;55400:7;35674:19;;;:12;:19;;;;;:32;-1:-1:-1;;;35674:32:0;;;;55427:21;35578:137;40402:170;40536:28;40546:4;40552:2;40556:7;40536:9;:28::i;54556:195::-;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;54656:9:::1;;54645:7;54629:13;55330:1:::0;34424:12;34214:7;34408:13;:28;-1:-1:-1;;34408:46:0;;34170:303;54629:13:::1;:23;;;;:::i;:::-;:36;;54621:79;;;::::0;-1:-1:-1;;;54621:79:0;;7756:2:1;54621:79:0::1;::::0;::::1;7738:21:1::0;7795:2;7775:18;;;7768:30;7834:32;7814:18;;;7807:60;7884:18;;54621:79:0::1;7554:354:1::0;54621:79:0::1;54711:32;9907:10:::0;54735:7:::1;54711:9;:32::i;:::-;54556:195:::0;:::o;40643:185::-;40781:39;40798:4;40804:2;40808:7;40781:39;;;;;;;;;;;;:16;:39::i;56247:100::-;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;56321:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56247:100:::0;:::o;37842:125::-;37906:7;37933:21;37946:7;37933:12;:21::i;:::-;:26;;37842:125;-1:-1:-1;;37842:125:0:o;54957:88::-;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;55021:9:::1;:16:::0;54957:88::o;35290:206::-;35354:7;-1:-1:-1;;;;;35378:19:0;;35374:60;;35406:28;;-1:-1:-1;;;35406:28:0;;;;;;;;;;;35374:60;-1:-1:-1;;;;;;35460:19:0;;;;;:12;:19;;;;;:27;;;;35290:206::o;11731:103::-;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;11796:30:::1;11823:1;11796:18;:30::i;:::-;11731:103::o:0;54759:92::-;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;54825:11:::1;:18:::0;54759:92::o;55660:275::-;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;55729:21:::1;55769:11:::0;55761:43:::1;;;::::0;-1:-1:-1;;;55761:43:0;;8460:2:1;55761:43:0::1;::::0;::::1;8442:21:1::0;8499:2;8479:18;;;8472:30;-1:-1:-1;;;8518:18:1;;;8511:49;8577:18;;55761:43:0::1;8258:343:1::0;55761:43:0::1;55817:55;9907:10:::0;55868:3:::1;55858:6;;55852:3;:12;;;;:::i;:::-;55841:24;::::0;:7;:24:::1;:::i;:::-;:30;;;;:::i;:::-;55817:9;:55::i;:::-;55893:9;::::0;55914:6:::1;::::0;55883:44:::1;::::0;55893:9;;::::1;-1:-1:-1::0;;;;;55893:9:0::1;::::0;55923:3:::1;::::0;55904:16:::1;::::0;:7;:16:::1;:::i;55943:86::-:0;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;56007:5:::1;:14:::0;55943:86::o;38203:104::-;38259:13;38292:7;38285:14;;;;;:::i;53871:676::-;53943:5;;53999:11;;53928:12;;53999:15;;54013:1;53999:15;:::i;:::-;53991:5;53975:13;55330:1;34424:12;34214:7;34408:13;:28;-1:-1:-1;;34408:46:0;;34170:303;53975:13;:21;;;;:::i;:::-;:39;53974:117;;;;-1:-1:-1;54074:16:0;;54051:10;54033:29;;;;:17;:29;;;;;;:37;;54065:5;;54033:37;:::i;:::-;:57;;53974:117;53959:133;;54109:6;54105:47;;;54139:1;54132:8;;54105:47;54173:6;;;;54172:7;54164:36;;;;-1:-1:-1;;;54164:36:0;;8115:2:1;54164:36:0;;;8097:21:1;8154:2;8134:18;;;8127:30;-1:-1:-1;;;8173:18:1;;;8166:46;8229:18;;54164:36:0;7913:340:1;54164:36:0;54232:12;54240:4;54232:5;:12;:::i;:::-;54219:9;:25;;54211:67;;;;-1:-1:-1;;;54211:67:0;;9938:2:1;54211:67:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016:31;9996:18;;;9989:59;10065:18;;54211:67:0;9736:353:1;54211:67:0;54321:9;;:13;;54333:1;54321:13;:::i;:::-;54313:5;54297:13;55330:1;34424:12;34214:7;34408:13;:28;-1:-1:-1;;34408:46:0;;34170:303;54297:13;:21;;;;:::i;:::-;:37;54289:57;;;;-1:-1:-1;;;54289:57:0;;7014:2:1;54289:57:0;;;6996:21:1;7053:1;7033:18;;;7026:29;-1:-1:-1;;;7071:18:1;;;7064:37;7118:18;;54289:57:0;6812:330:1;54289:57:0;54373:8;;:12;;54384:1;54373:12;:::i;:::-;54365:5;:20;54357:52;;;;-1:-1:-1;;;54357:52:0;;10296:2:1;54357:52:0;;;10278:21:1;10335:2;10315:18;;;10308:30;-1:-1:-1;;;10354:18:1;;;10347:49;10413:18;;54357:52:0;10094:343:1;54357:52:0;54426:6;54422:77;;;54467:10;54449:29;;;;:17;:29;;;;;:38;;54482:5;;54449:29;:38;;54482:5;;54449:38;:::i;:::-;;;;-1:-1:-1;;54422:77:0;54511:28;54521:10;54533:5;54511:9;:28::i;39813:287::-;-1:-1:-1;;;;;39912:24:0;;9907:10;39912:24;39908:54;;;39945:17;;-1:-1:-1;;;39945:17:0;;;;;;;;;;;39908:54;9907:10;39975:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39975:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39975:53:0;;;;;;;;;;40044:48;;6536:41:1;;;39975:42:0;;9907:10;40044:48;;6509:18:1;40044:48:0;;;;;;;39813:287;;:::o;55159:69::-;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;55205:8:::1;:15:::0;;-1:-1:-1;;55205:15:0::1;;;::::0;;55159:69::o;40899:369::-;41066:28;41076:4;41082:2;41086:7;41066:9;:28::i;:::-;-1:-1:-1;;;;;41109:13:0;;14054:19;:23;;41109:76;;;;;41129:56;41160:4;41166:2;41170:7;41179:5;41129:30;:56::i;:::-;41128:57;41109:76;41105:156;;;41209:40;;-1:-1:-1;;;41209:40:0;;;;;;;;;;;41105:156;40899:369;;;;:::o;56037:84::-;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;56098:6:::1;:15:::0;;-1:-1:-1;;56098:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56037:84::o;56355:349::-;56428:13;56467:16;56475:7;56467;:16::i;:::-;56459:76;;;;-1:-1:-1;;;56459:76:0;;9169:2:1;56459:76:0;;;9151:21:1;9208:2;9188:18;;;9181:30;9247:34;9227:18;;;9220:62;-1:-1:-1;;;9298:18:1;;;9291:45;9353:19;;56459:76:0;8967:411:1;56459:76:0;56550:23;56576;56591:7;56576:14;:23::i;:::-;56550:49;;56643:1;56623:9;56617:23;:27;:79;;;;;;;;;;;;;;;;;56671:9;56654:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;56617:79;56610:86;56355:349;-1:-1:-1;;;56355:349:0:o;11989:201::-;11153:6;;-1:-1:-1;;;;;11153:6:0;9907:10;11300:23;11292:68;;;;-1:-1:-1;;;11292:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12078:22:0;::::1;12070:73;;;::::0;-1:-1:-1;;;12070:73:0;;7349:2:1;12070:73:0::1;::::0;::::1;7331:21:1::0;7388:2;7368:18;;;7361:30;7427:34;7407:18;;;7400:62;-1:-1:-1;;;7478:18:1;;;7471:36;7524:19;;12070:73:0::1;7147:402:1::0;12070:73:0::1;12154:28;12173:8;12154:18;:28::i;41777:187::-:0;41834:4;41877:7;55330:1;41858:26;;:53;;;;;41898:13;;41888:7;:23;41858:53;:98;;;;-1:-1:-1;;41929:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41929:27:0;;;;41928:28;;41777:187::o;49947:196::-;50062:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50062:29:0;-1:-1:-1;;;;;50062:29:0;;;;;;;;;50107:28;;50062:24;;50107:28;;;;;;;49947:196;;;:::o;44890:2130::-;45005:35;45043:21;45056:7;45043:12;:21::i;:::-;45005:59;;45103:4;-1:-1:-1;;;;;45081:26:0;:13;:18;;;-1:-1:-1;;;;;45081:26:0;;45077:67;;45116:28;;-1:-1:-1;;;45116:28:0;;;;;;;;;;;45077:67;45157:22;9907:10;-1:-1:-1;;;;;45183:20:0;;;;:73;;-1:-1:-1;45220:36:0;45237:4;9907:10;40171:164;:::i;45220:36::-;45183:126;;;-1:-1:-1;9907:10:0;45273:20;45285:7;45273:11;:20::i;:::-;-1:-1:-1;;;;;45273:36:0;;45183:126;45157:153;;45328:17;45323:66;;45354:35;;-1:-1:-1;;;45354:35:0;;;;;;;;;;;45323:66;-1:-1:-1;;;;;45404:16:0;;45400:52;;45429:23;;-1:-1:-1;;;45429:23:0;;;;;;;;;;;45400:52;45573:35;45590:1;45594:7;45603:4;45573:8;:35::i;:::-;-1:-1:-1;;;;;45904:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45904:31:0;;;;;;;-1:-1:-1;;45904:31:0;;;;;;;45950:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45950:29:0;;;;;;;;;;;46030:20;;;:11;:20;;;;;;46065:18;;-1:-1:-1;;;;;;46098:49:0;;;;-1:-1:-1;;;46131:15:0;46098:49;;;;;;;;;;46421:11;;46481:24;;;;;46524:13;;46030:20;;46481:24;;46524:13;46520:384;;46734:13;;46719:11;:28;46715:174;;46772:20;;46841:28;;;;46815:54;;-1:-1:-1;;;46815:54:0;-1:-1:-1;;;;;;46815:54:0;;;-1:-1:-1;;;;;46772:20:0;;46815:54;;;;46715:174;45879:1036;;;46951:7;46947:2;-1:-1:-1;;;;;46932:27:0;46941:4;-1:-1:-1;;;;;46932:27:0;;;;;;;;;;;46970:42;44994:2026;;44890:2130;;;:::o;41972:104::-;42041:27;42051:2;42055:8;42041:27;;;;;;;;;;;;:9;:27::i;36671:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;36782:7:0;;55330:1;36831:23;;:47;;;;;36865:13;;36858:4;:20;36831:47;36827:886;;;36899:31;36933:17;;;:11;:17;;;;;;;;;36899:51;;;;;;;;;-1:-1:-1;;;;;36899:51:0;;;;-1:-1:-1;;;36899:51:0;;;;;;;;;;;-1:-1:-1;;;36899:51:0;;;;;;;;;;;;;;36969:729;;37019:14;;-1:-1:-1;;;;;37019:28:0;;37015:101;;37083:9;36671:1109;-1:-1:-1;;;36671:1109:0:o;37015:101::-;-1:-1:-1;;;37458:6:0;37503:17;;;;:11;:17;;;;;;;;;37491:29;;;;;;;;;-1:-1:-1;;;;;37491:29:0;;;;;-1:-1:-1;;;37491:29:0;;;;;;;;;;;-1:-1:-1;;;37491:29:0;;;;;;;;;;;;;37551:28;37547:109;;37619:9;36671:1109;-1:-1:-1;;;36671:1109:0:o;37547:109::-;37418:261;;;36880:833;36827:886;37741:31;;-1:-1:-1;;;37741:31:0;;;;;;;;;;;12350:191;12443:6;;;-1:-1:-1;;;;;12460:17:0;;;-1:-1:-1;;;;;;12460:17:0;;;;;;;12493:40;;12443:6;;;12460:17;12443:6;;12493:40;;12424:16;;12493:40;12413:128;12350:191;:::o;55464:188::-;55538:12;55556:8;-1:-1:-1;;;;;55556:13:0;55577:7;55556:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55537:52;;;55608:7;55600:44;;;;-1:-1:-1;;;55600:44:0;;9585:2:1;55600:44:0;;;9567:21:1;9624:2;9604:18;;;9597:30;9663:26;9643:18;;;9636:54;9707:18;;55600:44:0;9383:348:1;50635:667:0;50819:72;;-1:-1:-1;;;50819:72:0;;50798:4;;-1:-1:-1;;;;;50819:36:0;;;;;:72;;9907:10;;50870:4;;50876:7;;50885:5;;50819:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50819:72:0;;;;;;;;-1:-1:-1;;50819:72:0;;;;;;;;;;;;:::i;:::-;;;50815:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51053:13:0;;51049:235;;51099:40;;-1:-1:-1;;;51099:40:0;;;;;;;;;;;51049:235;51242:6;51236:13;51227:6;51223:2;51219:15;51212:38;50815:480;-1:-1:-1;;;;;;50938:55:0;-1:-1:-1;;;50938:55:0;;-1:-1:-1;50815:480:0;50635:667;;;;;;:::o;38378:318::-;38451:13;38482:16;38490:7;38482;:16::i;:::-;38477:59;;38507:29;;-1:-1:-1;;;38507:29:0;;;;;;;;;;;38477:59;38549:21;38573:10;:8;:10::i;:::-;38549:34;;38607:7;38601:21;38626:1;38601:26;;:87;;;;;;;;;;;;;;;;;38654:7;38663:18;:7;:16;:18::i;:::-;38637:45;;;;;;;;;:::i;42439:163::-;42562:32;42568:2;42572:8;42582:5;42589:4;42562:5;:32::i;56129:106::-;56189:13;56220:7;56213:14;;;;;:::i;7411:723::-;7467:13;7688:10;7684:53;;-1:-1:-1;;7715:10:0;;;;;;;;;;;;-1:-1:-1;;;7715:10:0;;;;;7411:723::o;7684:53::-;7762:5;7747:12;7803:78;7810:9;;7803:78;;7836:8;;;;:::i;:::-;;-1:-1:-1;7859:10:0;;-1:-1:-1;7867:2:0;7859:10;;:::i;:::-;;;7803:78;;;7891:19;7923:6;7913:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7913:17:0;;7891:39;;7941:154;7948:10;;7941:154;;7975:11;7985:1;7975:11;;:::i;:::-;;-1:-1:-1;8044:10:0;8052:2;8044:5;:10;:::i;:::-;8031:24;;:2;:24;:::i;:::-;8018:39;;8001:6;8008;8001:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8001:56:0;;;;;;;;-1:-1:-1;8072:11:0;8081:2;8072:11;;:::i;:::-;;;7941:154;;42861:1775;43000:20;43023:13;-1:-1:-1;;;;;43051:16:0;;43047:48;;43076:19;;-1:-1:-1;;;43076:19:0;;;;;;;;;;;43047:48;43110:13;43106:44;;43132:18;;-1:-1:-1;;;43132:18:0;;;;;;;;;;;43106:44;-1:-1:-1;;;;;43501:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;43560:49:0;;43501:44;;;;;;;;43560:49;;;-1:-1:-1;;;;;43501:44:0;;;;;;43560:49;;;;;;;;;;;;;;;;43626:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;43676:66:0;;;;-1:-1:-1;;;43726:15:0;43676:66;;;;;;;;;;43626:25;43823:23;;;43867:4;:23;;;;-1:-1:-1;;;;;;43875:13:0;;14054:19;:23;;43875:15;43863:641;;;43911:314;43942:38;;43967:12;;-1:-1:-1;;;;;43942:38:0;;;43959:1;;43942:38;;43959:1;;43942:38;44008:69;44047:1;44051:2;44055:14;;;;;;44071:5;44008:30;:69::i;:::-;44003:174;;44113:40;;-1:-1:-1;;;44113:40:0;;;;;;;;;;;44003:174;44220:3;44204:12;:19;;43911:314;;44306:12;44289:13;;:29;44285:43;;44320:8;;;44285:43;43863:641;;;44369:120;44400:40;;44425:14;;;;;-1:-1:-1;;;;;44400:40:0;;;44417:1;;44400:40;;44417:1;;44400:40;44484:3;44468:12;:19;;44369:120;;43863:641;-1:-1:-1;44518:13:0;:28;44568:60;40899:369;-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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5037:443::-;5269:3;5307:6;5301:13;5323:53;5369:6;5364:3;5357:4;5349:6;5345:17;5323:53;:::i;:::-;-1:-1:-1;;;5398:16:1;;5423:22;;;-1:-1:-1;5472:1:1;5461:13;;5037:443;-1:-1:-1;5037:443:1:o;5903:488::-;-1:-1:-1;;;;;6172:15:1;;;6154:34;;6224:15;;6219:2;6204:18;;6197:43;6271:2;6256:18;;6249:34;;;6319:3;6314:2;6299:18;;6292:31;;;6097:4;;6340:45;;6365:19;;6357:6;6340:45;:::i;:::-;6332:53;5903:488;-1:-1:-1;;;;;;5903:488:1:o;6588:219::-;6737:2;6726:9;6719:21;6700:4;6757:44;6797:2;6786:9;6782:18;6774:6;6757:44;:::i;8606:356::-;8808:2;8790:21;;;8827:18;;;8820:30;8886:34;8881:2;8866:18;;8859:62;8953:2;8938:18;;8606:356::o;10624:128::-;10664:3;10695:1;10691:6;10688:1;10685:13;10682:39;;;10701:18;;:::i;:::-;-1:-1:-1;10737:9:1;;10624:128::o;10757:120::-;10797:1;10823;10813:35;;10828:18;;:::i;:::-;-1:-1:-1;10862:9:1;;10757:120::o;10882:168::-;10922:7;10988:1;10984;10980:6;10976:14;10973:1;10970:21;10965:1;10958:9;10951:17;10947:45;10944:71;;;10995:18;;:::i;:::-;-1:-1:-1;11035:9:1;;10882:168::o;11055:125::-;11095:4;11123:1;11120;11117:8;11114:34;;;11128:18;;:::i;:::-;-1:-1:-1;11165:9:1;;11055:125::o;11185:258::-;11257:1;11267:113;11281:6;11278:1;11275:13;11267:113;;;11357:11;;;11351:18;11338:11;;;11331:39;11303:2;11296:10;11267:113;;;11398:6;11395:1;11392:13;11389:48;;;-1:-1:-1;;11433:1:1;11415:16;;11408:27;11185:258::o;11448:380::-;11527:1;11523:12;;;;11570;;;11591:61;;11645:4;11637:6;11633:17;11623:27;;11591:61;11698:2;11690:6;11687:14;11667:18;11664:38;11661:161;;;11744:10;11739:3;11735:20;11732:1;11725:31;11779:4;11776:1;11769:15;11807:4;11804:1;11797:15;11661:161;;11448:380;;;:::o;11833:135::-;11872:3;-1:-1:-1;;11893:17:1;;11890:43;;;11913:18;;:::i;:::-;-1:-1:-1;11960:1:1;11949:13;;11833:135::o;11973:112::-;12005:1;12031;12021:35;;12036:18;;:::i;:::-;-1:-1:-1;12070:9:1;;11973:112::o;12090:127::-;12151:10;12146:3;12142:20;12139:1;12132:31;12182:4;12179:1;12172:15;12206:4;12203:1;12196:15;12222:127;12283:10;12278:3;12274:20;12271:1;12264:31;12314:4;12311:1;12304:15;12338:4;12335:1;12328:15;12354:127;12415:10;12410:3;12406:20;12403:1;12396:31;12446:4;12443:1;12436:15;12470:4;12467:1;12460:15;12486:127;12547:10;12542:3;12538:20;12535:1;12528:31;12578:4;12575:1;12568:15;12602:4;12599:1;12592:15;12618:131;-1:-1:-1;;;;;;12692:32:1;;12682:43;;12672:71;;12739:1;12736;12729:12

Swarm Source

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