ETH Price: $3,086.90 (-0.05%)
Gas: 5 Gwei

Token

Moondogs (Moondogs)
 

Overview

Max Total Supply

3,631 Moondogs

Holders

444

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 Moondogs
0xdc49BEA6f527E7C889969c9380C5232cEa90a3Ed
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:
Moondogs

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 2022-06-24
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

// ........................................................................................................................
// ........................................................................................................................
// ..............................................  .......................................  ...............................
// ........................................,@@@@%..........................................................................
// ......................................(@@////#@@...............................,@@@@%.................................
// ....................................@@%((##(((//@@(,,........................,,#@@##((#@@...............................
// ....................................@@%(#@@#((////%@@........................@@%(#@@#(#@@...............................
// ....................................@@%(#@@@@&((//#&&**,................,*/&&(/(#%@@#(#@@...............................
// ....................................@@%(#@@@@@%%/////@@(****************%&%((((&@@@@#(#@@...............................
// ....................................@@%(#@@@@@@@(((//%%%%%&&&&&%%&&&&&%%(/(##%%&@@&&%%%##...............................
// ....................................@@%(#@@@@@@@((//////////(((////(((((///((@@@@@((@@%.................................
// ....................................@@&##%%@@@@@//////////**(((((***//(((((((##%%%((@@%.................................
// ....................................@@%//((@@&##(((/////////***(((((((*******(((((((@@%.................................
// ....................................@@%((**///*******((////////****/((((/////****/@@**,.................................
// .................................*@@/****((((((((((((@@@@@@@(///////****&@@@@#((((@@,...................................
// .................................*@@((((/*******((%@@  %@@##@@&///////@@%#%@@@@%((//@@%.................................
// ...............................%@&((*****/////((@@(    %@@  &@@///////((. *@@. (@@//@@%.................................
// ...............................%@&**//////////((       %@@((@@@((//(((//((%@@.    //@@%.................................
// ...............................%@&////////////((((,    /((//@@@(((((((/////((     ////#@@...............................
// .............................@@#/////////((*,,,,((((((((((((((((((((((,,*//(((((((((//#@@...............................
// .............................@@#//////(((,,,,,,,,,/(((((((((,,,,,,,,,,,,,,*//((((((((((//@@#............................
// .............................@@%((((((/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,//((((((((((@@#............................
// .............................@@(******/((((*,,,,(((((,,,,,,,,,,,,@@@@@@@@@@@@,,*//((/////@@#............................
// ...............................%@&//((/,,,,,,,,,(((((,,,,,,,,,,,,%&@@@@@@@@&&,,*//(((((((@@#............................
// ...............................%@&****///((*,,,,,,,,,(((((,,,,,,,,,(&&@@&&#,,,,*//((//#@@...............................
// ...............................%@&((((/**,,,,,,,,,,,,,,/((((((((((((((&&#(/,,%&#((((((#@@...............................
// .............................@@#////((((((((((((,,,,,,,,,,&&&&&&&&&&&&&&&&&&&#((((((@@%.................................
// .............................@@#////(((((**//*,,,,,,,,,,,,,,,,*&&/*/((**#&#,,(((((//@@%.................................
// .............................@@%((//(((((**///**(((((((*,,,,,,*&&/*/((**#&%(((((((((@@%.................................
// ..........................(@@(((((//(((((**///(((((((,,,,,,,,,*%%///////#&%(((((////((#@@...............................
// ..........................(@@///////(((((**///**((/(((((((,,,,,,,%&&&&&&#((((/////((((#@@...............................
// ..........................(@@/////((((/**/////**/////,,,,,,,,,,,,,,,,,,,,,*((((((((((((//@@#............................
// ........................**#&&/////((((/**//***((((/////*,,**,,,,,,,,,,,,,**(((((((((/////&&#**..........................
// ........................@@%(((((((//**///**////////////***//,,,,,,,,,,,,/(((((((((//((///**#@@..........................
// ........................@@%/////////////*///(//////((**,,,,,,,,,,,,,,,,,**/(((((((//(((**//(%%##*.......................
// ........................@@%/////////**//////////(((//*****//,,,,,,,,,,,,//((((////((////////**@@/.......................

// File: 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.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 (_addressToUint256(owner) == 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 (_addressToUint256(to) == 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 (_addressToUint256(to) == 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();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            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));
        address approvedAddress = _tokenApprovals[tokenId];

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            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: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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: ITSNOTHING.sol

pragma solidity ^0.8.11;

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

    // metadata
    string public baseURI = "";

    // constants
    uint256 public maxSupply = 10000;
    uint256 public freeMaxSupply = 5555;
    uint256 public price = 0.002 ether;
    uint256 public maxFreePerAddress = 20;
    uint256 public maxPerTx = 5;

    // sale settings
    bool public mintPaused = false;
    bool public revealed = false;
    string public notRevealedUri;
    mapping(address => uint256) private _freeMinted;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection, and by setting supply caps, mint indexes, and reserves
     */
    constructor() ERC721A("Moondogs", "Moondogs") {
        _safeMint(msg.sender, 10);
    }

    /**
     * @dev Gets base metadata URI
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Sets base metadata URI, callable by owner
     */
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    /**
     * ------------ MINT STATE ------------
     */

    /**
     * @dev Pause/unpause sale or presale
     */
    function togglePauseMinting() external onlyOwner {
        mintPaused = !mintPaused;
    }

    /**
     * @dev Returns number of NFTs minted by addr
     */
    function numberMinted(address addr) public view returns (uint256) {
        return _numberMinted(addr);
    }

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

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os, "Withdraw failed!");
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            revealed
                ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json"))
                : notRevealedUri;
    }

    /**
     * @dev Public minting during public sale
     */
    function mint(uint256 count) external payable {
        require(count > 0, "Count can't be 0");
        require(!mintPaused, "Minting is currently paused");

        require(totalSupply() + count <= maxSupply, "Supply exceeded");

        uint256 cost = price;

        bool free = ((totalSupply() + count <= freeMaxSupply) &&
            (_freeMinted[msg.sender] + count <= maxFreePerAddress));
        if (free) {
            cost = 0;
            _freeMinted[msg.sender] += count;
            require(count < maxPerTx + 1, "Max per TX reached.");
        }

        require(count * cost <= msg.value, "Invalid funds provided");

        _safeMint(msg.sender, count);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePauseMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600990805190602001906200002b929190620006cc565b50612710600a556115b3600b5566071afd498d0000600c556014600d556005600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200009057600080fd5b506040518060400160405280600881526020017f4d6f6f6e646f67730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4d6f6f6e646f6773000000000000000000000000000000000000000000000000815250816002908051906020019062000115929190620006cc565b5080600390805190602001906200012e929190620006cc565b506200013f6200018060201b60201c565b6000819055505050620001676200015b6200018560201b60201c565b6200018d60201b60201c565b6200017a33600a6200025360201b60201c565b620009cd565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002758282604051806020016040528060008152506200027960201b60201c565b5050565b600080549050600062000292856200054260201b60201c565b1415620002cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000307576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200031c60008583866200054c60201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000389600185146200055260201b60201c565b901b60a042901b620003a1866200054260201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14620004b2575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200045e60008784806001019550876200055c60201b60201c565b62000495576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620003e7578260005414620004ac57600080fd5b6200051e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620004b3575b8160008190555050506200053c6000858386620006be60201b60201c565b50505050565b6000819050919050565b50505050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200058a620006c460201b60201c565b8786866040518563ffffffff1660e01b8152600401620005ae949392919062000880565b6020604051808303816000875af1925050508015620005ed57506040513d601f19601f82011682018060405250810190620005ea919062000936565b60015b6200066b573d806000811462000620576040519150601f19603f3d011682016040523d82523d6000602084013e62000625565b606091505b5060008151141562000663576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620006da9062000997565b90600052602060002090601f016020900481019282620006fe57600085556200074a565b82601f106200071957805160ff19168380011785556200074a565b828001600101855582156200074a579182015b82811115620007495782518255916020019190600101906200072c565b5b5090506200075991906200075d565b5090565b5b80821115620007785760008160009055506001016200075e565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007a9826200077c565b9050919050565b620007bb816200079c565b82525050565b6000819050919050565b620007d681620007c1565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000818578082015181840152602081019050620007fb565b8381111562000828576000848401525b50505050565b6000601f19601f8301169050919050565b60006200084c82620007dc565b620008588185620007e7565b93506200086a818560208601620007f8565b62000875816200082e565b840191505092915050565b6000608082019050620008976000830187620007b0565b620008a66020830186620007b0565b620008b56040830185620007cb565b8181036060830152620008c981846200083f565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200091081620008d9565b81146200091c57600080fd5b50565b600081519050620009308162000905565b92915050565b6000602082840312156200094f576200094e620008d4565b5b60006200095f848285016200091f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009b057607f821691505b60208210811415620009c757620009c662000968565b5b50919050565b61361380620009dd6000396000f3fe6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c5146106dc578063f2c4ce1e14610719578063f2fde38b14610742578063f4464cf11461076b578063f968adbe14610796576101f9565b8063b88d4fde1461060e578063c87b56dd14610637578063d5abeb0114610674578063dc33e6811461069f576101f9565b8063a0712d68116100dc578063a0712d6814610589578063a0bcfc7f146105a5578063a22cb465146105ce578063a475b5dd146105f7576101f9565b80638da5cb5b146104df57806391b7f5ed1461050a57806395d89b4114610533578063a035b1fe1461055e576101f9565b80633e53afc3116101905780636352211e1161015f5780636352211e146103f85780636c0360eb1461043557806370a0823114610460578063715018a61461049d5780637e4831d3146104b4576101f9565b80633e53afc31461036257806342842e0e146103795780635097bdef146103a257806351830227146103cd576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780633ccfd60b1461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063081c8c44146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612693565b6107c1565b60405161023291906126db565b60405180910390f35b34801561024757600080fd5b50610250610853565b60405161025d919061278f565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906127e7565b6108e5565b60405161029a9190612855565b60405180910390f35b3480156102af57600080fd5b506102b8610961565b6040516102c5919061278f565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061289c565b6109ef565b005b34801561030357600080fd5b5061030c610b96565b60405161031991906128eb565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612906565b610bad565b005b34801561035757600080fd5b50610360610bbd565b005b34801561036e57600080fd5b50610377610cef565b005b34801561038557600080fd5b506103a0600480360381019061039b9190612906565b610d97565b005b3480156103ae57600080fd5b506103b7610db7565b6040516103c491906128eb565b60405180910390f35b3480156103d957600080fd5b506103e2610dbd565b6040516103ef91906126db565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a91906127e7565b610dd0565b60405161042c9190612855565b60405180910390f35b34801561044157600080fd5b5061044a610de2565b604051610457919061278f565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190612959565b610e70565b60405161049491906128eb565b60405180910390f35b3480156104a957600080fd5b506104b2610f05565b005b3480156104c057600080fd5b506104c9610f8d565b6040516104d691906126db565b60405180910390f35b3480156104eb57600080fd5b506104f4610fa0565b6040516105019190612855565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906127e7565b610fca565b005b34801561053f57600080fd5b50610548611050565b604051610555919061278f565b60405180910390f35b34801561056a57600080fd5b506105736110e2565b60405161058091906128eb565b60405180910390f35b6105a3600480360381019061059e91906127e7565b6110e8565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190612abb565b61135b565b005b3480156105da57600080fd5b506105f560048036038101906105f09190612b30565b6113f1565b005b34801561060357600080fd5b5061060c611569565b005b34801561061a57600080fd5b5061063560048036038101906106309190612c11565b611602565b005b34801561064357600080fd5b5061065e600480360381019061065991906127e7565b611675565b60405161066b919061278f565b60405180910390f35b34801561068057600080fd5b50610689611796565b60405161069691906128eb565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612959565b61179c565b6040516106d391906128eb565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190612c94565b6117ae565b60405161071091906126db565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190612abb565b611842565b005b34801561074e57600080fd5b5061076960048036038101906107649190612959565b6118d8565b005b34801561077757600080fd5b506107806119d0565b60405161078d91906128eb565b60405180910390f35b3480156107a257600080fd5b506107ab6119d6565b6040516107b891906128eb565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461086290612d03565b80601f016020809104026020016040519081016040528092919081815260200182805461088e90612d03565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b60006108f0826119dc565b610926576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6010805461096e90612d03565b80601f016020809104026020016040519081016040528092919081815260200182805461099a90612d03565b80156109e75780601f106109bc576101008083540402835291602001916109e7565b820191906000526020600020905b8154815290600101906020018083116109ca57829003601f168201915b505050505081565b60006109fa82611a3b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a62576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a81611b09565b73ffffffffffffffffffffffffffffffffffffffff1614610ae457610aad81610aa8611b09565b6117ae565b610ae3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ba0611b11565b6001546000540303905090565b610bb8838383611b16565b505050565b610bc5611ede565b73ffffffffffffffffffffffffffffffffffffffff16610be3610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090612d81565b60405180910390fd5b6000610c43610fa0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c6690612dd2565b60006040518083038185875af1925050503d8060008114610ca3576040519150601f19603f3d011682016040523d82523d6000602084013e610ca8565b606091505b5050905080610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390612e33565b60405180910390fd5b50565b610cf7611ede565b73ffffffffffffffffffffffffffffffffffffffff16610d15610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290612d81565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610db283838360405180602001604052806000815250611602565b505050565b600b5481565b600f60019054906101000a900460ff1681565b6000610ddb82611a3b565b9050919050565b60098054610def90612d03565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1b90612d03565b8015610e685780601f10610e3d57610100808354040283529160200191610e68565b820191906000526020600020905b815481529060010190602001808311610e4b57829003601f168201915b505050505081565b600080610e7c83611ee6565b1415610eb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f0d611ede565b73ffffffffffffffffffffffffffffffffffffffff16610f2b610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890612d81565b60405180910390fd5b610f8b6000611ef0565b565b600f60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fd2611ede565b73ffffffffffffffffffffffffffffffffffffffff16610ff0610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90612d81565b60405180910390fd5b80600c8190555050565b60606003805461105f90612d03565b80601f016020809104026020016040519081016040528092919081815260200182805461108b90612d03565b80156110d85780601f106110ad576101008083540402835291602001916110d8565b820191906000526020600020905b8154815290600101906020018083116110bb57829003601f168201915b5050505050905090565b600c5481565b6000811161112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290612e9f565b60405180910390fd5b600f60009054906101000a900460ff161561117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290612f0b565b60405180910390fd5b600a5481611187610b96565b6111919190612f5a565b11156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990612ffc565b60405180910390fd5b6000600c5490506000600b54836111e7610b96565b6111f19190612f5a565b1115801561124b5750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112489190612f5a565b11155b905080156112fe576000915082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112a69190612f5a565b925050819055506001600e546112bc9190612f5a565b83106112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490613068565b60405180910390fd5b5b34828461130b9190613088565b111561134c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113439061312e565b60405180910390fd5b6113563384611fb6565b505050565b611363611ede565b73ffffffffffffffffffffffffffffffffffffffff16611381610fa0565b73ffffffffffffffffffffffffffffffffffffffff16146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90612d81565b60405180910390fd5b80600990805190602001906113ed929190612584565b5050565b6113f9611b09565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061146b611b09565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611518611b09565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155d91906126db565b60405180910390a35050565b611571611ede565b73ffffffffffffffffffffffffffffffffffffffff1661158f610fa0565b73ffffffffffffffffffffffffffffffffffffffff16146115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90612d81565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b61160d848484611b16565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461166f5761163884848484611fd4565b61166e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611680826119dc565b6116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b6906131c0565b60405180910390fd5b600f60019054906101000a900460ff1661176357601080546116e090612d03565b80601f016020809104026020016040519081016040528092919081815260200182805461170c90612d03565b80156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b505050505061178f565b600961176e83612125565b60405160200161177f9291906132fc565b6040516020818303038152906040525b9050919050565b600a5481565b60006117a782612286565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184a611ede565b73ffffffffffffffffffffffffffffffffffffffff16611868610fa0565b73ffffffffffffffffffffffffffffffffffffffff16146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590612d81565b60405180910390fd5b80601090805190602001906118d4929190612584565b5050565b6118e0611ede565b73ffffffffffffffffffffffffffffffffffffffff166118fe610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90612d81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061339d565b60405180910390fd5b6119cd81611ef0565b50565b600d5481565b600e5481565b6000816119e7611b11565b111580156119f6575060005482105b8015611a34575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611a4a611b11565b11611ad257600054811015611ad15760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611acf575b6000811415611ac5576004600083600190039350838152602001908152602001600020549050611a9a565b8092505050611b04565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611b2182611a3b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b88576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611be1611b09565b73ffffffffffffffffffffffffffffffffffffffff161480611c105750611c0f86611c0a611b09565b6117ae565b5b80611c4d5750611c1e611b09565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611c86576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c9186611ee6565b1415611cc9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cd686868660016122dd565b6000611ce183611ee6565b14611d1d576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611de487611ee6565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611e6e576000600185019050600060046000838152602001908152602001600020541415611e6c576000548114611e6b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ed686868660016122e3565b505050505050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fd08282604051806020016040528060008152506122e9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ffa611b09565b8786866040518563ffffffff1660e01b815260040161201c9493929190613412565b6020604051808303816000875af192505050801561205857506040513d601f19601f820116820180604052508101906120559190613473565b60015b6120d2573d8060008114612088576040519150601f19603f3d011682016040523d82523d6000602084013e61208d565b606091505b506000815114156120ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561216d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612281565b600082905060005b6000821461219f578080612188906134a0565b915050600a826121989190613518565b9150612175565b60008167ffffffffffffffff8111156121bb576121ba612990565b5b6040519080825280601f01601f1916602001820160405280156121ed5781602001600182028036833780820191505090505b5090505b6000851461227a576001826122069190613549565b9150600a85612215919061357d565b60306122219190612f5a565b60f81b818381518110612237576122366135ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122739190613518565b94506121f1565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b50505050565b60008054905060006122fa85611ee6565b1415612332576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561236d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61237a60008583866122dd565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123df6001851461257a565b901b60a042901b6123ef86611ee6565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146124f3575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124a36000878480600101955087611fd4565b6124d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106124345782600054146124ee57600080fd5b61255e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124f4575b81600081905550505061257460008583866122e3565b50505050565b6000819050919050565b82805461259090612d03565b90600052602060002090601f0160209004810192826125b257600085556125f9565b82601f106125cb57805160ff19168380011785556125f9565b828001600101855582156125f9579182015b828111156125f85782518255916020019190600101906125dd565b5b509050612606919061260a565b5090565b5b8082111561262357600081600090555060010161260b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126708161263b565b811461267b57600080fd5b50565b60008135905061268d81612667565b92915050565b6000602082840312156126a9576126a8612631565b5b60006126b78482850161267e565b91505092915050565b60008115159050919050565b6126d5816126c0565b82525050565b60006020820190506126f060008301846126cc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612730578082015181840152602081019050612715565b8381111561273f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612761826126f6565b61276b8185612701565b935061277b818560208601612712565b61278481612745565b840191505092915050565b600060208201905081810360008301526127a98184612756565b905092915050565b6000819050919050565b6127c4816127b1565b81146127cf57600080fd5b50565b6000813590506127e1816127bb565b92915050565b6000602082840312156127fd576127fc612631565b5b600061280b848285016127d2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061283f82612814565b9050919050565b61284f81612834565b82525050565b600060208201905061286a6000830184612846565b92915050565b61287981612834565b811461288457600080fd5b50565b60008135905061289681612870565b92915050565b600080604083850312156128b3576128b2612631565b5b60006128c185828601612887565b92505060206128d2858286016127d2565b9150509250929050565b6128e5816127b1565b82525050565b600060208201905061290060008301846128dc565b92915050565b60008060006060848603121561291f5761291e612631565b5b600061292d86828701612887565b935050602061293e86828701612887565b925050604061294f868287016127d2565b9150509250925092565b60006020828403121561296f5761296e612631565b5b600061297d84828501612887565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129c882612745565b810181811067ffffffffffffffff821117156129e7576129e6612990565b5b80604052505050565b60006129fa612627565b9050612a0682826129bf565b919050565b600067ffffffffffffffff821115612a2657612a25612990565b5b612a2f82612745565b9050602081019050919050565b82818337600083830152505050565b6000612a5e612a5984612a0b565b6129f0565b905082815260208101848484011115612a7a57612a7961298b565b5b612a85848285612a3c565b509392505050565b600082601f830112612aa257612aa1612986565b5b8135612ab2848260208601612a4b565b91505092915050565b600060208284031215612ad157612ad0612631565b5b600082013567ffffffffffffffff811115612aef57612aee612636565b5b612afb84828501612a8d565b91505092915050565b612b0d816126c0565b8114612b1857600080fd5b50565b600081359050612b2a81612b04565b92915050565b60008060408385031215612b4757612b46612631565b5b6000612b5585828601612887565b9250506020612b6685828601612b1b565b9150509250929050565b600067ffffffffffffffff821115612b8b57612b8a612990565b5b612b9482612745565b9050602081019050919050565b6000612bb4612baf84612b70565b6129f0565b905082815260208101848484011115612bd057612bcf61298b565b5b612bdb848285612a3c565b509392505050565b600082601f830112612bf857612bf7612986565b5b8135612c08848260208601612ba1565b91505092915050565b60008060008060808587031215612c2b57612c2a612631565b5b6000612c3987828801612887565b9450506020612c4a87828801612887565b9350506040612c5b878288016127d2565b925050606085013567ffffffffffffffff811115612c7c57612c7b612636565b5b612c8887828801612be3565b91505092959194509250565b60008060408385031215612cab57612caa612631565b5b6000612cb985828601612887565b9250506020612cca85828601612887565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d1b57607f821691505b60208210811415612d2f57612d2e612cd4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d6b602083612701565b9150612d7682612d35565b602082019050919050565b60006020820190508181036000830152612d9a81612d5e565b9050919050565b600081905092915050565b50565b6000612dbc600083612da1565b9150612dc782612dac565b600082019050919050565b6000612ddd82612daf565b9150819050919050565b7f5769746864726177206661696c65642100000000000000000000000000000000600082015250565b6000612e1d601083612701565b9150612e2882612de7565b602082019050919050565b60006020820190508181036000830152612e4c81612e10565b9050919050565b7f436f756e742063616e2774206265203000000000000000000000000000000000600082015250565b6000612e89601083612701565b9150612e9482612e53565b602082019050919050565b60006020820190508181036000830152612eb881612e7c565b9050919050565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b6000612ef5601b83612701565b9150612f0082612ebf565b602082019050919050565b60006020820190508181036000830152612f2481612ee8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f65826127b1565b9150612f70836127b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fa557612fa4612f2b565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b6000612fe6600f83612701565b9150612ff182612fb0565b602082019050919050565b6000602082019050818103600083015261301581612fd9565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613052601383612701565b915061305d8261301c565b602082019050919050565b6000602082019050818103600083015261308181613045565b9050919050565b6000613093826127b1565b915061309e836127b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130d7576130d6612f2b565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613118601683612701565b9150613123826130e2565b602082019050919050565b600060208201905081810360008301526131478161310b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006131aa602f83612701565b91506131b58261314e565b604082019050919050565b600060208201905081810360008301526131d98161319d565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461320d81612d03565b61321781866131e0565b94506001821660008114613232576001811461324357613276565b60ff19831686528186019350613276565b61324c856131eb565b60005b8381101561326e5781548189015260018201915060208101905061324f565b838801955050505b50505092915050565b600061328a826126f6565b61329481856131e0565b93506132a4818560208601612712565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132e66005836131e0565b91506132f1826132b0565b600582019050919050565b60006133088285613200565b9150613314828461327f565b915061331f826132d9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613387602683612701565b91506133928261332b565b604082019050919050565b600060208201905081810360008301526133b68161337a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133e4826133bd565b6133ee81856133c8565b93506133fe818560208601612712565b61340781612745565b840191505092915050565b60006080820190506134276000830187612846565b6134346020830186612846565b61344160408301856128dc565b818103606083015261345381846133d9565b905095945050505050565b60008151905061346d81612667565b92915050565b60006020828403121561348957613488612631565b5b60006134978482850161345e565b91505092915050565b60006134ab826127b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134de576134dd612f2b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613523826127b1565b915061352e836127b1565b92508261353e5761353d6134e9565b5b828204905092915050565b6000613554826127b1565b915061355f836127b1565b92508282101561357257613571612f2b565b5b828203905092915050565b6000613588826127b1565b9150613593836127b1565b9250826135a3576135a26134e9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220973020e197de8b8075c80bec03673182faefd94a49c5177f078ef1d268a80a5e64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c5146106dc578063f2c4ce1e14610719578063f2fde38b14610742578063f4464cf11461076b578063f968adbe14610796576101f9565b8063b88d4fde1461060e578063c87b56dd14610637578063d5abeb0114610674578063dc33e6811461069f576101f9565b8063a0712d68116100dc578063a0712d6814610589578063a0bcfc7f146105a5578063a22cb465146105ce578063a475b5dd146105f7576101f9565b80638da5cb5b146104df57806391b7f5ed1461050a57806395d89b4114610533578063a035b1fe1461055e576101f9565b80633e53afc3116101905780636352211e1161015f5780636352211e146103f85780636c0360eb1461043557806370a0823114610460578063715018a61461049d5780637e4831d3146104b4576101f9565b80633e53afc31461036257806342842e0e146103795780635097bdef146103a257806351830227146103cd576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780633ccfd60b1461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063081c8c44146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612693565b6107c1565b60405161023291906126db565b60405180910390f35b34801561024757600080fd5b50610250610853565b60405161025d919061278f565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906127e7565b6108e5565b60405161029a9190612855565b60405180910390f35b3480156102af57600080fd5b506102b8610961565b6040516102c5919061278f565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061289c565b6109ef565b005b34801561030357600080fd5b5061030c610b96565b60405161031991906128eb565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612906565b610bad565b005b34801561035757600080fd5b50610360610bbd565b005b34801561036e57600080fd5b50610377610cef565b005b34801561038557600080fd5b506103a0600480360381019061039b9190612906565b610d97565b005b3480156103ae57600080fd5b506103b7610db7565b6040516103c491906128eb565b60405180910390f35b3480156103d957600080fd5b506103e2610dbd565b6040516103ef91906126db565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a91906127e7565b610dd0565b60405161042c9190612855565b60405180910390f35b34801561044157600080fd5b5061044a610de2565b604051610457919061278f565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190612959565b610e70565b60405161049491906128eb565b60405180910390f35b3480156104a957600080fd5b506104b2610f05565b005b3480156104c057600080fd5b506104c9610f8d565b6040516104d691906126db565b60405180910390f35b3480156104eb57600080fd5b506104f4610fa0565b6040516105019190612855565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906127e7565b610fca565b005b34801561053f57600080fd5b50610548611050565b604051610555919061278f565b60405180910390f35b34801561056a57600080fd5b506105736110e2565b60405161058091906128eb565b60405180910390f35b6105a3600480360381019061059e91906127e7565b6110e8565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190612abb565b61135b565b005b3480156105da57600080fd5b506105f560048036038101906105f09190612b30565b6113f1565b005b34801561060357600080fd5b5061060c611569565b005b34801561061a57600080fd5b5061063560048036038101906106309190612c11565b611602565b005b34801561064357600080fd5b5061065e600480360381019061065991906127e7565b611675565b60405161066b919061278f565b60405180910390f35b34801561068057600080fd5b50610689611796565b60405161069691906128eb565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612959565b61179c565b6040516106d391906128eb565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190612c94565b6117ae565b60405161071091906126db565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190612abb565b611842565b005b34801561074e57600080fd5b5061076960048036038101906107649190612959565b6118d8565b005b34801561077757600080fd5b506107806119d0565b60405161078d91906128eb565b60405180910390f35b3480156107a257600080fd5b506107ab6119d6565b6040516107b891906128eb565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461086290612d03565b80601f016020809104026020016040519081016040528092919081815260200182805461088e90612d03565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b60006108f0826119dc565b610926576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6010805461096e90612d03565b80601f016020809104026020016040519081016040528092919081815260200182805461099a90612d03565b80156109e75780601f106109bc576101008083540402835291602001916109e7565b820191906000526020600020905b8154815290600101906020018083116109ca57829003601f168201915b505050505081565b60006109fa82611a3b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a62576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a81611b09565b73ffffffffffffffffffffffffffffffffffffffff1614610ae457610aad81610aa8611b09565b6117ae565b610ae3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ba0611b11565b6001546000540303905090565b610bb8838383611b16565b505050565b610bc5611ede565b73ffffffffffffffffffffffffffffffffffffffff16610be3610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090612d81565b60405180910390fd5b6000610c43610fa0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c6690612dd2565b60006040518083038185875af1925050503d8060008114610ca3576040519150601f19603f3d011682016040523d82523d6000602084013e610ca8565b606091505b5050905080610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390612e33565b60405180910390fd5b50565b610cf7611ede565b73ffffffffffffffffffffffffffffffffffffffff16610d15610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290612d81565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610db283838360405180602001604052806000815250611602565b505050565b600b5481565b600f60019054906101000a900460ff1681565b6000610ddb82611a3b565b9050919050565b60098054610def90612d03565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1b90612d03565b8015610e685780601f10610e3d57610100808354040283529160200191610e68565b820191906000526020600020905b815481529060010190602001808311610e4b57829003601f168201915b505050505081565b600080610e7c83611ee6565b1415610eb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f0d611ede565b73ffffffffffffffffffffffffffffffffffffffff16610f2b610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890612d81565b60405180910390fd5b610f8b6000611ef0565b565b600f60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fd2611ede565b73ffffffffffffffffffffffffffffffffffffffff16610ff0610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90612d81565b60405180910390fd5b80600c8190555050565b60606003805461105f90612d03565b80601f016020809104026020016040519081016040528092919081815260200182805461108b90612d03565b80156110d85780601f106110ad576101008083540402835291602001916110d8565b820191906000526020600020905b8154815290600101906020018083116110bb57829003601f168201915b5050505050905090565b600c5481565b6000811161112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290612e9f565b60405180910390fd5b600f60009054906101000a900460ff161561117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290612f0b565b60405180910390fd5b600a5481611187610b96565b6111919190612f5a565b11156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990612ffc565b60405180910390fd5b6000600c5490506000600b54836111e7610b96565b6111f19190612f5a565b1115801561124b5750600d5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112489190612f5a565b11155b905080156112fe576000915082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112a69190612f5a565b925050819055506001600e546112bc9190612f5a565b83106112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490613068565b60405180910390fd5b5b34828461130b9190613088565b111561134c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113439061312e565b60405180910390fd5b6113563384611fb6565b505050565b611363611ede565b73ffffffffffffffffffffffffffffffffffffffff16611381610fa0565b73ffffffffffffffffffffffffffffffffffffffff16146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90612d81565b60405180910390fd5b80600990805190602001906113ed929190612584565b5050565b6113f9611b09565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061146b611b09565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611518611b09565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155d91906126db565b60405180910390a35050565b611571611ede565b73ffffffffffffffffffffffffffffffffffffffff1661158f610fa0565b73ffffffffffffffffffffffffffffffffffffffff16146115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90612d81565b60405180910390fd5b6001600f60016101000a81548160ff021916908315150217905550565b61160d848484611b16565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461166f5761163884848484611fd4565b61166e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611680826119dc565b6116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b6906131c0565b60405180910390fd5b600f60019054906101000a900460ff1661176357601080546116e090612d03565b80601f016020809104026020016040519081016040528092919081815260200182805461170c90612d03565b80156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b505050505061178f565b600961176e83612125565b60405160200161177f9291906132fc565b6040516020818303038152906040525b9050919050565b600a5481565b60006117a782612286565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184a611ede565b73ffffffffffffffffffffffffffffffffffffffff16611868610fa0565b73ffffffffffffffffffffffffffffffffffffffff16146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590612d81565b60405180910390fd5b80601090805190602001906118d4929190612584565b5050565b6118e0611ede565b73ffffffffffffffffffffffffffffffffffffffff166118fe610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90612d81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061339d565b60405180910390fd5b6119cd81611ef0565b50565b600d5481565b600e5481565b6000816119e7611b11565b111580156119f6575060005482105b8015611a34575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611a4a611b11565b11611ad257600054811015611ad15760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611acf575b6000811415611ac5576004600083600190039350838152602001908152602001600020549050611a9a565b8092505050611b04565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611b2182611a3b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b88576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611be1611b09565b73ffffffffffffffffffffffffffffffffffffffff161480611c105750611c0f86611c0a611b09565b6117ae565b5b80611c4d5750611c1e611b09565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611c86576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c9186611ee6565b1415611cc9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cd686868660016122dd565b6000611ce183611ee6565b14611d1d576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611de487611ee6565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611e6e576000600185019050600060046000838152602001908152602001600020541415611e6c576000548114611e6b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ed686868660016122e3565b505050505050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fd08282604051806020016040528060008152506122e9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ffa611b09565b8786866040518563ffffffff1660e01b815260040161201c9493929190613412565b6020604051808303816000875af192505050801561205857506040513d601f19601f820116820180604052508101906120559190613473565b60015b6120d2573d8060008114612088576040519150601f19603f3d011682016040523d82523d6000602084013e61208d565b606091505b506000815114156120ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561216d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612281565b600082905060005b6000821461219f578080612188906134a0565b915050600a826121989190613518565b9150612175565b60008167ffffffffffffffff8111156121bb576121ba612990565b5b6040519080825280601f01601f1916602001820160405280156121ed5781602001600182028036833780820191505090505b5090505b6000851461227a576001826122069190613549565b9150600a85612215919061357d565b60306122219190612f5a565b60f81b818381518110612237576122366135ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122739190613518565b94506121f1565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b50505050565b60008054905060006122fa85611ee6565b1415612332576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561236d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61237a60008583866122dd565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16123df6001851461257a565b901b60a042901b6123ef86611ee6565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146124f3575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124a36000878480600101955087611fd4565b6124d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106124345782600054146124ee57600080fd5b61255e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106124f4575b81600081905550505061257460008583866122e3565b50505050565b6000819050919050565b82805461259090612d03565b90600052602060002090601f0160209004810192826125b257600085556125f9565b82601f106125cb57805160ff19168380011785556125f9565b828001600101855582156125f9579182015b828111156125f85782518255916020019190600101906125dd565b5b509050612606919061260a565b5090565b5b8082111561262357600081600090555060010161260b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126708161263b565b811461267b57600080fd5b50565b60008135905061268d81612667565b92915050565b6000602082840312156126a9576126a8612631565b5b60006126b78482850161267e565b91505092915050565b60008115159050919050565b6126d5816126c0565b82525050565b60006020820190506126f060008301846126cc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612730578082015181840152602081019050612715565b8381111561273f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612761826126f6565b61276b8185612701565b935061277b818560208601612712565b61278481612745565b840191505092915050565b600060208201905081810360008301526127a98184612756565b905092915050565b6000819050919050565b6127c4816127b1565b81146127cf57600080fd5b50565b6000813590506127e1816127bb565b92915050565b6000602082840312156127fd576127fc612631565b5b600061280b848285016127d2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061283f82612814565b9050919050565b61284f81612834565b82525050565b600060208201905061286a6000830184612846565b92915050565b61287981612834565b811461288457600080fd5b50565b60008135905061289681612870565b92915050565b600080604083850312156128b3576128b2612631565b5b60006128c185828601612887565b92505060206128d2858286016127d2565b9150509250929050565b6128e5816127b1565b82525050565b600060208201905061290060008301846128dc565b92915050565b60008060006060848603121561291f5761291e612631565b5b600061292d86828701612887565b935050602061293e86828701612887565b925050604061294f868287016127d2565b9150509250925092565b60006020828403121561296f5761296e612631565b5b600061297d84828501612887565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129c882612745565b810181811067ffffffffffffffff821117156129e7576129e6612990565b5b80604052505050565b60006129fa612627565b9050612a0682826129bf565b919050565b600067ffffffffffffffff821115612a2657612a25612990565b5b612a2f82612745565b9050602081019050919050565b82818337600083830152505050565b6000612a5e612a5984612a0b565b6129f0565b905082815260208101848484011115612a7a57612a7961298b565b5b612a85848285612a3c565b509392505050565b600082601f830112612aa257612aa1612986565b5b8135612ab2848260208601612a4b565b91505092915050565b600060208284031215612ad157612ad0612631565b5b600082013567ffffffffffffffff811115612aef57612aee612636565b5b612afb84828501612a8d565b91505092915050565b612b0d816126c0565b8114612b1857600080fd5b50565b600081359050612b2a81612b04565b92915050565b60008060408385031215612b4757612b46612631565b5b6000612b5585828601612887565b9250506020612b6685828601612b1b565b9150509250929050565b600067ffffffffffffffff821115612b8b57612b8a612990565b5b612b9482612745565b9050602081019050919050565b6000612bb4612baf84612b70565b6129f0565b905082815260208101848484011115612bd057612bcf61298b565b5b612bdb848285612a3c565b509392505050565b600082601f830112612bf857612bf7612986565b5b8135612c08848260208601612ba1565b91505092915050565b60008060008060808587031215612c2b57612c2a612631565b5b6000612c3987828801612887565b9450506020612c4a87828801612887565b9350506040612c5b878288016127d2565b925050606085013567ffffffffffffffff811115612c7c57612c7b612636565b5b612c8887828801612be3565b91505092959194509250565b60008060408385031215612cab57612caa612631565b5b6000612cb985828601612887565b9250506020612cca85828601612887565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d1b57607f821691505b60208210811415612d2f57612d2e612cd4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d6b602083612701565b9150612d7682612d35565b602082019050919050565b60006020820190508181036000830152612d9a81612d5e565b9050919050565b600081905092915050565b50565b6000612dbc600083612da1565b9150612dc782612dac565b600082019050919050565b6000612ddd82612daf565b9150819050919050565b7f5769746864726177206661696c65642100000000000000000000000000000000600082015250565b6000612e1d601083612701565b9150612e2882612de7565b602082019050919050565b60006020820190508181036000830152612e4c81612e10565b9050919050565b7f436f756e742063616e2774206265203000000000000000000000000000000000600082015250565b6000612e89601083612701565b9150612e9482612e53565b602082019050919050565b60006020820190508181036000830152612eb881612e7c565b9050919050565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b6000612ef5601b83612701565b9150612f0082612ebf565b602082019050919050565b60006020820190508181036000830152612f2481612ee8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f65826127b1565b9150612f70836127b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fa557612fa4612f2b565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b6000612fe6600f83612701565b9150612ff182612fb0565b602082019050919050565b6000602082019050818103600083015261301581612fd9565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613052601383612701565b915061305d8261301c565b602082019050919050565b6000602082019050818103600083015261308181613045565b9050919050565b6000613093826127b1565b915061309e836127b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130d7576130d6612f2b565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613118601683612701565b9150613123826130e2565b602082019050919050565b600060208201905081810360008301526131478161310b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006131aa602f83612701565b91506131b58261314e565b604082019050919050565b600060208201905081810360008301526131d98161319d565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461320d81612d03565b61321781866131e0565b94506001821660008114613232576001811461324357613276565b60ff19831686528186019350613276565b61324c856131eb565b60005b8381101561326e5781548189015260018201915060208101905061324f565b838801955050505b50505092915050565b600061328a826126f6565b61329481856131e0565b93506132a4818560208601612712565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132e66005836131e0565b91506132f1826132b0565b600582019050919050565b60006133088285613200565b9150613314828461327f565b915061331f826132d9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613387602683612701565b91506133928261332b565b604082019050919050565b600060208201905081810360008301526133b68161337a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133e4826133bd565b6133ee81856133c8565b93506133fe818560208601612712565b61340781612745565b840191505092915050565b60006080820190506134276000830187612846565b6134346020830186612846565b61344160408301856128dc565b818103606083015261345381846133d9565b905095945050505050565b60008151905061346d81612667565b92915050565b60006020828403121561348957613488612631565b5b60006134978482850161345e565b91505092915050565b60006134ab826127b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134de576134dd612f2b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613523826127b1565b915061352e836127b1565b92508261353e5761353d6134e9565b5b828204905092915050565b6000613554826127b1565b915061355f836127b1565b92508282101561357257613571612f2b565b5b828203905092915050565b6000613588826127b1565b9150613593836127b1565b9250826135a3576135a26134e9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220973020e197de8b8075c80bec03673182faefd94a49c5177f078ef1d268a80a5e64736f6c634300080b0033

Deployed Bytecode Sourcemap

49928:3235:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17740:665;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23006:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25203:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50373:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24663:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16794:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26212:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51793:167;;;;;;;;;;;;;:::i;:::-;;51194:92;;;;;;;;;;;;;:::i;:::-;;26453:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50116:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50338:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22795:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50024:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18469:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49019:103;;;;;;;;;;;;;:::i;:::-;;50301:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48368:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51482:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23175:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50158:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52466:694;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50968:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25520:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51582:69;;;;;;;;;;;;;:::i;:::-;;26709:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51968:425;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50077:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51363:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25931:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51659:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49277:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50199:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50243:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17740:665;17870:4;18190:10;18175:25;;:11;:25;;;;:102;;;;18267:10;18252:25;;:11;:25;;;;18175:102;:179;;;;18344:10;18329:25;;:11;:25;;;;18175:179;18155:199;;17740:665;;;:::o;23006:100::-;23060:13;23093:5;23086:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23006:100;:::o;25203:245::-;25307:7;25337:16;25345:7;25337;:16::i;:::-;25332:64;;25362:34;;;;;;;;;;;;;;25332:64;25416:15;:24;25432:7;25416:24;;;;;;;;;;;;;;;;;;;;;25409:31;;25203:245;;;:::o;50373:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24663:474::-;24736:13;24768:27;24787:7;24768:18;:27::i;:::-;24736:61;;24818:5;24812:11;;:2;:11;;;24808:48;;;24832:24;;;;;;;;;;;;;;24808:48;24896:5;24873:28;;:19;:17;:19::i;:::-;:28;;;24869:175;;24921:44;24938:5;24945:19;:17;:19::i;:::-;24921:16;:44::i;:::-;24916:128;;24993:35;;;;;;;;;;;;;;24916:128;24869:175;25083:2;25056:15;:24;25072:7;25056:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25121:7;25117:2;25101:28;;25110:5;25101:28;;;;;;;;;;;;24725:412;24663:474;;:::o;16794:315::-;16847:7;17075:15;:13;:15::i;:::-;17060:12;;17044:13;;:28;:46;17037:53;;16794:315;:::o;26212:170::-;26346:28;26356:4;26362:2;26366:7;26346:9;:28::i;:::-;26212:170;;;:::o;51793:167::-;48599:12;:10;:12::i;:::-;48588:23;;:7;:5;:7::i;:::-;:23;;;48580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51842:7:::1;51863;:5;:7::i;:::-;51855:21;;51884;51855:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51841:69;;;51929:2;51921:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;51830:130;51793:167::o:0;51194:92::-;48599:12;:10;:12::i;:::-;48588:23;;:7;:5;:7::i;:::-;:23;;;48580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51268:10:::1;;;;;;;;;;;51267:11;51254:10;;:24;;;;;;;;;;;;;;;;;;51194:92::o:0;26453:185::-;26591:39;26608:4;26614:2;26618:7;26591:39;;;;;;;;;;;;:16;:39::i;:::-;26453:185;;;:::o;50116:35::-;;;;:::o;50338:28::-;;;;;;;;;;;;;:::o;22795:144::-;22859:7;22902:27;22921:7;22902:18;:27::i;:::-;22879:52;;22795:144;;;:::o;50024:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18469:234::-;18533:7;18585:1;18557:24;18575:5;18557:17;:24::i;:::-;:29;18553:70;;;18595:28;;;;;;;;;;;;;;18553:70;13764:13;18641:18;:25;18660:5;18641:25;;;;;;;;;;;;;;;;:54;18634:61;;18469:234;;;:::o;49019:103::-;48599:12;:10;:12::i;:::-;48588:23;;:7;:5;:7::i;:::-;:23;;;48580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49084:30:::1;49111:1;49084:18;:30::i;:::-;49019:103::o:0;50301:30::-;;;;;;;;;;;;;:::o;48368:87::-;48414:7;48441:6;;;;;;;;;;;48434:13;;48368:87;:::o;51482:92::-;48599:12;:10;:12::i;:::-;48588:23;;:7;:5;:7::i;:::-;:23;;;48580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51557:9:::1;51549:5;:17;;;;51482:92:::0;:::o;23175:104::-;23231:13;23264:7;23257:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23175:104;:::o;50158:34::-;;;;:::o;52466:694::-;52539:1;52531:5;:9;52523:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;52581:10;;;;;;;;;;;52580:11;52572:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;52669:9;;52660:5;52644:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;52636:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52711:12;52726:5;;52711:20;;52744:9;52783:13;;52774:5;52758:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:38;;52757:111;;;;;52850:17;;52841:5;52815:11;:23;52827:10;52815:23;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:52;;52757:111;52744:125;;52884:4;52880:159;;;52912:1;52905:8;;52955:5;52928:11;:23;52940:10;52928:23;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;53002:1;52991:8;;:12;;;;:::i;:::-;52983:5;:20;52975:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;52880:159;53075:9;53067:4;53059:5;:12;;;;:::i;:::-;:25;;53051:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;53124:28;53134:10;53146:5;53124:9;:28::i;:::-;52512:648;;52466:694;:::o;50968:92::-;48599:12;:10;:12::i;:::-;48588:23;;:7;:5;:7::i;:::-;:23;;;48580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51048:4:::1;51038:7;:14;;;;;;;;;;;;:::i;:::-;;50968:92:::0;:::o;25520:340::-;25663:19;:17;:19::i;:::-;25651:31;;:8;:31;;;25647:61;;;25691:17;;;;;;;;;;;;;;25647:61;25773:8;25721:18;:39;25740:19;:17;:19::i;:::-;25721:39;;;;;;;;;;;;;;;:49;25761:8;25721:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25833:8;25797:55;;25812:19;:17;:19::i;:::-;25797:55;;;25843:8;25797:55;;;;;;:::i;:::-;;;;;;;;25520:340;;:::o;51582:69::-;48599:12;:10;:12::i;:::-;48588:23;;:7;:5;:7::i;:::-;:23;;;48580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51639:4:::1;51628:8;;:15;;;;;;;;;;;;;;;;;;51582:69::o:0;26709:396::-;26876:28;26886:4;26892:2;26896:7;26876:9;:28::i;:::-;26937:1;26919:2;:14;;;:19;26915:183;;26958:56;26989:4;26995:2;26999:7;27008:5;26958:30;:56::i;:::-;26953:145;;27042:40;;;;;;;;;;;;;;26953:145;26915:183;26709:396;;;;:::o;51968:425::-;52086:13;52139:16;52147:7;52139;:16::i;:::-;52117:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52261:8;;;;;;;;;;;:124;;52371:14;52261:124;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52313:7;52322:18;:7;:16;:18::i;:::-;52296:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52261:124;52241:144;;51968:425;;;:::o;50077:32::-;;;;:::o;51363:111::-;51420:7;51447:19;51461:4;51447:13;:19::i;:::-;51440:26;;51363:111;;;:::o;25931:214::-;26073:4;26102:18;:25;26121:5;26102:25;;;;;;;;;;;;;;;:35;26128:8;26102:35;;;;;;;;;;;;;;;;;;;;;;;;;26095:42;;25931:214;;;;:::o;51659:126::-;48599:12;:10;:12::i;:::-;48588:23;;:7;:5;:7::i;:::-;:23;;;48580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51762:15:::1;51745:14;:32;;;;;;;;;;;;:::i;:::-;;51659:126:::0;:::o;49277:238::-;48599:12;:10;:12::i;:::-;48588:23;;:7;:5;:7::i;:::-;:23;;;48580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49400:1:::1;49380:22;;:8;:22;;;;49358:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;49479:28;49498:8;49479:18;:28::i;:::-;49277:238:::0;:::o;50199:37::-;;;;:::o;50243:27::-;;;;:::o;27360:273::-;27417:4;27473:7;27454:15;:13;:15::i;:::-;:26;;:66;;;;;27507:13;;27497:7;:23;27454:66;:152;;;;;27605:1;14534:8;27558:17;:26;27576:7;27558:26;;;;;;;;;;;;:43;:48;27454:152;27434:172;;27360:273;;;:::o;20182:1161::-;20276:7;20301:12;20316:7;20301:22;;20384:4;20365:15;:13;:15::i;:::-;:23;20361:915;;20418:13;;20411:4;:20;20407:869;;;20456:14;20473:17;:23;20491:4;20473:23;;;;;;;;;;;;20456:40;;20589:1;14534:8;20562:6;:23;:28;20558:699;;;21081:113;21098:1;21088:6;:11;21081:113;;;21141:17;:25;21159:6;;;;;;;21141:25;;;;;;;;;;;;21132:34;;21081:113;;;21227:6;21220:13;;;;;;20558:699;20433:843;20407:869;20361:915;21304:31;;;;;;;;;;;;;;20182:1161;;;;:::o;42014:105::-;42074:7;42101:10;42094:17;;42014:105;:::o;16318:92::-;16374:7;16318:92;:::o;32878:2667::-;32993:27;33023;33042:7;33023:18;:27::i;:::-;32993:57;;33108:4;33067:45;;33083:19;33067:45;;;33063:99;;33134:28;;;;;;;;;;;;;;33063:99;33175:23;33201:15;:24;33217:7;33201:24;;;;;;;;;;;;;;;;;;;;;33175:50;;33238:22;33287:4;33264:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33308:43;33325:4;33331:19;:17;:19::i;:::-;33308:16;:43::i;:::-;33264:87;:142;;;;33387:19;:17;:19::i;:::-;33368:38;;:15;:38;;;33264:142;33238:169;;33425:17;33420:66;;33451:35;;;;;;;;;;;;;;33420:66;33526:1;33501:21;33519:2;33501:17;:21::i;:::-;:26;33497:62;;;33536:23;;;;;;;;;;;;;;33497:62;33572:43;33594:4;33600:2;33604:7;33613:1;33572:21;:43::i;:::-;33723:1;33685:34;33703:15;33685:17;:34::i;:::-;:39;33681:103;;33748:15;:24;33764:7;33748:24;;;;;;;;;;;;33741:31;;;;;;;;;;;33681:103;34151:18;:24;34170:4;34151:24;;;;;;;;;;;;;;;;34149:26;;;;;;;;;;;;34220:18;:22;34239:2;34220:22;;;;;;;;;;;;;;;;34218:24;;;;;;;;;;;14812:8;14418:3;34601:15;:41;;34559:21;34577:2;34559:17;:21::i;:::-;:84;:128;34513:17;:26;34531:7;34513:26;;;;;;;;;;;:174;;;;34857:1;14812:8;34807:19;:46;:51;34803:626;;;34879:19;34911:1;34901:7;:11;34879:33;;35068:1;35034:17;:30;35052:11;35034:30;;;;;;;;;;;;:35;35030:384;;;35172:13;;35157:11;:28;35153:242;;35352:19;35319:17;:30;35337:11;35319:30;;;;;;;;;;;:52;;;;35153:242;35030:384;34860:569;34803:626;35476:7;35472:2;35457:27;;35466:4;35457:27;;;;;;;;;;;;35495:42;35516:4;35522:2;35526:7;35535:1;35495:20;:42::i;:::-;32982:2563;;;32878:2667;;;:::o;47065:98::-;47118:7;47145:10;47138:17;;47065:98;:::o;24192:180::-;24283:14;24349:5;24339:15;;24192:180;;;:::o;49675:191::-;49749:16;49768:6;;;;;;;;;;;49749:25;;49794:8;49785:6;;:17;;;;;;;;;;;;;;;;;;49849:8;49818:40;;49839:8;49818:40;;;;;;;;;;;;49738:128;49675:191;:::o;27717:104::-;27786:27;27796:2;27800:8;27786:27;;;;;;;;;;;;:9;:27::i;:::-;27717:104;;:::o;39368:831::-;39531:4;39590:2;39565:45;;;39629:19;:17;:19::i;:::-;39667:4;39690:7;39716:5;39565:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39548:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39967:1;39950:6;:13;:18;39946:235;;;39996:40;;;;;;;;;;;;;;39946:235;40139:6;40133:13;40124:6;40120:2;40116:15;40109:38;39548:644;39836:54;;;39809:81;;;:6;:81;;;;39785:105;;;39368:831;;;;;;:::o;44591:723::-;44647:13;44877:1;44868:5;:10;44864:53;;;44895:10;;;;;;;;;;;;;;;;;;;;;44864:53;44927:12;44942:5;44927:20;;44958:14;44983:78;44998:1;44990:4;:9;44983:78;;45016:8;;;;;:::i;:::-;;;;45047:2;45039:10;;;;;:::i;:::-;;;44983:78;;;45071:19;45103:6;45093:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45071:39;;45121:154;45137:1;45128:5;:10;45121:154;;45165:1;45155:11;;;;;:::i;:::-;;;45232:2;45224:5;:10;;;;:::i;:::-;45211:2;:24;;;;:::i;:::-;45198:39;;45181:6;45188;45181:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;45261:2;45252:11;;;;;:::i;:::-;;;45121:154;;;45299:6;45285:21;;;;;44591:723;;;;:::o;18785:202::-;18846:7;13764:13;13901:2;18887:18;:25;18906:5;18887:25;;;;;;;;;;;;;;;;:49;;18886:93;18866:113;;18785:202;;;:::o;40847:159::-;;;;;:::o;41665:158::-;;;;;:::o;28194:2471::-;28317:20;28340:13;;28317:36;;28393:1;28368:21;28386:2;28368:17;:21::i;:::-;:26;28364:58;;;28403:19;;;;;;;;;;;;;;28364:58;28449:1;28437:8;:13;28433:44;;;28459:18;;;;;;;;;;;;;;28433:44;28490:61;28520:1;28524:2;28528:12;28542:8;28490:21;:61::i;:::-;29128:1;13901:2;29099:1;:25;;29098:31;29069:8;:61;29026:18;:22;29045:2;29026:22;;;;;;;;;;;;;;;;:104;;;;;;;;;;;14677:3;29529:29;29556:1;29544:8;:13;29529:14;:29::i;:::-;:56;;14418:3;29466:15;:41;;29424:21;29442:2;29424:17;:21::i;:::-;:84;:162;29373:17;:31;29391:12;29373:31;;;;;;;;;;;:213;;;;29603:20;29626:12;29603:35;;29653:11;29682:8;29667:12;:23;29653:37;;29729:1;29711:2;:14;;;:19;29707:826;;29751:504;29807:12;29803:2;29782:38;;29799:1;29782:38;;;;;;;;;;;;29874:212;29943:1;29976:2;30009:14;;;;;;30054:5;29874:30;:212::i;:::-;29843:365;;30144:40;;;;;;;;;;;;;;29843:365;30250:3;30235:12;:18;29751:504;;30336:12;30319:13;;:29;30315:43;;30350:8;;;30315:43;29707:826;;;30399:119;30455:14;;;;;;30451:2;30430:40;;30447:1;30430:40;;;;;;;;;;;;30513:3;30498:12;:18;30399:119;;29707:826;30563:12;30547:13;:28;;;;28803:1784;;30597:60;30626:1;30630:2;30634:12;30648:8;30597:20;:60::i;:::-;28306:2359;28194:2471;;;:::o;24459:142::-;24517:14;24578:5;24568:15;;24459: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:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::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:147::-;13719:11;13756:3;13741:18;;13618:147;;;;:::o;13771:114::-;;:::o;13891:398::-;14050:3;14071:83;14152:1;14147:3;14071:83;:::i;:::-;14064:90;;14163:93;14252:3;14163:93;:::i;:::-;14281:1;14276:3;14272:11;14265:18;;13891:398;;;:::o;14295:379::-;14479:3;14501:147;14644:3;14501:147;:::i;:::-;14494:154;;14665:3;14658:10;;14295:379;;;:::o;14680:166::-;14820:18;14816:1;14808:6;14804:14;14797:42;14680:166;:::o;14852:366::-;14994:3;15015:67;15079:2;15074:3;15015:67;:::i;:::-;15008:74;;15091:93;15180:3;15091:93;:::i;:::-;15209:2;15204:3;15200:12;15193:19;;14852:366;;;:::o;15224:419::-;15390:4;15428:2;15417:9;15413:18;15405:26;;15477:9;15471:4;15467:20;15463:1;15452:9;15448:17;15441:47;15505:131;15631:4;15505:131;:::i;:::-;15497:139;;15224:419;;;:::o;15649:166::-;15789:18;15785:1;15777:6;15773:14;15766:42;15649:166;:::o;15821:366::-;15963:3;15984:67;16048:2;16043:3;15984:67;:::i;:::-;15977:74;;16060:93;16149:3;16060:93;:::i;:::-;16178:2;16173:3;16169:12;16162:19;;15821:366;;;:::o;16193:419::-;16359:4;16397:2;16386:9;16382:18;16374:26;;16446:9;16440:4;16436:20;16432:1;16421:9;16417:17;16410:47;16474:131;16600:4;16474:131;:::i;:::-;16466:139;;16193:419;;;:::o;16618:177::-;16758:29;16754:1;16746:6;16742:14;16735:53;16618:177;:::o;16801:366::-;16943:3;16964:67;17028:2;17023:3;16964:67;:::i;:::-;16957:74;;17040:93;17129:3;17040:93;:::i;:::-;17158:2;17153:3;17149:12;17142:19;;16801:366;;;:::o;17173:419::-;17339:4;17377:2;17366:9;17362:18;17354:26;;17426:9;17420:4;17416:20;17412:1;17401:9;17397:17;17390:47;17454:131;17580:4;17454:131;:::i;:::-;17446:139;;17173:419;;;:::o;17598:180::-;17646:77;17643:1;17636:88;17743:4;17740:1;17733:15;17767:4;17764:1;17757:15;17784:305;17824:3;17843:20;17861:1;17843:20;:::i;:::-;17838:25;;17877:20;17895:1;17877:20;:::i;:::-;17872:25;;18031:1;17963:66;17959:74;17956:1;17953:81;17950:107;;;18037:18;;:::i;:::-;17950:107;18081:1;18078;18074:9;18067:16;;17784:305;;;;:::o;18095:165::-;18235:17;18231:1;18223:6;18219:14;18212:41;18095:165;:::o;18266:366::-;18408:3;18429:67;18493:2;18488:3;18429:67;:::i;:::-;18422:74;;18505:93;18594:3;18505:93;:::i;:::-;18623:2;18618:3;18614:12;18607:19;;18266:366;;;:::o;18638:419::-;18804:4;18842:2;18831:9;18827:18;18819:26;;18891:9;18885:4;18881:20;18877:1;18866:9;18862:17;18855:47;18919:131;19045:4;18919:131;:::i;:::-;18911:139;;18638:419;;;:::o;19063:169::-;19203:21;19199:1;19191:6;19187:14;19180:45;19063:169;:::o;19238:366::-;19380:3;19401:67;19465:2;19460:3;19401:67;:::i;:::-;19394:74;;19477:93;19566:3;19477:93;:::i;:::-;19595:2;19590:3;19586:12;19579:19;;19238:366;;;:::o;19610:419::-;19776:4;19814:2;19803:9;19799:18;19791:26;;19863:9;19857:4;19853:20;19849:1;19838:9;19834:17;19827:47;19891:131;20017:4;19891:131;:::i;:::-;19883:139;;19610:419;;;:::o;20035:348::-;20075:7;20098:20;20116:1;20098:20;:::i;:::-;20093:25;;20132:20;20150:1;20132:20;:::i;:::-;20127:25;;20320:1;20252:66;20248:74;20245:1;20242:81;20237:1;20230:9;20223:17;20219:105;20216:131;;;20327:18;;:::i;:::-;20216:131;20375:1;20372;20368:9;20357:20;;20035:348;;;;:::o;20389:172::-;20529:24;20525:1;20517:6;20513:14;20506:48;20389:172;:::o;20567:366::-;20709:3;20730:67;20794:2;20789:3;20730:67;:::i;:::-;20723:74;;20806:93;20895:3;20806:93;:::i;:::-;20924:2;20919:3;20915:12;20908:19;;20567:366;;;:::o;20939:419::-;21105:4;21143:2;21132:9;21128:18;21120:26;;21192:9;21186:4;21182:20;21178:1;21167:9;21163:17;21156:47;21220:131;21346:4;21220:131;:::i;:::-;21212:139;;20939:419;;;:::o;21364:234::-;21504:34;21500:1;21492:6;21488:14;21481:58;21573:17;21568:2;21560:6;21556:15;21549:42;21364:234;:::o;21604:366::-;21746:3;21767:67;21831:2;21826:3;21767:67;:::i;:::-;21760:74;;21843:93;21932:3;21843:93;:::i;:::-;21961:2;21956:3;21952:12;21945:19;;21604:366;;;:::o;21976:419::-;22142:4;22180:2;22169:9;22165:18;22157:26;;22229:9;22223:4;22219:20;22215:1;22204:9;22200:17;22193:47;22257:131;22383:4;22257:131;:::i;:::-;22249:139;;21976:419;;;:::o;22401:148::-;22503:11;22540:3;22525:18;;22401:148;;;;:::o;22555:141::-;22604:4;22627:3;22619:11;;22650:3;22647:1;22640:14;22684:4;22681:1;22671:18;22663:26;;22555:141;;;:::o;22726:845::-;22829:3;22866:5;22860:12;22895:36;22921:9;22895:36;:::i;:::-;22947:89;23029:6;23024:3;22947:89;:::i;:::-;22940:96;;23067:1;23056:9;23052:17;23083:1;23078:137;;;;23229:1;23224:341;;;;23045:520;;23078:137;23162:4;23158:9;23147;23143:25;23138:3;23131:38;23198:6;23193:3;23189:16;23182:23;;23078:137;;23224:341;23291:38;23323:5;23291:38;:::i;:::-;23351:1;23365:154;23379:6;23376:1;23373:13;23365:154;;;23453:7;23447:14;23443:1;23438:3;23434:11;23427:35;23503:1;23494:7;23490:15;23479:26;;23401:4;23398:1;23394:12;23389:17;;23365:154;;;23548:6;23543:3;23539:16;23532:23;;23231:334;;23045:520;;22833:738;;22726:845;;;;:::o;23577:377::-;23683:3;23711:39;23744:5;23711:39;:::i;:::-;23766:89;23848:6;23843:3;23766:89;:::i;:::-;23759:96;;23864:52;23909:6;23904:3;23897:4;23890:5;23886:16;23864:52;:::i;:::-;23941:6;23936:3;23932:16;23925:23;;23687:267;23577:377;;;;:::o;23960:155::-;24100:7;24096:1;24088:6;24084:14;24077:31;23960:155;:::o;24121:400::-;24281:3;24302:84;24384:1;24379:3;24302:84;:::i;:::-;24295:91;;24395:93;24484:3;24395:93;:::i;:::-;24513:1;24508:3;24504:11;24497:18;;24121:400;;;:::o;24527:695::-;24805:3;24827:92;24915:3;24906:6;24827:92;:::i;:::-;24820:99;;24936:95;25027:3;25018:6;24936:95;:::i;:::-;24929:102;;25048:148;25192:3;25048:148;:::i;:::-;25041:155;;25213:3;25206:10;;24527:695;;;;;:::o;25228:225::-;25368:34;25364:1;25356:6;25352:14;25345:58;25437:8;25432:2;25424:6;25420:15;25413:33;25228:225;:::o;25459:366::-;25601:3;25622:67;25686:2;25681:3;25622:67;:::i;:::-;25615:74;;25698:93;25787:3;25698:93;:::i;:::-;25816:2;25811:3;25807:12;25800:19;;25459:366;;;:::o;25831:419::-;25997:4;26035:2;26024:9;26020:18;26012:26;;26084:9;26078:4;26074:20;26070:1;26059:9;26055:17;26048:47;26112:131;26238:4;26112:131;:::i;:::-;26104:139;;25831:419;;;:::o;26256:98::-;26307:6;26341:5;26335:12;26325:22;;26256:98;;;:::o;26360:168::-;26443:11;26477:6;26472:3;26465:19;26517:4;26512:3;26508:14;26493:29;;26360:168;;;;:::o;26534:360::-;26620:3;26648:38;26680:5;26648:38;:::i;:::-;26702:70;26765:6;26760:3;26702:70;:::i;:::-;26695:77;;26781:52;26826:6;26821:3;26814:4;26807:5;26803:16;26781:52;:::i;:::-;26858:29;26880:6;26858:29;:::i;:::-;26853:3;26849:39;26842:46;;26624:270;26534:360;;;;:::o;26900:640::-;27095:4;27133:3;27122:9;27118:19;27110:27;;27147:71;27215:1;27204:9;27200:17;27191:6;27147:71;:::i;:::-;27228:72;27296:2;27285:9;27281:18;27272:6;27228:72;:::i;:::-;27310;27378:2;27367:9;27363:18;27354:6;27310:72;:::i;:::-;27429:9;27423:4;27419:20;27414:2;27403:9;27399:18;27392:48;27457:76;27528:4;27519:6;27457:76;:::i;:::-;27449:84;;26900:640;;;;;;;:::o;27546:141::-;27602:5;27633:6;27627:13;27618:22;;27649:32;27675:5;27649:32;:::i;:::-;27546:141;;;;:::o;27693:349::-;27762:6;27811:2;27799:9;27790:7;27786:23;27782:32;27779:119;;;27817:79;;:::i;:::-;27779:119;27937:1;27962:63;28017:7;28008:6;27997:9;27993:22;27962:63;:::i;:::-;27952:73;;27908:127;27693:349;;;;:::o;28048:233::-;28087:3;28110:24;28128:5;28110:24;:::i;:::-;28101:33;;28156:66;28149:5;28146:77;28143:103;;;28226:18;;:::i;:::-;28143:103;28273:1;28266:5;28262:13;28255:20;;28048:233;;;:::o;28287:180::-;28335:77;28332:1;28325:88;28432:4;28429:1;28422:15;28456:4;28453:1;28446:15;28473:185;28513:1;28530:20;28548:1;28530:20;:::i;:::-;28525:25;;28564:20;28582:1;28564:20;:::i;:::-;28559:25;;28603:1;28593:35;;28608:18;;:::i;:::-;28593:35;28650:1;28647;28643:9;28638:14;;28473:185;;;;:::o;28664:191::-;28704:4;28724:20;28742:1;28724:20;:::i;:::-;28719:25;;28758:20;28776:1;28758:20;:::i;:::-;28753:25;;28797:1;28794;28791:8;28788:34;;;28802:18;;:::i;:::-;28788:34;28847:1;28844;28840:9;28832:17;;28664:191;;;;:::o;28861:176::-;28893:1;28910:20;28928:1;28910:20;:::i;:::-;28905:25;;28944:20;28962:1;28944:20;:::i;:::-;28939:25;;28983:1;28973:35;;28988:18;;:::i;:::-;28973:35;29029:1;29026;29022:9;29017:14;;28861:176;;;;:::o;29043:180::-;29091:77;29088:1;29081:88;29188:4;29185:1;29178:15;29212:4;29209:1;29202:15

Swarm Source

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