ETH Price: $3,462.95 (+2.03%)
Gas: 19 Gwei

Token

Lil Dickbutts (LDB)
 

Overview

Max Total Supply

2,004 LDB

Holders

463

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 LDB
0xeec6d6c311074ab95497553e03646c80126b67fb
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:
LilDickbutts

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-05
*/

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

    /**
     * @dev 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) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    /**
     * @dev 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: LDBTEST.sol


pragma solidity 0.8.11;  





  
contract LilDickbutts  is ERC721A, Ownable, ReentrancyGuard{ 
    using Strings for uint;
    mapping(address=>uint256) public numberMinted;
    mapping(address=>uint256) public claimedWhiteListCount;
    string private _baseURIextended = "ipfs://QmUZB6RjhQFMPLFUAgTRYsvpSjzPvh9SgBEkCYSVMCMUme/";
    string private beforeRevealUri = "ipfs://QmUZB6RjhQFMPLFUAgTRYsvpSjzPvh9SgBEkCYSVMCMUme/before.json";
    bool revealed = false;
    bool paused = false;
    uint256 public MAX_SUPPLY = 2004;
    uint256 FREE_MINTS = 700;
    uint256 MAX_FREE_MINT_PER_EOA = 3;
    uint256 MAX_HOLDING_AFTER_MINT = 5;
    uint256 MAX_MINT_VALUE = 5;
    uint256 public MINT_PRICE =  0.0069 ether;



    constructor() ERC721A("Lil Dickbutts", "LDB") {  
    }


    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

  
    function mint(uint256 quantity) external payable nonReentrant {
        require(quantity <= MAX_MINT_VALUE, "Maximum per mint is 5"); 

        uint256 numberOfTokensAlreadyMinted = totalSupply();
        uint256 totalMinted = numberOfTokensAlreadyMinted + quantity;

        require(totalMinted <= MAX_SUPPLY, "Number exceeds the maximum supply");
        require(paused == false, "Paused Minting");
        
        if(totalMinted <= FREE_MINTS){
            claimedWhiteListCount[msg.sender] += quantity;
            require(claimedWhiteListCount[msg.sender] <= MAX_FREE_MINT_PER_EOA, "You've claimed all your whitelists");
        }else{
            uint256 amount =  MINT_PRICE * quantity;
            require(msg.value == amount, "Incorrect Amount");
            numberMinted[msg.sender] += quantity;
            require(numberMinted[msg.sender] <= MAX_HOLDING_AFTER_MINT, "You've reached your maximum mint limit");
        }

        _safeMint(msg.sender, quantity);     
    }  


    function withdrawFunds() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
       
    function reveal() external onlyOwner() {
           revealed = true;
    }
           
    function pause() external onlyOwner() {
      paused = true;
      
    }
    
    function unpause() external onlyOwner() {
      paused = false;
    }

    function freeMintsRemaining() public view returns(uint256 remainder) {
        uint256 tokensMinted = totalSupply();
        if(tokensMinted < FREE_MINTS){
            return FREE_MINTS - tokensMinted;
        }else{
            return 0;
        }
    }

    function maxSupply() public view returns(uint256 max){
        return MAX_SUPPLY;
    }

    function getMintPrice(uint256 numberOfTokensToMint) public view returns(uint256 price) {
        return numberOfTokensToMint * MINT_PRICE;
    }

    function setMintPrice(uint256 newMintPrice) external onlyOwner{
        MINT_PRICE = newMintPrice;
    }
  
  
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        if(revealed == true){
             return bytes(baseURI).length > 0 ? string( abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")) : "";
        }else{
            return bytes(baseURI).length > 0 ? beforeRevealUri : "";
        }
    }

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

}

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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedWhiteListCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintsRemaining","outputs":[{"internalType":"uint256","name":"remainder","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":"uint256","name":"numberOfTokensToMint","type":"uint256"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052604051806060016040528060368152602001620039e060369139600c9080519060200190620000359291906200028d565b506040518060800160405280604181526020016200399f60419139600d9080519060200190620000679291906200028d565b506000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506107d4600f556102bc6010556003601155600560125560056013556618838370f34000601455348015620000d157600080fd5b506040518060400160405280600d81526020017f4c696c204469636b6275747473000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c444200000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001569291906200028d565b5080600390805190602001906200016f9291906200028d565b5062000180620001b660201b60201c565b6000819055505050620001a86200019c620001bf60201b60201c565b620001c760201b60201c565b6001600981905550620003a2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029b906200036c565b90600052602060002090601f016020900481019282620002bf57600085556200030b565b82601f10620002da57805160ff19168380011785556200030b565b828001600101855582156200030b579182015b828111156200030a578251825591602001919060010190620002ed565b5b5090506200031a91906200031e565b5090565b5b80821115620003395760008160009055506001016200031f565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038557607f821691505b602082108114156200039c576200039b6200033d565b5b50919050565b6135ed80620003b26000396000f3fe6080604052600436106101d85760003560e01c80637ab045df11610102578063b88d4fde11610095578063dc33e68111610064578063dc33e68114610658578063e985e9c514610695578063f2fde38b146106d2578063f4a0a528146106fb576101d8565b8063b88d4fde1461059c578063c002d23d146105c5578063c87b56dd146105f0578063d5abeb011461062d576101d8565b806395d89b41116100d157806395d89b4114610515578063a0712d6814610540578063a22cb4651461055c578063a475b5dd14610585576101d8565b80637ab045df1461046b5780638456cb59146104a85780638868b9ff146104bf5780638da5cb5b146104ea576101d8565b806332cb6b0c1161017a57806355f804b31161014957806355f804b3146103b15780636352211e146103da57806370a0823114610417578063715018a614610454576101d8565b806332cb6b0c146103095780633f4ba83a1461033457806342842e0e1461034b578063559e775b14610374576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d657806324600fc3146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612669565b610724565b60405161021191906126b1565b60405180910390f35b34801561022657600080fd5b5061022f6107b6565b60405161023c9190612765565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906127bd565b610848565b604051610279919061282b565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612872565b6108c4565b005b3480156102b757600080fd5b506102c0610a6b565b6040516102cd91906128c1565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906128dc565b610a82565b005b610307610a92565b005b34801561031557600080fd5b5061031e610b5e565b60405161032b91906128c1565b60405180910390f35b34801561034057600080fd5b50610349610b64565b005b34801561035757600080fd5b50610372600480360381019061036d91906128dc565b610bfd565b005b34801561038057600080fd5b5061039b600480360381019061039691906127bd565b610c1d565b6040516103a891906128c1565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612a64565b610c34565b005b3480156103e657600080fd5b5061040160048036038101906103fc91906127bd565b610cca565b60405161040e919061282b565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190612aad565b610cdc565b60405161044b91906128c1565b60405180910390f35b34801561046057600080fd5b50610469610d95565b005b34801561047757600080fd5b50610492600480360381019061048d9190612aad565b610e1d565b60405161049f91906128c1565b60405180910390f35b3480156104b457600080fd5b506104bd610e35565b005b3480156104cb57600080fd5b506104d4610ece565b6040516104e191906128c1565b60405180910390f35b3480156104f657600080fd5b506104ff610f04565b60405161050c919061282b565b60405180910390f35b34801561052157600080fd5b5061052a610f2e565b6040516105379190612765565b60405180910390f35b61055a600480360381019061055591906127bd565b610fc0565b005b34801561056857600080fd5b50610583600480360381019061057e9190612b06565b611339565b005b34801561059157600080fd5b5061059a6114b1565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612be7565b61154a565b005b3480156105d157600080fd5b506105da6115bd565b6040516105e791906128c1565b60405180910390f35b3480156105fc57600080fd5b50610617600480360381019061061291906127bd565b6115c3565b6040516106249190612765565b60405180910390f35b34801561063957600080fd5b50610642611739565b60405161064f91906128c1565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612aad565b611743565b60405161068c91906128c1565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612c6a565b61175b565b6040516106c991906126b1565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612aad565b6117ef565b005b34801561070757600080fd5b50610722600480360381019061071d91906127bd565b6118e7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107af5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107c590612cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612cd9565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b60006108538261196d565b610889576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cf826119cc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610937576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610956611a9a565b73ffffffffffffffffffffffffffffffffffffffff16146109b9576109828161097d611a9a565b61175b565b6109b8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a75611aa2565b6001546000540303905090565b610a8d838383611aab565b505050565b610a9a611e55565b73ffffffffffffffffffffffffffffffffffffffff16610ab8610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590612d57565b60405180910390fd5b610b16610f04565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b5b573d6000803e3d6000fd5b50565b600f5481565b610b6c611e55565b73ffffffffffffffffffffffffffffffffffffffff16610b8a610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790612d57565b60405180910390fd5b6000600e60016101000a81548160ff021916908315150217905550565b610c188383836040518060200160405280600081525061154a565b505050565b600060145482610c2d9190612da6565b9050919050565b610c3c611e55565b73ffffffffffffffffffffffffffffffffffffffff16610c5a610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790612d57565b60405180910390fd5b80600c9080519060200190610cc692919061255a565b5050565b6000610cd5826119cc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d9d611e55565b73ffffffffffffffffffffffffffffffffffffffff16610dbb610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890612d57565b60405180910390fd5b610e1b6000611e5d565b565b600b6020528060005260406000206000915090505481565b610e3d611e55565b73ffffffffffffffffffffffffffffffffffffffff16610e5b610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890612d57565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b600080610ed9610a6b565b9050601054811015610efb5780601054610ef39190612e00565b915050610f01565b60009150505b90565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3d90612cd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6990612cd9565b8015610fb65780601f10610f8b57610100808354040283529160200191610fb6565b820191906000526020600020905b815481529060010190602001808311610f9957829003601f168201915b5050505050905090565b60026009541415611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90612e80565b60405180910390fd5b6002600981905550601354811115611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90612eec565b60405180910390fd5b600061105d610a6b565b90506000828261106d9190612f0c565b9050600f548111156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612fd4565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613040565b60405180910390fd5b60105481116111f25782600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111629190612f0c565b92505081905550601154600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e4906130d2565b60405180910390fd5b611322565b6000836014546112029190612da6565b9050803414611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d9061313e565b60405180910390fd5b83600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112959190612f0c565b92505081905550601254600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611317906131d0565b60405180910390fd5b505b61132c3384611f23565b5050600160098190555050565b611341611a9a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113b3611a9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611460611a9a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a591906126b1565b60405180910390a35050565b6114b9611e55565b73ffffffffffffffffffffffffffffffffffffffff166114d7610f04565b73ffffffffffffffffffffffffffffffffffffffff161461152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490612d57565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b611555848484611aab565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115b75761158084848484611f41565b6115b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60145481565b60606115ce8261196d565b61160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613262565b60405180910390fd5b6000611617612092565b905060011515600e60009054906101000a900460ff1615151415611686576000815111611653576040518060200160405280600081525061167e565b8061165d84612124565b60405160200161166e92919061330a565b6040516020818303038152906040525b915050611734565b60008151116116a45760405180602001604052806000815250611730565b600d80546116b190612cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd90612cd9565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b50505050505b9150505b919050565b6000600f54905090565b600a6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117f7611e55565b73ffffffffffffffffffffffffffffffffffffffff16611815610f04565b73ffffffffffffffffffffffffffffffffffffffff161461186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290612d57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d2906133ab565b60405180910390fd5b6118e481611e5d565b50565b6118ef611e55565b73ffffffffffffffffffffffffffffffffffffffff1661190d610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a90612d57565b60405180910390fd5b8060148190555050565b600081611978611aa2565b11158015611987575060005482105b80156119c5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806119db611aa2565b11611a6357600054811015611a625760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a60575b6000811415611a56576004600083600190039350838152602001908152602001600020549050611a2b565b8092505050611a95565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611ab6826119cc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b3e611a9a565b73ffffffffffffffffffffffffffffffffffffffff161480611b6d5750611b6c85611b67611a9a565b61175b565b5b80611bb25750611b7b611a9a565b73ffffffffffffffffffffffffffffffffffffffff16611b9a84610848565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611beb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c52576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c5f8585856001612285565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611d5c8661228b565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611de6576000600184019050600060046000838152602001908152602001600020541415611de4576000548114611de3578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4e8585856001612295565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f3d82826040518060200160405280600081525061229b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f67611a9a565b8786866040518563ffffffff1660e01b8152600401611f899493929190613420565b6020604051808303816000875af1925050508015611fc557506040513d601f19601f82011682018060405250810190611fc29190613481565b60015b61203f573d8060008114611ff5576040519150601f19603f3d011682016040523d82523d6000602084013e611ffa565b606091505b50600081511415612037576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546120a190612cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546120cd90612cd9565b801561211a5780601f106120ef5761010080835404028352916020019161211a565b820191906000526020600020905b8154815290600101906020018083116120fd57829003601f168201915b5050505050905090565b6060600082141561216c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612280565b600082905060005b6000821461219e578080612187906134ae565b915050600a826121979190613526565b9150612174565b60008167ffffffffffffffff8111156121ba576121b9612939565b5b6040519080825280601f01601f1916602001820160405280156121ec5781602001600182028036833780820191505090505b5090505b60008514612279576001826122059190612e00565b9150600a856122149190613557565b60306122209190612f0c565b60f81b81838151811061223657612235613588565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122729190613526565b94506121f0565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612308576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612343576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123506000858386612285565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123b560018514612550565b901b60a042901b6123c58661228b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146124c9575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124796000878480600101955087611f41565b6124af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061240a5782600054146124c457600080fd5b612534565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124ca575b81600081905550505061254a6000858386612295565b50505050565b6000819050919050565b82805461256690612cd9565b90600052602060002090601f01602090048101928261258857600085556125cf565b82601f106125a157805160ff19168380011785556125cf565b828001600101855582156125cf579182015b828111156125ce5782518255916020019190600101906125b3565b5b5090506125dc91906125e0565b5090565b5b808211156125f95760008160009055506001016125e1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61264681612611565b811461265157600080fd5b50565b6000813590506126638161263d565b92915050565b60006020828403121561267f5761267e612607565b5b600061268d84828501612654565b91505092915050565b60008115159050919050565b6126ab81612696565b82525050565b60006020820190506126c660008301846126a2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127065780820151818401526020810190506126eb565b83811115612715576000848401525b50505050565b6000601f19601f8301169050919050565b6000612737826126cc565b61274181856126d7565b93506127518185602086016126e8565b61275a8161271b565b840191505092915050565b6000602082019050818103600083015261277f818461272c565b905092915050565b6000819050919050565b61279a81612787565b81146127a557600080fd5b50565b6000813590506127b781612791565b92915050565b6000602082840312156127d3576127d2612607565b5b60006127e1848285016127a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612815826127ea565b9050919050565b6128258161280a565b82525050565b6000602082019050612840600083018461281c565b92915050565b61284f8161280a565b811461285a57600080fd5b50565b60008135905061286c81612846565b92915050565b6000806040838503121561288957612888612607565b5b60006128978582860161285d565b92505060206128a8858286016127a8565b9150509250929050565b6128bb81612787565b82525050565b60006020820190506128d660008301846128b2565b92915050565b6000806000606084860312156128f5576128f4612607565b5b60006129038682870161285d565b93505060206129148682870161285d565b9250506040612925868287016127a8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129718261271b565b810181811067ffffffffffffffff821117156129905761298f612939565b5b80604052505050565b60006129a36125fd565b90506129af8282612968565b919050565b600067ffffffffffffffff8211156129cf576129ce612939565b5b6129d88261271b565b9050602081019050919050565b82818337600083830152505050565b6000612a07612a02846129b4565b612999565b905082815260208101848484011115612a2357612a22612934565b5b612a2e8482856129e5565b509392505050565b600082601f830112612a4b57612a4a61292f565b5b8135612a5b8482602086016129f4565b91505092915050565b600060208284031215612a7a57612a79612607565b5b600082013567ffffffffffffffff811115612a9857612a9761260c565b5b612aa484828501612a36565b91505092915050565b600060208284031215612ac357612ac2612607565b5b6000612ad18482850161285d565b91505092915050565b612ae381612696565b8114612aee57600080fd5b50565b600081359050612b0081612ada565b92915050565b60008060408385031215612b1d57612b1c612607565b5b6000612b2b8582860161285d565b9250506020612b3c85828601612af1565b9150509250929050565b600067ffffffffffffffff821115612b6157612b60612939565b5b612b6a8261271b565b9050602081019050919050565b6000612b8a612b8584612b46565b612999565b905082815260208101848484011115612ba657612ba5612934565b5b612bb18482856129e5565b509392505050565b600082601f830112612bce57612bcd61292f565b5b8135612bde848260208601612b77565b91505092915050565b60008060008060808587031215612c0157612c00612607565b5b6000612c0f8782880161285d565b9450506020612c208782880161285d565b9350506040612c31878288016127a8565b925050606085013567ffffffffffffffff811115612c5257612c5161260c565b5b612c5e87828801612bb9565b91505092959194509250565b60008060408385031215612c8157612c80612607565b5b6000612c8f8582860161285d565b9250506020612ca08582860161285d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cf157607f821691505b60208210811415612d0557612d04612caa565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d416020836126d7565b9150612d4c82612d0b565b602082019050919050565b60006020820190508181036000830152612d7081612d34565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612db182612787565b9150612dbc83612787565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612df557612df4612d77565b5b828202905092915050565b6000612e0b82612787565b9150612e1683612787565b925082821015612e2957612e28612d77565b5b828203905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612e6a601f836126d7565b9150612e7582612e34565b602082019050919050565b60006020820190508181036000830152612e9981612e5d565b9050919050565b7f4d6178696d756d20706572206d696e7420697320350000000000000000000000600082015250565b6000612ed66015836126d7565b9150612ee182612ea0565b602082019050919050565b60006020820190508181036000830152612f0581612ec9565b9050919050565b6000612f1782612787565b9150612f2283612787565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5757612f56612d77565b5b828201905092915050565b7f4e756d626572206578636565647320746865206d6178696d756d20737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fbe6021836126d7565b9150612fc982612f62565b604082019050919050565b60006020820190508181036000830152612fed81612fb1565b9050919050565b7f506175736564204d696e74696e67000000000000000000000000000000000000600082015250565b600061302a600e836126d7565b915061303582612ff4565b602082019050919050565b600060208201905081810360008301526130598161301d565b9050919050565b7f596f7527766520636c61696d656420616c6c20796f75722077686974656c697360008201527f7473000000000000000000000000000000000000000000000000000000000000602082015250565b60006130bc6022836126d7565b91506130c782613060565b604082019050919050565b600060208201905081810360008301526130eb816130af565b9050919050565b7f496e636f727265637420416d6f756e7400000000000000000000000000000000600082015250565b60006131286010836126d7565b9150613133826130f2565b602082019050919050565b600060208201905081810360008301526131578161311b565b9050919050565b7f596f75277665207265616368656420796f7572206d6178696d756d206d696e7460008201527f206c696d69740000000000000000000000000000000000000000000000000000602082015250565b60006131ba6026836126d7565b91506131c58261315e565b604082019050919050565b600060208201905081810360008301526131e9816131ad565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061324c602f836126d7565b9150613257826131f0565b604082019050919050565b6000602082019050818103600083015261327b8161323f565b9050919050565b600081905092915050565b6000613298826126cc565b6132a28185613282565b93506132b28185602086016126e8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132f4600583613282565b91506132ff826132be565b600582019050919050565b6000613316828561328d565b9150613322828461328d565b915061332d826132e7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133956026836126d7565b91506133a082613339565b604082019050919050565b600060208201905081810360008301526133c481613388565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133f2826133cb565b6133fc81856133d6565b935061340c8185602086016126e8565b6134158161271b565b840191505092915050565b6000608082019050613435600083018761281c565b613442602083018661281c565b61344f60408301856128b2565b818103606083015261346181846133e7565b905095945050505050565b60008151905061347b8161263d565b92915050565b60006020828403121561349757613496612607565b5b60006134a58482850161346c565b91505092915050565b60006134b982612787565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134ec576134eb612d77565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061353182612787565b915061353c83612787565b92508261354c5761354b6134f7565b5b828204905092915050565b600061356282612787565b915061356d83612787565b92508261357d5761357c6134f7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122027f6147efb4d39f341725d30b52d305d40e9e640c2830d79dfb888fb5decac3c64736f6c634300080b0033697066733a2f2f516d555a4236526a6851464d504c46554167545259737670536a7a50766839536742456b435953564d434d556d652f6265666f72652e6a736f6e697066733a2f2f516d555a4236526a6851464d504c46554167545259737670536a7a50766839536742456b435953564d434d556d652f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80637ab045df11610102578063b88d4fde11610095578063dc33e68111610064578063dc33e68114610658578063e985e9c514610695578063f2fde38b146106d2578063f4a0a528146106fb576101d8565b8063b88d4fde1461059c578063c002d23d146105c5578063c87b56dd146105f0578063d5abeb011461062d576101d8565b806395d89b41116100d157806395d89b4114610515578063a0712d6814610540578063a22cb4651461055c578063a475b5dd14610585576101d8565b80637ab045df1461046b5780638456cb59146104a85780638868b9ff146104bf5780638da5cb5b146104ea576101d8565b806332cb6b0c1161017a57806355f804b31161014957806355f804b3146103b15780636352211e146103da57806370a0823114610417578063715018a614610454576101d8565b806332cb6b0c146103095780633f4ba83a1461033457806342842e0e1461034b578063559e775b14610374576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d657806324600fc3146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612669565b610724565b60405161021191906126b1565b60405180910390f35b34801561022657600080fd5b5061022f6107b6565b60405161023c9190612765565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906127bd565b610848565b604051610279919061282b565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612872565b6108c4565b005b3480156102b757600080fd5b506102c0610a6b565b6040516102cd91906128c1565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906128dc565b610a82565b005b610307610a92565b005b34801561031557600080fd5b5061031e610b5e565b60405161032b91906128c1565b60405180910390f35b34801561034057600080fd5b50610349610b64565b005b34801561035757600080fd5b50610372600480360381019061036d91906128dc565b610bfd565b005b34801561038057600080fd5b5061039b600480360381019061039691906127bd565b610c1d565b6040516103a891906128c1565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612a64565b610c34565b005b3480156103e657600080fd5b5061040160048036038101906103fc91906127bd565b610cca565b60405161040e919061282b565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190612aad565b610cdc565b60405161044b91906128c1565b60405180910390f35b34801561046057600080fd5b50610469610d95565b005b34801561047757600080fd5b50610492600480360381019061048d9190612aad565b610e1d565b60405161049f91906128c1565b60405180910390f35b3480156104b457600080fd5b506104bd610e35565b005b3480156104cb57600080fd5b506104d4610ece565b6040516104e191906128c1565b60405180910390f35b3480156104f657600080fd5b506104ff610f04565b60405161050c919061282b565b60405180910390f35b34801561052157600080fd5b5061052a610f2e565b6040516105379190612765565b60405180910390f35b61055a600480360381019061055591906127bd565b610fc0565b005b34801561056857600080fd5b50610583600480360381019061057e9190612b06565b611339565b005b34801561059157600080fd5b5061059a6114b1565b005b3480156105a857600080fd5b506105c360048036038101906105be9190612be7565b61154a565b005b3480156105d157600080fd5b506105da6115bd565b6040516105e791906128c1565b60405180910390f35b3480156105fc57600080fd5b50610617600480360381019061061291906127bd565b6115c3565b6040516106249190612765565b60405180910390f35b34801561063957600080fd5b50610642611739565b60405161064f91906128c1565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612aad565b611743565b60405161068c91906128c1565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612c6a565b61175b565b6040516106c991906126b1565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612aad565b6117ef565b005b34801561070757600080fd5b50610722600480360381019061071d91906127bd565b6118e7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107af5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107c590612cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546107f190612cd9565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b60006108538261196d565b610889576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cf826119cc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610937576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610956611a9a565b73ffffffffffffffffffffffffffffffffffffffff16146109b9576109828161097d611a9a565b61175b565b6109b8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a75611aa2565b6001546000540303905090565b610a8d838383611aab565b505050565b610a9a611e55565b73ffffffffffffffffffffffffffffffffffffffff16610ab8610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590612d57565b60405180910390fd5b610b16610f04565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b5b573d6000803e3d6000fd5b50565b600f5481565b610b6c611e55565b73ffffffffffffffffffffffffffffffffffffffff16610b8a610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790612d57565b60405180910390fd5b6000600e60016101000a81548160ff021916908315150217905550565b610c188383836040518060200160405280600081525061154a565b505050565b600060145482610c2d9190612da6565b9050919050565b610c3c611e55565b73ffffffffffffffffffffffffffffffffffffffff16610c5a610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790612d57565b60405180910390fd5b80600c9080519060200190610cc692919061255a565b5050565b6000610cd5826119cc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d9d611e55565b73ffffffffffffffffffffffffffffffffffffffff16610dbb610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890612d57565b60405180910390fd5b610e1b6000611e5d565b565b600b6020528060005260406000206000915090505481565b610e3d611e55565b73ffffffffffffffffffffffffffffffffffffffff16610e5b610f04565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890612d57565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b600080610ed9610a6b565b9050601054811015610efb5780601054610ef39190612e00565b915050610f01565b60009150505b90565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3d90612cd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6990612cd9565b8015610fb65780601f10610f8b57610100808354040283529160200191610fb6565b820191906000526020600020905b815481529060010190602001808311610f9957829003601f168201915b5050505050905090565b60026009541415611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90612e80565b60405180910390fd5b6002600981905550601354811115611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90612eec565b60405180910390fd5b600061105d610a6b565b90506000828261106d9190612f0c565b9050600f548111156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612fd4565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613040565b60405180910390fd5b60105481116111f25782600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111629190612f0c565b92505081905550601154600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e4906130d2565b60405180910390fd5b611322565b6000836014546112029190612da6565b9050803414611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d9061313e565b60405180910390fd5b83600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112959190612f0c565b92505081905550601254600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611317906131d0565b60405180910390fd5b505b61132c3384611f23565b5050600160098190555050565b611341611a9a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113b3611a9a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611460611a9a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a591906126b1565b60405180910390a35050565b6114b9611e55565b73ffffffffffffffffffffffffffffffffffffffff166114d7610f04565b73ffffffffffffffffffffffffffffffffffffffff161461152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490612d57565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b611555848484611aab565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115b75761158084848484611f41565b6115b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60145481565b60606115ce8261196d565b61160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613262565b60405180910390fd5b6000611617612092565b905060011515600e60009054906101000a900460ff1615151415611686576000815111611653576040518060200160405280600081525061167e565b8061165d84612124565b60405160200161166e92919061330a565b6040516020818303038152906040525b915050611734565b60008151116116a45760405180602001604052806000815250611730565b600d80546116b190612cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546116dd90612cd9565b801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b50505050505b9150505b919050565b6000600f54905090565b600a6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117f7611e55565b73ffffffffffffffffffffffffffffffffffffffff16611815610f04565b73ffffffffffffffffffffffffffffffffffffffff161461186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290612d57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d2906133ab565b60405180910390fd5b6118e481611e5d565b50565b6118ef611e55565b73ffffffffffffffffffffffffffffffffffffffff1661190d610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a90612d57565b60405180910390fd5b8060148190555050565b600081611978611aa2565b11158015611987575060005482105b80156119c5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806119db611aa2565b11611a6357600054811015611a625760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a60575b6000811415611a56576004600083600190039350838152602001908152602001600020549050611a2b565b8092505050611a95565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611ab6826119cc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b3e611a9a565b73ffffffffffffffffffffffffffffffffffffffff161480611b6d5750611b6c85611b67611a9a565b61175b565b5b80611bb25750611b7b611a9a565b73ffffffffffffffffffffffffffffffffffffffff16611b9a84610848565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611beb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c52576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c5f8585856001612285565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611d5c8661228b565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611de6576000600184019050600060046000838152602001908152602001600020541415611de4576000548114611de3578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4e8585856001612295565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f3d82826040518060200160405280600081525061229b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f67611a9a565b8786866040518563ffffffff1660e01b8152600401611f899493929190613420565b6020604051808303816000875af1925050508015611fc557506040513d601f19601f82011682018060405250810190611fc29190613481565b60015b61203f573d8060008114611ff5576040519150601f19603f3d011682016040523d82523d6000602084013e611ffa565b606091505b50600081511415612037576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546120a190612cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546120cd90612cd9565b801561211a5780601f106120ef5761010080835404028352916020019161211a565b820191906000526020600020905b8154815290600101906020018083116120fd57829003601f168201915b5050505050905090565b6060600082141561216c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612280565b600082905060005b6000821461219e578080612187906134ae565b915050600a826121979190613526565b9150612174565b60008167ffffffffffffffff8111156121ba576121b9612939565b5b6040519080825280601f01601f1916602001820160405280156121ec5781602001600182028036833780820191505090505b5090505b60008514612279576001826122059190612e00565b9150600a856122149190613557565b60306122209190612f0c565b60f81b81838151811061223657612235613588565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122729190613526565b94506121f0565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612308576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612343576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123506000858386612285565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123b560018514612550565b901b60a042901b6123c58661228b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146124c9575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124796000878480600101955087611f41565b6124af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061240a5782600054146124c457600080fd5b612534565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124ca575b81600081905550505061254a6000858386612295565b50505050565b6000819050919050565b82805461256690612cd9565b90600052602060002090601f01602090048101928261258857600085556125cf565b82601f106125a157805160ff19168380011785556125cf565b828001600101855582156125cf579182015b828111156125ce5782518255916020019190600101906125b3565b5b5090506125dc91906125e0565b5090565b5b808211156125f95760008160009055506001016125e1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61264681612611565b811461265157600080fd5b50565b6000813590506126638161263d565b92915050565b60006020828403121561267f5761267e612607565b5b600061268d84828501612654565b91505092915050565b60008115159050919050565b6126ab81612696565b82525050565b60006020820190506126c660008301846126a2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127065780820151818401526020810190506126eb565b83811115612715576000848401525b50505050565b6000601f19601f8301169050919050565b6000612737826126cc565b61274181856126d7565b93506127518185602086016126e8565b61275a8161271b565b840191505092915050565b6000602082019050818103600083015261277f818461272c565b905092915050565b6000819050919050565b61279a81612787565b81146127a557600080fd5b50565b6000813590506127b781612791565b92915050565b6000602082840312156127d3576127d2612607565b5b60006127e1848285016127a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612815826127ea565b9050919050565b6128258161280a565b82525050565b6000602082019050612840600083018461281c565b92915050565b61284f8161280a565b811461285a57600080fd5b50565b60008135905061286c81612846565b92915050565b6000806040838503121561288957612888612607565b5b60006128978582860161285d565b92505060206128a8858286016127a8565b9150509250929050565b6128bb81612787565b82525050565b60006020820190506128d660008301846128b2565b92915050565b6000806000606084860312156128f5576128f4612607565b5b60006129038682870161285d565b93505060206129148682870161285d565b9250506040612925868287016127a8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129718261271b565b810181811067ffffffffffffffff821117156129905761298f612939565b5b80604052505050565b60006129a36125fd565b90506129af8282612968565b919050565b600067ffffffffffffffff8211156129cf576129ce612939565b5b6129d88261271b565b9050602081019050919050565b82818337600083830152505050565b6000612a07612a02846129b4565b612999565b905082815260208101848484011115612a2357612a22612934565b5b612a2e8482856129e5565b509392505050565b600082601f830112612a4b57612a4a61292f565b5b8135612a5b8482602086016129f4565b91505092915050565b600060208284031215612a7a57612a79612607565b5b600082013567ffffffffffffffff811115612a9857612a9761260c565b5b612aa484828501612a36565b91505092915050565b600060208284031215612ac357612ac2612607565b5b6000612ad18482850161285d565b91505092915050565b612ae381612696565b8114612aee57600080fd5b50565b600081359050612b0081612ada565b92915050565b60008060408385031215612b1d57612b1c612607565b5b6000612b2b8582860161285d565b9250506020612b3c85828601612af1565b9150509250929050565b600067ffffffffffffffff821115612b6157612b60612939565b5b612b6a8261271b565b9050602081019050919050565b6000612b8a612b8584612b46565b612999565b905082815260208101848484011115612ba657612ba5612934565b5b612bb18482856129e5565b509392505050565b600082601f830112612bce57612bcd61292f565b5b8135612bde848260208601612b77565b91505092915050565b60008060008060808587031215612c0157612c00612607565b5b6000612c0f8782880161285d565b9450506020612c208782880161285d565b9350506040612c31878288016127a8565b925050606085013567ffffffffffffffff811115612c5257612c5161260c565b5b612c5e87828801612bb9565b91505092959194509250565b60008060408385031215612c8157612c80612607565b5b6000612c8f8582860161285d565b9250506020612ca08582860161285d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cf157607f821691505b60208210811415612d0557612d04612caa565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d416020836126d7565b9150612d4c82612d0b565b602082019050919050565b60006020820190508181036000830152612d7081612d34565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612db182612787565b9150612dbc83612787565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612df557612df4612d77565b5b828202905092915050565b6000612e0b82612787565b9150612e1683612787565b925082821015612e2957612e28612d77565b5b828203905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612e6a601f836126d7565b9150612e7582612e34565b602082019050919050565b60006020820190508181036000830152612e9981612e5d565b9050919050565b7f4d6178696d756d20706572206d696e7420697320350000000000000000000000600082015250565b6000612ed66015836126d7565b9150612ee182612ea0565b602082019050919050565b60006020820190508181036000830152612f0581612ec9565b9050919050565b6000612f1782612787565b9150612f2283612787565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5757612f56612d77565b5b828201905092915050565b7f4e756d626572206578636565647320746865206d6178696d756d20737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fbe6021836126d7565b9150612fc982612f62565b604082019050919050565b60006020820190508181036000830152612fed81612fb1565b9050919050565b7f506175736564204d696e74696e67000000000000000000000000000000000000600082015250565b600061302a600e836126d7565b915061303582612ff4565b602082019050919050565b600060208201905081810360008301526130598161301d565b9050919050565b7f596f7527766520636c61696d656420616c6c20796f75722077686974656c697360008201527f7473000000000000000000000000000000000000000000000000000000000000602082015250565b60006130bc6022836126d7565b91506130c782613060565b604082019050919050565b600060208201905081810360008301526130eb816130af565b9050919050565b7f496e636f727265637420416d6f756e7400000000000000000000000000000000600082015250565b60006131286010836126d7565b9150613133826130f2565b602082019050919050565b600060208201905081810360008301526131578161311b565b9050919050565b7f596f75277665207265616368656420796f7572206d6178696d756d206d696e7460008201527f206c696d69740000000000000000000000000000000000000000000000000000602082015250565b60006131ba6026836126d7565b91506131c58261315e565b604082019050919050565b600060208201905081810360008301526131e9816131ad565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061324c602f836126d7565b9150613257826131f0565b604082019050919050565b6000602082019050818103600083015261327b8161323f565b9050919050565b600081905092915050565b6000613298826126cc565b6132a28185613282565b93506132b28185602086016126e8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132f4600583613282565b91506132ff826132be565b600582019050919050565b6000613316828561328d565b9150613322828461328d565b915061332d826132e7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133956026836126d7565b91506133a082613339565b604082019050919050565b600060208201905081810360008301526133c481613388565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133f2826133cb565b6133fc81856133d6565b935061340c8185602086016126e8565b6134158161271b565b840191505092915050565b6000608082019050613435600083018761281c565b613442602083018661281c565b61344f60408301856128b2565b818103606083015261346181846133e7565b905095945050505050565b60008151905061347b8161263d565b92915050565b60006020828403121561349757613496612607565b5b60006134a58482850161346c565b91505092915050565b60006134b982612787565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134ec576134eb612d77565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061353182612787565b915061353c83612787565b92508261354c5761354b6134f7565b5b828204905092915050565b600061356282612787565b915061356d83612787565b92508261357d5761357c6134f7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122027f6147efb4d39f341725d30b52d305d40e9e640c2830d79dfb888fb5decac3c64736f6c634300080b0033

Deployed Bytecode Sourcemap

46720:3668:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21379:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26392:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28460:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27920:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20433:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29346:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48756:119;;;:::i;:::-;;47187:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49073:71;;;;;;;;;;;;;:::i;:::-;;29587:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49518:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47491:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26181:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22058:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7489:103;;;;;;;;;;;;;:::i;:::-;;46868:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48985:76;;;;;;;;;;;;;:::i;:::-;;49152:261;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6838:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26561:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47740:1004;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28736:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48890:76;;;;;;;;;;;;;:::i;:::-;;29843:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47371:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49790:484;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49421:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46816:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29115:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7747:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49672:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21379:615;21464:4;21779:10;21764:25;;:11;:25;;;;:102;;;;21856:10;21841:25;;:11;:25;;;;21764:102;:179;;;;21933:10;21918:25;;:11;:25;;;;21764:179;21744:199;;21379:615;;;:::o;26392:100::-;26446:13;26479:5;26472:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26392:100;:::o;28460:204::-;28528:7;28553:16;28561:7;28553;:16::i;:::-;28548:64;;28578:34;;;;;;;;;;;;;;28548:64;28632:15;:24;28648:7;28632:24;;;;;;;;;;;;;;;;;;;;;28625:31;;28460:204;;;:::o;27920:474::-;27993:13;28025:27;28044:7;28025:18;:27::i;:::-;27993:61;;28075:5;28069:11;;:2;:11;;;28065:48;;;28089:24;;;;;;;;;;;;;;28065:48;28153:5;28130:28;;:19;:17;:19::i;:::-;:28;;;28126:175;;28178:44;28195:5;28202:19;:17;:19::i;:::-;28178:16;:44::i;:::-;28173:128;;28250:35;;;;;;;;;;;;;;28173:128;28126:175;28340:2;28313:15;:24;28329:7;28313:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28378:7;28374:2;28358:28;;28367:5;28358:28;;;;;;;;;;;;27982:412;27920:474;;:::o;20433:315::-;20486:7;20714:15;:13;:15::i;:::-;20699:12;;20683:13;;:28;:46;20676:53;;20433:315;:::o;29346:170::-;29480:28;29490:4;29496:2;29500:7;29480:9;:28::i;:::-;29346:170;;;:::o;48756:119::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48827:7:::1;:5;:7::i;:::-;48819:25;;:48;48845:21;48819:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48756:119::o:0;47187:32::-;;;;:::o;49073:71::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49131:5:::1;49122:6;;:14;;;;;;;;;;;;;;;;;;49073:71::o:0;29587:185::-;29725:39;29742:4;29748:2;29752:7;29725:39;;;;;;;;;;;;:16;:39::i;:::-;29587:185;;;:::o;49518:146::-;49590:13;49646:10;;49623:20;:33;;;;:::i;:::-;49616:40;;49518:146;;;:::o;47491:111::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47586:8:::1;47567:16;:27;;;;;;;;;;;;:::i;:::-;;47491:111:::0;:::o;26181:144::-;26245:7;26288:27;26307:7;26288:18;:27::i;:::-;26265:52;;26181:144;;;:::o;22058:224::-;22122:7;22163:1;22146:19;;:5;:19;;;22142:60;;;22174:28;;;;;;;;;;;;;;22142:60;17397:13;22220:18;:25;22239:5;22220:25;;;;;;;;;;;;;;;;:54;22213:61;;22058:224;;;:::o;7489:103::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;46868:54::-;;;;;;;;;;;;;;;;;:::o;48985:76::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49041:4:::1;49032:6;;:13;;;;;;;;;;;;;;;;;;48985:76::o:0;49152:261::-;49202:17;49232:20;49255:13;:11;:13::i;:::-;49232:36;;49297:10;;49282:12;:25;49279:127;;;49343:12;49330:10;;:25;;;;:::i;:::-;49323:32;;;;;49279:127;49393:1;49386:8;;;49152:261;;:::o;6838:87::-;6884:7;6911:6;;;;;;;;;;;6904:13;;6838:87;:::o;26561:104::-;26617:13;26650:7;26643:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26561:104;:::o;47740:1004::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;47833:14:::1;;47821:8;:26;;47813:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47887:35;47925:13;:11;:13::i;:::-;47887:51;;47949:19;48001:8;47971:27;:38;;;;:::i;:::-;47949:60;;48045:10;;48030:11;:25;;48022:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48122:5;48112:15;;:6;;;;;;;;;;;:15;;;48104:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;48185:10;;48170:11;:25;48167:521;;48248:8;48211:21;:33;48233:10;48211:33;;;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;48316:21;;48279;:33;48301:10;48279:33;;;;;;;;;;;;;;;;:58;;48271:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;48167:521;;;48407:14;48438:8;48425:10;;:21;;;;:::i;:::-;48407:39;;48482:6;48469:9;:19;48461:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48552:8;48524:12;:24;48537:10;48524:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;48611:22;;48583:12;:24;48596:10;48583:24;;;;;;;;;;;;;;;;:50;;48575:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;48392:296;48167:521;48700:31;48710:10;48722:8;48700:9;:31::i;:::-;47802:942;;1768:1:::0;2722:7;:22;;;;47740:1004;:::o;28736:308::-;28847:19;:17;:19::i;:::-;28835:31;;:8;:31;;;28831:61;;;28875:17;;;;;;;;;;;;;;28831:61;28957:8;28905:18;:39;28924:19;:17;:19::i;:::-;28905:39;;;;;;;;;;;;;;;:49;28945:8;28905:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29017:8;28981:55;;28996:19;:17;:19::i;:::-;28981:55;;;29027:8;28981:55;;;;;;:::i;:::-;;;;;;;;28736:308;;:::o;48890:76::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48954:4:::1;48943:8;;:15;;;;;;;;;;;;;;;;;;48890:76::o:0;29843:396::-;30010:28;30020:4;30026:2;30030:7;30010:9;:28::i;:::-;30071:1;30053:2;:14;;;:19;30049:183;;30092:56;30123:4;30129:2;30133:7;30142:5;30092:30;:56::i;:::-;30087:145;;30176:40;;;;;;;;;;;;;;30087:145;30049:183;29843:396;;;;:::o;47371:41::-;;;;:::o;49790:484::-;49863:13;49897:16;49905:7;49897;:16::i;:::-;49889:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49978:21;50002:10;:8;:10::i;:::-;49978:34;;50038:4;50026:16;;:8;;;;;;;;;;;:16;;;50023:244;;;50090:1;50072:7;50066:21;:25;:103;;;;;;;;;;;;;;;;;50119:7;50128:25;50145:7;50128:16;:25::i;:::-;50102:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50066:103;50059:110;;;;;50023:244;50231:1;50213:7;50207:21;:25;:48;;;;;;;;;;;;;;;;;50235:15;50207:48;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50200:55;;;49790:484;;;;:::o;49421:89::-;49462:11;49492:10;;49485:17;;49421:89;:::o;46816:45::-;;;;;;;;;;;;;;;;;:::o;29115:164::-;29212:4;29236:18;:25;29255:5;29236:25;;;;;;;;;;;;;;;:35;29262:8;29236:35;;;;;;;;;;;;;;;;;;;;;;;;;29229:42;;29115:164;;;;:::o;7747:201::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7856:1:::1;7836:22;;:8;:22;;;;7828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;49672:106::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49758:12:::1;49745:10;:25;;;;49672:106:::0;:::o;30494:273::-;30551:4;30607:7;30588:15;:13;:15::i;:::-;:26;;:66;;;;;30641:13;;30631:7;:23;30588:66;:152;;;;;30739:1;18167:8;30692:17;:26;30710:7;30692:26;;;;;;;;;;;;:43;:48;30588:152;30568:172;;30494:273;;;:::o;23696:1129::-;23763:7;23783:12;23798:7;23783:22;;23866:4;23847:15;:13;:15::i;:::-;:23;23843:915;;23900:13;;23893:4;:20;23889:869;;;23938:14;23955:17;:23;23973:4;23955:23;;;;;;;;;;;;23938:40;;24071:1;18167:8;24044:6;:23;:28;24040:699;;;24563:113;24580:1;24570:6;:11;24563:113;;;24623:17;:25;24641:6;;;;;;;24623:25;;;;;;;;;;;;24614:34;;24563:113;;;24709:6;24702:13;;;;;;24040:699;23915:843;23889:869;23843:915;24786:31;;;;;;;;;;;;;;23696:1129;;;;:::o;44476:105::-;44536:7;44563:10;44556:17;;44476:105;:::o;50282:101::-;50347:7;50374:1;50367:8;;50282:101;:::o;35733:2515::-;35848:27;35878;35897:7;35878:18;:27::i;:::-;35848:57;;35963:4;35922:45;;35938:19;35922:45;;;35918:86;;35976:28;;;;;;;;;;;;;;35918:86;36017:22;36066:4;36043:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;36087:43;36104:4;36110:19;:17;:19::i;:::-;36087:16;:43::i;:::-;36043:87;:147;;;;36171:19;:17;:19::i;:::-;36147:43;;:20;36159:7;36147:11;:20::i;:::-;:43;;;36043:147;36017:174;;36209:17;36204:66;;36235:35;;;;;;;;;;;;;;36204:66;36299:1;36285:16;;:2;:16;;;36281:52;;;36310:23;;;;;;;;;;;;;;36281:52;36346:43;36368:4;36374:2;36378:7;36387:1;36346:21;:43::i;:::-;36462:15;:24;36478:7;36462:24;;;;;;;;;;;;36455:31;;;;;;;;;;;36854:18;:24;36873:4;36854:24;;;;;;;;;;;;;;;;36852:26;;;;;;;;;;;;36923:18;:22;36942:2;36923:22;;;;;;;;;;;;;;;;36921:24;;;;;;;;;;;18449:8;18051:3;37304:15;:41;;37262:21;37280:2;37262:17;:21::i;:::-;:84;:128;37216:17;:26;37234:7;37216:26;;;;;;;;;;;:174;;;;37560:1;18449:8;37510:19;:46;:51;37506:626;;;37582:19;37614:1;37604:7;:11;37582:33;;37771:1;37737:17;:30;37755:11;37737:30;;;;;;;;;;;;:35;37733:384;;;37875:13;;37860:11;:28;37856:242;;38055:19;38022:17;:30;38040:11;38022:30;;;;;;;;;;;:52;;;;37856:242;37733:384;37563:569;37506:626;38179:7;38175:2;38160:27;;38169:4;38160:27;;;;;;;;;;;;38198:42;38219:4;38225:2;38229:7;38238:1;38198:20;:42::i;:::-;35837:2411;;35733:2515;;;:::o;5562:98::-;5615:7;5642:10;5635:17;;5562:98;:::o;8108:191::-;8182:16;8201:6;;;;;;;;;;;8182:25;;8227:8;8218:6;;:17;;;;;;;;;;;;;;;;;;8282:8;8251:40;;8272:8;8251:40;;;;;;;;;;;;8171:128;8108:191;:::o;30851:104::-;30920:27;30930:2;30934:8;30920:27;;;;;;;;;;;;:9;:27::i;:::-;30851:104;;:::o;41945:716::-;42108:4;42154:2;42129:45;;;42175:19;:17;:19::i;:::-;42196:4;42202:7;42211:5;42129:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42125:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42429:1;42412:6;:13;:18;42408:235;;;42458:40;;;;;;;;;;;;;;42408:235;42601:6;42595:13;42586:6;42582:2;42578:15;42571:38;42125:529;42298:54;;;42288:64;;;:6;:64;;;;42281:71;;;41945:716;;;;;;:::o;47611:117::-;47671:13;47704:16;47697:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47611:117;:::o;3124:723::-;3180:13;3410:1;3401:5;:10;3397:53;;;3428:10;;;;;;;;;;;;;;;;;;;;;3397:53;3460:12;3475:5;3460:20;;3491:14;3516:78;3531:1;3523:4;:9;3516:78;;3549:8;;;;;:::i;:::-;;;;3580:2;3572:10;;;;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604:39;;3654:154;3670:1;3661:5;:10;3654:154;;3698:1;3688:11;;;;;:::i;:::-;;;3765:2;3757:5;:10;;;;:::i;:::-;3744:2;:24;;;;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3794:2;3785:11;;;;;:::i;:::-;;;3654:154;;;3832:6;3818:21;;;;;3124:723;;;;:::o;43309:159::-;;;;;:::o;27481:148::-;27545:14;27606:5;27596:15;;27481:148;;;:::o;44127:158::-;;;;;:::o;31328:2236::-;31451:20;31474:13;;31451:36;;31516:1;31502:16;;:2;:16;;;31498:48;;;31527:19;;;;;;;;;;;;;;31498:48;31573:1;31561:8;:13;31557:44;;;31583:18;;;;;;;;;;;;;;31557:44;31614:61;31644:1;31648:2;31652:12;31666:8;31614:21;:61::i;:::-;32218:1;17534:2;32189:1;:25;;32188:31;32176:8;:44;32150:18;:22;32169:2;32150:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;18314:3;32619:29;32646:1;32634:8;:13;32619:14;:29::i;:::-;:56;;18051:3;32556:15;:41;;32514:21;32532:2;32514:17;:21::i;:::-;:84;:162;32463:17;:31;32481:12;32463:31;;;;;;;;;;;:213;;;;32693:20;32716:12;32693:35;;32743:11;32772:8;32757:12;:23;32743:37;;32819:1;32801:2;:14;;;:19;32797:635;;32841:313;32897:12;32893:2;32872:38;;32889:1;32872:38;;;;;;;;;;;;32938:69;32977:1;32981:2;32985:14;;;;;;33001:5;32938:30;:69::i;:::-;32933:174;;33043:40;;;;;;;;;;;;;;32933:174;33149:3;33134:12;:18;32841:313;;33235:12;33218:13;;:29;33214:43;;33249:8;;;33214:43;32797:635;;;33298:119;33354:14;;;;;;33350:2;33329:40;;33346:1;33329:40;;;;;;;;;;;;33412:3;33397:12;:18;33298:119;;32797:635;33462:12;33446:13;:28;;;;31927:1559;;33496:60;33525:1;33529:2;33533:12;33547:8;33496:20;:60::i;:::-;31440:2124;31328:2236;;;:::o;27716:142::-;27774:14;27835:5;27825:15;;27716:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:180::-;13666:77;13663:1;13656:88;13763:4;13760:1;13753:15;13787:4;13784:1;13777:15;13804:348;13844:7;13867:20;13885:1;13867:20;:::i;:::-;13862:25;;13901:20;13919:1;13901:20;:::i;:::-;13896:25;;14089:1;14021:66;14017:74;14014:1;14011:81;14006:1;13999:9;13992:17;13988:105;13985:131;;;14096:18;;:::i;:::-;13985:131;14144:1;14141;14137:9;14126:20;;13804:348;;;;:::o;14158:191::-;14198:4;14218:20;14236:1;14218:20;:::i;:::-;14213:25;;14252:20;14270:1;14252:20;:::i;:::-;14247:25;;14291:1;14288;14285:8;14282:34;;;14296:18;;:::i;:::-;14282:34;14341:1;14338;14334:9;14326:17;;14158:191;;;;:::o;14355:181::-;14495:33;14491:1;14483:6;14479:14;14472:57;14355:181;:::o;14542:366::-;14684:3;14705:67;14769:2;14764:3;14705:67;:::i;:::-;14698:74;;14781:93;14870:3;14781:93;:::i;:::-;14899:2;14894:3;14890:12;14883:19;;14542:366;;;:::o;14914:419::-;15080:4;15118:2;15107:9;15103:18;15095:26;;15167:9;15161:4;15157:20;15153:1;15142:9;15138:17;15131:47;15195:131;15321:4;15195:131;:::i;:::-;15187:139;;14914:419;;;:::o;15339:171::-;15479:23;15475:1;15467:6;15463:14;15456:47;15339:171;:::o;15516:366::-;15658:3;15679:67;15743:2;15738:3;15679:67;:::i;:::-;15672:74;;15755:93;15844:3;15755:93;:::i;:::-;15873:2;15868:3;15864:12;15857:19;;15516:366;;;:::o;15888:419::-;16054:4;16092:2;16081:9;16077:18;16069:26;;16141:9;16135:4;16131:20;16127:1;16116:9;16112:17;16105:47;16169:131;16295:4;16169:131;:::i;:::-;16161:139;;15888:419;;;:::o;16313:305::-;16353:3;16372:20;16390:1;16372:20;:::i;:::-;16367:25;;16406:20;16424:1;16406:20;:::i;:::-;16401:25;;16560:1;16492:66;16488:74;16485:1;16482:81;16479:107;;;16566:18;;:::i;:::-;16479:107;16610:1;16607;16603:9;16596:16;;16313:305;;;;:::o;16624:220::-;16764:34;16760:1;16752:6;16748:14;16741:58;16833:3;16828:2;16820:6;16816:15;16809:28;16624:220;:::o;16850:366::-;16992:3;17013:67;17077:2;17072:3;17013:67;:::i;:::-;17006:74;;17089:93;17178:3;17089:93;:::i;:::-;17207:2;17202:3;17198:12;17191:19;;16850:366;;;:::o;17222:419::-;17388:4;17426:2;17415:9;17411:18;17403:26;;17475:9;17469:4;17465:20;17461:1;17450:9;17446:17;17439:47;17503:131;17629:4;17503:131;:::i;:::-;17495:139;;17222:419;;;:::o;17647:164::-;17787:16;17783:1;17775:6;17771:14;17764:40;17647:164;:::o;17817:366::-;17959:3;17980:67;18044:2;18039:3;17980:67;:::i;:::-;17973:74;;18056:93;18145:3;18056:93;:::i;:::-;18174:2;18169:3;18165:12;18158:19;;17817:366;;;:::o;18189:419::-;18355:4;18393:2;18382:9;18378:18;18370:26;;18442:9;18436:4;18432:20;18428:1;18417:9;18413:17;18406:47;18470:131;18596:4;18470:131;:::i;:::-;18462:139;;18189:419;;;:::o;18614:221::-;18754:34;18750:1;18742:6;18738:14;18731:58;18823:4;18818:2;18810:6;18806:15;18799:29;18614:221;:::o;18841:366::-;18983:3;19004:67;19068:2;19063:3;19004:67;:::i;:::-;18997:74;;19080:93;19169:3;19080:93;:::i;:::-;19198:2;19193:3;19189:12;19182:19;;18841:366;;;:::o;19213:419::-;19379:4;19417:2;19406:9;19402:18;19394:26;;19466:9;19460:4;19456:20;19452:1;19441:9;19437:17;19430:47;19494:131;19620:4;19494:131;:::i;:::-;19486:139;;19213:419;;;:::o;19638:166::-;19778:18;19774:1;19766:6;19762:14;19755:42;19638:166;:::o;19810:366::-;19952:3;19973:67;20037:2;20032:3;19973:67;:::i;:::-;19966:74;;20049:93;20138:3;20049:93;:::i;:::-;20167:2;20162:3;20158:12;20151:19;;19810:366;;;:::o;20182:419::-;20348:4;20386:2;20375:9;20371:18;20363:26;;20435:9;20429:4;20425:20;20421:1;20410:9;20406:17;20399:47;20463:131;20589:4;20463:131;:::i;:::-;20455:139;;20182:419;;;:::o;20607:225::-;20747:34;20743:1;20735:6;20731:14;20724:58;20816:8;20811:2;20803:6;20799:15;20792:33;20607:225;:::o;20838:366::-;20980:3;21001:67;21065:2;21060:3;21001:67;:::i;:::-;20994:74;;21077:93;21166:3;21077:93;:::i;:::-;21195:2;21190:3;21186:12;21179:19;;20838:366;;;:::o;21210:419::-;21376:4;21414:2;21403:9;21399:18;21391:26;;21463:9;21457:4;21453:20;21449:1;21438:9;21434:17;21427:47;21491:131;21617:4;21491:131;:::i;:::-;21483:139;;21210:419;;;:::o;21635:234::-;21775:34;21771:1;21763:6;21759:14;21752:58;21844:17;21839:2;21831:6;21827:15;21820:42;21635:234;:::o;21875:366::-;22017:3;22038:67;22102:2;22097:3;22038:67;:::i;:::-;22031:74;;22114:93;22203:3;22114:93;:::i;:::-;22232:2;22227:3;22223:12;22216:19;;21875:366;;;:::o;22247:419::-;22413:4;22451:2;22440:9;22436:18;22428:26;;22500:9;22494:4;22490:20;22486:1;22475:9;22471:17;22464:47;22528:131;22654:4;22528:131;:::i;:::-;22520:139;;22247:419;;;:::o;22672:148::-;22774:11;22811:3;22796:18;;22672:148;;;;:::o;22826:377::-;22932:3;22960:39;22993:5;22960:39;:::i;:::-;23015:89;23097:6;23092:3;23015:89;:::i;:::-;23008:96;;23113:52;23158:6;23153:3;23146:4;23139:5;23135:16;23113:52;:::i;:::-;23190:6;23185:3;23181:16;23174:23;;22936:267;22826:377;;;;:::o;23209:155::-;23349:7;23345:1;23337:6;23333:14;23326:31;23209:155;:::o;23370:400::-;23530:3;23551:84;23633:1;23628:3;23551:84;:::i;:::-;23544:91;;23644:93;23733:3;23644:93;:::i;:::-;23762:1;23757:3;23753:11;23746:18;;23370:400;;;:::o;23776:701::-;24057:3;24079:95;24170:3;24161:6;24079:95;:::i;:::-;24072:102;;24191:95;24282:3;24273:6;24191:95;:::i;:::-;24184:102;;24303:148;24447:3;24303:148;:::i;:::-;24296:155;;24468:3;24461:10;;23776:701;;;;;:::o;24483:225::-;24623:34;24619:1;24611:6;24607:14;24600:58;24692:8;24687:2;24679:6;24675:15;24668:33;24483:225;:::o;24714:366::-;24856:3;24877:67;24941:2;24936:3;24877:67;:::i;:::-;24870:74;;24953:93;25042:3;24953:93;:::i;:::-;25071:2;25066:3;25062:12;25055:19;;24714:366;;;:::o;25086:419::-;25252:4;25290:2;25279:9;25275:18;25267:26;;25339:9;25333:4;25329:20;25325:1;25314:9;25310:17;25303:47;25367:131;25493:4;25367:131;:::i;:::-;25359:139;;25086:419;;;:::o;25511:98::-;25562:6;25596:5;25590:12;25580:22;;25511:98;;;:::o;25615:168::-;25698:11;25732:6;25727:3;25720:19;25772:4;25767:3;25763:14;25748:29;;25615:168;;;;:::o;25789:360::-;25875:3;25903:38;25935:5;25903:38;:::i;:::-;25957:70;26020:6;26015:3;25957:70;:::i;:::-;25950:77;;26036:52;26081:6;26076:3;26069:4;26062:5;26058:16;26036:52;:::i;:::-;26113:29;26135:6;26113:29;:::i;:::-;26108:3;26104:39;26097:46;;25879:270;25789:360;;;;:::o;26155:640::-;26350:4;26388:3;26377:9;26373:19;26365:27;;26402:71;26470:1;26459:9;26455:17;26446:6;26402:71;:::i;:::-;26483:72;26551:2;26540:9;26536:18;26527:6;26483:72;:::i;:::-;26565;26633:2;26622:9;26618:18;26609:6;26565:72;:::i;:::-;26684:9;26678:4;26674:20;26669:2;26658:9;26654:18;26647:48;26712:76;26783:4;26774:6;26712:76;:::i;:::-;26704:84;;26155:640;;;;;;;:::o;26801:141::-;26857:5;26888:6;26882:13;26873:22;;26904:32;26930:5;26904:32;:::i;:::-;26801:141;;;;:::o;26948:349::-;27017:6;27066:2;27054:9;27045:7;27041:23;27037:32;27034:119;;;27072:79;;:::i;:::-;27034:119;27192:1;27217:63;27272:7;27263:6;27252:9;27248:22;27217:63;:::i;:::-;27207:73;;27163:127;26948:349;;;;:::o;27303:233::-;27342:3;27365:24;27383:5;27365:24;:::i;:::-;27356:33;;27411:66;27404:5;27401:77;27398:103;;;27481:18;;:::i;:::-;27398:103;27528:1;27521:5;27517:13;27510:20;;27303:233;;;:::o;27542:180::-;27590:77;27587:1;27580:88;27687:4;27684:1;27677:15;27711:4;27708:1;27701:15;27728:185;27768:1;27785:20;27803:1;27785:20;:::i;:::-;27780:25;;27819:20;27837:1;27819:20;:::i;:::-;27814:25;;27858:1;27848:35;;27863:18;;:::i;:::-;27848:35;27905:1;27902;27898:9;27893:14;;27728:185;;;;:::o;27919:176::-;27951:1;27968:20;27986:1;27968:20;:::i;:::-;27963:25;;28002:20;28020:1;28002:20;:::i;:::-;27997:25;;28041:1;28031:35;;28046:18;;:::i;:::-;28031:35;28087:1;28084;28080:9;28075:14;;27919:176;;;;:::o;28101:180::-;28149:77;28146:1;28139:88;28246:4;28243:1;28236:15;28270:4;28267:1;28260:15

Swarm Source

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