ETH Price: $2,883.13 (-9.98%)
Gas: 12 Gwei

Token

Its Nothing (NOTHING)
 

Overview

Max Total Supply

741 NOTHING

Holders

233

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kuay.eth
Balance
2 NOTHING
0x66651be0b31afd2fbae570353ad14ec58b5fda0a
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:
NOTHING

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-23
*/

// SPDX-License-Identifier: MIT

// File: IERC721A.sol

// ERC721A Contracts v4.0.0

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 NOTHING is ERC721A, Ownable {
    using Strings for uint256;

    // metadata
    string public baseURI = "";

    // constants
    uint256 public maxSupply = 8888;
    uint256 public freeMaxSupply = 8888;
    uint256 public price = 0.005 ether;
    uint256 public maxFreePerAddress = 2;

    // 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("Its Nothing", "NOTHING") {
        _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;
    }

    function setUnrevealUri(string memory _uri) external onlyOwner {
        notRevealedUri = _uri;
    }


    /**
     * @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 setFreeMax(uint256 freeMax) public onlyOwner {
        freeMaxSupply = freeMax;
    }

    function setFreeMaxPerAddress(uint256 freeMax) public onlyOwner {
        maxFreePerAddress = freeMax;
    }

    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 < maxFreePerAddress + 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":"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":"uint256","name":"freeMax","type":"uint256"}],"name":"setFreeMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMax","type":"uint256"}],"name":"setFreeMaxPerAddress","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":"string","name":"_uri","type":"string"}],"name":"setUnrevealUri","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"}]

608060405260405180602001604052806000815250600990805190602001906200002b929190620006c7565b506122b8600a556122b8600b556611c37937e08000600c556002600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200008b57600080fd5b506040518060400160405280600b81526020017f497473204e6f7468696e670000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4e4f5448494e4700000000000000000000000000000000000000000000000000815250816002908051906020019062000110929190620006c7565b50806003908051906020019062000129929190620006c7565b506200013a6200017b60201b60201c565b600081905550505062000162620001566200018060201b60201c565b6200018860201b60201c565b6200017533600a6200024e60201b60201c565b620009c8565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002708282604051806020016040528060008152506200027460201b60201c565b5050565b60008054905060006200028d856200053d60201b60201c565b1415620002c6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000302576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200031760008583866200054760201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000384600185146200054d60201b60201c565b901b60a042901b6200039c866200053d60201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14620004ad575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200045960008784806001019550876200055760201b60201c565b62000490576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620003e2578260005414620004a757600080fd5b62000519565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620004ae575b816000819055505050620005376000858386620006b960201b60201c565b50505050565b6000819050919050565b50505050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000585620006bf60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005a994939291906200087b565b6020604051808303816000875af1925050508015620005e857506040513d601f19601f82011682018060405250810190620005e5919062000931565b60015b62000666573d80600081146200061b576040519150601f19603f3d011682016040523d82523d6000602084013e62000620565b606091505b506000815114156200065e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620006d59062000992565b90600052602060002090601f016020900481019282620006f9576000855562000745565b82601f106200071457805160ff191683800117855562000745565b8280016001018555821562000745579182015b828111156200074457825182559160200191906001019062000727565b5b50905062000754919062000758565b5090565b5b808211156200077357600081600090555060010162000759565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007a48262000777565b9050919050565b620007b68162000797565b82525050565b6000819050919050565b620007d181620007bc565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000813578082015181840152602081019050620007f6565b8381111562000823576000848401525b50505050565b6000601f19601f8301169050919050565b60006200084782620007d7565b620008538185620007e2565b935062000865818560208601620007f3565b620008708162000829565b840191505092915050565b6000608082019050620008926000830187620007ab565b620008a16020830186620007ab565b620008b06040830185620007c6565b8181036060830152620008c481846200083a565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200090b81620008d4565b81146200091757600080fd5b50565b6000815190506200092b8162000900565b92915050565b6000602082840312156200094a5762000949620008cf565b5b60006200095a848285016200091a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009ab57607f821691505b60208210811415620009c257620009c162000963565b5b50919050565b61381580620009d86000396000f3fe60806040526004361061020f5760003560e01c80637e4831d311610118578063a475b5dd116100a0578063dc33e6811161006f578063dc33e68114610730578063e985e9c51461076d578063f2c4ce1e146107aa578063f2fde38b146107d3578063f4464cf1146107fc5761020f565b8063a475b5dd14610688578063b88d4fde1461069f578063c87b56dd146106c8578063d5abeb01146107055761020f565b80639a42c7fc116100e75780639a42c7fc146105c6578063a035b1fe146105ef578063a0712d681461061a578063a0bcfc7f14610636578063a22cb4651461065f5761020f565b80637e4831d31461051c5780638da5cb5b1461054757806391b7f5ed1461057257806395d89b411461059b5761020f565b80633e53afc31161019b5780635670fe931161016a5780635670fe93146104375780636352211e146104605780636c0360eb1461049d57806370a08231146104c8578063715018a6146105055761020f565b80633e53afc3146103a157806342842e0e146103b85780635097bdef146103e1578063518302271461040c5761020f565b8063095ea7b3116101e2578063095ea7b3146102e457806318160ddd1461030d5780631d87fcc71461033857806323b872dd146103615780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063081c8c44146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612895565b610827565b60405161024891906128dd565b60405180910390f35b34801561025d57600080fd5b506102666108b9565b6040516102739190612991565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906129e9565b61094b565b6040516102b09190612a57565b60405180910390f35b3480156102c557600080fd5b506102ce6109c7565b6040516102db9190612991565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612a9e565b610a55565b005b34801561031957600080fd5b50610322610bfc565b60405161032f9190612aed565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a91906129e9565b610c13565b005b34801561036d57600080fd5b5061038860048036038101906103839190612b08565b610c99565b005b34801561039657600080fd5b5061039f610ca9565b005b3480156103ad57600080fd5b506103b6610ddb565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612b08565b610e83565b005b3480156103ed57600080fd5b506103f6610ea3565b6040516104039190612aed565b60405180910390f35b34801561041857600080fd5b50610421610ea9565b60405161042e91906128dd565b60405180910390f35b34801561044357600080fd5b5061045e600480360381019061045991906129e9565b610ebc565b005b34801561046c57600080fd5b50610487600480360381019061048291906129e9565b610f42565b6040516104949190612a57565b60405180910390f35b3480156104a957600080fd5b506104b2610f54565b6040516104bf9190612991565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612b5b565b610fe2565b6040516104fc9190612aed565b60405180910390f35b34801561051157600080fd5b5061051a611077565b005b34801561052857600080fd5b506105316110ff565b60405161053e91906128dd565b60405180910390f35b34801561055357600080fd5b5061055c611112565b6040516105699190612a57565b60405180910390f35b34801561057e57600080fd5b50610599600480360381019061059491906129e9565b61113c565b005b3480156105a757600080fd5b506105b06111c2565b6040516105bd9190612991565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e89190612cbd565b611254565b005b3480156105fb57600080fd5b506106046112ea565b6040516106119190612aed565b60405180910390f35b610634600480360381019061062f91906129e9565b6112f0565b005b34801561064257600080fd5b5061065d60048036038101906106589190612cbd565b611563565b005b34801561066b57600080fd5b5061068660048036038101906106819190612d32565b6115f9565b005b34801561069457600080fd5b5061069d611771565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190612e13565b61180a565b005b3480156106d457600080fd5b506106ef60048036038101906106ea91906129e9565b61187d565b6040516106fc9190612991565b60405180910390f35b34801561071157600080fd5b5061071a61199e565b6040516107279190612aed565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612b5b565b6119a4565b6040516107649190612aed565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612e96565b6119b6565b6040516107a191906128dd565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190612cbd565b611a4a565b005b3480156107df57600080fd5b506107fa60048036038101906107f59190612b5b565b611ae0565b005b34801561080857600080fd5b50610811611bd8565b60405161081e9190612aed565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108c890612f05565b80601f01602080910402602001604051908101604052809291908181526020018280546108f490612f05565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b600061095682611bde565b61098c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f80546109d490612f05565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0090612f05565b8015610a4d5780601f10610a2257610100808354040283529160200191610a4d565b820191906000526020600020905b815481529060010190602001808311610a3057829003601f168201915b505050505081565b6000610a6082611c3d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae7611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614610b4a57610b1381610b0e611d0b565b6119b6565b610b49576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c06611d13565b6001546000540303905090565b610c1b611d18565b73ffffffffffffffffffffffffffffffffffffffff16610c39611112565b73ffffffffffffffffffffffffffffffffffffffff1614610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690612f83565b60405180910390fd5b80600d8190555050565b610ca4838383611d20565b505050565b610cb1611d18565b73ffffffffffffffffffffffffffffffffffffffff16610ccf611112565b73ffffffffffffffffffffffffffffffffffffffff1614610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90612f83565b60405180910390fd5b6000610d2f611112565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d5290612fd4565b60006040518083038185875af1925050503d8060008114610d8f576040519150601f19603f3d011682016040523d82523d6000602084013e610d94565b606091505b5050905080610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90613035565b60405180910390fd5b50565b610de3611d18565b73ffffffffffffffffffffffffffffffffffffffff16610e01611112565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90612f83565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610e9e8383836040518060200160405280600081525061180a565b505050565b600b5481565b600e60019054906101000a900460ff1681565b610ec4611d18565b73ffffffffffffffffffffffffffffffffffffffff16610ee2611112565b73ffffffffffffffffffffffffffffffffffffffff1614610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90612f83565b60405180910390fd5b80600b8190555050565b6000610f4d82611c3d565b9050919050565b60098054610f6190612f05565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8d90612f05565b8015610fda5780601f10610faf57610100808354040283529160200191610fda565b820191906000526020600020905b815481529060010190602001808311610fbd57829003601f168201915b505050505081565b600080610fee836120e8565b1415611026576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61107f611d18565b73ffffffffffffffffffffffffffffffffffffffff1661109d611112565b73ffffffffffffffffffffffffffffffffffffffff16146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90612f83565b60405180910390fd5b6110fd60006120f2565b565b600e60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611144611d18565b73ffffffffffffffffffffffffffffffffffffffff16611162611112565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90612f83565b60405180910390fd5b80600c8190555050565b6060600380546111d190612f05565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd90612f05565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b5050505050905090565b61125c611d18565b73ffffffffffffffffffffffffffffffffffffffff1661127a611112565b73ffffffffffffffffffffffffffffffffffffffff16146112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790612f83565b60405180910390fd5b80600f90805190602001906112e6929190612786565b5050565b600c5481565b60008111611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a906130a1565b60405180910390fd5b600e60009054906101000a900460ff1615611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a9061310d565b60405180910390fd5b600a548161138f610bfc565b611399919061315c565b11156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906131fe565b60405180910390fd5b6000600c5490506000600b54836113ef610bfc565b6113f9919061315c565b111580156114535750600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611450919061315c565b11155b90508015611506576000915082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ae919061315c565b925050819055506001600d546114c4919061315c565b8310611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc9061326a565b60405180910390fd5b5b348284611513919061328a565b1115611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b90613330565b60405180910390fd5b61155e33846121b8565b505050565b61156b611d18565b73ffffffffffffffffffffffffffffffffffffffff16611589611112565b73ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690612f83565b60405180910390fd5b80600990805190602001906115f5929190612786565b5050565b611601611d0b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611666576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611673611d0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611720611d0b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176591906128dd565b60405180910390a35050565b611779611d18565b73ffffffffffffffffffffffffffffffffffffffff16611797611112565b73ffffffffffffffffffffffffffffffffffffffff16146117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490612f83565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b611815848484611d20565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461187757611840848484846121d6565b611876576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061188882611bde565b6118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be906133c2565b60405180910390fd5b600e60019054906101000a900460ff1661196b57600f80546118e890612f05565b80601f016020809104026020016040519081016040528092919081815260200182805461191490612f05565b80156119615780601f1061193657610100808354040283529160200191611961565b820191906000526020600020905b81548152906001019060200180831161194457829003601f168201915b5050505050611997565b600961197683612327565b6040516020016119879291906134fe565b6040516020818303038152906040525b9050919050565b600a5481565b60006119af82612488565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a52611d18565b73ffffffffffffffffffffffffffffffffffffffff16611a70611112565b73ffffffffffffffffffffffffffffffffffffffff1614611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612f83565b60405180910390fd5b80600f9080519060200190611adc929190612786565b5050565b611ae8611d18565b73ffffffffffffffffffffffffffffffffffffffff16611b06611112565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390612f83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc39061359f565b60405180910390fd5b611bd5816120f2565b50565b600d5481565b600081611be9611d13565b11158015611bf8575060005482105b8015611c36575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611c4c611d13565b11611cd457600054811015611cd35760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cd1575b6000811415611cc7576004600083600190039350838152602001908152602001600020549050611c9c565b8092505050611d06565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600033905090565b6000611d2b82611c3d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d92576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611deb611d0b565b73ffffffffffffffffffffffffffffffffffffffff161480611e1a5750611e1986611e14611d0b565b6119b6565b5b80611e575750611e28611d0b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611e90576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e9b866120e8565b1415611ed3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ee086868660016124df565b6000611eeb836120e8565b14611f27576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611fee876120e8565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415612078576000600185019050600060046000838152602001908152602001600020541415612076576000548114612075578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120e086868660016124e5565b505050505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121d28282604051806020016040528060008152506124eb565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121fc611d0b565b8786866040518563ffffffff1660e01b815260040161221e9493929190613614565b6020604051808303816000875af192505050801561225a57506040513d601f19601f820116820180604052508101906122579190613675565b60015b6122d4573d806000811461228a576040519150601f19603f3d011682016040523d82523d6000602084013e61228f565b606091505b506000815114156122cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561236f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612483565b600082905060005b600082146123a157808061238a906136a2565b915050600a8261239a919061371a565b9150612377565b60008167ffffffffffffffff8111156123bd576123bc612b92565b5b6040519080825280601f01601f1916602001820160405280156123ef5781602001600182028036833780820191505090505b5090505b6000851461247c57600182612408919061374b565b9150600a85612417919061377f565b6030612423919061315c565b60f81b818381518110612439576124386137b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612475919061371a565b94506123f3565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b50505050565b60008054905060006124fc856120e8565b1415612534576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561256f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61257c60008583866124df565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125e16001851461277c565b901b60a042901b6125f1866120e8565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126f5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126a560008784806001019550876121d6565b6126db576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126365782600054146126f057600080fd5b612760565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126f6575b81600081905550505061277660008583866124e5565b50505050565b6000819050919050565b82805461279290612f05565b90600052602060002090601f0160209004810192826127b457600085556127fb565b82601f106127cd57805160ff19168380011785556127fb565b828001600101855582156127fb579182015b828111156127fa5782518255916020019190600101906127df565b5b509050612808919061280c565b5090565b5b8082111561282557600081600090555060010161280d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128728161283d565b811461287d57600080fd5b50565b60008135905061288f81612869565b92915050565b6000602082840312156128ab576128aa612833565b5b60006128b984828501612880565b91505092915050565b60008115159050919050565b6128d7816128c2565b82525050565b60006020820190506128f260008301846128ce565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612932578082015181840152602081019050612917565b83811115612941576000848401525b50505050565b6000601f19601f8301169050919050565b6000612963826128f8565b61296d8185612903565b935061297d818560208601612914565b61298681612947565b840191505092915050565b600060208201905081810360008301526129ab8184612958565b905092915050565b6000819050919050565b6129c6816129b3565b81146129d157600080fd5b50565b6000813590506129e3816129bd565b92915050565b6000602082840312156129ff576129fe612833565b5b6000612a0d848285016129d4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a4182612a16565b9050919050565b612a5181612a36565b82525050565b6000602082019050612a6c6000830184612a48565b92915050565b612a7b81612a36565b8114612a8657600080fd5b50565b600081359050612a9881612a72565b92915050565b60008060408385031215612ab557612ab4612833565b5b6000612ac385828601612a89565b9250506020612ad4858286016129d4565b9150509250929050565b612ae7816129b3565b82525050565b6000602082019050612b026000830184612ade565b92915050565b600080600060608486031215612b2157612b20612833565b5b6000612b2f86828701612a89565b9350506020612b4086828701612a89565b9250506040612b51868287016129d4565b9150509250925092565b600060208284031215612b7157612b70612833565b5b6000612b7f84828501612a89565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bca82612947565b810181811067ffffffffffffffff82111715612be957612be8612b92565b5b80604052505050565b6000612bfc612829565b9050612c088282612bc1565b919050565b600067ffffffffffffffff821115612c2857612c27612b92565b5b612c3182612947565b9050602081019050919050565b82818337600083830152505050565b6000612c60612c5b84612c0d565b612bf2565b905082815260208101848484011115612c7c57612c7b612b8d565b5b612c87848285612c3e565b509392505050565b600082601f830112612ca457612ca3612b88565b5b8135612cb4848260208601612c4d565b91505092915050565b600060208284031215612cd357612cd2612833565b5b600082013567ffffffffffffffff811115612cf157612cf0612838565b5b612cfd84828501612c8f565b91505092915050565b612d0f816128c2565b8114612d1a57600080fd5b50565b600081359050612d2c81612d06565b92915050565b60008060408385031215612d4957612d48612833565b5b6000612d5785828601612a89565b9250506020612d6885828601612d1d565b9150509250929050565b600067ffffffffffffffff821115612d8d57612d8c612b92565b5b612d9682612947565b9050602081019050919050565b6000612db6612db184612d72565b612bf2565b905082815260208101848484011115612dd257612dd1612b8d565b5b612ddd848285612c3e565b509392505050565b600082601f830112612dfa57612df9612b88565b5b8135612e0a848260208601612da3565b91505092915050565b60008060008060808587031215612e2d57612e2c612833565b5b6000612e3b87828801612a89565b9450506020612e4c87828801612a89565b9350506040612e5d878288016129d4565b925050606085013567ffffffffffffffff811115612e7e57612e7d612838565b5b612e8a87828801612de5565b91505092959194509250565b60008060408385031215612ead57612eac612833565b5b6000612ebb85828601612a89565b9250506020612ecc85828601612a89565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f1d57607f821691505b60208210811415612f3157612f30612ed6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f6d602083612903565b9150612f7882612f37565b602082019050919050565b60006020820190508181036000830152612f9c81612f60565b9050919050565b600081905092915050565b50565b6000612fbe600083612fa3565b9150612fc982612fae565b600082019050919050565b6000612fdf82612fb1565b9150819050919050565b7f5769746864726177206661696c65642100000000000000000000000000000000600082015250565b600061301f601083612903565b915061302a82612fe9565b602082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b7f436f756e742063616e2774206265203000000000000000000000000000000000600082015250565b600061308b601083612903565b915061309682613055565b602082019050919050565b600060208201905081810360008301526130ba8161307e565b9050919050565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b60006130f7601b83612903565b9150613102826130c1565b602082019050919050565b60006020820190508181036000830152613126816130ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613167826129b3565b9150613172836129b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131a7576131a661312d565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b60006131e8600f83612903565b91506131f3826131b2565b602082019050919050565b60006020820190508181036000830152613217816131db565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613254601383612903565b915061325f8261321e565b602082019050919050565b6000602082019050818103600083015261328381613247565b9050919050565b6000613295826129b3565b91506132a0836129b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132d9576132d861312d565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b600061331a601683612903565b9150613325826132e4565b602082019050919050565b600060208201905081810360008301526133498161330d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133ac602f83612903565b91506133b782613350565b604082019050919050565b600060208201905081810360008301526133db8161339f565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461340f81612f05565b61341981866133e2565b94506001821660008114613434576001811461344557613478565b60ff19831686528186019350613478565b61344e856133ed565b60005b8381101561347057815481890152600182019150602081019050613451565b838801955050505b50505092915050565b600061348c826128f8565b61349681856133e2565b93506134a6818560208601612914565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134e86005836133e2565b91506134f3826134b2565b600582019050919050565b600061350a8285613402565b91506135168284613481565b9150613521826134db565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613589602683612903565b91506135948261352d565b604082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135e6826135bf565b6135f081856135ca565b9350613600818560208601612914565b61360981612947565b840191505092915050565b60006080820190506136296000830187612a48565b6136366020830186612a48565b6136436040830185612ade565b818103606083015261365581846135db565b905095945050505050565b60008151905061366f81612869565b92915050565b60006020828403121561368b5761368a612833565b5b600061369984828501613660565b91505092915050565b60006136ad826129b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136e0576136df61312d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613725826129b3565b9150613730836129b3565b9250826137405761373f6136eb565b5b828204905092915050565b6000613756826129b3565b9150613761836129b3565b9250828210156137745761377361312d565b5b828203905092915050565b600061378a826129b3565b9150613795836129b3565b9250826137a5576137a46136eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212202a6040fd3919e6c05cef88d65af032bedda4d52955bddc6a95d4464fc432a63c64736f6c634300080b0033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637e4831d311610118578063a475b5dd116100a0578063dc33e6811161006f578063dc33e68114610730578063e985e9c51461076d578063f2c4ce1e146107aa578063f2fde38b146107d3578063f4464cf1146107fc5761020f565b8063a475b5dd14610688578063b88d4fde1461069f578063c87b56dd146106c8578063d5abeb01146107055761020f565b80639a42c7fc116100e75780639a42c7fc146105c6578063a035b1fe146105ef578063a0712d681461061a578063a0bcfc7f14610636578063a22cb4651461065f5761020f565b80637e4831d31461051c5780638da5cb5b1461054757806391b7f5ed1461057257806395d89b411461059b5761020f565b80633e53afc31161019b5780635670fe931161016a5780635670fe93146104375780636352211e146104605780636c0360eb1461049d57806370a08231146104c8578063715018a6146105055761020f565b80633e53afc3146103a157806342842e0e146103b85780635097bdef146103e1578063518302271461040c5761020f565b8063095ea7b3116101e2578063095ea7b3146102e457806318160ddd1461030d5780631d87fcc71461033857806323b872dd146103615780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063081c8c44146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612895565b610827565b60405161024891906128dd565b60405180910390f35b34801561025d57600080fd5b506102666108b9565b6040516102739190612991565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906129e9565b61094b565b6040516102b09190612a57565b60405180910390f35b3480156102c557600080fd5b506102ce6109c7565b6040516102db9190612991565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612a9e565b610a55565b005b34801561031957600080fd5b50610322610bfc565b60405161032f9190612aed565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a91906129e9565b610c13565b005b34801561036d57600080fd5b5061038860048036038101906103839190612b08565b610c99565b005b34801561039657600080fd5b5061039f610ca9565b005b3480156103ad57600080fd5b506103b6610ddb565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612b08565b610e83565b005b3480156103ed57600080fd5b506103f6610ea3565b6040516104039190612aed565b60405180910390f35b34801561041857600080fd5b50610421610ea9565b60405161042e91906128dd565b60405180910390f35b34801561044357600080fd5b5061045e600480360381019061045991906129e9565b610ebc565b005b34801561046c57600080fd5b50610487600480360381019061048291906129e9565b610f42565b6040516104949190612a57565b60405180910390f35b3480156104a957600080fd5b506104b2610f54565b6040516104bf9190612991565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612b5b565b610fe2565b6040516104fc9190612aed565b60405180910390f35b34801561051157600080fd5b5061051a611077565b005b34801561052857600080fd5b506105316110ff565b60405161053e91906128dd565b60405180910390f35b34801561055357600080fd5b5061055c611112565b6040516105699190612a57565b60405180910390f35b34801561057e57600080fd5b50610599600480360381019061059491906129e9565b61113c565b005b3480156105a757600080fd5b506105b06111c2565b6040516105bd9190612991565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e89190612cbd565b611254565b005b3480156105fb57600080fd5b506106046112ea565b6040516106119190612aed565b60405180910390f35b610634600480360381019061062f91906129e9565b6112f0565b005b34801561064257600080fd5b5061065d60048036038101906106589190612cbd565b611563565b005b34801561066b57600080fd5b5061068660048036038101906106819190612d32565b6115f9565b005b34801561069457600080fd5b5061069d611771565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190612e13565b61180a565b005b3480156106d457600080fd5b506106ef60048036038101906106ea91906129e9565b61187d565b6040516106fc9190612991565b60405180910390f35b34801561071157600080fd5b5061071a61199e565b6040516107279190612aed565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612b5b565b6119a4565b6040516107649190612aed565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612e96565b6119b6565b6040516107a191906128dd565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190612cbd565b611a4a565b005b3480156107df57600080fd5b506107fa60048036038101906107f59190612b5b565b611ae0565b005b34801561080857600080fd5b50610811611bd8565b60405161081e9190612aed565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108c890612f05565b80601f01602080910402602001604051908101604052809291908181526020018280546108f490612f05565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b600061095682611bde565b61098c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f80546109d490612f05565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0090612f05565b8015610a4d5780601f10610a2257610100808354040283529160200191610a4d565b820191906000526020600020905b815481529060010190602001808311610a3057829003601f168201915b505050505081565b6000610a6082611c3d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae7611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614610b4a57610b1381610b0e611d0b565b6119b6565b610b49576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c06611d13565b6001546000540303905090565b610c1b611d18565b73ffffffffffffffffffffffffffffffffffffffff16610c39611112565b73ffffffffffffffffffffffffffffffffffffffff1614610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690612f83565b60405180910390fd5b80600d8190555050565b610ca4838383611d20565b505050565b610cb1611d18565b73ffffffffffffffffffffffffffffffffffffffff16610ccf611112565b73ffffffffffffffffffffffffffffffffffffffff1614610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90612f83565b60405180910390fd5b6000610d2f611112565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d5290612fd4565b60006040518083038185875af1925050503d8060008114610d8f576040519150601f19603f3d011682016040523d82523d6000602084013e610d94565b606091505b5050905080610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90613035565b60405180910390fd5b50565b610de3611d18565b73ffffffffffffffffffffffffffffffffffffffff16610e01611112565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90612f83565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610e9e8383836040518060200160405280600081525061180a565b505050565b600b5481565b600e60019054906101000a900460ff1681565b610ec4611d18565b73ffffffffffffffffffffffffffffffffffffffff16610ee2611112565b73ffffffffffffffffffffffffffffffffffffffff1614610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90612f83565b60405180910390fd5b80600b8190555050565b6000610f4d82611c3d565b9050919050565b60098054610f6190612f05565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8d90612f05565b8015610fda5780601f10610faf57610100808354040283529160200191610fda565b820191906000526020600020905b815481529060010190602001808311610fbd57829003601f168201915b505050505081565b600080610fee836120e8565b1415611026576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61107f611d18565b73ffffffffffffffffffffffffffffffffffffffff1661109d611112565b73ffffffffffffffffffffffffffffffffffffffff16146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90612f83565b60405180910390fd5b6110fd60006120f2565b565b600e60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611144611d18565b73ffffffffffffffffffffffffffffffffffffffff16611162611112565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90612f83565b60405180910390fd5b80600c8190555050565b6060600380546111d190612f05565b80601f01602080910402602001604051908101604052809291908181526020018280546111fd90612f05565b801561124a5780601f1061121f5761010080835404028352916020019161124a565b820191906000526020600020905b81548152906001019060200180831161122d57829003601f168201915b5050505050905090565b61125c611d18565b73ffffffffffffffffffffffffffffffffffffffff1661127a611112565b73ffffffffffffffffffffffffffffffffffffffff16146112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790612f83565b60405180910390fd5b80600f90805190602001906112e6929190612786565b5050565b600c5481565b60008111611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a906130a1565b60405180910390fd5b600e60009054906101000a900460ff1615611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a9061310d565b60405180910390fd5b600a548161138f610bfc565b611399919061315c565b11156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906131fe565b60405180910390fd5b6000600c5490506000600b54836113ef610bfc565b6113f9919061315c565b111580156114535750600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611450919061315c565b11155b90508015611506576000915082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ae919061315c565b925050819055506001600d546114c4919061315c565b8310611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc9061326a565b60405180910390fd5b5b348284611513919061328a565b1115611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b90613330565b60405180910390fd5b61155e33846121b8565b505050565b61156b611d18565b73ffffffffffffffffffffffffffffffffffffffff16611589611112565b73ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690612f83565b60405180910390fd5b80600990805190602001906115f5929190612786565b5050565b611601611d0b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611666576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611673611d0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611720611d0b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176591906128dd565b60405180910390a35050565b611779611d18565b73ffffffffffffffffffffffffffffffffffffffff16611797611112565b73ffffffffffffffffffffffffffffffffffffffff16146117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490612f83565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b611815848484611d20565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461187757611840848484846121d6565b611876576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061188882611bde565b6118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be906133c2565b60405180910390fd5b600e60019054906101000a900460ff1661196b57600f80546118e890612f05565b80601f016020809104026020016040519081016040528092919081815260200182805461191490612f05565b80156119615780601f1061193657610100808354040283529160200191611961565b820191906000526020600020905b81548152906001019060200180831161194457829003601f168201915b5050505050611997565b600961197683612327565b6040516020016119879291906134fe565b6040516020818303038152906040525b9050919050565b600a5481565b60006119af82612488565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a52611d18565b73ffffffffffffffffffffffffffffffffffffffff16611a70611112565b73ffffffffffffffffffffffffffffffffffffffff1614611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612f83565b60405180910390fd5b80600f9080519060200190611adc929190612786565b5050565b611ae8611d18565b73ffffffffffffffffffffffffffffffffffffffff16611b06611112565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390612f83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc39061359f565b60405180910390fd5b611bd5816120f2565b50565b600d5481565b600081611be9611d13565b11158015611bf8575060005482105b8015611c36575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611c4c611d13565b11611cd457600054811015611cd35760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cd1575b6000811415611cc7576004600083600190039350838152602001908152602001600020549050611c9c565b8092505050611d06565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600033905090565b6000611d2b82611c3d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d92576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611deb611d0b565b73ffffffffffffffffffffffffffffffffffffffff161480611e1a5750611e1986611e14611d0b565b6119b6565b5b80611e575750611e28611d0b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611e90576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e9b866120e8565b1415611ed3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ee086868660016124df565b6000611eeb836120e8565b14611f27576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611fee876120e8565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415612078576000600185019050600060046000838152602001908152602001600020541415612076576000548114612075578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120e086868660016124e5565b505050505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121d28282604051806020016040528060008152506124eb565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121fc611d0b565b8786866040518563ffffffff1660e01b815260040161221e9493929190613614565b6020604051808303816000875af192505050801561225a57506040513d601f19601f820116820180604052508101906122579190613675565b60015b6122d4573d806000811461228a576040519150601f19603f3d011682016040523d82523d6000602084013e61228f565b606091505b506000815114156122cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561236f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612483565b600082905060005b600082146123a157808061238a906136a2565b915050600a8261239a919061371a565b9150612377565b60008167ffffffffffffffff8111156123bd576123bc612b92565b5b6040519080825280601f01601f1916602001820160405280156123ef5781602001600182028036833780820191505090505b5090505b6000851461247c57600182612408919061374b565b9150600a85612417919061377f565b6030612423919061315c565b60f81b818381518110612439576124386137b0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612475919061371a565b94506123f3565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b50505050565b60008054905060006124fc856120e8565b1415612534576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561256f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61257c60008583866124df565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125e16001851461277c565b901b60a042901b6125f1866120e8565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126f5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126a560008784806001019550876121d6565b6126db576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126365782600054146126f057600080fd5b612760565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126f6575b81600081905550505061277660008583866124e5565b50505050565b6000819050919050565b82805461279290612f05565b90600052602060002090601f0160209004810192826127b457600085556127fb565b82601f106127cd57805160ff19168380011785556127fb565b828001600101855582156127fb579182015b828111156127fa5782518255916020019190600101906127df565b5b509050612808919061280c565b5090565b5b8082111561282557600081600090555060010161280d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128728161283d565b811461287d57600080fd5b50565b60008135905061288f81612869565b92915050565b6000602082840312156128ab576128aa612833565b5b60006128b984828501612880565b91505092915050565b60008115159050919050565b6128d7816128c2565b82525050565b60006020820190506128f260008301846128ce565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612932578082015181840152602081019050612917565b83811115612941576000848401525b50505050565b6000601f19601f8301169050919050565b6000612963826128f8565b61296d8185612903565b935061297d818560208601612914565b61298681612947565b840191505092915050565b600060208201905081810360008301526129ab8184612958565b905092915050565b6000819050919050565b6129c6816129b3565b81146129d157600080fd5b50565b6000813590506129e3816129bd565b92915050565b6000602082840312156129ff576129fe612833565b5b6000612a0d848285016129d4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a4182612a16565b9050919050565b612a5181612a36565b82525050565b6000602082019050612a6c6000830184612a48565b92915050565b612a7b81612a36565b8114612a8657600080fd5b50565b600081359050612a9881612a72565b92915050565b60008060408385031215612ab557612ab4612833565b5b6000612ac385828601612a89565b9250506020612ad4858286016129d4565b9150509250929050565b612ae7816129b3565b82525050565b6000602082019050612b026000830184612ade565b92915050565b600080600060608486031215612b2157612b20612833565b5b6000612b2f86828701612a89565b9350506020612b4086828701612a89565b9250506040612b51868287016129d4565b9150509250925092565b600060208284031215612b7157612b70612833565b5b6000612b7f84828501612a89565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bca82612947565b810181811067ffffffffffffffff82111715612be957612be8612b92565b5b80604052505050565b6000612bfc612829565b9050612c088282612bc1565b919050565b600067ffffffffffffffff821115612c2857612c27612b92565b5b612c3182612947565b9050602081019050919050565b82818337600083830152505050565b6000612c60612c5b84612c0d565b612bf2565b905082815260208101848484011115612c7c57612c7b612b8d565b5b612c87848285612c3e565b509392505050565b600082601f830112612ca457612ca3612b88565b5b8135612cb4848260208601612c4d565b91505092915050565b600060208284031215612cd357612cd2612833565b5b600082013567ffffffffffffffff811115612cf157612cf0612838565b5b612cfd84828501612c8f565b91505092915050565b612d0f816128c2565b8114612d1a57600080fd5b50565b600081359050612d2c81612d06565b92915050565b60008060408385031215612d4957612d48612833565b5b6000612d5785828601612a89565b9250506020612d6885828601612d1d565b9150509250929050565b600067ffffffffffffffff821115612d8d57612d8c612b92565b5b612d9682612947565b9050602081019050919050565b6000612db6612db184612d72565b612bf2565b905082815260208101848484011115612dd257612dd1612b8d565b5b612ddd848285612c3e565b509392505050565b600082601f830112612dfa57612df9612b88565b5b8135612e0a848260208601612da3565b91505092915050565b60008060008060808587031215612e2d57612e2c612833565b5b6000612e3b87828801612a89565b9450506020612e4c87828801612a89565b9350506040612e5d878288016129d4565b925050606085013567ffffffffffffffff811115612e7e57612e7d612838565b5b612e8a87828801612de5565b91505092959194509250565b60008060408385031215612ead57612eac612833565b5b6000612ebb85828601612a89565b9250506020612ecc85828601612a89565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f1d57607f821691505b60208210811415612f3157612f30612ed6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f6d602083612903565b9150612f7882612f37565b602082019050919050565b60006020820190508181036000830152612f9c81612f60565b9050919050565b600081905092915050565b50565b6000612fbe600083612fa3565b9150612fc982612fae565b600082019050919050565b6000612fdf82612fb1565b9150819050919050565b7f5769746864726177206661696c65642100000000000000000000000000000000600082015250565b600061301f601083612903565b915061302a82612fe9565b602082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b7f436f756e742063616e2774206265203000000000000000000000000000000000600082015250565b600061308b601083612903565b915061309682613055565b602082019050919050565b600060208201905081810360008301526130ba8161307e565b9050919050565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b60006130f7601b83612903565b9150613102826130c1565b602082019050919050565b60006020820190508181036000830152613126816130ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613167826129b3565b9150613172836129b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131a7576131a661312d565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b60006131e8600f83612903565b91506131f3826131b2565b602082019050919050565b60006020820190508181036000830152613217816131db565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613254601383612903565b915061325f8261321e565b602082019050919050565b6000602082019050818103600083015261328381613247565b9050919050565b6000613295826129b3565b91506132a0836129b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132d9576132d861312d565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b600061331a601683612903565b9150613325826132e4565b602082019050919050565b600060208201905081810360008301526133498161330d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133ac602f83612903565b91506133b782613350565b604082019050919050565b600060208201905081810360008301526133db8161339f565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461340f81612f05565b61341981866133e2565b94506001821660008114613434576001811461344557613478565b60ff19831686528186019350613478565b61344e856133ed565b60005b8381101561347057815481890152600182019150602081019050613451565b838801955050505b50505092915050565b600061348c826128f8565b61349681856133e2565b93506134a6818560208601612914565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006134e86005836133e2565b91506134f3826134b2565b600582019050919050565b600061350a8285613402565b91506135168284613481565b9150613521826134db565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613589602683612903565b91506135948261352d565b604082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135e6826135bf565b6135f081856135ca565b9350613600818560208601612914565b61360981612947565b840191505092915050565b60006080820190506136296000830187612a48565b6136366020830186612a48565b6136436040830185612ade565b818103606083015261365581846135db565b905095945050505050565b60008151905061366f81612869565b92915050565b60006020828403121561368b5761368a612833565b5b600061369984828501613660565b91505092915050565b60006136ad826129b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136e0576136df61312d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613725826129b3565b9150613730836129b3565b9250826137405761373f6136eb565b5b828204905092915050565b6000613756826129b3565b9150613761836129b3565b9250828210156137745761377361312d565b5b828203905092915050565b600061378a826129b3565b9150613795836129b3565b9250826137a5576137a46136eb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212202a6040fd3919e6c05cef88d65af032bedda4d52955bddc6a95d4464fc432a63c64736f6c634300080b0033

Deployed Bytecode Sourcemap

45378:3491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13190:665;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18456:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20653:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45786:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20113:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12244:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47226:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21662:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47478:167;;;;;;;;;;;;;:::i;:::-;;46657:92;;;;;;;;;;;;;:::i;:::-;;21903:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45564:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45751:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47122:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18245:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45473:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13919:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44469:103;;;;;;;;;;;;;:::i;:::-;;45714:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43818:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46945:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18625:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46483:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45606:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48151:715;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46383:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20970:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47045:69;;;;;;;;;;;;;:::i;:::-;;22159:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47653:425;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45526:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46826:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21381:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47344:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44727:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45647:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13190:665;13320:4;13640:10;13625:25;;:11;:25;;;;:102;;;;13717:10;13702:25;;:11;:25;;;;13625:102;:179;;;;13794:10;13779:25;;:11;:25;;;;13625:179;13605:199;;13190:665;;;:::o;18456:100::-;18510:13;18543:5;18536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18456:100;:::o;20653:245::-;20757:7;20787:16;20795:7;20787;:16::i;:::-;20782:64;;20812:34;;;;;;;;;;;;;;20782:64;20866:15;:24;20882:7;20866:24;;;;;;;;;;;;;;;;;;;;;20859:31;;20653:245;;;:::o;45786:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20113:474::-;20186:13;20218:27;20237:7;20218:18;:27::i;:::-;20186:61;;20268:5;20262:11;;:2;:11;;;20258:48;;;20282:24;;;;;;;;;;;;;;20258:48;20346:5;20323:28;;:19;:17;:19::i;:::-;:28;;;20319:175;;20371:44;20388:5;20395:19;:17;:19::i;:::-;20371:16;:44::i;:::-;20366:128;;20443:35;;;;;;;;;;;;;;20366:128;20319:175;20533:2;20506:15;:24;20522:7;20506:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20571:7;20567:2;20551:28;;20560:5;20551:28;;;;;;;;;;;;20175:412;20113:474;;:::o;12244:315::-;12297:7;12525:15;:13;:15::i;:::-;12510:12;;12494:13;;:28;:46;12487:53;;12244:315;:::o;47226:110::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47321:7:::1;47301:17;:27;;;;47226:110:::0;:::o;21662:170::-;21796:28;21806:4;21812:2;21816:7;21796:9;:28::i;:::-;21662:170;;;:::o;47478:167::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47527:7:::1;47548;:5;:7::i;:::-;47540:21;;47569;47540:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47526:69;;;47614:2;47606:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;47515:130;47478:167::o:0;46657:92::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46731:10:::1;;;;;;;;;;;46730:11;46717:10;;:24;;;;;;;;;;;;;;;;;;46657:92::o:0;21903:185::-;22041:39;22058:4;22064:2;22068:7;22041:39;;;;;;;;;;;;:16;:39::i;:::-;21903:185;;;:::o;45564:35::-;;;;:::o;45751:28::-;;;;;;;;;;;;;:::o;47122:96::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47203:7:::1;47187:13;:23;;;;47122:96:::0;:::o;18245:144::-;18309:7;18352:27;18371:7;18352:18;:27::i;:::-;18329:52;;18245:144;;;:::o;45473:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13919:234::-;13983:7;14035:1;14007:24;14025:5;14007:17;:24::i;:::-;:29;14003:70;;;14045:28;;;;;;;;;;;;;;14003:70;9214:13;14091:18;:25;14110:5;14091:25;;;;;;;;;;;;;;;;:54;14084:61;;13919:234;;;:::o;44469:103::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44534:30:::1;44561:1;44534:18;:30::i;:::-;44469:103::o:0;45714:30::-;;;;;;;;;;;;;:::o;43818:87::-;43864:7;43891:6;;;;;;;;;;;43884:13;;43818:87;:::o;46945:92::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47020:9:::1;47012:5;:17;;;;46945:92:::0;:::o;18625:104::-;18681:13;18714:7;18707:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18625:104;:::o;46483:103::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46574:4:::1;46557:14;:21;;;;;;;;;;;;:::i;:::-;;46483:103:::0;:::o;45606:34::-;;;;:::o;48151:715::-;48224:1;48216:5;:9;48208:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;48266:10;;;;;;;;;;;48265:11;48257:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48352:9;;48343:5;48327:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;48319:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48394:12;48409:5;;48394:20;;48427:9;48466:13;;48457:5;48441:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:38;;48440:111;;;;;48533:17;;48524:5;48498:11;:23;48510:10;48498:23;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:52;;48440:111;48427:125;;48581:4;48577:168;;;48609:1;48602:8;;48652:5;48625:11;:23;48637:10;48625:23;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;48708:1;48688:17;;:21;;;;:::i;:::-;48680:5;:29;48672:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48577:168;48781:9;48773:4;48765:5;:12;;;;:::i;:::-;:25;;48757:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48830:28;48840:10;48852:5;48830:9;:28::i;:::-;48197:669;;48151:715;:::o;46383:92::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46463:4:::1;46453:7;:14;;;;;;;;;;;;:::i;:::-;;46383:92:::0;:::o;20970:340::-;21113:19;:17;:19::i;:::-;21101:31;;:8;:31;;;21097:61;;;21141:17;;;;;;;;;;;;;;21097:61;21223:8;21171:18;:39;21190:19;:17;:19::i;:::-;21171:39;;;;;;;;;;;;;;;:49;21211:8;21171:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;21283:8;21247:55;;21262:19;:17;:19::i;:::-;21247:55;;;21293:8;21247:55;;;;;;:::i;:::-;;;;;;;;20970:340;;:::o;47045:69::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47102:4:::1;47091:8;;:15;;;;;;;;;;;;;;;;;;47045:69::o:0;22159:396::-;22326:28;22336:4;22342:2;22346:7;22326:9;:28::i;:::-;22387:1;22369:2;:14;;;:19;22365:183;;22408:56;22439:4;22445:2;22449:7;22458:5;22408:30;:56::i;:::-;22403:145;;22492:40;;;;;;;;;;;;;;22403:145;22365:183;22159:396;;;;:::o;47653:425::-;47771:13;47824:16;47832:7;47824;:16::i;:::-;47802:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;47946:8;;;;;;;;;;;:124;;48056:14;47946:124;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47998:7;48007:18;:7;:16;:18::i;:::-;47981:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47946:124;47926:144;;47653:425;;;:::o;45526:31::-;;;;:::o;46826:111::-;46883:7;46910:19;46924:4;46910:13;:19::i;:::-;46903:26;;46826:111;;;:::o;21381:214::-;21523:4;21552:18;:25;21571:5;21552:25;;;;;;;;;;;;;;;:35;21578:8;21552:35;;;;;;;;;;;;;;;;;;;;;;;;;21545:42;;21381:214;;;;:::o;47344:126::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47447:15:::1;47430:14;:32;;;;;;;;;;;;:::i;:::-;;47344:126:::0;:::o;44727:238::-;44049:12;:10;:12::i;:::-;44038:23;;:7;:5;:7::i;:::-;:23;;;44030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44850:1:::1;44830:22;;:8;:22;;;;44808:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;44929:28;44948:8;44929:18;:28::i;:::-;44727:238:::0;:::o;45647:36::-;;;;:::o;22810:273::-;22867:4;22923:7;22904:15;:13;:15::i;:::-;:26;;:66;;;;;22957:13;;22947:7;:23;22904:66;:152;;;;;23055:1;9984:8;23008:17;:26;23026:7;23008:26;;;;;;;;;;;;:43;:48;22904:152;22884:172;;22810:273;;;:::o;15632:1161::-;15726:7;15751:12;15766:7;15751:22;;15834:4;15815:15;:13;:15::i;:::-;:23;15811:915;;15868:13;;15861:4;:20;15857:869;;;15906:14;15923:17;:23;15941:4;15923:23;;;;;;;;;;;;15906:40;;16039:1;9984:8;16012:6;:23;:28;16008:699;;;16531:113;16548:1;16538:6;:11;16531:113;;;16591:17;:25;16609:6;;;;;;;16591:25;;;;;;;;;;;;16582:34;;16531:113;;;16677:6;16670:13;;;;;;16008:699;15883:843;15857:869;15811:915;16754:31;;;;;;;;;;;;;;15632:1161;;;;:::o;37464:105::-;37524:7;37551:10;37544:17;;37464:105;:::o;11768:92::-;11824:7;11768:92;:::o;42515:98::-;42568:7;42595:10;42588:17;;42515:98;:::o;28328:2667::-;28443:27;28473;28492:7;28473:18;:27::i;:::-;28443:57;;28558:4;28517:45;;28533:19;28517:45;;;28513:99;;28584:28;;;;;;;;;;;;;;28513:99;28625:23;28651:15;:24;28667:7;28651:24;;;;;;;;;;;;;;;;;;;;;28625:50;;28688:22;28737:4;28714:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;28758:43;28775:4;28781:19;:17;:19::i;:::-;28758:16;:43::i;:::-;28714:87;:142;;;;28837:19;:17;:19::i;:::-;28818:38;;:15;:38;;;28714:142;28688:169;;28875:17;28870:66;;28901:35;;;;;;;;;;;;;;28870:66;28976:1;28951:21;28969:2;28951:17;:21::i;:::-;:26;28947:62;;;28986:23;;;;;;;;;;;;;;28947:62;29022:43;29044:4;29050:2;29054:7;29063:1;29022:21;:43::i;:::-;29173:1;29135:34;29153:15;29135:17;:34::i;:::-;:39;29131:103;;29198:15;:24;29214:7;29198:24;;;;;;;;;;;;29191:31;;;;;;;;;;;29131:103;29601:18;:24;29620:4;29601:24;;;;;;;;;;;;;;;;29599:26;;;;;;;;;;;;29670:18;:22;29689:2;29670:22;;;;;;;;;;;;;;;;29668:24;;;;;;;;;;;10262:8;9868:3;30051:15;:41;;30009:21;30027:2;30009:17;:21::i;:::-;:84;:128;29963:17;:26;29981:7;29963:26;;;;;;;;;;;:174;;;;30307:1;10262:8;30257:19;:46;:51;30253:626;;;30329:19;30361:1;30351:7;:11;30329:33;;30518:1;30484:17;:30;30502:11;30484:30;;;;;;;;;;;;:35;30480:384;;;30622:13;;30607:11;:28;30603:242;;30802:19;30769:17;:30;30787:11;30769:30;;;;;;;;;;;:52;;;;30603:242;30480:384;30310:569;30253:626;30926:7;30922:2;30907:27;;30916:4;30907:27;;;;;;;;;;;;30945:42;30966:4;30972:2;30976:7;30985:1;30945:20;:42::i;:::-;28432:2563;;;28328:2667;;;:::o;19642:180::-;19733:14;19799:5;19789:15;;19642:180;;;:::o;45125:191::-;45199:16;45218:6;;;;;;;;;;;45199:25;;45244:8;45235:6;;:17;;;;;;;;;;;;;;;;;;45299:8;45268:40;;45289:8;45268:40;;;;;;;;;;;;45188:128;45125:191;:::o;23167:104::-;23236:27;23246:2;23250:8;23236:27;;;;;;;;;;;;:9;:27::i;:::-;23167:104;;:::o;34818:831::-;34981:4;35040:2;35015:45;;;35079:19;:17;:19::i;:::-;35117:4;35140:7;35166:5;35015:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34998:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35417:1;35400:6;:13;:18;35396:235;;;35446:40;;;;;;;;;;;;;;35396:235;35589:6;35583:13;35574:6;35570:2;35566:15;35559:38;34998:644;35286:54;;;35259:81;;;:6;:81;;;;35235:105;;;34818:831;;;;;;:::o;40041:723::-;40097:13;40327:1;40318:5;:10;40314:53;;;40345:10;;;;;;;;;;;;;;;;;;;;;40314:53;40377:12;40392:5;40377:20;;40408:14;40433:78;40448:1;40440:4;:9;40433:78;;40466:8;;;;;:::i;:::-;;;;40497:2;40489:10;;;;;:::i;:::-;;;40433:78;;;40521:19;40553:6;40543:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40521:39;;40571:154;40587:1;40578:5;:10;40571:154;;40615:1;40605:11;;;;;:::i;:::-;;;40682:2;40674:5;:10;;;;:::i;:::-;40661:2;:24;;;;:::i;:::-;40648:39;;40631:6;40638;40631:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;40711:2;40702:11;;;;;:::i;:::-;;;40571:154;;;40749:6;40735:21;;;;;40041:723;;;;:::o;14235:202::-;14296:7;9214:13;9351:2;14337:18;:25;14356:5;14337:25;;;;;;;;;;;;;;;;:49;;14336:93;14316:113;;14235:202;;;:::o;36297:159::-;;;;;:::o;37115:158::-;;;;;:::o;23644:2471::-;23767:20;23790:13;;23767:36;;23843:1;23818:21;23836:2;23818:17;:21::i;:::-;:26;23814:58;;;23853:19;;;;;;;;;;;;;;23814:58;23899:1;23887:8;:13;23883:44;;;23909:18;;;;;;;;;;;;;;23883:44;23940:61;23970:1;23974:2;23978:12;23992:8;23940:21;:61::i;:::-;24578:1;9351:2;24549:1;:25;;24548:31;24519:8;:61;24476:18;:22;24495:2;24476:22;;;;;;;;;;;;;;;;:104;;;;;;;;;;;10127:3;24979:29;25006:1;24994:8;:13;24979:14;:29::i;:::-;:56;;9868:3;24916:15;:41;;24874:21;24892:2;24874:17;:21::i;:::-;:84;:162;24823:17;:31;24841:12;24823:31;;;;;;;;;;;:213;;;;25053:20;25076:12;25053:35;;25103:11;25132:8;25117:12;:23;25103:37;;25179:1;25161:2;:14;;;:19;25157:826;;25201:504;25257:12;25253:2;25232:38;;25249:1;25232:38;;;;;;;;;;;;25324:212;25393:1;25426:2;25459:14;;;;;;25504:5;25324:30;:212::i;:::-;25293:365;;25594:40;;;;;;;;;;;;;;25293:365;25700:3;25685:12;:18;25201:504;;25786:12;25769:13;;:29;25765:43;;25800:8;;;25765:43;25157:826;;;25849:119;25905:14;;;;;;25901:2;25880:40;;25897:1;25880:40;;;;;;;;;;;;25963:3;25948:12;:18;25849:119;;25157:826;26013:12;25997:13;:28;;;;24253:1784;;26047:60;26076:1;26080:2;26084:12;26098:8;26047:20;:60::i;:::-;23756:2359;23644:2471;;;:::o;19909:142::-;19967:14;20028:5;20018:15;;19909: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://2a6040fd3919e6c05cef88d65af032bedda4d52955bddc6a95d4464fc432a63c
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.