ETH Price: $3,502.05 (+2.13%)
Gas: 2 Gwei

Token

Kevinmom (KEVINMOM)
 

Overview

Max Total Supply

342 KEVINMOM

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
4aaaa.eth
Balance
5 KEVINMOM
0x89D3Afde089399534aFDB7aD2D05138315Ef45FF
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:
Kevinmom

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 19 : KevinMom.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721A.sol";
import "./interfaces/IERC721Locker.sol";
import "./interfaces/ISpermToken.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract Kevinmom is ERC721A, Ownable, ReentrancyGuard {
    /* ========== VARIABLES ========== */

    string public baseURI = "";
    string public contractURI = "";
    string public constant baseExtension = ".json";

    address public sperm;

    uint256 public constant MAX_PER_EARLY_TX = 5;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_SUPPLY = 4010;
    uint256 public constant EARLY_PERKS = 1010;
    uint256 public constant BASE_REWARD = 5000 ether;

    uint256 private earlyPrice = 0.00132 ether;
    uint256 private latePrice = 0.0066 ether;

    bool public paused = true;
    bool public rewardPaused = true;
    bool public notRevealed = true;

    // Mapping from token ID to locker address
    mapping(uint256 => address) private _lockedBy;
    mapping(address => uint256) public lockedAmount;
    mapping(address => uint256) public lastClaimed;

    /* ========== CONSTRUCTOR ========== */

    constructor(string memory baseURI_, address _sperm)
        ERC721A("Kevinmom", "KEVINMOM")
    {
        baseURI = baseURI_;
        sperm = _sperm;
        _safeMint(msg.sender, 10);
    }

    /* ========== OWNER FUNCTIONS ========== */

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = msg.sender.call{value: balance}("");
        require(success, "Failed to send");
    }

    function togglePause() external onlyOwner {
        paused = !paused;
    }

    function toggleRewardPause() external onlyOwner {
        rewardPaused = !rewardPaused;
    }

    function toggleReveal() external onlyOwner {
        notRevealed = !notRevealed;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function setToken(address _token) external onlyOwner {
        sperm = _token;
    }

    function setPrice(uint256 _earlyPrice, uint256 _latePrice)
        external
        onlyOwner
    {
        earlyPrice = _earlyPrice;
        latePrice = _latePrice;
    }

    /* ========== PUBLIC READ FUNCTIONS ========== */

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token does not exist.");
        return
            notRevealed ? baseURI : bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }

    function lockedBy(uint256 tokenId) external view returns (address) {
        return _lockedBy[tokenId];
    }

    function getPendingReward(address _user)
        external
        view
        returns (uint256 rewards)
    {
        rewards = _getPendingReward(_user);
    }

    function price() external view returns (uint256 currentPrice) {
        currentPrice = _getCurrentPrice();
    }

    /* ========== PUBLIC MUTATIVE FUNCTIONS ========== */

    function mint(uint256 _amount) external payable {
        address _caller = msg.sender;
        require(!paused, "Son: Minting is paused");
        require(_amount > 0, "Son: Bad mints");

        require(totalSupply() + _amount <= MAX_SUPPLY, "Exceeds max supply");

        require(_amount <= _maxTx(), "Son: Exceeds max amount");
        require(msg.value >= _amount * _getCurrentPrice());

        _safeMint(_caller, _amount);
    }

    function harvestReward() external {
        _harvestReward();
    }

    function lock(uint256 tokenId) external nonReentrant {
        require(_lockedBy[tokenId] == address(0), "Son: already locked");

        require(
            ownerOf(tokenId) == msg.sender,
            "ERC721: transfer caller is not owner nor approved"
        );

        _lockedBy[tokenId] = msg.sender;
        lastClaimed[msg.sender] = block.timestamp;
        lockedAmount[msg.sender]++;

        if (_getPendingReward(msg.sender) > 0 && !paused) {
            _harvestReward();
        }

        require(
            _checkOnERC721Locked(ownerOf(tokenId), msg.sender, tokenId, ""),
            "Son: lock failed"
        );
    }

    function unlock(uint256 tokenId) external {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        require(_lockedBy[tokenId] == msg.sender, "Son: caller is not locker");
        require(
            _checkOnERC721Unlocked(ownerOf(tokenId), msg.sender, tokenId, ""),
            "Son: unlock failed"
        );

        delete _lockedBy[tokenId];
        lastClaimed[msg.sender] = block.timestamp;
        lockedAmount[msg.sender]--;

        if (_getPendingReward(msg.sender) > 0 && !paused) {
            _harvestReward();
        }
    }

    /* ========== INTERNAL FUNCTIONS ========== */

    function _getPendingReward(address _user) internal view returns (uint256) {
        return
            (lockedAmount[_user] *
                BASE_REWARD *
                (block.timestamp - lastClaimed[_user])) / 86400;
    }

    function _maxTx() internal view returns (uint256) {
        if (totalSupply() < EARLY_PERKS) {
            return MAX_PER_EARLY_TX;
        } else {
            return MAX_PER_TX;
        }
    }

    function _getCurrentPrice() internal view returns (uint256) {
        if (totalSupply() < EARLY_PERKS) {
            return earlyPrice;
        } else {
            return latePrice;
        }
    }

    function _harvestReward() internal {
        require(!rewardPaused, "Claiming reward has been paused");
        ISpermToken(sperm).mint(msg.sender, _getPendingReward(msg.sender));
        lastClaimed[msg.sender] = block.timestamp;
    }

    function _checkOnERC721Locked(
        address from,
        address locker,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        return true;
    }

    function _checkOnERC721Unlocked(
        address from,
        address locker,
        uint256 tokenId,
        bytes memory _data
    ) private pure returns (bool) {
        return true;
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);

        if (_lockedBy[startTokenId] != to) {
            require(
                _lockedBy[startTokenId] == address(0),
                "Son: token transfer while locked"
            );
        } else {
            delete _lockedBy[startTokenId];
        }
    }
}

File 2 of 19 : ERC721A.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/interfaces/IERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC721Metadata.sol";
import "@openzeppelin/contracts/interfaces/IERC721Enumerable.sol";
import "@openzeppelin/contracts/interfaces/IERC721Receiver.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // 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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: balance query for the zero address"
        );
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721A: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity > 0, "ERC721A: quantity must be greater 0");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 19 : IERC721Locker.sol
interface IERC721Locker {
    function unlock(uint256 tokenId) external;

    function onERC721Locked(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);

    function onERC721Unlocked(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 4 of 19 : ISpermToken.sol
interface ISpermToken {
    function mint(address _user, uint256 _amount) external;
}

File 5 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 6 of 19 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 7 of 19 : Context.sol
// SPDX-License-Identifier: MIT
// 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 8 of 19 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 9 of 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721.sol";

File 12 of 19 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/extensions/IERC721Metadata.sol";

File 13 of 19 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/extensions/IERC721Enumerable.sol";

File 14 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Receiver.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721Receiver.sol";

File 15 of 19 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

File 16 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

File 17 of 19 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 18 of 19 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 19 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_sperm","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EARLY_PERKS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_EARLY_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getPendingReward","outputs":[{"internalType":"uint256","name":"rewards","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvestReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lockedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"lockedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"currentPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_earlyPrice","type":"uint256"},{"internalType":"uint256","name":"_latePrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sperm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRewardPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000805560405180602001604052806000815250600990805190602001906200002f92919062000b76565b5060405180602001604052806000815250600a90805190602001906200005792919062000b76565b506604b088731a8000600c55661772aa3f848000600d556001600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff0219169083151502179055506001600e60026101000a81548160ff021916908315150217905550348015620000cc57600080fd5b5060405162006ce938038062006ce98339818101604052810190620000f2919062000cf2565b6040518060400160405280600881526020017f4b6576696e6d6f6d0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4b4556494e4d4f4d00000000000000000000000000000000000000000000000081525081600190805190602001906200017692919062000b76565b5080600290805190602001906200018f92919062000b76565b505050620001b2620001a66200022f60201b60201c565b6200023760201b60201c565b60016008819055508160099080519060200190620001d292919062000b76565b5080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200022733600a620002fd60201b60201c565b5050620013d0565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200031f8282604051806020016040528060008152506200032360201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200039c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003939062000f4e565b60405180910390fd5b620003ad816200081860201b60201c565b15620003f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e79062000f2c565b60405180910390fd5b6000831162000436576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042d9062000ee8565b60405180910390fd5b6200044b60008583866200082560201b60201c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516200054a919062000ffc565b6fffffffffffffffffffffffffffffffff16815260200185836020015162000573919062000ffc565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015620007f357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200078b60008884886200098d60201b60201c565b620007cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c49062000f0a565b60405180910390fd5b8180620007da9062001171565b9250508080620007ea9062001171565b91505062000711565b508060008190555062000810600087858862000b4760201b60201c565b505050505050565b6000805482109050919050565b6200083e8484848462000b4d60201b620026cf1760201c565b8273ffffffffffffffffffffffffffffffffffffffff16600f600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200095057600073ffffffffffffffffffffffffffffffffffffffff16600f600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200094a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009419062000ec6565b60405180910390fd5b62000987565b600f600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b50505050565b6000620009bb8473ffffffffffffffffffffffffffffffffffffffff1662000b5360201b620026d51760201c565b1562000b3a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009ed6200022f60201b60201c565b8786866040518563ffffffff1660e01b815260040162000a11949392919062000e72565b602060405180830381600087803b15801562000a2c57600080fd5b505af192505050801562000a6057506040513d601f19601f8201168201806040525081019062000a5d919062000cc6565b60015b62000ae9573d806000811462000a93576040519150601f19603f3d011682016040523d82523d6000602084013e62000a98565b606091505b5060008151141562000ae1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad89062000f0a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000b3f565b600190505b949350505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805462000b849062001105565b90600052602060002090601f01602090048101928262000ba8576000855562000bf4565b82601f1062000bc357805160ff191683800117855562000bf4565b8280016001018555821562000bf4579182015b8281111562000bf357825182559160200191906001019062000bd6565b5b50905062000c03919062000c07565b5090565b5b8082111562000c2257600081600090555060010162000c08565b5090565b600062000c3d62000c378462000f99565b62000f70565b90508281526020810184848401111562000c5657600080fd5b62000c63848285620010cf565b509392505050565b60008151905062000c7c816200139c565b92915050565b60008151905062000c9381620013b6565b92915050565b600082601f83011262000cab57600080fd5b815162000cbd84826020860162000c26565b91505092915050565b60006020828403121562000cd957600080fd5b600062000ce98482850162000c82565b91505092915050565b6000806040838503121562000d0657600080fd5b600083015167ffffffffffffffff81111562000d2157600080fd5b62000d2f8582860162000c99565b925050602062000d428582860162000c6b565b9150509250929050565b62000d578162001049565b82525050565b600062000d6a8262000fcf565b62000d76818562000fda565b935062000d88818560208601620010cf565b62000d93816200124c565b840191505092915050565b600062000dad60208362000feb565b915062000dba826200125d565b602082019050919050565b600062000dd460238362000feb565b915062000de18262001286565b604082019050919050565b600062000dfb60338362000feb565b915062000e0882620012d5565b604082019050919050565b600062000e22601d8362000feb565b915062000e2f8262001324565b602082019050919050565b600062000e4960218362000feb565b915062000e56826200134d565b604082019050919050565b62000e6c81620010c5565b82525050565b600060808201905062000e89600083018762000d4c565b62000e98602083018662000d4c565b62000ea7604083018562000e61565b818103606083015262000ebb818462000d5d565b905095945050505050565b6000602082019050818103600083015262000ee18162000d9e565b9050919050565b6000602082019050818103600083015262000f038162000dc5565b9050919050565b6000602082019050818103600083015262000f258162000dec565b9050919050565b6000602082019050818103600083015262000f478162000e13565b9050919050565b6000602082019050818103600083015262000f698162000e3a565b9050919050565b600062000f7c62000f8f565b905062000f8a82826200113b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000fb75762000fb66200121d565b5b62000fc2826200124c565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620010098262001089565b9150620010168362001089565b9250826fffffffffffffffffffffffffffffffff038211156200103e576200103d620011bf565b5b828201905092915050565b60006200105682620010a5565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620010ef578082015181840152602081019050620010d2565b83811115620010ff576000848401525b50505050565b600060028204905060018216806200111e57607f821691505b60208210811415620011355762001134620011ee565b5b50919050565b62001146826200124c565b810181811067ffffffffffffffff821117156200116857620011676200121d565b5b80604052505050565b60006200117e82620010c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620011b457620011b3620011bf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f536f6e3a20746f6b656e207472616e73666572207768696c65206c6f636b6564600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b620013a78162001049565b8114620013b357600080fd5b50565b620013c1816200105d565b8114620013cd57600080fd5b50565b61590980620013e06000396000f3fe6080604052600436106102935760003560e01c80637096a4c11161015a578063b88d4fde116100c1578063e1e778551161007a578063e1e77855146109bf578063e8a3d485146109fc578063e985e9c514610a27578063f2fde38b14610a64578063f43a22dc14610a8d578063f7d9757714610ab857610293565b8063b88d4fde146108c3578063c4ae3168146108ec578063c668286214610903578063c87b56dd1461092e578063ce07a05f1461096b578063dd4670641461099657610293565b8063a035b1fe11610113578063a035b1fe146107c0578063a0712d68146107eb578063a0c073db14610807578063a153e70814610832578063a22cb4651461086f578063a71615151461089857610293565b80637096a4c1146106d657806370a08231146106ed578063715018a61461072a5780638da5cb5b14610741578063938e3d7b1461076c57806395d89b411461079557610293565b806342842e0e116101fe5780635b8ad429116101b75780635b8ad429146105d85780635c975abb146105ef5780636198e3391461061a5780636352211e146106435780636c0360eb146106805780636c24433c146106ab57610293565b806342842e0e146104ca5780634df9d6ba146104f35780634f6ccce71461053057806355f804b31461056d5780635671dc83146105965780635a34928e146105c157610293565b806318160ddd1161025057806318160ddd146103cc57806322009af6146103f757806323b872dd146104225780632f745c591461044b57806332cb6b0c146104885780633ccfd60b146104b357610293565b8063013eba921461029857806301ffc9a7146102d557806306fdde0314610312578063081812fc1461033d578063095ea7b31461037a578063144fa6d7146103a3575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613dd8565b610ae1565b6040516102cc9190614b9f565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613f7f565b610af9565b6040516103099190614742565b60405180910390f35b34801561031e57600080fd5b50610327610c43565b604051610334919061475d565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190614012565b610cd5565b60405161037191906146b2565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613f43565b610d5a565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190613dd8565b610e73565b005b3480156103d857600080fd5b506103e1610f33565b6040516103ee9190614b9f565b60405180910390f35b34801561040357600080fd5b5061040c610f3c565b6040516104199190614b9f565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613e3d565b610f4a565b005b34801561045757600080fd5b50610472600480360381019061046d9190613f43565b610f5a565b60405161047f9190614b9f565b60405180910390f35b34801561049457600080fd5b5061049d611158565b6040516104aa9190614b9f565b60405180910390f35b3480156104bf57600080fd5b506104c861115e565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190613e3d565b61128f565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190613dd8565b6112af565b6040516105279190614b9f565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190614012565b6112c1565b6040516105649190614b9f565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190613fd1565b611314565b005b3480156105a257600080fd5b506105ab6113aa565b6040516105b89190614b9f565b60405180910390f35b3480156105cd57600080fd5b506105d66113af565b005b3480156105e457600080fd5b506105ed6113b9565b005b3480156105fb57600080fd5b50610604611461565b6040516106119190614742565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c9190614012565b611474565b005b34801561064f57600080fd5b5061066a60048036038101906106659190614012565b6116c4565b60405161067791906146b2565b60405180910390f35b34801561068c57600080fd5b506106956116da565b6040516106a2919061475d565b60405180910390f35b3480156106b757600080fd5b506106c0611768565b6040516106cd91906146b2565b60405180910390f35b3480156106e257600080fd5b506106eb61178e565b005b3480156106f957600080fd5b50610714600480360381019061070f9190613dd8565b611836565b6040516107219190614b9f565b60405180910390f35b34801561073657600080fd5b5061073f61191f565b005b34801561074d57600080fd5b506107566119a7565b60405161076391906146b2565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e9190613fd1565b6119d1565b005b3480156107a157600080fd5b506107aa611a67565b6040516107b7919061475d565b60405180910390f35b3480156107cc57600080fd5b506107d5611af9565b6040516107e29190614b9f565b60405180910390f35b61080560048036038101906108009190614012565b611b08565b005b34801561081357600080fd5b5061081c611c6e565b6040516108299190614742565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613dd8565b611c81565b6040516108669190614b9f565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190613f07565b611c99565b005b3480156108a457600080fd5b506108ad611e1a565b6040516108ba9190614742565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613e8c565b611e2d565b005b3480156108f857600080fd5b50610901611e89565b005b34801561090f57600080fd5b50610918611f31565b604051610925919061475d565b60405180910390f35b34801561093a57600080fd5b5061095560048036038101906109509190614012565b611f6a565b604051610962919061475d565b60405180910390f35b34801561097757600080fd5b506109806120ee565b60405161098d9190614b9f565b60405180910390f35b3480156109a257600080fd5b506109bd60048036038101906109b89190614012565b6120f4565b005b3480156109cb57600080fd5b506109e660048036038101906109e19190614012565b6123e5565b6040516109f391906146b2565b60405180910390f35b348015610a0857600080fd5b50610a11612422565b604051610a1e919061475d565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190613e01565b6124b0565b604051610a5b9190614742565b60405180910390f35b348015610a7057600080fd5b50610a8b6004803603810190610a869190613dd8565b612544565b005b348015610a9957600080fd5b50610aa261263c565b604051610aaf9190614b9f565b60405180910390f35b348015610ac457600080fd5b50610adf6004803603810190610ada919061403b565b612641565b005b60116020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c2c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c3c5750610c3b826126f8565b5b9050919050565b606060018054610c5290614efb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e90614efb565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b5050505050905090565b6000610ce082612762565b610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1690614b5f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d65826116c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906149ff565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df561276f565b73ffffffffffffffffffffffffffffffffffffffff161480610e245750610e2381610e1e61276f565b6124b0565b5b610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a906148bf565b60405180910390fd5b610e6e838383612777565b505050565b610e7b61276f565b73ffffffffffffffffffffffffffffffffffffffff16610e996119a7565b73ffffffffffffffffffffffffffffffffffffffff1614610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee69061497f565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054905090565b69010f0cf064dd5920000081565b610f55838383612829565b505050565b6000610f6583611836565b8210610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d9061477f565b60405180910390fd5b6000610fb0610f33565b905060008060005b83811015611116576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110aa57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110257868414156110f3578195505050505050611152565b83806110fe90614f5e565b9450505b50808061110e90614f5e565b915050610fb8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990614aff565b60405180910390fd5b92915050565b610faa81565b61116661276f565b73ffffffffffffffffffffffffffffffffffffffff166111846119a7565b73ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d19061497f565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff16826040516112059061469d565b60006040518083038185875af1925050503d8060008114611242576040519150601f19603f3d011682016040523d82523d6000602084013e611247565b606091505b505090508061128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290614adf565b60405180910390fd5b5050565b6112aa83838360405180602001604052806000815250611e2d565b505050565b60006112ba82612dd0565b9050919050565b60006112cb610f33565b821061130c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113039061481f565b60405180910390fd5b819050919050565b61131c61276f565b73ffffffffffffffffffffffffffffffffffffffff1661133a6119a7565b73ffffffffffffffffffffffffffffffffffffffff1614611390576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113879061497f565b60405180910390fd5b80600990805190602001906113a6929190613bc2565b5050565b600581565b6113b7612e91565b565b6113c161276f565b73ffffffffffffffffffffffffffffffffffffffff166113df6119a7565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c9061497f565b60405180910390fd5b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1681565b61147d81612762565b6114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b39061487f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600f600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461155d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115549061489f565b60405180910390fd5b611580611569826116c4565b338360405180602001604052806000815250612fbe565b6115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b6906147ff565b60405180910390fd5b600f600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905542601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061168990614ed1565b9190505550600061169933612dd0565b1180156116b35750600e60009054906101000a900460ff16155b156116c1576116c0612e91565b5b50565b60006116cf82612fcc565b600001519050919050565b600980546116e790614efb565b80601f016020809104026020016040519081016040528092919081815260200182805461171390614efb565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b505050505081565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61179661276f565b73ffffffffffffffffffffffffffffffffffffffff166117b46119a7565b73ffffffffffffffffffffffffffffffffffffffff161461180a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118019061497f565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e906148ff565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61192761276f565b73ffffffffffffffffffffffffffffffffffffffff166119456119a7565b73ffffffffffffffffffffffffffffffffffffffff161461199b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119929061497f565b60405180910390fd5b6119a56000613127565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119d961276f565b73ffffffffffffffffffffffffffffffffffffffff166119f76119a7565b73ffffffffffffffffffffffffffffffffffffffff1614611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a449061497f565b60405180910390fd5b80600a9080519060200190611a63929190613bc2565b5050565b606060028054611a7690614efb565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa290614efb565b8015611aef5780601f10611ac457610100808354040283529160200191611aef565b820191906000526020600020905b815481529060010190602001808311611ad257829003601f168201915b5050505050905090565b6000611b036131ed565b905090565b6000339050600e60009054906101000a900460ff1615611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5490614b1f565b60405180910390fd5b60008211611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614b7f565b60405180910390fd5b610faa82611bac610f33565b611bb69190614cea565b1115611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee906148df565b60405180910390fd5b611bff613213565b821115611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c389061485f565b60405180910390fd5b611c496131ed565b82611c549190614d71565b341015611c6057600080fd5b611c6a8183613237565b5050565b600e60029054906101000a900460ff1681565b60106020528060005260406000206000915090505481565b611ca161276f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d069061499f565b60405180910390fd5b8060066000611d1c61276f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dc961276f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0e9190614742565b60405180910390a35050565b600e60019054906101000a900460ff1681565b611e38848484612829565b611e4484848484613255565b611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90614a5f565b60405180910390fd5b50505050565b611e9161276f565b73ffffffffffffffffffffffffffffffffffffffff16611eaf6119a7565b73ffffffffffffffffffffffffffffffffffffffff1614611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc9061497f565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6060611f7582612762565b611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab9061493f565b60405180910390fd5b600e60029054906101000a900460ff1661205b57600060098054611fd790614efb565b905011611ff35760405180602001604052806000815250612056565b6009611ffe836133ec565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016120469392919061466c565b6040516020818303038152906040525b6120e7565b6009805461206890614efb565b80601f016020809104026020016040519081016040528092919081815260200182805461209490614efb565b80156120e15780601f106120b6576101008083540402835291602001916120e1565b820191906000526020600020905b8154815290600101906020018083116120c457829003601f168201915b50505050505b9050919050565b6103f281565b6002600854141561213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190614b3f565b60405180910390fd5b6002600881905550600073ffffffffffffffffffffffffffffffffffffffff16600f600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db90614abf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16612204826116c4565b73ffffffffffffffffffffffffffffffffffffffff161461225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614a3f565b60405180910390fd5b33600f600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061234090614f5e565b9190505550600061235033612dd0565b11801561236a5750600e60009054906101000a900460ff16155b1561237857612377612e91565b5b61239b612384826116c4565b338360405180602001604052806000815250613599565b6123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d1906149df565b60405180910390fd5b600160088190555050565b6000600f600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a805461242f90614efb565b80601f016020809104026020016040519081016040528092919081815260200182805461245b90614efb565b80156124a85780601f1061247d576101008083540402835291602001916124a8565b820191906000526020600020905b81548152906001019060200180831161248b57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61254c61276f565b73ffffffffffffffffffffffffffffffffffffffff1661256a6119a7565b73ffffffffffffffffffffffffffffffffffffffff16146125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b79061497f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612627906147bf565b60405180910390fd5b61263981613127565b50565b600a81565b61264961276f565b73ffffffffffffffffffffffffffffffffffffffff166126676119a7565b73ffffffffffffffffffffffffffffffffffffffff16146126bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b49061497f565b60405180910390fd5b81600c8190555080600d819055505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061283482612fcc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661285b61276f565b73ffffffffffffffffffffffffffffffffffffffff1614806128b7575061288061276f565b73ffffffffffffffffffffffffffffffffffffffff1661289f84610cd5565b73ffffffffffffffffffffffffffffffffffffffff16145b806128d357506128d282600001516128cd61276f565b6124b0565b5b905080612915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290c906149bf565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297e9061495f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ee9061483f565b60405180910390fd5b612a0485858560016135a7565b612a146000848460000151612777565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612c1a9190614cea565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d6057612c9081612762565b15612d5f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dc886868660016136fd565b505050505050565b600062015180601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612e219190614dcb565b69010f0cf064dd59200000601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e769190614d71565b612e809190614d71565b612e8a9190614d40565b9050919050565b600e60019054906101000a900460ff1615612ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed89061491f565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1933612f2933612dd0565b6040518363ffffffff1660e01b8152600401612f46929190614719565b600060405180830381600087803b158015612f6057600080fd5b505af1158015612f74573d6000803e3d6000fd5b5050505042601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b600060019050949350505050565b612fd4613c48565b612fdd82612762565b61301c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613013906147df565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461310e578092505050613122565b50808061311a90614ed1565b915050613022565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006103f26131fa610f33565b101561320a57600c549050613210565b600d5490505b90565b60006103f2613220610f33565b101561322f5760059050613234565b600a90505b90565b613251828260405180602001604052806000815250613703565b5050565b60006132768473ffffffffffffffffffffffffffffffffffffffff166126d5565b156133df578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261329f61276f565b8786866040518563ffffffff1660e01b81526004016132c194939291906146cd565b602060405180830381600087803b1580156132db57600080fd5b505af192505050801561330c57506040513d601f19601f820116820180604052508101906133099190613fa8565b60015b61338f573d806000811461333c576040519150601f19603f3d011682016040523d82523d6000602084013e613341565b606091505b50600081511415613387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337e90614a5f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133e4565b600190505b949350505050565b60606000821415613434576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613594565b600082905060005b6000821461346657808061344f90614f5e565b915050600a8261345f9190614d40565b915061343c565b60008167ffffffffffffffff8111156134a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134da5781602001600182028036833780820191505090505b5090505b6000851461358d576001826134f39190614dcb565b9150600a856135029190614fa7565b603061350e9190614cea565b60f81b81838151811061354a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135869190614d40565b94506134de565b8093505050505b919050565b600060019050949350505050565b6135b3848484846126cf565b8273ffffffffffffffffffffffffffffffffffffffff16600f600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146136c057600073ffffffffffffffffffffffffffffffffffffffff16600f600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146136bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136b29061479f565b60405180910390fd5b6136f7565b600f600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377090614a9f565b60405180910390fd5b61378281612762565b156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b990614a7f565b60405180910390fd5b60008311613805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fc90614a1f565b60405180910390fd5b61381260008583866135a7565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161390f9190614ca4565b6fffffffffffffffffffffffffffffffff1681526020018583602001516139369190614ca4565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613ba557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b456000888488613255565b613b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b7b90614a5f565b60405180910390fd5b8180613b8f90614f5e565b9250508080613b9d90614f5e565b915050613ad4565b5080600081905550613bba60008785886136fd565b505050505050565b828054613bce90614efb565b90600052602060002090601f016020900481019282613bf05760008555613c37565b82601f10613c0957805160ff1916838001178555613c37565b82800160010185558215613c37579182015b82811115613c36578251825591602001919060010190613c1b565b5b509050613c449190613c82565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613c9b576000816000905550600101613c83565b5090565b6000613cb2613cad84614bdf565b614bba565b905082815260208101848484011115613cca57600080fd5b613cd5848285614e8f565b509392505050565b6000613cf0613ceb84614c10565b614bba565b905082815260208101848484011115613d0857600080fd5b613d13848285614e8f565b509392505050565b600081359050613d2a81615877565b92915050565b600081359050613d3f8161588e565b92915050565b600081359050613d54816158a5565b92915050565b600081519050613d69816158a5565b92915050565b600082601f830112613d8057600080fd5b8135613d90848260208601613c9f565b91505092915050565b600082601f830112613daa57600080fd5b8135613dba848260208601613cdd565b91505092915050565b600081359050613dd2816158bc565b92915050565b600060208284031215613dea57600080fd5b6000613df884828501613d1b565b91505092915050565b60008060408385031215613e1457600080fd5b6000613e2285828601613d1b565b9250506020613e3385828601613d1b565b9150509250929050565b600080600060608486031215613e5257600080fd5b6000613e6086828701613d1b565b9350506020613e7186828701613d1b565b9250506040613e8286828701613dc3565b9150509250925092565b60008060008060808587031215613ea257600080fd5b6000613eb087828801613d1b565b9450506020613ec187828801613d1b565b9350506040613ed287828801613dc3565b925050606085013567ffffffffffffffff811115613eef57600080fd5b613efb87828801613d6f565b91505092959194509250565b60008060408385031215613f1a57600080fd5b6000613f2885828601613d1b565b9250506020613f3985828601613d30565b9150509250929050565b60008060408385031215613f5657600080fd5b6000613f6485828601613d1b565b9250506020613f7585828601613dc3565b9150509250929050565b600060208284031215613f9157600080fd5b6000613f9f84828501613d45565b91505092915050565b600060208284031215613fba57600080fd5b6000613fc884828501613d5a565b91505092915050565b600060208284031215613fe357600080fd5b600082013567ffffffffffffffff811115613ffd57600080fd5b61400984828501613d99565b91505092915050565b60006020828403121561402457600080fd5b600061403284828501613dc3565b91505092915050565b6000806040838503121561404e57600080fd5b600061405c85828601613dc3565b925050602061406d85828601613dc3565b9150509250929050565b61408081614dff565b82525050565b61408f81614e11565b82525050565b60006140a082614c56565b6140aa8185614c6c565b93506140ba818560208601614e9e565b6140c381615094565b840191505092915050565b60006140d982614c61565b6140e38185614c88565b93506140f3818560208601614e9e565b6140fc81615094565b840191505092915050565b600061411282614c61565b61411c8185614c99565b935061412c818560208601614e9e565b80840191505092915050565b6000815461414581614efb565b61414f8186614c99565b9450600182166000811461416a576001811461417b576141ae565b60ff198316865281860193506141ae565b61418485614c41565b60005b838110156141a657815481890152600182019150602081019050614187565b838801955050505b50505092915050565b60006141c4602283614c88565b91506141cf826150a5565b604082019050919050565b60006141e7602083614c88565b91506141f2826150f4565b602082019050919050565b600061420a602683614c88565b91506142158261511d565b604082019050919050565b600061422d602a83614c88565b91506142388261516c565b604082019050919050565b6000614250601283614c88565b915061425b826151bb565b602082019050919050565b6000614273602383614c88565b915061427e826151e4565b604082019050919050565b6000614296602583614c88565b91506142a182615233565b604082019050919050565b60006142b9601783614c88565b91506142c482615282565b602082019050919050565b60006142dc602c83614c88565b91506142e7826152ab565b604082019050919050565b60006142ff601983614c88565b915061430a826152fa565b602082019050919050565b6000614322603983614c88565b915061432d82615323565b604082019050919050565b6000614345601283614c88565b915061435082615372565b602082019050919050565b6000614368602b83614c88565b91506143738261539b565b604082019050919050565b600061438b601f83614c88565b9150614396826153ea565b602082019050919050565b60006143ae601583614c88565b91506143b982615413565b602082019050919050565b60006143d1602683614c88565b91506143dc8261543c565b604082019050919050565b60006143f4602083614c88565b91506143ff8261548b565b602082019050919050565b6000614417601a83614c88565b9150614422826154b4565b602082019050919050565b600061443a603283614c88565b9150614445826154dd565b604082019050919050565b600061445d601083614c88565b91506144688261552c565b602082019050919050565b6000614480602283614c88565b915061448b82615555565b604082019050919050565b60006144a3600083614c7d565b91506144ae826155a4565b600082019050919050565b60006144c6602383614c88565b91506144d1826155a7565b604082019050919050565b60006144e9603183614c88565b91506144f4826155f6565b604082019050919050565b600061450c603383614c88565b915061451782615645565b604082019050919050565b600061452f601d83614c88565b915061453a82615694565b602082019050919050565b6000614552602183614c88565b915061455d826156bd565b604082019050919050565b6000614575601383614c88565b91506145808261570c565b602082019050919050565b6000614598600e83614c88565b91506145a382615735565b602082019050919050565b60006145bb602e83614c88565b91506145c68261575e565b604082019050919050565b60006145de601683614c88565b91506145e9826157ad565b602082019050919050565b6000614601601f83614c88565b915061460c826157d6565b602082019050919050565b6000614624602d83614c88565b915061462f826157ff565b604082019050919050565b6000614647600e83614c88565b91506146528261584e565b602082019050919050565b61466681614e85565b82525050565b60006146788286614138565b91506146848285614107565b91506146908284614107565b9150819050949350505050565b60006146a882614496565b9150819050919050565b60006020820190506146c76000830184614077565b92915050565b60006080820190506146e26000830187614077565b6146ef6020830186614077565b6146fc604083018561465d565b818103606083015261470e8184614095565b905095945050505050565b600060408201905061472e6000830185614077565b61473b602083018461465d565b9392505050565b60006020820190506147576000830184614086565b92915050565b6000602082019050818103600083015261477781846140ce565b905092915050565b60006020820190508181036000830152614798816141b7565b9050919050565b600060208201905081810360008301526147b8816141da565b9050919050565b600060208201905081810360008301526147d8816141fd565b9050919050565b600060208201905081810360008301526147f881614220565b9050919050565b6000602082019050818103600083015261481881614243565b9050919050565b6000602082019050818103600083015261483881614266565b9050919050565b6000602082019050818103600083015261485881614289565b9050919050565b60006020820190508181036000830152614878816142ac565b9050919050565b60006020820190508181036000830152614898816142cf565b9050919050565b600060208201905081810360008301526148b8816142f2565b9050919050565b600060208201905081810360008301526148d881614315565b9050919050565b600060208201905081810360008301526148f881614338565b9050919050565b600060208201905081810360008301526149188161435b565b9050919050565b600060208201905081810360008301526149388161437e565b9050919050565b60006020820190508181036000830152614958816143a1565b9050919050565b60006020820190508181036000830152614978816143c4565b9050919050565b60006020820190508181036000830152614998816143e7565b9050919050565b600060208201905081810360008301526149b88161440a565b9050919050565b600060208201905081810360008301526149d88161442d565b9050919050565b600060208201905081810360008301526149f881614450565b9050919050565b60006020820190508181036000830152614a1881614473565b9050919050565b60006020820190508181036000830152614a38816144b9565b9050919050565b60006020820190508181036000830152614a58816144dc565b9050919050565b60006020820190508181036000830152614a78816144ff565b9050919050565b60006020820190508181036000830152614a9881614522565b9050919050565b60006020820190508181036000830152614ab881614545565b9050919050565b60006020820190508181036000830152614ad881614568565b9050919050565b60006020820190508181036000830152614af88161458b565b9050919050565b60006020820190508181036000830152614b18816145ae565b9050919050565b60006020820190508181036000830152614b38816145d1565b9050919050565b60006020820190508181036000830152614b58816145f4565b9050919050565b60006020820190508181036000830152614b7881614617565b9050919050565b60006020820190508181036000830152614b988161463a565b9050919050565b6000602082019050614bb4600083018461465d565b92915050565b6000614bc4614bd5565b9050614bd08282614f2d565b919050565b6000604051905090565b600067ffffffffffffffff821115614bfa57614bf9615065565b5b614c0382615094565b9050602081019050919050565b600067ffffffffffffffff821115614c2b57614c2a615065565b5b614c3482615094565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614caf82614e49565b9150614cba83614e49565b9250826fffffffffffffffffffffffffffffffff03821115614cdf57614cde614fd8565b5b828201905092915050565b6000614cf582614e85565b9150614d0083614e85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d3557614d34614fd8565b5b828201905092915050565b6000614d4b82614e85565b9150614d5683614e85565b925082614d6657614d65615007565b5b828204905092915050565b6000614d7c82614e85565b9150614d8783614e85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dc057614dbf614fd8565b5b828202905092915050565b6000614dd682614e85565b9150614de183614e85565b925082821015614df457614df3614fd8565b5b828203905092915050565b6000614e0a82614e65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ebc578082015181840152602081019050614ea1565b83811115614ecb576000848401525b50505050565b6000614edc82614e85565b91506000821415614ef057614eef614fd8565b5b600182039050919050565b60006002820490506001821680614f1357607f821691505b60208210811415614f2757614f26615036565b5b50919050565b614f3682615094565b810181811067ffffffffffffffff82111715614f5557614f54615065565b5b80604052505050565b6000614f6982614e85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f9c57614f9b614fd8565b5b600182019050919050565b6000614fb282614e85565b9150614fbd83614e85565b925082614fcd57614fcc615007565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6e3a20746f6b656e207472616e73666572207768696c65206c6f636b6564600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f536f6e3a20756e6c6f636b206661696c65640000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f536f6e3a2045786365656473206d617820616d6f756e74000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f536f6e3a2063616c6c6572206973206e6f74206c6f636b657200000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f436c61696d696e672072657761726420686173206265656e2070617573656400600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f536f6e3a206c6f636b206661696c656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6e3a20616c7265616479206c6f636b656400000000000000000000000000600082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f536f6e3a204d696e74696e672069732070617573656400000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536f6e3a20426164206d696e7473000000000000000000000000000000000000600082015250565b61588081614dff565b811461588b57600080fd5b50565b61589781614e11565b81146158a257600080fd5b50565b6158ae81614e1d565b81146158b957600080fd5b50565b6158c581614e85565b81146158d057600080fd5b5056fea2646970667358221220a9faf4f0d811a86817a1d26b3216040049a3ba686bb8872d01f3760b45cbfea764736f6c63430008020033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000078e5366d8214b39e4fed62a57dd0aa63737c536f000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f6b6576696e6d6f6d2e6d7970696e6174612e636c6f75642f697066732f516d596568747370616f6356316d7a524a33414d376268745a506b35425546506d51316e4a7a4e6a425a665247682f000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c80637096a4c11161015a578063b88d4fde116100c1578063e1e778551161007a578063e1e77855146109bf578063e8a3d485146109fc578063e985e9c514610a27578063f2fde38b14610a64578063f43a22dc14610a8d578063f7d9757714610ab857610293565b8063b88d4fde146108c3578063c4ae3168146108ec578063c668286214610903578063c87b56dd1461092e578063ce07a05f1461096b578063dd4670641461099657610293565b8063a035b1fe11610113578063a035b1fe146107c0578063a0712d68146107eb578063a0c073db14610807578063a153e70814610832578063a22cb4651461086f578063a71615151461089857610293565b80637096a4c1146106d657806370a08231146106ed578063715018a61461072a5780638da5cb5b14610741578063938e3d7b1461076c57806395d89b411461079557610293565b806342842e0e116101fe5780635b8ad429116101b75780635b8ad429146105d85780635c975abb146105ef5780636198e3391461061a5780636352211e146106435780636c0360eb146106805780636c24433c146106ab57610293565b806342842e0e146104ca5780634df9d6ba146104f35780634f6ccce71461053057806355f804b31461056d5780635671dc83146105965780635a34928e146105c157610293565b806318160ddd1161025057806318160ddd146103cc57806322009af6146103f757806323b872dd146104225780632f745c591461044b57806332cb6b0c146104885780633ccfd60b146104b357610293565b8063013eba921461029857806301ffc9a7146102d557806306fdde0314610312578063081812fc1461033d578063095ea7b31461037a578063144fa6d7146103a3575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613dd8565b610ae1565b6040516102cc9190614b9f565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190613f7f565b610af9565b6040516103099190614742565b60405180910390f35b34801561031e57600080fd5b50610327610c43565b604051610334919061475d565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190614012565b610cd5565b60405161037191906146b2565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613f43565b610d5a565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190613dd8565b610e73565b005b3480156103d857600080fd5b506103e1610f33565b6040516103ee9190614b9f565b60405180910390f35b34801561040357600080fd5b5061040c610f3c565b6040516104199190614b9f565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613e3d565b610f4a565b005b34801561045757600080fd5b50610472600480360381019061046d9190613f43565b610f5a565b60405161047f9190614b9f565b60405180910390f35b34801561049457600080fd5b5061049d611158565b6040516104aa9190614b9f565b60405180910390f35b3480156104bf57600080fd5b506104c861115e565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190613e3d565b61128f565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190613dd8565b6112af565b6040516105279190614b9f565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190614012565b6112c1565b6040516105649190614b9f565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190613fd1565b611314565b005b3480156105a257600080fd5b506105ab6113aa565b6040516105b89190614b9f565b60405180910390f35b3480156105cd57600080fd5b506105d66113af565b005b3480156105e457600080fd5b506105ed6113b9565b005b3480156105fb57600080fd5b50610604611461565b6040516106119190614742565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c9190614012565b611474565b005b34801561064f57600080fd5b5061066a60048036038101906106659190614012565b6116c4565b60405161067791906146b2565b60405180910390f35b34801561068c57600080fd5b506106956116da565b6040516106a2919061475d565b60405180910390f35b3480156106b757600080fd5b506106c0611768565b6040516106cd91906146b2565b60405180910390f35b3480156106e257600080fd5b506106eb61178e565b005b3480156106f957600080fd5b50610714600480360381019061070f9190613dd8565b611836565b6040516107219190614b9f565b60405180910390f35b34801561073657600080fd5b5061073f61191f565b005b34801561074d57600080fd5b506107566119a7565b60405161076391906146b2565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e9190613fd1565b6119d1565b005b3480156107a157600080fd5b506107aa611a67565b6040516107b7919061475d565b60405180910390f35b3480156107cc57600080fd5b506107d5611af9565b6040516107e29190614b9f565b60405180910390f35b61080560048036038101906108009190614012565b611b08565b005b34801561081357600080fd5b5061081c611c6e565b6040516108299190614742565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613dd8565b611c81565b6040516108669190614b9f565b60405180910390f35b34801561087b57600080fd5b5061089660048036038101906108919190613f07565b611c99565b005b3480156108a457600080fd5b506108ad611e1a565b6040516108ba9190614742565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613e8c565b611e2d565b005b3480156108f857600080fd5b50610901611e89565b005b34801561090f57600080fd5b50610918611f31565b604051610925919061475d565b60405180910390f35b34801561093a57600080fd5b5061095560048036038101906109509190614012565b611f6a565b604051610962919061475d565b60405180910390f35b34801561097757600080fd5b506109806120ee565b60405161098d9190614b9f565b60405180910390f35b3480156109a257600080fd5b506109bd60048036038101906109b89190614012565b6120f4565b005b3480156109cb57600080fd5b506109e660048036038101906109e19190614012565b6123e5565b6040516109f391906146b2565b60405180910390f35b348015610a0857600080fd5b50610a11612422565b604051610a1e919061475d565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190613e01565b6124b0565b604051610a5b9190614742565b60405180910390f35b348015610a7057600080fd5b50610a8b6004803603810190610a869190613dd8565b612544565b005b348015610a9957600080fd5b50610aa261263c565b604051610aaf9190614b9f565b60405180910390f35b348015610ac457600080fd5b50610adf6004803603810190610ada919061403b565b612641565b005b60116020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c2c57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c3c5750610c3b826126f8565b5b9050919050565b606060018054610c5290614efb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e90614efb565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b5050505050905090565b6000610ce082612762565b610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1690614b5f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d65826116c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906149ff565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df561276f565b73ffffffffffffffffffffffffffffffffffffffff161480610e245750610e2381610e1e61276f565b6124b0565b5b610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a906148bf565b60405180910390fd5b610e6e838383612777565b505050565b610e7b61276f565b73ffffffffffffffffffffffffffffffffffffffff16610e996119a7565b73ffffffffffffffffffffffffffffffffffffffff1614610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee69061497f565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054905090565b69010f0cf064dd5920000081565b610f55838383612829565b505050565b6000610f6583611836565b8210610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d9061477f565b60405180910390fd5b6000610fb0610f33565b905060008060005b83811015611116576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110aa57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110257868414156110f3578195505050505050611152565b83806110fe90614f5e565b9450505b50808061110e90614f5e565b915050610fb8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990614aff565b60405180910390fd5b92915050565b610faa81565b61116661276f565b73ffffffffffffffffffffffffffffffffffffffff166111846119a7565b73ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d19061497f565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff16826040516112059061469d565b60006040518083038185875af1925050503d8060008114611242576040519150601f19603f3d011682016040523d82523d6000602084013e611247565b606091505b505090508061128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290614adf565b60405180910390fd5b5050565b6112aa83838360405180602001604052806000815250611e2d565b505050565b60006112ba82612dd0565b9050919050565b60006112cb610f33565b821061130c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113039061481f565b60405180910390fd5b819050919050565b61131c61276f565b73ffffffffffffffffffffffffffffffffffffffff1661133a6119a7565b73ffffffffffffffffffffffffffffffffffffffff1614611390576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113879061497f565b60405180910390fd5b80600990805190602001906113a6929190613bc2565b5050565b600581565b6113b7612e91565b565b6113c161276f565b73ffffffffffffffffffffffffffffffffffffffff166113df6119a7565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c9061497f565b60405180910390fd5b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1681565b61147d81612762565b6114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b39061487f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600f600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461155d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115549061489f565b60405180910390fd5b611580611569826116c4565b338360405180602001604052806000815250612fbe565b6115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b6906147ff565b60405180910390fd5b600f600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905542601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061168990614ed1565b9190505550600061169933612dd0565b1180156116b35750600e60009054906101000a900460ff16155b156116c1576116c0612e91565b5b50565b60006116cf82612fcc565b600001519050919050565b600980546116e790614efb565b80601f016020809104026020016040519081016040528092919081815260200182805461171390614efb565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b505050505081565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61179661276f565b73ffffffffffffffffffffffffffffffffffffffff166117b46119a7565b73ffffffffffffffffffffffffffffffffffffffff161461180a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118019061497f565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e906148ff565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61192761276f565b73ffffffffffffffffffffffffffffffffffffffff166119456119a7565b73ffffffffffffffffffffffffffffffffffffffff161461199b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119929061497f565b60405180910390fd5b6119a56000613127565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119d961276f565b73ffffffffffffffffffffffffffffffffffffffff166119f76119a7565b73ffffffffffffffffffffffffffffffffffffffff1614611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a449061497f565b60405180910390fd5b80600a9080519060200190611a63929190613bc2565b5050565b606060028054611a7690614efb565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa290614efb565b8015611aef5780601f10611ac457610100808354040283529160200191611aef565b820191906000526020600020905b815481529060010190602001808311611ad257829003601f168201915b5050505050905090565b6000611b036131ed565b905090565b6000339050600e60009054906101000a900460ff1615611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5490614b1f565b60405180910390fd5b60008211611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614b7f565b60405180910390fd5b610faa82611bac610f33565b611bb69190614cea565b1115611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee906148df565b60405180910390fd5b611bff613213565b821115611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c389061485f565b60405180910390fd5b611c496131ed565b82611c549190614d71565b341015611c6057600080fd5b611c6a8183613237565b5050565b600e60029054906101000a900460ff1681565b60106020528060005260406000206000915090505481565b611ca161276f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d069061499f565b60405180910390fd5b8060066000611d1c61276f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dc961276f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0e9190614742565b60405180910390a35050565b600e60019054906101000a900460ff1681565b611e38848484612829565b611e4484848484613255565b611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90614a5f565b60405180910390fd5b50505050565b611e9161276f565b73ffffffffffffffffffffffffffffffffffffffff16611eaf6119a7565b73ffffffffffffffffffffffffffffffffffffffff1614611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc9061497f565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6060611f7582612762565b611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab9061493f565b60405180910390fd5b600e60029054906101000a900460ff1661205b57600060098054611fd790614efb565b905011611ff35760405180602001604052806000815250612056565b6009611ffe836133ec565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016120469392919061466c565b6040516020818303038152906040525b6120e7565b6009805461206890614efb565b80601f016020809104026020016040519081016040528092919081815260200182805461209490614efb565b80156120e15780601f106120b6576101008083540402835291602001916120e1565b820191906000526020600020905b8154815290600101906020018083116120c457829003601f168201915b50505050505b9050919050565b6103f281565b6002600854141561213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190614b3f565b60405180910390fd5b6002600881905550600073ffffffffffffffffffffffffffffffffffffffff16600f600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db90614abf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16612204826116c4565b73ffffffffffffffffffffffffffffffffffffffff161461225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614a3f565b60405180910390fd5b33600f600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061234090614f5e565b9190505550600061235033612dd0565b11801561236a5750600e60009054906101000a900460ff16155b1561237857612377612e91565b5b61239b612384826116c4565b338360405180602001604052806000815250613599565b6123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d1906149df565b60405180910390fd5b600160088190555050565b6000600f600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a805461242f90614efb565b80601f016020809104026020016040519081016040528092919081815260200182805461245b90614efb565b80156124a85780601f1061247d576101008083540402835291602001916124a8565b820191906000526020600020905b81548152906001019060200180831161248b57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61254c61276f565b73ffffffffffffffffffffffffffffffffffffffff1661256a6119a7565b73ffffffffffffffffffffffffffffffffffffffff16146125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b79061497f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612627906147bf565b60405180910390fd5b61263981613127565b50565b600a81565b61264961276f565b73ffffffffffffffffffffffffffffffffffffffff166126676119a7565b73ffffffffffffffffffffffffffffffffffffffff16146126bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b49061497f565b60405180910390fd5b81600c8190555080600d819055505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061283482612fcc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661285b61276f565b73ffffffffffffffffffffffffffffffffffffffff1614806128b7575061288061276f565b73ffffffffffffffffffffffffffffffffffffffff1661289f84610cd5565b73ffffffffffffffffffffffffffffffffffffffff16145b806128d357506128d282600001516128cd61276f565b6124b0565b5b905080612915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290c906149bf565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297e9061495f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ee9061483f565b60405180910390fd5b612a0485858560016135a7565b612a146000848460000151612777565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612c1a9190614cea565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d6057612c9081612762565b15612d5f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dc886868660016136fd565b505050505050565b600062015180601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612e219190614dcb565b69010f0cf064dd59200000601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e769190614d71565b612e809190614d71565b612e8a9190614d40565b9050919050565b600e60019054906101000a900460ff1615612ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed89061491f565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1933612f2933612dd0565b6040518363ffffffff1660e01b8152600401612f46929190614719565b600060405180830381600087803b158015612f6057600080fd5b505af1158015612f74573d6000803e3d6000fd5b5050505042601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b600060019050949350505050565b612fd4613c48565b612fdd82612762565b61301c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613013906147df565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461310e578092505050613122565b50808061311a90614ed1565b915050613022565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006103f26131fa610f33565b101561320a57600c549050613210565b600d5490505b90565b60006103f2613220610f33565b101561322f5760059050613234565b600a90505b90565b613251828260405180602001604052806000815250613703565b5050565b60006132768473ffffffffffffffffffffffffffffffffffffffff166126d5565b156133df578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261329f61276f565b8786866040518563ffffffff1660e01b81526004016132c194939291906146cd565b602060405180830381600087803b1580156132db57600080fd5b505af192505050801561330c57506040513d601f19601f820116820180604052508101906133099190613fa8565b60015b61338f573d806000811461333c576040519150601f19603f3d011682016040523d82523d6000602084013e613341565b606091505b50600081511415613387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337e90614a5f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133e4565b600190505b949350505050565b60606000821415613434576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613594565b600082905060005b6000821461346657808061344f90614f5e565b915050600a8261345f9190614d40565b915061343c565b60008167ffffffffffffffff8111156134a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134da5781602001600182028036833780820191505090505b5090505b6000851461358d576001826134f39190614dcb565b9150600a856135029190614fa7565b603061350e9190614cea565b60f81b81838151811061354a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135869190614d40565b94506134de565b8093505050505b919050565b600060019050949350505050565b6135b3848484846126cf565b8273ffffffffffffffffffffffffffffffffffffffff16600f600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146136c057600073ffffffffffffffffffffffffffffffffffffffff16600f600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146136bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136b29061479f565b60405180910390fd5b6136f7565b600f600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377090614a9f565b60405180910390fd5b61378281612762565b156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b990614a7f565b60405180910390fd5b60008311613805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137fc90614a1f565b60405180910390fd5b61381260008583866135a7565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161390f9190614ca4565b6fffffffffffffffffffffffffffffffff1681526020018583602001516139369190614ca4565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613ba557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b456000888488613255565b613b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b7b90614a5f565b60405180910390fd5b8180613b8f90614f5e565b9250508080613b9d90614f5e565b915050613ad4565b5080600081905550613bba60008785886136fd565b505050505050565b828054613bce90614efb565b90600052602060002090601f016020900481019282613bf05760008555613c37565b82601f10613c0957805160ff1916838001178555613c37565b82800160010185558215613c37579182015b82811115613c36578251825591602001919060010190613c1b565b5b509050613c449190613c82565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613c9b576000816000905550600101613c83565b5090565b6000613cb2613cad84614bdf565b614bba565b905082815260208101848484011115613cca57600080fd5b613cd5848285614e8f565b509392505050565b6000613cf0613ceb84614c10565b614bba565b905082815260208101848484011115613d0857600080fd5b613d13848285614e8f565b509392505050565b600081359050613d2a81615877565b92915050565b600081359050613d3f8161588e565b92915050565b600081359050613d54816158a5565b92915050565b600081519050613d69816158a5565b92915050565b600082601f830112613d8057600080fd5b8135613d90848260208601613c9f565b91505092915050565b600082601f830112613daa57600080fd5b8135613dba848260208601613cdd565b91505092915050565b600081359050613dd2816158bc565b92915050565b600060208284031215613dea57600080fd5b6000613df884828501613d1b565b91505092915050565b60008060408385031215613e1457600080fd5b6000613e2285828601613d1b565b9250506020613e3385828601613d1b565b9150509250929050565b600080600060608486031215613e5257600080fd5b6000613e6086828701613d1b565b9350506020613e7186828701613d1b565b9250506040613e8286828701613dc3565b9150509250925092565b60008060008060808587031215613ea257600080fd5b6000613eb087828801613d1b565b9450506020613ec187828801613d1b565b9350506040613ed287828801613dc3565b925050606085013567ffffffffffffffff811115613eef57600080fd5b613efb87828801613d6f565b91505092959194509250565b60008060408385031215613f1a57600080fd5b6000613f2885828601613d1b565b9250506020613f3985828601613d30565b9150509250929050565b60008060408385031215613f5657600080fd5b6000613f6485828601613d1b565b9250506020613f7585828601613dc3565b9150509250929050565b600060208284031215613f9157600080fd5b6000613f9f84828501613d45565b91505092915050565b600060208284031215613fba57600080fd5b6000613fc884828501613d5a565b91505092915050565b600060208284031215613fe357600080fd5b600082013567ffffffffffffffff811115613ffd57600080fd5b61400984828501613d99565b91505092915050565b60006020828403121561402457600080fd5b600061403284828501613dc3565b91505092915050565b6000806040838503121561404e57600080fd5b600061405c85828601613dc3565b925050602061406d85828601613dc3565b9150509250929050565b61408081614dff565b82525050565b61408f81614e11565b82525050565b60006140a082614c56565b6140aa8185614c6c565b93506140ba818560208601614e9e565b6140c381615094565b840191505092915050565b60006140d982614c61565b6140e38185614c88565b93506140f3818560208601614e9e565b6140fc81615094565b840191505092915050565b600061411282614c61565b61411c8185614c99565b935061412c818560208601614e9e565b80840191505092915050565b6000815461414581614efb565b61414f8186614c99565b9450600182166000811461416a576001811461417b576141ae565b60ff198316865281860193506141ae565b61418485614c41565b60005b838110156141a657815481890152600182019150602081019050614187565b838801955050505b50505092915050565b60006141c4602283614c88565b91506141cf826150a5565b604082019050919050565b60006141e7602083614c88565b91506141f2826150f4565b602082019050919050565b600061420a602683614c88565b91506142158261511d565b604082019050919050565b600061422d602a83614c88565b91506142388261516c565b604082019050919050565b6000614250601283614c88565b915061425b826151bb565b602082019050919050565b6000614273602383614c88565b915061427e826151e4565b604082019050919050565b6000614296602583614c88565b91506142a182615233565b604082019050919050565b60006142b9601783614c88565b91506142c482615282565b602082019050919050565b60006142dc602c83614c88565b91506142e7826152ab565b604082019050919050565b60006142ff601983614c88565b915061430a826152fa565b602082019050919050565b6000614322603983614c88565b915061432d82615323565b604082019050919050565b6000614345601283614c88565b915061435082615372565b602082019050919050565b6000614368602b83614c88565b91506143738261539b565b604082019050919050565b600061438b601f83614c88565b9150614396826153ea565b602082019050919050565b60006143ae601583614c88565b91506143b982615413565b602082019050919050565b60006143d1602683614c88565b91506143dc8261543c565b604082019050919050565b60006143f4602083614c88565b91506143ff8261548b565b602082019050919050565b6000614417601a83614c88565b9150614422826154b4565b602082019050919050565b600061443a603283614c88565b9150614445826154dd565b604082019050919050565b600061445d601083614c88565b91506144688261552c565b602082019050919050565b6000614480602283614c88565b915061448b82615555565b604082019050919050565b60006144a3600083614c7d565b91506144ae826155a4565b600082019050919050565b60006144c6602383614c88565b91506144d1826155a7565b604082019050919050565b60006144e9603183614c88565b91506144f4826155f6565b604082019050919050565b600061450c603383614c88565b915061451782615645565b604082019050919050565b600061452f601d83614c88565b915061453a82615694565b602082019050919050565b6000614552602183614c88565b915061455d826156bd565b604082019050919050565b6000614575601383614c88565b91506145808261570c565b602082019050919050565b6000614598600e83614c88565b91506145a382615735565b602082019050919050565b60006145bb602e83614c88565b91506145c68261575e565b604082019050919050565b60006145de601683614c88565b91506145e9826157ad565b602082019050919050565b6000614601601f83614c88565b915061460c826157d6565b602082019050919050565b6000614624602d83614c88565b915061462f826157ff565b604082019050919050565b6000614647600e83614c88565b91506146528261584e565b602082019050919050565b61466681614e85565b82525050565b60006146788286614138565b91506146848285614107565b91506146908284614107565b9150819050949350505050565b60006146a882614496565b9150819050919050565b60006020820190506146c76000830184614077565b92915050565b60006080820190506146e26000830187614077565b6146ef6020830186614077565b6146fc604083018561465d565b818103606083015261470e8184614095565b905095945050505050565b600060408201905061472e6000830185614077565b61473b602083018461465d565b9392505050565b60006020820190506147576000830184614086565b92915050565b6000602082019050818103600083015261477781846140ce565b905092915050565b60006020820190508181036000830152614798816141b7565b9050919050565b600060208201905081810360008301526147b8816141da565b9050919050565b600060208201905081810360008301526147d8816141fd565b9050919050565b600060208201905081810360008301526147f881614220565b9050919050565b6000602082019050818103600083015261481881614243565b9050919050565b6000602082019050818103600083015261483881614266565b9050919050565b6000602082019050818103600083015261485881614289565b9050919050565b60006020820190508181036000830152614878816142ac565b9050919050565b60006020820190508181036000830152614898816142cf565b9050919050565b600060208201905081810360008301526148b8816142f2565b9050919050565b600060208201905081810360008301526148d881614315565b9050919050565b600060208201905081810360008301526148f881614338565b9050919050565b600060208201905081810360008301526149188161435b565b9050919050565b600060208201905081810360008301526149388161437e565b9050919050565b60006020820190508181036000830152614958816143a1565b9050919050565b60006020820190508181036000830152614978816143c4565b9050919050565b60006020820190508181036000830152614998816143e7565b9050919050565b600060208201905081810360008301526149b88161440a565b9050919050565b600060208201905081810360008301526149d88161442d565b9050919050565b600060208201905081810360008301526149f881614450565b9050919050565b60006020820190508181036000830152614a1881614473565b9050919050565b60006020820190508181036000830152614a38816144b9565b9050919050565b60006020820190508181036000830152614a58816144dc565b9050919050565b60006020820190508181036000830152614a78816144ff565b9050919050565b60006020820190508181036000830152614a9881614522565b9050919050565b60006020820190508181036000830152614ab881614545565b9050919050565b60006020820190508181036000830152614ad881614568565b9050919050565b60006020820190508181036000830152614af88161458b565b9050919050565b60006020820190508181036000830152614b18816145ae565b9050919050565b60006020820190508181036000830152614b38816145d1565b9050919050565b60006020820190508181036000830152614b58816145f4565b9050919050565b60006020820190508181036000830152614b7881614617565b9050919050565b60006020820190508181036000830152614b988161463a565b9050919050565b6000602082019050614bb4600083018461465d565b92915050565b6000614bc4614bd5565b9050614bd08282614f2d565b919050565b6000604051905090565b600067ffffffffffffffff821115614bfa57614bf9615065565b5b614c0382615094565b9050602081019050919050565b600067ffffffffffffffff821115614c2b57614c2a615065565b5b614c3482615094565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614caf82614e49565b9150614cba83614e49565b9250826fffffffffffffffffffffffffffffffff03821115614cdf57614cde614fd8565b5b828201905092915050565b6000614cf582614e85565b9150614d0083614e85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d3557614d34614fd8565b5b828201905092915050565b6000614d4b82614e85565b9150614d5683614e85565b925082614d6657614d65615007565b5b828204905092915050565b6000614d7c82614e85565b9150614d8783614e85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dc057614dbf614fd8565b5b828202905092915050565b6000614dd682614e85565b9150614de183614e85565b925082821015614df457614df3614fd8565b5b828203905092915050565b6000614e0a82614e65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ebc578082015181840152602081019050614ea1565b83811115614ecb576000848401525b50505050565b6000614edc82614e85565b91506000821415614ef057614eef614fd8565b5b600182039050919050565b60006002820490506001821680614f1357607f821691505b60208210811415614f2757614f26615036565b5b50919050565b614f3682615094565b810181811067ffffffffffffffff82111715614f5557614f54615065565b5b80604052505050565b6000614f6982614e85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f9c57614f9b614fd8565b5b600182019050919050565b6000614fb282614e85565b9150614fbd83614e85565b925082614fcd57614fcc615007565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6e3a20746f6b656e207472616e73666572207768696c65206c6f636b6564600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f536f6e3a20756e6c6f636b206661696c65640000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f536f6e3a2045786365656473206d617820616d6f756e74000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f536f6e3a2063616c6c6572206973206e6f74206c6f636b657200000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f436c61696d696e672072657761726420686173206265656e2070617573656400600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f536f6e3a206c6f636b206661696c656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6e3a20616c7265616479206c6f636b656400000000000000000000000000600082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f536f6e3a204d696e74696e672069732070617573656400000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536f6e3a20426164206d696e7473000000000000000000000000000000000000600082015250565b61588081614dff565b811461588b57600080fd5b50565b61589781614e11565b81146158a257600080fd5b50565b6158ae81614e1d565b81146158b957600080fd5b50565b6158c581614e85565b81146158d057600080fd5b5056fea2646970667358221220a9faf4f0d811a86817a1d26b3216040049a3ba686bb8872d01f3760b45cbfea764736f6c63430008020033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000078e5366d8214b39e4fed62a57dd0aa63737c536f000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f6b6576696e6d6f6d2e6d7970696e6174612e636c6f75642f697066732f516d596568747370616f6356316d7a524a33414d376268745a506b35425546506d51316e4a7a4e6a425a665247682f000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): https://kevinmom.mypinata.cloud/ipfs/QmYehtspaocV1mzRJ3AM7bhtZPk5BUFPmQ1nJzNjBZfRGh/
Arg [1] : _sperm (address): 0x78e5366d8214B39E4Fed62A57dd0aA63737c536F

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000078e5366d8214b39e4fed62a57dd0aa63737c536f
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [3] : 68747470733a2f2f6b6576696e6d6f6d2e6d7970696e6174612e636c6f75642f
Arg [4] : 697066732f516d596568747370616f6356316d7a524a33414d376268745a506b
Arg [5] : 35425546506d51316e4a7a4e6a425a665247682f000000000000000000000000


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.