ETH Price: $3,273.00 (-4.03%)
Gas: 7 Gwei

Token

Psilocybins LTA (Psilocybins)
 

Overview

Max Total Supply

549 Psilocybins

Holders

534

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptoyolo.eth
Balance
1 Psilocybins
0x4a256beb67f835d49ba1d068adc65f1c27f1ba8e
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:
Psilocybin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-25
*/

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.7;

contract Psilocybin is ERC721A, Ownable {
    using Strings for uint256;

    string public baseMetaUri;
    
    //General Settings
    uint16 public maxMintAmountPerTransaction = 1;
    uint16 public maxMintAmountPerWallet = 1;

    //Inventory
    uint256 public maxSupply = 550;

    //Prices
    uint256 public cost = 0 ether;

    //Utility
    bool public paused = true;
    
    constructor(string memory _baseUrl) ERC721A("Psilocybins LTA", "Psilocybins") {
        baseMetaUri = _baseUrl;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    // public
    function mint(uint256 _mintAmount) public payable {
        if (msg.sender != owner()) {
            uint256 ownerTokenCount = balanceOf(msg.sender);

            require(!paused, "Contract Paused");
            require(_mintAmount > 0, "Mint amount should be greater than 0");
            require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cant mint this amount at once"
            );
            require(
                totalSupply() + _mintAmount <= maxSupply,
                "Exceeds Max Supply"
            );
            require(
                (ownerTokenCount + _mintAmount) <= maxMintAmountPerWallet,
                "Sorry you cant mint more"
            );
            require(
                msg.value >= cost * _mintAmount, 
                "Insuffient funds");
        }
        _mintLoop(msg.sender, _mintAmount);
    }

    function gift(address _to, uint256 _mintAmount) public onlyOwner {
        _mintLoop(_to, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, 1);
        }
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
                : "";
    }

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

     //Burn functions
    function batchBurn(uint256[] memory _BurnTokenIds) public virtual {
            for(uint256 i = 0; i < _BurnTokenIds.length; i++){
                _burn(_BurnTokenIds[i], true);
            }
    }

    function burn(uint256 _BurnTokenId) public virtual{
        _burn(_BurnTokenId, true);
    }
   
    function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner {
        maxMintAmountPerTransaction = _amount;
    }

    function setMaxMintAmountPerWallet(uint16 _amount) public onlyOwner {
        maxMintAmountPerWallet = _amount;
    }

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

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseMetaUri = _newBaseURI;
    }

    function togglePause() public onlyOwner {
        paused = !paused;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseMetaUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_BurnTokenIds","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_BurnTokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","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":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a805463ffffffff191662010001179055610226600b556000600c55600d805460ff191660011790553480156200003b57600080fd5b5060405162002546380380620025468339810160408190526200005e91620001f6565b604080518082018252600f81526e5073696c6f637962696e73204c544160881b60208083019182528351808501909452600b84526a5073696c6f637962696e7360a81b908401528151919291620000b89160029162000150565b508051620000ce90600390602084019062000150565b5050600160005550620000e133620000fe565b8051620000f690600990602084019062000150565b505062000325565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015e90620002d2565b90600052602060002090601f016020900481019282620001825760008555620001cd565b82601f106200019d57805160ff1916838001178555620001cd565b82800160010185558215620001cd579182015b82811115620001cd578251825591602001919060010190620001b0565b50620001db929150620001df565b5090565b5b80821115620001db5760008155600101620001e0565b600060208083850312156200020a57600080fd5b82516001600160401b03808211156200022257600080fd5b818501915085601f8301126200023757600080fd5b8151818111156200024c576200024c6200030f565b604051601f8201601f19908116603f011681019083821181831017156200027757620002776200030f565b8160405282815288868487010111156200029057600080fd5b600093505b82841015620002b4578484018601518185018701529285019262000295565b82841115620002c65760008684830101525b98975050505050505050565b600181811c90821680620002e757607f821691505b602082108114156200030957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61221180620003356000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e681146105d2578063dc8e92ea146105f2578063e97800cb14610612578063e985e9c514610632578063f2fde38b1461067b57600080fd5b8063c87b56dd1461055c578063cbce4c971461057c578063cef117291461059c578063d5abeb01146105bc57600080fd5b8063aa5aa2f6116100e7578063aa5aa2f6146104c3578063b88d4fde146104d8578063bbb89744146104f8578063bc951b9114610526578063c4ae31681461054757600080fd5b80638da5cb5b1461045d57806395d89b411461047b578063a0712d6814610490578063a22cb465146104a357600080fd5b806342966c681161019b5780636352211e1161016a5780636352211e146103c85780636f8b44b0146103e857806370a0823114610408578063715018a614610428578063729ad39e1461043d57600080fd5b806342966c681461034e57806344a0d68a1461036e57806355f804b31461038e5780635c975abb146103ae57600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806323b872dd146103065780633ccfd60b1461032657806342842e0e1461032e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611e63565b61069b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ed565b6040516102409190611fba565b34801561027757600080fd5b5061028b610286366004611f09565b61077f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611d0b565b6107c3565b005b3480156102d157600080fd5b506102db600c5481565b604051908152602001610240565b3480156102f557600080fd5b5060015460005403600019016102db565b34801561031257600080fd5b506102c3610321366004611c18565b610851565b6102c361085c565b34801561033a57600080fd5b506102c3610349366004611c18565b6108e7565b34801561035a57600080fd5b506102c3610369366004611f09565b610902565b34801561037a57600080fd5b506102c3610389366004611f09565b61090d565b34801561039a57600080fd5b506102c36103a9366004611e9d565b61093c565b3480156103ba57600080fd5b50600d546102349060ff1681565b3480156103d457600080fd5b5061028b6103e3366004611f09565b61097d565b3480156103f457600080fd5b506102c3610403366004611f09565b61098f565b34801561041457600080fd5b506102db610423366004611bca565b6109be565b34801561043457600080fd5b506102c3610a0c565b34801561044957600080fd5b506102c3610458366004611d35565b610a42565b34801561046957600080fd5b506008546001600160a01b031661028b565b34801561048757600080fd5b5061025e610ab4565b6102c361049e366004611f09565b610ac3565b3480156104af57600080fd5b506102c36104be366004611ccf565b610d09565b3480156104cf57600080fd5b5061025e610d9f565b3480156104e457600080fd5b506102c36104f3366004611c54565b610e2d565b34801561050457600080fd5b50600a546105139061ffff1681565b60405161ffff9091168152602001610240565b34801561053257600080fd5b50600a546105139062010000900461ffff1681565b34801561055357600080fd5b506102c3610e7e565b34801561056857600080fd5b5061025e610577366004611f09565b610ebc565b34801561058857600080fd5b506102c3610597366004611d0b565b610f87565b3480156105a857600080fd5b506102c36105b7366004611ee5565b610fbb565b3480156105c857600080fd5b506102db600b5481565b3480156105de57600080fd5b506102db6105ed366004611bca565b611005565b3480156105fe57600080fd5b506102c361060d366004611dd8565b611033565b34801561061e57600080fd5b506102c361062d366004611ee5565b611075565b34801561063e57600080fd5b5061023461064d366004611be5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068757600080fd5b506102c3610696366004611bca565b6110b7565b60006001600160e01b031982166380ac58cd60e01b14806106cc57506001600160e01b03198216635b5e139f60e01b145b806106e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106fc906120e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610728906120e3565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a8261114f565b6107a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ce8261097d565b9050806001600160a01b0316836001600160a01b031614156108035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108235750610821813361064d565b155b15610841576040516367d9dca160e11b815260040160405180910390fd5b61084c838383611188565b505050565b61084c8383836111e4565b6008546001600160a01b0316331461088f5760405162461bcd60e51b815260040161088690611fcd565b60405180910390fd5b604051600090339047908381818185875af1925050503d80600081146108d1576040519150601f19603f3d011682016040523d82523d6000602084013e6108d6565b606091505b50509050806108e457600080fd5b50565b61084c83838360405180602001604052806000815250610e2d565b6108e48160016113c0565b6008546001600160a01b031633146109375760405162461bcd60e51b815260040161088690611fcd565b600c55565b6008546001600160a01b031633146109665760405162461bcd60e51b815260040161088690611fcd565b8051610979906009906020840190611abe565b5050565b600061098882611573565b5192915050565b6008546001600160a01b031633146109b95760405162461bcd60e51b815260040161088690611fcd565b600b55565b60006001600160a01b0382166109e7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a365760405162461bcd60e51b815260040161088690611fcd565b610a40600061169a565b565b6008546001600160a01b03163314610a6c5760405162461bcd60e51b815260040161088690611fcd565b60005b8151811015610979576000828281518110610a8c57610a8c612179565b60200260200101519050610aa18160016116ec565b5080610aac8161211e565b915050610a6f565b6060600380546106fc906120e3565b6008546001600160a01b03163314610cff576000610ae0336109be565b600d5490915060ff1615610b285760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd0814185d5cd959608a1b6044820152606401610886565b60008211610b845760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610886565b600a5461ffff16821115610bea5760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610886565b600b546001546000548491900360001901610c059190612055565b1115610c485760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610886565b600a5462010000900461ffff16610c5f8383612055565b1115610cad5760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610886565b81600c54610cbb9190612081565b341015610cfd5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610886565b505b6108e433826116ec565b6001600160a01b038216331415610d335760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610dac906120e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd8906120e3565b8015610e255780601f10610dfa57610100808354040283529160200191610e25565b820191906000526020600020905b815481529060010190602001808311610e0857829003601f168201915b505050505081565b610e388484846111e4565b6001600160a01b0383163b15158015610e5a5750610e58848484846116f6565b155b15610e78576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610ea85760405162461bcd60e51b815260040161088690611fcd565b600d805460ff19811660ff90911615179055565b6060610ec78261114f565b610f2b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610886565b6000610f356117ee565b90506000815111610f555760405180602001604052806000815250610f80565b80610f5f846117fd565b604051602001610f70929190611f4e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fb15760405162461bcd60e51b815260040161088690611fcd565b61097982826116ec565b6008546001600160a01b03163314610fe55760405162461bcd60e51b815260040161088690611fcd565b600a805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b03166106e7565b60005b81518110156109795761106382828151811061105457611054612179565b602002602001015160016113c0565b8061106d8161211e565b915050611036565b6008546001600160a01b0316331461109f5760405162461bcd60e51b815260040161088690611fcd565b600a805461ffff191661ffff92909216919091179055565b6008546001600160a01b031633146110e15760405162461bcd60e51b815260040161088690611fcd565b6001600160a01b0381166111465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610886565b6108e48161169a565b600081600111158015611163575060005482105b80156106e7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111ef82611573565b9050836001600160a01b031681600001516001600160a01b0316146112265760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112445750611244853361064d565b8061125f5750336112548461077f565b6001600160a01b0316145b90508061127f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112a657604051633a954ecd60e21b815260040160405180910390fd5b6112b260008487611188565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661138657600054821461138657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206121bc83398151915260405160405180910390a45b5050505050565b60006113cb83611573565b80519091508215611431576000336001600160a01b03831614806113f457506113f4823361064d565b8061140f5750336114048661077f565b6001600160a01b0316145b90508061142f57604051632ce44b5f60e11b815260040160405180910390fd5b505b61143d60008583611188565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661153b57600054821461153b57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206121bc833981519152908390a4505060018054810190555050565b604080516060810182526000808252602082018190529181019190915281806001111580156115a3575060005481105b1561168157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061167f5780516001600160a01b031615611616579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561167a579392505050565b611616565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61097982826118fa565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061172b903390899088908890600401611f7d565b602060405180830381600087803b15801561174557600080fd5b505af1925050508015611775575060408051601f3d908101601f1916820190925261177291810190611e80565b60015b6117d0573d8080156117a3576040519150601f19603f3d011682016040523d82523d6000602084013e6117a8565b606091505b5080516117c8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106fc906120e3565b6060816118215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561184b57806118358161211e565b91506118449050600a8361206d565b9150611825565b6000816001600160401b038111156118655761186561218f565b6040519080825280601f01601f19166020018201604052801561188f576020820181803683370190505b5090505b84156117e6576118a46001836120a0565b91506118b1600a86612139565b6118bc906030612055565b60f81b8183815181106118d1576118d1612179565b60200101906001600160f81b031916908160001a9053506118f3600a8661206d565b9450611893565b61097982826040518060200160405280600081525061084c83838360016000546001600160a01b03851661194057604051622e076360e81b815260040160405180910390fd5b8361195e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a0a57506001600160a01b0387163b15155b15611a81575b60405182906001600160a01b038916906000906000805160206121bc833981519152908290a4611a4960008884806001019550886116f6565b611a66576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a10578260005414611a7c57600080fd5b611ab5565b5b6040516001830192906001600160a01b038916906000906000805160206121bc833981519152908290a480821415611a82575b506000556113b9565b828054611aca906120e3565b90600052602060002090601f016020900481019282611aec5760008555611b32565b82601f10611b0557805160ff1916838001178555611b32565b82800160010185558215611b32579182015b82811115611b32578251825591602001919060010190611b17565b50611b3e929150611b42565b5090565b5b80821115611b3e5760008155600101611b43565b60006001600160401b03831115611b7057611b7061218f565b611b83601f8401601f1916602001612002565b9050828152838383011115611b9757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bc557600080fd5b919050565b600060208284031215611bdc57600080fd5b610f8082611bae565b60008060408385031215611bf857600080fd5b611c0183611bae565b9150611c0f60208401611bae565b90509250929050565b600080600060608486031215611c2d57600080fd5b611c3684611bae565b9250611c4460208501611bae565b9150604084013590509250925092565b60008060008060808587031215611c6a57600080fd5b611c7385611bae565b9350611c8160208601611bae565b92506040850135915060608501356001600160401b03811115611ca357600080fd5b8501601f81018713611cb457600080fd5b611cc387823560208401611b57565b91505092959194509250565b60008060408385031215611ce257600080fd5b611ceb83611bae565b915060208301358015158114611d0057600080fd5b809150509250929050565b60008060408385031215611d1e57600080fd5b611d2783611bae565b946020939093013593505050565b60006020808385031215611d4857600080fd5b82356001600160401b03811115611d5e57600080fd5b8301601f81018513611d6f57600080fd5b8035611d82611d7d82612032565b612002565b80828252848201915084840188868560051b8701011115611da257600080fd5b600094505b83851015611dcc57611db881611bae565b835260019490940193918501918501611da7565b50979650505050505050565b60006020808385031215611deb57600080fd5b82356001600160401b03811115611e0157600080fd5b8301601f81018513611e1257600080fd5b8035611e20611d7d82612032565b80828252848201915084840188868560051b8701011115611e4057600080fd5b600094505b83851015611dcc578035835260019490940193918501918501611e45565b600060208284031215611e7557600080fd5b8135610f80816121a5565b600060208284031215611e9257600080fd5b8151610f80816121a5565b600060208284031215611eaf57600080fd5b81356001600160401b03811115611ec557600080fd5b8201601f81018413611ed657600080fd5b6117e684823560208401611b57565b600060208284031215611ef757600080fd5b813561ffff81168114610f8057600080fd5b600060208284031215611f1b57600080fd5b5035919050565b60008151808452611f3a8160208601602086016120b7565b601f01601f19169290920160200192915050565b60008351611f608184602088016120b7565b835190830190611f748183602088016120b7565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fb090830184611f22565b9695505050505050565b602081526000610f806020830184611f22565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561202a5761202a61218f565b604052919050565b60006001600160401b0382111561204b5761204b61218f565b5060051b60200190565b600082198211156120685761206861214d565b500190565b60008261207c5761207c612163565b500490565b600081600019048311821515161561209b5761209b61214d565b500290565b6000828210156120b2576120b261214d565b500390565b60005b838110156120d25781810151838201526020016120ba565b83811115610e785750506000910152565b600181811c908216806120f757607f821691505b6020821081141561211857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121325761213261214d565b5060010190565b60008261214857612148612163565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108e457600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122098d010a49c3234754650d92864b6f455269a9a99ed5dc565c3cf38a0347bb95864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e681146105d2578063dc8e92ea146105f2578063e97800cb14610612578063e985e9c514610632578063f2fde38b1461067b57600080fd5b8063c87b56dd1461055c578063cbce4c971461057c578063cef117291461059c578063d5abeb01146105bc57600080fd5b8063aa5aa2f6116100e7578063aa5aa2f6146104c3578063b88d4fde146104d8578063bbb89744146104f8578063bc951b9114610526578063c4ae31681461054757600080fd5b80638da5cb5b1461045d57806395d89b411461047b578063a0712d6814610490578063a22cb465146104a357600080fd5b806342966c681161019b5780636352211e1161016a5780636352211e146103c85780636f8b44b0146103e857806370a0823114610408578063715018a614610428578063729ad39e1461043d57600080fd5b806342966c681461034e57806344a0d68a1461036e57806355f804b31461038e5780635c975abb146103ae57600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806323b872dd146103065780633ccfd60b1461032657806342842e0e1461032e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611e63565b61069b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ed565b6040516102409190611fba565b34801561027757600080fd5b5061028b610286366004611f09565b61077f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611d0b565b6107c3565b005b3480156102d157600080fd5b506102db600c5481565b604051908152602001610240565b3480156102f557600080fd5b5060015460005403600019016102db565b34801561031257600080fd5b506102c3610321366004611c18565b610851565b6102c361085c565b34801561033a57600080fd5b506102c3610349366004611c18565b6108e7565b34801561035a57600080fd5b506102c3610369366004611f09565b610902565b34801561037a57600080fd5b506102c3610389366004611f09565b61090d565b34801561039a57600080fd5b506102c36103a9366004611e9d565b61093c565b3480156103ba57600080fd5b50600d546102349060ff1681565b3480156103d457600080fd5b5061028b6103e3366004611f09565b61097d565b3480156103f457600080fd5b506102c3610403366004611f09565b61098f565b34801561041457600080fd5b506102db610423366004611bca565b6109be565b34801561043457600080fd5b506102c3610a0c565b34801561044957600080fd5b506102c3610458366004611d35565b610a42565b34801561046957600080fd5b506008546001600160a01b031661028b565b34801561048757600080fd5b5061025e610ab4565b6102c361049e366004611f09565b610ac3565b3480156104af57600080fd5b506102c36104be366004611ccf565b610d09565b3480156104cf57600080fd5b5061025e610d9f565b3480156104e457600080fd5b506102c36104f3366004611c54565b610e2d565b34801561050457600080fd5b50600a546105139061ffff1681565b60405161ffff9091168152602001610240565b34801561053257600080fd5b50600a546105139062010000900461ffff1681565b34801561055357600080fd5b506102c3610e7e565b34801561056857600080fd5b5061025e610577366004611f09565b610ebc565b34801561058857600080fd5b506102c3610597366004611d0b565b610f87565b3480156105a857600080fd5b506102c36105b7366004611ee5565b610fbb565b3480156105c857600080fd5b506102db600b5481565b3480156105de57600080fd5b506102db6105ed366004611bca565b611005565b3480156105fe57600080fd5b506102c361060d366004611dd8565b611033565b34801561061e57600080fd5b506102c361062d366004611ee5565b611075565b34801561063e57600080fd5b5061023461064d366004611be5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068757600080fd5b506102c3610696366004611bca565b6110b7565b60006001600160e01b031982166380ac58cd60e01b14806106cc57506001600160e01b03198216635b5e139f60e01b145b806106e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106fc906120e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610728906120e3565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a8261114f565b6107a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ce8261097d565b9050806001600160a01b0316836001600160a01b031614156108035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108235750610821813361064d565b155b15610841576040516367d9dca160e11b815260040160405180910390fd5b61084c838383611188565b505050565b61084c8383836111e4565b6008546001600160a01b0316331461088f5760405162461bcd60e51b815260040161088690611fcd565b60405180910390fd5b604051600090339047908381818185875af1925050503d80600081146108d1576040519150601f19603f3d011682016040523d82523d6000602084013e6108d6565b606091505b50509050806108e457600080fd5b50565b61084c83838360405180602001604052806000815250610e2d565b6108e48160016113c0565b6008546001600160a01b031633146109375760405162461bcd60e51b815260040161088690611fcd565b600c55565b6008546001600160a01b031633146109665760405162461bcd60e51b815260040161088690611fcd565b8051610979906009906020840190611abe565b5050565b600061098882611573565b5192915050565b6008546001600160a01b031633146109b95760405162461bcd60e51b815260040161088690611fcd565b600b55565b60006001600160a01b0382166109e7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a365760405162461bcd60e51b815260040161088690611fcd565b610a40600061169a565b565b6008546001600160a01b03163314610a6c5760405162461bcd60e51b815260040161088690611fcd565b60005b8151811015610979576000828281518110610a8c57610a8c612179565b60200260200101519050610aa18160016116ec565b5080610aac8161211e565b915050610a6f565b6060600380546106fc906120e3565b6008546001600160a01b03163314610cff576000610ae0336109be565b600d5490915060ff1615610b285760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd0814185d5cd959608a1b6044820152606401610886565b60008211610b845760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610886565b600a5461ffff16821115610bea5760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610886565b600b546001546000548491900360001901610c059190612055565b1115610c485760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610886565b600a5462010000900461ffff16610c5f8383612055565b1115610cad5760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610886565b81600c54610cbb9190612081565b341015610cfd5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610886565b505b6108e433826116ec565b6001600160a01b038216331415610d335760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610dac906120e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd8906120e3565b8015610e255780601f10610dfa57610100808354040283529160200191610e25565b820191906000526020600020905b815481529060010190602001808311610e0857829003601f168201915b505050505081565b610e388484846111e4565b6001600160a01b0383163b15158015610e5a5750610e58848484846116f6565b155b15610e78576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610ea85760405162461bcd60e51b815260040161088690611fcd565b600d805460ff19811660ff90911615179055565b6060610ec78261114f565b610f2b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610886565b6000610f356117ee565b90506000815111610f555760405180602001604052806000815250610f80565b80610f5f846117fd565b604051602001610f70929190611f4e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fb15760405162461bcd60e51b815260040161088690611fcd565b61097982826116ec565b6008546001600160a01b03163314610fe55760405162461bcd60e51b815260040161088690611fcd565b600a805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b03166106e7565b60005b81518110156109795761106382828151811061105457611054612179565b602002602001015160016113c0565b8061106d8161211e565b915050611036565b6008546001600160a01b0316331461109f5760405162461bcd60e51b815260040161088690611fcd565b600a805461ffff191661ffff92909216919091179055565b6008546001600160a01b031633146110e15760405162461bcd60e51b815260040161088690611fcd565b6001600160a01b0381166111465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610886565b6108e48161169a565b600081600111158015611163575060005482105b80156106e7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111ef82611573565b9050836001600160a01b031681600001516001600160a01b0316146112265760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112445750611244853361064d565b8061125f5750336112548461077f565b6001600160a01b0316145b90508061127f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112a657604051633a954ecd60e21b815260040160405180910390fd5b6112b260008487611188565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661138657600054821461138657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206121bc83398151915260405160405180910390a45b5050505050565b60006113cb83611573565b80519091508215611431576000336001600160a01b03831614806113f457506113f4823361064d565b8061140f5750336114048661077f565b6001600160a01b0316145b90508061142f57604051632ce44b5f60e11b815260040160405180910390fd5b505b61143d60008583611188565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661153b57600054821461153b57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206121bc833981519152908390a4505060018054810190555050565b604080516060810182526000808252602082018190529181019190915281806001111580156115a3575060005481105b1561168157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061167f5780516001600160a01b031615611616579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561167a579392505050565b611616565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61097982826118fa565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061172b903390899088908890600401611f7d565b602060405180830381600087803b15801561174557600080fd5b505af1925050508015611775575060408051601f3d908101601f1916820190925261177291810190611e80565b60015b6117d0573d8080156117a3576040519150601f19603f3d011682016040523d82523d6000602084013e6117a8565b606091505b5080516117c8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106fc906120e3565b6060816118215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561184b57806118358161211e565b91506118449050600a8361206d565b9150611825565b6000816001600160401b038111156118655761186561218f565b6040519080825280601f01601f19166020018201604052801561188f576020820181803683370190505b5090505b84156117e6576118a46001836120a0565b91506118b1600a86612139565b6118bc906030612055565b60f81b8183815181106118d1576118d1612179565b60200101906001600160f81b031916908160001a9053506118f3600a8661206d565b9450611893565b61097982826040518060200160405280600081525061084c83838360016000546001600160a01b03851661194057604051622e076360e81b815260040160405180910390fd5b8361195e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a0a57506001600160a01b0387163b15155b15611a81575b60405182906001600160a01b038916906000906000805160206121bc833981519152908290a4611a4960008884806001019550886116f6565b611a66576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a10578260005414611a7c57600080fd5b611ab5565b5b6040516001830192906001600160a01b038916906000906000805160206121bc833981519152908290a480821415611a82575b506000556113b9565b828054611aca906120e3565b90600052602060002090601f016020900481019282611aec5760008555611b32565b82601f10611b0557805160ff1916838001178555611b32565b82800160010185558215611b32579182015b82811115611b32578251825591602001919060010190611b17565b50611b3e929150611b42565b5090565b5b80821115611b3e5760008155600101611b43565b60006001600160401b03831115611b7057611b7061218f565b611b83601f8401601f1916602001612002565b9050828152838383011115611b9757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bc557600080fd5b919050565b600060208284031215611bdc57600080fd5b610f8082611bae565b60008060408385031215611bf857600080fd5b611c0183611bae565b9150611c0f60208401611bae565b90509250929050565b600080600060608486031215611c2d57600080fd5b611c3684611bae565b9250611c4460208501611bae565b9150604084013590509250925092565b60008060008060808587031215611c6a57600080fd5b611c7385611bae565b9350611c8160208601611bae565b92506040850135915060608501356001600160401b03811115611ca357600080fd5b8501601f81018713611cb457600080fd5b611cc387823560208401611b57565b91505092959194509250565b60008060408385031215611ce257600080fd5b611ceb83611bae565b915060208301358015158114611d0057600080fd5b809150509250929050565b60008060408385031215611d1e57600080fd5b611d2783611bae565b946020939093013593505050565b60006020808385031215611d4857600080fd5b82356001600160401b03811115611d5e57600080fd5b8301601f81018513611d6f57600080fd5b8035611d82611d7d82612032565b612002565b80828252848201915084840188868560051b8701011115611da257600080fd5b600094505b83851015611dcc57611db881611bae565b835260019490940193918501918501611da7565b50979650505050505050565b60006020808385031215611deb57600080fd5b82356001600160401b03811115611e0157600080fd5b8301601f81018513611e1257600080fd5b8035611e20611d7d82612032565b80828252848201915084840188868560051b8701011115611e4057600080fd5b600094505b83851015611dcc578035835260019490940193918501918501611e45565b600060208284031215611e7557600080fd5b8135610f80816121a5565b600060208284031215611e9257600080fd5b8151610f80816121a5565b600060208284031215611eaf57600080fd5b81356001600160401b03811115611ec557600080fd5b8201601f81018413611ed657600080fd5b6117e684823560208401611b57565b600060208284031215611ef757600080fd5b813561ffff81168114610f8057600080fd5b600060208284031215611f1b57600080fd5b5035919050565b60008151808452611f3a8160208601602086016120b7565b601f01601f19169290920160200192915050565b60008351611f608184602088016120b7565b835190830190611f748183602088016120b7565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fb090830184611f22565b9695505050505050565b602081526000610f806020830184611f22565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561202a5761202a61218f565b604052919050565b60006001600160401b0382111561204b5761204b61218f565b5060051b60200190565b600082198211156120685761206861214d565b500190565b60008261207c5761207c612163565b500490565b600081600019048311821515161561209b5761209b61214d565b500290565b6000828210156120b2576120b261214d565b500390565b60005b838110156120d25781810151838201526020016120ba565b83811115610e785750506000910152565b600181811c908216806120f757607f821691505b6020821081141561211857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121325761213261214d565b5060010190565b60008261214857612148612163565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108e457600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122098d010a49c3234754650d92864b6f455269a9a99ed5dc565c3cf38a0347bb95864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUrl (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44830:3878:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27045:305;;;;;;;;;;-1:-1:-1;27045:305:0;;;;;:::i;:::-;;:::i;:::-;;;7728:14:1;;7721:22;7703:41;;7691:2;7676:18;27045:305:0;;;;;;;;30158:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31661:204::-;;;;;;;;;;-1:-1:-1;31661:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7026:32:1;;;7008:51;;6996:2;6981:18;31661:204:0;6862:203:1;31224:371:0;;;;;;;;;;-1:-1:-1;31224:371:0;;;;;:::i;:::-;;:::i;:::-;;45144:29;;;;;;;;;;;;;;;;;;;11704:25:1;;;11692:2;11677:18;45144:29:0;11558:177:1;26294:303:0;;;;;;;;;;-1:-1:-1;26151:1:0;26548:12;26338:7;26532:13;:28;-1:-1:-1;;26532:46:0;26294:303;;32526:170;;;;;;;;;;-1:-1:-1;32526:170:0;;;;;:::i;:::-;;:::i;48513:192::-;;;:::i;32767:185::-;;;;;;;;;;-1:-1:-1;32767:185:0;;;;;:::i;:::-;;:::i;47715:94::-;;;;;;;;;;-1:-1:-1;47715:94:0;;;;;:::i;:::-;;:::i;47389:86::-;;;;;;;;;;-1:-1:-1;47389:86:0;;;;;:::i;:::-;;:::i;48186:108::-;;;;;;;;;;-1:-1:-1;48186:108:0;;;;;:::i;:::-;;:::i;45197:25::-;;;;;;;;;;-1:-1:-1;45197:25:0;;;;;;;;29966:125;;;;;;;;;;-1:-1:-1;29966:125:0;;;;;:::i;:::-;;:::i;48084:94::-;;;;;;;;;;-1:-1:-1;48084:94:0;;;;;:::i;:::-;;:::i;27414:206::-;;;;;;;;;;-1:-1:-1;27414:206:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;46532:234::-;;;;;;;;;;-1:-1:-1;46532:234:0;;;;;:::i;:::-;;:::i;4112:87::-;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;30327:104;;;;;;;;;;;;;:::i;45498:907::-;;;;;;:::i;:::-;;:::i;31937:287::-;;;;;;;;;;-1:-1:-1;31937:287:0;;;;;:::i;:::-;;:::i;44911:25::-;;;;;;;;;;;;;:::i;33023:369::-;;;;;;;;;;-1:-1:-1;33023:369:0;;;;;:::i;:::-;;:::i;44973:45::-;;;;;;;;;;-1:-1:-1;44973:45:0;;;;;;;;;;;11539:6:1;11527:19;;;11509:38;;11497:2;11482:18;44973:45:0;11365:188:1;45025:40:0;;;;;;;;;;-1:-1:-1;45025:40:0;;;;;;;;;;;48302:75;;;;;;;;;;;;;:::i;46894:487::-;;;;;;;;;;-1:-1:-1;46894:487:0;;;;;:::i;:::-;;:::i;46413:111::-;;;;;;;;;;-1:-1:-1;46413:111:0;;;;;:::i;:::-;;:::i;47957:119::-;;;;;;;;;;-1:-1:-1;47957:119:0;;;;;:::i;:::-;;:::i;45091:30::-;;;;;;;;;;;;;;;;45362:113;;;;;;;;;;-1:-1:-1;45362:113:0;;;;;:::i;:::-;;:::i;47506:201::-;;;;;;;;;;-1:-1:-1;47506:201:0;;;;;:::i;:::-;;:::i;47820:129::-;;;;;;;;;;-1:-1:-1;47820:129:0;;;;;:::i;:::-;;:::i;32295:164::-;;;;;;;;;;-1:-1:-1;32295:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32416:25:0;;;32392:4;32416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32295:164;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;27045:305::-;27147:4;-1:-1:-1;;;;;;27184:40:0;;-1:-1:-1;;;27184:40:0;;:105;;-1:-1:-1;;;;;;;27241:48:0;;-1:-1:-1;;;27241:48:0;27184:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;27306:36;27164:178;27045:305;-1:-1:-1;;27045:305:0:o;30158:100::-;30212:13;30245:5;30238:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30158:100;:::o;31661:204::-;31729:7;31754:16;31762:7;31754;:16::i;:::-;31749:64;;31779:34;;-1:-1:-1;;;31779:34:0;;;;;;;;;;;31749:64;-1:-1:-1;31833:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31833:24:0;;31661:204::o;31224:371::-;31297:13;31313:24;31329:7;31313:15;:24::i;:::-;31297:40;;31358:5;-1:-1:-1;;;;;31352:11:0;:2;-1:-1:-1;;;;;31352:11:0;;31348:48;;;31372:24;;-1:-1:-1;;;31372:24:0;;;;;;;;;;;31348:48;2916:10;-1:-1:-1;;;;;31413:21:0;;;;;;:63;;-1:-1:-1;31439:37:0;31456:5;2916:10;32295:164;:::i;31439:37::-;31438:38;31413:63;31409:138;;;31500:35;;-1:-1:-1;;;31500:35:0;;;;;;;;;;;31409:138;31559:28;31568:2;31572:7;31581:5;31559:8;:28::i;:::-;31286:309;31224:371;;:::o;32526:170::-;32660:28;32670:4;32676:2;32680:7;32660:9;:28::i;48513:192::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;48588:82:::1;::::0;48570:12:::1;::::0;48596:10:::1;::::0;48634:21:::1;::::0;48570:12;48588:82;48570:12;48588:82;48634:21;48596:10;48588:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48569:101;;;48689:7;48681:16;;;::::0;::::1;;48558:147;48513:192::o:0;32767:185::-;32905:39;32922:4;32928:2;32932:7;32905:39;;;;;;;;;;;;:16;:39::i;47715:94::-;47776:25;47782:12;47796:4;47776:5;:25::i;47389:86::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47452:4:::1;:15:::0;47389:86::o;48186:108::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48261:25;;::::1;::::0;:11:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48186:108:::0;:::o;29966:125::-;30030:7;30057:21;30070:7;30057:12;:21::i;:::-;:26;;29966:125;-1:-1:-1;;29966:125:0:o;48084:94::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48151:9:::1;:19:::0;48084:94::o;27414:206::-;27478:7;-1:-1:-1;;;;;27502:19:0;;27498:60;;27530:28;;-1:-1:-1;;;27530:28:0;;;;;;;;;;;27498:60;-1:-1:-1;;;;;;27584:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27584:27:0;;27414:206::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;46532:234::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46618:9:::1;46613:146;46637:17;:24;46633:1;:28;46613:146;;;46683:10;46696:17;46714:1;46696:20;;;;;;;;:::i;:::-;;;;;;;46683:33;;46731:16;46741:2;46745:1;46731:9;:16::i;:::-;-1:-1:-1::0;46663:3:0;::::1;::::0;::::1;:::i;:::-;;;;46613:146;;30327:104:::0;30383:13;30416:7;30409:14;;;;;:::i;45498:907::-;4185:6;;-1:-1:-1;;;;;4185:6:0;45563:10;:21;45559:794;;45601:23;45627:21;45637:10;45627:9;:21::i;:::-;45674:6;;45601:47;;-1:-1:-1;45674:6:0;;45673:7;45665:35;;;;-1:-1:-1;;;45665:35:0;;10870:2:1;45665:35:0;;;10852:21:1;10909:2;10889:18;;;10882:30;-1:-1:-1;;;10928:18:1;;;10921:45;10983:18;;45665:35:0;10668:339:1;45665:35:0;45737:1;45723:11;:15;45715:64;;;;-1:-1:-1;;;45715:64:0;;10465:2:1;45715:64:0;;;10447:21:1;10504:2;10484:18;;;10477:30;10543:34;10523:18;;;10516:62;-1:-1:-1;;;10594:18:1;;;10587:34;10638:19;;45715:64:0;10263:400:1;45715:64:0;45835:27;;;;45820:42;;;45794:143;;;;-1:-1:-1;;;45794:143:0;;9280:2:1;45794:143:0;;;9262:21:1;9319:2;9299:18;;;9292:30;9358:34;9338:18;;;9331:62;-1:-1:-1;;;9409:18:1;;;9402:37;9456:19;;45794:143:0;9078:403:1;45794:143:0;46009:9;;26151:1;26548:12;26338:7;26532:13;45994:11;;26532:28;;-1:-1:-1;;26532:46:0;45978:27;;;;:::i;:::-;:40;;45952:120;;;;-1:-1:-1;;;45952:120:0;;8181:2:1;45952:120:0;;;8163:21:1;8220:2;8200:18;;;8193:30;-1:-1:-1;;;8239:18:1;;;8232:48;8297:18;;45952:120:0;7979:342:1;45952:120:0;46148:22;;;;;;;46114:29;46132:11;46114:15;:29;:::i;:::-;46113:57;;46087:143;;;;-1:-1:-1;;;46087:143:0;;11214:2:1;46087:143:0;;;11196:21:1;11253:2;11233:18;;;11226:30;11292:26;11272:18;;;11265:54;11336:18;;46087:143:0;11012:348:1;46087:143:0;46291:11;46284:4;;:18;;;;:::i;:::-;46271:9;:31;;46245:96;;;;-1:-1:-1;;;46245:96:0;;8935:2:1;46245:96:0;;;8917:21:1;8974:2;8954:18;;;8947:30;-1:-1:-1;;;8993:18:1;;;8986:46;9049:18;;46245:96:0;8733:340:1;46245:96:0;45586:767;45559:794;46363:34;46373:10;46385:11;46363:9;:34::i;31937:287::-;-1:-1:-1;;;;;32036:24:0;;2916:10;32036:24;32032:54;;;32069:17;;-1:-1:-1;;;32069:17:0;;;;;;;;;;;32032:54;2916:10;32099:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32099:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32099:53:0;;;;;;;;;;32168:48;;7703:41:1;;;32099:42:0;;2916:10;32168:48;;7676:18:1;32168:48:0;;;;;;;31937:287;;:::o;44911:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33023:369::-;33190:28;33200:4;33206:2;33210:7;33190:9;:28::i;:::-;-1:-1:-1;;;;;33233:13:0;;7108:19;:23;;33233:76;;;;;33253:56;33284:4;33290:2;33294:7;33303:5;33253:30;:56::i;:::-;33252:57;33233:76;33229:156;;;33333:40;;-1:-1:-1;;;33333:40:0;;;;;;;;;;;33229:156;33023:369;;;;:::o;48302:75::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48363:6:::1;::::0;;-1:-1:-1;;48353:16:0;::::1;48363:6;::::0;;::::1;48362:7;48353:16;::::0;;48302:75::o;46894:487::-;47012:13;47065:16;47073:7;47065;:16::i;:::-;47043:113;;;;-1:-1:-1;;;47043:113:0;;10049:2:1;47043:113:0;;;10031:21:1;10088:2;10068:18;;;10061:30;10127:34;10107:18;;;10100:62;-1:-1:-1;;;10178:18:1;;;10171:45;10233:19;;47043:113:0;9847:411:1;47043:113:0;47167:28;47198:10;:8;:10::i;:::-;47167:41;;47270:1;47245:14;47239:28;:32;:134;;;;;;;;;;;;;;;;;47315:14;47331:18;:7;:16;:18::i;:::-;47298:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47239:134;47219:154;46894:487;-1:-1:-1;;;46894:487:0:o;46413:111::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46489:27:::1;46499:3;46504:11;46489:9;:27::i;47957:119::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48036:22:::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48036:32:0;;::::1;::::0;;;::::1;::::0;;47957:119::o;45362:113::-;-1:-1:-1;;;;;27798:19:0;;45420:7;27798:19;;;:12;:19;;;;;:32;-1:-1:-1;;;27798:32:0;;-1:-1:-1;;;;;27798:32:0;45447:20;27702:137;47506:201;47591:9;47587:113;47610:13;:20;47606:1;:24;47587:113;;;47655:29;47661:13;47675:1;47661:16;;;;;;;;:::i;:::-;;;;;;;47679:4;47655:5;:29::i;:::-;47632:3;;;;:::i;:::-;;;;47587:113;;47820:129;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47904:27:::1;:37:::0;;-1:-1:-1;;47904:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47820:129::o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;8528:2:1;5102:73:0::1;::::0;::::1;8510:21:1::0;8567:2;8547:18;;;8540:30;8606:34;8586:18;;;8579:62;-1:-1:-1;;;8657:18:1;;;8650:36;8703:19;;5102:73:0::1;8326:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;33647:187::-:0;33704:4;33747:7;26151:1;33728:26;;:53;;;;;33768:13;;33758:7;:23;33728:53;:98;;;;-1:-1:-1;;33799:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33799:27:0;;;;33798:28;;33647:187::o;41817:196::-;41932:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41932:29:0;-1:-1:-1;;;;;41932:29:0;;;;;;;;;41977:28;;41932:24;;41977:28;;;;;;;41817:196;;;:::o;36760:2130::-;36875:35;36913:21;36926:7;36913:12;:21::i;:::-;36875:59;;36973:4;-1:-1:-1;;;;;36951:26:0;:13;:18;;;-1:-1:-1;;;;;36951:26:0;;36947:67;;36986:28;;-1:-1:-1;;;36986:28:0;;;;;;;;;;;36947:67;37027:22;2916:10;-1:-1:-1;;;;;37053:20:0;;;;:73;;-1:-1:-1;37090:36:0;37107:4;2916:10;32295:164;:::i;37090:36::-;37053:126;;;-1:-1:-1;2916:10:0;37143:20;37155:7;37143:11;:20::i;:::-;-1:-1:-1;;;;;37143:36:0;;37053:126;37027:153;;37198:17;37193:66;;37224:35;;-1:-1:-1;;;37224:35:0;;;;;;;;;;;37193:66;-1:-1:-1;;;;;37274:16:0;;37270:52;;37299:23;;-1:-1:-1;;;37299:23:0;;;;;;;;;;;37270:52;37443:35;37460:1;37464:7;37473:4;37443:8;:35::i;:::-;-1:-1:-1;;;;;37774:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37774:31:0;;;-1:-1:-1;;;;;37774:31:0;;;-1:-1:-1;;37774:31:0;;;;;;;37820:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37820:29:0;;;;;;;;;;;37900:20;;;:11;:20;;;;;;37935:18;;-1:-1:-1;;;;;;37968:49:0;;;;-1:-1:-1;;;38001:15:0;37968:49;;;;;;;;;;38291:11;;38351:24;;;;;38394:13;;37900:20;;38351:24;;38394:13;38390:384;;38604:13;;38589:11;:28;38585:174;;38642:20;;38711:28;;;;-1:-1:-1;;;;;38685:54:0;-1:-1:-1;;;38685:54:0;-1:-1:-1;;;;;;38685:54:0;;;-1:-1:-1;;;;;38642:20:0;;38685:54;;;;38585:174;37749:1036;;;38821:7;38817:2;-1:-1:-1;;;;;38802:27:0;38811:4;-1:-1:-1;;;;;38802:27:0;-1:-1:-1;;;;;;;;;;;38802:27:0;;;;;;;;;38840:42;36864:2026;;36760:2130;;;:::o;39291:2408::-;39371:35;39409:21;39422:7;39409:12;:21::i;:::-;39458:18;;39371:59;;-1:-1:-1;39489:290:0;;;;39523:22;2916:10;-1:-1:-1;;;;;39549:20:0;;;;:77;;-1:-1:-1;39590:36:0;39607:4;2916:10;32295:164;:::i;39590:36::-;39549:134;;;-1:-1:-1;2916:10:0;39647:20;39659:7;39647:11;:20::i;:::-;-1:-1:-1;;;;;39647:36:0;;39549:134;39523:161;;39706:17;39701:66;;39732:35;;-1:-1:-1;;;39732:35:0;;;;;;;;;;;39701:66;39508:271;39489:290;39907:35;39924:1;39928:7;39937:4;39907:8;:35::i;:::-;-1:-1:-1;;;;;40272:18:0;;;40238:31;40272:18;;;:12;:18;;;;;;;;40305:24;;-1:-1:-1;;;;;;;;;;40305:24:0;;;;;;;;;-1:-1:-1;;40305:24:0;;;;40344:29;;;;;40328:1;40344:29;;;;;;;;-1:-1:-1;;40344:29:0;;;;;;;;;;40506:20;;;:11;:20;;;;;;40541;;-1:-1:-1;;;;40609:15:0;40576:49;;;-1:-1:-1;;;40576:49:0;-1:-1:-1;;;;;;40576:49:0;;;;;;;;;;40640:22;-1:-1:-1;;;40640:22:0;;;40932:11;;;40992:24;;;;;41035:13;;40272:18;;40992:24;;41035:13;41031:384;;41245:13;;41230:11;:28;41226:174;;41283:20;;41352:28;;;;-1:-1:-1;;;;;41326:54:0;-1:-1:-1;;;41326:54:0;-1:-1:-1;;;;;;41326:54:0;;;-1:-1:-1;;;;;41283:20:0;;41326:54;;;;41226:174;-1:-1:-1;;41443:35:0;;41470:7;;-1:-1:-1;41466:1:0;;-1:-1:-1;;;;;;41443:35:0;;;-1:-1:-1;;;;;;;;;;;41443:35:0;41466:1;;41443:35;-1:-1:-1;;41666:12:0;:14;;;;;;-1:-1:-1;;39291:2408:0:o;28795:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28906:7:0;;26151:1;28955:23;;:47;;;;;28989:13;;28982:4;:20;28955:47;28951:886;;;29023:31;29057:17;;;:11;:17;;;;;;;;;29023:51;;;;;;;;;-1:-1:-1;;;;;29023:51:0;;;;-1:-1:-1;;;29023:51:0;;-1:-1:-1;;;;;29023:51:0;;;;;;;;-1:-1:-1;;;29023:51:0;;;;;;;;;;;;;;29093:729;;29143:14;;-1:-1:-1;;;;;29143:28:0;;29139:101;;29207:9;28795:1109;-1:-1:-1;;;28795:1109:0:o;29139:101::-;-1:-1:-1;;;29582:6:0;29627:17;;;;:11;:17;;;;;;;;;29615:29;;;;;;;;;-1:-1:-1;;;;;29615:29:0;;;;;-1:-1:-1;;;29615:29:0;;-1:-1:-1;;;;;29615:29:0;;;;;;;;-1:-1:-1;;;29615:29:0;;;;;;;;;;;;;29675:28;29671:109;;29743:9;28795:1109;-1:-1:-1;;;28795:1109:0:o;29671:109::-;29542:261;;;29004:833;28951:886;29865:31;;-1:-1:-1;;;29865:31:0;;;;;;;;;;;5382:191;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;48385:120::-;48464:33;48474:9;48485:11;48464:9;:33::i;42505:667::-;42689:72;;-1:-1:-1;;;42689:72:0;;42668:4;;-1:-1:-1;;;;;42689:36:0;;;;;:72;;2916:10;;42740:4;;42746:7;;42755:5;;42689:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42689:72:0;;;;;;;;-1:-1:-1;;42689:72:0;;;;;;;;;;;;:::i;:::-;;;42685:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42923:13:0;;42919:235;;42969:40;;-1:-1:-1;;;42969:40:0;;;;;;;;;;;42919:235;43112:6;43106:13;43097:6;43093:2;43089:15;43082:38;42685:480;-1:-1:-1;;;;;;42808:55:0;-1:-1:-1;;;42808:55:0;;-1:-1:-1;42685:480:0;42505:667;;;;;;:::o;46774:112::-;46834:13;46867:11;46860:18;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;-1:-1:-1;;;;;900:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;33842:104;33911:27;33921:2;33925:8;33911:27;;;;;;;;;;;;34432:32;34438:2;34442:8;34452:5;34459:4;34870:20;34893:13;-1:-1:-1;;;;;34921:16:0;;34917:48;;34946:19;;-1:-1:-1;;;34946:19:0;;;;;;;;;;;34917:48;34980:13;34976:44;;35002:18;;-1:-1:-1;;;35002:18:0;;;;;;;;;;;34976:44;-1:-1:-1;;;;;35371:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35430:49:0;;-1:-1:-1;;;;;35371:44:0;;;;;;;35430:49;;;-1:-1:-1;;;;;35371:44:0;;;;;;35430:49;;;;;;;;;;;;;;;;35496:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35546:66:0;;;;-1:-1:-1;;;35596:15:0;35546:66;;;;;;;;;;35496:25;35693:23;;;35737:4;:23;;;;-1:-1:-1;;;;;;35745:13:0;;7108:19;:23;;35745:15;35733:641;;;35781:314;35812:38;;35837:12;;-1:-1:-1;;;;;35812:38:0;;;35829:1;;-1:-1:-1;;;;;;;;;;;35812:38:0;35829:1;;35812:38;35878:69;35917:1;35921:2;35925:14;;;;;;35941:5;35878:30;:69::i;:::-;35873:174;;35983:40;;-1:-1:-1;;;35983:40:0;;;;;;;;;;;35873:174;36090:3;36074:12;:19;;35781:314;;36176:12;36159:13;;:29;36155:43;;36190:8;;;36155:43;35733:641;;;36239:120;36270:40;;36295:14;;;;;-1:-1:-1;;;;;36270:40:0;;;36287:1;;-1:-1:-1;;;;;;;;;;;36270:40:0;36287:1;;36270:40;36354:3;36338:12;:19;;36239:120;;35733:641;-1:-1:-1;36388:13:0;:28;36438:60;33023:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;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:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;-1:-1:-1;;;;;1811:6:1;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:908::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;-1:-1:-1;;;;;2913:6:1;2910:30;2907:50;;;2953:1;2950;2943:12;2907:50;2976:22;;3029:4;3021:13;;3017:27;-1:-1:-1;3007:55:1;;3058:1;3055;3048:12;3007:55;3094:2;3081:16;3117:60;3133:43;3173:2;3133:43;:::i;:::-;3117:60;:::i;:::-;3199:3;3223:2;3218:3;3211:15;3251:2;3246:3;3242:12;3235:19;;3282:2;3278;3274:11;3330:7;3325:2;3319;3316:1;3312:10;3308:2;3304:19;3300:28;3297:41;3294:61;;;3351:1;3348;3341:12;3294:61;3373:1;3364:10;;3383:169;3397:2;3394:1;3391:9;3383:169;;;3454:23;3473:3;3454:23;:::i;:::-;3442:36;;3415:1;3408:9;;;;;3498:12;;;;3530;;3383:169;;;-1:-1:-1;3571:5:1;2674:908;-1:-1:-1;;;;;;;2674:908:1:o;3587:902::-;3671:6;3702:2;3745;3733:9;3724:7;3720:23;3716:32;3713:52;;;3761:1;3758;3751:12;3713:52;3801:9;3788:23;-1:-1:-1;;;;;3826:6:1;3823:30;3820:50;;;3866:1;3863;3856:12;3820:50;3889:22;;3942:4;3934:13;;3930:27;-1:-1:-1;3920:55:1;;3971:1;3968;3961:12;3920:55;4007:2;3994:16;4030:60;4046:43;4086:2;4046:43;:::i;4030:60::-;4112:3;4136:2;4131:3;4124:15;4164:2;4159:3;4155:12;4148:19;;4195:2;4191;4187:11;4243:7;4238:2;4232;4229:1;4225:10;4221:2;4217:19;4213:28;4210:41;4207:61;;;4264:1;4261;4254:12;4207:61;4286:1;4277:10;;4296:163;4310:2;4307:1;4304:9;4296:163;;;4367:17;;4355:30;;4328:1;4321:9;;;;;4405:12;;;;4437;;4296:163;;4494:245;4552:6;4605:2;4593:9;4584:7;4580:23;4576:32;4573:52;;;4621:1;4618;4611:12;4573:52;4660:9;4647:23;4679:30;4703:5;4679:30;:::i;4744:249::-;4813:6;4866:2;4854:9;4845:7;4841:23;4837:32;4834:52;;;4882:1;4879;4872:12;4834:52;4914:9;4908:16;4933:30;4957:5;4933:30;:::i;4998:450::-;5067:6;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;5176:9;5163:23;-1:-1:-1;;;;;5201:6:1;5198:30;5195:50;;;5241:1;5238;5231:12;5195:50;5264:22;;5317:4;5309:13;;5305:27;-1:-1:-1;5295:55:1;;5346:1;5343;5336:12;5295:55;5369:73;5434:7;5429:2;5416:16;5411:2;5407;5403:11;5369:73;:::i;5453:272::-;5511:6;5564:2;5552:9;5543:7;5539:23;5535:32;5532:52;;;5580:1;5577;5570:12;5532:52;5619:9;5606:23;5669:6;5662:5;5658:18;5651:5;5648:29;5638:57;;5691:1;5688;5681:12;5730:180;5789:6;5842:2;5830:9;5821:7;5817:23;5813:32;5810:52;;;5858:1;5855;5848:12;5810:52;-1:-1:-1;5881:23:1;;5730:180;-1:-1:-1;5730:180:1:o;5915:257::-;5956:3;5994:5;5988:12;6021:6;6016:3;6009:19;6037:63;6093:6;6086:4;6081:3;6077:14;6070:4;6063:5;6059:16;6037:63;:::i;:::-;6154:2;6133:15;-1:-1:-1;;6129:29:1;6120:39;;;;6161:4;6116:50;;5915:257;-1:-1:-1;;5915:257:1:o;6177:470::-;6356:3;6394:6;6388:13;6410:53;6456:6;6451:3;6444:4;6436:6;6432:17;6410:53;:::i;:::-;6526:13;;6485:16;;;;6548:57;6526:13;6485:16;6582:4;6570:17;;6548:57;:::i;:::-;6621:20;;6177:470;-1:-1:-1;;;;6177:470:1:o;7070:488::-;-1:-1:-1;;;;;7339:15:1;;;7321:34;;7391:15;;7386:2;7371:18;;7364:43;7438:2;7423:18;;7416:34;;;7486:3;7481:2;7466:18;;7459:31;;;7264:4;;7507:45;;7532:19;;7524:6;7507:45;:::i;:::-;7499:53;7070:488;-1:-1:-1;;;;;;7070:488:1:o;7755:219::-;7904:2;7893:9;7886:21;7867:4;7924:44;7964:2;7953:9;7949:18;7941:6;7924:44;:::i;9486:356::-;9688:2;9670:21;;;9707:18;;;9700:30;9766:34;9761:2;9746:18;;9739:62;9833:2;9818:18;;9486:356::o;11740:275::-;11811:2;11805:9;11876:2;11857:13;;-1:-1:-1;;11853:27:1;11841:40;;-1:-1:-1;;;;;11896:34:1;;11932:22;;;11893:62;11890:88;;;11958:18;;:::i;:::-;11994:2;11987:22;11740:275;;-1:-1:-1;11740:275:1:o;12020:183::-;12080:4;-1:-1:-1;;;;;12105:6:1;12102:30;12099:56;;;12135:18;;:::i;:::-;-1:-1:-1;12180:1:1;12176:14;12192:4;12172:25;;12020:183::o;12208:128::-;12248:3;12279:1;12275:6;12272:1;12269:13;12266:39;;;12285:18;;:::i;:::-;-1:-1:-1;12321:9:1;;12208:128::o;12341:120::-;12381:1;12407;12397:35;;12412:18;;:::i;:::-;-1:-1:-1;12446:9:1;;12341:120::o;12466:168::-;12506:7;12572:1;12568;12564:6;12560:14;12557:1;12554:21;12549:1;12542:9;12535:17;12531:45;12528:71;;;12579:18;;:::i;:::-;-1:-1:-1;12619:9:1;;12466:168::o;12639:125::-;12679:4;12707:1;12704;12701:8;12698:34;;;12712:18;;:::i;:::-;-1:-1:-1;12749:9:1;;12639:125::o;12769:258::-;12841:1;12851:113;12865:6;12862:1;12859:13;12851:113;;;12941:11;;;12935:18;12922:11;;;12915:39;12887:2;12880:10;12851:113;;;12982:6;12979:1;12976:13;12973:48;;;-1:-1:-1;;13017:1:1;12999:16;;12992:27;12769:258::o;13032:380::-;13111:1;13107:12;;;;13154;;;13175:61;;13229:4;13221:6;13217:17;13207:27;;13175:61;13282:2;13274:6;13271:14;13251:18;13248:38;13245:161;;;13328:10;13323:3;13319:20;13316:1;13309:31;13363:4;13360:1;13353:15;13391:4;13388:1;13381:15;13245:161;;13032:380;;;:::o;13417:135::-;13456:3;-1:-1:-1;;13477:17:1;;13474:43;;;13497:18;;:::i;:::-;-1:-1:-1;13544:1:1;13533:13;;13417:135::o;13557:112::-;13589:1;13615;13605:35;;13620:18;;:::i;:::-;-1:-1:-1;13654:9:1;;13557:112::o;13674:127::-;13735:10;13730:3;13726:20;13723:1;13716:31;13766:4;13763:1;13756:15;13790:4;13787:1;13780:15;13806:127;13867:10;13862:3;13858:20;13855:1;13848:31;13898:4;13895:1;13888:15;13922:4;13919:1;13912:15;13938:127;13999:10;13994:3;13990:20;13987:1;13980:31;14030:4;14027:1;14020:15;14054:4;14051:1;14044:15;14070:127;14131:10;14126:3;14122:20;14119:1;14112:31;14162:4;14159:1;14152:15;14186:4;14183:1;14176:15;14202:131;-1:-1:-1;;;;;;14276:32:1;;14266:43;;14256:71;;14323:1;14320;14313:12

Swarm Source

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