ETH Price: $3,397.35 (-1.48%)
Gas: 2 Gwei

Token

Mallows BYOA (MLWS)
 

Overview

Max Total Supply

2,689 MLWS

Holders

499

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MLWS
0x10464d14d27d5115a9c9d4d9ec9c62e5c7146ad4
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:
MallowsByoa

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

pragma solidity ^0.8.0;

contract MallowsByoa is ERC721Enumerable, Ownable {
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant RESERVES = 100; // Saved for the team and advisors

    uint256 private _saleTime = 1628809200; // 7PM EDT on August 12th
    uint256 private _price = 4 * 10**16; // This is currently .04 eth

    string private _baseTokenURI;

    constructor(string memory baseURI) ERC721("Mallows BYOA", "MLWS") {
        setBaseURI(baseURI);
    }

    function setSaleTime(uint256 time) public onlyOwner {
        _saleTime = time;
    }

    function getSaleTime() public view returns (uint256) {
        return _saleTime;
    }

    function isSaleOpen() public view returns (bool) {
        return block.timestamp >= _saleTime;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    // Allows for the early reservation of 100 rugs from the creators for promotional usage
    function getReserves(uint256 _count) public onlyOwner {
        uint256 totalSupply = totalSupply();
        require(totalSupply + _count < RESERVES, "Beyond max limit"); // make sure we can only mint the first 100
        require(
            block.timestamp < _saleTime,
            "Sale has already started."
        );
        for (uint256 index; index < _count; index++) {
            _safeMint(0x5F464Da70f02A498CD525e950bcCb323b9989D90, totalSupply + index);
        }
    }

    // Count is how many they want to mint
    function mint(uint256 _count) public payable {
        uint256 totalSupply = totalSupply();
        require(
            totalSupply + _count <= MAX_SUPPLY,
            "A transaction of this size would surpass the token limit."
        );
        require(
            totalSupply < MAX_SUPPLY,
            "All tokens have already been minted."
        );
        require(_count < 21, "Exceeds the max token per transaction limit.");
        require(
            msg.value >= _price * _count,
            "The value submitted with this transaction is too low."
        );
        require(
            block.timestamp >= _saleTime,
            "The mallows sale is not currently open."
        );

        for (uint256 i; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        }

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function withdrawAll() public payable {
        require(payable(0x5F464Da70f02A498CD525e950bcCb323b9989D90).send(address(this).balance));
    }
}

File 2 of 13 : 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(to).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 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 13 : 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 6 of 13 : 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 7 of 13 : 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 13 : 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 9 of 13 : 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 10 of 13 : 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 11 of 13 : 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 12 of 13 : 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);
}

File 13 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVES","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setSaleTime","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052636115a7f0600b55668e1bc9bf040000600c553480156200002457600080fd5b506040516200489a3803806200489a83398181016040528101906200004a9190620003f3565b6040518060400160405280600c81526020017f4d616c6c6f77732042594f4100000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4c5753000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ce929190620002c5565b508060019080519060200190620000e7929190620002c5565b5050506200010a620000fe6200012260201b60201c565b6200012a60201b60201c565b6200011b81620001f060201b60201c565b506200064b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002006200012260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002266200029b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200027f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000276906200046b565b60405180910390fd5b80600d908051906020019062000297929190620002c5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002d39062000533565b90600052602060002090601f016020900481019282620002f7576000855562000343565b82601f106200031257805160ff191683800117855562000343565b8280016001018555821562000343579182015b828111156200034257825182559160200191906001019062000325565b5b50905062000352919062000356565b5090565b5b808211156200037157600081600090555060010162000357565b5090565b60006200038c6200038684620004b6565b6200048d565b905082815260208101848484011115620003ab57620003aa62000602565b5b620003b8848285620004fd565b509392505050565b600082601f830112620003d857620003d7620005fd565b5b8151620003ea84826020860162000375565b91505092915050565b6000602082840312156200040c576200040b6200060c565b5b600082015167ffffffffffffffff8111156200042d576200042c62000607565b5b6200043b84828501620003c0565b91505092915050565b600062000453602083620004ec565b9150620004608262000622565b602082019050919050565b60006020820190508181036000830152620004868162000444565b9050919050565b600062000499620004ac565b9050620004a7828262000569565b919050565b6000604051905090565b600067ffffffffffffffff821115620004d457620004d3620005ce565b5b620004df8262000611565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200051d57808201518184015260208101905062000500565b838111156200052d576000848401525b50505050565b600060028204905060018216806200054c57607f821691505b602082108114156200056357620005626200059f565b5b50919050565b620005748262000611565b810181811067ffffffffffffffff82111715620005965762000595620005ce565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61423f806200065b6000396000f3fe6080604052600436106101c25760003560e01c806355f804b3116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610624578063cbf21fe414610661578063e985e9c51461068c578063f2fde38b146106c9576101c2565b806395d89b411461058b578063a0712d68146105b6578063a22cb465146105d2578063b88d4fde146105fb576101c2565b8063715018a6116100d1578063715018a614610516578063853828b61461052d5780638da5cb5b146105375780638ea7495c14610562576101c2565b806355f804b3146104735780636352211e1461049c57806370a08231146104d9576101c2565b806323b872dd116101645780633bd2b67d1161013e5780633bd2b67d146103a757806342842e0e146103d0578063438b6300146103f95780634f6ccce714610436576101c2565b806323b872dd146103165780632f745c591461033f57806332cb6b0c1461037c576101c2565b80630922f9c5116101a05780630922f9c51461026c578063095ea7b31461029757806318160ddd146102c05780631a081330146102eb576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612c3b565b6106f2565b6040516101fb9190613278565b60405180910390f35b34801561021057600080fd5b5061021961076c565b6040516102269190613293565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612cde565b6107fe565b60405161026391906131ef565b60405180910390f35b34801561027857600080fd5b50610281610883565b60405161028e91906135d5565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612bfb565b610888565b005b3480156102cc57600080fd5b506102d56109a0565b6040516102e291906135d5565b60405180910390f35b3480156102f757600080fd5b506103006109ad565b60405161030d9190613278565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612ae5565b6109ba565b005b34801561034b57600080fd5b5061036660048036038101906103619190612bfb565b610a1a565b60405161037391906135d5565b60405180910390f35b34801561038857600080fd5b50610391610abf565b60405161039e91906135d5565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612cde565b610ac5565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190612ae5565b610b4b565b005b34801561040557600080fd5b50610420600480360381019061041b9190612a78565b610b6b565b60405161042d9190613256565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612cde565b610c75565b60405161046a91906135d5565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612c95565b610ce6565b005b3480156104a857600080fd5b506104c360048036038101906104be9190612cde565b610d7c565b6040516104d091906131ef565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612a78565b610e2e565b60405161050d91906135d5565b60405180910390f35b34801561052257600080fd5b5061052b610ee6565b005b610535610f6e565b005b34801561054357600080fd5b5061054c610fc2565b60405161055991906131ef565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190612cde565b610fec565b005b34801561059757600080fd5b506105a0611152565b6040516105ad9190613293565b60405180910390f35b6105d060048036038101906105cb9190612cde565b6111e4565b005b3480156105de57600080fd5b506105f960048036038101906105f49190612bbb565b611394565b005b34801561060757600080fd5b50610622600480360381019061061d9190612b38565b611515565b005b34801561063057600080fd5b5061064b60048036038101906106469190612cde565b611577565b6040516106589190613293565b60405180910390f35b34801561066d57600080fd5b5061067661161e565b60405161068391906135d5565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190612aa5565b611628565b6040516106c09190613278565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190612a78565b6116bc565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107655750610764826117b4565b5b9050919050565b60606000805461077b906138be565b80601f01602080910402602001604051908101604052809291908181526020018280546107a7906138be565b80156107f45780601f106107c9576101008083540402835291602001916107f4565b820191906000526020600020905b8154815290600101906020018083116107d757829003601f168201915b5050505050905090565b600061080982611896565b610848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083f90613475565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b606481565b600061089382610d7c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb90613515565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610923611902565b73ffffffffffffffffffffffffffffffffffffffff16148061095257506109518161094c611902565b611628565b5b610991576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610988906133d5565b60405180910390fd5b61099b838361190a565b505050565b6000600880549050905090565b6000600b54421015905090565b6109cb6109c5611902565b826119c3565b610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190613535565b60405180910390fd5b610a15838383611aa1565b505050565b6000610a2583610e2e565b8210610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d906132b5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610acd611902565b73ffffffffffffffffffffffffffffffffffffffff16610aeb610fc2565b73ffffffffffffffffffffffffffffffffffffffff1614610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b38906134b5565b60405180910390fd5b80600b8190555050565b610b6683838360405180602001604052806000815250611515565b505050565b60606000610b7883610e2e565b90506000811415610bd557600067ffffffffffffffff811115610b9e57610b9d613a86565b5b604051908082528060200260200182016040528015610bcc5781602001602082028036833780820191505090505b50915050610c70565b60008167ffffffffffffffff811115610bf157610bf0613a86565b5b604051908082528060200260200182016040528015610c1f5781602001602082028036833780820191505090505b50905060005b82811015610c6957610c378582610a1a565b828281518110610c4a57610c49613a57565b5b6020026020010181815250508080610c6190613921565b915050610c25565b5080925050505b919050565b6000610c7f6109a0565b8210610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613575565b60405180910390fd5b60088281548110610cd457610cd3613a57565b5b90600052602060002001549050919050565b610cee611902565b73ffffffffffffffffffffffffffffffffffffffff16610d0c610fc2565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d59906134b5565b60405180910390fd5b80600d9080519060200190610d7892919061288c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613415565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e96906133f5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eee611902565b73ffffffffffffffffffffffffffffffffffffffff16610f0c610fc2565b73ffffffffffffffffffffffffffffffffffffffff1614610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f59906134b5565b60405180910390fd5b610f6c6000611cfd565b565b735f464da70f02a498cd525e950bccb323b9989d9073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610fc057600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ff4611902565b73ffffffffffffffffffffffffffffffffffffffff16611012610fc2565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f906134b5565b60405180910390fd5b60006110726109a0565b90506064828261108291906136f3565b106110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906135b5565b60405180910390fd5b600b544210611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90613335565b60405180910390fd5b60005b8281101561114d5761113a735f464da70f02a498cd525e950bccb323b9989d90828461113591906136f3565b611dc3565b808061114590613921565b915050611109565b505050565b606060018054611161906138be565b80601f016020809104026020016040519081016040528092919081815260200182805461118d906138be565b80156111da5780601f106111af576101008083540402835291602001916111da565b820191906000526020600020905b8154815290600101906020018083116111bd57829003601f168201915b5050505050905090565b60006111ee6109a0565b905061271082826111ff91906136f3565b1115611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790613555565b60405180910390fd5b6127108110611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90613595565b60405180910390fd5b601582106112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be906133b5565b60405180910390fd5b81600c546112d5919061377a565b341015611317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130e90613435565b60405180910390fd5b600b5442101561135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390613495565b60405180910390fd5b60005b8281101561138f5761137c33828461137791906136f3565b611dc3565b808061138790613921565b91505061135f565b505050565b61139c611902565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613375565b60405180910390fd5b8060056000611417611902565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114c4611902565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115099190613278565b60405180910390a35050565b611526611520611902565b836119c3565b611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90613535565b60405180910390fd5b61157184848484611de1565b50505050565b606061158282611896565b6115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b8906134f5565b60405180910390fd5b60006115cb611e3d565b905060008151116115eb5760405180602001604052806000815250611616565b806115f584611ecf565b6040516020016116069291906131cb565b6040516020818303038152906040525b915050919050565b6000600b54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c4611902565b73ffffffffffffffffffffffffffffffffffffffff166116e2610fc2565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f906134b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906132f5565b60405180910390fd5b6117b181611cfd565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061187f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061188f575061188e82612030565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661197d83610d7c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119ce82611896565b611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613395565b60405180910390fd5b6000611a1883610d7c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a8757508373ffffffffffffffffffffffffffffffffffffffff16611a6f846107fe565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a985750611a978185611628565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ac182610d7c565b73ffffffffffffffffffffffffffffffffffffffff1614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e906134d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90613355565b60405180910390fd5b611b9283838361209a565b611b9d60008261190a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bed91906137d4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4491906136f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ddd8282604051806020016040528060008152506121ae565b5050565b611dec848484611aa1565b611df884848484612209565b611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e906132d5565b60405180910390fd5b50505050565b6060600d8054611e4c906138be565b80601f0160208091040260200160405190810160405280929190818152602001828054611e78906138be565b8015611ec55780601f10611e9a57610100808354040283529160200191611ec5565b820191906000526020600020905b815481529060010190602001808311611ea857829003601f168201915b5050505050905090565b60606000821415611f17576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061202b565b600082905060005b60008214611f49578080611f3290613921565b915050600a82611f429190613749565b9150611f1f565b60008167ffffffffffffffff811115611f6557611f64613a86565b5b6040519080825280601f01601f191660200182016040528015611f975781602001600182028036833780820191505090505b5090505b6000851461202457600182611fb091906137d4565b9150600a85611fbf919061396a565b6030611fcb91906136f3565b60f81b818381518110611fe157611fe0613a57565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561201d9190613749565b9450611f9b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120a58383836123a0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120e8576120e3816123a5565b612127565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121265761212583826123ee565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561216a576121658161255b565b6121a9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121a8576121a7828261262c565b5b5b505050565b6121b883836126ab565b6121c56000848484612209565b612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb906132d5565b60405180910390fd5b505050565b600061222a8473ffffffffffffffffffffffffffffffffffffffff16612879565b15612393578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612253611902565b8786866040518563ffffffff1660e01b8152600401612275949392919061320a565b602060405180830381600087803b15801561228f57600080fd5b505af19250505080156122c057506040513d601f19601f820116820180604052508101906122bd9190612c68565b60015b612343573d80600081146122f0576040519150601f19603f3d011682016040523d82523d6000602084013e6122f5565b606091505b5060008151141561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906132d5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612398565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016123fb84610e2e565b61240591906137d4565b90506000600760008481526020019081526020016000205490508181146124ea576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061256f91906137d4565b905060006009600084815260200190815260200160002054905060006008838154811061259f5761259e613a57565b5b9060005260206000200154905080600883815481106125c1576125c0613a57565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126105761260f613a28565b5b6001900381819060005260206000200160009055905550505050565b600061263783610e2e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271290613455565b60405180910390fd5b61272481611896565b15612764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275b90613315565b60405180910390fd5b6127706000838361209a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c091906136f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612898906138be565b90600052602060002090601f0160209004810192826128ba5760008555612901565b82601f106128d357805160ff1916838001178555612901565b82800160010185558215612901579182015b828111156129005782518255916020019190600101906128e5565b5b50905061290e9190612912565b5090565b5b8082111561292b576000816000905550600101612913565b5090565b600061294261293d84613615565b6135f0565b90508281526020810184848401111561295e5761295d613aba565b5b61296984828561387c565b509392505050565b600061298461297f84613646565b6135f0565b9050828152602081018484840111156129a05761299f613aba565b5b6129ab84828561387c565b509392505050565b6000813590506129c2816141ad565b92915050565b6000813590506129d7816141c4565b92915050565b6000813590506129ec816141db565b92915050565b600081519050612a01816141db565b92915050565b600082601f830112612a1c57612a1b613ab5565b5b8135612a2c84826020860161292f565b91505092915050565b600082601f830112612a4a57612a49613ab5565b5b8135612a5a848260208601612971565b91505092915050565b600081359050612a72816141f2565b92915050565b600060208284031215612a8e57612a8d613ac4565b5b6000612a9c848285016129b3565b91505092915050565b60008060408385031215612abc57612abb613ac4565b5b6000612aca858286016129b3565b9250506020612adb858286016129b3565b9150509250929050565b600080600060608486031215612afe57612afd613ac4565b5b6000612b0c868287016129b3565b9350506020612b1d868287016129b3565b9250506040612b2e86828701612a63565b9150509250925092565b60008060008060808587031215612b5257612b51613ac4565b5b6000612b60878288016129b3565b9450506020612b71878288016129b3565b9350506040612b8287828801612a63565b925050606085013567ffffffffffffffff811115612ba357612ba2613abf565b5b612baf87828801612a07565b91505092959194509250565b60008060408385031215612bd257612bd1613ac4565b5b6000612be0858286016129b3565b9250506020612bf1858286016129c8565b9150509250929050565b60008060408385031215612c1257612c11613ac4565b5b6000612c20858286016129b3565b9250506020612c3185828601612a63565b9150509250929050565b600060208284031215612c5157612c50613ac4565b5b6000612c5f848285016129dd565b91505092915050565b600060208284031215612c7e57612c7d613ac4565b5b6000612c8c848285016129f2565b91505092915050565b600060208284031215612cab57612caa613ac4565b5b600082013567ffffffffffffffff811115612cc957612cc8613abf565b5b612cd584828501612a35565b91505092915050565b600060208284031215612cf457612cf3613ac4565b5b6000612d0284828501612a63565b91505092915050565b6000612d1783836131ad565b60208301905092915050565b612d2c81613808565b82525050565b6000612d3d82613687565b612d4781856136b5565b9350612d5283613677565b8060005b83811015612d83578151612d6a8882612d0b565b9750612d75836136a8565b925050600181019050612d56565b5085935050505092915050565b612d998161381a565b82525050565b6000612daa82613692565b612db481856136c6565b9350612dc481856020860161388b565b612dcd81613ac9565b840191505092915050565b6000612de38261369d565b612ded81856136d7565b9350612dfd81856020860161388b565b612e0681613ac9565b840191505092915050565b6000612e1c8261369d565b612e2681856136e8565b9350612e3681856020860161388b565b80840191505092915050565b6000612e4f602b836136d7565b9150612e5a82613ada565b604082019050919050565b6000612e726032836136d7565b9150612e7d82613b29565b604082019050919050565b6000612e956026836136d7565b9150612ea082613b78565b604082019050919050565b6000612eb8601c836136d7565b9150612ec382613bc7565b602082019050919050565b6000612edb6019836136d7565b9150612ee682613bf0565b602082019050919050565b6000612efe6024836136d7565b9150612f0982613c19565b604082019050919050565b6000612f216019836136d7565b9150612f2c82613c68565b602082019050919050565b6000612f44602c836136d7565b9150612f4f82613c91565b604082019050919050565b6000612f67602c836136d7565b9150612f7282613ce0565b604082019050919050565b6000612f8a6038836136d7565b9150612f9582613d2f565b604082019050919050565b6000612fad602a836136d7565b9150612fb882613d7e565b604082019050919050565b6000612fd06029836136d7565b9150612fdb82613dcd565b604082019050919050565b6000612ff36035836136d7565b9150612ffe82613e1c565b604082019050919050565b60006130166020836136d7565b915061302182613e6b565b602082019050919050565b6000613039602c836136d7565b915061304482613e94565b604082019050919050565b600061305c6027836136d7565b915061306782613ee3565b604082019050919050565b600061307f6020836136d7565b915061308a82613f32565b602082019050919050565b60006130a26029836136d7565b91506130ad82613f5b565b604082019050919050565b60006130c5602f836136d7565b91506130d082613faa565b604082019050919050565b60006130e86021836136d7565b91506130f382613ff9565b604082019050919050565b600061310b6031836136d7565b915061311682614048565b604082019050919050565b600061312e6039836136d7565b915061313982614097565b604082019050919050565b6000613151602c836136d7565b915061315c826140e6565b604082019050919050565b60006131746024836136d7565b915061317f82614135565b604082019050919050565b60006131976010836136d7565b91506131a282614184565b602082019050919050565b6131b681613872565b82525050565b6131c581613872565b82525050565b60006131d78285612e11565b91506131e38284612e11565b91508190509392505050565b60006020820190506132046000830184612d23565b92915050565b600060808201905061321f6000830187612d23565b61322c6020830186612d23565b61323960408301856131bc565b818103606083015261324b8184612d9f565b905095945050505050565b600060208201905081810360008301526132708184612d32565b905092915050565b600060208201905061328d6000830184612d90565b92915050565b600060208201905081810360008301526132ad8184612dd8565b905092915050565b600060208201905081810360008301526132ce81612e42565b9050919050565b600060208201905081810360008301526132ee81612e65565b9050919050565b6000602082019050818103600083015261330e81612e88565b9050919050565b6000602082019050818103600083015261332e81612eab565b9050919050565b6000602082019050818103600083015261334e81612ece565b9050919050565b6000602082019050818103600083015261336e81612ef1565b9050919050565b6000602082019050818103600083015261338e81612f14565b9050919050565b600060208201905081810360008301526133ae81612f37565b9050919050565b600060208201905081810360008301526133ce81612f5a565b9050919050565b600060208201905081810360008301526133ee81612f7d565b9050919050565b6000602082019050818103600083015261340e81612fa0565b9050919050565b6000602082019050818103600083015261342e81612fc3565b9050919050565b6000602082019050818103600083015261344e81612fe6565b9050919050565b6000602082019050818103600083015261346e81613009565b9050919050565b6000602082019050818103600083015261348e8161302c565b9050919050565b600060208201905081810360008301526134ae8161304f565b9050919050565b600060208201905081810360008301526134ce81613072565b9050919050565b600060208201905081810360008301526134ee81613095565b9050919050565b6000602082019050818103600083015261350e816130b8565b9050919050565b6000602082019050818103600083015261352e816130db565b9050919050565b6000602082019050818103600083015261354e816130fe565b9050919050565b6000602082019050818103600083015261356e81613121565b9050919050565b6000602082019050818103600083015261358e81613144565b9050919050565b600060208201905081810360008301526135ae81613167565b9050919050565b600060208201905081810360008301526135ce8161318a565b9050919050565b60006020820190506135ea60008301846131bc565b92915050565b60006135fa61360b565b905061360682826138f0565b919050565b6000604051905090565b600067ffffffffffffffff8211156136305761362f613a86565b5b61363982613ac9565b9050602081019050919050565b600067ffffffffffffffff82111561366157613660613a86565b5b61366a82613ac9565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136fe82613872565b915061370983613872565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373e5761373d61399b565b5b828201905092915050565b600061375482613872565b915061375f83613872565b92508261376f5761376e6139ca565b5b828204905092915050565b600061378582613872565b915061379083613872565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c9576137c861399b565b5b828202905092915050565b60006137df82613872565b91506137ea83613872565b9250828210156137fd576137fc61399b565b5b828203905092915050565b600061381382613852565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138a957808201518184015260208101905061388e565b838111156138b8576000848401525b50505050565b600060028204905060018216806138d657607f821691505b602082108114156138ea576138e96139f9565b5b50919050565b6138f982613ac9565b810181811067ffffffffffffffff8211171561391857613917613a86565b5b80604052505050565b600061392c82613872565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395f5761395e61399b565b5b600182019050919050565b600061397582613872565b915061398083613872565b9250826139905761398f6139ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c652068617320616c726561647920737461727465642e00000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4578636565647320746865206d617820746f6b656e20706572207472616e736160008201527f6374696f6e206c696d69742e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5468652076616c7565207375626d69747465642077697468207468697320747260008201527f616e73616374696f6e20697320746f6f206c6f772e0000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546865206d616c6c6f77732073616c65206973206e6f742063757272656e746c60008201527f79206f70656e2e00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f41207472616e73616374696f6e206f6620746869732073697a6520776f756c6460008201527f20737572706173732074686520746f6b656e206c696d69742e00000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e73206861766520616c7265616479206265656e206d696e60008201527f7465642e00000000000000000000000000000000000000000000000000000000602082015250565b7f4265796f6e64206d6178206c696d697400000000000000000000000000000000600082015250565b6141b681613808565b81146141c157600080fd5b50565b6141cd8161381a565b81146141d857600080fd5b50565b6141e481613826565b81146141ef57600080fd5b50565b6141fb81613872565b811461420657600080fd5b5056fea2646970667358221220021441d10cc35c1278826571b47541e50c1a5c4d7ba2606a878cd8b5e68bfcf564736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e52736863445165424537447061675564544d59664e6858585670547a6b31516866676a6f443875555a32722f00000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806355f804b3116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610624578063cbf21fe414610661578063e985e9c51461068c578063f2fde38b146106c9576101c2565b806395d89b411461058b578063a0712d68146105b6578063a22cb465146105d2578063b88d4fde146105fb576101c2565b8063715018a6116100d1578063715018a614610516578063853828b61461052d5780638da5cb5b146105375780638ea7495c14610562576101c2565b806355f804b3146104735780636352211e1461049c57806370a08231146104d9576101c2565b806323b872dd116101645780633bd2b67d1161013e5780633bd2b67d146103a757806342842e0e146103d0578063438b6300146103f95780634f6ccce714610436576101c2565b806323b872dd146103165780632f745c591461033f57806332cb6b0c1461037c576101c2565b80630922f9c5116101a05780630922f9c51461026c578063095ea7b31461029757806318160ddd146102c05780631a081330146102eb576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612c3b565b6106f2565b6040516101fb9190613278565b60405180910390f35b34801561021057600080fd5b5061021961076c565b6040516102269190613293565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612cde565b6107fe565b60405161026391906131ef565b60405180910390f35b34801561027857600080fd5b50610281610883565b60405161028e91906135d5565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612bfb565b610888565b005b3480156102cc57600080fd5b506102d56109a0565b6040516102e291906135d5565b60405180910390f35b3480156102f757600080fd5b506103006109ad565b60405161030d9190613278565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612ae5565b6109ba565b005b34801561034b57600080fd5b5061036660048036038101906103619190612bfb565b610a1a565b60405161037391906135d5565b60405180910390f35b34801561038857600080fd5b50610391610abf565b60405161039e91906135d5565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612cde565b610ac5565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190612ae5565b610b4b565b005b34801561040557600080fd5b50610420600480360381019061041b9190612a78565b610b6b565b60405161042d9190613256565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612cde565b610c75565b60405161046a91906135d5565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612c95565b610ce6565b005b3480156104a857600080fd5b506104c360048036038101906104be9190612cde565b610d7c565b6040516104d091906131ef565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612a78565b610e2e565b60405161050d91906135d5565b60405180910390f35b34801561052257600080fd5b5061052b610ee6565b005b610535610f6e565b005b34801561054357600080fd5b5061054c610fc2565b60405161055991906131ef565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190612cde565b610fec565b005b34801561059757600080fd5b506105a0611152565b6040516105ad9190613293565b60405180910390f35b6105d060048036038101906105cb9190612cde565b6111e4565b005b3480156105de57600080fd5b506105f960048036038101906105f49190612bbb565b611394565b005b34801561060757600080fd5b50610622600480360381019061061d9190612b38565b611515565b005b34801561063057600080fd5b5061064b60048036038101906106469190612cde565b611577565b6040516106589190613293565b60405180910390f35b34801561066d57600080fd5b5061067661161e565b60405161068391906135d5565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190612aa5565b611628565b6040516106c09190613278565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190612a78565b6116bc565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107655750610764826117b4565b5b9050919050565b60606000805461077b906138be565b80601f01602080910402602001604051908101604052809291908181526020018280546107a7906138be565b80156107f45780601f106107c9576101008083540402835291602001916107f4565b820191906000526020600020905b8154815290600101906020018083116107d757829003601f168201915b5050505050905090565b600061080982611896565b610848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083f90613475565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b606481565b600061089382610d7c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb90613515565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610923611902565b73ffffffffffffffffffffffffffffffffffffffff16148061095257506109518161094c611902565b611628565b5b610991576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610988906133d5565b60405180910390fd5b61099b838361190a565b505050565b6000600880549050905090565b6000600b54421015905090565b6109cb6109c5611902565b826119c3565b610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190613535565b60405180910390fd5b610a15838383611aa1565b505050565b6000610a2583610e2e565b8210610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d906132b5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610acd611902565b73ffffffffffffffffffffffffffffffffffffffff16610aeb610fc2565b73ffffffffffffffffffffffffffffffffffffffff1614610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b38906134b5565b60405180910390fd5b80600b8190555050565b610b6683838360405180602001604052806000815250611515565b505050565b60606000610b7883610e2e565b90506000811415610bd557600067ffffffffffffffff811115610b9e57610b9d613a86565b5b604051908082528060200260200182016040528015610bcc5781602001602082028036833780820191505090505b50915050610c70565b60008167ffffffffffffffff811115610bf157610bf0613a86565b5b604051908082528060200260200182016040528015610c1f5781602001602082028036833780820191505090505b50905060005b82811015610c6957610c378582610a1a565b828281518110610c4a57610c49613a57565b5b6020026020010181815250508080610c6190613921565b915050610c25565b5080925050505b919050565b6000610c7f6109a0565b8210610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613575565b60405180910390fd5b60088281548110610cd457610cd3613a57565b5b90600052602060002001549050919050565b610cee611902565b73ffffffffffffffffffffffffffffffffffffffff16610d0c610fc2565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d59906134b5565b60405180910390fd5b80600d9080519060200190610d7892919061288c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613415565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e96906133f5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eee611902565b73ffffffffffffffffffffffffffffffffffffffff16610f0c610fc2565b73ffffffffffffffffffffffffffffffffffffffff1614610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f59906134b5565b60405180910390fd5b610f6c6000611cfd565b565b735f464da70f02a498cd525e950bccb323b9989d9073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610fc057600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ff4611902565b73ffffffffffffffffffffffffffffffffffffffff16611012610fc2565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f906134b5565b60405180910390fd5b60006110726109a0565b90506064828261108291906136f3565b106110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906135b5565b60405180910390fd5b600b544210611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90613335565b60405180910390fd5b60005b8281101561114d5761113a735f464da70f02a498cd525e950bccb323b9989d90828461113591906136f3565b611dc3565b808061114590613921565b915050611109565b505050565b606060018054611161906138be565b80601f016020809104026020016040519081016040528092919081815260200182805461118d906138be565b80156111da5780601f106111af576101008083540402835291602001916111da565b820191906000526020600020905b8154815290600101906020018083116111bd57829003601f168201915b5050505050905090565b60006111ee6109a0565b905061271082826111ff91906136f3565b1115611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790613555565b60405180910390fd5b6127108110611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90613595565b60405180910390fd5b601582106112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be906133b5565b60405180910390fd5b81600c546112d5919061377a565b341015611317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130e90613435565b60405180910390fd5b600b5442101561135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390613495565b60405180910390fd5b60005b8281101561138f5761137c33828461137791906136f3565b611dc3565b808061138790613921565b91505061135f565b505050565b61139c611902565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613375565b60405180910390fd5b8060056000611417611902565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114c4611902565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115099190613278565b60405180910390a35050565b611526611520611902565b836119c3565b611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90613535565b60405180910390fd5b61157184848484611de1565b50505050565b606061158282611896565b6115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b8906134f5565b60405180910390fd5b60006115cb611e3d565b905060008151116115eb5760405180602001604052806000815250611616565b806115f584611ecf565b6040516020016116069291906131cb565b6040516020818303038152906040525b915050919050565b6000600b54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c4611902565b73ffffffffffffffffffffffffffffffffffffffff166116e2610fc2565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f906134b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906132f5565b60405180910390fd5b6117b181611cfd565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061187f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061188f575061188e82612030565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661197d83610d7c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119ce82611896565b611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613395565b60405180910390fd5b6000611a1883610d7c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a8757508373ffffffffffffffffffffffffffffffffffffffff16611a6f846107fe565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a985750611a978185611628565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ac182610d7c565b73ffffffffffffffffffffffffffffffffffffffff1614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e906134d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90613355565b60405180910390fd5b611b9283838361209a565b611b9d60008261190a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bed91906137d4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4491906136f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ddd8282604051806020016040528060008152506121ae565b5050565b611dec848484611aa1565b611df884848484612209565b611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e906132d5565b60405180910390fd5b50505050565b6060600d8054611e4c906138be565b80601f0160208091040260200160405190810160405280929190818152602001828054611e78906138be565b8015611ec55780601f10611e9a57610100808354040283529160200191611ec5565b820191906000526020600020905b815481529060010190602001808311611ea857829003601f168201915b5050505050905090565b60606000821415611f17576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061202b565b600082905060005b60008214611f49578080611f3290613921565b915050600a82611f429190613749565b9150611f1f565b60008167ffffffffffffffff811115611f6557611f64613a86565b5b6040519080825280601f01601f191660200182016040528015611f975781602001600182028036833780820191505090505b5090505b6000851461202457600182611fb091906137d4565b9150600a85611fbf919061396a565b6030611fcb91906136f3565b60f81b818381518110611fe157611fe0613a57565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561201d9190613749565b9450611f9b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120a58383836123a0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120e8576120e3816123a5565b612127565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121265761212583826123ee565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561216a576121658161255b565b6121a9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121a8576121a7828261262c565b5b5b505050565b6121b883836126ab565b6121c56000848484612209565b612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb906132d5565b60405180910390fd5b505050565b600061222a8473ffffffffffffffffffffffffffffffffffffffff16612879565b15612393578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612253611902565b8786866040518563ffffffff1660e01b8152600401612275949392919061320a565b602060405180830381600087803b15801561228f57600080fd5b505af19250505080156122c057506040513d601f19601f820116820180604052508101906122bd9190612c68565b60015b612343573d80600081146122f0576040519150601f19603f3d011682016040523d82523d6000602084013e6122f5565b606091505b5060008151141561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906132d5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612398565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016123fb84610e2e565b61240591906137d4565b90506000600760008481526020019081526020016000205490508181146124ea576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061256f91906137d4565b905060006009600084815260200190815260200160002054905060006008838154811061259f5761259e613a57565b5b9060005260206000200154905080600883815481106125c1576125c0613a57565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126105761260f613a28565b5b6001900381819060005260206000200160009055905550505050565b600061263783610e2e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271290613455565b60405180910390fd5b61272481611896565b15612764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275b90613315565b60405180910390fd5b6127706000838361209a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c091906136f3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612898906138be565b90600052602060002090601f0160209004810192826128ba5760008555612901565b82601f106128d357805160ff1916838001178555612901565b82800160010185558215612901579182015b828111156129005782518255916020019190600101906128e5565b5b50905061290e9190612912565b5090565b5b8082111561292b576000816000905550600101612913565b5090565b600061294261293d84613615565b6135f0565b90508281526020810184848401111561295e5761295d613aba565b5b61296984828561387c565b509392505050565b600061298461297f84613646565b6135f0565b9050828152602081018484840111156129a05761299f613aba565b5b6129ab84828561387c565b509392505050565b6000813590506129c2816141ad565b92915050565b6000813590506129d7816141c4565b92915050565b6000813590506129ec816141db565b92915050565b600081519050612a01816141db565b92915050565b600082601f830112612a1c57612a1b613ab5565b5b8135612a2c84826020860161292f565b91505092915050565b600082601f830112612a4a57612a49613ab5565b5b8135612a5a848260208601612971565b91505092915050565b600081359050612a72816141f2565b92915050565b600060208284031215612a8e57612a8d613ac4565b5b6000612a9c848285016129b3565b91505092915050565b60008060408385031215612abc57612abb613ac4565b5b6000612aca858286016129b3565b9250506020612adb858286016129b3565b9150509250929050565b600080600060608486031215612afe57612afd613ac4565b5b6000612b0c868287016129b3565b9350506020612b1d868287016129b3565b9250506040612b2e86828701612a63565b9150509250925092565b60008060008060808587031215612b5257612b51613ac4565b5b6000612b60878288016129b3565b9450506020612b71878288016129b3565b9350506040612b8287828801612a63565b925050606085013567ffffffffffffffff811115612ba357612ba2613abf565b5b612baf87828801612a07565b91505092959194509250565b60008060408385031215612bd257612bd1613ac4565b5b6000612be0858286016129b3565b9250506020612bf1858286016129c8565b9150509250929050565b60008060408385031215612c1257612c11613ac4565b5b6000612c20858286016129b3565b9250506020612c3185828601612a63565b9150509250929050565b600060208284031215612c5157612c50613ac4565b5b6000612c5f848285016129dd565b91505092915050565b600060208284031215612c7e57612c7d613ac4565b5b6000612c8c848285016129f2565b91505092915050565b600060208284031215612cab57612caa613ac4565b5b600082013567ffffffffffffffff811115612cc957612cc8613abf565b5b612cd584828501612a35565b91505092915050565b600060208284031215612cf457612cf3613ac4565b5b6000612d0284828501612a63565b91505092915050565b6000612d1783836131ad565b60208301905092915050565b612d2c81613808565b82525050565b6000612d3d82613687565b612d4781856136b5565b9350612d5283613677565b8060005b83811015612d83578151612d6a8882612d0b565b9750612d75836136a8565b925050600181019050612d56565b5085935050505092915050565b612d998161381a565b82525050565b6000612daa82613692565b612db481856136c6565b9350612dc481856020860161388b565b612dcd81613ac9565b840191505092915050565b6000612de38261369d565b612ded81856136d7565b9350612dfd81856020860161388b565b612e0681613ac9565b840191505092915050565b6000612e1c8261369d565b612e2681856136e8565b9350612e3681856020860161388b565b80840191505092915050565b6000612e4f602b836136d7565b9150612e5a82613ada565b604082019050919050565b6000612e726032836136d7565b9150612e7d82613b29565b604082019050919050565b6000612e956026836136d7565b9150612ea082613b78565b604082019050919050565b6000612eb8601c836136d7565b9150612ec382613bc7565b602082019050919050565b6000612edb6019836136d7565b9150612ee682613bf0565b602082019050919050565b6000612efe6024836136d7565b9150612f0982613c19565b604082019050919050565b6000612f216019836136d7565b9150612f2c82613c68565b602082019050919050565b6000612f44602c836136d7565b9150612f4f82613c91565b604082019050919050565b6000612f67602c836136d7565b9150612f7282613ce0565b604082019050919050565b6000612f8a6038836136d7565b9150612f9582613d2f565b604082019050919050565b6000612fad602a836136d7565b9150612fb882613d7e565b604082019050919050565b6000612fd06029836136d7565b9150612fdb82613dcd565b604082019050919050565b6000612ff36035836136d7565b9150612ffe82613e1c565b604082019050919050565b60006130166020836136d7565b915061302182613e6b565b602082019050919050565b6000613039602c836136d7565b915061304482613e94565b604082019050919050565b600061305c6027836136d7565b915061306782613ee3565b604082019050919050565b600061307f6020836136d7565b915061308a82613f32565b602082019050919050565b60006130a26029836136d7565b91506130ad82613f5b565b604082019050919050565b60006130c5602f836136d7565b91506130d082613faa565b604082019050919050565b60006130e86021836136d7565b91506130f382613ff9565b604082019050919050565b600061310b6031836136d7565b915061311682614048565b604082019050919050565b600061312e6039836136d7565b915061313982614097565b604082019050919050565b6000613151602c836136d7565b915061315c826140e6565b604082019050919050565b60006131746024836136d7565b915061317f82614135565b604082019050919050565b60006131976010836136d7565b91506131a282614184565b602082019050919050565b6131b681613872565b82525050565b6131c581613872565b82525050565b60006131d78285612e11565b91506131e38284612e11565b91508190509392505050565b60006020820190506132046000830184612d23565b92915050565b600060808201905061321f6000830187612d23565b61322c6020830186612d23565b61323960408301856131bc565b818103606083015261324b8184612d9f565b905095945050505050565b600060208201905081810360008301526132708184612d32565b905092915050565b600060208201905061328d6000830184612d90565b92915050565b600060208201905081810360008301526132ad8184612dd8565b905092915050565b600060208201905081810360008301526132ce81612e42565b9050919050565b600060208201905081810360008301526132ee81612e65565b9050919050565b6000602082019050818103600083015261330e81612e88565b9050919050565b6000602082019050818103600083015261332e81612eab565b9050919050565b6000602082019050818103600083015261334e81612ece565b9050919050565b6000602082019050818103600083015261336e81612ef1565b9050919050565b6000602082019050818103600083015261338e81612f14565b9050919050565b600060208201905081810360008301526133ae81612f37565b9050919050565b600060208201905081810360008301526133ce81612f5a565b9050919050565b600060208201905081810360008301526133ee81612f7d565b9050919050565b6000602082019050818103600083015261340e81612fa0565b9050919050565b6000602082019050818103600083015261342e81612fc3565b9050919050565b6000602082019050818103600083015261344e81612fe6565b9050919050565b6000602082019050818103600083015261346e81613009565b9050919050565b6000602082019050818103600083015261348e8161302c565b9050919050565b600060208201905081810360008301526134ae8161304f565b9050919050565b600060208201905081810360008301526134ce81613072565b9050919050565b600060208201905081810360008301526134ee81613095565b9050919050565b6000602082019050818103600083015261350e816130b8565b9050919050565b6000602082019050818103600083015261352e816130db565b9050919050565b6000602082019050818103600083015261354e816130fe565b9050919050565b6000602082019050818103600083015261356e81613121565b9050919050565b6000602082019050818103600083015261358e81613144565b9050919050565b600060208201905081810360008301526135ae81613167565b9050919050565b600060208201905081810360008301526135ce8161318a565b9050919050565b60006020820190506135ea60008301846131bc565b92915050565b60006135fa61360b565b905061360682826138f0565b919050565b6000604051905090565b600067ffffffffffffffff8211156136305761362f613a86565b5b61363982613ac9565b9050602081019050919050565b600067ffffffffffffffff82111561366157613660613a86565b5b61366a82613ac9565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136fe82613872565b915061370983613872565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373e5761373d61399b565b5b828201905092915050565b600061375482613872565b915061375f83613872565b92508261376f5761376e6139ca565b5b828204905092915050565b600061378582613872565b915061379083613872565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137c9576137c861399b565b5b828202905092915050565b60006137df82613872565b91506137ea83613872565b9250828210156137fd576137fc61399b565b5b828203905092915050565b600061381382613852565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138a957808201518184015260208101905061388e565b838111156138b8576000848401525b50505050565b600060028204905060018216806138d657607f821691505b602082108114156138ea576138e96139f9565b5b50919050565b6138f982613ac9565b810181811067ffffffffffffffff8211171561391857613917613a86565b5b80604052505050565b600061392c82613872565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395f5761395e61399b565b5b600182019050919050565b600061397582613872565b915061398083613872565b9250826139905761398f6139ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c652068617320616c726561647920737461727465642e00000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4578636565647320746865206d617820746f6b656e20706572207472616e736160008201527f6374696f6e206c696d69742e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5468652076616c7565207375626d69747465642077697468207468697320747260008201527f616e73616374696f6e20697320746f6f206c6f772e0000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546865206d616c6c6f77732073616c65206973206e6f742063757272656e746c60008201527f79206f70656e2e00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f41207472616e73616374696f6e206f6620746869732073697a6520776f756c6460008201527f20737572706173732074686520746f6b656e206c696d69742e00000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e73206861766520616c7265616479206265656e206d696e60008201527f7465642e00000000000000000000000000000000000000000000000000000000602082015250565b7f4265796f6e64206d6178206c696d697400000000000000000000000000000000600082015250565b6141b681613808565b81146141c157600080fd5b50565b6141cd8161381a565b81146141d857600080fd5b50565b6141e481613826565b81146141ef57600080fd5b50565b6141fb81613872565b811461420657600080fd5b5056fea2646970667358221220021441d10cc35c1278826571b47541e50c1a5c4d7ba2606a878cd8b5e68bfcf564736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e52736863445165424537447061675564544d59664e6858585670547a6b31516866676a6f443875555a32722f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmNRshcDQeBE7DpagUdTMYfNhXXVpTzk1QhfgjoD8uUZ2r/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e52736863445165424537447061675564544d59664e68
Arg [3] : 58585670547a6b31516866676a6f443875555a32722f00000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.