ETH Price: $3,277.27 (-0.07%)
Gas: 3 Gwei

Token

InkMan (IKM)
 

Overview

Max Total Supply

1,001 IKM

Holders

481

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*金狗火车头.eth
Balance
2 IKM
0x162ddd6a0293cd81e8837211f806a9e0e5d74d84
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:
InkMan

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // 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`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the 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;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * 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 Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @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 Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/4.InkMan.sol


// File: contracts/InkMan.sol

//SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.13;



///                                                                                                                          ,----, 
///                 ,--.       ,--.                  ____                          ,--.                 ,--.                ,/   .`| 
///   ,---,       ,--.'|   ,--/  /|                ,'  , `.   ,---,              ,--.'|               ,--.'|    ,---,.    ,`   .'  : 
///,`--.' |   ,--,:  : |,---,': / '             ,-+-,.' _ |  '  .' \         ,--,:  : |           ,--,:  : |  ,'  .' |  ;    ;     / 
///|   :  :,`--.'`|  ' ::   : '/ /           ,-+-. ;   , || /  ;    '.    ,`--.'`|  ' :        ,`--.'`|  ' :,---.'   |.'___,/    ,'  
///:   |  '|   :  :  | ||   '   ,           ,--.'|'   |  ;|:  :       \   |   :  :  | |        |   :  :  | ||   |   .'|    :     |   
///|   :  |:   |   \ | :'   |  /           |   |  ,', |  '::  |   /\   \  :   |   \ | :        :   |   \ | ::   :  :  ;    |.';  ;   
///'   '  ;|   : '  '; ||   ;  ;           |   | /  | |  |||  :  ' ;.   : |   : '  '; |        |   : '  '; |:   |  |-,`----'  |  |   
///|   |  |'   ' ;.    ;:   '   \          '   | :  | :  |,|  |  ;/  \   \'   ' ;.    ;        '   ' ;.    ;|   :  ;/|    '   :  ;   
///'   :  ;|   | | \   ||   |    '         ;   . |  ; |--' '  :  | \  \ ,'|   | | \   |        |   | | \   ||   |   .'    |   |  '   
///|   |  ''   : |  ; .''   : |.  \        |   : |  | ,    |  |  '  '--'  '   : |  ; .'        '   : |  ; .''   :  '      '   :  |   
///'   :  ||   | '`--'  |   | '_\.'        |   : '  |/     |  :  :        |   | '`--'          |   | '`--'  |   |  |      ;   |.'    
///;   |.' '   : |      '   : |            ;   | |`-'      |  | ,'        '   : |              '   : |      |   :  \      '---'      
///'---'   ;   |.'      ;   |,'            |   ;/          `--''          ;   |.'              ;   |.'      |   | ,'                 
///        '---'        '---'              '---'                          '---'                '---'        `----'                   
                                                                                         


contract InkMan is Ownable, ERC721A {
    uint256 public maxSupply                    = 1001;
    uint256 public maxFreeSupply                = 1001;
    uint256 public freeMintedCount;
    uint256 public currentCount =totalSupply();
    uint256 public teamQuantity                 = 50;

    uint256 public maxPerTxDuringMint           = 10;
    uint256 public maxPerAddressDuringMint      = 10;
    uint256 public maxFreePerAddress         = 2;
    
    uint256 public price                        = 0.003 ether;
    bool    public saleIsActive                 = false;


    address constant internal TEAM_ADDRESS = 0xF3B321839045275398Aa718DAcb0B2235a5cFAf8;

    string private _baseTokenURI;

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("InkMan", "IKM") {_safeMint(msg.sender, 1);
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Caller cannot be a contract.");
        _;
    }

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            maxSupply >= totalSupply() + _quantity,
            "Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        if (freeMintedCount >= maxFreeSupply) {
            require(msg.value>= _quantity*price, 'Need More ETH');
            _safeMint(msg.sender, _quantity);
        }else if (freeMintedAmount[msg.sender] < maxFreePerAddress){
        uint256 _mintableFreeQuantity = maxFreePerAddress - freeMintedAmount[msg.sender];

            if (_quantity <= _mintableFreeQuantity) {
                freeMintedCount += _quantity;
                freeMintedAmount[msg.sender] +=_quantity;
            } else {
                freeMintedCount += _mintableFreeQuantity;
                freeMintedAmount[msg.sender] = maxFreePerAddress;
                require(msg.value >= (_quantity-_mintableFreeQuantity)*price, 'Need more ETH');
                }
                _safeMint(msg.sender, _quantity);

        }else{
            require(msg.value >= _quantity*price, 'Need more ETH');
            _safeMint(msg.sender, _quantity);
             }
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
    }


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

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            maxSupply - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        maxSupply -= _amount;
    }

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

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

    function withdrawBalance() external payable onlyOwner {

        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "Team transfer failed.");
    }
      function teamMint() external onlyOwner {
        
        _safeMint(msg.sender, teamQuantity);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526103e96009556103e9600a55620000206200015a60201b60201c565b600c556032600d55600a600e55600a600f556002601055660aa87bee5380006011556000601260006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b506040518060400160405280600681526020017f496e6b4d616e00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f494b4d0000000000000000000000000000000000000000000000000000000000815250620000f7620000eb6200017960201b60201c565b6200018160201b60201c565b81600390805190602001906200010f92919062000709565b5080600490805190602001906200012892919062000709565b50620001396200024560201b60201c565b6001819055505050620001543360016200024a60201b60201c565b62000a09565b60006200016c6200024560201b60201c565b6002546001540303905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b6200026c8282604051806020016040528060008152506200027060201b60201c565b5050565b6200028283836200032260201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200031d5760006001549050600083820390505b620002cc60008683806001019450866200052060201b60201c565b62000303576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002b15781600154146200031a57600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000390576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203620003cb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003e060008483856200068160201b60201c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200046f836200045160008660006200068760201b60201c565b6200046285620006b760201b60201c565b17620006c760201b60201c565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000493578060018190555050506200051b6000848385620006f260201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200054e620006f860201b60201c565b8786866040518563ffffffff1660e01b8152600401620005729493929190620008bd565b6020604051808303816000875af1925050508015620005b157506040513d601f19601f82011682018060405250810190620005ae919062000973565b60015b6200062e573d8060008114620005e4576040519150601f19603f3d011682016040523d82523d6000602084013e620005e9565b606091505b50600081510362000626576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006a68686846200070060201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b8280546200071790620009d4565b90600052602060002090601f0160209004810192826200073b576000855562000787565b82601f106200075657805160ff191683800117855562000787565b8280016001018555821562000787579182015b828111156200078657825182559160200191906001019062000769565b5b5090506200079691906200079a565b5090565b5b80821115620007b55760008160009055506001016200079b565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007e682620007b9565b9050919050565b620007f881620007d9565b82525050565b6000819050919050565b6200081381620007fe565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200085557808201518184015260208101905062000838565b8381111562000865576000848401525b50505050565b6000601f19601f8301169050919050565b6000620008898262000819565b62000895818562000824565b9350620008a781856020860162000835565b620008b2816200086b565b840191505092915050565b6000608082019050620008d46000830187620007ed565b620008e36020830186620007ed565b620008f2604083018562000808565b81810360608301526200090681846200087c565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200094d8162000916565b81146200095957600080fd5b50565b6000815190506200096d8162000942565b92915050565b6000602082840312156200098c576200098b62000911565b5b60006200099c848285016200095c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009ed57607f821691505b60208210810362000a035762000a02620009a5565b5b50919050565b6136c58062000a196000396000f3fe6080604052600436106102255760003560e01c806391b7f5ed11610123578063c732d201116100ab578063e985e9c51161006f578063e985e9c5146107a1578063eb8d2444146107de578063f2fde38b14610809578063f4464cf114610832578063fbbf8cc31461085d57610225565b8063c732d201146106b8578063c87b56dd146106e3578063cf6db22614610720578063d3464cbd1461074b578063d5abeb011461077657610225565b8063a0712d68116100f2578063a0712d681461060a578063a22cb46514610626578063b88d4fde1461064f578063ba7a86b814610678578063c6f6f2161461068f57610225565b806391b7f5ed1461054e57806395d89b411461057757806396b10201146105a2578063a035b1fe146105df57610225565b806347513334116101b1578063715018a611610175578063715018a6146104a15780637ba5e621146104b85780637bddd65b146104cf5780638bc35c2f146104f85780638da5cb5b1461052357610225565b806347513334146103c957806355f804b3146103f45780635fd8c7101461041d5780636352211e1461042757806370a082311461046457610225565b80631141df20116101f85780631141df20146102f857806318160ddd1461032157806323b872dd1461034c57806327a81bef1461037557806342842e0e146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061289f565b61089a565b60405161025e91906128e7565b60405180910390f35b34801561027357600080fd5b5061027c61092c565b604051610289919061299b565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906129f3565b6109be565b6040516102c69190612a61565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612aa8565b610a3a565b005b34801561030457600080fd5b5061031f600480360381019061031a91906129f3565b610b7b565b005b34801561032d57600080fd5b50610336610c6a565b6040516103439190612af7565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190612b12565b610c81565b005b34801561038157600080fd5b5061038a610fa3565b6040516103979190612af7565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612b12565b610fa9565b005b3480156103d557600080fd5b506103de610fc9565b6040516103eb9190612af7565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612bca565b610fcf565b005b610425611061565b005b34801561043357600080fd5b5061044e600480360381019061044991906129f3565b6111a0565b60405161045b9190612a61565b60405180910390f35b34801561047057600080fd5b5061048b60048036038101906104869190612c17565b6111b2565b6040516104989190612af7565b60405180910390f35b3480156104ad57600080fd5b506104b661126a565b005b3480156104c457600080fd5b506104cd6112f2565b005b3480156104db57600080fd5b506104f660048036038101906104f191906129f3565b61139a565b005b34801561050457600080fd5b5061050d611420565b60405161051a9190612af7565b60405180910390f35b34801561052f57600080fd5b50610538611426565b6040516105459190612a61565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906129f3565b61144f565b005b34801561058357600080fd5b5061058c6114d5565b604051610599919061299b565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190612c17565b611567565b6040516105d69190612af7565b60405180910390f35b3480156105eb57600080fd5b506105f461157f565b6040516106019190612af7565b60405180910390f35b610624600480360381019061061f91906129f3565b611585565b005b34801561063257600080fd5b5061064d60048036038101906106489190612c70565b611a77565b005b34801561065b57600080fd5b5061067660048036038101906106719190612de0565b611bee565b005b34801561068457600080fd5b5061068d611c61565b005b34801561069b57600080fd5b506106b660048036038101906106b191906129f3565b611ceb565b005b3480156106c457600080fd5b506106cd611d71565b6040516106da9190612af7565b60405180910390f35b3480156106ef57600080fd5b5061070a600480360381019061070591906129f3565b611d77565b604051610717919061299b565b60405180910390f35b34801561072c57600080fd5b50610735611e15565b6040516107429190612af7565b60405180910390f35b34801561075757600080fd5b50610760611e1b565b60405161076d9190612af7565b60405180910390f35b34801561078257600080fd5b5061078b611e21565b6040516107989190612af7565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190612e63565b611e27565b6040516107d591906128e7565b60405180910390f35b3480156107ea57600080fd5b506107f3611ebb565b60405161080091906128e7565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b9190612c17565b611ece565b005b34801561083e57600080fd5b50610847611fc5565b6040516108549190612af7565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f9190612c17565b611fcb565b6040516108919190612af7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109255750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461093b90612ed2565b80601f016020809104026020016040519081016040528092919081815260200182805461096790612ed2565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b60006109c982611fe3565b6109ff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a45826111a0565b90508073ffffffffffffffffffffffffffffffffffffffff16610a66612042565b73ffffffffffffffffffffffffffffffffffffffff1614610ac957610a9281610a8d612042565b611e27565b610ac8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8361204a565b73ffffffffffffffffffffffffffffffffffffffff16610ba1611426565b73ffffffffffffffffffffffffffffffffffffffff1614610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee90612f4f565b60405180910390fd5b610bff610c6a565b81600954610c0d9190612f9e565b1015610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613044565b60405180910390fd5b8060096000828254610c609190612f9e565b9250508190555050565b6000610c74612052565b6002546001540303905090565b6000610c8c82612057565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cf3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cff84612123565b91509150610d158187610d10612042565b612145565b610d6157610d2a86610d25612042565b611e27565b610d60576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610dc7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dd48686866001612189565b8015610ddf57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ead85610e8988888761218f565b7c0200000000000000000000000000000000000000000000000000000000176121b7565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f335760006001850190506000600560008381526020019081526020016000205403610f31576001548114610f30578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f9b86868660016121e2565b505050505050565b600d5481565b610fc483838360405180602001604052806000815250611bee565b505050565b600a5481565b610fd761204a565b73ffffffffffffffffffffffffffffffffffffffff16610ff5611426565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290612f4f565b60405180910390fd5b81816013919061105c929190612790565b505050565b61106961204a565b73ffffffffffffffffffffffffffffffffffffffff16611087611426565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490612f4f565b60405180910390fd5b600073f3b321839045275398aa718dacb0b2235a5cfaf873ffffffffffffffffffffffffffffffffffffffff164760405161111790613095565b60006040518083038185875af1925050503d8060008114611154576040519150601f19603f3d011682016040523d82523d6000602084013e611159565b606091505b505090508061119d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611194906130f6565b60405180910390fd5b50565b60006111ab82612057565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611219576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61127261204a565b73ffffffffffffffffffffffffffffffffffffffff16611290611426565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd90612f4f565b60405180910390fd5b6112f060006121e8565b565b6112fa61204a565b73ffffffffffffffffffffffffffffffffffffffff16611318611426565b73ffffffffffffffffffffffffffffffffffffffff161461136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590612f4f565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6113a261204a565b73ffffffffffffffffffffffffffffffffffffffff166113c0611426565b73ffffffffffffffffffffffffffffffffffffffff1614611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90612f4f565b60405180910390fd5b80600f8190555050565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61145761204a565b73ffffffffffffffffffffffffffffffffffffffff16611475611426565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290612f4f565b60405180910390fd5b8060118190555050565b6060600480546114e490612ed2565b80601f016020809104026020016040519081016040528092919081815260200182805461151090612ed2565b801561155d5780601f106115325761010080835404028352916020019161155d565b820191906000526020600020905b81548152906001019060200180831161154057829003601f168201915b5050505050905090565b60146020528060005260406000206000915090505481565b60115481565b601260009054906101000a900460ff166115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613162565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611642576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611639906131ce565b60405180910390fd5b8061164b610c6a565b61165591906131ee565b6009541015611699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169090613290565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f5482826116ec91906131ee565b111561172d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611724906132fc565b60405180910390fd5b60008211801561173f5750600e548211155b61177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613368565b60405180910390fd5b600a54600b54106117e857601154826117979190613388565b3410156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061342e565b60405180910390fd5b6117e333836122ac565b611a24565b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156119c8576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546010546118809190612f9e565b90508083116118fd5782600b600082825461189b91906131ee565b9250508190555082601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118f191906131ee565b925050819055506119b8565b80600b600082825461190f91906131ee565b92505081905550601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601154818461196b9190612f9e565b6119759190613388565b3410156119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae9061349a565b60405180910390fd5b5b6119c233846122ac565b50611a23565b601154826119d69190613388565b341015611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f9061349a565b60405180910390fd5b611a2233836122ac565b5b5b8181611a3091906131ee565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611a7f612042565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611af0612042565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b9d612042565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be291906128e7565b60405180910390a35050565b611bf9848484610c81565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c5b57611c24848484846122ca565b611c5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611c6961204a565b73ffffffffffffffffffffffffffffffffffffffff16611c87611426565b73ffffffffffffffffffffffffffffffffffffffff1614611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490612f4f565b60405180910390fd5b611ce933600d546122ac565b565b611cf361204a565b73ffffffffffffffffffffffffffffffffffffffff16611d11611426565b73ffffffffffffffffffffffffffffffffffffffff1614611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90612f4f565b60405180910390fd5b80600e8190555050565b600c5481565b6060611d8282611fe3565b611db8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611dc261241a565b90506000815103611de25760405180602001604052806000815250611e0d565b80611dec846124ac565b604051602001611dfd9291906134f6565b6040516020818303038152906040525b915050919050565b600b5481565b600e5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900460ff1681565b611ed661204a565b73ffffffffffffffffffffffffffffffffffffffff16611ef4611426565b73ffffffffffffffffffffffffffffffffffffffff1614611f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4190612f4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb09061358c565b60405180910390fd5b611fc2816121e8565b50565b60105481565b60156020528060005260406000206000915090505481565b600081611fee612052565b11158015611ffd575060015482105b801561203b575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b60008082905080612066612052565b116120ec576001548110156120eb5760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120e9575b600081036120df5760056000836001900393508381526020019081526020016000205490506120b5565b809250505061211e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121a6868684612506565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122c682826040518060200160405280600081525061250f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122f0612042565b8786866040518563ffffffff1660e01b81526004016123129493929190613601565b6020604051808303816000875af192505050801561234e57506040513d601f19601f8201168201806040525081019061234b9190613662565b60015b6123c7573d806000811461237e576040519150601f19603f3d011682016040523d82523d6000602084013e612383565b606091505b5060008151036123bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606013805461242990612ed2565b80601f016020809104026020016040519081016040528092919081815260200182805461245590612ed2565b80156124a25780601f10612477576101008083540402835291602001916124a2565b820191906000526020600020905b81548152906001019060200180831161248557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156124f257600183039250600a81066030018353600a810490506124d2565b508181036020830392508083525050919050565b60009392505050565b61251983836125ad565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125a85760006001549050600083820390505b61255a60008683806001019450866122ca565b612590576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125475781600154146125a557600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361261a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612654576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126616000848385612189565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126d8836126c9600086600061218f565b6126d285612780565b176121b7565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126fc5780600181905550505061277b60008483856121e2565b505050565b60006001821460e11b9050919050565b82805461279c90612ed2565b90600052602060002090601f0160209004810192826127be5760008555612805565b82601f106127d757803560ff1916838001178555612805565b82800160010185558215612805579182015b828111156128045782358255916020019190600101906127e9565b5b5090506128129190612816565b5090565b5b8082111561282f576000816000905550600101612817565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61287c81612847565b811461288757600080fd5b50565b60008135905061289981612873565b92915050565b6000602082840312156128b5576128b461283d565b5b60006128c38482850161288a565b91505092915050565b60008115159050919050565b6128e1816128cc565b82525050565b60006020820190506128fc60008301846128d8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561293c578082015181840152602081019050612921565b8381111561294b576000848401525b50505050565b6000601f19601f8301169050919050565b600061296d82612902565b612977818561290d565b935061298781856020860161291e565b61299081612951565b840191505092915050565b600060208201905081810360008301526129b58184612962565b905092915050565b6000819050919050565b6129d0816129bd565b81146129db57600080fd5b50565b6000813590506129ed816129c7565b92915050565b600060208284031215612a0957612a0861283d565b5b6000612a17848285016129de565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a4b82612a20565b9050919050565b612a5b81612a40565b82525050565b6000602082019050612a766000830184612a52565b92915050565b612a8581612a40565b8114612a9057600080fd5b50565b600081359050612aa281612a7c565b92915050565b60008060408385031215612abf57612abe61283d565b5b6000612acd85828601612a93565b9250506020612ade858286016129de565b9150509250929050565b612af1816129bd565b82525050565b6000602082019050612b0c6000830184612ae8565b92915050565b600080600060608486031215612b2b57612b2a61283d565b5b6000612b3986828701612a93565b9350506020612b4a86828701612a93565b9250506040612b5b868287016129de565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612b8a57612b89612b65565b5b8235905067ffffffffffffffff811115612ba757612ba6612b6a565b5b602083019150836001820283011115612bc357612bc2612b6f565b5b9250929050565b60008060208385031215612be157612be061283d565b5b600083013567ffffffffffffffff811115612bff57612bfe612842565b5b612c0b85828601612b74565b92509250509250929050565b600060208284031215612c2d57612c2c61283d565b5b6000612c3b84828501612a93565b91505092915050565b612c4d816128cc565b8114612c5857600080fd5b50565b600081359050612c6a81612c44565b92915050565b60008060408385031215612c8757612c8661283d565b5b6000612c9585828601612a93565b9250506020612ca685828601612c5b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ced82612951565b810181811067ffffffffffffffff82111715612d0c57612d0b612cb5565b5b80604052505050565b6000612d1f612833565b9050612d2b8282612ce4565b919050565b600067ffffffffffffffff821115612d4b57612d4a612cb5565b5b612d5482612951565b9050602081019050919050565b82818337600083830152505050565b6000612d83612d7e84612d30565b612d15565b905082815260208101848484011115612d9f57612d9e612cb0565b5b612daa848285612d61565b509392505050565b600082601f830112612dc757612dc6612b65565b5b8135612dd7848260208601612d70565b91505092915050565b60008060008060808587031215612dfa57612df961283d565b5b6000612e0887828801612a93565b9450506020612e1987828801612a93565b9350506040612e2a878288016129de565b925050606085013567ffffffffffffffff811115612e4b57612e4a612842565b5b612e5787828801612db2565b91505092959194509250565b60008060408385031215612e7a57612e7961283d565b5b6000612e8885828601612a93565b9250506020612e9985828601612a93565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eea57607f821691505b602082108103612efd57612efc612ea3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f3960208361290d565b9150612f4482612f03565b602082019050919050565b60006020820190508181036000830152612f6881612f2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fa9826129bd565b9150612fb4836129bd565b925082821015612fc757612fc6612f6f565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b600061302e60278361290d565b915061303982612fd2565b604082019050919050565b6000602082019050818103600083015261305d81613021565b9050919050565b600081905092915050565b50565b600061307f600083613064565b915061308a8261306f565b600082019050919050565b60006130a082613072565b9150819050919050565b7f5465616d207472616e73666572206661696c65642e0000000000000000000000600082015250565b60006130e060158361290d565b91506130eb826130aa565b602082019050919050565b6000602082019050818103600083015261310f816130d3565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b600061314c60178361290d565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b60006131b8601c8361290d565b91506131c382613182565b602082019050919050565b600060208201905081810360008301526131e7816131ab565b9050919050565b60006131f9826129bd565b9150613204836129bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561323957613238612f6f565b5b828201905092915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b600061327a60138361290d565b915061328582613244565b602082019050919050565b600060208201905081810360008301526132a98161326d565b9050919050565b7f45786365656473206d6178206d696e7473207065722061646472657373210000600082015250565b60006132e6601e8361290d565b91506132f1826132b0565b602082019050919050565b60006020820190508181036000830152613315816132d9565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b600061335260148361290d565b915061335d8261331c565b602082019050919050565b6000602082019050818103600083015261338181613345565b9050919050565b6000613393826129bd565b915061339e836129bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133d7576133d6612f6f565b5b828202905092915050565b7f4e656564204d6f72652045544800000000000000000000000000000000000000600082015250565b6000613418600d8361290d565b9150613423826133e2565b602082019050919050565b600060208201905081810360008301526134478161340b565b9050919050565b7f4e656564206d6f72652045544800000000000000000000000000000000000000600082015250565b6000613484600d8361290d565b915061348f8261344e565b602082019050919050565b600060208201905081810360008301526134b381613477565b9050919050565b600081905092915050565b60006134d082612902565b6134da81856134ba565b93506134ea81856020860161291e565b80840191505092915050565b600061350282856134c5565b915061350e82846134c5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061357660268361290d565b91506135818261351a565b604082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135d3826135ac565b6135dd81856135b7565b93506135ed81856020860161291e565b6135f681612951565b840191505092915050565b60006080820190506136166000830187612a52565b6136236020830186612a52565b6136306040830185612ae8565b818103606083015261364281846135c8565b905095945050505050565b60008151905061365c81612873565b92915050565b6000602082840312156136785761367761283d565b5b60006136868482850161364d565b9150509291505056fea264697066735822122021e747f1727502cf16c3657e4cdb347234bd6c1fecb2c8797962b7c9acd9d58764736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806391b7f5ed11610123578063c732d201116100ab578063e985e9c51161006f578063e985e9c5146107a1578063eb8d2444146107de578063f2fde38b14610809578063f4464cf114610832578063fbbf8cc31461085d57610225565b8063c732d201146106b8578063c87b56dd146106e3578063cf6db22614610720578063d3464cbd1461074b578063d5abeb011461077657610225565b8063a0712d68116100f2578063a0712d681461060a578063a22cb46514610626578063b88d4fde1461064f578063ba7a86b814610678578063c6f6f2161461068f57610225565b806391b7f5ed1461054e57806395d89b411461057757806396b10201146105a2578063a035b1fe146105df57610225565b806347513334116101b1578063715018a611610175578063715018a6146104a15780637ba5e621146104b85780637bddd65b146104cf5780638bc35c2f146104f85780638da5cb5b1461052357610225565b806347513334146103c957806355f804b3146103f45780635fd8c7101461041d5780636352211e1461042757806370a082311461046457610225565b80631141df20116101f85780631141df20146102f857806318160ddd1461032157806323b872dd1461034c57806327a81bef1461037557806342842e0e146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061289f565b61089a565b60405161025e91906128e7565b60405180910390f35b34801561027357600080fd5b5061027c61092c565b604051610289919061299b565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906129f3565b6109be565b6040516102c69190612a61565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612aa8565b610a3a565b005b34801561030457600080fd5b5061031f600480360381019061031a91906129f3565b610b7b565b005b34801561032d57600080fd5b50610336610c6a565b6040516103439190612af7565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190612b12565b610c81565b005b34801561038157600080fd5b5061038a610fa3565b6040516103979190612af7565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612b12565b610fa9565b005b3480156103d557600080fd5b506103de610fc9565b6040516103eb9190612af7565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612bca565b610fcf565b005b610425611061565b005b34801561043357600080fd5b5061044e600480360381019061044991906129f3565b6111a0565b60405161045b9190612a61565b60405180910390f35b34801561047057600080fd5b5061048b60048036038101906104869190612c17565b6111b2565b6040516104989190612af7565b60405180910390f35b3480156104ad57600080fd5b506104b661126a565b005b3480156104c457600080fd5b506104cd6112f2565b005b3480156104db57600080fd5b506104f660048036038101906104f191906129f3565b61139a565b005b34801561050457600080fd5b5061050d611420565b60405161051a9190612af7565b60405180910390f35b34801561052f57600080fd5b50610538611426565b6040516105459190612a61565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906129f3565b61144f565b005b34801561058357600080fd5b5061058c6114d5565b604051610599919061299b565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190612c17565b611567565b6040516105d69190612af7565b60405180910390f35b3480156105eb57600080fd5b506105f461157f565b6040516106019190612af7565b60405180910390f35b610624600480360381019061061f91906129f3565b611585565b005b34801561063257600080fd5b5061064d60048036038101906106489190612c70565b611a77565b005b34801561065b57600080fd5b5061067660048036038101906106719190612de0565b611bee565b005b34801561068457600080fd5b5061068d611c61565b005b34801561069b57600080fd5b506106b660048036038101906106b191906129f3565b611ceb565b005b3480156106c457600080fd5b506106cd611d71565b6040516106da9190612af7565b60405180910390f35b3480156106ef57600080fd5b5061070a600480360381019061070591906129f3565b611d77565b604051610717919061299b565b60405180910390f35b34801561072c57600080fd5b50610735611e15565b6040516107429190612af7565b60405180910390f35b34801561075757600080fd5b50610760611e1b565b60405161076d9190612af7565b60405180910390f35b34801561078257600080fd5b5061078b611e21565b6040516107989190612af7565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190612e63565b611e27565b6040516107d591906128e7565b60405180910390f35b3480156107ea57600080fd5b506107f3611ebb565b60405161080091906128e7565b60405180910390f35b34801561081557600080fd5b50610830600480360381019061082b9190612c17565b611ece565b005b34801561083e57600080fd5b50610847611fc5565b6040516108549190612af7565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f9190612c17565b611fcb565b6040516108919190612af7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109255750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461093b90612ed2565b80601f016020809104026020016040519081016040528092919081815260200182805461096790612ed2565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b60006109c982611fe3565b6109ff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a45826111a0565b90508073ffffffffffffffffffffffffffffffffffffffff16610a66612042565b73ffffffffffffffffffffffffffffffffffffffff1614610ac957610a9281610a8d612042565b611e27565b610ac8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8361204a565b73ffffffffffffffffffffffffffffffffffffffff16610ba1611426565b73ffffffffffffffffffffffffffffffffffffffff1614610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee90612f4f565b60405180910390fd5b610bff610c6a565b81600954610c0d9190612f9e565b1015610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613044565b60405180910390fd5b8060096000828254610c609190612f9e565b9250508190555050565b6000610c74612052565b6002546001540303905090565b6000610c8c82612057565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cf3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cff84612123565b91509150610d158187610d10612042565b612145565b610d6157610d2a86610d25612042565b611e27565b610d60576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610dc7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dd48686866001612189565b8015610ddf57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ead85610e8988888761218f565b7c0200000000000000000000000000000000000000000000000000000000176121b7565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f335760006001850190506000600560008381526020019081526020016000205403610f31576001548114610f30578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f9b86868660016121e2565b505050505050565b600d5481565b610fc483838360405180602001604052806000815250611bee565b505050565b600a5481565b610fd761204a565b73ffffffffffffffffffffffffffffffffffffffff16610ff5611426565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290612f4f565b60405180910390fd5b81816013919061105c929190612790565b505050565b61106961204a565b73ffffffffffffffffffffffffffffffffffffffff16611087611426565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490612f4f565b60405180910390fd5b600073f3b321839045275398aa718dacb0b2235a5cfaf873ffffffffffffffffffffffffffffffffffffffff164760405161111790613095565b60006040518083038185875af1925050503d8060008114611154576040519150601f19603f3d011682016040523d82523d6000602084013e611159565b606091505b505090508061119d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611194906130f6565b60405180910390fd5b50565b60006111ab82612057565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611219576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61127261204a565b73ffffffffffffffffffffffffffffffffffffffff16611290611426565b73ffffffffffffffffffffffffffffffffffffffff16146112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd90612f4f565b60405180910390fd5b6112f060006121e8565b565b6112fa61204a565b73ffffffffffffffffffffffffffffffffffffffff16611318611426565b73ffffffffffffffffffffffffffffffffffffffff161461136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590612f4f565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6113a261204a565b73ffffffffffffffffffffffffffffffffffffffff166113c0611426565b73ffffffffffffffffffffffffffffffffffffffff1614611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90612f4f565b60405180910390fd5b80600f8190555050565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61145761204a565b73ffffffffffffffffffffffffffffffffffffffff16611475611426565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290612f4f565b60405180910390fd5b8060118190555050565b6060600480546114e490612ed2565b80601f016020809104026020016040519081016040528092919081815260200182805461151090612ed2565b801561155d5780601f106115325761010080835404028352916020019161155d565b820191906000526020600020905b81548152906001019060200180831161154057829003601f168201915b5050505050905090565b60146020528060005260406000206000915090505481565b60115481565b601260009054906101000a900460ff166115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613162565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611642576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611639906131ce565b60405180910390fd5b8061164b610c6a565b61165591906131ee565b6009541015611699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169090613290565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f5482826116ec91906131ee565b111561172d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611724906132fc565b60405180910390fd5b60008211801561173f5750600e548211155b61177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590613368565b60405180910390fd5b600a54600b54106117e857601154826117979190613388565b3410156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061342e565b60405180910390fd5b6117e333836122ac565b611a24565b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156119c8576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546010546118809190612f9e565b90508083116118fd5782600b600082825461189b91906131ee565b9250508190555082601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118f191906131ee565b925050819055506119b8565b80600b600082825461190f91906131ee565b92505081905550601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601154818461196b9190612f9e565b6119759190613388565b3410156119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae9061349a565b60405180910390fd5b5b6119c233846122ac565b50611a23565b601154826119d69190613388565b341015611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f9061349a565b60405180910390fd5b611a2233836122ac565b5b5b8181611a3091906131ee565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611a7f612042565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611af0612042565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b9d612042565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be291906128e7565b60405180910390a35050565b611bf9848484610c81565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c5b57611c24848484846122ca565b611c5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611c6961204a565b73ffffffffffffffffffffffffffffffffffffffff16611c87611426565b73ffffffffffffffffffffffffffffffffffffffff1614611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490612f4f565b60405180910390fd5b611ce933600d546122ac565b565b611cf361204a565b73ffffffffffffffffffffffffffffffffffffffff16611d11611426565b73ffffffffffffffffffffffffffffffffffffffff1614611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90612f4f565b60405180910390fd5b80600e8190555050565b600c5481565b6060611d8282611fe3565b611db8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611dc261241a565b90506000815103611de25760405180602001604052806000815250611e0d565b80611dec846124ac565b604051602001611dfd9291906134f6565b6040516020818303038152906040525b915050919050565b600b5481565b600e5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900460ff1681565b611ed661204a565b73ffffffffffffffffffffffffffffffffffffffff16611ef4611426565b73ffffffffffffffffffffffffffffffffffffffff1614611f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4190612f4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb09061358c565b60405180910390fd5b611fc2816121e8565b50565b60105481565b60156020528060005260406000206000915090505481565b600081611fee612052565b11158015611ffd575060015482105b801561203b575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b60008082905080612066612052565b116120ec576001548110156120eb5760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120e9575b600081036120df5760056000836001900393508381526020019081526020016000205490506120b5565b809250505061211e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121a6868684612506565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122c682826040518060200160405280600081525061250f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122f0612042565b8786866040518563ffffffff1660e01b81526004016123129493929190613601565b6020604051808303816000875af192505050801561234e57506040513d601f19601f8201168201806040525081019061234b9190613662565b60015b6123c7573d806000811461237e576040519150601f19603f3d011682016040523d82523d6000602084013e612383565b606091505b5060008151036123bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606013805461242990612ed2565b80601f016020809104026020016040519081016040528092919081815260200182805461245590612ed2565b80156124a25780601f10612477576101008083540402835291602001916124a2565b820191906000526020600020905b81548152906001019060200180831161248557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156124f257600183039250600a81066030018353600a810490506124d2565b508181036020830392508083525050919050565b60009392505050565b61251983836125ad565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125a85760006001549050600083820390505b61255a60008683806001019450866122ca565b612590576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125475781600154146125a557600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361261a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612654576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126616000848385612189565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126d8836126c9600086600061218f565b6126d285612780565b176121b7565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126fc5780600181905550505061277b60008483856121e2565b505050565b60006001821460e11b9050919050565b82805461279c90612ed2565b90600052602060002090601f0160209004810192826127be5760008555612805565b82601f106127d757803560ff1916838001178555612805565b82800160010185558215612805579182015b828111156128045782358255916020019190600101906127e9565b5b5090506128129190612816565b5090565b5b8082111561282f576000816000905550600101612817565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61287c81612847565b811461288757600080fd5b50565b60008135905061289981612873565b92915050565b6000602082840312156128b5576128b461283d565b5b60006128c38482850161288a565b91505092915050565b60008115159050919050565b6128e1816128cc565b82525050565b60006020820190506128fc60008301846128d8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561293c578082015181840152602081019050612921565b8381111561294b576000848401525b50505050565b6000601f19601f8301169050919050565b600061296d82612902565b612977818561290d565b935061298781856020860161291e565b61299081612951565b840191505092915050565b600060208201905081810360008301526129b58184612962565b905092915050565b6000819050919050565b6129d0816129bd565b81146129db57600080fd5b50565b6000813590506129ed816129c7565b92915050565b600060208284031215612a0957612a0861283d565b5b6000612a17848285016129de565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a4b82612a20565b9050919050565b612a5b81612a40565b82525050565b6000602082019050612a766000830184612a52565b92915050565b612a8581612a40565b8114612a9057600080fd5b50565b600081359050612aa281612a7c565b92915050565b60008060408385031215612abf57612abe61283d565b5b6000612acd85828601612a93565b9250506020612ade858286016129de565b9150509250929050565b612af1816129bd565b82525050565b6000602082019050612b0c6000830184612ae8565b92915050565b600080600060608486031215612b2b57612b2a61283d565b5b6000612b3986828701612a93565b9350506020612b4a86828701612a93565b9250506040612b5b868287016129de565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612b8a57612b89612b65565b5b8235905067ffffffffffffffff811115612ba757612ba6612b6a565b5b602083019150836001820283011115612bc357612bc2612b6f565b5b9250929050565b60008060208385031215612be157612be061283d565b5b600083013567ffffffffffffffff811115612bff57612bfe612842565b5b612c0b85828601612b74565b92509250509250929050565b600060208284031215612c2d57612c2c61283d565b5b6000612c3b84828501612a93565b91505092915050565b612c4d816128cc565b8114612c5857600080fd5b50565b600081359050612c6a81612c44565b92915050565b60008060408385031215612c8757612c8661283d565b5b6000612c9585828601612a93565b9250506020612ca685828601612c5b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ced82612951565b810181811067ffffffffffffffff82111715612d0c57612d0b612cb5565b5b80604052505050565b6000612d1f612833565b9050612d2b8282612ce4565b919050565b600067ffffffffffffffff821115612d4b57612d4a612cb5565b5b612d5482612951565b9050602081019050919050565b82818337600083830152505050565b6000612d83612d7e84612d30565b612d15565b905082815260208101848484011115612d9f57612d9e612cb0565b5b612daa848285612d61565b509392505050565b600082601f830112612dc757612dc6612b65565b5b8135612dd7848260208601612d70565b91505092915050565b60008060008060808587031215612dfa57612df961283d565b5b6000612e0887828801612a93565b9450506020612e1987828801612a93565b9350506040612e2a878288016129de565b925050606085013567ffffffffffffffff811115612e4b57612e4a612842565b5b612e5787828801612db2565b91505092959194509250565b60008060408385031215612e7a57612e7961283d565b5b6000612e8885828601612a93565b9250506020612e9985828601612a93565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eea57607f821691505b602082108103612efd57612efc612ea3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f3960208361290d565b9150612f4482612f03565b602082019050919050565b60006020820190508181036000830152612f6881612f2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fa9826129bd565b9150612fb4836129bd565b925082821015612fc757612fc6612f6f565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b600061302e60278361290d565b915061303982612fd2565b604082019050919050565b6000602082019050818103600083015261305d81613021565b9050919050565b600081905092915050565b50565b600061307f600083613064565b915061308a8261306f565b600082019050919050565b60006130a082613072565b9150819050919050565b7f5465616d207472616e73666572206661696c65642e0000000000000000000000600082015250565b60006130e060158361290d565b91506130eb826130aa565b602082019050919050565b6000602082019050818103600083015261310f816130d3565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b600061314c60178361290d565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b60006131b8601c8361290d565b91506131c382613182565b602082019050919050565b600060208201905081810360008301526131e7816131ab565b9050919050565b60006131f9826129bd565b9150613204836129bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561323957613238612f6f565b5b828201905092915050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b600061327a60138361290d565b915061328582613244565b602082019050919050565b600060208201905081810360008301526132a98161326d565b9050919050565b7f45786365656473206d6178206d696e7473207065722061646472657373210000600082015250565b60006132e6601e8361290d565b91506132f1826132b0565b602082019050919050565b60006020820190508181036000830152613315816132d9565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b600061335260148361290d565b915061335d8261331c565b602082019050919050565b6000602082019050818103600083015261338181613345565b9050919050565b6000613393826129bd565b915061339e836129bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133d7576133d6612f6f565b5b828202905092915050565b7f4e656564204d6f72652045544800000000000000000000000000000000000000600082015250565b6000613418600d8361290d565b9150613423826133e2565b602082019050919050565b600060208201905081810360008301526134478161340b565b9050919050565b7f4e656564206d6f72652045544800000000000000000000000000000000000000600082015250565b6000613484600d8361290d565b915061348f8261344e565b602082019050919050565b600060208201905081810360008301526134b381613477565b9050919050565b600081905092915050565b60006134d082612902565b6134da81856134ba565b93506134ea81856020860161291e565b80840191505092915050565b600061350282856134c5565b915061350e82846134c5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061357660268361290d565b91506135818261351a565b604082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135d3826135ac565b6135dd81856135b7565b93506135ed81856020860161291e565b6135f681612951565b840191505092915050565b60006080820190506136166000830187612a52565b6136236020830186612a52565b6136306040830185612ae8565b818103606083015261364281846135c8565b905095945050505050565b60008151905061365c81612873565b92915050565b6000602082840312156136785761367761283d565b5b60006136868482850161364d565b9150509291505056fea264697066735822122021e747f1727502cf16c3657e4cdb347234bd6c1fecb2c8797962b7c9acd9d58764736f6c634300080d0033

Deployed Bytecode Sourcemap

50409:3894:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18015:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25608:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25156:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53483:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17069:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34873:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50652:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26498:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50509:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53723:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53959:230;;;:::i;:::-;;23451:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18694:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;;;;;;;;;;;:::i;:::-;;53391:84;;;;;;;;;;;;;:::i;:::-;;53269:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50764:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53063:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23831:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51131:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50876:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51513:1540;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25884:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26754:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54197:103;;;;;;;;;;;;;:::i;:::-;;53157:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50603:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24006:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50566:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50709:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50452:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26263:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50940:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50819:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51189:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18015:615;18100:4;18415:10;18400:25;;:11;:25;;;;:102;;;;18492:10;18477:25;;:11;:25;;;;18400:102;:179;;;;18569:10;18554:25;;:11;:25;;;;18400:179;18380:199;;18015:615;;;:::o;23662:100::-;23716:13;23749:5;23742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23662:100;:::o;25608:204::-;25676:7;25701:16;25709:7;25701;:16::i;:::-;25696:64;;25726:34;;;;;;;;;;;;;;25696:64;25780:15;:24;25796:7;25780:24;;;;;;;;;;;;;;;;;;;;;25773:31;;25608:204;;;:::o;25156:386::-;25229:13;25245:16;25253:7;25245;:16::i;:::-;25229:32;;25301:5;25278:28;;:19;:17;:19::i;:::-;:28;;;25274:175;;25326:44;25343:5;25350:19;:17;:19::i;:::-;25326:16;:44::i;:::-;25321:128;;25398:35;;;;;;;;;;;;;;25321:128;25274:175;25488:2;25461:15;:24;25477:7;25461:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25526:7;25522:2;25506:28;;25515:5;25506:28;;;;;;;;;;;;25218:324;25156:386;;:::o;53483:232::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53595:13:::1;:11;:13::i;:::-;53584:7;53572:9;;:19;;;;:::i;:::-;:36;;53550:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;53700:7;53687:9;;:20;;;;;;;:::i;:::-;;;;;;;;53483:232:::0;:::o;17069:315::-;17122:7;17350:15;:13;:15::i;:::-;17335:12;;17319:13;;:28;:46;17312:53;;17069:315;:::o;34873:2800::-;35007:27;35037;35056:7;35037:18;:27::i;:::-;35007:57;;35122:4;35081:45;;35097:19;35081:45;;;35077:86;;35135:28;;;;;;;;;;;;;;35077:86;35177:27;35206:23;35233:28;35253:7;35233:19;:28::i;:::-;35176:85;;;;35361:62;35380:15;35397:4;35403:19;:17;:19::i;:::-;35361:18;:62::i;:::-;35356:174;;35443:43;35460:4;35466:19;:17;:19::i;:::-;35443:16;:43::i;:::-;35438:92;;35495:35;;;;;;;;;;;;;;35438:92;35356:174;35561:1;35547:16;;:2;:16;;;35543:52;;35572:23;;;;;;;;;;;;;;35543:52;35608:43;35630:4;35636:2;35640:7;35649:1;35608:21;:43::i;:::-;35744:15;35741:160;;;35884:1;35863:19;35856:30;35741:160;36279:18;:24;36298:4;36279:24;;;;;;;;;;;;;;;;36277:26;;;;;;;;;;;;36348:18;:22;36367:2;36348:22;;;;;;;;;;;;;;;;36346:24;;;;;;;;;;;36670:145;36707:2;36755:45;36770:4;36776:2;36780:19;36755:14;:45::i;:::-;14297:8;36728:72;36670:18;:145::i;:::-;36641:17;:26;36659:7;36641:26;;;;;;;;;;;:174;;;;36985:1;14297:8;36935:19;:46;:51;36931:626;;37007:19;37039:1;37029:7;:11;37007:33;;37196:1;37162:17;:30;37180:11;37162:30;;;;;;;;;;;;:35;37158:384;;37300:13;;37285:11;:28;37281:242;;37480:19;37447:17;:30;37465:11;37447:30;;;;;;;;;;;:52;;;;37281:242;37158:384;36988:569;36931:626;37604:7;37600:2;37585:27;;37594:4;37585:27;;;;;;;;;;;;37623:42;37644:4;37650:2;37654:7;37663:1;37623:20;:42::i;:::-;34996:2677;;;34873:2800;;;:::o;50652:48::-;;;;:::o;26498:185::-;26636:39;26653:4;26659:2;26663:7;26636:39;;;;;;;;;;;;:16;:39::i;:::-;26498:185;;;:::o;50509:50::-;;;;:::o;53723:106::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53814:7:::1;;53798:13;:23;;;;;;;:::i;:::-;;53723:106:::0;;:::o;53959:230::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54027:12:::1;51043:42;54045:26;;54093:21;54045:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54026:103;;;54148:7;54140:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;54013:176;53959:230::o:0;23451:144::-;23515:7;23558:27;23577:7;23558:18;:27::i;:::-;23535:52;;23451:144;;;:::o;18694:224::-;18758:7;18799:1;18782:19;;:5;:19;;;18778:60;;18810:28;;;;;;;;;;;;;;18778:60;13249:13;18856:18;:25;18875:5;18856:25;;;;;;;;;;;;;;;;:54;18849:61;;18694:224;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;53391:84::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53455:12:::1;;;;;;;;;;;53454:13;53439:12;;:28;;;;;;;;;;;;;;;;;;53391:84::o:0;53269:114::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53368:7:::1;53342:23;:33;;;;53269:114:::0;:::o;50764:48::-;;;;:::o;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;53063:86::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53135:6:::1;53127:5;:14;;;;53063:86:::0;:::o;23831:104::-;23887:13;23920:7;23913:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23831:104;:::o;51131:51::-;;;;;;;;;;;;;;;;;:::o;50876:57::-;;;;:::o;51513:1540::-;51370:12;;;;;;;;;;;51362:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51442:10;51429:23;;:9;:23;;;51421:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51642:9:::1;51626:13;:11;:13::i;:::-;:25;;;;:::i;:::-;51613:9;;:38;;51591:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;51709:21;51733:12;:24;51746:10;51733:24;;;;;;;;;;;;;;;;51709:48;;51819:23;;51806:9;51790:13;:25;;;;:::i;:::-;:52;;51768:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;51945:1;51933:9;:13;:48;;;;;51963:18;;51950:9;:31;;51933:48;51911:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;52063:13;;52044:15;;:32;52040:943;;52123:5;;52113:9;:15;;;;:::i;:::-;52101:9;:27;;52093:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52161:32;52171:10;52183:9;52161;:32::i;:::-;52040:943;;;52245:17;;52214:16;:28;52231:10;52214:28;;;;;;;;;;;;;;;;:48;52210:773;;;52274:29;52326:16;:28;52343:10;52326:28;;;;;;;;;;;;;;;;52306:17;;:48;;;;:::i;:::-;52274:80;;52388:21;52375:9;:34;52371:411;;52449:9;52430:15;;:28;;;;;;;:::i;:::-;;;;;;;;52508:9;52477:16;:28;52494:10;52477:28;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;52371:411;;;52577:21;52558:15;;:40;;;;;;;:::i;:::-;;;;;;;;52648:17;;52617:16;:28;52634:10;52617:28;;;;;;;;;;;;;;;:48;;;;52739:5;;52716:21;52706:9;:31;;;;:::i;:::-;52705:39;;;;:::i;:::-;52692:9;:52;;52684:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;52371:411;52800:32;52810:10;52822:9;52800;:32::i;:::-;52263:583;52210:773;;;52896:5;;52886:9;:15;;;;:::i;:::-;52873:9;:28;;52865:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;52934:32;52944:10;52956:9;52934;:32::i;:::-;52210:773;52040:943;53036:9;53020:13;:25;;;;:::i;:::-;52993:12;:24;53006:10;52993:24;;;;;;;;;;;;;;;:52;;;;51580:1473;51513:1540:::0;:::o;25884:308::-;25995:19;:17;:19::i;:::-;25983:31;;:8;:31;;;25979:61;;26023:17;;;;;;;;;;;;;;25979:61;26105:8;26053:18;:39;26072:19;:17;:19::i;:::-;26053:39;;;;;;;;;;;;;;;:49;26093:8;26053:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26165:8;26129:55;;26144:19;:17;:19::i;:::-;26129:55;;;26175:8;26129:55;;;;;;:::i;:::-;;;;;;;;25884:308;;:::o;26754:399::-;26921:31;26934:4;26940:2;26944:7;26921:12;:31::i;:::-;26985:1;26967:2;:14;;;:19;26963:183;;27006:56;27037:4;27043:2;27047:7;27056:5;27006:30;:56::i;:::-;27001:145;;27090:40;;;;;;;;;;;;;;27001:145;26963:183;26754:399;;;;:::o;54197:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54257:35:::1;54267:10;54279:12;;54257:9;:35::i;:::-;54197:103::o:0;53157:104::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53246:7:::1;53225:18;:28;;;;53157:104:::0;:::o;50603:42::-;;;;:::o;24006:318::-;24079:13;24110:16;24118:7;24110;:16::i;:::-;24105:59;;24135:29;;;;;;;;;;;;;;24105:59;24177:21;24201:10;:8;:10::i;:::-;24177:34;;24254:1;24235:7;24229:21;:26;:87;;;;;;;;;;;;;;;;;24282:7;24291:18;24301:7;24291:9;:18::i;:::-;24265:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24229:87;24222:94;;;24006:318;;;:::o;50566:30::-;;;;:::o;50709:48::-;;;;:::o;50452:50::-;;;;:::o;26263:164::-;26360:4;26384:18;:25;26403:5;26384:25;;;;;;;;;;;;;;;:35;26410:8;26384:35;;;;;;;;;;;;;;;;;;;;;;;;;26377:42;;26263:164;;;;:::o;50940:51::-;;;;;;;;;;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;::::0;2945:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;50819:44::-;;;;:::o;51189:47::-;;;;;;;;;;;;;;;;;:::o;27408:273::-;27465:4;27521:7;27502:15;:13;:15::i;:::-;:26;;:66;;;;;27555:13;;27545:7;:23;27502:66;:152;;;;;27653:1;14019:8;27606:17;:26;27624:7;27606:26;;;;;;;;;;;;:43;:48;27502:152;27482:172;;27408:273;;;:::o;45969:105::-;46029:7;46056:10;46049:17;;45969:105;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;16593:92::-;16649:7;16593:92;:::o;20368:1129::-;20435:7;20455:12;20470:7;20455:22;;20538:4;20519:15;:13;:15::i;:::-;:23;20515:915;;20572:13;;20565:4;:20;20561:869;;;20610:14;20627:17;:23;20645:4;20627:23;;;;;;;;;;;;20610:40;;20743:1;14019:8;20716:6;:23;:28;20712:699;;21235:113;21252:1;21242:6;:11;21235:113;;21295:17;:25;21313:6;;;;;;;21295:25;;;;;;;;;;;;21286:34;;21235:113;;;21381:6;21374:13;;;;;;20712:699;20587:843;20561:869;20515:915;21458:31;;;;;;;;;;;;;;20368:1129;;;;:::o;33209:652::-;33304:27;33333:23;33374:53;33430:15;33374:71;;33616:7;33610:4;33603:21;33651:22;33645:4;33638:36;33727:4;33721;33711:21;33688:44;;33823:19;33817:26;33798:45;;33554:300;33209:652;;;:::o;33974:645::-;34116:11;34278:15;34272:4;34268:26;34260:34;;34437:15;34426:9;34422:31;34409:44;;34584:15;34573:9;34570:30;34563:4;34552:9;34549:19;34546:55;34536:65;;33974:645;;;;;:::o;44802:159::-;;;;;:::o;43114:309::-;43249:7;43269:16;14420:3;43295:19;:40;;43269:67;;14420:3;43362:31;43373:4;43379:2;43383:9;43362:10;:31::i;:::-;43354:40;;:61;;43347:68;;;43114:309;;;;;:::o;22942:447::-;23022:14;23190:15;23183:5;23179:27;23170:36;;23364:5;23350:11;23326:22;23322:40;23319:51;23312:5;23309:62;23299:72;;22942:447;;;;:::o;45620:158::-;;;;;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;27765:104::-;27834:27;27844:2;27848:8;27834:27;;;;;;;;;;;;:9;:27::i;:::-;27765:104;;:::o;41624:716::-;41787:4;41833:2;41808:45;;;41854:19;:17;:19::i;:::-;41875:4;41881:7;41890:5;41808:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41804:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42108:1;42091:6;:13;:18;42087:235;;42137:40;;;;;;;;;;;;;;42087:235;42280:6;42274:13;42265:6;42261:2;42257:15;42250:38;41804:529;41977:54;;;41967:64;;;:6;:64;;;;41960:71;;;41624:716;;;;;;:::o;53837:114::-;53897:13;53930;53923:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53837:114;:::o;46180:1960::-;46237:17;46656:3;46649:4;46643:11;46639:21;46632:28;;46747:3;46741:4;46734:17;46853:3;47309:5;47439:1;47434:3;47430:11;47423:18;;47576:2;47570:4;47566:13;47562:2;47558:22;47553:3;47545:36;47617:2;47611:4;47607:13;47599:21;;47201:697;47636:4;47201:697;;;47827:1;47822:3;47818:11;47811:18;;47878:2;47872:4;47868:13;47864:2;47860:22;47855:3;47847:36;47731:2;47725:4;47721:13;47713:21;;47201:697;;;47205:430;47937:3;47932;47928:13;48052:2;48047:3;48043:12;48036:19;;48115:6;48110:3;48103:19;46276:1857;;46180:1960;;;:::o;43999:147::-;44136:6;43999:147;;;;;:::o;28285:681::-;28408:19;28414:2;28418:8;28408:5;:19::i;:::-;28487:1;28469:2;:14;;;:19;28465:483;;28509:11;28523:13;;28509:27;;28555:13;28577:8;28571:3;:14;28555:30;;28604:233;28635:62;28674:1;28678:2;28682:7;;;;;;28691:5;28635:30;:62::i;:::-;28630:167;;28733:40;;;;;;;;;;;;;;28630:167;28832:3;28824:5;:11;28604:233;;28919:3;28902:13;;:20;28898:34;;28924:8;;;28898:34;28490:458;;28465:483;28285:681;;;:::o;29239:1529::-;29304:20;29327:13;;29304:36;;29369:1;29355:16;;:2;:16;;;29351:48;;29380:19;;;;;;;;;;;;;;29351:48;29426:1;29414:8;:13;29410:44;;29436:18;;;;;;;;;;;;;;29410:44;29467:61;29497:1;29501:2;29505:12;29519:8;29467:21;:61::i;:::-;30010:1;13386:2;29981:1;:25;;29980:31;29968:8;:44;29942:18;:22;29961:2;29942:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30289:139;30326:2;30380:33;30403:1;30407:2;30411:1;30380:14;:33::i;:::-;30347:30;30368:8;30347:20;:30::i;:::-;:66;30289:18;:139::i;:::-;30255:17;:31;30273:12;30255:31;;;;;;;;;;;:173;;;;30445:15;30463:12;30445:30;;30490:11;30519:8;30504:12;:23;30490:37;;30542:101;30594:9;;;;;;30590:2;30569:35;;30586:1;30569:35;;;;;;;;;;;;30638:3;30628:7;:13;30542:101;;30675:3;30659:13;:19;;;;29716:974;;30700:60;30729:1;30733:2;30737:12;30751:8;30700:20;:60::i;:::-;29293:1475;29239:1529;;:::o;24772:322::-;24842:14;25073:1;25063:8;25060:15;25035:23;25031:45;25021:55;;24772:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:182::-;12520:34;12516:1;12508:6;12504:14;12497:58;12380:182;:::o;12568:366::-;12710:3;12731:67;12795:2;12790:3;12731:67;:::i;:::-;12724:74;;12807:93;12896:3;12807:93;:::i;:::-;12925:2;12920:3;12916:12;12909:19;;12568:366;;;:::o;12940:419::-;13106:4;13144:2;13133:9;13129:18;13121:26;;13193:9;13187:4;13183:20;13179:1;13168:9;13164:17;13157:47;13221:131;13347:4;13221:131;:::i;:::-;13213:139;;12940:419;;;:::o;13365:180::-;13413:77;13410:1;13403:88;13510:4;13507:1;13500:15;13534:4;13531:1;13524:15;13551:191;13591:4;13611:20;13629:1;13611:20;:::i;:::-;13606:25;;13645:20;13663:1;13645:20;:::i;:::-;13640:25;;13684:1;13681;13678:8;13675:34;;;13689:18;;:::i;:::-;13675:34;13734:1;13731;13727:9;13719:17;;13551:191;;;;:::o;13748:226::-;13888:34;13884:1;13876:6;13872:14;13865:58;13957:9;13952:2;13944:6;13940:15;13933:34;13748:226;:::o;13980:366::-;14122:3;14143:67;14207:2;14202:3;14143:67;:::i;:::-;14136:74;;14219:93;14308:3;14219:93;:::i;:::-;14337:2;14332:3;14328:12;14321:19;;13980:366;;;:::o;14352:419::-;14518:4;14556:2;14545:9;14541:18;14533:26;;14605:9;14599:4;14595:20;14591:1;14580:9;14576:17;14569:47;14633:131;14759:4;14633:131;:::i;:::-;14625:139;;14352:419;;;:::o;14777:147::-;14878:11;14915:3;14900:18;;14777:147;;;;:::o;14930:114::-;;:::o;15050:398::-;15209:3;15230:83;15311:1;15306:3;15230:83;:::i;:::-;15223:90;;15322:93;15411:3;15322:93;:::i;:::-;15440:1;15435:3;15431:11;15424:18;;15050:398;;;:::o;15454:379::-;15638:3;15660:147;15803:3;15660:147;:::i;:::-;15653:154;;15824:3;15817:10;;15454:379;;;:::o;15839:171::-;15979:23;15975:1;15967:6;15963:14;15956:47;15839:171;:::o;16016:366::-;16158:3;16179:67;16243:2;16238:3;16179:67;:::i;:::-;16172:74;;16255:93;16344:3;16255:93;:::i;:::-;16373:2;16368:3;16364:12;16357:19;;16016:366;;;:::o;16388:419::-;16554:4;16592:2;16581:9;16577:18;16569:26;;16641:9;16635:4;16631:20;16627:1;16616:9;16612:17;16605:47;16669:131;16795:4;16669:131;:::i;:::-;16661:139;;16388:419;;;:::o;16813:173::-;16953:25;16949:1;16941:6;16937:14;16930:49;16813:173;:::o;16992:366::-;17134:3;17155:67;17219:2;17214:3;17155:67;:::i;:::-;17148:74;;17231:93;17320:3;17231:93;:::i;:::-;17349:2;17344:3;17340:12;17333:19;;16992:366;;;:::o;17364:419::-;17530:4;17568:2;17557:9;17553:18;17545:26;;17617:9;17611:4;17607:20;17603:1;17592:9;17588:17;17581:47;17645:131;17771:4;17645:131;:::i;:::-;17637:139;;17364:419;;;:::o;17789:178::-;17929:30;17925:1;17917:6;17913:14;17906:54;17789:178;:::o;17973:366::-;18115:3;18136:67;18200:2;18195:3;18136:67;:::i;:::-;18129:74;;18212:93;18301:3;18212:93;:::i;:::-;18330:2;18325:3;18321:12;18314:19;;17973:366;;;:::o;18345:419::-;18511:4;18549:2;18538:9;18534:18;18526:26;;18598:9;18592:4;18588:20;18584:1;18573:9;18569:17;18562:47;18626:131;18752:4;18626:131;:::i;:::-;18618:139;;18345:419;;;:::o;18770:305::-;18810:3;18829:20;18847:1;18829:20;:::i;:::-;18824:25;;18863:20;18881:1;18863:20;:::i;:::-;18858:25;;19017:1;18949:66;18945:74;18942:1;18939:81;18936:107;;;19023:18;;:::i;:::-;18936:107;19067:1;19064;19060:9;19053:16;;18770:305;;;;:::o;19081:169::-;19221:21;19217:1;19209:6;19205:14;19198:45;19081:169;:::o;19256:366::-;19398:3;19419:67;19483:2;19478:3;19419:67;:::i;:::-;19412:74;;19495:93;19584:3;19495:93;:::i;:::-;19613:2;19608:3;19604:12;19597:19;;19256:366;;;:::o;19628:419::-;19794:4;19832:2;19821:9;19817:18;19809:26;;19881:9;19875:4;19871:20;19867:1;19856:9;19852:17;19845:47;19909:131;20035:4;19909:131;:::i;:::-;19901:139;;19628:419;;;:::o;20053:180::-;20193:32;20189:1;20181:6;20177:14;20170:56;20053:180;:::o;20239:366::-;20381:3;20402:67;20466:2;20461:3;20402:67;:::i;:::-;20395:74;;20478:93;20567:3;20478:93;:::i;:::-;20596:2;20591:3;20587:12;20580:19;;20239:366;;;:::o;20611:419::-;20777:4;20815:2;20804:9;20800:18;20792:26;;20864:9;20858:4;20854:20;20850:1;20839:9;20835:17;20828:47;20892:131;21018:4;20892:131;:::i;:::-;20884:139;;20611:419;;;:::o;21036:170::-;21176:22;21172:1;21164:6;21160:14;21153:46;21036:170;:::o;21212:366::-;21354:3;21375:67;21439:2;21434:3;21375:67;:::i;:::-;21368:74;;21451:93;21540:3;21451:93;:::i;:::-;21569:2;21564:3;21560:12;21553:19;;21212:366;;;:::o;21584:419::-;21750:4;21788:2;21777:9;21773:18;21765:26;;21837:9;21831:4;21827:20;21823:1;21812:9;21808:17;21801:47;21865:131;21991:4;21865:131;:::i;:::-;21857:139;;21584:419;;;:::o;22009:348::-;22049:7;22072:20;22090:1;22072:20;:::i;:::-;22067:25;;22106:20;22124:1;22106:20;:::i;:::-;22101:25;;22294:1;22226:66;22222:74;22219:1;22216:81;22211:1;22204:9;22197:17;22193:105;22190:131;;;22301:18;;:::i;:::-;22190:131;22349:1;22346;22342:9;22331:20;;22009:348;;;;:::o;22363:163::-;22503:15;22499:1;22491:6;22487:14;22480:39;22363:163;:::o;22532:366::-;22674:3;22695:67;22759:2;22754:3;22695:67;:::i;:::-;22688:74;;22771:93;22860:3;22771:93;:::i;:::-;22889:2;22884:3;22880:12;22873:19;;22532:366;;;:::o;22904:419::-;23070:4;23108:2;23097:9;23093:18;23085:26;;23157:9;23151:4;23147:20;23143:1;23132:9;23128:17;23121:47;23185:131;23311:4;23185:131;:::i;:::-;23177:139;;22904:419;;;:::o;23329:163::-;23469:15;23465:1;23457:6;23453:14;23446:39;23329:163;:::o;23498:366::-;23640:3;23661:67;23725:2;23720:3;23661:67;:::i;:::-;23654:74;;23737:93;23826:3;23737:93;:::i;:::-;23855:2;23850:3;23846:12;23839:19;;23498:366;;;:::o;23870:419::-;24036:4;24074:2;24063:9;24059:18;24051:26;;24123:9;24117:4;24113:20;24109:1;24098:9;24094:17;24087:47;24151:131;24277:4;24151:131;:::i;:::-;24143:139;;23870:419;;;:::o;24295:148::-;24397:11;24434:3;24419:18;;24295:148;;;;:::o;24449:377::-;24555:3;24583:39;24616:5;24583:39;:::i;:::-;24638:89;24720:6;24715:3;24638:89;:::i;:::-;24631:96;;24736:52;24781:6;24776:3;24769:4;24762:5;24758:16;24736:52;:::i;:::-;24813:6;24808:3;24804:16;24797:23;;24559:267;24449:377;;;;:::o;24832:435::-;25012:3;25034:95;25125:3;25116:6;25034:95;:::i;:::-;25027:102;;25146:95;25237:3;25228:6;25146:95;:::i;:::-;25139:102;;25258:3;25251:10;;24832:435;;;;;:::o;25273:225::-;25413:34;25409:1;25401:6;25397:14;25390:58;25482:8;25477:2;25469:6;25465:15;25458:33;25273:225;:::o;25504:366::-;25646:3;25667:67;25731:2;25726:3;25667:67;:::i;:::-;25660:74;;25743:93;25832:3;25743:93;:::i;:::-;25861:2;25856:3;25852:12;25845:19;;25504:366;;;:::o;25876:419::-;26042:4;26080:2;26069:9;26065:18;26057:26;;26129:9;26123:4;26119:20;26115:1;26104:9;26100:17;26093:47;26157:131;26283:4;26157:131;:::i;:::-;26149:139;;25876:419;;;:::o;26301:98::-;26352:6;26386:5;26380:12;26370:22;;26301:98;;;:::o;26405:168::-;26488:11;26522:6;26517:3;26510:19;26562:4;26557:3;26553:14;26538:29;;26405:168;;;;:::o;26579:360::-;26665:3;26693:38;26725:5;26693:38;:::i;:::-;26747:70;26810:6;26805:3;26747:70;:::i;:::-;26740:77;;26826:52;26871:6;26866:3;26859:4;26852:5;26848:16;26826:52;:::i;:::-;26903:29;26925:6;26903:29;:::i;:::-;26898:3;26894:39;26887:46;;26669:270;26579:360;;;;:::o;26945:640::-;27140:4;27178:3;27167:9;27163:19;27155:27;;27192:71;27260:1;27249:9;27245:17;27236:6;27192:71;:::i;:::-;27273:72;27341:2;27330:9;27326:18;27317:6;27273:72;:::i;:::-;27355;27423:2;27412:9;27408:18;27399:6;27355:72;:::i;:::-;27474:9;27468:4;27464:20;27459:2;27448:9;27444:18;27437:48;27502:76;27573:4;27564:6;27502:76;:::i;:::-;27494:84;;26945:640;;;;;;;:::o;27591:141::-;27647:5;27678:6;27672:13;27663:22;;27694:32;27720:5;27694:32;:::i;:::-;27591:141;;;;:::o;27738:349::-;27807:6;27856:2;27844:9;27835:7;27831:23;27827:32;27824:119;;;27862:79;;:::i;:::-;27824:119;27982:1;28007:63;28062:7;28053:6;28042:9;28038:22;28007:63;:::i;:::-;27997:73;;27953:127;27738:349;;;;:::o

Swarm Source

ipfs://21e747f1727502cf16c3657e4cdb347234bd6c1fecb2c8797962b7c9acd9d587
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.