ETH Price: $3,448.88 (-1.18%)
Gas: 11 Gwei

Fat Catz (FC)
 

Overview

TokenID

226

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
FatCatz

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : FatCatz.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.11;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

contract FatCatz is ERC721("Fat Catz", "FC") {
    string public baseURI="ipfs://QmVLDGP9MHBcE2y89SuEVnAr2F9VSypBgqhzLcAkYEH9vT/";

    bool public isSaleActive;
    uint256 public itemPrice = 0.06 ether;
    
    uint256 public circulatingSupply;
    uint256 public constant minReservedSupply = 100;
    uint256 public constant totalSupply = 9999;

    address public owner = msg.sender;

    bool public isAllowListActive;
    uint256 public allowListMaxMint = 3;
    uint256 public itemPricePresale = 0.04 ether;

    // address => true/false, tells address is in whitelist or not
    mapping(address => bool) public onAllowList;

    // address => how many nfts address minted in presale
    mapping(address => uint256) public allowListClaimedBy;

    //   ALLOWLIST
    
    function addToAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++)
            onAllowList[addresses[i]] = true;
    }

    function removeFromAllowList(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++)
            onAllowList[addresses[i]] = false;
    }

    function stopPresale() external onlyOwner {
        isAllowListActive = false;
    }

    function startPresale() external onlyOwner {
        isAllowListActive = true;
    }

    //    PRESALE

    // Purchase multiple NFTs at once
    function purchasePresaleTokens(uint256 _howMany)
        external
        payable
        tokensAvailable(_howMany)
    {
        require(isAllowListActive, "Allowlist is not active");
        require(onAllowList[msg.sender], "You are not in allowlist");
        require(allowListClaimedBy[msg.sender] + _howMany <= allowListMaxMint,
            "Purchase exceeds max allowed"
        );
        require(msg.value >= _howMany * itemPricePresale, "Try to send more ETH");

        allowListClaimedBy[msg.sender] += _howMany;

        for (uint256 i = 0; i < _howMany; i++)
            _mint(msg.sender, ++circulatingSupply);
    }

    //  PUBLIC SALE

    // Purchase multiple NFTs at once
    function purchaseTokens(uint256 _howMany)
        external
        payable
        tokensAvailable(_howMany)
    {
        require(isSaleActive, "Sale is not active");
        require(_howMany > 0 && _howMany <= 20, "Mint min 1, max 20");
        require(msg.value >= _howMany * itemPrice, "Try to send more ETH");

        for (uint256 i = 0; i < _howMany; i++)
            _mint(msg.sender, ++circulatingSupply);
    }

    // Only Owner Methods
    function stopSale() external onlyOwner {
        isSaleActive = false;
    }

    function startSale() external onlyOwner {
        isSaleActive = true;
    }

    // Set limit of allowlist
    function setAllowListMaxMint(uint256 _allowListMaxMint) external onlyOwner {
        allowListMaxMint = _allowListMaxMint;
    }

    // Change presale price in case of ETH price changes too much
    function setItemPricePresale(uint256 _itemPricePresale) external onlyOwner {
        itemPricePresale = _itemPricePresale;
    }

    // Change price in case of ETH price changes too much
    function setItemPrice(uint256 _newPrice) external onlyOwner {
        itemPrice = _newPrice;
    }


    // Hide identity or show identity from here
    function setBaseURI(string memory __baseURI) external onlyOwner {
        baseURI = __baseURI;
    }

    // Send NFTs to a list of addresses
    function giftNftsToList(address[] calldata _sendNftsTo)
        external
        onlyOwner
        tokensAvailable(_sendNftsTo.length)
    {
        for (uint256 i = 0; i < _sendNftsTo.length; i++)
            _mint(_sendNftsTo[i], ++circulatingSupply);
    }

    // Send NFTs to a single address
    function giftNftsToSingleAddress(address _sendNftsTo, uint256 _howMany)
        external
        onlyOwner
        tokensAvailable(_howMany)
    {
        for (uint256 i = 0; i < _howMany; i++)
            _mint(_sendNftsTo, ++circulatingSupply);
    }

    // Query Method

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

    // Only owner can withdraw from this method
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    //  Utility Code

    modifier tokensAvailable(uint256 _howMany) {
        require(_howMany <= totalSupply - circulatingSupply - minReservedSupply, "Try minting less tokens");
        _;
    }

    modifier onlyOwner() {
        require(owner == msg.sender, "Caller is not the owner");
        _;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.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 {
    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) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || 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 || 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);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * 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 10 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 10 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 10 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 6 of 10 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 10 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 10 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 10 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"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":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_sendNftsTo","type":"address[]"}],"name":"giftNftsToList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sendNftsTo","type":"address"},{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"giftNftsToSingleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minReservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"purchasePresaleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"purchaseTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","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":"uint256","name":"_allowListMaxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setItemPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_itemPricePresale","type":"uint256"}],"name":"setItemPricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620045de60369139600690805190602001906200003592919062000146565b5066d529ae9e86000060085533600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506003600b55668e1bc9bf040000600c553480156200009f57600080fd5b506040518060400160405280600881526020017f466174204361747a0000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f464300000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200012492919062000146565b5080600190805190602001906200013d92919062000146565b5050506200025b565b828054620001549062000225565b90600052602060002090601f016020900481019282620001785760008555620001c4565b82601f106200019357805160ff1916838001178555620001c4565b82800160010185558215620001c4579182015b82811115620001c3578251825591602001919060010190620001a6565b5b509050620001d39190620001d7565b5090565b5b80821115620001f2576000816000905550600101620001d8565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200023e57607f821691505b60208210811415620002555762000254620001f6565b5b50919050565b614373806200026b6000396000f3fe60806040526004361061023a5760003560e01c80636352211e1161012e57806398ca7795116100ab578063b88d4fde1161006f578063b88d4fde14610806578063c87b56dd1461082f578063dac6db1c1461086c578063e36b0b3714610897578063e985e9c5146108ae5761023a565b806398ca779514610749578063a22cb46514610772578063a51312c81461079b578063b4cdf927146107c4578063b66a0e5d146107ef5761023a565b80637b97008d116100f25780637b97008d146106815780637f44ab2f1461069d5780638da5cb5b146106c85780639358928b146106f357806395d89b411461071e5761023a565b80636352211e1461058a5780636c0360eb146105c757806370a08231146105f25780637263cfe21461062f5780637a6685f1146106585761023a565b80631d8dcd24116101bc5780633a065892116101805780633a065892146104b95780633ccfd60b146104f657806342842e0e1461050d57806355f804b314610536578063564566a81461055f5761023a565b80631d8dcd24146103ea57806323b872dd1461041357806329fc6bae1461043c5780632c72afb3146104675780633913d2b5146104905761023a565b8063095ea7b311610203578063095ea7b3146103385780630a2ed1091461036157806317f0929c1461037d57806318160ddd146103a85780631ad2ad1a146103d35761023a565b806208ffdd1461023f57806301ffc9a71461027c57806304c98b2b146102b957806306fdde03146102d0578063081812fc146102fb575b600080fd5b34801561024b57600080fd5b5061026660048036038101906102619190612dab565b6108eb565b6040516102739190612df1565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e64565b610903565b6040516102b09190612eac565b60405180910390f35b3480156102c557600080fd5b506102ce6109e5565b005b3480156102dc57600080fd5b506102e5610a92565b6040516102f29190612f60565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190612fae565b610b24565b60405161032f9190612fea565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190613005565b610ba9565b005b61037b60048036038101906103769190612fae565b610cc1565b005b34801561038957600080fd5b50610392610f71565b60405161039f9190612df1565b60405180910390f35b3480156103b457600080fd5b506103bd610f76565b6040516103ca9190612df1565b60405180910390f35b3480156103df57600080fd5b506103e8610f7c565b005b3480156103f657600080fd5b50610411600480360381019061040c9190612fae565b611029565b005b34801561041f57600080fd5b5061043a60048036038101906104359190613045565b6110c3565b005b34801561044857600080fd5b50610451611123565b60405161045e9190612eac565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613005565b611136565b005b34801561049c57600080fd5b506104b760048036038101906104b291906130fd565b611267565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612dab565b6113c5565b6040516104ed9190612eac565b60405180910390f35b34801561050257600080fd5b5061050b6113e5565b005b34801561051957600080fd5b50610534600480360381019061052f9190613045565b6114be565b005b34801561054257600080fd5b5061055d6004803603810190610558919061327a565b6114de565b005b34801561056b57600080fd5b50610574611588565b6040516105819190612eac565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612fae565b61159b565b6040516105be9190612fea565b60405180910390f35b3480156105d357600080fd5b506105dc61164d565b6040516105e99190612f60565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612dab565b6116db565b6040516106269190612df1565b60405180910390f35b34801561063b57600080fd5b50610656600480360381019061065191906130fd565b611793565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612fae565b6118c8565b005b61069b60048036038101906106969190612fae565b611962565b005b3480156106a957600080fd5b506106b2611af1565b6040516106bf9190612df1565b60405180910390f35b3480156106d457600080fd5b506106dd611af7565b6040516106ea9190612fea565b60405180910390f35b3480156106ff57600080fd5b50610708611b1d565b6040516107159190612df1565b60405180910390f35b34801561072a57600080fd5b50610733611b23565b6040516107409190612f60565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612fae565b611bb5565b005b34801561077e57600080fd5b50610799600480360381019061079491906132ef565b611c4f565b005b3480156107a757600080fd5b506107c260048036038101906107bd91906130fd565b611dd0565b005b3480156107d057600080fd5b506107d9611f05565b6040516107e69190612df1565b60405180910390f35b3480156107fb57600080fd5b50610804611f0b565b005b34801561081257600080fd5b5061082d600480360381019061082891906133d0565b611fb8565b005b34801561083b57600080fd5b5061085660048036038101906108519190612fae565b61201a565b6040516108639190612f60565b60405180910390f35b34801561087857600080fd5b506108816120c1565b60405161088e9190612df1565b60405180910390f35b3480156108a357600080fd5b506108ac6120c7565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190613453565b612174565b6040516108e29190612eac565b60405180910390f35b600e6020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109de57506109dd82612208565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906134df565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b606060008054610aa19061352e565b80601f0160208091040260200160405190810160405280929190818152602001828054610acd9061352e565b8015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b820191906000526020600020905b815481529060010190602001808311610afd57829003601f168201915b5050505050905090565b6000610b2f82612272565b610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b65906135d2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb48261159b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90613664565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c446122de565b73ffffffffffffffffffffffffffffffffffffffff161480610c735750610c7281610c6d6122de565b612174565b5b610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca9906136f6565b60405180910390fd5b610cbc83836122e6565b505050565b80606460095461270f610cd49190613745565b610cde9190613745565b811115610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d17906137c5565b60405180910390fd5b600a60149054906101000a900460ff16610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690613831565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df29061389d565b60405180910390fd5b600b5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e4991906138bd565b1115610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e819061395f565b60405180910390fd5b600c5482610e98919061397f565b341015610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190613a25565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f2991906138bd565b9250508190555060005b82811015610f6c57610f5933600960008154610f4e90613a45565b91905081905561239f565b8080610f6490613a45565b915050610f33565b505050565b606481565b61270f81565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461100c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611003906134df565b60405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906134df565b60405180910390fd5b80600c8190555050565b6110d46110ce6122de565b8261256d565b611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90613b00565b60405180910390fd5b61111e83838361264b565b505050565b600a60149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd906134df565b60405180910390fd5b80606460095461270f6111d99190613745565b6111e39190613745565b811115611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c906137c5565b60405180910390fd5b60005b828110156112615761124e8460096000815461124390613a45565b91905081905561239f565b808061125990613a45565b915050611228565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906134df565b60405180910390fd5b81819050606460095461270f61130d9190613745565b6113179190613745565b811115611359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611350906137c5565b60405180910390fd5b60005b838390508110156113bf576113ac84848381811061137d5761137c613b20565b5b90506020020160208101906113929190612dab565b6009600081546113a190613a45565b91905081905561239f565b80806113b790613a45565b91505061135c565b50505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c906134df565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114bb573d6000803e3d6000fd5b50565b6114d983838360405180602001604052806000815250611fb8565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611565906134df565b60405180910390fd5b8060069080519060200190611584929190612c96565b5050565b600760009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90613bc1565b60405180910390fd5b80915050919050565b6006805461165a9061352e565b80601f01602080910402602001604051908101604052809291908181526020018280546116869061352e565b80156116d35780601f106116a8576101008083540402835291602001916116d3565b820191906000526020600020905b8154815290600101906020018083116116b657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390613c53565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906134df565b60405180910390fd5b60005b828290508110156118c3576001600d600085858581811061184a57611849613b20565b5b905060200201602081019061185f9190612dab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806118bb90613a45565b915050611826565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f906134df565b60405180910390fd5b80600b8190555050565b80606460095461270f6119759190613745565b61197f9190613745565b8111156119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b8906137c5565b60405180910390fd5b600760009054906101000a900460ff16611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790613cbf565b60405180910390fd5b600082118015611a21575060148211155b611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613d2b565b60405180910390fd5b60085482611a6e919061397f565b341015611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790613a25565b60405180910390fd5b60005b82811015611aec57611ad933600960008154611ace90613a45565b91905081905561239f565b8080611ae490613a45565b915050611ab3565b505050565b600b5481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b606060018054611b329061352e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5e9061352e565b8015611bab5780601f10611b8057610100808354040283529160200191611bab565b820191906000526020600020905b815481529060010190602001808311611b8e57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c906134df565b60405180910390fd5b8060088190555050565b611c576122de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90613d97565b60405180910390fd5b8060056000611cd26122de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d7f6122de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dc49190612eac565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e57906134df565b60405180910390fd5b60005b82829050811015611f00576000600d6000858585818110611e8757611e86613b20565b5b9050602002016020810190611e9c9190612dab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ef890613a45565b915050611e63565b505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f92906134df565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b611fc9611fc36122de565b8361256d565b612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90613b00565b60405180910390fd5b612014848484846128a7565b50505050565b606061202582612272565b612064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b90613e29565b60405180910390fd5b600061206e612903565b9050600081511161208e57604051806020016040528060008152506120b9565b8061209884612995565b6040516020016120a9929190613e85565b6040516020818303038152906040525b915050919050565b60085481565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e906134df565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123598361159b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240690613ef5565b60405180910390fd5b61241881612272565b15612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f90613f61565b60405180910390fd5b61246460008383612af6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b491906138bd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061257882612272565b6125b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ae90613ff3565b60405180910390fd5b60006125c28361159b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061263157508373ffffffffffffffffffffffffffffffffffffffff1661261984610b24565b73ffffffffffffffffffffffffffffffffffffffff16145b8061264257506126418185612174565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661266b8261159b565b73ffffffffffffffffffffffffffffffffffffffff16146126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b890614085565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890614117565b60405180910390fd5b61273c838383612af6565b6127476000826122e6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127979190613745565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127ee91906138bd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6128b284848461264b565b6128be84848484612afb565b6128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f4906141a9565b60405180910390fd5b50505050565b6060600680546129129061352e565b80601f016020809104026020016040519081016040528092919081815260200182805461293e9061352e565b801561298b5780601f106129605761010080835404028352916020019161298b565b820191906000526020600020905b81548152906001019060200180831161296e57829003601f168201915b5050505050905090565b606060008214156129dd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612af1565b600082905060005b60008214612a0f5780806129f890613a45565b915050600a82612a0891906141f8565b91506129e5565b60008167ffffffffffffffff811115612a2b57612a2a61314f565b5b6040519080825280601f01601f191660200182016040528015612a5d5781602001600182028036833780820191505090505b5090505b60008514612aea57600182612a769190613745565b9150600a85612a859190614229565b6030612a9191906138bd565b60f81b818381518110612aa757612aa6613b20565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ae391906141f8565b9450612a61565b8093505050505b919050565b505050565b6000612b1c8473ffffffffffffffffffffffffffffffffffffffff16612c83565b15612c76578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b456122de565b8786866040518563ffffffff1660e01b8152600401612b6794939291906142af565b6020604051808303816000875af1925050508015612ba357506040513d601f19601f82011682018060405250810190612ba09190614310565b60015b612c26573d8060008114612bd3576040519150601f19603f3d011682016040523d82523d6000602084013e612bd8565b606091505b50600081511415612c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c15906141a9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c7b565b600190505b949350505050565b600080823b905060008111915050919050565b828054612ca29061352e565b90600052602060002090601f016020900481019282612cc45760008555612d0b565b82601f10612cdd57805160ff1916838001178555612d0b565b82800160010185558215612d0b579182015b82811115612d0a578251825591602001919060010190612cef565b5b509050612d189190612d1c565b5090565b5b80821115612d35576000816000905550600101612d1d565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d7882612d4d565b9050919050565b612d8881612d6d565b8114612d9357600080fd5b50565b600081359050612da581612d7f565b92915050565b600060208284031215612dc157612dc0612d43565b5b6000612dcf84828501612d96565b91505092915050565b6000819050919050565b612deb81612dd8565b82525050565b6000602082019050612e066000830184612de2565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e4181612e0c565b8114612e4c57600080fd5b50565b600081359050612e5e81612e38565b92915050565b600060208284031215612e7a57612e79612d43565b5b6000612e8884828501612e4f565b91505092915050565b60008115159050919050565b612ea681612e91565b82525050565b6000602082019050612ec16000830184612e9d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f01578082015181840152602081019050612ee6565b83811115612f10576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f3282612ec7565b612f3c8185612ed2565b9350612f4c818560208601612ee3565b612f5581612f16565b840191505092915050565b60006020820190508181036000830152612f7a8184612f27565b905092915050565b612f8b81612dd8565b8114612f9657600080fd5b50565b600081359050612fa881612f82565b92915050565b600060208284031215612fc457612fc3612d43565b5b6000612fd284828501612f99565b91505092915050565b612fe481612d6d565b82525050565b6000602082019050612fff6000830184612fdb565b92915050565b6000806040838503121561301c5761301b612d43565b5b600061302a85828601612d96565b925050602061303b85828601612f99565b9150509250929050565b60008060006060848603121561305e5761305d612d43565b5b600061306c86828701612d96565b935050602061307d86828701612d96565b925050604061308e86828701612f99565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126130bd576130bc613098565b5b8235905067ffffffffffffffff8111156130da576130d961309d565b5b6020830191508360208202830111156130f6576130f56130a2565b5b9250929050565b6000806020838503121561311457613113612d43565b5b600083013567ffffffffffffffff81111561313257613131612d48565b5b61313e858286016130a7565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61318782612f16565b810181811067ffffffffffffffff821117156131a6576131a561314f565b5b80604052505050565b60006131b9612d39565b90506131c5828261317e565b919050565b600067ffffffffffffffff8211156131e5576131e461314f565b5b6131ee82612f16565b9050602081019050919050565b82818337600083830152505050565b600061321d613218846131ca565b6131af565b9050828152602081018484840111156132395761323861314a565b5b6132448482856131fb565b509392505050565b600082601f83011261326157613260613098565b5b813561327184826020860161320a565b91505092915050565b6000602082840312156132905761328f612d43565b5b600082013567ffffffffffffffff8111156132ae576132ad612d48565b5b6132ba8482850161324c565b91505092915050565b6132cc81612e91565b81146132d757600080fd5b50565b6000813590506132e9816132c3565b92915050565b6000806040838503121561330657613305612d43565b5b600061331485828601612d96565b9250506020613325858286016132da565b9150509250929050565b600067ffffffffffffffff82111561334a5761334961314f565b5b61335382612f16565b9050602081019050919050565b600061337361336e8461332f565b6131af565b90508281526020810184848401111561338f5761338e61314a565b5b61339a8482856131fb565b509392505050565b600082601f8301126133b7576133b6613098565b5b81356133c7848260208601613360565b91505092915050565b600080600080608085870312156133ea576133e9612d43565b5b60006133f887828801612d96565b945050602061340987828801612d96565b935050604061341a87828801612f99565b925050606085013567ffffffffffffffff81111561343b5761343a612d48565b5b613447878288016133a2565b91505092959194509250565b6000806040838503121561346a57613469612d43565b5b600061347885828601612d96565b925050602061348985828601612d96565b9150509250929050565b7f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000600082015250565b60006134c9601783612ed2565b91506134d482613493565b602082019050919050565b600060208201905081810360008301526134f8816134bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061354657607f821691505b6020821081141561355a576135596134ff565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006135bc602c83612ed2565b91506135c782613560565b604082019050919050565b600060208201905081810360008301526135eb816135af565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061364e602183612ed2565b9150613659826135f2565b604082019050919050565b6000602082019050818103600083015261367d81613641565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006136e0603883612ed2565b91506136eb82613684565b604082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061375082612dd8565b915061375b83612dd8565b92508282101561376e5761376d613716565b5b828203905092915050565b7f547279206d696e74696e67206c65737320746f6b656e73000000000000000000600082015250565b60006137af601783612ed2565b91506137ba82613779565b602082019050919050565b600060208201905081810360008301526137de816137a2565b9050919050565b7f416c6c6f776c697374206973206e6f7420616374697665000000000000000000600082015250565b600061381b601783612ed2565b9150613826826137e5565b602082019050919050565b6000602082019050818103600083015261384a8161380e565b9050919050565b7f596f7520617265206e6f7420696e20616c6c6f776c6973740000000000000000600082015250565b6000613887601883612ed2565b915061389282613851565b602082019050919050565b600060208201905081810360008301526138b68161387a565b9050919050565b60006138c882612dd8565b91506138d383612dd8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561390857613907613716565b5b828201905092915050565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b6000613949601c83612ed2565b915061395482613913565b602082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b600061398a82612dd8565b915061399583612dd8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139ce576139cd613716565b5b828202905092915050565b7f54727920746f2073656e64206d6f726520455448000000000000000000000000600082015250565b6000613a0f601483612ed2565b9150613a1a826139d9565b602082019050919050565b60006020820190508181036000830152613a3e81613a02565b9050919050565b6000613a5082612dd8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a8357613a82613716565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613aea603183612ed2565b9150613af582613a8e565b604082019050919050565b60006020820190508181036000830152613b1981613add565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613bab602983612ed2565b9150613bb682613b4f565b604082019050919050565b60006020820190508181036000830152613bda81613b9e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613c3d602a83612ed2565b9150613c4882613be1565b604082019050919050565b60006020820190508181036000830152613c6c81613c30565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613ca9601283612ed2565b9150613cb482613c73565b602082019050919050565b60006020820190508181036000830152613cd881613c9c565b9050919050565b7f4d696e74206d696e20312c206d61782032300000000000000000000000000000600082015250565b6000613d15601283612ed2565b9150613d2082613cdf565b602082019050919050565b60006020820190508181036000830152613d4481613d08565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d81601983612ed2565b9150613d8c82613d4b565b602082019050919050565b60006020820190508181036000830152613db081613d74565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e13602f83612ed2565b9150613e1e82613db7565b604082019050919050565b60006020820190508181036000830152613e4281613e06565b9050919050565b600081905092915050565b6000613e5f82612ec7565b613e698185613e49565b9350613e79818560208601612ee3565b80840191505092915050565b6000613e918285613e54565b9150613e9d8284613e54565b91508190509392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613edf602083612ed2565b9150613eea82613ea9565b602082019050919050565b60006020820190508181036000830152613f0e81613ed2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f4b601c83612ed2565b9150613f5682613f15565b602082019050919050565b60006020820190508181036000830152613f7a81613f3e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613fdd602c83612ed2565b9150613fe882613f81565b604082019050919050565b6000602082019050818103600083015261400c81613fd0565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061406f602983612ed2565b915061407a82614013565b604082019050919050565b6000602082019050818103600083015261409e81614062565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614101602483612ed2565b915061410c826140a5565b604082019050919050565b60006020820190508181036000830152614130816140f4565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614193603283612ed2565b915061419e82614137565b604082019050919050565b600060208201905081810360008301526141c281614186565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420382612dd8565b915061420e83612dd8565b92508261421e5761421d6141c9565b5b828204905092915050565b600061423482612dd8565b915061423f83612dd8565b92508261424f5761424e6141c9565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006142818261425a565b61428b8185614265565b935061429b818560208601612ee3565b6142a481612f16565b840191505092915050565b60006080820190506142c46000830187612fdb565b6142d16020830186612fdb565b6142de6040830185612de2565b81810360608301526142f08184614276565b905095945050505050565b60008151905061430a81612e38565b92915050565b60006020828403121561432657614325612d43565b5b6000614334848285016142fb565b9150509291505056fea264697066735822122007ac35ab8a3253d9c81e7d0081aa5f10ef0dfbcbf08eacf6b21ef17d6458270c64736f6c634300080b0033697066733a2f2f516d564c444750394d4842634532793839537545566e417232463956537970426771687a4c63416b5945483976542f

Deployed Bytecode

0x60806040526004361061023a5760003560e01c80636352211e1161012e57806398ca7795116100ab578063b88d4fde1161006f578063b88d4fde14610806578063c87b56dd1461082f578063dac6db1c1461086c578063e36b0b3714610897578063e985e9c5146108ae5761023a565b806398ca779514610749578063a22cb46514610772578063a51312c81461079b578063b4cdf927146107c4578063b66a0e5d146107ef5761023a565b80637b97008d116100f25780637b97008d146106815780637f44ab2f1461069d5780638da5cb5b146106c85780639358928b146106f357806395d89b411461071e5761023a565b80636352211e1461058a5780636c0360eb146105c757806370a08231146105f25780637263cfe21461062f5780637a6685f1146106585761023a565b80631d8dcd24116101bc5780633a065892116101805780633a065892146104b95780633ccfd60b146104f657806342842e0e1461050d57806355f804b314610536578063564566a81461055f5761023a565b80631d8dcd24146103ea57806323b872dd1461041357806329fc6bae1461043c5780632c72afb3146104675780633913d2b5146104905761023a565b8063095ea7b311610203578063095ea7b3146103385780630a2ed1091461036157806317f0929c1461037d57806318160ddd146103a85780631ad2ad1a146103d35761023a565b806208ffdd1461023f57806301ffc9a71461027c57806304c98b2b146102b957806306fdde03146102d0578063081812fc146102fb575b600080fd5b34801561024b57600080fd5b5061026660048036038101906102619190612dab565b6108eb565b6040516102739190612df1565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e64565b610903565b6040516102b09190612eac565b60405180910390f35b3480156102c557600080fd5b506102ce6109e5565b005b3480156102dc57600080fd5b506102e5610a92565b6040516102f29190612f60565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190612fae565b610b24565b60405161032f9190612fea565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190613005565b610ba9565b005b61037b60048036038101906103769190612fae565b610cc1565b005b34801561038957600080fd5b50610392610f71565b60405161039f9190612df1565b60405180910390f35b3480156103b457600080fd5b506103bd610f76565b6040516103ca9190612df1565b60405180910390f35b3480156103df57600080fd5b506103e8610f7c565b005b3480156103f657600080fd5b50610411600480360381019061040c9190612fae565b611029565b005b34801561041f57600080fd5b5061043a60048036038101906104359190613045565b6110c3565b005b34801561044857600080fd5b50610451611123565b60405161045e9190612eac565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613005565b611136565b005b34801561049c57600080fd5b506104b760048036038101906104b291906130fd565b611267565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612dab565b6113c5565b6040516104ed9190612eac565b60405180910390f35b34801561050257600080fd5b5061050b6113e5565b005b34801561051957600080fd5b50610534600480360381019061052f9190613045565b6114be565b005b34801561054257600080fd5b5061055d6004803603810190610558919061327a565b6114de565b005b34801561056b57600080fd5b50610574611588565b6040516105819190612eac565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612fae565b61159b565b6040516105be9190612fea565b60405180910390f35b3480156105d357600080fd5b506105dc61164d565b6040516105e99190612f60565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612dab565b6116db565b6040516106269190612df1565b60405180910390f35b34801561063b57600080fd5b50610656600480360381019061065191906130fd565b611793565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612fae565b6118c8565b005b61069b60048036038101906106969190612fae565b611962565b005b3480156106a957600080fd5b506106b2611af1565b6040516106bf9190612df1565b60405180910390f35b3480156106d457600080fd5b506106dd611af7565b6040516106ea9190612fea565b60405180910390f35b3480156106ff57600080fd5b50610708611b1d565b6040516107159190612df1565b60405180910390f35b34801561072a57600080fd5b50610733611b23565b6040516107409190612f60565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612fae565b611bb5565b005b34801561077e57600080fd5b50610799600480360381019061079491906132ef565b611c4f565b005b3480156107a757600080fd5b506107c260048036038101906107bd91906130fd565b611dd0565b005b3480156107d057600080fd5b506107d9611f05565b6040516107e69190612df1565b60405180910390f35b3480156107fb57600080fd5b50610804611f0b565b005b34801561081257600080fd5b5061082d600480360381019061082891906133d0565b611fb8565b005b34801561083b57600080fd5b5061085660048036038101906108519190612fae565b61201a565b6040516108639190612f60565b60405180910390f35b34801561087857600080fd5b506108816120c1565b60405161088e9190612df1565b60405180910390f35b3480156108a357600080fd5b506108ac6120c7565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190613453565b612174565b6040516108e29190612eac565b60405180910390f35b600e6020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109de57506109dd82612208565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c906134df565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b606060008054610aa19061352e565b80601f0160208091040260200160405190810160405280929190818152602001828054610acd9061352e565b8015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b820191906000526020600020905b815481529060010190602001808311610afd57829003601f168201915b5050505050905090565b6000610b2f82612272565b610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b65906135d2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb48261159b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90613664565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c446122de565b73ffffffffffffffffffffffffffffffffffffffff161480610c735750610c7281610c6d6122de565b612174565b5b610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca9906136f6565b60405180910390fd5b610cbc83836122e6565b505050565b80606460095461270f610cd49190613745565b610cde9190613745565b811115610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d17906137c5565b60405180910390fd5b600a60149054906101000a900460ff16610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690613831565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df29061389d565b60405180910390fd5b600b5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e4991906138bd565b1115610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e819061395f565b60405180910390fd5b600c5482610e98919061397f565b341015610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190613a25565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f2991906138bd565b9250508190555060005b82811015610f6c57610f5933600960008154610f4e90613a45565b91905081905561239f565b8080610f6490613a45565b915050610f33565b505050565b606481565b61270f81565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461100c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611003906134df565b60405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906134df565b60405180910390fd5b80600c8190555050565b6110d46110ce6122de565b8261256d565b611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90613b00565b60405180910390fd5b61111e83838361264b565b505050565b600a60149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd906134df565b60405180910390fd5b80606460095461270f6111d99190613745565b6111e39190613745565b811115611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c906137c5565b60405180910390fd5b60005b828110156112615761124e8460096000815461124390613a45565b91905081905561239f565b808061125990613a45565b915050611228565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906134df565b60405180910390fd5b81819050606460095461270f61130d9190613745565b6113179190613745565b811115611359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611350906137c5565b60405180910390fd5b60005b838390508110156113bf576113ac84848381811061137d5761137c613b20565b5b90506020020160208101906113929190612dab565b6009600081546113a190613a45565b91905081905561239f565b80806113b790613a45565b91505061135c565b50505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c906134df565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114bb573d6000803e3d6000fd5b50565b6114d983838360405180602001604052806000815250611fb8565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611565906134df565b60405180910390fd5b8060069080519060200190611584929190612c96565b5050565b600760009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b90613bc1565b60405180910390fd5b80915050919050565b6006805461165a9061352e565b80601f01602080910402602001604051908101604052809291908181526020018280546116869061352e565b80156116d35780601f106116a8576101008083540402835291602001916116d3565b820191906000526020600020905b8154815290600101906020018083116116b657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390613c53565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906134df565b60405180910390fd5b60005b828290508110156118c3576001600d600085858581811061184a57611849613b20565b5b905060200201602081019061185f9190612dab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806118bb90613a45565b915050611826565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f906134df565b60405180910390fd5b80600b8190555050565b80606460095461270f6119759190613745565b61197f9190613745565b8111156119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b8906137c5565b60405180910390fd5b600760009054906101000a900460ff16611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790613cbf565b60405180910390fd5b600082118015611a21575060148211155b611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613d2b565b60405180910390fd5b60085482611a6e919061397f565b341015611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790613a25565b60405180910390fd5b60005b82811015611aec57611ad933600960008154611ace90613a45565b91905081905561239f565b8080611ae490613a45565b915050611ab3565b505050565b600b5481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b606060018054611b329061352e565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5e9061352e565b8015611bab5780601f10611b8057610100808354040283529160200191611bab565b820191906000526020600020905b815481529060010190602001808311611b8e57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c906134df565b60405180910390fd5b8060088190555050565b611c576122de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90613d97565b60405180910390fd5b8060056000611cd26122de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d7f6122de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dc49190612eac565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e57906134df565b60405180910390fd5b60005b82829050811015611f00576000600d6000858585818110611e8757611e86613b20565b5b9050602002016020810190611e9c9190612dab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ef890613a45565b915050611e63565b505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f92906134df565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b611fc9611fc36122de565b8361256d565b612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90613b00565b60405180910390fd5b612014848484846128a7565b50505050565b606061202582612272565b612064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b90613e29565b60405180910390fd5b600061206e612903565b9050600081511161208e57604051806020016040528060008152506120b9565b8061209884612995565b6040516020016120a9929190613e85565b6040516020818303038152906040525b915050919050565b60085481565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e906134df565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123598361159b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240690613ef5565b60405180910390fd5b61241881612272565b15612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f90613f61565b60405180910390fd5b61246460008383612af6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b491906138bd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061257882612272565b6125b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ae90613ff3565b60405180910390fd5b60006125c28361159b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061263157508373ffffffffffffffffffffffffffffffffffffffff1661261984610b24565b73ffffffffffffffffffffffffffffffffffffffff16145b8061264257506126418185612174565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661266b8261159b565b73ffffffffffffffffffffffffffffffffffffffff16146126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b890614085565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890614117565b60405180910390fd5b61273c838383612af6565b6127476000826122e6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127979190613745565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127ee91906138bd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6128b284848461264b565b6128be84848484612afb565b6128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f4906141a9565b60405180910390fd5b50505050565b6060600680546129129061352e565b80601f016020809104026020016040519081016040528092919081815260200182805461293e9061352e565b801561298b5780601f106129605761010080835404028352916020019161298b565b820191906000526020600020905b81548152906001019060200180831161296e57829003601f168201915b5050505050905090565b606060008214156129dd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612af1565b600082905060005b60008214612a0f5780806129f890613a45565b915050600a82612a0891906141f8565b91506129e5565b60008167ffffffffffffffff811115612a2b57612a2a61314f565b5b6040519080825280601f01601f191660200182016040528015612a5d5781602001600182028036833780820191505090505b5090505b60008514612aea57600182612a769190613745565b9150600a85612a859190614229565b6030612a9191906138bd565b60f81b818381518110612aa757612aa6613b20565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ae391906141f8565b9450612a61565b8093505050505b919050565b505050565b6000612b1c8473ffffffffffffffffffffffffffffffffffffffff16612c83565b15612c76578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b456122de565b8786866040518563ffffffff1660e01b8152600401612b6794939291906142af565b6020604051808303816000875af1925050508015612ba357506040513d601f19601f82011682018060405250810190612ba09190614310565b60015b612c26573d8060008114612bd3576040519150601f19603f3d011682016040523d82523d6000602084013e612bd8565b606091505b50600081511415612c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c15906141a9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c7b565b600190505b949350505050565b600080823b905060008111915050919050565b828054612ca29061352e565b90600052602060002090601f016020900481019282612cc45760008555612d0b565b82601f10612cdd57805160ff1916838001178555612d0b565b82800160010185558215612d0b579182015b82811115612d0a578251825591602001919060010190612cef565b5b509050612d189190612d1c565b5090565b5b80821115612d35576000816000905550600101612d1d565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d7882612d4d565b9050919050565b612d8881612d6d565b8114612d9357600080fd5b50565b600081359050612da581612d7f565b92915050565b600060208284031215612dc157612dc0612d43565b5b6000612dcf84828501612d96565b91505092915050565b6000819050919050565b612deb81612dd8565b82525050565b6000602082019050612e066000830184612de2565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e4181612e0c565b8114612e4c57600080fd5b50565b600081359050612e5e81612e38565b92915050565b600060208284031215612e7a57612e79612d43565b5b6000612e8884828501612e4f565b91505092915050565b60008115159050919050565b612ea681612e91565b82525050565b6000602082019050612ec16000830184612e9d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f01578082015181840152602081019050612ee6565b83811115612f10576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f3282612ec7565b612f3c8185612ed2565b9350612f4c818560208601612ee3565b612f5581612f16565b840191505092915050565b60006020820190508181036000830152612f7a8184612f27565b905092915050565b612f8b81612dd8565b8114612f9657600080fd5b50565b600081359050612fa881612f82565b92915050565b600060208284031215612fc457612fc3612d43565b5b6000612fd284828501612f99565b91505092915050565b612fe481612d6d565b82525050565b6000602082019050612fff6000830184612fdb565b92915050565b6000806040838503121561301c5761301b612d43565b5b600061302a85828601612d96565b925050602061303b85828601612f99565b9150509250929050565b60008060006060848603121561305e5761305d612d43565b5b600061306c86828701612d96565b935050602061307d86828701612d96565b925050604061308e86828701612f99565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126130bd576130bc613098565b5b8235905067ffffffffffffffff8111156130da576130d961309d565b5b6020830191508360208202830111156130f6576130f56130a2565b5b9250929050565b6000806020838503121561311457613113612d43565b5b600083013567ffffffffffffffff81111561313257613131612d48565b5b61313e858286016130a7565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61318782612f16565b810181811067ffffffffffffffff821117156131a6576131a561314f565b5b80604052505050565b60006131b9612d39565b90506131c5828261317e565b919050565b600067ffffffffffffffff8211156131e5576131e461314f565b5b6131ee82612f16565b9050602081019050919050565b82818337600083830152505050565b600061321d613218846131ca565b6131af565b9050828152602081018484840111156132395761323861314a565b5b6132448482856131fb565b509392505050565b600082601f83011261326157613260613098565b5b813561327184826020860161320a565b91505092915050565b6000602082840312156132905761328f612d43565b5b600082013567ffffffffffffffff8111156132ae576132ad612d48565b5b6132ba8482850161324c565b91505092915050565b6132cc81612e91565b81146132d757600080fd5b50565b6000813590506132e9816132c3565b92915050565b6000806040838503121561330657613305612d43565b5b600061331485828601612d96565b9250506020613325858286016132da565b9150509250929050565b600067ffffffffffffffff82111561334a5761334961314f565b5b61335382612f16565b9050602081019050919050565b600061337361336e8461332f565b6131af565b90508281526020810184848401111561338f5761338e61314a565b5b61339a8482856131fb565b509392505050565b600082601f8301126133b7576133b6613098565b5b81356133c7848260208601613360565b91505092915050565b600080600080608085870312156133ea576133e9612d43565b5b60006133f887828801612d96565b945050602061340987828801612d96565b935050604061341a87828801612f99565b925050606085013567ffffffffffffffff81111561343b5761343a612d48565b5b613447878288016133a2565b91505092959194509250565b6000806040838503121561346a57613469612d43565b5b600061347885828601612d96565b925050602061348985828601612d96565b9150509250929050565b7f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000600082015250565b60006134c9601783612ed2565b91506134d482613493565b602082019050919050565b600060208201905081810360008301526134f8816134bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061354657607f821691505b6020821081141561355a576135596134ff565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006135bc602c83612ed2565b91506135c782613560565b604082019050919050565b600060208201905081810360008301526135eb816135af565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061364e602183612ed2565b9150613659826135f2565b604082019050919050565b6000602082019050818103600083015261367d81613641565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006136e0603883612ed2565b91506136eb82613684565b604082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061375082612dd8565b915061375b83612dd8565b92508282101561376e5761376d613716565b5b828203905092915050565b7f547279206d696e74696e67206c65737320746f6b656e73000000000000000000600082015250565b60006137af601783612ed2565b91506137ba82613779565b602082019050919050565b600060208201905081810360008301526137de816137a2565b9050919050565b7f416c6c6f776c697374206973206e6f7420616374697665000000000000000000600082015250565b600061381b601783612ed2565b9150613826826137e5565b602082019050919050565b6000602082019050818103600083015261384a8161380e565b9050919050565b7f596f7520617265206e6f7420696e20616c6c6f776c6973740000000000000000600082015250565b6000613887601883612ed2565b915061389282613851565b602082019050919050565b600060208201905081810360008301526138b68161387a565b9050919050565b60006138c882612dd8565b91506138d383612dd8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561390857613907613716565b5b828201905092915050565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b6000613949601c83612ed2565b915061395482613913565b602082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b600061398a82612dd8565b915061399583612dd8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139ce576139cd613716565b5b828202905092915050565b7f54727920746f2073656e64206d6f726520455448000000000000000000000000600082015250565b6000613a0f601483612ed2565b9150613a1a826139d9565b602082019050919050565b60006020820190508181036000830152613a3e81613a02565b9050919050565b6000613a5082612dd8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a8357613a82613716565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613aea603183612ed2565b9150613af582613a8e565b604082019050919050565b60006020820190508181036000830152613b1981613add565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613bab602983612ed2565b9150613bb682613b4f565b604082019050919050565b60006020820190508181036000830152613bda81613b9e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613c3d602a83612ed2565b9150613c4882613be1565b604082019050919050565b60006020820190508181036000830152613c6c81613c30565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613ca9601283612ed2565b9150613cb482613c73565b602082019050919050565b60006020820190508181036000830152613cd881613c9c565b9050919050565b7f4d696e74206d696e20312c206d61782032300000000000000000000000000000600082015250565b6000613d15601283612ed2565b9150613d2082613cdf565b602082019050919050565b60006020820190508181036000830152613d4481613d08565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d81601983612ed2565b9150613d8c82613d4b565b602082019050919050565b60006020820190508181036000830152613db081613d74565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e13602f83612ed2565b9150613e1e82613db7565b604082019050919050565b60006020820190508181036000830152613e4281613e06565b9050919050565b600081905092915050565b6000613e5f82612ec7565b613e698185613e49565b9350613e79818560208601612ee3565b80840191505092915050565b6000613e918285613e54565b9150613e9d8284613e54565b91508190509392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613edf602083612ed2565b9150613eea82613ea9565b602082019050919050565b60006020820190508181036000830152613f0e81613ed2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f4b601c83612ed2565b9150613f5682613f15565b602082019050919050565b60006020820190508181036000830152613f7a81613f3e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613fdd602c83612ed2565b9150613fe882613f81565b604082019050919050565b6000602082019050818103600083015261400c81613fd0565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061406f602983612ed2565b915061407a82614013565b604082019050919050565b6000602082019050818103600083015261409e81614062565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614101602483612ed2565b915061410c826140a5565b604082019050919050565b60006020820190508181036000830152614130816140f4565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614193603283612ed2565b915061419e82614137565b604082019050919050565b600060208201905081810360008301526141c281614186565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420382612dd8565b915061420e83612dd8565b92508261421e5761421d6141c9565b5b828204905092915050565b600061423482612dd8565b915061423f83612dd8565b92508261424f5761424e6141c9565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006142818261425a565b61428b8185614265565b935061429b818560208601612ee3565b6142a481612f16565b840191505092915050565b60006080820190506142c46000830187612fdb565b6142d16020830186612fdb565b6142de6040830185612de2565b81810360608301526142f08184614276565b905095945050505050565b60008151905061430a81612e38565b92915050565b60006020828403121561432657614325612d43565b5b6000614334848285016142fb565b9150509291505056fea264697066735822122007ac35ab8a3253d9c81e7d0081aa5f10ef0dfbcbf08eacf6b21ef17d6458270c64736f6c634300080b0033

Loading...
Loading
Loading...
Loading
[ 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.