ETH Price: $3,376.40 (-1.97%)
Gas: 2 Gwei

Token

ClownSquad (CS)
 

Overview

Max Total Supply

7,777 CS

Holders

2,137

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tlieberman22.eth
Balance
24 CS
0x729cfa0f61946c8a558da84103f332d310a9d26a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ClownSquad

Compiler Version
v0.8.4+commit.c7e474f2

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

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.1

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

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

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

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

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

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

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

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

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

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the auxiliary 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 auxiliary 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, it can be overridden 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 = ownerOf(tokenId);

        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 for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {

        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

            uint256 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual 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)
        }
    }
}

contract ClownPresale {

	mapping (address => uint8) public _presaleAddresses;
	mapping (address => bool) public _presaleAddressesMinted;
	address public owner;

    constructor () {
        owner = msg.sender;
    }

    function setMainContract(address _address) public {
        require(msg.sender == owner, "Clowns: You are not the owner");
        owner = _address;
    }

    function addPresalers(address[] calldata _addresses) public {
        require(msg.sender == owner, "Clowns: You are not the owner");
        for (uint x = 0; x < _addresses.length; x++) {
            _presaleAddresses[_addresses[x]] = 1;
        }
    }
    
    function removePresalers(address[] calldata _addresses) public {
        require(msg.sender == owner, "Clowns: You are not the owner");
        for (uint x = 0; x < _addresses.length; x++) {
            _presaleAddresses[_addresses[x]] = 0;
        }
    }

    function isInPresale(address _address) public view returns (uint8) {
        return _presaleAddresses[_address];
    }

    function isInMintedPresale(address _address) public view returns (bool) {
        return _presaleAddressesMinted[_address];
    }

    function addToMinted(address _address) public {
        require(msg.sender == owner, "Clowns: You are not the owner");
        _presaleAddressesMinted[_address] = true;
    }

}

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

    string public baseURI;
    uint256 public MAX = 7777;

	uint _saleTime = 1655697600;
	uint _presaleTime = 1655676000;
	uint _presaleTimeEnd = 1655726400;
    uint256 _price = 30000000000000000;
    address public _presaleContract;
	address[] public _presaleAddresses;
	address[] public _presaleAddressesMinted;
    mapping (uint256 => string) public _tokenURI;
    mapping(address => bool) public _minters;
    mapping(address => bool) public _mintersLast;
    mapping(address => bool) public _presaleAlreadyMinted;

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

    constructor (string memory _initialBaseURI, address presaleContract) ERC721A("ClownSquad", "CS") {
        baseURI = _initialBaseURI;
        _presaleContract = presaleContract;
    }

    function setBaseURI(string calldata _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    function price(uint _count) public view returns (uint256) {
        return _price * _count;
    }

    function mint(address to, uint256 quantity) public payable {
        require(totalSupply() + quantity <= MAX, "Clowns: Not enough left to mint");
        require(totalSupply() < MAX, "Clowns: Not enough left to mint");
        require(block.timestamp >= _saleTime, "Clowns: Not sale time yet!");

        if (quantity > 1 && _minters[msg.sender] == false) {
            require(quantity == 2, "Clowns: Exceeds the max you can mint");
            require(msg.value >= price(quantity-1), "Clowns: Value below price");
            _safeMint(to, quantity, '');
            _minters[msg.sender] = true;
            _mintersLast[msg.sender] = true;
        } else if (quantity == 1 && _minters[msg.sender] == false) {
            require(quantity == 1, "Clowns: Exceeds the max you can mint");
            _safeMint(to, quantity, '');
            _minters[msg.sender] = true;
        } else if (_minters[msg.sender] == true && _mintersLast[msg.sender] == false) {
            require(quantity == 1, "Clowns: Exceeds the max you can mint");
            require(msg.value >= price(quantity), "Clowns: Value below price");
            _safeMint(to, quantity, '');
            _mintersLast[msg.sender] = true;
        }
    }

    function mintFromPresale(address to, uint256 quantity) public payable {
        require(block.timestamp < _presaleTimeEnd && block.timestamp >= _presaleTime, "Clowns: Presale ended!");
        require(totalSupply() + quantity <= MAX, "Clowns: Not enough left to mint");
        require(totalSupply() < MAX, "Clowns: Not enough left to mint");
        require(quantity == 1, "Clowns: Exceeds the max you can mint");
        require(quantity <= ClownPresale(_presaleContract).isInPresale(msg.sender), "Clowns: Exceeds the max you can mint in the presale");
        require(ClownPresale(_presaleContract).isInPresale(msg.sender) > 0, "Clowns: You are not in the presale");
        require(_presaleAlreadyMinted[msg.sender] == false, "Clowns: You already minted from the presale");

        _safeMint(to, quantity, '');
        _presaleAlreadyMinted[msg.sender] = true;

    }

    function didMintPresale(address addr) public view returns (bool) {
        return _presaleAlreadyMinted[addr];
    }

    function reserve(uint256 quantity) public payable onlyOwner {
        require(totalSupply() + quantity <= MAX, "Clowns: Not enough left to mint");
        require(totalSupply() < MAX, "Clowns: Not enough left to mint");

        _safeMint(msg.sender, quantity, '');

    }

    function didHeMintTheFreeOne(address addr) public view returns (bool) {
        return _minters[addr];
    }

    function didHeMint(address addr) public view returns (bool) {
        return _mintersLast[addr];
    }

    /**
     * @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 for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal override {

        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

// Creator: Elit Deus (Bleiserman)

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"},{"internalType":"address","name":"presaleContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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","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"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"_checkContractOnERC721Received","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintersLast","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_presaleAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_presaleAddressesMinted","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleAlreadyMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"didHeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"didHeMintTheFreeOne","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"didMintPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintFromPresale","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052611e61600a556362aff0c0600b556362af9c60600c556362b06140600d55666a94d74f430000600e553480156200003a57600080fd5b50604051620041de380380620041de8339818101604052810190620000609190620003a4565b6040518060400160405280600a81526020017f436c6f776e5371756164000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f43530000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e49291906200026b565b508060039080519060200190620000fd9291906200026b565b506200010e6200019860201b60201c565b6000819055505050620001366200012a6200019d60201b60201c565b620001a560201b60201c565b81600990805190602001906200014e9291906200026b565b5080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620005bc565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027990620004c7565b90600052602060002090601f0160209004810192826200029d5760008555620002e9565b82601f10620002b857805160ff1916838001178555620002e9565b82800160010185558215620002e9579182015b82811115620002e8578251825591602001919060010190620002cb565b5b509050620002f89190620002fc565b5090565b5b8082111562000317576000816000905550600101620002fd565b5090565b6000620003326200032c8462000427565b620003fe565b9050828152602081018484840111156200034b57600080fd5b6200035884828562000491565b509392505050565b6000815190506200037181620005a2565b92915050565b600082601f8301126200038957600080fd5b81516200039b8482602086016200031b565b91505092915050565b60008060408385031215620003b857600080fd5b600083015167ffffffffffffffff811115620003d357600080fd5b620003e18582860162000377565b9250506020620003f48582860162000360565b9150509250929050565b60006200040a6200041d565b9050620004188282620004fd565b919050565b6000604051905090565b600067ffffffffffffffff82111562000445576200044462000562565b5b620004508262000591565b9050602081019050919050565b60006200046a8262000471565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004b157808201518184015260208101905062000494565b83811115620004c1576000848401525b50505050565b60006002820490506001821680620004e057607f821691505b60208210811415620004f757620004f662000533565b5b50919050565b620005088262000591565b810181811067ffffffffffffffff821117156200052a576200052962000562565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005ad816200045d565b8114620005b957600080fd5b50565b613c1280620005cc6000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063a22cb465116100a0578063d49d51811161006f578063d49d5181146107d7578063d7e28e3014610802578063d88343e21461083f578063e985e9c51461087c578063f2fde38b146108b95761020f565b8063a22cb4651461072c578063b88d4fde14610755578063c87b56dd1461077e578063cca5caf8146107bb5761020f565b8063853828b6116100e7578063853828b61461065257806388f465d91461065c5780638d17e712146106995780638da5cb5b146106d657806395d89b41146107015761020f565b806370a08231146105a5578063715018a6146105e2578063803930a9146105f9578063819b25ba146106365761020f565b80632bd7c0251161019b57806342842e0e1161016a57806342842e0e146104ae57806349a91ddb146104d757806355f804b3146105145780636352211e1461053d5780636c0360eb1461057a5761020f565b80632bd7c025146103db5780633575597d1461041857806340c10f191461045557806341797583146104715761020f565b8063119b2a20116101e2578063119b2a20146102e25780631495c18a1461031f57806318160ddd1461034a57806323b872dd1461037557806326a49e371461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612e96565b6108e2565b60405161024891906132da565b60405180910390f35b34801561025d57600080fd5b50610266610974565b60405161027391906132f5565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f2d565b610a06565b6040516102b09190613273565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612e5a565b610a82565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612f2d565b610bc3565b6040516103169190613273565b60405180910390f35b34801561032b57600080fd5b50610334610c02565b6040516103419190613273565b60405180910390f35b34801561035657600080fd5b5061035f610c28565b60405161036c9190613477565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190612d54565b610c3f565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612f2d565b610c4f565b6040516103d29190613477565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190612f2d565b610c66565b60405161040f9190613273565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190612cef565b610ca5565b60405161044c91906132da565b60405180910390f35b61046f600480360381019061046a9190612e5a565b610cc5565b005b34801561047d57600080fd5b5061049860048036038101906104939190612cef565b611255565b6040516104a591906132da565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612d54565b611275565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190612cef565b611295565b60405161050b91906132da565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612ee8565b6112b5565b005b34801561054957600080fd5b50610564600480360381019061055f9190612f2d565b6112d3565b6040516105719190613273565b60405180910390f35b34801561058657600080fd5b5061058f6112e5565b60405161059c91906132f5565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612cef565b611373565b6040516105d99190613477565b60405180910390f35b3480156105ee57600080fd5b506105f7611408565b005b34801561060557600080fd5b50610620600480360381019061061b9190612cef565b61141c565b60405161062d91906132da565b60405180910390f35b610650600480360381019061064b9190612f2d565b611472565b005b61065a611539565b005b34801561066857600080fd5b50610683600480360381019061067e9190612cef565b611581565b60405161069091906132da565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612f2d565b6115d7565b6040516106cd91906132f5565b60405180910390f35b3480156106e257600080fd5b506106eb611677565b6040516106f89190613273565b60405180910390f35b34801561070d57600080fd5b506107166116a1565b60405161072391906132f5565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612e1e565b611733565b005b34801561076157600080fd5b5061077c60048036038101906107779190612da3565b6118ab565b005b34801561078a57600080fd5b506107a560048036038101906107a09190612f2d565b61191e565b6040516107b291906132f5565b60405180910390f35b6107d560048036038101906107d09190612e5a565b6119c6565b005b3480156107e357600080fd5b506107ec611de6565b6040516107f99190613477565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612cef565b611dec565b60405161083691906132da565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190612da3565b611e42565b60405161087391906132da565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190612d18565b611fa2565b6040516108b091906132da565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190612cef565b612036565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098390613718565b80601f01602080910402602001604051908101604052809291908181526020018280546109af90613718565b80156109fc5780601f106109d1576101008083540402835291602001916109fc565b820191906000526020600020905b8154815290600101906020018083116109df57829003601f168201915b5050505050905090565b6000610a11826120ba565b610a47576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8d826112d3565b90508073ffffffffffffffffffffffffffffffffffffffff16610aae612119565b73ffffffffffffffffffffffffffffffffffffffff1614610b1157610ada81610ad5612119565b611fa2565b610b10576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60118181548110610bd357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c32612121565b6001546000540303905090565b610c4a838383612126565b505050565b600081600e54610c5f91906135c7565b9050919050565b60108181548110610c7657600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60136020528060005260406000206000915054906101000a900460ff1681565b600a5481610cd1610c28565b610cdb9190613540565b1115610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390613437565b60405180910390fd5b600a54610d27610c28565b10610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90613437565b60405180910390fd5b600b54421015610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da3906133d7565b60405180910390fd5b600181118015610e0c575060001515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15610f7a5760028114610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613457565b60405180910390fd5b610e69600182610e649190613621565b610c4f565b341015610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290613397565b60405180910390fd5b610ec58282604051806020016040528060008152506124ee565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611251565b600181148015610fda575060001515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b156110995760018114611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101990613457565b60405180910390fd5b61103c8282604051806020016040528060008152506124ee565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611250565b60011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611149575060001515601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b1561124f5760018114611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890613457565b60405180910390fd5b61119a81610c4f565b3410156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390613397565b60405180910390fd5b6111f68282604051806020016040528060008152506124ee565b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5b5050565b60156020528060005260406000206000915054906101000a900460ff1681565b611290838383604051806020016040528060008152506118ab565b505050565b60146020528060005260406000206000915054906101000a900460ff1681565b6112bd61258c565b8181600991906112ce929190612b1c565b505050565b60006112de8261260a565b9050919050565b600980546112f290613718565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90613718565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b505050505081565b60008061137f836126d8565b14156113b7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61141061258c565b61141a60006126e2565b565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61147a61258c565b600a5481611486610c28565b6114909190613540565b11156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613437565b60405180910390fd5b600a546114dc610c28565b1061151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390613437565b60405180910390fd5b6115363382604051806020016040528060008152506124ee565b50565b61154161258c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061157f57600080fd5b565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601260205280600052604060002060009150905080546115f690613718565b80601f016020809104026020016040519081016040528092919081815260200182805461162290613718565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116b090613718565b80601f01602080910402602001604051908101604052809291908181526020018280546116dc90613718565b80156117295780601f106116fe57610100808354040283529160200191611729565b820191906000526020600020905b81548152906001019060200180831161170c57829003601f168201915b5050505050905090565b61173b612119565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117ad612119565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661185a612119565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161189f91906132da565b60405180910390a35050565b6118b6848484612126565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611918576118e184848484611e42565b611917576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611929826120ba565b611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f906133f7565b60405180910390fd5b60006009805461197790613718565b90501161199357604051806020016040528060008152506119bf565b600961199e836127a8565b6040516020016119af92919061324f565b6040516020818303038152906040525b9050919050565b600d54421080156119d95750600c544210155b611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90613377565b60405180910390fd5b600a5481611a24610c28565b611a2e9190613540565b1115611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690613437565b60405180910390fd5b600a54611a7a610c28565b10611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190613437565b60405180910390fd5b60018114611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490613457565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb996844336040518263ffffffff1660e01b8152600401611b589190613273565b60206040518083038186803b158015611b7057600080fd5b505afa158015611b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba89190612f56565b60ff16811115611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490613317565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb996844336040518263ffffffff1660e01b8152600401611c4a9190613273565b60206040518083038186803b158015611c6257600080fd5b505afa158015611c76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9a9190612f56565b60ff1611611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613417565b60405180910390fd5b60001515601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790613357565b60405180910390fd5b611d8a8282604051806020016040528060008152506124ee565b6001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a5481565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e68612119565b8786866040518563ffffffff1660e01b8152600401611e8a949392919061328e565b602060405180830381600087803b158015611ea457600080fd5b505af1925050508015611ed557506040513d601f19601f82011682018060405250810190611ed29190612ebf565b60015b611f4f573d8060008114611f05576040519150601f19603f3d011682016040523d82523d6000602084013e611f0a565b606091505b50600081511415611f47576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61203e61258c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590613337565b60405180910390fd5b6120b7816126e2565b50565b6000816120c5612121565b111580156120d4575060005482105b8015612112575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60006121318261260a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612198576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166121f1612119565b73ffffffffffffffffffffffffffffffffffffffff161480612220575061221f8661221a612119565b611fa2565b5b8061225d575061222e612119565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080612296576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006122a1866126d8565b14156122d9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122e68686866001612955565b60006122f1836126d8565b1461232d576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6123f4876126d8565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561247e57600060018501905060006004600083815260200190815260200160002054141561247c57600054811461247b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e6868686600161295b565b505050505050565b6124f88383612961565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125875760006016549050600083820390505b6125396000868380600101945086611e42565b61256f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061252657816016541461258457600080fd5b50505b505050565b612594612b0a565b73ffffffffffffffffffffffffffffffffffffffff166125b2611677565b73ffffffffffffffffffffffffffffffffffffffff1614612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff906133b7565b60405180910390fd5b565b60008082905080612619612121565b116126a1576000548110156126a05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561269e575b6000811415612694576004600083600190039350838152602001908152602001600020549050612669565b80925050506126d3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b606060008214156127f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612950565b600082905060005b6000821461282257808061280b9061377b565b915050600a8261281b9190613596565b91506127f8565b60008167ffffffffffffffff811115612864577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128965781602001600182028036833780820191505090505b5090505b60008514612949576001826128af9190613621565b9150600a856128be91906137c4565b60306128ca9190613540565b60f81b818381518110612906577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129429190613596565b945061289a565b8093505050505b919050565b50505050565b50505050565b6000805490506000612972846126d8565b14156129aa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156129e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129f26000848385612955565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612a5760018414612b12565b901b60a042901b612a67856126d8565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4828110612a835782820160008190555050612b05600084838561295b565b505050565b600033905090565b6000819050919050565b828054612b2890613718565b90600052602060002090601f016020900481019282612b4a5760008555612b91565b82601f10612b6357803560ff1916838001178555612b91565b82800160010185558215612b91579182015b82811115612b90578235825591602001919060010190612b75565b5b509050612b9e9190612ba2565b5090565b5b80821115612bbb576000816000905550600101612ba3565b5090565b6000612bd2612bcd846134b7565b613492565b905082815260208101848484011115612bea57600080fd5b612bf58482856136d6565b509392505050565b600081359050612c0c81613b69565b92915050565b600081359050612c2181613b80565b92915050565b600081359050612c3681613b97565b92915050565b600081519050612c4b81613b97565b92915050565b600082601f830112612c6257600080fd5b8135612c72848260208601612bbf565b91505092915050565b60008083601f840112612c8d57600080fd5b8235905067ffffffffffffffff811115612ca657600080fd5b602083019150836001820283011115612cbe57600080fd5b9250929050565b600081359050612cd481613bae565b92915050565b600081519050612ce981613bc5565b92915050565b600060208284031215612d0157600080fd5b6000612d0f84828501612bfd565b91505092915050565b60008060408385031215612d2b57600080fd5b6000612d3985828601612bfd565b9250506020612d4a85828601612bfd565b9150509250929050565b600080600060608486031215612d6957600080fd5b6000612d7786828701612bfd565b9350506020612d8886828701612bfd565b9250506040612d9986828701612cc5565b9150509250925092565b60008060008060808587031215612db957600080fd5b6000612dc787828801612bfd565b9450506020612dd887828801612bfd565b9350506040612de987828801612cc5565b925050606085013567ffffffffffffffff811115612e0657600080fd5b612e1287828801612c51565b91505092959194509250565b60008060408385031215612e3157600080fd5b6000612e3f85828601612bfd565b9250506020612e5085828601612c12565b9150509250929050565b60008060408385031215612e6d57600080fd5b6000612e7b85828601612bfd565b9250506020612e8c85828601612cc5565b9150509250929050565b600060208284031215612ea857600080fd5b6000612eb684828501612c27565b91505092915050565b600060208284031215612ed157600080fd5b6000612edf84828501612c3c565b91505092915050565b60008060208385031215612efb57600080fd5b600083013567ffffffffffffffff811115612f1557600080fd5b612f2185828601612c7b565b92509250509250929050565b600060208284031215612f3f57600080fd5b6000612f4d84828501612cc5565b91505092915050565b600060208284031215612f6857600080fd5b6000612f7684828501612cda565b91505092915050565b612f8881613655565b82525050565b612f9781613667565b82525050565b6000612fa8826134fd565b612fb28185613513565b9350612fc28185602086016136e5565b612fcb816138b1565b840191505092915050565b6000612fe182613508565b612feb8185613524565b9350612ffb8185602086016136e5565b613004816138b1565b840191505092915050565b600061301a82613508565b6130248185613535565b93506130348185602086016136e5565b80840191505092915050565b6000815461304d81613718565b6130578186613535565b945060018216600081146130725760018114613083576130b6565b60ff198316865281860193506130b6565b61308c856134e8565b60005b838110156130ae5781548189015260018201915060208101905061308f565b838801955050505b50505092915050565b60006130cc603383613524565b91506130d7826138c2565b604082019050919050565b60006130ef602683613524565b91506130fa82613911565b604082019050919050565b6000613112602b83613524565b915061311d82613960565b604082019050919050565b6000613135601683613524565b9150613140826139af565b602082019050919050565b6000613158601983613524565b9150613163826139d8565b602082019050919050565b600061317b602083613524565b915061318682613a01565b602082019050919050565b600061319e601a83613524565b91506131a982613a2a565b602082019050919050565b60006131c1602f83613524565b91506131cc82613a53565b604082019050919050565b60006131e4602283613524565b91506131ef82613aa2565b604082019050919050565b6000613207601f83613524565b915061321282613af1565b602082019050919050565b600061322a602483613524565b915061323582613b1a565b604082019050919050565b613249816136bf565b82525050565b600061325b8285613040565b9150613267828461300f565b91508190509392505050565b60006020820190506132886000830184612f7f565b92915050565b60006080820190506132a36000830187612f7f565b6132b06020830186612f7f565b6132bd6040830185613240565b81810360608301526132cf8184612f9d565b905095945050505050565b60006020820190506132ef6000830184612f8e565b92915050565b6000602082019050818103600083015261330f8184612fd6565b905092915050565b60006020820190508181036000830152613330816130bf565b9050919050565b60006020820190508181036000830152613350816130e2565b9050919050565b6000602082019050818103600083015261337081613105565b9050919050565b6000602082019050818103600083015261339081613128565b9050919050565b600060208201905081810360008301526133b08161314b565b9050919050565b600060208201905081810360008301526133d08161316e565b9050919050565b600060208201905081810360008301526133f081613191565b9050919050565b60006020820190508181036000830152613410816131b4565b9050919050565b60006020820190508181036000830152613430816131d7565b9050919050565b60006020820190508181036000830152613450816131fa565b9050919050565b600060208201905081810360008301526134708161321d565b9050919050565b600060208201905061348c6000830184613240565b92915050565b600061349c6134ad565b90506134a8828261374a565b919050565b6000604051905090565b600067ffffffffffffffff8211156134d2576134d1613882565b5b6134db826138b1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061354b826136bf565b9150613556836136bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561358b5761358a6137f5565b5b828201905092915050565b60006135a1826136bf565b91506135ac836136bf565b9250826135bc576135bb613824565b5b828204905092915050565b60006135d2826136bf565b91506135dd836136bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613616576136156137f5565b5b828202905092915050565b600061362c826136bf565b9150613637836136bf565b92508282101561364a576136496137f5565b5b828203905092915050565b60006136608261369f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156137035780820151818401526020810190506136e8565b83811115613712576000848401525b50505050565b6000600282049050600182168061373057607f821691505b6020821081141561374457613743613853565b5b50919050565b613753826138b1565b810181811067ffffffffffffffff8211171561377257613771613882565b5b80604052505050565b6000613786826136bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137b9576137b86137f5565b5b600182019050919050565b60006137cf826136bf565b91506137da836136bf565b9250826137ea576137e9613824565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f436c6f776e733a204578636565647320746865206d617820796f752063616e2060008201527f6d696e7420696e207468652070726573616c6500000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f436c6f776e733a20596f7520616c7265616479206d696e7465642066726f6d2060008201527f7468652070726573616c65000000000000000000000000000000000000000000602082015250565b7f436c6f776e733a2050726573616c6520656e6465642100000000000000000000600082015250565b7f436c6f776e733a2056616c75652062656c6f7720707269636500000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436c6f776e733a204e6f742073616c652074696d652079657421000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436c6f776e733a20596f7520617265206e6f7420696e2074686520707265736160008201527f6c65000000000000000000000000000000000000000000000000000000000000602082015250565b7f436c6f776e733a204e6f7420656e6f756768206c65667420746f206d696e7400600082015250565b7f436c6f776e733a204578636565647320746865206d617820796f752063616e2060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b613b7281613655565b8114613b7d57600080fd5b50565b613b8981613667565b8114613b9457600080fd5b50565b613ba081613673565b8114613bab57600080fd5b50565b613bb7816136bf565b8114613bc257600080fd5b50565b613bce816136c9565b8114613bd957600080fd5b5056fea264697066735822122064557eb1b4fffa384b5fc0a87a345eda1807ece2be7eb2c9e024e78100da300b64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000006f7052c7f8fdde8d3381d0963756b6627ebff9cc000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f636c6f776e73717561642e6c6f6c2f6d6574612f00000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063a22cb465116100a0578063d49d51811161006f578063d49d5181146107d7578063d7e28e3014610802578063d88343e21461083f578063e985e9c51461087c578063f2fde38b146108b95761020f565b8063a22cb4651461072c578063b88d4fde14610755578063c87b56dd1461077e578063cca5caf8146107bb5761020f565b8063853828b6116100e7578063853828b61461065257806388f465d91461065c5780638d17e712146106995780638da5cb5b146106d657806395d89b41146107015761020f565b806370a08231146105a5578063715018a6146105e2578063803930a9146105f9578063819b25ba146106365761020f565b80632bd7c0251161019b57806342842e0e1161016a57806342842e0e146104ae57806349a91ddb146104d757806355f804b3146105145780636352211e1461053d5780636c0360eb1461057a5761020f565b80632bd7c025146103db5780633575597d1461041857806340c10f191461045557806341797583146104715761020f565b8063119b2a20116101e2578063119b2a20146102e25780631495c18a1461031f57806318160ddd1461034a57806323b872dd1461037557806326a49e371461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612e96565b6108e2565b60405161024891906132da565b60405180910390f35b34801561025d57600080fd5b50610266610974565b60405161027391906132f5565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f2d565b610a06565b6040516102b09190613273565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612e5a565b610a82565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612f2d565b610bc3565b6040516103169190613273565b60405180910390f35b34801561032b57600080fd5b50610334610c02565b6040516103419190613273565b60405180910390f35b34801561035657600080fd5b5061035f610c28565b60405161036c9190613477565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190612d54565b610c3f565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612f2d565b610c4f565b6040516103d29190613477565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190612f2d565b610c66565b60405161040f9190613273565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190612cef565b610ca5565b60405161044c91906132da565b60405180910390f35b61046f600480360381019061046a9190612e5a565b610cc5565b005b34801561047d57600080fd5b5061049860048036038101906104939190612cef565b611255565b6040516104a591906132da565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612d54565b611275565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190612cef565b611295565b60405161050b91906132da565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612ee8565b6112b5565b005b34801561054957600080fd5b50610564600480360381019061055f9190612f2d565b6112d3565b6040516105719190613273565b60405180910390f35b34801561058657600080fd5b5061058f6112e5565b60405161059c91906132f5565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612cef565b611373565b6040516105d99190613477565b60405180910390f35b3480156105ee57600080fd5b506105f7611408565b005b34801561060557600080fd5b50610620600480360381019061061b9190612cef565b61141c565b60405161062d91906132da565b60405180910390f35b610650600480360381019061064b9190612f2d565b611472565b005b61065a611539565b005b34801561066857600080fd5b50610683600480360381019061067e9190612cef565b611581565b60405161069091906132da565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612f2d565b6115d7565b6040516106cd91906132f5565b60405180910390f35b3480156106e257600080fd5b506106eb611677565b6040516106f89190613273565b60405180910390f35b34801561070d57600080fd5b506107166116a1565b60405161072391906132f5565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612e1e565b611733565b005b34801561076157600080fd5b5061077c60048036038101906107779190612da3565b6118ab565b005b34801561078a57600080fd5b506107a560048036038101906107a09190612f2d565b61191e565b6040516107b291906132f5565b60405180910390f35b6107d560048036038101906107d09190612e5a565b6119c6565b005b3480156107e357600080fd5b506107ec611de6565b6040516107f99190613477565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612cef565b611dec565b60405161083691906132da565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190612da3565b611e42565b60405161087391906132da565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190612d18565b611fa2565b6040516108b091906132da565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190612cef565b612036565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098390613718565b80601f01602080910402602001604051908101604052809291908181526020018280546109af90613718565b80156109fc5780601f106109d1576101008083540402835291602001916109fc565b820191906000526020600020905b8154815290600101906020018083116109df57829003601f168201915b5050505050905090565b6000610a11826120ba565b610a47576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8d826112d3565b90508073ffffffffffffffffffffffffffffffffffffffff16610aae612119565b73ffffffffffffffffffffffffffffffffffffffff1614610b1157610ada81610ad5612119565b611fa2565b610b10576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60118181548110610bd357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c32612121565b6001546000540303905090565b610c4a838383612126565b505050565b600081600e54610c5f91906135c7565b9050919050565b60108181548110610c7657600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60136020528060005260406000206000915054906101000a900460ff1681565b600a5481610cd1610c28565b610cdb9190613540565b1115610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390613437565b60405180910390fd5b600a54610d27610c28565b10610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90613437565b60405180910390fd5b600b54421015610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da3906133d7565b60405180910390fd5b600181118015610e0c575060001515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15610f7a5760028114610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613457565b60405180910390fd5b610e69600182610e649190613621565b610c4f565b341015610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290613397565b60405180910390fd5b610ec58282604051806020016040528060008152506124ee565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611251565b600181148015610fda575060001515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b156110995760018114611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101990613457565b60405180910390fd5b61103c8282604051806020016040528060008152506124ee565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611250565b60011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611149575060001515601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b1561124f5760018114611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890613457565b60405180910390fd5b61119a81610c4f565b3410156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390613397565b60405180910390fd5b6111f68282604051806020016040528060008152506124ee565b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5b5050565b60156020528060005260406000206000915054906101000a900460ff1681565b611290838383604051806020016040528060008152506118ab565b505050565b60146020528060005260406000206000915054906101000a900460ff1681565b6112bd61258c565b8181600991906112ce929190612b1c565b505050565b60006112de8261260a565b9050919050565b600980546112f290613718565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90613718565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b505050505081565b60008061137f836126d8565b14156113b7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61141061258c565b61141a60006126e2565b565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61147a61258c565b600a5481611486610c28565b6114909190613540565b11156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613437565b60405180910390fd5b600a546114dc610c28565b1061151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390613437565b60405180910390fd5b6115363382604051806020016040528060008152506124ee565b50565b61154161258c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061157f57600080fd5b565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601260205280600052604060002060009150905080546115f690613718565b80601f016020809104026020016040519081016040528092919081815260200182805461162290613718565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116b090613718565b80601f01602080910402602001604051908101604052809291908181526020018280546116dc90613718565b80156117295780601f106116fe57610100808354040283529160200191611729565b820191906000526020600020905b81548152906001019060200180831161170c57829003601f168201915b5050505050905090565b61173b612119565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117ad612119565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661185a612119565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161189f91906132da565b60405180910390a35050565b6118b6848484612126565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611918576118e184848484611e42565b611917576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611929826120ba565b611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f906133f7565b60405180910390fd5b60006009805461197790613718565b90501161199357604051806020016040528060008152506119bf565b600961199e836127a8565b6040516020016119af92919061324f565b6040516020818303038152906040525b9050919050565b600d54421080156119d95750600c544210155b611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90613377565b60405180910390fd5b600a5481611a24610c28565b611a2e9190613540565b1115611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690613437565b60405180910390fd5b600a54611a7a610c28565b10611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190613437565b60405180910390fd5b60018114611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490613457565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb996844336040518263ffffffff1660e01b8152600401611b589190613273565b60206040518083038186803b158015611b7057600080fd5b505afa158015611b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba89190612f56565b60ff16811115611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be490613317565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bb996844336040518263ffffffff1660e01b8152600401611c4a9190613273565b60206040518083038186803b158015611c6257600080fd5b505afa158015611c76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9a9190612f56565b60ff1611611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613417565b60405180910390fd5b60001515601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790613357565b60405180910390fd5b611d8a8282604051806020016040528060008152506124ee565b6001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a5481565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e68612119565b8786866040518563ffffffff1660e01b8152600401611e8a949392919061328e565b602060405180830381600087803b158015611ea457600080fd5b505af1925050508015611ed557506040513d601f19601f82011682018060405250810190611ed29190612ebf565b60015b611f4f573d8060008114611f05576040519150601f19603f3d011682016040523d82523d6000602084013e611f0a565b606091505b50600081511415611f47576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61203e61258c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590613337565b60405180910390fd5b6120b7816126e2565b50565b6000816120c5612121565b111580156120d4575060005482105b8015612112575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60006121318261260a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612198576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166121f1612119565b73ffffffffffffffffffffffffffffffffffffffff161480612220575061221f8661221a612119565b611fa2565b5b8061225d575061222e612119565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080612296576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006122a1866126d8565b14156122d9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122e68686866001612955565b60006122f1836126d8565b1461232d576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6123f4876126d8565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561247e57600060018501905060006004600083815260200190815260200160002054141561247c57600054811461247b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e6868686600161295b565b505050505050565b6124f88383612961565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125875760006016549050600083820390505b6125396000868380600101945086611e42565b61256f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061252657816016541461258457600080fd5b50505b505050565b612594612b0a565b73ffffffffffffffffffffffffffffffffffffffff166125b2611677565b73ffffffffffffffffffffffffffffffffffffffff1614612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff906133b7565b60405180910390fd5b565b60008082905080612619612121565b116126a1576000548110156126a05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561269e575b6000811415612694576004600083600190039350838152602001908152602001600020549050612669565b80925050506126d3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b606060008214156127f0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612950565b600082905060005b6000821461282257808061280b9061377b565b915050600a8261281b9190613596565b91506127f8565b60008167ffffffffffffffff811115612864577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128965781602001600182028036833780820191505090505b5090505b60008514612949576001826128af9190613621565b9150600a856128be91906137c4565b60306128ca9190613540565b60f81b818381518110612906577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129429190613596565b945061289a565b8093505050505b919050565b50505050565b50505050565b6000805490506000612972846126d8565b14156129aa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156129e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129f26000848385612955565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612a5760018414612b12565b901b60a042901b612a67856126d8565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4828110612a835782820160008190555050612b05600084838561295b565b505050565b600033905090565b6000819050919050565b828054612b2890613718565b90600052602060002090601f016020900481019282612b4a5760008555612b91565b82601f10612b6357803560ff1916838001178555612b91565b82800160010185558215612b91579182015b82811115612b90578235825591602001919060010190612b75565b5b509050612b9e9190612ba2565b5090565b5b80821115612bbb576000816000905550600101612ba3565b5090565b6000612bd2612bcd846134b7565b613492565b905082815260208101848484011115612bea57600080fd5b612bf58482856136d6565b509392505050565b600081359050612c0c81613b69565b92915050565b600081359050612c2181613b80565b92915050565b600081359050612c3681613b97565b92915050565b600081519050612c4b81613b97565b92915050565b600082601f830112612c6257600080fd5b8135612c72848260208601612bbf565b91505092915050565b60008083601f840112612c8d57600080fd5b8235905067ffffffffffffffff811115612ca657600080fd5b602083019150836001820283011115612cbe57600080fd5b9250929050565b600081359050612cd481613bae565b92915050565b600081519050612ce981613bc5565b92915050565b600060208284031215612d0157600080fd5b6000612d0f84828501612bfd565b91505092915050565b60008060408385031215612d2b57600080fd5b6000612d3985828601612bfd565b9250506020612d4a85828601612bfd565b9150509250929050565b600080600060608486031215612d6957600080fd5b6000612d7786828701612bfd565b9350506020612d8886828701612bfd565b9250506040612d9986828701612cc5565b9150509250925092565b60008060008060808587031215612db957600080fd5b6000612dc787828801612bfd565b9450506020612dd887828801612bfd565b9350506040612de987828801612cc5565b925050606085013567ffffffffffffffff811115612e0657600080fd5b612e1287828801612c51565b91505092959194509250565b60008060408385031215612e3157600080fd5b6000612e3f85828601612bfd565b9250506020612e5085828601612c12565b9150509250929050565b60008060408385031215612e6d57600080fd5b6000612e7b85828601612bfd565b9250506020612e8c85828601612cc5565b9150509250929050565b600060208284031215612ea857600080fd5b6000612eb684828501612c27565b91505092915050565b600060208284031215612ed157600080fd5b6000612edf84828501612c3c565b91505092915050565b60008060208385031215612efb57600080fd5b600083013567ffffffffffffffff811115612f1557600080fd5b612f2185828601612c7b565b92509250509250929050565b600060208284031215612f3f57600080fd5b6000612f4d84828501612cc5565b91505092915050565b600060208284031215612f6857600080fd5b6000612f7684828501612cda565b91505092915050565b612f8881613655565b82525050565b612f9781613667565b82525050565b6000612fa8826134fd565b612fb28185613513565b9350612fc28185602086016136e5565b612fcb816138b1565b840191505092915050565b6000612fe182613508565b612feb8185613524565b9350612ffb8185602086016136e5565b613004816138b1565b840191505092915050565b600061301a82613508565b6130248185613535565b93506130348185602086016136e5565b80840191505092915050565b6000815461304d81613718565b6130578186613535565b945060018216600081146130725760018114613083576130b6565b60ff198316865281860193506130b6565b61308c856134e8565b60005b838110156130ae5781548189015260018201915060208101905061308f565b838801955050505b50505092915050565b60006130cc603383613524565b91506130d7826138c2565b604082019050919050565b60006130ef602683613524565b91506130fa82613911565b604082019050919050565b6000613112602b83613524565b915061311d82613960565b604082019050919050565b6000613135601683613524565b9150613140826139af565b602082019050919050565b6000613158601983613524565b9150613163826139d8565b602082019050919050565b600061317b602083613524565b915061318682613a01565b602082019050919050565b600061319e601a83613524565b91506131a982613a2a565b602082019050919050565b60006131c1602f83613524565b91506131cc82613a53565b604082019050919050565b60006131e4602283613524565b91506131ef82613aa2565b604082019050919050565b6000613207601f83613524565b915061321282613af1565b602082019050919050565b600061322a602483613524565b915061323582613b1a565b604082019050919050565b613249816136bf565b82525050565b600061325b8285613040565b9150613267828461300f565b91508190509392505050565b60006020820190506132886000830184612f7f565b92915050565b60006080820190506132a36000830187612f7f565b6132b06020830186612f7f565b6132bd6040830185613240565b81810360608301526132cf8184612f9d565b905095945050505050565b60006020820190506132ef6000830184612f8e565b92915050565b6000602082019050818103600083015261330f8184612fd6565b905092915050565b60006020820190508181036000830152613330816130bf565b9050919050565b60006020820190508181036000830152613350816130e2565b9050919050565b6000602082019050818103600083015261337081613105565b9050919050565b6000602082019050818103600083015261339081613128565b9050919050565b600060208201905081810360008301526133b08161314b565b9050919050565b600060208201905081810360008301526133d08161316e565b9050919050565b600060208201905081810360008301526133f081613191565b9050919050565b60006020820190508181036000830152613410816131b4565b9050919050565b60006020820190508181036000830152613430816131d7565b9050919050565b60006020820190508181036000830152613450816131fa565b9050919050565b600060208201905081810360008301526134708161321d565b9050919050565b600060208201905061348c6000830184613240565b92915050565b600061349c6134ad565b90506134a8828261374a565b919050565b6000604051905090565b600067ffffffffffffffff8211156134d2576134d1613882565b5b6134db826138b1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061354b826136bf565b9150613556836136bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561358b5761358a6137f5565b5b828201905092915050565b60006135a1826136bf565b91506135ac836136bf565b9250826135bc576135bb613824565b5b828204905092915050565b60006135d2826136bf565b91506135dd836136bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613616576136156137f5565b5b828202905092915050565b600061362c826136bf565b9150613637836136bf565b92508282101561364a576136496137f5565b5b828203905092915050565b60006136608261369f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156137035780820151818401526020810190506136e8565b83811115613712576000848401525b50505050565b6000600282049050600182168061373057607f821691505b6020821081141561374457613743613853565b5b50919050565b613753826138b1565b810181811067ffffffffffffffff8211171561377257613771613882565b5b80604052505050565b6000613786826136bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137b9576137b86137f5565b5b600182019050919050565b60006137cf826136bf565b91506137da836136bf565b9250826137ea576137e9613824565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f436c6f776e733a204578636565647320746865206d617820796f752063616e2060008201527f6d696e7420696e207468652070726573616c6500000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f436c6f776e733a20596f7520616c7265616479206d696e7465642066726f6d2060008201527f7468652070726573616c65000000000000000000000000000000000000000000602082015250565b7f436c6f776e733a2050726573616c6520656e6465642100000000000000000000600082015250565b7f436c6f776e733a2056616c75652062656c6f7720707269636500000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436c6f776e733a204e6f742073616c652074696d652079657421000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436c6f776e733a20596f7520617265206e6f7420696e2074686520707265736160008201527f6c65000000000000000000000000000000000000000000000000000000000000602082015250565b7f436c6f776e733a204e6f7420656e6f756768206c65667420746f206d696e7400600082015250565b7f436c6f776e733a204578636565647320746865206d617820796f752063616e2060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b613b7281613655565b8114613b7d57600080fd5b50565b613b8981613667565b8114613b9457600080fd5b50565b613ba081613673565b8114613bab57600080fd5b50565b613bb7816136bf565b8114613bc257600080fd5b50565b613bce816136c9565b8114613bd957600080fd5b5056fea264697066735822122064557eb1b4fffa384b5fc0a87a345eda1807ece2be7eb2c9e024e78100da300b64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000006f7052c7f8fdde8d3381d0963756b6627ebff9cc000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f636c6f776e73717561642e6c6f6c2f6d6574612f00000000

-----Decoded View---------------
Arg [0] : _initialBaseURI (string): https://clownsquad.lol/meta/
Arg [1] : presaleContract (address): 0x6f7052c7f8FdDe8D3381D0963756B6627eBFF9Cc

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000006f7052c7f8fdde8d3381d0963756b6627ebff9cc
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [3] : 68747470733a2f2f636c6f776e73717561642e6c6f6c2f6d6574612f00000000


Deployed Bytecode Sourcemap

43741:6614:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18429:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23465:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25449:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24997:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44100:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44027:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17483:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26335:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45049:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44062:34;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44198:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45156:1236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44296:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26576:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44245:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44642:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23254:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43822:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19108:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10653:103;;;;;;;;;;;;;:::i;:::-;;47704:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47418:278;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50229:123;;;:::i;:::-;;47822:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44147:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10005:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23634:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25725:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26832:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44752:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46400:884;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43850:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47292:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49497:724;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26104:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10911:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18429:615;18514:4;18829:10;18814:25;;:11;:25;;;;:102;;;;18906:10;18891:25;;:11;:25;;;;18814:102;:179;;;;18983:10;18968:25;;:11;:25;;;;18814:179;18794:199;;18429:615;;;:::o;23465:100::-;23519:13;23552:5;23545:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23465:100;:::o;25449:204::-;25517:7;25542:16;25550:7;25542;:16::i;:::-;25537:64;;25567:34;;;;;;;;;;;;;;25537:64;25621:15;:24;25637:7;25621:24;;;;;;;;;;;;;;;;;;;;;25614:31;;25449:204;;;:::o;24997:386::-;25070:13;25086:16;25094:7;25086;:16::i;:::-;25070:32;;25142:5;25119:28;;:19;:17;:19::i;:::-;:28;;;25115:175;;25167:44;25184:5;25191:19;:17;:19::i;:::-;25167:16;:44::i;:::-;25162:128;;25239:35;;;;;;;;;;;;;;25162:128;25115:175;25329:2;25302:15;:24;25318:7;25302:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25367:7;25363:2;25347:28;;25356:5;25347:28;;;;;;;;;;;;24997:386;;;:::o;44100:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44027:31::-;;;;;;;;;;;;;:::o;17483:315::-;17536:7;17764:15;:13;:15::i;:::-;17749:12;;17733:13;;:28;:46;17726:53;;17483:315;:::o;26335:170::-;26469:28;26479:4;26485:2;26489:7;26469:9;:28::i;:::-;26335:170;;;:::o;45049:99::-;45098:7;45134:6;45125;;:15;;;;:::i;:::-;45118:22;;45049:99;;;:::o;44062:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44198:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;45156:1236::-;45262:3;;45250:8;45234:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:31;;45226:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;45336:3;;45320:13;:11;:13::i;:::-;:19;45312:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45413:9;;45394:15;:28;;45386:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45481:1;45470:8;:12;:45;;;;;45510:5;45486:29;;:8;:20;45495:10;45486:20;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;45470:45;45466:919;;;45552:1;45540:8;:13;45532:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45630:17;45645:1;45636:8;:10;;;;:::i;:::-;45630:5;:17::i;:::-;45617:9;:30;;45609:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45692:27;45702:2;45706:8;45692:27;;;;;;;;;;;;:9;:27::i;:::-;45757:4;45734:8;:20;45743:10;45734:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;45803:4;45776:12;:24;45789:10;45776:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;45466:919;;;45841:1;45829:8;:13;:46;;;;;45870:5;45846:29;;:8;:20;45855:10;45846:20;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;45829:46;45825:560;;;45912:1;45900:8;:13;45892:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45969:27;45979:2;45983:8;45969:27;;;;;;;;;;;;:9;:27::i;:::-;46034:4;46011:8;:20;46020:10;46011:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;45825:560;;;46084:4;46060:28;;:8;:20;46069:10;46060:20;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;:65;;;;;46120:5;46092:33;;:12;:24;46105:10;46092:24;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;46060:65;46056:329;;;46162:1;46150:8;:13;46142:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46240:15;46246:8;46240:5;:15::i;:::-;46227:9;:28;;46219:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46300:27;46310:2;46314:8;46300:27;;;;;;;;;;;;:9;:27::i;:::-;46369:4;46342:12;:24;46355:10;46342:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;46056:329;45825:560;45466:919;45156:1236;;:::o;44296:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;26576:185::-;26714:39;26731:4;26737:2;26741:7;26714:39;;;;;;;;;;;;:16;:39::i;:::-;26576:185;;;:::o;44245:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;44642:102::-;9891:13;:11;:13::i;:::-;44728:8:::1;;44718:7;:18;;;;;;;:::i;:::-;;44642:102:::0;;:::o;23254:144::-;23318:7;23361:27;23380:7;23361:18;:27::i;:::-;23338:52;;23254:144;;;:::o;43822:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19108:234::-;19172:7;19224:1;19196:24;19214:5;19196:17;:24::i;:::-;:29;19192:70;;;19234:28;;;;;;;;;;;;;;19192:70;14453:13;19280:18;:25;19299:5;19280:25;;;;;;;;;;;;;;;;:54;19273:61;;19108:234;;;:::o;10653:103::-;9891:13;:11;:13::i;:::-;10718:30:::1;10745:1;10718:18;:30::i;:::-;10653:103::o:0;47704:110::-;47768:4;47792:8;:14;47801:4;47792:14;;;;;;;;;;;;;;;;;;;;;;;;;47785:21;;47704:110;;;:::o;47418:278::-;9891:13;:11;:13::i;:::-;47525:3:::1;;47513:8;47497:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:31;;47489:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;47599:3;;47583:13;:11;:13::i;:::-;:19;47575:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47651:35;47661:10;47673:8;47651:35;;;;;;;;;;;::::0;:9:::1;:35::i;:::-;47418:278:::0;:::o;50229:123::-;9891:13;:11;:13::i;:::-;50304:10:::1;50296:24;;:47;50321:21;50296:47;;;;;;;;;;;;;;;;;;;;;;;50288:56;;;::::0;::::1;;50229:123::o:0;47822:104::-;47876:4;47900:12;:18;47913:4;47900:18;;;;;;;;;;;;;;;;;;;;;;;;;47893:25;;47822:104;;;:::o;44147:44::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10005:87::-;10051:7;10078:6;;;;;;;;;;;10071:13;;10005:87;:::o;23634:104::-;23690:13;23723:7;23716:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23634:104;:::o;25725:308::-;25836:19;:17;:19::i;:::-;25824:31;;:8;:31;;;25820:61;;;25864:17;;;;;;;;;;;;;;25820:61;25946:8;25894:18;:39;25913:19;:17;:19::i;:::-;25894:39;;;;;;;;;;;;;;;:49;25934:8;25894:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26006:8;25970:55;;25985:19;:17;:19::i;:::-;25970:55;;;26016:8;25970:55;;;;;;:::i;:::-;;;;;;;;25725:308;;:::o;26832:396::-;26999:28;27009:4;27015:2;27019:7;26999:9;:28::i;:::-;27060:1;27042:2;:14;;;:19;27038:183;;27081:56;27112:4;27118:2;27122:7;27131:5;27081:30;:56::i;:::-;27076:145;;27165:40;;;;;;;;;;;;;;27076:145;27038:183;26832:396;;;;:::o;44752:289::-;44825:13;44859:16;44867:7;44859;:16::i;:::-;44851:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44971:1;44953:7;44947:21;;;;;:::i;:::-;;;:25;:86;;;;;;;;;;;;;;;;;44999:7;45008:18;:7;:16;:18::i;:::-;44982:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44947:86;44940:93;;44752:289;;;:::o;46400:884::-;46507:15;;46489;:33;:68;;;;;46545:12;;46526:15;:31;;46489:68;46481:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;46631:3;;46619:8;46603:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:31;;46595:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;46705:3;;46689:13;:11;:13::i;:::-;:19;46681:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46775:1;46763:8;:13;46755:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46861:16;;;;;;;;;;;46848:42;;;46891:10;46848:54;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46836:66;;:8;:66;;46828:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;47034:1;46990:16;;;;;;;;;;;46977:42;;;47020:10;46977:54;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;;;46969:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;47130:5;47093:42;;:21;:33;47115:10;47093:33;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;47085:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;47196:27;47206:2;47210:8;47196:27;;;;;;;;;;;;:9;:27::i;:::-;47270:4;47234:21;:33;47256:10;47234:33;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;46400:884;;:::o;43850:25::-;;;;:::o;47292:118::-;47351:4;47375:21;:27;47397:4;47375:27;;;;;;;;;;;;;;;;;;;;;;;;;47368:34;;47292:118;;;:::o;49497:724::-;49668:4;49714:2;49689:45;;;49735:19;:17;:19::i;:::-;49756:4;49762:7;49771:5;49689:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49685:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49989:1;49972:6;:13;:18;49968:235;;;50018:40;;;;;;;;;;;;;;49968:235;50161:6;50155:13;50146:6;50142:2;50138:15;50131:38;49685:529;49858:54;;;49848:64;;;:6;:64;;;;49841:71;;;49497:724;;;;;;:::o;26104:164::-;26201:4;26225:18;:25;26244:5;26225:25;;;;;;;;;;;;;;;:35;26251:8;26225:35;;;;;;;;;;;;;;;;;;;;;;;;;26218:42;;26104:164;;;;:::o;10911:201::-;9891:13;:11;:13::i;:::-;11020:1:::1;11000:22;;:8;:22;;;;10992:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11076:28;11095:8;11076:18;:28::i;:::-;10911:201:::0;:::o;27483:273::-;27540:4;27596:7;27577:15;:13;:15::i;:::-;:26;;:66;;;;;27630:13;;27620:7;:23;27577:66;:152;;;;;27728:1;15223:8;27681:17;:26;27699:7;27681:26;;;;;;;;;;;;:43;:48;27577:152;27557:172;;27483:273;;;:::o;40174:105::-;40234:7;40261:10;40254:17;;40174:105;:::o;17007:92::-;17063:7;17007:92;:::o;31159:2654::-;31274:27;31304;31323:7;31304:18;:27::i;:::-;31274:57;;31389:4;31348:45;;31364:19;31348:45;;;31344:86;;31402:28;;;;;;;;;;;;;;31344:86;31443:23;31469:15;:24;31485:7;31469:24;;;;;;;;;;;;;;;;;;;;;31443:50;;31506:22;31555:4;31532:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31576:43;31593:4;31599:19;:17;:19::i;:::-;31576:16;:43::i;:::-;31532:87;:142;;;;31655:19;:17;:19::i;:::-;31636:38;;:15;:38;;;31532:142;31506:169;;31693:17;31688:66;;31719:35;;;;;;;;;;;;;;31688:66;31794:1;31769:21;31787:2;31769:17;:21::i;:::-;:26;31765:62;;;31804:23;;;;;;;;;;;;;;31765:62;31840:43;31862:4;31868:2;31872:7;31881:1;31840:21;:43::i;:::-;31991:1;31953:34;31971:15;31953:17;:34::i;:::-;:39;31949:103;;32016:15;:24;32032:7;32016:24;;;;;;;;;;;;32009:31;;;;;;;;;;;31949:103;32419:18;:24;32438:4;32419:24;;;;;;;;;;;;;;;;32417:26;;;;;;;;;;;;32488:18;:22;32507:2;32488:22;;;;;;;;;;;;;;;;32486:24;;;;;;;;;;;15501:8;15107:3;32869:15;:41;;32827:21;32845:2;32827:17;:21::i;:::-;:84;:128;32781:17;:26;32799:7;32781:26;;;;;;;;;;;:174;;;;33125:1;15501:8;33075:19;:46;:51;33071:626;;;33147:19;33179:1;33169:7;:11;33147:33;;33336:1;33302:17;:30;33320:11;33302:30;;;;;;;;;;;;:35;33298:384;;;33440:13;;33425:11;:28;33421:242;;33620:19;33587:17;:30;33605:11;33587:30;;;;;;;;;;;:52;;;;33421:242;33298:384;33071:626;;33744:7;33740:2;33725:27;;33734:4;33725:27;;;;;;;;;;;;33763:42;33784:4;33790:2;33794:7;33803:1;33763:20;:42::i;:::-;31159:2654;;;;;;:::o;48313:692::-;48447:19;48453:2;48457:8;48447:5;:19::i;:::-;48526:1;48508:2;:14;;;:19;48504:483;;48548:11;48562:13;;48548:27;;48594:13;48616:8;48610:3;:14;48594:30;;48643:233;48674:62;48713:1;48717:2;48721:7;;;;;;48730:5;48674:30;:62::i;:::-;48669:167;;48772:40;;;;;;;;;;;;;;48669:167;48871:3;48863:5;:11;48643:233;;48958:3;48941:13;;:20;48937:34;;48963:8;;;48937:34;48504:483;;;48313:692;;;:::o;10170:132::-;10245:12;:10;:12::i;:::-;10234:23;;:7;:5;:7::i;:::-;:23;;;10226:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10170:132::o;20769:1129::-;20836:7;20856:12;20871:7;20856:22;;20939:4;20920:15;:13;:15::i;:::-;:23;20916:915;;20973:13;;20966:4;:20;20962:869;;;21011:14;21028:17;:23;21046:4;21028:23;;;;;;;;;;;;21011:40;;21144:1;15223:8;21117:6;:23;:28;21113:699;;;21636:113;21653:1;21643:6;:11;21636:113;;;21696:17;:25;21714:6;;;;;;;21696:25;;;;;;;;;;;;21687:34;;21636:113;;;21782:6;21775:13;;;;;;21113:699;20962:869;;20916:915;21859:31;;;;;;;;;;;;;;20769:1129;;;;:::o;24558:148::-;24622:14;24683:5;24673:15;;24658:41;;;:::o;11272:191::-;11346:16;11365:6;;;;;;;;;;;11346:25;;11391:8;11382:6;;:17;;;;;;;;;;;;;;;;;;11446:8;11415:40;;11436:8;11415:40;;;;;;;;;;;;11272:191;;:::o;11746:723::-;11802:13;12032:1;12023:5;:10;12019:53;;;12050:10;;;;;;;;;;;;;;;;;;;;;12019:53;12082:12;12097:5;12082:20;;12113:14;12138:78;12153:1;12145:4;:9;12138:78;;12171:8;;;;;:::i;:::-;;;;12202:2;12194:10;;;;;:::i;:::-;;;12138:78;;;12226:19;12258:6;12248:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12226:39;;12276:154;12292:1;12283:5;:10;12276:154;;12320:1;12310:11;;;;;:::i;:::-;;;12387:2;12379:5;:10;;;;:::i;:::-;12366:2;:24;;;;:::i;:::-;12353:39;;12336:6;12343;12336:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;12416:2;12407:11;;;;;:::i;:::-;;;12276:154;;;12454:6;12440:21;;;;;11746:723;;;;:::o;39007:159::-;;;;;:::o;39825:158::-;;;;;:::o;29295:1610::-;29360:20;29383:13;;29360:36;;29436:1;29411:21;29429:2;29411:17;:21::i;:::-;:26;29407:58;;;29446:19;;;;;;;;;;;;;;29407:58;29492:1;29480:8;:13;29476:44;;;29502:18;;;;;;;;;;;;;;29476:44;29533:61;29563:1;29567:2;29571:12;29585:8;29533:21;:61::i;:::-;30137:1;14590:2;30108:1;:25;;30107:31;30095:8;:44;30069:18;:22;30088:2;30069:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;15366:3;30538:29;30565:1;30553:8;:13;30538:14;:29::i;:::-;:56;;15107:3;30475:15;:41;;30433:21;30451:2;30433:17;:21::i;:::-;:84;:162;30382:17;:31;30400:12;30382:31;;;;;;;;;;;:213;;;;30612:14;30641:119;30708:8;;;;;;30693:12;:23;30689:2;30668:49;;30685:1;30668:49;;;;;;;;;;;;30750:8;30741:6;:17;30641:119;;30807:8;30792:12;:23;30776:13;:39;;;;29295:1610;30837:60;30866:1;30870:2;30874:12;30888:8;30837:20;:60::i;:::-;29295:1610;;;:::o;8714:98::-;8767:7;8794:10;8787:17;;8714:98;:::o;24793:142::-;24851:14;24912:5;24902:15;;24887:41;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:139::-;1792:5;1823:6;1817:13;1808:22;;1839:31;1864:5;1839:31;:::i;:::-;1798:78;;;;:::o;1882:262::-;1941:6;1990:2;1978:9;1969:7;1965:23;1961:32;1958:2;;;2006:1;2003;1996:12;1958:2;2049:1;2074:53;2119:7;2110:6;2099:9;2095:22;2074:53;:::i;:::-;2064:63;;2020:117;1948:196;;;;:::o;2150:407::-;2218:6;2226;2275:2;2263:9;2254:7;2250:23;2246:32;2243:2;;;2291:1;2288;2281:12;2243:2;2334:1;2359:53;2404:7;2395:6;2384:9;2380:22;2359:53;:::i;:::-;2349:63;;2305:117;2461:2;2487:53;2532:7;2523:6;2512:9;2508:22;2487:53;:::i;:::-;2477:63;;2432:118;2233:324;;;;;:::o;2563:552::-;2640:6;2648;2656;2705:2;2693:9;2684:7;2680:23;2676:32;2673:2;;;2721:1;2718;2711:12;2673:2;2764:1;2789:53;2834:7;2825:6;2814:9;2810:22;2789:53;:::i;:::-;2779:63;;2735:117;2891:2;2917:53;2962:7;2953:6;2942:9;2938:22;2917:53;:::i;:::-;2907:63;;2862:118;3019:2;3045:53;3090:7;3081:6;3070:9;3066:22;3045:53;:::i;:::-;3035:63;;2990:118;2663:452;;;;;:::o;3121:809::-;3216:6;3224;3232;3240;3289:3;3277:9;3268:7;3264:23;3260:33;3257:2;;;3306:1;3303;3296:12;3257:2;3349:1;3374:53;3419:7;3410:6;3399:9;3395:22;3374:53;:::i;:::-;3364:63;;3320:117;3476:2;3502:53;3547:7;3538:6;3527:9;3523:22;3502:53;:::i;:::-;3492:63;;3447:118;3604:2;3630:53;3675:7;3666:6;3655:9;3651:22;3630:53;:::i;:::-;3620:63;;3575:118;3760:2;3749:9;3745:18;3732:32;3791:18;3783:6;3780:30;3777:2;;;3823:1;3820;3813:12;3777:2;3851:62;3905:7;3896:6;3885:9;3881:22;3851:62;:::i;:::-;3841:72;;3703:220;3247:683;;;;;;;:::o;3936:401::-;4001:6;4009;4058:2;4046:9;4037:7;4033:23;4029:32;4026:2;;;4074:1;4071;4064:12;4026:2;4117:1;4142:53;4187:7;4178:6;4167:9;4163:22;4142:53;:::i;:::-;4132:63;;4088:117;4244:2;4270:50;4312:7;4303:6;4292:9;4288:22;4270:50;:::i;:::-;4260:60;;4215:115;4016:321;;;;;:::o;4343:407::-;4411:6;4419;4468:2;4456:9;4447:7;4443:23;4439:32;4436:2;;;4484:1;4481;4474:12;4436:2;4527:1;4552:53;4597:7;4588:6;4577:9;4573:22;4552:53;:::i;:::-;4542:63;;4498:117;4654:2;4680:53;4725:7;4716:6;4705:9;4701:22;4680:53;:::i;:::-;4670:63;;4625:118;4426:324;;;;;:::o;4756:260::-;4814:6;4863:2;4851:9;4842:7;4838:23;4834:32;4831:2;;;4879:1;4876;4869:12;4831:2;4922:1;4947:52;4991:7;4982:6;4971:9;4967:22;4947:52;:::i;:::-;4937:62;;4893:116;4821:195;;;;:::o;5022:282::-;5091:6;5140:2;5128:9;5119:7;5115:23;5111:32;5108:2;;;5156:1;5153;5146:12;5108:2;5199:1;5224:63;5279:7;5270:6;5259:9;5255:22;5224:63;:::i;:::-;5214:73;;5170:127;5098:206;;;;:::o;5310:395::-;5381:6;5389;5438:2;5426:9;5417:7;5413:23;5409:32;5406:2;;;5454:1;5451;5444:12;5406:2;5525:1;5514:9;5510:17;5497:31;5555:18;5547:6;5544:30;5541:2;;;5587:1;5584;5577:12;5541:2;5623:65;5680:7;5671:6;5660:9;5656:22;5623:65;:::i;:::-;5605:83;;;;5468:230;5396:309;;;;;:::o;5711:262::-;5770:6;5819:2;5807:9;5798:7;5794:23;5790:32;5787:2;;;5835:1;5832;5825:12;5787:2;5878:1;5903:53;5948:7;5939:6;5928:9;5924:22;5903:53;:::i;:::-;5893:63;;5849:117;5777:196;;;;:::o;5979:280::-;6047:6;6096:2;6084:9;6075:7;6071:23;6067:32;6064:2;;;6112:1;6109;6102:12;6064:2;6155:1;6180:62;6234:7;6225:6;6214:9;6210:22;6180:62;:::i;:::-;6170:72;;6126:126;6054:205;;;;:::o;6265:118::-;6352:24;6370:5;6352:24;:::i;:::-;6347:3;6340:37;6330:53;;:::o;6389:109::-;6470:21;6485:5;6470:21;:::i;:::-;6465:3;6458:34;6448:50;;:::o;6504:360::-;6590:3;6618:38;6650:5;6618:38;:::i;:::-;6672:70;6735:6;6730:3;6672:70;:::i;:::-;6665:77;;6751:52;6796:6;6791:3;6784:4;6777:5;6773:16;6751:52;:::i;:::-;6828:29;6850:6;6828:29;:::i;:::-;6823:3;6819:39;6812:46;;6594:270;;;;;:::o;6870:364::-;6958:3;6986:39;7019:5;6986:39;:::i;:::-;7041:71;7105:6;7100:3;7041:71;:::i;:::-;7034:78;;7121:52;7166:6;7161:3;7154:4;7147:5;7143:16;7121:52;:::i;:::-;7198:29;7220:6;7198:29;:::i;:::-;7193:3;7189:39;7182:46;;6962:272;;;;;:::o;7240:377::-;7346:3;7374:39;7407:5;7374:39;:::i;:::-;7429:89;7511:6;7506:3;7429:89;:::i;:::-;7422:96;;7527:52;7572:6;7567:3;7560:4;7553:5;7549:16;7527:52;:::i;:::-;7604:6;7599:3;7595:16;7588:23;;7350:267;;;;;:::o;7647:845::-;7750:3;7787:5;7781:12;7816:36;7842:9;7816:36;:::i;:::-;7868:89;7950:6;7945:3;7868:89;:::i;:::-;7861:96;;7988:1;7977:9;7973:17;8004:1;7999:137;;;;8150:1;8145:341;;;;7966:520;;7999:137;8083:4;8079:9;8068;8064:25;8059:3;8052:38;8119:6;8114:3;8110:16;8103:23;;7999:137;;8145:341;8212:38;8244:5;8212:38;:::i;:::-;8272:1;8286:154;8300:6;8297:1;8294:13;8286:154;;;8374:7;8368:14;8364:1;8359:3;8355:11;8348:35;8424:1;8415:7;8411:15;8400:26;;8322:4;8319:1;8315:12;8310:17;;8286:154;;;8469:6;8464:3;8460:16;8453:23;;8152:334;;7966:520;;7754:738;;;;;;:::o;8498:366::-;8640:3;8661:67;8725:2;8720:3;8661:67;:::i;:::-;8654:74;;8737:93;8826:3;8737:93;:::i;:::-;8855:2;8850:3;8846:12;8839:19;;8644:220;;;:::o;8870:366::-;9012:3;9033:67;9097:2;9092:3;9033:67;:::i;:::-;9026:74;;9109:93;9198:3;9109:93;:::i;:::-;9227:2;9222:3;9218:12;9211:19;;9016:220;;;:::o;9242:366::-;9384:3;9405:67;9469:2;9464:3;9405:67;:::i;:::-;9398:74;;9481:93;9570:3;9481:93;:::i;:::-;9599:2;9594:3;9590:12;9583:19;;9388:220;;;:::o;9614:366::-;9756:3;9777:67;9841:2;9836:3;9777:67;:::i;:::-;9770:74;;9853:93;9942:3;9853:93;:::i;:::-;9971:2;9966:3;9962:12;9955:19;;9760:220;;;:::o;9986:366::-;10128:3;10149:67;10213:2;10208:3;10149:67;:::i;:::-;10142:74;;10225:93;10314:3;10225:93;:::i;:::-;10343:2;10338:3;10334:12;10327:19;;10132:220;;;:::o;10358:366::-;10500:3;10521:67;10585:2;10580:3;10521:67;:::i;:::-;10514:74;;10597:93;10686:3;10597:93;:::i;:::-;10715:2;10710:3;10706:12;10699:19;;10504:220;;;:::o;10730:366::-;10872:3;10893:67;10957:2;10952:3;10893:67;:::i;:::-;10886:74;;10969:93;11058:3;10969:93;:::i;:::-;11087:2;11082:3;11078:12;11071:19;;10876:220;;;:::o;11102:366::-;11244:3;11265:67;11329:2;11324:3;11265:67;:::i;:::-;11258:74;;11341:93;11430:3;11341:93;:::i;:::-;11459:2;11454:3;11450:12;11443:19;;11248:220;;;:::o;11474:366::-;11616:3;11637:67;11701:2;11696:3;11637:67;:::i;:::-;11630:74;;11713:93;11802:3;11713:93;:::i;:::-;11831:2;11826:3;11822:12;11815:19;;11620:220;;;:::o;11846:366::-;11988:3;12009:67;12073:2;12068:3;12009:67;:::i;:::-;12002:74;;12085:93;12174:3;12085:93;:::i;:::-;12203:2;12198:3;12194:12;12187:19;;11992:220;;;:::o;12218:366::-;12360:3;12381:67;12445:2;12440:3;12381:67;:::i;:::-;12374:74;;12457:93;12546:3;12457:93;:::i;:::-;12575:2;12570:3;12566:12;12559:19;;12364:220;;;:::o;12590:118::-;12677:24;12695:5;12677:24;:::i;:::-;12672:3;12665:37;12655:53;;:::o;12714:429::-;12891:3;12913:92;13001:3;12992:6;12913:92;:::i;:::-;12906:99;;13022:95;13113:3;13104:6;13022:95;:::i;:::-;13015:102;;13134:3;13127:10;;12895:248;;;;;:::o;13149:222::-;13242:4;13280:2;13269:9;13265:18;13257:26;;13293:71;13361:1;13350:9;13346:17;13337:6;13293:71;:::i;:::-;13247:124;;;;:::o;13377:640::-;13572:4;13610:3;13599:9;13595:19;13587:27;;13624:71;13692:1;13681:9;13677:17;13668:6;13624:71;:::i;:::-;13705:72;13773:2;13762:9;13758:18;13749:6;13705:72;:::i;:::-;13787;13855:2;13844:9;13840:18;13831:6;13787:72;:::i;:::-;13906:9;13900:4;13896:20;13891:2;13880:9;13876:18;13869:48;13934:76;14005:4;13996:6;13934:76;:::i;:::-;13926:84;;13577:440;;;;;;;:::o;14023:210::-;14110:4;14148:2;14137:9;14133:18;14125:26;;14161:65;14223:1;14212:9;14208:17;14199:6;14161:65;:::i;:::-;14115:118;;;;:::o;14239:313::-;14352:4;14390:2;14379:9;14375:18;14367:26;;14439:9;14433:4;14429:20;14425:1;14414:9;14410:17;14403:47;14467:78;14540:4;14531:6;14467:78;:::i;:::-;14459:86;;14357:195;;;;:::o;14558:419::-;14724:4;14762:2;14751:9;14747:18;14739:26;;14811:9;14805:4;14801:20;14797:1;14786:9;14782:17;14775:47;14839:131;14965:4;14839:131;:::i;:::-;14831:139;;14729:248;;;:::o;14983:419::-;15149:4;15187:2;15176:9;15172:18;15164:26;;15236:9;15230:4;15226:20;15222:1;15211:9;15207:17;15200:47;15264:131;15390:4;15264:131;:::i;:::-;15256:139;;15154:248;;;:::o;15408:419::-;15574:4;15612:2;15601:9;15597:18;15589:26;;15661:9;15655:4;15651:20;15647:1;15636:9;15632:17;15625:47;15689:131;15815:4;15689:131;:::i;:::-;15681:139;;15579:248;;;:::o;15833:419::-;15999:4;16037:2;16026:9;16022:18;16014:26;;16086:9;16080:4;16076:20;16072:1;16061:9;16057:17;16050:47;16114:131;16240:4;16114:131;:::i;:::-;16106:139;;16004:248;;;:::o;16258:419::-;16424:4;16462:2;16451:9;16447:18;16439:26;;16511:9;16505:4;16501:20;16497:1;16486:9;16482:17;16475:47;16539:131;16665:4;16539:131;:::i;:::-;16531:139;;16429:248;;;:::o;16683:419::-;16849:4;16887:2;16876:9;16872:18;16864:26;;16936:9;16930:4;16926:20;16922:1;16911:9;16907:17;16900:47;16964:131;17090:4;16964:131;:::i;:::-;16956:139;;16854:248;;;:::o;17108:419::-;17274:4;17312:2;17301:9;17297:18;17289:26;;17361:9;17355:4;17351:20;17347:1;17336:9;17332:17;17325:47;17389:131;17515:4;17389:131;:::i;:::-;17381:139;;17279:248;;;:::o;17533:419::-;17699:4;17737:2;17726:9;17722:18;17714:26;;17786:9;17780:4;17776:20;17772:1;17761:9;17757:17;17750:47;17814:131;17940:4;17814:131;:::i;:::-;17806:139;;17704:248;;;:::o;17958:419::-;18124:4;18162:2;18151:9;18147:18;18139:26;;18211:9;18205:4;18201:20;18197:1;18186:9;18182:17;18175:47;18239:131;18365:4;18239:131;:::i;:::-;18231:139;;18129:248;;;:::o;18383:419::-;18549:4;18587:2;18576:9;18572:18;18564:26;;18636:9;18630:4;18626:20;18622:1;18611:9;18607:17;18600:47;18664:131;18790:4;18664:131;:::i;:::-;18656:139;;18554:248;;;:::o;18808:419::-;18974:4;19012:2;19001:9;18997:18;18989:26;;19061:9;19055:4;19051:20;19047:1;19036:9;19032:17;19025:47;19089:131;19215:4;19089:131;:::i;:::-;19081:139;;18979:248;;;:::o;19233:222::-;19326:4;19364:2;19353:9;19349:18;19341:26;;19377:71;19445:1;19434:9;19430:17;19421:6;19377:71;:::i;:::-;19331:124;;;;:::o;19461:129::-;19495:6;19522:20;;:::i;:::-;19512:30;;19551:33;19579:4;19571:6;19551:33;:::i;:::-;19502:88;;;:::o;19596:75::-;19629:6;19662:2;19656:9;19646:19;;19636:35;:::o;19677:307::-;19738:4;19828:18;19820:6;19817:30;19814:2;;;19850:18;;:::i;:::-;19814:2;19888:29;19910:6;19888:29;:::i;:::-;19880:37;;19972:4;19966;19962:15;19954:23;;19743:241;;;:::o;19990:141::-;20039:4;20062:3;20054:11;;20085:3;20082:1;20075:14;20119:4;20116:1;20106:18;20098:26;;20044:87;;;:::o;20137:98::-;20188:6;20222:5;20216:12;20206:22;;20195:40;;;:::o;20241:99::-;20293:6;20327:5;20321:12;20311:22;;20300:40;;;:::o;20346:168::-;20429:11;20463:6;20458:3;20451:19;20503:4;20498:3;20494:14;20479:29;;20441:73;;;;:::o;20520:169::-;20604:11;20638:6;20633:3;20626:19;20678:4;20673:3;20669:14;20654:29;;20616:73;;;;:::o;20695:148::-;20797:11;20834:3;20819:18;;20809:34;;;;:::o;20849:305::-;20889:3;20908:20;20926:1;20908:20;:::i;:::-;20903:25;;20942:20;20960:1;20942:20;:::i;:::-;20937:25;;21096:1;21028:66;21024:74;21021:1;21018:81;21015:2;;;21102:18;;:::i;:::-;21015:2;21146:1;21143;21139:9;21132:16;;20893:261;;;;:::o;21160:185::-;21200:1;21217:20;21235:1;21217:20;:::i;:::-;21212:25;;21251:20;21269:1;21251:20;:::i;:::-;21246:25;;21290:1;21280:2;;21295:18;;:::i;:::-;21280:2;21337:1;21334;21330:9;21325:14;;21202:143;;;;:::o;21351:348::-;21391:7;21414:20;21432:1;21414:20;:::i;:::-;21409:25;;21448:20;21466:1;21448:20;:::i;:::-;21443:25;;21636:1;21568:66;21564:74;21561:1;21558:81;21553:1;21546:9;21539:17;21535:105;21532:2;;;21643:18;;:::i;:::-;21532:2;21691:1;21688;21684:9;21673:20;;21399:300;;;;:::o;21705:191::-;21745:4;21765:20;21783:1;21765:20;:::i;:::-;21760:25;;21799:20;21817:1;21799:20;:::i;:::-;21794:25;;21838:1;21835;21832:8;21829:2;;;21843:18;;:::i;:::-;21829:2;21888:1;21885;21881:9;21873:17;;21750:146;;;;:::o;21902:96::-;21939:7;21968:24;21986:5;21968:24;:::i;:::-;21957:35;;21947:51;;;:::o;22004:90::-;22038:7;22081:5;22074:13;22067:21;22056:32;;22046:48;;;:::o;22100:149::-;22136:7;22176:66;22169:5;22165:78;22154:89;;22144:105;;;:::o;22255:126::-;22292:7;22332:42;22325:5;22321:54;22310:65;;22300:81;;;:::o;22387:77::-;22424:7;22453:5;22442:16;;22432:32;;;:::o;22470:86::-;22505:7;22545:4;22538:5;22534:16;22523:27;;22513:43;;;:::o;22562:154::-;22646:6;22641:3;22636;22623:30;22708:1;22699:6;22694:3;22690:16;22683:27;22613:103;;;:::o;22722:307::-;22790:1;22800:113;22814:6;22811:1;22808:13;22800:113;;;22899:1;22894:3;22890:11;22884:18;22880:1;22875:3;22871:11;22864:39;22836:2;22833:1;22829:10;22824:15;;22800:113;;;22931:6;22928:1;22925:13;22922:2;;;23011:1;23002:6;22997:3;22993:16;22986:27;22922:2;22771:258;;;;:::o;23035:320::-;23079:6;23116:1;23110:4;23106:12;23096:22;;23163:1;23157:4;23153:12;23184:18;23174:2;;23240:4;23232:6;23228:17;23218:27;;23174:2;23302;23294:6;23291:14;23271:18;23268:38;23265:2;;;23321:18;;:::i;:::-;23265:2;23086:269;;;;:::o;23361:281::-;23444:27;23466:4;23444:27;:::i;:::-;23436:6;23432:40;23574:6;23562:10;23559:22;23538:18;23526:10;23523:34;23520:62;23517:2;;;23585:18;;:::i;:::-;23517:2;23625:10;23621:2;23614:22;23404:238;;;:::o;23648:233::-;23687:3;23710:24;23728:5;23710:24;:::i;:::-;23701:33;;23756:66;23749:5;23746:77;23743:2;;;23826:18;;:::i;:::-;23743:2;23873:1;23866:5;23862:13;23855:20;;23691:190;;;:::o;23887:176::-;23919:1;23936:20;23954:1;23936:20;:::i;:::-;23931:25;;23970:20;23988:1;23970:20;:::i;:::-;23965:25;;24009:1;23999:2;;24014:18;;:::i;:::-;23999:2;24055:1;24052;24048:9;24043:14;;23921:142;;;;:::o;24069:180::-;24117:77;24114:1;24107:88;24214:4;24211:1;24204:15;24238:4;24235:1;24228:15;24255:180;24303:77;24300:1;24293:88;24400:4;24397:1;24390:15;24424:4;24421:1;24414:15;24441:180;24489:77;24486:1;24479:88;24586:4;24583:1;24576:15;24610:4;24607:1;24600:15;24627:180;24675:77;24672:1;24665:88;24772:4;24769:1;24762:15;24796:4;24793:1;24786:15;24813:102;24854:6;24905:2;24901:7;24896:2;24889:5;24885:14;24881:28;24871:38;;24861:54;;;:::o;24921:238::-;25061:34;25057:1;25049:6;25045:14;25038:58;25130:21;25125:2;25117:6;25113:15;25106:46;25027:132;:::o;25165:225::-;25305:34;25301:1;25293:6;25289:14;25282:58;25374:8;25369:2;25361:6;25357:15;25350:33;25271:119;:::o;25396:230::-;25536:34;25532:1;25524:6;25520:14;25513:58;25605:13;25600:2;25592:6;25588:15;25581:38;25502:124;:::o;25632:172::-;25772:24;25768:1;25760:6;25756:14;25749:48;25738:66;:::o;25810:175::-;25950:27;25946:1;25938:6;25934:14;25927:51;25916:69;:::o;25991:182::-;26131:34;26127:1;26119:6;26115:14;26108:58;26097:76;:::o;26179:176::-;26319:28;26315:1;26307:6;26303:14;26296:52;26285:70;:::o;26361:234::-;26501:34;26497:1;26489:6;26485:14;26478:58;26570:17;26565:2;26557:6;26553:15;26546:42;26467:128;:::o;26601:221::-;26741:34;26737:1;26729:6;26725:14;26718:58;26810:4;26805:2;26797:6;26793:15;26786:29;26707:115;:::o;26828:181::-;26968:33;26964:1;26956:6;26952:14;26945:57;26934:75;:::o;27015:223::-;27155:34;27151:1;27143:6;27139:14;27132:58;27224:6;27219:2;27211:6;27207:15;27200:31;27121:117;:::o;27244:122::-;27317:24;27335:5;27317:24;:::i;:::-;27310:5;27307:35;27297:2;;27356:1;27353;27346:12;27297:2;27287:79;:::o;27372:116::-;27442:21;27457:5;27442:21;:::i;:::-;27435:5;27432:32;27422:2;;27478:1;27475;27468:12;27422:2;27412:76;:::o;27494:120::-;27566:23;27583:5;27566:23;:::i;:::-;27559:5;27556:34;27546:2;;27604:1;27601;27594:12;27546:2;27536:78;:::o;27620:122::-;27693:24;27711:5;27693:24;:::i;:::-;27686:5;27683:35;27673:2;;27732:1;27729;27722:12;27673:2;27663:79;:::o;27748:118::-;27819:22;27835:5;27819:22;:::i;:::-;27812:5;27809:33;27799:2;;27856:1;27853;27846:12;27799:2;27789:77;:::o

Swarm Source

ipfs://64557eb1b4fffa384b5fc0a87a345eda1807ece2be7eb2c9e024e78100da300b
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.