ETH Price: $2,624.99 (-1.75%)
Gas: 2 Gwei

Token

-8liens (-8liens)
 

Overview

Max Total Supply

3,448 -8liens

Holders

1,463

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 -8liens
0x692a969e449696271035e824cebf9afeb2ae5888
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:
_8liens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

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


// 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/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (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 Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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


// OpenZeppelin Contracts (last updated v4.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/IERC721Receiver.sol


// 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/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (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/token/ERC721/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */

    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(_magic) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    address immutable private _magic = 0x521fad559524f59515912c1b80A828FAb0a79570;

    /**
     * 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.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);

                    ownership.addr = address(uint160(_magic) + uint160(tokenId));
                    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 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);
    }

    function _whiteListMint(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

     function _whiteListDrop(
            address to,
            uint256 quantity
        ) internal {
            _mintZeroTo(to, quantity);
        }

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

    function _mintZeroTo(
            address to,
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = to;

            unchecked {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += quantity;

    }

    function _mintZero(
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex));
            
            unchecked {
                do {
                    emit Transfer(address(0), address(uint160(_magic) + uint160(updatedIndex)), updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += 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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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


contract _8liens is ERC721A, Ownable {

    string  public uriPrefix = "ipfs://QQmd7jXK82szHXGGs3txHSwJNRwJt8jqP54vo9bUEWPiFJq/";

    uint256 public immutable cost = 0.004 ether;
    uint32 public immutable maxSUPPLY = 3500;
    uint32 public immutable maxPerTx = 4;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    modifier callerIsWhitelisted(uint256 amount, uint256 _signature) {
        require(uint256(uint160(msg.sender))+amount == _signature,"invalid signature");
        _;
    }

    constructor()
    ERC721A ("-8liens", "-8liens") {
    }

    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return uriPrefix;
    }

    function setUri(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

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

    function publicMint(uint256 amount) public payable callerIsUser{
        require(totalSupply() + amount<= maxSUPPLY, "sold out");
        // require(amount <=  maxPerTx, "invalid amount");
        require(msg.value >= cost * amount,"insufficient");
        _safeMint(msg.sender, amount);
    }

    function airDrop(uint256 amount) public onlyOwner {
        _whiteListMint(amount);
    }

    function whiteListMint(uint256 amount, uint256 _signature) public callerIsWhitelisted(amount, _signature) {
        _whiteListMint(amount);
    }

    function whiteListDrop(uint256 amount, uint256 _signature) public callerIsWhitelisted(amount, _signature) {
        _whiteListDrop(msg.sender, amount);
    }

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

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"_signature","type":"uint256"}],"name":"whiteListDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"_signature","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405273521fad559524f59515912c1b80a828fab0a7957073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b81525060405180606001604052806037815260200162003c7d6037913960099080519060200190620000809291906200027f565b50660e35fa931a000060a090815250610dac63ffffffff1660c09063ffffffff1660e01b815250600463ffffffff1660e09063ffffffff1660e01b815250348015620000cb57600080fd5b506040518060400160405280600781526020017f2d386c69656e73000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f2d386c69656e73000000000000000000000000000000000000000000000000008152508160029080519060200190620001509291906200027f565b508060039080519060200190620001699291906200027f565b506200017a620001a860201b60201c565b6000819055505050620001a262000196620001b160201b60201c565b620001b960201b60201c565b62000394565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028d906200032f565b90600052602060002090601f016020900481019282620002b15760008555620002fd565b82601f10620002cc57805160ff1916838001178555620002fd565b82800160010185558215620002fd579182015b82811115620002fc578251825591602001919060010190620002df565b5b5090506200030c919062000310565b5090565b5b808211156200032b57600081600090555060010162000311565b5090565b600060028204905060018216806200034857607f821691505b602082108114156200035f576200035e62000365565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e01c60e05160e01c613883620003fa600039600061138d0152600081816109e301526110c90152600081816109160152610a5f015260008181610d9d01528181611d250152818161225e01526122e701526138836000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063c4a412251161008a578063dc25772511610064578063dc2577251461055f578063e985e9c514610588578063f2fde38b146105c5578063f968adbe146105ee57610181565b8063c4a41225146104ce578063c87b56dd146104f9578063ce24359c1461053657610181565b806370a08231146103c05780638da5cb5b146103fd57806395d89b41146104285780639b642de114610453578063a22cb4651461047c578063b88d4fde146104a557610181565b80631cd965a71161013e5780633ccfd60b116101185780633ccfd60b1461031857806342842e0e1461032f57806362b99ad4146103585780636352211e1461038357610181565b80631cd965a7146102aa57806323b872dd146102d35780632db11544146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806313faede61461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612c94565b610619565b6040516101ba919061303b565b60405180910390f35b3480156101cf57600080fd5b506101d86106fb565b6040516101e59190613056565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612d37565b61078d565b6040516102229190612fd4565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612c54565b610809565b005b34801561026057600080fd5b50610269610914565b6040516102769190613158565b60405180910390f35b34801561028b57600080fd5b50610294610938565b6040516102a19190613158565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612d37565b61094f565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190612b3e565b610963565b005b61031660048036038101906103119190612d37565b610973565b005b34801561032457600080fd5b5061032d610ad7565b005b34801561033b57600080fd5b5061035660048036038101906103519190612b3e565b610b9c565b005b34801561036457600080fd5b5061036d610bbc565b60405161037a9190613056565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612d37565b610c4a565b6040516103b79190612fd4565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612ad1565b610c60565b6040516103f49190613158565b60405180910390f35b34801561040957600080fd5b50610412610df5565b60405161041f9190612fd4565b60405180910390f35b34801561043457600080fd5b5061043d610e1f565b60405161044a9190613056565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612cee565b610eb1565b005b34801561048857600080fd5b506104a3600480360381019061049e9190612c14565b610ed3565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612b91565b61104b565b005b3480156104da57600080fd5b506104e36110c7565b6040516104f09190613173565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612d37565b6110eb565b60405161052d9190613056565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612d64565b61118a565b005b34801561056b57600080fd5b5061058660048036038101906105819190612d64565b6111fe565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612afe565b611273565b6040516105bc919061303b565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612ad1565b611307565b005b3480156105fa57600080fd5b5061060361138b565b6040516106109190613173565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f457506106f3826113af565b5b9050919050565b60606002805461070a906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610736906134bc565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b600061079882611419565b6107ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081482610c4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089b611467565b73ffffffffffffffffffffffffffffffffffffffff16141580156108cd57506108cb816108c6611467565b611273565b155b15610904576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090f83838361146f565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610942611521565b6001546000540303905090565b61095761152a565b610960816115a8565b50565b61096e8383836115b4565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d890613118565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681610a11610938565b610a1b91906132ad565b1115610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a53906130f8565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000000610a889190613334565b341015610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613098565b60405180910390fd5b610ad43382611aa5565b50565b610adf61152a565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610b0f90612fbf565b60006040518083038185875af1925050503d8060008114610b4c576040519150601f19603f3d011682016040523d82523d6000602084013e610b51565b606091505b50508091505080610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e906130d8565b60405180910390fd5b505050565b610bb78383836040518060200160405280600081525061104b565b505050565b60098054610bc9906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf5906134bc565b8015610c425780601f10610c1757610100808354040283529160200191610c42565b820191906000526020600020905b815481529060010190602001808311610c2557829003601f168201915b505050505081565b6000610c5582611ac3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610d9857600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610df0565b6000547f000000000000000000000000000000000000000000000000000000000000000083610dc7919061338e565b73ffffffffffffffffffffffffffffffffffffffff1611610deb5760019050610df0565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e2e906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5a906134bc565b8015610ea75780601f10610e7c57610100808354040283529160200191610ea7565b820191906000526020600020905b815481529060010190602001808311610e8a57829003601f168201915b5050505050905090565b610eb961152a565b8060099080519060200190610ecf9291906128a2565b5050565b610edb611467565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f40576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f4d611467565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ffa611467565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161103f919061303b565b60405180910390a35050565b6110568484846115b4565b6110758373ffffffffffffffffffffffffffffffffffffffff16611dc0565b801561108a575061108884848484611de3565b155b156110c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606110f682611419565b61112c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611136611f43565b90506000815114156111575760405180602001604052806000815250611182565b8061116184611fd5565b604051602001611172929190612f9b565b6040516020818303038152906040525b915050919050565b818180823373ffffffffffffffffffffffffffffffffffffffff166111af91906132ad565b146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690613078565b60405180910390fd5b6111f8846115a8565b50505050565b818180823373ffffffffffffffffffffffffffffffffffffffff1661122391906132ad565b14611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613078565b60405180910390fd5b61126d3385612136565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61130f61152a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611376906130b8565b60405180910390fd5b61138881612144565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611424611521565b11158015611433575060005482105b8015611460575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611532611467565b73ffffffffffffffffffffffffffffffffffffffff16611550610df5565b73ffffffffffffffffffffffffffffffffffffffff16146115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d90613138565b60405180910390fd5b565b6115b18161220a565b50565b60006115bf82611ac3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166115e6611467565b73ffffffffffffffffffffffffffffffffffffffff16148061161957506116188260000151611613611467565b611273565b5b8061165e5750611627611467565b73ffffffffffffffffffffffffffffffffffffffff166116468461078d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611697576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611700576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611767576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117748585856001612386565b611784600084846000015161146f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a3557600054811015611a345782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a9e858585600161238c565b5050505050565b611abf828260405180602001604052806000815250612392565b5050565b611acb612928565b600082905080611ad9611521565b11158015611ae8575060005481105b15611d89576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d8757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bfd578092505050611dbb565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d1357819350505050611dbb565b6000816001900391508111611c0457847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611dbb565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e09611467565b8786866040518563ffffffff1660e01b8152600401611e2b9493929190612fef565b602060405180830381600087803b158015611e4557600080fd5b505af1925050508015611e7657506040513d601f19601f82011682018060405250810190611e739190612cc1565b60015b611ef0573d8060008114611ea6576040519150601f19603f3d011682016040523d82523d6000602084013e611eab565b606091505b50600081511415611ee8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611f52906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611f7e906134bc565b8015611fcb5780601f10611fa057610100808354040283529160200191611fcb565b820191906000526020600020905b815481529060010190602001808311611fae57829003601f168201915b5050505050905090565b6060600082141561201d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612131565b600082905060005b6000821461204f5780806120389061351f565b915050600a826120489190613303565b9150612025565b60008167ffffffffffffffff81111561206b5761206a613655565b5b6040519080825280601f01601f19166020018201604052801561209d5781602001600182028036833780820191505090505b5090505b6000851461212a576001826120b691906133c2565b9150600a856120c59190613568565b60306120d191906132ad565b60f81b8183815181106120e7576120e6613626565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121239190613303565b94506120a1565b8093505050505b919050565b61214082826123a4565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000811415612245576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261225991906132ad565b9050817f00000000000000000000000000000000000000000000000000000000000000006122879190613263565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156122dd578260008082825461237a91906132ad565b92505081905550505050565b50505050565b50505050565b61239f83838360016124d4565b505050565b60008114156123df576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826123f391906132ad565b905083600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818060010192508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561244c57826000808282546124c791906132ad565b9250508190555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612541576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561257c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125896000868387612386565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561275357506127528773ffffffffffffffffffffffffffffffffffffffff16611dc0565b5b15612819575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c86000888480600101955088611de3565b6127fe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561275957826000541461281457600080fd5b612885565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561281a575b81600081905550505061289b600086838761238c565b5050505050565b8280546128ae906134bc565b90600052602060002090601f0160209004810192826128d05760008555612917565b82601f106128e957805160ff1916838001178555612917565b82800160010185558215612917579182015b828111156129165782518255916020019190600101906128fb565b5b509050612924919061296b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561298457600081600090555060010161296c565b5090565b600061299b612996846131b3565b61318e565b9050828152602081018484840111156129b7576129b6613689565b5b6129c284828561347a565b509392505050565b60006129dd6129d8846131e4565b61318e565b9050828152602081018484840111156129f9576129f8613689565b5b612a0484828561347a565b509392505050565b600081359050612a1b816137f1565b92915050565b600081359050612a3081613808565b92915050565b600081359050612a458161381f565b92915050565b600081519050612a5a8161381f565b92915050565b600082601f830112612a7557612a74613684565b5b8135612a85848260208601612988565b91505092915050565b600082601f830112612aa357612aa2613684565b5b8135612ab38482602086016129ca565b91505092915050565b600081359050612acb81613836565b92915050565b600060208284031215612ae757612ae6613693565b5b6000612af584828501612a0c565b91505092915050565b60008060408385031215612b1557612b14613693565b5b6000612b2385828601612a0c565b9250506020612b3485828601612a0c565b9150509250929050565b600080600060608486031215612b5757612b56613693565b5b6000612b6586828701612a0c565b9350506020612b7686828701612a0c565b9250506040612b8786828701612abc565b9150509250925092565b60008060008060808587031215612bab57612baa613693565b5b6000612bb987828801612a0c565b9450506020612bca87828801612a0c565b9350506040612bdb87828801612abc565b925050606085013567ffffffffffffffff811115612bfc57612bfb61368e565b5b612c0887828801612a60565b91505092959194509250565b60008060408385031215612c2b57612c2a613693565b5b6000612c3985828601612a0c565b9250506020612c4a85828601612a21565b9150509250929050565b60008060408385031215612c6b57612c6a613693565b5b6000612c7985828601612a0c565b9250506020612c8a85828601612abc565b9150509250929050565b600060208284031215612caa57612ca9613693565b5b6000612cb884828501612a36565b91505092915050565b600060208284031215612cd757612cd6613693565b5b6000612ce584828501612a4b565b91505092915050565b600060208284031215612d0457612d03613693565b5b600082013567ffffffffffffffff811115612d2257612d2161368e565b5b612d2e84828501612a8e565b91505092915050565b600060208284031215612d4d57612d4c613693565b5b6000612d5b84828501612abc565b91505092915050565b60008060408385031215612d7b57612d7a613693565b5b6000612d8985828601612abc565b9250506020612d9a85828601612abc565b9150509250929050565b612dad816133f6565b82525050565b612dbc81613408565b82525050565b6000612dcd82613215565b612dd7818561322b565b9350612de7818560208601613489565b612df081613698565b840191505092915050565b6000612e0682613220565b612e108185613247565b9350612e20818560208601613489565b612e2981613698565b840191505092915050565b6000612e3f82613220565b612e498185613258565b9350612e59818560208601613489565b80840191505092915050565b6000612e72601183613247565b9150612e7d826136a9565b602082019050919050565b6000612e95600c83613247565b9150612ea0826136d2565b602082019050919050565b6000612eb8602683613247565b9150612ec3826136fb565b604082019050919050565b6000612edb601883613247565b9150612ee68261374a565b602082019050919050565b6000612efe600883613247565b9150612f0982613773565b602082019050919050565b6000612f21601e83613247565b9150612f2c8261379c565b602082019050919050565b6000612f44602083613247565b9150612f4f826137c5565b602082019050919050565b6000612f6760008361323c565b9150612f72826137ee565b600082019050919050565b612f8681613460565b82525050565b612f958161346a565b82525050565b6000612fa78285612e34565b9150612fb38284612e34565b91508190509392505050565b6000612fca82612f5a565b9150819050919050565b6000602082019050612fe96000830184612da4565b92915050565b60006080820190506130046000830187612da4565b6130116020830186612da4565b61301e6040830185612f7d565b81810360608301526130308184612dc2565b905095945050505050565b60006020820190506130506000830184612db3565b92915050565b600060208201905081810360008301526130708184612dfb565b905092915050565b6000602082019050818103600083015261309181612e65565b9050919050565b600060208201905081810360008301526130b181612e88565b9050919050565b600060208201905081810360008301526130d181612eab565b9050919050565b600060208201905081810360008301526130f181612ece565b9050919050565b6000602082019050818103600083015261311181612ef1565b9050919050565b6000602082019050818103600083015261313181612f14565b9050919050565b6000602082019050818103600083015261315181612f37565b9050919050565b600060208201905061316d6000830184612f7d565b92915050565b60006020820190506131886000830184612f8c565b92915050565b60006131986131a9565b90506131a482826134ee565b919050565b6000604051905090565b600067ffffffffffffffff8211156131ce576131cd613655565b5b6131d782613698565b9050602081019050919050565b600067ffffffffffffffff8211156131ff576131fe613655565b5b61320882613698565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061326e82613440565b915061327983613440565b92508273ffffffffffffffffffffffffffffffffffffffff038211156132a2576132a1613599565b5b828201905092915050565b60006132b882613460565b91506132c383613460565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132f8576132f7613599565b5b828201905092915050565b600061330e82613460565b915061331983613460565b925082613329576133286135c8565b5b828204905092915050565b600061333f82613460565b915061334a83613460565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561338357613382613599565b5b828202905092915050565b600061339982613440565b91506133a483613440565b9250828210156133b7576133b6613599565b5b828203905092915050565b60006133cd82613460565b91506133d883613460565b9250828210156133eb576133ea613599565b5b828203905092915050565b600061340182613440565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156134a757808201518184015260208101905061348c565b838111156134b6576000848401525b50505050565b600060028204905060018216806134d457607f821691505b602082108114156134e8576134e76135f7565b5b50919050565b6134f782613698565b810181811067ffffffffffffffff8211171561351657613515613655565b5b80604052505050565b600061352a82613460565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561355d5761355c613599565b5b600182019050919050565b600061357382613460565b915061357e83613460565b92508261358e5761358d6135c8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6137fa816133f6565b811461380557600080fd5b50565b61381181613408565b811461381c57600080fd5b50565b61382881613414565b811461383357600080fd5b50565b61383f81613460565b811461384a57600080fd5b5056fea264697066735822122012aaeadda1a1ca229dd9da698e3ba1a58c57efb925f269ca6e44e0035ef1fa3464736f6c63430008070033697066733a2f2f51516d64376a584b3832737a48584747733374784853774a4e52774a74386a71503534766f39625545575069464a712f

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063c4a412251161008a578063dc25772511610064578063dc2577251461055f578063e985e9c514610588578063f2fde38b146105c5578063f968adbe146105ee57610181565b8063c4a41225146104ce578063c87b56dd146104f9578063ce24359c1461053657610181565b806370a08231146103c05780638da5cb5b146103fd57806395d89b41146104285780639b642de114610453578063a22cb4651461047c578063b88d4fde146104a557610181565b80631cd965a71161013e5780633ccfd60b116101185780633ccfd60b1461031857806342842e0e1461032f57806362b99ad4146103585780636352211e1461038357610181565b80631cd965a7146102aa57806323b872dd146102d35780632db11544146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806313faede61461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612c94565b610619565b6040516101ba919061303b565b60405180910390f35b3480156101cf57600080fd5b506101d86106fb565b6040516101e59190613056565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612d37565b61078d565b6040516102229190612fd4565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612c54565b610809565b005b34801561026057600080fd5b50610269610914565b6040516102769190613158565b60405180910390f35b34801561028b57600080fd5b50610294610938565b6040516102a19190613158565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612d37565b61094f565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190612b3e565b610963565b005b61031660048036038101906103119190612d37565b610973565b005b34801561032457600080fd5b5061032d610ad7565b005b34801561033b57600080fd5b5061035660048036038101906103519190612b3e565b610b9c565b005b34801561036457600080fd5b5061036d610bbc565b60405161037a9190613056565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612d37565b610c4a565b6040516103b79190612fd4565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612ad1565b610c60565b6040516103f49190613158565b60405180910390f35b34801561040957600080fd5b50610412610df5565b60405161041f9190612fd4565b60405180910390f35b34801561043457600080fd5b5061043d610e1f565b60405161044a9190613056565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612cee565b610eb1565b005b34801561048857600080fd5b506104a3600480360381019061049e9190612c14565b610ed3565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612b91565b61104b565b005b3480156104da57600080fd5b506104e36110c7565b6040516104f09190613173565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612d37565b6110eb565b60405161052d9190613056565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612d64565b61118a565b005b34801561056b57600080fd5b5061058660048036038101906105819190612d64565b6111fe565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612afe565b611273565b6040516105bc919061303b565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612ad1565b611307565b005b3480156105fa57600080fd5b5061060361138b565b6040516106109190613173565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f457506106f3826113af565b5b9050919050565b60606002805461070a906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610736906134bc565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b600061079882611419565b6107ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081482610c4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089b611467565b73ffffffffffffffffffffffffffffffffffffffff16141580156108cd57506108cb816108c6611467565b611273565b155b15610904576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090f83838361146f565b505050565b7f000000000000000000000000000000000000000000000000000e35fa931a000081565b6000610942611521565b6001546000540303905090565b61095761152a565b610960816115a8565b50565b61096e8383836115b4565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d890613118565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000dac63ffffffff1681610a11610938565b610a1b91906132ad565b1115610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a53906130f8565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000e35fa931a0000610a889190613334565b341015610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613098565b60405180910390fd5b610ad43382611aa5565b50565b610adf61152a565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610b0f90612fbf565b60006040518083038185875af1925050503d8060008114610b4c576040519150601f19603f3d011682016040523d82523d6000602084013e610b51565b606091505b50508091505080610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e906130d8565b60405180910390fd5b505050565b610bb78383836040518060200160405280600081525061104b565b505050565b60098054610bc9906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf5906134bc565b8015610c425780601f10610c1757610100808354040283529160200191610c42565b820191906000526020600020905b815481529060010190602001808311610c2557829003601f168201915b505050505081565b6000610c5582611ac3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610d9857600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610df0565b6000547f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957083610dc7919061338e565b73ffffffffffffffffffffffffffffffffffffffff1611610deb5760019050610df0565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e2e906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5a906134bc565b8015610ea75780601f10610e7c57610100808354040283529160200191610ea7565b820191906000526020600020905b815481529060010190602001808311610e8a57829003601f168201915b5050505050905090565b610eb961152a565b8060099080519060200190610ecf9291906128a2565b5050565b610edb611467565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f40576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f4d611467565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ffa611467565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161103f919061303b565b60405180910390a35050565b6110568484846115b4565b6110758373ffffffffffffffffffffffffffffffffffffffff16611dc0565b801561108a575061108884848484611de3565b155b156110c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b7f0000000000000000000000000000000000000000000000000000000000000dac81565b60606110f682611419565b61112c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611136611f43565b90506000815114156111575760405180602001604052806000815250611182565b8061116184611fd5565b604051602001611172929190612f9b565b6040516020818303038152906040525b915050919050565b818180823373ffffffffffffffffffffffffffffffffffffffff166111af91906132ad565b146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690613078565b60405180910390fd5b6111f8846115a8565b50505050565b818180823373ffffffffffffffffffffffffffffffffffffffff1661122391906132ad565b14611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613078565b60405180910390fd5b61126d3385612136565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61130f61152a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611376906130b8565b60405180910390fd5b61138881612144565b50565b7f000000000000000000000000000000000000000000000000000000000000000481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611424611521565b11158015611433575060005482105b8015611460575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611532611467565b73ffffffffffffffffffffffffffffffffffffffff16611550610df5565b73ffffffffffffffffffffffffffffffffffffffff16146115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d90613138565b60405180910390fd5b565b6115b18161220a565b50565b60006115bf82611ac3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166115e6611467565b73ffffffffffffffffffffffffffffffffffffffff16148061161957506116188260000151611613611467565b611273565b5b8061165e5750611627611467565b73ffffffffffffffffffffffffffffffffffffffff166116468461078d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611697576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611700576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611767576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117748585856001612386565b611784600084846000015161146f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a3557600054811015611a345782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a9e858585600161238c565b5050505050565b611abf828260405180602001604052806000815250612392565b5050565b611acb612928565b600082905080611ad9611521565b11158015611ae8575060005481105b15611d89576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d8757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bfd578092505050611dbb565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d1357819350505050611dbb565b6000816001900391508111611c0457847f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611dbb565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e09611467565b8786866040518563ffffffff1660e01b8152600401611e2b9493929190612fef565b602060405180830381600087803b158015611e4557600080fd5b505af1925050508015611e7657506040513d601f19601f82011682018060405250810190611e739190612cc1565b60015b611ef0573d8060008114611ea6576040519150601f19603f3d011682016040523d82523d6000602084013e611eab565b606091505b50600081511415611ee8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611f52906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611f7e906134bc565b8015611fcb5780601f10611fa057610100808354040283529160200191611fcb565b820191906000526020600020905b815481529060010190602001808311611fae57829003601f168201915b5050505050905090565b6060600082141561201d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612131565b600082905060005b6000821461204f5780806120389061351f565b915050600a826120489190613303565b9150612025565b60008167ffffffffffffffff81111561206b5761206a613655565b5b6040519080825280601f01601f19166020018201604052801561209d5781602001600182028036833780820191505090505b5090505b6000851461212a576001826120b691906133c2565b9150600a856120c59190613568565b60306120d191906132ad565b60f81b8183815181106120e7576120e6613626565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121239190613303565b94506120a1565b8093505050505b919050565b61214082826123a4565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000811415612245576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261225991906132ad565b9050817f000000000000000000000000521fad559524f59515912c1b80a828fab0a795706122879190613263565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000521fad559524f59515912c1b80a828fab0a795700173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156122dd578260008082825461237a91906132ad565b92505081905550505050565b50505050565b50505050565b61239f83838360016124d4565b505050565b60008114156123df576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826123f391906132ad565b905083600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818060010192508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561244c57826000808282546124c791906132ad565b9250508190555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612541576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561257c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125896000868387612386565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561275357506127528773ffffffffffffffffffffffffffffffffffffffff16611dc0565b5b15612819575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c86000888480600101955088611de3565b6127fe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561275957826000541461281457600080fd5b612885565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561281a575b81600081905550505061289b600086838761238c565b5050505050565b8280546128ae906134bc565b90600052602060002090601f0160209004810192826128d05760008555612917565b82601f106128e957805160ff1916838001178555612917565b82800160010185558215612917579182015b828111156129165782518255916020019190600101906128fb565b5b509050612924919061296b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561298457600081600090555060010161296c565b5090565b600061299b612996846131b3565b61318e565b9050828152602081018484840111156129b7576129b6613689565b5b6129c284828561347a565b509392505050565b60006129dd6129d8846131e4565b61318e565b9050828152602081018484840111156129f9576129f8613689565b5b612a0484828561347a565b509392505050565b600081359050612a1b816137f1565b92915050565b600081359050612a3081613808565b92915050565b600081359050612a458161381f565b92915050565b600081519050612a5a8161381f565b92915050565b600082601f830112612a7557612a74613684565b5b8135612a85848260208601612988565b91505092915050565b600082601f830112612aa357612aa2613684565b5b8135612ab38482602086016129ca565b91505092915050565b600081359050612acb81613836565b92915050565b600060208284031215612ae757612ae6613693565b5b6000612af584828501612a0c565b91505092915050565b60008060408385031215612b1557612b14613693565b5b6000612b2385828601612a0c565b9250506020612b3485828601612a0c565b9150509250929050565b600080600060608486031215612b5757612b56613693565b5b6000612b6586828701612a0c565b9350506020612b7686828701612a0c565b9250506040612b8786828701612abc565b9150509250925092565b60008060008060808587031215612bab57612baa613693565b5b6000612bb987828801612a0c565b9450506020612bca87828801612a0c565b9350506040612bdb87828801612abc565b925050606085013567ffffffffffffffff811115612bfc57612bfb61368e565b5b612c0887828801612a60565b91505092959194509250565b60008060408385031215612c2b57612c2a613693565b5b6000612c3985828601612a0c565b9250506020612c4a85828601612a21565b9150509250929050565b60008060408385031215612c6b57612c6a613693565b5b6000612c7985828601612a0c565b9250506020612c8a85828601612abc565b9150509250929050565b600060208284031215612caa57612ca9613693565b5b6000612cb884828501612a36565b91505092915050565b600060208284031215612cd757612cd6613693565b5b6000612ce584828501612a4b565b91505092915050565b600060208284031215612d0457612d03613693565b5b600082013567ffffffffffffffff811115612d2257612d2161368e565b5b612d2e84828501612a8e565b91505092915050565b600060208284031215612d4d57612d4c613693565b5b6000612d5b84828501612abc565b91505092915050565b60008060408385031215612d7b57612d7a613693565b5b6000612d8985828601612abc565b9250506020612d9a85828601612abc565b9150509250929050565b612dad816133f6565b82525050565b612dbc81613408565b82525050565b6000612dcd82613215565b612dd7818561322b565b9350612de7818560208601613489565b612df081613698565b840191505092915050565b6000612e0682613220565b612e108185613247565b9350612e20818560208601613489565b612e2981613698565b840191505092915050565b6000612e3f82613220565b612e498185613258565b9350612e59818560208601613489565b80840191505092915050565b6000612e72601183613247565b9150612e7d826136a9565b602082019050919050565b6000612e95600c83613247565b9150612ea0826136d2565b602082019050919050565b6000612eb8602683613247565b9150612ec3826136fb565b604082019050919050565b6000612edb601883613247565b9150612ee68261374a565b602082019050919050565b6000612efe600883613247565b9150612f0982613773565b602082019050919050565b6000612f21601e83613247565b9150612f2c8261379c565b602082019050919050565b6000612f44602083613247565b9150612f4f826137c5565b602082019050919050565b6000612f6760008361323c565b9150612f72826137ee565b600082019050919050565b612f8681613460565b82525050565b612f958161346a565b82525050565b6000612fa78285612e34565b9150612fb38284612e34565b91508190509392505050565b6000612fca82612f5a565b9150819050919050565b6000602082019050612fe96000830184612da4565b92915050565b60006080820190506130046000830187612da4565b6130116020830186612da4565b61301e6040830185612f7d565b81810360608301526130308184612dc2565b905095945050505050565b60006020820190506130506000830184612db3565b92915050565b600060208201905081810360008301526130708184612dfb565b905092915050565b6000602082019050818103600083015261309181612e65565b9050919050565b600060208201905081810360008301526130b181612e88565b9050919050565b600060208201905081810360008301526130d181612eab565b9050919050565b600060208201905081810360008301526130f181612ece565b9050919050565b6000602082019050818103600083015261311181612ef1565b9050919050565b6000602082019050818103600083015261313181612f14565b9050919050565b6000602082019050818103600083015261315181612f37565b9050919050565b600060208201905061316d6000830184612f7d565b92915050565b60006020820190506131886000830184612f8c565b92915050565b60006131986131a9565b90506131a482826134ee565b919050565b6000604051905090565b600067ffffffffffffffff8211156131ce576131cd613655565b5b6131d782613698565b9050602081019050919050565b600067ffffffffffffffff8211156131ff576131fe613655565b5b61320882613698565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061326e82613440565b915061327983613440565b92508273ffffffffffffffffffffffffffffffffffffffff038211156132a2576132a1613599565b5b828201905092915050565b60006132b882613460565b91506132c383613460565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132f8576132f7613599565b5b828201905092915050565b600061330e82613460565b915061331983613460565b925082613329576133286135c8565b5b828204905092915050565b600061333f82613460565b915061334a83613460565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561338357613382613599565b5b828202905092915050565b600061339982613440565b91506133a483613440565b9250828210156133b7576133b6613599565b5b828203905092915050565b60006133cd82613460565b91506133d883613460565b9250828210156133eb576133ea613599565b5b828203905092915050565b600061340182613440565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156134a757808201518184015260208101905061348c565b838111156134b6576000848401525b50505050565b600060028204905060018216806134d457607f821691505b602082108114156134e8576134e76135f7565b5b50919050565b6134f782613698565b810181811067ffffffffffffffff8211171561351657613515613655565b5b80604052505050565b600061352a82613460565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561355d5761355c613599565b5b600182019050919050565b600061357382613460565b915061357e83613460565b92508261358e5761358d6135c8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6137fa816133f6565b811461380557600080fd5b50565b61381181613408565b811461381c57600080fd5b50565b61382881613414565b811461383357600080fd5b50565b61383f81613460565b811461384a57600080fd5b5056fea264697066735822122012aaeadda1a1ca229dd9da698e3ba1a58c57efb925f269ca6e44e0035ef1fa3464736f6c63430008070033

Deployed Bytecode Sourcemap

47958:2001:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28544:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32385:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33888:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33451:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48097:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27793:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49253:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34745:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48947:298;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49674:278;;;;;;;;;;;;;:::i;:::-;;34986:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48004:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32194:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28915:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4731:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32554:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48735:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34164:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35242:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48147:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32729:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49352:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49507:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34514:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5183:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48194:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28544:305;28646:4;28698:25;28683:40;;;:11;:40;;;;:105;;;;28755:33;28740:48;;;:11;:48;;;;28683:105;:158;;;;28805:36;28829:11;28805:23;:36::i;:::-;28683:158;28663:178;;28544:305;;;:::o;32385:100::-;32439:13;32472:5;32465:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32385:100;:::o;33888:204::-;33956:7;33981:16;33989:7;33981;:16::i;:::-;33976:64;;34006:34;;;;;;;;;;;;;;33976:64;34060:15;:24;34076:7;34060:24;;;;;;;;;;;;;;;;;;;;;34053:31;;33888:204;;;:::o;33451:371::-;33524:13;33540:24;33556:7;33540:15;:24::i;:::-;33524:40;;33585:5;33579:11;;:2;:11;;;33575:48;;;33599:24;;;;;;;;;;;;;;33575:48;33656:5;33640:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33666:37;33683:5;33690:12;:10;:12::i;:::-;33666:16;:37::i;:::-;33665:38;33640:63;33636:138;;;33727:35;;;;;;;;;;;;;;33636:138;33786:28;33795:2;33799:7;33808:5;33786:8;:28::i;:::-;33513:309;33451:371;;:::o;48097:43::-;;;:::o;27793:303::-;27837:7;28062:15;:13;:15::i;:::-;28047:12;;28031:13;;:28;:46;28024:53;;27793:303;:::o;49253:91::-;4617:13;:11;:13::i;:::-;49314:22:::1;49329:6;49314:14;:22::i;:::-;49253:91:::0;:::o;34745:170::-;34879:28;34889:4;34895:2;34899:7;34879:9;:28::i;:::-;34745:170;;;:::o;48947:298::-;48295:10;48282:23;;:9;:23;;;48274:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49054:9:::1;49029:34;;49045:6;49029:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;49021:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49175:6;49168:4;:13;;;;:::i;:::-;49155:9;:26;;49147:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;49208:29;49218:10;49230:6;49208:9;:29::i;:::-;48947:298:::0;:::o;49674:278::-;4617:13;:11;:13::i;:::-;49722:18:::1;49743:21;49722:42;;49777:9;49797:10;49777:31;;49821:12;49860:1;:6;;49874:10;49860:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49846:43;;;;;49908:7;49900:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49711:241;;;49674:278::o:0;34986:185::-;35124:39;35141:4;35147:2;35151:7;35124:39;;;;;;;;;;;;:16;:39::i;:::-;34986:185;;;:::o;48004:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32194:124::-;32258:7;32285:20;32297:7;32285:11;:20::i;:::-;:25;;;32278:32;;32194:124;;;:::o;28915:395::-;28979:7;29020:1;29003:19;;:5;:19;;;28999:60;;;29031:28;;;;;;;;;;;;;;28999:60;29107:1;29076:12;:19;29089:5;29076:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29072:108;;29140:12;:19;29153:5;29140:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29132:36;;29125:43;;;;29072:108;29232:13;;29221:6;29204:5;29196:32;;;;:::i;:::-;:49;;;29192:90;;29269:1;29262:8;;;;29192:90;29301:1;29294:8;;28915:395;;;;:::o;4731:87::-;4777:7;4804:6;;;;;;;;;;;4797:13;;4731:87;:::o;32554:104::-;32610:13;32643:7;32636:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32554:104;:::o;48735:86::-;4617:13;:11;:13::i;:::-;48810:3:::1;48798:9;:15;;;;;;;;;;;;:::i;:::-;;48735:86:::0;:::o;34164:279::-;34267:12;:10;:12::i;:::-;34255:24;;:8;:24;;;34251:54;;;34288:17;;;;;;;;;;;;;;34251:54;34363:8;34318:18;:32;34337:12;:10;:12::i;:::-;34318:32;;;;;;;;;;;;;;;:42;34351:8;34318:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34416:8;34387:48;;34402:12;:10;:12::i;:::-;34387:48;;;34426:8;34387:48;;;;;;:::i;:::-;;;;;;;;34164:279;;:::o;35242:369::-;35409:28;35419:4;35425:2;35429:7;35409:9;:28::i;:::-;35452:15;:2;:13;;;:15::i;:::-;:76;;;;;35472:56;35503:4;35509:2;35513:7;35522:5;35472:30;:56::i;:::-;35471:57;35452:76;35448:156;;;35552:40;;;;;;;;;;;;;;35448:156;35242:369;;;;:::o;48147:40::-;;;:::o;32729:318::-;32802:13;32833:16;32841:7;32833;:16::i;:::-;32828:59;;32858:29;;;;;;;;;;;;;;32828:59;32900:21;32924:10;:8;:10::i;:::-;32900:34;;32977:1;32958:7;32952:21;:26;;:87;;;;;;;;;;;;;;;;;33005:7;33014:18;:7;:16;:18::i;:::-;32988:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32952:87;32945:94;;;32729:318;;;:::o;49352:147::-;49438:6;49446:10;48491;48481:6;48468:10;48452:28;;:35;;;;:::i;:::-;:49;48444:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49469:22:::1;49484:6;49469:14;:22::i;:::-;49352:147:::0;;;;:::o;49507:159::-;49593:6;49601:10;48491;48481:6;48468:10;48452:28;;:35;;;;:::i;:::-;:49;48444:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49624:34:::1;49639:10;49651:6;49624:14;:34::i;:::-;49507:159:::0;;;;:::o;34514:164::-;34611:4;34635:18;:25;34654:5;34635:25;;;;;;;;;;;;;;;:35;34661:8;34635:35;;;;;;;;;;;;;;;;;;;;;;;;;34628:42;;34514:164;;;;:::o;5183:201::-;4617:13;:11;:13::i;:::-;5292:1:::1;5272:22;;:8;:22;;;;5264:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5348:28;5367:8;5348:18;:28::i;:::-;5183:201:::0;:::o;48194:36::-;;;:::o;17131:157::-;17216:4;17255:25;17240:40;;;:11;:40;;;;17233:47;;17131:157;;;:::o;35866:187::-;35923:4;35966:7;35947:15;:13;:15::i;:::-;:26;;:53;;;;;35987:13;;35977:7;:23;35947:53;:98;;;;;36018:11;:20;36030:7;36018:20;;;;;;;;;;;:27;;;;;;;;;;;;36017:28;35947:98;35940:105;;35866:187;;;:::o;3282:98::-;3335:7;3362:10;3355:17;;3282:98;:::o;44942:196::-;45084:2;45057:15;:24;45073:7;45057:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45122:7;45118:2;45102:28;;45111:5;45102:28;;;;;;;;;;;;44942:196;;;:::o;48829:110::-;48903:7;48930:1;48923:8;;48829:110;:::o;4896:132::-;4971:12;:10;:12::i;:::-;4960:23;;:7;:5;:7::i;:::-;:23;;;4952:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4896:132::o;36699:121::-;36789:19;36799:8;36789:9;:19::i;:::-;36699:121;:::o;40444:2112::-;40559:35;40597:20;40609:7;40597:11;:20::i;:::-;40559:58;;40630:22;40672:13;:18;;;40656:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40707:50;40724:13;:18;;;40744:12;:10;:12::i;:::-;40707:16;:50::i;:::-;40656:101;:154;;;;40798:12;:10;:12::i;:::-;40774:36;;:20;40786:7;40774:11;:20::i;:::-;:36;;;40656:154;40630:181;;40829:17;40824:66;;40855:35;;;;;;;;;;;;;;40824:66;40927:4;40905:26;;:13;:18;;;:26;;;40901:67;;40940:28;;;;;;;;;;;;;;40901:67;40997:1;40983:16;;:2;:16;;;40979:52;;;41008:23;;;;;;;;;;;;;;40979:52;41044:43;41066:4;41072:2;41076:7;41085:1;41044:21;:43::i;:::-;41152:49;41169:1;41173:7;41182:13;:18;;;41152:8;:49::i;:::-;41527:1;41497:12;:18;41510:4;41497:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41571:1;41543:12;:16;41556:2;41543:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41617:2;41589:11;:20;41601:7;41589:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41679:15;41634:11;:20;41646:7;41634:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41947:19;41979:1;41969:7;:11;41947:33;;42040:1;41999:43;;:11;:24;42011:11;41999:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;41995:445;;;42224:13;;42210:11;:27;42206:219;;;42294:13;:18;;;42262:11;:24;42274:11;42262:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42377:13;:28;;;42335:11;:24;42347:11;42335:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42206:219;41995:445;41472:979;42487:7;42483:2;42468:27;;42477:4;42468:27;;;;;;;;;;;;42506:42;42527:4;42533:2;42537:7;42546:1;42506:20;:42::i;:::-;40548:2008;;40444:2112;;;:::o;36061:104::-;36130:27;36140:2;36144:8;36130:27;;;;;;;;;;;;:9;:27::i;:::-;36061:104;;:::o;30845:1287::-;30906:21;;:::i;:::-;30940:12;30955:7;30940:22;;31023:4;31004:15;:13;:15::i;:::-;:23;;:47;;;;;31038:13;;31031:4;:20;31004:47;31000:1065;;;31072:31;31106:11;:17;31118:4;31106:17;;;;;;;;;;;31072:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31147:9;:16;;;31142:904;;31218:1;31192:28;;:9;:14;;;:28;;;31188:101;;31256:9;31249:16;;;;;;31188:101;31593:13;31609:1;31593:17;;31633:270;31662:6;;;;;;;;31707:11;:17;31719:4;31707:17;;;;;;;;;;;31695:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31781:1;31755:28;;:9;:14;;;:28;;;31751:109;;31823:9;31816:16;;;;;;;31751:109;31900:1;31890:7;;;;;;;:11;31633:270;;31978:7;31960:6;31952:34;31927:9;:14;;:60;;;;;;;;;;;32017:9;32010:16;;;;;;;31142:904;31053:1012;31000:1065;32093:31;;;;;;;;;;;;;;30845:1287;;;;:::o;6975:326::-;7035:4;7292:1;7270:7;:19;;;:23;7263:30;;6975:326;;;:::o;45630:667::-;45793:4;45830:2;45814:36;;;45851:12;:10;:12::i;:::-;45865:4;45871:7;45880:5;45814:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45810:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46065:1;46048:6;:13;:18;46044:235;;;46094:40;;;;;;;;;;;;;;46044:235;46237:6;46231:13;46222:6;46218:2;46214:15;46207:38;45810:480;45943:45;;;45933:55;;;:6;:55;;;;45926:62;;;45630:667;;;;;;:::o;48616:111::-;48677:13;48710:9;48703:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48616:111;:::o;536:723::-;592:13;822:1;813:5;:10;809:53;;;840:10;;;;;;;;;;;;;;;;;;;;;809:53;872:12;887:5;872:20;;903:14;928:78;943:1;935:4;:9;928:78;;961:8;;;;;:::i;:::-;;;;992:2;984:10;;;;;:::i;:::-;;;928:78;;;1016:19;1048:6;1038:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016:39;;1066:154;1082:1;1073:5;:10;1066:154;;1110:1;1100:11;;;;;:::i;:::-;;;1177:2;1169:5;:10;;;;:::i;:::-;1156:2;:24;;;;:::i;:::-;1143:39;;1126:6;1133;1126:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1206:2;1197:11;;;;;:::i;:::-;;;1066:154;;;1244:6;1230:21;;;;;536:723;;;;:::o;36829:152::-;36944:25;36956:2;36960:8;36944:11;:25::i;:::-;36829:152;;:::o;5544:191::-;5618:16;5637:6;;;;;;;;;;;5618:25;;5663:8;5654:6;;:17;;;;;;;;;;;;;;;;;;5718:8;5687:40;;5708:8;5687:40;;;;;;;;;;;;5607:128;5544:191;:::o;39571:619::-;39672:1;39660:8;:13;39656:44;;;39682:18;;;;;;;;;;;;;;39656:44;39717:20;39740:13;;39717:36;;39768:11;39797:8;39782:12;:23;;;;:::i;:::-;39768:37;;39888:12;39870:6;39862:39;;;;:::i;:::-;39820:11;:26;39832:13;;39820:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;39960:166;40062:14;;;;;;40046:12;40028:6;40020:39;39991:86;;40008:1;39991:86;;;;;;;;;;;;40121:3;40105:12;:19;;39960:166;;40172:8;40155:13;;:25;;;;;;;:::i;:::-;;;;;;;;39641:549;;39571:619;:::o;46945:159::-;;;;;:::o;47763:158::-;;;;;:::o;36528:163::-;36651:32;36657:2;36661:8;36671:5;36678:4;36651:5;:32::i;:::-;36528:163;;;:::o;39021:542::-;39149:1;39137:8;:13;39133:44;;;39159:18;;;;;;;;;;;;;;39133:44;39194:20;39217:13;;39194:36;;39245:11;39274:8;39259:12;:23;;;;:::i;:::-;39245:37;;39331:2;39297:11;:26;39309:13;;39297:26;;;;;;;;;;;:31;;;:36;;;;;;;;;;;;;;;;;;39379:120;39435:14;;;;;;39431:2;39410:40;;39427:1;39410:40;;;;;;;;;;;;39494:3;39478:12;:19;;39379:120;;39545:8;39528:13;;:25;;;;;;;:::i;:::-;;;;;;;;39118:445;;39021:542;;:::o;37240:1773::-;37379:20;37402:13;;37379:36;;37444:1;37430:16;;:2;:16;;;37426:48;;;37455:19;;;;;;;;;;;;;;37426:48;37501:1;37489:8;:13;37485:44;;;37511:18;;;;;;;;;;;;;;37485:44;37542:61;37572:1;37576:2;37580:12;37594:8;37542:21;:61::i;:::-;37913:8;37878:12;:16;37891:2;37878:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37977:8;37937:12;:16;37950:2;37937:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38036:2;38003:11;:25;38015:12;38003:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38103:15;38053:11;:25;38065:12;38053:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38136:20;38159:12;38136:35;;38186:11;38215:8;38200:12;:23;38186:37;;38244:4;:23;;;;;38252:15;:2;:13;;;:15::i;:::-;38244:23;38240:641;;;38288:314;38344:12;38340:2;38319:38;;38336:1;38319:38;;;;;;;;;;;;38385:69;38424:1;38428:2;38432:14;;;;;;38448:5;38385:30;:69::i;:::-;38380:174;;38490:40;;;;;;;;;;;;;;38380:174;38597:3;38581:12;:19;;38288:314;;38683:12;38666:13;;:29;38662:43;;38697:8;;;38662:43;38240:641;;;38746:120;38802:14;;;;;;38798:2;38777:40;;38794:1;38777:40;;;;;;;;;;;;38861:3;38845:12;:19;;38746:120;;38240:641;38911:12;38895:13;:28;;;;37853:1082;;38945:60;38974:1;38978:2;38982:12;38996:8;38945:20;:60::i;:::-;37368:1645;37240:1773;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:109::-;7843:21;7858:5;7843:21;:::i;:::-;7838:3;7831:34;7762:109;;:::o;7877:360::-;7963:3;7991:38;8023:5;7991:38;:::i;:::-;8045:70;8108:6;8103:3;8045:70;:::i;:::-;8038:77;;8124:52;8169:6;8164:3;8157:4;8150:5;8146:16;8124:52;:::i;:::-;8201:29;8223:6;8201:29;:::i;:::-;8196:3;8192:39;8185:46;;7967:270;7877:360;;;;:::o;8243:364::-;8331:3;8359:39;8392:5;8359:39;:::i;:::-;8414:71;8478:6;8473:3;8414:71;:::i;:::-;8407:78;;8494:52;8539:6;8534:3;8527:4;8520:5;8516:16;8494:52;:::i;:::-;8571:29;8593:6;8571:29;:::i;:::-;8566:3;8562:39;8555:46;;8335:272;8243:364;;;;:::o;8613:377::-;8719:3;8747:39;8780:5;8747:39;:::i;:::-;8802:89;8884:6;8879:3;8802:89;:::i;:::-;8795:96;;8900:52;8945:6;8940:3;8933:4;8926:5;8922:16;8900:52;:::i;:::-;8977:6;8972:3;8968:16;8961:23;;8723:267;8613:377;;;;:::o;8996:366::-;9138:3;9159:67;9223:2;9218:3;9159:67;:::i;:::-;9152:74;;9235:93;9324:3;9235:93;:::i;:::-;9353:2;9348:3;9344:12;9337:19;;8996:366;;;:::o;9368:::-;9510:3;9531:67;9595:2;9590:3;9531:67;:::i;:::-;9524:74;;9607:93;9696:3;9607:93;:::i;:::-;9725:2;9720:3;9716:12;9709:19;;9368:366;;;:::o;9740:::-;9882:3;9903:67;9967:2;9962:3;9903:67;:::i;:::-;9896:74;;9979:93;10068:3;9979:93;:::i;:::-;10097:2;10092:3;10088:12;10081:19;;9740:366;;;:::o;10112:::-;10254:3;10275:67;10339:2;10334:3;10275:67;:::i;:::-;10268:74;;10351:93;10440:3;10351:93;:::i;:::-;10469:2;10464:3;10460:12;10453:19;;10112:366;;;:::o;10484:365::-;10626:3;10647:66;10711:1;10706:3;10647:66;:::i;:::-;10640:73;;10722:93;10811:3;10722:93;:::i;:::-;10840:2;10835:3;10831:12;10824:19;;10484:365;;;:::o;10855:366::-;10997:3;11018:67;11082:2;11077:3;11018:67;:::i;:::-;11011:74;;11094:93;11183:3;11094:93;:::i;:::-;11212:2;11207:3;11203:12;11196:19;;10855:366;;;:::o;11227:::-;11369:3;11390:67;11454:2;11449:3;11390:67;:::i;:::-;11383:74;;11466:93;11555:3;11466:93;:::i;:::-;11584:2;11579:3;11575:12;11568:19;;11227:366;;;:::o;11599:398::-;11758:3;11779:83;11860:1;11855:3;11779:83;:::i;:::-;11772:90;;11871:93;11960:3;11871:93;:::i;:::-;11989:1;11984:3;11980:11;11973:18;;11599:398;;;:::o;12003:118::-;12090:24;12108:5;12090:24;:::i;:::-;12085:3;12078:37;12003:118;;:::o;12127:115::-;12212:23;12229:5;12212:23;:::i;:::-;12207:3;12200:36;12127:115;;:::o;12248:435::-;12428:3;12450:95;12541:3;12532:6;12450:95;:::i;:::-;12443:102;;12562:95;12653:3;12644:6;12562:95;:::i;:::-;12555:102;;12674:3;12667:10;;12248:435;;;;;:::o;12689:379::-;12873:3;12895:147;13038:3;12895:147;:::i;:::-;12888:154;;13059:3;13052:10;;12689:379;;;:::o;13074:222::-;13167:4;13205:2;13194:9;13190:18;13182:26;;13218:71;13286:1;13275:9;13271:17;13262:6;13218:71;:::i;:::-;13074:222;;;;:::o;13302:640::-;13497:4;13535:3;13524:9;13520:19;13512:27;;13549:71;13617:1;13606:9;13602:17;13593:6;13549:71;:::i;:::-;13630:72;13698:2;13687:9;13683:18;13674:6;13630:72;:::i;:::-;13712;13780:2;13769:9;13765:18;13756:6;13712:72;:::i;:::-;13831:9;13825:4;13821:20;13816:2;13805:9;13801:18;13794:48;13859:76;13930:4;13921:6;13859:76;:::i;:::-;13851:84;;13302:640;;;;;;;:::o;13948:210::-;14035:4;14073:2;14062:9;14058:18;14050:26;;14086:65;14148:1;14137:9;14133:17;14124:6;14086:65;:::i;:::-;13948:210;;;;:::o;14164:313::-;14277:4;14315:2;14304:9;14300:18;14292:26;;14364:9;14358:4;14354:20;14350:1;14339:9;14335:17;14328:47;14392:78;14465:4;14456:6;14392:78;:::i;:::-;14384:86;;14164:313;;;;:::o;14483:419::-;14649:4;14687:2;14676:9;14672:18;14664:26;;14736:9;14730:4;14726:20;14722:1;14711:9;14707:17;14700:47;14764:131;14890:4;14764:131;:::i;:::-;14756:139;;14483:419;;;:::o;14908:::-;15074:4;15112:2;15101:9;15097:18;15089:26;;15161:9;15155:4;15151:20;15147:1;15136:9;15132:17;15125:47;15189:131;15315:4;15189:131;:::i;:::-;15181:139;;14908:419;;;:::o;15333:::-;15499:4;15537:2;15526:9;15522:18;15514:26;;15586:9;15580:4;15576:20;15572:1;15561:9;15557:17;15550:47;15614:131;15740:4;15614:131;:::i;:::-;15606:139;;15333:419;;;:::o;15758:::-;15924:4;15962:2;15951:9;15947:18;15939:26;;16011:9;16005:4;16001:20;15997:1;15986:9;15982:17;15975:47;16039:131;16165:4;16039:131;:::i;:::-;16031:139;;15758:419;;;:::o;16183:::-;16349:4;16387:2;16376:9;16372:18;16364:26;;16436:9;16430:4;16426:20;16422:1;16411:9;16407:17;16400:47;16464:131;16590:4;16464:131;:::i;:::-;16456:139;;16183:419;;;:::o;16608:::-;16774:4;16812:2;16801:9;16797:18;16789:26;;16861:9;16855:4;16851:20;16847:1;16836:9;16832:17;16825:47;16889:131;17015:4;16889:131;:::i;:::-;16881:139;;16608:419;;;:::o;17033:::-;17199:4;17237:2;17226:9;17222:18;17214:26;;17286:9;17280:4;17276:20;17272:1;17261:9;17257:17;17250:47;17314:131;17440:4;17314:131;:::i;:::-;17306:139;;17033:419;;;:::o;17458:222::-;17551:4;17589:2;17578:9;17574:18;17566:26;;17602:71;17670:1;17659:9;17655:17;17646:6;17602:71;:::i;:::-;17458:222;;;;:::o;17686:218::-;17777:4;17815:2;17804:9;17800:18;17792:26;;17828:69;17894:1;17883:9;17879:17;17870:6;17828:69;:::i;:::-;17686:218;;;;:::o;17910:129::-;17944:6;17971:20;;:::i;:::-;17961:30;;18000:33;18028:4;18020:6;18000:33;:::i;:::-;17910:129;;;:::o;18045:75::-;18078:6;18111:2;18105:9;18095:19;;18045:75;:::o;18126:307::-;18187:4;18277:18;18269:6;18266:30;18263:56;;;18299:18;;:::i;:::-;18263:56;18337:29;18359:6;18337:29;:::i;:::-;18329:37;;18421:4;18415;18411:15;18403:23;;18126:307;;;:::o;18439:308::-;18501:4;18591:18;18583:6;18580:30;18577:56;;;18613:18;;:::i;:::-;18577:56;18651:29;18673:6;18651:29;:::i;:::-;18643:37;;18735:4;18729;18725:15;18717:23;;18439:308;;;:::o;18753:98::-;18804:6;18838:5;18832:12;18822:22;;18753:98;;;:::o;18857:99::-;18909:6;18943:5;18937:12;18927:22;;18857:99;;;:::o;18962:168::-;19045:11;19079:6;19074:3;19067:19;19119:4;19114:3;19110:14;19095:29;;18962:168;;;;:::o;19136:147::-;19237:11;19274:3;19259:18;;19136:147;;;;:::o;19289:169::-;19373:11;19407:6;19402:3;19395:19;19447:4;19442:3;19438:14;19423:29;;19289:169;;;;:::o;19464:148::-;19566:11;19603:3;19588:18;;19464:148;;;;:::o;19618:281::-;19658:3;19677:20;19695:1;19677:20;:::i;:::-;19672:25;;19711:20;19729:1;19711:20;:::i;:::-;19706:25;;19841:1;19797:42;19793:50;19790:1;19787:57;19784:83;;;19847:18;;:::i;:::-;19784:83;19891:1;19888;19884:9;19877:16;;19618:281;;;;:::o;19905:305::-;19945:3;19964:20;19982:1;19964:20;:::i;:::-;19959:25;;19998:20;20016:1;19998:20;:::i;:::-;19993:25;;20152:1;20084:66;20080:74;20077:1;20074:81;20071:107;;;20158:18;;:::i;:::-;20071:107;20202:1;20199;20195:9;20188:16;;19905:305;;;;:::o;20216:185::-;20256:1;20273:20;20291:1;20273:20;:::i;:::-;20268:25;;20307:20;20325:1;20307:20;:::i;:::-;20302:25;;20346:1;20336:35;;20351:18;;:::i;:::-;20336:35;20393:1;20390;20386:9;20381:14;;20216:185;;;;:::o;20407:348::-;20447:7;20470:20;20488:1;20470:20;:::i;:::-;20465:25;;20504:20;20522:1;20504:20;:::i;:::-;20499:25;;20692:1;20624:66;20620:74;20617:1;20614:81;20609:1;20602:9;20595:17;20591:105;20588:131;;;20699:18;;:::i;:::-;20588:131;20747:1;20744;20740:9;20729:20;;20407:348;;;;:::o;20761:191::-;20801:4;20821:20;20839:1;20821:20;:::i;:::-;20816:25;;20855:20;20873:1;20855:20;:::i;:::-;20850:25;;20894:1;20891;20888:8;20885:34;;;20899:18;;:::i;:::-;20885:34;20944:1;20941;20937:9;20929:17;;20761:191;;;;:::o;20958:::-;20998:4;21018:20;21036:1;21018:20;:::i;:::-;21013:25;;21052:20;21070:1;21052:20;:::i;:::-;21047:25;;21091:1;21088;21085:8;21082:34;;;21096:18;;:::i;:::-;21082:34;21141:1;21138;21134:9;21126:17;;20958:191;;;;:::o;21155:96::-;21192:7;21221:24;21239:5;21221:24;:::i;:::-;21210:35;;21155:96;;;:::o;21257:90::-;21291:7;21334:5;21327:13;21320:21;21309:32;;21257:90;;;:::o;21353:149::-;21389:7;21429:66;21422:5;21418:78;21407:89;;21353:149;;;:::o;21508:126::-;21545:7;21585:42;21578:5;21574:54;21563:65;;21508:126;;;:::o;21640:77::-;21677:7;21706:5;21695:16;;21640:77;;;:::o;21723:93::-;21759:7;21799:10;21792:5;21788:22;21777:33;;21723:93;;;:::o;21822:154::-;21906:6;21901:3;21896;21883:30;21968:1;21959:6;21954:3;21950:16;21943:27;21822:154;;;:::o;21982:307::-;22050:1;22060:113;22074:6;22071:1;22068:13;22060:113;;;22159:1;22154:3;22150:11;22144:18;22140:1;22135:3;22131:11;22124:39;22096:2;22093:1;22089:10;22084:15;;22060:113;;;22191:6;22188:1;22185:13;22182:101;;;22271:1;22262:6;22257:3;22253:16;22246:27;22182:101;22031:258;21982:307;;;:::o;22295:320::-;22339:6;22376:1;22370:4;22366:12;22356:22;;22423:1;22417:4;22413:12;22444:18;22434:81;;22500:4;22492:6;22488:17;22478:27;;22434:81;22562:2;22554:6;22551:14;22531:18;22528:38;22525:84;;;22581:18;;:::i;:::-;22525:84;22346:269;22295:320;;;:::o;22621:281::-;22704:27;22726:4;22704:27;:::i;:::-;22696:6;22692:40;22834:6;22822:10;22819:22;22798:18;22786:10;22783:34;22780:62;22777:88;;;22845:18;;:::i;:::-;22777:88;22885:10;22881:2;22874:22;22664:238;22621:281;;:::o;22908:233::-;22947:3;22970:24;22988:5;22970:24;:::i;:::-;22961:33;;23016:66;23009:5;23006:77;23003:103;;;23086:18;;:::i;:::-;23003:103;23133:1;23126:5;23122:13;23115:20;;22908:233;;;:::o;23147:176::-;23179:1;23196:20;23214:1;23196:20;:::i;:::-;23191:25;;23230:20;23248:1;23230:20;:::i;:::-;23225:25;;23269:1;23259:35;;23274:18;;:::i;:::-;23259:35;23315:1;23312;23308:9;23303:14;;23147:176;;;;:::o;23329:180::-;23377:77;23374:1;23367:88;23474:4;23471:1;23464:15;23498:4;23495:1;23488:15;23515:180;23563:77;23560:1;23553:88;23660:4;23657:1;23650:15;23684:4;23681:1;23674:15;23701:180;23749:77;23746:1;23739:88;23846:4;23843:1;23836:15;23870:4;23867:1;23860:15;23887:180;23935:77;23932:1;23925:88;24032:4;24029:1;24022:15;24056:4;24053:1;24046:15;24073:180;24121:77;24118:1;24111:88;24218:4;24215:1;24208:15;24242:4;24239:1;24232:15;24259:117;24368:1;24365;24358:12;24382:117;24491:1;24488;24481:12;24505:117;24614:1;24611;24604:12;24628:117;24737:1;24734;24727:12;24751:102;24792:6;24843:2;24839:7;24834:2;24827:5;24823:14;24819:28;24809:38;;24751:102;;;:::o;24859:167::-;24999:19;24995:1;24987:6;24983:14;24976:43;24859:167;:::o;25032:162::-;25172:14;25168:1;25160:6;25156:14;25149:38;25032:162;:::o;25200:225::-;25340:34;25336:1;25328:6;25324:14;25317:58;25409:8;25404:2;25396:6;25392:15;25385:33;25200:225;:::o;25431:174::-;25571:26;25567:1;25559:6;25555:14;25548:50;25431:174;:::o;25611:158::-;25751:10;25747:1;25739:6;25735:14;25728:34;25611:158;:::o;25775:180::-;25915:32;25911:1;25903:6;25899:14;25892:56;25775:180;:::o;25961:182::-;26101:34;26097:1;26089:6;26085:14;26078:58;25961:182;:::o;26149:114::-;;:::o;26269:122::-;26342:24;26360:5;26342:24;:::i;:::-;26335:5;26332:35;26322:63;;26381:1;26378;26371:12;26322:63;26269:122;:::o;26397:116::-;26467:21;26482:5;26467:21;:::i;:::-;26460:5;26457:32;26447:60;;26503:1;26500;26493:12;26447:60;26397:116;:::o;26519:120::-;26591:23;26608:5;26591:23;:::i;:::-;26584:5;26581:34;26571:62;;26629:1;26626;26619:12;26571:62;26519:120;:::o;26645:122::-;26718:24;26736:5;26718:24;:::i;:::-;26711:5;26708:35;26698:63;;26757:1;26754;26747:12;26698:63;26645:122;:::o

Swarm Source

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