ETH Price: $2,393.81 (-0.20%)

Token

TOTO That Poop (TTP)
 

Overview

Max Total Supply

4,444 TTP

Holders

367

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 TTP
0x0c70c309536dE9Aa4957cc78483fAeD8B51534C3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

TOTO That Poop are on the Ethereum blockchain. Mint FREE!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TTP

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-11
*/

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

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

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

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

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

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

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

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

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

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

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: development/TTP.sol


pragma solidity ^0.8.7;



contract TTP is ERC721A, Ownable{
    uint256 public MAX_SUPPLY = 4444;
    uint256 public MINT_PRICE = 0 ether;
    uint256 internal MINT_LIMIT = 10;
    string public baseTokenURI;
    constructor(string memory _baseTokenUri) ERC721A("TOTO That Poop", "TTP"){
        baseTokenURI =_baseTokenUri;
    }

    function mint(address to ,uint256 amount) external payable {
        require(amount <= MINT_LIMIT,"Mint amount too high");
        require(amount + totalSupply() <= MAX_SUPPLY, "Minted completed");
        require(msg.value >= amount * MINT_PRICE,"Not paying enough fees"); 
        _mint(to,amount);
    }

    function ownerMint(address to ,uint256 amount)external onlyOwner{
        require(amount + totalSupply() <= MAX_SUPPLY, "Minted completed");
        _mint(to,amount);
    }

    function setMaxSupply(uint256 _MAX_SUPPLY)external onlyOwner{
        MAX_SUPPLY=_MAX_SUPPLY;
    }

    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function withdrawMoney() external onlyOwner{
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

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

    function tokenURI(uint256 tokenId) public view override returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), ".json")) : '';
	}

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261115c6009556000600a55600a600b553480156200002157600080fd5b50604051620030fb380380620030fb833981810160405281019062000047919062000342565b6040518060400160405280600e81526020017f544f544f205468617420506f6f700000000000000000000000000000000000008152506040518060400160405280600381526020017f54545000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000cb92919062000214565b508060039080519060200190620000e492919062000214565b50620000f56200013d60201b60201c565b60008190555050506200011d620001116200014660201b60201c565b6200014e60201b60201c565b80600c90805190602001906200013592919062000214565b505062000517565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002229062000428565b90600052602060002090601f01602090048101928262000246576000855562000292565b82601f106200026157805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029157825182559160200191906001019062000274565b5b509050620002a19190620002a5565b5090565b5b80821115620002c0576000816000905550600101620002a6565b5090565b6000620002db620002d584620003bc565b62000393565b905082815260208101848484011115620002fa57620002f9620004f7565b5b62000307848285620003f2565b509392505050565b600082601f830112620003275762000326620004f2565b5b815162000339848260208601620002c4565b91505092915050565b6000602082840312156200035b576200035a62000501565b5b600082015167ffffffffffffffff8111156200037c576200037b620004fc565b5b6200038a848285016200030f565b91505092915050565b60006200039f620003b2565b9050620003ad82826200045e565b919050565b6000604051905090565b600067ffffffffffffffff821115620003da57620003d9620004c3565b5b620003e58262000506565b9050602081019050919050565b60005b8381101562000412578082015181840152602081019050620003f5565b8381111562000422576000848401525b50505050565b600060028204905060018216806200044157607f821691505b6020821081141562000458576200045762000494565b5b50919050565b620004698262000506565b810181811067ffffffffffffffff821117156200048b576200048a620004c3565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612bd480620005276000396000f3fe6080604052600436106101665760003560e01c80636f8b44b0116100d1578063ac4460021161008a578063c87b56dd11610064578063c87b56dd146104f3578063d547cfb714610530578063e985e9c51461055b578063f2fde38b1461059857610166565b8063ac44600214610488578063b88d4fde1461049f578063c002d23d146104c857610166565b80636f8b44b01461038c57806370a08231146103b5578063715018a6146103f25780638da5cb5b1461040957806395d89b4114610434578063a22cb4651461045f57610166565b806330176e131161012357806330176e131461028d57806332cb6b0c146102b657806340c10f19146102e157806342842e0e146102fd578063484b973c146103265780636352211e1461034f57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906121c0565b6105c1565b60405161019f919061254a565b60405180910390f35b3480156101b457600080fd5b506101bd610653565b6040516101ca9190612565565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612267565b6106e5565b60405161020791906124e3565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612180565b610761565b005b34801561024557600080fd5b5061024e610908565b60405161025b9190612667565b60405180910390f35b34801561027057600080fd5b5061028b6004803603810190610286919061206a565b61091f565b005b34801561029957600080fd5b506102b460048036038101906102af919061221a565b61092f565b005b3480156102c257600080fd5b506102cb6109c1565b6040516102d89190612667565b60405180910390f35b6102fb60048036038101906102f69190612180565b6109c7565b005b34801561030957600080fd5b50610324600480360381019061031f919061206a565b610ac1565b005b34801561033257600080fd5b5061034d60048036038101906103489190612180565b610ae1565b005b34801561035b57600080fd5b5061037660048036038101906103719190612267565b610bc2565b60405161038391906124e3565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612267565b610bd4565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190611ffd565b610c5a565b6040516103e99190612667565b60405180910390f35b3480156103fe57600080fd5b50610407610d13565b005b34801561041557600080fd5b5061041e610d9b565b60405161042b91906124e3565b60405180910390f35b34801561044057600080fd5b50610449610dc5565b6040516104569190612565565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612140565b610e57565b005b34801561049457600080fd5b5061049d610fcf565b005b3480156104ab57600080fd5b506104c660048036038101906104c191906120bd565b6110fa565b005b3480156104d457600080fd5b506104dd61116d565b6040516104ea9190612667565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190612267565b611173565b6040516105279190612565565b60405180910390f35b34801561053c57600080fd5b5061054561121b565b6040516105529190612565565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d919061202a565b6112a9565b60405161058f919061254a565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190611ffd565b61133d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106629061288c565b80601f016020809104026020016040519081016040528092919081815260200182805461068e9061288c565b80156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b5050505050905090565b60006106f082611435565b610726576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076c82611494565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f3611562565b73ffffffffffffffffffffffffffffffffffffffff16146108565761081f8161081a611562565b6112a9565b610855576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061091261156a565b6001546000540303905090565b61092a838383611573565b505050565b61093761191d565b73ffffffffffffffffffffffffffffffffffffffff16610955610d9b565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906125c7565b60405180910390fd5b8181600c91906109bc929190611e2b565b505050565b60095481565b600b54811115610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a03906125a7565b60405180910390fd5b600954610a17610908565b82610a229190612726565b1115610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90612607565b60405180910390fd5b600a5481610a71919061277c565b341015610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90612647565b60405180910390fd5b610abd8282611925565b5050565b610adc838383604051806020016040528060008152506110fa565b505050565b610ae961191d565b73ffffffffffffffffffffffffffffffffffffffff16610b07610d9b565b73ffffffffffffffffffffffffffffffffffffffff1614610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b54906125c7565b60405180910390fd5b600954610b68610908565b82610b739190612726565b1115610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90612607565b60405180910390fd5b610bbe8282611925565b5050565b6000610bcd82611494565b9050919050565b610bdc61191d565b73ffffffffffffffffffffffffffffffffffffffff16610bfa610d9b565b73ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c47906125c7565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d1b61191d565b73ffffffffffffffffffffffffffffffffffffffff16610d39610d9b565b73ffffffffffffffffffffffffffffffffffffffff1614610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d86906125c7565b60405180910390fd5b610d996000611af9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610dd49061288c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e009061288c565b8015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b820191906000526020600020905b815481529060010190602001808311610e3057829003601f168201915b5050505050905090565b610e5f611562565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610ed1611562565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f7e611562565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fc3919061254a565b60405180910390a35050565b610fd761191d565b73ffffffffffffffffffffffffffffffffffffffff16610ff5610d9b565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906125c7565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611071906124ce565b60006040518083038185875af1925050503d80600081146110ae576040519150601f19603f3d011682016040523d82523d6000602084013e6110b3565b606091505b50509050806110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90612627565b60405180910390fd5b50565b611105848484611573565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111675761113084848484611bbf565b611166576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b606061117e82611435565b6111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b4906125e7565b60405180910390fd5b60006111c7611d1f565b90506000815114156111e85760405180602001604052806000815250611213565b806111f284611db1565b60405160200161120392919061249f565b6040516020818303038152906040525b915050919050565b600c80546112289061288c565b80601f01602080910402602001604051908101604052809291908181526020018280546112549061288c565b80156112a15780601f10611276576101008083540402835291602001916112a1565b820191906000526020600020905b81548152906001019060200180831161128457829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61134561191d565b73ffffffffffffffffffffffffffffffffffffffff16611363610d9b565b73ffffffffffffffffffffffffffffffffffffffff16146113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b0906125c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090612587565b60405180910390fd5b61143281611af9565b50565b60008161144061156a565b1115801561144f575060005482105b801561148d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806114a361156a565b1161152b5760005481101561152a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611528575b600081141561151e5760046000836001900393508381526020019081526020016000205490506114f3565b809250505061155d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061157e82611494565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115e5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611606611562565b73ffffffffffffffffffffffffffffffffffffffff16148061163557506116348561162f611562565b6112a9565b5b8061167a5750611643611562565b73ffffffffffffffffffffffffffffffffffffffff16611662846106e5565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561171a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117278585856001611e0b565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61182486611e11565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156118ae5760006001840190506000600460008381526020019081526020016000205414156118ac5760005481146118ab578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119168585856001611e1b565b5050505050565b600033905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611992576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156119cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119da6000848385611e0b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611a3f60018414611e21565b901b60a042901b611a4f85611e11565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611a7557816000819055505050611af46000848385611e1b565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611be5611562565b8786866040518563ffffffff1660e01b8152600401611c0794939291906124fe565b602060405180830381600087803b158015611c2157600080fd5b505af1925050508015611c5257506040513d601f19601f82011682018060405250810190611c4f91906121ed565b60015b611ccc573d8060008114611c82576040519150601f19603f3d011682016040523d82523d6000602084013e611c87565b606091505b50600081511415611cc4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611d2e9061288c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5a9061288c565b8015611da75780601f10611d7c57610100808354040283529160200191611da7565b820191906000526020600020905b815481529060010190602001808311611d8a57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611df757600183039250600a81066030018353600a81049050611dd7565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054611e379061288c565b90600052602060002090601f016020900481019282611e595760008555611ea0565b82601f10611e7257803560ff1916838001178555611ea0565b82800160010185558215611ea0579182015b82811115611e9f578235825591602001919060010190611e84565b5b509050611ead9190611eb1565b5090565b5b80821115611eca576000816000905550600101611eb2565b5090565b6000611ee1611edc846126a7565b612682565b905082815260208101848484011115611efd57611efc61298b565b5b611f0884828561284a565b509392505050565b600081359050611f1f81612b42565b92915050565b600081359050611f3481612b59565b92915050565b600081359050611f4981612b70565b92915050565b600081519050611f5e81612b70565b92915050565b600082601f830112611f7957611f78612981565b5b8135611f89848260208601611ece565b91505092915050565b60008083601f840112611fa857611fa7612981565b5b8235905067ffffffffffffffff811115611fc557611fc461297c565b5b602083019150836001820283011115611fe157611fe0612986565b5b9250929050565b600081359050611ff781612b87565b92915050565b60006020828403121561201357612012612995565b5b600061202184828501611f10565b91505092915050565b6000806040838503121561204157612040612995565b5b600061204f85828601611f10565b925050602061206085828601611f10565b9150509250929050565b60008060006060848603121561208357612082612995565b5b600061209186828701611f10565b93505060206120a286828701611f10565b92505060406120b386828701611fe8565b9150509250925092565b600080600080608085870312156120d7576120d6612995565b5b60006120e587828801611f10565b94505060206120f687828801611f10565b935050604061210787828801611fe8565b925050606085013567ffffffffffffffff81111561212857612127612990565b5b61213487828801611f64565b91505092959194509250565b6000806040838503121561215757612156612995565b5b600061216585828601611f10565b925050602061217685828601611f25565b9150509250929050565b6000806040838503121561219757612196612995565b5b60006121a585828601611f10565b92505060206121b685828601611fe8565b9150509250929050565b6000602082840312156121d6576121d5612995565b5b60006121e484828501611f3a565b91505092915050565b60006020828403121561220357612202612995565b5b600061221184828501611f4f565b91505092915050565b6000806020838503121561223157612230612995565b5b600083013567ffffffffffffffff81111561224f5761224e612990565b5b61225b85828601611f92565b92509250509250929050565b60006020828403121561227d5761227c612995565b5b600061228b84828501611fe8565b91505092915050565b61229d816127d6565b82525050565b6122ac816127e8565b82525050565b60006122bd826126d8565b6122c781856126ee565b93506122d7818560208601612859565b6122e08161299a565b840191505092915050565b60006122f6826126e3565b612300818561270a565b9350612310818560208601612859565b6123198161299a565b840191505092915050565b600061232f826126e3565b612339818561271b565b9350612349818560208601612859565b80840191505092915050565b600061236260268361270a565b915061236d826129ab565b604082019050919050565b600061238560148361270a565b9150612390826129fa565b602082019050919050565b60006123a860058361271b565b91506123b382612a23565b600582019050919050565b60006123cb60208361270a565b91506123d682612a4c565b602082019050919050565b60006123ee602f8361270a565b91506123f982612a75565b604082019050919050565b60006124116000836126ff565b915061241c82612ac4565b600082019050919050565b600061243460108361270a565b915061243f82612ac7565b602082019050919050565b600061245760108361270a565b915061246282612af0565b602082019050919050565b600061247a60168361270a565b915061248582612b19565b602082019050919050565b61249981612840565b82525050565b60006124ab8285612324565b91506124b78284612324565b91506124c28261239b565b91508190509392505050565b60006124d982612404565b9150819050919050565b60006020820190506124f86000830184612294565b92915050565b60006080820190506125136000830187612294565b6125206020830186612294565b61252d6040830185612490565b818103606083015261253f81846122b2565b905095945050505050565b600060208201905061255f60008301846122a3565b92915050565b6000602082019050818103600083015261257f81846122eb565b905092915050565b600060208201905081810360008301526125a081612355565b9050919050565b600060208201905081810360008301526125c081612378565b9050919050565b600060208201905081810360008301526125e0816123be565b9050919050565b60006020820190508181036000830152612600816123e1565b9050919050565b6000602082019050818103600083015261262081612427565b9050919050565b600060208201905081810360008301526126408161244a565b9050919050565b600060208201905081810360008301526126608161246d565b9050919050565b600060208201905061267c6000830184612490565b92915050565b600061268c61269d565b905061269882826128be565b919050565b6000604051905090565b600067ffffffffffffffff8211156126c2576126c161294d565b5b6126cb8261299a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061273182612840565b915061273c83612840565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612771576127706128ef565b5b828201905092915050565b600061278782612840565b915061279283612840565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127cb576127ca6128ef565b5b828202905092915050565b60006127e182612820565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561287757808201518184015260208101905061285c565b83811115612886576000848401525b50505050565b600060028204905060018216806128a457607f821691505b602082108114156128b8576128b761291e565b5b50919050565b6128c78261299a565b810181811067ffffffffffffffff821117156128e6576128e561294d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e7420746f6f2068696768000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d696e74656420636f6d706c6574656400000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e6f7420706179696e6720656e6f756768206665657300000000000000000000600082015250565b612b4b816127d6565b8114612b5657600080fd5b50565b612b62816127e8565b8114612b6d57600080fd5b50565b612b79816127f4565b8114612b8457600080fd5b50565b612b9081612840565b8114612b9b57600080fd5b5056fea26469706673582212208ae8d5a84e0ffe09c03fd56c43bfa28f56d69a6004c3f71dc8b097fbfde02e5f64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f7777772e746f746f74686174706f6f702e78797a2f6170692f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636f8b44b0116100d1578063ac4460021161008a578063c87b56dd11610064578063c87b56dd146104f3578063d547cfb714610530578063e985e9c51461055b578063f2fde38b1461059857610166565b8063ac44600214610488578063b88d4fde1461049f578063c002d23d146104c857610166565b80636f8b44b01461038c57806370a08231146103b5578063715018a6146103f25780638da5cb5b1461040957806395d89b4114610434578063a22cb4651461045f57610166565b806330176e131161012357806330176e131461028d57806332cb6b0c146102b657806340c10f19146102e157806342842e0e146102fd578063484b973c146103265780636352211e1461034f57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906121c0565b6105c1565b60405161019f919061254a565b60405180910390f35b3480156101b457600080fd5b506101bd610653565b6040516101ca9190612565565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612267565b6106e5565b60405161020791906124e3565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612180565b610761565b005b34801561024557600080fd5b5061024e610908565b60405161025b9190612667565b60405180910390f35b34801561027057600080fd5b5061028b6004803603810190610286919061206a565b61091f565b005b34801561029957600080fd5b506102b460048036038101906102af919061221a565b61092f565b005b3480156102c257600080fd5b506102cb6109c1565b6040516102d89190612667565b60405180910390f35b6102fb60048036038101906102f69190612180565b6109c7565b005b34801561030957600080fd5b50610324600480360381019061031f919061206a565b610ac1565b005b34801561033257600080fd5b5061034d60048036038101906103489190612180565b610ae1565b005b34801561035b57600080fd5b5061037660048036038101906103719190612267565b610bc2565b60405161038391906124e3565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612267565b610bd4565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190611ffd565b610c5a565b6040516103e99190612667565b60405180910390f35b3480156103fe57600080fd5b50610407610d13565b005b34801561041557600080fd5b5061041e610d9b565b60405161042b91906124e3565b60405180910390f35b34801561044057600080fd5b50610449610dc5565b6040516104569190612565565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612140565b610e57565b005b34801561049457600080fd5b5061049d610fcf565b005b3480156104ab57600080fd5b506104c660048036038101906104c191906120bd565b6110fa565b005b3480156104d457600080fd5b506104dd61116d565b6040516104ea9190612667565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190612267565b611173565b6040516105279190612565565b60405180910390f35b34801561053c57600080fd5b5061054561121b565b6040516105529190612565565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d919061202a565b6112a9565b60405161058f919061254a565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190611ffd565b61133d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061064c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106629061288c565b80601f016020809104026020016040519081016040528092919081815260200182805461068e9061288c565b80156106db5780601f106106b0576101008083540402835291602001916106db565b820191906000526020600020905b8154815290600101906020018083116106be57829003601f168201915b5050505050905090565b60006106f082611435565b610726576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076c82611494565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f3611562565b73ffffffffffffffffffffffffffffffffffffffff16146108565761081f8161081a611562565b6112a9565b610855576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061091261156a565b6001546000540303905090565b61092a838383611573565b505050565b61093761191d565b73ffffffffffffffffffffffffffffffffffffffff16610955610d9b565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906125c7565b60405180910390fd5b8181600c91906109bc929190611e2b565b505050565b60095481565b600b54811115610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a03906125a7565b60405180910390fd5b600954610a17610908565b82610a229190612726565b1115610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90612607565b60405180910390fd5b600a5481610a71919061277c565b341015610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90612647565b60405180910390fd5b610abd8282611925565b5050565b610adc838383604051806020016040528060008152506110fa565b505050565b610ae961191d565b73ffffffffffffffffffffffffffffffffffffffff16610b07610d9b565b73ffffffffffffffffffffffffffffffffffffffff1614610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b54906125c7565b60405180910390fd5b600954610b68610908565b82610b739190612726565b1115610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90612607565b60405180910390fd5b610bbe8282611925565b5050565b6000610bcd82611494565b9050919050565b610bdc61191d565b73ffffffffffffffffffffffffffffffffffffffff16610bfa610d9b565b73ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c47906125c7565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d1b61191d565b73ffffffffffffffffffffffffffffffffffffffff16610d39610d9b565b73ffffffffffffffffffffffffffffffffffffffff1614610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d86906125c7565b60405180910390fd5b610d996000611af9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610dd49061288c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e009061288c565b8015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b820191906000526020600020905b815481529060010190602001808311610e3057829003601f168201915b5050505050905090565b610e5f611562565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610ed1611562565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f7e611562565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fc3919061254a565b60405180910390a35050565b610fd761191d565b73ffffffffffffffffffffffffffffffffffffffff16610ff5610d9b565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906125c7565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611071906124ce565b60006040518083038185875af1925050503d80600081146110ae576040519150601f19603f3d011682016040523d82523d6000602084013e6110b3565b606091505b50509050806110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90612627565b60405180910390fd5b50565b611105848484611573565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111675761113084848484611bbf565b611166576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b606061117e82611435565b6111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b4906125e7565b60405180910390fd5b60006111c7611d1f565b90506000815114156111e85760405180602001604052806000815250611213565b806111f284611db1565b60405160200161120392919061249f565b6040516020818303038152906040525b915050919050565b600c80546112289061288c565b80601f01602080910402602001604051908101604052809291908181526020018280546112549061288c565b80156112a15780601f10611276576101008083540402835291602001916112a1565b820191906000526020600020905b81548152906001019060200180831161128457829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61134561191d565b73ffffffffffffffffffffffffffffffffffffffff16611363610d9b565b73ffffffffffffffffffffffffffffffffffffffff16146113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b0906125c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090612587565b60405180910390fd5b61143281611af9565b50565b60008161144061156a565b1115801561144f575060005482105b801561148d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806114a361156a565b1161152b5760005481101561152a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611528575b600081141561151e5760046000836001900393508381526020019081526020016000205490506114f3565b809250505061155d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061157e82611494565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115e5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611606611562565b73ffffffffffffffffffffffffffffffffffffffff16148061163557506116348561162f611562565b6112a9565b5b8061167a5750611643611562565b73ffffffffffffffffffffffffffffffffffffffff16611662846106e5565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561171a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117278585856001611e0b565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61182486611e11565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156118ae5760006001840190506000600460008381526020019081526020016000205414156118ac5760005481146118ab578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119168585856001611e1b565b5050505050565b600033905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611992576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156119cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119da6000848385611e0b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611a3f60018414611e21565b901b60a042901b611a4f85611e11565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611a7557816000819055505050611af46000848385611e1b565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611be5611562565b8786866040518563ffffffff1660e01b8152600401611c0794939291906124fe565b602060405180830381600087803b158015611c2157600080fd5b505af1925050508015611c5257506040513d601f19601f82011682018060405250810190611c4f91906121ed565b60015b611ccc573d8060008114611c82576040519150601f19603f3d011682016040523d82523d6000602084013e611c87565b606091505b50600081511415611cc4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611d2e9061288c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5a9061288c565b8015611da75780601f10611d7c57610100808354040283529160200191611da7565b820191906000526020600020905b815481529060010190602001808311611d8a57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611df757600183039250600a81066030018353600a81049050611dd7565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054611e379061288c565b90600052602060002090601f016020900481019282611e595760008555611ea0565b82601f10611e7257803560ff1916838001178555611ea0565b82800160010185558215611ea0579182015b82811115611e9f578235825591602001919060010190611e84565b5b509050611ead9190611eb1565b5090565b5b80821115611eca576000816000905550600101611eb2565b5090565b6000611ee1611edc846126a7565b612682565b905082815260208101848484011115611efd57611efc61298b565b5b611f0884828561284a565b509392505050565b600081359050611f1f81612b42565b92915050565b600081359050611f3481612b59565b92915050565b600081359050611f4981612b70565b92915050565b600081519050611f5e81612b70565b92915050565b600082601f830112611f7957611f78612981565b5b8135611f89848260208601611ece565b91505092915050565b60008083601f840112611fa857611fa7612981565b5b8235905067ffffffffffffffff811115611fc557611fc461297c565b5b602083019150836001820283011115611fe157611fe0612986565b5b9250929050565b600081359050611ff781612b87565b92915050565b60006020828403121561201357612012612995565b5b600061202184828501611f10565b91505092915050565b6000806040838503121561204157612040612995565b5b600061204f85828601611f10565b925050602061206085828601611f10565b9150509250929050565b60008060006060848603121561208357612082612995565b5b600061209186828701611f10565b93505060206120a286828701611f10565b92505060406120b386828701611fe8565b9150509250925092565b600080600080608085870312156120d7576120d6612995565b5b60006120e587828801611f10565b94505060206120f687828801611f10565b935050604061210787828801611fe8565b925050606085013567ffffffffffffffff81111561212857612127612990565b5b61213487828801611f64565b91505092959194509250565b6000806040838503121561215757612156612995565b5b600061216585828601611f10565b925050602061217685828601611f25565b9150509250929050565b6000806040838503121561219757612196612995565b5b60006121a585828601611f10565b92505060206121b685828601611fe8565b9150509250929050565b6000602082840312156121d6576121d5612995565b5b60006121e484828501611f3a565b91505092915050565b60006020828403121561220357612202612995565b5b600061221184828501611f4f565b91505092915050565b6000806020838503121561223157612230612995565b5b600083013567ffffffffffffffff81111561224f5761224e612990565b5b61225b85828601611f92565b92509250509250929050565b60006020828403121561227d5761227c612995565b5b600061228b84828501611fe8565b91505092915050565b61229d816127d6565b82525050565b6122ac816127e8565b82525050565b60006122bd826126d8565b6122c781856126ee565b93506122d7818560208601612859565b6122e08161299a565b840191505092915050565b60006122f6826126e3565b612300818561270a565b9350612310818560208601612859565b6123198161299a565b840191505092915050565b600061232f826126e3565b612339818561271b565b9350612349818560208601612859565b80840191505092915050565b600061236260268361270a565b915061236d826129ab565b604082019050919050565b600061238560148361270a565b9150612390826129fa565b602082019050919050565b60006123a860058361271b565b91506123b382612a23565b600582019050919050565b60006123cb60208361270a565b91506123d682612a4c565b602082019050919050565b60006123ee602f8361270a565b91506123f982612a75565b604082019050919050565b60006124116000836126ff565b915061241c82612ac4565b600082019050919050565b600061243460108361270a565b915061243f82612ac7565b602082019050919050565b600061245760108361270a565b915061246282612af0565b602082019050919050565b600061247a60168361270a565b915061248582612b19565b602082019050919050565b61249981612840565b82525050565b60006124ab8285612324565b91506124b78284612324565b91506124c28261239b565b91508190509392505050565b60006124d982612404565b9150819050919050565b60006020820190506124f86000830184612294565b92915050565b60006080820190506125136000830187612294565b6125206020830186612294565b61252d6040830185612490565b818103606083015261253f81846122b2565b905095945050505050565b600060208201905061255f60008301846122a3565b92915050565b6000602082019050818103600083015261257f81846122eb565b905092915050565b600060208201905081810360008301526125a081612355565b9050919050565b600060208201905081810360008301526125c081612378565b9050919050565b600060208201905081810360008301526125e0816123be565b9050919050565b60006020820190508181036000830152612600816123e1565b9050919050565b6000602082019050818103600083015261262081612427565b9050919050565b600060208201905081810360008301526126408161244a565b9050919050565b600060208201905081810360008301526126608161246d565b9050919050565b600060208201905061267c6000830184612490565b92915050565b600061268c61269d565b905061269882826128be565b919050565b6000604051905090565b600067ffffffffffffffff8211156126c2576126c161294d565b5b6126cb8261299a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061273182612840565b915061273c83612840565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612771576127706128ef565b5b828201905092915050565b600061278782612840565b915061279283612840565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127cb576127ca6128ef565b5b828202905092915050565b60006127e182612820565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561287757808201518184015260208101905061285c565b83811115612886576000848401525b50505050565b600060028204905060018216806128a457607f821691505b602082108114156128b8576128b761291e565b5b50919050565b6128c78261299a565b810181811067ffffffffffffffff821117156128e6576128e561294d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e7420746f6f2068696768000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d696e74656420636f6d706c6574656400000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e6f7420706179696e6720656e6f756768206665657300000000000000000000600082015250565b612b4b816127d6565b8114612b5657600080fd5b50565b612b62816127e8565b8114612b6d57600080fd5b50565b612b79816127f4565b8114612b8457600080fd5b50565b612b9081612840565b8114612b9b57600080fd5b5056fea26469706673582212208ae8d5a84e0ffe09c03fd56c43bfa28f56d69a6004c3f71dc8b097fbfde02e5f64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f7777772e746f746f74686174706f6f702e78797a2f6170692f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenUri (string): https://www.totothatpoop.xyz/api/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [2] : 68747470733a2f2f7777772e746f746f74686174706f6f702e78797a2f617069
Arg [3] : 2f00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41868:1779:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13106:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18119:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20187:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19647:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12160:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21073:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42798:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41907:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42187:311;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21314:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42506:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17908:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42689:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13785:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40986:103;;;;;;;;;;;;;:::i;:::-;;40335:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18288:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20463:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42910:177;;;;;;;;;;;;;:::i;:::-;;21570:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41946:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43208:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42027:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20842:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41244:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13106:615;13191:4;13506:10;13491:25;;:11;:25;;;;:102;;;;13583:10;13568:25;;:11;:25;;;;13491:102;:179;;;;13660:10;13645:25;;:11;:25;;;;13491:179;13471:199;;13106:615;;;:::o;18119:100::-;18173:13;18206:5;18199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18119:100;:::o;20187:204::-;20255:7;20280:16;20288:7;20280;:16::i;:::-;20275:64;;20305:34;;;;;;;;;;;;;;20275:64;20359:15;:24;20375:7;20359:24;;;;;;;;;;;;;;;;;;;;;20352:31;;20187:204;;;:::o;19647:474::-;19720:13;19752:27;19771:7;19752:18;:27::i;:::-;19720:61;;19802:5;19796:11;;:2;:11;;;19792:48;;;19816:24;;;;;;;;;;;;;;19792:48;19880:5;19857:28;;:19;:17;:19::i;:::-;:28;;;19853:175;;19905:44;19922:5;19929:19;:17;:19::i;:::-;19905:16;:44::i;:::-;19900:128;;19977:35;;;;;;;;;;;;;;19900:128;19853:175;20067:2;20040:15;:24;20056:7;20040:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20105:7;20101:2;20085:28;;20094:5;20085:28;;;;;;;;;;;;19709:412;19647:474;;:::o;12160:315::-;12213:7;12441:15;:13;:15::i;:::-;12426:12;;12410:13;;:28;:46;12403:53;;12160:315;:::o;21073:170::-;21207:28;21217:4;21223:2;21227:7;21207:9;:28::i;:::-;21073:170;;;:::o;42798:104::-;40566:12;:10;:12::i;:::-;40555:23;;:7;:5;:7::i;:::-;:23;;;40547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42890:4:::1;;42875:12;:19;;;;;;;:::i;:::-;;42798:104:::0;;:::o;41907:32::-;;;;:::o;42187:311::-;42275:10;;42265:6;:20;;42257:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;42354:10;;42337:13;:11;:13::i;:::-;42328:6;:22;;;;:::i;:::-;:36;;42320:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42426:10;;42417:6;:19;;;;:::i;:::-;42404:9;:32;;42396:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;42474:16;42480:2;42483:6;42474:5;:16::i;:::-;42187:311;;:::o;21314:185::-;21452:39;21469:4;21475:2;21479:7;21452:39;;;;;;;;;;;;:16;:39::i;:::-;21314:185;;;:::o;42506:175::-;40566:12;:10;:12::i;:::-;40555:23;;:7;:5;:7::i;:::-;:23;;;40547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42615:10:::1;;42598:13;:11;:13::i;:::-;42589:6;:22;;;;:::i;:::-;:36;;42581:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42657:16;42663:2;42666:6;42657:5;:16::i;:::-;42506:175:::0;;:::o;17908:144::-;17972:7;18015:27;18034:7;18015:18;:27::i;:::-;17992:52;;17908:144;;;:::o;42689:101::-;40566:12;:10;:12::i;:::-;40555:23;;:7;:5;:7::i;:::-;:23;;;40547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42771:11:::1;42760:10;:22;;;;42689:101:::0;:::o;13785:224::-;13849:7;13890:1;13873:19;;:5;:19;;;13869:60;;;13901:28;;;;;;;;;;;;;;13869:60;9124:13;13947:18;:25;13966:5;13947:25;;;;;;;;;;;;;;;;:54;13940:61;;13785:224;;;:::o;40986:103::-;40566:12;:10;:12::i;:::-;40555:23;;:7;:5;:7::i;:::-;:23;;;40547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41051:30:::1;41078:1;41051:18;:30::i;:::-;40986:103::o:0;40335:87::-;40381:7;40408:6;;;;;;;;;;;40401:13;;40335:87;:::o;18288:104::-;18344:13;18377:7;18370:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18288:104;:::o;20463:308::-;20574:19;:17;:19::i;:::-;20562:31;;:8;:31;;;20558:61;;;20602:17;;;;;;;;;;;;;;20558:61;20684:8;20632:18;:39;20651:19;:17;:19::i;:::-;20632:39;;;;;;;;;;;;;;;:49;20672:8;20632:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20744:8;20708:55;;20723:19;:17;:19::i;:::-;20708:55;;;20754:8;20708:55;;;;;;:::i;:::-;;;;;;;;20463:308;;:::o;42910:177::-;40566:12;:10;:12::i;:::-;40555:23;;:7;:5;:7::i;:::-;:23;;;40547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42965:12:::1;42983:10;:15;;43006:21;42983:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42964:68;;;43051:7;43043:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;42953:134;42910:177::o:0;21570:396::-;21737:28;21747:4;21753:2;21757:7;21737:9;:28::i;:::-;21798:1;21780:2;:14;;;:19;21776:183;;21819:56;21850:4;21856:2;21860:7;21869:5;21819:30;:56::i;:::-;21814:145;;21903:40;;;;;;;;;;;;;;21814:145;21776:183;21570:396;;;;:::o;41946:35::-;;;;:::o;43208:333::-;43273:13;43309:16;43317:7;43309;:16::i;:::-;43301:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43388:21;43412:10;:8;:10::i;:::-;43388:34;;43465:1;43446:7;43440:21;:26;;:96;;;;;;;;;;;;;;;;;43493:7;43502:18;43512:7;43502:9;:18::i;:::-;43476:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43440:96;43433:103;;;43208:333;;;:::o;42027:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20842:164::-;20939:4;20963:18;:25;20982:5;20963:25;;;;;;;;;;;;;;;:35;20989:8;20963:35;;;;;;;;;;;;;;;;;;;;;;;;;20956:42;;20842:164;;;;:::o;41244:201::-;40566:12;:10;:12::i;:::-;40555:23;;:7;:5;:7::i;:::-;:23;;;40547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41353:1:::1;41333:22;;:8;:22;;;;41325:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41409:28;41428:8;41409:18;:28::i;:::-;41244:201:::0;:::o;22221:273::-;22278:4;22334:7;22315:15;:13;:15::i;:::-;:26;;:66;;;;;22368:13;;22358:7;:23;22315:66;:152;;;;;22466:1;9894:8;22419:17;:26;22437:7;22419:26;;;;;;;;;;;;:43;:48;22315:152;22295:172;;22221:273;;;:::o;15423:1129::-;15490:7;15510:12;15525:7;15510:22;;15593:4;15574:15;:13;:15::i;:::-;:23;15570:915;;15627:13;;15620:4;:20;15616:869;;;15665:14;15682:17;:23;15700:4;15682:23;;;;;;;;;;;;15665:40;;15798:1;9894:8;15771:6;:23;:28;15767:699;;;16290:113;16307:1;16297:6;:11;16290:113;;;16350:17;:25;16368:6;;;;;;;16350:25;;;;;;;;;;;;16341:34;;16290:113;;;16436:6;16429:13;;;;;;15767:699;15642:843;15616:869;15570:915;16513:31;;;;;;;;;;;;;;15423:1129;;;;:::o;36203:105::-;36263:7;36290:10;36283:17;;36203:105;:::o;43549:93::-;43606:7;43633:1;43626:8;;43549:93;:::o;27460:2515::-;27575:27;27605;27624:7;27605:18;:27::i;:::-;27575:57;;27690:4;27649:45;;27665:19;27649:45;;;27645:86;;27703:28;;;;;;;;;;;;;;27645:86;27744:22;27793:4;27770:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27814:43;27831:4;27837:19;:17;:19::i;:::-;27814:16;:43::i;:::-;27770:87;:147;;;;27898:19;:17;:19::i;:::-;27874:43;;:20;27886:7;27874:11;:20::i;:::-;:43;;;27770:147;27744:174;;27936:17;27931:66;;27962:35;;;;;;;;;;;;;;27931:66;28026:1;28012:16;;:2;:16;;;28008:52;;;28037:23;;;;;;;;;;;;;;28008:52;28073:43;28095:4;28101:2;28105:7;28114:1;28073:21;:43::i;:::-;28189:15;:24;28205:7;28189:24;;;;;;;;;;;;28182:31;;;;;;;;;;;28581:18;:24;28600:4;28581:24;;;;;;;;;;;;;;;;28579:26;;;;;;;;;;;;28650:18;:22;28669:2;28650:22;;;;;;;;;;;;;;;;28648:24;;;;;;;;;;;10176:8;9778:3;29031:15;:41;;28989:21;29007:2;28989:17;:21::i;:::-;:84;:128;28943:17;:26;28961:7;28943:26;;;;;;;;;;;:174;;;;29287:1;10176:8;29237:19;:46;:51;29233:626;;;29309:19;29341:1;29331:7;:11;29309:33;;29498:1;29464:17;:30;29482:11;29464:30;;;;;;;;;;;;:35;29460:384;;;29602:13;;29587:11;:28;29583:242;;29782:19;29749:17;:30;29767:11;29749:30;;;;;;;;;;;:52;;;;29583:242;29460:384;29290:569;29233:626;29906:7;29902:2;29887:27;;29896:4;29887:27;;;;;;;;;;;;29925:42;29946:4;29952:2;29956:7;29965:1;29925:20;:42::i;:::-;27564:2411;;27460:2515;;;:::o;39059:98::-;39112:7;39139:10;39132:17;;39059:98;:::o;25550:1656::-;25615:20;25638:13;;25615:36;;25680:1;25666:16;;:2;:16;;;25662:48;;;25691:19;;;;;;;;;;;;;;25662:48;25737:1;25725:8;:13;25721:44;;;25747:18;;;;;;;;;;;;;;25721:44;25778:61;25808:1;25812:2;25816:12;25830:8;25778:21;:61::i;:::-;26382:1;9261:2;26353:1;:25;;26352:31;26340:8;:44;26314:18;:22;26333:2;26314:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10041:3;26783:29;26810:1;26798:8;:13;26783:14;:29::i;:::-;:56;;9778:3;26720:15;:41;;26678:21;26696:2;26678:17;:21::i;:::-;:84;:162;26627:17;:31;26645:12;26627:31;;;;;;;;;;;:213;;;;26857:20;26880:12;26857:35;;26907:11;26936:8;26921:12;:23;26907:37;;26961:111;27013:14;;;;;;27009:2;26988:40;;27005:1;26988:40;;;;;;;;;;;;27067:3;27052:12;:18;26961:111;;27104:12;27088:13;:28;;;;26091:1037;;27138:60;27167:1;27171:2;27175:12;27189:8;27138:20;:60::i;:::-;25604:1602;25550:1656;;:::o;41605:191::-;41679:16;41698:6;;;;;;;;;;;41679:25;;41724:8;41715:6;;:17;;;;;;;;;;;;;;;;;;41779:8;41748:40;;41769:8;41748:40;;;;;;;;;;;;41668:128;41605:191;:::o;33672:716::-;33835:4;33881:2;33856:45;;;33902:19;:17;:19::i;:::-;33923:4;33929:7;33938:5;33856:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33852:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34156:1;34139:6;:13;:18;34135:235;;;34185:40;;;;;;;;;;;;;;34135:235;34328:6;34322:13;34313:6;34309:2;34305:15;34298:38;33852:529;34025:54;;;34015:64;;;:6;:64;;;;34008:71;;;33672:716;;;;;;:::o;43095:105::-;43147:13;43180:12;43173:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43095:105;:::o;36414:1959::-;36471:17;36892:3;36885:4;36879:11;36875:21;36868:28;;36983:3;36977:4;36970:17;37089:3;37546:5;37676:1;37671:3;37667:11;37660:18;;37813:2;37807:4;37803:13;37799:2;37795:22;37790:3;37782:36;37854:2;37848:4;37844:13;37836:21;;37437:682;37873:4;37437:682;;;38048:1;38043:3;38039:11;38032:18;;38099:2;38093:4;38089:13;38085:2;38081:22;38076:3;38068:36;37969:2;37963:4;37959:13;37951:21;;37437:682;;;37441:431;38170:3;38165;38161:13;38285:2;38280:3;38276:12;38269:19;;38348:6;38343:3;38336:19;36510:1856;;36414:1959;;;:::o;35036:159::-;;;;;:::o;19208:148::-;19272:14;19333:5;19323:15;;19208:148;;;:::o;35854:158::-;;;;;:::o;19443:142::-;19501:14;19562:5;19552:15;;19443:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;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:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:400::-;9235:3;9256:84;9338:1;9333:3;9256:84;:::i;:::-;9249:91;;9349:93;9438:3;9349:93;:::i;:::-;9467:1;9462:3;9458:11;9451:18;;9075:400;;;:::o;9481:366::-;9623:3;9644:67;9708:2;9703:3;9644:67;:::i;:::-;9637:74;;9720:93;9809:3;9720:93;:::i;:::-;9838:2;9833:3;9829:12;9822:19;;9481:366;;;:::o;9853:::-;9995:3;10016:67;10080:2;10075:3;10016:67;:::i;:::-;10009:74;;10092:93;10181:3;10092:93;:::i;:::-;10210:2;10205:3;10201:12;10194:19;;9853:366;;;:::o;10225:398::-;10384:3;10405:83;10486:1;10481:3;10405:83;:::i;:::-;10398:90;;10497:93;10586:3;10497:93;:::i;:::-;10615:1;10610:3;10606:11;10599:18;;10225:398;;;:::o;10629:366::-;10771:3;10792:67;10856:2;10851:3;10792:67;:::i;:::-;10785:74;;10868:93;10957:3;10868:93;:::i;:::-;10986:2;10981:3;10977:12;10970:19;;10629:366;;;:::o;11001:::-;11143:3;11164:67;11228:2;11223:3;11164:67;:::i;:::-;11157:74;;11240:93;11329:3;11240:93;:::i;:::-;11358:2;11353:3;11349:12;11342:19;;11001:366;;;:::o;11373:::-;11515:3;11536:67;11600:2;11595:3;11536:67;:::i;:::-;11529:74;;11612:93;11701:3;11612:93;:::i;:::-;11730:2;11725:3;11721:12;11714:19;;11373:366;;;:::o;11745:118::-;11832:24;11850:5;11832:24;:::i;:::-;11827:3;11820:37;11745:118;;:::o;11869:701::-;12150:3;12172:95;12263:3;12254:6;12172:95;:::i;:::-;12165:102;;12284:95;12375:3;12366:6;12284:95;:::i;:::-;12277:102;;12396:148;12540:3;12396:148;:::i;:::-;12389:155;;12561:3;12554:10;;11869:701;;;;;:::o;12576:379::-;12760:3;12782:147;12925:3;12782:147;:::i;:::-;12775:154;;12946:3;12939:10;;12576:379;;;:::o;12961:222::-;13054:4;13092:2;13081:9;13077:18;13069:26;;13105:71;13173:1;13162:9;13158:17;13149:6;13105:71;:::i;:::-;12961:222;;;;:::o;13189:640::-;13384:4;13422:3;13411:9;13407:19;13399:27;;13436:71;13504:1;13493:9;13489:17;13480:6;13436:71;:::i;:::-;13517:72;13585:2;13574:9;13570:18;13561:6;13517:72;:::i;:::-;13599;13667:2;13656:9;13652:18;13643:6;13599:72;:::i;:::-;13718:9;13712:4;13708:20;13703:2;13692:9;13688:18;13681:48;13746:76;13817:4;13808:6;13746:76;:::i;:::-;13738:84;;13189:640;;;;;;;:::o;13835:210::-;13922:4;13960:2;13949:9;13945:18;13937:26;;13973:65;14035:1;14024:9;14020:17;14011:6;13973:65;:::i;:::-;13835:210;;;;:::o;14051:313::-;14164:4;14202:2;14191:9;14187:18;14179:26;;14251:9;14245:4;14241:20;14237:1;14226:9;14222:17;14215:47;14279:78;14352:4;14343:6;14279:78;:::i;:::-;14271:86;;14051:313;;;;:::o;14370:419::-;14536:4;14574:2;14563:9;14559:18;14551:26;;14623:9;14617:4;14613:20;14609:1;14598:9;14594:17;14587:47;14651:131;14777:4;14651:131;:::i;:::-;14643:139;;14370:419;;;:::o;14795:::-;14961:4;14999:2;14988:9;14984:18;14976:26;;15048:9;15042:4;15038:20;15034:1;15023:9;15019:17;15012:47;15076:131;15202:4;15076:131;:::i;:::-;15068:139;;14795:419;;;:::o;15220:::-;15386:4;15424:2;15413:9;15409:18;15401:26;;15473:9;15467:4;15463:20;15459:1;15448:9;15444:17;15437:47;15501:131;15627:4;15501:131;:::i;:::-;15493:139;;15220:419;;;:::o;15645:::-;15811:4;15849:2;15838:9;15834:18;15826:26;;15898:9;15892:4;15888:20;15884:1;15873:9;15869:17;15862:47;15926:131;16052:4;15926:131;:::i;:::-;15918:139;;15645:419;;;:::o;16070:::-;16236:4;16274:2;16263:9;16259:18;16251:26;;16323:9;16317:4;16313:20;16309:1;16298:9;16294:17;16287:47;16351:131;16477:4;16351:131;:::i;:::-;16343:139;;16070:419;;;:::o;16495:::-;16661:4;16699:2;16688:9;16684:18;16676:26;;16748:9;16742:4;16738:20;16734:1;16723:9;16719:17;16712:47;16776:131;16902:4;16776:131;:::i;:::-;16768:139;;16495:419;;;:::o;16920:::-;17086:4;17124:2;17113:9;17109:18;17101:26;;17173:9;17167:4;17163:20;17159:1;17148:9;17144:17;17137:47;17201:131;17327:4;17201:131;:::i;:::-;17193:139;;16920:419;;;:::o;17345:222::-;17438:4;17476:2;17465:9;17461:18;17453:26;;17489:71;17557:1;17546:9;17542:17;17533:6;17489:71;:::i;:::-;17345:222;;;;:::o;17573:129::-;17607:6;17634:20;;:::i;:::-;17624:30;;17663:33;17691:4;17683:6;17663:33;:::i;:::-;17573:129;;;:::o;17708:75::-;17741:6;17774:2;17768:9;17758:19;;17708:75;:::o;17789:307::-;17850:4;17940:18;17932:6;17929:30;17926:56;;;17962:18;;:::i;:::-;17926:56;18000:29;18022:6;18000:29;:::i;:::-;17992:37;;18084:4;18078;18074:15;18066:23;;17789:307;;;:::o;18102:98::-;18153:6;18187:5;18181:12;18171:22;;18102:98;;;:::o;18206:99::-;18258:6;18292:5;18286:12;18276:22;;18206:99;;;:::o;18311:168::-;18394:11;18428:6;18423:3;18416:19;18468:4;18463:3;18459:14;18444:29;;18311:168;;;;:::o;18485:147::-;18586:11;18623:3;18608:18;;18485:147;;;;:::o;18638:169::-;18722:11;18756:6;18751:3;18744:19;18796:4;18791:3;18787:14;18772:29;;18638:169;;;;:::o;18813:148::-;18915:11;18952:3;18937:18;;18813:148;;;;:::o;18967:305::-;19007:3;19026:20;19044:1;19026:20;:::i;:::-;19021:25;;19060:20;19078:1;19060:20;:::i;:::-;19055:25;;19214:1;19146:66;19142:74;19139:1;19136:81;19133:107;;;19220:18;;:::i;:::-;19133:107;19264:1;19261;19257:9;19250:16;;18967:305;;;;:::o;19278:348::-;19318:7;19341:20;19359:1;19341:20;:::i;:::-;19336:25;;19375:20;19393:1;19375:20;:::i;:::-;19370:25;;19563:1;19495:66;19491:74;19488:1;19485:81;19480:1;19473:9;19466:17;19462:105;19459:131;;;19570:18;;:::i;:::-;19459:131;19618:1;19615;19611:9;19600:20;;19278:348;;;;:::o;19632:96::-;19669:7;19698:24;19716:5;19698:24;:::i;:::-;19687:35;;19632:96;;;:::o;19734:90::-;19768:7;19811:5;19804:13;19797:21;19786:32;;19734:90;;;:::o;19830:149::-;19866:7;19906:66;19899:5;19895:78;19884:89;;19830:149;;;:::o;19985:126::-;20022:7;20062:42;20055:5;20051:54;20040:65;;19985:126;;;:::o;20117:77::-;20154:7;20183:5;20172:16;;20117:77;;;:::o;20200:154::-;20284:6;20279:3;20274;20261:30;20346:1;20337:6;20332:3;20328:16;20321:27;20200:154;;;:::o;20360:307::-;20428:1;20438:113;20452:6;20449:1;20446:13;20438:113;;;20537:1;20532:3;20528:11;20522:18;20518:1;20513:3;20509:11;20502:39;20474:2;20471:1;20467:10;20462:15;;20438:113;;;20569:6;20566:1;20563:13;20560:101;;;20649:1;20640:6;20635:3;20631:16;20624:27;20560:101;20409:258;20360:307;;;:::o;20673:320::-;20717:6;20754:1;20748:4;20744:12;20734:22;;20801:1;20795:4;20791:12;20822:18;20812:81;;20878:4;20870:6;20866:17;20856:27;;20812:81;20940:2;20932:6;20929:14;20909:18;20906:38;20903:84;;;20959:18;;:::i;:::-;20903:84;20724:269;20673:320;;;:::o;20999:281::-;21082:27;21104:4;21082:27;:::i;:::-;21074:6;21070:40;21212:6;21200:10;21197:22;21176:18;21164:10;21161:34;21158:62;21155:88;;;21223:18;;:::i;:::-;21155:88;21263:10;21259:2;21252:22;21042:238;20999:281;;:::o;21286:180::-;21334:77;21331:1;21324:88;21431:4;21428:1;21421:15;21455:4;21452:1;21445:15;21472:180;21520:77;21517:1;21510:88;21617:4;21614:1;21607:15;21641:4;21638:1;21631:15;21658:180;21706:77;21703:1;21696:88;21803:4;21800:1;21793:15;21827:4;21824:1;21817:15;21844:117;21953:1;21950;21943:12;21967:117;22076:1;22073;22066:12;22090:117;22199:1;22196;22189:12;22213:117;22322:1;22319;22312:12;22336:117;22445:1;22442;22435:12;22459:117;22568:1;22565;22558:12;22582:102;22623:6;22674:2;22670:7;22665:2;22658:5;22654:14;22650:28;22640:38;;22582:102;;;:::o;22690:225::-;22830:34;22826:1;22818:6;22814:14;22807:58;22899:8;22894:2;22886:6;22882:15;22875:33;22690:225;:::o;22921:170::-;23061:22;23057:1;23049:6;23045:14;23038:46;22921:170;:::o;23097:155::-;23237:7;23233:1;23225:6;23221:14;23214:31;23097:155;:::o;23258:182::-;23398:34;23394:1;23386:6;23382:14;23375:58;23258:182;:::o;23446:234::-;23586:34;23582:1;23574:6;23570:14;23563:58;23655:17;23650:2;23642:6;23638:15;23631:42;23446:234;:::o;23686:114::-;;:::o;23806:166::-;23946:18;23942:1;23934:6;23930:14;23923:42;23806:166;:::o;23978:::-;24118:18;24114:1;24106:6;24102:14;24095:42;23978:166;:::o;24150:172::-;24290:24;24286:1;24278:6;24274:14;24267:48;24150:172;:::o;24328:122::-;24401:24;24419:5;24401:24;:::i;:::-;24394:5;24391:35;24381:63;;24440:1;24437;24430:12;24381:63;24328:122;:::o;24456:116::-;24526:21;24541:5;24526:21;:::i;:::-;24519:5;24516:32;24506:60;;24562:1;24559;24552:12;24506:60;24456:116;:::o;24578:120::-;24650:23;24667:5;24650:23;:::i;:::-;24643:5;24640:34;24630:62;;24688:1;24685;24678:12;24630:62;24578:120;:::o;24704:122::-;24777:24;24795:5;24777:24;:::i;:::-;24770:5;24767:35;24757:63;;24816:1;24813;24806:12;24757:63;24704:122;:::o

Swarm Source

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