ETH Price: $2,613.48 (-4.02%)

Token

Dreams of Synesthesia (DOS)
 

Overview

Max Total Supply

121 DOS

Holders

64

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 DOS
0x7082b2cd2a0a3d8264949aa749431ac804ba8534
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:
DOS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-22
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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



pragma solidity ^0.8.0;

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

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

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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (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: @openzeppelin/contracts/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: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


// File: contracts/DOS.sol

pragma solidity ^0.8.0;

contract DOS is ERC721, Ownable, ReentrancyGuard {
    string private _collectionURI;
    string public baseURI;

    uint256 public constant TEAM_ALLOC = 396;
    uint256 public constant MAX_SUPPLY = 3996;

    uint256 public cost = 0.06 ether;
    uint256 public mintsPerTx = 5;

    bool private _isMainSaleActive;

    mapping(uint256 => string) internal tokenUris;
    mapping(address => uint256) internal walletCap;

    address editor;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    constructor() ERC721("Dreams of Synesthesia", "DOS") {
        _isMainSaleActive = false;
    }

    modifier onlyEditor() {
        require(msg.sender == editor);
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            price * numberOfTokens == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============ 

    /**
    * @dev mints specified # of tokens to sender address
    * 3600 public mints
    */
    function mint(
      uint256 numberOfTokens
    )
        public
        payable
        isCorrectPayment(cost, numberOfTokens)
        nonReentrant
    {
        require(_isMainSaleActive, "Main sale must be active to mint.");
        require(numberOfTokens > 0, "Must mint at least 1 token.");
        require(numberOfTokens <= mintsPerTx, "Exceeded max tokens minted at a time");
        require(_tokenSupply.current() + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max number of whitelist tokens");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _tokenSupply.increment();
            _mint(msg.sender, _tokenSupply.current());
        }
        walletCap[msg.sender] += numberOfTokens;
    }

    // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function tokenURI(uint256 tokenId)
      public
      view
      virtual
      override
      returns (string memory)
    {
      require(_exists(tokenId), "ERC721Metadata: query for nonexistent token");
      
      // Custom tokenURI exists
      if (bytes(tokenUris[tokenId]).length != 0) {
        return tokenUris[tokenId];
      }
      else {
        return string(abi.encodePacked(baseURI, Strings.toString(tokenId)));
      }
    }

    function totalSupply() public view returns (uint256) {
        return _tokenSupply.current();
    }

    /**
    * @dev collection URI for marketplace display
    */
    function contractURI() public view returns (string memory) {
        return _collectionURI;
    }

    function isMainSaleActive() external view returns (bool) {
        return _isMainSaleActive;
    }

    function numMintedForAddress(address addr) external view returns (uint256) {
        return walletCap[addr];
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============
    // @dev Private mint function reserved for company.
    // @param _to The user receiving the tokens
    // @param _mintAmount The number of tokens to distribute
    function mintToAddress(address _to, uint256 _mintAmount) external onlyOwner {
        require(_mintAmount > 0, "You can only mint more than 0 tokens");
        require(_tokenSupply.current() + _mintAmount <= MAX_SUPPLY, "Can't mint more than max supply");
        for (uint256 i = 0; i < _mintAmount; i++) {
            _tokenSupply.increment();
            _mint(_to, _tokenSupply.current());
        }
    }

    // @dev Private mint function reserved for company.
    // @param _to The user receiving the tokens
    function airdropMint(address[] memory _to) external onlyOwner {
        uint32 l = uint32(_to.length);
        require(l <= TEAM_ALLOC, "Total 396 NFTs eligible for airdrop");
        for (uint32 i = 0; i < l; i++) {
            _tokenSupply.increment();
            _mint(_to[i], _tokenSupply.current());
        }
    }

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

    function setCollectionURI(string memory collectionURI) external virtual onlyOwner {
        _collectionURI = collectionURI;
    }

    function flipMainSaleState() external onlyOwner {
        _isMainSaleActive = !_isMainSaleActive;
    }

    function setTokenURI(uint256 _tokenId, string memory _uri) external onlyEditor {
        tokenUris[_tokenId] = _uri;
    }

    function setCost(uint256 _newCost) external onlyOwner {
        cost = _newCost;
    }

    function setMintsPerTx(uint256 numMints) external onlyOwner {
        mintsPerTx = numMints;
    }

    function setEditor(address ed) external onlyOwner {
        editor = ed;
    }

    /**
     * @dev withdraw funds for to specified account
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ALLOC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMainSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMainSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numMintedForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"string","name":"collectionURI","type":"string"}],"name":"setCollectionURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ed","type":"address"}],"name":"setEditor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numMints","type":"uint256"}],"name":"setMintsPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","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":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600a556005600b553480156200002157600080fd5b50604080518082018252601581527f447265616d73206f662053796e65737468657369610000000000000000000000602080830191825283518085019094526003845262444f5360e81b908401528151919291620000829160009162000120565b5080516200009890600190602084019062000120565b505050620000b5620000af620000ca60201b60201c565b620000ce565b6001600755600c805460ff1916905562000203565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012e90620001c6565b90600052602060002090601f0160209004810192826200015257600085556200019d565b82601f106200016d57805160ff19168380011785556200019d565b828001600101855582156200019d579182015b828111156200019d57825182559160200191906001019062000180565b50620001ab929150620001af565b5090565b5b80821115620001ab5760008155600101620001b0565b600181811c90821680620001db57607f821691505b60208210811415620001fd57634e487b7160e01b600052602260045260246000fd5b50919050565b6125ee80620002136000396000f3fe60806040526004361061020f5760003560e01c80635e60a71111610118578063a22cb465116100a0578063c81cd3be1161006f578063c81cd3be146105b2578063c87b56dd146105e8578063e8a3d48514610608578063e985e9c51461061d578063f2fde38b1461066657600080fd5b8063a22cb46514610544578063acd7849014610564578063b3b2cb7a1461057a578063b88d4fde1461059257600080fd5b8063715018a6116100e7578063715018a6146104c9578063825a229e146104de5780638da5cb5b146104fe57806395d89b411461051c578063a0712d681461053157600080fd5b80635e60a7111461045e5780636352211e146104745780636c0360eb1461049457806370a08231146104a957600080fd5b80632639f4601161019b5780633ccfd60b1161016a5780633ccfd60b146103c957806342842e0e146103de57806344a0d68a146103fe57806346d362111461041e57806355f804b31461043e57600080fd5b80632639f4601461035e5780632a96c8021461037e5780632aea3d231461039e57806332cb6b0c146103b357600080fd5b806313faede6116101e257806313faede6146102c5578063162094c4146102e957806318160ddd1461030957806321ca42361461031e57806323b872dd1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046121d0565b610686565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d8565b60405161024091906123ca565b34801561027757600080fd5b5061028b61028636600461223f565b61076a565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046120f2565b610804565b005b3480156102d157600080fd5b506102db600a5481565b604051908152602001610240565b3480156102f557600080fd5b506102c3610304366004612258565b61091a565b34801561031557600080fd5b506102db610950565b34801561032a57600080fd5b506102c36103393660046120f2565b610960565b34801561034a57600080fd5b506102c3610359366004611ffe565b610aa6565b34801561036a57600080fd5b506102c361037936600461220a565b610b21565b34801561038a57600080fd5b506102c361039936600461223f565b610b80565b3480156103aa57600080fd5b506102c3610bcd565b3480156103bf57600080fd5b506102db610f9c81565b3480156103d557600080fd5b506102c3610c29565b3480156103ea57600080fd5b506102c36103f9366004611ffe565b610ca0565b34801561040a57600080fd5b506102c361041936600461223f565b610cbb565b34801561042a57600080fd5b506102c361043936600461211c565b610d08565b34801561044a57600080fd5b506102c361045936600461220a565b610e19565b34801561046a57600080fd5b506102db600b5481565b34801561048057600080fd5b5061028b61048f36600461223f565b610e74565b3480156104a057600080fd5b5061025e610eeb565b3480156104b557600080fd5b506102db6104c4366004611fb0565b610f79565b3480156104d557600080fd5b506102c3611000565b3480156104ea57600080fd5b506102c36104f9366004611fb0565b611054565b34801561050a57600080fd5b506006546001600160a01b031661028b565b34801561052857600080fd5b5061025e6110be565b6102c361053f36600461223f565b6110cd565b34801561055057600080fd5b506102c361055f3660046120b6565b61137d565b34801561057057600080fd5b506102db61018c81565b34801561058657600080fd5b50600c5460ff16610234565b34801561059e57600080fd5b506102c36105ad36600461203a565b611442565b3480156105be57600080fd5b506102db6105cd366004611fb0565b6001600160a01b03166000908152600e602052604090205490565b3480156105f457600080fd5b5061025e61060336600461223f565b6114c4565b34801561061457600080fd5b5061025e611634565b34801561062957600080fd5b50610234610638366004611fcb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067257600080fd5b506102c3610681366004611fb0565b611643565b60006001600160e01b031982166380ac58cd60e01b14806106b757506001600160e01b03198216635b5e139f60e01b145b806106d257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e79061249c565b80601f01602080910402602001604051908101604052809291908181526020018280546107139061249c565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080f82610e74565b9050806001600160a01b0316836001600160a01b0316141561087d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107df565b336001600160a01b038216148061089957506108998133610638565b61090b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107df565b61091583836116fc565b505050565b600f546001600160a01b0316331461093157600080fd5b6000828152600d60209081526040909120825161091592840190611e81565b600061095b60105490565b905090565b6006546001600160a01b031633146109a85760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b60008111610a045760405162461bcd60e51b8152602060048201526024808201527f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f6044820152636b656e7360e01b60648201526084016107df565b610f9c81610a1160105490565b610a1b919061240e565b1115610a695760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c790060448201526064016107df565b60005b8181101561091557610a82601080546001019055565b610a9483610a8f60105490565b61176a565b80610a9e816124d7565b915050610a6c565b610ab033826118ac565b610b165760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016107df565b6109158383836119a3565b6006546001600160a01b03163314610b695760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b8051610b7c906008906020840190611e81565b5050565b6006546001600160a01b03163314610bc85760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b600b55565b6006546001600160a01b03163314610c155760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b600c805460ff19811660ff90911615179055565b6006546001600160a01b03163314610c715760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b6040514790339082156108fc029083906000818181858888f19350505050158015610b7c573d6000803e3d6000fd5b61091583838360405180602001604052806000815250611442565b6006546001600160a01b03163314610d035760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b600a55565b6006546001600160a01b03163314610d505760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b805161018c63ffffffff82161115610db65760405162461bcd60e51b815260206004820152602360248201527f546f74616c20333936204e46547320656c696769626c6520666f7220616972646044820152620726f760ec1b60648201526084016107df565b60005b8163ffffffff168163ffffffff16101561091557610ddb601080546001019055565b610e07838263ffffffff1681518110610df657610df6612556565b6020026020010151610a8f60105490565b80610e11816124f2565b915050610db9565b6006546001600160a01b03163314610e615760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b8051610b7c906009906020840190611e81565b6000818152600260205260408120546001600160a01b0316806106d25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107df565b60098054610ef89061249c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f249061249c565b8015610f715780601f10610f4657610100808354040283529160200191610f71565b820191906000526020600020905b815481529060010190602001808311610f5457829003601f168201915b505050505081565b60006001600160a01b038216610fe45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107df565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110485760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b6110526000611b43565b565b6006546001600160a01b0316331461109c5760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546106e79061249c565b600a5481346110dc828461243a565b146111295760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016107df565b6002600754141561117c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107df565b6002600755600c5460ff166111dd5760405162461bcd60e51b815260206004820152602160248201527f4d61696e2073616c65206d7573742062652061637469766520746f206d696e746044820152601760f91b60648201526084016107df565b6000831161122d5760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e000000000060448201526064016107df565b600b5483111561128b5760405162461bcd60e51b8152602060048201526024808201527f4578636565646564206d617820746f6b656e73206d696e74656420617420612060448201526374696d6560e01b60648201526084016107df565b610f9c8361129860105490565b6112a2919061240e565b11156113165760405162461bcd60e51b815260206004820152603460248201527f507572636861736520776f756c6420657863656564206d6178206e756d62657260448201527f206f662077686974656c69737420746f6b656e7300000000000000000000000060648201526084016107df565b60005b8381101561134e5761132f601080546001019055565b61133c33610a8f60105490565b80611346816124d7565b915050611319565b50336000908152600e60205260408120805485929061136e90849061240e565b90915550506001600755505050565b6001600160a01b0382163314156113d65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107df565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61144c33836118ac565b6114b25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016107df565b6114be84848484611b95565b50505050565b6000818152600260205260409020546060906001600160a01b031661153f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016107df565b6000828152600d6020526040902080546115589061249c565b1590506115fd576000828152600d6020526040902080546115789061249c565b80601f01602080910402602001604051908101604052809291908181526020018280546115a49061249c565b80156115f15780601f106115c6576101008083540402835291602001916115f1565b820191906000526020600020905b8154815290600101906020018083116115d457829003601f168201915b50505050509050919050565b600961160883611c13565b6040516020016116199291906122e7565b6040516020818303038152906040529050919050565b919050565b6060600880546106e79061249c565b6006546001600160a01b0316331461168b5760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b6001600160a01b0381166116f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107df565b6116f981611b43565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061173182610e74565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b0382166117c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107df565b6000818152600260205260409020546001600160a01b0316156118255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107df565b6001600160a01b038216600090815260036020526040812080546001929061184e90849061240e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166119255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107df565b600061193083610e74565b9050806001600160a01b0316846001600160a01b0316148061196b5750836001600160a01b03166119608461076a565b6001600160a01b0316145b8061199b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119b682610e74565b6001600160a01b031614611a1e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107df565b6001600160a01b038216611a805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107df565b611a8b6000826116fc565b6001600160a01b0383166000908152600360205260408120805460019290611ab4908490612459565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ae290849061240e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ba08484846119a3565b611bac84848484611d29565b6114be5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016107df565b606081611c375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c615780611c4b816124d7565b9150611c5a9050600a83612426565b9150611c3b565b60008167ffffffffffffffff811115611c7c57611c7c61256c565b6040519080825280601f01601f191660200182016040528015611ca6576020820181803683370190505b5090505b841561199b57611cbb600183612459565b9150611cc8600a86612516565b611cd390603061240e565b60f81b818381518110611ce857611ce8612556565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d22600a86612426565b9450611caa565b60006001600160a01b0384163b15611e7657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d6d90339089908890889060040161238e565b602060405180830381600087803b158015611d8757600080fd5b505af1925050508015611db7575060408051601f3d908101601f19168201909252611db4918101906121ed565b60015b611e5c573d808015611de5576040519150601f19603f3d011682016040523d82523d6000602084013e611dea565b606091505b508051611e545760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016107df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061199b565b506001949350505050565b828054611e8d9061249c565b90600052602060002090601f016020900481019282611eaf5760008555611ef5565b82601f10611ec857805160ff1916838001178555611ef5565b82800160010185558215611ef5579182015b82811115611ef5578251825591602001919060010190611eda565b50611f01929150611f05565b5090565b5b80821115611f015760008155600101611f06565b600067ffffffffffffffff831115611f3457611f3461256c565b611f47601f8401601f19166020016123dd565b9050828152838383011115611f5b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461162f57600080fd5b600082601f830112611f9a57600080fd5b611fa983833560208501611f1a565b9392505050565b600060208284031215611fc257600080fd5b611fa982611f72565b60008060408385031215611fde57600080fd5b611fe783611f72565b9150611ff560208401611f72565b90509250929050565b60008060006060848603121561201357600080fd5b61201c84611f72565b925061202a60208501611f72565b9150604084013590509250925092565b6000806000806080858703121561205057600080fd5b61205985611f72565b935061206760208601611f72565b925060408501359150606085013567ffffffffffffffff81111561208a57600080fd5b8501601f8101871361209b57600080fd5b6120aa87823560208401611f1a565b91505092959194509250565b600080604083850312156120c957600080fd5b6120d283611f72565b9150602083013580151581146120e757600080fd5b809150509250929050565b6000806040838503121561210557600080fd5b61210e83611f72565b946020939093013593505050565b6000602080838503121561212f57600080fd5b823567ffffffffffffffff8082111561214757600080fd5b818501915085601f83011261215b57600080fd5b81358181111561216d5761216d61256c565b8060051b915061217e8483016123dd565b8181528481019084860184860187018a101561219957600080fd5b600095505b838610156121c3576121af81611f72565b83526001959095019491860191860161219e565b5098975050505050505050565b6000602082840312156121e257600080fd5b8135611fa981612582565b6000602082840312156121ff57600080fd5b8151611fa981612582565b60006020828403121561221c57600080fd5b813567ffffffffffffffff81111561223357600080fd5b61199b84828501611f89565b60006020828403121561225157600080fd5b5035919050565b6000806040838503121561226b57600080fd5b82359150602083013567ffffffffffffffff81111561228957600080fd5b61229585828601611f89565b9150509250929050565b600081518084526122b7816020860160208601612470565b601f01601f19169290920160200192915050565b600081516122dd818560208601612470565b9290920192915050565b600080845481600182811c91508083168061230357607f831692505b602080841082141561232357634e487b7160e01b86526022600452602486fd5b818015612337576001811461234857612375565b60ff19861689528489019650612375565b60008b81526020902060005b8681101561236d5781548b820152908501908301612354565b505084890196505b50505050505061238581856122cb565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123c0608083018461229f565b9695505050505050565b602081526000611fa9602083018461229f565b604051601f8201601f1916810167ffffffffffffffff811182821017156124065761240661256c565b604052919050565b600082198211156124215761242161252a565b500190565b60008261243557612435612540565b500490565b60008160001904831182151516156124545761245461252a565b500290565b60008282101561246b5761246b61252a565b500390565b60005b8381101561248b578181015183820152602001612473565b838111156114be5750506000910152565b600181811c908216806124b057607f821691505b602082108114156124d157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124eb576124eb61252a565b5060010190565b600063ffffffff8083168181141561250c5761250c61252a565b6001019392505050565b60008261252557612525612540565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116f957600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220402e58286fd6263888a6b3b4352f0e38edb68c37de6f24202c6e6f7dbb76d28164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80635e60a71111610118578063a22cb465116100a0578063c81cd3be1161006f578063c81cd3be146105b2578063c87b56dd146105e8578063e8a3d48514610608578063e985e9c51461061d578063f2fde38b1461066657600080fd5b8063a22cb46514610544578063acd7849014610564578063b3b2cb7a1461057a578063b88d4fde1461059257600080fd5b8063715018a6116100e7578063715018a6146104c9578063825a229e146104de5780638da5cb5b146104fe57806395d89b411461051c578063a0712d681461053157600080fd5b80635e60a7111461045e5780636352211e146104745780636c0360eb1461049457806370a08231146104a957600080fd5b80632639f4601161019b5780633ccfd60b1161016a5780633ccfd60b146103c957806342842e0e146103de57806344a0d68a146103fe57806346d362111461041e57806355f804b31461043e57600080fd5b80632639f4601461035e5780632a96c8021461037e5780632aea3d231461039e57806332cb6b0c146103b357600080fd5b806313faede6116101e257806313faede6146102c5578063162094c4146102e957806318160ddd1461030957806321ca42361461031e57806323b872dd1461033e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046121d0565b610686565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106d8565b60405161024091906123ca565b34801561027757600080fd5b5061028b61028636600461223f565b61076a565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046120f2565b610804565b005b3480156102d157600080fd5b506102db600a5481565b604051908152602001610240565b3480156102f557600080fd5b506102c3610304366004612258565b61091a565b34801561031557600080fd5b506102db610950565b34801561032a57600080fd5b506102c36103393660046120f2565b610960565b34801561034a57600080fd5b506102c3610359366004611ffe565b610aa6565b34801561036a57600080fd5b506102c361037936600461220a565b610b21565b34801561038a57600080fd5b506102c361039936600461223f565b610b80565b3480156103aa57600080fd5b506102c3610bcd565b3480156103bf57600080fd5b506102db610f9c81565b3480156103d557600080fd5b506102c3610c29565b3480156103ea57600080fd5b506102c36103f9366004611ffe565b610ca0565b34801561040a57600080fd5b506102c361041936600461223f565b610cbb565b34801561042a57600080fd5b506102c361043936600461211c565b610d08565b34801561044a57600080fd5b506102c361045936600461220a565b610e19565b34801561046a57600080fd5b506102db600b5481565b34801561048057600080fd5b5061028b61048f36600461223f565b610e74565b3480156104a057600080fd5b5061025e610eeb565b3480156104b557600080fd5b506102db6104c4366004611fb0565b610f79565b3480156104d557600080fd5b506102c3611000565b3480156104ea57600080fd5b506102c36104f9366004611fb0565b611054565b34801561050a57600080fd5b506006546001600160a01b031661028b565b34801561052857600080fd5b5061025e6110be565b6102c361053f36600461223f565b6110cd565b34801561055057600080fd5b506102c361055f3660046120b6565b61137d565b34801561057057600080fd5b506102db61018c81565b34801561058657600080fd5b50600c5460ff16610234565b34801561059e57600080fd5b506102c36105ad36600461203a565b611442565b3480156105be57600080fd5b506102db6105cd366004611fb0565b6001600160a01b03166000908152600e602052604090205490565b3480156105f457600080fd5b5061025e61060336600461223f565b6114c4565b34801561061457600080fd5b5061025e611634565b34801561062957600080fd5b50610234610638366004611fcb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067257600080fd5b506102c3610681366004611fb0565b611643565b60006001600160e01b031982166380ac58cd60e01b14806106b757506001600160e01b03198216635b5e139f60e01b145b806106d257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106e79061249c565b80601f01602080910402602001604051908101604052809291908181526020018280546107139061249c565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080f82610e74565b9050806001600160a01b0316836001600160a01b0316141561087d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107df565b336001600160a01b038216148061089957506108998133610638565b61090b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107df565b61091583836116fc565b505050565b600f546001600160a01b0316331461093157600080fd5b6000828152600d60209081526040909120825161091592840190611e81565b600061095b60105490565b905090565b6006546001600160a01b031633146109a85760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b60008111610a045760405162461bcd60e51b8152602060048201526024808201527f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f6044820152636b656e7360e01b60648201526084016107df565b610f9c81610a1160105490565b610a1b919061240e565b1115610a695760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c790060448201526064016107df565b60005b8181101561091557610a82601080546001019055565b610a9483610a8f60105490565b61176a565b80610a9e816124d7565b915050610a6c565b610ab033826118ac565b610b165760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016107df565b6109158383836119a3565b6006546001600160a01b03163314610b695760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b8051610b7c906008906020840190611e81565b5050565b6006546001600160a01b03163314610bc85760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b600b55565b6006546001600160a01b03163314610c155760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b600c805460ff19811660ff90911615179055565b6006546001600160a01b03163314610c715760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b6040514790339082156108fc029083906000818181858888f19350505050158015610b7c573d6000803e3d6000fd5b61091583838360405180602001604052806000815250611442565b6006546001600160a01b03163314610d035760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b600a55565b6006546001600160a01b03163314610d505760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b805161018c63ffffffff82161115610db65760405162461bcd60e51b815260206004820152602360248201527f546f74616c20333936204e46547320656c696769626c6520666f7220616972646044820152620726f760ec1b60648201526084016107df565b60005b8163ffffffff168163ffffffff16101561091557610ddb601080546001019055565b610e07838263ffffffff1681518110610df657610df6612556565b6020026020010151610a8f60105490565b80610e11816124f2565b915050610db9565b6006546001600160a01b03163314610e615760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b8051610b7c906009906020840190611e81565b6000818152600260205260408120546001600160a01b0316806106d25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107df565b60098054610ef89061249c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f249061249c565b8015610f715780601f10610f4657610100808354040283529160200191610f71565b820191906000526020600020905b815481529060010190602001808311610f5457829003601f168201915b505050505081565b60006001600160a01b038216610fe45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107df565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110485760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b6110526000611b43565b565b6006546001600160a01b0316331461109c5760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546106e79061249c565b600a5481346110dc828461243a565b146111295760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016107df565b6002600754141561117c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107df565b6002600755600c5460ff166111dd5760405162461bcd60e51b815260206004820152602160248201527f4d61696e2073616c65206d7573742062652061637469766520746f206d696e746044820152601760f91b60648201526084016107df565b6000831161122d5760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e000000000060448201526064016107df565b600b5483111561128b5760405162461bcd60e51b8152602060048201526024808201527f4578636565646564206d617820746f6b656e73206d696e74656420617420612060448201526374696d6560e01b60648201526084016107df565b610f9c8361129860105490565b6112a2919061240e565b11156113165760405162461bcd60e51b815260206004820152603460248201527f507572636861736520776f756c6420657863656564206d6178206e756d62657260448201527f206f662077686974656c69737420746f6b656e7300000000000000000000000060648201526084016107df565b60005b8381101561134e5761132f601080546001019055565b61133c33610a8f60105490565b80611346816124d7565b915050611319565b50336000908152600e60205260408120805485929061136e90849061240e565b90915550506001600755505050565b6001600160a01b0382163314156113d65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107df565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61144c33836118ac565b6114b25760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b60648201526084016107df565b6114be84848484611b95565b50505050565b6000818152600260205260409020546060906001600160a01b031661153f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b60648201526084016107df565b6000828152600d6020526040902080546115589061249c565b1590506115fd576000828152600d6020526040902080546115789061249c565b80601f01602080910402602001604051908101604052809291908181526020018280546115a49061249c565b80156115f15780601f106115c6576101008083540402835291602001916115f1565b820191906000526020600020905b8154815290600101906020018083116115d457829003601f168201915b50505050509050919050565b600961160883611c13565b6040516020016116199291906122e7565b6040516020818303038152906040529050919050565b919050565b6060600880546106e79061249c565b6006546001600160a01b0316331461168b5760405162461bcd60e51b8152602060048201819052602482015260008051602061259983398151915260448201526064016107df565b6001600160a01b0381166116f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107df565b6116f981611b43565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061173182610e74565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b0382166117c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107df565b6000818152600260205260409020546001600160a01b0316156118255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107df565b6001600160a01b038216600090815260036020526040812080546001929061184e90849061240e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166119255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107df565b600061193083610e74565b9050806001600160a01b0316846001600160a01b0316148061196b5750836001600160a01b03166119608461076a565b6001600160a01b0316145b8061199b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119b682610e74565b6001600160a01b031614611a1e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107df565b6001600160a01b038216611a805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107df565b611a8b6000826116fc565b6001600160a01b0383166000908152600360205260408120805460019290611ab4908490612459565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ae290849061240e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ba08484846119a3565b611bac84848484611d29565b6114be5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016107df565b606081611c375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c615780611c4b816124d7565b9150611c5a9050600a83612426565b9150611c3b565b60008167ffffffffffffffff811115611c7c57611c7c61256c565b6040519080825280601f01601f191660200182016040528015611ca6576020820181803683370190505b5090505b841561199b57611cbb600183612459565b9150611cc8600a86612516565b611cd390603061240e565b60f81b818381518110611ce857611ce8612556565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d22600a86612426565b9450611caa565b60006001600160a01b0384163b15611e7657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d6d90339089908890889060040161238e565b602060405180830381600087803b158015611d8757600080fd5b505af1925050508015611db7575060408051601f3d908101601f19168201909252611db4918101906121ed565b60015b611e5c573d808015611de5576040519150601f19603f3d011682016040523d82523d6000602084013e611dea565b606091505b508051611e545760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016107df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061199b565b506001949350505050565b828054611e8d9061249c565b90600052602060002090601f016020900481019282611eaf5760008555611ef5565b82601f10611ec857805160ff1916838001178555611ef5565b82800160010185558215611ef5579182015b82811115611ef5578251825591602001919060010190611eda565b50611f01929150611f05565b5090565b5b80821115611f015760008155600101611f06565b600067ffffffffffffffff831115611f3457611f3461256c565b611f47601f8401601f19166020016123dd565b9050828152838383011115611f5b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461162f57600080fd5b600082601f830112611f9a57600080fd5b611fa983833560208501611f1a565b9392505050565b600060208284031215611fc257600080fd5b611fa982611f72565b60008060408385031215611fde57600080fd5b611fe783611f72565b9150611ff560208401611f72565b90509250929050565b60008060006060848603121561201357600080fd5b61201c84611f72565b925061202a60208501611f72565b9150604084013590509250925092565b6000806000806080858703121561205057600080fd5b61205985611f72565b935061206760208601611f72565b925060408501359150606085013567ffffffffffffffff81111561208a57600080fd5b8501601f8101871361209b57600080fd5b6120aa87823560208401611f1a565b91505092959194509250565b600080604083850312156120c957600080fd5b6120d283611f72565b9150602083013580151581146120e757600080fd5b809150509250929050565b6000806040838503121561210557600080fd5b61210e83611f72565b946020939093013593505050565b6000602080838503121561212f57600080fd5b823567ffffffffffffffff8082111561214757600080fd5b818501915085601f83011261215b57600080fd5b81358181111561216d5761216d61256c565b8060051b915061217e8483016123dd565b8181528481019084860184860187018a101561219957600080fd5b600095505b838610156121c3576121af81611f72565b83526001959095019491860191860161219e565b5098975050505050505050565b6000602082840312156121e257600080fd5b8135611fa981612582565b6000602082840312156121ff57600080fd5b8151611fa981612582565b60006020828403121561221c57600080fd5b813567ffffffffffffffff81111561223357600080fd5b61199b84828501611f89565b60006020828403121561225157600080fd5b5035919050565b6000806040838503121561226b57600080fd5b82359150602083013567ffffffffffffffff81111561228957600080fd5b61229585828601611f89565b9150509250929050565b600081518084526122b7816020860160208601612470565b601f01601f19169290920160200192915050565b600081516122dd818560208601612470565b9290920192915050565b600080845481600182811c91508083168061230357607f831692505b602080841082141561232357634e487b7160e01b86526022600452602486fd5b818015612337576001811461234857612375565b60ff19861689528489019650612375565b60008b81526020902060005b8681101561236d5781548b820152908501908301612354565b505084890196505b50505050505061238581856122cb565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526123c0608083018461229f565b9695505050505050565b602081526000611fa9602083018461229f565b604051601f8201601f1916810167ffffffffffffffff811182821017156124065761240661256c565b604052919050565b600082198211156124215761242161252a565b500190565b60008261243557612435612540565b500490565b60008160001904831182151516156124545761245461252a565b500290565b60008282101561246b5761246b61252a565b500390565b60005b8381101561248b578181015183820152602001612473565b838111156114be5750506000910152565b600181811c908216806124b057607f821691505b602082108114156124d157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124eb576124eb61252a565b5060010190565b600063ffffffff8083168181141561250c5761250c61252a565b6001019392505050565b60008261252557612525612540565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116f957600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220402e58286fd6263888a6b3b4352f0e38edb68c37de6f24202c6e6f7dbb76d28164736f6c63430008070033

Deployed Bytecode Sourcemap

44506:5014:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29281:305;;;;;;;;;;-1:-1:-1;29281:305:0;;;;;:::i;:::-;;:::i;:::-;;;7845:14:1;;7838:22;7820:41;;7808:2;7793:18;29281:305:0;;;;;;;;30226:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31785:221::-;;;;;;;;;;-1:-1:-1;31785:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7097:55:1;;;7079:74;;7067:2;7052:18;31785:221:0;6933:226:1;31308:411:0;;;;;;;;;;-1:-1:-1;31308:411:0;;;;;:::i;:::-;;:::i;:::-;;44725:32;;;;;;;;;;;;;;;;;;;18086:25:1;;;18074:2;18059:18;44725:32:0;17940:177:1;48879:124:0;;;;;;;;;;-1:-1:-1;48879:124:0;;;;;:::i;:::-;;:::i;46908:101::-;;;;;;;;;;;;;:::i;47653:416::-;;;;;;;;;;-1:-1:-1;47653:416:0;;;;;:::i;:::-;;:::i;32675:339::-;;;;;;;;;;-1:-1:-1;32675:339:0;;;;;:::i;:::-;;:::i;48627:131::-;;;;;;;;;;-1:-1:-1;48627:131:0;;;;;:::i;:::-;;:::i;49107:100::-;;;;;;;;;;-1:-1:-1;49107:100:0;;;;;:::i;:::-;;:::i;48766:105::-;;;;;;;;;;;;;:::i;44675:41::-;;;;;;;;;;;;44712:4;44675:41;;49374:143;;;;;;;;;;;;;:::i;33085:185::-;;;;;;;;;;-1:-1:-1;33085:185:0;;;;;:::i;:::-;;:::i;49011:88::-;;;;;;;;;;-1:-1:-1;49011:88:0;;;;;:::i;:::-;;:::i;48183:328::-;;;;;;;;;;-1:-1:-1;48183:328:0;;;;;:::i;:::-;;:::i;48519:100::-;;;;;;;;;;-1:-1:-1;48519:100:0;;;;;:::i;:::-;;:::i;44764:29::-;;;;;;;;;;;;;;;;29920:239;;;;;;;;;;-1:-1:-1;29920:239:0;;;;;:::i;:::-;;:::i;44598:21::-;;;;;;;;;;;;;:::i;29650:208::-;;;;;;;;;;-1:-1:-1;29650:208:0;;;;;:::i;:::-;;:::i;8846:94::-;;;;;;;;;;;;;:::i;49215:80::-;;;;;;;;;;-1:-1:-1;49215:80:0;;;;;:::i;:::-;;:::i;8195:87::-;;;;;;;;;;-1:-1:-1;8268:6:0;;-1:-1:-1;;;;;8268:6:0;8195:87;;30395:104;;;;;;;;;;;;;:::i;45633:742::-;;;;;;:::i;:::-;;:::i;32078:295::-;;;;;;;;;;-1:-1:-1;32078:295:0;;;;;:::i;:::-;;:::i;44628:40::-;;;;;;;;;;;;44665:3;44628:40;;47192:100;;;;;;;;;;-1:-1:-1;47267:17:0;;;;47192:100;;33341:328;;;;;;;;;;-1:-1:-1;33341:328:0;;;;;:::i;:::-;;:::i;47300:116::-;;;;;;;;;;-1:-1:-1;47300:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;47393:15:0;47366:7;47393:15;;;:9;:15;;;;;;;47300:116;46444:456;;;;;;;;;;-1:-1:-1;46444:456:0;;;;;:::i;:::-;;:::i;47085:99::-;;;;;;;;;;;;;:::i;32444:164::-;;;;;;;;;;-1:-1:-1;32444:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32565:25:0;;;32541:4;32565:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32444:164;9095:192;;;;;;;;;;-1:-1:-1;9095:192:0;;;;;:::i;:::-;;:::i;29281:305::-;29383:4;-1:-1:-1;;;;;;29420:40:0;;-1:-1:-1;;;29420:40:0;;:105;;-1:-1:-1;;;;;;;29477:48:0;;-1:-1:-1;;;29477:48:0;29420:105;:158;;;-1:-1:-1;;;;;;;;;;20290:40:0;;;29542:36;29400:178;29281:305;-1:-1:-1;;29281:305:0:o;30226:100::-;30280:13;30313:5;30306:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30226:100;:::o;31785:221::-;31861:7;35268:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35268:16:0;31881:73;;;;-1:-1:-1;;;31881:73:0;;15425:2:1;31881:73:0;;;15407:21:1;15464:2;15444:18;;;15437:30;15503:34;15483:18;;;15476:62;-1:-1:-1;;;15554:18:1;;;15547:42;15606:19;;31881:73:0;;;;;;;;;-1:-1:-1;31974:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31974:24:0;;31785:221::o;31308:411::-;31389:13;31405:23;31420:7;31405:14;:23::i;:::-;31389:39;;31453:5;-1:-1:-1;;;;;31447:11:0;:2;-1:-1:-1;;;;;31447:11:0;;;31439:57;;;;-1:-1:-1;;;31439:57:0;;16609:2:1;31439:57:0;;;16591:21:1;16648:2;16628:18;;;16621:30;16687:34;16667:18;;;16660:62;-1:-1:-1;;;16738:18:1;;;16731:31;16779:19;;31439:57:0;16407:397:1;31439:57:0;7063:10;-1:-1:-1;;;;;31531:21:0;;;;:62;;-1:-1:-1;31556:37:0;31573:5;7063:10;32444:164;:::i;31556:37::-;31509:168;;;;-1:-1:-1;;;31509:168:0;;13001:2:1;31509:168:0;;;12983:21:1;13040:2;13020:18;;;13013:30;13079:34;13059:18;;;13052:62;13150:26;13130:18;;;13123:54;13194:19;;31509:168:0;12799:420:1;31509:168:0;31690:21;31699:2;31703:7;31690:8;:21::i;:::-;31378:341;31308:411;;:::o;48879:124::-;45219:6;;-1:-1:-1;;;;;45219:6:0;45205:10;:20;45197:29;;;;;;48969:19:::1;::::0;;;:9:::1;:19;::::0;;;;;;;:26;;::::1;::::0;;::::1;::::0;::::1;:::i;46908:101::-:0;46952:7;46979:22;:12;997:14;;905:114;46979:22;46972:29;;46908:101;:::o;47653:416::-;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;47762:1:::1;47748:11;:15;47740:64;;;::::0;-1:-1:-1;;;47740:64:0;;9902:2:1;47740:64:0::1;::::0;::::1;9884:21:1::0;9941:2;9921:18;;;9914:30;9980:34;9960:18;;;9953:62;-1:-1:-1;;;10031:18:1;;;10024:34;10075:19;;47740:64:0::1;9700:400:1::0;47740:64:0::1;44712:4;47848:11;47823:22;:12;997:14:::0;;905:114;47823:22:::1;:36;;;;:::i;:::-;:50;;47815:94;;;::::0;-1:-1:-1;;;47815:94:0;;10307:2:1;47815:94:0::1;::::0;::::1;10289:21:1::0;10346:2;10326:18;;;10319:30;10385:33;10365:18;;;10358:61;10436:18;;47815:94:0::1;10105:355:1::0;47815:94:0::1;47925:9;47920:142;47944:11;47940:1;:15;47920:142;;;47977:24;:12;1116:19:::0;;1134:1;1116:19;;;1027:127;47977:24:::1;48016:34;48022:3;48027:22;:12;997:14:::0;;905:114;48027:22:::1;48016:5;:34::i;:::-;47957:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47920:142;;32675:339:::0;32870:41;7063:10;32903:7;32870:18;:41::i;:::-;32862:103;;;;-1:-1:-1;;;32862:103:0;;17011:2:1;32862:103:0;;;16993:21:1;17050:2;17030:18;;;17023:30;17089:34;17069:18;;;17062:62;-1:-1:-1;;;17140:18:1;;;17133:47;17197:19;;32862:103:0;16809:413:1;32862:103:0;32978:28;32988:4;32994:2;32998:7;32978:9;:28::i;48627:131::-;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;48720:30;;::::1;::::0;:14:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48627:131:::0;:::o;49107:100::-;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;49178:10:::1;:21:::0;49107:100::o;48766:105::-;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;48846:17:::1;::::0;;-1:-1:-1;;48825:38:0;::::1;48846:17;::::0;;::::1;48845:18;48825:38;::::0;;48766:105::o;49374:143::-;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;49472:37:::1;::::0;49440:21:::1;::::0;49480:10:::1;::::0;49472:37;::::1;;;::::0;49440:21;;49422:15:::1;49472:37:::0;49422:15;49472:37;49440:21;49480:10;49472:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;33085:185:::0;33223:39;33240:4;33246:2;33250:7;33223:39;;;;;;;;;;;;:16;:39::i;49011:88::-;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;49076:4:::1;:15:::0;49011:88::o;48183:328::-;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;48274:10;;44665:3:::1;48304:15;::::0;::::1;;;48296:63;;;::::0;-1:-1:-1;;;48296:63:0;;11782:2:1;48296:63:0::1;::::0;::::1;11764:21:1::0;11821:2;11801:18;;;11794:30;11860:34;11840:18;;;11833:62;-1:-1:-1;;;11911:18:1;;;11904:33;11954:19;;48296:63:0::1;11580:399:1::0;48296:63:0::1;48375:8;48370:134;48393:1;48389:5;;:1;:5;;;48370:134;;;48416:24;:12;1116:19:::0;;1134:1;1116:19;;;1027:127;48416:24:::1;48455:37;48461:3;48465:1;48461:6;;;;;;;;;;:::i;:::-;;;;;;;48469:22;:12;997:14:::0;;905:114;48455:37:::1;48396:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48370:134;;48519:100:::0;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;48593:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;29920:239::-:0;29992:7;30028:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30028:16:0;30063:19;30055:73;;;;-1:-1:-1;;;30055:73:0;;14242:2:1;30055:73:0;;;14224:21:1;14281:2;14261:18;;;14254:30;14320:34;14300:18;;;14293:62;-1:-1:-1;;;14371:18:1;;;14364:39;14420:19;;30055:73:0;14040:405:1;44598:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29650:208::-;29722:7;-1:-1:-1;;;;;29750:19:0;;29742:74;;;;-1:-1:-1;;;29742:74:0;;13426:2:1;29742:74:0;;;13408:21:1;13465:2;13445:18;;;13438:30;13504:34;13484:18;;;13477:62;-1:-1:-1;;;13555:18:1;;;13548:40;13605:19;;29742:74:0;13224:406:1;29742:74:0;-1:-1:-1;;;;;;29834:16:0;;;;;:9;:16;;;;;;;29650:208::o;8846:94::-;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;8911:21:::1;8929:1;8911:9;:21::i;:::-;8846:94::o:0;49215:80::-;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;49276:6:::1;:11:::0;;-1:-1:-1;;;;;;49276:11:0::1;-1:-1:-1::0;;;;;49276:11:0;;;::::1;::::0;;;::::1;::::0;;49215:80::o;30395:104::-;30451:13;30484:7;30477:14;;;;;:::i;45633:742::-;45744:4;;45750:14;45378:9;45352:22;45750:14;45744:4;45352:22;:::i;:::-;:35;45330:109;;;;-1:-1:-1;;;45330:109:0;;17429:2:1;45330:109:0;;;17411:21:1;17468:2;17448:18;;;17441:30;17507:26;17487:18;;;17480:54;17551:18;;45330:109:0;17227:348:1;45330:109:0;5413:1:::1;6009:7;;:19;;6001:63;;;::::0;-1:-1:-1;;;6001:63:0;;17782:2:1;6001:63:0::1;::::0;::::1;17764:21:1::0;17821:2;17801:18;;;17794:30;17860:33;17840:18;;;17833:61;17911:18;;6001:63:0::1;17580:355:1::0;6001:63:0::1;5413:1;6142:7;:18:::0;45812:17:::2;::::0;::::2;;45804:63;;;::::0;-1:-1:-1;;;45804:63:0;;12599:2:1;45804:63:0::2;::::0;::::2;12581:21:1::0;12638:2;12618:18;;;12611:30;12677:34;12657:18;;;12650:62;-1:-1:-1;;;12728:18:1;;;12721:31;12769:19;;45804:63:0::2;12397:397:1::0;45804:63:0::2;45903:1;45886:14;:18;45878:58;;;::::0;-1:-1:-1;;;45878:58:0;;10667:2:1;45878:58:0::2;::::0;::::2;10649:21:1::0;10706:2;10686:18;;;10679:30;10745:29;10725:18;;;10718:57;10792:18;;45878:58:0::2;10465:351:1::0;45878:58:0::2;45973:10;;45955:14;:28;;45947:77;;;::::0;-1:-1:-1;;;45947:77:0;;13837:2:1;45947:77:0::2;::::0;::::2;13819:21:1::0;13876:2;13856:18;;;13849:30;13915:34;13895:18;;;13888:62;-1:-1:-1;;;13966:18:1;;;13959:34;14010:19;;45947:77:0::2;13635:400:1::0;45947:77:0::2;44712:4;46068:14;46043:22;:12;997:14:::0;;905:114;46043:22:::2;:39;;;;:::i;:::-;:53;;46035:118;;;::::0;-1:-1:-1;;;46035:118:0;;8298:2:1;46035:118:0::2;::::0;::::2;8280:21:1::0;8337:2;8317:18;;;8310:30;8376:34;8356:18;;;8349:62;8447:22;8427:18;;;8420:50;8487:19;;46035:118:0::2;8096:416:1::0;46035:118:0::2;46171:9;46166:152;46190:14;46186:1;:18;46166:152;;;46226:24;:12;1116:19:::0;;1134:1;1116:19;;;1027:127;46226:24:::2;46265:41;46271:10;46283:22;:12;997:14:::0;;905:114;46265:41:::2;46206:3:::0;::::2;::::0;::::2;:::i;:::-;;;;46166:152;;;-1:-1:-1::0;46338:10:0::2;46328:21;::::0;;;:9:::2;:21;::::0;;;;:39;;46353:14;;46328:21;:39:::2;::::0;46353:14;;46328:39:::2;:::i;:::-;::::0;;;-1:-1:-1;;5369:1:0::1;6321:7;:22:::0;-1:-1:-1;;;45633:742:0:o;32078:295::-;-1:-1:-1;;;;;32181:24:0;;7063:10;32181:24;;32173:62;;;;-1:-1:-1;;;32173:62:0;;11428:2:1;32173:62:0;;;11410:21:1;11467:2;11447:18;;;11440:30;11506:27;11486:18;;;11479:55;11551:18;;32173:62:0;11226:349:1;32173:62:0;7063:10;32248:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32248:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32248:53:0;;;;;;;;;;32317:48;;7820:41:1;;;32248:42:0;;7063:10;32317:48;;7793:18:1;32317:48:0;;;;;;;32078:295;;:::o;33341:328::-;33516:41;7063:10;33549:7;33516:18;:41::i;:::-;33508:103;;;;-1:-1:-1;;;33508:103:0;;17011:2:1;33508:103:0;;;16993:21:1;17050:2;17030:18;;;17023:30;17089:34;17069:18;;;17062:62;-1:-1:-1;;;17140:18:1;;;17133:47;17197:19;;33508:103:0;16809:413:1;33508:103:0;33622:39;33636:4;33642:2;33646:7;33655:5;33622:13;:39::i;:::-;33341:328;;;;:::o;46444:456::-;35244:4;35268:16;;;:7;:16;;;;;;46552:13;;-1:-1:-1;;;;;35268:16:0;46581:72;;;;-1:-1:-1;;;46581:72:0;;15013:2:1;46581:72:0;;;14995:21:1;15052:2;15032:18;;;15025:30;15091:34;15071:18;;;15064:62;-1:-1:-1;;;15142:18:1;;;15135:41;15193:19;;46581:72:0;14811:407:1;46581:72:0;46713:18;;;;:9;:18;;;;;46707:32;;;;;:::i;:::-;:37;;-1:-1:-1;46703:190:0;;46764:18;;;;:9;:18;;;;;46757:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46444:456;;;:::o;46703:190::-;46847:7;46856:25;46873:7;46856:16;:25::i;:::-;46830:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46816:67;;46444:456;;;:::o;46703:190::-;46444:456;;;:::o;47085:99::-;47129:13;47162:14;47155:21;;;;;:::i;9095:192::-;8268:6;;-1:-1:-1;;;;;8268:6:0;7063:10;8415:23;8407:68;;;;-1:-1:-1;;;8407:68:0;;15838:2:1;8407:68:0;;;15820:21:1;;;15857:18;;;15850:30;-1:-1:-1;;;;;;;;;;;15896:18:1;;;15889:62;15968:18;;8407:68:0;15636:356:1;8407:68:0;-1:-1:-1;;;;;9184:22:0;::::1;9176:73;;;::::0;-1:-1:-1;;;9176:73:0;;9138:2:1;9176:73:0::1;::::0;::::1;9120:21:1::0;9177:2;9157:18;;;9150:30;9216:34;9196:18;;;9189:62;-1:-1:-1;;;9267:18:1;;;9260:36;9313:19;;9176:73:0::1;8936:402:1::0;9176:73:0::1;9260:19;9270:8;9260:9;:19::i;:::-;9095:192:::0;:::o;39161:174::-;39236:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39236:29:0;-1:-1:-1;;;;;39236:29:0;;;;;;;;:24;;39290:23;39236:24;39290:14;:23::i;:::-;-1:-1:-1;;;;;39281:46:0;;;;;;;;;;;39161:174;;:::o;37157:382::-;-1:-1:-1;;;;;37237:16:0;;37229:61;;;;-1:-1:-1;;;37229:61:0;;14652:2:1;37229:61:0;;;14634:21:1;;;14671:18;;;14664:30;14730:34;14710:18;;;14703:62;14782:18;;37229:61:0;14450:356:1;37229:61:0;35244:4;35268:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35268:16:0;:30;37301:58;;;;-1:-1:-1;;;37301:58:0;;9545:2:1;37301:58:0;;;9527:21:1;9584:2;9564:18;;;9557:30;9623;9603:18;;;9596:58;9671:18;;37301:58:0;9343:352:1;37301:58:0;-1:-1:-1;;;;;37430:13:0;;;;;;:9;:13;;;;;:18;;37447:1;;37430:13;:18;;37447:1;;37430:18;:::i;:::-;;;;-1:-1:-1;;37459:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37459:21:0;-1:-1:-1;;;;;37459:21:0;;;;;;;;37498:33;;37459:16;;;37498:33;;37459:16;;37498:33;37157:382;;:::o;35473:348::-;35566:4;35268:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35268:16:0;35583:73;;;;-1:-1:-1;;;35583:73:0;;12186:2:1;35583:73:0;;;12168:21:1;12225:2;12205:18;;;12198:30;12264:34;12244:18;;;12237:62;-1:-1:-1;;;12315:18:1;;;12308:42;12367:19;;35583:73:0;11984:408:1;35583:73:0;35667:13;35683:23;35698:7;35683:14;:23::i;:::-;35667:39;;35736:5;-1:-1:-1;;;;;35725:16:0;:7;-1:-1:-1;;;;;35725:16:0;;:51;;;;35769:7;-1:-1:-1;;;;;35745:31:0;:20;35757:7;35745:11;:20::i;:::-;-1:-1:-1;;;;;35745:31:0;;35725:51;:87;;;-1:-1:-1;;;;;;32565:25:0;;;32541:4;32565:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35780:32;35717:96;35473:348;-1:-1:-1;;;;35473:348:0:o;38465:578::-;38624:4;-1:-1:-1;;;;;38597:31:0;:23;38612:7;38597:14;:23::i;:::-;-1:-1:-1;;;;;38597:31:0;;38589:85;;;;-1:-1:-1;;;38589:85:0;;16199:2:1;38589:85:0;;;16181:21:1;16238:2;16218:18;;;16211:30;16277:34;16257:18;;;16250:62;-1:-1:-1;;;16328:18:1;;;16321:39;16377:19;;38589:85:0;15997:405:1;38589:85:0;-1:-1:-1;;;;;38693:16:0;;38685:65;;;;-1:-1:-1;;;38685:65:0;;11023:2:1;38685:65:0;;;11005:21:1;11062:2;11042:18;;;11035:30;11101:34;11081:18;;;11074:62;-1:-1:-1;;;11152:18:1;;;11145:34;11196:19;;38685:65:0;10821:400:1;38685:65:0;38867:29;38884:1;38888:7;38867:8;:29::i;:::-;-1:-1:-1;;;;;38909:15:0;;;;;;:9;:15;;;;;:20;;38928:1;;38909:15;:20;;38928:1;;38909:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38940:13:0;;;;;;:9;:13;;;;;:18;;38957:1;;38940:13;:18;;38957:1;;38940:18;:::i;:::-;;;;-1:-1:-1;;38969:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38969:21:0;-1:-1:-1;;;;;38969:21:0;;;;;;;;;39008:27;;38969:16;;39008:27;;;;;;;38465:578;;;:::o;9295:173::-;9370:6;;;-1:-1:-1;;;;;9387:17:0;;;-1:-1:-1;;;;;;9387:17:0;;;;;;;9420:40;;9370:6;;;9387:17;9370:6;;9420:40;;9351:16;;9420:40;9340:128;9295:173;:::o;34551:315::-;34708:28;34718:4;34724:2;34728:7;34708:9;:28::i;:::-;34755:48;34778:4;34784:2;34788:7;34797:5;34755:22;:48::i;:::-;34747:111;;;;-1:-1:-1;;;34747:111:0;;8719:2:1;34747:111:0;;;8701:21:1;8758:2;8738:18;;;8731:30;8797:34;8777:18;;;8770:62;-1:-1:-1;;;8848:18:1;;;8841:48;8906:19;;34747:111:0;8517:414:1;26190:723:0;26246:13;26467:10;26463:53;;-1:-1:-1;;26494:10:0;;;;;;;;;;;;-1:-1:-1;;;26494:10:0;;;;;26190:723::o;26463:53::-;26541:5;26526:12;26582:78;26589:9;;26582:78;;26615:8;;;;:::i;:::-;;-1:-1:-1;26638:10:0;;-1:-1:-1;26646:2:0;26638:10;;:::i;:::-;;;26582:78;;;26670:19;26702:6;26692:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26692:17:0;;26670:39;;26720:154;26727:10;;26720:154;;26754:11;26764:1;26754:11;;:::i;:::-;;-1:-1:-1;26823:10:0;26831:2;26823:5;:10;:::i;:::-;26810:24;;:2;:24;:::i;:::-;26797:39;;26780:6;26787;26780:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;26851:11:0;26860:2;26851:11;;:::i;:::-;;;26720:154;;39900:799;40055:4;-1:-1:-1;;;;;40076:13:0;;10564:20;10612:8;40072:620;;40112:72;;-1:-1:-1;;;40112:72:0;;-1:-1:-1;;;;;40112:36:0;;;;;:72;;7063:10;;40163:4;;40169:7;;40178:5;;40112:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40112:72:0;;;;;;;;-1:-1:-1;;40112:72:0;;;;;;;;;;;;:::i;:::-;;;40108:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40354:13:0;;40350:272;;40397:60;;-1:-1:-1;;;40397:60:0;;8719:2:1;40397:60:0;;;8701:21:1;8758:2;8738:18;;;8731:30;8797:34;8777:18;;;8770:62;-1:-1:-1;;;8848:18:1;;;8841:48;8906:19;;40397:60:0;8517:414:1;40350:272:0;40572:6;40566:13;40557:6;40553:2;40549:15;40542:38;40108:529;-1:-1:-1;;;;;;40235:51:0;-1:-1:-1;;;40235:51:0;;-1:-1:-1;40228:58:0;;40072:620;-1:-1:-1;40676:4:0;39900:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:196::-;493:20;;-1:-1:-1;;;;;542:54:1;;532:65;;522:93;;611:1;608;601:12;626:221;669:5;722:3;715:4;707:6;703:17;699:27;689:55;;740:1;737;730:12;689:55;762:79;837:3;828:6;815:20;808:4;800:6;796:17;762:79;:::i;:::-;753:88;626:221;-1:-1:-1;;;626:221:1:o;852:186::-;911:6;964:2;952:9;943:7;939:23;935:32;932:52;;;980:1;977;970:12;932:52;1003:29;1022:9;1003:29;:::i;1043:260::-;1111:6;1119;1172:2;1160:9;1151:7;1147:23;1143:32;1140:52;;;1188:1;1185;1178:12;1140:52;1211:29;1230:9;1211:29;:::i;:::-;1201:39;;1259:38;1293:2;1282:9;1278:18;1259:38;:::i;:::-;1249:48;;1043:260;;;;;:::o;1308:328::-;1385:6;1393;1401;1454:2;1442:9;1433:7;1429:23;1425:32;1422:52;;;1470:1;1467;1460:12;1422:52;1493:29;1512:9;1493:29;:::i;:::-;1483:39;;1541:38;1575:2;1564:9;1560:18;1541:38;:::i;:::-;1531:48;;1626:2;1615:9;1611:18;1598:32;1588:42;;1308:328;;;;;:::o;1641:666::-;1736:6;1744;1752;1760;1813:3;1801:9;1792:7;1788:23;1784:33;1781:53;;;1830:1;1827;1820:12;1781:53;1853:29;1872:9;1853:29;:::i;:::-;1843:39;;1901:38;1935:2;1924:9;1920:18;1901:38;:::i;:::-;1891:48;;1986:2;1975:9;1971:18;1958:32;1948:42;;2041:2;2030:9;2026:18;2013:32;2068:18;2060:6;2057:30;2054:50;;;2100:1;2097;2090:12;2054:50;2123:22;;2176:4;2168:13;;2164:27;-1:-1:-1;2154:55:1;;2205:1;2202;2195:12;2154:55;2228:73;2293:7;2288:2;2275:16;2270:2;2266;2262:11;2228:73;:::i;:::-;2218:83;;;1641:666;;;;;;;:::o;2312:347::-;2377:6;2385;2438:2;2426:9;2417:7;2413:23;2409:32;2406:52;;;2454:1;2451;2444:12;2406:52;2477:29;2496:9;2477:29;:::i;:::-;2467:39;;2556:2;2545:9;2541:18;2528:32;2603:5;2596:13;2589:21;2582:5;2579:32;2569:60;;2625:1;2622;2615:12;2569:60;2648:5;2638:15;;;2312:347;;;;;:::o;2664:254::-;2732:6;2740;2793:2;2781:9;2772:7;2768:23;2764:32;2761:52;;;2809:1;2806;2799:12;2761:52;2832:29;2851:9;2832:29;:::i;:::-;2822:39;2908:2;2893:18;;;;2880:32;;-1:-1:-1;;;2664:254:1:o;2923:963::-;3007:6;3038:2;3081;3069:9;3060:7;3056:23;3052:32;3049:52;;;3097:1;3094;3087:12;3049:52;3137:9;3124:23;3166:18;3207:2;3199:6;3196:14;3193:34;;;3223:1;3220;3213:12;3193:34;3261:6;3250:9;3246:22;3236:32;;3306:7;3299:4;3295:2;3291:13;3287:27;3277:55;;3328:1;3325;3318:12;3277:55;3364:2;3351:16;3386:2;3382;3379:10;3376:36;;;3392:18;;:::i;:::-;3438:2;3435:1;3431:10;3421:20;;3461:28;3485:2;3481;3477:11;3461:28;:::i;:::-;3523:15;;;3554:12;;;;3586:11;;;3616;;;3612:20;;3609:33;-1:-1:-1;3606:53:1;;;3655:1;3652;3645:12;3606:53;3677:1;3668:10;;3687:169;3701:2;3698:1;3695:9;3687:169;;;3758:23;3777:3;3758:23;:::i;:::-;3746:36;;3719:1;3712:9;;;;;3802:12;;;;3834;;3687:169;;;-1:-1:-1;3875:5:1;2923:963;-1:-1:-1;;;;;;;;2923:963:1:o;3891:245::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;4057:9;4044:23;4076:30;4100:5;4076:30;:::i;4141:249::-;4210:6;4263:2;4251:9;4242:7;4238:23;4234:32;4231:52;;;4279:1;4276;4269:12;4231:52;4311:9;4305:16;4330:30;4354:5;4330:30;:::i;4395:322::-;4464:6;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4573:9;4560:23;4606:18;4598:6;4595:30;4592:50;;;4638:1;4635;4628:12;4592:50;4661;4703:7;4694:6;4683:9;4679:22;4661:50;:::i;4722:180::-;4781:6;4834:2;4822:9;4813:7;4809:23;4805:32;4802:52;;;4850:1;4847;4840:12;4802:52;-1:-1:-1;4873:23:1;;4722:180;-1:-1:-1;4722:180:1:o;4907:390::-;4985:6;4993;5046:2;5034:9;5025:7;5021:23;5017:32;5014:52;;;5062:1;5059;5052:12;5014:52;5098:9;5085:23;5075:33;;5159:2;5148:9;5144:18;5131:32;5186:18;5178:6;5175:30;5172:50;;;5218:1;5215;5208:12;5172:50;5241;5283:7;5274:6;5263:9;5259:22;5241:50;:::i;:::-;5231:60;;;4907:390;;;;;:::o;5302:257::-;5343:3;5381:5;5375:12;5408:6;5403:3;5396:19;5424:63;5480:6;5473:4;5468:3;5464:14;5457:4;5450:5;5446:16;5424:63;:::i;:::-;5541:2;5520:15;-1:-1:-1;;5516:29:1;5507:39;;;;5548:4;5503:50;;5302:257;-1:-1:-1;;5302:257:1:o;5564:185::-;5606:3;5644:5;5638:12;5659:52;5704:6;5699:3;5692:4;5685:5;5681:16;5659:52;:::i;:::-;5727:16;;;;;5564:185;-1:-1:-1;;5564:185:1:o;5754:1174::-;5930:3;5959:1;5992:6;5986:13;6022:3;6044:1;6072:9;6068:2;6064:18;6054:28;;6132:2;6121:9;6117:18;6154;6144:61;;6198:4;6190:6;6186:17;6176:27;;6144:61;6224:2;6272;6264:6;6261:14;6241:18;6238:38;6235:165;;;-1:-1:-1;;;6299:33:1;;6355:4;6352:1;6345:15;6385:4;6306:3;6373:17;6235:165;6416:18;6443:104;;;;6561:1;6556:320;;;;6409:467;;6443:104;-1:-1:-1;;6476:24:1;;6464:37;;6521:16;;;;-1:-1:-1;6443:104:1;;6556:320;18475:1;18468:14;;;18512:4;18499:18;;6651:1;6665:165;6679:6;6676:1;6673:13;6665:165;;;6757:14;;6744:11;;;6737:35;6800:16;;;;6694:10;;6665:165;;;6669:3;;6859:6;6854:3;6850:16;6843:23;;6409:467;;;;;;;6892:30;6918:3;6910:6;6892:30;:::i;:::-;6885:37;5754:1174;-1:-1:-1;;;;;5754:1174:1:o;7164:511::-;7358:4;-1:-1:-1;;;;;7468:2:1;7460:6;7456:15;7445:9;7438:34;7520:2;7512:6;7508:15;7503:2;7492:9;7488:18;7481:43;;7560:6;7555:2;7544:9;7540:18;7533:34;7603:3;7598:2;7587:9;7583:18;7576:31;7624:45;7664:3;7653:9;7649:19;7641:6;7624:45;:::i;:::-;7616:53;7164:511;-1:-1:-1;;;;;;7164:511:1:o;7872:219::-;8021:2;8010:9;8003:21;7984:4;8041:44;8081:2;8070:9;8066:18;8058:6;8041:44;:::i;18122:275::-;18193:2;18187:9;18258:2;18239:13;;-1:-1:-1;;18235:27:1;18223:40;;18293:18;18278:34;;18314:22;;;18275:62;18272:88;;;18340:18;;:::i;:::-;18376:2;18369:22;18122:275;;-1:-1:-1;18122:275:1:o;18528:128::-;18568:3;18599:1;18595:6;18592:1;18589:13;18586:39;;;18605:18;;:::i;:::-;-1:-1:-1;18641:9:1;;18528:128::o;18661:120::-;18701:1;18727;18717:35;;18732:18;;:::i;:::-;-1:-1:-1;18766:9:1;;18661:120::o;18786:168::-;18826:7;18892:1;18888;18884:6;18880:14;18877:1;18874:21;18869:1;18862:9;18855:17;18851:45;18848:71;;;18899:18;;:::i;:::-;-1:-1:-1;18939:9:1;;18786:168::o;18959:125::-;18999:4;19027:1;19024;19021:8;19018:34;;;19032:18;;:::i;:::-;-1:-1:-1;19069:9:1;;18959:125::o;19089:258::-;19161:1;19171:113;19185:6;19182:1;19179:13;19171:113;;;19261:11;;;19255:18;19242:11;;;19235:39;19207:2;19200:10;19171:113;;;19302:6;19299:1;19296:13;19293:48;;;-1:-1:-1;;19337:1:1;19319:16;;19312:27;19089:258::o;19352:380::-;19431:1;19427:12;;;;19474;;;19495:61;;19549:4;19541:6;19537:17;19527:27;;19495:61;19602:2;19594:6;19591:14;19571:18;19568:38;19565:161;;;19648:10;19643:3;19639:20;19636:1;19629:31;19683:4;19680:1;19673:15;19711:4;19708:1;19701:15;19565:161;;19352:380;;;:::o;19737:135::-;19776:3;-1:-1:-1;;19797:17:1;;19794:43;;;19817:18;;:::i;:::-;-1:-1:-1;19864:1:1;19853:13;;19737:135::o;19877:201::-;19915:3;19943:10;19988:2;19981:5;19977:14;20015:2;20006:7;20003:15;20000:41;;;20021:18;;:::i;:::-;20070:1;20057:15;;19877:201;-1:-1:-1;;;19877:201:1:o;20083:112::-;20115:1;20141;20131:35;;20146:18;;:::i;:::-;-1:-1:-1;20180:9:1;;20083:112::o;20200:127::-;20261:10;20256:3;20252:20;20249:1;20242:31;20292:4;20289:1;20282:15;20316:4;20313:1;20306:15;20332:127;20393:10;20388:3;20384:20;20381:1;20374:31;20424:4;20421:1;20414:15;20448:4;20445:1;20438:15;20464:127;20525:10;20520:3;20516:20;20513:1;20506:31;20556:4;20553:1;20546:15;20580:4;20577:1;20570:15;20596:127;20657:10;20652:3;20648:20;20645:1;20638:31;20688:4;20685:1;20678:15;20712:4;20709:1;20702:15;20728:131;-1:-1:-1;;;;;;20802:32:1;;20792:43;;20782:71;;20849:1;20846;20839:12

Swarm Source

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