ETH Price: $2,611.47 (-2.22%)

Token

Happy Bunnies (BUNNY)
 

Overview

Max Total Supply

449 BUNNY

Holders

123

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BUNNY
0x7e839758ab90baab200cbd01fa6922dfa336bfa3
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:
HappyBunnies

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : HappyBunnies.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

import "./ERC721.sol";

contract HappyBunnies is ERC721 {
    event Mint(address indexed from, uint256 indexed tokenId);

    modifier mintingStarted() {
        require(
            startMintDate != 0 && startMintDate <= block.timestamp,
            "You are too early"
        );
        _;
    }

    modifier callerNotAContract() {
        require(
            tx.origin == msg.sender,
            "The caller can only be a user and not a contract"
        );
        _;
    }

    // 7777 total NFTs
    uint256 public totalBunnies = 7777;

    // Each transaction allows the user to mint only 27 NFTs. One user can't mint more than 177 NFTs.
    uint256 private maxBunniesPerWallet = 177;
    uint256 private maxBunniesPerTransaction = 27;

    // Setting Mint date to 3pm UTC, 03/09/2021
    uint256 private startMintDate = 1630681200;

    // Price per NFT: 0.07 ETH
    uint256 private bunnyPrice = 70000000000000000;

    uint256 private totalMintedBunnies = 0;

    uint256 public premintCount = 277;

    bool public premintingComplete = false;

    // IPFS base URI for NFT metadata for OpenSea
    string private baseURI = "https://ipfs.io/ipfs/QmSRkmEDKWUeHi5FiNpQUBAcCq7rKinhf5Pbu8ZPZNkP8r/";

    // Ledger of NFTs minted and owned by each unique wallet address.
    mapping(address => uint256) private claimedBunniesPerWallet;

    uint16[] availableBunnies;

    constructor() ERC721("Happy Bunnies", "BUNNY") {
        addAvailableBunnies();
    }

    // ONLY OWNER

    /**
     * @dev Allows to withdraw the Ether in the contract to the address of the owner.
     */
    function withdraw() external onlyOwner {
        uint256 totalBalance = address(this).balance;
        payable(msg.sender).transfer(totalBalance);
    }

    /**
     * @dev Sets the base URI for the API that provides the NFT data.
     */
    function setBaseTokenURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    /**
     * @dev Sets the mint price for each bunny
     */
    function setBunnyPrice(uint256 _bunnyPrice) external onlyOwner {
        bunnyPrice = _bunnyPrice;
    }

    /**
     * @dev Adds all bunnies to the available list.
     */
    function addAvailableBunnies() internal onlyOwner {
        for (uint16 i = 0; i <= 7776; i++) {
            availableBunnies.push(i);
        }
    }

    /**
     * @dev Prem
     */
    function premintBunnies() external onlyOwner {
        require(!premintingComplete, "You can only premint the bunnies once");
        require(
            availableBunnies.length >= premintCount,
            "No bunnies left to be claimed"
        );
        totalMintedBunnies += premintCount;

        for (uint256 i; i < premintCount; i++) {
            _mint(msg.sender, getBunnyToBeClaimed());
        }
        premintingComplete = true;
    }

    // END ONLY OWNER FUNCTIONS

    /**
     * @dev Claim up to 27 bunnies at once
     */
    function mintBunnies(uint256 amount)
        external
        payable
        callerNotAContract
        mintingStarted
    {
        require(
            msg.value >= bunnyPrice * amount,
            "Not enough Ether to claim the bunnies"
        );

        require(
            claimedBunniesPerWallet[msg.sender] + amount <= maxBunniesPerWallet,
            "You cannot claim more bunnies"
        );

        require(
            availableBunnies.length >= amount,
            "No bunnies left to be claimed"
        );

        require(
            amount <= maxBunniesPerTransaction,
            "Max 27 per tx"
        );

        uint256[] memory tokenIds = new uint256[](amount);

        claimedBunniesPerWallet[msg.sender] += amount;
        totalMintedBunnies += amount;

        for (uint256 i; i < amount; i++) {
            tokenIds[i] = getBunnyToBeClaimed();
        }

        _batchMint(msg.sender, tokenIds);
    }

    /**
     * @dev Returns the tokenId by index
     */
    function tokenByIndex(uint256 tokenId) external view returns (uint256) {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );

        return tokenId;
    }

    /**
     * @dev Returns the base URI for the tokens API.
     */
    function baseTokenURI() external view returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Returns how many bunnies are still available to be claimed
     */
    function getAvailableBunnies() external view returns (uint256) {
        return availableBunnies.length;
    }

    /**
     * @dev Returns the claim price
     */
    function getBunnyPrice() external view returns (uint256) {
        return bunnyPrice;
    }

    /**
     * @dev Returns the minting start date
     */
    function getMintingStartDate() external view returns (uint256) {
        return startMintDate;
    }

    /**
     * @dev Returns the total supply
     */
    function totalSupply() external view virtual returns (uint256) {
        return totalMintedBunnies;
    }

    // Private and Internal functions

    /**
     * @dev Returns a random available bunny to be claimed
     */
    function getBunnyToBeClaimed() private returns (uint256) {
        uint256 random = _getRandomNumber(availableBunnies.length);
        uint256 tokenId = uint256(availableBunnies[random]);

        availableBunnies[random] = availableBunnies[
            availableBunnies.length - 1
        ];
        availableBunnies.pop();

        return tokenId;
    }

    /**
     * @dev Generates a pseudo-random number.
     */
    function _getRandomNumber(uint256 _upper) private view returns (uint256) {
        uint256 random = uint256(
            keccak256(
                abi.encodePacked(
                    availableBunnies.length,
                    blockhash(block.number - 1),
                    block.coinbase,
                    block.difficulty,
                    msg.sender
                )
            )
        );

        return random % _upper;
    }

    /**
     * @dev See {ERC721}.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";
import "./Ownable.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, Ownable {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) internal _owners;

    // Mapping owner address to token count
    mapping(address => uint256) internal _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @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}. 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    function _batchMint(address to, uint256[] memory tokenIds)
        internal
        virtual
    {
        require(to != address(0), "ERC721: mint to the zero address");
        _balances[to] += tokenIds.length;

        for (uint256 i; i < tokenIds.length; i++) {
            require(!_exists(tokenIds[i]), "ERC721: token already minted");

            _beforeTokenTransfer(address(0), to, tokenIds[i]);

            _owners[tokenIds[i]] = to;

            emit Transfer(address(0), to, tokenIds[i]);
        }
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), 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(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

import "./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 4 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

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

File 5 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

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 6 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

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

    /**
     * @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 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 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"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 9 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 10 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

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 11 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

import "./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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvailableBunnies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBunnyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintingStartDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintBunnies","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premintBunnies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"premintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premintingComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bunnyPrice","type":"uint256"}],"name":"setBunnyPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenByIndex","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":"totalBunnies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611e6160075560b1600855601b6009556361323870600a5566f8b0a10e470000600b556000600c55610115600d556000600e60006101000a81548160ff021916908315150217905550604051806080016040528060448152602001620047e360449139600f90805190602001906200007e92919062000327565b503480156200008c57600080fd5b506040518060400160405280600d81526020017f48617070792042756e6e696573000000000000000000000000000000000000008152506040518060400160405280600581526020017f42554e4e5900000000000000000000000000000000000000000000000000000081525060006200010b620001f360201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508160019080519060200190620001c192919062000327565b508060029080519060200190620001da92919062000327565b505050620001ed620001fb60201b60201c565b6200052c565b600033905090565b6200020b620001f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000231620002fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200028a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028190620003fe565b60405180910390fd5b60005b611e608161ffff1611620002fb5760118190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055508080620002f29062000475565b9150506200028d565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000335906200043f565b90600052602060002090601f016020900481019282620003595760008555620003a5565b82601f106200037457805160ff1916838001178555620003a5565b82800160010185558215620003a5579182015b82811115620003a457825182559160200191906001019062000387565b5b509050620003b49190620003b8565b5090565b5b80821115620003d3576000816000905550600101620003b9565b5090565b6000620003e660208362000420565b9150620003f38262000503565b602082019050919050565b600060208201905081810360008301526200041981620003d7565b9050919050565b600082825260208201905092915050565b600061ffff82169050919050565b600060028204905060018216806200045857607f821691505b602082108114156200046f576200046e620004d4565b5b50919050565b6000620004828262000431565b915061ffff8214156200049a5762000499620004a5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6142a7806200053c6000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063e5cd573611610064578063e5cd573614610645578063e985e9c51461066e578063ead17506146106ab578063f2fde38b146106d6576101cd565b8063a22cb4651461058b578063b88d4fde146105b4578063c87b56dd146105dd578063d547cfb71461061a576101cd565b80638b41b208116100d15780638b41b208146104df5780638da5cb5b1461050a57806395d89b41146105355780639d9ee67314610560576101cd565b806370a0823114610474578063715018a6146104b1578063727ee1fa146104c8576101cd565b806330176e131161016f578063528616471161013e57806352861647146103c5578063631a578c146103f05780636352211e1461041b57806363c52c6414610458576101cd565b806330176e131461031f5780633ccfd60b1461034857806342842e0e1461035f5780634f6ccce714610388576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a05780632344e918146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e4b565b6106ff565b6040516102069190613442565b60405180910390f35b34801561021b57600080fd5b506102246107e1565b604051610231919061345d565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ede565b610873565b60405161026e91906133db565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e0f565b6108f8565b005b3480156102ac57600080fd5b506102b5610a10565b6040516102c2919061375f565b60405180910390f35b3480156102d757600080fd5b506102e0610a1a565b6040516102ed9190613442565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612d09565b610a2d565b005b34801561032b57600080fd5b5061034660048036038101906103419190612e9d565b610a8d565b005b34801561035457600080fd5b5061035d610b23565b005b34801561036b57600080fd5b5061038660048036038101906103819190612d09565b610bee565b005b34801561039457600080fd5b506103af60048036038101906103aa9190612ede565b610c0e565b6040516103bc919061375f565b60405180910390f35b3480156103d157600080fd5b506103da610c60565b6040516103e7919061375f565b60405180910390f35b3480156103fc57600080fd5b50610405610c6d565b604051610412919061375f565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612ede565b610c77565b60405161044f91906133db565b60405180910390f35b610472600480360381019061046d9190612ede565b610d29565b005b34801561048057600080fd5b5061049b60048036038101906104969190612ca4565b6110b3565b6040516104a8919061375f565b60405180910390f35b3480156104bd57600080fd5b506104c661116b565b005b3480156104d457600080fd5b506104dd6112a5565b005b3480156104eb57600080fd5b506104f4611425565b604051610501919061375f565b60405180910390f35b34801561051657600080fd5b5061051f61142b565b60405161052c91906133db565b60405180910390f35b34801561054157600080fd5b5061054a611454565b604051610557919061345d565b60405180910390f35b34801561056c57600080fd5b506105756114e6565b604051610582919061375f565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190612dd3565b6114ec565b005b3480156105c057600080fd5b506105db60048036038101906105d69190612d58565b61166d565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612ede565b6116cf565b604051610611919061345d565b60405180910390f35b34801561062657600080fd5b5061062f611776565b60405161063c919061345d565b60405180910390f35b34801561065157600080fd5b5061066c60048036038101906106679190612ede565b611808565b005b34801561067a57600080fd5b5061069560048036038101906106909190612ccd565b61188e565b6040516106a29190613442565b60405180910390f35b3480156106b757600080fd5b506106c0611922565b6040516106cd919061375f565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612ca4565b61192c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107da57506107d982611ad5565b5b9050919050565b6060600180546107f090613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461081c90613a2b565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b600061087e82611b3f565b6108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b49061363f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090382610c77565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b906136df565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610993611bab565b73ffffffffffffffffffffffffffffffffffffffff1614806109c257506109c1816109bc611bab565b61188e565b5b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f89061359f565b60405180910390fd5b610a0b8383611bb3565b505050565b6000600c54905090565b600e60009054906101000a900460ff1681565b610a3e610a38611bab565b82611c6c565b610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a74906136ff565b60405180910390fd5b610a88838383611d4a565b505050565b610a95611bab565b73ffffffffffffffffffffffffffffffffffffffff16610ab361142b565b73ffffffffffffffffffffffffffffffffffffffff1614610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b009061367f565b60405180910390fd5b80600f9080519060200190610b1f929190612ac8565b5050565b610b2b611bab565b73ffffffffffffffffffffffffffffffffffffffff16610b4961142b565b73ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b969061367f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bea573d6000803e3d6000fd5b5050565b610c098383836040518060200160405280600081525061166d565b505050565b6000610c1982611b3f565b610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061355f565b60405180910390fd5b819050919050565b6000601180549050905090565b6000600b54905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d17906135ff565b60405180910390fd5b80915050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e9061349f565b60405180910390fd5b6000600a5414158015610dac575042600a5411155b610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906135bf565b60405180910390fd5b80600b54610df991906138cb565b341015610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e329061357f565b60405180910390fd5b60085481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e899190613844565b1115610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec19061373f565b60405180910390fd5b806011805490501015610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f099061371f565b60405180910390fd5b600954811115610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e9061365f565b60405180910390fd5b60008167ffffffffffffffff811115610f99577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610fc75781602001602082028036833780820191505090505b50905081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110199190613844565b9250508190555081600c60008282546110329190613844565b9250508190555060005b828110156110a45761104c611fa6565b828281518110611085577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061109c90613a8e565b91505061103c565b506110af3382612165565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b906135df565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611173611bab565b73ffffffffffffffffffffffffffffffffffffffff1661119161142b565b73ffffffffffffffffffffffffffffffffffffffff16146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de9061367f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6112ad611bab565b73ffffffffffffffffffffffffffffffffffffffff166112cb61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611321576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113189061367f565b60405180910390fd5b600e60009054906101000a900460ff1615611371576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611368906134df565b60405180910390fd5b600d5460118054905010156113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b29061371f565b60405180910390fd5b600d54600c60008282546113cf9190613844565b9250508190555060005b600d54811015611407576113f4336113ef611fa6565b612453565b80806113ff90613a8e565b9150506113d9565b506001600e60006101000a81548160ff021916908315150217905550565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461146390613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461148f90613a2b565b80156114dc5780601f106114b1576101008083540402835291602001916114dc565b820191906000526020600020905b8154815290600101906020018083116114bf57829003601f168201915b5050505050905090565b600d5481565b6114f4611bab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115599061353f565b60405180910390fd5b806006600061156f611bab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161c611bab565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116619190613442565b60405180910390a35050565b61167e611678611bab565b83611c6c565b6116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b4906136ff565b60405180910390fd5b6116c984848484612621565b50505050565b60606116da82611b3f565b611719576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611710906136bf565b60405180910390fd5b600061172361267d565b90506000815111611743576040518060200160405280600081525061176e565b8061174d8461270f565b60405160200161175e929190613358565b6040516020818303038152906040525b915050919050565b6060600f805461178590613a2b565b80601f01602080910402602001604051908101604052809291908181526020018280546117b190613a2b565b80156117fe5780601f106117d3576101008083540402835291602001916117fe565b820191906000526020600020905b8154815290600101906020018083116117e157829003601f168201915b5050505050905090565b611810611bab565b73ffffffffffffffffffffffffffffffffffffffff1661182e61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b9061367f565b60405180910390fd5b80600b8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600a54905090565b611934611bab565b73ffffffffffffffffffffffffffffffffffffffff1661195261142b565b73ffffffffffffffffffffffffffffffffffffffff16146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f9061367f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f906134bf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c2683610c77565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c7782611b3f565b611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad9061355f565b60405180910390fd5b6000611cc183610c77565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d3057508373ffffffffffffffffffffffffffffffffffffffff16611d1884610873565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d415750611d40818561188e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d6a82610c77565b73ffffffffffffffffffffffffffffffffffffffff1614611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db79061369f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e279061351f565b60405180910390fd5b611e3b8383836128bc565b611e46600082611bb3565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e969190613925565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eed9190613844565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080611fb76011805490506128c1565b9050600060118281548110611ff5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050601160016011805490506120339190613925565b8154811061206a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16601183815481106120c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601180548061212f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff02191690559055809250505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cc9061361f565b60405180910390fd5b8051600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122259190613844565b9250508190555060005b815181101561244e57612281828281518110612274577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611b3f565b156122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b8906134ff565b60405180910390fd5b61230d600084848481518110612300577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516128bc565b826003600084848151811061234b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508181815181106123d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808061244690613a8e565b91505061222f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba9061361f565b60405180910390fd5b6124cc81611b3f565b1561250c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612503906134ff565b60405180910390fd5b612518600083836128bc565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125689190613844565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61262c848484611d4a565b6126388484848461291e565b612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e9061347f565b60405180910390fd5b50505050565b6060600f805461268c90613a2b565b80601f01602080910402602001604051908101604052809291908181526020018280546126b890613a2b565b80156127055780601f106126da57610100808354040283529160200191612705565b820191906000526020600020905b8154815290600101906020018083116126e857829003601f168201915b5050505050905090565b60606000821415612757576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128b7565b600082905060005b6000821461278957808061277290613a8e565b915050600a82612782919061389a565b915061275f565b60008167ffffffffffffffff8111156127cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127fd5781602001600182028036833780820191505090505b5090505b600085146128b0576001826128169190613925565b9150600a856128259190613b21565b60306128319190613844565b60f81b81838151811061286d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128a9919061389a565b9450612801565b8093505050505b919050565b505050565b6000806011805490506001436128d79190613925565b404144336040516020016128ef95949392919061337c565b6040516020818303038152906040528051906020012060001c905082816129169190613b21565b915050919050565b600061293f8473ffffffffffffffffffffffffffffffffffffffff16612ab5565b15612aa8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612968611bab565b8786866040518563ffffffff1660e01b815260040161298a94939291906133f6565b602060405180830381600087803b1580156129a457600080fd5b505af19250505080156129d557506040513d601f19601f820116820180604052508101906129d29190612e74565b60015b612a58573d8060008114612a05576040519150601f19603f3d011682016040523d82523d6000602084013e612a0a565b606091505b50600081511415612a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a479061347f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aad565b600190505b949350505050565b600080823b905060008111915050919050565b828054612ad490613a2b565b90600052602060002090601f016020900481019282612af65760008555612b3d565b82601f10612b0f57805160ff1916838001178555612b3d565b82800160010185558215612b3d579182015b82811115612b3c578251825591602001919060010190612b21565b5b509050612b4a9190612b4e565b5090565b5b80821115612b67576000816000905550600101612b4f565b5090565b6000612b7e612b798461379f565b61377a565b905082815260208101848484011115612b9657600080fd5b612ba18482856139e9565b509392505050565b6000612bbc612bb7846137d0565b61377a565b905082815260208101848484011115612bd457600080fd5b612bdf8482856139e9565b509392505050565b600081359050612bf681614215565b92915050565b600081359050612c0b8161422c565b92915050565b600081359050612c2081614243565b92915050565b600081519050612c3581614243565b92915050565b600082601f830112612c4c57600080fd5b8135612c5c848260208601612b6b565b91505092915050565b600082601f830112612c7657600080fd5b8135612c86848260208601612ba9565b91505092915050565b600081359050612c9e8161425a565b92915050565b600060208284031215612cb657600080fd5b6000612cc484828501612be7565b91505092915050565b60008060408385031215612ce057600080fd5b6000612cee85828601612be7565b9250506020612cff85828601612be7565b9150509250929050565b600080600060608486031215612d1e57600080fd5b6000612d2c86828701612be7565b9350506020612d3d86828701612be7565b9250506040612d4e86828701612c8f565b9150509250925092565b60008060008060808587031215612d6e57600080fd5b6000612d7c87828801612be7565b9450506020612d8d87828801612be7565b9350506040612d9e87828801612c8f565b925050606085013567ffffffffffffffff811115612dbb57600080fd5b612dc787828801612c3b565b91505092959194509250565b60008060408385031215612de657600080fd5b6000612df485828601612be7565b9250506020612e0585828601612bfc565b9150509250929050565b60008060408385031215612e2257600080fd5b6000612e3085828601612be7565b9250506020612e4185828601612c8f565b9150509250929050565b600060208284031215612e5d57600080fd5b6000612e6b84828501612c11565b91505092915050565b600060208284031215612e8657600080fd5b6000612e9484828501612c26565b91505092915050565b600060208284031215612eaf57600080fd5b600082013567ffffffffffffffff811115612ec957600080fd5b612ed584828501612c65565b91505092915050565b600060208284031215612ef057600080fd5b6000612efe84828501612c8f565b91505092915050565b612f18612f138261396b565b613ae9565b82525050565b612f2781613959565b82525050565b612f3e612f3982613959565b613ad7565b82525050565b612f4d8161397d565b82525050565b612f64612f5f82613989565b613afb565b82525050565b6000612f7582613801565b612f7f8185613817565b9350612f8f8185602086016139f8565b612f9881613c0e565b840191505092915050565b6000612fae8261380c565b612fb88185613828565b9350612fc88185602086016139f8565b612fd181613c0e565b840191505092915050565b6000612fe78261380c565b612ff18185613839565b93506130018185602086016139f8565b80840191505092915050565b600061301a603283613828565b915061302582613c2c565b604082019050919050565b600061303d603083613828565b915061304882613c7b565b604082019050919050565b6000613060602683613828565b915061306b82613cca565b604082019050919050565b6000613083602583613828565b915061308e82613d19565b604082019050919050565b60006130a6601c83613828565b91506130b182613d68565b602082019050919050565b60006130c9602483613828565b91506130d482613d91565b604082019050919050565b60006130ec601983613828565b91506130f782613de0565b602082019050919050565b600061310f602c83613828565b915061311a82613e09565b604082019050919050565b6000613132602583613828565b915061313d82613e58565b604082019050919050565b6000613155603883613828565b915061316082613ea7565b604082019050919050565b6000613178601183613828565b915061318382613ef6565b602082019050919050565b600061319b602a83613828565b91506131a682613f1f565b604082019050919050565b60006131be602983613828565b91506131c982613f6e565b604082019050919050565b60006131e1602083613828565b91506131ec82613fbd565b602082019050919050565b6000613204602c83613828565b915061320f82613fe6565b604082019050919050565b6000613227600d83613828565b915061323282614035565b602082019050919050565b600061324a602083613828565b91506132558261405e565b602082019050919050565b600061326d602983613828565b915061327882614087565b604082019050919050565b6000613290602f83613828565b915061329b826140d6565b604082019050919050565b60006132b3602183613828565b91506132be82614125565b604082019050919050565b60006132d6603183613828565b91506132e182614174565b604082019050919050565b60006132f9601d83613828565b9150613304826141c3565b602082019050919050565b600061331c601d83613828565b9150613327826141ec565b602082019050919050565b61333b816139df565b82525050565b61335261334d826139df565b613b17565b82525050565b60006133648285612fdc565b91506133708284612fdc565b91508190509392505050565b60006133888288613341565b6020820191506133988287612f53565b6020820191506133a88286612f07565b6014820191506133b88285613341565b6020820191506133c88284612f2d565b6014820191508190509695505050505050565b60006020820190506133f06000830184612f1e565b92915050565b600060808201905061340b6000830187612f1e565b6134186020830186612f1e565b6134256040830185613332565b81810360608301526134378184612f6a565b905095945050505050565b60006020820190506134576000830184612f44565b92915050565b600060208201905081810360008301526134778184612fa3565b905092915050565b600060208201905081810360008301526134988161300d565b9050919050565b600060208201905081810360008301526134b881613030565b9050919050565b600060208201905081810360008301526134d881613053565b9050919050565b600060208201905081810360008301526134f881613076565b9050919050565b6000602082019050818103600083015261351881613099565b9050919050565b60006020820190508181036000830152613538816130bc565b9050919050565b60006020820190508181036000830152613558816130df565b9050919050565b6000602082019050818103600083015261357881613102565b9050919050565b6000602082019050818103600083015261359881613125565b9050919050565b600060208201905081810360008301526135b881613148565b9050919050565b600060208201905081810360008301526135d88161316b565b9050919050565b600060208201905081810360008301526135f88161318e565b9050919050565b60006020820190508181036000830152613618816131b1565b9050919050565b60006020820190508181036000830152613638816131d4565b9050919050565b60006020820190508181036000830152613658816131f7565b9050919050565b600060208201905081810360008301526136788161321a565b9050919050565b600060208201905081810360008301526136988161323d565b9050919050565b600060208201905081810360008301526136b881613260565b9050919050565b600060208201905081810360008301526136d881613283565b9050919050565b600060208201905081810360008301526136f8816132a6565b9050919050565b60006020820190508181036000830152613718816132c9565b9050919050565b60006020820190508181036000830152613738816132ec565b9050919050565b600060208201905081810360008301526137588161330f565b9050919050565b60006020820190506137746000830184613332565b92915050565b6000613784613795565b90506137908282613a5d565b919050565b6000604051905090565b600067ffffffffffffffff8211156137ba576137b9613bdf565b5b6137c382613c0e565b9050602081019050919050565b600067ffffffffffffffff8211156137eb576137ea613bdf565b5b6137f482613c0e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061384f826139df565b915061385a836139df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561388f5761388e613b52565b5b828201905092915050565b60006138a5826139df565b91506138b0836139df565b9250826138c0576138bf613b81565b5b828204905092915050565b60006138d6826139df565b91506138e1836139df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391a57613919613b52565b5b828202905092915050565b6000613930826139df565b915061393b836139df565b92508282101561394e5761394d613b52565b5b828203905092915050565b6000613964826139bf565b9050919050565b6000613976826139bf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a165780820151818401526020810190506139fb565b83811115613a25576000848401525b50505050565b60006002820490506001821680613a4357607f821691505b60208210811415613a5757613a56613bb0565b5b50919050565b613a6682613c0e565b810181811067ffffffffffffffff82111715613a8557613a84613bdf565b5b80604052505050565b6000613a99826139df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613acc57613acb613b52565b5b600182019050919050565b6000613ae282613b05565b9050919050565b6000613af482613b05565b9050919050565b6000819050919050565b6000613b1082613c1f565b9050919050565b6000819050919050565b6000613b2c826139df565b9150613b37836139df565b925082613b4757613b46613b81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5468652063616c6c65722063616e206f6e6c792062652061207573657220616e60008201527f64206e6f74206120636f6e747261637400000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79207072656d696e74207468652062756e6e69657360008201527f206f6e6365000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657220746f20636c61696d2074686520627560008201527f6e6e696573000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752061726520746f6f206561726c79000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d61782032372070657220747800000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f2062756e6e696573206c65667420746f20626520636c61696d6564000000600082015250565b7f596f752063616e6e6f7420636c61696d206d6f72652062756e6e696573000000600082015250565b61421e81613959565b811461422957600080fd5b50565b6142358161397d565b811461424057600080fd5b50565b61424c81613993565b811461425757600080fd5b50565b614263816139df565b811461426e57600080fd5b5056fea2646970667358221220e65da98287650b79057efeb33699a3eb8fa3421dbbee15c7471c954e17dd4cd764736f6c6343000804003368747470733a2f2f697066732e696f2f697066732f516d53526b6d45444b57556548693546694e705155424163437137724b696e686635506275385a505a4e6b5038722f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063e5cd573611610064578063e5cd573614610645578063e985e9c51461066e578063ead17506146106ab578063f2fde38b146106d6576101cd565b8063a22cb4651461058b578063b88d4fde146105b4578063c87b56dd146105dd578063d547cfb71461061a576101cd565b80638b41b208116100d15780638b41b208146104df5780638da5cb5b1461050a57806395d89b41146105355780639d9ee67314610560576101cd565b806370a0823114610474578063715018a6146104b1578063727ee1fa146104c8576101cd565b806330176e131161016f578063528616471161013e57806352861647146103c5578063631a578c146103f05780636352211e1461041b57806363c52c6414610458576101cd565b806330176e131461031f5780633ccfd60b1461034857806342842e0e1461035f5780634f6ccce714610388576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a05780632344e918146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612e4b565b6106ff565b6040516102069190613442565b60405180910390f35b34801561021b57600080fd5b506102246107e1565b604051610231919061345d565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ede565b610873565b60405161026e91906133db565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e0f565b6108f8565b005b3480156102ac57600080fd5b506102b5610a10565b6040516102c2919061375f565b60405180910390f35b3480156102d757600080fd5b506102e0610a1a565b6040516102ed9190613442565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612d09565b610a2d565b005b34801561032b57600080fd5b5061034660048036038101906103419190612e9d565b610a8d565b005b34801561035457600080fd5b5061035d610b23565b005b34801561036b57600080fd5b5061038660048036038101906103819190612d09565b610bee565b005b34801561039457600080fd5b506103af60048036038101906103aa9190612ede565b610c0e565b6040516103bc919061375f565b60405180910390f35b3480156103d157600080fd5b506103da610c60565b6040516103e7919061375f565b60405180910390f35b3480156103fc57600080fd5b50610405610c6d565b604051610412919061375f565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612ede565b610c77565b60405161044f91906133db565b60405180910390f35b610472600480360381019061046d9190612ede565b610d29565b005b34801561048057600080fd5b5061049b60048036038101906104969190612ca4565b6110b3565b6040516104a8919061375f565b60405180910390f35b3480156104bd57600080fd5b506104c661116b565b005b3480156104d457600080fd5b506104dd6112a5565b005b3480156104eb57600080fd5b506104f4611425565b604051610501919061375f565b60405180910390f35b34801561051657600080fd5b5061051f61142b565b60405161052c91906133db565b60405180910390f35b34801561054157600080fd5b5061054a611454565b604051610557919061345d565b60405180910390f35b34801561056c57600080fd5b506105756114e6565b604051610582919061375f565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190612dd3565b6114ec565b005b3480156105c057600080fd5b506105db60048036038101906105d69190612d58565b61166d565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612ede565b6116cf565b604051610611919061345d565b60405180910390f35b34801561062657600080fd5b5061062f611776565b60405161063c919061345d565b60405180910390f35b34801561065157600080fd5b5061066c60048036038101906106679190612ede565b611808565b005b34801561067a57600080fd5b5061069560048036038101906106909190612ccd565b61188e565b6040516106a29190613442565b60405180910390f35b3480156106b757600080fd5b506106c0611922565b6040516106cd919061375f565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612ca4565b61192c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107da57506107d982611ad5565b5b9050919050565b6060600180546107f090613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461081c90613a2b565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b600061087e82611b3f565b6108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b49061363f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090382610c77565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b906136df565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610993611bab565b73ffffffffffffffffffffffffffffffffffffffff1614806109c257506109c1816109bc611bab565b61188e565b5b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f89061359f565b60405180910390fd5b610a0b8383611bb3565b505050565b6000600c54905090565b600e60009054906101000a900460ff1681565b610a3e610a38611bab565b82611c6c565b610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a74906136ff565b60405180910390fd5b610a88838383611d4a565b505050565b610a95611bab565b73ffffffffffffffffffffffffffffffffffffffff16610ab361142b565b73ffffffffffffffffffffffffffffffffffffffff1614610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b009061367f565b60405180910390fd5b80600f9080519060200190610b1f929190612ac8565b5050565b610b2b611bab565b73ffffffffffffffffffffffffffffffffffffffff16610b4961142b565b73ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b969061367f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bea573d6000803e3d6000fd5b5050565b610c098383836040518060200160405280600081525061166d565b505050565b6000610c1982611b3f565b610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061355f565b60405180910390fd5b819050919050565b6000601180549050905090565b6000600b54905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d17906135ff565b60405180910390fd5b80915050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e9061349f565b60405180910390fd5b6000600a5414158015610dac575042600a5411155b610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906135bf565b60405180910390fd5b80600b54610df991906138cb565b341015610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e329061357f565b60405180910390fd5b60085481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e899190613844565b1115610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec19061373f565b60405180910390fd5b806011805490501015610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f099061371f565b60405180910390fd5b600954811115610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e9061365f565b60405180910390fd5b60008167ffffffffffffffff811115610f99577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610fc75781602001602082028036833780820191505090505b50905081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110199190613844565b9250508190555081600c60008282546110329190613844565b9250508190555060005b828110156110a45761104c611fa6565b828281518110611085577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061109c90613a8e565b91505061103c565b506110af3382612165565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b906135df565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611173611bab565b73ffffffffffffffffffffffffffffffffffffffff1661119161142b565b73ffffffffffffffffffffffffffffffffffffffff16146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de9061367f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6112ad611bab565b73ffffffffffffffffffffffffffffffffffffffff166112cb61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611321576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113189061367f565b60405180910390fd5b600e60009054906101000a900460ff1615611371576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611368906134df565b60405180910390fd5b600d5460118054905010156113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b29061371f565b60405180910390fd5b600d54600c60008282546113cf9190613844565b9250508190555060005b600d54811015611407576113f4336113ef611fa6565b612453565b80806113ff90613a8e565b9150506113d9565b506001600e60006101000a81548160ff021916908315150217905550565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461146390613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461148f90613a2b565b80156114dc5780601f106114b1576101008083540402835291602001916114dc565b820191906000526020600020905b8154815290600101906020018083116114bf57829003601f168201915b5050505050905090565b600d5481565b6114f4611bab565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115599061353f565b60405180910390fd5b806006600061156f611bab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161c611bab565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116619190613442565b60405180910390a35050565b61167e611678611bab565b83611c6c565b6116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b4906136ff565b60405180910390fd5b6116c984848484612621565b50505050565b60606116da82611b3f565b611719576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611710906136bf565b60405180910390fd5b600061172361267d565b90506000815111611743576040518060200160405280600081525061176e565b8061174d8461270f565b60405160200161175e929190613358565b6040516020818303038152906040525b915050919050565b6060600f805461178590613a2b565b80601f01602080910402602001604051908101604052809291908181526020018280546117b190613a2b565b80156117fe5780601f106117d3576101008083540402835291602001916117fe565b820191906000526020600020905b8154815290600101906020018083116117e157829003601f168201915b5050505050905090565b611810611bab565b73ffffffffffffffffffffffffffffffffffffffff1661182e61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b9061367f565b60405180910390fd5b80600b8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600a54905090565b611934611bab565b73ffffffffffffffffffffffffffffffffffffffff1661195261142b565b73ffffffffffffffffffffffffffffffffffffffff16146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f9061367f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f906134bf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c2683610c77565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c7782611b3f565b611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad9061355f565b60405180910390fd5b6000611cc183610c77565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d3057508373ffffffffffffffffffffffffffffffffffffffff16611d1884610873565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d415750611d40818561188e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d6a82610c77565b73ffffffffffffffffffffffffffffffffffffffff1614611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db79061369f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e279061351f565b60405180910390fd5b611e3b8383836128bc565b611e46600082611bb3565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e969190613925565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eed9190613844565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080611fb76011805490506128c1565b9050600060118281548110611ff5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050601160016011805490506120339190613925565b8154811061206a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16601183815481106120c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601180548061212f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff02191690559055809250505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cc9061361f565b60405180910390fd5b8051600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122259190613844565b9250508190555060005b815181101561244e57612281828281518110612274577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611b3f565b156122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b8906134ff565b60405180910390fd5b61230d600084848481518110612300577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516128bc565b826003600084848151811061234b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508181815181106123d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808061244690613a8e565b91505061222f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba9061361f565b60405180910390fd5b6124cc81611b3f565b1561250c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612503906134ff565b60405180910390fd5b612518600083836128bc565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125689190613844565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61262c848484611d4a565b6126388484848461291e565b612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e9061347f565b60405180910390fd5b50505050565b6060600f805461268c90613a2b565b80601f01602080910402602001604051908101604052809291908181526020018280546126b890613a2b565b80156127055780601f106126da57610100808354040283529160200191612705565b820191906000526020600020905b8154815290600101906020018083116126e857829003601f168201915b5050505050905090565b60606000821415612757576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128b7565b600082905060005b6000821461278957808061277290613a8e565b915050600a82612782919061389a565b915061275f565b60008167ffffffffffffffff8111156127cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127fd5781602001600182028036833780820191505090505b5090505b600085146128b0576001826128169190613925565b9150600a856128259190613b21565b60306128319190613844565b60f81b81838151811061286d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128a9919061389a565b9450612801565b8093505050505b919050565b505050565b6000806011805490506001436128d79190613925565b404144336040516020016128ef95949392919061337c565b6040516020818303038152906040528051906020012060001c905082816129169190613b21565b915050919050565b600061293f8473ffffffffffffffffffffffffffffffffffffffff16612ab5565b15612aa8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612968611bab565b8786866040518563ffffffff1660e01b815260040161298a94939291906133f6565b602060405180830381600087803b1580156129a457600080fd5b505af19250505080156129d557506040513d601f19601f820116820180604052508101906129d29190612e74565b60015b612a58573d8060008114612a05576040519150601f19603f3d011682016040523d82523d6000602084013e612a0a565b606091505b50600081511415612a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a479061347f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aad565b600190505b949350505050565b600080823b905060008111915050919050565b828054612ad490613a2b565b90600052602060002090601f016020900481019282612af65760008555612b3d565b82601f10612b0f57805160ff1916838001178555612b3d565b82800160010185558215612b3d579182015b82811115612b3c578251825591602001919060010190612b21565b5b509050612b4a9190612b4e565b5090565b5b80821115612b67576000816000905550600101612b4f565b5090565b6000612b7e612b798461379f565b61377a565b905082815260208101848484011115612b9657600080fd5b612ba18482856139e9565b509392505050565b6000612bbc612bb7846137d0565b61377a565b905082815260208101848484011115612bd457600080fd5b612bdf8482856139e9565b509392505050565b600081359050612bf681614215565b92915050565b600081359050612c0b8161422c565b92915050565b600081359050612c2081614243565b92915050565b600081519050612c3581614243565b92915050565b600082601f830112612c4c57600080fd5b8135612c5c848260208601612b6b565b91505092915050565b600082601f830112612c7657600080fd5b8135612c86848260208601612ba9565b91505092915050565b600081359050612c9e8161425a565b92915050565b600060208284031215612cb657600080fd5b6000612cc484828501612be7565b91505092915050565b60008060408385031215612ce057600080fd5b6000612cee85828601612be7565b9250506020612cff85828601612be7565b9150509250929050565b600080600060608486031215612d1e57600080fd5b6000612d2c86828701612be7565b9350506020612d3d86828701612be7565b9250506040612d4e86828701612c8f565b9150509250925092565b60008060008060808587031215612d6e57600080fd5b6000612d7c87828801612be7565b9450506020612d8d87828801612be7565b9350506040612d9e87828801612c8f565b925050606085013567ffffffffffffffff811115612dbb57600080fd5b612dc787828801612c3b565b91505092959194509250565b60008060408385031215612de657600080fd5b6000612df485828601612be7565b9250506020612e0585828601612bfc565b9150509250929050565b60008060408385031215612e2257600080fd5b6000612e3085828601612be7565b9250506020612e4185828601612c8f565b9150509250929050565b600060208284031215612e5d57600080fd5b6000612e6b84828501612c11565b91505092915050565b600060208284031215612e8657600080fd5b6000612e9484828501612c26565b91505092915050565b600060208284031215612eaf57600080fd5b600082013567ffffffffffffffff811115612ec957600080fd5b612ed584828501612c65565b91505092915050565b600060208284031215612ef057600080fd5b6000612efe84828501612c8f565b91505092915050565b612f18612f138261396b565b613ae9565b82525050565b612f2781613959565b82525050565b612f3e612f3982613959565b613ad7565b82525050565b612f4d8161397d565b82525050565b612f64612f5f82613989565b613afb565b82525050565b6000612f7582613801565b612f7f8185613817565b9350612f8f8185602086016139f8565b612f9881613c0e565b840191505092915050565b6000612fae8261380c565b612fb88185613828565b9350612fc88185602086016139f8565b612fd181613c0e565b840191505092915050565b6000612fe78261380c565b612ff18185613839565b93506130018185602086016139f8565b80840191505092915050565b600061301a603283613828565b915061302582613c2c565b604082019050919050565b600061303d603083613828565b915061304882613c7b565b604082019050919050565b6000613060602683613828565b915061306b82613cca565b604082019050919050565b6000613083602583613828565b915061308e82613d19565b604082019050919050565b60006130a6601c83613828565b91506130b182613d68565b602082019050919050565b60006130c9602483613828565b91506130d482613d91565b604082019050919050565b60006130ec601983613828565b91506130f782613de0565b602082019050919050565b600061310f602c83613828565b915061311a82613e09565b604082019050919050565b6000613132602583613828565b915061313d82613e58565b604082019050919050565b6000613155603883613828565b915061316082613ea7565b604082019050919050565b6000613178601183613828565b915061318382613ef6565b602082019050919050565b600061319b602a83613828565b91506131a682613f1f565b604082019050919050565b60006131be602983613828565b91506131c982613f6e565b604082019050919050565b60006131e1602083613828565b91506131ec82613fbd565b602082019050919050565b6000613204602c83613828565b915061320f82613fe6565b604082019050919050565b6000613227600d83613828565b915061323282614035565b602082019050919050565b600061324a602083613828565b91506132558261405e565b602082019050919050565b600061326d602983613828565b915061327882614087565b604082019050919050565b6000613290602f83613828565b915061329b826140d6565b604082019050919050565b60006132b3602183613828565b91506132be82614125565b604082019050919050565b60006132d6603183613828565b91506132e182614174565b604082019050919050565b60006132f9601d83613828565b9150613304826141c3565b602082019050919050565b600061331c601d83613828565b9150613327826141ec565b602082019050919050565b61333b816139df565b82525050565b61335261334d826139df565b613b17565b82525050565b60006133648285612fdc565b91506133708284612fdc565b91508190509392505050565b60006133888288613341565b6020820191506133988287612f53565b6020820191506133a88286612f07565b6014820191506133b88285613341565b6020820191506133c88284612f2d565b6014820191508190509695505050505050565b60006020820190506133f06000830184612f1e565b92915050565b600060808201905061340b6000830187612f1e565b6134186020830186612f1e565b6134256040830185613332565b81810360608301526134378184612f6a565b905095945050505050565b60006020820190506134576000830184612f44565b92915050565b600060208201905081810360008301526134778184612fa3565b905092915050565b600060208201905081810360008301526134988161300d565b9050919050565b600060208201905081810360008301526134b881613030565b9050919050565b600060208201905081810360008301526134d881613053565b9050919050565b600060208201905081810360008301526134f881613076565b9050919050565b6000602082019050818103600083015261351881613099565b9050919050565b60006020820190508181036000830152613538816130bc565b9050919050565b60006020820190508181036000830152613558816130df565b9050919050565b6000602082019050818103600083015261357881613102565b9050919050565b6000602082019050818103600083015261359881613125565b9050919050565b600060208201905081810360008301526135b881613148565b9050919050565b600060208201905081810360008301526135d88161316b565b9050919050565b600060208201905081810360008301526135f88161318e565b9050919050565b60006020820190508181036000830152613618816131b1565b9050919050565b60006020820190508181036000830152613638816131d4565b9050919050565b60006020820190508181036000830152613658816131f7565b9050919050565b600060208201905081810360008301526136788161321a565b9050919050565b600060208201905081810360008301526136988161323d565b9050919050565b600060208201905081810360008301526136b881613260565b9050919050565b600060208201905081810360008301526136d881613283565b9050919050565b600060208201905081810360008301526136f8816132a6565b9050919050565b60006020820190508181036000830152613718816132c9565b9050919050565b60006020820190508181036000830152613738816132ec565b9050919050565b600060208201905081810360008301526137588161330f565b9050919050565b60006020820190506137746000830184613332565b92915050565b6000613784613795565b90506137908282613a5d565b919050565b6000604051905090565b600067ffffffffffffffff8211156137ba576137b9613bdf565b5b6137c382613c0e565b9050602081019050919050565b600067ffffffffffffffff8211156137eb576137ea613bdf565b5b6137f482613c0e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061384f826139df565b915061385a836139df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561388f5761388e613b52565b5b828201905092915050565b60006138a5826139df565b91506138b0836139df565b9250826138c0576138bf613b81565b5b828204905092915050565b60006138d6826139df565b91506138e1836139df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391a57613919613b52565b5b828202905092915050565b6000613930826139df565b915061393b836139df565b92508282101561394e5761394d613b52565b5b828203905092915050565b6000613964826139bf565b9050919050565b6000613976826139bf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a165780820151818401526020810190506139fb565b83811115613a25576000848401525b50505050565b60006002820490506001821680613a4357607f821691505b60208210811415613a5757613a56613bb0565b5b50919050565b613a6682613c0e565b810181811067ffffffffffffffff82111715613a8557613a84613bdf565b5b80604052505050565b6000613a99826139df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613acc57613acb613b52565b5b600182019050919050565b6000613ae282613b05565b9050919050565b6000613af482613b05565b9050919050565b6000819050919050565b6000613b1082613c1f565b9050919050565b6000819050919050565b6000613b2c826139df565b9150613b37836139df565b925082613b4757613b46613b81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5468652063616c6c65722063616e206f6e6c792062652061207573657220616e60008201527f64206e6f74206120636f6e747261637400000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79207072656d696e74207468652062756e6e69657360008201527f206f6e6365000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657220746f20636c61696d2074686520627560008201527f6e6e696573000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752061726520746f6f206561726c79000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d61782032372070657220747800000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f2062756e6e696573206c65667420746f20626520636c61696d6564000000600082015250565b7f596f752063616e6e6f7420636c61696d206d6f72652062756e6e696573000000600082015250565b61421e81613959565b811461422957600080fd5b50565b6142358161397d565b811461424057600080fd5b50565b61424c81613993565b811461425757600080fd5b50565b614263816139df565b811461426e57600080fd5b5056fea2646970667358221220e65da98287650b79057efeb33699a3eb8fa3421dbbee15c7471c954e17dd4cd764736f6c63430008040033

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.