ETH Price: $3,067.37 (+3.32%)
Gas: 9 Gwei

Token

The Samurai Chicks (SCHICKS)
 

Overview

Max Total Supply

333 SCHICKS

Holders

176

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
journeytoixtlan.eth
Balance
1 SCHICKS
0x9de99ebf64757a98a37caa5b1ca3db7fa6e03b1a
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:
TheSamuraiChicks

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File contracts/OperatorFilter/IOperatorFilterRegistry.sol

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}


// File contracts/OperatorFilter/OperatorFilterer.sol


pragma solidity ^0.8.13;

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}


// File contracts/OperatorFilter/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


// File @openzeppelin/contracts/utils/introspection/[email protected]


// 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/token/ERC721/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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


// File @openzeppelin/contracts/utils/[email protected]


// 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/utils/[email protected]


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


// 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 @openzeppelin/contracts/utils/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]


// 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 erc721a/contracts/[email protected]


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

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/interfaces/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}


// File @openzeppelin/contracts/token/common/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

/******************************************************************************
    Smart contract generated on https://bueno.art

    Bueno is a suite of tools that allow artists to create generative art, 
    deploy smart contracts, and more -- all with no code.

    Bueno is not associated or affiliated with this project.
    Bueno is not liable for any bugs or minting issues associated with this contract.
/******************************************************************************/

pragma solidity ^0.8.7;

error SaleInactive();
error SoldOut();
error InvalidPrice();
error WithdrawFailed();
error InvalidQuantity();
error InvalidProof();
error InvalidBatchMint();

contract TheSamuraiChicks is ERC721A, Ownable, ERC2981, OperatorFilterer {
    uint256 public price = 0.00333 ether;
    uint256 public presalePrice = 0.00333 ether;
    uint256 public maxPerWallet = 1;
    uint256 public maxPerTransaction = 1;
    uint256 public presaleMaxPerWallet = 1;
    uint256 public presaleMaxPerTransaction = 1;

    uint256 public immutable presaleSupply = 333;
    uint256 public immutable supply = 333;

    enum SaleState {
        CLOSED,
        OPEN,
        PRESALE
    }

    SaleState public saleState = SaleState.CLOSED;

    string public _baseTokenURI;

    mapping(address => uint256) public addressMintBalance;

    address[] public withdrawAddresses = [0x8212F9B9ab1519B5Bd22B8A1CDD997F7b54B977b];
    uint256[] public withdrawPercentages = [100];

    bytes32 public merkleRoot = 0x000000000000000000000000000000000000000000;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _baseUri,
        uint96 _royaltyAmount
    ) ERC721A(_name, _symbol) OperatorFilterer(address(0), false) {
        _baseTokenURI = _baseUri;
        _setDefaultRoyalty(0x8212F9B9ab1519B5Bd22B8A1CDD997F7b54B977b, _royaltyAmount);
    }

    function mint(uint256 qty) external payable {
        if (saleState != SaleState.OPEN) revert SaleInactive();
        if (_currentIndex + (qty - 1) > supply) revert SoldOut();
        if (msg.value != price * qty) revert InvalidPrice();

        if (addressMintBalance[msg.sender] + qty > maxPerWallet) revert InvalidQuantity();
        if (qty > maxPerTransaction) revert InvalidQuantity();
        addressMintBalance[msg.sender] += qty;

        _safeMint(msg.sender, qty);

    }

    function presale(uint256 qty, bytes32[] calldata merkleProof) external payable {
        if (saleState != SaleState.PRESALE) revert SaleInactive();
        if (_currentIndex + (qty - 1) > presaleSupply) revert SoldOut();
        if (msg.value != presalePrice * qty) revert InvalidPrice();

        if (!MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender)))) { 
          revert InvalidProof();
        }
        if (addressMintBalance[msg.sender] + qty > presaleMaxPerWallet) revert InvalidQuantity();
        if (qty > presaleMaxPerTransaction) revert InvalidQuantity();
        addressMintBalance[msg.sender] += qty;

        _safeMint(msg.sender, qty);

    }

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

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

    

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

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

    function setPresalePrice(uint256 newPrice) external onlyOwner {
        presalePrice = newPrice;
    }

    function setSaleState(uint8 _state) external onlyOwner {
        saleState = SaleState(_state);
    }

    function freeMint(uint256 qty, address recipient) external onlyOwner {
        if (_currentIndex + (qty - 1) > supply) revert SoldOut();
        _safeMint(recipient, qty);
    }

    function batchMint(uint64[] calldata qtys, address[] calldata recipients)
        external
        onlyOwner
    {
        uint256 numRecipients = recipients.length;
        if (numRecipients != qtys.length) revert InvalidBatchMint();

        for (uint256 i = 0; i < numRecipients; ) {
            if ((_currentIndex - 1) + qtys[i] > supply) revert SoldOut();

            _safeMint(recipients[i], qtys[i]);

            unchecked {
                i++;
            }
        }
    }

    function setPerWalletMax(uint256 _val) external onlyOwner {
        maxPerWallet = _val;
    }

    function setPerTransactionMax(uint256 _val) external onlyOwner {
        maxPerTransaction = _val;
    }

    function setPresalePerWalletMax(uint256 _val) external onlyOwner {
        presaleMaxPerWallet = _val;
    }

    function setPresalePerTransactionMax(uint256 _val) external onlyOwner {
        presaleMaxPerTransaction = _val;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        if (!success) revert WithdrawFailed();
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        for (uint256 i; i < withdrawAddresses.length; i++) {
            _withdraw(withdrawAddresses[i], (balance * withdrawPercentages[i]) / 100);
        }
    }

    function setRoyaltyInfo(address receiver, uint96 feeBasisPoints)
        external
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeBasisPoints);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"uint96","name":"_royaltyAmount","type":"uint96"}],"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":"InvalidBatchMint","type":"error"},{"inputs":[],"name":"InvalidPrice","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"InvalidQuantity","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"SoldOut","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WithdrawFailed","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":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint64[]","name":"qtys","type":"uint64[]"},{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMaxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum TheSamuraiChicks.SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPerTransactionMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPerWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPresalePerTransactionMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPresalePerWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_state","type":"uint8"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawPercentages","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

660bd49e0b1a2000600b819055600c556001600d819055600e819055600f819055601081905561014d608081905260a0526011805460ff1916905560e0604052738212f9b9ab1519b5bd22b8a1cdd997f7b54b977b60c0908152620000689160149190620003cb565b506040805160208101909152606481526200008890601590600162000435565b5060006016553480156200009b57600080fd5b50604051620032bd380380620032bd833981016040819052620000be916200055c565b60008085856002620000d183826200069e565b506003620000e082826200069e565b5050600160005550620000f33362000274565b6daaeb6d7670e522a718067333cd4e3b15620002385780156200018657604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200016757600080fd5b505af11580156200017c573d6000803e3d6000fd5b5050505062000238565b6001600160a01b03821615620001d75760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200014c565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200021e57600080fd5b505af115801562000233573d6000803e3d6000fd5b505050505b50601290506200024983826200069e565b506200026a738212f9b9ab1519b5bd22b8a1cdd997f7b54b977b82620002c6565b505050506200076a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b03821611156200033a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620003925760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000331565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b82805482825590600052602060002090810192821562000423579160200282015b828111156200042357825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620003ec565b506200043192915062000478565b5090565b82805482825590600052602060002090810192821562000423579160200282015b8281111562000423578251829060ff1690559160200191906001019062000456565b5b8082111562000431576000815560010162000479565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620004b757600080fd5b81516001600160401b0380821115620004d457620004d46200048f565b604051601f8301601f19908116603f01168101908282118183101715620004ff57620004ff6200048f565b816040528381526020925086838588010111156200051c57600080fd5b600091505b8382101562000540578582018301518183018401529082019062000521565b83821115620005525760008385830101525b9695505050505050565b600080600080608085870312156200057357600080fd5b84516001600160401b03808211156200058b57600080fd5b6200059988838901620004a5565b95506020870151915080821115620005b057600080fd5b620005be88838901620004a5565b94506040870151915080821115620005d557600080fd5b50620005e487828801620004a5565b606087015190935090506001600160601b03811681146200060457600080fd5b939692955090935050565b600181811c908216806200062457607f821691505b6020821081036200064557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200069957600081815260208120601f850160051c81016020861015620006745750805b601f850160051c820191505b81811015620006955782815560010162000680565b5050505b505050565b81516001600160401b03811115620006ba57620006ba6200048f565b620006d281620006cb84546200060f565b846200064b565b602080601f8311600181146200070a5760008415620006f15750858301515b600019600386901b1c1916600185901b17855562000695565b600085815260208120601f198616915b828110156200073b578886015182559484019460019091019084016200071a565b50858210156200075a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a051612b11620007ac6000396000818161031901528181610c4e01528181610f76015261113001526000818161074b015261147e0152612b116000f3fe6080604052600436106102875760003560e01c806355f804b31161015a578063a0712d68116100c1578063c87b56dd1161007a578063c87b56dd146107c0578063cfc86f7b146107e0578063d86bed9b146107f5578063e341f5ca14610815578063e985e9c514610835578063f2fde38b1461087e57600080fd5b8063a0712d6814610706578063a22cb46514610719578063b3a196e914610739578063b88d4fde1461076d578063bd3b14d31461078d578063c13bd95c146107ad57600080fd5b8063715018a611610113578063715018a6146106685780637cb647591461067d5780638da5cb5b1461069d57806391b7f5ed146106bb57806395d89b41146106db578063a035b1fe146106f057600080fd5b806355f804b3146105a15780635a67de07146105c1578063603f4d52146105e15780636352211e146106085780636752656b1461062857806370a082311461064857600080fd5b80632a55205a116101fe5780633ccfd60b116101b75780633ccfd60b1461050a57806342842e0e1461051f57806344bb82791461053f578063453c23101461055f5780634b980d671461057557806350cf22c11461058b57600080fd5b80632a55205a146104285780632eb4a7ab146104675780633406c7261461047d57806334861c75146104aa5780633549345e146104ca57806339117668146104ea57600080fd5b8063081812fc11610250578063081812fc1461035d578063095ea7b3146103955780630d0ee170146103b557806312c23bd8146103d557806318160ddd146103eb57806323b872dd1461040857600080fd5b80620e7fa81461028c57806301ffc9a7146102b557806302fa7c47146102e5578063047fc9aa1461030757806306fdde031461033b575b600080fd5b34801561029857600080fd5b506102a2600c5481565b6040519081526020015b60405180910390f35b3480156102c157600080fd5b506102d56102d0366004612320565b61089e565b60405190151581526020016102ac565b3480156102f157600080fd5b50610305610300366004612359565b6108af565b005b34801561031357600080fd5b506102a27f000000000000000000000000000000000000000000000000000000000000000081565b34801561034757600080fd5b506103506108c5565b6040516102ac91906123f4565b34801561036957600080fd5b5061037d610378366004612407565b610957565b6040516001600160a01b0390911681526020016102ac565b3480156103a157600080fd5b506103056103b0366004612420565b61099b565b3480156103c157600080fd5b506103056103d0366004612407565b610a28565b3480156103e157600080fd5b506102a2600f5481565b3480156103f757600080fd5b5060015460005403600019016102a2565b34801561041457600080fd5b5061030561042336600461244a565b610a35565b34801561043457600080fd5b50610448610443366004612486565b610b96565b604080516001600160a01b0390931683526020830191909152016102ac565b34801561047357600080fd5b506102a260165481565b34801561048957600080fd5b506102a26104983660046124a8565b60136020526000908152604090205481565b3480156104b657600080fd5b506103056104c53660046124c3565b610c44565b3480156104d657600080fd5b506103056104e5366004612407565b610cae565b3480156104f657600080fd5b50610305610505366004612407565b610cbb565b34801561051657600080fd5b50610305610cc8565b34801561052b57600080fd5b5061030561053a36600461244a565b610d5e565b34801561054b57600080fd5b5061037d61055a366004612407565b610eaf565b34801561056b57600080fd5b506102a2600d5481565b34801561058157600080fd5b506102a2600e5481565b34801561059757600080fd5b506102a260105481565b3480156105ad57600080fd5b506103056105bc36600461257a565b610ed9565b3480156105cd57600080fd5b506103056105dc3660046125c2565b610eed565b3480156105ed57600080fd5b506011546105fb9060ff1681565b6040516102ac91906125fb565b34801561061457600080fd5b5061037d610623366004612407565b610f2e565b34801561063457600080fd5b50610305610643366004612667565b610f40565b34801561065457600080fd5b506102a26106633660046124a8565b61106c565b34801561067457600080fd5b506103056110ba565b34801561068957600080fd5b50610305610698366004612407565b6110ce565b3480156106a957600080fd5b506008546001600160a01b031661037d565b3480156106c757600080fd5b506103056106d6366004612407565b6110db565b3480156106e757600080fd5b506103506110e8565b3480156106fc57600080fd5b506102a2600b5481565b610305610714366004612407565b6110f7565b34801561072557600080fd5b506103056107343660046126e0565b611244565b34801561074557600080fd5b506102a27f000000000000000000000000000000000000000000000000000000000000000081565b34801561077957600080fd5b5061030561078836600461270c565b6112d9565b34801561079957600080fd5b506103056107a8366004612407565b611438565b6103056107bb366004612787565b611445565b3480156107cc57600080fd5b506103506107db366004612407565b611621565b3480156107ec57600080fd5b506103506116a5565b34801561080157600080fd5b506102a2610810366004612407565b611733565b34801561082157600080fd5b50610305610830366004612407565b611754565b34801561084157600080fd5b506102d56108503660046127d2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088a57600080fd5b506103056108993660046124a8565b611761565b60006108a9826117d7565b92915050565b6108b76117fc565b6108c18282611856565b5050565b6060600280546108d4906127fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610900906127fc565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600061096282611953565b61097f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109a682610f2e565b9050806001600160a01b0316836001600160a01b0316036109da5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109fa57506109f88133610850565b155b15610a18576040516367d9dca160e11b815260040160405180910390fd5b610a2383838361198c565b505050565b610a306117fc565b601055565b826daaeb6d7670e522a718067333cd4e3b15610b8557336001600160a01b03821603610a6b57610a668484846119e8565b610b90565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ade9190612836565b8015610b615750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b619190612836565b610b8557604051633b79c77360e21b81523360048201526024015b60405180910390fd5b610b908484846119e8565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c0b5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c2a906001600160601b031687612869565b610c34919061289e565b91519350909150505b9250929050565b610c4c6117fc565b7f0000000000000000000000000000000000000000000000000000000000000000610c786001846128b2565b600054610c8591906128c9565b1115610ca4576040516352df9fe560e01b815260040160405180910390fd5b6108c181836119f3565b610cb66117fc565b600c55565b610cc36117fc565b600d55565b610cd06117fc565b4760005b6014548110156108c157610d4c60148281548110610cf457610cf46128e1565b9060005260206000200160009054906101000a90046001600160a01b0316606460158481548110610d2757610d276128e1565b906000526020600020015485610d3d9190612869565b610d47919061289e565b611a0d565b80610d56816128f7565b915050610cd4565b826daaeb6d7670e522a718067333cd4e3b15610ea457336001600160a01b03821603610d8f57610a66848484611a81565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e029190612836565b8015610e855750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190612836565b610ea457604051633b79c77360e21b8152336004820152602401610b7c565b610b90848484611a81565b60148181548110610ebf57600080fd5b6000918252602090912001546001600160a01b0316905081565b610ee16117fc565b60126108c18282612956565b610ef56117fc565b8060ff166002811115610f0a57610f0a6125e5565b6011805460ff19166001836002811115610f2657610f266125e5565b021790555050565b6000610f3982611a9c565b5192915050565b610f486117fc565b80838114610f6957604051637e311a6560e11b815260040160405180910390fd5b60005b81811015611064577f0000000000000000000000000000000000000000000000000000000000000000868683818110610fa757610fa76128e1565b9050602002016020810190610fbc9190612a15565b6001600160401b03166001600054610fd491906128b2565b610fde91906128c9565b1115610ffd576040516352df9fe560e01b815260040160405180910390fd5b61105c848483818110611012576110126128e1565b905060200201602081019061102791906124a8565b878784818110611039576110396128e1565b905060200201602081019061104e9190612a15565b6001600160401b03166119f3565b600101610f6c565b505050505050565b60006001600160a01b038216611095576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6110c26117fc565b6110cc6000611bc3565b565b6110d66117fc565b601655565b6110e36117fc565b600b55565b6060600380546108d4906127fc565b600160115460ff166002811115611110576111106125e5565b1461112e57604051630fe219dd60e21b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061115a6001836128b2565b60005461116791906128c9565b1115611186576040516352df9fe560e01b815260040160405180910390fd5b80600b546111949190612869565b34146111b25760405162bfc92160e01b815260040160405180910390fd5b600d54336000908152601360205260409020546111d09083906128c9565b11156111ef5760405163524f409b60e01b815260040160405180910390fd5b600e548111156112125760405163524f409b60e01b815260040160405180910390fd5b33600090815260136020526040812080548392906112319084906128c9565b90915550611241905033826119f3565b50565b336001600160a01b0383160361126d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b1561142557336001600160a01b038216036113105761130b85858585611c15565b611431565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561135f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113839190612836565b80156114065750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156113e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114069190612836565b61142557604051633b79c77360e21b8152336004820152602401610b7c565b61143185858585611c15565b5050505050565b6114406117fc565b600e55565b600260115460ff16600281111561145e5761145e6125e5565b1461147c57604051630fe219dd60e21b815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006114a86001856128b2565b6000546114b591906128c9565b11156114d4576040516352df9fe560e01b815260040160405180910390fd5b82600c546114e29190612869565b34146115005760405162bfc92160e01b815260040160405180910390fd5b611575828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611c60565b611592576040516309bde33960e01b815260040160405180910390fd5b600f54336000908152601360205260409020546115b09085906128c9565b11156115cf5760405163524f409b60e01b815260040160405180910390fd5b6010548311156115f25760405163524f409b60e01b815260040160405180910390fd5b33600090815260136020526040812080548592906116119084906128c9565b90915550610a23905033846119f3565b606061162c82611953565b61164957604051630a14c4b560e41b815260040160405180910390fd5b6000611653611c76565b90508051600003611673576040518060200160405280600081525061169e565b8061167d84611c85565b60405160200161168e929190612a3e565b6040516020818303038152906040525b9392505050565b601280546116b2906127fc565b80601f01602080910402602001604051908101604052809291908181526020018280546116de906127fc565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b505050505081565b6015818154811061174357600080fd5b600091825260209091200154905081565b61175c6117fc565b600f55565b6117696117fc565b6001600160a01b0381166117ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7c565b61124181611bc3565b60006001600160e01b0319821663152a902d60e11b14806108a957506108a982611d8d565b6008546001600160a01b031633146110cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b7c565b6127106001600160601b03821611156118c45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b7c565b6001600160a01b03821661191a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b7c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b600081600111158015611967575060005482105b80156108a9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a23838383611ddd565b6108c1828260405180602001604052806000815250611fc8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a5a576040519150601f19603f3d011682016040523d82523d6000602084013e611a5f565b606091505b5050905080610a2357604051631d42c86760e21b815260040160405180910390fd5b610a23838383604051806020016040528060008152506112d9565b60408051606081018252600080825260208201819052918101919091528180600111158015611acc575060005481105b15611baa57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611ba85780516001600160a01b031615611b3f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ba3579392505050565b611b3f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c20848484611ddd565b6001600160a01b0383163b15158015611c425750611c4084848484611fd5565b155b15610b90576040516368d2bf6b60e11b815260040160405180910390fd5b600082611c6d85846120c0565b14949350505050565b6060601280546108d4906127fc565b606081600003611cac5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cd65780611cc0816128f7565b9150611ccf9050600a8361289e565b9150611cb0565b6000816001600160401b03811115611cf057611cf06124ef565b6040519080825280601f01601f191660200182016040528015611d1a576020820181803683370190505b5090505b8415611d8557611d2f6001836128b2565b9150611d3c600a86612a6d565b611d479060306128c9565b60f81b818381518110611d5c57611d5c6128e1565b60200101906001600160f81b031916908160001a905350611d7e600a8661289e565b9450611d1e565b949350505050565b60006001600160e01b031982166380ac58cd60e01b1480611dbe57506001600160e01b03198216635b5e139f60e01b145b806108a957506301ffc9a760e01b6001600160e01b03198316146108a9565b6000611de882611a9c565b9050836001600160a01b031681600001516001600160a01b031614611e1f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611e3d5750611e3d8533610850565b80611e58575033611e4d84610957565b6001600160a01b0316145b905080611e7857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611e9f57604051633a954ecd60e21b815260040160405180910390fd5b611eab6000848761198c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611f7f576000548214611f7f57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611431565b610a23838383600161210d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061200a903390899088908890600401612a81565b6020604051808303816000875af1925050508015612045575060408051601f3d908101601f1916820190925261204291810190612abe565b60015b6120a3573d808015612073576040519150601f19603f3d011682016040523d82523d6000602084013e612078565b606091505b50805160000361209b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081815b8451811015612105576120f1828683815181106120e4576120e46128e1565b60200260200101516122de565b9150806120fd816128f7565b9150506120c5565b509392505050565b6000546001600160a01b03851661213657604051622e076360e81b815260040160405180910390fd5b836000036121575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561220857506001600160a01b0387163b15155b15612290575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122596000888480600101955088611fd5565b612276576040516368d2bf6b60e11b815260040160405180910390fd5b80820361220e57826000541461228b57600080fd5b6122d5565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612291575b50600055611431565b60008183106122fa57600082815260208490526040902061169e565b5060009182526020526040902090565b6001600160e01b03198116811461124157600080fd5b60006020828403121561233257600080fd5b813561169e8161230a565b80356001600160a01b038116811461235457600080fd5b919050565b6000806040838503121561236c57600080fd5b6123758361233d565b915060208301356001600160601b038116811461239157600080fd5b809150509250929050565b60005b838110156123b757818101518382015260200161239f565b83811115610b905750506000910152565b600081518084526123e081602086016020860161239c565b601f01601f19169290920160200192915050565b60208152600061169e60208301846123c8565b60006020828403121561241957600080fd5b5035919050565b6000806040838503121561243357600080fd5b61243c8361233d565b946020939093013593505050565b60008060006060848603121561245f57600080fd5b6124688461233d565b92506124766020850161233d565b9150604084013590509250925092565b6000806040838503121561249957600080fd5b50508035926020909101359150565b6000602082840312156124ba57600080fd5b61169e8261233d565b600080604083850312156124d657600080fd5b823591506124e66020840161233d565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561251f5761251f6124ef565b604051601f8501601f19908116603f01168101908282118183101715612547576125476124ef565b8160405280935085815286868601111561256057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561258c57600080fd5b81356001600160401b038111156125a257600080fd5b8201601f810184136125b357600080fd5b611d8584823560208401612505565b6000602082840312156125d457600080fd5b813560ff8116811461169e57600080fd5b634e487b7160e01b600052602160045260246000fd5b602081016003831061261d57634e487b7160e01b600052602160045260246000fd5b91905290565b60008083601f84011261263557600080fd5b5081356001600160401b0381111561264c57600080fd5b6020830191508360208260051b8501011115610c3d57600080fd5b6000806000806040858703121561267d57600080fd5b84356001600160401b038082111561269457600080fd5b6126a088838901612623565b909650945060208701359150808211156126b957600080fd5b506126c687828801612623565b95989497509550505050565b801515811461124157600080fd5b600080604083850312156126f357600080fd5b6126fc8361233d565b91506020830135612391816126d2565b6000806000806080858703121561272257600080fd5b61272b8561233d565b93506127396020860161233d565b92506040850135915060608501356001600160401b0381111561275b57600080fd5b8501601f8101871361276c57600080fd5b61277b87823560208401612505565b91505092959194509250565b60008060006040848603121561279c57600080fd5b8335925060208401356001600160401b038111156127b957600080fd5b6127c586828701612623565b9497909650939450505050565b600080604083850312156127e557600080fd5b6127ee8361233d565b91506124e66020840161233d565b600181811c9082168061281057607f821691505b60208210810361283057634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561284857600080fd5b815161169e816126d2565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561288357612883612853565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826128ad576128ad612888565b500490565b6000828210156128c4576128c4612853565b500390565b600082198211156128dc576128dc612853565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161290957612909612853565b5060010190565b601f821115610a2357600081815260208120601f850160051c810160208610156129375750805b601f850160051c820191505b8181101561106457828155600101612943565b81516001600160401b0381111561296f5761296f6124ef565b6129838161297d84546127fc565b84612910565b602080601f8311600181146129b857600084156129a05750858301515b600019600386901b1c1916600185901b178555611064565b600085815260208120601f198616915b828110156129e7578886015182559484019460019091019084016129c8565b5085821015612a055787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612a2757600080fd5b81356001600160401b038116811461169e57600080fd5b60008351612a5081846020880161239c565b835190830190612a6481836020880161239c565b01949350505050565b600082612a7c57612a7c612888565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ab4908301846123c8565b9695505050505050565b600060208284031215612ad057600080fd5b815161169e8161230a56fea2646970667358221220a89f1234aac7fc7cd74089aeabe004890f1fa6abf1fe7f2245e660f00dc73f5964736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000125468652053616d7572616920436869636b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753434849434b53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102875760003560e01c806355f804b31161015a578063a0712d68116100c1578063c87b56dd1161007a578063c87b56dd146107c0578063cfc86f7b146107e0578063d86bed9b146107f5578063e341f5ca14610815578063e985e9c514610835578063f2fde38b1461087e57600080fd5b8063a0712d6814610706578063a22cb46514610719578063b3a196e914610739578063b88d4fde1461076d578063bd3b14d31461078d578063c13bd95c146107ad57600080fd5b8063715018a611610113578063715018a6146106685780637cb647591461067d5780638da5cb5b1461069d57806391b7f5ed146106bb57806395d89b41146106db578063a035b1fe146106f057600080fd5b806355f804b3146105a15780635a67de07146105c1578063603f4d52146105e15780636352211e146106085780636752656b1461062857806370a082311461064857600080fd5b80632a55205a116101fe5780633ccfd60b116101b75780633ccfd60b1461050a57806342842e0e1461051f57806344bb82791461053f578063453c23101461055f5780634b980d671461057557806350cf22c11461058b57600080fd5b80632a55205a146104285780632eb4a7ab146104675780633406c7261461047d57806334861c75146104aa5780633549345e146104ca57806339117668146104ea57600080fd5b8063081812fc11610250578063081812fc1461035d578063095ea7b3146103955780630d0ee170146103b557806312c23bd8146103d557806318160ddd146103eb57806323b872dd1461040857600080fd5b80620e7fa81461028c57806301ffc9a7146102b557806302fa7c47146102e5578063047fc9aa1461030757806306fdde031461033b575b600080fd5b34801561029857600080fd5b506102a2600c5481565b6040519081526020015b60405180910390f35b3480156102c157600080fd5b506102d56102d0366004612320565b61089e565b60405190151581526020016102ac565b3480156102f157600080fd5b50610305610300366004612359565b6108af565b005b34801561031357600080fd5b506102a27f000000000000000000000000000000000000000000000000000000000000014d81565b34801561034757600080fd5b506103506108c5565b6040516102ac91906123f4565b34801561036957600080fd5b5061037d610378366004612407565b610957565b6040516001600160a01b0390911681526020016102ac565b3480156103a157600080fd5b506103056103b0366004612420565b61099b565b3480156103c157600080fd5b506103056103d0366004612407565b610a28565b3480156103e157600080fd5b506102a2600f5481565b3480156103f757600080fd5b5060015460005403600019016102a2565b34801561041457600080fd5b5061030561042336600461244a565b610a35565b34801561043457600080fd5b50610448610443366004612486565b610b96565b604080516001600160a01b0390931683526020830191909152016102ac565b34801561047357600080fd5b506102a260165481565b34801561048957600080fd5b506102a26104983660046124a8565b60136020526000908152604090205481565b3480156104b657600080fd5b506103056104c53660046124c3565b610c44565b3480156104d657600080fd5b506103056104e5366004612407565b610cae565b3480156104f657600080fd5b50610305610505366004612407565b610cbb565b34801561051657600080fd5b50610305610cc8565b34801561052b57600080fd5b5061030561053a36600461244a565b610d5e565b34801561054b57600080fd5b5061037d61055a366004612407565b610eaf565b34801561056b57600080fd5b506102a2600d5481565b34801561058157600080fd5b506102a2600e5481565b34801561059757600080fd5b506102a260105481565b3480156105ad57600080fd5b506103056105bc36600461257a565b610ed9565b3480156105cd57600080fd5b506103056105dc3660046125c2565b610eed565b3480156105ed57600080fd5b506011546105fb9060ff1681565b6040516102ac91906125fb565b34801561061457600080fd5b5061037d610623366004612407565b610f2e565b34801561063457600080fd5b50610305610643366004612667565b610f40565b34801561065457600080fd5b506102a26106633660046124a8565b61106c565b34801561067457600080fd5b506103056110ba565b34801561068957600080fd5b50610305610698366004612407565b6110ce565b3480156106a957600080fd5b506008546001600160a01b031661037d565b3480156106c757600080fd5b506103056106d6366004612407565b6110db565b3480156106e757600080fd5b506103506110e8565b3480156106fc57600080fd5b506102a2600b5481565b610305610714366004612407565b6110f7565b34801561072557600080fd5b506103056107343660046126e0565b611244565b34801561074557600080fd5b506102a27f000000000000000000000000000000000000000000000000000000000000014d81565b34801561077957600080fd5b5061030561078836600461270c565b6112d9565b34801561079957600080fd5b506103056107a8366004612407565b611438565b6103056107bb366004612787565b611445565b3480156107cc57600080fd5b506103506107db366004612407565b611621565b3480156107ec57600080fd5b506103506116a5565b34801561080157600080fd5b506102a2610810366004612407565b611733565b34801561082157600080fd5b50610305610830366004612407565b611754565b34801561084157600080fd5b506102d56108503660046127d2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088a57600080fd5b506103056108993660046124a8565b611761565b60006108a9826117d7565b92915050565b6108b76117fc565b6108c18282611856565b5050565b6060600280546108d4906127fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610900906127fc565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600061096282611953565b61097f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109a682610f2e565b9050806001600160a01b0316836001600160a01b0316036109da5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109fa57506109f88133610850565b155b15610a18576040516367d9dca160e11b815260040160405180910390fd5b610a2383838361198c565b505050565b610a306117fc565b601055565b826daaeb6d7670e522a718067333cd4e3b15610b8557336001600160a01b03821603610a6b57610a668484846119e8565b610b90565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ade9190612836565b8015610b615750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b619190612836565b610b8557604051633b79c77360e21b81523360048201526024015b60405180910390fd5b610b908484846119e8565b50505050565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c0b5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c2a906001600160601b031687612869565b610c34919061289e565b91519350909150505b9250929050565b610c4c6117fc565b7f000000000000000000000000000000000000000000000000000000000000014d610c786001846128b2565b600054610c8591906128c9565b1115610ca4576040516352df9fe560e01b815260040160405180910390fd5b6108c181836119f3565b610cb66117fc565b600c55565b610cc36117fc565b600d55565b610cd06117fc565b4760005b6014548110156108c157610d4c60148281548110610cf457610cf46128e1565b9060005260206000200160009054906101000a90046001600160a01b0316606460158481548110610d2757610d276128e1565b906000526020600020015485610d3d9190612869565b610d47919061289e565b611a0d565b80610d56816128f7565b915050610cd4565b826daaeb6d7670e522a718067333cd4e3b15610ea457336001600160a01b03821603610d8f57610a66848484611a81565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e029190612836565b8015610e855750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190612836565b610ea457604051633b79c77360e21b8152336004820152602401610b7c565b610b90848484611a81565b60148181548110610ebf57600080fd5b6000918252602090912001546001600160a01b0316905081565b610ee16117fc565b60126108c18282612956565b610ef56117fc565b8060ff166002811115610f0a57610f0a6125e5565b6011805460ff19166001836002811115610f2657610f266125e5565b021790555050565b6000610f3982611a9c565b5192915050565b610f486117fc565b80838114610f6957604051637e311a6560e11b815260040160405180910390fd5b60005b81811015611064577f000000000000000000000000000000000000000000000000000000000000014d868683818110610fa757610fa76128e1565b9050602002016020810190610fbc9190612a15565b6001600160401b03166001600054610fd491906128b2565b610fde91906128c9565b1115610ffd576040516352df9fe560e01b815260040160405180910390fd5b61105c848483818110611012576110126128e1565b905060200201602081019061102791906124a8565b878784818110611039576110396128e1565b905060200201602081019061104e9190612a15565b6001600160401b03166119f3565b600101610f6c565b505050505050565b60006001600160a01b038216611095576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6110c26117fc565b6110cc6000611bc3565b565b6110d66117fc565b601655565b6110e36117fc565b600b55565b6060600380546108d4906127fc565b600160115460ff166002811115611110576111106125e5565b1461112e57604051630fe219dd60e21b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000014d61115a6001836128b2565b60005461116791906128c9565b1115611186576040516352df9fe560e01b815260040160405180910390fd5b80600b546111949190612869565b34146111b25760405162bfc92160e01b815260040160405180910390fd5b600d54336000908152601360205260409020546111d09083906128c9565b11156111ef5760405163524f409b60e01b815260040160405180910390fd5b600e548111156112125760405163524f409b60e01b815260040160405180910390fd5b33600090815260136020526040812080548392906112319084906128c9565b90915550611241905033826119f3565b50565b336001600160a01b0383160361126d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b1561142557336001600160a01b038216036113105761130b85858585611c15565b611431565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561135f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113839190612836565b80156114065750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156113e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114069190612836565b61142557604051633b79c77360e21b8152336004820152602401610b7c565b61143185858585611c15565b5050505050565b6114406117fc565b600e55565b600260115460ff16600281111561145e5761145e6125e5565b1461147c57604051630fe219dd60e21b815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000014d6114a86001856128b2565b6000546114b591906128c9565b11156114d4576040516352df9fe560e01b815260040160405180910390fd5b82600c546114e29190612869565b34146115005760405162bfc92160e01b815260040160405180910390fd5b611575828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611c60565b611592576040516309bde33960e01b815260040160405180910390fd5b600f54336000908152601360205260409020546115b09085906128c9565b11156115cf5760405163524f409b60e01b815260040160405180910390fd5b6010548311156115f25760405163524f409b60e01b815260040160405180910390fd5b33600090815260136020526040812080548592906116119084906128c9565b90915550610a23905033846119f3565b606061162c82611953565b61164957604051630a14c4b560e41b815260040160405180910390fd5b6000611653611c76565b90508051600003611673576040518060200160405280600081525061169e565b8061167d84611c85565b60405160200161168e929190612a3e565b6040516020818303038152906040525b9392505050565b601280546116b2906127fc565b80601f01602080910402602001604051908101604052809291908181526020018280546116de906127fc565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b505050505081565b6015818154811061174357600080fd5b600091825260209091200154905081565b61175c6117fc565b600f55565b6117696117fc565b6001600160a01b0381166117ce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7c565b61124181611bc3565b60006001600160e01b0319821663152a902d60e11b14806108a957506108a982611d8d565b6008546001600160a01b031633146110cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b7c565b6127106001600160601b03821611156118c45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b7c565b6001600160a01b03821661191a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b7c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b600081600111158015611967575060005482105b80156108a9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a23838383611ddd565b6108c1828260405180602001604052806000815250611fc8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a5a576040519150601f19603f3d011682016040523d82523d6000602084013e611a5f565b606091505b5050905080610a2357604051631d42c86760e21b815260040160405180910390fd5b610a23838383604051806020016040528060008152506112d9565b60408051606081018252600080825260208201819052918101919091528180600111158015611acc575060005481105b15611baa57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611ba85780516001600160a01b031615611b3f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611ba3579392505050565b611b3f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c20848484611ddd565b6001600160a01b0383163b15158015611c425750611c4084848484611fd5565b155b15610b90576040516368d2bf6b60e11b815260040160405180910390fd5b600082611c6d85846120c0565b14949350505050565b6060601280546108d4906127fc565b606081600003611cac5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cd65780611cc0816128f7565b9150611ccf9050600a8361289e565b9150611cb0565b6000816001600160401b03811115611cf057611cf06124ef565b6040519080825280601f01601f191660200182016040528015611d1a576020820181803683370190505b5090505b8415611d8557611d2f6001836128b2565b9150611d3c600a86612a6d565b611d479060306128c9565b60f81b818381518110611d5c57611d5c6128e1565b60200101906001600160f81b031916908160001a905350611d7e600a8661289e565b9450611d1e565b949350505050565b60006001600160e01b031982166380ac58cd60e01b1480611dbe57506001600160e01b03198216635b5e139f60e01b145b806108a957506301ffc9a760e01b6001600160e01b03198316146108a9565b6000611de882611a9c565b9050836001600160a01b031681600001516001600160a01b031614611e1f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611e3d5750611e3d8533610850565b80611e58575033611e4d84610957565b6001600160a01b0316145b905080611e7857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611e9f57604051633a954ecd60e21b815260040160405180910390fd5b611eab6000848761198c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611f7f576000548214611f7f57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611431565b610a23838383600161210d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061200a903390899088908890600401612a81565b6020604051808303816000875af1925050508015612045575060408051601f3d908101601f1916820190925261204291810190612abe565b60015b6120a3573d808015612073576040519150601f19603f3d011682016040523d82523d6000602084013e612078565b606091505b50805160000361209b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081815b8451811015612105576120f1828683815181106120e4576120e46128e1565b60200260200101516122de565b9150806120fd816128f7565b9150506120c5565b509392505050565b6000546001600160a01b03851661213657604051622e076360e81b815260040160405180910390fd5b836000036121575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561220857506001600160a01b0387163b15155b15612290575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122596000888480600101955088611fd5565b612276576040516368d2bf6b60e11b815260040160405180910390fd5b80820361220e57826000541461228b57600080fd5b6122d5565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612291575b50600055611431565b60008183106122fa57600082815260208490526040902061169e565b5060009182526020526040902090565b6001600160e01b03198116811461124157600080fd5b60006020828403121561233257600080fd5b813561169e8161230a565b80356001600160a01b038116811461235457600080fd5b919050565b6000806040838503121561236c57600080fd5b6123758361233d565b915060208301356001600160601b038116811461239157600080fd5b809150509250929050565b60005b838110156123b757818101518382015260200161239f565b83811115610b905750506000910152565b600081518084526123e081602086016020860161239c565b601f01601f19169290920160200192915050565b60208152600061169e60208301846123c8565b60006020828403121561241957600080fd5b5035919050565b6000806040838503121561243357600080fd5b61243c8361233d565b946020939093013593505050565b60008060006060848603121561245f57600080fd5b6124688461233d565b92506124766020850161233d565b9150604084013590509250925092565b6000806040838503121561249957600080fd5b50508035926020909101359150565b6000602082840312156124ba57600080fd5b61169e8261233d565b600080604083850312156124d657600080fd5b823591506124e66020840161233d565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561251f5761251f6124ef565b604051601f8501601f19908116603f01168101908282118183101715612547576125476124ef565b8160405280935085815286868601111561256057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561258c57600080fd5b81356001600160401b038111156125a257600080fd5b8201601f810184136125b357600080fd5b611d8584823560208401612505565b6000602082840312156125d457600080fd5b813560ff8116811461169e57600080fd5b634e487b7160e01b600052602160045260246000fd5b602081016003831061261d57634e487b7160e01b600052602160045260246000fd5b91905290565b60008083601f84011261263557600080fd5b5081356001600160401b0381111561264c57600080fd5b6020830191508360208260051b8501011115610c3d57600080fd5b6000806000806040858703121561267d57600080fd5b84356001600160401b038082111561269457600080fd5b6126a088838901612623565b909650945060208701359150808211156126b957600080fd5b506126c687828801612623565b95989497509550505050565b801515811461124157600080fd5b600080604083850312156126f357600080fd5b6126fc8361233d565b91506020830135612391816126d2565b6000806000806080858703121561272257600080fd5b61272b8561233d565b93506127396020860161233d565b92506040850135915060608501356001600160401b0381111561275b57600080fd5b8501601f8101871361276c57600080fd5b61277b87823560208401612505565b91505092959194509250565b60008060006040848603121561279c57600080fd5b8335925060208401356001600160401b038111156127b957600080fd5b6127c586828701612623565b9497909650939450505050565b600080604083850312156127e557600080fd5b6127ee8361233d565b91506124e66020840161233d565b600181811c9082168061281057607f821691505b60208210810361283057634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561284857600080fd5b815161169e816126d2565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561288357612883612853565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826128ad576128ad612888565b500490565b6000828210156128c4576128c4612853565b500390565b600082198211156128dc576128dc612853565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161290957612909612853565b5060010190565b601f821115610a2357600081815260208120601f850160051c810160208610156129375750805b601f850160051c820191505b8181101561106457828155600101612943565b81516001600160401b0381111561296f5761296f6124ef565b6129838161297d84546127fc565b84612910565b602080601f8311600181146129b857600084156129a05750858301515b600019600386901b1c1916600185901b178555611064565b600085815260208120601f198616915b828110156129e7578886015182559484019460019091019084016129c8565b5085821015612a055787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612a2757600080fd5b81356001600160401b038116811461169e57600080fd5b60008351612a5081846020880161239c565b835190830190612a6481836020880161239c565b01949350505050565b600082612a7c57612a7c612888565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ab4908301846123c8565b9695505050505050565b600060208284031215612ad057600080fd5b815161169e8161230a56fea2646970667358221220a89f1234aac7fc7cd74089aeabe004890f1fa6abf1fe7f2245e660f00dc73f5964736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000125468652053616d7572616920436869636b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753434849434b53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): The Samurai Chicks
Arg [1] : _symbol (string): SCHICKS
Arg [2] : _baseUri (string): ipfs://
Arg [3] : _royaltyAmount (uint96): 500

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 5468652053616d7572616920436869636b730000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 53434849434b5300000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 697066733a2f2f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

64584:5915:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64707:43;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;64707:43:0;;;;;;;;69627:204;;;;;;;;;;-1:-1:-1;69627:204:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;69627:204:0;582:187:1;69449:170:0;;;;;;;;;;-1:-1:-1;69449:170:0;;;;;:::i;:::-;;:::i;:::-;;64986:37;;;;;;;;;;;;;;;32738:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34241:204::-;;;;;;;;;;-1:-1:-1;34241:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2423:32:1;;;2405:51;;2393:2;2378:18;34241:204:0;2259:203:1;33804:371:0;;;;;;;;;;-1:-1:-1;33804:371:0;;;;;:::i;:::-;;:::i;68752:120::-;;;;;;;;;;-1:-1:-1;68752:120:0;;;;;:::i;:::-;;:::i;64838:38::-;;;;;;;;;;;;;;;;28874:303;;;;;;;;;;-1:-1:-1;67140:1:0;29128:12;28918:7;29112:13;:28;-1:-1:-1;;29112:46:0;28874:303;;69839:197;;;;;;;;;;-1:-1:-1;69839:197:0;;;;;:::i;:::-;;:::i;52655:442::-;;;;;;;;;;-1:-1:-1;52655:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3504:32:1;;;3486:51;;3568:2;3553:18;;3546:34;;;;3459:18;52655:442:0;3312:274:1;65405:72:0;;;;;;;;;;;;;;;;65202:53;;;;;;;;;;-1:-1:-1;65202:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;67720:180;;;;;;;;;;-1:-1:-1;67720:180:0;;;;;:::i;:::-;;:::i;67497:104::-;;;;;;;;;;-1:-1:-1;67497:104:0;;;;;:::i;:::-;;:::i;68416:96::-;;;;;;;;;;-1:-1:-1;68416:96:0;;;;;:::i;:::-;;:::i;69181:260::-;;;;;;;;;;;;;:::i;70044:205::-;;;;;;;;;;-1:-1:-1;70044:205:0;;;;;:::i;:::-;;:::i;65264:81::-;;;;;;;;;;-1:-1:-1;65264:81:0;;;;;:::i;:::-;;:::i;64757:31::-;;;;;;;;;;;;;;;;64795:36;;;;;;;;;;;;;;;;64883:43;;;;;;;;;;;;;;;;67287:104;;;;;;;;;;-1:-1:-1;67287:104:0;;;;;:::i;:::-;;:::i;67609:103::-;;;;;;;;;;-1:-1:-1;67609:103:0;;;;;:::i;:::-;;:::i;65112:45::-;;;;;;;;;;-1:-1:-1;65112:45:0;;;;;;;;;;;;;;;:::i;32546:125::-;;;;;;;;;;-1:-1:-1;32546:125:0;;;;;:::i;:::-;;:::i;67908:500::-;;;;;;;;;;-1:-1:-1;67908:500:0;;;;;:::i;:::-;;:::i;29994:206::-;;;;;;;;;;-1:-1:-1;29994:206:0;;;;;:::i;:::-;;:::i;49272:103::-;;;;;;;;;;;;;:::i;68880:104::-;;;;;;;;;;-1:-1:-1;68880:104:0;;;;;:::i;:::-;;:::i;48624:87::-;;;;;;;;;;-1:-1:-1;48697:6:0;;-1:-1:-1;;;;;48697:6:0;48624:87;;67399:90;;;;;;;;;;-1:-1:-1;67399:90:0;;;;;:::i;:::-;;:::i;32907:104::-;;;;;;;;;;;;;:::i;64664:36::-;;;;;;;;;;;;;;;;65832:493;;;;;;:::i;:::-;;:::i;34517:287::-;;;;;;;;;;-1:-1:-1;34517:287:0;;;;;:::i;:::-;;:::i;64935:44::-;;;;;;;;;;;;;;;70257:239;;;;;;;;;;-1:-1:-1;70257:239:0;;;;;:::i;:::-;;:::i;68520:106::-;;;;;;;;;;-1:-1:-1;68520:106:0;;;;;:::i;:::-;;:::i;66333:707::-;;;;;;:::i;:::-;;:::i;33082:318::-;;;;;;;;;;-1:-1:-1;33082:318:0;;;;;:::i;:::-;;:::i;65166:27::-;;;;;;;;;;;;;:::i;65352:44::-;;;;;;;;;;-1:-1:-1;65352:44:0;;;;;:::i;:::-;;:::i;68634:110::-;;;;;;;;;;-1:-1:-1;68634:110:0;;;;;:::i;:::-;;:::i;34875:164::-;;;;;;;;;;-1:-1:-1;34875:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34996:25:0;;;34972:4;34996:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34875:164;49530:201;;;;;;;;;;-1:-1:-1;49530:201:0;;;;;:::i;:::-;;:::i;69627:204::-;69758:4;69787:36;69811:11;69787:23;:36::i;:::-;69780:43;69627:204;-1:-1:-1;;69627:204:0:o;69449:170::-;48510:13;:11;:13::i;:::-;69567:44:::1;69586:8;69596:14;69567:18;:44::i;:::-;69449:170:::0;;:::o;32738:100::-;32792:13;32825:5;32818:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32738:100;:::o;34241:204::-;34309:7;34334:16;34342:7;34334;:16::i;:::-;34329:64;;34359:34;;-1:-1:-1;;;34359:34:0;;;;;;;;;;;34329:64;-1:-1:-1;34413:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34413:24:0;;34241:204::o;33804:371::-;33877:13;33893:24;33909:7;33893:15;:24::i;:::-;33877:40;;33938:5;-1:-1:-1;;;;;33932:11:0;:2;-1:-1:-1;;;;;33932:11:0;;33928:48;;33952:24;;-1:-1:-1;;;33952:24:0;;;;;;;;;;;33928:48;11233:10;-1:-1:-1;;;;;33993:21:0;;;;;;:63;;-1:-1:-1;34019:37:0;34036:5;11233:10;34875:164;:::i;34019:37::-;34018:38;33993:63;33989:138;;;34080:35;;-1:-1:-1;;;34080:35:0;;;;;;;;;;;33989:138;34139:28;34148:2;34152:7;34161:5;34139:8;:28::i;:::-;33866:309;33804:371;;:::o;68752:120::-;48510:13;:11;:13::i;:::-;68833:24:::1;:31:::0;68752:120::o;69839:197::-;69974:4;2467:42;3607:43;:47;3603:699;;3894:10;-1:-1:-1;;;;;3886:18:0;;;3882:85;;69991:37:::1;70010:4;70016:2;70020:7;69991:18;:37::i;:::-;3945:7:::0;;3882:85;4027:67;;-1:-1:-1;;;4027:67:0;;4076:4;4027:67;;;10018:34:1;4083:10:0;10068:18:1;;;10061:43;2467:42:0;;4027:40;;9953:18:1;;4027:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4123:61:0;;-1:-1:-1;;;4123:61:0;;4172:4;4123:61;;;10018:34:1;-1:-1:-1;;;;;10088:15:1;;10068:18;;;10061:43;2467:42:0;;4123:40;;9953:18:1;;4123:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3981:310;;4245:30;;-1:-1:-1;;;4245:30:0;;4264:10;4245:30;;;2405:51:1;2378:18;;4245:30:0;;;;;;;;3981:310;69991:37:::1;70010:4;70016:2;70020:7;69991:18;:37::i;:::-;69839:197:::0;;;;:::o;52655:442::-;52752:7;52810:27;;;:17;:27;;;;;;;;52781:56;;;;;;;;;-1:-1:-1;;;;;52781:56:0;;;;;-1:-1:-1;;;52781:56:0;;;-1:-1:-1;;;;;52781:56:0;;;;;;;;52752:7;;52850:92;;-1:-1:-1;52901:29:0;;;;;;;;;52911:19;52901:29;-1:-1:-1;;;;;52901:29:0;;;;-1:-1:-1;;;52901:29:0;;-1:-1:-1;;;;;52901:29:0;;;;;52850:92;52992:23;;;;52954:21;;53463:5;;52979:36;;-1:-1:-1;;;;;52979:36:0;:10;:36;:::i;:::-;52978:58;;;;:::i;:::-;53057:16;;;-1:-1:-1;52954:82:0;;-1:-1:-1;;52655:442:0;;;;;;:::o;67720:180::-;48510:13;:11;:13::i;:::-;67832:6:::1;67821:7;67827:1;67821:3:::0;:7:::1;:::i;:::-;67804:13;;:25;;;;:::i;:::-;:34;67800:56;;;67847:9;;-1:-1:-1::0;;;67847:9:0::1;;;;;;;;;;;67800:56;67867:25;67877:9;67888:3;67867:9;:25::i;67497:104::-:0;48510:13;:11;:13::i;:::-;67570:12:::1;:23:::0;67497:104::o;68416:96::-;48510:13;:11;:13::i;:::-;68485:12:::1;:19:::0;68416:96::o;69181:260::-;48510:13;:11;:13::i;:::-;69249:21:::1;69231:15;69283:151;69303:17;:24:::0;69299:28;::::1;69283:151;;;69349:73;69359:17;69377:1;69359:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;69359:20:0::1;69418:3;69392:19;69412:1;69392:22;;;;;;;;:::i;:::-;;;;;;;;;69382:7;:32;;;;:::i;:::-;69381:40;;;;:::i;:::-;69349:9;:73::i;:::-;69329:3:::0;::::1;::::0;::::1;:::i;:::-;;;;69283:151;;70044:205:::0;70183:4;2467:42;3607:43;:47;3603:699;;3894:10;-1:-1:-1;;;;;3886:18:0;;;3882:85;;70200:41:::1;70223:4;70229:2;70233:7;70200:22;:41::i;3882:85::-:0;4027:67;;-1:-1:-1;;;4027:67:0;;4076:4;4027:67;;;10018:34:1;4083:10:0;10068:18:1;;;10061:43;2467:42:0;;4027:40;;9953:18:1;;4027:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4123:61:0;;-1:-1:-1;;;4123:61:0;;4172:4;4123:61;;;10018:34:1;-1:-1:-1;;;;;10088:15:1;;10068:18;;;10061:43;2467:42:0;;4123:40;;9953:18:1;;4123:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3981:310;;4245:30;;-1:-1:-1;;;4245:30:0;;4264:10;4245:30;;;2405:51:1;2378:18;;4245:30:0;2259:203:1;3981:310:0;70200:41:::1;70223:4;70229:2;70233:7;70200:22;:41::i;65264:81::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;65264:81:0;;-1:-1:-1;65264:81:0;:::o;67287:104::-;48510:13;:11;:13::i;:::-;67360::::1;:23;67376:7:::0;67360:13;:23:::1;:::i;67609:103::-:0;48510:13;:11;:13::i;:::-;67697:6:::1;67687:17;;;;;;;;;;:::i;:::-;67675:9;:29:::0;;-1:-1:-1;;67675:29:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;67609:103:::0;:::o;32546:125::-;32610:7;32637:21;32650:7;32637:12;:21::i;:::-;:26;;32546:125;-1:-1:-1;;32546:125:0:o;67908:500::-;48510:13;:11;:13::i;:::-;68059:10;68091:28;;::::1;68087:59;;68128:18;;-1:-1:-1::0;;;68128:18:0::1;;;;;;;;;;;68087:59;68164:9;68159:242;68183:13;68179:1;:17;68159:242;;;68251:6;68241:4;;68246:1;68241:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;68219:29:0::1;68236:1;68220:13;;:17;;;;:::i;:::-;68219:29;;;;:::i;:::-;:38;68215:60;;;68266:9;;-1:-1:-1::0;;;68266:9:0::1;;;;;;;;;;;68215:60;68292:33;68302:10;;68313:1;68302:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;68317:4;;68322:1;68317:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;68292:33:0::1;:9;:33::i;:::-;68371:3;;68159:242;;;;68024:384;67908:500:::0;;;;:::o;29994:206::-;30058:7;-1:-1:-1;;;;;30082:19:0;;30078:60;;30110:28;;-1:-1:-1;;;30110:28:0;;;;;;;;;;;30078:60;-1:-1:-1;;;;;;30164:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30164:27:0;;29994:206::o;49272:103::-;48510:13;:11;:13::i;:::-;49337:30:::1;49364:1;49337:18;:30::i;:::-;49272:103::o:0;68880:104::-;48510:13;:11;:13::i;:::-;68952:10:::1;:24:::0;68880:104::o;67399:90::-;48510:13;:11;:13::i;:::-;67465:5:::1;:16:::0;67399:90::o;32907:104::-;32963:13;32996:7;32989:14;;;;;:::i;65832:493::-;65904:14;65891:9;;;;:27;;;;;;;;:::i;:::-;;65887:54;;65927:14;;-1:-1:-1;;;65927:14:0;;;;;;;;;;;65887:54;65984:6;65973:7;65979:1;65973:3;:7;:::i;:::-;65956:13;;:25;;;;:::i;:::-;:34;65952:56;;;65999:9;;-1:-1:-1;;;65999:9:0;;;;;;;;;;;65952:56;66044:3;66036:5;;:11;;;;:::i;:::-;66023:9;:24;66019:51;;66056:14;;-1:-1:-1;;;66056:14:0;;;;;;;;;;;66019:51;66126:12;;66106:10;66087:30;;;;:18;:30;;;;;;:36;;66120:3;;66087:36;:::i;:::-;:51;66083:81;;;66147:17;;-1:-1:-1;;;66147:17:0;;;;;;;;;;;66083:81;66185:17;;66179:3;:23;66175:53;;;66211:17;;-1:-1:-1;;;66211:17:0;;;;;;;;;;;66175:53;66258:10;66239:30;;;;:18;:30;;;;;:37;;66273:3;;66239:30;:37;;66273:3;;66239:37;:::i;:::-;;;;-1:-1:-1;66289:26:0;;-1:-1:-1;66299:10:0;66311:3;66289:9;:26::i;:::-;65832:493;:::o;34517:287::-;11233:10;-1:-1:-1;;;;;34616:24:0;;;34612:54;;34649:17;;-1:-1:-1;;;34649:17:0;;;;;;;;;;;34612:54;11233:10;34679:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34679:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34679:53:0;;;;;;;;;;34748:48;;722:41:1;;;34679:42:0;;11233:10;34748:48;;695:18:1;34748:48:0;;;;;;;34517:287;;:::o;70257:239::-;70424:4;2467:42;3607:43;:47;3603:699;;3894:10;-1:-1:-1;;;;;3886:18:0;;;3882:85;;70441:47:::1;70464:4;70470:2;70474:7;70483:4;70441:22;:47::i;:::-;3945:7:::0;;3882:85;4027:67;;-1:-1:-1;;;4027:67:0;;4076:4;4027:67;;;10018:34:1;4083:10:0;10068:18:1;;;10061:43;2467:42:0;;4027:40;;9953:18:1;;4027:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4123:61:0;;-1:-1:-1;;;4123:61:0;;4172:4;4123:61;;;10018:34:1;-1:-1:-1;;;;;10088:15:1;;10068:18;;;10061:43;2467:42:0;;4123:40;;9953:18:1;;4123:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3981:310;;4245:30;;-1:-1:-1;;;4245:30:0;;4264:10;4245:30;;;2405:51:1;2378:18;;4245:30:0;2259:203:1;3981:310:0;70441:47:::1;70464:4;70470:2;70474:7;70483:4;70441:22;:47::i;:::-;70257:239:::0;;;;;:::o;68520:106::-;48510:13;:11;:13::i;:::-;68594:17:::1;:24:::0;68520:106::o;66333:707::-;66440:17;66427:9;;;;:30;;;;;;;;:::i;:::-;;66423:57;;66466:14;;-1:-1:-1;;;66466:14:0;;;;;;;;;;;66423:57;66523:13;66512:7;66518:1;66512:3;:7;:::i;:::-;66495:13;;:25;;;;:::i;:::-;:41;66491:63;;;66545:9;;-1:-1:-1;;;66545:9:0;;;;;;;;;;;66491:63;66597:3;66582:12;;:18;;;;:::i;:::-;66569:9;:31;66565:58;;66609:14;;-1:-1:-1;;;66609:14:0;;;;;;;;;;;66565:58;66641:84;66660:11;;66641:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66673:10:0;;66695:28;;-1:-1:-1;;66712:10:0;14104:2:1;14100:15;14096:53;66695:28:0;;;14084:66:1;66673:10:0;;-1:-1:-1;14166:12:1;;;-1:-1:-1;66695:28:0;;;;;;;;;;;;66685:39;;;;;;66641:18;:84::i;:::-;66636:138;;66748:14;;-1:-1:-1;;;66748:14:0;;;;;;;;;;;66636:138;66827:19;;66807:10;66788:30;;;;:18;:30;;;;;;:36;;66821:3;;66788:36;:::i;:::-;:58;66784:88;;;66855:17;;-1:-1:-1;;;66855:17:0;;;;;;;;;;;66784:88;66893:24;;66887:3;:30;66883:60;;;66926:17;;-1:-1:-1;;;66926:17:0;;;;;;;;;;;66883:60;66973:10;66954:30;;;;:18;:30;;;;;:37;;66988:3;;66954:30;:37;;66988:3;;66954:37;:::i;:::-;;;;-1:-1:-1;67004:26:0;;-1:-1:-1;67014:10:0;67026:3;67004:9;:26::i;33082:318::-;33155:13;33186:16;33194:7;33186;:16::i;:::-;33181:59;;33211:29;;-1:-1:-1;;;33211:29:0;;;;;;;;;;;33181:59;33253:21;33277:10;:8;:10::i;:::-;33253:34;;33311:7;33305:21;33330:1;33305:26;:87;;;;;;;;;;;;;;;;;33358:7;33367:18;:7;:16;:18::i;:::-;33341:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33305:87;33298:94;33082:318;-1:-1:-1;;;33082:318:0:o;65166:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65352:44::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65352:44:0;:::o;68634:110::-;48510:13;:11;:13::i;:::-;68710:19:::1;:26:::0;68634:110::o;49530:201::-;48510:13;:11;:13::i;:::-;-1:-1:-1;;;;;49619:22:0;::::1;49611:73;;;::::0;-1:-1:-1;;;49611:73:0;;14866:2:1;49611:73:0::1;::::0;::::1;14848:21:1::0;14905:2;14885:18;;;14878:30;14944:34;14924:18;;;14917:62;-1:-1:-1;;;14995:18:1;;;14988:36;15041:19;;49611:73:0::1;14664:402:1::0;49611:73:0::1;49695:28;49714:8;49695:18;:28::i;52385:215::-:0;52487:4;-1:-1:-1;;;;;;52511:41:0;;-1:-1:-1;;;52511:41:0;;:81;;;52556:36;52580:11;52556:23;:36::i;48789:132::-;48697:6;;-1:-1:-1;;;;;48697:6:0;11233:10;48853:23;48845:68;;;;-1:-1:-1;;;48845:68:0;;15273:2:1;48845:68:0;;;15255:21:1;;;15292:18;;;15285:30;15351:34;15331:18;;;15324:62;15403:18;;48845:68:0;15071:356:1;53747:332:0;53463:5;-1:-1:-1;;;;;53850:33:0;;;;53842:88;;;;-1:-1:-1;;;53842:88:0;;15634:2:1;53842:88:0;;;15616:21:1;15673:2;15653:18;;;15646:30;15712:34;15692:18;;;15685:62;-1:-1:-1;;;15763:18:1;;;15756:40;15813:19;;53842:88:0;15432:406:1;53842:88:0;-1:-1:-1;;;;;53949:22:0;;53941:60;;;;-1:-1:-1;;;53941:60:0;;16045:2:1;53941:60:0;;;16027:21:1;16084:2;16064:18;;;16057:30;16123:27;16103:18;;;16096:55;16168:18;;53941:60:0;15843:349:1;53941:60:0;54036:35;;;;;;;;;-1:-1:-1;;;;;54036:35:0;;;;;;-1:-1:-1;;;;;54036:35:0;;;;;;;;;;-1:-1:-1;;;54014:57:0;;;;:19;:57;53747:332::o;36227:187::-;36284:4;36327:7;67140:1;36308:26;;:53;;;;;36348:13;;36338:7;:23;36308:53;:98;;;;-1:-1:-1;;36379:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36379:27:0;;;;36378:28;;36227:187::o;44397:196::-;44512:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44512:29:0;-1:-1:-1;;;;;44512:29:0;;;;;;;;;44557:28;;44512:24;;44557:28;;;;;;;44397:196;;;:::o;35106:170::-;35240:28;35250:4;35256:2;35260:7;35240:9;:28::i;36422:104::-;36491:27;36501:2;36505:8;36491:27;;;;;;;;;;;;:9;:27::i;68992:181::-;69066:12;69084:8;-1:-1:-1;;;;;69084:13:0;69105:7;69084:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69065:52;;;69133:7;69128:37;;69149:16;;-1:-1:-1;;;69149:16:0;;;;;;;;;;;35347:185;35485:39;35502:4;35508:2;35512:7;35485:39;;;;;;;;;;;;:16;:39::i;31375:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31486:7:0;;67140:1;31535:23;;:47;;;;;31569:13;;31562:4;:20;31535:47;31531:886;;;31603:31;31637:17;;;:11;:17;;;;;;;;;31603:51;;;;;;;;;-1:-1:-1;;;;;31603:51:0;;;;-1:-1:-1;;;31603:51:0;;-1:-1:-1;;;;;31603:51:0;;;;;;;;-1:-1:-1;;;31603:51:0;;;;;;;;;;;;;;31673:729;;31723:14;;-1:-1:-1;;;;;31723:28:0;;31719:101;;31787:9;31375:1109;-1:-1:-1;;;31375:1109:0:o;31719:101::-;-1:-1:-1;;;32162:6:0;32207:17;;;;:11;:17;;;;;;;;;32195:29;;;;;;;;;-1:-1:-1;;;;;32195:29:0;;;;;-1:-1:-1;;;32195:29:0;;-1:-1:-1;;;;;32195:29:0;;;;;;;;-1:-1:-1;;;32195:29:0;;;;;;;;;;;;;32255:28;32251:109;;32323:9;31375:1109;-1:-1:-1;;;31375:1109:0:o;32251:109::-;32122:261;;;31584:833;31531:886;32445:31;;-1:-1:-1;;;32445:31:0;;;;;;;;;;;49891:191;49984:6;;;-1:-1:-1;;;;;50001:17:0;;;-1:-1:-1;;;;;;50001:17:0;;;;;;;50034:40;;49984:6;;;50001:17;49984:6;;50034:40;;49965:16;;50034:40;49954:128;49891:191;:::o;35603:369::-;35770:28;35780:4;35786:2;35790:7;35770:9;:28::i;:::-;-1:-1:-1;;;;;35813:13:0;;12903:19;:23;;35813:76;;;;;35833:56;35864:4;35870:2;35874:7;35883:5;35833:30;:56::i;:::-;35832:57;35813:76;35809:156;;;35913:40;;-1:-1:-1;;;35913:40:0;;;;;;;;;;;56379:190;56504:4;56557;56528:25;56541:5;56548:4;56528:12;:25::i;:::-;:33;;56379:190;-1:-1:-1;;;;56379:190:0:o;67157:114::-;67217:13;67250;67243:20;;;;;:::i;22247:723::-;22303:13;22524:5;22533:1;22524:10;22520:53;;-1:-1:-1;;22551:10:0;;;;;;;;;;;;-1:-1:-1;;;22551:10:0;;;;;22247:723::o;22520:53::-;22598:5;22583:12;22639:78;22646:9;;22639:78;;22672:8;;;;:::i;:::-;;-1:-1:-1;22695:10:0;;-1:-1:-1;22703:2:0;22695:10;;:::i;:::-;;;22639:78;;;22727:19;22759:6;-1:-1:-1;;;;;22749:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22749:17:0;;22727:39;;22777:154;22784:10;;22777:154;;22811:11;22821:1;22811:11;;:::i;:::-;;-1:-1:-1;22880:10:0;22888:2;22880:5;:10;:::i;:::-;22867:24;;:2;:24;:::i;:::-;22854:39;;22837:6;22844;22837:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22837:56:0;;;;;;;;-1:-1:-1;22908:11:0;22917:2;22908:11;;:::i;:::-;;;22777:154;;;22955:6;22247:723;-1:-1:-1;;;;22247:723:0:o;29625:305::-;29727:4;-1:-1:-1;;;;;;29764:40:0;;-1:-1:-1;;;29764:40:0;;:105;;-1:-1:-1;;;;;;;29821:48:0;;-1:-1:-1;;;29821:48:0;29764:105;:158;;;-1:-1:-1;;;;;;;;;;25294:40:0;;;29886:36;25185:157;39340:2130;39455:35;39493:21;39506:7;39493:12;:21::i;:::-;39455:59;;39553:4;-1:-1:-1;;;;;39531:26:0;:13;:18;;;-1:-1:-1;;;;;39531:26:0;;39527:67;;39566:28;;-1:-1:-1;;;39566:28:0;;;;;;;;;;;39527:67;39607:22;11233:10;-1:-1:-1;;;;;39633:20:0;;;;:73;;-1:-1:-1;39670:36:0;39687:4;11233:10;34875:164;:::i;39670:36::-;39633:126;;;-1:-1:-1;11233:10:0;39723:20;39735:7;39723:11;:20::i;:::-;-1:-1:-1;;;;;39723:36:0;;39633:126;39607:153;;39778:17;39773:66;;39804:35;;-1:-1:-1;;;39804:35:0;;;;;;;;;;;39773:66;-1:-1:-1;;;;;39854:16:0;;39850:52;;39879:23;;-1:-1:-1;;;39879:23:0;;;;;;;;;;;39850:52;40023:35;40040:1;40044:7;40053:4;40023:8;:35::i;:::-;-1:-1:-1;;;;;40354:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40354:31:0;;;-1:-1:-1;;;;;40354:31:0;;;-1:-1:-1;;40354:31:0;;;;;;;40400:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40400:29:0;;;;;;;;;;;40480:20;;;:11;:20;;;;;;40515:18;;-1:-1:-1;;;;;;40548:49:0;;;;-1:-1:-1;;;40581:15:0;40548:49;;;;;;;;;;40871:11;;40931:24;;;;;40974:13;;40480:20;;40931:24;;40974:13;40970:384;;41184:13;;41169:11;:28;41165:174;;41222:20;;41291:28;;;;-1:-1:-1;;;;;41265:54:0;-1:-1:-1;;;41265:54:0;-1:-1:-1;;;;;;41265:54:0;;;-1:-1:-1;;;;;41222:20:0;;41265:54;;;;41165:174;40329:1036;;;41401:7;41397:2;-1:-1:-1;;;;;41382:27:0;41391:4;-1:-1:-1;;;;;41382:27:0;;;;;;;;;;;41420:42;69839:197;36889:163;37012:32;37018:2;37022:8;37032:5;37039:4;37012:5;:32::i;45085:667::-;45269:72;;-1:-1:-1;;;45269:72:0;;45248:4;;-1:-1:-1;;;;;45269:36:0;;;;;:72;;11233:10;;45320:4;;45326:7;;45335:5;;45269:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45269:72:0;;;;;;;;-1:-1:-1;;45269:72:0;;;;;;;;;;;;:::i;:::-;;;45265:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45503:6;:13;45520:1;45503:18;45499:235;;45549:40;;-1:-1:-1;;;45549:40:0;;;;;;;;;;;45499:235;45692:6;45686:13;45677:6;45673:2;45669:15;45662:38;45265:480;-1:-1:-1;;;;;;45388:55:0;-1:-1:-1;;;45388:55:0;;-1:-1:-1;45085:667:0;;;;;;:::o;57246:296::-;57329:7;57372:4;57329:7;57387:118;57411:5;:12;57407:1;:16;57387:118;;;57460:33;57470:12;57484:5;57490:1;57484:8;;;;;;;;:::i;:::-;;;;;;;57460:9;:33::i;:::-;57445:48;-1:-1:-1;57425:3:0;;;;:::i;:::-;;;;57387:118;;;-1:-1:-1;57522:12:0;57246:296;-1:-1:-1;;;57246:296:0:o;37311:1775::-;37450:20;37473:13;-1:-1:-1;;;;;37501:16:0;;37497:48;;37526:19;;-1:-1:-1;;;37526:19:0;;;;;;;;;;;37497:48;37560:8;37572:1;37560:13;37556:44;;37582:18;;-1:-1:-1;;;37582:18:0;;;;;;;;;;;37556:44;-1:-1:-1;;;;;37951:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38010:49:0;;-1:-1:-1;;;;;37951:44:0;;;;;;;38010:49;;;;-1:-1:-1;;37951:44:0;;;;;;38010:49;;;;;;;;;;;;;;;;38076:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38126:66:0;;;;-1:-1:-1;;;38176:15:0;38126:66;;;;;;;;;;38076:25;38273:23;;;38317:4;:23;;;;-1:-1:-1;;;;;;38325:13:0;;12903:19;:23;;38325:15;38313:641;;;38361:314;38392:38;;38417:12;;-1:-1:-1;;;;;38392:38:0;;;38409:1;;38392:38;;38409:1;;38392:38;38458:69;38497:1;38501:2;38505:14;;;;;;38521:5;38458:30;:69::i;:::-;38453:174;;38563:40;;-1:-1:-1;;;38563:40:0;;;;;;;;;;;38453:174;38670:3;38654:12;:19;38361:314;;38756:12;38739:13;;:29;38735:43;;38770:8;;;38735:43;38313:641;;;38819:120;38850:40;;38875:14;;;;;-1:-1:-1;;;;;38850:40:0;;;38867:1;;38850:40;;38867:1;;38850:40;38934:3;38918:12;:19;38819:120;;38313:641;-1:-1:-1;38968:13:0;:28;39018:60;69839:197;63453:149;63516:7;63547:1;63543;:5;:51;;63678:13;63772:15;;;63808:4;63801:15;;;63855:4;63839:21;;63543:51;;;-1:-1:-1;63678:13:0;63772:15;;;63808:4;63801:15;63855:4;63839:21;;;63453:149::o;196:131:1:-;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:173::-;842:20;;-1:-1:-1;;;;;891:31:1;;881:42;;871:70;;937:1;934;927:12;871:70;774:173;;;:::o;952:366::-;1019:6;1027;1080:2;1068:9;1059:7;1055:23;1051:32;1048:52;;;1096:1;1093;1086:12;1048:52;1119:29;1138:9;1119:29;:::i;:::-;1109:39;;1198:2;1187:9;1183:18;1170:32;-1:-1:-1;;;;;1235:5:1;1231:38;1224:5;1221:49;1211:77;;1284:1;1281;1274:12;1211:77;1307:5;1297:15;;;952:366;;;;;:::o;1323:258::-;1395:1;1405:113;1419:6;1416:1;1413:13;1405:113;;;1495:11;;;1489:18;1476:11;;;1469:39;1441:2;1434:10;1405:113;;;1536:6;1533:1;1530:13;1527:48;;;-1:-1:-1;;1571:1:1;1553:16;;1546:27;1323:258::o;1586:::-;1628:3;1666:5;1660:12;1693:6;1688:3;1681:19;1709:63;1765:6;1758:4;1753:3;1749:14;1742:4;1735:5;1731:16;1709:63;:::i;:::-;1826:2;1805:15;-1:-1:-1;;1801:29:1;1792:39;;;;1833:4;1788:50;;1586:258;-1:-1:-1;;1586:258:1:o;1849:220::-;1998:2;1987:9;1980:21;1961:4;2018:45;2059:2;2048:9;2044:18;2036:6;2018:45;:::i;2074:180::-;2133:6;2186:2;2174:9;2165:7;2161:23;2157:32;2154:52;;;2202:1;2199;2192:12;2154:52;-1:-1:-1;2225:23:1;;2074:180;-1:-1:-1;2074:180:1:o;2467:254::-;2535:6;2543;2596:2;2584:9;2575:7;2571:23;2567:32;2564:52;;;2612:1;2609;2602:12;2564:52;2635:29;2654:9;2635:29;:::i;:::-;2625:39;2711:2;2696:18;;;;2683:32;;-1:-1:-1;;;2467:254:1:o;2726:328::-;2803:6;2811;2819;2872:2;2860:9;2851:7;2847:23;2843:32;2840:52;;;2888:1;2885;2878:12;2840:52;2911:29;2930:9;2911:29;:::i;:::-;2901:39;;2959:38;2993:2;2982:9;2978:18;2959:38;:::i;:::-;2949:48;;3044:2;3033:9;3029:18;3016:32;3006:42;;2726:328;;;;;:::o;3059:248::-;3127:6;3135;3188:2;3176:9;3167:7;3163:23;3159:32;3156:52;;;3204:1;3201;3194:12;3156:52;-1:-1:-1;;3227:23:1;;;3297:2;3282:18;;;3269:32;;-1:-1:-1;3059:248:1:o;3773:186::-;3832:6;3885:2;3873:9;3864:7;3860:23;3856:32;3853:52;;;3901:1;3898;3891:12;3853:52;3924:29;3943:9;3924:29;:::i;3964:254::-;4032:6;4040;4093:2;4081:9;4072:7;4068:23;4064:32;4061:52;;;4109:1;4106;4099:12;4061:52;4145:9;4132:23;4122:33;;4174:38;4208:2;4197:9;4193:18;4174:38;:::i;:::-;4164:48;;3964:254;;;;;:::o;4223:127::-;4284:10;4279:3;4275:20;4272:1;4265:31;4315:4;4312:1;4305:15;4339:4;4336:1;4329:15;4355:632;4420:5;-1:-1:-1;;;;;4491:2:1;4483:6;4480:14;4477:40;;;4497:18;;:::i;:::-;4572:2;4566:9;4540:2;4626:15;;-1:-1:-1;;4622:24:1;;;4648:2;4618:33;4614:42;4602:55;;;4672:18;;;4692:22;;;4669:46;4666:72;;;4718:18;;:::i;:::-;4758:10;4754:2;4747:22;4787:6;4778:15;;4817:6;4809;4802:22;4857:3;4848:6;4843:3;4839:16;4836:25;4833:45;;;4874:1;4871;4864:12;4833:45;4924:6;4919:3;4912:4;4904:6;4900:17;4887:44;4979:1;4972:4;4963:6;4955;4951:19;4947:30;4940:41;;;;4355:632;;;;;:::o;4992:451::-;5061:6;5114:2;5102:9;5093:7;5089:23;5085:32;5082:52;;;5130:1;5127;5120:12;5082:52;5170:9;5157:23;-1:-1:-1;;;;;5195:6:1;5192:30;5189:50;;;5235:1;5232;5225:12;5189:50;5258:22;;5311:4;5303:13;;5299:27;-1:-1:-1;5289:55:1;;5340:1;5337;5330:12;5289:55;5363:74;5429:7;5424:2;5411:16;5406:2;5402;5398:11;5363:74;:::i;5448:269::-;5505:6;5558:2;5546:9;5537:7;5533:23;5529:32;5526:52;;;5574:1;5571;5564:12;5526:52;5613:9;5600:23;5663:4;5656:5;5652:16;5645:5;5642:27;5632:55;;5683:1;5680;5673:12;5722:127;5783:10;5778:3;5774:20;5771:1;5764:31;5814:4;5811:1;5804:15;5838:4;5835:1;5828:15;5854:342;6000:2;5985:18;;6033:1;6022:13;;6012:144;;6078:10;6073:3;6069:20;6066:1;6059:31;6113:4;6110:1;6103:15;6141:4;6138:1;6131:15;6012:144;6165:25;;;5854:342;:::o;6201:366::-;6263:8;6273:6;6327:3;6320:4;6312:6;6308:17;6304:27;6294:55;;6345:1;6342;6335:12;6294:55;-1:-1:-1;6368:20:1;;-1:-1:-1;;;;;6400:30:1;;6397:50;;;6443:1;6440;6433:12;6397:50;6480:4;6472:6;6468:17;6456:29;;6540:3;6533:4;6523:6;6520:1;6516:14;6508:6;6504:27;6500:38;6497:47;6494:67;;;6557:1;6554;6547:12;6572:770;6693:6;6701;6709;6717;6770:2;6758:9;6749:7;6745:23;6741:32;6738:52;;;6786:1;6783;6776:12;6738:52;6826:9;6813:23;-1:-1:-1;;;;;6896:2:1;6888:6;6885:14;6882:34;;;6912:1;6909;6902:12;6882:34;6951:69;7012:7;7003:6;6992:9;6988:22;6951:69;:::i;:::-;7039:8;;-1:-1:-1;6925:95:1;-1:-1:-1;7127:2:1;7112:18;;7099:32;;-1:-1:-1;7143:16:1;;;7140:36;;;7172:1;7169;7162:12;7140:36;;7211:71;7274:7;7263:8;7252:9;7248:24;7211:71;:::i;:::-;6572:770;;;;-1:-1:-1;7301:8:1;-1:-1:-1;;;;6572:770:1:o;7532:118::-;7618:5;7611:13;7604:21;7597:5;7594:32;7584:60;;7640:1;7637;7630:12;7655:315;7720:6;7728;7781:2;7769:9;7760:7;7756:23;7752:32;7749:52;;;7797:1;7794;7787:12;7749:52;7820:29;7839:9;7820:29;:::i;:::-;7810:39;;7899:2;7888:9;7884:18;7871:32;7912:28;7934:5;7912:28;:::i;7975:667::-;8070:6;8078;8086;8094;8147:3;8135:9;8126:7;8122:23;8118:33;8115:53;;;8164:1;8161;8154:12;8115:53;8187:29;8206:9;8187:29;:::i;:::-;8177:39;;8235:38;8269:2;8258:9;8254:18;8235:38;:::i;:::-;8225:48;;8320:2;8309:9;8305:18;8292:32;8282:42;;8375:2;8364:9;8360:18;8347:32;-1:-1:-1;;;;;8394:6:1;8391:30;8388:50;;;8434:1;8431;8424:12;8388:50;8457:22;;8510:4;8502:13;;8498:27;-1:-1:-1;8488:55:1;;8539:1;8536;8529:12;8488:55;8562:74;8628:7;8623:2;8610:16;8605:2;8601;8597:11;8562:74;:::i;:::-;8552:84;;;7975:667;;;;;;;:::o;8647:504::-;8742:6;8750;8758;8811:2;8799:9;8790:7;8786:23;8782:32;8779:52;;;8827:1;8824;8817:12;8779:52;8863:9;8850:23;8840:33;;8924:2;8913:9;8909:18;8896:32;-1:-1:-1;;;;;8943:6:1;8940:30;8937:50;;;8983:1;8980;8973:12;8937:50;9022:69;9083:7;9074:6;9063:9;9059:22;9022:69;:::i;:::-;8647:504;;9110:8;;-1:-1:-1;8996:95:1;;-1:-1:-1;;;;8647:504:1:o;9156:260::-;9224:6;9232;9285:2;9273:9;9264:7;9260:23;9256:32;9253:52;;;9301:1;9298;9291:12;9253:52;9324:29;9343:9;9324:29;:::i;:::-;9314:39;;9372:38;9406:2;9395:9;9391:18;9372:38;:::i;9421:380::-;9500:1;9496:12;;;;9543;;;9564:61;;9618:4;9610:6;9606:17;9596:27;;9564:61;9671:2;9663:6;9660:14;9640:18;9637:38;9634:161;;9717:10;9712:3;9708:20;9705:1;9698:31;9752:4;9749:1;9742:15;9780:4;9777:1;9770:15;9634:161;;9421:380;;;:::o;10115:245::-;10182:6;10235:2;10223:9;10214:7;10210:23;10206:32;10203:52;;;10251:1;10248;10241:12;10203:52;10283:9;10277:16;10302:28;10324:5;10302:28;:::i;10365:127::-;10426:10;10421:3;10417:20;10414:1;10407:31;10457:4;10454:1;10447:15;10481:4;10478:1;10471:15;10497:168;10537:7;10603:1;10599;10595:6;10591:14;10588:1;10585:21;10580:1;10573:9;10566:17;10562:45;10559:71;;;10610:18;;:::i;:::-;-1:-1:-1;10650:9:1;;10497:168::o;10670:127::-;10731:10;10726:3;10722:20;10719:1;10712:31;10762:4;10759:1;10752:15;10786:4;10783:1;10776:15;10802:120;10842:1;10868;10858:35;;10873:18;;:::i;:::-;-1:-1:-1;10907:9:1;;10802:120::o;10927:125::-;10967:4;10995:1;10992;10989:8;10986:34;;;11000:18;;:::i;:::-;-1:-1:-1;11037:9:1;;10927:125::o;11057:128::-;11097:3;11128:1;11124:6;11121:1;11118:13;11115:39;;;11134:18;;:::i;:::-;-1:-1:-1;11170:9:1;;11057:128::o;11190:127::-;11251:10;11246:3;11242:20;11239:1;11232:31;11282:4;11279:1;11272:15;11306:4;11303:1;11296:15;11322:135;11361:3;11382:17;;;11379:43;;11402:18;;:::i;:::-;-1:-1:-1;11449:1:1;11438:13;;11322:135::o;11588:545::-;11690:2;11685:3;11682:11;11679:448;;;11726:1;11751:5;11747:2;11740:17;11796:4;11792:2;11782:19;11866:2;11854:10;11850:19;11847:1;11843:27;11837:4;11833:38;11902:4;11890:10;11887:20;11884:47;;;-1:-1:-1;11925:4:1;11884:47;11980:2;11975:3;11971:12;11968:1;11964:20;11958:4;11954:31;11944:41;;12035:82;12053:2;12046:5;12043:13;12035:82;;;12098:17;;;12079:1;12068:13;12035:82;;12309:1352;12435:3;12429:10;-1:-1:-1;;;;;12454:6:1;12451:30;12448:56;;;12484:18;;:::i;:::-;12513:97;12603:6;12563:38;12595:4;12589:11;12563:38;:::i;:::-;12557:4;12513:97;:::i;:::-;12665:4;;12729:2;12718:14;;12746:1;12741:663;;;;13448:1;13465:6;13462:89;;;-1:-1:-1;13517:19:1;;;13511:26;13462:89;-1:-1:-1;;12266:1:1;12262:11;;;12258:24;12254:29;12244:40;12290:1;12286:11;;;12241:57;13564:81;;12711:944;;12741:663;11535:1;11528:14;;;11572:4;11559:18;;-1:-1:-1;;12777:20:1;;;12895:236;12909:7;12906:1;12903:14;12895:236;;;12998:19;;;12992:26;12977:42;;13090:27;;;;13058:1;13046:14;;;;12925:19;;12895:236;;;12899:3;13159:6;13150:7;13147:19;13144:201;;;13220:19;;;13214:26;-1:-1:-1;;13303:1:1;13299:14;;;13315:3;13295:24;13291:37;13287:42;13272:58;13257:74;;13144:201;-1:-1:-1;;;;;13391:1:1;13375:14;;;13371:22;13358:36;;-1:-1:-1;12309:1352:1:o;13666:284::-;13724:6;13777:2;13765:9;13756:7;13752:23;13748:32;13745:52;;;13793:1;13790;13783:12;13745:52;13832:9;13819:23;-1:-1:-1;;;;;13875:5:1;13871:30;13864:5;13861:41;13851:69;;13916:1;13913;13906:12;14189:470;14368:3;14406:6;14400:13;14422:53;14468:6;14463:3;14456:4;14448:6;14444:17;14422:53;:::i;:::-;14538:13;;14497:16;;;;14560:57;14538:13;14497:16;14594:4;14582:17;;14560:57;:::i;:::-;14633:20;;14189:470;-1:-1:-1;;;;14189:470:1:o;16407:112::-;16439:1;16465;16455:35;;16470:18;;:::i;:::-;-1:-1:-1;16504:9:1;;16407:112::o;16524:489::-;-1:-1:-1;;;;;16793:15:1;;;16775:34;;16845:15;;16840:2;16825:18;;16818:43;16892:2;16877:18;;16870:34;;;16940:3;16935:2;16920:18;;16913:31;;;16718:4;;16961:46;;16987:19;;16979:6;16961:46;:::i;:::-;16953:54;16524:489;-1:-1:-1;;;;;;16524:489:1:o;17018:249::-;17087:6;17140:2;17128:9;17119:7;17115:23;17111:32;17108:52;;;17156:1;17153;17146:12;17108:52;17188:9;17182:16;17207:30;17231:5;17207:30;:::i

Swarm Source

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