ETH Price: $3,354.77 (-1.81%)
Gas: 7 Gwei

Token

BlazedCatsThemeSong (BCTS)
 

Overview

Max Total Supply

520 BCTS

Holders

291

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
illiquidassets.eth
Balance
1 BCTS
0xff2bfaf7deb3c03f8dda16b7e3bcf0166d568cb9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

50% of mint proceeds and 100% of secondary profits to charity. Purchase 1 completely unique and Hamm-drawn generative vinyl record and receive commercial rights to the Blazed Cats Theme Song, instrumental, and arrangement.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BlazedCatsThemeSong

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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


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

contract BlazedCatsThemeSong is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable {

    event PurchaseThemeSong (address indexed buyer, uint256 startWith, uint256 batch);

    address payable public wallet;

    uint256 public totalMinted;
    uint256 public burnCount;
    uint256 public totalCount = 10000;
    uint256 public maxBatch = 50;
    uint256 public price = 0.015 * 10**18; // 0.08 eth
    string public baseURI;
    bool private started;

    string name_ = 'BlazedCatsThemeSong';
    string symbol_ = 'BCTS';
    string baseURI_ = 'ipfs://QmdsNKts8sVn3YW5xmmA7FtmpTwBtH57MbnKpcvSPq79Cg/';

    constructor() ERC721(name_, symbol_) {
        baseURI = baseURI_;
        wallet = payable(msg.sender);
        
        for(uint256 i=0; i< 10; i++){
            _mint(_msgSender(), 1 + totalMinted++);
        }
        
        for(uint256 i=9990; i< 10000; i++){
            _mint(_msgSender(), i + 1);
        }
    }

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

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

    function changePrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner {
        _setTokenURI(_tokenId, _tokenURI);
    }

    function setStart(bool _start) public onlyOwner {
        started = _start;
    }

    function purchaseThemeSong(uint256 _batchCount) payable public {
        require(started, "Sale has not started");
        require(_batchCount > 0 && _batchCount <= maxBatch, "Batch purchase limit exceeded");
        require(totalMinted + _batchCount <= totalCount, "Not enough inventory");
        require(msg.value == _batchCount * price, "Invalid value sent");
        
        //require(blazedCats.ownerOf(tokenId), ');

        emit PurchaseThemeSong(_msgSender(), totalMinted+1, _batchCount);
        for(uint256 i=0; i< _batchCount; i++){
            _mint(_msgSender(), 1 + totalMinted++);
        }
        
        //walletDistro();
    }

    function walletDistro() public {
        uint256 contract_balance = address(this).balance;
        //require(payable(wallet).send(contract_balance));
        require(payable(0xCf2820a5b2D9Ec98C0e4456bf6CE778AFd2dFE93).send( (contract_balance * 500) / 1000));
        require(payable(0x60Ab841070f46188E73de2Cc2a8E6418B71C60f1).send( (contract_balance * 110) / 1000));
        require(payable(0xAf61C1C5057fb701CF5F4aACb9cE843bCD349fF4).send( (contract_balance * 100) / 1000));
        require(payable(0xfA8cA8078A1F73BB9AEF7e6fdA6C2b02854b12Ac).send( (contract_balance * 100) / 1000));
        require(payable(0xb817b0137Bb1A838aeBCc63a231d152C6CB03B41).send( (contract_balance * 50)  / 1000));
        require(payable(0x59f77152728A61640C9F0Bf289b5A0b6FA338Db4).send( (contract_balance * 50)  / 1000));
        require(payable(0x046bBe099CfA0b6cc71d59D6E4Cd38c5d0eEF71b).send( (contract_balance * 50)  / 1000));
        require(payable(0x7dF05B684e3E66C30287e0C0C4c8954ed26EDe97).send( (contract_balance * 40)  / 1000));
    }
    
    function distroDust() public {
        walletDistro();
        uint256 contract_balance = address(this).balance;
        require(payable(wallet).send(contract_balance));
    }

    function changeWallet(address payable _newWallet) external onlyOwner {
        wallet = _newWallet;
    }

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

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

        return tokensId;
    }

    /**
   * Override isApprovedForAll to auto-approve OS's proxy contract
   */
    function isApprovedForAll(
        address _owner,
        address _operator
    ) public override view returns (bool isOperator) {
      // if OpenSea's ERC721 Proxy Address is detected, auto-return true
        if (_operator == address(0xa5409ec958C83C3f309868babACA7c86DCB077c1)) {     // OpenSea approval
            return true;
        }
        
        // otherwise, use the default ERC721.isApprovedForAll()
        return ERC721.isApprovedForAll(_owner, _operator);
    }

    function safeMint(address to, uint256 tokenId) public onlyOwner {
        _safeMint(to, tokenId);
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    
    function burn(uint256 tokenId) public {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
    
    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
        burnCount++;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

}

File 2 of 15 : 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 3 of 15 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 4 of 15 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 5 of 15 : 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 6 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 15 : 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);
}

File 8 of 15 : 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 9 of 15 : 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 10 of 15 : 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 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 15 : 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 13 of 15 : 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 14 of 15 : 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 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"batch","type":"uint256"}],"name":"PurchaseThemeSong","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distroDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchCount","type":"uint256"}],"name":"purchaseThemeSong","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","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":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletDistro","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletInventory","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

6080604052612710600f55603260105566354a6ba7a180006011556040518060400160405280601381526020017f426c617a6564436174735468656d65536f6e6700000000000000000000000000815250601490805190602001906200006792919062000c79565b506040518060400160405280600481526020017f424354530000000000000000000000000000000000000000000000000000000081525060159080519060200190620000b592919062000c79565b5060405180606001604052806036815260200162005fd26036913960169080519060200190620000e792919062000c79565b50348015620000f557600080fd5b5060148054620001059062000f4f565b80601f0160208091040260200160405190810160405280929190818152602001828054620001339062000f4f565b8015620001845780601f10620001585761010080835404028352916020019162000184565b820191906000526020600020905b8154815290600101906020018083116200016657829003601f168201915b505050505060158054620001989062000f4f565b80601f0160208091040260200160405190810160405280929190818152602001828054620001c69062000f4f565b8015620002175780601f10620001eb5761010080835404028352916020019162000217565b820191906000526020600020905b815481529060010190602001808311620001f957829003601f168201915b505050505081600090805190602001906200023492919062000c79565b5080600190805190602001906200024d92919062000c79565b50505062000270620002646200039b60201b60201c565b620003a360201b60201c565b60166012908054620002829062000f4f565b6200028f92919062000d0a565b5033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060005b600a8110156200033b5762000325620002f26200039b60201b60201c565b600d6000815480929190620003079062000f85565b91905055600162000319919062000ead565b6200046960201b60201c565b8080620003329062000f85565b915050620002d4565b50600061270690505b61271081101562000394576200037e620003636200039b60201b60201c565b60018362000372919062000ead565b6200046960201b60201c565b80806200038b9062000f85565b91505062000344565b50620010d2565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d39062000e7a565b60405180910390fd5b620004ed816200064f60201b60201c565b1562000530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005279062000e36565b60405180910390fd5b6200054460008383620006bb60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000596919062000ead565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620006d3838383620006d860201b62001e1b1760201c565b505050565b620006f08383836200081f60201b62001f2f1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200073d5762000737816200082460201b60201c565b62000785565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000784576200078383826200086d60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007d257620007cc81620009ea60201b60201c565b6200081a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620008195762000818828262000b3260201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620008878462000bbe60201b620011241760201c565b62000893919062000f0a565b905060006007600084815260200190815260200160002054905081811462000979576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000a00919062000f0a565b905060006009600084815260200190815260200160002054905060006008838154811062000a57577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000aa0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000b16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000b4a8362000bbe60201b620011241760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c299062000e58565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000c879062000f4f565b90600052602060002090601f01602090048101928262000cab576000855562000cf7565b82601f1062000cc657805160ff191683800117855562000cf7565b8280016001018555821562000cf7579182015b8281111562000cf657825182559160200191906001019062000cd9565b5b50905062000d06919062000da2565b5090565b82805462000d189062000f4f565b90600052602060002090601f01602090048101928262000d3c576000855562000d8f565b82601f1062000d4f578054855562000d8f565b8280016001018555821562000d8f57600052602060002091601f016020900482015b8281111562000d8e57825482559160010191906001019062000d71565b5b50905062000d9e919062000da2565b5090565b5b8082111562000dbd57600081600090555060010162000da3565b5090565b600062000dd0601c8362000e9c565b915062000ddd8262001031565b602082019050919050565b600062000df7602a8362000e9c565b915062000e04826200105a565b604082019050919050565b600062000e1e60208362000e9c565b915062000e2b82620010a9565b602082019050919050565b6000602082019050818103600083015262000e518162000dc1565b9050919050565b6000602082019050818103600083015262000e738162000de8565b9050919050565b6000602082019050818103600083015262000e958162000e0f565b9050919050565b600082825260208201905092915050565b600062000eba8262000f45565b915062000ec78362000f45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000eff5762000efe62000fd3565b5b828201905092915050565b600062000f178262000f45565b915062000f248362000f45565b92508282101562000f3a5762000f3962000fd3565b5b828203905092915050565b6000819050919050565b6000600282049050600182168062000f6857607f821691505b6020821081141562000f7f5762000f7e62001002565b5b50919050565b600062000f928262000f45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000fc85762000fc762000fd3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b614ef080620010e26000396000f3fe60806040526004361061021a5760003560e01c806368e2432711610123578063a1448194116100ab578063c87b56dd1161006f578063c87b56dd146107bd578063d92adf80146107fa578063e985e9c514610816578063ece2cefe14610853578063f2fde38b1461086a5761021a565b8063a1448194146106ee578063a22cb46514610717578063a2309ff814610740578063a2b40d191461076b578063b88d4fde146107945761021a565b80638da5cb5b116100f25780638da5cb5b1461062d57806395d89b41146106585780639670cf391461068357806398b9a2dc1461069a578063a035b1fe146106c35761021a565b806368e24327146105855780636c0360eb146105ae57806370a08231146105d9578063715018a6146106165761021a565b80633f3c1136116101a6578063521eb27311610175578063521eb2731461049e578063524773ce146104c957806355f804b3146104f45780636352211e1461051d57806367765b871461055a5761021a565b80633f3c1136146103d257806342842e0e1461040f57806342966c68146104385780634f6ccce7146104615761021a565b8063162094c4116101ed578063162094c4146102ed57806318160ddd1461031657806323b872dd146103415780632f745c591461036a57806334eafb11146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906138ee565b610893565b6040516102539190613f95565b60405180910390f35b34801561026857600080fd5b506102716108a5565b60405161027e9190613fb0565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613981565b610937565b6040516102bb9190613ef1565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613889565b6109bc565b005b3480156102f957600080fd5b50610314600480360381019061030f91906139aa565b610ad4565b005b34801561032257600080fd5b5061032b610b5e565b60405161033891906142f2565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613783565b610b6b565b005b34801561037657600080fd5b50610391600480360381019061038c9190613889565b610bcb565b60405161039e91906142f2565b60405180910390f35b3480156103b357600080fd5b506103bc610c70565b6040516103c991906142f2565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906136f5565b610c76565b6040516104069190613f73565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613783565b610d70565b005b34801561044457600080fd5b5061045f600480360381019061045a9190613981565b610d90565b005b34801561046d57600080fd5b5061048860048036038101906104839190613981565b610dec565b60405161049591906142f2565b60405180910390f35b3480156104aa57600080fd5b506104b3610e83565b6040516104c09190613f0c565b60405180910390f35b3480156104d557600080fd5b506104de610ea9565b6040516104eb91906142f2565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190613940565b610eaf565b005b34801561052957600080fd5b50610544600480360381019061053f9190613981565b610f45565b6040516105519190613ef1565b60405180910390f35b34801561056657600080fd5b5061056f610ff7565b60405161057c91906142f2565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a791906138c5565b610ffd565b005b3480156105ba57600080fd5b506105c3611096565b6040516105d09190613fb0565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906136f5565b611124565b60405161060d91906142f2565b60405180910390f35b34801561062257600080fd5b5061062b6111dc565b005b34801561063957600080fd5b50610642611264565b60405161064f9190613ef1565b60405180910390f35b34801561066457600080fd5b5061066d61128e565b60405161067a9190613fb0565b60405180910390f35b34801561068f57600080fd5b50610698611320565b005b3480156106a657600080fd5b506106c160048036038101906106bc919061371e565b611390565b005b3480156106cf57600080fd5b506106d8611450565b6040516106e591906142f2565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190613889565b611456565b005b34801561072357600080fd5b5061073e6004803603810190610739919061384d565b6114e0565b005b34801561074c57600080fd5b50610755611661565b60405161076291906142f2565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190613981565b611667565b005b3480156107a057600080fd5b506107bb60048036038101906107b691906137d2565b6116ed565b005b3480156107c957600080fd5b506107e460048036038101906107df9190613981565b61174f565b6040516107f19190613fb0565b60405180910390f35b610814600480360381019061080f9190613981565b611761565b005b34801561082257600080fd5b5061083d60048036038101906108389190613747565b61195c565b60405161084a9190613f95565b60405180910390f35b34801561085f57600080fd5b506108686119c2565b005b34801561087657600080fd5b50610891600480360381019061088c91906136f5565b611d23565b005b600061089e82611f34565b9050919050565b6060600080546108b490614616565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090614616565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b600061094282611fae565b610981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610978906141d2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c782610f45565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90614252565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5761201a565b73ffffffffffffffffffffffffffffffffffffffff161480610a865750610a8581610a8061201a565b61195c565b5b610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90614112565b60405180910390fd5b610acf8383612022565b505050565b610adc61201a565b73ffffffffffffffffffffffffffffffffffffffff16610afa611264565b73ffffffffffffffffffffffffffffffffffffffff1614610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b47906141f2565b60405180910390fd5b610b5a82826120db565b5050565b6000600880549050905090565b610b7c610b7661201a565b8261214f565b610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290614272565b60405180910390fd5b610bc683838361222d565b505050565b6000610bd683611124565b8210610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613fd2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f5481565b60606000610c8383611124565b905060008167ffffffffffffffff811115610cc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cf55781602001602082028036833780820191505090505b50905060005b82811015610d6557610d0d8582610bcb565b828281518110610d46577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d5d90614679565b915050610cfb565b508092505050919050565b610d8b838383604051806020016040528060008152506116ed565b505050565b610da1610d9b61201a565b8261214f565b610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd7906142d2565b60405180910390fd5b610de981612489565b50565b6000610df6610b5e565b8210610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90614292565b60405180910390fd5b60088281548110610e71577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b610eb761201a565b73ffffffffffffffffffffffffffffffffffffffff16610ed5611264565b73ffffffffffffffffffffffffffffffffffffffff1614610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f22906141f2565b60405180910390fd5b8060129080519060200190610f419291906134c4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590614152565b60405180910390fd5b80915050919050565b60105481565b61100561201a565b73ffffffffffffffffffffffffffffffffffffffff16611023611264565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906141f2565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b601280546110a390614616565b80601f01602080910402602001604051908101604052809291908181526020018280546110cf90614616565b801561111c5780601f106110f15761010080835404028352916020019161111c565b820191906000526020600020905b8154815290600101906020018083116110ff57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90614132565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111e461201a565b73ffffffffffffffffffffffffffffffffffffffff16611202611264565b73ffffffffffffffffffffffffffffffffffffffff1614611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f906141f2565b60405180910390fd5b61126260006124ad565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461129d90614616565b80601f01602080910402602001604051908101604052809291908181526020018280546112c990614616565b80156113165780601f106112eb57610100808354040283529160200191611316565b820191906000526020600020905b8154815290600101906020018083116112f957829003601f168201915b5050505050905090565b6113286119c2565b6000479050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061138d57600080fd5b50565b61139861201a565b73ffffffffffffffffffffffffffffffffffffffff166113b6611264565b73ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611403906141f2565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b61145e61201a565b73ffffffffffffffffffffffffffffffffffffffff1661147c611264565b73ffffffffffffffffffffffffffffffffffffffff16146114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c9906141f2565b60405180910390fd5b6114dc8282612573565b5050565b6114e861201a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d906140b2565b60405180910390fd5b806005600061156361201a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161061201a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116559190613f95565b60405180910390a35050565b600d5481565b61166f61201a565b73ffffffffffffffffffffffffffffffffffffffff1661168d611264565b73ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da906141f2565b60405180910390fd5b8060118190555050565b6116fe6116f861201a565b8361214f565b61173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490614272565b60405180910390fd5b61174984848484612591565b50505050565b606061175a826125ed565b9050919050565b601360009054906101000a900460ff166117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a7906142b2565b60405180910390fd5b6000811180156117c257506010548111155b611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890614072565b60405180910390fd5b600f5481600d546118129190614439565b1115611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a90614012565b60405180910390fd5b6011548161186191906144c0565b34146118a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611899906140f2565b60405180910390fd5b6118aa61201a565b73ffffffffffffffffffffffffffffffffffffffff167f3f42b9e99a65e2e32cbc63189438ee461bd22ebb2abb3753d74022425041ebbe6001600d546118f09190614439565b836040516118ff92919061430d565b60405180910390a260005b818110156119585761194561191d61201a565b600d600081548092919061193090614679565b9190505560016119409190614439565b61273f565b808061195090614679565b91505061190a565b5050565b600073a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119af57600190506119bc565b6119b9838361290d565b90505b92915050565b600047905073cf2820a5b2d9ec98c0e4456bf6ce778afd2dfe9373ffffffffffffffffffffffffffffffffffffffff166108fc6103e86101f484611a0691906144c0565b611a10919061448f565b9081150290604051600060405180830381858888f19350505050611a3357600080fd5b7360ab841070f46188e73de2cc2a8e6418b71c60f173ffffffffffffffffffffffffffffffffffffffff166108fc6103e8606e84611a7191906144c0565b611a7b919061448f565b9081150290604051600060405180830381858888f19350505050611a9e57600080fd5b73af61c1c5057fb701cf5f4aacb9ce843bcd349ff473ffffffffffffffffffffffffffffffffffffffff166108fc6103e8606484611adc91906144c0565b611ae6919061448f565b9081150290604051600060405180830381858888f19350505050611b0957600080fd5b73fa8ca8078a1f73bb9aef7e6fda6c2b02854b12ac73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8606484611b4791906144c0565b611b51919061448f565b9081150290604051600060405180830381858888f19350505050611b7457600080fd5b73b817b0137bb1a838aebcc63a231d152c6cb03b4173ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284611bb291906144c0565b611bbc919061448f565b9081150290604051600060405180830381858888f19350505050611bdf57600080fd5b7359f77152728a61640c9f0bf289b5a0b6fa338db473ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284611c1d91906144c0565b611c27919061448f565b9081150290604051600060405180830381858888f19350505050611c4a57600080fd5b73046bbe099cfa0b6cc71d59d6e4cd38c5d0eef71b73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284611c8891906144c0565b611c92919061448f565b9081150290604051600060405180830381858888f19350505050611cb557600080fd5b737df05b684e3e66c30287e0c0c4c8954ed26ede9773ffffffffffffffffffffffffffffffffffffffff166108fc6103e8602884611cf391906144c0565b611cfd919061448f565b9081150290604051600060405180830381858888f19350505050611d2057600080fd5b50565b611d2b61201a565b73ffffffffffffffffffffffffffffffffffffffff16611d49611264565b73ffffffffffffffffffffffffffffffffffffffff1614611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d96906141f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690614032565b60405180910390fd5b611e18816124ad565b50565b611e26838383611f2f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e6957611e64816129a1565b611ea8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ea757611ea683826129ea565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eeb57611ee681612b57565b611f2a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f2957611f288282612c9a565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fa75750611fa682612d19565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661209583610f45565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6120e482611fae565b612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a90614172565b60405180910390fd5b80600a6000848152602001908152602001600020908051906020019061214a9291906134c4565b505050565b600061215a82611fae565b612199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612190906140d2565b60405180910390fd5b60006121a483610f45565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061221357508373ffffffffffffffffffffffffffffffffffffffff166121fb84610937565b73ffffffffffffffffffffffffffffffffffffffff16145b806122245750612223818561195c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661224d82610f45565b73ffffffffffffffffffffffffffffffffffffffff16146122a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229a90614212565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a90614092565b60405180910390fd5b61231e838383612dfb565b612329600082612022565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612379919061451a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d09190614439565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61249281612e0b565b600e60008154809291906124a590614679565b919050555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61258d828260405180602001604052806000815250612e5e565b5050565b61259c84848461222d565b6125a884848484612eb9565b6125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de90613ff2565b60405180910390fd5b50505050565b60606125f882611fae565b612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262e906141b2565b60405180910390fd5b6000600a6000848152602001908152602001600020805461265790614616565b80601f016020809104026020016040519081016040528092919081815260200182805461268390614616565b80156126d05780601f106126a5576101008083540402835291602001916126d0565b820191906000526020600020905b8154815290600101906020018083116126b357829003601f168201915b5050505050905060006126e1613050565b90506000815114156126f757819250505061273a565b60008251111561272c578082604051602001612714929190613ecd565b6040516020818303038152906040529250505061273a565b612735846130e2565b925050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a690614192565b60405180910390fd5b6127b881611fae565b156127f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ef90614052565b60405180910390fd5b61280460008383612dfb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128549190614439565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129f784611124565b612a01919061451a565b9050600060076000848152602001908152602001600020549050818114612ae6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b6b919061451a565b9050600060096000848152602001908152602001600020549050600060088381548110612bc1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612c09577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ca583611124565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612de457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612df45750612df382613189565b5b9050919050565b612e06838383611e1b565b505050565b612e14816131f3565b6000600a60008381526020019081526020016000208054612e3490614616565b905014612e5b57600a60008281526020019081526020016000206000612e5a919061354a565b5b50565b612e68838361273f565b612e756000848484612eb9565b612eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eab90613ff2565b60405180910390fd5b505050565b6000612eda8473ffffffffffffffffffffffffffffffffffffffff16613304565b15613043578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f0361201a565b8786866040518563ffffffff1660e01b8152600401612f259493929190613f27565b602060405180830381600087803b158015612f3f57600080fd5b505af1925050508015612f7057506040513d601f19601f82011682018060405250810190612f6d9190613917565b60015b612ff3573d8060008114612fa0576040519150601f19603f3d011682016040523d82523d6000602084013e612fa5565b606091505b50600081511415612feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe290613ff2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613048565b600190505b949350505050565b60606012805461305f90614616565b80601f016020809104026020016040519081016040528092919081815260200182805461308b90614616565b80156130d85780601f106130ad576101008083540402835291602001916130d8565b820191906000526020600020905b8154815290600101906020018083116130bb57829003601f168201915b5050505050905090565b60606130ed82611fae565b61312c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312390614232565b60405180910390fd5b6000613136613050565b905060008151116131565760405180602001604052806000815250613181565b8061316084613317565b604051602001613171929190613ecd565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006131fe82610f45565b905061320c81600084612dfb565b613217600083612022565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613267919061451a565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060600082141561335f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134bf565b600082905060005b6000821461339157808061337a90614679565b915050600a8261338a919061448f565b9150613367565b60008167ffffffffffffffff8111156133d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134055781602001600182028036833780820191505090505b5090505b600085146134b85760018261341e919061451a565b9150600a8561342d91906146c2565b60306134399190614439565b60f81b818381518110613475577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134b1919061448f565b9450613409565b8093505050505b919050565b8280546134d090614616565b90600052602060002090601f0160209004810192826134f25760008555613539565b82601f1061350b57805160ff1916838001178555613539565b82800160010185558215613539579182015b8281111561353857825182559160200191906001019061351d565b5b509050613546919061358a565b5090565b50805461355690614616565b6000825580601f106135685750613587565b601f016020900490600052602060002090810190613586919061358a565b5b50565b5b808211156135a357600081600090555060010161358b565b5090565b60006135ba6135b58461435b565b614336565b9050828152602081018484840111156135d257600080fd5b6135dd8482856145d4565b509392505050565b60006135f86135f38461438c565b614336565b90508281526020810184848401111561361057600080fd5b61361b8482856145d4565b509392505050565b60008135905061363281614e47565b92915050565b60008135905061364781614e5e565b92915050565b60008135905061365c81614e75565b92915050565b60008135905061367181614e8c565b92915050565b60008151905061368681614e8c565b92915050565b600082601f83011261369d57600080fd5b81356136ad8482602086016135a7565b91505092915050565b600082601f8301126136c757600080fd5b81356136d78482602086016135e5565b91505092915050565b6000813590506136ef81614ea3565b92915050565b60006020828403121561370757600080fd5b600061371584828501613623565b91505092915050565b60006020828403121561373057600080fd5b600061373e84828501613638565b91505092915050565b6000806040838503121561375a57600080fd5b600061376885828601613623565b925050602061377985828601613623565b9150509250929050565b60008060006060848603121561379857600080fd5b60006137a686828701613623565b93505060206137b786828701613623565b92505060406137c8868287016136e0565b9150509250925092565b600080600080608085870312156137e857600080fd5b60006137f687828801613623565b945050602061380787828801613623565b9350506040613818878288016136e0565b925050606085013567ffffffffffffffff81111561383557600080fd5b6138418782880161368c565b91505092959194509250565b6000806040838503121561386057600080fd5b600061386e85828601613623565b925050602061387f8582860161364d565b9150509250929050565b6000806040838503121561389c57600080fd5b60006138aa85828601613623565b92505060206138bb858286016136e0565b9150509250929050565b6000602082840312156138d757600080fd5b60006138e58482850161364d565b91505092915050565b60006020828403121561390057600080fd5b600061390e84828501613662565b91505092915050565b60006020828403121561392957600080fd5b600061393784828501613677565b91505092915050565b60006020828403121561395257600080fd5b600082013567ffffffffffffffff81111561396c57600080fd5b613978848285016136b6565b91505092915050565b60006020828403121561399357600080fd5b60006139a1848285016136e0565b91505092915050565b600080604083850312156139bd57600080fd5b60006139cb858286016136e0565b925050602083013567ffffffffffffffff8111156139e857600080fd5b6139f4858286016136b6565b9150509250929050565b6000613a0a8383613eaf565b60208301905092915050565b613a1f81614560565b82525050565b613a2e8161454e565b82525050565b6000613a3f826143cd565b613a4981856143fb565b9350613a54836143bd565b8060005b83811015613a85578151613a6c88826139fe565b9750613a77836143ee565b925050600181019050613a58565b5085935050505092915050565b613a9b81614572565b82525050565b6000613aac826143d8565b613ab6818561440c565b9350613ac68185602086016145e3565b613acf816147af565b840191505092915050565b6000613ae5826143e3565b613aef818561441d565b9350613aff8185602086016145e3565b613b08816147af565b840191505092915050565b6000613b1e826143e3565b613b28818561442e565b9350613b388185602086016145e3565b80840191505092915050565b6000613b51602b8361441d565b9150613b5c826147c0565b604082019050919050565b6000613b7460328361441d565b9150613b7f8261480f565b604082019050919050565b6000613b9760148361441d565b9150613ba28261485e565b602082019050919050565b6000613bba60268361441d565b9150613bc582614887565b604082019050919050565b6000613bdd601c8361441d565b9150613be8826148d6565b602082019050919050565b6000613c00601d8361441d565b9150613c0b826148ff565b602082019050919050565b6000613c2360248361441d565b9150613c2e82614928565b604082019050919050565b6000613c4660198361441d565b9150613c5182614977565b602082019050919050565b6000613c69602c8361441d565b9150613c74826149a0565b604082019050919050565b6000613c8c60128361441d565b9150613c97826149ef565b602082019050919050565b6000613caf60388361441d565b9150613cba82614a18565b604082019050919050565b6000613cd2602a8361441d565b9150613cdd82614a67565b604082019050919050565b6000613cf560298361441d565b9150613d0082614ab6565b604082019050919050565b6000613d18602e8361441d565b9150613d2382614b05565b604082019050919050565b6000613d3b60208361441d565b9150613d4682614b54565b602082019050919050565b6000613d5e60318361441d565b9150613d6982614b7d565b604082019050919050565b6000613d81602c8361441d565b9150613d8c82614bcc565b604082019050919050565b6000613da460208361441d565b9150613daf82614c1b565b602082019050919050565b6000613dc760298361441d565b9150613dd282614c44565b604082019050919050565b6000613dea602f8361441d565b9150613df582614c93565b604082019050919050565b6000613e0d60218361441d565b9150613e1882614ce2565b604082019050919050565b6000613e3060318361441d565b9150613e3b82614d31565b604082019050919050565b6000613e53602c8361441d565b9150613e5e82614d80565b604082019050919050565b6000613e7660148361441d565b9150613e8182614dcf565b602082019050919050565b6000613e9960308361441d565b9150613ea482614df8565b604082019050919050565b613eb8816145ca565b82525050565b613ec7816145ca565b82525050565b6000613ed98285613b13565b9150613ee58284613b13565b91508190509392505050565b6000602082019050613f066000830184613a25565b92915050565b6000602082019050613f216000830184613a16565b92915050565b6000608082019050613f3c6000830187613a25565b613f496020830186613a25565b613f566040830185613ebe565b8181036060830152613f688184613aa1565b905095945050505050565b60006020820190508181036000830152613f8d8184613a34565b905092915050565b6000602082019050613faa6000830184613a92565b92915050565b60006020820190508181036000830152613fca8184613ada565b905092915050565b60006020820190508181036000830152613feb81613b44565b9050919050565b6000602082019050818103600083015261400b81613b67565b9050919050565b6000602082019050818103600083015261402b81613b8a565b9050919050565b6000602082019050818103600083015261404b81613bad565b9050919050565b6000602082019050818103600083015261406b81613bd0565b9050919050565b6000602082019050818103600083015261408b81613bf3565b9050919050565b600060208201905081810360008301526140ab81613c16565b9050919050565b600060208201905081810360008301526140cb81613c39565b9050919050565b600060208201905081810360008301526140eb81613c5c565b9050919050565b6000602082019050818103600083015261410b81613c7f565b9050919050565b6000602082019050818103600083015261412b81613ca2565b9050919050565b6000602082019050818103600083015261414b81613cc5565b9050919050565b6000602082019050818103600083015261416b81613ce8565b9050919050565b6000602082019050818103600083015261418b81613d0b565b9050919050565b600060208201905081810360008301526141ab81613d2e565b9050919050565b600060208201905081810360008301526141cb81613d51565b9050919050565b600060208201905081810360008301526141eb81613d74565b9050919050565b6000602082019050818103600083015261420b81613d97565b9050919050565b6000602082019050818103600083015261422b81613dba565b9050919050565b6000602082019050818103600083015261424b81613ddd565b9050919050565b6000602082019050818103600083015261426b81613e00565b9050919050565b6000602082019050818103600083015261428b81613e23565b9050919050565b600060208201905081810360008301526142ab81613e46565b9050919050565b600060208201905081810360008301526142cb81613e69565b9050919050565b600060208201905081810360008301526142eb81613e8c565b9050919050565b60006020820190506143076000830184613ebe565b92915050565b60006040820190506143226000830185613ebe565b61432f6020830184613ebe565b9392505050565b6000614340614351565b905061434c8282614648565b919050565b6000604051905090565b600067ffffffffffffffff82111561437657614375614780565b5b61437f826147af565b9050602081019050919050565b600067ffffffffffffffff8211156143a7576143a6614780565b5b6143b0826147af565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614444826145ca565b915061444f836145ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614484576144836146f3565b5b828201905092915050565b600061449a826145ca565b91506144a5836145ca565b9250826144b5576144b4614722565b5b828204905092915050565b60006144cb826145ca565b91506144d6836145ca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561450f5761450e6146f3565b5b828202905092915050565b6000614525826145ca565b9150614530836145ca565b925082821015614543576145426146f3565b5b828203905092915050565b6000614559826145aa565b9050919050565b600061456b826145aa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146015780820151818401526020810190506145e6565b83811115614610576000848401525b50505050565b6000600282049050600182168061462e57607f821691505b6020821081141561464257614641614751565b5b50919050565b614651826147af565b810181811067ffffffffffffffff821117156146705761466f614780565b5b80604052505050565b6000614684826145ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146b7576146b66146f3565b5b600182019050919050565b60006146cd826145ca565b91506146d8836145ca565b9250826146e8576146e7614722565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820696e76656e746f7279000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4261746368207075726368617365206c696d6974206578636565646564000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c69642076616c75652073656e740000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b614e508161454e565b8114614e5b57600080fd5b50565b614e6781614560565b8114614e7257600080fd5b50565b614e7e81614572565b8114614e8957600080fd5b50565b614e958161457e565b8114614ea057600080fd5b50565b614eac816145ca565b8114614eb757600080fd5b5056fea2646970667358221220fe880b9574e1971f3c52e1570fde085e0b1e47a55c3415f76600f92514a9fb3e64736f6c63430008040033697066733a2f2f516d64734e4b74733873566e33595735786d6d413746746d70547742744835374d626e4b706376535071373943672f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806368e2432711610123578063a1448194116100ab578063c87b56dd1161006f578063c87b56dd146107bd578063d92adf80146107fa578063e985e9c514610816578063ece2cefe14610853578063f2fde38b1461086a5761021a565b8063a1448194146106ee578063a22cb46514610717578063a2309ff814610740578063a2b40d191461076b578063b88d4fde146107945761021a565b80638da5cb5b116100f25780638da5cb5b1461062d57806395d89b41146106585780639670cf391461068357806398b9a2dc1461069a578063a035b1fe146106c35761021a565b806368e24327146105855780636c0360eb146105ae57806370a08231146105d9578063715018a6146106165761021a565b80633f3c1136116101a6578063521eb27311610175578063521eb2731461049e578063524773ce146104c957806355f804b3146104f45780636352211e1461051d57806367765b871461055a5761021a565b80633f3c1136146103d257806342842e0e1461040f57806342966c68146104385780634f6ccce7146104615761021a565b8063162094c4116101ed578063162094c4146102ed57806318160ddd1461031657806323b872dd146103415780632f745c591461036a57806334eafb11146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906138ee565b610893565b6040516102539190613f95565b60405180910390f35b34801561026857600080fd5b506102716108a5565b60405161027e9190613fb0565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613981565b610937565b6040516102bb9190613ef1565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613889565b6109bc565b005b3480156102f957600080fd5b50610314600480360381019061030f91906139aa565b610ad4565b005b34801561032257600080fd5b5061032b610b5e565b60405161033891906142f2565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613783565b610b6b565b005b34801561037657600080fd5b50610391600480360381019061038c9190613889565b610bcb565b60405161039e91906142f2565b60405180910390f35b3480156103b357600080fd5b506103bc610c70565b6040516103c991906142f2565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906136f5565b610c76565b6040516104069190613f73565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613783565b610d70565b005b34801561044457600080fd5b5061045f600480360381019061045a9190613981565b610d90565b005b34801561046d57600080fd5b5061048860048036038101906104839190613981565b610dec565b60405161049591906142f2565b60405180910390f35b3480156104aa57600080fd5b506104b3610e83565b6040516104c09190613f0c565b60405180910390f35b3480156104d557600080fd5b506104de610ea9565b6040516104eb91906142f2565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190613940565b610eaf565b005b34801561052957600080fd5b50610544600480360381019061053f9190613981565b610f45565b6040516105519190613ef1565b60405180910390f35b34801561056657600080fd5b5061056f610ff7565b60405161057c91906142f2565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a791906138c5565b610ffd565b005b3480156105ba57600080fd5b506105c3611096565b6040516105d09190613fb0565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906136f5565b611124565b60405161060d91906142f2565b60405180910390f35b34801561062257600080fd5b5061062b6111dc565b005b34801561063957600080fd5b50610642611264565b60405161064f9190613ef1565b60405180910390f35b34801561066457600080fd5b5061066d61128e565b60405161067a9190613fb0565b60405180910390f35b34801561068f57600080fd5b50610698611320565b005b3480156106a657600080fd5b506106c160048036038101906106bc919061371e565b611390565b005b3480156106cf57600080fd5b506106d8611450565b6040516106e591906142f2565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190613889565b611456565b005b34801561072357600080fd5b5061073e6004803603810190610739919061384d565b6114e0565b005b34801561074c57600080fd5b50610755611661565b60405161076291906142f2565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190613981565b611667565b005b3480156107a057600080fd5b506107bb60048036038101906107b691906137d2565b6116ed565b005b3480156107c957600080fd5b506107e460048036038101906107df9190613981565b61174f565b6040516107f19190613fb0565b60405180910390f35b610814600480360381019061080f9190613981565b611761565b005b34801561082257600080fd5b5061083d60048036038101906108389190613747565b61195c565b60405161084a9190613f95565b60405180910390f35b34801561085f57600080fd5b506108686119c2565b005b34801561087657600080fd5b50610891600480360381019061088c91906136f5565b611d23565b005b600061089e82611f34565b9050919050565b6060600080546108b490614616565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090614616565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b600061094282611fae565b610981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610978906141d2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c782610f45565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90614252565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a5761201a565b73ffffffffffffffffffffffffffffffffffffffff161480610a865750610a8581610a8061201a565b61195c565b5b610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90614112565b60405180910390fd5b610acf8383612022565b505050565b610adc61201a565b73ffffffffffffffffffffffffffffffffffffffff16610afa611264565b73ffffffffffffffffffffffffffffffffffffffff1614610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b47906141f2565b60405180910390fd5b610b5a82826120db565b5050565b6000600880549050905090565b610b7c610b7661201a565b8261214f565b610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290614272565b60405180910390fd5b610bc683838361222d565b505050565b6000610bd683611124565b8210610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613fd2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f5481565b60606000610c8383611124565b905060008167ffffffffffffffff811115610cc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cf55781602001602082028036833780820191505090505b50905060005b82811015610d6557610d0d8582610bcb565b828281518110610d46577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610d5d90614679565b915050610cfb565b508092505050919050565b610d8b838383604051806020016040528060008152506116ed565b505050565b610da1610d9b61201a565b8261214f565b610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd7906142d2565b60405180910390fd5b610de981612489565b50565b6000610df6610b5e565b8210610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90614292565b60405180910390fd5b60088281548110610e71577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b610eb761201a565b73ffffffffffffffffffffffffffffffffffffffff16610ed5611264565b73ffffffffffffffffffffffffffffffffffffffff1614610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f22906141f2565b60405180910390fd5b8060129080519060200190610f419291906134c4565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590614152565b60405180910390fd5b80915050919050565b60105481565b61100561201a565b73ffffffffffffffffffffffffffffffffffffffff16611023611264565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906141f2565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b601280546110a390614616565b80601f01602080910402602001604051908101604052809291908181526020018280546110cf90614616565b801561111c5780601f106110f15761010080835404028352916020019161111c565b820191906000526020600020905b8154815290600101906020018083116110ff57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90614132565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111e461201a565b73ffffffffffffffffffffffffffffffffffffffff16611202611264565b73ffffffffffffffffffffffffffffffffffffffff1614611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f906141f2565b60405180910390fd5b61126260006124ad565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461129d90614616565b80601f01602080910402602001604051908101604052809291908181526020018280546112c990614616565b80156113165780601f106112eb57610100808354040283529160200191611316565b820191906000526020600020905b8154815290600101906020018083116112f957829003601f168201915b5050505050905090565b6113286119c2565b6000479050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061138d57600080fd5b50565b61139861201a565b73ffffffffffffffffffffffffffffffffffffffff166113b6611264565b73ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611403906141f2565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b61145e61201a565b73ffffffffffffffffffffffffffffffffffffffff1661147c611264565b73ffffffffffffffffffffffffffffffffffffffff16146114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c9906141f2565b60405180910390fd5b6114dc8282612573565b5050565b6114e861201a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d906140b2565b60405180910390fd5b806005600061156361201a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161061201a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116559190613f95565b60405180910390a35050565b600d5481565b61166f61201a565b73ffffffffffffffffffffffffffffffffffffffff1661168d611264565b73ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da906141f2565b60405180910390fd5b8060118190555050565b6116fe6116f861201a565b8361214f565b61173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490614272565b60405180910390fd5b61174984848484612591565b50505050565b606061175a826125ed565b9050919050565b601360009054906101000a900460ff166117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a7906142b2565b60405180910390fd5b6000811180156117c257506010548111155b611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890614072565b60405180910390fd5b600f5481600d546118129190614439565b1115611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a90614012565b60405180910390fd5b6011548161186191906144c0565b34146118a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611899906140f2565b60405180910390fd5b6118aa61201a565b73ffffffffffffffffffffffffffffffffffffffff167f3f42b9e99a65e2e32cbc63189438ee461bd22ebb2abb3753d74022425041ebbe6001600d546118f09190614439565b836040516118ff92919061430d565b60405180910390a260005b818110156119585761194561191d61201a565b600d600081548092919061193090614679565b9190505560016119409190614439565b61273f565b808061195090614679565b91505061190a565b5050565b600073a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119af57600190506119bc565b6119b9838361290d565b90505b92915050565b600047905073cf2820a5b2d9ec98c0e4456bf6ce778afd2dfe9373ffffffffffffffffffffffffffffffffffffffff166108fc6103e86101f484611a0691906144c0565b611a10919061448f565b9081150290604051600060405180830381858888f19350505050611a3357600080fd5b7360ab841070f46188e73de2cc2a8e6418b71c60f173ffffffffffffffffffffffffffffffffffffffff166108fc6103e8606e84611a7191906144c0565b611a7b919061448f565b9081150290604051600060405180830381858888f19350505050611a9e57600080fd5b73af61c1c5057fb701cf5f4aacb9ce843bcd349ff473ffffffffffffffffffffffffffffffffffffffff166108fc6103e8606484611adc91906144c0565b611ae6919061448f565b9081150290604051600060405180830381858888f19350505050611b0957600080fd5b73fa8ca8078a1f73bb9aef7e6fda6c2b02854b12ac73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8606484611b4791906144c0565b611b51919061448f565b9081150290604051600060405180830381858888f19350505050611b7457600080fd5b73b817b0137bb1a838aebcc63a231d152c6cb03b4173ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284611bb291906144c0565b611bbc919061448f565b9081150290604051600060405180830381858888f19350505050611bdf57600080fd5b7359f77152728a61640c9f0bf289b5a0b6fa338db473ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284611c1d91906144c0565b611c27919061448f565b9081150290604051600060405180830381858888f19350505050611c4a57600080fd5b73046bbe099cfa0b6cc71d59d6e4cd38c5d0eef71b73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8603284611c8891906144c0565b611c92919061448f565b9081150290604051600060405180830381858888f19350505050611cb557600080fd5b737df05b684e3e66c30287e0c0c4c8954ed26ede9773ffffffffffffffffffffffffffffffffffffffff166108fc6103e8602884611cf391906144c0565b611cfd919061448f565b9081150290604051600060405180830381858888f19350505050611d2057600080fd5b50565b611d2b61201a565b73ffffffffffffffffffffffffffffffffffffffff16611d49611264565b73ffffffffffffffffffffffffffffffffffffffff1614611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d96906141f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690614032565b60405180910390fd5b611e18816124ad565b50565b611e26838383611f2f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e6957611e64816129a1565b611ea8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ea757611ea683826129ea565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eeb57611ee681612b57565b611f2a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f2957611f288282612c9a565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fa75750611fa682612d19565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661209583610f45565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6120e482611fae565b612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a90614172565b60405180910390fd5b80600a6000848152602001908152602001600020908051906020019061214a9291906134c4565b505050565b600061215a82611fae565b612199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612190906140d2565b60405180910390fd5b60006121a483610f45565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061221357508373ffffffffffffffffffffffffffffffffffffffff166121fb84610937565b73ffffffffffffffffffffffffffffffffffffffff16145b806122245750612223818561195c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661224d82610f45565b73ffffffffffffffffffffffffffffffffffffffff16146122a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229a90614212565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a90614092565b60405180910390fd5b61231e838383612dfb565b612329600082612022565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612379919061451a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d09190614439565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61249281612e0b565b600e60008154809291906124a590614679565b919050555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61258d828260405180602001604052806000815250612e5e565b5050565b61259c84848461222d565b6125a884848484612eb9565b6125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de90613ff2565b60405180910390fd5b50505050565b60606125f882611fae565b612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262e906141b2565b60405180910390fd5b6000600a6000848152602001908152602001600020805461265790614616565b80601f016020809104026020016040519081016040528092919081815260200182805461268390614616565b80156126d05780601f106126a5576101008083540402835291602001916126d0565b820191906000526020600020905b8154815290600101906020018083116126b357829003601f168201915b5050505050905060006126e1613050565b90506000815114156126f757819250505061273a565b60008251111561272c578082604051602001612714929190613ecd565b6040516020818303038152906040529250505061273a565b612735846130e2565b925050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a690614192565b60405180910390fd5b6127b881611fae565b156127f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ef90614052565b60405180910390fd5b61280460008383612dfb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128549190614439565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129f784611124565b612a01919061451a565b9050600060076000848152602001908152602001600020549050818114612ae6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b6b919061451a565b9050600060096000848152602001908152602001600020549050600060088381548110612bc1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612c09577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ca583611124565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612de457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612df45750612df382613189565b5b9050919050565b612e06838383611e1b565b505050565b612e14816131f3565b6000600a60008381526020019081526020016000208054612e3490614616565b905014612e5b57600a60008281526020019081526020016000206000612e5a919061354a565b5b50565b612e68838361273f565b612e756000848484612eb9565b612eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eab90613ff2565b60405180910390fd5b505050565b6000612eda8473ffffffffffffffffffffffffffffffffffffffff16613304565b15613043578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f0361201a565b8786866040518563ffffffff1660e01b8152600401612f259493929190613f27565b602060405180830381600087803b158015612f3f57600080fd5b505af1925050508015612f7057506040513d601f19601f82011682018060405250810190612f6d9190613917565b60015b612ff3573d8060008114612fa0576040519150601f19603f3d011682016040523d82523d6000602084013e612fa5565b606091505b50600081511415612feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe290613ff2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613048565b600190505b949350505050565b60606012805461305f90614616565b80601f016020809104026020016040519081016040528092919081815260200182805461308b90614616565b80156130d85780601f106130ad576101008083540402835291602001916130d8565b820191906000526020600020905b8154815290600101906020018083116130bb57829003601f168201915b5050505050905090565b60606130ed82611fae565b61312c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312390614232565b60405180910390fd5b6000613136613050565b905060008151116131565760405180602001604052806000815250613181565b8061316084613317565b604051602001613171929190613ecd565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006131fe82610f45565b905061320c81600084612dfb565b613217600083612022565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613267919061451a565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060600082141561335f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134bf565b600082905060005b6000821461339157808061337a90614679565b915050600a8261338a919061448f565b9150613367565b60008167ffffffffffffffff8111156133d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134055781602001600182028036833780820191505090505b5090505b600085146134b85760018261341e919061451a565b9150600a8561342d91906146c2565b60306134399190614439565b60f81b818381518110613475577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134b1919061448f565b9450613409565b8093505050505b919050565b8280546134d090614616565b90600052602060002090601f0160209004810192826134f25760008555613539565b82601f1061350b57805160ff1916838001178555613539565b82800160010185558215613539579182015b8281111561353857825182559160200191906001019061351d565b5b509050613546919061358a565b5090565b50805461355690614616565b6000825580601f106135685750613587565b601f016020900490600052602060002090810190613586919061358a565b5b50565b5b808211156135a357600081600090555060010161358b565b5090565b60006135ba6135b58461435b565b614336565b9050828152602081018484840111156135d257600080fd5b6135dd8482856145d4565b509392505050565b60006135f86135f38461438c565b614336565b90508281526020810184848401111561361057600080fd5b61361b8482856145d4565b509392505050565b60008135905061363281614e47565b92915050565b60008135905061364781614e5e565b92915050565b60008135905061365c81614e75565b92915050565b60008135905061367181614e8c565b92915050565b60008151905061368681614e8c565b92915050565b600082601f83011261369d57600080fd5b81356136ad8482602086016135a7565b91505092915050565b600082601f8301126136c757600080fd5b81356136d78482602086016135e5565b91505092915050565b6000813590506136ef81614ea3565b92915050565b60006020828403121561370757600080fd5b600061371584828501613623565b91505092915050565b60006020828403121561373057600080fd5b600061373e84828501613638565b91505092915050565b6000806040838503121561375a57600080fd5b600061376885828601613623565b925050602061377985828601613623565b9150509250929050565b60008060006060848603121561379857600080fd5b60006137a686828701613623565b93505060206137b786828701613623565b92505060406137c8868287016136e0565b9150509250925092565b600080600080608085870312156137e857600080fd5b60006137f687828801613623565b945050602061380787828801613623565b9350506040613818878288016136e0565b925050606085013567ffffffffffffffff81111561383557600080fd5b6138418782880161368c565b91505092959194509250565b6000806040838503121561386057600080fd5b600061386e85828601613623565b925050602061387f8582860161364d565b9150509250929050565b6000806040838503121561389c57600080fd5b60006138aa85828601613623565b92505060206138bb858286016136e0565b9150509250929050565b6000602082840312156138d757600080fd5b60006138e58482850161364d565b91505092915050565b60006020828403121561390057600080fd5b600061390e84828501613662565b91505092915050565b60006020828403121561392957600080fd5b600061393784828501613677565b91505092915050565b60006020828403121561395257600080fd5b600082013567ffffffffffffffff81111561396c57600080fd5b613978848285016136b6565b91505092915050565b60006020828403121561399357600080fd5b60006139a1848285016136e0565b91505092915050565b600080604083850312156139bd57600080fd5b60006139cb858286016136e0565b925050602083013567ffffffffffffffff8111156139e857600080fd5b6139f4858286016136b6565b9150509250929050565b6000613a0a8383613eaf565b60208301905092915050565b613a1f81614560565b82525050565b613a2e8161454e565b82525050565b6000613a3f826143cd565b613a4981856143fb565b9350613a54836143bd565b8060005b83811015613a85578151613a6c88826139fe565b9750613a77836143ee565b925050600181019050613a58565b5085935050505092915050565b613a9b81614572565b82525050565b6000613aac826143d8565b613ab6818561440c565b9350613ac68185602086016145e3565b613acf816147af565b840191505092915050565b6000613ae5826143e3565b613aef818561441d565b9350613aff8185602086016145e3565b613b08816147af565b840191505092915050565b6000613b1e826143e3565b613b28818561442e565b9350613b388185602086016145e3565b80840191505092915050565b6000613b51602b8361441d565b9150613b5c826147c0565b604082019050919050565b6000613b7460328361441d565b9150613b7f8261480f565b604082019050919050565b6000613b9760148361441d565b9150613ba28261485e565b602082019050919050565b6000613bba60268361441d565b9150613bc582614887565b604082019050919050565b6000613bdd601c8361441d565b9150613be8826148d6565b602082019050919050565b6000613c00601d8361441d565b9150613c0b826148ff565b602082019050919050565b6000613c2360248361441d565b9150613c2e82614928565b604082019050919050565b6000613c4660198361441d565b9150613c5182614977565b602082019050919050565b6000613c69602c8361441d565b9150613c74826149a0565b604082019050919050565b6000613c8c60128361441d565b9150613c97826149ef565b602082019050919050565b6000613caf60388361441d565b9150613cba82614a18565b604082019050919050565b6000613cd2602a8361441d565b9150613cdd82614a67565b604082019050919050565b6000613cf560298361441d565b9150613d0082614ab6565b604082019050919050565b6000613d18602e8361441d565b9150613d2382614b05565b604082019050919050565b6000613d3b60208361441d565b9150613d4682614b54565b602082019050919050565b6000613d5e60318361441d565b9150613d6982614b7d565b604082019050919050565b6000613d81602c8361441d565b9150613d8c82614bcc565b604082019050919050565b6000613da460208361441d565b9150613daf82614c1b565b602082019050919050565b6000613dc760298361441d565b9150613dd282614c44565b604082019050919050565b6000613dea602f8361441d565b9150613df582614c93565b604082019050919050565b6000613e0d60218361441d565b9150613e1882614ce2565b604082019050919050565b6000613e3060318361441d565b9150613e3b82614d31565b604082019050919050565b6000613e53602c8361441d565b9150613e5e82614d80565b604082019050919050565b6000613e7660148361441d565b9150613e8182614dcf565b602082019050919050565b6000613e9960308361441d565b9150613ea482614df8565b604082019050919050565b613eb8816145ca565b82525050565b613ec7816145ca565b82525050565b6000613ed98285613b13565b9150613ee58284613b13565b91508190509392505050565b6000602082019050613f066000830184613a25565b92915050565b6000602082019050613f216000830184613a16565b92915050565b6000608082019050613f3c6000830187613a25565b613f496020830186613a25565b613f566040830185613ebe565b8181036060830152613f688184613aa1565b905095945050505050565b60006020820190508181036000830152613f8d8184613a34565b905092915050565b6000602082019050613faa6000830184613a92565b92915050565b60006020820190508181036000830152613fca8184613ada565b905092915050565b60006020820190508181036000830152613feb81613b44565b9050919050565b6000602082019050818103600083015261400b81613b67565b9050919050565b6000602082019050818103600083015261402b81613b8a565b9050919050565b6000602082019050818103600083015261404b81613bad565b9050919050565b6000602082019050818103600083015261406b81613bd0565b9050919050565b6000602082019050818103600083015261408b81613bf3565b9050919050565b600060208201905081810360008301526140ab81613c16565b9050919050565b600060208201905081810360008301526140cb81613c39565b9050919050565b600060208201905081810360008301526140eb81613c5c565b9050919050565b6000602082019050818103600083015261410b81613c7f565b9050919050565b6000602082019050818103600083015261412b81613ca2565b9050919050565b6000602082019050818103600083015261414b81613cc5565b9050919050565b6000602082019050818103600083015261416b81613ce8565b9050919050565b6000602082019050818103600083015261418b81613d0b565b9050919050565b600060208201905081810360008301526141ab81613d2e565b9050919050565b600060208201905081810360008301526141cb81613d51565b9050919050565b600060208201905081810360008301526141eb81613d74565b9050919050565b6000602082019050818103600083015261420b81613d97565b9050919050565b6000602082019050818103600083015261422b81613dba565b9050919050565b6000602082019050818103600083015261424b81613ddd565b9050919050565b6000602082019050818103600083015261426b81613e00565b9050919050565b6000602082019050818103600083015261428b81613e23565b9050919050565b600060208201905081810360008301526142ab81613e46565b9050919050565b600060208201905081810360008301526142cb81613e69565b9050919050565b600060208201905081810360008301526142eb81613e8c565b9050919050565b60006020820190506143076000830184613ebe565b92915050565b60006040820190506143226000830185613ebe565b61432f6020830184613ebe565b9392505050565b6000614340614351565b905061434c8282614648565b919050565b6000604051905090565b600067ffffffffffffffff82111561437657614375614780565b5b61437f826147af565b9050602081019050919050565b600067ffffffffffffffff8211156143a7576143a6614780565b5b6143b0826147af565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614444826145ca565b915061444f836145ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614484576144836146f3565b5b828201905092915050565b600061449a826145ca565b91506144a5836145ca565b9250826144b5576144b4614722565b5b828204905092915050565b60006144cb826145ca565b91506144d6836145ca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561450f5761450e6146f3565b5b828202905092915050565b6000614525826145ca565b9150614530836145ca565b925082821015614543576145426146f3565b5b828203905092915050565b6000614559826145aa565b9050919050565b600061456b826145aa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146015780820151818401526020810190506145e6565b83811115614610576000848401525b50505050565b6000600282049050600182168061462e57607f821691505b6020821081141561464257614641614751565b5b50919050565b614651826147af565b810181811067ffffffffffffffff821117156146705761466f614780565b5b80604052505050565b6000614684826145ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146b7576146b66146f3565b5b600182019050919050565b60006146cd826145ca565b91506146d8836145ca565b9250826146e8576146e7614722565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820696e76656e746f7279000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4261746368207075726368617365206c696d6974206578636565646564000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c69642076616c75652073656e740000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b614e508161454e565b8114614e5b57600080fd5b50565b614e6781614560565b8114614e7257600080fd5b50565b614e7e81614572565b8114614e8957600080fd5b50565b614e958161457e565b8114614ea057600080fd5b50565b614eac816145ca565b8114614eb757600080fd5b5056fea2646970667358221220fe880b9574e1971f3c52e1570fde085e0b1e47a55c3415f76600f92514a9fb3e64736f6c63430008040033

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.